''' @author: peter.saiu@nhs.net Created: 2024 version: 0.2.1 Added on 31/3/2025 Description: The code in this streamlit script allows you to run the allocation calculations based on the user's preferences. Acknowledgements: Dan Chalk, Sammi Rosser, John Ford, Shylaja Thomas and Stefano Conti. ''' import streamlit as st import pandas as pd import plotly.graph_objects as go from indicators_n_pop_data_25_26 import indicators_qox, indicators_qhg, indicators_qhl, \ indicators_qua, indicators_quy, indicators_qu9, indicators_que, indicators_qyg, indicators_qt6, \ indicators_qwu, indicators_qj2, indicators_qjk, indicators_qvv, indicators_qnq, indicators_qr1, \ indicators_qop, indicators_qrl, indicators_qgh, indicators_qm7, indicators_qoq, indicators_qks, \ indicators_qe1, indicators_qk1, indicators_qjm, indicators_qh8, indicators_qmm, indicators_qmj, \ indicators_qhm, indicators_qmf, indicators_qrv, indicators_qpm, indicators_qt1, indicators_qoc, \ indicators_qsl, indicators_qkk, indicators_qwe, indicators_qf7, indicators_qnc, indicators_qjg, \ indicators_qxu, indicators_qnx, indicators_qwo from indicators_n_pop_data_25_26 import m_pop_qox, m_pop_qhg, m_pop_qhl, m_pop_qua, m_pop_quy, \ m_pop_qu9, m_pop_que, m_pop_qyg, m_pop_qt6, m_pop_qwu, m_pop_qj2, m_pop_qjk, m_pop_qvv, \ m_pop_qnq, m_pop_qr1, m_pop_qop, m_pop_qrl, m_pop_qgh, m_pop_qm7, m_pop_qoq, m_pop_qks, \ m_pop_qe1, m_pop_qk1, m_pop_qjm, m_pop_qh8, m_pop_qmm, m_pop_qmj, m_pop_qhm, m_pop_qmf, \ m_pop_qrv, m_pop_qpm, m_pop_qt1, m_pop_qoc, m_pop_qsl, m_pop_qkk, m_pop_qwe, m_pop_qf7, \ m_pop_qnc, m_pop_qjg, m_pop_qxu, m_pop_qnx, m_pop_qwo from indicators_n_pop_data_25_26 import f_pop_qox, f_pop_qhg, f_pop_qhl, f_pop_qua, f_pop_quy, \ f_pop_qu9, f_pop_que, f_pop_qyg, f_pop_qt6, f_pop_qwu, f_pop_qj2, f_pop_qjk, f_pop_qvv, \ f_pop_qnq, f_pop_qr1, f_pop_qop, f_pop_qrl, f_pop_qgh, f_pop_qm7, f_pop_qoq, f_pop_qks, \ f_pop_qe1, f_pop_qk1, f_pop_qjm, f_pop_qh8, f_pop_qmm, f_pop_qmj, f_pop_qhm, f_pop_qmf, \ f_pop_qrv, f_pop_qpm, f_pop_qt1, f_pop_qoc, f_pop_qsl, f_pop_qkk, f_pop_qwe, f_pop_qf7, \ f_pop_qnc, f_pop_qjg, f_pop_qxu, f_pop_qnx, f_pop_qwo # Set page configuration st.set_page_config( page_title="eFIT", page_icon="https://www.england.nhs.uk/wp-content/themes/nhsengland/static/img/favicon.ico", layout="wide", # alternatively write "centered" initial_sidebar_state="expanded", menu_items={ # "More info": "https://www.heec.co.uk/resources/extra-funding-allocation-inequality-tool-efit/", # not accepted key # "Report a bug": "https://github.com/", # amend with web address of my GitHub page "About": "This tool is designed to support ICBs to calculate the allocation of extra funding to General Practices. Please refer to the 'Tutorial' tab in the sidebar for User Guide for instructions." },) # The background colour is defined by the 'config' file in the '.streamlit' folder # This is to add in a title for our web app's page (removed because title added as an image) #st.title('Extra Funding allocation Inequality Tool (eFIT)') # ADD TITLE AS IMAGE #st.image('input_data_other/name_wo_logo_2.png', width=500) # ADD OLD LOGO for C&P ICB #st.image('input_data_other/logos_n_name.png', width=750) # ADD NEW LOGO for London Region st.image('input_data_other/london_logos_n_name.png', width=1050) #These 17 lines make you insert text from a 'markdown' file (text written as markdown) #by reading in the file INTRO_FILE = 'input_data_other/overview_gp.md' def read_file_contents(file_name): '''' Read the contents of a file. Params: ------ file_name: str Path to file. Returns: ------- str ''' with open(file_name) as f: return f.read() # show the markdown st.markdown(read_file_contents(INTRO_FILE)) ################################################################################ icb_list = ['Bath and North East Somerset, Swindon and Wiltshire ICB', 'Bedfordshire, Luton and Milton Keynes ICB', 'Birmingham and Solihull ICB', 'Black Country ICB', 'Bristol, North Somerset and South Gloucestershire ICB', 'Buckinghamshire, Oxfordshire and Berkshire West ICB', 'Cambridgeshire and Peterborough ICB', 'Cheshire and Merseyside ICB', 'Cornwall and the Isles of Scilly ICB', 'Coventry and Warwickshire ICB', 'Derby and Derbyshire ICB', 'Devon ICB', 'Dorset ICB', 'Frimley ICB', 'Gloucestershire ICB', 'Greater Manchester ICB', 'Hampshire and Isle of Wight ICB', 'Herefordshire and Worcestershire ICB', 'Hertfordshire and West Essex ICB', 'Humber and North Yorkshire ICB', 'Kent and Medway ICB', 'Lancashire and South Cumbria ICB', 'Leicester, Leicestershire and Rutland ICB', 'Lincolnshire ICB', 'Mid and South Essex ICB', 'Norfolk and Waveney ICB', 'North Central London ICB', 'North East and North Cumbria ICB', 'North East London ICB', 'North West London ICB', 'Northamptonshire ICB', 'Nottingham and Nottinghamshire ICB', 'Shropshire, Telford and Wrekin ICB', 'Somerset ICB', 'South East London ICB', 'South West London ICB', 'South Yorkshire ICB', 'Staffordshire and Stoke-on-Trent ICB', 'Suffolk and North East Essex ICB', 'Surrey Heartlands ICB', 'Sussex ICB', 'West Yorkshire ICB'] # SIDEBAR icb_choice = st.sidebar.selectbox("**Select your ICB**:", icb_list, help="Select your ICB from the drop down list") # Create a dictionary to store indicator dataframes for the indicators icb_indicators_dict = { 'Bath and North East Somerset, Swindon and Wiltshire ICB': indicators_qox, 'Bedfordshire, Luton and Milton Keynes ICB': indicators_qhg, 'Birmingham and Solihull ICB': indicators_qhl, 'Black Country ICB': indicators_qua, 'Bristol, North Somerset and South Gloucestershire ICB': indicators_quy, 'Buckinghamshire, Oxfordshire and Berkshire West ICB': indicators_qu9, 'Cambridgeshire and Peterborough ICB': indicators_que, 'Cheshire and Merseyside ICB': indicators_qyg, 'Cornwall and the Isles of Scilly ICB': indicators_qt6, 'Coventry and Warwickshire ICB': indicators_qwu,'Derby and Derbyshire ICB': indicators_qj2, 'Devon ICB': indicators_qjk, 'Dorset ICB': indicators_qvv, 'Frimley ICB': indicators_qnq, 'Gloucestershire ICB': indicators_qr1, 'Greater Manchester ICB': indicators_qop, 'Hampshire and Isle of Wight ICB': indicators_qrl, 'Herefordshire and Worcestershire ICB': indicators_qgh, 'Hertfordshire and West Essex ICB': indicators_qm7, 'Humber and North Yorkshire ICB': indicators_qoq, 'Kent and Medway ICB': indicators_qks,'Lancashire and South Cumbria ICB': indicators_qe1, 'Leicester, Leicestershire and Rutland ICB': indicators_qk1, 'Lincolnshire ICB': indicators_qjm, 'Mid and South Essex ICB': indicators_qh8, 'Norfolk and Waveney ICB': indicators_qmm, 'North Central London ICB': indicators_qmj, 'North East and North Cumbria ICB': indicators_qhm, 'North East London ICB': indicators_qmf, 'North West London ICB': indicators_qrv, 'Northamptonshire ICB': indicators_qpm, 'Nottingham and Nottinghamshire ICB': indicators_qt1, 'Shropshire, Telford and Wrekin ICB': indicators_qoc, 'Somerset ICB': indicators_qsl, 'South East London ICB': indicators_qkk, 'South West London ICB': indicators_qwe, 'South Yorkshire ICB': indicators_qf7, 'Staffordshire and Stoke-on-Trent ICB': indicators_qnc, 'Suffolk and North East Essex ICB': indicators_qjg, 'Surrey Heartlands ICB': indicators_qxu, 'Sussex ICB': indicators_qnx, 'West Yorkshire ICB': indicators_qwo} # Create 2 dictionaries to store indicator dataframes for the population (for males and females) pop_m_dict = { 'Bath and North East Somerset, Swindon and Wiltshire ICB': m_pop_qox, 'Bedfordshire, Luton and Milton Keynes ICB': m_pop_qhg, 'Birmingham and Solihull ICB': m_pop_qhl, 'Black Country ICB': m_pop_qua, 'Bristol, North Somerset and South Gloucestershire ICB': m_pop_quy, 'Buckinghamshire, Oxfordshire and Berkshire West ICB': m_pop_qu9, 'Cambridgeshire and Peterborough ICB': m_pop_que, 'Cheshire and Merseyside ICB': m_pop_qyg, 'Cornwall and the Isles of Scilly ICB': m_pop_qt6, 'Coventry and Warwickshire ICB': m_pop_qwu,'Derby and Derbyshire ICB': m_pop_qj2, 'Devon ICB': m_pop_qjk, 'Dorset ICB': m_pop_qvv, 'Frimley ICB': m_pop_qnq, 'Gloucestershire ICB': m_pop_qr1, 'Greater Manchester ICB': m_pop_qop, 'Hampshire and Isle of Wight ICB': m_pop_qrl, 'Herefordshire and Worcestershire ICB': m_pop_qgh, 'Hertfordshire and West Essex ICB': m_pop_qm7, 'Humber and North Yorkshire ICB': m_pop_qoq, 'Kent and Medway ICB': m_pop_qks,'Lancashire and South Cumbria ICB': m_pop_qe1, 'Leicester, Leicestershire and Rutland ICB':m_pop_qk1, 'Lincolnshire ICB': m_pop_qjm, 'Mid and South Essex ICB': m_pop_qh8, 'Norfolk and Waveney ICB': m_pop_qmm, 'North Central London ICB': m_pop_qmj, 'North East and North Cumbria ICB':m_pop_qhm, 'North East London ICB': m_pop_qmf, 'North West London ICB': m_pop_qrv, 'Northamptonshire ICB': m_pop_qpm, 'Nottingham and Nottinghamshire ICB': m_pop_qt1, 'Shropshire, Telford and Wrekin ICB': m_pop_qoc, 'Somerset ICB': m_pop_qsl, 'South East London ICB': m_pop_qkk, 'South West London ICB': m_pop_qwe, 'South Yorkshire ICB': m_pop_qf7, 'Staffordshire and Stoke-on-Trent ICB': m_pop_qnc, 'Suffolk and North East Essex ICB': m_pop_qjg, 'Surrey Heartlands ICB': m_pop_qxu, 'Sussex ICB': m_pop_qnx, 'West Yorkshire ICB': m_pop_qwo} pop_f_dict = { 'Bath and North East Somerset, Swindon and Wiltshire ICB': f_pop_qox, 'Bedfordshire, Luton and Milton Keynes ICB': f_pop_qhg, 'Birmingham and Solihull ICB': f_pop_qhl, 'Black Country ICB': f_pop_qua, 'Bristol, North Somerset and South Gloucestershire ICB': f_pop_quy, 'Buckinghamshire, Oxfordshire and Berkshire West ICB': f_pop_qu9, 'Cambridgeshire and Peterborough ICB': f_pop_que, 'Cheshire and Merseyside ICB': f_pop_qyg, 'Cornwall and the Isles of Scilly ICB': f_pop_qt6, 'Coventry and Warwickshire ICB': f_pop_qwu,'Derby and Derbyshire ICB': f_pop_qj2, 'Devon ICB': f_pop_qjk, 'Dorset ICB': f_pop_qvv, 'Frimley ICB': f_pop_qnq, 'Gloucestershire ICB': f_pop_qr1, 'Greater Manchester ICB': f_pop_qop, 'Hampshire and Isle of Wight ICB': f_pop_qrl, 'Herefordshire and Worcestershire ICB': f_pop_qgh, 'Hertfordshire and West Essex ICB': f_pop_qm7, 'Humber and North Yorkshire ICB': f_pop_qoq, 'Kent and Medway ICB': f_pop_qks,'Lancashire and South Cumbria ICB': f_pop_qe1, 'Leicester, Leicestershire and Rutland ICB': f_pop_qk1, 'Lincolnshire ICB': f_pop_qjm, 'Mid and South Essex ICB': f_pop_qh8, 'Norfolk and Waveney ICB': f_pop_qmm, 'North Central London ICB': f_pop_qmj, 'North East and North Cumbria ICB': f_pop_qhm, 'North East London ICB': f_pop_qmf, 'North West London ICB': f_pop_qrv, 'Northamptonshire ICB': f_pop_qpm, 'Nottingham and Nottinghamshire ICB': f_pop_qt1, 'Shropshire, Telford and Wrekin ICB': f_pop_qoc, 'Somerset ICB': f_pop_qsl, 'South East London ICB': f_pop_qkk, 'South West London ICB': f_pop_qwe, 'South Yorkshire ICB': f_pop_qf7, 'Staffordshire and Stoke-on-Trent ICB': f_pop_qnc, 'Suffolk and North East Essex ICB': f_pop_qjg, 'Surrey Heartlands ICB': f_pop_qxu, 'Sussex ICB': f_pop_qnx, 'West Yorkshire ICB': f_pop_qwo} # Get the selected dataframe based on user choice selected_icb_for_ind = icb_indicators_dict.get(icb_choice, pd.DataFrame()) selected_icb_for_m_pop = pop_m_dict.get(icb_choice, pd.DataFrame()) selected_icb_for_f_pop = pop_f_dict.get(icb_choice, pd.DataFrame()) ################################################################################ # Create a Streamlit Session State variable to store the 'user_number_input' value if 'user_num_input' not in st.session_state: # Set the default value for Streamlit st.session_state.user_num_input = 5000000 with st.sidebar: # Use the session_state variable as the default value for the slider funding_input_changed = st.number_input('**Insert funding available (£)**', min_value=1000, max_value=100000000, value=st.session_state.user_num_input, help='Funding available to be split among GP practices') # Update the session_state variable when the slider value changes st.session_state.user_num_input = funding_input_changed # Update the funding variable in the model file funding = st.session_state.user_num_input ################################################################################ # DEMOGRAPHICS: 1) AGE; 2) SEX # Select AGE RANGE OF POPULATION from slider with st.sidebar: st.write('-----------------------------------------------------------------') st.write('**Specify target demographics**') # To call the min and max number selected in age slider, refer to them as 'slider_age[0]' and 'slider_age[1]', respectively slider_age = st.slider('Age range from 0 to 95+',0,95,(25,75), step = 1, help= 'Select the age range of the population targeted with this intervention') # Select GENDER OF POPULATION from radio button gender_options = ['Both', 'Males', 'Females'] gender_selected = st.radio('Gender',gender_options, horizontal = False, help= 'Select the gender of target population for this intervention') st.write('-----------------------------------------------------------------') # Following selection from radio button, sum male and female populations if 'Both' is selected above if gender_selected == 'Both': pop_size_selected = selected_icb_for_m_pop + selected_icb_for_f_pop # Add these 3 steps to rename the GP code column, otherwise it will have the GP code twice in the same cell, leading to errors # Beware: this way the 'GP code' column is at the final column (i.e. not first!) # Get the current column names current_columns_pop = pop_size_selected.columns.tolist() # Create a dictionary to map old column names to new column names column_mapping_pop = {current_columns_pop[0]: 'wrong gp cd'} # Rename the columns pop_size_selected.rename(columns=column_mapping_pop, inplace=True) elif gender_selected == 'Males': pop_size_selected = selected_icb_for_m_pop else: # Females pop_size_selected = selected_icb_for_f_pop # Sum the number of registered patients based on age range from slider_age[0] to slider_age[1] (inclusive) pop_size_n_sex_selected = pd.DataFrame() pop_size_n_sex_selected['Population'] = pop_size_selected.apply(lambda row: row[slider_age[0] +1:slider_age[1] + 2].sum(), axis=1) pop_size_n_sex_selected['GP code'] = selected_icb_for_m_pop['GP code'] ################################################################################ # MATCH ORDER # To match the order of GP practices, between the population files and the indicator file, # MERGE popupation into indicator dataframes based on 'GP code' column selected_icb_for_ind_n_pop = pd.merge(selected_icb_for_ind, pop_size_n_sex_selected, on='GP code', how='left') ############################################ # Create a dataframe with a population for all ages and both m+f to calculate 'alloc per head' in weighted pop scenario (in last expander) all_pop = pd.DataFrame() all_men = selected_icb_for_m_pop.sum(axis=1, numeric_only = True) all_women = selected_icb_for_f_pop.sum(axis=1, numeric_only = True) all_pop['GP code'] = selected_icb_for_m_pop['GP code'] all_pop['Population'] = all_men + all_women # Match order all_pop_merged = pd.merge(selected_icb_for_ind, all_pop, on='GP code', how='left') ################################################################################ # 'GP exclusion' function # This function allows you to remove a GP practice from the list (and hence, from calculations) # Prepare indicators data for selecting/unselecting GPs and to Match uploaded indicators gp_list_to_deselect = pd.DataFrame() gp_list_to_deselect['GP code'] = selected_icb_for_ind_n_pop['GP code'] gp_list_to_deselect['GP name'] = selected_icb_for_ind_n_pop['GP name'] # This is needed to 'assign' a tick in the selectbox ('True' = selected) gp_list_to_deselect['tick'] = True gp_exclusion_is_checked = st.checkbox('Exclude some GP practices from resource allocation', help='Should you wish to exclude some GP practices from ' 'the calculation of allocation, untick them from the list') st.write('') # to leave a space between lines selected_gps = pd.DataFrame() if gp_exclusion_is_checked: selected_gps = st.data_editor(gp_list_to_deselect, column_config={"tick": st.column_config.CheckboxColumn("Select", default=False)}, hide_index=True,) # Filter the DataFrame based on selected rows selected_icb_for_ind_n_pop = selected_icb_for_ind_n_pop[selected_gps['tick']] # Filter the DataFrame based on selected rows (also for weighted pop scenario for expander) all_pop_merged = all_pop_merged[selected_gps['tick']] ################################################################################ # Hidden calculation hidden_param = pd.DataFrame() hidden_param['GP code'] = selected_icb_for_ind_n_pop['GP code'] # This creates a column of 'ones' to give a value to 'Choose an option' col_of_ones = 1 hidden_param['ones'] = col_of_ones ################################################################################ # LISTED INDICATORS # List the available indicators. indicators_list = ['Choose an option', 'IMD score (2019)', 'Weighted population', 'Bowel cancer screening coverage (age 60-74)', 'Breast cancer screening coverage (age 53-70)', 'Cervical cancer screening coverage (age 25-49)', 'Cervical cancer screening coverage (age 50-64)', 'Cancer prevalence (all ages)', 'Hypertension prevalence (all ages)', 'Last BP reading of patients (<80 yrs, with hypertension) <= 140/90 mmHg in the last 12 months', 'Last BP reading of patients (80+ yrs, with hypertension) <= 150/90 mmHg in the last 12 months', 'Patients who have a record of BP in the last 5 yrs (45+)', 'CHD prevalence (all ages)', 'Stroke prevalence (all ages)', 'Smoking prevalence (15+)', 'CKD prevalence (18+)', 'Obesity prevalence (18+)', 'Diabetes prevalence (17+)', 'Patients with diabetes treated with a statin (with a history of CVD - excl. haem. stroke)', 'People with type 2 diabetes who have received an annual foot check', 'People with type 2 diabetes who received a cholesterol check', 'Asthma prevalence (6+ yrs)', 'COPD prevalence (all ages)', 'Mental Health prevalence (all ages)', 'Depression incidence (18+)','Learning disability prevalence (all ages)', 'Dementia prevalence (all ages)', 'Osteoporosis prevalence (50+)', 'MMR vaccine uptake (at least 1 dose - age 1-1.5 yrs)'] ################################################################################ # INITIALIZE PARAMETERS # Initialize weights to default value of 'zero' ind_2_weight = 0 ind_3_weight = 0 uploaded_ind_1_weight = 0 # needed alloc_by_up_ind_1 = 0 # needed uploaded_ind_2_weight = 0 # needed alloc_by_up_ind_2 = 0 # needed uploaded_ind_3_weight = 0 # needed alloc_by_up_ind_3 = 0 # needed # Initialise other parameters used to make sure that no more than 5 indicators are being selected # (between those from list and those uploaded) name_indicator_1 = 'bla' name_indicator_2 = 'bla' name_indicator_3 = 'bla' matched_uploaded_indicator_1 = pd.DataFrame() matched_uploaded_indicator_2 = pd.DataFrame() matched_uploaded_indicator_3 = pd.DataFrame() wo_p_n_r_str_output_table = pd.DataFrame() wo_p_n_r_str_output_table_sorted_per_h = pd.DataFrame() ################################################################################ # Create a dictionary to store indicator dataframes for the indicators #(left: name of indicator as you want it to appear in tool; right: name as it appears in imported data file i.e. excel) indicators_list_dict = { 'IMD score (2019)': selected_icb_for_ind_n_pop['Deprivation score (IMD 2019)'], 'Weighted population': selected_icb_for_ind_n_pop['Weighted population'], 'Bowel cancer screening coverage (age 60-74)': selected_icb_for_ind_n_pop['Bowel cancer screening coverage: aged 60 to 74 years old'], 'Breast cancer screening coverage (age 53-70)': selected_icb_for_ind_n_pop['Breast screening coverage: aged 53 to 70 years old'], 'Cervical cancer screening coverage (age 25-49)': selected_icb_for_ind_n_pop['Cervical screening coverage: aged 25 to 49 years old'], 'Cervical cancer screening coverage (age 50-64)': selected_icb_for_ind_n_pop['Cervical screening coverage: aged 50 to 64 years old'], 'Asthma prevalence (6+ yrs)': selected_icb_for_ind_n_pop['Asthma: QOF prevalence'], 'Cancer prevalence (all ages)': selected_icb_for_ind_n_pop['Cancer: QOF prevalence'], 'CHD prevalence (all ages)': selected_icb_for_ind_n_pop['CHD: QOF prevalence'], 'MMR vaccine uptake (at least 1 dose - age 1-1.5 yrs)': selected_icb_for_ind_n_pop['Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs'], 'CKD prevalence (18+)': selected_icb_for_ind_n_pop['CKD: QOF prevalence'], 'COPD prevalence (all ages)': selected_icb_for_ind_n_pop['COPD: QOF prevalence'], 'Dementia prevalence (all ages)': selected_icb_for_ind_n_pop['Dementia: QOF prevalence'], 'Depression incidence (18+)': selected_icb_for_ind_n_pop['Depression: QOF incidence - new diagnosis'], 'Diabetes prevalence (17+)': selected_icb_for_ind_n_pop['Diabetes: QOF prevalence'], 'Hypertension prevalence (all ages)': selected_icb_for_ind_n_pop['Hypertension: QOF prevalence'], 'Last BP reading of patients (<80 yrs, with hypertension) <= 140/90 mmHg in the last 12 months': selected_icb_for_ind_n_pop['Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)'], 'Last BP reading of patients (80+ yrs, with hypertension) <= 150/90 mmHg in the last 12 months': selected_icb_for_ind_n_pop['Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)'], 'Learning disability prevalence (all ages)': selected_icb_for_ind_n_pop['Learning disability: QOF prevalence'], 'Mental Health prevalence (all ages)': selected_icb_for_ind_n_pop['Mental Health: QOF prevalence'], 'Obesity prevalence (18+)': selected_icb_for_ind_n_pop['Obesity: QOF prevalence (new definition)'], 'Osteoporosis prevalence (50+)': selected_icb_for_ind_n_pop['Osteoporosis: QOF prevalence'], 'Patients who have a record of BP in the last 5 yrs (45+)': selected_icb_for_ind_n_pop['Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)'], 'Patients with diabetes treated with a statin (with a history of CVD - excl. haem. stroke)': selected_icb_for_ind_n_pop['Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs)'], 'People with type 2 diabetes who have received an annual foot check': selected_icb_for_ind_n_pop['People with type 2 diabetes who have received an annual foot check'], 'People with type 2 diabetes who received a cholesterol check': selected_icb_for_ind_n_pop['People with type 2 diabetes who received a cholesterol check'], 'Smoking prevalence (15+)': selected_icb_for_ind_n_pop['Smoking: QOF prevalence'], 'Stroke prevalence (all ages)': selected_icb_for_ind_n_pop['Stroke: QOF prevalence'], 'Choose an option': hidden_param['ones']} # Allocation for these indicators is indirectly proportional (the higher the value, the less the allocation) # hence, their calculation needs 'reversing' ind_needs_reversing = ['Bowel cancer screening coverage (age 60-74)', 'Breast cancer screening coverage (age 53-70)', 'Cervical cancer screening coverage (age 25-49)', 'Cervical cancer screening coverage (age 50-64)', 'MMR vaccine uptake (at least 1 dose - age 1-1.5 yrs)', 'Last BP reading of patients (<80 yrs, with hypertension) <= 140/90 mmHg in the last 12 months', 'Last BP reading of patients (80+ yrs, with hypertension) <= 150/90 mmHg in the last 12 months', 'Patients who have a record of BP in the last 5 yrs (45+)', 'Patients with diabetes treated with a statin (with a history of CVD - excl. haem. stroke)', 'People with type 2 diabetes who have received an annual foot check', 'People with type 2 diabetes who received a cholesterol check'] ######################################################################################## # SIDEBAR # Select the indicators with st.sidebar: st.write('**Select up to three indicators**') # Listed Indicator 1 ind_1_choice = st.sidebar.selectbox("Indicator #1:", indicators_list, help="Select the first indicator") if ind_1_choice in ind_needs_reversing: st.write(':orange[(High values result in less money)]') elif ind_1_choice == 'Choose an option': st.write('') elif ind_1_choice == 'Weighted population': st.write('') else: st.write(':green[(High values result in more money)]') ind_1_weight = st.slider('**Weight**: contribution of indicator #1 (%)',0,100,50, step=1, help='Select what proportion of the funding should be allocated based on indicator #1)') # Listed Indicators 2 & 3 # This part makes sure that the slider for indicator 2 and 3 only appear if an indicator # is picked from the selectbox (hence, anything other than the default 'choose an option') # For indicator 2 ind_2_choice = st.sidebar.selectbox("Indicator #2 (optional):", indicators_list, help="Select the second indicator") if ind_2_choice in ind_needs_reversing: st.write(':orange[(High values result in less money)]') elif ind_2_choice == 'Choose an option': st.write('') elif ind_2_choice == 'Weighted population': st.write('') else: st.write(':green[(High values result in more money)]') if ind_2_choice != 'Choose an option': ind_2_weight = st.slider('**Weight**: contribution of indicator #2 (%)',0,100,0, step=1, help='Select what proportion of the funding should be allocated based on indicator #2') else: ind_2_weight = 0 # For indicator 3 ind_3_choice = st.sidebar.selectbox("Indicator #3 (optional):", indicators_list, help="Select the third indicator") if ind_3_choice in ind_needs_reversing: st.write(':orange[(High values result in less money)]') elif ind_3_choice == 'Choose an option': st.write('') elif ind_3_choice == 'Weighted population': st.write('') else: st.write(':green[(High values result in more money)]') if ind_3_choice != 'Choose an option': ind_3_weight = st.slider('**Weight**: contribution of indicator #3 (%)',0,100,0, step=1, help='Select what proportion of the funding should be allocated based on indicator #3') else: ind_3_weight = 0 indicators_weights = [(ind_1_choice, ind_1_weight), (ind_2_choice, ind_2_weight), (ind_3_choice, ind_3_weight)] indicators_weights = [(indicator, weight) for indicator, weight in indicators_weights if weight > 0] ################################################################################ # Checkbox 'to check' if the user wants to add his/her own indicator data user_wants_to_upload_indicator = st.checkbox('Do you want to upload your indicator instead?', help='Should you wish to use your own indicator data for your ICB, ' "you can upload up to three files (in '.csv' format). " 'Your file should include only two columns: column 1 ' 'should have the GP code and column 2 should have the indicator values ' 'for that GP practice') if user_wants_to_upload_indicator: # First Uploaded indicator uploaded_file_1 = st.file_uploader("Upload your first indicator", type= ['csv', 'xlsx']) # 4 some reason it crashes if I upload .xlsx files if uploaded_file_1 is not None: uploaded_indicator_1 = pd.read_csv(uploaded_file_1) df_uploaded_indicator_1 = pd.DataFrame(uploaded_indicator_1) name_indicator_1 = st.text_input("Enter name of your first indicator", placeholder="Enter name of indicator", label_visibility='collapsed') if name_indicator_1 is None or name_indicator_1 == "": name_indicator_1 = 'Uploaded indicator #1' high_gets_more_1 = st.radio('High value results in:', ["More funding", "Less funding"], horizontal = True, help='Select whether higher values for this indicator should result in allocating ' 'proportionally more money or less money than a lower indicator value') uploaded_ind_1_weight = st.slider(f'**Weight**: contribution of {name_indicator_1} (%)',0,100,0, step=1, help='Select what proportion of the funding should be allocated based on your first uploaded indicator') # Get the current column names current_columns_1 = df_uploaded_indicator_1.columns.tolist() # Create a dictionary to map old column names to new column names column_mapping_1 = {current_columns_1[0]: 'GP code', current_columns_1[1]: 'xyz'} # Rename the columns df_uploaded_indicator_1.rename(columns=column_mapping_1, inplace=True) # Match the uploaded indicator to the indicators listed matched_uploaded_indicator_1 = pd.merge(selected_icb_for_ind_n_pop['GP code'], df_uploaded_indicator_1, on='GP code', how='left') # Second Uploaded indicator st.write('') st.write('') uploaded_file_2 = st.file_uploader("Upload your second indicator (optional)", type= ['csv']) if uploaded_file_2 is not None: uploaded_indicator_2 = pd.read_csv(uploaded_file_2) df_uploaded_indicator_2 = pd.DataFrame(uploaded_indicator_2) name_indicator_2 = st.text_input("Enter name of your second indicator", placeholder="Enter name of indicator", label_visibility='collapsed') if name_indicator_2 is None or name_indicator_2 == "": name_indicator_2 = 'Uploaded indicator #2' high_gets_more_2 = st.radio('High value results in:', ["More funding ", "Less funding "], horizontal = True, help='Select whether higher values for this indicator should result in allocating ' 'proportionally more money or less money than a lower indicator value') uploaded_ind_2_weight = st.slider(f'**Weight**: contribution of {name_indicator_2} (%)',0,100,0, step=1, help='Select what proportion of the funding should be allocated based on your second uploaded indicator') # Get the current column names current_columns_2 = df_uploaded_indicator_2.columns.tolist() # Create a dictionary to map old column names to new column names column_mapping_2 = {current_columns_2[0]: 'GP code', current_columns_2[1]: 'xyz'} # Rename the columns df_uploaded_indicator_2.rename(columns=column_mapping_2, inplace=True) # Match the uploaded indicator to the indicators listed matched_uploaded_indicator_2 = pd.merge(selected_icb_for_ind_n_pop['GP code'], df_uploaded_indicator_2, on='GP code', how='left') # Third Uploaded indicator st.write('') st.write('') uploaded_file_3 = st.file_uploader("Upload your third indicator (optional)", type= ['csv']) if uploaded_file_3 is not None: uploaded_indicator_3 = pd.read_csv(uploaded_file_3) df_uploaded_indicator_3 = pd.DataFrame(uploaded_indicator_3) name_indicator_3 = st.text_input("Enter name of your third indicator", placeholder="Enter name of indicator", label_visibility='collapsed') if name_indicator_3 is None or name_indicator_3 == "": name_indicator_3 = 'Uploaded indicator #3' high_gets_more_3 = st.radio('High value results in:', ["More funding ", "Less funding "], horizontal = True, help='Select whether higher values for this indicator should result in allocating ' 'proportionally more money or less money than a lower indicator value') uploaded_ind_3_weight = st.slider(f'**Weight**: contribution of {name_indicator_3} (%)',0,100,0, step=1, help='Select what proportion of the funding should be allocated based on your third uploaded indicator') # Get the current column names current_columns_3 = df_uploaded_indicator_3.columns.tolist() # Create a dictionary to map old column names to new column names column_mapping_3 = {current_columns_3[0]: 'GP code', current_columns_3[1]: 'xyz'} # Rename the columns df_uploaded_indicator_3.rename(columns=column_mapping_3, inplace=True) # Match the uploaded indicator to the indicators listed matched_uploaded_indicator_3 = pd.merge(selected_icb_for_ind_n_pop['GP code'], df_uploaded_indicator_3, on='GP code', how='left') up_indicators_weights = [(name_indicator_1, uploaded_ind_1_weight), (name_indicator_2, uploaded_ind_2_weight), (name_indicator_3, uploaded_ind_3_weight)] up_indicators_weights = [(up_indicator, up_weight) for up_indicator, up_weight in up_indicators_weights if up_weight > 0] ################################################################################ selected_ind_1_w_correct_icb = indicators_list_dict.get(ind_1_choice, pd.DataFrame()) selected_ind_2_w_correct_icb = indicators_list_dict.get(ind_2_choice, pd.DataFrame()) selected_ind_3_w_correct_icb = indicators_list_dict.get(ind_3_choice, pd.DataFrame()) ################################################################################## # For the calculations below, the weights of indicators need to add up to 100%, so # a remainder will be calculated based on the population size selected above. # Hence, automatically adjust 'prop_pop' based on the value of the 3 indicators if ind_1_choice == 'Choose an option': prop_pop = 100 - ind_2_weight - ind_3_weight - uploaded_ind_1_weight - uploaded_ind_2_weight - uploaded_ind_3_weight else: prop_pop = 100 - ind_1_weight - ind_2_weight - ind_3_weight - uploaded_ind_1_weight - uploaded_ind_2_weight - uploaded_ind_3_weight ################################################################################ with st.sidebar: st.write('') if prop_pop > 0: st.warning('The weighting of the indicators should add up to 100%, otherwise ' f'the remainder will be allocated based on population size. Currently **{prop_pop}%** ' 'is being allocated based on registered population size', icon="⚠️") elif prop_pop <0: st.error('IMPORTANT! The weighting selected **cannot be greater than 100%.**' ' Please amend the weighting', icon="⚠️") else: st.write() ################################################################################ # THE EQUATION # # Update the equation based on the input by user # ####################################################################################### # # # The equation used to split the money and allocate it aming GP practices/PCN is: # # # # bz * cz # # a = __________ * d # # Σ(b_all*c_all) # # # # where: # # a = allocation # # bz = population of GP practice 'z' # # cz = indicator score (e.g. IMD) of GP practice 'z' # # Σ(b_all*c_all) = sum of all GP practices population * their indicator score e.g.IMD # # d = total funding available # # # # # # APPLY FOR ALL INDICATORS USED # # # ####################################################################################### # Perform multiplications handling 'NaN' values with 'fillna(0)' # The 'fillna(0)' is used to replace 'NaN' values with '0' before performing the multiplication. # This way, you still get a result for each row in the population dataframe. # It is essential, otherwise total allocation would not add up to funding # Allocation by population size pop_x_one = selected_icb_for_ind_n_pop['Population'] sum_pop = selected_icb_for_ind_n_pop['Population'].sum() prop_pop_div_100 = prop_pop / 100 alloc_by_pop = pop_x_one.fillna(0) / sum_pop * funding * prop_pop_div_100 # Allocation by Indicator #1 if ind_1_choice in ind_needs_reversing: sum_selected_ind_1_w_correct_icb = selected_ind_1_w_correct_icb.sum() ind_1_reversed = 1 - (selected_ind_1_w_correct_icb/sum_selected_ind_1_w_correct_icb) pop_x_ind_1 = ind_1_reversed * selected_icb_for_ind_n_pop['Population'] sum_pop_x_ind_1 = pop_x_ind_1.sum() elif ind_1_choice == 'Weighted population': pop_x_ind_1 = selected_ind_1_w_correct_icb sum_pop_x_ind_1 = pop_x_ind_1.sum() else: pop_x_ind_1 = selected_ind_1_w_correct_icb * selected_icb_for_ind_n_pop['Population'] sum_pop_x_ind_1 = pop_x_ind_1.sum() alloc_by_ind_1 = pop_x_ind_1.fillna(0) / sum_pop_x_ind_1 * funding # Allocation by Indicator #2 if ind_2_choice in ind_needs_reversing: sum_selected_ind_2_w_correct_icb = selected_ind_2_w_correct_icb.sum() ind_2_reversed = 1 - (selected_ind_2_w_correct_icb/sum_selected_ind_2_w_correct_icb) pop_x_ind_2 = ind_2_reversed * selected_icb_for_ind_n_pop['Population'] sum_pop_x_ind_2 = pop_x_ind_2.sum() elif ind_2_choice == 'Weighted population': pop_x_ind_2 = selected_ind_2_w_correct_icb sum_pop_x_ind_2 = pop_x_ind_2.sum() else: pop_x_ind_2 = selected_ind_2_w_correct_icb * selected_icb_for_ind_n_pop['Population'] sum_pop_x_ind_2 = pop_x_ind_2.sum() alloc_by_ind_2 = pop_x_ind_2.fillna(0) / sum_pop_x_ind_2 * funding # Allocation by Indicator #3 if ind_3_choice in ind_needs_reversing: sum_selected_ind_3_w_correct_icb = selected_ind_3_w_correct_icb.sum() ind_3_reversed = 1 - (selected_ind_3_w_correct_icb/sum_selected_ind_3_w_correct_icb) pop_x_ind_3 = ind_3_reversed * selected_icb_for_ind_n_pop['Population'] sum_pop_x_ind_3 = pop_x_ind_3.sum() elif ind_3_choice == 'Weighted population': pop_x_ind_3 = selected_ind_3_w_correct_icb sum_pop_x_ind_3 = pop_x_ind_3.sum() else: pop_x_ind_3 = selected_ind_3_w_correct_icb * selected_icb_for_ind_n_pop['Population'] sum_pop_x_ind_3 = pop_x_ind_3.sum() alloc_by_ind_3 = pop_x_ind_3.fillna(0) / sum_pop_x_ind_3 * funding ######################### # Allocation by Uploaded Indicator #1 if uploaded_ind_1_weight > 0: if high_gets_more_1 == "Less funding": sum_up_ind_1 = matched_uploaded_indicator_1['xyz'].sum() prop_of_sum_up_1 = matched_uploaded_indicator_1['xyz']/sum_up_ind_1 up_ind_1_reversed = 1- prop_of_sum_up_1 pop_x_up_ind_1 = up_ind_1_reversed * selected_icb_for_ind_n_pop['Population'] else: pop_x_up_ind_1 = matched_uploaded_indicator_1['xyz'] * selected_icb_for_ind_n_pop['Population'] sum_pop_x_up_ind_1 = pop_x_up_ind_1.sum() alloc_by_up_ind_1 = pop_x_up_ind_1.fillna(0) / sum_pop_x_up_ind_1 * funding # Allocation by Uploaded Indicator #2 if uploaded_ind_2_weight > 0: if high_gets_more_2 == "Less funding ": sum_up_ind_2 = matched_uploaded_indicator_2['xyz'].sum() prop_of_sum_up_2 = matched_uploaded_indicator_2['xyz']/sum_up_ind_2 up_ind_2_reversed = 1- prop_of_sum_up_2 pop_x_up_ind_2 = up_ind_2_reversed * selected_icb_for_ind_n_pop['Population'] else: pop_x_up_ind_2 = matched_uploaded_indicator_2['xyz'] * selected_icb_for_ind_n_pop['Population'] sum_pop_x_up_ind_2 = pop_x_up_ind_2.sum() alloc_by_up_ind_2 = pop_x_up_ind_2.fillna(0) / sum_pop_x_up_ind_2 * funding # Allocation by Uploaded Indicator #3 if uploaded_ind_3_weight > 0: if high_gets_more_3 == "Less funding ": sum_up_ind_3 = matched_uploaded_indicator_3['xyz'].sum() prop_of_sum_up_3 = matched_uploaded_indicator_3['xyz']/sum_up_ind_3 up_ind_3_reversed = 1- prop_of_sum_up_3 pop_x_up_ind_3 = up_ind_3_reversed * selected_icb_for_ind_n_pop['Population'] else: pop_x_up_ind_3 = matched_uploaded_indicator_3['xyz'] * selected_icb_for_ind_n_pop['Population'] sum_pop_x_up_ind_3 = pop_x_up_ind_3.sum() alloc_by_up_ind_3 = pop_x_up_ind_3.fillna(0) / sum_pop_x_up_ind_3 * funding ################################################################################ # Allocation from indicators alloc_by_ind_1_weighted = (alloc_by_ind_1 * ind_1_weight)/100 alloc_by_ind_2_weighted = (alloc_by_ind_2 * ind_2_weight)/100 alloc_by_ind_3_weighted = (alloc_by_ind_3 * ind_3_weight)/100 alloc_by_up_ind_1_weighted = (alloc_by_up_ind_1 * uploaded_ind_1_weight)/100 alloc_by_up_ind_2_weighted = (alloc_by_up_ind_2 * uploaded_ind_2_weight)/100 alloc_by_up_ind_3_weighted = (alloc_by_up_ind_3 * uploaded_ind_3_weight)/100 alloc_by_indicators = alloc_by_ind_1_weighted + alloc_by_ind_2_weighted + alloc_by_ind_3_weighted + \ alloc_by_up_ind_1_weighted + alloc_by_up_ind_2_weighted + alloc_by_up_ind_3_weighted # TOTAL ALLOCATION tot_alloc = alloc_by_pop + alloc_by_indicators # ALLOCATION PER HEAD alloc_per_head = tot_alloc / selected_icb_for_ind_n_pop['Population'].fillna(0) ################################################################################ # Include Button # Initialise 'Calculate_button_ticked' as False so that 'disclaimer' appears only if 'clicked' calculate_button_ticked = False if st.button("**Calculate**", type="primary"): calculate_button_ticked = True with st.spinner('Running calculations...'): # Output files: # There are 2 options: # 1. 'str_output_files': shows only 'total allocation' and 'allocation per patient' # 2. 'str_extra_output_file': as above but displays also breakdown of total allocation (only if box is checked) # Output (option #1) str_output_table = pd.DataFrame() str_output_table['GP name'] = selected_icb_for_ind_n_pop['GP name'] str_output_table['GP code'] = selected_icb_for_ind_n_pop['GP code'] # add population column and commas str_output_table['Population'] = selected_icb_for_ind_n_pop['Population'].fillna(0).apply(lambda x: "{:,}".format(int(x))) for ind_weight, ind_choice, selected_ind_w_correct_icb in zip([ind_1_weight, ind_2_weight, ind_3_weight], [ind_1_choice, ind_2_choice, ind_3_choice], [selected_ind_1_w_correct_icb, selected_ind_2_w_correct_icb, selected_ind_3_w_correct_icb]): if ind_weight > 0: # If weighted pop is selected in any of the three listed indicator boxes, add them in output table, round it to 0 decimal and add comma if ind_choice == 'Weighted population': str_output_table['Weighted population'] = selected_ind_w_correct_icb round_pop = ['Weighted population'] str_output_table[round_pop] = str_output_table[round_pop].map( lambda x: "{:,.0f}".format(x) if isinstance(x, (int, float)) else x) elif ind_choice == 'IMD score (2019)': str_output_table[f'{ind_choice}'] = selected_ind_w_correct_icb.apply( lambda x: "{:,.1f}".format(x) if isinstance(x, (int, float)) else x) else: str_output_table[f'{ind_choice} (%)'] = selected_ind_w_correct_icb # Round all others to 1 decimal point rounded_indicator_name = ind_choice str_output_table[f'{rounded_indicator_name} (%)'] = str_output_table[f'{ind_choice} (%)'].apply( lambda x: "{:,.1f}".format(x) if isinstance(x, (int, float)) else x) # If indicators have been uploaded, add them in output table, round them to 0 decimal and add comma for uploaded_weight, name_indicator, matched_uploaded_indicator in zip([uploaded_ind_1_weight, uploaded_ind_2_weight, uploaded_ind_3_weight], [name_indicator_1, name_indicator_2, name_indicator_3], [matched_uploaded_indicator_1, matched_uploaded_indicator_2, matched_uploaded_indicator_3]): if uploaded_weight > 0: str_output_table[name_indicator] = matched_uploaded_indicator['xyz'] # round to 1 decimal pt round_uploaded = [name_indicator] str_output_table[round_uploaded] = str_output_table[round_uploaded].map( lambda x: "{:,.1f}".format(x) if isinstance(x, (int, float)) else x) # This removes 'Choose an option' from the output if no indicator is selected str_output_table['Choose an option (%)'] = selected_icb_for_ind_n_pop['GP name'] str_output_table.drop(columns=['Choose an option (%)'], inplace=True) str_output_table['Total allocation (£)'] = tot_alloc str_output_table['Allocation per patient (£)'] = alloc_per_head # Sort values (descending) by total allocation str_output_table = str_output_table.sort_values(by='Total allocation (£)', ascending=False) # keep a copy before modifying to use for bar chart (below) wo_p_n_r_str_output_table = str_output_table.copy() wo_p_n_r_str_output_table_sorted_per_h = str_output_table.copy() # add commas and round to 2 decimal points the newly added columns round_output = ['Total allocation (£)', 'Allocation per patient (£)'] str_output_table[round_output] = str_output_table[round_output].map( lambda x: "{:,.2f}".format(x) if isinstance(x, (int, float)) else x) ################################################################################ # Messages summarising which indicators contribute to what if prop_pop <0: st.error('IMPORTANT! The weighting selected **cannot be greater than 100%.**' ' Please amend the weighting', icon="⚠️") else: st.success('Done!') if prop_pop >0: if uploaded_ind_1_weight >0 and uploaded_ind_2_weight ==0 and uploaded_ind_3_weight == 0: if ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight > 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice} and {name_indicator_1}' f' to be {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_1_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {ind_3_choice} and {name_indicator_1}' f' to be {ind_1_weight}%, {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_1_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight == 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice} and {name_indicator_1}' f' to be {ind_2_weight}% and {uploaded_ind_1_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice} and {name_indicator_1}' f' to be {ind_1_weight}%, {ind_2_weight}% and {uploaded_ind_1_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight ==0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {name_indicator_1}' f' to be {uploaded_ind_1_weight}% ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice} and {name_indicator_1}' f' to be {ind_1_weight}% and {uploaded_ind_1_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight >0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice} and {name_indicator_1}' f' to be {ind_3_weight}% and {uploaded_ind_1_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_3_choice} and {name_indicator_1}' f' to be {ind_1_weight}%, {ind_3_weight}% and {uploaded_ind_1_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight >0: st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice} and {name_indicator_1}' f' to be {ind_3_weight}% and {uploaded_ind_1_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice} and {name_indicator_1}' f' to be {ind_2_weight}% and {uploaded_ind_1_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight > 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice} and {name_indicator_1}' f' to be {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_1_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {name_indicator_1} to be {uploaded_ind_1_weight}%. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') if uploaded_ind_1_weight == 0 and uploaded_ind_2_weight > 0 and uploaded_ind_3_weight == 0: if ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight > 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice} and {name_indicator_2}' f' to be {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_2_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {ind_3_choice} and {name_indicator_2}' f' to be {ind_1_weight}%, {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_2_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight == 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice} and {name_indicator_2}' f' to be {ind_2_weight}% and {uploaded_ind_2_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice} and {name_indicator_2}' f' to be {ind_1_weight}%, {ind_2_weight}% and {uploaded_ind_2_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight ==0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {name_indicator_2}' f' to be {uploaded_ind_2_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice} and {name_indicator_2}' f' to be {ind_1_weight}% and {uploaded_ind_2_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight >0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice} and {name_indicator_2}' f' to be {ind_3_weight}% and {uploaded_ind_2_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_3_choice} and {name_indicator_2}' f' to be {ind_1_weight}%, {ind_3_weight}% and {uploaded_ind_2_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight >0: st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice} and {name_indicator_2}' f' to be {ind_3_weight}% and {uploaded_ind_2_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice} and {name_indicator_2}' f' to be {ind_2_weight}% and {uploaded_ind_2_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight > 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice} and {name_indicator_2}' f' to be {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_2_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {name_indicator_2} to be {uploaded_ind_2_weight}%. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') if uploaded_ind_1_weight == 0 and uploaded_ind_2_weight == 0 and uploaded_ind_3_weight > 0: if ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight > 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice} and {name_indicator_3}' f' to be {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {ind_3_choice} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight == 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice} and {name_indicator_3}' f' to be {ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight ==0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {name_indicator_3}' f' to be {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice} and {name_indicator_3}' f' to be {ind_1_weight}% and {uploaded_ind_3_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight >0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice} and {name_indicator_3}' f' to be {ind_3_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_3_choice} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_3_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight >0: st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice} and {name_indicator_3}' f' to be {ind_3_weight}% and {uploaded_ind_3_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice} and {name_indicator_3}' f' to be {ind_2_weight}% and {uploaded_ind_3_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight > 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice} and {name_indicator_3}' f' to be {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {name_indicator_3} to be {uploaded_ind_3_weight}%. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') if uploaded_ind_1_weight >0 and uploaded_ind_2_weight >0 and uploaded_ind_3_weight == 0: if ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight > 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {ind_3_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_1_weight}%, {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight == 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_2_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_1_weight}%, {ind_2_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight ==0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {name_indicator_1} and {name_indicator_2}' f' to be {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_1_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight >0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_3_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_1_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight >0: st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_2_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight > 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {name_indicator_1} and {name_indicator_2} to be {uploaded_ind_1_weight}% and {uploaded_ind_1_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') if uploaded_ind_1_weight ==0 and uploaded_ind_2_weight >0 and uploaded_ind_3_weight > 0: if ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight > 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {ind_3_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight == 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_2_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_2_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight ==0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {name_indicator_2} and {name_indicator_3}' f' to be {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight >0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_3_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_3_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_3_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight >0: st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_3_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_2_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight > 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {name_indicator_2} and {name_indicator_3} to be {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') if uploaded_ind_1_weight >0 and uploaded_ind_2_weight == 0 and uploaded_ind_3_weight > 0: if ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight > 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {ind_3_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight == 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_2_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_2_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight ==0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {name_indicator_1} and {name_indicator_3}' f' to be {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_1_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight >0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_3_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight >0: st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_2_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight > 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {name_indicator_1} and {name_indicator_3} to be {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') if uploaded_ind_1_weight >0 and uploaded_ind_2_weight >0 and uploaded_ind_3_weight >0: if ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight > 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {ind_3_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight == 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_2_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_2_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight ==0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_1_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight >0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_3_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_3_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight >0: st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_3_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_2_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight > 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif uploaded_ind_1_weight == 0 and uploaded_ind_2_weight == 0 and uploaded_ind_3_weight == 0: if ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight > 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice} and {ind_3_choice}' f' to be {ind_2_weight}% and {ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice} and {ind_3_choice}' f' to be {ind_1_weight}%, {ind_2_weight}% and {ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight == 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}' f' to be {ind_2_weight}%. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice} and {ind_2_choice}' f' to be {ind_1_weight}% and {ind_2_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight ==0: if ind_1_choice == 'Choose an option': st.write('You selected to allocate the funding soley based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}' f' to be {ind_1_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight >0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}' f' to be {ind_3_weight}%. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice} and {ind_3_choice}' f' to be {ind_1_weight}% and {ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight >0: st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}' f' to be {ind_3_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}' f' to be {ind_2_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight > 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice} and {ind_3_choice}' f' to be {ind_2_weight}% and {ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight == 0: st.write('You selected to allocate the funding soley based on registered population size.') elif prop_pop == 0: if uploaded_ind_1_weight >0 and uploaded_ind_2_weight == 0 and uploaded_ind_3_weight == 0: if ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight > 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice} and {name_indicator_1}' f' to be {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_1_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {ind_3_choice} and {name_indicator_1}' f' to be {ind_1_weight}%, {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_1_weight}%, respectively.') elif ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight == 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice} and {name_indicator_1}' f' to be {ind_2_weight}% and {uploaded_ind_1_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice} and {name_indicator_1}' f' to be {ind_1_weight}%, {ind_2_weight}% and {uploaded_ind_1_weight}%, respectively.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight ==0: if ind_1_choice == 'Choose an option': st.write(f'You selected to allocate the funding soley based on {name_indicator_1}') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice} and {name_indicator_1}' f' to be {ind_1_weight}% and {uploaded_ind_1_weight}%.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight >0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice} and {name_indicator_1}' f' to be {ind_3_weight}% and {uploaded_ind_1_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_3_choice} and {name_indicator_1}' f' to be {ind_1_weight}%, {ind_3_weight}% and {uploaded_ind_1_weight}%, respectively.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight >0: st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice} and {name_indicator_1}' f' to be {ind_3_weight}% and {uploaded_ind_1_weight}%.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice} and {name_indicator_1}' f' to be {ind_2_weight}% and {uploaded_ind_1_weight}%.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight > 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice} and {name_indicator_1}' f' to be {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_1_weight}%, respectively.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {name_indicator_1}.') if uploaded_ind_1_weight == 0 and uploaded_ind_2_weight >0 and uploaded_ind_3_weight == 0: if ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight > 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice} and {name_indicator_2}' f' to be {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_2_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {ind_3_choice} and {name_indicator_2}' f' to be {ind_1_weight}%, {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_2_weight}%, respectively.') elif ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight == 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice} and {name_indicator_2}' f' to be {ind_2_weight}% and {uploaded_ind_2_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice} and {name_indicator_2}' f' to be {ind_1_weight}%, {ind_2_weight}% and {uploaded_ind_2_weight}%, respectively.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight ==0: if ind_1_choice == 'Choose an option': st.write(f'You selected to allocate the funding soley based on {name_indicator_2}') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice} and {name_indicator_2}' f' to be {ind_1_weight}% and {uploaded_ind_2_weight}%.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight >0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice} and {name_indicator_2}' f' to be {ind_3_weight}% and {uploaded_ind_2_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_3_choice} and {name_indicator_2}' f' to be {ind_1_weight}%, {ind_3_weight}% and {uploaded_ind_2_weight}%, respectively.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight >0: st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice} and {name_indicator_2}' f' to be {ind_3_weight}% and {uploaded_ind_2_weight}%.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice} and {name_indicator_2}' f' to be {ind_2_weight}% and {uploaded_ind_2_weight}%.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight > 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice} and {name_indicator_2}' f' to be {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_2_weight}%, respectively.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {name_indicator_2}.') if uploaded_ind_1_weight == 0 and uploaded_ind_2_weight == 0 and uploaded_ind_3_weight > 0: if ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight > 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice} and {name_indicator_3}' f' to be {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_3_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {ind_3_choice} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight == 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice} and {name_indicator_3}' f' to be {ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight ==0: if ind_1_choice == 'Choose an option': st.write(f'You selected to allocate the funding soley based on {name_indicator_3}') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice} and {name_indicator_3}' f' to be {ind_1_weight}% and {uploaded_ind_3_weight}%.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight >0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice} and {name_indicator_3}' f' to be {ind_3_weight}% and {uploaded_ind_3_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_3_choice} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_3_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight >0: st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice} and {name_indicator_3}' f' to be {ind_3_weight}% and {uploaded_ind_3_weight}%.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice} and {name_indicator_3}' f' to be {ind_2_weight}% and {uploaded_ind_3_weight}%.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight > 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice} and {name_indicator_3}' f' to be {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {name_indicator_3}.') if uploaded_ind_1_weight >0 and uploaded_ind_2_weight >0 and uploaded_ind_3_weight == 0: if ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight > 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {ind_3_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_1_weight}%, {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%, respectively.') elif ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight == 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_2_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_1_weight}%, {ind_2_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%, respectively.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight ==0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {name_indicator_1} and {name_indicator_2}' f' to be {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_1_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight >0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_3_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_1_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%, respectively.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight >0: st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_2_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight > 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%, respectively.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {name_indicator_1} and {name_indicator_2}' f' to be {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%, respectively.') if uploaded_ind_1_weight == 0 and uploaded_ind_2_weight >0 and uploaded_ind_3_weight > 0: if ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight > 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {ind_3_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight == 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_2_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_2_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight ==0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {name_indicator_2} and {name_indicator_3}' f' to be {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight >0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_3_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_3_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_3_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight >0: st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_3_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_2_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight > 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {name_indicator_2} and {name_indicator_3}' f' to be {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') if uploaded_ind_1_weight > 0 and uploaded_ind_2_weight == 0 and uploaded_ind_3_weight > 0: if ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight > 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {ind_3_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight == 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_2_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_2_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight ==0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {name_indicator_1} and {name_indicator_3}' f' to be {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_1_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight >0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_3_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_3_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight >0: st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_2_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight > 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {name_indicator_1} and {name_indicator_3}' f' to be {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%, respectively.') if uploaded_ind_1_weight >0 and uploaded_ind_2_weight > 0 and uploaded_ind_3_weight >0: if ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight > 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {ind_3_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight == 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_2_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_2_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight ==0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_1_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight >0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_3_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_3_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight >0: st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_3_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_2_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight > 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') elif uploaded_ind_1_weight == 0 and uploaded_ind_2_weight == 0 and uploaded_ind_3_weight == 0: if ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight > 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice} and {ind_3_choice}' f' to be {ind_2_weight}% and {ind_3_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice} and {ind_3_choice}' f' to be {ind_1_weight}%, {ind_2_weight}% and {ind_3_weight}%, respectively.') elif ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight == 0: if ind_1_choice == 'Choose an option': st.write(f'You selected to allocate the funding soley based on {ind_2_choice}') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice} and {ind_2_choice}' f' to be {ind_1_weight}% and {ind_2_weight}%, respectively.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight ==0: if ind_1_choice == 'Choose an option': st.write(f'You selected to allocate the funding soley based on registered population size.') else: st.write(f'You selected to allocate the funding soley based on {ind_1_choice}.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight >0: st.write(f'You selected to allocate the funding soley based on {ind_3_choice}.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight >0: st.write(f'You selected to allocate the funding soley based on {ind_3_choice}.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight == 0: st.write(f'You selected to allocate the funding soley based on {ind_2_choice}.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight > 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice} and {ind_3_choice}' f' to be {ind_2_weight}% and {ind_3_weight}%, respectively.') st.write(f"Hence, based on your preferences, the allocation to each GP practice in _{icb_choice}_ is the following:") # Show results (table) st.dataframe(str_output_table, hide_index=True) ################################################################################ # Add message if GP practices are missing indicator values # n_of_listed_ind = len(selected_icb_for_ind_n_pop) # nan_ind_1 = str_output_table[ind_1_choice].isna().sum() # nan_ind_2 = 6 # amend accordingly " # nan_ind_3 = 1 # amend accordingly " # nan_up_ind_1 = 0 # amend accordingly " # nan_up_ind_2 = 2 # amend accordingly " # nan_up_ind_3 = 0 # amend accordingly " # nan_in_indicators_selected = [nan_ind_1, nan_ind_2, nan_ind_3, nan_up_ind_1, nan_up_ind_2, nan_up_ind_3] # max_nan = max(nan_in_indicators_selected) # if max_nan == 0: # st.write() # else: # st.warning(f'BEWARE: Out of the {n_of_listed_ind} GP practices, {max_nan} are missing one or more indicator values which is affecting their allocation.') # st.write(f'nan in ind 1 = {nan_ind_1}') # COPY AFTER EXTRA_OUTPUT_PART! ################################################################################ # Add statement to clarify discrepancy in values between pop vs weighted pop # (which arise if the selected demographics does not comprise the entire GP practice size) if ind_1_choice == 'Weighted population' or ind_2_choice == 'Weighted population' or ind_3_choice == 'Weighted population': if slider_age[0] >0 and slider_age[1] <95: st.info("*Note: If you notice a discrepancy in the output above between values in the 'Population' and 'Weighted " "population' columns, it is because the 'Weighted population' represents the entire population for that GP " "practice. Hence, when selecting 'Weighted population', you might want to consider selecting the entire population size " "(from the 'age' and 'gender' options on the left)" ) elif gender_selected != 'Both': st.info("*Note: If you notice a discrepancy in the output above between values in the 'Population' and 'Weighted " "population' columns, it is because the 'Weighted population' represents the entire population for that GP " "practice. Hence, when selecting 'Weighted population', you might want to consider selecting the entire population size " "(from the 'age' and 'gender' options on the left)" ) else: st.write() # ADD DOWNLOAD BUTTON # IMPORTANT: Cache the conversion to prevent computation on every rerun @st.cache_data # Define function to convert DataFrame to csv def convert_df(df): return df.to_csv(index=False).encode('utf-8') csv = convert_df(str_output_table) st.download_button(label="**Download table**", data=csv, file_name=f'Allocations for {icb_choice}.csv',key="output_table") st.write('') st.write('') ################################################################################ # OPTION TO OPEN AN EXPANDER TO DISPLAY A CHART if prop_pop <0: st.write('') else: with st.expander(':blue[Click here to display the chart]'): tab1, tab2 = st.tabs(["Total allocation", "Allocation per patient"]) with tab1: # use for 'Total allocation' y1 = wo_p_n_r_str_output_table['GP name'] x1 = wo_p_n_r_str_output_table['Total allocation (£)'] # Create a figure object and an axes object, and add the axes object as a subplot of the figure object trace_total = go.Bar (x = x1[::-1], y = y1[::-1], orientation='h') data_1 = go.Figure([trace_total]) data_1.update_layout(autosize=False, #This stops plotly overriding our sizing wishes height=len(y1)*15, # the height parameter defines how tall the plot is # (cont.) # the number of GP surgeries may vary substantially across different ICBs so here we look at the number of GPs in the plot (the length of y1) and multiply it by 15 pixels. margin=go.layout.Margin(t=30), # this removes a big gap at the top of the chart title=f"Resource allocation for {icb_choice}", # Add chart title # title_x=0.5, # Center chart title xaxis=dict(title="Total allocation (£)", automargin=True, showgrid = True)) # Add title to x axis data_1.update_yaxes(automargin=True, # The automargin parameter just ensures that the figure is adjusted so that long names don't get cut off dtick=1) # This ensures we get a label for every GP surgery and it won't skip any and avoids overlapping labels data_1.update_traces(hovertemplate='£ %{x:,.2f}') # Format hover text to display rounded values to 2 decimal points and '£' sign # Show the figure st.plotly_chart(data_1, use_container_width=True) with tab2: # use for 'Allocation per patient' # Sort the DataFrame by 'Allocation per patient' in descending order wo_p_n_r_str_output_table_sorted_per_h = wo_p_n_r_str_output_table_sorted_per_h.sort_values(by='Allocation per patient (£)') y2 = wo_p_n_r_str_output_table_sorted_per_h['GP name'] x2 = wo_p_n_r_str_output_table_sorted_per_h['Allocation per patient (£)'] # Create a figure object and an axes object, and add the axes object as a subplot of the figure object trace_p_h = go.Bar (x = x2, y = y2, orientation='h') data_2 = go.Figure([trace_p_h]) data_2.update_layout(autosize=False, height=len(y2)*15,margin=go.layout.Margin(t=30), title=f"Resource allocation for {icb_choice}", xaxis=dict(title="Allocation per patient (£)", automargin=True, showgrid = True)) data_2.update_yaxes(automargin=True, dtick=1) # Show the figure st.plotly_chart(data_2, use_container_width=True) ################################################################################ # Initialise 'button_ticked' as False so that last expander ('Comparison with weighted pop') appears only if more_detail is 'checked' button_ticked = False if ind_1_weight ==100 or ind_2_weight ==100 or ind_3_weight ==100 or prop_pop == 100: st.write() if prop_pop <0: st.write('') else: st.write('') more_detail_is_checked = st.checkbox('Show more detail', help='Show the breakdown of how the indicators selected and/or ' 'population size contribute towards the total allocation') if more_detail_is_checked: button_ticked = True # This allows the last expander ('Comparison with weighted pop') to appear # st.empty() with st.spinner('Running calculations...'): # Output (option #2) str_extra_output_table = pd.DataFrame() str_extra_output_table['GP name'] = selected_icb_for_ind_n_pop['GP name'] str_extra_output_table['GP code'] = selected_icb_for_ind_n_pop['GP code'] # add population column and commas str_extra_output_table['Population'] = selected_icb_for_ind_n_pop['Population'].fillna(0).apply(lambda x: "{:,}".format(int(x))) # If weighted pop is selected in any of the three listed indicator boxes, add them in output table, round it to 0 decimal and add comma for ind_weight, ind_choice, selected_ind_w_correct_icb in zip([ind_1_weight, ind_2_weight, ind_3_weight], [ind_1_choice, ind_2_choice, ind_3_choice], [selected_ind_1_w_correct_icb, selected_ind_2_w_correct_icb, selected_ind_3_w_correct_icb]): if ind_weight > 0: ######################################## # If weighted pop is selected in any of the three listed indicator boxes, add them in output table, round it to 0 decimal and add comma if ind_choice == 'Weighted population': str_extra_output_table['Weighted population'] = selected_ind_w_correct_icb round_pop = ['Weighted population'] str_extra_output_table[round_pop] = str_extra_output_table[round_pop].map( lambda x: "{:,.0f}".format(x) if isinstance(x, (int, float)) else x) # Round to 1 decimal point elif ind_choice == 'IMD score (2019)': str_extra_output_table[ind_choice] = selected_ind_w_correct_icb.apply( lambda x: "{:,.1f}".format(x) if isinstance(x, (int, float)) else x) else: str_extra_output_table[f'{ind_choice} (%)'] = selected_ind_w_correct_icb # Add '%' sign and round all others to 1 decimal point rounded_indicator_name = ind_choice str_extra_output_table[f'{rounded_indicator_name} (%)'] = str_extra_output_table[f'{ind_choice} (%)'].apply( lambda x: "{:,.1f}".format(x) if isinstance(x, (int, float)) else x) # This section has been restored as original version (w/o 'for' function) otherwise later crashes if displays the chart with 'extra' columns # If indicators have been uploaded, add them in output table, round them to 0 decimal and add comma if uploaded_ind_1_weight >0: str_extra_output_table[f'{name_indicator_1}'] = matched_uploaded_indicator_1['xyz'] # round to 1 decimal pt round_uploaded = [f'{name_indicator_1}'] str_extra_output_table[round_uploaded] = str_extra_output_table[round_uploaded].map(lambda x: "{:,.1f}".format(x) if isinstance(x, (int, float)) else x) if uploaded_ind_2_weight >0: str_extra_output_table[f'{name_indicator_2}'] = matched_uploaded_indicator_2['xyz'] # round to 1 decimal pt round_uploaded = [f'{name_indicator_2}'] str_extra_output_table[round_uploaded] = str_extra_output_table[round_uploaded].map(lambda x: "{:,.1f}".format(x) if isinstance(x, (int, float)) else x) if uploaded_ind_3_weight >0: str_extra_output_table[f'{name_indicator_3}'] = matched_uploaded_indicator_3['xyz'] # round to 1 decimal pt round_uploaded = [f'{name_indicator_3}'] str_extra_output_table[round_uploaded] = str_extra_output_table[round_uploaded].map(lambda x: "{:,.1f}".format(x) if isinstance(x, (int, float)) else x) # This adds in the output table the amount allocated to each GP practice by that specific indicator; values are rounded them to 2 decimal and commas are added if ind_1_weight > 0: str_extra_output_table[f'Allocation by {ind_1_choice} (£)'] = alloc_by_ind_1_weighted # add commas and round to 2 decimal points the newly calculated columns round_output_x1 = [f'Allocation by {ind_1_choice} (£)'] str_extra_output_table[round_output_x1] = str_extra_output_table[round_output_x1].map(lambda x: '{:,.2f}'.format(x) if isinstance(x, (int, float)) else x) if ind_2_weight >0: str_extra_output_table[f'Allocation by {ind_2_choice} (£)'] = alloc_by_ind_2_weighted # add commas and round to 2 decimal points the newly calculated columns pound_n_round_output_x2 = [f'Allocation by {ind_2_choice} (£)'] str_extra_output_table[pound_n_round_output_x2] = str_extra_output_table[pound_n_round_output_x2].map(lambda x: "{:,.2f}".format(x) if isinstance(x, (int, float)) else x) if ind_3_weight >0: str_extra_output_table[f'Allocation by {ind_3_choice} (£)'] = alloc_by_ind_3_weighted # add commas and round to 2 decimal points the newly calculated columns round_output_x3 = [f'Allocation by {ind_3_choice} (£)'] str_extra_output_table[round_output_x3] = str_extra_output_table[round_output_x3].map(lambda x: "{:,.2f}".format(x) if isinstance(x, (int, float)) else x) if uploaded_ind_1_weight > 0: str_extra_output_table[f'Allocation by {name_indicator_1} (£)'] = alloc_by_up_ind_1_weighted # add commas and round to 2 decimal points the newly calculated columns round_output_u1 = [f'Allocation by {name_indicator_1} (£)'] str_extra_output_table[round_output_u1] = str_extra_output_table[round_output_u1].map(lambda x: "{:,.2f}".format(x) if isinstance(x, (int, float)) else x) if uploaded_ind_2_weight > 0: str_extra_output_table[f'Allocation by {name_indicator_2} (£)'] = alloc_by_up_ind_2_weighted # add commas and round to 2 decimal points the newly calculated columns round_output_u2 = [f'Allocation by {name_indicator_2} (£)'] str_extra_output_table[round_output_u2] = str_extra_output_table[round_output_u2].map(lambda x: "{:,.2f}".format(x) if isinstance(x, (int, float)) else x) if uploaded_ind_3_weight > 0: str_extra_output_table[f'Allocation by {name_indicator_3} (£)'] = alloc_by_up_ind_3_weighted # add commas and round to 2 decimal points the newly calculated columns round_output_u3 = [f'Allocation by {name_indicator_3} (£)'] str_extra_output_table[round_output_u3] = str_extra_output_table[round_output_u3].map(lambda x: "{:,.2f}".format(x) if isinstance(x, (int, float)) else x) if prop_pop >0: str_extra_output_table['Allocation by population size (£)'] = alloc_by_pop # add commas and round to 2 decimal points the newly calculated columns round_output_x_pop = ['Allocation by population size (£)'] str_extra_output_table[round_output_x_pop] = str_extra_output_table[round_output_x_pop].map(lambda x: "{:,.2f}".format(x) if isinstance(x, (int, float)) else x) # This removes 'Choose an option' from the output if no indicator is selected str_extra_output_table['Choose an option (%)'] = selected_icb_for_ind_n_pop['GP name'] str_extra_output_table.drop(columns=['Choose an option (%)'], inplace=True) str_extra_output_table['Total allocation (£)'] = tot_alloc str_extra_output_table['Allocation per patient (£)'] = alloc_per_head # Sort values (descending) by total allocation # (Sort before adding '£'sign or will sort 4-digits values first and then <4 digits values) str_extra_output_table = str_extra_output_table.sort_values(by='Total allocation (£)', ascending=False) # keep a copy before modifying to use for bar chart (below) wo_rnd_str_x_output_table = str_extra_output_table.copy() wo_rnd_str_x_output_table_sorted_per_h = str_extra_output_table.copy() round_output_f2 = ['Total allocation (£)', 'Allocation per patient (£)'] str_extra_output_table[round_output_f2] = str_extra_output_table[round_output_f2].map(lambda x: "{:,.2f}".format(x) if isinstance(x, (int, float)) else x) # Messages summarising which indicators contribute to what if prop_pop <0: st.write(f'IMPORTANT! The weighting selected cannot be greater than 100%. Please amend the weighting', unsafe_allow_html=True) else: st.success('Done!') if prop_pop >0: if uploaded_ind_1_weight >0 and uploaded_ind_2_weight ==0 and uploaded_ind_3_weight == 0: if ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight > 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice} and {name_indicator_1}' f' to be {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_1_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {ind_3_choice} and {name_indicator_1}' f' to be {ind_1_weight}%, {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_1_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight == 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice} and {name_indicator_1}' f' to be {ind_2_weight}% and {uploaded_ind_1_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice} and {name_indicator_1}' f' to be {ind_1_weight}%, {ind_2_weight}% and {uploaded_ind_1_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight ==0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {name_indicator_1}' f' to be {uploaded_ind_1_weight}% ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice} and {name_indicator_1}' f' to be {ind_1_weight}% and {uploaded_ind_1_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight >0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice} and {name_indicator_1}' f' to be {ind_3_weight}% and {uploaded_ind_1_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_3_choice} and {name_indicator_1}' f' to be {ind_1_weight}%, {ind_3_weight}% and {uploaded_ind_1_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight >0: st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice} and {name_indicator_1}' f' to be {ind_3_weight}% and {uploaded_ind_1_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice} and {name_indicator_1}' f' to be {ind_2_weight}% and {uploaded_ind_1_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight > 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice} and {name_indicator_1}' f' to be {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_1_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {name_indicator_1} to be {uploaded_ind_1_weight}%. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') if uploaded_ind_1_weight == 0 and uploaded_ind_2_weight > 0 and uploaded_ind_3_weight == 0: if ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight > 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice} and {name_indicator_2}' f' to be {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_2_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {ind_3_choice} and {name_indicator_2}' f' to be {ind_1_weight}%, {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_2_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight == 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice} and {name_indicator_2}' f' to be {ind_2_weight}% and {uploaded_ind_2_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice} and {name_indicator_2}' f' to be {ind_1_weight}%, {ind_2_weight}% and {uploaded_ind_2_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight ==0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {name_indicator_2}' f' to be {uploaded_ind_2_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice} and {name_indicator_2}' f' to be {ind_1_weight}% and {uploaded_ind_2_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight >0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice} and {name_indicator_2}' f' to be {ind_3_weight}% and {uploaded_ind_2_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_3_choice} and {name_indicator_2}' f' to be {ind_1_weight}%, {ind_3_weight}% and {uploaded_ind_2_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight >0: st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice} and {name_indicator_2}' f' to be {ind_3_weight}% and {uploaded_ind_2_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice} and {name_indicator_2}' f' to be {ind_2_weight}% and {uploaded_ind_2_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight > 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice} and {name_indicator_2}' f' to be {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_2_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {name_indicator_2} to be {uploaded_ind_2_weight}%. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') if uploaded_ind_1_weight == 0 and uploaded_ind_2_weight == 0 and uploaded_ind_3_weight > 0: if ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight > 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice} and {name_indicator_3}' f' to be {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {ind_3_choice} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight == 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice} and {name_indicator_3}' f' to be {ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight ==0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {name_indicator_3}' f' to be {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice} and {name_indicator_3}' f' to be {ind_1_weight}% and {uploaded_ind_3_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight >0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice} and {name_indicator_3}' f' to be {ind_3_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_3_choice} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_3_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight >0: st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice} and {name_indicator_3}' f' to be {ind_3_weight}% and {uploaded_ind_3_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice} and {name_indicator_3}' f' to be {ind_2_weight}% and {uploaded_ind_3_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight > 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice} and {name_indicator_3}' f' to be {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {name_indicator_3} to be {uploaded_ind_3_weight}%. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') if uploaded_ind_1_weight >0 and uploaded_ind_2_weight >0 and uploaded_ind_3_weight == 0: if ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight > 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {ind_3_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_1_weight}%, {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight == 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_2_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_1_weight}%, {ind_2_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight ==0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {name_indicator_1} and {name_indicator_2}' f' to be {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_1_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight >0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_3_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_1_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight >0: st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_2_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight > 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {name_indicator_1} and {name_indicator_2} to be {uploaded_ind_1_weight}% and {uploaded_ind_1_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') if uploaded_ind_1_weight ==0 and uploaded_ind_2_weight >0 and uploaded_ind_3_weight > 0: if ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight > 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {ind_3_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight == 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_2_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_2_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight ==0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {name_indicator_2} and {name_indicator_3}' f' to be {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight >0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_3_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_3_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_3_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight >0: st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_3_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_2_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight > 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {name_indicator_2} and {name_indicator_3} to be {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') if uploaded_ind_1_weight >0 and uploaded_ind_2_weight == 0 and uploaded_ind_3_weight > 0: if ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight > 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {ind_3_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight == 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_2_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_2_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight ==0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {name_indicator_1} and {name_indicator_3}' f' to be {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_1_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight >0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_3_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight >0: st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_2_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight > 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {name_indicator_1} and {name_indicator_3} to be {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') if uploaded_ind_1_weight >0 and uploaded_ind_2_weight >0 and uploaded_ind_3_weight >0: if ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight > 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {ind_3_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight == 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_2_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_2_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight ==0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_1_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight >0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_3_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_3_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight >0: st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_3_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_2_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight > 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif uploaded_ind_1_weight == 0 and uploaded_ind_2_weight == 0 and uploaded_ind_3_weight == 0: if ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight > 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice} and {ind_3_choice}' f' to be {ind_2_weight}% and {ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice} and {ind_3_choice}' f' to be {ind_1_weight}%, {ind_2_weight}% and {ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight == 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}' f' to be {ind_2_weight}%. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice} and {ind_2_choice}' f' to be {ind_1_weight}% and {ind_2_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight ==0: if ind_1_choice == 'Choose an option': st.write('You selected to allocate the funding soley based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}' f' to be {ind_1_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight >0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}' f' to be {ind_3_weight}%. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice} and {ind_3_choice}' f' to be {ind_1_weight}% and {ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight >0: st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}' f' to be {ind_3_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}' f' to be {ind_2_weight}%. The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight > 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice} and {ind_3_choice}' f' to be {ind_2_weight}% and {ind_3_weight}%, respectively. ' f'The remaining {prop_pop}% of unassigned weighting will be based on registered population size.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight == 0: st.write('You selected to allocate the funding soley based on registered population size.') elif prop_pop == 0: if uploaded_ind_1_weight >0 and uploaded_ind_2_weight == 0 and uploaded_ind_3_weight == 0: if ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight > 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice} and {name_indicator_1}' f' to be {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_1_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {ind_3_choice} and {name_indicator_1}' f' to be {ind_1_weight}%, {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_1_weight}%, respectively.') elif ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight == 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice} and {name_indicator_1}' f' to be {ind_2_weight}% and {uploaded_ind_1_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice} and {name_indicator_1}' f' to be {ind_1_weight}%, {ind_2_weight}% and {uploaded_ind_1_weight}%, respectively.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight ==0: if ind_1_choice == 'Choose an option': st.write(f'You selected to allocate the funding soley based on {name_indicator_1}') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice} and {name_indicator_1}' f' to be {ind_1_weight}% and {uploaded_ind_1_weight}%.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight >0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice} and {name_indicator_1}' f' to be {ind_3_weight}% and {uploaded_ind_1_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_3_choice} and {name_indicator_1}' f' to be {ind_1_weight}%, {ind_3_weight}% and {uploaded_ind_1_weight}%, respectively.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight >0: st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice} and {name_indicator_1}' f' to be {ind_3_weight}% and {uploaded_ind_1_weight}%.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice} and {name_indicator_1}' f' to be {ind_2_weight}% and {uploaded_ind_1_weight}%.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight > 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice} and {name_indicator_1}' f' to be {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_1_weight}%, respectively.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {name_indicator_1}.') if uploaded_ind_1_weight == 0 and uploaded_ind_2_weight >0 and uploaded_ind_3_weight == 0: if ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight > 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice} and {name_indicator_2}' f' to be {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_2_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {ind_3_choice} and {name_indicator_2}' f' to be {ind_1_weight}%, {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_2_weight}%, respectively.') elif ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight == 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice} and {name_indicator_2}' f' to be {ind_2_weight}% and {uploaded_ind_2_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice} and {name_indicator_2}' f' to be {ind_1_weight}%, {ind_2_weight}% and {uploaded_ind_2_weight}%, respectively.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight ==0: if ind_1_choice == 'Choose an option': st.write(f'You selected to allocate the funding soley based on {name_indicator_2}') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice} and {name_indicator_2}' f' to be {ind_1_weight}% and {uploaded_ind_2_weight}%.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight >0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice} and {name_indicator_2}' f' to be {ind_3_weight}% and {uploaded_ind_2_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_3_choice} and {name_indicator_2}' f' to be {ind_1_weight}%, {ind_3_weight}% and {uploaded_ind_2_weight}%, respectively.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight >0: st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice} and {name_indicator_2}' f' to be {ind_3_weight}% and {uploaded_ind_2_weight}%.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice} and {name_indicator_2}' f' to be {ind_2_weight}% and {uploaded_ind_2_weight}%.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight > 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice} and {name_indicator_2}' f' to be {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_2_weight}%, respectively.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {name_indicator_2}.') if uploaded_ind_1_weight == 0 and uploaded_ind_2_weight == 0 and uploaded_ind_3_weight > 0: if ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight > 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice} and {name_indicator_3}' f' to be {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_3_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {ind_3_choice} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight == 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice} and {name_indicator_3}' f' to be {ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight ==0: if ind_1_choice == 'Choose an option': st.write(f'You selected to allocate the funding soley based on {name_indicator_3}.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice} and {name_indicator_3}' f' to be {ind_1_weight}% and {uploaded_ind_3_weight}%.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight >0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice} and {name_indicator_3}' f' to be {ind_3_weight}% and {uploaded_ind_3_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_3_choice} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_3_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight >0: st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice} and {name_indicator_3}' f' to be {ind_3_weight}% and {uploaded_ind_3_weight}%.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice} and {name_indicator_3}' f' to be {ind_2_weight}% and {uploaded_ind_3_weight}%.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight > 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice} and {name_indicator_3}' f' to be {ind_2_weight}%, {ind_3_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {name_indicator_3}.') if uploaded_ind_1_weight >0 and uploaded_ind_2_weight >0 and uploaded_ind_3_weight == 0: if ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight > 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {ind_3_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_1_weight}%, {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%, respectively.') elif ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight == 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_2_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_1_weight}%, {ind_2_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%, respectively.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight ==0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {name_indicator_1} and {name_indicator_2}' f' to be {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_1_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight >0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_3_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_1_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%, respectively.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight >0: st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_2_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight > 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice}, {name_indicator_1} and {name_indicator_2}' f' to be {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%, respectively.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {name_indicator_1} and {name_indicator_2}' f' to be {uploaded_ind_1_weight}% and {uploaded_ind_2_weight}%, respectively.') if uploaded_ind_1_weight == 0 and uploaded_ind_2_weight >0 and uploaded_ind_3_weight > 0: if ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight > 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {ind_3_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight == 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_2_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_2_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight ==0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {name_indicator_2} and {name_indicator_3}' f' to be {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight >0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_3_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_3_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_3_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight >0: st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_3_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_2_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight > 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {name_indicator_2} and {name_indicator_3}' f' to be {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') if uploaded_ind_1_weight > 0 and uploaded_ind_2_weight == 0 and uploaded_ind_3_weight > 0: if ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight > 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {ind_3_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight == 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_2_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_2_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight ==0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {name_indicator_1} and {name_indicator_3}' f' to be {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_1_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight >0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_3_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_3_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight >0: st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_2_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight > 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice}, {name_indicator_1} and {name_indicator_3}' f' to be {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {name_indicator_1} and {name_indicator_3}' f' to be {uploaded_ind_1_weight}% and {uploaded_ind_3_weight}%, respectively.') if uploaded_ind_1_weight >0 and uploaded_ind_2_weight > 0 and uploaded_ind_3_weight >0: if ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight > 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {ind_3_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight == 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_2_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_2_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight ==0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_1_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight >0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_3_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_3_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_1_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight >0: st.write(f'You selected the proportion of the funding allocated based on {ind_3_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_3_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_2_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight > 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice}, {ind_3_choice}, {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {ind_2_weight}%, {ind_3_weight}%, {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight == 0: st.write(f'You selected the proportion of the funding allocated based on {name_indicator_1}, {name_indicator_2} and {name_indicator_3}' f' to be {uploaded_ind_1_weight}%, {uploaded_ind_2_weight}% and {uploaded_ind_3_weight}%, respectively.') elif uploaded_ind_1_weight == 0 and uploaded_ind_2_weight == 0 and uploaded_ind_3_weight == 0: if ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight > 0: if ind_1_choice == 'Choose an option': st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice} and {ind_3_choice}' f' to be {ind_2_weight}% and {ind_3_weight}%, respectively.') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice}, {ind_2_choice} and {ind_3_choice}' f' to be {ind_1_weight}%, {ind_2_weight}% and {ind_3_weight}%, respectively.') elif ind_1_weight >0 and ind_2_weight > 0 and ind_3_weight == 0: if ind_1_choice == 'Choose an option': st.write(f'You selected to allocate the funding soley based on {ind_2_choice}') else: st.write(f'You selected the proportion of the funding allocated based on {ind_1_choice} and {ind_2_choice}' f' to be {ind_1_weight}% and {ind_2_weight}%, respectively.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight ==0: if ind_1_choice == 'Choose an option': st.write(f'You selected to allocate the funding soley based on registered population size.') else: st.write(f'You selected to allocate the funding soley based on {ind_1_choice}.') elif ind_1_weight >0 and ind_2_weight == 0 and ind_3_weight >0: st.write(f'You selected to allocate the funding soley based on {ind_3_choice}.') elif ind_1_weight == 0 and ind_2_weight == 0 and ind_3_weight >0: st.write(f'You selected to allocate the funding soley based on {ind_3_choice}.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight == 0: st.write(f'You selected to allocate the funding soley based on {ind_2_choice}.') elif ind_1_weight == 0 and ind_2_weight > 0 and ind_3_weight > 0: st.write(f'You selected the proportion of the funding allocated based on {ind_2_choice} and {ind_3_choice}' f' to be {ind_2_weight}% and {ind_3_weight}%, respectively.') st.write(f"Hence, based on your preferences, the allocation to each GP practice in _{icb_choice}_ is the following:") # Show results (table) st.dataframe(str_extra_output_table, hide_index=True) # Add statement to clarify discrepancy in values between pop vs weighted pop # (which arise if the selected demographics does not comprise the entire GP practice size) if ind_1_choice == 'Weighted population' or ind_2_choice == 'Weighted population' or ind_3_choice == 'Weighted population': if slider_age[0] >0 and slider_age[1] <95: st.info("*Note: If you notice a discrepancy in the output above between values in the 'Population' and 'Weighted " "population' columns, it is because the 'Weighted population' represents the entire population for that GP " "practice. Hence, when selecting 'Weighted population', you might want to consider selecting the entire population size " "(from the 'age' and 'gender' options on the left)") elif gender_selected != 'Both': st.info("*Note: If you notice a discrepancy in the output above between values in the 'Population' and 'Weighted " "population' columns, it is because the 'Weighted population' represents the entire population for that GP " "practice. Hence, when selecting 'Weighted population', you might want to consider selecting the entire population size " "(from the 'age' and 'gender' options on the left)") else: st.write() # ADD DOWNLOAD BUTTON # IMPORTANT: Cache the conversion to prevent computation on every rerun @st.cache_data # Define function to convert DataFrame to csv def convert_df(df): return df.to_csv(index=False).encode('utf-8') csv = convert_df(str_extra_output_table) st.download_button(label="**Download table**", data=csv, file_name=f'Allocations for {icb_choice}.csv',key="extra_output_table") st.write('') st.write('') ################################################################################ # OPTION TO CLICK AN EXPANDER TO DISPLAY A CHART with st.expander(':blue[Click here to display the chart]'): tab1, tab2 = st.tabs(["Total allocation", "Allocation per patient"]) with tab1: # use for 'Total allocation' y1 = wo_rnd_str_x_output_table['GP name'] # Create a figure object and an axes object, and add the axes object as a subplot of the figure object bar_traces = [] if uploaded_ind_1_weight >0: for ind_choice, ind_weight in indicators_weights: x_123 = wo_rnd_str_x_output_table[f'Allocation by {ind_choice} (£)'] bar_traces.append(go.Bar(x=x_123[::-1], y=y1[::-1], name=ind_choice, orientation='h')) for up_indicator, up_weight in up_indicators_weights: x_up123 = wo_rnd_str_x_output_table[f'Allocation by {up_indicator} (£)'] bar_traces.append(go.Bar(x=x_up123[::-1], y=y1[::-1], name=up_indicator, orientation='h')) if prop_pop >0: x_pop = wo_rnd_str_x_output_table['Allocation by population size (£)'] bar_traces.append(go.Bar(x=x_pop[::-1], y=y1[::-1], name='Population', orientation='h')) else: for ind_choice, ind_weight in indicators_weights: x_123 = wo_rnd_str_x_output_table[f'Allocation by {ind_choice} (£)'] bar_traces.append(go.Bar(x=x_123[::-1], y=y1[::-1], name=ind_choice, orientation='h')) if prop_pop >0: x_pop = wo_rnd_str_x_output_table['Allocation by population size (£)'] bar_traces.append(go.Bar(x=x_pop[::-1], y=y1[::-1], name='Population', orientation='h')) data_1 = go.Figure(bar_traces) data_1.update_layout(autosize=False, height=len(y1)*15,margin=go.layout.Margin(t=30), title=f"Resource allocation for {icb_choice}", xaxis=dict(title="Total allocation (£)", automargin=True, showgrid = True),barmode='stack', legend_traceorder="normal", legend=dict(orientation="h", y=-0.06, x=0.0)) data_1.update_yaxes(automargin=True, dtick=1) # Format hover text to display rounded values to 2 decimal points and '£' sign data_1.update_traces(hovertemplate='£ %{x:,.2f}') # Show the figure st.plotly_chart(data_1, use_container_width=True) with tab2: # use for 'Allocation per patient' # Sort the DataFrame by 'Allocation per patient' in descending order wo_rnd_str_x_output_table_sorted_per_h = wo_rnd_str_x_output_table_sorted_per_h.sort_values(by='Allocation per patient (£)') y2 = wo_rnd_str_x_output_table_sorted_per_h['GP name'] x2 = wo_rnd_str_x_output_table_sorted_per_h['Allocation per patient (£)'] # Create a figure object and an axes object, and add the axes object as a subplot of the figure object trace_p_h = go.Bar (x = x2, y = y2, orientation='h') data_2 = go.Figure([trace_p_h]) data_2.update_layout(autosize=False, height=len(y2)*15,margin=go.layout.Margin(t=30), title=f"Resource allocation for {icb_choice}", xaxis=dict(title="Allocation per patient (£)", automargin=True, showgrid = True)) data_2.update_yaxes(automargin=True, dtick=1) # Format hover text to display rounded values to 2 decimal points and '£' sign data_2.update_traces(hovertemplate='£ %{x:,.2f}') # Show the figure st.plotly_chart(data_2, use_container_width=True) ################################################################################ # Display an EXPANDER to show the difference if you would have used a weighted pop formula # (only if 'weighted population' formula was not selected and if prop_pop is not <0) if ind_1_choice == "Weighted population" and ind_1_weight == 100: st.write('') elif ind_2_choice == "Weighted population" and ind_2_weight == 100: st.write('') elif ind_3_choice == "Weighted population" and ind_3_weight == 100: st.write('') elif prop_pop <0: st.write('') elif button_ticked == True: st.write('') st.write('') with st.expander(":blue[Click here to show the difference between your selection and a 'weighted population' formula]"): tab1wp, tab2wp, tab3wp = st.tabs(["Table", "Chart: Total allocation", "Chart: Allocation per patient"]) # Calculate using weighted pop wt_pop_x_1 = selected_icb_for_ind_n_pop['Weighted population'] sum_wt_pop_x_1 = wt_pop_x_1.sum() alloc_wt_pop = wt_pop_x_1.fillna(0) / sum_wt_pop_x_1 * funding alloc_wt_pop_p_head = alloc_wt_pop.fillna(0) /all_pop_merged['Population'] ############################################ # Parameters for Tab2wp and Tab3wp comp_to_wt_pop = pd.DataFrame() comp_to_wt_pop['GP name'] = selected_icb_for_ind_n_pop['GP name'] y_wp = comp_to_wt_pop['GP name'] comp_to_wt_pop['with eFIT (£)'] = tot_alloc comp_to_wt_pop['with weighted population (£)'] = alloc_wt_pop comp_to_wt_pop['with eFIT(£)'] = alloc_per_head comp_to_wt_pop['with weighted population(£)'] = alloc_wt_pop_p_head with tab1wp: # use for Table data = { ('', 'GP name'): selected_icb_for_ind_n_pop['GP name'], ('', 'GP code'): selected_icb_for_ind_n_pop['GP code'], ('Population', 'with eFIT'): selected_icb_for_ind_n_pop['Population'], ('Population', 'Weighted'): selected_icb_for_ind_n_pop['Weighted population'], ('Total allocation (£)', 'with eFIT'): tot_alloc, ('Total allocation (£)', 'with weighted population'): alloc_wt_pop, ('Allocation per patient (£)', 'with eFIT'): alloc_per_head, ('Allocation per patient (£)', 'with weighted population'): alloc_wt_pop_p_head } # Creating MultiIndex # index = pd.MultiIndex.from_product(data) # it doesn't seem to be needed to have a multiindexed dataframe # Creating DataFrame comp_to_wt_pop_table = pd.DataFrame(data) # Sorting by 'Total allocation' 'with eFIT (£)' comp_to_wt_pop_table = comp_to_wt_pop_table.sort_values(by=('Total allocation (£)', 'with eFIT'), ascending=False) # add commas to population comp_to_wt_pop_table['Population', 'with eFIT'] = comp_to_wt_pop_table['Population', 'with eFIT'].apply(lambda x: "{:,}".format(x)) # Convert specified columns to numeric before formatting # (to weighted population: add commas and round to zero decimal point) # comp_to_wt_pop_table['Population', 'Weighted'] = pd.to_numeric(comp_to_wt_pop_table['Population', 'Weighted']) comp_to_wt_pop_table['Population', 'Weighted'] = comp_to_wt_pop_table['Population', 'Weighted'].apply(lambda x: "{:,.0f}".format(x)) # (to remaining columns: add commas and round to zero decimal point) columns_to_format = [('Total allocation (£)', 'with eFIT'), ('Total allocation (£)', 'with weighted population'), ('Allocation per patient (£)', 'with eFIT'), ('Allocation per patient (£)', 'with weighted population')] for column in columns_to_format: comp_to_wt_pop_table[column] = pd.to_numeric(comp_to_wt_pop_table[column]) comp_to_wt_pop_table[column] = comp_to_wt_pop_table[column].apply(lambda x: "{:,.2f}".format(x)) # Show results (table) st.dataframe(comp_to_wt_pop_table, hide_index=True) # Add download button @st.cache_data def convert_df(df): # IMPORTANT: Cache the conversion to prevent computation on every rerun return df.to_csv(index=False).encode('utf-8') csv = convert_df(comp_to_wt_pop_table) st.download_button(label="Download comparison table", data=csv, file_name=f'Allocations for {icb_choice}.csv', key = 'weight_pop') with tab2wp: # use for 'Total allocation' # Sort the DataFrame by 'Allocation per patient' in descending order # comp_to_wt_pop = comp_to_wt_pop.sort_values(by='with eFIT (£)', ascending=False) # delete, this messes up things! x1eF = [-float(x) for x in comp_to_wt_pop['with eFIT (£)']] # Make values negative otherwise it overlaps with other bar x1wp = comp_to_wt_pop['with weighted population (£)'] # Create a figure object and 2 axes object (?), and add the axes object as a subplot of the figure object (?) bar_traces_wp = go.Figure() bar_traces_wp.add_trace(go.Bar(y=y_wp[::-1], x=x1eF[::-1], name='with eFIT', orientation='h', offset=-0.0)) bar_traces_wp.add_trace(go.Bar(y=y_wp[::-1], x=x1wp[::-1], name='with weighted population', orientation='h', offset=0.0)) # Format hover text to display rounded values to 2 decimal points and '£' sign bar_traces_wp.update_traces(hovertemplate='%{y}: £ %{x:,.2f}') # Update layout bar_traces_wp.update_layout(autosize=False, height=len(y_wp)*15,margin=go.layout.Margin(t=30), title="Total allocation comparison between your selection with 'eFIT' tool or 'weighted population' formula", xaxis=dict(title="Total allocation (£)", showgrid = True), yaxis_title="GP name", yaxis_visible=False, barmode='relative', # Display bars side by side bargap=0.1, # Adjust gap between bars legend=dict(orientation="h", x=0.42, y=1.1)) # Adjust legend position bar_traces_wp.update_yaxes(automargin=True, dtick=1) # Show the figure st.plotly_chart(bar_traces_wp, use_container_width=True) with tab3wp: # use for 'Allocation per patient' # Sort the DataFrame by 'Allocation per patient' in descending order x2eF = [-float(x) for x in comp_to_wt_pop['with eFIT(£)']] # Make values negative otherwise it overlaps with other bar x2wp = comp_to_wt_pop['with weighted population(£)'] # Create a figure object and 2 axes object (?), and add the axes object as a subplot of the figure object (?) bar_traces_wp_p_h = go.Figure() bar_traces_wp_p_h.add_trace(go.Bar(y=y_wp[::-1], x=x2eF[::-1], name='with eFIT', orientation='h', offset=-0.0)) bar_traces_wp_p_h.add_trace(go.Bar(y=y_wp[::-1], x=x2wp[::-1], name='with weighted population', orientation='h', offset=0.0)) # Format hover text to display rounded values to 2 decimal points and '£' sign bar_traces_wp_p_h.update_traces(hovertemplate='%{y}: £ %{x:,.2f}') # Update layout bar_traces_wp_p_h.update_layout(autosize=False, height=len(y_wp)*15,margin=go.layout.Margin(t=30), title="Comparison of allocation per patient between your selection with 'eFIT' or 'weighted population' formula", xaxis=dict(title="Allocation per patient (£)", showgrid = True), yaxis_title="GP name", yaxis_visible=False, barmode='relative', # Display bars side by side bargap=0.1, # Adjust gap between bars legend=dict(orientation="h", x=0.42, y=1.1)) # Adjust legend position bar_traces_wp_p_h.update_yaxes(automargin=True, dtick=1) # Show the figure st.plotly_chart(bar_traces_wp_p_h, use_container_width=True) # Add disclaimer if calculate_button_ticked == True: st.write('') st.write('') st.write('') st.write('') st.write('') st.write('') st.write('') st.write('') st.write('') st.write('') st.write('') st.write('') st.warning('Health data can be inaccurate. Consider checking important information.') if button_ticked == True: st.write('') st.write('') st.write('') st.write('') st.write('') st.write('') st.write('') st.write('') st.write('') st.write('') st.write('') st.write('') st.warning('Health data can be inaccurate. Consider checking important information.') # End of Code import streamlit as st # This is to add in a title for our web app's page st.title('**Tutorial**') st.write('Please have a look at our video for a short tutorial on how to use the eFIT tool') video_file = open('pages/video_tutorial.mp4', 'rb') video_bytes = video_file.read() st.video(video_bytes) st.write('') st.write('') st.write('') st.write(' **To report any bug, feedback or special requests please email: peter.saiu@nhs.net** ') st.write('') st.success('Please let us know if your organisation has used this tool') import streamlit as st # This is to add in a title for our web app's page st.title('Methodology') st.write('For each indicator we have applied the following formula:') # ADD equation (for 'single' indicator') st.image('pages/single_equation.png', width=200) st.write('') st.write('For indicators where a lower indicator value results in more funding, the equation has been _reversed_. ') st.write('') st.write('Given that you can assign different weights to each indicator, the resulting equation is the following:') # ADD equation (for all indicators') st.image('pages/longer_equation.png', width=300) st.write('where:') st.image('pages/where.png', width=500) st.write('') st.warning('To be noted that some health data might be missing, hence we suggest to always double check your results.') st.write('') st.title('Data sources') # Messages st.write('Indicators data **for 2023/24**, including IMD scores (2019)* and prevalence (QOF) data, was extracted on 22/3/2025 from fingertips ( https://fingertips.phe.org.uk/ ).') st.write('*For some ICBs, where new General Practices opened or merged/demerged (e.g. Cambridgeshire and Peterborough ICB and Nottingham and Nottinghamshire ICB), ' 'we have calculated their new IMD.') st.write('Weighted population data is for 2024/25 and was extracted from: J–overall weighted populations by integrated care board and GP practice 2025 to 2026 ' 'at NHS England >> Supporting spreadsheets for 2025/26 allocations' 'available at: https://www.england.nhs.uk/publication/supporting-spreadsheets-for-2025-26-allocations/ ') st.write('General Practices population size data is as of April 2025 and was extracted from NHS Digital at: https://digital.nhs.uk/data-and-information/publications/statistical/patients-registered-at-a-gp-practice.') st.write('Caveat: If GP practices have merged in the last year, some health indicators taken from fingertips might still display the values for the GP practice that retained the GP code for the merged organisations ' '(rather than averaging the value of all the merged organisations). If this is the case, reach out to us to see if we can calculate an updated value.') st.write() st.write('**Version Control**') st.write('This new data was added into the tool on 27/5/2025') st.write('') st.write('') st.title('FAQs') st.write('**Q:** What and who is this tool for?') st.write('**A:** This tool is a calculator for ICB directors/managers ICB financial teams in England who receive **extra funding** ' 'for General Practices and wish to split the money based on **inequalities** and/or **local data**. ') st.write('') st.write('') st.write('') st.write('**Q:** Why do we need this tool?') st.write('**A:** The allocation of general practice funding is well established nationally (with the variant of the Carr-Hill formula), ' 'but there is currently no national guidance on how to allocate discretionary additional funds in an equitable manner. ' 'Often ICBs resort to allocating funding per head of population, rather than considering inequalities and population need.' 'This user‑friendly tool (eFIT) allows ICB managers to easily calculate various scenarios of how to split ' 'this funding by taking into consideration the health data associated with the intervention they are aiming to roll out. ') st.write('') st.write('') st.write('') st.write("**Q:** Is there a way to calculate the allocation just based on reigistered population size (rather than weighted population)?") st.write("**A:** Yes! If from the sidebar, you leave all the indicators boxes unselected (reading _'Choose an option'_), the allocation will be calculated solely based on the population size selected from the demographics section") st.write('') st.write('') st.write('') st.write("**Q:** When I try to upload my data from excel it gives the error 'UnicodeDecodeError: This app has encountered an error ...'") st.write("**A:** You can only upload files in a '.csv' format. Hence, with your file open with excel, re-save the document in .csv (save as :arrow_right: format: 'csv')") st.write('') st.write('') st.write('') st.write("**Q:** What is the difference beween using this tool or just using a weighted population formula?") st.write("**A:** Without specific instructions on how you want to split the funding, or depending on capacity of the financial team, monies might just be split using a weighted population formula. " "However, with this tool, you can tailor the alloction based on your local needs by selecting the demographics and local needs specific for your intervention. " "You can view the difference between using this eFIT tool and using a weighted population formula, by clicking the 'Show more detail' box and the expander at the bottom of the webpage.") st.write('') st.write('') st.write('**Acknowledgments**: We thank the Health Service Modelling Associates (HSMA) (https://sites.google.com/nihr.ac.uk/hsma/home ), Dr John Ford and Dr Stefano Conti from the Health Foundation.') st.write('') st.write('') st.write(' **To report any bug, feedback or special requests please email: peter.saiu@nhs.net** ') st.write('') st.success('Please let us know if your organisation has used this tool') GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 A82003,41.0,36.0,40.0,40.0,35.0,40.0,64.0,45.0,70.0,55.0,59.0,50.0,53.0,51.0,52.0,64.0,52.0,51.0,47.0,51.0,55.0,49.0,56.0,48.0,57.0,87.0,59.0,58.0,69.0,68.0,59.0,66.0,61.0,73.0,74.0,72.0,69.0,69.0,60.0,71.0,75.0,67.0,78.0,66.0,75.0,71.0,63.0,66.0,75.0,84.0,82.0,78.0,81.0,81.0,96.0,83.0,92.0,93.0,99.0,83.0,114.0,100.0,110.0,75.0,83.0,83.0,85.0,88.0,84.0,64.0,68.0,72.0,76.0,83.0,81.0,76.0,79.0,81.0,79.0,68.0,48.0,52.0,53.0,43.0,34.0,35.0,31.0,30.0,35.0,31.0,13.0,18.0,23.0,15.0,6.0,16.0 A82005,14.0,8.0,11.0,9.0,13.0,11.0,14.0,22.0,5.0,15.0,31.0,16.0,21.0,17.0,21.0,21.0,20.0,21.0,23.0,32.0,45.0,44.0,47.0,41.0,50.0,31.0,28.0,33.0,41.0,26.0,32.0,43.0,33.0,30.0,47.0,23.0,26.0,31.0,27.0,25.0,32.0,29.0,32.0,43.0,38.0,25.0,30.0,27.0,27.0,27.0,26.0,37.0,33.0,31.0,44.0,42.0,44.0,36.0,53.0,44.0,46.0,45.0,52.0,54.0,44.0,45.0,45.0,46.0,47.0,29.0,38.0,44.0,39.0,30.0,31.0,28.0,26.0,28.0,38.0,31.0,36.0,31.0,28.0,21.0,15.0,16.0,13.0,13.0,15.0,8.0,9.0,9.0,8.0,5.0,5.0,5.0 A82007,38.0,51.0,50.0,57.0,40.0,50.0,54.0,55.0,68.0,58.0,74.0,72.0,63.0,55.0,62.0,52.0,55.0,80.0,72.0,53.0,72.0,53.0,74.0,69.0,67.0,51.0,65.0,83.0,84.0,78.0,62.0,72.0,104.0,79.0,93.0,83.0,91.0,67.0,61.0,92.0,91.0,62.0,85.0,64.0,56.0,67.0,66.0,50.0,70.0,79.0,70.0,78.0,81.0,73.0,92.0,100.0,71.0,70.0,110.0,88.0,87.0,81.0,78.0,60.0,65.0,58.0,63.0,57.0,55.0,68.0,56.0,53.0,55.0,52.0,66.0,57.0,68.0,65.0,56.0,54.0,48.0,41.0,35.0,30.0,32.0,26.0,17.0,16.0,20.0,18.0,16.0,14.0,9.0,6.0,7.0,7.0 A82008,40.0,39.0,49.0,51.0,61.0,65.0,56.0,58.0,72.0,82.0,55.0,63.0,67.0,79.0,72.0,76.0,72.0,69.0,65.0,53.0,58.0,50.0,49.0,62.0,55.0,86.0,82.0,77.0,74.0,76.0,77.0,87.0,78.0,91.0,88.0,70.0,88.0,90.0,76.0,75.0,78.0,86.0,72.0,79.0,74.0,57.0,74.0,70.0,45.0,65.0,67.0,74.0,65.0,62.0,89.0,72.0,80.0,84.0,80.0,81.0,70.0,74.0,82.0,78.0,70.0,74.0,86.0,55.0,76.0,62.0,48.0,59.0,57.0,62.0,60.0,57.0,60.0,73.0,71.0,75.0,51.0,56.0,45.0,40.0,48.0,33.0,26.0,23.0,27.0,18.0,18.0,17.0,7.0,8.0,2.0,23.0 A82009,40.0,41.0,50.0,44.0,38.0,44.0,48.0,51.0,54.0,52.0,49.0,52.0,56.0,70.0,44.0,56.0,59.0,49.0,53.0,50.0,53.0,49.0,44.0,45.0,48.0,54.0,44.0,52.0,57.0,51.0,53.0,58.0,52.0,54.0,49.0,69.0,54.0,63.0,75.0,67.0,59.0,58.0,56.0,56.0,53.0,41.0,37.0,55.0,58.0,52.0,60.0,52.0,58.0,67.0,69.0,74.0,65.0,65.0,86.0,60.0,69.0,70.0,64.0,58.0,48.0,59.0,56.0,46.0,58.0,49.0,58.0,48.0,48.0,56.0,53.0,53.0,47.0,55.0,46.0,53.0,35.0,33.0,39.0,27.0,38.0,23.0,28.0,27.0,14.0,11.0,16.0,6.0,6.0,3.0,5.0,12.0 A82010,25.0,26.0,28.0,31.0,28.0,30.0,22.0,28.0,47.0,31.0,40.0,33.0,35.0,36.0,27.0,45.0,27.0,37.0,28.0,34.0,28.0,43.0,28.0,30.0,35.0,37.0,29.0,25.0,38.0,27.0,35.0,41.0,44.0,43.0,31.0,52.0,52.0,43.0,40.0,38.0,40.0,34.0,31.0,42.0,41.0,31.0,29.0,32.0,32.0,44.0,39.0,42.0,46.0,72.0,50.0,50.0,63.0,58.0,63.0,54.0,57.0,58.0,66.0,48.0,71.0,70.0,42.0,54.0,46.0,40.0,42.0,47.0,43.0,50.0,33.0,38.0,38.0,46.0,35.0,27.0,36.0,28.0,29.0,22.0,20.0,16.0,18.0,19.0,10.0,12.0,7.0,7.0,5.0,6.0,6.0,9.0 A82025,46.0,36.0,44.0,61.0,51.0,61.0,68.0,58.0,66.0,55.0,48.0,51.0,58.0,54.0,63.0,51.0,57.0,71.0,53.0,55.0,28.0,48.0,46.0,51.0,62.0,54.0,50.0,58.0,68.0,83.0,71.0,65.0,82.0,97.0,69.0,80.0,90.0,79.0,91.0,80.0,77.0,68.0,72.0,83.0,88.0,93.0,76.0,68.0,77.0,82.0,79.0,83.0,65.0,78.0,86.0,93.0,79.0,92.0,94.0,98.0,90.0,84.0,73.0,97.0,88.0,93.0,93.0,69.0,62.0,62.0,72.0,68.0,62.0,51.0,76.0,61.0,61.0,76.0,78.0,50.0,45.0,52.0,43.0,33.0,30.0,25.0,21.0,20.0,18.0,17.0,18.0,6.0,13.0,7.0,8.0,15.0 A82026,72.0,68.0,68.0,69.0,87.0,76.0,82.0,80.0,88.0,68.0,67.0,97.0,101.0,74.0,95.0,89.0,107.0,101.0,99.0,90.0,61.0,66.0,72.0,71.0,68.0,76.0,81.0,91.0,83.0,102.0,109.0,90.0,83.0,96.0,113.0,97.0,129.0,97.0,113.0,109.0,132.0,92.0,96.0,121.0,110.0,103.0,85.0,95.0,107.0,105.0,89.0,102.0,114.0,134.0,131.0,128.0,128.0,150.0,122.0,118.0,139.0,141.0,126.0,119.0,141.0,127.0,126.0,98.0,122.0,111.0,116.0,111.0,99.0,111.0,107.0,132.0,120.0,118.0,113.0,82.0,92.0,75.0,76.0,63.0,60.0,66.0,63.0,62.0,48.0,40.0,29.0,22.0,23.0,18.0,17.0,35.0 A82027,31.0,33.0,30.0,33.0,38.0,36.0,32.0,45.0,28.0,36.0,50.0,50.0,40.0,41.0,52.0,46.0,43.0,59.0,49.0,45.0,45.0,39.0,32.0,50.0,38.0,47.0,50.0,51.0,44.0,62.0,62.0,49.0,50.0,53.0,60.0,60.0,54.0,62.0,52.0,61.0,48.0,54.0,66.0,48.0,57.0,63.0,46.0,72.0,64.0,67.0,63.0,78.0,66.0,79.0,76.0,62.0,71.0,82.0,72.0,73.0,93.0,79.0,74.0,67.0,73.0,77.0,77.0,56.0,66.0,54.0,66.0,68.0,54.0,73.0,76.0,64.0,77.0,60.0,76.0,54.0,50.0,57.0,41.0,30.0,33.0,46.0,34.0,31.0,23.0,26.0,17.0,9.0,7.0,15.0,9.0,29.0 A82030,15.0,16.0,17.0,26.0,23.0,19.0,22.0,36.0,32.0,35.0,29.0,23.0,34.0,31.0,33.0,39.0,27.0,28.0,30.0,30.0,25.0,17.0,23.0,22.0,17.0,25.0,17.0,26.0,34.0,23.0,24.0,29.0,22.0,39.0,27.0,38.0,24.0,18.0,25.0,35.0,33.0,41.0,43.0,42.0,32.0,39.0,25.0,22.0,44.0,30.0,27.0,41.0,35.0,48.0,48.0,54.0,57.0,62.0,60.0,68.0,70.0,76.0,66.0,69.0,74.0,77.0,49.0,53.0,46.0,50.0,52.0,48.0,43.0,46.0,44.0,56.0,39.0,59.0,40.0,37.0,41.0,42.0,32.0,38.0,26.0,26.0,28.0,31.0,22.0,14.0,17.0,12.0,8.0,8.0,7.0,20.0 A82033,27.0,19.0,31.0,39.0,44.0,33.0,34.0,40.0,39.0,41.0,35.0,39.0,56.0,37.0,48.0,52.0,38.0,31.0,31.0,40.0,36.0,35.0,35.0,30.0,21.0,35.0,36.0,38.0,45.0,28.0,48.0,34.0,45.0,46.0,45.0,47.0,41.0,46.0,52.0,41.0,50.0,32.0,36.0,38.0,49.0,44.0,39.0,35.0,41.0,47.0,47.0,51.0,44.0,47.0,59.0,49.0,76.0,56.0,66.0,60.0,70.0,72.0,69.0,64.0,64.0,69.0,60.0,49.0,68.0,59.0,58.0,59.0,50.0,49.0,45.0,44.0,38.0,60.0,60.0,39.0,37.0,28.0,34.0,36.0,27.0,33.0,24.0,22.0,16.0,11.0,15.0,5.0,10.0,6.0,9.0,12.0 A82039,36.0,42.0,46.0,33.0,29.0,48.0,45.0,38.0,52.0,50.0,33.0,54.0,35.0,49.0,39.0,42.0,34.0,55.0,51.0,34.0,39.0,36.0,40.0,46.0,45.0,43.0,65.0,48.0,48.0,61.0,51.0,67.0,60.0,57.0,56.0,51.0,48.0,62.0,62.0,42.0,50.0,50.0,47.0,44.0,55.0,49.0,52.0,49.0,41.0,43.0,50.0,54.0,42.0,58.0,65.0,73.0,70.0,63.0,69.0,85.0,74.0,73.0,67.0,57.0,72.0,61.0,46.0,71.0,56.0,52.0,50.0,63.0,48.0,39.0,49.0,42.0,53.0,60.0,67.0,37.0,29.0,30.0,24.0,34.0,23.0,28.0,29.0,26.0,24.0,23.0,11.0,13.0,16.0,8.0,6.0,23.0 A82046,8.0,13.0,12.0,15.0,9.0,16.0,18.0,18.0,20.0,20.0,15.0,19.0,16.0,26.0,13.0,26.0,19.0,14.0,21.0,24.0,13.0,25.0,10.0,31.0,26.0,27.0,29.0,39.0,18.0,26.0,21.0,28.0,32.0,35.0,33.0,44.0,32.0,34.0,39.0,27.0,31.0,26.0,33.0,35.0,28.0,40.0,19.0,33.0,22.0,29.0,25.0,28.0,30.0,41.0,39.0,39.0,36.0,42.0,30.0,39.0,34.0,42.0,30.0,39.0,29.0,28.0,33.0,27.0,25.0,24.0,21.0,22.0,19.0,14.0,15.0,20.0,21.0,22.0,19.0,13.0,17.0,22.0,22.0,15.0,13.0,14.0,13.0,16.0,13.0,5.0,4.0,4.0,6.0,5.0,3.0,7.0 A82053,15.0,22.0,22.0,23.0,23.0,26.0,30.0,20.0,25.0,34.0,29.0,27.0,19.0,29.0,26.0,25.0,28.0,19.0,26.0,25.0,15.0,21.0,24.0,24.0,21.0,22.0,34.0,27.0,20.0,27.0,40.0,32.0,29.0,35.0,35.0,39.0,34.0,36.0,49.0,25.0,36.0,36.0,41.0,30.0,27.0,39.0,26.0,36.0,35.0,36.0,45.0,32.0,26.0,52.0,53.0,63.0,61.0,49.0,55.0,56.0,79.0,79.0,76.0,76.0,68.0,61.0,82.0,64.0,71.0,64.0,59.0,59.0,74.0,63.0,49.0,64.0,74.0,86.0,72.0,60.0,58.0,56.0,72.0,48.0,29.0,42.0,37.0,34.0,32.0,28.0,28.0,20.0,18.0,13.0,15.0,30.0 A82062,23.0,20.0,27.0,44.0,29.0,43.0,37.0,38.0,33.0,37.0,30.0,40.0,31.0,27.0,18.0,29.0,32.0,24.0,28.0,24.0,45.0,33.0,30.0,36.0,39.0,58.0,53.0,36.0,44.0,56.0,40.0,65.0,62.0,61.0,47.0,53.0,42.0,46.0,47.0,45.0,28.0,23.0,27.0,23.0,23.0,33.0,24.0,33.0,24.0,26.0,22.0,36.0,41.0,46.0,55.0,46.0,44.0,38.0,49.0,50.0,48.0,49.0,49.0,36.0,42.0,38.0,33.0,33.0,35.0,39.0,27.0,30.0,34.0,19.0,31.0,33.0,34.0,27.0,34.0,20.0,28.0,16.0,18.0,21.0,17.0,10.0,13.0,10.0,8.0,10.0,8.0,2.0,7.0,1.0,4.0,2.0 A82068,23.0,20.0,19.0,17.0,14.0,17.0,32.0,19.0,25.0,20.0,22.0,24.0,19.0,25.0,19.0,19.0,19.0,13.0,19.0,21.0,15.0,18.0,14.0,27.0,19.0,26.0,32.0,29.0,31.0,22.0,30.0,30.0,39.0,36.0,34.0,23.0,28.0,27.0,25.0,21.0,32.0,22.0,26.0,35.0,29.0,20.0,22.0,33.0,20.0,27.0,22.0,35.0,31.0,46.0,42.0,31.0,33.0,48.0,45.0,33.0,36.0,43.0,35.0,39.0,30.0,35.0,34.0,25.0,26.0,36.0,25.0,18.0,28.0,30.0,29.0,26.0,33.0,25.0,33.0,16.0,27.0,21.0,15.0,17.0,15.0,14.0,10.0,12.0,8.0,2.0,5.0,4.0,7.0,7.0,3.0,7.0 A82070,14.0,15.0,11.0,11.0,20.0,17.0,23.0,22.0,31.0,30.0,18.0,22.0,25.0,30.0,30.0,32.0,37.0,35.0,46.0,30.0,42.0,41.0,30.0,26.0,24.0,40.0,28.0,32.0,27.0,29.0,32.0,21.0,24.0,33.0,33.0,31.0,22.0,32.0,32.0,35.0,31.0,37.0,34.0,28.0,40.0,39.0,32.0,37.0,28.0,37.0,41.0,47.0,47.0,52.0,50.0,67.0,53.0,51.0,64.0,46.0,80.0,59.0,71.0,53.0,52.0,49.0,54.0,46.0,50.0,39.0,49.0,32.0,42.0,41.0,40.0,54.0,55.0,43.0,58.0,45.0,42.0,43.0,38.0,26.0,23.0,21.0,27.0,25.0,28.0,13.0,16.0,8.0,15.0,4.0,6.0,21.0 A82071,14.0,17.0,12.0,9.0,15.0,16.0,8.0,18.0,21.0,23.0,15.0,24.0,22.0,18.0,25.0,20.0,14.0,18.0,32.0,22.0,19.0,14.0,23.0,21.0,17.0,19.0,22.0,23.0,20.0,20.0,20.0,28.0,22.0,23.0,22.0,15.0,21.0,23.0,18.0,31.0,37.0,34.0,30.0,16.0,33.0,18.0,24.0,22.0,26.0,26.0,25.0,24.0,24.0,30.0,27.0,21.0,31.0,26.0,31.0,29.0,31.0,29.0,21.0,16.0,19.0,28.0,30.0,18.0,22.0,26.0,24.0,29.0,23.0,24.0,21.0,30.0,22.0,23.0,23.0,19.0,23.0,23.0,23.0,16.0,14.0,12.0,6.0,8.0,10.0,8.0,3.0,3.0,2.0,4.0,4.0,5.0 A82072,28.0,30.0,41.0,28.0,34.0,35.0,45.0,44.0,37.0,43.0,36.0,28.0,46.0,51.0,43.0,33.0,42.0,46.0,32.0,36.0,34.0,39.0,30.0,28.0,57.0,35.0,43.0,39.0,41.0,48.0,49.0,55.0,47.0,45.0,67.0,44.0,46.0,48.0,51.0,37.0,36.0,47.0,37.0,49.0,50.0,35.0,37.0,43.0,38.0,25.0,30.0,38.0,40.0,46.0,43.0,51.0,56.0,50.0,41.0,54.0,58.0,49.0,46.0,44.0,46.0,52.0,42.0,32.0,31.0,47.0,35.0,28.0,32.0,49.0,30.0,27.0,35.0,51.0,29.0,35.0,29.0,21.0,24.0,20.0,17.0,18.0,18.0,17.0,19.0,7.0,8.0,5.0,3.0,3.0,2.0,7.0 A82608,12.0,11.0,11.0,10.0,10.0,19.0,10.0,20.0,11.0,24.0,15.0,20.0,29.0,49.0,60.0,56.0,68.0,73.0,63.0,29.0,30.0,22.0,18.0,11.0,24.0,8.0,14.0,15.0,21.0,18.0,20.0,19.0,23.0,20.0,15.0,14.0,21.0,14.0,17.0,20.0,21.0,24.0,13.0,23.0,21.0,20.0,23.0,16.0,13.0,21.0,23.0,31.0,27.0,32.0,39.0,31.0,35.0,34.0,40.0,36.0,30.0,43.0,38.0,29.0,47.0,39.0,38.0,24.0,17.0,26.0,35.0,32.0,35.0,17.0,23.0,35.0,25.0,36.0,22.0,17.0,13.0,20.0,18.0,19.0,15.0,14.0,8.0,10.0,6.0,8.0,8.0,4.0,9.0,4.0,4.0,2.0 A82613,4.0,5.0,4.0,3.0,2.0,4.0,4.0,4.0,3.0,3.0,1.0,4.0,4.0,1.0,7.0,6.0,9.0,5.0,1.0,,8.0,6.0,4.0,2.0,2.0,10.0,4.0,5.0,3.0,3.0,5.0,,8.0,6.0,5.0,7.0,10.0,8.0,4.0,9.0,5.0,5.0,6.0,7.0,4.0,6.0,3.0,4.0,4.0,1.0,5.0,2.0,4.0,7.0,11.0,11.0,6.0,6.0,7.0,7.0,6.0,10.0,6.0,10.0,12.0,8.0,8.0,6.0,8.0,4.0,7.0,10.0,7.0,12.0,9.0,7.0,9.0,8.0,10.0,10.0,6.0,4.0,3.0,7.0,6.0,1.0,1.0,6.0,1.0,,3.0,2.0,,1.0,,1.0 A82629,11.0,10.0,13.0,9.0,11.0,10.0,12.0,15.0,14.0,15.0,18.0,13.0,13.0,10.0,15.0,13.0,8.0,19.0,17.0,16.0,10.0,14.0,17.0,11.0,12.0,15.0,12.0,22.0,18.0,17.0,17.0,21.0,26.0,22.0,21.0,17.0,28.0,21.0,15.0,17.0,14.0,16.0,14.0,8.0,11.0,8.0,20.0,13.0,15.0,19.0,9.0,17.0,12.0,26.0,25.0,21.0,18.0,20.0,28.0,24.0,20.0,22.0,20.0,15.0,20.0,17.0,22.0,14.0,21.0,13.0,11.0,15.0,18.0,11.0,19.0,19.0,10.0,16.0,14.0,9.0,9.0,8.0,12.0,7.0,8.0,5.0,4.0,2.0,10.0,6.0,4.0,4.0,3.0,1.0,1.0,7.0 A82647,12.0,12.0,6.0,5.0,10.0,13.0,1.0,14.0,9.0,8.0,4.0,14.0,8.0,12.0,12.0,10.0,9.0,15.0,17.0,13.0,14.0,20.0,15.0,17.0,14.0,18.0,13.0,14.0,25.0,13.0,11.0,12.0,15.0,16.0,11.0,19.0,17.0,16.0,19.0,8.0,16.0,11.0,16.0,16.0,14.0,10.0,13.0,17.0,9.0,18.0,26.0,19.0,25.0,38.0,20.0,30.0,29.0,36.0,27.0,38.0,32.0,39.0,37.0,40.0,23.0,32.0,34.0,28.0,28.0,23.0,26.0,25.0,26.0,24.0,25.0,26.0,24.0,25.0,29.0,23.0,19.0,22.0,28.0,16.0,12.0,15.0,10.0,11.0,11.0,7.0,7.0,6.0,4.0,2.0,2.0,7.0 A82650,9.0,11.0,7.0,11.0,9.0,10.0,9.0,16.0,12.0,10.0,7.0,8.0,15.0,11.0,12.0,4.0,21.0,10.0,8.0,15.0,9.0,9.0,6.0,15.0,9.0,13.0,11.0,14.0,10.0,13.0,11.0,14.0,26.0,12.0,13.0,9.0,12.0,16.0,15.0,20.0,11.0,15.0,12.0,20.0,16.0,12.0,22.0,18.0,12.0,19.0,14.0,21.0,21.0,26.0,22.0,20.0,24.0,25.0,28.0,26.0,24.0,23.0,29.0,30.0,29.0,25.0,35.0,24.0,22.0,18.0,27.0,18.0,20.0,21.0,24.0,23.0,21.0,22.0,17.0,15.0,11.0,20.0,15.0,7.0,14.0,7.0,10.0,4.0,1.0,4.0,6.0,3.0,3.0,2.0,4.0,8.0 A82651,10.0,15.0,19.0,16.0,17.0,27.0,18.0,21.0,24.0,19.0,17.0,17.0,15.0,19.0,21.0,26.0,31.0,23.0,26.0,18.0,11.0,12.0,20.0,13.0,21.0,17.0,23.0,25.0,20.0,22.0,25.0,26.0,22.0,17.0,28.0,32.0,29.0,23.0,29.0,26.0,19.0,29.0,15.0,27.0,26.0,16.0,29.0,23.0,20.0,21.0,31.0,25.0,38.0,35.0,24.0,35.0,43.0,39.0,48.0,38.0,50.0,54.0,50.0,37.0,37.0,41.0,37.0,51.0,31.0,47.0,33.0,34.0,30.0,27.0,32.0,36.0,26.0,39.0,24.0,20.0,23.0,27.0,19.0,16.0,15.0,20.0,15.0,13.0,13.0,7.0,10.0,6.0,6.0,4.0,5.0,6.0 B82061,16.0,19.0,24.0,34.0,35.0,19.0,36.0,32.0,29.0,26.0,29.0,30.0,43.0,44.0,24.0,42.0,39.0,27.0,37.0,24.0,21.0,23.0,16.0,23.0,31.0,32.0,24.0,37.0,25.0,28.0,37.0,22.0,39.0,45.0,38.0,42.0,36.0,40.0,47.0,42.0,34.0,36.0,38.0,31.0,45.0,37.0,36.0,36.0,34.0,29.0,45.0,45.0,60.0,53.0,56.0,61.0,52.0,62.0,59.0,77.0,71.0,52.0,82.0,83.0,47.0,73.0,70.0,55.0,65.0,57.0,66.0,62.0,51.0,66.0,44.0,53.0,43.0,53.0,65.0,38.0,54.0,53.0,36.0,29.0,23.0,25.0,19.0,18.0,16.0,25.0,13.0,18.0,12.0,4.0,7.0,15.0 P81002,177.0,211.0,191.0,229.0,233.0,244.0,247.0,268.0,264.0,293.0,269.0,297.0,328.0,329.0,320.0,297.0,280.0,303.0,551.0,880.0,1095.0,1155.0,1120.0,911.0,1089.0,722.0,572.0,555.0,527.0,459.0,425.0,480.0,389.0,384.0,423.0,384.0,402.0,403.0,360.0,338.0,353.0,352.0,389.0,383.0,335.0,342.0,300.0,298.0,282.0,281.0,278.0,287.0,297.0,290.0,322.0,322.0,303.0,340.0,305.0,353.0,356.0,327.0,302.0,290.0,263.0,278.0,284.0,276.0,236.0,251.0,213.0,238.0,221.0,208.0,205.0,211.0,211.0,231.0,222.0,159.0,166.0,109.0,129.0,123.0,94.0,110.0,93.0,85.0,65.0,65.0,47.0,53.0,41.0,29.0,30.0,65.0 P81003,16.0,17.0,22.0,39.0,23.0,21.0,33.0,34.0,38.0,39.0,30.0,43.0,38.0,31.0,45.0,35.0,34.0,69.0,43.0,40.0,44.0,27.0,30.0,42.0,35.0,36.0,38.0,38.0,42.0,30.0,37.0,45.0,29.0,43.0,44.0,42.0,44.0,60.0,41.0,36.0,48.0,36.0,60.0,47.0,52.0,64.0,49.0,47.0,57.0,57.0,58.0,71.0,67.0,68.0,64.0,67.0,84.0,61.0,71.0,61.0,83.0,72.0,76.0,76.0,73.0,75.0,73.0,69.0,76.0,55.0,62.0,56.0,57.0,69.0,54.0,61.0,55.0,81.0,63.0,34.0,50.0,47.0,35.0,33.0,21.0,38.0,19.0,21.0,20.0,15.0,8.0,10.0,14.0,10.0,15.0,15.0 P81005,81.0,63.0,82.0,62.0,64.0,77.0,82.0,88.0,66.0,85.0,79.0,74.0,86.0,84.0,74.0,84.0,79.0,91.0,89.0,76.0,74.0,61.0,70.0,79.0,86.0,80.0,91.0,96.0,76.0,65.0,73.0,73.0,72.0,71.0,89.0,80.0,86.0,79.0,69.0,74.0,77.0,83.0,79.0,83.0,83.0,86.0,75.0,75.0,63.0,50.0,54.0,56.0,73.0,67.0,98.0,80.0,73.0,81.0,65.0,85.0,67.0,64.0,63.0,77.0,67.0,46.0,66.0,55.0,52.0,58.0,49.0,50.0,35.0,48.0,48.0,43.0,46.0,43.0,49.0,29.0,34.0,40.0,43.0,30.0,32.0,34.0,28.0,17.0,16.0,11.0,17.0,10.0,11.0,10.0,3.0,13.0 P81006,62.0,57.0,73.0,85.0,82.0,92.0,88.0,94.0,121.0,89.0,96.0,80.0,113.0,109.0,97.0,103.0,100.0,97.0,120.0,80.0,89.0,85.0,70.0,80.0,79.0,103.0,89.0,90.0,89.0,112.0,80.0,108.0,110.0,105.0,115.0,106.0,98.0,104.0,103.0,102.0,117.0,123.0,114.0,98.0,114.0,114.0,107.0,103.0,87.0,100.0,105.0,128.0,124.0,134.0,146.0,151.0,158.0,153.0,192.0,151.0,179.0,190.0,190.0,174.0,181.0,150.0,165.0,155.0,170.0,139.0,150.0,136.0,132.0,139.0,144.0,142.0,169.0,162.0,164.0,118.0,110.0,96.0,110.0,86.0,76.0,93.0,69.0,79.0,62.0,51.0,49.0,34.0,24.0,31.0,21.0,39.0 P81008,28.0,32.0,36.0,32.0,32.0,38.0,40.0,31.0,35.0,34.0,42.0,51.0,37.0,29.0,43.0,49.0,44.0,45.0,29.0,34.0,26.0,39.0,35.0,40.0,37.0,47.0,40.0,48.0,41.0,51.0,59.0,55.0,57.0,49.0,51.0,37.0,48.0,54.0,54.0,67.0,38.0,48.0,43.0,57.0,50.0,41.0,33.0,36.0,44.0,44.0,40.0,40.0,28.0,49.0,49.0,53.0,51.0,50.0,57.0,47.0,60.0,38.0,45.0,54.0,53.0,47.0,38.0,47.0,42.0,33.0,33.0,36.0,35.0,45.0,34.0,44.0,50.0,36.0,48.0,27.0,35.0,22.0,34.0,22.0,19.0,32.0,9.0,9.0,12.0,7.0,6.0,6.0,1.0,1.0,3.0,8.0 P81010,21.0,26.0,18.0,28.0,27.0,20.0,20.0,21.0,27.0,29.0,30.0,28.0,27.0,26.0,32.0,38.0,39.0,38.0,31.0,22.0,22.0,24.0,21.0,30.0,26.0,27.0,19.0,19.0,30.0,31.0,26.0,23.0,26.0,31.0,35.0,36.0,28.0,28.0,26.0,31.0,32.0,27.0,38.0,53.0,35.0,37.0,27.0,46.0,33.0,40.0,31.0,38.0,57.0,54.0,60.0,57.0,56.0,50.0,52.0,47.0,48.0,51.0,51.0,42.0,48.0,45.0,44.0,34.0,36.0,28.0,41.0,30.0,34.0,32.0,32.0,30.0,41.0,40.0,25.0,22.0,30.0,16.0,15.0,10.0,9.0,14.0,12.0,15.0,12.0,7.0,6.0,5.0,6.0,3.0,3.0,4.0 P81013,51.0,73.0,71.0,76.0,62.0,70.0,93.0,72.0,67.0,89.0,85.0,81.0,77.0,80.0,101.0,81.0,73.0,83.0,79.0,73.0,96.0,87.0,94.0,91.0,102.0,85.0,97.0,95.0,97.0,100.0,96.0,107.0,120.0,124.0,94.0,121.0,136.0,113.0,125.0,121.0,101.0,115.0,122.0,103.0,118.0,98.0,101.0,98.0,96.0,98.0,88.0,82.0,92.0,109.0,114.0,105.0,92.0,117.0,115.0,114.0,118.0,120.0,117.0,117.0,127.0,112.0,93.0,102.0,81.0,99.0,82.0,83.0,67.0,83.0,78.0,80.0,68.0,85.0,72.0,68.0,58.0,49.0,40.0,47.0,39.0,39.0,34.0,28.0,34.0,25.0,21.0,16.0,11.0,15.0,16.0,12.0 P81014,46.0,29.0,28.0,46.0,28.0,44.0,37.0,39.0,40.0,49.0,37.0,41.0,51.0,51.0,41.0,38.0,54.0,55.0,54.0,72.0,84.0,69.0,60.0,57.0,35.0,55.0,48.0,59.0,40.0,58.0,70.0,50.0,63.0,49.0,63.0,44.0,60.0,53.0,50.0,52.0,57.0,60.0,46.0,60.0,59.0,52.0,52.0,46.0,48.0,51.0,48.0,44.0,63.0,57.0,68.0,84.0,71.0,62.0,74.0,94.0,83.0,83.0,80.0,85.0,68.0,64.0,84.0,51.0,51.0,56.0,59.0,50.0,53.0,63.0,50.0,69.0,74.0,94.0,79.0,42.0,50.0,48.0,59.0,51.0,33.0,36.0,38.0,34.0,21.0,22.0,26.0,19.0,13.0,13.0,11.0,25.0 P81015,65.0,64.0,60.0,72.0,77.0,54.0,77.0,79.0,82.0,79.0,85.0,82.0,78.0,84.0,62.0,54.0,78.0,66.0,56.0,65.0,58.0,56.0,79.0,68.0,91.0,82.0,85.0,91.0,97.0,102.0,118.0,92.0,87.0,103.0,89.0,110.0,112.0,108.0,99.0,94.0,82.0,90.0,81.0,99.0,83.0,103.0,65.0,83.0,85.0,48.0,74.0,83.0,72.0,69.0,81.0,88.0,77.0,85.0,79.0,87.0,78.0,84.0,74.0,94.0,79.0,73.0,65.0,72.0,85.0,82.0,60.0,79.0,62.0,73.0,67.0,57.0,69.0,87.0,66.0,56.0,46.0,49.0,59.0,37.0,38.0,40.0,31.0,38.0,23.0,35.0,21.0,21.0,13.0,12.0,11.0,24.0 P81016,50.0,60.0,61.0,61.0,60.0,72.0,83.0,74.0,57.0,78.0,68.0,70.0,78.0,82.0,66.0,73.0,74.0,71.0,78.0,72.0,68.0,78.0,60.0,56.0,74.0,70.0,78.0,68.0,90.0,95.0,83.0,67.0,98.0,101.0,95.0,72.0,105.0,111.0,100.0,90.0,76.0,73.0,95.0,56.0,65.0,81.0,65.0,78.0,61.0,63.0,53.0,56.0,63.0,72.0,91.0,83.0,91.0,78.0,95.0,83.0,89.0,89.0,84.0,58.0,72.0,67.0,61.0,67.0,59.0,46.0,49.0,49.0,41.0,37.0,40.0,43.0,48.0,53.0,44.0,28.0,24.0,28.0,26.0,26.0,25.0,28.0,16.0,16.0,11.0,5.0,11.0,8.0,5.0,3.0,1.0,8.0 P81017,30.0,41.0,53.0,54.0,56.0,74.0,57.0,53.0,66.0,72.0,70.0,94.0,89.0,72.0,87.0,87.0,79.0,79.0,64.0,65.0,42.0,56.0,73.0,70.0,64.0,72.0,71.0,60.0,69.0,57.0,59.0,72.0,92.0,82.0,73.0,90.0,78.0,77.0,84.0,81.0,77.0,67.0,115.0,92.0,100.0,90.0,90.0,110.0,93.0,101.0,78.0,102.0,109.0,134.0,131.0,135.0,109.0,129.0,120.0,88.0,138.0,131.0,106.0,126.0,110.0,104.0,85.0,109.0,82.0,98.0,99.0,81.0,91.0,84.0,88.0,77.0,86.0,114.0,114.0,70.0,57.0,65.0,57.0,53.0,57.0,55.0,41.0,31.0,30.0,28.0,22.0,21.0,14.0,5.0,10.0,26.0 P81018,21.0,20.0,26.0,35.0,29.0,25.0,34.0,45.0,32.0,53.0,37.0,46.0,50.0,45.0,50.0,50.0,49.0,59.0,51.0,43.0,38.0,43.0,43.0,47.0,42.0,41.0,38.0,30.0,31.0,39.0,39.0,35.0,48.0,41.0,50.0,54.0,49.0,36.0,62.0,47.0,55.0,33.0,54.0,43.0,54.0,52.0,48.0,53.0,53.0,61.0,62.0,54.0,59.0,87.0,60.0,73.0,57.0,59.0,77.0,55.0,67.0,75.0,65.0,59.0,56.0,61.0,62.0,48.0,57.0,48.0,40.0,51.0,35.0,51.0,43.0,55.0,48.0,49.0,54.0,33.0,39.0,38.0,35.0,29.0,22.0,26.0,19.0,23.0,11.0,18.0,16.0,18.0,9.0,11.0,3.0,7.0 P81020,117.0,112.0,121.0,118.0,124.0,132.0,137.0,140.0,138.0,173.0,164.0,164.0,162.0,153.0,163.0,145.0,158.0,153.0,156.0,151.0,128.0,140.0,101.0,129.0,125.0,138.0,166.0,152.0,176.0,158.0,174.0,180.0,218.0,215.0,189.0,199.0,201.0,203.0,186.0,181.0,146.0,143.0,154.0,150.0,179.0,142.0,123.0,133.0,138.0,128.0,142.0,138.0,133.0,148.0,157.0,143.0,166.0,149.0,159.0,171.0,152.0,149.0,161.0,139.0,144.0,113.0,119.0,137.0,127.0,104.0,117.0,108.0,91.0,88.0,109.0,112.0,108.0,109.0,107.0,71.0,69.0,63.0,62.0,56.0,42.0,42.0,40.0,36.0,28.0,36.0,21.0,18.0,16.0,13.0,21.0,33.0 P81022,53.0,55.0,50.0,60.0,58.0,59.0,42.0,53.0,70.0,57.0,60.0,62.0,64.0,77.0,49.0,56.0,59.0,68.0,64.0,66.0,57.0,56.0,50.0,59.0,57.0,73.0,87.0,67.0,75.0,72.0,62.0,73.0,66.0,77.0,63.0,61.0,61.0,83.0,75.0,65.0,58.0,71.0,75.0,80.0,61.0,76.0,57.0,47.0,50.0,57.0,73.0,67.0,86.0,72.0,77.0,70.0,69.0,80.0,76.0,63.0,93.0,80.0,67.0,62.0,79.0,52.0,63.0,54.0,63.0,50.0,60.0,37.0,53.0,43.0,49.0,59.0,41.0,44.0,53.0,44.0,38.0,37.0,43.0,28.0,21.0,22.0,26.0,20.0,17.0,16.0,9.0,15.0,6.0,7.0,4.0,14.0 P81025,49.0,68.0,64.0,70.0,54.0,69.0,62.0,76.0,83.0,62.0,86.0,85.0,71.0,87.0,71.0,71.0,66.0,77.0,65.0,64.0,55.0,73.0,58.0,68.0,76.0,75.0,78.0,69.0,79.0,70.0,92.0,69.0,92.0,97.0,100.0,84.0,92.0,92.0,84.0,95.0,84.0,83.0,77.0,77.0,90.0,62.0,59.0,66.0,66.0,78.0,65.0,71.0,73.0,88.0,93.0,72.0,88.0,90.0,103.0,74.0,73.0,83.0,81.0,92.0,81.0,83.0,70.0,71.0,86.0,70.0,60.0,59.0,74.0,58.0,78.0,68.0,55.0,72.0,83.0,41.0,43.0,42.0,47.0,29.0,27.0,42.0,22.0,24.0,26.0,22.0,15.0,13.0,11.0,6.0,4.0,17.0 P81027,69.0,69.0,80.0,74.0,80.0,82.0,80.0,92.0,85.0,103.0,106.0,87.0,100.0,98.0,126.0,116.0,96.0,98.0,97.0,77.0,79.0,61.0,76.0,76.0,75.0,86.0,76.0,88.0,85.0,92.0,89.0,88.0,116.0,129.0,114.0,116.0,109.0,113.0,105.0,117.0,109.0,100.0,95.0,95.0,100.0,112.0,89.0,88.0,94.0,86.0,104.0,90.0,87.0,83.0,129.0,106.0,107.0,94.0,106.0,97.0,112.0,97.0,106.0,94.0,85.0,94.0,107.0,68.0,88.0,78.0,78.0,83.0,74.0,57.0,72.0,73.0,74.0,75.0,74.0,33.0,40.0,49.0,47.0,35.0,22.0,22.0,28.0,17.0,19.0,14.0,20.0,13.0,5.0,8.0,4.0,10.0 P81029,68.0,70.0,78.0,80.0,88.0,81.0,104.0,97.0,102.0,107.0,111.0,124.0,127.0,136.0,115.0,111.0,149.0,127.0,165.0,157.0,145.0,138.0,126.0,110.0,106.0,111.0,99.0,96.0,96.0,98.0,108.0,98.0,97.0,103.0,102.0,108.0,162.0,119.0,113.0,135.0,131.0,122.0,108.0,108.0,139.0,134.0,116.0,128.0,134.0,138.0,135.0,150.0,171.0,185.0,165.0,185.0,186.0,184.0,186.0,214.0,194.0,182.0,223.0,192.0,215.0,211.0,191.0,188.0,190.0,182.0,186.0,184.0,160.0,182.0,183.0,212.0,196.0,208.0,202.0,153.0,165.0,138.0,126.0,104.0,83.0,80.0,87.0,86.0,65.0,59.0,52.0,52.0,37.0,34.0,31.0,77.0 P81031,22.0,15.0,22.0,32.0,18.0,28.0,15.0,21.0,31.0,35.0,19.0,25.0,26.0,39.0,34.0,32.0,29.0,42.0,29.0,30.0,24.0,26.0,23.0,30.0,26.0,34.0,28.0,32.0,17.0,23.0,33.0,26.0,27.0,40.0,33.0,46.0,38.0,32.0,30.0,36.0,28.0,41.0,30.0,31.0,44.0,24.0,29.0,30.0,30.0,36.0,42.0,50.0,33.0,58.0,61.0,45.0,47.0,44.0,61.0,64.0,54.0,56.0,65.0,51.0,56.0,60.0,43.0,60.0,56.0,50.0,46.0,62.0,53.0,39.0,44.0,43.0,47.0,42.0,48.0,32.0,29.0,32.0,35.0,32.0,22.0,26.0,20.0,16.0,20.0,17.0,12.0,12.0,7.0,15.0,7.0,19.0 P81032,75.0,74.0,80.0,71.0,92.0,100.0,76.0,103.0,95.0,94.0,84.0,90.0,96.0,103.0,105.0,93.0,101.0,88.0,82.0,88.0,80.0,81.0,64.0,90.0,75.0,99.0,86.0,87.0,95.0,109.0,79.0,97.0,100.0,132.0,87.0,119.0,95.0,112.0,94.0,99.0,111.0,103.0,85.0,80.0,114.0,79.0,85.0,88.0,76.0,92.0,88.0,71.0,108.0,79.0,100.0,93.0,87.0,87.0,95.0,93.0,79.0,82.0,83.0,77.0,93.0,63.0,62.0,83.0,60.0,70.0,76.0,75.0,62.0,64.0,88.0,63.0,57.0,71.0,62.0,46.0,59.0,49.0,37.0,34.0,35.0,27.0,33.0,33.0,22.0,18.0,20.0,15.0,17.0,12.0,7.0,28.0 P81033,31.0,31.0,20.0,36.0,37.0,34.0,33.0,38.0,44.0,40.0,37.0,35.0,44.0,57.0,44.0,42.0,46.0,41.0,40.0,39.0,31.0,42.0,35.0,33.0,31.0,33.0,43.0,36.0,54.0,48.0,41.0,56.0,49.0,54.0,46.0,61.0,43.0,47.0,47.0,62.0,49.0,52.0,50.0,41.0,45.0,46.0,39.0,45.0,48.0,51.0,43.0,38.0,51.0,66.0,60.0,78.0,66.0,46.0,50.0,65.0,68.0,51.0,52.0,55.0,45.0,46.0,46.0,46.0,49.0,54.0,44.0,53.0,52.0,48.0,53.0,57.0,42.0,41.0,52.0,36.0,39.0,34.0,29.0,31.0,22.0,28.0,29.0,14.0,10.0,9.0,19.0,12.0,5.0,8.0,4.0,15.0 P81035,77.0,61.0,60.0,48.0,64.0,53.0,56.0,64.0,59.0,68.0,72.0,66.0,72.0,74.0,66.0,62.0,95.0,71.0,57.0,61.0,72.0,64.0,62.0,67.0,70.0,70.0,78.0,78.0,77.0,55.0,68.0,60.0,66.0,55.0,70.0,54.0,64.0,62.0,69.0,58.0,61.0,67.0,52.0,64.0,53.0,65.0,55.0,42.0,52.0,47.0,50.0,46.0,29.0,32.0,25.0,38.0,38.0,33.0,19.0,27.0,31.0,21.0,30.0,27.0,28.0,25.0,34.0,22.0,24.0,22.0,29.0,11.0,15.0,16.0,15.0,21.0,16.0,16.0,10.0,12.0,10.0,6.0,11.0,9.0,5.0,9.0,8.0,9.0,7.0,10.0,2.0,2.0,2.0,3.0,,4.0 P81036,89.0,96.0,74.0,89.0,73.0,89.0,84.0,86.0,62.0,121.0,104.0,95.0,88.0,107.0,91.0,93.0,85.0,98.0,102.0,87.0,97.0,70.0,90.0,97.0,119.0,82.0,145.0,122.0,120.0,130.0,120.0,135.0,142.0,123.0,128.0,99.0,116.0,136.0,129.0,118.0,99.0,102.0,128.0,119.0,97.0,92.0,102.0,77.0,93.0,100.0,102.0,101.0,110.0,127.0,143.0,125.0,109.0,111.0,136.0,116.0,116.0,133.0,101.0,112.0,90.0,117.0,99.0,90.0,104.0,89.0,79.0,83.0,85.0,79.0,69.0,76.0,88.0,96.0,85.0,68.0,81.0,69.0,60.0,47.0,46.0,37.0,28.0,35.0,32.0,26.0,18.0,16.0,12.0,14.0,8.0,15.0 P81037,34.0,26.0,31.0,27.0,45.0,43.0,37.0,47.0,49.0,41.0,57.0,58.0,50.0,73.0,55.0,62.0,69.0,63.0,48.0,45.0,47.0,36.0,50.0,34.0,48.0,43.0,45.0,62.0,52.0,54.0,54.0,47.0,50.0,53.0,76.0,59.0,63.0,51.0,54.0,69.0,71.0,76.0,61.0,57.0,61.0,68.0,59.0,58.0,64.0,66.0,78.0,86.0,76.0,97.0,74.0,86.0,105.0,100.0,98.0,107.0,121.0,112.0,131.0,127.0,128.0,129.0,123.0,106.0,91.0,117.0,100.0,87.0,111.0,94.0,92.0,116.0,87.0,77.0,104.0,85.0,92.0,91.0,71.0,67.0,64.0,65.0,60.0,54.0,38.0,42.0,44.0,33.0,21.0,21.0,19.0,46.0 P81038,43.0,48.0,55.0,55.0,44.0,54.0,59.0,62.0,53.0,56.0,65.0,46.0,61.0,72.0,49.0,57.0,58.0,60.0,51.0,38.0,40.0,59.0,42.0,47.0,45.0,57.0,62.0,62.0,61.0,76.0,75.0,70.0,93.0,86.0,91.0,94.0,78.0,83.0,81.0,69.0,59.0,77.0,65.0,56.0,65.0,69.0,64.0,63.0,61.0,53.0,63.0,60.0,59.0,65.0,68.0,58.0,73.0,64.0,56.0,51.0,66.0,64.0,74.0,65.0,48.0,58.0,45.0,44.0,55.0,70.0,40.0,54.0,37.0,41.0,58.0,46.0,53.0,60.0,44.0,40.0,33.0,40.0,29.0,25.0,17.0,21.0,20.0,18.0,9.0,15.0,14.0,10.0,17.0,5.0,5.0,8.0 P81039,19.0,18.0,42.0,36.0,31.0,42.0,32.0,42.0,31.0,39.0,38.0,43.0,40.0,40.0,43.0,42.0,41.0,40.0,39.0,36.0,28.0,29.0,27.0,28.0,43.0,32.0,46.0,42.0,31.0,41.0,38.0,36.0,49.0,34.0,54.0,40.0,44.0,44.0,31.0,52.0,39.0,26.0,37.0,34.0,31.0,40.0,37.0,30.0,23.0,33.0,43.0,38.0,44.0,53.0,53.0,46.0,52.0,40.0,29.0,48.0,27.0,32.0,34.0,26.0,22.0,29.0,25.0,21.0,26.0,22.0,21.0,19.0,13.0,25.0,18.0,25.0,22.0,21.0,17.0,14.0,16.0,5.0,14.0,7.0,4.0,8.0,5.0,5.0,4.0,2.0,3.0,2.0,,2.0,1.0,2.0 P81040,31.0,34.0,32.0,27.0,45.0,45.0,46.0,46.0,46.0,51.0,46.0,53.0,57.0,61.0,57.0,65.0,56.0,66.0,61.0,46.0,58.0,43.0,40.0,43.0,52.0,46.0,40.0,61.0,48.0,41.0,34.0,37.0,51.0,49.0,59.0,51.0,47.0,54.0,55.0,54.0,50.0,59.0,54.0,60.0,54.0,66.0,54.0,48.0,57.0,61.0,64.0,78.0,58.0,82.0,97.0,83.0,84.0,84.0,87.0,77.0,89.0,88.0,89.0,87.0,66.0,64.0,72.0,65.0,57.0,66.0,78.0,72.0,65.0,67.0,71.0,91.0,72.0,105.0,99.0,54.0,54.0,56.0,54.0,28.0,40.0,41.0,34.0,31.0,30.0,29.0,26.0,24.0,15.0,12.0,10.0,25.0 P81041,33.0,50.0,45.0,40.0,37.0,33.0,46.0,32.0,32.0,50.0,32.0,35.0,52.0,42.0,38.0,45.0,29.0,52.0,43.0,71.0,106.0,84.0,54.0,52.0,40.0,45.0,63.0,47.0,44.0,40.0,50.0,60.0,48.0,65.0,59.0,61.0,42.0,71.0,63.0,63.0,59.0,53.0,53.0,53.0,50.0,58.0,47.0,40.0,49.0,46.0,55.0,48.0,65.0,64.0,60.0,66.0,58.0,60.0,80.0,76.0,76.0,86.0,72.0,83.0,78.0,74.0,91.0,79.0,70.0,63.0,62.0,54.0,47.0,58.0,65.0,56.0,33.0,63.0,75.0,59.0,40.0,53.0,47.0,41.0,29.0,30.0,40.0,33.0,29.0,16.0,15.0,9.0,12.0,11.0,6.0,21.0 P81042,62.0,76.0,91.0,83.0,78.0,89.0,82.0,101.0,111.0,81.0,120.0,99.0,92.0,103.0,104.0,85.0,87.0,72.0,83.0,68.0,90.0,80.0,79.0,74.0,96.0,103.0,74.0,91.0,108.0,103.0,94.0,92.0,127.0,121.0,120.0,138.0,115.0,107.0,96.0,118.0,116.0,93.0,89.0,84.0,86.0,85.0,69.0,96.0,66.0,63.0,57.0,75.0,93.0,94.0,87.0,81.0,101.0,93.0,85.0,92.0,102.0,98.0,106.0,98.0,93.0,78.0,67.0,84.0,69.0,75.0,65.0,56.0,51.0,57.0,48.0,53.0,48.0,50.0,44.0,44.0,31.0,42.0,29.0,30.0,27.0,28.0,21.0,14.0,16.0,12.0,11.0,13.0,8.0,10.0,7.0,12.0 P81043,21.0,20.0,27.0,23.0,30.0,28.0,29.0,29.0,36.0,30.0,41.0,29.0,38.0,38.0,35.0,30.0,27.0,33.0,29.0,25.0,39.0,28.0,22.0,43.0,44.0,32.0,38.0,50.0,50.0,48.0,39.0,45.0,45.0,49.0,47.0,51.0,60.0,55.0,58.0,62.0,67.0,58.0,39.0,48.0,41.0,37.0,29.0,30.0,34.0,28.0,14.0,40.0,49.0,44.0,22.0,41.0,39.0,42.0,36.0,38.0,40.0,44.0,34.0,31.0,23.0,58.0,30.0,40.0,25.0,32.0,27.0,30.0,12.0,27.0,24.0,28.0,32.0,22.0,23.0,22.0,15.0,8.0,12.0,15.0,9.0,10.0,6.0,5.0,14.0,4.0,11.0,1.0,2.0,7.0,2.0,10.0 P81044,58.0,56.0,65.0,76.0,76.0,78.0,94.0,97.0,80.0,87.0,93.0,81.0,109.0,106.0,101.0,111.0,111.0,106.0,98.0,86.0,89.0,93.0,76.0,95.0,96.0,91.0,111.0,105.0,93.0,103.0,100.0,88.0,107.0,115.0,113.0,110.0,100.0,111.0,121.0,125.0,118.0,88.0,110.0,103.0,121.0,106.0,103.0,101.0,95.0,92.0,107.0,116.0,122.0,104.0,126.0,99.0,114.0,121.0,110.0,127.0,114.0,122.0,109.0,90.0,95.0,95.0,77.0,99.0,88.0,92.0,89.0,74.0,70.0,92.0,69.0,88.0,101.0,126.0,111.0,70.0,74.0,75.0,65.0,59.0,64.0,32.0,49.0,44.0,33.0,21.0,25.0,21.0,21.0,11.0,6.0,21.0 P81045,17.0,16.0,16.0,19.0,19.0,26.0,14.0,15.0,17.0,21.0,26.0,26.0,25.0,22.0,20.0,21.0,20.0,28.0,41.0,27.0,22.0,23.0,25.0,21.0,17.0,26.0,21.0,28.0,31.0,29.0,25.0,26.0,26.0,19.0,26.0,19.0,25.0,31.0,18.0,29.0,29.0,24.0,28.0,26.0,33.0,32.0,18.0,22.0,18.0,23.0,27.0,31.0,25.0,27.0,42.0,30.0,38.0,24.0,38.0,44.0,27.0,39.0,36.0,40.0,42.0,29.0,32.0,32.0,29.0,33.0,24.0,27.0,38.0,28.0,33.0,27.0,24.0,38.0,29.0,35.0,23.0,29.0,18.0,23.0,14.0,19.0,16.0,23.0,10.0,20.0,8.0,11.0,6.0,6.0,4.0,14.0 P81046,31.0,20.0,22.0,22.0,26.0,25.0,26.0,24.0,37.0,21.0,31.0,27.0,35.0,25.0,15.0,25.0,27.0,24.0,41.0,39.0,55.0,69.0,58.0,70.0,94.0,115.0,89.0,98.0,82.0,60.0,70.0,78.0,65.0,64.0,60.0,48.0,52.0,48.0,47.0,48.0,31.0,49.0,48.0,38.0,46.0,44.0,49.0,20.0,41.0,43.0,27.0,26.0,33.0,28.0,44.0,34.0,26.0,33.0,24.0,26.0,33.0,27.0,31.0,25.0,15.0,23.0,17.0,24.0,29.0,20.0,25.0,13.0,18.0,17.0,16.0,13.0,19.0,17.0,14.0,7.0,6.0,10.0,7.0,4.0,8.0,9.0,5.0,3.0,5.0,1.0,4.0,2.0,1.0,1.0,1.0,5.0 P81047,63.0,78.0,84.0,93.0,85.0,84.0,91.0,108.0,82.0,120.0,87.0,100.0,76.0,82.0,89.0,98.0,95.0,104.0,86.0,104.0,91.0,79.0,61.0,78.0,76.0,83.0,101.0,90.0,103.0,99.0,103.0,106.0,112.0,125.0,136.0,114.0,155.0,115.0,95.0,123.0,101.0,110.0,111.0,112.0,102.0,72.0,90.0,107.0,73.0,81.0,101.0,101.0,107.0,101.0,90.0,106.0,111.0,108.0,107.0,100.0,103.0,107.0,121.0,109.0,104.0,114.0,103.0,80.0,82.0,92.0,82.0,73.0,74.0,76.0,81.0,76.0,82.0,88.0,92.0,59.0,49.0,61.0,53.0,51.0,34.0,38.0,34.0,26.0,27.0,29.0,11.0,16.0,8.0,7.0,4.0,24.0 P81051,65.0,76.0,60.0,77.0,61.0,69.0,70.0,73.0,84.0,70.0,70.0,86.0,66.0,82.0,77.0,71.0,89.0,76.0,81.0,78.0,55.0,70.0,72.0,93.0,97.0,83.0,120.0,117.0,107.0,110.0,109.0,118.0,101.0,104.0,106.0,84.0,97.0,115.0,106.0,108.0,112.0,94.0,103.0,88.0,82.0,88.0,96.0,63.0,84.0,77.0,95.0,89.0,110.0,98.0,85.0,96.0,101.0,93.0,115.0,106.0,96.0,98.0,109.0,99.0,78.0,86.0,74.0,73.0,92.0,63.0,83.0,66.0,73.0,78.0,63.0,70.0,71.0,68.0,63.0,44.0,36.0,45.0,34.0,27.0,22.0,24.0,24.0,28.0,17.0,15.0,11.0,12.0,9.0,5.0,6.0,15.0 P81053,30.0,34.0,37.0,44.0,41.0,54.0,44.0,50.0,34.0,40.0,46.0,37.0,43.0,38.0,65.0,50.0,48.0,45.0,39.0,48.0,37.0,44.0,28.0,45.0,37.0,52.0,53.0,56.0,43.0,56.0,51.0,54.0,62.0,65.0,63.0,66.0,44.0,69.0,70.0,52.0,57.0,53.0,53.0,29.0,55.0,51.0,57.0,44.0,34.0,46.0,51.0,48.0,55.0,58.0,43.0,47.0,49.0,58.0,60.0,64.0,56.0,56.0,56.0,50.0,57.0,51.0,58.0,54.0,56.0,33.0,31.0,48.0,47.0,40.0,42.0,37.0,54.0,54.0,51.0,30.0,33.0,29.0,24.0,14.0,19.0,17.0,12.0,9.0,8.0,13.0,9.0,10.0,4.0,7.0,4.0,6.0 P81054,37.0,31.0,33.0,53.0,28.0,64.0,63.0,52.0,53.0,49.0,69.0,52.0,47.0,50.0,71.0,63.0,47.0,51.0,44.0,50.0,46.0,42.0,47.0,52.0,63.0,56.0,69.0,59.0,60.0,64.0,46.0,64.0,91.0,88.0,75.0,76.0,81.0,77.0,75.0,67.0,68.0,54.0,74.0,60.0,56.0,60.0,70.0,53.0,53.0,33.0,53.0,59.0,70.0,70.0,74.0,56.0,68.0,54.0,74.0,75.0,64.0,61.0,62.0,56.0,52.0,48.0,49.0,44.0,44.0,55.0,47.0,37.0,41.0,31.0,30.0,33.0,50.0,47.0,36.0,29.0,32.0,18.0,24.0,32.0,28.0,20.0,21.0,22.0,15.0,12.0,11.0,9.0,7.0,9.0,5.0,13.0 P81055,63.0,64.0,60.0,76.0,84.0,70.0,81.0,82.0,76.0,63.0,89.0,62.0,81.0,73.0,66.0,68.0,62.0,68.0,78.0,67.0,73.0,61.0,60.0,58.0,83.0,76.0,74.0,86.0,84.0,95.0,83.0,108.0,105.0,96.0,94.0,86.0,110.0,105.0,85.0,87.0,84.0,76.0,83.0,93.0,95.0,98.0,81.0,60.0,76.0,90.0,71.0,77.0,97.0,115.0,106.0,96.0,99.0,113.0,106.0,109.0,122.0,121.0,90.0,109.0,96.0,90.0,90.0,93.0,112.0,97.0,71.0,76.0,86.0,68.0,73.0,81.0,72.0,75.0,74.0,62.0,65.0,42.0,34.0,56.0,43.0,38.0,28.0,28.0,39.0,35.0,22.0,16.0,15.0,9.0,9.0,21.0 P81057,52.0,75.0,65.0,54.0,63.0,51.0,67.0,73.0,75.0,80.0,62.0,76.0,71.0,79.0,61.0,85.0,93.0,78.0,74.0,88.0,69.0,61.0,68.0,75.0,81.0,82.0,98.0,88.0,93.0,86.0,91.0,89.0,100.0,71.0,102.0,97.0,77.0,106.0,78.0,88.0,94.0,76.0,88.0,91.0,69.0,94.0,87.0,76.0,84.0,97.0,87.0,93.0,108.0,102.0,104.0,107.0,115.0,124.0,110.0,119.0,102.0,95.0,91.0,81.0,91.0,87.0,90.0,109.0,76.0,70.0,64.0,81.0,70.0,71.0,74.0,83.0,79.0,76.0,86.0,65.0,61.0,62.0,45.0,44.0,30.0,41.0,34.0,37.0,31.0,17.0,11.0,18.0,8.0,14.0,8.0,24.0 P81058,53.0,46.0,62.0,49.0,63.0,49.0,53.0,69.0,75.0,75.0,53.0,63.0,60.0,73.0,67.0,75.0,55.0,67.0,72.0,61.0,63.0,53.0,64.0,56.0,68.0,58.0,73.0,56.0,56.0,69.0,73.0,62.0,88.0,82.0,76.0,79.0,84.0,75.0,82.0,67.0,70.0,55.0,70.0,53.0,88.0,76.0,58.0,65.0,44.0,57.0,52.0,57.0,70.0,72.0,70.0,66.0,63.0,68.0,62.0,47.0,53.0,45.0,61.0,63.0,49.0,52.0,53.0,49.0,46.0,39.0,47.0,31.0,35.0,44.0,38.0,32.0,49.0,38.0,32.0,30.0,24.0,29.0,25.0,19.0,11.0,18.0,24.0,15.0,14.0,18.0,3.0,8.0,11.0,8.0,5.0,11.0 P81059,18.0,32.0,40.0,28.0,36.0,29.0,36.0,24.0,29.0,45.0,30.0,40.0,28.0,47.0,39.0,31.0,43.0,44.0,29.0,36.0,37.0,21.0,21.0,25.0,33.0,27.0,30.0,36.0,37.0,31.0,41.0,30.0,32.0,41.0,26.0,36.0,54.0,46.0,42.0,46.0,55.0,41.0,39.0,37.0,45.0,45.0,35.0,41.0,36.0,34.0,44.0,40.0,47.0,61.0,65.0,65.0,57.0,63.0,88.0,77.0,75.0,62.0,73.0,67.0,72.0,69.0,53.0,55.0,55.0,52.0,64.0,59.0,64.0,51.0,50.0,52.0,54.0,52.0,68.0,46.0,57.0,36.0,33.0,22.0,29.0,24.0,23.0,22.0,14.0,14.0,14.0,7.0,4.0,3.0,9.0,10.0 P81061,16.0,11.0,22.0,13.0,20.0,9.0,25.0,13.0,25.0,26.0,20.0,28.0,26.0,30.0,17.0,25.0,28.0,36.0,21.0,23.0,26.0,20.0,26.0,20.0,24.0,23.0,24.0,19.0,21.0,25.0,18.0,33.0,27.0,23.0,27.0,22.0,12.0,38.0,25.0,26.0,31.0,21.0,28.0,16.0,26.0,25.0,18.0,24.0,17.0,24.0,21.0,33.0,29.0,33.0,37.0,40.0,41.0,34.0,34.0,29.0,40.0,32.0,29.0,37.0,33.0,25.0,15.0,19.0,37.0,24.0,19.0,13.0,21.0,21.0,22.0,25.0,18.0,22.0,26.0,15.0,23.0,17.0,20.0,9.0,7.0,14.0,9.0,18.0,8.0,10.0,5.0,5.0,3.0,5.0,3.0,14.0 P81062,14.0,30.0,25.0,39.0,27.0,32.0,34.0,31.0,40.0,49.0,34.0,44.0,45.0,50.0,50.0,49.0,38.0,37.0,37.0,32.0,34.0,32.0,34.0,34.0,34.0,32.0,39.0,34.0,50.0,45.0,51.0,45.0,55.0,52.0,50.0,53.0,51.0,43.0,55.0,43.0,43.0,42.0,46.0,47.0,44.0,50.0,58.0,41.0,52.0,41.0,47.0,47.0,48.0,64.0,55.0,64.0,68.0,61.0,61.0,65.0,77.0,66.0,45.0,63.0,55.0,60.0,61.0,51.0,40.0,45.0,51.0,42.0,45.0,43.0,39.0,28.0,35.0,41.0,41.0,26.0,44.0,30.0,29.0,24.0,30.0,18.0,19.0,17.0,12.0,13.0,7.0,9.0,5.0,5.0,4.0,7.0 P81063,29.0,31.0,35.0,42.0,55.0,47.0,51.0,61.0,60.0,72.0,71.0,56.0,63.0,60.0,48.0,68.0,55.0,49.0,70.0,54.0,70.0,59.0,53.0,60.0,60.0,58.0,65.0,74.0,57.0,67.0,54.0,65.0,71.0,67.0,86.0,67.0,64.0,65.0,74.0,73.0,63.0,61.0,71.0,54.0,62.0,75.0,68.0,63.0,49.0,50.0,72.0,74.0,65.0,70.0,77.0,73.0,70.0,94.0,61.0,61.0,80.0,96.0,64.0,74.0,49.0,48.0,61.0,53.0,57.0,49.0,33.0,47.0,37.0,43.0,45.0,28.0,49.0,49.0,43.0,39.0,45.0,33.0,26.0,30.0,14.0,28.0,26.0,17.0,25.0,17.0,19.0,10.0,10.0,9.0,6.0,14.0 P81065,57.0,78.0,83.0,66.0,69.0,81.0,79.0,75.0,81.0,102.0,85.0,92.0,79.0,85.0,103.0,95.0,93.0,77.0,72.0,72.0,74.0,56.0,53.0,64.0,75.0,78.0,80.0,84.0,82.0,78.0,78.0,70.0,111.0,124.0,122.0,88.0,104.0,102.0,115.0,89.0,107.0,105.0,94.0,97.0,96.0,83.0,89.0,84.0,75.0,91.0,76.0,77.0,89.0,97.0,105.0,114.0,120.0,106.0,111.0,99.0,134.0,117.0,107.0,107.0,98.0,105.0,105.0,103.0,93.0,85.0,84.0,72.0,79.0,75.0,75.0,90.0,70.0,105.0,96.0,58.0,60.0,42.0,47.0,40.0,37.0,33.0,38.0,21.0,29.0,28.0,27.0,18.0,11.0,7.0,3.0,23.0 P81066,29.0,35.0,46.0,46.0,45.0,42.0,52.0,57.0,59.0,54.0,53.0,48.0,50.0,65.0,53.0,62.0,45.0,51.0,39.0,42.0,50.0,30.0,37.0,46.0,50.0,38.0,55.0,56.0,69.0,58.0,60.0,76.0,56.0,79.0,71.0,60.0,62.0,55.0,63.0,58.0,52.0,58.0,51.0,43.0,52.0,51.0,38.0,44.0,44.0,52.0,51.0,49.0,49.0,58.0,59.0,60.0,61.0,60.0,50.0,54.0,66.0,49.0,52.0,50.0,53.0,50.0,48.0,47.0,42.0,45.0,40.0,34.0,38.0,27.0,37.0,36.0,24.0,36.0,28.0,22.0,33.0,29.0,24.0,17.0,18.0,14.0,9.0,10.0,12.0,8.0,10.0,6.0,3.0,4.0,1.0,5.0 P81067,46.0,36.0,57.0,57.0,50.0,65.0,73.0,66.0,70.0,72.0,84.0,85.0,72.0,89.0,83.0,96.0,109.0,82.0,69.0,59.0,64.0,77.0,65.0,66.0,56.0,50.0,55.0,59.0,77.0,49.0,69.0,72.0,67.0,71.0,82.0,82.0,77.0,109.0,86.0,87.0,79.0,82.0,88.0,78.0,93.0,90.0,95.0,94.0,95.0,84.0,81.0,73.0,105.0,95.0,90.0,90.0,88.0,93.0,113.0,99.0,88.0,94.0,118.0,92.0,111.0,70.0,75.0,68.0,66.0,73.0,54.0,62.0,54.0,52.0,62.0,57.0,53.0,69.0,63.0,42.0,43.0,50.0,40.0,39.0,29.0,34.0,34.0,25.0,24.0,19.0,27.0,13.0,13.0,18.0,8.0,24.0 P81069,51.0,38.0,47.0,46.0,62.0,62.0,44.0,54.0,52.0,60.0,51.0,60.0,78.0,83.0,61.0,87.0,60.0,78.0,53.0,52.0,59.0,43.0,55.0,50.0,46.0,52.0,51.0,55.0,64.0,70.0,57.0,56.0,72.0,77.0,84.0,75.0,87.0,93.0,70.0,81.0,74.0,76.0,73.0,72.0,64.0,99.0,79.0,66.0,71.0,65.0,72.0,84.0,86.0,97.0,75.0,101.0,93.0,80.0,87.0,72.0,110.0,95.0,95.0,106.0,80.0,79.0,80.0,98.0,72.0,65.0,71.0,60.0,51.0,58.0,63.0,63.0,64.0,62.0,60.0,51.0,47.0,47.0,45.0,33.0,33.0,30.0,26.0,25.0,26.0,26.0,17.0,18.0,15.0,12.0,12.0,28.0 P81070,49.0,44.0,49.0,52.0,47.0,53.0,36.0,41.0,60.0,69.0,59.0,63.0,46.0,57.0,57.0,55.0,61.0,48.0,53.0,51.0,53.0,38.0,50.0,47.0,44.0,47.0,57.0,49.0,54.0,53.0,47.0,51.0,52.0,60.0,48.0,54.0,50.0,57.0,51.0,57.0,60.0,63.0,46.0,50.0,40.0,55.0,45.0,47.0,48.0,50.0,45.0,25.0,40.0,38.0,61.0,52.0,35.0,50.0,42.0,42.0,53.0,44.0,45.0,61.0,43.0,44.0,49.0,48.0,57.0,45.0,36.0,30.0,36.0,32.0,41.0,48.0,38.0,36.0,46.0,36.0,35.0,29.0,33.0,20.0,22.0,18.0,15.0,19.0,9.0,12.0,17.0,5.0,8.0,8.0,8.0,11.0 P81071,41.0,37.0,37.0,41.0,49.0,44.0,66.0,52.0,63.0,55.0,47.0,58.0,51.0,59.0,54.0,45.0,47.0,53.0,46.0,40.0,47.0,49.0,38.0,55.0,44.0,67.0,66.0,60.0,59.0,56.0,62.0,60.0,48.0,59.0,56.0,60.0,62.0,55.0,52.0,65.0,42.0,47.0,45.0,37.0,44.0,42.0,44.0,37.0,30.0,46.0,37.0,34.0,43.0,52.0,38.0,42.0,32.0,37.0,29.0,32.0,44.0,34.0,35.0,36.0,41.0,40.0,33.0,23.0,37.0,27.0,23.0,27.0,23.0,15.0,19.0,25.0,17.0,25.0,22.0,14.0,11.0,10.0,13.0,8.0,10.0,9.0,6.0,9.0,6.0,2.0,3.0,2.0,3.0,,2.0,6.0 P81072,30.0,41.0,56.0,56.0,54.0,65.0,66.0,60.0,72.0,65.0,70.0,77.0,77.0,86.0,66.0,59.0,67.0,74.0,60.0,76.0,70.0,77.0,57.0,74.0,59.0,77.0,72.0,73.0,80.0,87.0,71.0,66.0,74.0,100.0,84.0,90.0,94.0,75.0,88.0,83.0,79.0,95.0,92.0,96.0,85.0,88.0,80.0,76.0,75.0,77.0,82.0,100.0,107.0,105.0,124.0,113.0,114.0,119.0,123.0,108.0,114.0,126.0,111.0,128.0,90.0,101.0,81.0,86.0,98.0,90.0,72.0,79.0,66.0,78.0,87.0,90.0,86.0,72.0,73.0,69.0,53.0,56.0,54.0,54.0,38.0,54.0,43.0,42.0,42.0,34.0,29.0,16.0,17.0,17.0,12.0,23.0 P81073,33.0,51.0,44.0,56.0,52.0,52.0,51.0,44.0,48.0,72.0,61.0,62.0,68.0,53.0,62.0,54.0,76.0,67.0,63.0,46.0,42.0,54.0,53.0,55.0,56.0,57.0,58.0,59.0,62.0,64.0,71.0,78.0,80.0,77.0,80.0,77.0,59.0,74.0,66.0,65.0,67.0,70.0,73.0,62.0,76.0,59.0,52.0,62.0,68.0,65.0,60.0,73.0,88.0,91.0,90.0,83.0,115.0,105.0,97.0,119.0,121.0,99.0,107.0,101.0,123.0,103.0,84.0,116.0,114.0,89.0,80.0,105.0,84.0,94.0,101.0,102.0,111.0,127.0,115.0,84.0,91.0,70.0,63.0,75.0,50.0,60.0,49.0,52.0,35.0,41.0,27.0,26.0,20.0,18.0,11.0,24.0 P81074,46.0,61.0,57.0,60.0,60.0,77.0,61.0,68.0,80.0,63.0,72.0,65.0,65.0,88.0,66.0,73.0,75.0,67.0,69.0,65.0,68.0,74.0,63.0,69.0,62.0,58.0,93.0,68.0,86.0,95.0,74.0,75.0,89.0,94.0,88.0,96.0,88.0,80.0,103.0,83.0,82.0,81.0,73.0,87.0,88.0,70.0,82.0,65.0,63.0,77.0,84.0,89.0,73.0,96.0,103.0,92.0,109.0,122.0,104.0,110.0,104.0,110.0,97.0,107.0,94.0,93.0,103.0,103.0,98.0,85.0,86.0,79.0,76.0,65.0,62.0,74.0,92.0,97.0,77.0,66.0,63.0,56.0,59.0,47.0,36.0,44.0,42.0,28.0,24.0,34.0,25.0,10.0,11.0,10.0,10.0,26.0 P81076,45.0,37.0,37.0,40.0,42.0,50.0,60.0,53.0,56.0,45.0,70.0,48.0,54.0,66.0,76.0,71.0,67.0,63.0,58.0,62.0,51.0,53.0,58.0,37.0,56.0,60.0,60.0,44.0,54.0,64.0,49.0,57.0,71.0,58.0,64.0,49.0,66.0,77.0,62.0,83.0,65.0,81.0,64.0,77.0,70.0,93.0,72.0,56.0,66.0,72.0,67.0,63.0,77.0,76.0,66.0,61.0,90.0,80.0,68.0,62.0,60.0,75.0,74.0,91.0,78.0,65.0,70.0,66.0,74.0,78.0,80.0,62.0,62.0,59.0,60.0,47.0,58.0,79.0,70.0,47.0,41.0,40.0,40.0,30.0,36.0,37.0,24.0,30.0,21.0,17.0,21.0,11.0,7.0,12.0,11.0,21.0 P81077,26.0,27.0,32.0,37.0,28.0,33.0,34.0,40.0,46.0,44.0,49.0,51.0,48.0,41.0,48.0,48.0,62.0,60.0,51.0,52.0,45.0,38.0,41.0,34.0,50.0,38.0,41.0,36.0,45.0,48.0,39.0,44.0,40.0,48.0,48.0,46.0,43.0,44.0,50.0,61.0,48.0,59.0,53.0,55.0,66.0,63.0,56.0,56.0,61.0,66.0,58.0,69.0,77.0,68.0,89.0,77.0,83.0,83.0,91.0,110.0,99.0,88.0,114.0,105.0,95.0,85.0,97.0,89.0,103.0,88.0,78.0,90.0,76.0,72.0,91.0,84.0,98.0,96.0,114.0,80.0,100.0,76.0,62.0,53.0,58.0,49.0,57.0,38.0,41.0,38.0,27.0,35.0,27.0,17.0,13.0,29.0 P81078,45.0,48.0,43.0,41.0,48.0,51.0,64.0,53.0,53.0,76.0,74.0,63.0,67.0,80.0,72.0,68.0,64.0,51.0,56.0,44.0,48.0,48.0,47.0,51.0,38.0,50.0,65.0,64.0,61.0,62.0,69.0,70.0,73.0,85.0,88.0,77.0,104.0,88.0,72.0,75.0,83.0,85.0,68.0,81.0,83.0,60.0,55.0,65.0,63.0,62.0,71.0,88.0,73.0,85.0,80.0,95.0,87.0,97.0,98.0,63.0,89.0,76.0,89.0,82.0,89.0,85.0,80.0,84.0,78.0,67.0,89.0,71.0,51.0,67.0,67.0,70.0,61.0,67.0,78.0,59.0,46.0,49.0,35.0,42.0,36.0,38.0,19.0,20.0,18.0,14.0,14.0,11.0,12.0,4.0,10.0,20.0 P81079,34.0,46.0,39.0,48.0,48.0,51.0,51.0,65.0,56.0,60.0,75.0,61.0,56.0,65.0,82.0,76.0,77.0,58.0,66.0,66.0,52.0,63.0,54.0,51.0,54.0,56.0,62.0,72.0,73.0,70.0,61.0,70.0,70.0,73.0,85.0,69.0,70.0,70.0,81.0,69.0,76.0,62.0,82.0,56.0,62.0,56.0,77.0,70.0,62.0,72.0,79.0,76.0,85.0,96.0,96.0,99.0,101.0,105.0,111.0,108.0,98.0,109.0,99.0,109.0,120.0,92.0,89.0,95.0,98.0,92.0,88.0,83.0,68.0,99.0,92.0,95.0,106.0,95.0,100.0,85.0,88.0,80.0,69.0,52.0,61.0,43.0,40.0,21.0,36.0,34.0,20.0,14.0,13.0,13.0,12.0,11.0 P81081,28.0,26.0,27.0,26.0,29.0,31.0,33.0,32.0,27.0,30.0,36.0,25.0,28.0,29.0,31.0,36.0,33.0,29.0,40.0,32.0,30.0,22.0,30.0,26.0,34.0,33.0,36.0,38.0,40.0,44.0,36.0,45.0,45.0,49.0,52.0,57.0,37.0,46.0,40.0,44.0,43.0,38.0,38.0,37.0,34.0,46.0,24.0,22.0,32.0,30.0,35.0,38.0,45.0,35.0,54.0,42.0,47.0,49.0,53.0,67.0,53.0,53.0,36.0,43.0,42.0,30.0,34.0,42.0,36.0,34.0,26.0,30.0,31.0,29.0,27.0,24.0,32.0,30.0,32.0,37.0,37.0,26.0,30.0,21.0,22.0,15.0,19.0,23.0,10.0,9.0,4.0,4.0,6.0,7.0,3.0,14.0 P81082,50.0,46.0,37.0,43.0,58.0,49.0,45.0,50.0,47.0,75.0,55.0,52.0,53.0,59.0,52.0,37.0,56.0,50.0,37.0,46.0,51.0,54.0,48.0,47.0,68.0,61.0,65.0,78.0,68.0,83.0,64.0,77.0,95.0,70.0,102.0,73.0,68.0,81.0,54.0,58.0,59.0,62.0,73.0,43.0,50.0,65.0,52.0,53.0,45.0,45.0,59.0,72.0,74.0,72.0,57.0,69.0,81.0,74.0,81.0,91.0,96.0,101.0,93.0,75.0,81.0,87.0,62.0,73.0,69.0,62.0,68.0,59.0,75.0,67.0,57.0,65.0,74.0,56.0,77.0,45.0,57.0,35.0,33.0,39.0,26.0,22.0,39.0,31.0,26.0,12.0,14.0,4.0,8.0,8.0,7.0,11.0 P81083,38.0,35.0,34.0,44.0,42.0,44.0,42.0,38.0,38.0,50.0,53.0,47.0,51.0,52.0,43.0,41.0,40.0,35.0,35.0,39.0,38.0,35.0,35.0,44.0,41.0,43.0,45.0,34.0,50.0,54.0,66.0,62.0,62.0,74.0,61.0,59.0,56.0,63.0,60.0,54.0,59.0,56.0,56.0,45.0,51.0,49.0,41.0,34.0,36.0,45.0,49.0,55.0,60.0,65.0,58.0,60.0,61.0,78.0,73.0,66.0,63.0,62.0,58.0,64.0,56.0,53.0,48.0,62.0,47.0,53.0,44.0,32.0,48.0,37.0,51.0,58.0,57.0,59.0,54.0,33.0,43.0,42.0,35.0,37.0,37.0,37.0,21.0,19.0,11.0,14.0,21.0,12.0,17.0,12.0,8.0,9.0 P81084,27.0,37.0,41.0,37.0,28.0,35.0,31.0,40.0,30.0,32.0,36.0,33.0,40.0,50.0,38.0,38.0,45.0,46.0,37.0,39.0,50.0,43.0,36.0,37.0,41.0,33.0,38.0,37.0,45.0,41.0,36.0,41.0,53.0,48.0,55.0,53.0,52.0,49.0,53.0,44.0,57.0,38.0,51.0,42.0,50.0,56.0,36.0,49.0,65.0,44.0,47.0,57.0,69.0,65.0,86.0,65.0,52.0,57.0,61.0,58.0,67.0,52.0,74.0,56.0,58.0,45.0,56.0,50.0,43.0,54.0,52.0,48.0,39.0,43.0,63.0,41.0,43.0,60.0,68.0,41.0,44.0,36.0,36.0,34.0,25.0,32.0,26.0,22.0,25.0,25.0,23.0,16.0,14.0,4.0,7.0,13.0 P81086,32.0,29.0,41.0,37.0,41.0,42.0,51.0,64.0,65.0,57.0,44.0,49.0,74.0,50.0,66.0,78.0,84.0,92.0,81.0,51.0,56.0,42.0,33.0,48.0,43.0,41.0,48.0,37.0,53.0,52.0,69.0,55.0,66.0,61.0,56.0,70.0,65.0,68.0,56.0,62.0,70.0,48.0,56.0,51.0,65.0,56.0,50.0,37.0,45.0,46.0,56.0,51.0,55.0,60.0,50.0,62.0,55.0,65.0,59.0,71.0,64.0,68.0,68.0,72.0,71.0,66.0,67.0,53.0,63.0,55.0,58.0,52.0,64.0,61.0,51.0,60.0,67.0,33.0,66.0,42.0,39.0,41.0,41.0,36.0,27.0,39.0,29.0,28.0,22.0,25.0,20.0,15.0,11.0,8.0,11.0,21.0 P81087,30.0,38.0,32.0,34.0,28.0,33.0,46.0,35.0,40.0,43.0,53.0,42.0,52.0,45.0,56.0,44.0,69.0,49.0,50.0,53.0,44.0,35.0,28.0,42.0,35.0,34.0,41.0,37.0,27.0,37.0,46.0,54.0,45.0,45.0,42.0,46.0,54.0,51.0,53.0,40.0,51.0,54.0,43.0,42.0,54.0,57.0,46.0,52.0,49.0,53.0,53.0,53.0,53.0,77.0,95.0,104.0,86.0,98.0,103.0,80.0,103.0,97.0,117.0,130.0,118.0,112.0,104.0,127.0,124.0,86.0,112.0,98.0,110.0,95.0,102.0,107.0,119.0,115.0,122.0,75.0,71.0,76.0,89.0,52.0,52.0,59.0,53.0,37.0,22.0,27.0,25.0,24.0,10.0,9.0,13.0,21.0 P81088,20.0,31.0,36.0,42.0,29.0,22.0,42.0,33.0,44.0,41.0,49.0,38.0,42.0,44.0,44.0,41.0,40.0,46.0,48.0,31.0,39.0,27.0,36.0,30.0,36.0,23.0,39.0,29.0,29.0,39.0,40.0,37.0,49.0,49.0,49.0,51.0,55.0,52.0,52.0,43.0,38.0,47.0,48.0,58.0,38.0,29.0,26.0,32.0,32.0,32.0,43.0,49.0,64.0,50.0,46.0,58.0,54.0,59.0,49.0,54.0,48.0,51.0,43.0,63.0,44.0,30.0,37.0,41.0,40.0,44.0,42.0,28.0,31.0,37.0,32.0,39.0,27.0,44.0,33.0,20.0,36.0,28.0,26.0,26.0,24.0,9.0,13.0,11.0,8.0,9.0,9.0,8.0,7.0,5.0,1.0,14.0 P81089,48.0,54.0,53.0,49.0,54.0,53.0,70.0,55.0,59.0,58.0,52.0,74.0,64.0,66.0,65.0,62.0,65.0,75.0,74.0,60.0,68.0,68.0,58.0,58.0,52.0,66.0,51.0,75.0,66.0,54.0,76.0,70.0,78.0,80.0,70.0,92.0,102.0,77.0,84.0,82.0,81.0,71.0,84.0,75.0,75.0,52.0,76.0,60.0,61.0,62.0,79.0,74.0,75.0,84.0,100.0,72.0,82.0,88.0,90.0,107.0,86.0,87.0,81.0,90.0,103.0,89.0,92.0,85.0,86.0,80.0,76.0,71.0,72.0,64.0,54.0,56.0,70.0,65.0,70.0,52.0,50.0,49.0,47.0,38.0,36.0,39.0,26.0,21.0,38.0,29.0,19.0,13.0,5.0,13.0,11.0,21.0 P81092,16.0,22.0,16.0,27.0,19.0,22.0,13.0,31.0,29.0,26.0,27.0,23.0,43.0,27.0,31.0,31.0,40.0,35.0,39.0,29.0,30.0,29.0,38.0,27.0,31.0,27.0,27.0,26.0,28.0,28.0,37.0,35.0,37.0,41.0,33.0,38.0,46.0,39.0,38.0,34.0,44.0,30.0,27.0,42.0,45.0,36.0,26.0,43.0,25.0,33.0,49.0,39.0,47.0,61.0,48.0,49.0,68.0,61.0,71.0,60.0,62.0,69.0,54.0,79.0,68.0,72.0,65.0,63.0,58.0,57.0,63.0,57.0,70.0,75.0,60.0,59.0,64.0,58.0,73.0,65.0,61.0,60.0,43.0,47.0,35.0,36.0,32.0,34.0,28.0,29.0,15.0,15.0,7.0,10.0,8.0,14.0 P81095,34.0,57.0,56.0,52.0,49.0,65.0,63.0,59.0,62.0,43.0,55.0,70.0,66.0,60.0,62.0,55.0,64.0,55.0,48.0,66.0,48.0,55.0,52.0,54.0,51.0,51.0,46.0,48.0,52.0,53.0,53.0,59.0,66.0,49.0,68.0,59.0,47.0,68.0,69.0,65.0,64.0,68.0,59.0,55.0,44.0,53.0,59.0,47.0,49.0,51.0,45.0,48.0,54.0,44.0,66.0,50.0,48.0,41.0,45.0,45.0,46.0,45.0,49.0,53.0,37.0,41.0,43.0,33.0,40.0,36.0,33.0,35.0,33.0,34.0,35.0,32.0,41.0,48.0,50.0,33.0,38.0,26.0,20.0,19.0,14.0,24.0,23.0,13.0,10.0,2.0,7.0,13.0,1.0,9.0,2.0,11.0 P81096,11.0,23.0,26.0,29.0,36.0,25.0,31.0,28.0,30.0,36.0,25.0,35.0,37.0,32.0,32.0,42.0,40.0,39.0,38.0,30.0,32.0,35.0,22.0,35.0,37.0,26.0,22.0,27.0,28.0,34.0,25.0,26.0,38.0,24.0,30.0,33.0,30.0,34.0,31.0,32.0,43.0,46.0,51.0,40.0,43.0,48.0,42.0,45.0,40.0,40.0,50.0,38.0,64.0,50.0,50.0,60.0,60.0,61.0,65.0,60.0,64.0,64.0,73.0,55.0,58.0,42.0,43.0,59.0,55.0,46.0,44.0,46.0,44.0,43.0,49.0,51.0,59.0,60.0,71.0,27.0,47.0,41.0,44.0,34.0,30.0,25.0,21.0,18.0,17.0,13.0,18.0,12.0,11.0,5.0,6.0,12.0 P81099,43.0,44.0,55.0,56.0,58.0,56.0,46.0,46.0,64.0,65.0,64.0,73.0,71.0,62.0,50.0,66.0,61.0,69.0,53.0,43.0,55.0,53.0,46.0,46.0,64.0,39.0,54.0,75.0,59.0,60.0,62.0,80.0,74.0,74.0,90.0,66.0,76.0,65.0,67.0,76.0,61.0,63.0,75.0,60.0,82.0,76.0,77.0,72.0,66.0,69.0,69.0,66.0,74.0,83.0,72.0,90.0,87.0,63.0,83.0,92.0,83.0,73.0,84.0,74.0,71.0,68.0,64.0,67.0,66.0,68.0,47.0,65.0,54.0,56.0,53.0,56.0,55.0,65.0,75.0,41.0,43.0,43.0,42.0,25.0,23.0,26.0,23.0,12.0,13.0,16.0,17.0,12.0,8.0,4.0,10.0,20.0 P81100,59.0,67.0,64.0,68.0,49.0,66.0,57.0,64.0,67.0,59.0,79.0,81.0,83.0,83.0,96.0,111.0,117.0,139.0,107.0,81.0,64.0,73.0,73.0,70.0,81.0,71.0,65.0,77.0,70.0,74.0,83.0,75.0,77.0,98.0,94.0,108.0,90.0,97.0,89.0,97.0,89.0,91.0,96.0,97.0,95.0,96.0,77.0,80.0,74.0,86.0,87.0,94.0,108.0,101.0,118.0,107.0,110.0,130.0,114.0,113.0,129.0,125.0,97.0,114.0,126.0,118.0,113.0,97.0,115.0,96.0,92.0,77.0,83.0,64.0,91.0,111.0,101.0,100.0,97.0,66.0,85.0,78.0,64.0,69.0,50.0,43.0,48.0,42.0,47.0,28.0,27.0,23.0,18.0,15.0,11.0,24.0 P81103,67.0,59.0,80.0,72.0,94.0,101.0,84.0,70.0,87.0,73.0,65.0,89.0,80.0,78.0,88.0,59.0,73.0,59.0,59.0,50.0,54.0,46.0,53.0,53.0,49.0,53.0,53.0,80.0,81.0,66.0,79.0,110.0,99.0,89.0,92.0,99.0,102.0,100.0,94.0,107.0,94.0,98.0,76.0,86.0,84.0,72.0,68.0,73.0,78.0,71.0,70.0,66.0,72.0,70.0,80.0,68.0,75.0,68.0,70.0,63.0,82.0,88.0,81.0,89.0,65.0,73.0,53.0,60.0,66.0,53.0,51.0,53.0,56.0,51.0,45.0,41.0,55.0,44.0,62.0,43.0,44.0,41.0,27.0,20.0,33.0,42.0,37.0,32.0,16.0,19.0,8.0,10.0,16.0,8.0,8.0,12.0 P81107,33.0,34.0,47.0,49.0,40.0,37.0,45.0,49.0,37.0,37.0,42.0,36.0,35.0,44.0,41.0,56.0,45.0,51.0,59.0,46.0,39.0,34.0,47.0,39.0,48.0,42.0,46.0,54.0,52.0,48.0,45.0,55.0,40.0,55.0,57.0,65.0,47.0,47.0,42.0,30.0,34.0,50.0,58.0,45.0,51.0,49.0,42.0,36.0,41.0,41.0,58.0,52.0,56.0,60.0,51.0,65.0,64.0,75.0,62.0,63.0,79.0,73.0,53.0,55.0,49.0,61.0,54.0,48.0,59.0,55.0,52.0,42.0,48.0,47.0,50.0,31.0,37.0,56.0,39.0,33.0,34.0,38.0,28.0,22.0,18.0,20.0,24.0,16.0,11.0,7.0,11.0,7.0,6.0,11.0,5.0,8.0 P81112,63.0,71.0,65.0,72.0,59.0,83.0,80.0,75.0,86.0,85.0,89.0,89.0,94.0,101.0,99.0,86.0,74.0,92.0,180.0,303.0,315.0,263.0,210.0,181.0,143.0,113.0,134.0,111.0,109.0,88.0,88.0,102.0,111.0,94.0,108.0,88.0,104.0,111.0,120.0,102.0,131.0,106.0,108.0,74.0,86.0,85.0,75.0,81.0,85.0,77.0,87.0,99.0,101.0,104.0,103.0,109.0,120.0,100.0,102.0,111.0,104.0,108.0,109.0,94.0,104.0,102.0,83.0,73.0,98.0,103.0,71.0,69.0,72.0,61.0,56.0,54.0,69.0,83.0,73.0,73.0,55.0,56.0,39.0,46.0,36.0,40.0,37.0,27.0,30.0,16.0,17.0,12.0,11.0,13.0,5.0,16.0 P81113,25.0,28.0,23.0,33.0,23.0,35.0,35.0,29.0,25.0,26.0,32.0,30.0,35.0,40.0,35.0,31.0,32.0,38.0,29.0,44.0,23.0,37.0,27.0,28.0,33.0,29.0,36.0,23.0,38.0,35.0,33.0,44.0,44.0,28.0,34.0,42.0,37.0,43.0,42.0,39.0,46.0,49.0,45.0,42.0,36.0,41.0,40.0,42.0,43.0,44.0,40.0,41.0,53.0,57.0,59.0,56.0,64.0,70.0,61.0,73.0,77.0,60.0,84.0,75.0,66.0,63.0,79.0,63.0,58.0,64.0,49.0,54.0,47.0,49.0,66.0,48.0,61.0,62.0,48.0,44.0,40.0,38.0,24.0,27.0,32.0,28.0,29.0,16.0,13.0,12.0,23.0,8.0,10.0,7.0,4.0,22.0 P81115,69.0,86.0,98.0,88.0,94.0,102.0,96.0,91.0,97.0,111.0,111.0,123.0,120.0,113.0,103.0,108.0,121.0,96.0,113.0,113.0,104.0,102.0,82.0,103.0,114.0,132.0,82.0,100.0,109.0,110.0,114.0,139.0,126.0,128.0,129.0,110.0,126.0,133.0,134.0,119.0,119.0,112.0,107.0,101.0,107.0,98.0,97.0,70.0,86.0,102.0,90.0,92.0,95.0,90.0,108.0,97.0,102.0,110.0,114.0,99.0,125.0,110.0,104.0,112.0,114.0,78.0,89.0,84.0,80.0,66.0,74.0,59.0,54.0,63.0,50.0,53.0,54.0,56.0,60.0,35.0,30.0,37.0,40.0,20.0,17.0,27.0,8.0,20.0,13.0,9.0,6.0,11.0,6.0,3.0,5.0,8.0 P81117,22.0,36.0,27.0,41.0,33.0,26.0,30.0,26.0,32.0,32.0,32.0,27.0,34.0,32.0,29.0,25.0,27.0,37.0,29.0,37.0,31.0,32.0,20.0,29.0,39.0,42.0,38.0,47.0,41.0,42.0,43.0,50.0,44.0,55.0,41.0,29.0,41.0,46.0,55.0,32.0,33.0,43.0,31.0,26.0,30.0,34.0,26.0,24.0,32.0,28.0,34.0,36.0,36.0,32.0,40.0,34.0,43.0,37.0,27.0,35.0,33.0,35.0,38.0,37.0,22.0,24.0,21.0,27.0,20.0,22.0,29.0,26.0,29.0,40.0,31.0,31.0,28.0,37.0,33.0,18.0,27.0,16.0,15.0,14.0,15.0,7.0,11.0,7.0,7.0,2.0,4.0,3.0,4.0,2.0,2.0,2.0 P81118,58.0,56.0,56.0,59.0,56.0,52.0,71.0,67.0,68.0,64.0,62.0,65.0,57.0,72.0,71.0,69.0,62.0,62.0,58.0,63.0,51.0,55.0,51.0,41.0,52.0,59.0,55.0,61.0,52.0,65.0,66.0,77.0,82.0,92.0,87.0,91.0,86.0,85.0,95.0,73.0,76.0,68.0,64.0,74.0,69.0,67.0,68.0,70.0,63.0,52.0,62.0,53.0,60.0,61.0,63.0,65.0,66.0,66.0,65.0,57.0,50.0,50.0,59.0,55.0,51.0,47.0,51.0,43.0,40.0,35.0,45.0,53.0,50.0,39.0,40.0,27.0,28.0,31.0,37.0,29.0,35.0,23.0,20.0,27.0,20.0,15.0,13.0,11.0,9.0,7.0,7.0,5.0,2.0,5.0,7.0,7.0 P81119,58.0,51.0,51.0,67.0,59.0,69.0,77.0,57.0,74.0,84.0,54.0,70.0,61.0,55.0,67.0,70.0,61.0,51.0,50.0,46.0,61.0,52.0,58.0,64.0,66.0,84.0,94.0,100.0,124.0,108.0,101.0,88.0,96.0,91.0,112.0,90.0,78.0,103.0,92.0,72.0,74.0,71.0,76.0,75.0,69.0,68.0,58.0,50.0,51.0,48.0,69.0,55.0,56.0,54.0,43.0,44.0,62.0,63.0,50.0,58.0,55.0,47.0,70.0,55.0,43.0,38.0,45.0,31.0,36.0,34.0,36.0,40.0,35.0,34.0,30.0,30.0,36.0,18.0,32.0,17.0,17.0,22.0,30.0,13.0,16.0,11.0,16.0,16.0,14.0,9.0,13.0,4.0,1.0,9.0,4.0,11.0 P81123,63.0,63.0,65.0,66.0,72.0,84.0,86.0,89.0,96.0,109.0,94.0,98.0,98.0,116.0,97.0,101.0,120.0,96.0,96.0,107.0,93.0,78.0,91.0,92.0,81.0,83.0,71.0,87.0,79.0,79.0,68.0,72.0,87.0,83.0,92.0,98.0,91.0,112.0,110.0,109.0,99.0,115.0,88.0,108.0,91.0,95.0,74.0,79.0,86.0,66.0,67.0,67.0,58.0,64.0,63.0,69.0,66.0,74.0,68.0,60.0,49.0,59.0,47.0,57.0,46.0,51.0,64.0,56.0,58.0,59.0,35.0,37.0,41.0,27.0,44.0,39.0,40.0,34.0,47.0,30.0,24.0,29.0,27.0,22.0,25.0,14.0,15.0,14.0,6.0,9.0,10.0,3.0,3.0,3.0,4.0,10.0 P81125,48.0,42.0,42.0,61.0,59.0,46.0,61.0,58.0,70.0,58.0,75.0,81.0,80.0,69.0,65.0,67.0,63.0,64.0,72.0,60.0,59.0,48.0,55.0,53.0,51.0,59.0,52.0,50.0,58.0,67.0,54.0,60.0,64.0,66.0,51.0,70.0,65.0,60.0,67.0,74.0,76.0,80.0,67.0,70.0,61.0,60.0,55.0,61.0,57.0,58.0,67.0,65.0,66.0,60.0,59.0,59.0,59.0,66.0,62.0,58.0,63.0,61.0,46.0,60.0,61.0,45.0,63.0,60.0,42.0,55.0,50.0,49.0,44.0,43.0,42.0,41.0,67.0,51.0,48.0,37.0,40.0,41.0,35.0,25.0,23.0,24.0,28.0,15.0,21.0,12.0,16.0,10.0,6.0,12.0,7.0,10.0 P81127,45.0,53.0,56.0,63.0,60.0,62.0,57.0,63.0,60.0,62.0,72.0,60.0,48.0,79.0,55.0,69.0,45.0,74.0,61.0,53.0,46.0,35.0,44.0,46.0,33.0,48.0,54.0,70.0,72.0,58.0,68.0,70.0,96.0,76.0,71.0,64.0,96.0,109.0,82.0,80.0,66.0,62.0,63.0,82.0,63.0,66.0,63.0,55.0,70.0,57.0,52.0,54.0,45.0,67.0,50.0,50.0,66.0,52.0,55.0,65.0,65.0,61.0,65.0,57.0,65.0,53.0,47.0,50.0,53.0,51.0,60.0,34.0,49.0,49.0,47.0,32.0,41.0,37.0,33.0,26.0,25.0,31.0,33.0,21.0,19.0,14.0,10.0,12.0,10.0,9.0,9.0,4.0,5.0,9.0,4.0,7.0 P81128,41.0,44.0,47.0,54.0,38.0,43.0,49.0,62.0,51.0,64.0,52.0,65.0,51.0,56.0,55.0,55.0,61.0,43.0,51.0,53.0,44.0,43.0,46.0,42.0,52.0,43.0,63.0,44.0,50.0,56.0,63.0,57.0,60.0,70.0,71.0,56.0,68.0,72.0,69.0,43.0,63.0,64.0,62.0,63.0,67.0,60.0,43.0,54.0,59.0,57.0,56.0,50.0,56.0,68.0,81.0,75.0,72.0,67.0,77.0,82.0,79.0,76.0,75.0,63.0,80.0,65.0,67.0,58.0,64.0,42.0,45.0,48.0,50.0,49.0,32.0,48.0,64.0,57.0,74.0,52.0,28.0,31.0,46.0,32.0,25.0,17.0,28.0,23.0,21.0,21.0,14.0,8.0,3.0,6.0,6.0,11.0 P81129,51.0,53.0,48.0,60.0,60.0,60.0,52.0,60.0,55.0,66.0,65.0,79.0,64.0,73.0,55.0,59.0,61.0,89.0,69.0,63.0,70.0,51.0,50.0,65.0,60.0,68.0,64.0,61.0,79.0,63.0,81.0,75.0,78.0,87.0,70.0,66.0,92.0,63.0,82.0,77.0,94.0,81.0,101.0,80.0,77.0,85.0,61.0,63.0,76.0,63.0,51.0,76.0,87.0,99.0,84.0,83.0,87.0,116.0,95.0,83.0,98.0,79.0,111.0,88.0,97.0,70.0,62.0,95.0,69.0,92.0,63.0,55.0,60.0,63.0,67.0,82.0,70.0,79.0,77.0,44.0,34.0,42.0,60.0,33.0,36.0,34.0,20.0,18.0,24.0,8.0,15.0,13.0,11.0,7.0,9.0,18.0 P81130,49.0,75.0,71.0,60.0,56.0,71.0,72.0,61.0,86.0,74.0,79.0,83.0,99.0,76.0,75.0,84.0,87.0,70.0,76.0,89.0,63.0,80.0,61.0,66.0,60.0,61.0,72.0,62.0,65.0,97.0,68.0,76.0,102.0,76.0,96.0,107.0,85.0,89.0,103.0,90.0,82.0,94.0,89.0,80.0,92.0,81.0,67.0,70.0,59.0,72.0,85.0,83.0,81.0,109.0,102.0,88.0,94.0,98.0,88.0,112.0,108.0,109.0,91.0,97.0,84.0,83.0,89.0,84.0,56.0,65.0,70.0,82.0,80.0,71.0,76.0,66.0,63.0,80.0,78.0,60.0,71.0,52.0,48.0,48.0,35.0,31.0,36.0,19.0,32.0,30.0,22.0,14.0,16.0,11.0,11.0,39.0 P81132,32.0,37.0,37.0,40.0,39.0,36.0,48.0,49.0,43.0,55.0,61.0,57.0,44.0,66.0,56.0,52.0,76.0,55.0,48.0,43.0,48.0,45.0,52.0,50.0,44.0,64.0,61.0,55.0,62.0,53.0,52.0,64.0,78.0,64.0,61.0,63.0,58.0,73.0,61.0,62.0,62.0,55.0,67.0,61.0,59.0,56.0,55.0,53.0,62.0,63.0,64.0,59.0,67.0,72.0,86.0,66.0,83.0,81.0,86.0,74.0,56.0,63.0,71.0,52.0,60.0,45.0,60.0,50.0,43.0,36.0,62.0,45.0,42.0,49.0,45.0,46.0,43.0,55.0,37.0,39.0,29.0,30.0,24.0,21.0,14.0,21.0,13.0,15.0,9.0,11.0,10.0,9.0,,2.0,2.0,7.0 P81133,30.0,28.0,29.0,49.0,42.0,49.0,37.0,41.0,32.0,31.0,42.0,31.0,46.0,43.0,36.0,49.0,48.0,56.0,49.0,51.0,39.0,40.0,28.0,32.0,40.0,45.0,43.0,30.0,36.0,48.0,56.0,50.0,50.0,55.0,50.0,26.0,44.0,61.0,53.0,61.0,56.0,49.0,44.0,50.0,42.0,68.0,46.0,38.0,49.0,60.0,48.0,57.0,73.0,58.0,69.0,82.0,63.0,78.0,68.0,86.0,96.0,67.0,79.0,77.0,77.0,85.0,65.0,70.0,69.0,53.0,43.0,62.0,66.0,57.0,63.0,55.0,68.0,68.0,70.0,50.0,48.0,43.0,31.0,41.0,23.0,48.0,34.0,22.0,14.0,21.0,15.0,8.0,5.0,9.0,7.0,20.0 P81136,9.0,9.0,13.0,20.0,19.0,11.0,16.0,11.0,19.0,14.0,15.0,13.0,10.0,13.0,15.0,16.0,16.0,18.0,7.0,13.0,12.0,10.0,13.0,19.0,21.0,19.0,23.0,20.0,14.0,17.0,19.0,20.0,18.0,16.0,24.0,18.0,23.0,20.0,24.0,16.0,16.0,18.0,17.0,15.0,17.0,9.0,16.0,13.0,14.0,18.0,11.0,17.0,18.0,18.0,24.0,18.0,19.0,11.0,27.0,32.0,23.0,19.0,35.0,19.0,20.0,15.0,20.0,23.0,20.0,18.0,14.0,10.0,23.0,17.0,13.0,16.0,14.0,20.0,14.0,8.0,14.0,8.0,9.0,14.0,9.0,6.0,5.0,6.0,9.0,7.0,2.0,4.0,6.0,,1.0, P81137,32.0,33.0,41.0,36.0,30.0,47.0,49.0,38.0,38.0,36.0,45.0,31.0,52.0,47.0,54.0,35.0,52.0,52.0,26.0,30.0,32.0,29.0,29.0,32.0,33.0,29.0,49.0,35.0,51.0,40.0,50.0,63.0,69.0,49.0,52.0,58.0,36.0,63.0,42.0,42.0,49.0,51.0,36.0,34.0,61.0,43.0,35.0,31.0,43.0,33.0,42.0,48.0,43.0,36.0,49.0,59.0,41.0,43.0,49.0,55.0,62.0,54.0,52.0,44.0,48.0,41.0,47.0,39.0,41.0,43.0,39.0,31.0,26.0,31.0,38.0,30.0,51.0,29.0,34.0,24.0,30.0,21.0,11.0,18.0,13.0,7.0,14.0,11.0,10.0,10.0,7.0,10.0,5.0,2.0,1.0,9.0 P81138,23.0,17.0,18.0,19.0,19.0,10.0,10.0,10.0,9.0,13.0,14.0,18.0,21.0,14.0,17.0,17.0,19.0,9.0,15.0,12.0,15.0,16.0,9.0,17.0,13.0,16.0,20.0,23.0,16.0,25.0,12.0,21.0,24.0,25.0,20.0,28.0,23.0,11.0,26.0,14.0,21.0,12.0,22.0,21.0,25.0,16.0,17.0,16.0,15.0,15.0,18.0,21.0,25.0,17.0,14.0,18.0,26.0,28.0,22.0,15.0,28.0,24.0,20.0,23.0,22.0,22.0,13.0,18.0,16.0,15.0,15.0,23.0,16.0,15.0,17.0,20.0,22.0,15.0,23.0,25.0,20.0,17.0,18.0,7.0,6.0,11.0,12.0,5.0,6.0,3.0,3.0,2.0,3.0,2.0,2.0,2.0 P81140,71.0,53.0,68.0,74.0,78.0,82.0,73.0,104.0,76.0,89.0,93.0,75.0,81.0,94.0,99.0,83.0,98.0,90.0,81.0,83.0,76.0,76.0,79.0,87.0,95.0,64.0,65.0,75.0,96.0,80.0,88.0,102.0,110.0,114.0,102.0,116.0,99.0,100.0,109.0,100.0,87.0,102.0,119.0,103.0,92.0,102.0,68.0,74.0,66.0,94.0,95.0,81.0,94.0,145.0,115.0,120.0,109.0,121.0,122.0,81.0,112.0,123.0,98.0,103.0,95.0,90.0,84.0,75.0,73.0,72.0,72.0,78.0,76.0,77.0,72.0,81.0,79.0,66.0,85.0,61.0,54.0,41.0,44.0,38.0,30.0,23.0,34.0,33.0,23.0,18.0,15.0,10.0,7.0,11.0,9.0,16.0 P81143,57.0,37.0,52.0,45.0,51.0,64.0,59.0,60.0,53.0,69.0,65.0,73.0,70.0,64.0,68.0,60.0,58.0,63.0,64.0,61.0,62.0,58.0,51.0,42.0,56.0,58.0,59.0,51.0,45.0,70.0,62.0,70.0,82.0,67.0,57.0,69.0,75.0,84.0,89.0,78.0,86.0,67.0,76.0,85.0,83.0,73.0,74.0,69.0,79.0,75.0,77.0,66.0,87.0,104.0,89.0,92.0,89.0,95.0,97.0,88.0,90.0,94.0,80.0,67.0,83.0,79.0,53.0,88.0,72.0,64.0,51.0,71.0,64.0,57.0,60.0,58.0,54.0,57.0,51.0,42.0,46.0,39.0,28.0,34.0,29.0,29.0,23.0,17.0,15.0,18.0,17.0,5.0,7.0,7.0,7.0,14.0 P81147,29.0,25.0,26.0,23.0,29.0,29.0,28.0,20.0,32.0,32.0,33.0,34.0,23.0,31.0,27.0,30.0,35.0,36.0,43.0,31.0,30.0,28.0,23.0,20.0,36.0,23.0,33.0,40.0,25.0,31.0,24.0,38.0,29.0,33.0,22.0,23.0,39.0,31.0,21.0,40.0,32.0,23.0,21.0,35.0,25.0,24.0,34.0,32.0,34.0,25.0,24.0,35.0,25.0,35.0,26.0,42.0,28.0,29.0,24.0,28.0,33.0,20.0,27.0,22.0,20.0,34.0,16.0,15.0,24.0,20.0,20.0,17.0,23.0,15.0,30.0,25.0,24.0,22.0,18.0,24.0,10.0,15.0,14.0,8.0,10.0,14.0,7.0,13.0,4.0,1.0,3.0,2.0,2.0,1.0,,3.0 P81149,41.0,30.0,46.0,35.0,39.0,51.0,38.0,43.0,40.0,36.0,39.0,50.0,46.0,50.0,37.0,47.0,38.0,39.0,50.0,36.0,42.0,38.0,30.0,32.0,34.0,34.0,38.0,48.0,26.0,54.0,46.0,48.0,47.0,45.0,77.0,58.0,43.0,48.0,55.0,43.0,58.0,52.0,59.0,49.0,51.0,45.0,53.0,44.0,59.0,46.0,54.0,43.0,63.0,74.0,71.0,74.0,80.0,54.0,58.0,88.0,73.0,63.0,89.0,68.0,69.0,64.0,63.0,80.0,68.0,61.0,56.0,67.0,71.0,64.0,59.0,58.0,64.0,54.0,89.0,49.0,41.0,44.0,36.0,42.0,26.0,39.0,34.0,26.0,21.0,26.0,19.0,14.0,8.0,9.0,9.0,26.0 P81150,45.0,36.0,39.0,47.0,45.0,42.0,48.0,53.0,54.0,54.0,52.0,58.0,64.0,69.0,65.0,55.0,71.0,62.0,54.0,42.0,42.0,51.0,44.0,48.0,37.0,46.0,40.0,52.0,41.0,42.0,61.0,38.0,51.0,62.0,59.0,67.0,72.0,74.0,59.0,79.0,51.0,64.0,78.0,67.0,78.0,78.0,72.0,65.0,54.0,65.0,56.0,72.0,69.0,79.0,84.0,90.0,81.0,81.0,80.0,84.0,82.0,95.0,106.0,96.0,108.0,93.0,73.0,106.0,85.0,76.0,87.0,87.0,77.0,76.0,92.0,96.0,105.0,99.0,109.0,75.0,66.0,65.0,65.0,66.0,51.0,69.0,49.0,47.0,47.0,45.0,48.0,44.0,37.0,24.0,19.0,54.0 P81154,29.0,29.0,30.0,30.0,39.0,37.0,31.0,39.0,42.0,39.0,42.0,40.0,40.0,33.0,50.0,40.0,42.0,37.0,46.0,39.0,41.0,40.0,35.0,26.0,51.0,30.0,32.0,42.0,26.0,42.0,45.0,36.0,38.0,46.0,51.0,39.0,44.0,50.0,56.0,52.0,44.0,37.0,47.0,49.0,47.0,48.0,48.0,35.0,48.0,55.0,45.0,52.0,65.0,75.0,68.0,65.0,64.0,76.0,77.0,60.0,66.0,71.0,53.0,53.0,66.0,59.0,57.0,53.0,52.0,51.0,52.0,57.0,44.0,48.0,54.0,57.0,36.0,73.0,53.0,41.0,56.0,34.0,41.0,24.0,31.0,30.0,34.0,31.0,19.0,14.0,14.0,12.0,11.0,7.0,11.0,10.0 P81155,52.0,42.0,39.0,41.0,37.0,49.0,39.0,38.0,34.0,35.0,34.0,35.0,33.0,43.0,24.0,38.0,45.0,34.0,32.0,33.0,26.0,28.0,32.0,29.0,33.0,36.0,21.0,44.0,42.0,41.0,47.0,35.0,41.0,43.0,43.0,57.0,55.0,51.0,38.0,46.0,39.0,55.0,39.0,38.0,26.0,44.0,37.0,38.0,35.0,35.0,29.0,31.0,28.0,50.0,38.0,36.0,47.0,43.0,53.0,41.0,28.0,48.0,37.0,41.0,30.0,27.0,35.0,36.0,28.0,32.0,30.0,17.0,18.0,28.0,20.0,25.0,27.0,38.0,31.0,13.0,17.0,15.0,13.0,8.0,15.0,16.0,12.0,7.0,5.0,16.0,12.0,5.0,3.0,8.0,3.0,8.0 P81157,29.0,46.0,40.0,43.0,37.0,47.0,42.0,52.0,54.0,54.0,44.0,55.0,54.0,48.0,64.0,46.0,50.0,46.0,42.0,46.0,32.0,51.0,31.0,43.0,50.0,38.0,37.0,62.0,51.0,41.0,51.0,48.0,55.0,59.0,62.0,65.0,61.0,59.0,56.0,58.0,52.0,62.0,57.0,63.0,67.0,67.0,55.0,53.0,58.0,68.0,60.0,66.0,68.0,83.0,78.0,83.0,96.0,98.0,98.0,111.0,118.0,97.0,113.0,118.0,108.0,108.0,91.0,95.0,112.0,85.0,86.0,72.0,90.0,69.0,84.0,69.0,79.0,95.0,81.0,76.0,83.0,64.0,58.0,53.0,39.0,40.0,40.0,39.0,28.0,30.0,21.0,14.0,12.0,11.0,17.0,28.0 P81159,32.0,49.0,46.0,45.0,49.0,58.0,54.0,64.0,71.0,65.0,66.0,51.0,53.0,53.0,62.0,57.0,42.0,80.0,59.0,47.0,64.0,47.0,52.0,54.0,52.0,50.0,67.0,65.0,79.0,65.0,77.0,92.0,73.0,85.0,73.0,87.0,85.0,92.0,67.0,79.0,76.0,58.0,81.0,55.0,66.0,79.0,75.0,56.0,66.0,52.0,67.0,69.0,73.0,80.0,80.0,85.0,105.0,91.0,94.0,111.0,101.0,84.0,83.0,79.0,88.0,96.0,90.0,72.0,69.0,67.0,66.0,74.0,51.0,50.0,67.0,64.0,65.0,83.0,63.0,53.0,62.0,58.0,44.0,41.0,35.0,30.0,42.0,28.0,31.0,25.0,21.0,14.0,9.0,11.0,7.0,21.0 P81160,86.0,81.0,86.0,101.0,92.0,112.0,106.0,101.0,143.0,108.0,105.0,125.0,120.0,118.0,124.0,102.0,112.0,123.0,92.0,107.0,81.0,88.0,84.0,88.0,81.0,87.0,100.0,105.0,99.0,127.0,118.0,115.0,110.0,123.0,124.0,118.0,120.0,121.0,128.0,118.0,103.0,114.0,90.0,112.0,117.0,101.0,72.0,82.0,69.0,110.0,95.0,106.0,80.0,109.0,98.0,107.0,82.0,76.0,91.0,76.0,94.0,95.0,75.0,69.0,85.0,86.0,90.0,81.0,75.0,63.0,69.0,55.0,59.0,47.0,50.0,57.0,62.0,72.0,55.0,39.0,54.0,27.0,39.0,39.0,19.0,28.0,20.0,14.0,18.0,20.0,11.0,3.0,9.0,9.0,8.0,15.0 P81165,15.0,12.0,12.0,18.0,15.0,15.0,12.0,19.0,19.0,22.0,18.0,20.0,14.0,22.0,22.0,29.0,18.0,15.0,14.0,10.0,16.0,14.0,17.0,13.0,8.0,19.0,21.0,15.0,13.0,22.0,14.0,19.0,15.0,14.0,29.0,14.0,20.0,19.0,13.0,20.0,16.0,14.0,18.0,18.0,21.0,16.0,19.0,13.0,12.0,10.0,17.0,13.0,9.0,9.0,22.0,13.0,14.0,11.0,16.0,20.0,28.0,19.0,17.0,12.0,17.0,10.0,12.0,11.0,17.0,15.0,13.0,9.0,13.0,13.0,15.0,16.0,11.0,17.0,17.0,9.0,14.0,4.0,7.0,6.0,7.0,3.0,3.0,6.0,4.0,1.0,2.0,2.0,3.0,,1.0,1.0 P81166,7.0,10.0,8.0,18.0,10.0,14.0,9.0,9.0,15.0,18.0,16.0,15.0,16.0,14.0,12.0,11.0,14.0,14.0,11.0,21.0,11.0,6.0,6.0,14.0,11.0,12.0,15.0,11.0,15.0,11.0,15.0,17.0,20.0,9.0,19.0,8.0,13.0,20.0,16.0,11.0,11.0,9.0,23.0,15.0,21.0,12.0,14.0,14.0,10.0,8.0,14.0,10.0,18.0,9.0,15.0,18.0,18.0,11.0,14.0,14.0,13.0,17.0,19.0,15.0,11.0,16.0,9.0,14.0,12.0,9.0,11.0,9.0,13.0,10.0,9.0,5.0,10.0,11.0,9.0,4.0,12.0,9.0,5.0,7.0,8.0,6.0,4.0,1.0,5.0,4.0,2.0,3.0,2.0,3.0,1.0,1.0 P81167,33.0,44.0,36.0,40.0,38.0,60.0,43.0,53.0,45.0,41.0,49.0,52.0,48.0,50.0,53.0,44.0,33.0,49.0,47.0,38.0,47.0,54.0,47.0,33.0,47.0,39.0,47.0,36.0,53.0,41.0,49.0,33.0,42.0,36.0,46.0,42.0,43.0,47.0,33.0,52.0,47.0,33.0,47.0,52.0,47.0,46.0,39.0,36.0,30.0,23.0,32.0,37.0,30.0,34.0,39.0,17.0,37.0,29.0,27.0,27.0,30.0,24.0,35.0,22.0,34.0,25.0,13.0,20.0,20.0,22.0,20.0,21.0,21.0,15.0,8.0,13.0,12.0,16.0,17.0,14.0,16.0,8.0,10.0,6.0,10.0,10.0,3.0,8.0,7.0,3.0,2.0,1.0,2.0,1.0,,5.0 P81169,34.0,34.0,31.0,38.0,28.0,44.0,39.0,34.0,36.0,39.0,29.0,43.0,30.0,29.0,32.0,26.0,26.0,35.0,36.0,32.0,29.0,35.0,33.0,57.0,53.0,57.0,60.0,68.0,72.0,66.0,75.0,49.0,58.0,67.0,55.0,59.0,72.0,48.0,56.0,39.0,45.0,48.0,41.0,33.0,42.0,42.0,36.0,20.0,40.0,26.0,43.0,24.0,24.0,44.0,38.0,28.0,47.0,32.0,38.0,26.0,33.0,49.0,30.0,41.0,36.0,37.0,38.0,33.0,27.0,26.0,18.0,22.0,10.0,25.0,22.0,21.0,30.0,19.0,28.0,16.0,18.0,18.0,10.0,13.0,9.0,15.0,3.0,6.0,4.0,10.0,8.0,3.0,7.0,3.0,4.0,4.0 P81170,70.0,99.0,85.0,84.0,85.0,90.0,87.0,80.0,116.0,86.0,93.0,107.0,94.0,97.0,101.0,100.0,95.0,98.0,100.0,97.0,78.0,90.0,80.0,74.0,97.0,83.0,82.0,72.0,89.0,81.0,87.0,85.0,85.0,77.0,73.0,87.0,89.0,84.0,96.0,96.0,90.0,94.0,76.0,66.0,77.0,95.0,69.0,70.0,60.0,58.0,54.0,49.0,34.0,44.0,51.0,35.0,38.0,52.0,35.0,41.0,24.0,41.0,35.0,35.0,32.0,37.0,42.0,29.0,37.0,26.0,25.0,28.0,22.0,21.0,13.0,13.0,16.0,18.0,10.0,7.0,9.0,5.0,7.0,6.0,8.0,3.0,2.0,1.0,2.0,7.0,1.0,1.0,3.0,4.0,1.0,5.0 P81171,17.0,19.0,27.0,18.0,19.0,19.0,18.0,26.0,24.0,23.0,22.0,26.0,26.0,20.0,24.0,24.0,16.0,24.0,28.0,18.0,23.0,17.0,25.0,19.0,14.0,19.0,22.0,28.0,18.0,26.0,28.0,22.0,26.0,26.0,28.0,37.0,34.0,30.0,26.0,31.0,42.0,29.0,22.0,19.0,27.0,34.0,21.0,26.0,22.0,33.0,34.0,35.0,46.0,36.0,33.0,35.0,34.0,45.0,40.0,37.0,34.0,29.0,38.0,37.0,29.0,38.0,28.0,22.0,30.0,28.0,34.0,26.0,31.0,27.0,36.0,23.0,33.0,30.0,27.0,21.0,25.0,26.0,25.0,11.0,12.0,12.0,11.0,10.0,4.0,4.0,6.0,2.0,2.0,,1.0,9.0 P81172,53.0,76.0,65.0,82.0,55.0,71.0,86.0,70.0,82.0,79.0,78.0,83.0,66.0,65.0,75.0,65.0,91.0,72.0,74.0,60.0,54.0,58.0,70.0,56.0,82.0,79.0,73.0,74.0,89.0,94.0,118.0,96.0,112.0,120.0,150.0,129.0,107.0,115.0,119.0,121.0,93.0,92.0,70.0,74.0,72.0,82.0,84.0,61.0,72.0,78.0,60.0,77.0,77.0,80.0,82.0,91.0,90.0,87.0,71.0,84.0,103.0,82.0,74.0,87.0,68.0,68.0,78.0,56.0,64.0,57.0,51.0,55.0,34.0,40.0,50.0,46.0,51.0,30.0,46.0,35.0,30.0,27.0,29.0,16.0,23.0,17.0,19.0,21.0,17.0,14.0,16.0,10.0,10.0,4.0,6.0,9.0 P81179,29.0,38.0,29.0,38.0,41.0,36.0,32.0,25.0,39.0,35.0,35.0,47.0,42.0,36.0,31.0,33.0,28.0,29.0,30.0,33.0,26.0,22.0,35.0,30.0,42.0,42.0,47.0,36.0,46.0,49.0,41.0,57.0,50.0,57.0,47.0,52.0,45.0,46.0,36.0,57.0,55.0,48.0,42.0,44.0,48.0,54.0,40.0,44.0,44.0,40.0,39.0,52.0,63.0,40.0,61.0,48.0,45.0,43.0,31.0,48.0,50.0,43.0,45.0,37.0,33.0,42.0,39.0,30.0,20.0,28.0,32.0,39.0,31.0,29.0,25.0,19.0,30.0,28.0,34.0,15.0,16.0,14.0,22.0,14.0,14.0,18.0,16.0,10.0,7.0,11.0,8.0,10.0,4.0,1.0,4.0,12.0 P81180,12.0,7.0,14.0,16.0,26.0,13.0,17.0,24.0,22.0,27.0,23.0,26.0,18.0,21.0,23.0,29.0,30.0,33.0,28.0,14.0,20.0,18.0,22.0,18.0,13.0,17.0,11.0,13.0,25.0,18.0,20.0,25.0,36.0,16.0,34.0,28.0,31.0,24.0,20.0,28.0,24.0,32.0,29.0,22.0,24.0,22.0,23.0,9.0,18.0,29.0,15.0,22.0,22.0,26.0,22.0,18.0,24.0,14.0,18.0,21.0,29.0,13.0,20.0,23.0,14.0,14.0,19.0,25.0,13.0,16.0,19.0,15.0,21.0,9.0,10.0,15.0,20.0,17.0,15.0,15.0,7.0,6.0,9.0,6.0,7.0,11.0,7.0,6.0,4.0,9.0,2.0,1.0,4.0,1.0,4.0,2.0 P81181,27.0,28.0,27.0,32.0,25.0,34.0,37.0,31.0,34.0,32.0,28.0,23.0,27.0,37.0,40.0,34.0,37.0,35.0,30.0,24.0,21.0,27.0,19.0,30.0,23.0,33.0,21.0,46.0,38.0,29.0,41.0,31.0,44.0,34.0,41.0,37.0,47.0,36.0,44.0,36.0,47.0,32.0,33.0,26.0,34.0,32.0,28.0,29.0,31.0,29.0,30.0,23.0,29.0,31.0,33.0,36.0,33.0,40.0,32.0,29.0,31.0,24.0,31.0,35.0,34.0,36.0,35.0,30.0,25.0,32.0,36.0,36.0,34.0,25.0,26.0,25.0,30.0,45.0,31.0,21.0,15.0,25.0,14.0,10.0,8.0,10.0,16.0,6.0,5.0,11.0,7.0,10.0,4.0,7.0,5.0,15.0 P81182,38.0,40.0,52.0,50.0,53.0,58.0,45.0,52.0,49.0,47.0,47.0,66.0,57.0,50.0,72.0,60.0,67.0,52.0,47.0,50.0,38.0,44.0,36.0,49.0,55.0,43.0,49.0,55.0,58.0,55.0,48.0,45.0,48.0,40.0,44.0,42.0,56.0,49.0,58.0,52.0,60.0,39.0,45.0,53.0,41.0,44.0,52.0,27.0,25.0,30.0,24.0,28.0,28.0,30.0,31.0,29.0,31.0,41.0,17.0,24.0,20.0,26.0,24.0,24.0,20.0,18.0,14.0,24.0,28.0,15.0,20.0,15.0,15.0,12.0,15.0,14.0,18.0,22.0,12.0,14.0,11.0,6.0,13.0,10.0,5.0,11.0,6.0,6.0,8.0,5.0,5.0,2.0,,1.0,1.0,5.0 P81184,54.0,40.0,47.0,51.0,62.0,64.0,49.0,61.0,68.0,66.0,67.0,74.0,59.0,74.0,76.0,96.0,68.0,64.0,58.0,57.0,50.0,56.0,53.0,72.0,52.0,50.0,55.0,57.0,60.0,55.0,53.0,69.0,69.0,74.0,84.0,54.0,82.0,67.0,79.0,83.0,73.0,89.0,67.0,51.0,64.0,77.0,62.0,39.0,47.0,48.0,45.0,55.0,59.0,46.0,60.0,51.0,64.0,49.0,37.0,60.0,45.0,54.0,55.0,50.0,48.0,35.0,46.0,56.0,39.0,36.0,33.0,27.0,32.0,35.0,27.0,22.0,26.0,29.0,26.0,13.0,20.0,9.0,17.0,17.0,9.0,6.0,14.0,10.0,10.0,7.0,5.0,4.0,8.0,7.0,4.0,12.0 P81185,32.0,34.0,48.0,41.0,33.0,36.0,35.0,43.0,51.0,48.0,53.0,65.0,70.0,62.0,73.0,63.0,82.0,81.0,66.0,52.0,51.0,60.0,44.0,56.0,42.0,46.0,58.0,44.0,43.0,52.0,48.0,54.0,52.0,65.0,75.0,72.0,72.0,50.0,63.0,69.0,68.0,61.0,77.0,70.0,77.0,73.0,80.0,73.0,66.0,82.0,92.0,77.0,77.0,105.0,100.0,81.0,97.0,98.0,90.0,98.0,92.0,72.0,73.0,69.0,76.0,66.0,59.0,66.0,65.0,57.0,69.0,63.0,44.0,57.0,42.0,46.0,50.0,64.0,58.0,49.0,38.0,45.0,38.0,33.0,29.0,26.0,22.0,15.0,12.0,11.0,12.0,6.0,12.0,7.0,6.0,15.0 P81186,20.0,23.0,18.0,21.0,27.0,24.0,18.0,30.0,35.0,27.0,29.0,33.0,27.0,22.0,20.0,22.0,35.0,37.0,21.0,25.0,28.0,29.0,30.0,19.0,28.0,24.0,29.0,26.0,32.0,41.0,22.0,21.0,37.0,32.0,44.0,41.0,30.0,43.0,32.0,33.0,20.0,29.0,29.0,23.0,23.0,31.0,32.0,24.0,29.0,16.0,26.0,21.0,35.0,33.0,35.0,36.0,30.0,37.0,30.0,37.0,33.0,41.0,43.0,31.0,28.0,40.0,27.0,14.0,38.0,23.0,27.0,26.0,21.0,30.0,30.0,34.0,25.0,23.0,24.0,12.0,17.0,15.0,11.0,11.0,9.0,11.0,8.0,3.0,7.0,7.0,10.0,5.0,4.0,4.0,1.0,8.0 P81191,50.0,30.0,48.0,31.0,36.0,40.0,37.0,29.0,40.0,35.0,45.0,46.0,46.0,34.0,47.0,58.0,36.0,51.0,52.0,37.0,43.0,27.0,23.0,36.0,38.0,47.0,46.0,43.0,45.0,37.0,42.0,56.0,55.0,67.0,62.0,59.0,59.0,68.0,51.0,70.0,47.0,59.0,49.0,51.0,62.0,51.0,48.0,57.0,46.0,45.0,37.0,68.0,62.0,68.0,88.0,75.0,71.0,79.0,68.0,80.0,89.0,89.0,85.0,89.0,83.0,80.0,72.0,86.0,79.0,63.0,57.0,70.0,69.0,74.0,78.0,76.0,73.0,82.0,73.0,56.0,62.0,52.0,51.0,51.0,35.0,32.0,29.0,41.0,35.0,20.0,20.0,13.0,11.0,19.0,6.0,32.0 P81196,218.0,231.0,230.0,231.0,231.0,238.0,225.0,235.0,241.0,262.0,265.0,277.0,282.0,269.0,280.0,248.0,238.0,231.0,222.0,196.0,189.0,219.0,214.0,230.0,239.0,249.0,253.0,278.0,282.0,304.0,276.0,293.0,295.0,255.0,308.0,305.0,303.0,304.0,257.0,257.0,255.0,255.0,243.0,247.0,251.0,236.0,191.0,193.0,208.0,187.0,168.0,177.0,174.0,200.0,194.0,200.0,190.0,174.0,198.0,156.0,159.0,161.0,154.0,163.0,124.0,149.0,120.0,134.0,117.0,113.0,114.0,101.0,102.0,98.0,113.0,105.0,83.0,101.0,79.0,72.0,76.0,74.0,59.0,46.0,46.0,40.0,40.0,37.0,35.0,22.0,22.0,15.0,17.0,18.0,6.0,28.0 P81197,21.0,23.0,33.0,32.0,27.0,30.0,30.0,42.0,40.0,29.0,25.0,27.0,37.0,38.0,36.0,29.0,31.0,32.0,33.0,35.0,30.0,24.0,18.0,31.0,15.0,32.0,29.0,33.0,33.0,30.0,42.0,39.0,32.0,51.0,34.0,48.0,32.0,33.0,37.0,38.0,48.0,39.0,27.0,36.0,29.0,37.0,38.0,30.0,37.0,25.0,23.0,27.0,29.0,30.0,34.0,37.0,39.0,27.0,39.0,30.0,36.0,37.0,18.0,39.0,39.0,30.0,31.0,25.0,30.0,26.0,21.0,21.0,27.0,33.0,22.0,24.0,27.0,17.0,25.0,10.0,14.0,10.0,8.0,4.0,10.0,7.0,6.0,4.0,8.0,5.0,4.0,3.0,2.0,,2.0,6.0 P81201,19.0,26.0,26.0,35.0,29.0,27.0,27.0,37.0,33.0,37.0,26.0,35.0,43.0,41.0,39.0,34.0,37.0,33.0,31.0,32.0,27.0,36.0,25.0,21.0,33.0,37.0,42.0,29.0,37.0,47.0,42.0,47.0,44.0,50.0,45.0,42.0,51.0,43.0,47.0,34.0,45.0,44.0,34.0,45.0,44.0,44.0,54.0,38.0,33.0,35.0,29.0,29.0,39.0,42.0,26.0,34.0,39.0,35.0,33.0,42.0,40.0,31.0,41.0,39.0,30.0,45.0,36.0,49.0,33.0,44.0,32.0,27.0,25.0,27.0,20.0,22.0,20.0,23.0,17.0,12.0,13.0,13.0,15.0,8.0,8.0,2.0,7.0,10.0,9.0,2.0,4.0,2.0,2.0,,2.0, P81208,75.0,103.0,90.0,97.0,95.0,112.0,103.0,121.0,103.0,132.0,137.0,122.0,128.0,110.0,120.0,106.0,132.0,108.0,99.0,89.0,94.0,102.0,88.0,97.0,84.0,109.0,98.0,108.0,107.0,113.0,120.0,116.0,127.0,135.0,136.0,155.0,120.0,136.0,122.0,153.0,123.0,135.0,129.0,105.0,101.0,102.0,90.0,102.0,108.0,96.0,101.0,111.0,111.0,128.0,146.0,114.0,132.0,132.0,113.0,138.0,123.0,106.0,97.0,128.0,118.0,108.0,82.0,78.0,84.0,84.0,69.0,85.0,95.0,69.0,66.0,69.0,61.0,69.0,79.0,58.0,47.0,42.0,43.0,47.0,32.0,30.0,28.0,23.0,29.0,21.0,14.0,6.0,4.0,5.0,4.0,20.0 P81212,38.0,35.0,43.0,34.0,38.0,32.0,26.0,29.0,39.0,27.0,34.0,37.0,39.0,34.0,33.0,56.0,39.0,37.0,36.0,33.0,28.0,20.0,40.0,37.0,35.0,40.0,46.0,51.0,37.0,39.0,49.0,54.0,38.0,52.0,33.0,47.0,49.0,42.0,44.0,39.0,26.0,33.0,36.0,37.0,47.0,40.0,36.0,36.0,28.0,43.0,33.0,40.0,37.0,40.0,41.0,41.0,36.0,39.0,37.0,28.0,48.0,45.0,40.0,42.0,24.0,33.0,25.0,29.0,28.0,27.0,30.0,32.0,30.0,16.0,28.0,23.0,27.0,33.0,23.0,9.0,21.0,27.0,18.0,14.0,19.0,12.0,17.0,8.0,13.0,11.0,6.0,7.0,3.0,5.0,1.0,5.0 P81213,31.0,27.0,43.0,47.0,52.0,49.0,57.0,63.0,57.0,44.0,58.0,48.0,68.0,45.0,52.0,54.0,65.0,69.0,194.0,362.0,476.0,487.0,468.0,457.0,420.0,287.0,184.0,157.0,158.0,119.0,119.0,98.0,102.0,87.0,74.0,74.0,82.0,98.0,89.0,60.0,77.0,75.0,68.0,77.0,63.0,77.0,56.0,58.0,70.0,60.0,64.0,58.0,64.0,65.0,63.0,53.0,98.0,74.0,62.0,81.0,67.0,65.0,82.0,86.0,83.0,80.0,59.0,66.0,69.0,58.0,47.0,58.0,50.0,49.0,59.0,46.0,57.0,52.0,48.0,32.0,38.0,46.0,36.0,20.0,28.0,26.0,22.0,23.0,13.0,12.0,16.0,13.0,6.0,8.0,5.0,8.0 P81214,25.0,31.0,22.0,32.0,33.0,31.0,44.0,27.0,33.0,34.0,41.0,44.0,28.0,31.0,44.0,32.0,29.0,38.0,25.0,40.0,33.0,25.0,40.0,30.0,26.0,29.0,32.0,40.0,26.0,21.0,30.0,23.0,27.0,29.0,24.0,33.0,31.0,36.0,30.0,38.0,41.0,38.0,18.0,38.0,32.0,36.0,27.0,28.0,23.0,28.0,25.0,30.0,17.0,18.0,19.0,24.0,23.0,21.0,27.0,26.0,16.0,24.0,29.0,19.0,19.0,26.0,18.0,25.0,22.0,23.0,13.0,12.0,15.0,14.0,17.0,24.0,17.0,9.0,7.0,12.0,12.0,11.0,13.0,6.0,8.0,11.0,5.0,6.0,6.0,7.0,4.0,5.0,4.0,2.0,2.0,2.0 P81218,24.0,21.0,37.0,27.0,31.0,32.0,34.0,36.0,29.0,31.0,31.0,35.0,39.0,34.0,51.0,35.0,37.0,32.0,36.0,25.0,25.0,31.0,34.0,33.0,31.0,29.0,19.0,36.0,37.0,30.0,41.0,43.0,35.0,39.0,50.0,45.0,44.0,44.0,41.0,42.0,50.0,41.0,45.0,36.0,39.0,43.0,44.0,43.0,44.0,35.0,30.0,39.0,45.0,57.0,46.0,38.0,45.0,37.0,38.0,35.0,45.0,46.0,35.0,48.0,38.0,45.0,36.0,41.0,34.0,35.0,28.0,33.0,24.0,34.0,36.0,34.0,38.0,39.0,31.0,17.0,21.0,25.0,15.0,9.0,12.0,14.0,15.0,10.0,11.0,5.0,14.0,5.0,6.0,,1.0,8.0 P81620,7.0,8.0,1.0,6.0,6.0,7.0,5.0,5.0,8.0,7.0,2.0,13.0,6.0,8.0,13.0,7.0,8.0,9.0,12.0,7.0,6.0,10.0,7.0,7.0,7.0,6.0,4.0,5.0,2.0,7.0,2.0,5.0,5.0,3.0,7.0,4.0,12.0,5.0,6.0,10.0,7.0,3.0,11.0,9.0,8.0,3.0,9.0,9.0,13.0,7.0,12.0,6.0,15.0,7.0,14.0,20.0,21.0,17.0,10.0,12.0,17.0,8.0,15.0,15.0,13.0,11.0,12.0,9.0,11.0,9.0,9.0,10.0,9.0,6.0,6.0,11.0,8.0,7.0,3.0,6.0,4.0,6.0,6.0,7.0,3.0,2.0,3.0,1.0,2.0,,3.0,3.0,5.0,,,1.0 P81622,64.0,69.0,66.0,72.0,75.0,88.0,97.0,86.0,90.0,90.0,116.0,79.0,91.0,98.0,115.0,115.0,111.0,127.0,111.0,94.0,83.0,99.0,93.0,89.0,93.0,98.0,74.0,84.0,88.0,66.0,70.0,70.0,57.0,71.0,59.0,87.0,82.0,79.0,96.0,94.0,79.0,97.0,107.0,88.0,113.0,97.0,77.0,79.0,79.0,66.0,75.0,75.0,72.0,65.0,55.0,44.0,45.0,48.0,51.0,44.0,31.0,21.0,21.0,41.0,34.0,28.0,33.0,51.0,33.0,50.0,28.0,25.0,45.0,37.0,18.0,19.0,22.0,5.0,16.0,13.0,9.0,7.0,6.0,8.0,8.0,7.0,11.0,4.0,5.0,6.0,2.0,2.0,3.0,,2.0,2.0 P81633,12.0,15.0,21.0,19.0,17.0,15.0,17.0,24.0,19.0,15.0,23.0,21.0,24.0,22.0,15.0,25.0,19.0,24.0,20.0,11.0,20.0,5.0,18.0,16.0,19.0,12.0,14.0,22.0,22.0,17.0,28.0,22.0,24.0,33.0,28.0,30.0,13.0,29.0,18.0,31.0,29.0,29.0,18.0,30.0,20.0,24.0,21.0,23.0,20.0,26.0,36.0,27.0,24.0,29.0,27.0,21.0,30.0,25.0,33.0,28.0,24.0,30.0,33.0,14.0,28.0,24.0,26.0,24.0,20.0,15.0,17.0,19.0,12.0,12.0,14.0,14.0,19.0,17.0,16.0,11.0,13.0,14.0,14.0,7.0,10.0,14.0,8.0,4.0,3.0,4.0,4.0,2.0,3.0,3.0,, P81646,9.0,13.0,15.0,14.0,18.0,12.0,20.0,15.0,16.0,16.0,16.0,23.0,31.0,24.0,23.0,29.0,22.0,22.0,20.0,22.0,22.0,21.0,21.0,23.0,16.0,15.0,14.0,23.0,21.0,15.0,16.0,20.0,23.0,14.0,25.0,19.0,19.0,14.0,25.0,19.0,18.0,24.0,17.0,22.0,17.0,27.0,21.0,25.0,30.0,29.0,30.0,33.0,35.0,38.0,45.0,29.0,33.0,46.0,26.0,28.0,30.0,38.0,22.0,31.0,31.0,21.0,25.0,35.0,34.0,22.0,30.0,29.0,23.0,23.0,25.0,29.0,37.0,35.0,30.0,23.0,22.0,23.0,19.0,11.0,24.0,11.0,20.0,12.0,16.0,12.0,4.0,8.0,8.0,4.0,8.0,13.0 P81647,23.0,24.0,23.0,20.0,29.0,18.0,26.0,22.0,32.0,30.0,29.0,31.0,28.0,33.0,39.0,24.0,26.0,30.0,29.0,37.0,23.0,31.0,36.0,34.0,30.0,38.0,50.0,45.0,43.0,42.0,28.0,41.0,35.0,21.0,27.0,41.0,40.0,30.0,22.0,35.0,34.0,26.0,19.0,23.0,29.0,27.0,26.0,26.0,28.0,27.0,20.0,18.0,25.0,24.0,27.0,27.0,35.0,19.0,13.0,20.0,11.0,15.0,14.0,14.0,15.0,14.0,15.0,16.0,19.0,11.0,12.0,7.0,9.0,5.0,8.0,6.0,9.0,4.0,8.0,4.0,1.0,3.0,3.0,6.0,3.0,4.0,2.0,1.0,1.0,2.0,1.0,,,1.0,, P81655,34.0,27.0,43.0,42.0,44.0,56.0,40.0,57.0,50.0,41.0,68.0,68.0,54.0,62.0,62.0,60.0,66.0,57.0,63.0,62.0,37.0,44.0,43.0,50.0,43.0,44.0,43.0,57.0,49.0,39.0,53.0,55.0,57.0,52.0,48.0,59.0,64.0,67.0,56.0,69.0,67.0,50.0,71.0,69.0,56.0,68.0,71.0,67.0,50.0,60.0,59.0,94.0,87.0,78.0,79.0,100.0,93.0,95.0,87.0,92.0,83.0,85.0,75.0,80.0,74.0,65.0,61.0,57.0,54.0,66.0,54.0,61.0,60.0,72.0,55.0,58.0,70.0,77.0,67.0,52.0,55.0,49.0,49.0,34.0,33.0,26.0,25.0,20.0,24.0,13.0,9.0,11.0,11.0,7.0,7.0,10.0 P81664,90.0,97.0,118.0,119.0,103.0,103.0,115.0,105.0,130.0,127.0,124.0,120.0,124.0,120.0,115.0,136.0,129.0,105.0,99.0,89.0,83.0,90.0,93.0,101.0,102.0,114.0,118.0,124.0,124.0,127.0,118.0,132.0,156.0,154.0,140.0,151.0,167.0,152.0,164.0,150.0,146.0,143.0,112.0,119.0,125.0,126.0,113.0,88.0,87.0,109.0,110.0,103.0,96.0,107.0,110.0,105.0,107.0,105.0,96.0,91.0,106.0,113.0,115.0,105.0,106.0,108.0,69.0,75.0,90.0,65.0,68.0,60.0,67.0,62.0,66.0,58.0,48.0,59.0,51.0,43.0,46.0,42.0,32.0,30.0,22.0,27.0,23.0,26.0,17.0,24.0,16.0,14.0,12.0,9.0,7.0,28.0 P81668,15.0,19.0,28.0,17.0,36.0,30.0,39.0,35.0,38.0,33.0,48.0,38.0,51.0,49.0,40.0,39.0,38.0,45.0,33.0,28.0,29.0,32.0,24.0,29.0,30.0,19.0,27.0,28.0,35.0,35.0,44.0,29.0,36.0,39.0,45.0,32.0,39.0,42.0,48.0,42.0,41.0,30.0,37.0,35.0,38.0,31.0,26.0,45.0,23.0,22.0,27.0,39.0,30.0,33.0,40.0,40.0,37.0,52.0,54.0,39.0,47.0,51.0,38.0,40.0,48.0,42.0,42.0,28.0,32.0,36.0,47.0,34.0,36.0,32.0,35.0,36.0,32.0,30.0,30.0,20.0,16.0,20.0,24.0,14.0,12.0,18.0,10.0,9.0,12.0,5.0,5.0,3.0,4.0,7.0,3.0,7.0 P81674,12.0,22.0,22.0,25.0,23.0,18.0,25.0,35.0,32.0,23.0,28.0,24.0,33.0,44.0,24.0,32.0,37.0,29.0,28.0,24.0,24.0,20.0,24.0,18.0,27.0,30.0,17.0,27.0,20.0,14.0,29.0,35.0,35.0,30.0,36.0,33.0,31.0,44.0,29.0,44.0,31.0,46.0,24.0,27.0,31.0,42.0,43.0,34.0,29.0,28.0,42.0,36.0,36.0,43.0,43.0,42.0,61.0,39.0,54.0,58.0,48.0,43.0,51.0,49.0,40.0,41.0,45.0,51.0,42.0,37.0,43.0,39.0,43.0,41.0,29.0,35.0,51.0,45.0,43.0,23.0,30.0,24.0,23.0,18.0,13.0,20.0,13.0,12.0,17.0,7.0,8.0,10.0,6.0,2.0,4.0,13.0 P81681,58.0,53.0,57.0,69.0,60.0,64.0,73.0,68.0,67.0,54.0,79.0,69.0,71.0,76.0,88.0,78.0,68.0,62.0,52.0,69.0,56.0,77.0,51.0,62.0,82.0,77.0,70.0,81.0,80.0,86.0,83.0,78.0,112.0,82.0,102.0,87.0,113.0,105.0,93.0,93.0,83.0,92.0,79.0,93.0,85.0,67.0,74.0,59.0,70.0,76.0,81.0,72.0,76.0,104.0,102.0,93.0,98.0,88.0,100.0,101.0,106.0,95.0,92.0,110.0,79.0,100.0,85.0,67.0,71.0,78.0,83.0,83.0,77.0,70.0,62.0,74.0,78.0,76.0,79.0,66.0,60.0,61.0,39.0,35.0,53.0,47.0,39.0,31.0,25.0,24.0,22.0,13.0,13.0,12.0,5.0,19.0 P81683,45.0,36.0,33.0,45.0,32.0,51.0,51.0,57.0,51.0,64.0,67.0,69.0,73.0,62.0,80.0,83.0,76.0,84.0,71.0,80.0,63.0,63.0,65.0,48.0,62.0,63.0,48.0,40.0,63.0,51.0,33.0,45.0,40.0,42.0,56.0,47.0,58.0,45.0,67.0,59.0,60.0,74.0,59.0,72.0,61.0,59.0,52.0,51.0,40.0,41.0,42.0,42.0,57.0,38.0,39.0,29.0,47.0,20.0,21.0,17.0,40.0,21.0,24.0,21.0,33.0,21.0,24.0,22.0,21.0,17.0,17.0,24.0,24.0,35.0,19.0,8.0,9.0,7.0,14.0,11.0,9.0,4.0,9.0,5.0,4.0,2.0,6.0,2.0,1.0,3.0,5.0,1.0,,1.0,2.0,1.0 P81685,34.0,27.0,39.0,37.0,41.0,32.0,29.0,25.0,20.0,28.0,20.0,19.0,15.0,25.0,22.0,21.0,17.0,16.0,28.0,24.0,21.0,35.0,46.0,44.0,49.0,40.0,54.0,58.0,57.0,49.0,53.0,45.0,46.0,45.0,27.0,34.0,23.0,28.0,24.0,30.0,14.0,28.0,28.0,23.0,28.0,22.0,25.0,14.0,20.0,17.0,24.0,20.0,15.0,18.0,20.0,20.0,23.0,17.0,14.0,14.0,18.0,15.0,11.0,26.0,14.0,13.0,10.0,11.0,11.0,10.0,18.0,3.0,12.0,8.0,4.0,12.0,10.0,6.0,4.0,4.0,7.0,5.0,7.0,3.0,9.0,4.0,6.0,4.0,1.0,4.0,1.0,,1.0,2.0,1.0,1.0 P81686,7.0,13.0,12.0,18.0,15.0,16.0,13.0,13.0,21.0,13.0,17.0,13.0,16.0,12.0,19.0,21.0,12.0,12.0,13.0,6.0,15.0,10.0,14.0,17.0,17.0,7.0,12.0,15.0,10.0,22.0,15.0,19.0,20.0,20.0,21.0,23.0,17.0,18.0,10.0,14.0,10.0,18.0,18.0,20.0,12.0,16.0,13.0,13.0,10.0,17.0,21.0,13.0,14.0,12.0,20.0,17.0,23.0,16.0,6.0,15.0,16.0,12.0,18.0,7.0,13.0,7.0,11.0,7.0,13.0,8.0,8.0,5.0,12.0,7.0,7.0,11.0,11.0,14.0,11.0,10.0,6.0,11.0,5.0,6.0,7.0,2.0,1.0,3.0,2.0,2.0,,,,1.0,,2.0 P81687,5.0,8.0,10.0,6.0,7.0,14.0,13.0,11.0,12.0,10.0,13.0,13.0,11.0,9.0,9.0,7.0,8.0,7.0,6.0,13.0,6.0,6.0,13.0,10.0,10.0,7.0,11.0,14.0,7.0,6.0,6.0,11.0,10.0,9.0,12.0,10.0,12.0,10.0,12.0,14.0,9.0,10.0,5.0,11.0,13.0,8.0,11.0,11.0,11.0,12.0,11.0,16.0,6.0,13.0,21.0,22.0,17.0,15.0,14.0,19.0,19.0,27.0,23.0,17.0,18.0,14.0,16.0,21.0,20.0,15.0,10.0,15.0,27.0,10.0,14.0,13.0,15.0,18.0,23.0,18.0,21.0,13.0,19.0,16.0,9.0,6.0,9.0,7.0,5.0,4.0,6.0,3.0,3.0,1.0,2.0,7.0 P81692,7.0,8.0,8.0,10.0,11.0,10.0,10.0,12.0,6.0,8.0,10.0,10.0,6.0,10.0,4.0,12.0,7.0,2.0,7.0,4.0,11.0,7.0,7.0,8.0,11.0,10.0,7.0,14.0,8.0,12.0,8.0,8.0,11.0,13.0,11.0,9.0,17.0,16.0,13.0,11.0,6.0,11.0,11.0,6.0,10.0,13.0,9.0,7.0,13.0,8.0,9.0,13.0,8.0,11.0,12.0,12.0,11.0,21.0,21.0,15.0,23.0,19.0,14.0,22.0,18.0,9.0,15.0,14.0,11.0,11.0,16.0,13.0,9.0,7.0,12.0,20.0,13.0,13.0,15.0,19.0,17.0,12.0,12.0,7.0,9.0,7.0,15.0,5.0,5.0,3.0,3.0,3.0,,1.0,2.0,1.0 P81694,37.0,38.0,26.0,32.0,27.0,45.0,34.0,42.0,54.0,46.0,32.0,52.0,31.0,35.0,32.0,35.0,44.0,38.0,27.0,46.0,23.0,30.0,33.0,40.0,33.0,28.0,53.0,62.0,53.0,59.0,38.0,61.0,45.0,47.0,34.0,42.0,49.0,55.0,41.0,35.0,36.0,40.0,32.0,24.0,26.0,36.0,35.0,25.0,20.0,28.0,26.0,24.0,27.0,21.0,22.0,37.0,24.0,28.0,23.0,11.0,19.0,24.0,15.0,14.0,9.0,14.0,16.0,11.0,8.0,12.0,14.0,12.0,9.0,9.0,7.0,7.0,4.0,9.0,9.0,9.0,6.0,5.0,6.0,5.0,2.0,5.0,5.0,1.0,1.0,3.0,,1.0,2.0,,1.0,1.0 P81695,26.0,27.0,29.0,40.0,31.0,24.0,21.0,34.0,31.0,35.0,30.0,41.0,44.0,38.0,39.0,50.0,33.0,44.0,35.0,33.0,43.0,30.0,22.0,35.0,22.0,26.0,20.0,34.0,29.0,32.0,27.0,31.0,32.0,35.0,31.0,36.0,29.0,29.0,28.0,32.0,37.0,52.0,37.0,47.0,37.0,41.0,46.0,45.0,38.0,37.0,38.0,47.0,47.0,56.0,53.0,44.0,49.0,45.0,57.0,55.0,45.0,43.0,32.0,56.0,46.0,39.0,34.0,37.0,39.0,43.0,41.0,35.0,30.0,32.0,32.0,34.0,33.0,38.0,44.0,30.0,27.0,35.0,19.0,26.0,21.0,23.0,22.0,22.0,18.0,18.0,12.0,17.0,8.0,8.0,9.0,17.0 P81699,13.0,7.0,13.0,3.0,8.0,13.0,9.0,7.0,13.0,14.0,8.0,13.0,15.0,15.0,15.0,15.0,9.0,11.0,9.0,12.0,10.0,16.0,8.0,6.0,9.0,12.0,10.0,19.0,11.0,16.0,15.0,14.0,17.0,12.0,18.0,12.0,18.0,20.0,17.0,13.0,15.0,6.0,10.0,20.0,14.0,14.0,15.0,12.0,11.0,15.0,19.0,8.0,17.0,14.0,14.0,16.0,18.0,18.0,15.0,18.0,19.0,24.0,12.0,13.0,17.0,18.0,14.0,16.0,17.0,11.0,14.0,10.0,8.0,11.0,8.0,7.0,9.0,6.0,7.0,14.0,12.0,4.0,4.0,2.0,9.0,2.0,5.0,4.0,3.0,5.0,3.0,3.0,4.0,3.0,,2.0 P81701,12.0,9.0,7.0,9.0,12.0,9.0,8.0,20.0,11.0,23.0,14.0,13.0,16.0,20.0,13.0,14.0,18.0,15.0,12.0,19.0,17.0,18.0,22.0,7.0,16.0,11.0,17.0,13.0,15.0,16.0,22.0,16.0,22.0,18.0,18.0,21.0,18.0,18.0,26.0,24.0,27.0,17.0,11.0,20.0,18.0,21.0,15.0,17.0,16.0,19.0,13.0,22.0,23.0,26.0,24.0,13.0,20.0,22.0,21.0,19.0,20.0,28.0,30.0,23.0,19.0,26.0,31.0,26.0,22.0,15.0,14.0,14.0,17.0,11.0,10.0,8.0,10.0,11.0,12.0,8.0,5.0,7.0,10.0,13.0,6.0,10.0,7.0,3.0,6.0,7.0,3.0,4.0,2.0,,3.0,3.0 P81704,64.0,60.0,63.0,69.0,64.0,74.0,77.0,66.0,69.0,81.0,71.0,89.0,62.0,82.0,92.0,90.0,82.0,78.0,81.0,68.0,67.0,81.0,73.0,83.0,62.0,71.0,75.0,67.0,71.0,70.0,80.0,74.0,78.0,84.0,85.0,98.0,79.0,80.0,92.0,74.0,82.0,85.0,71.0,72.0,88.0,75.0,62.0,63.0,56.0,76.0,77.0,62.0,69.0,61.0,66.0,76.0,59.0,78.0,41.0,59.0,62.0,53.0,63.0,54.0,45.0,52.0,43.0,49.0,45.0,42.0,45.0,39.0,37.0,29.0,28.0,37.0,31.0,35.0,37.0,25.0,21.0,21.0,30.0,20.0,12.0,20.0,23.0,16.0,10.0,8.0,8.0,4.0,6.0,6.0,8.0,9.0 P81707,36.0,30.0,40.0,30.0,32.0,33.0,36.0,30.0,38.0,44.0,39.0,36.0,44.0,38.0,44.0,55.0,50.0,31.0,53.0,48.0,35.0,52.0,38.0,47.0,49.0,36.0,43.0,37.0,46.0,52.0,23.0,30.0,32.0,37.0,40.0,36.0,44.0,31.0,46.0,47.0,45.0,37.0,33.0,40.0,30.0,30.0,37.0,33.0,24.0,31.0,40.0,24.0,16.0,35.0,30.0,35.0,28.0,36.0,29.0,29.0,26.0,18.0,19.0,20.0,12.0,19.0,20.0,14.0,23.0,11.0,19.0,10.0,15.0,9.0,14.0,15.0,12.0,11.0,10.0,7.0,6.0,5.0,5.0,1.0,7.0,7.0,3.0,1.0,1.0,3.0,3.0,2.0,1.0,,1.0,1.0 P81709,41.0,34.0,42.0,46.0,47.0,44.0,60.0,42.0,54.0,43.0,64.0,41.0,52.0,58.0,42.0,50.0,51.0,49.0,39.0,53.0,45.0,42.0,30.0,37.0,35.0,41.0,27.0,61.0,48.0,45.0,57.0,52.0,60.0,57.0,54.0,56.0,62.0,64.0,60.0,50.0,54.0,54.0,50.0,51.0,30.0,35.0,34.0,28.0,19.0,30.0,30.0,25.0,26.0,42.0,29.0,41.0,31.0,33.0,26.0,32.0,35.0,28.0,28.0,33.0,33.0,28.0,21.0,18.0,19.0,18.0,16.0,19.0,11.0,6.0,14.0,11.0,15.0,15.0,12.0,11.0,5.0,4.0,5.0,7.0,8.0,4.0,6.0,9.0,3.0,,1.0,2.0,1.0,1.0,,4.0 P81710,28.0,34.0,35.0,46.0,42.0,48.0,32.0,33.0,45.0,46.0,34.0,47.0,53.0,42.0,55.0,59.0,37.0,61.0,55.0,47.0,38.0,53.0,46.0,45.0,39.0,33.0,44.0,42.0,38.0,48.0,44.0,46.0,47.0,49.0,61.0,57.0,50.0,56.0,57.0,56.0,63.0,41.0,58.0,54.0,62.0,46.0,53.0,46.0,51.0,63.0,47.0,73.0,89.0,83.0,65.0,85.0,76.0,80.0,85.0,91.0,86.0,73.0,85.0,80.0,83.0,76.0,80.0,83.0,65.0,65.0,51.0,74.0,62.0,73.0,70.0,71.0,64.0,77.0,78.0,52.0,51.0,61.0,44.0,49.0,40.0,34.0,33.0,28.0,26.0,17.0,10.0,7.0,9.0,9.0,6.0,14.0 P81711,11.0,12.0,10.0,21.0,14.0,14.0,13.0,17.0,18.0,20.0,10.0,17.0,16.0,24.0,16.0,19.0,23.0,17.0,17.0,14.0,14.0,24.0,21.0,15.0,18.0,17.0,19.0,23.0,14.0,13.0,20.0,28.0,23.0,16.0,24.0,19.0,23.0,17.0,21.0,23.0,12.0,17.0,15.0,16.0,15.0,11.0,10.0,16.0,6.0,19.0,7.0,14.0,14.0,24.0,21.0,13.0,31.0,24.0,17.0,25.0,29.0,19.0,20.0,18.0,10.0,12.0,13.0,10.0,18.0,4.0,5.0,10.0,17.0,4.0,7.0,23.0,10.0,8.0,11.0,5.0,6.0,8.0,5.0,10.0,4.0,6.0,1.0,1.0,1.0,3.0,2.0,4.0,1.0,,,2.0 P81714,31.0,17.0,23.0,23.0,22.0,34.0,22.0,23.0,24.0,33.0,34.0,34.0,35.0,38.0,22.0,38.0,41.0,19.0,28.0,22.0,27.0,30.0,26.0,25.0,21.0,21.0,33.0,23.0,32.0,28.0,42.0,39.0,41.0,35.0,38.0,38.0,37.0,36.0,41.0,38.0,53.0,33.0,36.0,30.0,27.0,37.0,21.0,26.0,23.0,27.0,49.0,38.0,39.0,46.0,44.0,30.0,44.0,44.0,50.0,39.0,45.0,48.0,59.0,34.0,29.0,32.0,38.0,44.0,33.0,30.0,27.0,30.0,26.0,19.0,18.0,22.0,26.0,48.0,23.0,19.0,27.0,21.0,18.0,16.0,19.0,17.0,12.0,14.0,17.0,7.0,5.0,8.0,2.0,2.0,3.0,5.0 P81721,7.0,13.0,12.0,19.0,16.0,11.0,19.0,8.0,13.0,15.0,15.0,14.0,17.0,21.0,21.0,32.0,11.0,17.0,12.0,11.0,21.0,22.0,11.0,12.0,15.0,16.0,20.0,13.0,22.0,19.0,11.0,18.0,14.0,23.0,17.0,19.0,18.0,20.0,17.0,17.0,10.0,12.0,17.0,19.0,14.0,9.0,11.0,12.0,16.0,10.0,12.0,17.0,20.0,17.0,10.0,12.0,15.0,18.0,23.0,18.0,18.0,19.0,15.0,15.0,9.0,10.0,9.0,11.0,8.0,11.0,8.0,8.0,6.0,9.0,6.0,12.0,8.0,9.0,6.0,3.0,2.0,3.0,4.0,4.0,2.0,2.0,3.0,5.0,1.0,,,2.0,2.0,1.0,,1.0 P81724,11.0,16.0,14.0,12.0,18.0,12.0,18.0,17.0,24.0,23.0,32.0,24.0,26.0,34.0,27.0,29.0,32.0,30.0,17.0,24.0,29.0,20.0,18.0,21.0,24.0,12.0,22.0,21.0,28.0,13.0,24.0,22.0,17.0,11.0,15.0,14.0,17.0,22.0,28.0,20.0,20.0,26.0,14.0,22.0,23.0,18.0,23.0,17.0,17.0,14.0,12.0,11.0,11.0,20.0,10.0,11.0,9.0,16.0,11.0,7.0,14.0,12.0,8.0,5.0,10.0,7.0,6.0,2.0,12.0,2.0,8.0,7.0,8.0,8.0,5.0,5.0,5.0,6.0,3.0,2.0,1.0,2.0,1.0,1.0,1.0,3.0,2.0,2.0,1.0,,2.0,,,2.0,,2.0 P81726,7.0,6.0,10.0,11.0,6.0,10.0,15.0,15.0,10.0,8.0,12.0,11.0,18.0,14.0,8.0,15.0,17.0,16.0,11.0,8.0,7.0,12.0,11.0,13.0,8.0,11.0,14.0,8.0,9.0,13.0,8.0,9.0,11.0,12.0,14.0,16.0,12.0,13.0,8.0,13.0,11.0,15.0,12.0,6.0,20.0,9.0,8.0,6.0,6.0,10.0,14.0,5.0,8.0,14.0,11.0,18.0,16.0,11.0,12.0,8.0,10.0,6.0,7.0,5.0,4.0,9.0,9.0,8.0,5.0,6.0,3.0,5.0,6.0,8.0,8.0,6.0,1.0,6.0,6.0,4.0,7.0,1.0,2.0,6.0,4.0,1.0,3.0,4.0,3.0,4.0,1.0,,2.0,1.0,,1.0 P81730,42.0,37.0,45.0,44.0,39.0,49.0,43.0,52.0,41.0,53.0,65.0,59.0,58.0,53.0,40.0,48.0,53.0,47.0,47.0,52.0,47.0,40.0,37.0,62.0,53.0,57.0,59.0,71.0,63.0,62.0,57.0,65.0,60.0,63.0,62.0,66.0,63.0,59.0,70.0,64.0,65.0,52.0,47.0,64.0,56.0,64.0,46.0,50.0,42.0,55.0,54.0,50.0,56.0,73.0,54.0,70.0,65.0,45.0,61.0,70.0,56.0,58.0,60.0,50.0,49.0,50.0,56.0,57.0,44.0,41.0,35.0,50.0,39.0,52.0,39.0,41.0,60.0,43.0,41.0,37.0,34.0,34.0,18.0,24.0,18.0,25.0,23.0,21.0,13.0,18.0,11.0,11.0,8.0,2.0,6.0,7.0 P81731,9.0,14.0,10.0,11.0,15.0,16.0,14.0,16.0,22.0,20.0,15.0,26.0,21.0,19.0,32.0,23.0,26.0,28.0,18.0,21.0,23.0,28.0,17.0,17.0,23.0,13.0,11.0,20.0,9.0,17.0,13.0,14.0,22.0,12.0,12.0,20.0,18.0,14.0,20.0,19.0,12.0,17.0,19.0,20.0,19.0,15.0,20.0,11.0,15.0,19.0,12.0,11.0,18.0,13.0,10.0,9.0,6.0,13.0,14.0,9.0,7.0,7.0,12.0,5.0,8.0,9.0,12.0,6.0,17.0,8.0,6.0,10.0,4.0,7.0,5.0,5.0,6.0,4.0,8.0,3.0,4.0,3.0,1.0,4.0,1.0,2.0,3.0,4.0,6.0,3.0,2.0,1.0,2.0,,,2.0 P81732,12.0,24.0,14.0,22.0,22.0,16.0,19.0,21.0,15.0,25.0,27.0,22.0,25.0,30.0,29.0,38.0,25.0,33.0,21.0,24.0,17.0,17.0,28.0,19.0,22.0,17.0,16.0,22.0,17.0,23.0,30.0,35.0,25.0,28.0,33.0,29.0,33.0,27.0,23.0,19.0,30.0,26.0,36.0,33.0,30.0,27.0,29.0,32.0,23.0,37.0,37.0,28.0,42.0,41.0,40.0,35.0,49.0,27.0,39.0,25.0,54.0,50.0,49.0,58.0,42.0,34.0,28.0,25.0,36.0,31.0,28.0,28.0,19.0,24.0,38.0,36.0,21.0,23.0,20.0,19.0,16.0,18.0,15.0,10.0,11.0,8.0,10.0,2.0,7.0,5.0,3.0,5.0,5.0,5.0,1.0,4.0 P81734,86.0,122.0,127.0,112.0,116.0,128.0,131.0,139.0,128.0,173.0,145.0,145.0,139.0,163.0,153.0,149.0,153.0,161.0,136.0,109.0,114.0,113.0,136.0,131.0,118.0,124.0,128.0,154.0,139.0,130.0,178.0,137.0,153.0,150.0,171.0,130.0,151.0,166.0,145.0,153.0,153.0,155.0,137.0,147.0,159.0,130.0,120.0,118.0,85.0,119.0,129.0,120.0,127.0,113.0,117.0,128.0,105.0,129.0,119.0,113.0,100.0,112.0,98.0,90.0,91.0,87.0,76.0,78.0,72.0,72.0,68.0,60.0,65.0,55.0,63.0,54.0,47.0,51.0,48.0,56.0,30.0,38.0,26.0,26.0,17.0,17.0,21.0,10.0,20.0,12.0,12.0,7.0,3.0,7.0,6.0,6.0 P81735,16.0,24.0,18.0,24.0,25.0,21.0,27.0,21.0,35.0,24.0,37.0,21.0,30.0,29.0,27.0,25.0,31.0,31.0,29.0,23.0,20.0,14.0,24.0,13.0,19.0,26.0,25.0,26.0,15.0,22.0,19.0,28.0,21.0,28.0,30.0,26.0,25.0,38.0,46.0,22.0,27.0,18.0,18.0,22.0,14.0,18.0,20.0,15.0,17.0,22.0,20.0,15.0,17.0,18.0,17.0,17.0,22.0,18.0,21.0,22.0,14.0,24.0,14.0,10.0,16.0,11.0,9.0,10.0,7.0,9.0,11.0,10.0,5.0,6.0,13.0,7.0,9.0,6.0,7.0,5.0,2.0,2.0,5.0,3.0,3.0,2.0,3.0,1.0,2.0,3.0,2.0,2.0,,,, P81736,20.0,17.0,26.0,27.0,35.0,27.0,29.0,37.0,41.0,22.0,32.0,40.0,34.0,33.0,33.0,33.0,32.0,38.0,28.0,30.0,29.0,30.0,28.0,26.0,26.0,34.0,21.0,28.0,20.0,22.0,27.0,30.0,25.0,29.0,39.0,21.0,34.0,41.0,39.0,34.0,34.0,34.0,34.0,32.0,41.0,29.0,27.0,21.0,23.0,28.0,20.0,20.0,24.0,25.0,28.0,17.0,14.0,19.0,17.0,17.0,18.0,14.0,18.0,13.0,12.0,11.0,7.0,15.0,19.0,15.0,14.0,10.0,15.0,8.0,7.0,8.0,13.0,5.0,8.0,9.0,9.0,6.0,6.0,3.0,5.0,4.0,6.0,4.0,4.0,2.0,3.0,1.0,,,,2.0 P81740,55.0,39.0,42.0,43.0,40.0,50.0,58.0,50.0,65.0,66.0,55.0,53.0,56.0,58.0,63.0,64.0,49.0,62.0,55.0,39.0,50.0,54.0,46.0,52.0,51.0,56.0,54.0,55.0,64.0,55.0,69.0,67.0,79.0,75.0,85.0,80.0,67.0,82.0,89.0,79.0,59.0,56.0,73.0,66.0,68.0,56.0,63.0,58.0,62.0,68.0,52.0,69.0,75.0,75.0,79.0,75.0,83.0,92.0,82.0,86.0,93.0,94.0,68.0,75.0,64.0,69.0,62.0,61.0,48.0,69.0,55.0,73.0,42.0,38.0,48.0,45.0,49.0,37.0,57.0,33.0,41.0,33.0,23.0,22.0,18.0,30.0,20.0,20.0,10.0,10.0,12.0,13.0,9.0,8.0,4.0,19.0 P81741,12.0,8.0,13.0,5.0,12.0,19.0,7.0,11.0,19.0,22.0,19.0,17.0,13.0,14.0,16.0,8.0,19.0,12.0,9.0,10.0,15.0,10.0,11.0,15.0,13.0,11.0,11.0,16.0,23.0,10.0,16.0,25.0,21.0,24.0,22.0,14.0,27.0,20.0,16.0,19.0,18.0,16.0,19.0,15.0,13.0,15.0,9.0,11.0,17.0,18.0,12.0,21.0,11.0,19.0,7.0,23.0,21.0,17.0,11.0,16.0,8.0,14.0,15.0,10.0,15.0,16.0,6.0,12.0,12.0,8.0,5.0,12.0,7.0,12.0,6.0,4.0,10.0,9.0,6.0,4.0,6.0,3.0,4.0,5.0,5.0,6.0,5.0,4.0,2.0,4.0,,1.0,1.0,,, P81742,15.0,7.0,7.0,6.0,9.0,11.0,9.0,6.0,12.0,10.0,10.0,10.0,13.0,8.0,12.0,7.0,10.0,11.0,10.0,11.0,9.0,15.0,11.0,14.0,12.0,13.0,10.0,10.0,14.0,15.0,19.0,10.0,14.0,12.0,16.0,8.0,15.0,13.0,11.0,11.0,7.0,12.0,20.0,16.0,16.0,13.0,9.0,10.0,5.0,14.0,14.0,11.0,17.0,17.0,24.0,10.0,22.0,26.0,24.0,24.0,27.0,20.0,21.0,25.0,20.0,24.0,28.0,21.0,15.0,24.0,20.0,17.0,13.0,17.0,18.0,19.0,27.0,27.0,19.0,19.0,9.0,16.0,16.0,10.0,8.0,5.0,6.0,10.0,6.0,3.0,2.0,4.0,6.0,4.0,1.0,6.0 P81748,40.0,35.0,33.0,50.0,30.0,50.0,46.0,47.0,41.0,49.0,42.0,33.0,39.0,32.0,39.0,41.0,34.0,39.0,46.0,36.0,34.0,30.0,37.0,47.0,45.0,52.0,49.0,74.0,50.0,59.0,55.0,69.0,80.0,67.0,72.0,69.0,50.0,60.0,50.0,64.0,58.0,65.0,37.0,44.0,49.0,31.0,34.0,22.0,43.0,32.0,30.0,48.0,47.0,59.0,43.0,45.0,71.0,57.0,61.0,47.0,56.0,54.0,60.0,48.0,48.0,51.0,50.0,37.0,38.0,36.0,34.0,32.0,32.0,30.0,26.0,28.0,28.0,33.0,31.0,23.0,26.0,24.0,17.0,27.0,12.0,18.0,15.0,11.0,9.0,9.0,4.0,4.0,3.0,5.0,7.0,12.0 P81755,25.0,58.0,51.0,61.0,49.0,46.0,48.0,53.0,55.0,55.0,39.0,44.0,57.0,54.0,50.0,52.0,50.0,52.0,44.0,34.0,36.0,45.0,35.0,42.0,48.0,50.0,62.0,60.0,59.0,46.0,52.0,64.0,63.0,62.0,63.0,65.0,61.0,54.0,54.0,41.0,62.0,53.0,36.0,56.0,42.0,44.0,53.0,43.0,53.0,44.0,52.0,48.0,62.0,56.0,58.0,57.0,70.0,64.0,55.0,85.0,58.0,57.0,66.0,56.0,51.0,55.0,48.0,52.0,56.0,49.0,39.0,42.0,51.0,46.0,38.0,36.0,47.0,37.0,53.0,36.0,41.0,40.0,30.0,29.0,28.0,26.0,18.0,19.0,18.0,11.0,7.0,9.0,7.0,4.0,5.0,11.0 P81757,11.0,13.0,12.0,15.0,15.0,16.0,16.0,11.0,10.0,17.0,12.0,11.0,11.0,13.0,13.0,16.0,22.0,21.0,17.0,20.0,15.0,23.0,19.0,15.0,28.0,8.0,17.0,21.0,19.0,21.0,17.0,15.0,12.0,12.0,15.0,18.0,24.0,19.0,19.0,22.0,19.0,18.0,18.0,29.0,21.0,17.0,21.0,15.0,15.0,26.0,20.0,30.0,22.0,39.0,35.0,32.0,35.0,27.0,30.0,27.0,33.0,37.0,37.0,27.0,28.0,35.0,25.0,17.0,19.0,22.0,21.0,27.0,19.0,14.0,14.0,16.0,18.0,18.0,27.0,10.0,23.0,11.0,9.0,10.0,3.0,9.0,4.0,6.0,5.0,5.0,3.0,5.0,4.0,1.0,,4.0 P81770,37.0,41.0,29.0,39.0,53.0,41.0,36.0,42.0,41.0,34.0,57.0,75.0,42.0,50.0,35.0,42.0,41.0,49.0,41.0,52.0,51.0,58.0,53.0,67.0,92.0,81.0,95.0,86.0,103.0,100.0,79.0,75.0,91.0,73.0,74.0,74.0,66.0,54.0,70.0,49.0,42.0,48.0,51.0,53.0,54.0,37.0,38.0,38.0,40.0,26.0,31.0,34.0,41.0,33.0,21.0,35.0,23.0,32.0,27.0,33.0,25.0,12.0,27.0,31.0,24.0,23.0,23.0,19.0,14.0,15.0,13.0,16.0,15.0,9.0,10.0,5.0,12.0,10.0,9.0,7.0,5.0,5.0,1.0,7.0,7.0,6.0,5.0,4.0,1.0,5.0,2.0,,1.0,,,3.0 P81771,44.0,49.0,52.0,62.0,46.0,52.0,56.0,59.0,58.0,66.0,71.0,56.0,77.0,72.0,74.0,81.0,59.0,83.0,79.0,72.0,63.0,54.0,55.0,72.0,72.0,73.0,63.0,67.0,49.0,60.0,62.0,62.0,57.0,64.0,72.0,57.0,70.0,66.0,62.0,70.0,69.0,57.0,58.0,67.0,83.0,53.0,60.0,58.0,55.0,54.0,52.0,64.0,69.0,62.0,70.0,53.0,53.0,46.0,53.0,51.0,40.0,38.0,44.0,50.0,62.0,38.0,47.0,43.0,48.0,35.0,41.0,31.0,46.0,30.0,37.0,37.0,31.0,30.0,26.0,19.0,19.0,24.0,14.0,11.0,8.0,13.0,15.0,12.0,7.0,4.0,10.0,1.0,4.0,4.0,3.0,2.0 P81780,51.0,40.0,40.0,52.0,43.0,44.0,48.0,49.0,48.0,44.0,42.0,45.0,44.0,42.0,44.0,52.0,44.0,40.0,38.0,38.0,38.0,36.0,53.0,53.0,41.0,57.0,46.0,55.0,47.0,52.0,44.0,56.0,52.0,34.0,44.0,63.0,40.0,52.0,50.0,37.0,48.0,44.0,41.0,41.0,34.0,31.0,36.0,34.0,45.0,29.0,32.0,29.0,24.0,28.0,32.0,17.0,32.0,28.0,15.0,17.0,16.0,16.0,11.0,14.0,15.0,13.0,12.0,12.0,16.0,13.0,14.0,10.0,15.0,7.0,11.0,9.0,6.0,7.0,8.0,7.0,6.0,7.0,4.0,3.0,7.0,1.0,4.0,1.0,4.0,,2.0,,1.0,,3.0,2.0 Y00347,21.0,21.0,31.0,22.0,19.0,30.0,25.0,24.0,35.0,28.0,33.0,39.0,36.0,28.0,27.0,36.0,32.0,26.0,32.0,27.0,38.0,30.0,30.0,25.0,16.0,38.0,24.0,25.0,32.0,31.0,36.0,41.0,39.0,33.0,38.0,34.0,34.0,57.0,39.0,33.0,34.0,29.0,25.0,33.0,28.0,35.0,27.0,30.0,26.0,41.0,29.0,31.0,42.0,38.0,48.0,42.0,31.0,46.0,37.0,31.0,34.0,45.0,42.0,43.0,25.0,27.0,31.0,27.0,39.0,29.0,26.0,27.0,19.0,23.0,31.0,27.0,28.0,31.0,32.0,25.0,14.0,21.0,15.0,18.0,20.0,13.0,13.0,14.0,13.0,6.0,8.0,8.0,,6.0,3.0,6.0 Y01008,209.0,249.0,270.0,259.0,275.0,296.0,290.0,280.0,303.0,343.0,338.0,336.0,327.0,363.0,327.0,323.0,342.0,283.0,308.0,266.0,259.0,258.0,234.0,285.0,283.0,309.0,285.0,296.0,322.0,292.0,303.0,332.0,347.0,350.0,321.0,369.0,360.0,381.0,335.0,340.0,383.0,374.0,350.0,311.0,333.0,321.0,318.0,272.0,285.0,295.0,297.0,303.0,331.0,352.0,352.0,349.0,404.0,385.0,399.0,352.0,402.0,345.0,406.0,367.0,357.0,384.0,370.0,352.0,317.0,291.0,293.0,320.0,286.0,272.0,266.0,305.0,276.0,327.0,311.0,260.0,249.0,239.0,183.0,174.0,163.0,154.0,141.0,128.0,109.0,103.0,77.0,88.0,50.0,49.0,39.0,110.0 Y02466,64.0,45.0,76.0,66.0,90.0,94.0,99.0,107.0,119.0,121.0,106.0,117.0,114.0,105.0,99.0,93.0,75.0,75.0,44.0,50.0,48.0,43.0,48.0,57.0,71.0,66.0,70.0,80.0,72.0,84.0,96.0,103.0,105.0,105.0,106.0,119.0,128.0,135.0,143.0,162.0,144.0,141.0,164.0,123.0,126.0,118.0,108.0,91.0,75.0,82.0,68.0,98.0,60.0,64.0,67.0,55.0,62.0,51.0,45.0,47.0,53.0,49.0,50.0,44.0,37.0,26.0,31.0,24.0,23.0,32.0,24.0,30.0,21.0,21.0,22.0,23.0,29.0,23.0,16.0,14.0,12.0,17.0,8.0,11.0,13.0,9.0,8.0,13.0,9.0,10.0,2.0,5.0,5.0,3.0,3.0,15.0 Y02605,32.0,28.0,21.0,23.0,25.0,28.0,29.0,34.0,27.0,28.0,30.0,26.0,29.0,34.0,32.0,37.0,39.0,34.0,23.0,25.0,27.0,20.0,29.0,24.0,28.0,26.0,21.0,23.0,21.0,35.0,21.0,31.0,34.0,37.0,38.0,30.0,40.0,30.0,36.0,33.0,26.0,33.0,23.0,28.0,33.0,18.0,21.0,18.0,16.0,19.0,14.0,22.0,19.0,19.0,22.0,24.0,18.0,18.0,21.0,21.0,14.0,14.0,15.0,19.0,17.0,22.0,6.0,22.0,21.0,8.0,8.0,9.0,7.0,13.0,12.0,11.0,10.0,12.0,10.0,7.0,7.0,4.0,8.0,6.0,7.0,5.0,5.0,1.0,5.0,,4.0,4.0,1.0,4.0,3.0,3.0 Y02606,26.0,37.0,42.0,51.0,45.0,53.0,60.0,52.0,48.0,51.0,48.0,50.0,56.0,61.0,44.0,46.0,44.0,52.0,32.0,24.0,40.0,28.0,36.0,29.0,48.0,34.0,39.0,40.0,45.0,43.0,44.0,59.0,60.0,48.0,62.0,71.0,55.0,57.0,51.0,50.0,48.0,44.0,55.0,55.0,38.0,44.0,31.0,41.0,39.0,27.0,30.0,36.0,37.0,33.0,35.0,30.0,31.0,24.0,24.0,25.0,29.0,27.0,29.0,26.0,30.0,20.0,23.0,17.0,19.0,20.0,16.0,17.0,16.0,14.0,12.0,12.0,15.0,7.0,5.0,7.0,4.0,6.0,7.0,5.0,5.0,2.0,2.0,1.0,,4.0,1.0,3.0,1.0,,,2.0 Y02657,37.0,46.0,49.0,47.0,70.0,64.0,52.0,75.0,66.0,65.0,75.0,43.0,95.0,68.0,67.0,57.0,62.0,65.0,66.0,48.0,45.0,54.0,53.0,51.0,40.0,53.0,63.0,55.0,53.0,62.0,56.0,83.0,63.0,88.0,70.0,72.0,73.0,71.0,77.0,67.0,73.0,62.0,52.0,48.0,65.0,52.0,64.0,42.0,49.0,48.0,32.0,50.0,41.0,55.0,40.0,55.0,51.0,52.0,40.0,45.0,37.0,47.0,49.0,37.0,37.0,40.0,42.0,34.0,33.0,29.0,34.0,30.0,35.0,21.0,18.0,25.0,42.0,27.0,32.0,22.0,17.0,18.0,12.0,14.0,11.0,8.0,10.0,5.0,6.0,5.0,7.0,6.0,8.0,10.0,4.0,6.0 Y05788,,1.0,3.0,3.0,4.0,4.0,2.0,2.0,4.0,6.0,1.0,2.0,1.0,3.0,3.0,,3.0,2.0,1.0,4.0,3.0,2.0,2.0,,1.0,,4.0,3.0,3.0,1.0,7.0,1.0,3.0,4.0,1.0,5.0,2.0,9.0,3.0,1.0,4.0,2.0,2.0,3.0,4.0,1.0,1.0,3.0,1.0,2.0,1.0,2.0,4.0,,1.0,1.0,,2.0,1.0,1.0,3.0,,3.0,,1.0,,,1.0,,,,1.0,1.0,,,,,,,,1.0,,,,,,,,,,,,,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 C85001,18.0,15.0,14.0,23.0,19.0,29.0,23.0,32.0,21.0,32.0,24.0,33.0,24.0,20.0,22.0,29.0,21.0,21.0,23.0,26.0,19.0,23.0,23.0,30.0,23.0,27.0,21.0,35.0,29.0,32.0,28.0,30.0,37.0,34.0,33.0,37.0,34.0,36.0,22.0,20.0,32.0,23.0,26.0,37.0,31.0,25.0,23.0,26.0,19.0,31.0,20.0,21.0,31.0,30.0,27.0,39.0,35.0,28.0,29.0,35.0,37.0,31.0,35.0,22.0,16.0,25.0,26.0,19.0,29.0,19.0,18.0,18.0,23.0,19.0,20.0,24.0,16.0,18.0,16.0,17.0,11.0,13.0,13.0,13.0,11.0,3.0,4.0,7.0,10.0,5.0,12.0,2.0,4.0,3.0,5.0,6.0 C85003,55.0,68.0,66.0,83.0,71.0,83.0,86.0,64.0,89.0,98.0,75.0,86.0,100.0,81.0,93.0,84.0,91.0,70.0,65.0,57.0,81.0,66.0,61.0,66.0,61.0,62.0,91.0,82.0,84.0,82.0,106.0,109.0,111.0,119.0,102.0,103.0,99.0,125.0,124.0,95.0,92.0,73.0,78.0,77.0,76.0,75.0,71.0,74.0,62.0,81.0,57.0,89.0,77.0,89.0,85.0,85.0,94.0,72.0,96.0,73.0,95.0,74.0,86.0,78.0,70.0,78.0,64.0,62.0,76.0,58.0,52.0,53.0,45.0,49.0,58.0,44.0,56.0,60.0,74.0,48.0,58.0,49.0,39.0,28.0,35.0,27.0,25.0,26.0,22.0,25.0,13.0,10.0,11.0,8.0,7.0,12.0 C85004,41.0,54.0,54.0,66.0,68.0,76.0,83.0,79.0,101.0,76.0,91.0,96.0,109.0,103.0,91.0,95.0,108.0,93.0,78.0,70.0,63.0,62.0,59.0,72.0,69.0,75.0,61.0,70.0,83.0,70.0,59.0,73.0,79.0,98.0,83.0,102.0,94.0,92.0,101.0,112.0,83.0,98.0,97.0,98.0,108.0,129.0,120.0,82.0,94.0,99.0,110.0,119.0,158.0,114.0,129.0,139.0,119.0,143.0,141.0,141.0,150.0,165.0,139.0,125.0,113.0,110.0,109.0,119.0,88.0,100.0,106.0,116.0,100.0,101.0,90.0,101.0,103.0,109.0,100.0,84.0,97.0,60.0,56.0,44.0,55.0,44.0,50.0,44.0,28.0,22.0,23.0,18.0,11.0,13.0,15.0,19.0 C85005,41.0,31.0,38.0,26.0,33.0,30.0,37.0,41.0,38.0,39.0,40.0,34.0,51.0,38.0,54.0,44.0,46.0,38.0,39.0,43.0,39.0,32.0,43.0,38.0,29.0,34.0,42.0,37.0,44.0,46.0,62.0,52.0,48.0,55.0,61.0,49.0,48.0,66.0,51.0,42.0,42.0,44.0,43.0,45.0,52.0,40.0,37.0,40.0,37.0,39.0,38.0,34.0,45.0,61.0,50.0,53.0,52.0,52.0,53.0,64.0,39.0,64.0,53.0,51.0,32.0,55.0,45.0,39.0,52.0,35.0,41.0,45.0,35.0,36.0,33.0,39.0,49.0,31.0,54.0,33.0,34.0,34.0,26.0,27.0,28.0,17.0,18.0,15.0,13.0,13.0,7.0,4.0,5.0,2.0,4.0,8.0 C85006,15.0,27.0,23.0,30.0,15.0,24.0,27.0,27.0,19.0,26.0,31.0,17.0,29.0,18.0,29.0,24.0,33.0,25.0,30.0,26.0,20.0,24.0,24.0,29.0,28.0,31.0,23.0,26.0,32.0,30.0,36.0,33.0,44.0,42.0,30.0,38.0,39.0,39.0,37.0,32.0,33.0,35.0,33.0,24.0,39.0,32.0,27.0,18.0,31.0,31.0,25.0,28.0,41.0,38.0,48.0,34.0,29.0,40.0,51.0,38.0,45.0,35.0,43.0,27.0,38.0,46.0,20.0,38.0,35.0,32.0,32.0,45.0,27.0,28.0,27.0,34.0,42.0,41.0,32.0,24.0,28.0,13.0,21.0,14.0,16.0,18.0,17.0,11.0,9.0,7.0,10.0,10.0,4.0,5.0,5.0,9.0 C85007,32.0,49.0,41.0,49.0,45.0,40.0,35.0,59.0,63.0,48.0,63.0,74.0,62.0,61.0,52.0,75.0,55.0,54.0,49.0,39.0,44.0,56.0,57.0,54.0,47.0,48.0,56.0,65.0,63.0,78.0,73.0,54.0,92.0,80.0,67.0,79.0,66.0,63.0,63.0,62.0,72.0,60.0,78.0,66.0,77.0,61.0,55.0,40.0,57.0,66.0,63.0,63.0,72.0,77.0,85.0,73.0,88.0,85.0,93.0,88.0,72.0,78.0,78.0,75.0,74.0,68.0,74.0,69.0,68.0,65.0,51.0,61.0,52.0,57.0,40.0,58.0,58.0,45.0,50.0,30.0,61.0,38.0,44.0,31.0,37.0,24.0,25.0,23.0,23.0,24.0,11.0,16.0,12.0,8.0,6.0,14.0 C85008,33.0,49.0,42.0,60.0,42.0,46.0,60.0,71.0,51.0,61.0,69.0,64.0,85.0,81.0,68.0,81.0,74.0,81.0,60.0,61.0,61.0,63.0,48.0,47.0,56.0,57.0,60.0,51.0,65.0,59.0,72.0,73.0,75.0,67.0,79.0,87.0,73.0,83.0,86.0,80.0,94.0,75.0,88.0,83.0,64.0,88.0,82.0,75.0,60.0,80.0,72.0,111.0,75.0,121.0,98.0,101.0,108.0,109.0,85.0,101.0,111.0,102.0,94.0,103.0,99.0,105.0,101.0,95.0,98.0,84.0,84.0,77.0,67.0,81.0,70.0,71.0,73.0,63.0,78.0,60.0,64.0,48.0,49.0,40.0,33.0,46.0,29.0,26.0,30.0,21.0,15.0,12.0,13.0,8.0,4.0,20.0 C85009,29.0,37.0,54.0,37.0,27.0,36.0,38.0,41.0,49.0,49.0,46.0,34.0,45.0,58.0,41.0,55.0,43.0,49.0,44.0,39.0,37.0,36.0,35.0,36.0,49.0,37.0,57.0,51.0,56.0,59.0,68.0,66.0,68.0,72.0,48.0,62.0,51.0,53.0,74.0,64.0,61.0,60.0,46.0,42.0,52.0,50.0,50.0,41.0,29.0,34.0,40.0,41.0,32.0,40.0,46.0,48.0,48.0,40.0,54.0,30.0,34.0,27.0,30.0,39.0,28.0,20.0,25.0,22.0,23.0,26.0,20.0,20.0,12.0,15.0,13.0,20.0,18.0,17.0,17.0,20.0,13.0,9.0,8.0,14.0,10.0,7.0,5.0,6.0,9.0,7.0,4.0,4.0,5.0,1.0,4.0,8.0 C85010,63.0,100.0,79.0,58.0,91.0,72.0,75.0,74.0,91.0,98.0,82.0,95.0,90.0,106.0,124.0,96.0,98.0,103.0,101.0,72.0,75.0,64.0,68.0,72.0,68.0,87.0,88.0,98.0,98.0,96.0,79.0,115.0,113.0,103.0,144.0,113.0,110.0,107.0,116.0,101.0,106.0,125.0,101.0,115.0,122.0,112.0,99.0,90.0,90.0,99.0,109.0,100.0,107.0,123.0,145.0,134.0,137.0,129.0,129.0,135.0,135.0,127.0,116.0,108.0,102.0,101.0,106.0,118.0,120.0,101.0,104.0,86.0,84.0,97.0,104.0,103.0,93.0,98.0,92.0,86.0,86.0,66.0,62.0,45.0,40.0,42.0,40.0,31.0,31.0,31.0,23.0,19.0,13.0,17.0,20.0,21.0 C85013,49.0,59.0,47.0,70.0,65.0,59.0,64.0,78.0,78.0,80.0,68.0,63.0,73.0,68.0,53.0,49.0,71.0,58.0,78.0,63.0,62.0,54.0,46.0,57.0,61.0,70.0,70.0,63.0,80.0,91.0,81.0,94.0,82.0,108.0,103.0,84.0,91.0,87.0,88.0,96.0,99.0,79.0,63.0,65.0,74.0,88.0,64.0,55.0,67.0,54.0,60.0,67.0,85.0,74.0,78.0,78.0,89.0,78.0,61.0,71.0,63.0,55.0,67.0,61.0,72.0,55.0,47.0,54.0,51.0,49.0,52.0,48.0,49.0,44.0,40.0,43.0,37.0,47.0,46.0,44.0,37.0,34.0,36.0,29.0,27.0,32.0,17.0,26.0,22.0,14.0,8.0,9.0,17.0,6.0,4.0,11.0 C85014,39.0,48.0,61.0,60.0,55.0,59.0,57.0,53.0,52.0,58.0,58.0,52.0,66.0,70.0,61.0,53.0,49.0,48.0,54.0,37.0,41.0,50.0,54.0,45.0,38.0,58.0,64.0,55.0,66.0,56.0,63.0,75.0,82.0,74.0,63.0,79.0,68.0,77.0,65.0,55.0,69.0,78.0,69.0,60.0,60.0,57.0,73.0,46.0,60.0,46.0,45.0,52.0,52.0,75.0,63.0,52.0,55.0,60.0,66.0,68.0,69.0,72.0,67.0,61.0,76.0,61.0,79.0,77.0,61.0,66.0,47.0,66.0,48.0,52.0,36.0,52.0,43.0,40.0,42.0,19.0,52.0,27.0,30.0,23.0,24.0,19.0,24.0,27.0,21.0,8.0,9.0,12.0,6.0,8.0,4.0,10.0 C85016,35.0,38.0,38.0,54.0,42.0,54.0,59.0,39.0,54.0,67.0,65.0,68.0,81.0,77.0,69.0,85.0,62.0,74.0,56.0,61.0,49.0,46.0,59.0,52.0,52.0,44.0,53.0,64.0,55.0,65.0,62.0,67.0,53.0,69.0,76.0,63.0,75.0,52.0,84.0,61.0,81.0,79.0,76.0,79.0,89.0,65.0,75.0,63.0,64.0,50.0,69.0,70.0,80.0,82.0,75.0,84.0,91.0,83.0,76.0,74.0,76.0,79.0,72.0,65.0,67.0,82.0,66.0,84.0,79.0,66.0,57.0,70.0,73.0,55.0,67.0,55.0,56.0,72.0,61.0,48.0,52.0,50.0,23.0,37.0,26.0,24.0,12.0,27.0,19.0,19.0,15.0,11.0,10.0,10.0,5.0,14.0 C85017,38.0,55.0,46.0,55.0,58.0,70.0,58.0,60.0,63.0,64.0,62.0,53.0,67.0,62.0,54.0,58.0,68.0,57.0,55.0,66.0,53.0,61.0,66.0,51.0,80.0,74.0,93.0,88.0,93.0,98.0,110.0,89.0,79.0,98.0,117.0,93.0,95.0,79.0,79.0,78.0,96.0,91.0,75.0,63.0,53.0,53.0,73.0,62.0,47.0,56.0,71.0,59.0,80.0,88.0,77.0,71.0,83.0,76.0,90.0,70.0,83.0,71.0,85.0,74.0,55.0,53.0,63.0,64.0,58.0,51.0,56.0,57.0,64.0,50.0,63.0,46.0,36.0,62.0,56.0,44.0,36.0,46.0,37.0,22.0,23.0,35.0,24.0,17.0,18.0,13.0,9.0,14.0,9.0,6.0,8.0,11.0 C85018,38.0,40.0,42.0,51.0,47.0,53.0,42.0,47.0,47.0,60.0,48.0,58.0,51.0,56.0,53.0,63.0,38.0,44.0,41.0,32.0,43.0,32.0,26.0,32.0,48.0,43.0,51.0,44.0,55.0,52.0,47.0,62.0,60.0,68.0,64.0,45.0,48.0,60.0,42.0,51.0,44.0,56.0,45.0,46.0,46.0,54.0,44.0,39.0,27.0,43.0,36.0,41.0,39.0,53.0,54.0,47.0,44.0,41.0,56.0,51.0,32.0,55.0,47.0,55.0,50.0,43.0,44.0,40.0,34.0,37.0,45.0,49.0,31.0,32.0,31.0,35.0,34.0,31.0,32.0,24.0,22.0,22.0,18.0,15.0,18.0,18.0,14.0,10.0,10.0,5.0,8.0,6.0,9.0,7.0,5.0,4.0 C85019,44.0,46.0,41.0,60.0,56.0,53.0,38.0,53.0,50.0,59.0,47.0,47.0,62.0,59.0,54.0,47.0,73.0,46.0,48.0,39.0,43.0,43.0,53.0,49.0,54.0,60.0,66.0,77.0,80.0,72.0,79.0,74.0,81.0,79.0,71.0,85.0,84.0,73.0,57.0,75.0,70.0,69.0,67.0,74.0,66.0,64.0,47.0,53.0,58.0,65.0,75.0,59.0,71.0,65.0,108.0,69.0,67.0,83.0,81.0,93.0,84.0,60.0,86.0,77.0,72.0,67.0,63.0,51.0,55.0,54.0,41.0,78.0,61.0,51.0,70.0,57.0,54.0,51.0,51.0,51.0,50.0,35.0,25.0,28.0,27.0,30.0,23.0,25.0,12.0,11.0,10.0,10.0,8.0,6.0,8.0,10.0 C85020,45.0,43.0,50.0,49.0,45.0,57.0,49.0,51.0,61.0,61.0,62.0,51.0,70.0,63.0,80.0,59.0,65.0,65.0,64.0,40.0,54.0,62.0,51.0,45.0,56.0,36.0,61.0,69.0,67.0,85.0,83.0,79.0,83.0,83.0,80.0,84.0,86.0,79.0,74.0,89.0,91.0,71.0,86.0,60.0,92.0,76.0,66.0,85.0,67.0,70.0,74.0,85.0,87.0,100.0,97.0,71.0,98.0,95.0,100.0,100.0,88.0,97.0,104.0,88.0,88.0,80.0,78.0,86.0,98.0,68.0,58.0,67.0,77.0,71.0,73.0,61.0,91.0,71.0,72.0,55.0,66.0,47.0,50.0,44.0,41.0,32.0,24.0,29.0,14.0,21.0,13.0,19.0,11.0,5.0,6.0,17.0 C85022,51.0,77.0,59.0,63.0,70.0,75.0,80.0,70.0,75.0,76.0,86.0,68.0,71.0,78.0,69.0,69.0,67.0,75.0,63.0,62.0,72.0,73.0,53.0,56.0,73.0,75.0,81.0,100.0,95.0,93.0,83.0,100.0,101.0,97.0,119.0,104.0,100.0,93.0,94.0,96.0,91.0,80.0,77.0,70.0,68.0,85.0,62.0,54.0,58.0,73.0,78.0,72.0,89.0,103.0,90.0,121.0,107.0,100.0,92.0,72.0,100.0,99.0,83.0,86.0,68.0,83.0,75.0,69.0,76.0,83.0,65.0,56.0,47.0,61.0,35.0,54.0,57.0,68.0,75.0,52.0,44.0,38.0,45.0,25.0,30.0,25.0,32.0,20.0,23.0,14.0,9.0,14.0,9.0,6.0,7.0,12.0 C85023,45.0,53.0,69.0,72.0,47.0,54.0,56.0,66.0,58.0,67.0,70.0,48.0,58.0,63.0,59.0,64.0,67.0,72.0,65.0,75.0,70.0,69.0,47.0,74.0,66.0,54.0,54.0,88.0,76.0,108.0,80.0,63.0,65.0,108.0,83.0,75.0,69.0,92.0,84.0,67.0,73.0,75.0,68.0,59.0,59.0,71.0,53.0,55.0,61.0,55.0,57.0,50.0,78.0,76.0,91.0,68.0,85.0,95.0,89.0,92.0,69.0,87.0,79.0,82.0,72.0,72.0,72.0,62.0,65.0,79.0,53.0,62.0,43.0,42.0,54.0,58.0,50.0,47.0,68.0,53.0,41.0,43.0,36.0,39.0,26.0,26.0,15.0,14.0,12.0,16.0,14.0,13.0,14.0,7.0,6.0,13.0 C85024,28.0,25.0,27.0,32.0,15.0,39.0,35.0,35.0,28.0,31.0,31.0,26.0,25.0,35.0,29.0,26.0,41.0,27.0,31.0,28.0,33.0,31.0,21.0,25.0,34.0,36.0,30.0,31.0,34.0,42.0,37.0,46.0,45.0,51.0,40.0,39.0,30.0,50.0,43.0,42.0,47.0,42.0,43.0,30.0,45.0,28.0,47.0,22.0,30.0,35.0,35.0,32.0,33.0,44.0,43.0,54.0,60.0,40.0,61.0,36.0,64.0,47.0,48.0,43.0,53.0,42.0,44.0,41.0,37.0,46.0,33.0,45.0,36.0,37.0,47.0,43.0,31.0,33.0,30.0,30.0,37.0,23.0,23.0,23.0,21.0,18.0,12.0,19.0,14.0,15.0,8.0,3.0,4.0,8.0,4.0,11.0 C85028,10.0,17.0,16.0,21.0,25.0,13.0,21.0,20.0,20.0,9.0,22.0,17.0,31.0,17.0,22.0,23.0,20.0,27.0,15.0,20.0,19.0,19.0,23.0,19.0,17.0,17.0,25.0,18.0,25.0,23.0,19.0,24.0,16.0,20.0,20.0,17.0,28.0,36.0,21.0,16.0,17.0,21.0,22.0,18.0,16.0,27.0,17.0,12.0,17.0,17.0,19.0,20.0,20.0,30.0,40.0,27.0,25.0,26.0,27.0,38.0,29.0,29.0,27.0,19.0,24.0,23.0,24.0,18.0,27.0,21.0,17.0,18.0,20.0,11.0,11.0,14.0,9.0,21.0,14.0,11.0,15.0,10.0,6.0,7.0,11.0,8.0,11.0,1.0,10.0,3.0,6.0,2.0,2.0,,,1.0 C85030,43.0,43.0,53.0,37.0,51.0,55.0,52.0,59.0,75.0,62.0,62.0,54.0,45.0,52.0,58.0,51.0,57.0,49.0,40.0,49.0,34.0,37.0,38.0,50.0,49.0,66.0,56.0,86.0,77.0,71.0,80.0,72.0,85.0,88.0,82.0,74.0,67.0,84.0,71.0,66.0,73.0,52.0,56.0,54.0,65.0,69.0,60.0,50.0,46.0,63.0,61.0,53.0,67.0,68.0,77.0,62.0,85.0,79.0,72.0,82.0,78.0,72.0,76.0,60.0,71.0,74.0,64.0,62.0,56.0,39.0,51.0,55.0,52.0,44.0,42.0,41.0,43.0,48.0,41.0,29.0,37.0,26.0,21.0,22.0,23.0,18.0,14.0,15.0,15.0,12.0,5.0,6.0,5.0,4.0,6.0,12.0 C85033,51.0,50.0,50.0,44.0,70.0,68.0,70.0,72.0,74.0,69.0,78.0,57.0,68.0,66.0,63.0,66.0,58.0,55.0,55.0,46.0,46.0,56.0,41.0,49.0,53.0,68.0,64.0,84.0,82.0,116.0,100.0,79.0,96.0,83.0,89.0,80.0,101.0,106.0,92.0,103.0,89.0,96.0,86.0,85.0,69.0,85.0,72.0,75.0,72.0,60.0,62.0,75.0,71.0,71.0,85.0,60.0,68.0,81.0,78.0,81.0,88.0,82.0,63.0,81.0,68.0,60.0,67.0,72.0,65.0,56.0,56.0,52.0,47.0,50.0,48.0,52.0,63.0,59.0,53.0,35.0,42.0,35.0,43.0,23.0,31.0,34.0,18.0,18.0,14.0,12.0,12.0,10.0,10.0,9.0,3.0,10.0 C85614,30.0,29.0,22.0,25.0,26.0,23.0,20.0,25.0,18.0,21.0,26.0,21.0,34.0,30.0,24.0,16.0,18.0,23.0,24.0,19.0,18.0,20.0,12.0,20.0,25.0,17.0,27.0,34.0,41.0,31.0,46.0,40.0,52.0,40.0,43.0,28.0,25.0,38.0,30.0,39.0,31.0,21.0,22.0,33.0,25.0,20.0,30.0,24.0,17.0,22.0,23.0,26.0,27.0,26.0,30.0,33.0,30.0,30.0,35.0,40.0,26.0,28.0,41.0,28.0,24.0,31.0,27.0,28.0,18.0,25.0,16.0,18.0,16.0,19.0,14.0,15.0,16.0,17.0,12.0,16.0,13.0,21.0,10.0,19.0,13.0,9.0,11.0,6.0,5.0,2.0,,3.0,1.0,2.0,,3.0 C85619,48.0,54.0,51.0,54.0,48.0,59.0,62.0,61.0,48.0,64.0,51.0,47.0,72.0,58.0,75.0,58.0,60.0,47.0,53.0,57.0,51.0,48.0,46.0,43.0,45.0,45.0,66.0,63.0,74.0,77.0,58.0,75.0,81.0,84.0,77.0,72.0,66.0,66.0,76.0,47.0,61.0,69.0,66.0,60.0,62.0,67.0,47.0,50.0,43.0,46.0,35.0,57.0,64.0,65.0,68.0,55.0,59.0,55.0,62.0,47.0,64.0,59.0,48.0,48.0,39.0,39.0,43.0,37.0,31.0,27.0,27.0,26.0,26.0,38.0,32.0,27.0,39.0,23.0,31.0,29.0,17.0,13.0,25.0,18.0,12.0,14.0,9.0,24.0,13.0,16.0,6.0,6.0,3.0,6.0,1.0,7.0 C85622,3.0,8.0,8.0,13.0,5.0,10.0,7.0,8.0,9.0,13.0,11.0,5.0,16.0,13.0,14.0,15.0,11.0,16.0,10.0,18.0,13.0,9.0,11.0,8.0,8.0,9.0,16.0,6.0,12.0,12.0,7.0,14.0,18.0,14.0,15.0,18.0,12.0,18.0,16.0,12.0,12.0,14.0,15.0,5.0,13.0,9.0,12.0,17.0,20.0,8.0,20.0,12.0,15.0,23.0,27.0,18.0,21.0,20.0,18.0,19.0,18.0,17.0,20.0,18.0,21.0,23.0,10.0,13.0,10.0,14.0,9.0,15.0,12.0,11.0,11.0,11.0,11.0,12.0,4.0,7.0,14.0,13.0,11.0,7.0,7.0,4.0,9.0,4.0,6.0,8.0,6.0,,2.0,1.0,, C85623,20.0,29.0,20.0,20.0,30.0,27.0,30.0,32.0,34.0,31.0,32.0,30.0,35.0,43.0,32.0,32.0,22.0,36.0,36.0,21.0,18.0,24.0,16.0,14.0,19.0,20.0,22.0,22.0,19.0,28.0,33.0,39.0,34.0,30.0,32.0,37.0,37.0,32.0,50.0,38.0,45.0,41.0,45.0,44.0,34.0,36.0,42.0,42.0,34.0,32.0,35.0,44.0,34.0,25.0,51.0,40.0,51.0,41.0,42.0,43.0,53.0,35.0,47.0,43.0,35.0,35.0,37.0,36.0,43.0,35.0,30.0,35.0,27.0,16.0,20.0,25.0,25.0,28.0,18.0,17.0,19.0,12.0,11.0,9.0,7.0,11.0,4.0,8.0,8.0,4.0,4.0,2.0,1.0,2.0,2.0,2.0 C86001,78.0,84.0,75.0,91.0,71.0,86.0,97.0,101.0,87.0,108.0,108.0,110.0,105.0,110.0,129.0,101.0,106.0,107.0,91.0,96.0,79.0,87.0,87.0,72.0,79.0,68.0,104.0,111.0,101.0,102.0,118.0,106.0,117.0,110.0,123.0,99.0,125.0,129.0,122.0,102.0,128.0,103.0,116.0,99.0,100.0,96.0,85.0,101.0,80.0,90.0,92.0,86.0,93.0,108.0,99.0,90.0,112.0,115.0,117.0,116.0,124.0,119.0,128.0,114.0,95.0,119.0,101.0,116.0,107.0,90.0,78.0,82.0,62.0,81.0,78.0,59.0,90.0,83.0,102.0,55.0,57.0,48.0,54.0,43.0,32.0,45.0,44.0,31.0,29.0,17.0,27.0,20.0,11.0,7.0,10.0,22.0 C86002,40.0,49.0,45.0,53.0,42.0,52.0,48.0,52.0,39.0,56.0,49.0,62.0,67.0,54.0,51.0,55.0,60.0,58.0,45.0,51.0,43.0,36.0,52.0,28.0,46.0,46.0,43.0,52.0,53.0,46.0,52.0,55.0,74.0,46.0,65.0,72.0,66.0,54.0,66.0,62.0,61.0,55.0,56.0,41.0,51.0,66.0,38.0,50.0,45.0,45.0,41.0,49.0,53.0,50.0,58.0,44.0,58.0,53.0,50.0,68.0,64.0,42.0,49.0,44.0,51.0,44.0,44.0,42.0,47.0,33.0,27.0,28.0,29.0,19.0,25.0,25.0,30.0,41.0,26.0,28.0,21.0,15.0,25.0,16.0,11.0,11.0,18.0,9.0,12.0,14.0,11.0,6.0,2.0,4.0,3.0,1.0 C86003,36.0,50.0,51.0,37.0,40.0,52.0,47.0,53.0,53.0,75.0,56.0,59.0,51.0,69.0,51.0,60.0,61.0,73.0,56.0,43.0,46.0,51.0,52.0,43.0,44.0,40.0,41.0,57.0,46.0,51.0,55.0,60.0,58.0,63.0,64.0,72.0,63.0,75.0,52.0,56.0,63.0,59.0,44.0,56.0,54.0,58.0,52.0,42.0,61.0,43.0,52.0,63.0,46.0,52.0,57.0,73.0,82.0,50.0,63.0,76.0,76.0,73.0,61.0,64.0,69.0,59.0,56.0,62.0,58.0,57.0,43.0,52.0,41.0,57.0,63.0,46.0,48.0,71.0,64.0,51.0,49.0,39.0,45.0,40.0,36.0,35.0,40.0,26.0,16.0,22.0,23.0,13.0,7.0,9.0,13.0,18.0 C86005,12.0,27.0,19.0,27.0,26.0,22.0,23.0,21.0,24.0,21.0,32.0,25.0,27.0,35.0,27.0,24.0,33.0,29.0,18.0,29.0,18.0,26.0,17.0,20.0,24.0,25.0,20.0,19.0,26.0,33.0,43.0,26.0,28.0,40.0,35.0,34.0,25.0,35.0,35.0,43.0,30.0,28.0,26.0,32.0,30.0,28.0,22.0,17.0,21.0,19.0,23.0,25.0,28.0,36.0,31.0,30.0,29.0,36.0,35.0,24.0,37.0,33.0,36.0,35.0,22.0,37.0,29.0,33.0,35.0,30.0,22.0,24.0,25.0,39.0,33.0,32.0,21.0,26.0,33.0,15.0,19.0,13.0,19.0,13.0,14.0,10.0,7.0,10.0,9.0,6.0,12.0,4.0,5.0,4.0,4.0,8.0 C86006,49.0,47.0,50.0,53.0,46.0,58.0,55.0,68.0,46.0,58.0,51.0,74.0,62.0,67.0,52.0,60.0,62.0,64.0,51.0,49.0,47.0,33.0,50.0,53.0,53.0,62.0,69.0,72.0,88.0,73.0,58.0,66.0,86.0,61.0,85.0,73.0,85.0,79.0,85.0,94.0,79.0,75.0,68.0,68.0,56.0,60.0,48.0,55.0,50.0,45.0,65.0,60.0,48.0,78.0,70.0,88.0,81.0,79.0,82.0,77.0,77.0,78.0,61.0,76.0,74.0,62.0,68.0,48.0,52.0,57.0,56.0,42.0,40.0,38.0,43.0,39.0,44.0,62.0,45.0,37.0,37.0,28.0,24.0,28.0,19.0,21.0,19.0,12.0,21.0,19.0,13.0,5.0,11.0,3.0,7.0,6.0 C86007,83.0,109.0,110.0,113.0,101.0,119.0,120.0,115.0,99.0,104.0,94.0,110.0,95.0,94.0,107.0,89.0,89.0,88.0,87.0,73.0,74.0,89.0,68.0,96.0,80.0,103.0,101.0,136.0,128.0,138.0,147.0,137.0,147.0,140.0,169.0,140.0,135.0,124.0,139.0,140.0,127.0,135.0,140.0,128.0,96.0,123.0,106.0,103.0,105.0,90.0,112.0,101.0,100.0,107.0,116.0,113.0,103.0,122.0,111.0,103.0,118.0,103.0,115.0,103.0,109.0,109.0,114.0,107.0,116.0,101.0,98.0,118.0,105.0,103.0,94.0,90.0,89.0,107.0,97.0,83.0,73.0,58.0,51.0,42.0,42.0,37.0,33.0,30.0,28.0,20.0,18.0,13.0,20.0,10.0,5.0,14.0 C86009,18.0,23.0,26.0,35.0,31.0,32.0,29.0,25.0,33.0,34.0,46.0,36.0,33.0,55.0,56.0,53.0,52.0,46.0,33.0,35.0,31.0,39.0,38.0,32.0,25.0,30.0,34.0,34.0,30.0,28.0,27.0,38.0,42.0,40.0,36.0,25.0,35.0,49.0,36.0,45.0,45.0,41.0,35.0,47.0,43.0,60.0,41.0,39.0,44.0,61.0,54.0,48.0,68.0,71.0,51.0,68.0,63.0,64.0,69.0,72.0,84.0,68.0,52.0,53.0,54.0,70.0,39.0,57.0,43.0,48.0,33.0,61.0,43.0,48.0,51.0,42.0,50.0,56.0,38.0,34.0,49.0,28.0,33.0,31.0,14.0,21.0,22.0,16.0,20.0,17.0,9.0,9.0,4.0,8.0,4.0,10.0 C86011,55.0,56.0,63.0,58.0,55.0,60.0,74.0,83.0,67.0,73.0,93.0,92.0,74.0,71.0,104.0,98.0,86.0,76.0,67.0,59.0,64.0,46.0,74.0,73.0,56.0,76.0,72.0,91.0,94.0,88.0,85.0,101.0,112.0,70.0,98.0,98.0,124.0,94.0,112.0,112.0,103.0,94.0,97.0,78.0,98.0,95.0,109.0,90.0,86.0,77.0,84.0,92.0,92.0,91.0,96.0,79.0,96.0,105.0,117.0,101.0,86.0,95.0,79.0,101.0,77.0,73.0,85.0,79.0,85.0,72.0,76.0,70.0,72.0,55.0,69.0,74.0,69.0,57.0,70.0,43.0,44.0,44.0,37.0,27.0,33.0,25.0,37.0,23.0,17.0,20.0,20.0,14.0,15.0,10.0,4.0,20.0 C86012,19.0,19.0,7.0,21.0,23.0,21.0,32.0,24.0,30.0,23.0,25.0,29.0,29.0,36.0,37.0,32.0,34.0,32.0,31.0,27.0,20.0,23.0,22.0,19.0,20.0,33.0,24.0,26.0,26.0,26.0,26.0,34.0,25.0,36.0,33.0,43.0,35.0,24.0,47.0,25.0,39.0,33.0,51.0,26.0,30.0,39.0,26.0,29.0,31.0,29.0,27.0,31.0,34.0,44.0,40.0,42.0,37.0,32.0,38.0,42.0,35.0,35.0,42.0,43.0,41.0,44.0,39.0,38.0,46.0,49.0,38.0,29.0,30.0,38.0,47.0,31.0,34.0,34.0,30.0,27.0,24.0,21.0,19.0,15.0,15.0,12.0,15.0,10.0,14.0,13.0,13.0,6.0,11.0,3.0,4.0,13.0 C86013,30.0,29.0,39.0,32.0,28.0,43.0,30.0,38.0,36.0,38.0,54.0,48.0,45.0,51.0,42.0,40.0,52.0,39.0,45.0,33.0,29.0,30.0,34.0,34.0,26.0,31.0,40.0,40.0,44.0,42.0,46.0,45.0,47.0,38.0,42.0,42.0,53.0,49.0,52.0,57.0,53.0,50.0,48.0,48.0,48.0,53.0,47.0,39.0,50.0,41.0,42.0,46.0,62.0,47.0,55.0,48.0,68.0,57.0,72.0,76.0,79.0,70.0,62.0,72.0,62.0,78.0,69.0,66.0,53.0,70.0,57.0,56.0,50.0,58.0,67.0,66.0,65.0,73.0,72.0,74.0,59.0,63.0,44.0,33.0,37.0,43.0,32.0,40.0,38.0,27.0,19.0,18.0,10.0,12.0,7.0,17.0 C86015,43.0,44.0,36.0,50.0,52.0,62.0,60.0,46.0,54.0,42.0,32.0,45.0,63.0,47.0,51.0,44.0,48.0,53.0,46.0,46.0,39.0,44.0,44.0,42.0,37.0,42.0,56.0,51.0,53.0,58.0,63.0,63.0,66.0,61.0,72.0,60.0,64.0,63.0,56.0,51.0,48.0,64.0,49.0,62.0,47.0,49.0,43.0,44.0,33.0,37.0,37.0,50.0,44.0,49.0,53.0,57.0,54.0,65.0,64.0,41.0,52.0,64.0,48.0,53.0,67.0,58.0,46.0,52.0,47.0,45.0,35.0,51.0,30.0,39.0,33.0,47.0,44.0,44.0,42.0,27.0,38.0,21.0,18.0,28.0,18.0,26.0,18.0,12.0,7.0,15.0,12.0,10.0,4.0,6.0,9.0,9.0 C86016,31.0,32.0,56.0,54.0,42.0,51.0,47.0,47.0,58.0,53.0,57.0,52.0,56.0,56.0,53.0,56.0,64.0,63.0,60.0,48.0,45.0,51.0,49.0,56.0,38.0,56.0,54.0,47.0,55.0,61.0,56.0,59.0,57.0,51.0,58.0,61.0,64.0,76.0,61.0,64.0,67.0,48.0,57.0,56.0,56.0,56.0,56.0,54.0,47.0,54.0,54.0,55.0,77.0,59.0,67.0,73.0,73.0,51.0,75.0,89.0,55.0,66.0,63.0,54.0,61.0,61.0,68.0,54.0,54.0,53.0,37.0,67.0,46.0,51.0,41.0,47.0,43.0,47.0,43.0,37.0,35.0,33.0,29.0,17.0,26.0,22.0,22.0,23.0,18.0,20.0,13.0,11.0,10.0,3.0,7.0,14.0 C86017,70.0,73.0,86.0,70.0,96.0,96.0,84.0,86.0,59.0,88.0,95.0,79.0,99.0,78.0,69.0,91.0,97.0,89.0,84.0,67.0,58.0,64.0,83.0,70.0,97.0,105.0,105.0,104.0,115.0,128.0,156.0,125.0,138.0,122.0,113.0,123.0,126.0,147.0,142.0,116.0,130.0,98.0,97.0,110.0,112.0,102.0,77.0,94.0,102.0,78.0,98.0,95.0,89.0,82.0,89.0,76.0,88.0,84.0,100.0,100.0,86.0,98.0,88.0,90.0,73.0,79.0,77.0,71.0,64.0,57.0,54.0,72.0,62.0,63.0,62.0,66.0,62.0,64.0,44.0,40.0,30.0,45.0,36.0,18.0,23.0,23.0,33.0,31.0,13.0,20.0,15.0,16.0,8.0,12.0,5.0,19.0 C86018,38.0,44.0,53.0,43.0,46.0,52.0,44.0,45.0,53.0,48.0,64.0,54.0,58.0,64.0,74.0,52.0,71.0,46.0,58.0,57.0,41.0,46.0,49.0,63.0,43.0,65.0,65.0,53.0,55.0,62.0,68.0,73.0,64.0,73.0,72.0,77.0,75.0,70.0,74.0,54.0,76.0,48.0,60.0,66.0,54.0,67.0,46.0,45.0,56.0,58.0,48.0,62.0,63.0,52.0,69.0,73.0,64.0,81.0,71.0,65.0,69.0,59.0,69.0,55.0,70.0,61.0,47.0,57.0,54.0,59.0,53.0,48.0,47.0,54.0,41.0,38.0,46.0,49.0,52.0,51.0,38.0,26.0,25.0,25.0,23.0,27.0,25.0,17.0,16.0,15.0,9.0,13.0,14.0,11.0,3.0,15.0 C86019,89.0,71.0,107.0,96.0,104.0,105.0,92.0,98.0,116.0,90.0,95.0,112.0,109.0,102.0,99.0,102.0,101.0,82.0,83.0,105.0,81.0,61.0,67.0,87.0,104.0,82.0,109.0,97.0,126.0,118.0,135.0,129.0,139.0,120.0,146.0,126.0,149.0,132.0,139.0,132.0,121.0,119.0,99.0,117.0,104.0,97.0,91.0,82.0,91.0,81.0,96.0,103.0,98.0,87.0,116.0,92.0,102.0,116.0,95.0,97.0,100.0,121.0,85.0,96.0,85.0,75.0,95.0,76.0,81.0,64.0,80.0,67.0,70.0,71.0,63.0,68.0,68.0,75.0,74.0,62.0,57.0,46.0,47.0,33.0,27.0,32.0,35.0,21.0,29.0,21.0,25.0,17.0,14.0,16.0,3.0,15.0 C86020,44.0,40.0,40.0,42.0,35.0,51.0,47.0,48.0,54.0,44.0,53.0,47.0,46.0,63.0,46.0,54.0,43.0,62.0,49.0,54.0,54.0,42.0,47.0,38.0,46.0,48.0,53.0,43.0,57.0,69.0,56.0,75.0,57.0,60.0,70.0,53.0,62.0,68.0,70.0,57.0,52.0,68.0,56.0,61.0,53.0,52.0,55.0,38.0,53.0,46.0,42.0,60.0,52.0,55.0,51.0,53.0,62.0,51.0,50.0,64.0,62.0,71.0,57.0,64.0,57.0,53.0,40.0,60.0,44.0,41.0,38.0,52.0,41.0,47.0,43.0,37.0,56.0,35.0,39.0,21.0,42.0,36.0,19.0,25.0,17.0,25.0,17.0,15.0,18.0,10.0,8.0,11.0,11.0,6.0,2.0,11.0 C86021,18.0,20.0,26.0,24.0,24.0,27.0,28.0,30.0,37.0,37.0,36.0,34.0,31.0,35.0,46.0,34.0,36.0,43.0,36.0,25.0,23.0,28.0,24.0,32.0,27.0,39.0,29.0,21.0,38.0,40.0,32.0,38.0,27.0,36.0,44.0,41.0,43.0,44.0,39.0,38.0,39.0,45.0,46.0,37.0,43.0,26.0,35.0,22.0,45.0,42.0,27.0,41.0,30.0,47.0,42.0,43.0,38.0,41.0,51.0,39.0,48.0,41.0,57.0,45.0,29.0,46.0,43.0,38.0,39.0,46.0,47.0,31.0,37.0,46.0,31.0,29.0,29.0,42.0,27.0,41.0,34.0,29.0,25.0,24.0,26.0,20.0,13.0,28.0,19.0,21.0,10.0,15.0,11.0,15.0,8.0,13.0 C86023,43.0,68.0,63.0,100.0,81.0,67.0,94.0,92.0,97.0,89.0,89.0,92.0,103.0,97.0,85.0,92.0,91.0,98.0,74.0,62.0,74.0,75.0,59.0,82.0,53.0,84.0,83.0,68.0,94.0,110.0,104.0,108.0,122.0,115.0,109.0,106.0,126.0,113.0,113.0,109.0,100.0,113.0,90.0,95.0,82.0,74.0,86.0,64.0,90.0,84.0,72.0,90.0,85.0,91.0,104.0,70.0,90.0,106.0,94.0,94.0,120.0,88.0,95.0,97.0,84.0,71.0,79.0,72.0,70.0,61.0,65.0,73.0,65.0,52.0,65.0,48.0,48.0,61.0,52.0,33.0,53.0,42.0,34.0,35.0,36.0,37.0,26.0,28.0,23.0,20.0,19.0,7.0,6.0,12.0,1.0,16.0 C86024,55.0,58.0,55.0,61.0,62.0,55.0,68.0,62.0,79.0,64.0,65.0,58.0,76.0,70.0,77.0,52.0,66.0,82.0,71.0,60.0,57.0,61.0,66.0,70.0,48.0,72.0,69.0,62.0,85.0,92.0,88.0,77.0,82.0,86.0,92.0,91.0,93.0,91.0,69.0,94.0,67.0,78.0,91.0,76.0,73.0,74.0,56.0,66.0,41.0,56.0,67.0,77.0,87.0,92.0,83.0,84.0,68.0,77.0,73.0,75.0,82.0,94.0,123.0,82.0,79.0,73.0,70.0,74.0,79.0,78.0,60.0,64.0,52.0,54.0,53.0,67.0,59.0,77.0,52.0,31.0,49.0,43.0,40.0,42.0,40.0,29.0,30.0,16.0,32.0,26.0,13.0,12.0,10.0,11.0,6.0,15.0 C86025,26.0,42.0,27.0,26.0,31.0,18.0,30.0,25.0,31.0,36.0,27.0,38.0,25.0,30.0,22.0,37.0,36.0,33.0,33.0,26.0,24.0,33.0,22.0,34.0,52.0,48.0,50.0,49.0,49.0,55.0,47.0,54.0,42.0,53.0,55.0,45.0,57.0,44.0,38.0,36.0,48.0,41.0,43.0,47.0,51.0,36.0,26.0,28.0,32.0,26.0,37.0,34.0,32.0,32.0,51.0,42.0,52.0,47.0,36.0,37.0,36.0,44.0,47.0,34.0,30.0,31.0,33.0,33.0,36.0,28.0,40.0,26.0,23.0,26.0,18.0,21.0,26.0,27.0,31.0,18.0,12.0,13.0,11.0,14.0,7.0,11.0,14.0,8.0,9.0,8.0,9.0,,3.0,2.0,3.0,5.0 C86026,19.0,26.0,22.0,22.0,25.0,27.0,32.0,30.0,37.0,23.0,21.0,38.0,42.0,27.0,34.0,30.0,32.0,27.0,24.0,27.0,21.0,26.0,27.0,25.0,28.0,27.0,34.0,42.0,27.0,33.0,44.0,46.0,49.0,41.0,34.0,43.0,45.0,40.0,41.0,30.0,31.0,27.0,37.0,27.0,37.0,33.0,32.0,16.0,26.0,24.0,29.0,28.0,24.0,40.0,33.0,39.0,33.0,16.0,21.0,33.0,28.0,30.0,24.0,24.0,34.0,25.0,25.0,26.0,26.0,27.0,29.0,17.0,18.0,21.0,15.0,19.0,18.0,17.0,14.0,7.0,17.0,12.0,14.0,12.0,13.0,10.0,6.0,9.0,9.0,6.0,1.0,4.0,2.0,4.0,1.0,8.0 C86029,46.0,54.0,50.0,55.0,55.0,70.0,57.0,64.0,81.0,65.0,71.0,89.0,73.0,91.0,64.0,86.0,81.0,86.0,77.0,80.0,65.0,72.0,50.0,67.0,96.0,81.0,76.0,73.0,94.0,85.0,93.0,100.0,79.0,91.0,82.0,91.0,91.0,88.0,94.0,100.0,82.0,73.0,88.0,100.0,105.0,92.0,87.0,86.0,74.0,90.0,76.0,97.0,110.0,85.0,123.0,108.0,117.0,103.0,101.0,95.0,103.0,98.0,102.0,101.0,111.0,84.0,92.0,73.0,71.0,67.0,77.0,81.0,64.0,63.0,74.0,47.0,55.0,67.0,80.0,39.0,49.0,41.0,36.0,28.0,42.0,31.0,41.0,30.0,33.0,26.0,19.0,20.0,14.0,11.0,7.0,20.0 C86032,25.0,21.0,26.0,24.0,25.0,27.0,24.0,30.0,25.0,22.0,34.0,27.0,33.0,36.0,40.0,37.0,31.0,34.0,42.0,25.0,23.0,26.0,25.0,21.0,27.0,23.0,28.0,32.0,38.0,30.0,19.0,37.0,28.0,40.0,42.0,31.0,39.0,46.0,40.0,35.0,41.0,38.0,32.0,40.0,36.0,33.0,32.0,24.0,36.0,29.0,34.0,35.0,37.0,36.0,40.0,37.0,52.0,52.0,53.0,29.0,39.0,47.0,38.0,41.0,37.0,44.0,39.0,30.0,35.0,41.0,39.0,36.0,28.0,31.0,31.0,38.0,30.0,28.0,28.0,17.0,17.0,14.0,16.0,12.0,16.0,11.0,10.0,14.0,11.0,8.0,5.0,7.0,4.0,1.0,2.0,5.0 C86033,13.0,22.0,31.0,19.0,42.0,33.0,43.0,24.0,38.0,38.0,43.0,43.0,50.0,30.0,41.0,31.0,28.0,38.0,30.0,28.0,23.0,18.0,21.0,22.0,25.0,21.0,22.0,37.0,33.0,37.0,38.0,38.0,48.0,51.0,48.0,43.0,55.0,61.0,45.0,34.0,34.0,31.0,43.0,34.0,32.0,37.0,28.0,25.0,29.0,28.0,28.0,24.0,36.0,24.0,37.0,43.0,43.0,39.0,44.0,45.0,38.0,42.0,27.0,42.0,42.0,34.0,30.0,28.0,22.0,25.0,31.0,22.0,17.0,26.0,17.0,20.0,14.0,23.0,19.0,18.0,18.0,13.0,8.0,5.0,10.0,3.0,6.0,10.0,1.0,5.0,2.0,4.0,3.0,5.0,4.0,9.0 C86034,45.0,32.0,44.0,33.0,53.0,36.0,43.0,55.0,44.0,45.0,54.0,33.0,50.0,50.0,48.0,49.0,46.0,56.0,41.0,39.0,47.0,34.0,34.0,32.0,37.0,43.0,47.0,49.0,47.0,53.0,72.0,55.0,49.0,66.0,66.0,51.0,66.0,50.0,41.0,58.0,48.0,42.0,44.0,38.0,35.0,41.0,58.0,36.0,39.0,41.0,42.0,45.0,56.0,52.0,49.0,65.0,69.0,61.0,66.0,55.0,58.0,54.0,43.0,38.0,44.0,55.0,47.0,45.0,49.0,41.0,42.0,34.0,32.0,35.0,36.0,35.0,36.0,35.0,38.0,24.0,27.0,23.0,24.0,32.0,10.0,17.0,23.0,19.0,4.0,6.0,12.0,5.0,5.0,3.0,2.0,5.0 C86037,48.0,48.0,48.0,48.0,33.0,47.0,60.0,56.0,47.0,49.0,59.0,61.0,54.0,67.0,70.0,71.0,59.0,63.0,58.0,48.0,44.0,47.0,53.0,49.0,51.0,42.0,40.0,56.0,57.0,58.0,74.0,54.0,54.0,68.0,60.0,75.0,59.0,68.0,76.0,49.0,54.0,44.0,46.0,53.0,48.0,55.0,45.0,53.0,52.0,36.0,60.0,58.0,50.0,61.0,65.0,57.0,72.0,66.0,63.0,59.0,68.0,61.0,51.0,58.0,47.0,54.0,50.0,53.0,58.0,45.0,36.0,53.0,53.0,49.0,64.0,45.0,52.0,48.0,52.0,38.0,39.0,29.0,34.0,33.0,18.0,20.0,25.0,26.0,20.0,13.0,11.0,6.0,4.0,5.0,2.0,9.0 C86038,39.0,46.0,53.0,46.0,45.0,46.0,36.0,65.0,55.0,66.0,49.0,54.0,61.0,55.0,47.0,59.0,55.0,62.0,48.0,50.0,47.0,50.0,49.0,63.0,44.0,65.0,75.0,54.0,60.0,73.0,55.0,63.0,66.0,75.0,73.0,57.0,66.0,73.0,62.0,59.0,54.0,50.0,54.0,56.0,64.0,64.0,55.0,43.0,69.0,57.0,48.0,58.0,62.0,55.0,75.0,74.0,63.0,70.0,76.0,74.0,74.0,67.0,72.0,70.0,71.0,65.0,54.0,62.0,53.0,40.0,49.0,62.0,41.0,51.0,28.0,49.0,35.0,41.0,50.0,27.0,38.0,29.0,24.0,30.0,22.0,26.0,18.0,17.0,18.0,17.0,9.0,6.0,8.0,7.0,7.0,6.0 C86605,38.0,45.0,42.0,33.0,42.0,39.0,44.0,34.0,35.0,46.0,53.0,34.0,49.0,43.0,49.0,37.0,54.0,32.0,43.0,51.0,48.0,32.0,37.0,34.0,39.0,32.0,46.0,58.0,53.0,46.0,49.0,59.0,53.0,60.0,61.0,49.0,64.0,51.0,54.0,58.0,45.0,44.0,55.0,55.0,41.0,43.0,31.0,26.0,30.0,40.0,46.0,31.0,42.0,63.0,59.0,46.0,53.0,61.0,40.0,51.0,54.0,50.0,45.0,44.0,51.0,65.0,41.0,40.0,52.0,17.0,32.0,37.0,34.0,26.0,35.0,34.0,30.0,34.0,26.0,19.0,18.0,21.0,20.0,12.0,14.0,8.0,13.0,13.0,8.0,9.0,4.0,2.0,,1.0,2.0,2.0 C86606,5.0,6.0,6.0,4.0,10.0,9.0,8.0,12.0,10.0,16.0,5.0,9.0,15.0,20.0,15.0,14.0,9.0,13.0,12.0,11.0,7.0,10.0,4.0,5.0,7.0,7.0,14.0,7.0,18.0,13.0,12.0,16.0,11.0,12.0,14.0,11.0,11.0,14.0,17.0,11.0,24.0,17.0,20.0,16.0,16.0,15.0,13.0,14.0,13.0,16.0,13.0,10.0,15.0,21.0,18.0,18.0,10.0,19.0,15.0,20.0,29.0,24.0,14.0,13.0,14.0,14.0,19.0,24.0,16.0,17.0,23.0,21.0,11.0,11.0,10.0,17.0,22.0,10.0,12.0,6.0,9.0,12.0,9.0,7.0,6.0,2.0,7.0,7.0,4.0,4.0,1.0,2.0,2.0,2.0,,3.0 C86609,68.0,100.0,97.0,96.0,110.0,105.0,110.0,111.0,107.0,119.0,125.0,122.0,138.0,144.0,141.0,124.0,138.0,137.0,116.0,85.0,95.0,90.0,103.0,93.0,98.0,107.0,105.0,125.0,126.0,117.0,133.0,138.0,161.0,142.0,160.0,163.0,167.0,173.0,155.0,153.0,131.0,154.0,154.0,137.0,146.0,128.0,118.0,110.0,105.0,108.0,112.0,113.0,128.0,118.0,140.0,120.0,130.0,132.0,129.0,128.0,140.0,139.0,118.0,127.0,121.0,118.0,120.0,124.0,102.0,91.0,94.0,111.0,109.0,68.0,107.0,90.0,90.0,96.0,74.0,68.0,68.0,47.0,63.0,36.0,36.0,41.0,45.0,26.0,23.0,27.0,13.0,18.0,13.0,7.0,6.0,20.0 C86611,32.0,36.0,43.0,36.0,29.0,34.0,21.0,36.0,28.0,37.0,41.0,34.0,33.0,41.0,47.0,43.0,41.0,36.0,47.0,33.0,29.0,34.0,29.0,32.0,40.0,35.0,44.0,53.0,47.0,49.0,49.0,47.0,41.0,42.0,63.0,43.0,53.0,35.0,46.0,48.0,49.0,47.0,37.0,47.0,43.0,44.0,29.0,52.0,30.0,29.0,47.0,39.0,47.0,59.0,50.0,56.0,63.0,57.0,66.0,59.0,58.0,67.0,46.0,51.0,42.0,55.0,51.0,51.0,43.0,31.0,43.0,29.0,34.0,31.0,38.0,42.0,31.0,37.0,37.0,30.0,25.0,20.0,21.0,17.0,19.0,18.0,15.0,11.0,7.0,8.0,7.0,6.0,3.0,4.0,8.0,3.0 C86614,42.0,45.0,59.0,51.0,50.0,49.0,37.0,64.0,58.0,69.0,62.0,57.0,59.0,45.0,63.0,57.0,60.0,59.0,69.0,52.0,54.0,45.0,42.0,52.0,44.0,51.0,46.0,52.0,61.0,60.0,53.0,67.0,63.0,67.0,82.0,76.0,80.0,63.0,58.0,70.0,68.0,59.0,72.0,75.0,57.0,49.0,45.0,56.0,53.0,45.0,61.0,42.0,59.0,50.0,54.0,68.0,84.0,70.0,51.0,84.0,58.0,78.0,63.0,66.0,56.0,70.0,67.0,55.0,56.0,49.0,42.0,46.0,59.0,40.0,46.0,39.0,55.0,52.0,53.0,45.0,41.0,32.0,22.0,32.0,21.0,25.0,10.0,22.0,14.0,15.0,18.0,10.0,2.0,10.0,3.0,15.0 C86616,15.0,19.0,19.0,26.0,23.0,21.0,18.0,25.0,22.0,20.0,28.0,26.0,18.0,21.0,24.0,35.0,22.0,23.0,30.0,22.0,25.0,26.0,15.0,25.0,20.0,21.0,33.0,21.0,17.0,20.0,26.0,32.0,26.0,26.0,32.0,25.0,25.0,30.0,37.0,31.0,16.0,27.0,24.0,22.0,18.0,24.0,12.0,16.0,19.0,14.0,20.0,18.0,25.0,24.0,20.0,26.0,24.0,22.0,25.0,27.0,24.0,16.0,24.0,20.0,18.0,20.0,16.0,19.0,17.0,14.0,14.0,17.0,11.0,19.0,17.0,7.0,17.0,14.0,8.0,10.0,7.0,9.0,5.0,7.0,7.0,4.0,5.0,5.0,3.0,3.0,2.0,,3.0,2.0,1.0,4.0 C86621,22.0,14.0,19.0,21.0,24.0,24.0,30.0,17.0,30.0,23.0,27.0,48.0,33.0,26.0,47.0,25.0,28.0,34.0,31.0,28.0,23.0,31.0,23.0,32.0,23.0,29.0,24.0,35.0,25.0,31.0,28.0,32.0,35.0,40.0,32.0,24.0,36.0,35.0,29.0,44.0,37.0,38.0,27.0,27.0,32.0,33.0,21.0,23.0,20.0,29.0,23.0,27.0,36.0,37.0,23.0,32.0,28.0,32.0,26.0,29.0,29.0,28.0,30.0,25.0,26.0,27.0,16.0,30.0,28.0,31.0,25.0,27.0,17.0,19.0,15.0,17.0,24.0,32.0,16.0,11.0,11.0,13.0,11.0,10.0,8.0,11.0,6.0,4.0,4.0,8.0,1.0,2.0,3.0,1.0,,3.0 C86625,3.0,5.0,13.0,12.0,9.0,9.0,4.0,12.0,9.0,10.0,4.0,8.0,13.0,11.0,15.0,8.0,6.0,11.0,13.0,8.0,15.0,7.0,7.0,6.0,11.0,10.0,10.0,14.0,12.0,10.0,10.0,22.0,13.0,11.0,10.0,4.0,10.0,12.0,15.0,7.0,13.0,11.0,12.0,10.0,10.0,12.0,11.0,8.0,15.0,16.0,11.0,9.0,7.0,14.0,10.0,16.0,11.0,10.0,10.0,12.0,10.0,9.0,4.0,7.0,10.0,6.0,7.0,7.0,7.0,1.0,5.0,6.0,6.0,4.0,6.0,4.0,4.0,6.0,1.0,3.0,4.0,7.0,1.0,1.0,2.0,4.0,2.0,4.0,1.0,,2.0,,1.0,,1.0,1.0 C86626,9.0,8.0,7.0,12.0,7.0,10.0,13.0,14.0,11.0,26.0,15.0,14.0,16.0,21.0,10.0,15.0,22.0,19.0,11.0,9.0,20.0,9.0,14.0,11.0,17.0,17.0,16.0,16.0,23.0,12.0,20.0,15.0,13.0,23.0,17.0,20.0,17.0,10.0,15.0,22.0,16.0,19.0,12.0,17.0,22.0,15.0,16.0,17.0,19.0,5.0,21.0,16.0,26.0,27.0,21.0,31.0,24.0,24.0,19.0,21.0,24.0,12.0,16.0,27.0,20.0,16.0,16.0,13.0,11.0,16.0,20.0,10.0,18.0,14.0,12.0,13.0,12.0,15.0,9.0,10.0,12.0,7.0,8.0,6.0,4.0,9.0,7.0,7.0,2.0,6.0,8.0,5.0,5.0,2.0,3.0,9.0 C87002,68.0,94.0,84.0,88.0,95.0,93.0,95.0,114.0,113.0,117.0,116.0,114.0,117.0,123.0,135.0,133.0,112.0,115.0,111.0,92.0,111.0,76.0,86.0,103.0,118.0,116.0,105.0,116.0,136.0,134.0,128.0,153.0,133.0,121.0,162.0,134.0,144.0,122.0,121.0,134.0,113.0,130.0,129.0,115.0,116.0,120.0,131.0,92.0,90.0,129.0,133.0,134.0,129.0,153.0,167.0,182.0,150.0,147.0,180.0,145.0,164.0,135.0,156.0,134.0,135.0,127.0,133.0,130.0,133.0,123.0,123.0,110.0,133.0,103.0,137.0,120.0,130.0,131.0,127.0,116.0,109.0,82.0,92.0,71.0,64.0,64.0,42.0,42.0,33.0,27.0,20.0,33.0,15.0,10.0,14.0,27.0 C87003,56.0,57.0,58.0,76.0,70.0,76.0,71.0,58.0,58.0,66.0,77.0,79.0,78.0,81.0,63.0,65.0,77.0,63.0,74.0,74.0,87.0,68.0,82.0,67.0,71.0,91.0,81.0,89.0,90.0,74.0,79.0,67.0,78.0,89.0,98.0,72.0,85.0,74.0,65.0,84.0,100.0,76.0,69.0,59.0,79.0,67.0,60.0,47.0,40.0,54.0,59.0,67.0,67.0,55.0,66.0,63.0,79.0,60.0,55.0,63.0,65.0,65.0,75.0,74.0,76.0,63.0,40.0,63.0,45.0,55.0,40.0,44.0,48.0,34.0,51.0,42.0,39.0,47.0,34.0,30.0,29.0,23.0,28.0,19.0,19.0,19.0,19.0,22.0,12.0,11.0,5.0,6.0,5.0,3.0,2.0,10.0 C87004,45.0,47.0,57.0,50.0,52.0,51.0,48.0,65.0,63.0,55.0,68.0,70.0,68.0,89.0,70.0,69.0,79.0,67.0,83.0,58.0,51.0,53.0,56.0,59.0,54.0,73.0,73.0,62.0,74.0,59.0,62.0,69.0,63.0,73.0,64.0,88.0,97.0,67.0,77.0,75.0,79.0,68.0,93.0,84.0,85.0,83.0,81.0,53.0,56.0,70.0,63.0,86.0,89.0,84.0,93.0,82.0,104.0,92.0,92.0,91.0,91.0,90.0,96.0,73.0,75.0,61.0,60.0,71.0,65.0,78.0,67.0,67.0,63.0,55.0,53.0,82.0,53.0,80.0,89.0,68.0,75.0,52.0,60.0,41.0,40.0,43.0,29.0,20.0,16.0,11.0,9.0,7.0,6.0,11.0,7.0,20.0 C87005,79.0,89.0,98.0,116.0,95.0,87.0,102.0,98.0,106.0,115.0,108.0,105.0,120.0,90.0,117.0,121.0,117.0,124.0,100.0,120.0,115.0,110.0,114.0,104.0,143.0,130.0,136.0,125.0,145.0,139.0,123.0,132.0,145.0,129.0,136.0,122.0,131.0,152.0,150.0,142.0,128.0,126.0,115.0,119.0,110.0,105.0,110.0,96.0,82.0,129.0,110.0,115.0,104.0,127.0,126.0,123.0,132.0,133.0,136.0,116.0,126.0,128.0,115.0,109.0,113.0,102.0,115.0,97.0,83.0,72.0,74.0,67.0,81.0,67.0,81.0,71.0,64.0,83.0,70.0,67.0,83.0,63.0,54.0,65.0,35.0,50.0,42.0,29.0,43.0,36.0,25.0,22.0,16.0,11.0,9.0,34.0 C87006,61.0,83.0,102.0,88.0,71.0,91.0,93.0,97.0,97.0,99.0,83.0,101.0,87.0,102.0,92.0,87.0,89.0,87.0,77.0,72.0,68.0,63.0,67.0,73.0,78.0,86.0,99.0,105.0,102.0,122.0,109.0,120.0,111.0,134.0,104.0,137.0,118.0,114.0,101.0,90.0,98.0,89.0,93.0,91.0,104.0,71.0,78.0,65.0,91.0,74.0,76.0,84.0,104.0,84.0,102.0,86.0,88.0,112.0,93.0,102.0,81.0,101.0,96.0,88.0,104.0,70.0,89.0,75.0,81.0,75.0,67.0,73.0,70.0,62.0,63.0,64.0,57.0,82.0,58.0,54.0,43.0,52.0,40.0,49.0,39.0,33.0,26.0,19.0,22.0,15.0,18.0,17.0,7.0,6.0,3.0,17.0 C87007,47.0,43.0,41.0,54.0,40.0,52.0,40.0,63.0,54.0,56.0,45.0,58.0,46.0,55.0,81.0,69.0,66.0,51.0,57.0,55.0,68.0,39.0,51.0,53.0,48.0,51.0,47.0,45.0,65.0,62.0,76.0,50.0,55.0,69.0,79.0,69.0,62.0,63.0,71.0,75.0,62.0,73.0,68.0,81.0,77.0,83.0,76.0,52.0,75.0,77.0,69.0,70.0,85.0,76.0,103.0,90.0,92.0,78.0,83.0,81.0,103.0,87.0,86.0,80.0,93.0,93.0,96.0,71.0,56.0,66.0,61.0,73.0,73.0,90.0,67.0,78.0,79.0,88.0,83.0,61.0,87.0,62.0,59.0,52.0,43.0,47.0,39.0,40.0,27.0,27.0,26.0,23.0,20.0,10.0,8.0,19.0 C87008,69.0,60.0,56.0,81.0,92.0,80.0,96.0,91.0,74.0,90.0,82.0,104.0,87.0,93.0,86.0,95.0,107.0,88.0,79.0,76.0,70.0,67.0,72.0,77.0,72.0,79.0,93.0,101.0,88.0,89.0,97.0,112.0,113.0,96.0,118.0,120.0,106.0,127.0,95.0,102.0,105.0,107.0,98.0,104.0,118.0,100.0,90.0,89.0,77.0,81.0,96.0,101.0,100.0,112.0,125.0,106.0,88.0,118.0,124.0,101.0,113.0,116.0,105.0,101.0,107.0,118.0,107.0,106.0,107.0,104.0,107.0,85.0,90.0,77.0,91.0,105.0,92.0,118.0,103.0,61.0,75.0,65.0,50.0,37.0,37.0,51.0,38.0,47.0,36.0,17.0,19.0,20.0,16.0,10.0,8.0,17.0 C87009,53.0,56.0,53.0,67.0,61.0,58.0,45.0,67.0,80.0,68.0,61.0,75.0,55.0,50.0,75.0,59.0,53.0,69.0,58.0,49.0,53.0,64.0,54.0,51.0,56.0,67.0,69.0,66.0,63.0,77.0,75.0,89.0,75.0,87.0,71.0,90.0,90.0,75.0,75.0,59.0,77.0,81.0,59.0,66.0,64.0,79.0,61.0,76.0,67.0,54.0,67.0,71.0,63.0,76.0,75.0,75.0,72.0,78.0,69.0,63.0,71.0,61.0,64.0,65.0,61.0,58.0,50.0,48.0,51.0,39.0,36.0,42.0,42.0,29.0,44.0,49.0,54.0,50.0,72.0,42.0,46.0,37.0,28.0,20.0,28.0,27.0,22.0,19.0,14.0,16.0,16.0,11.0,8.0,7.0,4.0,14.0 C87010,16.0,35.0,31.0,22.0,29.0,30.0,35.0,27.0,26.0,36.0,40.0,29.0,40.0,34.0,39.0,34.0,34.0,23.0,31.0,22.0,18.0,23.0,29.0,30.0,23.0,33.0,33.0,31.0,24.0,32.0,23.0,36.0,47.0,28.0,41.0,35.0,35.0,31.0,43.0,29.0,34.0,25.0,28.0,21.0,36.0,31.0,25.0,21.0,24.0,22.0,18.0,24.0,28.0,27.0,25.0,32.0,23.0,19.0,17.0,27.0,29.0,21.0,22.0,24.0,25.0,29.0,10.0,17.0,17.0,18.0,19.0,23.0,15.0,19.0,23.0,22.0,14.0,12.0,14.0,12.0,15.0,15.0,7.0,12.0,6.0,10.0,8.0,8.0,8.0,5.0,7.0,3.0,1.0,1.0,1.0,6.0 C87012,64.0,81.0,71.0,77.0,62.0,67.0,95.0,70.0,95.0,105.0,91.0,91.0,84.0,113.0,84.0,111.0,95.0,99.0,94.0,86.0,92.0,69.0,85.0,100.0,88.0,104.0,108.0,90.0,107.0,103.0,97.0,100.0,93.0,142.0,99.0,122.0,82.0,104.0,105.0,108.0,105.0,99.0,97.0,103.0,99.0,118.0,107.0,81.0,79.0,94.0,83.0,75.0,113.0,85.0,87.0,124.0,112.0,116.0,129.0,87.0,99.0,103.0,85.0,91.0,77.0,88.0,84.0,92.0,59.0,72.0,71.0,76.0,71.0,51.0,77.0,69.0,66.0,72.0,79.0,49.0,63.0,54.0,43.0,39.0,43.0,38.0,36.0,32.0,28.0,27.0,20.0,22.0,6.0,13.0,9.0,20.0 C87013,27.0,40.0,23.0,37.0,20.0,43.0,30.0,41.0,40.0,43.0,40.0,48.0,52.0,56.0,34.0,45.0,41.0,42.0,32.0,30.0,34.0,33.0,41.0,48.0,27.0,33.0,43.0,35.0,39.0,42.0,43.0,34.0,59.0,45.0,51.0,52.0,53.0,54.0,42.0,35.0,49.0,39.0,47.0,45.0,48.0,36.0,36.0,33.0,24.0,34.0,50.0,44.0,26.0,47.0,42.0,29.0,35.0,38.0,51.0,48.0,61.0,46.0,36.0,41.0,40.0,28.0,47.0,44.0,38.0,45.0,44.0,37.0,26.0,39.0,36.0,29.0,30.0,27.0,24.0,22.0,16.0,16.0,20.0,16.0,17.0,15.0,15.0,14.0,10.0,7.0,1.0,2.0,6.0,4.0,2.0,8.0 C87014,59.0,81.0,67.0,72.0,62.0,59.0,74.0,59.0,51.0,51.0,48.0,47.0,51.0,52.0,45.0,50.0,60.0,49.0,38.0,47.0,37.0,36.0,44.0,36.0,45.0,65.0,81.0,76.0,89.0,70.0,99.0,104.0,101.0,98.0,93.0,96.0,84.0,86.0,96.0,82.0,81.0,75.0,64.0,46.0,54.0,59.0,58.0,60.0,49.0,48.0,47.0,62.0,62.0,55.0,58.0,60.0,59.0,54.0,54.0,47.0,47.0,46.0,50.0,46.0,48.0,44.0,40.0,47.0,34.0,39.0,27.0,35.0,20.0,30.0,28.0,24.0,22.0,36.0,37.0,27.0,28.0,24.0,14.0,12.0,14.0,12.0,19.0,9.0,11.0,10.0,6.0,6.0,7.0,7.0,6.0,3.0 C87015,28.0,28.0,30.0,30.0,29.0,30.0,36.0,36.0,36.0,27.0,47.0,45.0,27.0,39.0,37.0,40.0,44.0,45.0,32.0,34.0,41.0,24.0,30.0,28.0,33.0,26.0,36.0,39.0,26.0,43.0,37.0,42.0,31.0,41.0,54.0,53.0,56.0,39.0,52.0,54.0,51.0,38.0,45.0,32.0,60.0,51.0,43.0,39.0,31.0,36.0,28.0,50.0,34.0,36.0,53.0,43.0,45.0,53.0,48.0,63.0,55.0,40.0,46.0,55.0,51.0,44.0,52.0,53.0,45.0,41.0,38.0,35.0,43.0,29.0,38.0,47.0,27.0,40.0,39.0,26.0,47.0,29.0,20.0,26.0,12.0,22.0,21.0,33.0,12.0,18.0,8.0,11.0,7.0,2.0,1.0,5.0 C87016,57.0,54.0,47.0,66.0,55.0,62.0,64.0,46.0,59.0,62.0,56.0,73.0,68.0,65.0,70.0,79.0,77.0,68.0,63.0,65.0,55.0,57.0,46.0,60.0,47.0,55.0,68.0,68.0,55.0,61.0,46.0,64.0,82.0,74.0,86.0,82.0,81.0,84.0,72.0,81.0,84.0,62.0,79.0,80.0,88.0,90.0,81.0,70.0,67.0,78.0,84.0,74.0,94.0,97.0,108.0,105.0,100.0,102.0,89.0,90.0,96.0,98.0,79.0,82.0,103.0,92.0,73.0,83.0,77.0,76.0,65.0,54.0,59.0,66.0,67.0,79.0,68.0,88.0,72.0,53.0,64.0,48.0,42.0,32.0,32.0,44.0,29.0,31.0,19.0,15.0,16.0,17.0,4.0,15.0,12.0,16.0 C87017,42.0,59.0,59.0,55.0,57.0,63.0,68.0,70.0,78.0,77.0,79.0,94.0,108.0,110.0,85.0,89.0,76.0,91.0,85.0,67.0,79.0,93.0,68.0,63.0,64.0,67.0,82.0,84.0,71.0,79.0,77.0,84.0,83.0,89.0,95.0,67.0,94.0,102.0,104.0,83.0,82.0,78.0,87.0,97.0,94.0,84.0,82.0,74.0,68.0,74.0,76.0,69.0,79.0,72.0,89.0,87.0,82.0,106.0,102.0,85.0,85.0,87.0,69.0,81.0,81.0,81.0,79.0,72.0,77.0,63.0,70.0,67.0,73.0,51.0,41.0,60.0,48.0,58.0,67.0,41.0,56.0,36.0,28.0,33.0,30.0,27.0,38.0,27.0,29.0,20.0,19.0,15.0,8.0,7.0,4.0,18.0 C87018,29.0,37.0,32.0,31.0,30.0,32.0,43.0,35.0,39.0,41.0,46.0,47.0,41.0,47.0,39.0,36.0,44.0,49.0,40.0,48.0,40.0,51.0,44.0,38.0,42.0,50.0,40.0,40.0,40.0,46.0,37.0,58.0,58.0,54.0,58.0,62.0,39.0,62.0,43.0,50.0,41.0,59.0,38.0,54.0,49.0,50.0,41.0,48.0,42.0,50.0,48.0,69.0,55.0,59.0,57.0,69.0,59.0,64.0,51.0,53.0,74.0,62.0,57.0,53.0,41.0,35.0,54.0,55.0,54.0,39.0,43.0,27.0,46.0,39.0,55.0,36.0,41.0,42.0,48.0,34.0,41.0,23.0,33.0,20.0,18.0,23.0,26.0,18.0,11.0,12.0,6.0,7.0,9.0,6.0,1.0,11.0 C87020,17.0,24.0,22.0,12.0,21.0,28.0,19.0,32.0,18.0,23.0,17.0,27.0,27.0,23.0,20.0,35.0,27.0,18.0,18.0,15.0,19.0,19.0,23.0,19.0,27.0,27.0,22.0,24.0,33.0,34.0,36.0,34.0,43.0,33.0,36.0,43.0,37.0,32.0,32.0,36.0,23.0,22.0,32.0,20.0,26.0,31.0,21.0,18.0,13.0,18.0,48.0,30.0,29.0,41.0,53.0,41.0,43.0,48.0,44.0,58.0,41.0,42.0,53.0,43.0,43.0,46.0,42.0,32.0,32.0,27.0,30.0,36.0,27.0,18.0,19.0,23.0,40.0,31.0,24.0,28.0,27.0,26.0,21.0,20.0,14.0,20.0,13.0,14.0,14.0,9.0,4.0,8.0,3.0,4.0,2.0,5.0 C87022,38.0,39.0,38.0,71.0,54.0,50.0,73.0,62.0,50.0,63.0,58.0,66.0,62.0,59.0,58.0,46.0,49.0,52.0,50.0,48.0,38.0,35.0,47.0,58.0,46.0,48.0,56.0,58.0,53.0,67.0,70.0,64.0,70.0,80.0,73.0,73.0,61.0,91.0,67.0,72.0,53.0,52.0,52.0,49.0,50.0,52.0,44.0,48.0,43.0,54.0,52.0,59.0,46.0,52.0,52.0,54.0,48.0,55.0,61.0,70.0,59.0,59.0,50.0,62.0,50.0,32.0,45.0,38.0,47.0,37.0,33.0,38.0,32.0,34.0,34.0,36.0,39.0,35.0,40.0,25.0,42.0,24.0,17.0,24.0,16.0,20.0,24.0,12.0,14.0,11.0,13.0,6.0,8.0,6.0,6.0,10.0 C87024,24.0,27.0,27.0,21.0,24.0,19.0,29.0,36.0,18.0,34.0,25.0,28.0,27.0,24.0,21.0,24.0,24.0,23.0,16.0,20.0,19.0,28.0,19.0,15.0,24.0,28.0,37.0,29.0,33.0,30.0,31.0,48.0,34.0,26.0,30.0,40.0,36.0,33.0,35.0,27.0,25.0,28.0,33.0,30.0,16.0,21.0,20.0,15.0,19.0,23.0,19.0,29.0,19.0,25.0,24.0,25.0,29.0,34.0,26.0,22.0,24.0,23.0,27.0,19.0,27.0,25.0,11.0,26.0,21.0,16.0,13.0,10.0,24.0,10.0,15.0,9.0,13.0,13.0,17.0,7.0,13.0,9.0,9.0,9.0,5.0,3.0,4.0,3.0,2.0,4.0,5.0,1.0,2.0,3.0,1.0,1.0 C87029,53.0,50.0,63.0,60.0,53.0,72.0,56.0,86.0,86.0,84.0,79.0,77.0,82.0,78.0,84.0,86.0,70.0,85.0,72.0,67.0,77.0,67.0,60.0,62.0,76.0,75.0,72.0,62.0,86.0,82.0,84.0,72.0,95.0,103.0,97.0,90.0,91.0,93.0,107.0,85.0,111.0,104.0,73.0,88.0,109.0,74.0,78.0,65.0,73.0,80.0,67.0,74.0,87.0,80.0,80.0,92.0,84.0,90.0,81.0,82.0,97.0,83.0,73.0,82.0,78.0,76.0,76.0,85.0,70.0,72.0,69.0,62.0,69.0,50.0,54.0,54.0,49.0,57.0,43.0,49.0,46.0,38.0,33.0,21.0,33.0,23.0,27.0,20.0,23.0,18.0,17.0,17.0,16.0,11.0,8.0,18.0 C87030,33.0,42.0,54.0,43.0,41.0,39.0,45.0,48.0,51.0,45.0,41.0,41.0,56.0,46.0,47.0,58.0,54.0,65.0,57.0,52.0,45.0,34.0,39.0,42.0,45.0,58.0,43.0,58.0,61.0,52.0,53.0,52.0,71.0,71.0,71.0,49.0,73.0,64.0,72.0,66.0,62.0,56.0,47.0,59.0,53.0,69.0,57.0,47.0,43.0,63.0,56.0,60.0,51.0,80.0,69.0,72.0,71.0,51.0,70.0,67.0,57.0,69.0,76.0,62.0,70.0,49.0,63.0,61.0,62.0,64.0,50.0,43.0,61.0,52.0,57.0,63.0,55.0,73.0,61.0,36.0,45.0,39.0,39.0,26.0,24.0,27.0,34.0,23.0,16.0,11.0,17.0,15.0,4.0,6.0,8.0,19.0 C87031,23.0,22.0,15.0,19.0,18.0,12.0,20.0,28.0,29.0,26.0,16.0,21.0,26.0,29.0,27.0,27.0,16.0,23.0,16.0,15.0,22.0,20.0,15.0,24.0,20.0,22.0,18.0,22.0,21.0,25.0,35.0,33.0,34.0,31.0,31.0,30.0,36.0,27.0,35.0,19.0,21.0,32.0,22.0,11.0,27.0,22.0,21.0,19.0,13.0,27.0,15.0,15.0,15.0,28.0,22.0,33.0,38.0,23.0,24.0,19.0,35.0,24.0,26.0,24.0,33.0,20.0,34.0,22.0,24.0,23.0,26.0,21.0,20.0,16.0,14.0,24.0,11.0,18.0,23.0,15.0,16.0,19.0,15.0,12.0,11.0,11.0,5.0,9.0,10.0,8.0,3.0,4.0,1.0,2.0,2.0,3.0 C87603,20.0,21.0,27.0,23.0,28.0,20.0,17.0,21.0,25.0,23.0,20.0,27.0,25.0,16.0,26.0,18.0,21.0,29.0,29.0,22.0,32.0,22.0,27.0,27.0,28.0,22.0,36.0,22.0,30.0,42.0,48.0,27.0,29.0,33.0,41.0,29.0,39.0,33.0,22.0,25.0,28.0,23.0,35.0,24.0,21.0,27.0,14.0,14.0,33.0,22.0,25.0,17.0,30.0,29.0,29.0,24.0,23.0,29.0,36.0,23.0,28.0,23.0,29.0,17.0,22.0,25.0,18.0,12.0,15.0,6.0,19.0,14.0,18.0,15.0,9.0,13.0,19.0,17.0,18.0,7.0,12.0,5.0,4.0,8.0,10.0,7.0,5.0,5.0,4.0,3.0,6.0,4.0,1.0,2.0,,1.0 C87604,23.0,32.0,26.0,29.0,33.0,35.0,23.0,33.0,38.0,29.0,39.0,30.0,37.0,37.0,29.0,20.0,41.0,25.0,38.0,34.0,24.0,31.0,29.0,37.0,26.0,34.0,19.0,30.0,44.0,30.0,32.0,52.0,34.0,40.0,35.0,45.0,45.0,46.0,50.0,39.0,46.0,44.0,38.0,36.0,40.0,44.0,30.0,29.0,32.0,42.0,39.0,35.0,33.0,40.0,32.0,44.0,36.0,44.0,33.0,41.0,42.0,32.0,45.0,36.0,31.0,39.0,39.0,43.0,39.0,42.0,28.0,44.0,31.0,28.0,38.0,28.0,25.0,32.0,31.0,14.0,14.0,11.0,13.0,17.0,17.0,12.0,16.0,4.0,5.0,9.0,3.0,3.0,5.0,3.0,3.0,3.0 C87608,30.0,39.0,37.0,53.0,40.0,42.0,47.0,47.0,38.0,62.0,34.0,65.0,61.0,53.0,55.0,57.0,49.0,67.0,48.0,55.0,57.0,45.0,47.0,35.0,39.0,44.0,57.0,41.0,53.0,45.0,54.0,54.0,33.0,36.0,44.0,44.0,43.0,49.0,46.0,51.0,40.0,38.0,49.0,36.0,45.0,33.0,42.0,29.0,36.0,33.0,39.0,35.0,19.0,20.0,26.0,24.0,25.0,26.0,22.0,24.0,15.0,11.0,10.0,16.0,9.0,18.0,13.0,13.0,12.0,11.0,14.0,15.0,6.0,8.0,5.0,5.0,10.0,11.0,10.0,2.0,5.0,5.0,5.0,7.0,10.0,2.0,3.0,3.0,3.0,3.0,2.0,4.0,,1.0,,4.0 C87616,30.0,24.0,28.0,30.0,41.0,28.0,31.0,34.0,33.0,35.0,36.0,37.0,42.0,30.0,41.0,51.0,29.0,42.0,23.0,40.0,25.0,29.0,40.0,24.0,31.0,46.0,43.0,38.0,45.0,50.0,38.0,35.0,47.0,34.0,51.0,42.0,45.0,48.0,45.0,38.0,43.0,36.0,31.0,35.0,28.0,26.0,35.0,32.0,24.0,30.0,30.0,41.0,48.0,57.0,57.0,41.0,53.0,54.0,47.0,64.0,55.0,54.0,35.0,50.0,46.0,48.0,42.0,41.0,45.0,36.0,23.0,23.0,31.0,25.0,31.0,31.0,36.0,36.0,28.0,27.0,28.0,18.0,21.0,19.0,20.0,15.0,7.0,22.0,8.0,8.0,15.0,8.0,4.0,2.0,4.0,8.0 C87620,29.0,30.0,41.0,47.0,31.0,39.0,33.0,41.0,53.0,40.0,54.0,53.0,54.0,38.0,43.0,47.0,37.0,35.0,43.0,31.0,45.0,35.0,37.0,28.0,35.0,32.0,46.0,46.0,42.0,27.0,39.0,50.0,50.0,55.0,51.0,49.0,43.0,48.0,44.0,56.0,53.0,60.0,46.0,54.0,55.0,44.0,42.0,36.0,38.0,42.0,26.0,39.0,42.0,51.0,51.0,51.0,51.0,44.0,41.0,36.0,42.0,42.0,46.0,44.0,53.0,37.0,36.0,42.0,41.0,44.0,44.0,37.0,42.0,36.0,36.0,40.0,32.0,35.0,42.0,22.0,30.0,15.0,21.0,17.0,8.0,14.0,19.0,7.0,8.0,11.0,4.0,9.0,5.0,4.0,4.0,5.0 C87622,56.0,64.0,65.0,71.0,74.0,68.0,61.0,55.0,73.0,80.0,80.0,82.0,71.0,75.0,61.0,76.0,62.0,71.0,58.0,53.0,53.0,46.0,55.0,65.0,55.0,79.0,74.0,65.0,89.0,86.0,79.0,90.0,89.0,83.0,73.0,80.0,95.0,74.0,75.0,76.0,74.0,89.0,78.0,68.0,60.0,70.0,54.0,45.0,53.0,53.0,47.0,45.0,52.0,42.0,61.0,43.0,50.0,42.0,42.0,39.0,37.0,51.0,48.0,47.0,40.0,28.0,28.0,34.0,33.0,28.0,27.0,19.0,23.0,21.0,22.0,19.0,16.0,26.0,13.0,7.0,15.0,10.0,20.0,7.0,7.0,4.0,7.0,8.0,4.0,3.0,2.0,4.0,3.0,3.0,1.0,3.0 C88005,74.0,86.0,77.0,91.0,77.0,101.0,91.0,93.0,91.0,87.0,89.0,82.0,75.0,77.0,75.0,74.0,72.0,67.0,57.0,51.0,47.0,48.0,71.0,69.0,78.0,93.0,102.0,124.0,135.0,146.0,176.0,158.0,152.0,151.0,163.0,154.0,148.0,115.0,147.0,128.0,132.0,129.0,120.0,123.0,118.0,116.0,81.0,79.0,81.0,78.0,76.0,69.0,108.0,103.0,105.0,95.0,96.0,119.0,93.0,93.0,92.0,96.0,96.0,107.0,99.0,84.0,103.0,87.0,77.0,94.0,78.0,85.0,69.0,71.0,72.0,70.0,76.0,83.0,83.0,53.0,84.0,50.0,42.0,38.0,46.0,37.0,47.0,41.0,30.0,24.0,32.0,16.0,20.0,18.0,11.0,20.0 C88006,28.0,35.0,35.0,38.0,37.0,40.0,35.0,47.0,32.0,44.0,32.0,37.0,42.0,40.0,27.0,40.0,36.0,36.0,31.0,22.0,32.0,34.0,30.0,43.0,30.0,46.0,42.0,47.0,56.0,51.0,61.0,62.0,56.0,57.0,77.0,65.0,82.0,62.0,53.0,52.0,49.0,34.0,41.0,48.0,29.0,38.0,38.0,39.0,28.0,30.0,18.0,37.0,35.0,25.0,34.0,35.0,33.0,27.0,29.0,29.0,27.0,32.0,24.0,21.0,26.0,20.0,21.0,18.0,17.0,14.0,17.0,15.0,13.0,10.0,10.0,20.0,11.0,13.0,20.0,19.0,17.0,23.0,21.0,12.0,7.0,9.0,6.0,11.0,9.0,5.0,2.0,4.0,1.0,,1.0,2.0 C88007,44.0,46.0,51.0,61.0,64.0,67.0,46.0,59.0,65.0,68.0,49.0,71.0,69.0,50.0,59.0,41.0,53.0,59.0,237.0,557.0,656.0,670.0,623.0,642.0,679.0,639.0,583.0,460.0,397.0,352.0,279.0,237.0,205.0,182.0,163.0,169.0,107.0,135.0,134.0,120.0,113.0,113.0,95.0,100.0,95.0,78.0,91.0,81.0,70.0,61.0,66.0,54.0,61.0,80.0,63.0,42.0,48.0,38.0,47.0,35.0,24.0,40.0,39.0,42.0,34.0,39.0,35.0,29.0,31.0,30.0,33.0,39.0,25.0,23.0,26.0,25.0,19.0,26.0,23.0,12.0,9.0,9.0,10.0,16.0,10.0,18.0,16.0,8.0,13.0,10.0,5.0,9.0,4.0,11.0,11.0,18.0 C88008,74.0,84.0,83.0,88.0,87.0,99.0,97.0,113.0,107.0,113.0,102.0,107.0,104.0,105.0,106.0,125.0,103.0,119.0,103.0,93.0,104.0,109.0,96.0,99.0,90.0,98.0,96.0,116.0,126.0,108.0,120.0,112.0,106.0,108.0,97.0,114.0,132.0,111.0,107.0,114.0,118.0,77.0,88.0,81.0,87.0,89.0,86.0,59.0,77.0,74.0,89.0,72.0,79.0,84.0,79.0,70.0,69.0,74.0,65.0,77.0,60.0,60.0,62.0,64.0,67.0,52.0,49.0,54.0,27.0,44.0,50.0,31.0,33.0,42.0,38.0,35.0,31.0,30.0,24.0,43.0,24.0,34.0,24.0,28.0,16.0,21.0,20.0,10.0,21.0,13.0,12.0,9.0,6.0,5.0,6.0,6.0 C88009,30.0,41.0,28.0,36.0,32.0,27.0,29.0,37.0,40.0,34.0,31.0,51.0,35.0,39.0,38.0,34.0,40.0,33.0,40.0,36.0,39.0,48.0,33.0,31.0,41.0,35.0,46.0,37.0,44.0,53.0,47.0,48.0,46.0,45.0,61.0,57.0,47.0,36.0,46.0,41.0,32.0,50.0,38.0,40.0,38.0,33.0,40.0,33.0,30.0,42.0,31.0,37.0,37.0,41.0,56.0,39.0,42.0,43.0,41.0,33.0,31.0,32.0,35.0,45.0,34.0,30.0,25.0,30.0,26.0,27.0,29.0,25.0,14.0,16.0,32.0,16.0,29.0,29.0,23.0,19.0,17.0,15.0,19.0,16.0,11.0,12.0,15.0,11.0,11.0,7.0,9.0,5.0,7.0,,,3.0 C88010,47.0,39.0,50.0,50.0,49.0,63.0,63.0,56.0,79.0,71.0,69.0,76.0,63.0,80.0,78.0,77.0,85.0,62.0,67.0,68.0,61.0,69.0,66.0,67.0,70.0,70.0,77.0,60.0,70.0,80.0,86.0,66.0,74.0,80.0,77.0,76.0,84.0,78.0,94.0,83.0,84.0,83.0,92.0,86.0,97.0,70.0,72.0,87.0,74.0,83.0,74.0,87.0,98.0,110.0,104.0,111.0,102.0,87.0,111.0,102.0,106.0,103.0,107.0,108.0,102.0,112.0,91.0,97.0,109.0,100.0,84.0,86.0,93.0,107.0,96.0,88.0,100.0,97.0,109.0,76.0,88.0,72.0,61.0,51.0,54.0,35.0,36.0,45.0,36.0,24.0,27.0,27.0,19.0,9.0,8.0,27.0 C88011,27.0,27.0,31.0,28.0,32.0,31.0,40.0,44.0,33.0,33.0,38.0,33.0,33.0,36.0,44.0,34.0,41.0,32.0,38.0,35.0,39.0,24.0,29.0,26.0,24.0,39.0,29.0,25.0,26.0,27.0,38.0,33.0,45.0,38.0,37.0,39.0,44.0,50.0,22.0,50.0,35.0,38.0,31.0,27.0,33.0,30.0,28.0,24.0,21.0,23.0,17.0,27.0,25.0,34.0,23.0,32.0,28.0,28.0,25.0,30.0,28.0,21.0,26.0,16.0,24.0,24.0,27.0,19.0,24.0,12.0,17.0,13.0,8.0,22.0,13.0,14.0,17.0,15.0,21.0,7.0,7.0,7.0,11.0,9.0,5.0,6.0,7.0,6.0,9.0,5.0,3.0,4.0,3.0,3.0,,5.0 C88014,62.0,54.0,58.0,61.0,55.0,75.0,66.0,63.0,60.0,74.0,64.0,69.0,64.0,67.0,73.0,66.0,69.0,63.0,70.0,51.0,46.0,44.0,40.0,43.0,49.0,72.0,49.0,65.0,72.0,85.0,80.0,65.0,96.0,86.0,83.0,87.0,76.0,81.0,79.0,64.0,72.0,67.0,65.0,56.0,67.0,73.0,50.0,52.0,52.0,60.0,43.0,31.0,52.0,45.0,57.0,63.0,61.0,73.0,60.0,56.0,54.0,56.0,63.0,56.0,36.0,47.0,54.0,52.0,56.0,33.0,31.0,32.0,45.0,38.0,34.0,34.0,34.0,34.0,34.0,18.0,26.0,29.0,23.0,24.0,22.0,16.0,16.0,17.0,8.0,17.0,10.0,9.0,11.0,2.0,6.0,12.0 C88015,70.0,106.0,90.0,91.0,88.0,92.0,81.0,121.0,98.0,106.0,100.0,111.0,139.0,127.0,132.0,111.0,128.0,134.0,94.0,96.0,84.0,80.0,102.0,127.0,93.0,93.0,114.0,116.0,98.0,115.0,132.0,121.0,111.0,138.0,131.0,129.0,118.0,132.0,113.0,113.0,97.0,95.0,103.0,118.0,118.0,117.0,116.0,100.0,99.0,113.0,96.0,126.0,127.0,122.0,139.0,113.0,116.0,147.0,141.0,141.0,110.0,132.0,135.0,112.0,94.0,123.0,119.0,105.0,96.0,100.0,85.0,103.0,101.0,99.0,96.0,109.0,105.0,104.0,97.0,93.0,107.0,72.0,63.0,66.0,52.0,61.0,59.0,47.0,38.0,42.0,25.0,33.0,19.0,15.0,28.0,44.0 C88016,52.0,73.0,51.0,52.0,80.0,69.0,63.0,59.0,75.0,83.0,80.0,92.0,67.0,87.0,87.0,79.0,70.0,85.0,62.0,55.0,52.0,43.0,51.0,57.0,50.0,64.0,67.0,68.0,68.0,67.0,77.0,85.0,77.0,89.0,95.0,69.0,94.0,97.0,96.0,93.0,106.0,94.0,112.0,91.0,90.0,100.0,98.0,95.0,77.0,77.0,87.0,82.0,91.0,80.0,96.0,79.0,85.0,69.0,94.0,80.0,88.0,84.0,73.0,82.0,76.0,69.0,78.0,78.0,79.0,71.0,63.0,63.0,80.0,86.0,75.0,73.0,66.0,73.0,80.0,65.0,69.0,72.0,51.0,53.0,40.0,35.0,37.0,35.0,33.0,23.0,32.0,22.0,10.0,14.0,19.0,36.0 C88018,28.0,35.0,34.0,27.0,32.0,42.0,34.0,38.0,44.0,37.0,45.0,35.0,42.0,49.0,40.0,39.0,51.0,37.0,36.0,30.0,28.0,32.0,30.0,44.0,40.0,56.0,68.0,60.0,79.0,67.0,67.0,64.0,80.0,63.0,62.0,68.0,53.0,71.0,66.0,68.0,61.0,70.0,39.0,65.0,63.0,60.0,52.0,49.0,54.0,45.0,42.0,63.0,44.0,71.0,68.0,64.0,71.0,71.0,58.0,64.0,57.0,62.0,63.0,69.0,58.0,50.0,44.0,38.0,45.0,38.0,46.0,48.0,40.0,38.0,43.0,37.0,69.0,67.0,43.0,43.0,47.0,42.0,32.0,43.0,26.0,25.0,25.0,29.0,19.0,12.0,13.0,15.0,11.0,3.0,8.0,8.0 C88019,32.0,50.0,54.0,65.0,48.0,47.0,53.0,60.0,84.0,77.0,72.0,68.0,53.0,75.0,60.0,67.0,62.0,68.0,70.0,56.0,50.0,49.0,50.0,49.0,56.0,57.0,51.0,66.0,71.0,64.0,80.0,60.0,56.0,60.0,74.0,57.0,65.0,69.0,71.0,63.0,60.0,65.0,57.0,54.0,56.0,53.0,51.0,42.0,43.0,42.0,41.0,56.0,56.0,53.0,57.0,57.0,49.0,57.0,61.0,36.0,51.0,38.0,53.0,39.0,35.0,28.0,37.0,38.0,30.0,29.0,24.0,38.0,26.0,24.0,18.0,26.0,26.0,33.0,27.0,31.0,33.0,26.0,16.0,14.0,18.0,16.0,15.0,14.0,12.0,11.0,10.0,7.0,10.0,7.0,5.0,13.0 C88020,32.0,47.0,53.0,49.0,32.0,52.0,50.0,52.0,60.0,56.0,49.0,71.0,68.0,67.0,52.0,59.0,53.0,50.0,41.0,47.0,46.0,47.0,40.0,35.0,34.0,41.0,53.0,50.0,56.0,47.0,60.0,58.0,64.0,77.0,68.0,69.0,66.0,75.0,78.0,64.0,57.0,64.0,56.0,45.0,46.0,54.0,45.0,52.0,42.0,40.0,36.0,53.0,39.0,53.0,44.0,53.0,45.0,40.0,36.0,52.0,39.0,52.0,26.0,48.0,41.0,45.0,26.0,28.0,29.0,25.0,34.0,30.0,16.0,31.0,26.0,19.0,21.0,22.0,24.0,20.0,17.0,16.0,10.0,11.0,10.0,9.0,13.0,13.0,5.0,9.0,3.0,3.0,5.0,4.0,3.0,2.0 C88021,32.0,40.0,34.0,23.0,38.0,37.0,31.0,32.0,29.0,36.0,35.0,41.0,31.0,45.0,32.0,35.0,39.0,39.0,34.0,31.0,29.0,33.0,24.0,36.0,44.0,48.0,50.0,47.0,50.0,56.0,50.0,61.0,57.0,60.0,70.0,64.0,66.0,55.0,62.0,43.0,44.0,46.0,46.0,45.0,37.0,34.0,43.0,24.0,33.0,25.0,35.0,39.0,42.0,45.0,52.0,53.0,55.0,49.0,51.0,66.0,48.0,52.0,55.0,56.0,64.0,51.0,54.0,48.0,51.0,42.0,33.0,40.0,39.0,30.0,47.0,39.0,37.0,43.0,48.0,41.0,30.0,38.0,27.0,23.0,21.0,23.0,20.0,23.0,16.0,11.0,13.0,3.0,3.0,6.0,5.0,4.0 C88022,21.0,22.0,21.0,25.0,16.0,21.0,21.0,25.0,22.0,22.0,29.0,18.0,21.0,23.0,31.0,22.0,19.0,22.0,29.0,22.0,24.0,25.0,21.0,27.0,29.0,26.0,35.0,41.0,27.0,36.0,35.0,41.0,40.0,42.0,34.0,40.0,29.0,38.0,30.0,31.0,29.0,28.0,39.0,23.0,26.0,30.0,34.0,18.0,30.0,30.0,24.0,17.0,30.0,40.0,45.0,23.0,40.0,43.0,40.0,29.0,34.0,29.0,30.0,31.0,47.0,29.0,43.0,32.0,31.0,31.0,39.0,24.0,33.0,27.0,23.0,36.0,31.0,47.0,36.0,40.0,34.0,27.0,31.0,15.0,20.0,11.0,13.0,18.0,13.0,11.0,7.0,7.0,4.0,3.0,3.0,6.0 C88023,35.0,39.0,34.0,37.0,41.0,40.0,44.0,44.0,51.0,62.0,57.0,40.0,61.0,52.0,38.0,53.0,52.0,44.0,41.0,50.0,44.0,44.0,52.0,46.0,46.0,61.0,50.0,51.0,58.0,44.0,69.0,59.0,66.0,66.0,74.0,60.0,68.0,70.0,61.0,47.0,55.0,53.0,65.0,52.0,53.0,65.0,67.0,57.0,45.0,60.0,63.0,65.0,73.0,67.0,69.0,66.0,78.0,78.0,89.0,83.0,75.0,90.0,76.0,77.0,79.0,69.0,79.0,69.0,63.0,54.0,52.0,45.0,51.0,51.0,58.0,42.0,53.0,45.0,60.0,26.0,38.0,34.0,28.0,23.0,23.0,18.0,22.0,12.0,13.0,20.0,11.0,7.0,6.0,6.0,3.0,11.0 C88025,29.0,46.0,33.0,33.0,50.0,55.0,53.0,52.0,60.0,61.0,39.0,71.0,56.0,46.0,52.0,48.0,42.0,44.0,45.0,46.0,40.0,38.0,48.0,46.0,55.0,67.0,67.0,58.0,72.0,61.0,77.0,86.0,72.0,86.0,65.0,56.0,68.0,59.0,58.0,63.0,62.0,59.0,44.0,61.0,45.0,61.0,57.0,39.0,55.0,51.0,60.0,52.0,54.0,59.0,72.0,64.0,75.0,65.0,70.0,66.0,68.0,64.0,56.0,74.0,61.0,50.0,51.0,56.0,40.0,32.0,39.0,46.0,41.0,41.0,35.0,31.0,48.0,55.0,40.0,32.0,54.0,41.0,31.0,19.0,25.0,23.0,21.0,26.0,12.0,9.0,8.0,10.0,7.0,7.0,6.0,19.0 C88026,62.0,71.0,69.0,69.0,77.0,85.0,79.0,99.0,89.0,84.0,85.0,83.0,106.0,95.0,93.0,86.0,99.0,82.0,74.0,56.0,53.0,64.0,60.0,89.0,77.0,78.0,72.0,82.0,100.0,84.0,109.0,118.0,118.0,120.0,121.0,119.0,141.0,126.0,118.0,147.0,138.0,111.0,105.0,118.0,107.0,108.0,108.0,86.0,78.0,88.0,78.0,81.0,99.0,98.0,102.0,80.0,99.0,91.0,84.0,92.0,82.0,88.0,86.0,72.0,65.0,70.0,63.0,68.0,58.0,60.0,48.0,51.0,36.0,41.0,42.0,44.0,49.0,51.0,48.0,27.0,44.0,37.0,31.0,26.0,27.0,19.0,14.0,23.0,20.0,18.0,9.0,11.0,6.0,18.0,8.0,13.0 C88027,40.0,22.0,39.0,34.0,39.0,46.0,38.0,41.0,39.0,31.0,38.0,36.0,48.0,43.0,47.0,47.0,41.0,51.0,43.0,46.0,42.0,42.0,34.0,34.0,37.0,36.0,34.0,43.0,31.0,31.0,27.0,40.0,42.0,30.0,41.0,31.0,41.0,43.0,37.0,36.0,39.0,33.0,19.0,24.0,30.0,27.0,33.0,26.0,34.0,26.0,31.0,31.0,21.0,27.0,30.0,19.0,22.0,26.0,24.0,24.0,25.0,18.0,19.0,16.0,15.0,19.0,20.0,19.0,12.0,13.0,19.0,14.0,9.0,12.0,11.0,11.0,11.0,10.0,10.0,8.0,10.0,10.0,6.0,9.0,8.0,7.0,9.0,6.0,3.0,2.0,7.0,6.0,3.0,,1.0,10.0 C88028,28.0,45.0,38.0,34.0,37.0,42.0,38.0,45.0,80.0,63.0,57.0,45.0,69.0,61.0,64.0,73.0,64.0,58.0,53.0,42.0,44.0,31.0,33.0,57.0,37.0,53.0,57.0,52.0,55.0,59.0,40.0,42.0,54.0,66.0,56.0,55.0,54.0,64.0,80.0,66.0,66.0,61.0,72.0,82.0,60.0,87.0,78.0,61.0,62.0,62.0,59.0,57.0,84.0,61.0,69.0,68.0,80.0,57.0,52.0,62.0,58.0,61.0,67.0,50.0,46.0,55.0,57.0,57.0,42.0,45.0,45.0,44.0,57.0,44.0,45.0,61.0,55.0,69.0,65.0,42.0,46.0,50.0,47.0,33.0,31.0,25.0,35.0,26.0,19.0,23.0,17.0,18.0,15.0,19.0,9.0,19.0 C88030,32.0,38.0,40.0,39.0,46.0,43.0,47.0,37.0,46.0,35.0,49.0,44.0,45.0,49.0,43.0,48.0,38.0,36.0,51.0,41.0,58.0,47.0,47.0,47.0,64.0,72.0,93.0,83.0,87.0,98.0,74.0,72.0,86.0,84.0,83.0,67.0,83.0,89.0,58.0,71.0,55.0,48.0,53.0,55.0,59.0,50.0,44.0,34.0,43.0,43.0,29.0,32.0,46.0,54.0,57.0,28.0,60.0,43.0,54.0,36.0,54.0,37.0,50.0,35.0,42.0,36.0,39.0,31.0,42.0,34.0,26.0,26.0,19.0,24.0,19.0,28.0,20.0,21.0,20.0,22.0,14.0,18.0,20.0,11.0,14.0,18.0,8.0,14.0,10.0,5.0,7.0,3.0,5.0,2.0,4.0,5.0 C88031,48.0,37.0,45.0,64.0,58.0,80.0,65.0,88.0,84.0,88.0,113.0,80.0,87.0,99.0,82.0,97.0,84.0,100.0,73.0,65.0,59.0,80.0,67.0,91.0,108.0,107.0,102.0,134.0,113.0,99.0,117.0,106.0,112.0,84.0,97.0,89.0,96.0,92.0,98.0,92.0,107.0,95.0,85.0,96.0,87.0,108.0,84.0,91.0,65.0,65.0,88.0,60.0,67.0,58.0,71.0,69.0,68.0,72.0,81.0,72.0,77.0,66.0,67.0,59.0,71.0,70.0,62.0,79.0,59.0,66.0,58.0,44.0,62.0,64.0,47.0,50.0,60.0,49.0,61.0,49.0,48.0,45.0,41.0,26.0,30.0,45.0,36.0,37.0,23.0,20.0,21.0,15.0,15.0,17.0,9.0,16.0 C88032,13.0,20.0,20.0,24.0,24.0,21.0,28.0,30.0,27.0,25.0,20.0,39.0,34.0,29.0,23.0,46.0,30.0,27.0,32.0,25.0,19.0,25.0,24.0,19.0,23.0,33.0,12.0,25.0,26.0,24.0,30.0,28.0,35.0,30.0,37.0,46.0,37.0,44.0,37.0,40.0,45.0,35.0,26.0,16.0,40.0,31.0,26.0,18.0,37.0,30.0,34.0,34.0,28.0,39.0,40.0,49.0,45.0,52.0,38.0,42.0,26.0,41.0,41.0,43.0,41.0,45.0,37.0,46.0,33.0,36.0,36.0,32.0,22.0,32.0,24.0,32.0,40.0,35.0,44.0,26.0,34.0,19.0,25.0,34.0,24.0,24.0,19.0,32.0,13.0,17.0,16.0,15.0,14.0,12.0,4.0,16.0 C88034,14.0,29.0,28.0,37.0,41.0,42.0,44.0,40.0,51.0,45.0,47.0,56.0,45.0,50.0,59.0,53.0,45.0,66.0,60.0,37.0,33.0,29.0,37.0,43.0,37.0,28.0,43.0,42.0,35.0,35.0,36.0,43.0,36.0,35.0,34.0,52.0,44.0,38.0,57.0,53.0,60.0,67.0,71.0,56.0,77.0,54.0,55.0,67.0,59.0,65.0,59.0,70.0,64.0,73.0,73.0,41.0,73.0,70.0,77.0,70.0,79.0,74.0,64.0,89.0,75.0,73.0,78.0,72.0,63.0,72.0,61.0,82.0,79.0,80.0,59.0,72.0,58.0,74.0,60.0,56.0,49.0,36.0,33.0,32.0,20.0,20.0,20.0,23.0,17.0,12.0,17.0,13.0,11.0,5.0,9.0,11.0 C88035,63.0,77.0,67.0,92.0,77.0,75.0,103.0,77.0,96.0,75.0,86.0,71.0,87.0,107.0,94.0,89.0,94.0,82.0,98.0,89.0,96.0,94.0,74.0,72.0,64.0,75.0,85.0,92.0,97.0,87.0,87.0,72.0,90.0,72.0,75.0,76.0,84.0,77.0,71.0,84.0,77.0,73.0,76.0,54.0,70.0,63.0,63.0,54.0,55.0,52.0,59.0,42.0,57.0,52.0,63.0,64.0,51.0,59.0,61.0,67.0,50.0,48.0,43.0,43.0,53.0,44.0,49.0,46.0,36.0,37.0,44.0,27.0,22.0,25.0,17.0,22.0,25.0,28.0,27.0,25.0,23.0,20.0,13.0,14.0,14.0,17.0,9.0,14.0,9.0,7.0,4.0,4.0,8.0,5.0,2.0,7.0 C88036,57.0,61.0,52.0,73.0,70.0,50.0,70.0,67.0,72.0,74.0,60.0,67.0,69.0,73.0,51.0,74.0,54.0,61.0,59.0,54.0,39.0,43.0,33.0,45.0,53.0,58.0,55.0,66.0,72.0,67.0,86.0,79.0,105.0,95.0,91.0,90.0,100.0,101.0,85.0,83.0,76.0,104.0,75.0,69.0,70.0,71.0,59.0,60.0,55.0,61.0,65.0,75.0,63.0,63.0,66.0,83.0,70.0,68.0,55.0,77.0,65.0,80.0,53.0,66.0,63.0,62.0,54.0,41.0,54.0,33.0,52.0,42.0,41.0,44.0,49.0,46.0,44.0,42.0,54.0,41.0,51.0,33.0,40.0,25.0,28.0,20.0,30.0,19.0,27.0,20.0,12.0,11.0,7.0,3.0,3.0,14.0 C88037,68.0,56.0,66.0,75.0,82.0,80.0,70.0,86.0,83.0,76.0,87.0,94.0,92.0,83.0,88.0,83.0,86.0,98.0,92.0,103.0,93.0,109.0,86.0,110.0,139.0,129.0,125.0,103.0,123.0,109.0,97.0,100.0,120.0,103.0,107.0,94.0,96.0,98.0,96.0,101.0,81.0,94.0,85.0,92.0,80.0,76.0,88.0,79.0,46.0,67.0,64.0,74.0,75.0,75.0,88.0,88.0,74.0,80.0,89.0,74.0,69.0,69.0,73.0,72.0,54.0,58.0,56.0,61.0,56.0,63.0,62.0,65.0,53.0,48.0,68.0,41.0,63.0,59.0,50.0,57.0,60.0,46.0,46.0,43.0,35.0,40.0,31.0,29.0,19.0,29.0,15.0,9.0,12.0,12.0,11.0,30.0 C88038,14.0,19.0,24.0,17.0,29.0,24.0,19.0,26.0,36.0,26.0,31.0,38.0,30.0,25.0,38.0,31.0,31.0,41.0,37.0,31.0,27.0,42.0,32.0,32.0,34.0,43.0,39.0,44.0,30.0,45.0,33.0,35.0,31.0,45.0,48.0,43.0,39.0,40.0,40.0,32.0,51.0,44.0,33.0,30.0,41.0,27.0,33.0,33.0,31.0,19.0,31.0,39.0,33.0,32.0,37.0,36.0,38.0,41.0,35.0,40.0,32.0,38.0,29.0,30.0,28.0,34.0,23.0,34.0,28.0,22.0,31.0,23.0,22.0,25.0,17.0,21.0,21.0,29.0,22.0,21.0,27.0,20.0,15.0,16.0,17.0,13.0,17.0,12.0,10.0,9.0,7.0,6.0,5.0,4.0,4.0,8.0 C88039,32.0,41.0,40.0,40.0,52.0,50.0,59.0,61.0,47.0,50.0,49.0,56.0,46.0,53.0,44.0,53.0,52.0,40.0,40.0,39.0,46.0,37.0,49.0,37.0,30.0,51.0,36.0,49.0,52.0,69.0,57.0,61.0,66.0,72.0,68.0,73.0,75.0,66.0,50.0,59.0,59.0,60.0,67.0,53.0,57.0,59.0,48.0,49.0,48.0,45.0,54.0,46.0,56.0,60.0,73.0,59.0,61.0,60.0,58.0,60.0,58.0,61.0,57.0,50.0,53.0,55.0,54.0,48.0,45.0,49.0,43.0,39.0,52.0,48.0,52.0,37.0,48.0,46.0,61.0,54.0,31.0,35.0,37.0,30.0,29.0,29.0,21.0,27.0,17.0,15.0,18.0,14.0,6.0,14.0,7.0,9.0 C88040,18.0,33.0,19.0,18.0,17.0,26.0,30.0,39.0,23.0,45.0,28.0,32.0,44.0,41.0,27.0,37.0,39.0,31.0,30.0,20.0,24.0,26.0,24.0,22.0,24.0,34.0,33.0,29.0,21.0,41.0,35.0,38.0,46.0,31.0,33.0,36.0,44.0,32.0,36.0,30.0,34.0,42.0,40.0,36.0,45.0,38.0,40.0,45.0,43.0,38.0,41.0,43.0,46.0,46.0,56.0,51.0,40.0,48.0,48.0,41.0,43.0,45.0,37.0,58.0,48.0,54.0,41.0,29.0,34.0,35.0,27.0,21.0,39.0,41.0,40.0,30.0,32.0,37.0,41.0,33.0,28.0,20.0,18.0,18.0,21.0,12.0,11.0,12.0,5.0,14.0,2.0,17.0,6.0,2.0,2.0,12.0 C88041,71.0,72.0,58.0,72.0,80.0,91.0,71.0,76.0,62.0,71.0,70.0,70.0,46.0,73.0,60.0,61.0,54.0,48.0,60.0,53.0,40.0,40.0,55.0,42.0,69.0,71.0,73.0,78.0,92.0,101.0,113.0,107.0,109.0,114.0,140.0,118.0,107.0,103.0,115.0,103.0,111.0,96.0,101.0,96.0,101.0,84.0,71.0,83.0,77.0,62.0,77.0,70.0,82.0,75.0,68.0,90.0,80.0,84.0,87.0,84.0,73.0,89.0,91.0,75.0,71.0,66.0,65.0,69.0,84.0,77.0,68.0,55.0,54.0,62.0,52.0,67.0,70.0,64.0,54.0,63.0,46.0,50.0,26.0,34.0,25.0,37.0,21.0,26.0,22.0,23.0,27.0,13.0,11.0,12.0,4.0,26.0 C88043,36.0,59.0,55.0,47.0,48.0,50.0,54.0,61.0,69.0,69.0,68.0,61.0,57.0,72.0,53.0,65.0,65.0,82.0,61.0,49.0,58.0,50.0,52.0,56.0,51.0,64.0,52.0,73.0,60.0,83.0,70.0,84.0,94.0,81.0,87.0,101.0,65.0,97.0,85.0,71.0,71.0,90.0,78.0,77.0,97.0,81.0,82.0,99.0,81.0,79.0,84.0,77.0,64.0,93.0,82.0,78.0,88.0,63.0,64.0,66.0,67.0,70.0,67.0,80.0,56.0,51.0,45.0,43.0,60.0,45.0,43.0,56.0,40.0,19.0,42.0,39.0,37.0,44.0,41.0,35.0,32.0,25.0,21.0,22.0,10.0,23.0,14.0,14.0,12.0,7.0,16.0,8.0,6.0,3.0,3.0,6.0 C88044,18.0,24.0,18.0,24.0,16.0,22.0,41.0,29.0,33.0,39.0,33.0,25.0,34.0,54.0,31.0,46.0,43.0,43.0,30.0,24.0,26.0,23.0,25.0,19.0,31.0,31.0,30.0,28.0,34.0,25.0,41.0,31.0,29.0,36.0,41.0,30.0,43.0,44.0,41.0,33.0,50.0,38.0,35.0,45.0,42.0,43.0,44.0,42.0,34.0,47.0,42.0,35.0,37.0,38.0,39.0,34.0,39.0,25.0,27.0,35.0,32.0,23.0,29.0,40.0,23.0,35.0,23.0,25.0,26.0,25.0,25.0,31.0,24.0,22.0,21.0,17.0,29.0,26.0,23.0,23.0,22.0,16.0,16.0,13.0,14.0,12.0,9.0,14.0,10.0,20.0,5.0,12.0,7.0,4.0,9.0,15.0 C88045,19.0,31.0,38.0,35.0,35.0,44.0,42.0,36.0,44.0,40.0,46.0,43.0,62.0,36.0,49.0,49.0,57.0,54.0,57.0,47.0,45.0,42.0,31.0,21.0,41.0,38.0,56.0,50.0,57.0,57.0,54.0,62.0,38.0,69.0,62.0,65.0,80.0,69.0,71.0,69.0,60.0,64.0,62.0,57.0,60.0,58.0,50.0,55.0,49.0,55.0,51.0,47.0,64.0,60.0,79.0,64.0,73.0,63.0,64.0,69.0,74.0,57.0,72.0,67.0,78.0,56.0,54.0,48.0,43.0,41.0,44.0,58.0,38.0,44.0,37.0,34.0,45.0,36.0,47.0,31.0,45.0,34.0,35.0,27.0,30.0,31.0,23.0,16.0,21.0,18.0,14.0,9.0,14.0,10.0,2.0,7.0 C88046,30.0,36.0,43.0,46.0,32.0,42.0,37.0,40.0,44.0,38.0,36.0,44.0,48.0,43.0,36.0,37.0,36.0,39.0,27.0,30.0,28.0,28.0,27.0,27.0,30.0,26.0,32.0,24.0,18.0,32.0,36.0,48.0,41.0,29.0,54.0,48.0,56.0,59.0,50.0,52.0,56.0,62.0,57.0,64.0,53.0,47.0,57.0,45.0,40.0,36.0,45.0,50.0,41.0,45.0,42.0,48.0,45.0,49.0,40.0,56.0,46.0,49.0,59.0,45.0,31.0,36.0,43.0,42.0,41.0,35.0,39.0,31.0,34.0,35.0,28.0,36.0,34.0,38.0,40.0,27.0,27.0,34.0,27.0,18.0,15.0,16.0,17.0,12.0,11.0,12.0,8.0,8.0,7.0,4.0,6.0,3.0 C88047,31.0,32.0,41.0,47.0,41.0,47.0,58.0,45.0,38.0,39.0,55.0,39.0,58.0,43.0,52.0,45.0,38.0,48.0,41.0,48.0,30.0,44.0,44.0,41.0,35.0,37.0,62.0,51.0,66.0,62.0,60.0,49.0,61.0,67.0,54.0,65.0,56.0,60.0,69.0,55.0,60.0,55.0,43.0,48.0,41.0,35.0,56.0,41.0,37.0,52.0,36.0,42.0,37.0,52.0,49.0,43.0,52.0,47.0,51.0,51.0,57.0,44.0,60.0,51.0,45.0,39.0,45.0,30.0,34.0,32.0,36.0,31.0,30.0,25.0,28.0,24.0,32.0,33.0,29.0,34.0,24.0,31.0,30.0,15.0,22.0,18.0,11.0,13.0,9.0,5.0,3.0,4.0,5.0,,4.0,4.0 C88048,50.0,47.0,54.0,60.0,45.0,61.0,66.0,63.0,68.0,56.0,72.0,57.0,84.0,59.0,54.0,61.0,57.0,51.0,54.0,60.0,53.0,51.0,51.0,50.0,45.0,61.0,56.0,61.0,60.0,68.0,69.0,66.0,63.0,54.0,78.0,70.0,64.0,58.0,66.0,41.0,68.0,58.0,61.0,43.0,38.0,45.0,43.0,33.0,38.0,26.0,35.0,26.0,32.0,39.0,37.0,27.0,36.0,34.0,28.0,23.0,38.0,31.0,36.0,35.0,32.0,27.0,20.0,20.0,17.0,17.0,20.0,22.0,13.0,19.0,18.0,13.0,18.0,24.0,21.0,12.0,18.0,17.0,4.0,12.0,11.0,8.0,6.0,10.0,10.0,6.0,2.0,2.0,5.0,,1.0,3.0 C88049,29.0,29.0,31.0,29.0,20.0,22.0,26.0,36.0,26.0,26.0,25.0,36.0,26.0,30.0,30.0,36.0,28.0,32.0,25.0,21.0,32.0,26.0,23.0,40.0,28.0,30.0,35.0,43.0,44.0,48.0,33.0,58.0,42.0,41.0,47.0,46.0,45.0,42.0,52.0,47.0,29.0,41.0,27.0,36.0,34.0,39.0,32.0,29.0,28.0,29.0,46.0,42.0,50.0,46.0,52.0,47.0,48.0,56.0,48.0,34.0,37.0,43.0,53.0,41.0,49.0,31.0,45.0,32.0,25.0,30.0,26.0,18.0,17.0,29.0,26.0,29.0,31.0,27.0,29.0,27.0,30.0,28.0,28.0,15.0,14.0,10.0,17.0,18.0,15.0,14.0,14.0,5.0,4.0,5.0,,11.0 C88050,7.0,14.0,15.0,15.0,13.0,13.0,21.0,15.0,15.0,17.0,16.0,22.0,17.0,20.0,24.0,11.0,15.0,23.0,12.0,16.0,16.0,15.0,15.0,17.0,19.0,18.0,16.0,19.0,24.0,20.0,20.0,25.0,21.0,32.0,21.0,27.0,19.0,33.0,17.0,29.0,22.0,19.0,21.0,20.0,22.0,13.0,15.0,12.0,20.0,19.0,22.0,26.0,21.0,32.0,28.0,30.0,27.0,25.0,19.0,23.0,28.0,35.0,30.0,27.0,38.0,25.0,18.0,16.0,20.0,19.0,25.0,23.0,15.0,20.0,24.0,15.0,21.0,26.0,21.0,24.0,13.0,24.0,19.0,7.0,16.0,13.0,10.0,15.0,5.0,9.0,6.0,2.0,3.0,4.0,1.0,4.0 C88051,58.0,65.0,69.0,69.0,55.0,71.0,66.0,68.0,75.0,78.0,77.0,75.0,72.0,57.0,77.0,75.0,67.0,82.0,96.0,72.0,63.0,69.0,61.0,69.0,78.0,64.0,70.0,74.0,77.0,54.0,55.0,52.0,65.0,65.0,54.0,70.0,63.0,58.0,54.0,64.0,49.0,55.0,53.0,50.0,48.0,55.0,53.0,41.0,39.0,45.0,39.0,37.0,45.0,35.0,41.0,35.0,30.0,28.0,31.0,31.0,30.0,24.0,24.0,18.0,24.0,26.0,16.0,18.0,18.0,17.0,18.0,20.0,17.0,19.0,14.0,10.0,8.0,12.0,6.0,8.0,10.0,12.0,10.0,12.0,9.0,4.0,10.0,8.0,7.0,2.0,2.0,3.0,2.0,4.0,3.0,11.0 C88052,54.0,55.0,58.0,76.0,66.0,46.0,47.0,57.0,57.0,63.0,46.0,44.0,58.0,48.0,58.0,43.0,51.0,51.0,41.0,30.0,28.0,42.0,45.0,59.0,66.0,83.0,77.0,85.0,86.0,83.0,92.0,90.0,83.0,93.0,95.0,107.0,89.0,108.0,99.0,78.0,85.0,93.0,66.0,103.0,82.0,59.0,73.0,83.0,69.0,49.0,60.0,52.0,46.0,69.0,64.0,79.0,72.0,62.0,80.0,65.0,63.0,69.0,73.0,58.0,56.0,63.0,58.0,49.0,49.0,55.0,59.0,52.0,59.0,44.0,43.0,48.0,49.0,44.0,42.0,36.0,46.0,29.0,31.0,26.0,25.0,24.0,26.0,19.0,19.0,16.0,12.0,17.0,12.0,8.0,6.0,22.0 C88053,16.0,16.0,18.0,18.0,13.0,25.0,20.0,15.0,29.0,18.0,30.0,28.0,28.0,27.0,20.0,31.0,26.0,34.0,25.0,14.0,11.0,17.0,12.0,12.0,12.0,12.0,12.0,16.0,14.0,12.0,13.0,21.0,10.0,21.0,21.0,22.0,22.0,21.0,20.0,22.0,26.0,34.0,27.0,29.0,28.0,29.0,37.0,24.0,27.0,27.0,23.0,35.0,28.0,27.0,25.0,32.0,37.0,29.0,38.0,28.0,25.0,26.0,29.0,20.0,27.0,25.0,26.0,26.0,28.0,18.0,20.0,33.0,25.0,20.0,24.0,24.0,17.0,31.0,30.0,15.0,27.0,12.0,16.0,14.0,13.0,16.0,24.0,9.0,9.0,10.0,4.0,4.0,7.0,5.0,2.0,3.0 C88054,37.0,25.0,36.0,44.0,37.0,36.0,45.0,35.0,28.0,36.0,41.0,38.0,37.0,43.0,44.0,44.0,43.0,39.0,39.0,33.0,39.0,38.0,31.0,33.0,39.0,44.0,44.0,35.0,40.0,42.0,49.0,55.0,54.0,43.0,58.0,50.0,53.0,42.0,57.0,51.0,58.0,45.0,48.0,57.0,43.0,50.0,47.0,49.0,51.0,44.0,54.0,55.0,54.0,68.0,70.0,60.0,50.0,59.0,63.0,71.0,60.0,61.0,65.0,73.0,66.0,47.0,42.0,50.0,42.0,40.0,32.0,36.0,48.0,47.0,46.0,33.0,29.0,43.0,44.0,34.0,44.0,36.0,26.0,24.0,23.0,22.0,23.0,20.0,14.0,16.0,10.0,10.0,7.0,8.0,7.0,6.0 C88059,6.0,7.0,3.0,4.0,10.0,17.0,11.0,14.0,9.0,10.0,8.0,12.0,19.0,13.0,24.0,28.0,10.0,9.0,16.0,13.0,10.0,11.0,21.0,14.0,13.0,9.0,16.0,9.0,23.0,15.0,14.0,12.0,12.0,10.0,19.0,18.0,21.0,12.0,14.0,19.0,9.0,10.0,7.0,14.0,14.0,12.0,8.0,12.0,15.0,7.0,5.0,7.0,12.0,17.0,16.0,11.0,18.0,9.0,12.0,9.0,17.0,12.0,12.0,15.0,11.0,16.0,8.0,8.0,8.0,8.0,9.0,5.0,8.0,7.0,6.0,6.0,8.0,7.0,5.0,5.0,3.0,1.0,4.0,5.0,5.0,1.0,2.0,5.0,1.0,3.0,6.0,1.0,2.0,1.0,1.0, C88060,21.0,19.0,34.0,21.0,27.0,18.0,23.0,29.0,29.0,32.0,38.0,29.0,31.0,33.0,34.0,35.0,32.0,38.0,27.0,21.0,31.0,28.0,55.0,40.0,49.0,45.0,39.0,55.0,55.0,50.0,50.0,38.0,35.0,43.0,41.0,40.0,34.0,37.0,45.0,45.0,37.0,35.0,34.0,29.0,26.0,28.0,25.0,14.0,23.0,31.0,26.0,21.0,6.0,21.0,27.0,17.0,27.0,20.0,17.0,17.0,18.0,16.0,14.0,13.0,12.0,15.0,16.0,10.0,15.0,11.0,12.0,11.0,12.0,8.0,13.0,13.0,7.0,6.0,9.0,5.0,3.0,8.0,5.0,4.0,4.0,6.0,2.0,6.0,3.0,1.0,1.0,5.0,2.0,3.0,,7.0 C88062,18.0,14.0,22.0,18.0,20.0,17.0,29.0,27.0,23.0,27.0,24.0,38.0,26.0,24.0,25.0,28.0,33.0,39.0,30.0,27.0,20.0,20.0,17.0,27.0,32.0,25.0,27.0,32.0,30.0,25.0,30.0,25.0,34.0,29.0,26.0,32.0,29.0,31.0,44.0,24.0,32.0,32.0,33.0,40.0,28.0,39.0,37.0,27.0,36.0,48.0,30.0,43.0,37.0,45.0,46.0,34.0,47.0,36.0,35.0,41.0,36.0,37.0,30.0,26.0,30.0,24.0,20.0,23.0,25.0,13.0,14.0,14.0,11.0,21.0,23.0,10.0,26.0,20.0,24.0,12.0,14.0,8.0,5.0,11.0,4.0,12.0,9.0,6.0,11.0,5.0,5.0,10.0,6.0,2.0,2.0,12.0 C88069,86.0,102.0,106.0,101.0,104.0,102.0,112.0,132.0,123.0,105.0,121.0,107.0,117.0,139.0,113.0,110.0,111.0,115.0,107.0,122.0,114.0,132.0,120.0,131.0,132.0,119.0,121.0,112.0,131.0,120.0,131.0,113.0,117.0,118.0,112.0,95.0,117.0,123.0,113.0,128.0,125.0,109.0,116.0,105.0,93.0,96.0,80.0,67.0,66.0,74.0,79.0,68.0,64.0,66.0,60.0,63.0,63.0,45.0,51.0,53.0,56.0,32.0,38.0,38.0,40.0,32.0,37.0,38.0,32.0,34.0,27.0,27.0,31.0,34.0,27.0,19.0,31.0,34.0,21.0,22.0,17.0,15.0,20.0,19.0,13.0,15.0,14.0,16.0,15.0,12.0,5.0,11.0,5.0,3.0,6.0,14.0 C88070,33.0,48.0,47.0,52.0,43.0,54.0,54.0,54.0,63.0,71.0,59.0,53.0,66.0,61.0,63.0,65.0,65.0,54.0,58.0,48.0,51.0,54.0,33.0,50.0,42.0,46.0,44.0,52.0,52.0,49.0,67.0,57.0,61.0,75.0,59.0,60.0,58.0,78.0,67.0,61.0,56.0,52.0,56.0,57.0,44.0,56.0,50.0,44.0,49.0,48.0,44.0,52.0,65.0,45.0,50.0,48.0,56.0,45.0,49.0,51.0,40.0,45.0,36.0,45.0,43.0,30.0,28.0,37.0,34.0,23.0,25.0,19.0,30.0,21.0,24.0,23.0,20.0,16.0,22.0,19.0,21.0,9.0,21.0,20.0,13.0,13.0,10.0,8.0,13.0,13.0,8.0,10.0,4.0,3.0,,12.0 C88072,49.0,54.0,50.0,61.0,50.0,63.0,52.0,71.0,67.0,56.0,67.0,71.0,59.0,62.0,62.0,64.0,66.0,79.0,66.0,48.0,60.0,65.0,63.0,74.0,45.0,87.0,87.0,70.0,80.0,71.0,67.0,92.0,84.0,82.0,97.0,75.0,76.0,73.0,72.0,66.0,74.0,71.0,72.0,73.0,61.0,61.0,66.0,51.0,57.0,60.0,63.0,69.0,62.0,102.0,105.0,88.0,97.0,107.0,98.0,89.0,79.0,89.0,76.0,79.0,81.0,93.0,59.0,92.0,63.0,57.0,54.0,46.0,67.0,63.0,49.0,44.0,67.0,65.0,68.0,66.0,58.0,53.0,47.0,33.0,44.0,40.0,40.0,26.0,39.0,23.0,21.0,18.0,23.0,10.0,14.0,20.0 C88073,23.0,17.0,17.0,20.0,28.0,28.0,34.0,32.0,32.0,29.0,27.0,29.0,22.0,26.0,36.0,31.0,25.0,39.0,32.0,21.0,24.0,28.0,27.0,23.0,25.0,21.0,22.0,31.0,24.0,36.0,36.0,30.0,28.0,34.0,47.0,57.0,38.0,54.0,42.0,48.0,43.0,51.0,41.0,38.0,54.0,43.0,35.0,35.0,37.0,33.0,32.0,31.0,35.0,52.0,46.0,38.0,38.0,41.0,38.0,40.0,38.0,32.0,40.0,38.0,32.0,29.0,24.0,40.0,16.0,40.0,21.0,27.0,23.0,16.0,25.0,15.0,16.0,21.0,20.0,12.0,13.0,19.0,9.0,12.0,11.0,17.0,11.0,8.0,9.0,11.0,7.0,6.0,3.0,3.0,3.0,3.0 C88074,26.0,20.0,22.0,24.0,19.0,23.0,27.0,23.0,26.0,26.0,36.0,29.0,30.0,21.0,33.0,28.0,32.0,16.0,22.0,19.0,15.0,18.0,28.0,24.0,27.0,19.0,31.0,19.0,34.0,36.0,33.0,26.0,43.0,50.0,47.0,52.0,32.0,30.0,39.0,40.0,34.0,39.0,31.0,30.0,32.0,33.0,30.0,32.0,39.0,33.0,29.0,27.0,29.0,38.0,51.0,31.0,47.0,30.0,37.0,30.0,34.0,35.0,29.0,31.0,32.0,43.0,23.0,33.0,29.0,28.0,17.0,19.0,30.0,24.0,26.0,27.0,28.0,33.0,32.0,20.0,21.0,23.0,14.0,9.0,12.0,9.0,18.0,8.0,8.0,7.0,8.0,6.0,3.0,6.0,2.0,2.0 C88076,51.0,41.0,29.0,33.0,38.0,37.0,49.0,24.0,49.0,39.0,26.0,39.0,28.0,41.0,33.0,42.0,31.0,36.0,28.0,45.0,39.0,62.0,78.0,95.0,126.0,147.0,130.0,145.0,158.0,134.0,144.0,103.0,102.0,75.0,95.0,92.0,84.0,94.0,79.0,67.0,53.0,54.0,61.0,54.0,52.0,60.0,43.0,37.0,29.0,18.0,31.0,38.0,30.0,24.0,29.0,41.0,19.0,27.0,40.0,28.0,30.0,28.0,28.0,32.0,29.0,25.0,14.0,25.0,21.0,19.0,15.0,19.0,16.0,19.0,16.0,14.0,14.0,18.0,12.0,12.0,9.0,7.0,22.0,6.0,10.0,14.0,7.0,7.0,1.0,5.0,4.0,3.0,3.0,2.0,5.0,4.0 C88077,33.0,48.0,34.0,48.0,37.0,58.0,60.0,51.0,62.0,72.0,62.0,59.0,55.0,70.0,59.0,57.0,62.0,65.0,54.0,53.0,46.0,46.0,49.0,42.0,43.0,35.0,56.0,50.0,52.0,52.0,63.0,56.0,59.0,67.0,73.0,65.0,64.0,49.0,83.0,61.0,59.0,55.0,48.0,49.0,59.0,44.0,44.0,32.0,31.0,35.0,39.0,49.0,43.0,44.0,50.0,55.0,51.0,46.0,40.0,53.0,36.0,41.0,52.0,50.0,44.0,42.0,43.0,29.0,39.0,22.0,28.0,25.0,35.0,27.0,15.0,16.0,20.0,18.0,39.0,20.0,17.0,28.0,15.0,10.0,21.0,27.0,10.0,16.0,15.0,10.0,18.0,12.0,6.0,8.0,5.0,11.0 C88078,40.0,31.0,43.0,40.0,32.0,44.0,34.0,40.0,44.0,31.0,44.0,36.0,31.0,44.0,40.0,31.0,36.0,32.0,36.0,21.0,39.0,32.0,40.0,47.0,49.0,43.0,30.0,30.0,49.0,44.0,56.0,50.0,54.0,54.0,38.0,49.0,49.0,38.0,45.0,41.0,51.0,45.0,56.0,31.0,42.0,45.0,39.0,31.0,46.0,31.0,35.0,54.0,40.0,52.0,49.0,62.0,65.0,62.0,54.0,51.0,60.0,45.0,51.0,42.0,47.0,38.0,64.0,42.0,29.0,43.0,40.0,34.0,38.0,47.0,39.0,33.0,34.0,41.0,39.0,27.0,29.0,21.0,29.0,26.0,24.0,21.0,18.0,16.0,18.0,14.0,7.0,8.0,8.0,4.0,4.0,7.0 C88079,49.0,37.0,35.0,47.0,43.0,42.0,43.0,42.0,33.0,41.0,42.0,41.0,44.0,59.0,54.0,31.0,41.0,36.0,41.0,25.0,28.0,37.0,48.0,71.0,81.0,80.0,97.0,99.0,106.0,105.0,81.0,91.0,90.0,80.0,95.0,80.0,86.0,60.0,79.0,73.0,73.0,69.0,43.0,58.0,65.0,62.0,59.0,60.0,62.0,54.0,46.0,45.0,36.0,46.0,46.0,51.0,42.0,51.0,34.0,55.0,49.0,47.0,40.0,49.0,43.0,35.0,33.0,32.0,27.0,34.0,37.0,28.0,28.0,21.0,33.0,24.0,29.0,33.0,18.0,14.0,14.0,19.0,14.0,14.0,13.0,11.0,6.0,5.0,9.0,9.0,7.0,2.0,4.0,4.0,5.0,13.0 C88082,29.0,20.0,15.0,19.0,22.0,12.0,18.0,31.0,21.0,27.0,11.0,18.0,13.0,10.0,15.0,19.0,15.0,15.0,28.0,50.0,65.0,76.0,75.0,116.0,127.0,125.0,134.0,121.0,117.0,102.0,98.0,91.0,84.0,63.0,68.0,69.0,59.0,49.0,50.0,44.0,38.0,39.0,25.0,33.0,19.0,20.0,21.0,16.0,9.0,23.0,16.0,18.0,19.0,15.0,17.0,15.0,16.0,19.0,10.0,14.0,18.0,17.0,15.0,19.0,9.0,7.0,6.0,5.0,14.0,4.0,13.0,9.0,5.0,7.0,7.0,6.0,6.0,4.0,8.0,8.0,6.0,2.0,5.0,1.0,7.0,2.0,3.0,5.0,4.0,2.0,6.0,1.0,,2.0,, C88083,11.0,7.0,4.0,6.0,7.0,3.0,4.0,8.0,3.0,7.0,9.0,15.0,6.0,11.0,10.0,22.0,21.0,21.0,17.0,16.0,5.0,10.0,9.0,10.0,4.0,9.0,10.0,8.0,10.0,9.0,9.0,8.0,8.0,10.0,15.0,11.0,9.0,14.0,10.0,11.0,9.0,13.0,7.0,9.0,6.0,18.0,17.0,12.0,17.0,14.0,24.0,15.0,18.0,13.0,19.0,24.0,17.0,22.0,21.0,20.0,19.0,19.0,28.0,21.0,28.0,18.0,24.0,21.0,13.0,20.0,20.0,17.0,18.0,23.0,16.0,20.0,18.0,17.0,19.0,14.0,14.0,10.0,11.0,3.0,7.0,4.0,9.0,10.0,10.0,3.0,2.0,3.0,3.0,4.0,1.0,7.0 C88084,22.0,11.0,8.0,22.0,17.0,18.0,17.0,18.0,32.0,20.0,26.0,15.0,20.0,28.0,12.0,22.0,21.0,23.0,29.0,13.0,26.0,30.0,24.0,24.0,25.0,23.0,18.0,19.0,25.0,23.0,25.0,14.0,19.0,27.0,11.0,16.0,22.0,26.0,23.0,17.0,20.0,24.0,23.0,22.0,6.0,24.0,22.0,18.0,19.0,10.0,16.0,19.0,13.0,18.0,13.0,12.0,13.0,12.0,16.0,14.0,14.0,19.0,15.0,11.0,14.0,9.0,13.0,8.0,11.0,9.0,11.0,11.0,8.0,7.0,10.0,6.0,12.0,8.0,4.0,7.0,9.0,6.0,8.0,4.0,3.0,7.0,3.0,4.0,4.0,2.0,4.0,,2.0,1.0,1.0,1.0 C88085,44.0,53.0,46.0,63.0,60.0,55.0,57.0,65.0,74.0,62.0,60.0,73.0,59.0,69.0,58.0,64.0,73.0,54.0,55.0,44.0,46.0,49.0,42.0,53.0,47.0,70.0,54.0,79.0,67.0,71.0,67.0,88.0,102.0,100.0,81.0,66.0,75.0,73.0,83.0,70.0,73.0,70.0,61.0,64.0,64.0,50.0,43.0,49.0,51.0,51.0,67.0,45.0,83.0,54.0,75.0,73.0,77.0,64.0,87.0,59.0,70.0,61.0,52.0,55.0,58.0,47.0,34.0,43.0,32.0,35.0,45.0,38.0,32.0,40.0,41.0,40.0,37.0,48.0,33.0,40.0,27.0,28.0,25.0,18.0,24.0,18.0,16.0,19.0,16.0,7.0,6.0,6.0,10.0,,5.0,7.0 C88086,15.0,15.0,8.0,17.0,17.0,11.0,21.0,24.0,20.0,18.0,20.0,18.0,23.0,28.0,17.0,19.0,15.0,19.0,15.0,15.0,15.0,11.0,10.0,11.0,6.0,14.0,16.0,17.0,25.0,28.0,31.0,18.0,31.0,16.0,15.0,26.0,23.0,19.0,13.0,26.0,13.0,19.0,21.0,23.0,19.0,19.0,9.0,17.0,8.0,11.0,9.0,16.0,7.0,10.0,7.0,11.0,12.0,8.0,19.0,12.0,12.0,15.0,13.0,17.0,14.0,13.0,10.0,7.0,15.0,10.0,11.0,11.0,6.0,4.0,10.0,11.0,8.0,10.0,9.0,8.0,4.0,6.0,7.0,2.0,2.0,7.0,2.0,8.0,4.0,3.0,1.0,1.0,3.0,2.0,1.0,1.0 C88087,41.0,52.0,51.0,53.0,59.0,61.0,53.0,75.0,74.0,71.0,58.0,63.0,66.0,55.0,52.0,65.0,62.0,64.0,54.0,46.0,43.0,37.0,41.0,50.0,50.0,48.0,56.0,58.0,72.0,81.0,77.0,91.0,88.0,80.0,86.0,77.0,97.0,87.0,84.0,67.0,70.0,75.0,62.0,54.0,63.0,55.0,40.0,37.0,55.0,52.0,50.0,55.0,54.0,56.0,56.0,60.0,56.0,66.0,46.0,58.0,54.0,48.0,65.0,47.0,44.0,47.0,49.0,54.0,39.0,32.0,35.0,34.0,33.0,31.0,50.0,34.0,33.0,34.0,21.0,21.0,23.0,24.0,21.0,18.0,12.0,18.0,24.0,15.0,15.0,5.0,10.0,7.0,5.0,4.0,4.0,5.0 C88088,41.0,50.0,46.0,55.0,38.0,61.0,71.0,52.0,54.0,63.0,56.0,74.0,60.0,74.0,59.0,53.0,62.0,57.0,44.0,58.0,52.0,45.0,45.0,39.0,43.0,55.0,53.0,54.0,66.0,53.0,68.0,71.0,73.0,60.0,91.0,65.0,74.0,70.0,70.0,69.0,55.0,57.0,48.0,50.0,57.0,42.0,46.0,27.0,32.0,45.0,48.0,41.0,52.0,46.0,56.0,47.0,56.0,44.0,54.0,39.0,35.0,33.0,33.0,31.0,26.0,27.0,40.0,24.0,28.0,32.0,25.0,26.0,15.0,17.0,16.0,12.0,17.0,14.0,21.0,14.0,17.0,19.0,18.0,10.0,7.0,6.0,10.0,5.0,5.0,7.0,4.0,4.0,2.0,1.0,2.0,1.0 C88090,38.0,41.0,42.0,34.0,38.0,41.0,53.0,47.0,56.0,51.0,39.0,65.0,60.0,51.0,54.0,48.0,50.0,53.0,58.0,41.0,38.0,59.0,47.0,48.0,42.0,49.0,52.0,54.0,59.0,62.0,72.0,70.0,57.0,66.0,60.0,64.0,65.0,56.0,64.0,60.0,67.0,56.0,48.0,60.0,42.0,61.0,40.0,50.0,37.0,58.0,32.0,44.0,51.0,50.0,68.0,57.0,50.0,57.0,50.0,34.0,45.0,42.0,34.0,44.0,42.0,37.0,35.0,37.0,28.0,34.0,25.0,30.0,32.0,17.0,23.0,35.0,19.0,20.0,26.0,14.0,10.0,18.0,12.0,27.0,16.0,16.0,9.0,3.0,10.0,12.0,4.0,1.0,3.0,5.0,2.0,9.0 C88091,14.0,14.0,19.0,18.0,15.0,15.0,21.0,19.0,19.0,20.0,13.0,18.0,22.0,13.0,12.0,11.0,15.0,14.0,14.0,13.0,12.0,9.0,6.0,11.0,17.0,20.0,17.0,18.0,11.0,23.0,11.0,25.0,20.0,24.0,26.0,22.0,24.0,24.0,24.0,11.0,19.0,19.0,12.0,11.0,21.0,15.0,13.0,9.0,10.0,8.0,11.0,15.0,19.0,13.0,19.0,12.0,16.0,12.0,12.0,11.0,14.0,11.0,16.0,14.0,5.0,10.0,13.0,12.0,7.0,8.0,11.0,4.0,12.0,9.0,6.0,2.0,6.0,4.0,12.0,7.0,8.0,4.0,7.0,4.0,2.0,4.0,2.0,2.0,3.0,4.0,6.0,2.0,3.0,2.0,2.0,1.0 C88092,29.0,21.0,38.0,31.0,32.0,33.0,34.0,41.0,51.0,35.0,30.0,52.0,47.0,49.0,56.0,41.0,52.0,52.0,55.0,49.0,44.0,37.0,41.0,41.0,49.0,48.0,62.0,63.0,44.0,48.0,40.0,57.0,51.0,72.0,50.0,56.0,56.0,47.0,50.0,46.0,54.0,50.0,40.0,56.0,50.0,63.0,60.0,59.0,43.0,59.0,64.0,65.0,77.0,73.0,78.0,81.0,81.0,67.0,78.0,77.0,67.0,76.0,76.0,66.0,56.0,61.0,49.0,66.0,58.0,66.0,58.0,61.0,52.0,63.0,64.0,71.0,68.0,68.0,71.0,49.0,60.0,52.0,48.0,39.0,34.0,34.0,27.0,25.0,22.0,14.0,11.0,17.0,9.0,6.0,8.0,11.0 C88095,16.0,20.0,18.0,23.0,23.0,22.0,31.0,24.0,19.0,24.0,29.0,32.0,28.0,27.0,29.0,33.0,18.0,24.0,30.0,24.0,34.0,27.0,31.0,21.0,34.0,23.0,35.0,42.0,26.0,42.0,32.0,32.0,24.0,30.0,33.0,28.0,34.0,31.0,31.0,49.0,38.0,33.0,26.0,25.0,37.0,28.0,30.0,25.0,37.0,28.0,39.0,40.0,45.0,46.0,47.0,53.0,33.0,44.0,38.0,45.0,43.0,58.0,42.0,49.0,37.0,44.0,37.0,38.0,20.0,28.0,35.0,44.0,32.0,33.0,41.0,35.0,36.0,44.0,46.0,24.0,39.0,21.0,26.0,19.0,20.0,14.0,29.0,10.0,17.0,11.0,6.0,6.0,8.0,2.0,3.0,4.0 C88622,10.0,19.0,11.0,16.0,12.0,17.0,17.0,13.0,7.0,13.0,13.0,15.0,13.0,9.0,14.0,13.0,12.0,15.0,12.0,14.0,20.0,18.0,17.0,19.0,23.0,36.0,36.0,38.0,39.0,39.0,45.0,39.0,28.0,30.0,27.0,22.0,29.0,18.0,26.0,19.0,15.0,20.0,10.0,13.0,16.0,11.0,11.0,9.0,10.0,9.0,17.0,7.0,14.0,12.0,9.0,14.0,10.0,5.0,12.0,11.0,8.0,6.0,8.0,6.0,7.0,3.0,3.0,7.0,2.0,6.0,2.0,3.0,3.0,2.0,1.0,3.0,3.0,4.0,2.0,1.0,1.0,3.0,4.0,6.0,3.0,3.0,7.0,3.0,,1.0,2.0,4.0,,,2.0,1.0 C88627,13.0,19.0,13.0,8.0,16.0,12.0,9.0,12.0,9.0,15.0,6.0,10.0,10.0,6.0,4.0,5.0,2.0,13.0,580.0,1486.0,1983.0,1955.0,1770.0,1971.0,1363.0,583.0,459.0,363.0,284.0,181.0,162.0,98.0,111.0,84.0,71.0,43.0,47.0,44.0,27.0,22.0,21.0,16.0,21.0,10.0,11.0,11.0,8.0,3.0,7.0,,1.0,2.0,2.0,2.0,3.0,2.0,2.0,1.0,3.0,,1.0,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, C88631,8.0,10.0,7.0,6.0,4.0,11.0,5.0,5.0,4.0,5.0,7.0,4.0,1.0,2.0,6.0,5.0,12.0,5.0,5.0,7.0,8.0,6.0,5.0,7.0,7.0,10.0,9.0,9.0,6.0,19.0,11.0,14.0,22.0,14.0,17.0,16.0,16.0,13.0,14.0,19.0,12.0,5.0,9.0,6.0,8.0,3.0,8.0,8.0,14.0,2.0,4.0,3.0,12.0,5.0,8.0,4.0,4.0,7.0,6.0,7.0,5.0,3.0,4.0,9.0,1.0,11.0,6.0,5.0,4.0,5.0,3.0,4.0,2.0,6.0,5.0,2.0,6.0,9.0,6.0,3.0,4.0,4.0,2.0,3.0,1.0,1.0,2.0,2.0,1.0,1.0,3.0,1.0,2.0,,, C88647,50.0,48.0,51.0,39.0,44.0,34.0,43.0,60.0,48.0,54.0,44.0,50.0,56.0,66.0,60.0,68.0,71.0,63.0,58.0,54.0,40.0,55.0,49.0,43.0,50.0,45.0,75.0,61.0,59.0,67.0,64.0,67.0,62.0,89.0,72.0,78.0,63.0,66.0,71.0,59.0,71.0,62.0,63.0,74.0,60.0,78.0,71.0,51.0,66.0,57.0,61.0,51.0,78.0,69.0,71.0,80.0,89.0,92.0,76.0,95.0,81.0,74.0,75.0,75.0,82.0,76.0,66.0,71.0,65.0,59.0,72.0,67.0,51.0,63.0,48.0,60.0,62.0,61.0,59.0,42.0,59.0,46.0,40.0,34.0,25.0,32.0,27.0,20.0,13.0,23.0,10.0,11.0,14.0,8.0,6.0,31.0 C88648,32.0,25.0,36.0,25.0,34.0,28.0,22.0,29.0,31.0,38.0,32.0,21.0,28.0,37.0,38.0,31.0,34.0,40.0,31.0,33.0,29.0,33.0,29.0,35.0,47.0,33.0,37.0,49.0,45.0,47.0,34.0,47.0,52.0,52.0,43.0,38.0,52.0,32.0,33.0,40.0,47.0,42.0,34.0,47.0,44.0,50.0,35.0,35.0,44.0,43.0,45.0,43.0,44.0,45.0,61.0,37.0,53.0,65.0,57.0,61.0,62.0,65.0,64.0,50.0,64.0,56.0,53.0,68.0,61.0,51.0,52.0,45.0,50.0,44.0,33.0,39.0,53.0,40.0,64.0,38.0,39.0,33.0,15.0,27.0,18.0,23.0,32.0,16.0,17.0,9.0,6.0,10.0,7.0,6.0,3.0,7.0 C88652,18.0,21.0,22.0,24.0,26.0,25.0,31.0,29.0,24.0,28.0,26.0,25.0,33.0,23.0,32.0,20.0,25.0,14.0,29.0,16.0,21.0,19.0,23.0,23.0,32.0,28.0,37.0,26.0,35.0,40.0,28.0,28.0,33.0,39.0,28.0,24.0,28.0,33.0,34.0,46.0,35.0,33.0,35.0,45.0,33.0,34.0,32.0,28.0,23.0,31.0,24.0,19.0,24.0,23.0,25.0,31.0,16.0,23.0,17.0,21.0,16.0,17.0,17.0,13.0,20.0,14.0,11.0,16.0,13.0,10.0,10.0,14.0,11.0,9.0,10.0,14.0,9.0,17.0,17.0,11.0,14.0,13.0,9.0,8.0,5.0,6.0,9.0,8.0,3.0,8.0,3.0,3.0,3.0,2.0,2.0, C88655,6.0,7.0,5.0,8.0,5.0,3.0,8.0,8.0,4.0,5.0,7.0,5.0,5.0,13.0,8.0,9.0,15.0,12.0,6.0,9.0,2.0,6.0,7.0,11.0,8.0,11.0,6.0,7.0,14.0,12.0,12.0,4.0,6.0,5.0,9.0,4.0,10.0,4.0,10.0,6.0,5.0,7.0,6.0,2.0,6.0,7.0,5.0,9.0,7.0,8.0,8.0,7.0,10.0,6.0,12.0,6.0,7.0,13.0,11.0,6.0,10.0,5.0,3.0,9.0,3.0,4.0,3.0,4.0,6.0,4.0,2.0,7.0,2.0,,3.0,2.0,4.0,5.0,3.0,7.0,1.0,3.0,3.0,5.0,1.0,3.0,1.0,4.0,5.0,1.0,2.0,,,,, Y00361,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,1.0,,1.0,,,,,,1.0,,1.0,,,,,,,,,,,,,,,,,,,,,,,1.0,,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, Y00411,54.0,60.0,74.0,82.0,87.0,89.0,87.0,82.0,68.0,80.0,75.0,85.0,96.0,65.0,67.0,72.0,68.0,61.0,67.0,57.0,55.0,57.0,53.0,78.0,50.0,78.0,80.0,79.0,83.0,103.0,99.0,114.0,104.0,95.0,116.0,110.0,87.0,89.0,87.0,90.0,75.0,103.0,75.0,78.0,71.0,58.0,73.0,54.0,48.0,51.0,76.0,66.0,56.0,69.0,84.0,63.0,88.0,69.0,90.0,77.0,74.0,64.0,74.0,64.0,66.0,69.0,48.0,73.0,75.0,51.0,41.0,48.0,51.0,44.0,37.0,38.0,29.0,47.0,50.0,40.0,29.0,28.0,24.0,13.0,18.0,17.0,23.0,13.0,11.0,11.0,8.0,7.0,5.0,7.0,2.0,10.0 Y04809,9.0,15.0,16.0,17.0,13.0,18.0,21.0,15.0,22.0,16.0,26.0,20.0,21.0,16.0,18.0,21.0,19.0,16.0,18.0,13.0,13.0,13.0,18.0,11.0,17.0,10.0,13.0,17.0,13.0,13.0,16.0,19.0,29.0,18.0,22.0,18.0,21.0,23.0,32.0,22.0,19.0,16.0,19.0,14.0,18.0,17.0,13.0,10.0,10.0,18.0,8.0,14.0,8.0,20.0,21.0,13.0,12.0,14.0,14.0,18.0,12.0,11.0,18.0,10.0,19.0,17.0,17.0,14.0,5.0,9.0,7.0,6.0,7.0,12.0,8.0,7.0,8.0,7.0,4.0,4.0,9.0,4.0,1.0,2.0,3.0,1.0,1.0,,,,,,,2.0,,1.0 Y05167,84.0,98.0,95.0,92.0,95.0,99.0,97.0,85.0,95.0,89.0,84.0,109.0,92.0,88.0,82.0,77.0,81.0,76.0,67.0,70.0,77.0,83.0,87.0,88.0,103.0,116.0,126.0,130.0,119.0,123.0,125.0,113.0,121.0,130.0,118.0,120.0,137.0,125.0,114.0,103.0,106.0,70.0,101.0,94.0,81.0,74.0,68.0,59.0,53.0,51.0,55.0,54.0,47.0,45.0,55.0,41.0,62.0,52.0,41.0,30.0,46.0,30.0,34.0,33.0,39.0,30.0,28.0,22.0,22.0,18.0,13.0,17.0,10.0,9.0,9.0,4.0,7.0,7.0,7.0,6.0,5.0,4.0,7.0,2.0,1.0,4.0,4.0,2.0,1.0,4.0,2.0,,,,2.0, Y05248,11.0,17.0,10.0,13.0,25.0,15.0,16.0,26.0,20.0,15.0,22.0,23.0,21.0,16.0,17.0,16.0,17.0,20.0,19.0,21.0,16.0,17.0,22.0,17.0,14.0,17.0,18.0,16.0,32.0,26.0,22.0,32.0,32.0,15.0,27.0,13.0,23.0,30.0,25.0,21.0,22.0,26.0,21.0,13.0,18.0,24.0,18.0,15.0,15.0,18.0,20.0,19.0,22.0,26.0,25.0,28.0,23.0,29.0,25.0,31.0,28.0,17.0,26.0,28.0,25.0,17.0,22.0,18.0,11.0,15.0,20.0,18.0,11.0,12.0,15.0,13.0,8.0,9.0,16.0,11.0,8.0,9.0,9.0,4.0,6.0,7.0,4.0,3.0,7.0,5.0,2.0,2.0,5.0,3.0,2.0,2.0 Y05349,31.0,24.0,29.0,25.0,28.0,25.0,18.0,26.0,22.0,25.0,24.0,27.0,22.0,24.0,30.0,21.0,25.0,13.0,26.0,15.0,27.0,29.0,56.0,51.0,66.0,87.0,85.0,109.0,81.0,77.0,80.0,78.0,90.0,68.0,77.0,80.0,73.0,79.0,61.0,60.0,55.0,62.0,30.0,40.0,26.0,31.0,26.0,28.0,15.0,22.0,15.0,16.0,16.0,16.0,16.0,12.0,18.0,11.0,6.0,10.0,16.0,9.0,10.0,7.0,8.0,6.0,8.0,7.0,2.0,,6.0,4.0,4.0,4.0,,4.0,1.0,3.0,1.0,3.0,1.0,,1.0,1.0,,1.0,,1.0,1.0,,,,,,, Y05363,13.0,20.0,17.0,19.0,20.0,18.0,20.0,26.0,21.0,17.0,18.0,31.0,30.0,22.0,18.0,16.0,21.0,28.0,22.0,15.0,20.0,18.0,13.0,9.0,24.0,18.0,17.0,13.0,17.0,22.0,19.0,24.0,24.0,32.0,33.0,33.0,28.0,27.0,16.0,20.0,23.0,19.0,18.0,17.0,33.0,25.0,19.0,19.0,12.0,12.0,20.0,22.0,21.0,25.0,19.0,25.0,22.0,10.0,17.0,18.0,12.0,27.0,11.0,15.0,20.0,9.0,13.0,9.0,18.0,14.0,16.0,20.0,14.0,12.0,9.0,8.0,10.0,14.0,11.0,8.0,7.0,6.0,7.0,8.0,6.0,5.0,7.0,4.0,6.0,3.0,1.0,3.0,1.0,,,5.0 Y05364,20.0,14.0,17.0,21.0,20.0,29.0,26.0,27.0,31.0,27.0,27.0,31.0,23.0,29.0,19.0,16.0,30.0,18.0,24.0,23.0,16.0,23.0,18.0,19.0,22.0,23.0,25.0,28.0,16.0,36.0,28.0,37.0,29.0,35.0,38.0,27.0,38.0,37.0,25.0,27.0,30.0,35.0,26.0,32.0,21.0,23.0,18.0,18.0,19.0,15.0,21.0,21.0,23.0,32.0,34.0,32.0,17.0,17.0,18.0,21.0,19.0,28.0,26.0,19.0,22.0,15.0,16.0,16.0,13.0,13.0,7.0,14.0,10.0,15.0,7.0,8.0,8.0,5.0,3.0,5.0,8.0,5.0,7.0,4.0,2.0,6.0,6.0,5.0,3.0,4.0,2.0,1.0,,,,4.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 M81001,70.0,94.0,69.0,112.0,100.0,102.0,117.0,100.0,118.0,103.0,98.0,100.0,111.0,104.0,108.0,106.0,92.0,110.0,120.0,101.0,104.0,83.0,94.0,86.0,86.0,104.0,106.0,123.0,128.0,119.0,128.0,106.0,123.0,152.0,138.0,129.0,142.0,126.0,127.0,117.0,126.0,129.0,123.0,123.0,129.0,131.0,103.0,118.0,101.0,105.0,83.0,98.0,101.0,111.0,113.0,98.0,100.0,97.0,111.0,102.0,138.0,96.0,106.0,101.0,100.0,100.0,87.0,106.0,104.0,91.0,81.0,113.0,90.0,89.0,95.0,76.0,84.0,72.0,87.0,63.0,56.0,53.0,45.0,37.0,34.0,32.0,30.0,18.0,27.0,19.0,16.0,17.0,9.0,11.0,8.0,26.0 M81002,41.0,64.0,55.0,86.0,74.0,72.0,68.0,61.0,85.0,91.0,88.0,74.0,98.0,86.0,76.0,72.0,81.0,75.0,82.0,72.0,62.0,53.0,56.0,70.0,61.0,81.0,74.0,101.0,100.0,91.0,107.0,124.0,114.0,123.0,117.0,127.0,126.0,122.0,124.0,116.0,120.0,108.0,86.0,108.0,92.0,102.0,62.0,81.0,75.0,80.0,78.0,79.0,98.0,92.0,71.0,81.0,100.0,84.0,97.0,88.0,75.0,84.0,68.0,86.0,67.0,62.0,73.0,66.0,76.0,82.0,64.0,67.0,72.0,59.0,60.0,60.0,56.0,72.0,61.0,49.0,42.0,47.0,41.0,31.0,28.0,25.0,33.0,25.0,18.0,26.0,7.0,8.0,9.0,11.0,11.0,12.0 M81004,60.0,58.0,59.0,60.0,66.0,69.0,73.0,85.0,78.0,96.0,84.0,79.0,91.0,77.0,97.0,65.0,88.0,67.0,70.0,70.0,59.0,63.0,69.0,73.0,71.0,87.0,67.0,92.0,81.0,82.0,94.0,100.0,111.0,109.0,110.0,118.0,88.0,121.0,123.0,118.0,100.0,93.0,110.0,91.0,117.0,78.0,109.0,78.0,89.0,84.0,92.0,100.0,85.0,134.0,104.0,107.0,104.0,125.0,116.0,108.0,115.0,112.0,123.0,92.0,102.0,103.0,110.0,109.0,86.0,94.0,92.0,91.0,106.0,81.0,69.0,94.0,92.0,80.0,96.0,83.0,62.0,61.0,50.0,54.0,41.0,32.0,26.0,32.0,30.0,26.0,21.0,12.0,11.0,16.0,18.0,25.0 M81005,50.0,74.0,78.0,71.0,74.0,68.0,80.0,85.0,95.0,95.0,98.0,93.0,83.0,78.0,77.0,89.0,77.0,70.0,68.0,63.0,62.0,66.0,69.0,78.0,61.0,65.0,77.0,78.0,77.0,98.0,79.0,90.0,98.0,125.0,101.0,81.0,115.0,94.0,113.0,90.0,89.0,93.0,87.0,87.0,89.0,89.0,61.0,67.0,89.0,82.0,77.0,96.0,84.0,82.0,95.0,114.0,110.0,104.0,96.0,88.0,97.0,96.0,82.0,80.0,73.0,68.0,54.0,68.0,71.0,76.0,68.0,72.0,73.0,61.0,69.0,67.0,76.0,69.0,68.0,67.0,59.0,74.0,42.0,45.0,23.0,22.0,17.0,20.0,19.0,19.0,9.0,11.0,7.0,4.0,8.0,10.0 M81006,85.0,81.0,99.0,95.0,101.0,101.0,111.0,92.0,110.0,93.0,116.0,111.0,139.0,112.0,135.0,139.0,121.0,137.0,167.0,189.0,235.0,200.0,159.0,198.0,161.0,150.0,155.0,149.0,146.0,143.0,137.0,153.0,134.0,138.0,160.0,169.0,145.0,125.0,159.0,160.0,131.0,119.0,124.0,127.0,148.0,156.0,147.0,137.0,156.0,140.0,142.0,157.0,137.0,143.0,157.0,160.0,175.0,154.0,154.0,147.0,167.0,127.0,131.0,121.0,126.0,115.0,129.0,115.0,103.0,106.0,78.0,111.0,93.0,89.0,108.0,107.0,78.0,96.0,86.0,75.0,83.0,84.0,73.0,60.0,49.0,57.0,41.0,55.0,32.0,39.0,28.0,17.0,27.0,13.0,15.0,36.0 M81007,21.0,12.0,22.0,30.0,25.0,29.0,17.0,17.0,21.0,23.0,21.0,22.0,42.0,30.0,31.0,26.0,27.0,28.0,24.0,29.0,32.0,24.0,25.0,22.0,16.0,25.0,20.0,11.0,10.0,25.0,24.0,38.0,39.0,30.0,28.0,29.0,23.0,27.0,37.0,23.0,28.0,33.0,19.0,35.0,25.0,38.0,31.0,31.0,28.0,32.0,27.0,39.0,46.0,45.0,49.0,45.0,46.0,54.0,48.0,63.0,53.0,42.0,54.0,60.0,46.0,58.0,41.0,42.0,34.0,35.0,36.0,44.0,40.0,39.0,39.0,44.0,47.0,44.0,52.0,32.0,20.0,31.0,19.0,18.0,22.0,23.0,16.0,14.0,13.0,9.0,8.0,10.0,9.0,8.0,6.0,9.0 M81008,90.0,97.0,100.0,78.0,82.0,93.0,80.0,91.0,104.0,94.0,76.0,112.0,106.0,100.0,96.0,99.0,101.0,94.0,101.0,151.0,149.0,134.0,145.0,125.0,185.0,179.0,169.0,184.0,201.0,186.0,177.0,182.0,156.0,167.0,174.0,158.0,157.0,167.0,138.0,151.0,123.0,137.0,135.0,120.0,143.0,111.0,106.0,89.0,103.0,113.0,117.0,128.0,122.0,119.0,120.0,105.0,122.0,93.0,116.0,113.0,119.0,111.0,116.0,102.0,82.0,82.0,88.0,86.0,87.0,73.0,65.0,73.0,81.0,76.0,86.0,87.0,75.0,97.0,81.0,78.0,64.0,69.0,56.0,56.0,40.0,43.0,38.0,28.0,36.0,27.0,24.0,19.0,20.0,18.0,17.0,17.0 M81009,19.0,21.0,24.0,13.0,24.0,25.0,25.0,22.0,27.0,23.0,24.0,27.0,40.0,40.0,36.0,36.0,21.0,32.0,20.0,35.0,21.0,22.0,22.0,23.0,17.0,20.0,21.0,31.0,17.0,24.0,27.0,25.0,20.0,31.0,32.0,27.0,29.0,22.0,22.0,37.0,29.0,30.0,35.0,31.0,37.0,36.0,26.0,32.0,28.0,28.0,26.0,29.0,33.0,33.0,47.0,35.0,48.0,43.0,52.0,57.0,60.0,53.0,52.0,57.0,43.0,48.0,44.0,51.0,52.0,40.0,44.0,53.0,39.0,40.0,38.0,45.0,54.0,37.0,40.0,27.0,24.0,30.0,28.0,18.0,21.0,18.0,18.0,18.0,13.0,14.0,12.0,13.0,5.0,8.0,6.0,17.0 M81010,57.0,51.0,66.0,80.0,67.0,74.0,95.0,79.0,78.0,98.0,80.0,84.0,90.0,88.0,94.0,76.0,75.0,94.0,75.0,83.0,55.0,77.0,80.0,80.0,93.0,96.0,108.0,116.0,128.0,94.0,106.0,94.0,101.0,125.0,128.0,105.0,109.0,95.0,123.0,104.0,96.0,89.0,109.0,77.0,105.0,88.0,70.0,69.0,66.0,73.0,88.0,83.0,90.0,84.0,67.0,81.0,85.0,85.0,78.0,106.0,104.0,100.0,95.0,83.0,68.0,52.0,68.0,71.0,60.0,68.0,67.0,71.0,74.0,60.0,59.0,58.0,80.0,81.0,61.0,52.0,54.0,54.0,45.0,42.0,31.0,33.0,20.0,30.0,18.0,23.0,17.0,13.0,10.0,6.0,5.0,17.0 M81011,31.0,20.0,35.0,32.0,25.0,38.0,32.0,23.0,30.0,38.0,41.0,38.0,43.0,30.0,47.0,23.0,35.0,34.0,38.0,32.0,26.0,21.0,28.0,23.0,39.0,39.0,42.0,31.0,45.0,34.0,35.0,53.0,38.0,47.0,43.0,42.0,39.0,39.0,40.0,40.0,53.0,46.0,41.0,31.0,43.0,41.0,43.0,41.0,37.0,36.0,36.0,60.0,49.0,56.0,49.0,60.0,54.0,60.0,63.0,58.0,67.0,70.0,53.0,60.0,46.0,55.0,55.0,56.0,55.0,54.0,44.0,43.0,39.0,47.0,37.0,46.0,45.0,49.0,40.0,36.0,34.0,27.0,25.0,24.0,16.0,22.0,12.0,7.0,11.0,6.0,6.0,8.0,4.0,7.0,4.0,7.0 M81012,26.0,53.0,33.0,49.0,54.0,46.0,45.0,42.0,61.0,46.0,48.0,46.0,65.0,57.0,71.0,66.0,58.0,65.0,67.0,55.0,57.0,42.0,57.0,69.0,71.0,52.0,52.0,53.0,61.0,59.0,69.0,68.0,69.0,74.0,81.0,89.0,67.0,76.0,56.0,67.0,62.0,68.0,72.0,75.0,78.0,63.0,72.0,90.0,60.0,73.0,85.0,72.0,79.0,102.0,113.0,98.0,103.0,118.0,123.0,120.0,116.0,116.0,93.0,110.0,114.0,82.0,74.0,105.0,100.0,82.0,102.0,100.0,104.0,98.0,84.0,105.0,112.0,98.0,125.0,83.0,91.0,79.0,80.0,59.0,51.0,46.0,56.0,40.0,40.0,38.0,33.0,30.0,20.0,19.0,16.0,46.0 M81015,26.0,36.0,53.0,41.0,56.0,50.0,45.0,45.0,56.0,60.0,57.0,55.0,52.0,57.0,59.0,49.0,42.0,45.0,66.0,40.0,39.0,31.0,43.0,31.0,46.0,54.0,52.0,48.0,56.0,57.0,64.0,63.0,62.0,76.0,69.0,59.0,62.0,74.0,62.0,69.0,61.0,62.0,68.0,69.0,79.0,69.0,58.0,50.0,68.0,68.0,66.0,68.0,54.0,63.0,68.0,72.0,56.0,72.0,61.0,71.0,54.0,64.0,76.0,56.0,65.0,70.0,49.0,72.0,52.0,54.0,46.0,51.0,60.0,56.0,60.0,57.0,63.0,74.0,55.0,47.0,49.0,33.0,44.0,39.0,32.0,31.0,19.0,33.0,21.0,34.0,13.0,26.0,10.0,5.0,5.0,24.0 M81016,70.0,82.0,69.0,78.0,92.0,96.0,95.0,82.0,105.0,91.0,91.0,101.0,118.0,98.0,77.0,93.0,86.0,101.0,90.0,76.0,92.0,94.0,70.0,84.0,92.0,92.0,104.0,95.0,92.0,101.0,110.0,97.0,111.0,119.0,109.0,132.0,125.0,124.0,105.0,119.0,115.0,103.0,119.0,117.0,110.0,96.0,94.0,100.0,106.0,106.0,108.0,108.0,108.0,139.0,139.0,142.0,161.0,131.0,152.0,166.0,142.0,162.0,153.0,124.0,131.0,134.0,126.0,160.0,135.0,123.0,139.0,112.0,141.0,111.0,138.0,116.0,120.0,148.0,138.0,85.0,105.0,101.0,90.0,77.0,59.0,61.0,73.0,45.0,43.0,40.0,30.0,24.0,27.0,24.0,16.0,43.0 M81017,63.0,71.0,56.0,62.0,64.0,68.0,84.0,85.0,74.0,87.0,77.0,84.0,91.0,86.0,105.0,93.0,90.0,82.0,77.0,83.0,81.0,63.0,65.0,63.0,87.0,68.0,68.0,83.0,93.0,83.0,103.0,101.0,88.0,85.0,101.0,90.0,104.0,83.0,93.0,103.0,85.0,91.0,87.0,99.0,80.0,82.0,87.0,75.0,52.0,74.0,62.0,74.0,71.0,76.0,65.0,79.0,86.0,76.0,77.0,78.0,72.0,68.0,87.0,75.0,79.0,57.0,59.0,49.0,46.0,57.0,50.0,52.0,40.0,45.0,33.0,40.0,37.0,25.0,35.0,31.0,30.0,30.0,18.0,17.0,23.0,29.0,16.0,21.0,20.0,9.0,7.0,11.0,9.0,7.0,3.0,13.0 M81018,19.0,18.0,22.0,22.0,15.0,25.0,25.0,32.0,22.0,28.0,24.0,33.0,39.0,32.0,39.0,35.0,29.0,36.0,38.0,23.0,26.0,20.0,20.0,20.0,29.0,14.0,21.0,12.0,17.0,19.0,18.0,24.0,29.0,31.0,20.0,31.0,27.0,34.0,45.0,41.0,34.0,27.0,32.0,39.0,33.0,42.0,28.0,26.0,25.0,28.0,39.0,41.0,44.0,48.0,43.0,53.0,50.0,54.0,67.0,68.0,65.0,61.0,55.0,56.0,64.0,62.0,66.0,49.0,64.0,60.0,48.0,62.0,49.0,68.0,53.0,60.0,59.0,58.0,71.0,45.0,45.0,41.0,28.0,36.0,24.0,29.0,21.0,16.0,18.0,8.0,14.0,12.0,10.0,11.0,5.0,9.0 M81019,58.0,87.0,70.0,99.0,93.0,98.0,95.0,98.0,105.0,97.0,114.0,111.0,130.0,127.0,132.0,112.0,99.0,113.0,96.0,88.0,101.0,73.0,73.0,72.0,103.0,86.0,85.0,92.0,103.0,92.0,121.0,126.0,96.0,127.0,116.0,135.0,131.0,122.0,141.0,128.0,117.0,133.0,133.0,142.0,144.0,138.0,124.0,118.0,110.0,112.0,107.0,114.0,117.0,126.0,93.0,104.0,85.0,118.0,80.0,90.0,77.0,79.0,91.0,86.0,77.0,87.0,101.0,110.0,92.0,111.0,111.0,125.0,110.0,119.0,103.0,99.0,97.0,92.0,87.0,54.0,74.0,47.0,42.0,37.0,24.0,25.0,23.0,17.0,11.0,8.0,8.0,7.0,3.0,4.0,6.0,11.0 M81020,45.0,60.0,56.0,53.0,69.0,61.0,68.0,69.0,68.0,77.0,86.0,83.0,67.0,76.0,80.0,59.0,60.0,81.0,67.0,63.0,64.0,52.0,57.0,57.0,62.0,68.0,69.0,77.0,66.0,74.0,97.0,78.0,80.0,105.0,103.0,103.0,101.0,107.0,78.0,94.0,85.0,87.0,99.0,95.0,100.0,84.0,88.0,76.0,63.0,60.0,64.0,80.0,61.0,78.0,74.0,70.0,80.0,68.0,76.0,58.0,61.0,72.0,60.0,61.0,75.0,47.0,57.0,63.0,56.0,43.0,56.0,55.0,52.0,46.0,46.0,49.0,53.0,48.0,45.0,34.0,37.0,42.0,33.0,25.0,23.0,26.0,26.0,24.0,21.0,14.0,12.0,10.0,7.0,13.0,10.0,15.0 M81021,43.0,50.0,55.0,72.0,64.0,62.0,68.0,61.0,60.0,76.0,87.0,71.0,80.0,77.0,91.0,81.0,77.0,83.0,75.0,55.0,54.0,67.0,58.0,65.0,61.0,53.0,67.0,68.0,72.0,61.0,64.0,62.0,75.0,77.0,87.0,63.0,81.0,77.0,76.0,78.0,89.0,83.0,78.0,78.0,101.0,86.0,93.0,86.0,84.0,91.0,96.0,79.0,119.0,104.0,113.0,104.0,92.0,108.0,89.0,94.0,92.0,104.0,93.0,67.0,88.0,76.0,70.0,84.0,62.0,74.0,74.0,77.0,63.0,58.0,68.0,63.0,78.0,84.0,72.0,77.0,67.0,48.0,35.0,38.0,25.0,24.0,24.0,34.0,20.0,15.0,17.0,16.0,9.0,12.0,10.0,21.0 M81022,79.0,72.0,97.0,90.0,99.0,103.0,120.0,93.0,103.0,121.0,95.0,120.0,117.0,105.0,113.0,107.0,105.0,127.0,85.0,80.0,81.0,78.0,83.0,99.0,103.0,106.0,120.0,103.0,131.0,132.0,118.0,115.0,134.0,148.0,158.0,125.0,143.0,116.0,135.0,139.0,127.0,124.0,131.0,124.0,128.0,114.0,104.0,103.0,106.0,102.0,116.0,118.0,117.0,136.0,137.0,136.0,129.0,122.0,112.0,103.0,113.0,142.0,136.0,114.0,113.0,104.0,96.0,77.0,82.0,83.0,79.0,92.0,93.0,73.0,75.0,67.0,75.0,89.0,88.0,68.0,50.0,60.0,37.0,45.0,33.0,37.0,33.0,37.0,40.0,28.0,17.0,18.0,10.0,18.0,14.0,25.0 M81024,15.0,16.0,21.0,20.0,20.0,19.0,18.0,27.0,19.0,31.0,27.0,18.0,24.0,29.0,36.0,30.0,23.0,27.0,22.0,18.0,9.0,11.0,14.0,16.0,18.0,15.0,13.0,26.0,22.0,18.0,14.0,12.0,29.0,16.0,23.0,35.0,22.0,33.0,23.0,34.0,19.0,28.0,25.0,21.0,28.0,17.0,28.0,34.0,30.0,27.0,25.0,25.0,34.0,56.0,43.0,43.0,40.0,47.0,41.0,43.0,50.0,60.0,43.0,52.0,34.0,52.0,43.0,49.0,51.0,55.0,38.0,46.0,39.0,33.0,37.0,31.0,30.0,30.0,35.0,27.0,32.0,29.0,26.0,17.0,22.0,15.0,17.0,22.0,20.0,13.0,13.0,6.0,10.0,5.0,4.0,10.0 M81025,17.0,24.0,22.0,25.0,21.0,22.0,20.0,27.0,30.0,23.0,31.0,27.0,18.0,38.0,27.0,26.0,26.0,30.0,27.0,23.0,24.0,14.0,18.0,25.0,21.0,37.0,22.0,20.0,23.0,35.0,36.0,35.0,38.0,33.0,26.0,30.0,33.0,38.0,41.0,45.0,36.0,40.0,31.0,29.0,30.0,25.0,32.0,23.0,28.0,24.0,27.0,29.0,52.0,44.0,44.0,30.0,36.0,38.0,37.0,43.0,35.0,33.0,35.0,44.0,32.0,37.0,35.0,37.0,27.0,35.0,23.0,32.0,30.0,25.0,32.0,27.0,29.0,24.0,24.0,27.0,20.0,22.0,19.0,15.0,11.0,14.0,13.0,14.0,9.0,4.0,6.0,9.0,6.0,6.0,3.0,4.0 M81026,210.0,229.0,223.0,232.0,210.0,231.0,232.0,271.0,264.0,257.0,243.0,293.0,293.0,272.0,304.0,264.0,280.0,283.0,220.0,207.0,221.0,192.0,231.0,252.0,252.0,246.0,259.0,330.0,327.0,279.0,324.0,371.0,392.0,370.0,394.0,382.0,383.0,372.0,324.0,370.0,337.0,317.0,311.0,322.0,339.0,337.0,275.0,250.0,239.0,252.0,285.0,279.0,268.0,342.0,322.0,301.0,351.0,330.0,322.0,336.0,315.0,313.0,297.0,322.0,297.0,264.0,264.0,278.0,233.0,227.0,223.0,223.0,213.0,221.0,203.0,218.0,203.0,225.0,212.0,179.0,183.0,182.0,133.0,113.0,132.0,121.0,108.0,98.0,110.0,58.0,81.0,65.0,52.0,43.0,29.0,72.0 M81027,22.0,35.0,44.0,55.0,54.0,37.0,56.0,62.0,76.0,71.0,68.0,48.0,60.0,62.0,61.0,63.0,56.0,72.0,53.0,53.0,43.0,36.0,47.0,35.0,40.0,40.0,39.0,43.0,50.0,47.0,43.0,43.0,50.0,51.0,44.0,60.0,51.0,57.0,71.0,68.0,64.0,60.0,83.0,79.0,67.0,69.0,71.0,57.0,69.0,64.0,61.0,62.0,65.0,86.0,96.0,74.0,70.0,76.0,78.0,81.0,57.0,70.0,69.0,56.0,56.0,50.0,36.0,59.0,45.0,38.0,33.0,45.0,50.0,53.0,47.0,48.0,56.0,48.0,65.0,55.0,56.0,67.0,49.0,25.0,27.0,29.0,38.0,26.0,23.0,20.0,20.0,18.0,18.0,20.0,14.0,24.0 M81029,16.0,24.0,18.0,35.0,17.0,16.0,22.0,29.0,38.0,26.0,27.0,37.0,35.0,29.0,29.0,27.0,34.0,38.0,25.0,31.0,16.0,23.0,34.0,33.0,42.0,25.0,20.0,29.0,37.0,26.0,34.0,19.0,38.0,41.0,44.0,44.0,46.0,33.0,35.0,20.0,45.0,42.0,34.0,35.0,43.0,41.0,50.0,31.0,36.0,40.0,41.0,46.0,52.0,53.0,53.0,64.0,59.0,58.0,57.0,73.0,77.0,83.0,61.0,79.0,90.0,71.0,65.0,91.0,72.0,59.0,85.0,87.0,67.0,65.0,71.0,85.0,77.0,72.0,76.0,60.0,63.0,51.0,57.0,47.0,46.0,43.0,33.0,30.0,27.0,22.0,24.0,21.0,14.0,14.0,8.0,28.0 M81032,36.0,47.0,30.0,54.0,39.0,51.0,56.0,61.0,55.0,56.0,72.0,68.0,78.0,77.0,90.0,78.0,82.0,58.0,74.0,53.0,55.0,65.0,53.0,51.0,62.0,55.0,51.0,56.0,48.0,57.0,53.0,46.0,64.0,62.0,70.0,88.0,87.0,84.0,69.0,86.0,81.0,82.0,79.0,79.0,80.0,88.0,73.0,70.0,62.0,76.0,75.0,83.0,84.0,88.0,91.0,89.0,91.0,102.0,89.0,77.0,101.0,89.0,100.0,99.0,97.0,92.0,102.0,99.0,97.0,73.0,75.0,64.0,77.0,71.0,57.0,77.0,94.0,92.0,72.0,68.0,76.0,56.0,48.0,51.0,56.0,36.0,49.0,47.0,42.0,29.0,35.0,28.0,18.0,14.0,10.0,24.0 M81033,13.0,19.0,19.0,16.0,32.0,21.0,27.0,24.0,37.0,42.0,45.0,44.0,45.0,48.0,39.0,40.0,43.0,43.0,40.0,48.0,32.0,31.0,30.0,30.0,33.0,42.0,24.0,22.0,32.0,31.0,35.0,32.0,31.0,26.0,29.0,37.0,34.0,21.0,25.0,26.0,38.0,37.0,39.0,46.0,40.0,54.0,42.0,39.0,45.0,53.0,58.0,61.0,61.0,58.0,61.0,64.0,86.0,60.0,61.0,83.0,68.0,72.0,62.0,74.0,72.0,50.0,60.0,64.0,51.0,60.0,55.0,34.0,55.0,46.0,44.0,46.0,44.0,50.0,43.0,40.0,43.0,34.0,22.0,23.0,23.0,19.0,15.0,20.0,8.0,9.0,7.0,8.0,11.0,4.0,2.0,8.0 M81034,22.0,34.0,36.0,35.0,32.0,39.0,49.0,41.0,33.0,60.0,40.0,45.0,55.0,54.0,52.0,60.0,47.0,39.0,37.0,48.0,28.0,38.0,40.0,51.0,45.0,45.0,48.0,49.0,52.0,52.0,42.0,49.0,61.0,56.0,40.0,55.0,46.0,46.0,48.0,45.0,52.0,33.0,53.0,50.0,54.0,59.0,50.0,45.0,60.0,43.0,46.0,40.0,58.0,58.0,63.0,51.0,59.0,64.0,76.0,49.0,64.0,62.0,72.0,57.0,58.0,58.0,57.0,53.0,54.0,62.0,60.0,60.0,61.0,50.0,48.0,62.0,69.0,59.0,67.0,49.0,39.0,46.0,45.0,25.0,33.0,33.0,21.0,27.0,22.0,13.0,15.0,11.0,12.0,5.0,4.0,21.0 M81035,71.0,65.0,75.0,48.0,79.0,70.0,94.0,74.0,79.0,77.0,76.0,74.0,84.0,84.0,84.0,102.0,80.0,98.0,95.0,60.0,72.0,55.0,74.0,82.0,84.0,89.0,96.0,122.0,96.0,103.0,86.0,92.0,100.0,122.0,111.0,118.0,106.0,115.0,125.0,104.0,105.0,105.0,88.0,88.0,101.0,82.0,92.0,89.0,98.0,93.0,81.0,96.0,120.0,85.0,106.0,87.0,84.0,92.0,102.0,87.0,86.0,82.0,92.0,76.0,79.0,63.0,74.0,64.0,58.0,84.0,62.0,67.0,61.0,67.0,67.0,63.0,62.0,72.0,65.0,41.0,48.0,47.0,33.0,30.0,31.0,30.0,29.0,22.0,20.0,23.0,23.0,12.0,14.0,9.0,8.0,16.0 M81037,26.0,43.0,41.0,58.0,50.0,53.0,50.0,50.0,50.0,65.0,57.0,59.0,61.0,61.0,70.0,43.0,55.0,60.0,58.0,72.0,56.0,59.0,57.0,76.0,70.0,90.0,76.0,66.0,80.0,74.0,76.0,68.0,77.0,92.0,81.0,83.0,71.0,73.0,83.0,81.0,73.0,93.0,72.0,79.0,98.0,74.0,83.0,64.0,76.0,72.0,68.0,82.0,60.0,89.0,82.0,90.0,90.0,84.0,81.0,92.0,98.0,90.0,89.0,72.0,64.0,69.0,59.0,66.0,74.0,83.0,55.0,71.0,67.0,68.0,51.0,66.0,59.0,81.0,73.0,50.0,55.0,39.0,34.0,41.0,28.0,24.0,25.0,34.0,15.0,14.0,14.0,17.0,11.0,15.0,8.0,20.0 M81038,29.0,52.0,52.0,39.0,35.0,30.0,38.0,41.0,60.0,42.0,55.0,65.0,49.0,55.0,67.0,67.0,57.0,58.0,53.0,50.0,47.0,45.0,50.0,54.0,39.0,59.0,55.0,43.0,54.0,51.0,44.0,49.0,47.0,49.0,51.0,61.0,66.0,71.0,65.0,56.0,54.0,60.0,64.0,56.0,72.0,60.0,64.0,66.0,78.0,79.0,65.0,67.0,81.0,88.0,103.0,83.0,102.0,119.0,115.0,109.0,132.0,112.0,115.0,112.0,112.0,126.0,117.0,101.0,101.0,83.0,87.0,91.0,101.0,101.0,70.0,92.0,98.0,91.0,98.0,97.0,80.0,81.0,75.0,55.0,52.0,52.0,50.0,31.0,34.0,26.0,22.0,22.0,19.0,18.0,11.0,28.0 M81039,46.0,34.0,43.0,48.0,41.0,51.0,51.0,49.0,60.0,56.0,59.0,65.0,60.0,66.0,58.0,68.0,61.0,61.0,64.0,54.0,42.0,43.0,44.0,50.0,44.0,50.0,50.0,60.0,61.0,63.0,58.0,57.0,62.0,73.0,62.0,84.0,59.0,75.0,77.0,71.0,70.0,71.0,70.0,68.0,71.0,72.0,88.0,74.0,65.0,50.0,65.0,74.0,88.0,85.0,72.0,89.0,89.0,99.0,85.0,110.0,110.0,87.0,92.0,93.0,84.0,98.0,94.0,113.0,91.0,76.0,88.0,90.0,80.0,77.0,75.0,94.0,86.0,94.0,92.0,75.0,62.0,49.0,58.0,58.0,51.0,52.0,56.0,43.0,31.0,26.0,15.0,19.0,18.0,4.0,18.0,28.0 M81040,90.0,82.0,84.0,76.0,92.0,80.0,93.0,86.0,111.0,104.0,112.0,101.0,106.0,116.0,115.0,100.0,106.0,125.0,126.0,84.0,96.0,102.0,80.0,114.0,99.0,96.0,110.0,110.0,112.0,106.0,110.0,112.0,112.0,113.0,122.0,137.0,109.0,140.0,126.0,122.0,122.0,111.0,121.0,108.0,125.0,111.0,113.0,100.0,101.0,114.0,119.0,129.0,151.0,140.0,182.0,165.0,165.0,158.0,173.0,177.0,167.0,158.0,152.0,162.0,131.0,164.0,149.0,145.0,108.0,151.0,144.0,150.0,143.0,134.0,153.0,159.0,153.0,172.0,155.0,137.0,144.0,130.0,97.0,75.0,87.0,100.0,76.0,50.0,57.0,63.0,42.0,39.0,26.0,28.0,17.0,54.0 M81041,46.0,49.0,56.0,68.0,54.0,53.0,48.0,60.0,66.0,69.0,57.0,52.0,69.0,57.0,56.0,66.0,63.0,53.0,71.0,54.0,63.0,45.0,52.0,53.0,50.0,63.0,54.0,66.0,80.0,62.0,64.0,73.0,106.0,83.0,84.0,78.0,86.0,72.0,71.0,70.0,86.0,78.0,79.0,77.0,91.0,85.0,78.0,62.0,49.0,65.0,69.0,64.0,86.0,91.0,100.0,86.0,87.0,66.0,73.0,79.0,87.0,74.0,62.0,77.0,68.0,89.0,58.0,58.0,56.0,62.0,57.0,75.0,66.0,62.0,52.0,51.0,58.0,61.0,46.0,48.0,52.0,43.0,32.0,22.0,31.0,25.0,17.0,24.0,18.0,16.0,12.0,8.0,14.0,1.0,6.0,10.0 M81042,31.0,40.0,34.0,26.0,33.0,42.0,34.0,55.0,50.0,52.0,45.0,39.0,49.0,51.0,46.0,49.0,31.0,43.0,37.0,43.0,36.0,28.0,33.0,39.0,28.0,38.0,35.0,43.0,35.0,37.0,48.0,43.0,36.0,52.0,41.0,41.0,42.0,68.0,45.0,49.0,51.0,59.0,52.0,34.0,51.0,56.0,51.0,53.0,59.0,43.0,51.0,48.0,51.0,51.0,68.0,69.0,76.0,83.0,78.0,82.0,99.0,87.0,87.0,95.0,81.0,69.0,83.0,68.0,77.0,66.0,83.0,80.0,81.0,62.0,82.0,98.0,66.0,84.0,75.0,64.0,53.0,63.0,61.0,50.0,37.0,38.0,29.0,30.0,25.0,21.0,15.0,26.0,9.0,12.0,6.0,19.0 M81043,21.0,23.0,30.0,26.0,30.0,31.0,20.0,42.0,37.0,35.0,52.0,45.0,47.0,45.0,43.0,38.0,49.0,39.0,43.0,31.0,24.0,26.0,25.0,25.0,25.0,24.0,29.0,39.0,30.0,35.0,30.0,32.0,43.0,26.0,40.0,45.0,36.0,46.0,40.0,31.0,46.0,51.0,38.0,38.0,40.0,49.0,48.0,37.0,46.0,44.0,61.0,55.0,66.0,63.0,86.0,57.0,75.0,69.0,69.0,83.0,72.0,104.0,90.0,80.0,80.0,81.0,98.0,73.0,86.0,81.0,89.0,98.0,74.0,71.0,62.0,55.0,87.0,78.0,80.0,57.0,67.0,54.0,38.0,41.0,35.0,35.0,39.0,24.0,31.0,13.0,20.0,10.0,13.0,6.0,3.0,16.0 M81044,28.0,38.0,40.0,44.0,39.0,40.0,38.0,65.0,40.0,55.0,50.0,57.0,61.0,55.0,67.0,69.0,58.0,41.0,56.0,38.0,48.0,49.0,51.0,49.0,53.0,57.0,65.0,58.0,68.0,58.0,68.0,71.0,60.0,54.0,61.0,55.0,76.0,82.0,73.0,63.0,70.0,69.0,76.0,62.0,57.0,60.0,55.0,64.0,66.0,70.0,72.0,76.0,87.0,84.0,97.0,72.0,96.0,91.0,82.0,84.0,90.0,99.0,98.0,84.0,82.0,92.0,82.0,104.0,83.0,92.0,76.0,86.0,83.0,70.0,75.0,64.0,72.0,72.0,81.0,69.0,49.0,55.0,51.0,43.0,29.0,40.0,48.0,22.0,20.0,19.0,29.0,18.0,13.0,11.0,11.0,21.0 M81045,9.0,22.0,15.0,23.0,17.0,11.0,25.0,21.0,18.0,31.0,20.0,25.0,24.0,28.0,26.0,21.0,30.0,25.0,28.0,18.0,19.0,19.0,25.0,15.0,24.0,22.0,19.0,21.0,14.0,22.0,20.0,12.0,21.0,29.0,26.0,19.0,21.0,20.0,24.0,27.0,26.0,38.0,26.0,19.0,24.0,36.0,30.0,26.0,34.0,29.0,34.0,33.0,18.0,40.0,40.0,44.0,44.0,49.0,37.0,46.0,54.0,59.0,54.0,57.0,35.0,42.0,44.0,44.0,42.0,42.0,42.0,28.0,44.0,38.0,45.0,31.0,32.0,43.0,30.0,24.0,33.0,23.0,26.0,20.0,14.0,15.0,15.0,18.0,14.0,5.0,6.0,7.0,6.0,4.0,1.0,5.0 M81046,46.0,47.0,38.0,42.0,48.0,40.0,54.0,33.0,66.0,56.0,44.0,54.0,67.0,56.0,57.0,57.0,57.0,53.0,53.0,47.0,49.0,55.0,42.0,46.0,51.0,47.0,70.0,48.0,66.0,52.0,71.0,57.0,52.0,57.0,58.0,64.0,63.0,57.0,51.0,62.0,51.0,76.0,62.0,69.0,54.0,62.0,59.0,63.0,47.0,58.0,68.0,89.0,75.0,86.0,97.0,90.0,84.0,99.0,103.0,98.0,113.0,83.0,105.0,108.0,108.0,95.0,102.0,103.0,109.0,96.0,93.0,89.0,69.0,77.0,87.0,99.0,79.0,126.0,76.0,77.0,93.0,92.0,71.0,62.0,45.0,56.0,44.0,35.0,39.0,36.0,21.0,25.0,18.0,10.0,8.0,22.0 M81047,34.0,55.0,67.0,54.0,63.0,59.0,67.0,76.0,69.0,65.0,44.0,45.0,79.0,73.0,53.0,46.0,61.0,55.0,58.0,48.0,37.0,52.0,64.0,42.0,52.0,57.0,64.0,57.0,59.0,65.0,71.0,63.0,79.0,88.0,83.0,85.0,97.0,87.0,72.0,92.0,89.0,69.0,60.0,72.0,88.0,57.0,55.0,63.0,56.0,64.0,64.0,46.0,62.0,63.0,70.0,66.0,65.0,66.0,71.0,61.0,60.0,59.0,72.0,65.0,57.0,61.0,61.0,64.0,45.0,60.0,69.0,64.0,62.0,62.0,54.0,68.0,65.0,74.0,82.0,44.0,53.0,47.0,34.0,30.0,41.0,34.0,31.0,30.0,19.0,21.0,13.0,6.0,10.0,8.0,4.0,10.0 M81048,26.0,38.0,29.0,25.0,27.0,32.0,42.0,30.0,40.0,39.0,41.0,45.0,45.0,49.0,56.0,36.0,44.0,43.0,45.0,41.0,37.0,29.0,33.0,41.0,28.0,36.0,42.0,38.0,35.0,49.0,51.0,39.0,47.0,51.0,50.0,42.0,53.0,54.0,39.0,58.0,47.0,44.0,43.0,43.0,55.0,44.0,59.0,40.0,50.0,44.0,52.0,52.0,63.0,65.0,64.0,64.0,66.0,82.0,80.0,85.0,95.0,93.0,77.0,77.0,92.0,75.0,90.0,99.0,82.0,71.0,81.0,85.0,83.0,76.0,71.0,66.0,66.0,63.0,72.0,75.0,51.0,59.0,50.0,40.0,31.0,31.0,34.0,29.0,31.0,22.0,21.0,14.0,13.0,7.0,8.0,30.0 M81049,55.0,46.0,76.0,58.0,51.0,69.0,64.0,76.0,71.0,69.0,61.0,69.0,78.0,76.0,51.0,59.0,62.0,60.0,61.0,34.0,40.0,46.0,34.0,55.0,62.0,42.0,61.0,56.0,61.0,65.0,71.0,66.0,94.0,88.0,91.0,89.0,89.0,100.0,79.0,83.0,93.0,89.0,87.0,79.0,98.0,84.0,80.0,72.0,68.0,80.0,73.0,80.0,86.0,76.0,79.0,87.0,76.0,77.0,70.0,73.0,71.0,67.0,53.0,73.0,58.0,47.0,64.0,72.0,45.0,49.0,56.0,52.0,64.0,44.0,58.0,39.0,60.0,59.0,51.0,37.0,50.0,47.0,50.0,39.0,24.0,30.0,19.0,29.0,22.0,16.0,16.0,14.0,13.0,9.0,9.0,27.0 M81054,30.0,24.0,32.0,30.0,24.0,27.0,35.0,36.0,32.0,29.0,25.0,33.0,39.0,30.0,25.0,32.0,36.0,27.0,32.0,24.0,31.0,31.0,34.0,17.0,23.0,24.0,22.0,43.0,27.0,31.0,22.0,30.0,40.0,37.0,30.0,32.0,45.0,45.0,34.0,34.0,40.0,32.0,42.0,31.0,28.0,30.0,30.0,22.0,33.0,32.0,27.0,38.0,49.0,45.0,48.0,65.0,52.0,52.0,58.0,80.0,63.0,66.0,70.0,43.0,69.0,52.0,64.0,63.0,47.0,74.0,57.0,66.0,60.0,59.0,35.0,51.0,53.0,69.0,71.0,45.0,52.0,33.0,38.0,25.0,32.0,26.0,25.0,23.0,18.0,24.0,19.0,20.0,12.0,7.0,9.0,20.0 M81055,16.0,28.0,25.0,29.0,27.0,23.0,40.0,28.0,43.0,34.0,41.0,43.0,37.0,28.0,38.0,30.0,34.0,34.0,28.0,35.0,35.0,25.0,29.0,33.0,33.0,33.0,39.0,26.0,25.0,40.0,46.0,36.0,31.0,39.0,57.0,27.0,30.0,38.0,56.0,47.0,45.0,38.0,37.0,46.0,46.0,39.0,32.0,46.0,29.0,35.0,38.0,41.0,40.0,29.0,47.0,35.0,36.0,52.0,44.0,52.0,44.0,49.0,38.0,32.0,29.0,38.0,32.0,30.0,19.0,27.0,31.0,25.0,28.0,25.0,25.0,25.0,10.0,29.0,25.0,23.0,16.0,18.0,15.0,10.0,17.0,12.0,17.0,10.0,3.0,11.0,8.0,6.0,3.0,4.0,3.0,10.0 M81056,35.0,39.0,40.0,37.0,45.0,50.0,58.0,63.0,47.0,65.0,58.0,73.0,62.0,66.0,76.0,74.0,65.0,67.0,72.0,64.0,55.0,61.0,60.0,57.0,70.0,56.0,61.0,72.0,69.0,59.0,67.0,71.0,75.0,73.0,82.0,74.0,76.0,75.0,64.0,76.0,77.0,75.0,64.0,80.0,70.0,71.0,82.0,76.0,50.0,76.0,78.0,75.0,96.0,91.0,85.0,93.0,110.0,98.0,96.0,95.0,102.0,98.0,87.0,62.0,80.0,85.0,69.0,80.0,81.0,69.0,59.0,78.0,57.0,79.0,79.0,91.0,82.0,79.0,59.0,58.0,64.0,60.0,69.0,37.0,32.0,36.0,41.0,45.0,26.0,24.0,19.0,24.0,12.0,12.0,8.0,15.0 M81057,32.0,41.0,43.0,35.0,52.0,47.0,36.0,68.0,65.0,59.0,67.0,56.0,57.0,57.0,66.0,51.0,62.0,70.0,61.0,60.0,44.0,57.0,45.0,54.0,77.0,63.0,69.0,58.0,44.0,55.0,74.0,71.0,57.0,66.0,66.0,60.0,77.0,89.0,76.0,75.0,57.0,72.0,72.0,65.0,67.0,89.0,74.0,67.0,69.0,80.0,99.0,85.0,120.0,115.0,122.0,91.0,122.0,130.0,152.0,125.0,120.0,136.0,131.0,121.0,130.0,123.0,120.0,109.0,104.0,116.0,131.0,127.0,116.0,135.0,112.0,154.0,133.0,159.0,140.0,105.0,107.0,100.0,87.0,72.0,73.0,52.0,62.0,37.0,48.0,26.0,23.0,26.0,17.0,14.0,10.0,19.0 M81058,34.0,41.0,37.0,48.0,39.0,38.0,39.0,54.0,51.0,42.0,56.0,40.0,59.0,55.0,59.0,63.0,59.0,72.0,48.0,53.0,56.0,62.0,36.0,44.0,57.0,53.0,56.0,55.0,60.0,70.0,63.0,60.0,56.0,55.0,64.0,62.0,54.0,54.0,56.0,55.0,57.0,63.0,63.0,44.0,63.0,69.0,72.0,52.0,57.0,61.0,64.0,51.0,65.0,70.0,70.0,84.0,89.0,66.0,68.0,75.0,68.0,73.0,64.0,80.0,62.0,71.0,62.0,65.0,61.0,56.0,51.0,69.0,61.0,57.0,59.0,65.0,69.0,63.0,60.0,41.0,50.0,46.0,46.0,41.0,35.0,36.0,43.0,33.0,27.0,20.0,21.0,7.0,22.0,18.0,12.0,29.0 M81061,28.0,29.0,22.0,30.0,35.0,38.0,37.0,34.0,41.0,39.0,37.0,48.0,44.0,42.0,36.0,39.0,35.0,50.0,40.0,28.0,28.0,39.0,35.0,38.0,34.0,37.0,32.0,42.0,41.0,33.0,45.0,36.0,33.0,46.0,55.0,46.0,50.0,50.0,51.0,47.0,42.0,43.0,58.0,47.0,46.0,57.0,42.0,43.0,45.0,41.0,57.0,62.0,42.0,58.0,65.0,57.0,66.0,56.0,66.0,70.0,83.0,72.0,74.0,58.0,74.0,64.0,76.0,72.0,74.0,58.0,59.0,80.0,83.0,62.0,60.0,82.0,66.0,69.0,73.0,53.0,47.0,56.0,45.0,32.0,38.0,31.0,32.0,22.0,29.0,24.0,22.0,18.0,9.0,8.0,3.0,24.0 M81063,60.0,69.0,55.0,72.0,62.0,69.0,74.0,69.0,76.0,81.0,76.0,71.0,83.0,71.0,66.0,73.0,68.0,79.0,78.0,67.0,69.0,86.0,78.0,94.0,90.0,79.0,98.0,98.0,89.0,107.0,101.0,109.0,118.0,108.0,116.0,102.0,115.0,88.0,95.0,90.0,91.0,90.0,66.0,68.0,85.0,92.0,76.0,81.0,80.0,69.0,87.0,66.0,70.0,77.0,99.0,93.0,84.0,69.0,84.0,87.0,66.0,78.0,84.0,82.0,83.0,77.0,64.0,67.0,79.0,53.0,60.0,73.0,73.0,65.0,69.0,56.0,55.0,81.0,61.0,52.0,53.0,51.0,44.0,55.0,38.0,30.0,44.0,47.0,34.0,20.0,13.0,21.0,16.0,12.0,11.0,27.0 M81064,38.0,34.0,45.0,41.0,45.0,50.0,45.0,34.0,45.0,42.0,50.0,53.0,39.0,58.0,49.0,48.0,51.0,48.0,44.0,45.0,36.0,42.0,30.0,29.0,35.0,28.0,48.0,36.0,38.0,52.0,58.0,47.0,47.0,56.0,57.0,50.0,71.0,52.0,52.0,52.0,56.0,55.0,42.0,42.0,58.0,64.0,54.0,45.0,56.0,37.0,39.0,45.0,54.0,41.0,48.0,48.0,56.0,56.0,64.0,71.0,65.0,61.0,48.0,53.0,67.0,48.0,47.0,51.0,47.0,56.0,60.0,54.0,45.0,49.0,45.0,53.0,50.0,51.0,44.0,36.0,62.0,52.0,43.0,38.0,36.0,21.0,24.0,24.0,12.0,12.0,11.0,17.0,5.0,6.0,4.0,9.0 M81066,25.0,28.0,34.0,33.0,30.0,45.0,32.0,35.0,39.0,34.0,38.0,32.0,54.0,35.0,44.0,33.0,36.0,44.0,38.0,40.0,35.0,41.0,32.0,27.0,35.0,39.0,35.0,48.0,43.0,57.0,47.0,36.0,58.0,52.0,60.0,62.0,55.0,62.0,43.0,59.0,51.0,47.0,45.0,57.0,44.0,51.0,44.0,42.0,43.0,46.0,60.0,51.0,55.0,52.0,65.0,71.0,58.0,61.0,67.0,56.0,63.0,65.0,65.0,65.0,58.0,63.0,49.0,61.0,52.0,63.0,54.0,52.0,42.0,33.0,53.0,52.0,53.0,52.0,62.0,41.0,39.0,40.0,33.0,39.0,27.0,25.0,17.0,24.0,18.0,15.0,17.0,11.0,12.0,9.0,6.0,13.0 M81067,32.0,23.0,18.0,25.0,25.0,35.0,29.0,36.0,36.0,26.0,27.0,34.0,28.0,32.0,31.0,33.0,26.0,28.0,20.0,30.0,18.0,19.0,21.0,26.0,20.0,25.0,10.0,25.0,24.0,27.0,25.0,32.0,29.0,40.0,40.0,33.0,31.0,39.0,39.0,35.0,23.0,37.0,23.0,22.0,29.0,30.0,33.0,26.0,31.0,31.0,27.0,24.0,43.0,42.0,38.0,32.0,45.0,43.0,39.0,40.0,42.0,36.0,49.0,38.0,56.0,36.0,38.0,46.0,34.0,34.0,44.0,34.0,31.0,39.0,40.0,22.0,39.0,33.0,37.0,35.0,35.0,26.0,24.0,24.0,20.0,20.0,11.0,9.0,9.0,7.0,7.0,5.0,4.0,4.0,5.0,13.0 M81068,71.0,58.0,72.0,60.0,77.0,69.0,80.0,77.0,80.0,70.0,73.0,90.0,101.0,94.0,86.0,80.0,97.0,81.0,72.0,66.0,51.0,51.0,65.0,60.0,83.0,92.0,77.0,107.0,76.0,76.0,101.0,104.0,107.0,103.0,126.0,117.0,104.0,114.0,93.0,102.0,94.0,85.0,69.0,78.0,87.0,75.0,89.0,83.0,104.0,89.0,109.0,87.0,104.0,126.0,121.0,131.0,118.0,107.0,133.0,104.0,122.0,87.0,100.0,104.0,106.0,77.0,113.0,98.0,73.0,92.0,86.0,91.0,92.0,90.0,106.0,106.0,117.0,109.0,120.0,74.0,86.0,83.0,66.0,42.0,51.0,48.0,47.0,35.0,36.0,24.0,32.0,17.0,18.0,18.0,10.0,23.0 M81069,39.0,47.0,47.0,51.0,48.0,68.0,46.0,47.0,48.0,42.0,36.0,44.0,52.0,47.0,43.0,41.0,56.0,53.0,37.0,33.0,25.0,44.0,39.0,46.0,43.0,45.0,53.0,55.0,64.0,59.0,58.0,73.0,75.0,74.0,79.0,72.0,72.0,62.0,76.0,71.0,51.0,50.0,59.0,47.0,50.0,60.0,51.0,41.0,59.0,38.0,56.0,60.0,58.0,60.0,52.0,62.0,84.0,58.0,79.0,79.0,55.0,73.0,67.0,55.0,63.0,50.0,61.0,50.0,59.0,53.0,64.0,55.0,51.0,48.0,51.0,56.0,60.0,57.0,73.0,47.0,46.0,46.0,50.0,32.0,32.0,21.0,29.0,42.0,30.0,31.0,22.0,13.0,18.0,17.0,11.0,25.0 M81070,36.0,38.0,36.0,55.0,49.0,59.0,60.0,50.0,74.0,64.0,71.0,66.0,74.0,70.0,103.0,86.0,114.0,106.0,102.0,60.0,60.0,53.0,55.0,43.0,47.0,42.0,49.0,54.0,50.0,55.0,49.0,48.0,65.0,58.0,74.0,52.0,82.0,66.0,71.0,57.0,61.0,74.0,68.0,63.0,80.0,42.0,67.0,65.0,61.0,62.0,75.0,66.0,80.0,91.0,93.0,77.0,110.0,99.0,65.0,84.0,89.0,85.0,66.0,77.0,74.0,80.0,75.0,72.0,61.0,51.0,50.0,63.0,54.0,43.0,61.0,66.0,70.0,68.0,68.0,56.0,60.0,47.0,43.0,42.0,42.0,38.0,39.0,28.0,29.0,20.0,15.0,23.0,14.0,5.0,11.0,26.0 M81072,23.0,24.0,35.0,20.0,31.0,31.0,30.0,23.0,33.0,25.0,20.0,23.0,45.0,30.0,27.0,25.0,32.0,37.0,45.0,37.0,42.0,48.0,36.0,34.0,41.0,43.0,36.0,45.0,41.0,44.0,47.0,49.0,54.0,49.0,48.0,52.0,50.0,41.0,64.0,40.0,44.0,56.0,42.0,44.0,40.0,45.0,46.0,35.0,27.0,47.0,37.0,37.0,54.0,43.0,55.0,53.0,63.0,52.0,48.0,53.0,54.0,53.0,53.0,51.0,38.0,37.0,44.0,44.0,38.0,30.0,39.0,41.0,38.0,20.0,24.0,35.0,39.0,43.0,36.0,32.0,30.0,18.0,28.0,18.0,15.0,14.0,13.0,11.0,14.0,10.0,5.0,7.0,7.0,6.0,6.0,10.0 M81074,35.0,36.0,43.0,41.0,49.0,33.0,46.0,41.0,62.0,54.0,38.0,51.0,52.0,57.0,65.0,63.0,45.0,45.0,50.0,36.0,40.0,42.0,40.0,45.0,46.0,54.0,55.0,59.0,65.0,63.0,66.0,50.0,61.0,64.0,58.0,65.0,52.0,64.0,67.0,73.0,54.0,52.0,57.0,65.0,49.0,61.0,47.0,60.0,44.0,56.0,76.0,65.0,87.0,67.0,64.0,74.0,80.0,84.0,89.0,87.0,96.0,80.0,77.0,95.0,84.0,85.0,71.0,88.0,77.0,72.0,62.0,82.0,72.0,84.0,86.0,73.0,67.0,90.0,72.0,75.0,77.0,79.0,44.0,48.0,38.0,44.0,36.0,36.0,34.0,21.0,16.0,7.0,15.0,21.0,10.0,32.0 M81075,49.0,45.0,33.0,46.0,43.0,55.0,61.0,53.0,71.0,55.0,61.0,77.0,67.0,70.0,74.0,86.0,91.0,79.0,106.0,76.0,71.0,75.0,70.0,78.0,77.0,85.0,56.0,66.0,78.0,61.0,70.0,70.0,72.0,71.0,58.0,75.0,84.0,71.0,77.0,68.0,60.0,72.0,69.0,76.0,72.0,78.0,66.0,68.0,50.0,76.0,75.0,80.0,80.0,76.0,77.0,73.0,84.0,84.0,114.0,87.0,99.0,102.0,89.0,84.0,78.0,90.0,86.0,87.0,94.0,97.0,71.0,58.0,85.0,82.0,104.0,80.0,72.0,93.0,81.0,63.0,84.0,60.0,58.0,58.0,45.0,41.0,41.0,36.0,42.0,34.0,37.0,23.0,27.0,23.0,12.0,51.0 M81076,9.0,7.0,10.0,11.0,6.0,8.0,10.0,11.0,17.0,16.0,15.0,15.0,21.0,28.0,12.0,21.0,20.0,16.0,19.0,10.0,7.0,8.0,10.0,7.0,16.0,6.0,8.0,8.0,4.0,7.0,6.0,9.0,9.0,12.0,13.0,9.0,7.0,12.0,14.0,16.0,13.0,13.0,14.0,19.0,14.0,21.0,21.0,12.0,19.0,22.0,15.0,17.0,17.0,33.0,19.0,27.0,28.0,24.0,22.0,35.0,31.0,35.0,31.0,26.0,32.0,19.0,36.0,30.0,32.0,28.0,31.0,25.0,27.0,24.0,27.0,25.0,23.0,24.0,23.0,21.0,27.0,14.0,17.0,17.0,15.0,8.0,18.0,13.0,13.0,10.0,2.0,2.0,3.0,1.0,1.0,5.0 M81077,13.0,19.0,20.0,20.0,18.0,23.0,21.0,21.0,17.0,23.0,23.0,22.0,22.0,31.0,29.0,21.0,28.0,23.0,21.0,24.0,22.0,20.0,29.0,15.0,23.0,23.0,15.0,15.0,25.0,18.0,15.0,23.0,21.0,28.0,17.0,22.0,20.0,27.0,21.0,29.0,24.0,20.0,25.0,28.0,25.0,34.0,33.0,22.0,18.0,23.0,50.0,21.0,33.0,35.0,36.0,31.0,35.0,46.0,57.0,45.0,49.0,36.0,37.0,39.0,30.0,27.0,40.0,37.0,40.0,33.0,24.0,29.0,43.0,32.0,29.0,29.0,39.0,46.0,34.0,38.0,33.0,24.0,18.0,20.0,18.0,16.0,13.0,20.0,13.0,7.0,5.0,4.0,8.0,1.0,4.0,7.0 M81078,21.0,16.0,25.0,43.0,26.0,37.0,31.0,31.0,39.0,39.0,32.0,37.0,42.0,41.0,43.0,28.0,31.0,34.0,35.0,28.0,22.0,33.0,26.0,33.0,25.0,30.0,27.0,22.0,34.0,24.0,30.0,21.0,29.0,27.0,39.0,31.0,38.0,35.0,38.0,34.0,37.0,38.0,36.0,33.0,35.0,57.0,45.0,40.0,45.0,47.0,41.0,35.0,49.0,50.0,51.0,56.0,57.0,52.0,58.0,62.0,53.0,56.0,55.0,57.0,52.0,58.0,46.0,49.0,42.0,41.0,45.0,44.0,46.0,29.0,47.0,51.0,45.0,36.0,35.0,45.0,39.0,39.0,27.0,22.0,23.0,17.0,28.0,17.0,19.0,18.0,7.0,12.0,11.0,12.0,4.0,14.0 M81081,12.0,25.0,28.0,19.0,20.0,26.0,15.0,39.0,31.0,33.0,28.0,30.0,24.0,32.0,27.0,24.0,24.0,26.0,28.0,22.0,10.0,28.0,23.0,19.0,17.0,18.0,31.0,29.0,39.0,29.0,26.0,37.0,34.0,38.0,38.0,30.0,24.0,28.0,40.0,30.0,35.0,37.0,29.0,31.0,20.0,33.0,36.0,25.0,39.0,25.0,32.0,42.0,39.0,47.0,41.0,44.0,43.0,52.0,35.0,39.0,43.0,54.0,34.0,41.0,38.0,38.0,53.0,44.0,53.0,31.0,31.0,30.0,30.0,32.0,33.0,35.0,36.0,43.0,46.0,32.0,30.0,40.0,36.0,24.0,18.0,15.0,23.0,20.0,27.0,9.0,10.0,8.0,10.0,3.0,2.0,13.0 M81082,67.0,107.0,74.0,95.0,92.0,103.0,95.0,119.0,101.0,100.0,117.0,110.0,77.0,90.0,85.0,85.0,86.0,96.0,82.0,66.0,69.0,57.0,82.0,71.0,68.0,84.0,89.0,93.0,101.0,101.0,111.0,97.0,95.0,113.0,126.0,134.0,137.0,117.0,109.0,125.0,124.0,112.0,103.0,102.0,110.0,121.0,102.0,105.0,77.0,93.0,110.0,91.0,116.0,104.0,106.0,101.0,104.0,112.0,112.0,101.0,92.0,98.0,96.0,105.0,104.0,87.0,80.0,93.0,96.0,88.0,83.0,83.0,79.0,64.0,63.0,84.0,61.0,73.0,49.0,44.0,49.0,53.0,43.0,37.0,32.0,31.0,21.0,24.0,27.0,22.0,17.0,11.0,18.0,14.0,7.0,19.0 M81083,16.0,20.0,21.0,18.0,18.0,20.0,19.0,22.0,28.0,18.0,17.0,31.0,17.0,25.0,27.0,31.0,20.0,14.0,20.0,17.0,25.0,19.0,15.0,22.0,26.0,20.0,22.0,25.0,35.0,23.0,20.0,26.0,31.0,33.0,29.0,24.0,19.0,44.0,33.0,39.0,28.0,19.0,23.0,20.0,30.0,32.0,21.0,21.0,26.0,23.0,29.0,26.0,29.0,29.0,31.0,32.0,43.0,44.0,33.0,36.0,40.0,41.0,45.0,34.0,27.0,40.0,47.0,30.0,24.0,27.0,27.0,19.0,30.0,42.0,29.0,33.0,26.0,36.0,27.0,23.0,32.0,29.0,26.0,22.0,22.0,17.0,21.0,18.0,17.0,16.0,21.0,15.0,11.0,4.0,4.0,20.0 M81084,26.0,25.0,34.0,26.0,25.0,36.0,37.0,35.0,39.0,37.0,33.0,41.0,28.0,35.0,28.0,33.0,34.0,19.0,25.0,17.0,19.0,10.0,17.0,24.0,20.0,23.0,28.0,34.0,30.0,34.0,26.0,34.0,40.0,31.0,48.0,35.0,43.0,46.0,42.0,38.0,44.0,40.0,39.0,47.0,46.0,32.0,47.0,32.0,34.0,22.0,29.0,45.0,29.0,40.0,43.0,37.0,36.0,45.0,42.0,48.0,41.0,44.0,54.0,32.0,36.0,40.0,29.0,35.0,34.0,38.0,37.0,35.0,29.0,34.0,35.0,26.0,35.0,31.0,27.0,21.0,30.0,24.0,19.0,10.0,15.0,12.0,8.0,5.0,11.0,8.0,4.0,3.0,5.0,3.0,4.0,2.0 M81090,4.0,5.0,5.0,13.0,14.0,9.0,10.0,8.0,9.0,15.0,13.0,9.0,27.0,22.0,17.0,19.0,16.0,16.0,18.0,14.0,12.0,14.0,17.0,11.0,14.0,17.0,10.0,10.0,10.0,14.0,12.0,14.0,19.0,17.0,18.0,14.0,13.0,14.0,18.0,9.0,17.0,11.0,16.0,18.0,10.0,22.0,20.0,16.0,18.0,31.0,27.0,22.0,20.0,26.0,30.0,26.0,27.0,34.0,42.0,37.0,39.0,32.0,29.0,41.0,28.0,28.0,25.0,19.0,19.0,31.0,22.0,30.0,29.0,17.0,23.0,26.0,20.0,26.0,41.0,22.0,22.0,26.0,17.0,14.0,18.0,10.0,7.0,7.0,12.0,7.0,14.0,7.0,4.0,3.0,2.0,7.0 M81091,68.0,58.0,62.0,59.0,75.0,60.0,68.0,70.0,73.0,80.0,63.0,70.0,79.0,84.0,64.0,83.0,92.0,83.0,71.0,66.0,70.0,53.0,69.0,74.0,66.0,84.0,74.0,79.0,70.0,81.0,90.0,71.0,85.0,103.0,81.0,77.0,86.0,97.0,92.0,74.0,75.0,86.0,79.0,75.0,83.0,103.0,87.0,76.0,80.0,83.0,86.0,92.0,88.0,98.0,115.0,124.0,124.0,113.0,108.0,134.0,107.0,111.0,109.0,108.0,98.0,97.0,80.0,101.0,77.0,87.0,77.0,84.0,64.0,70.0,90.0,64.0,76.0,100.0,97.0,61.0,80.0,59.0,64.0,59.0,41.0,55.0,43.0,52.0,46.0,29.0,32.0,13.0,15.0,13.0,14.0,30.0 M81092,24.0,24.0,28.0,18.0,17.0,30.0,30.0,22.0,28.0,19.0,32.0,31.0,44.0,26.0,31.0,19.0,29.0,33.0,30.0,26.0,16.0,26.0,18.0,26.0,18.0,27.0,31.0,34.0,38.0,45.0,47.0,38.0,43.0,51.0,32.0,48.0,39.0,36.0,42.0,35.0,40.0,26.0,42.0,38.0,48.0,38.0,37.0,26.0,21.0,28.0,26.0,28.0,37.0,30.0,33.0,51.0,47.0,43.0,36.0,31.0,36.0,48.0,41.0,41.0,36.0,35.0,29.0,43.0,46.0,40.0,41.0,24.0,25.0,25.0,28.0,28.0,27.0,28.0,24.0,18.0,25.0,21.0,12.0,16.0,6.0,7.0,15.0,12.0,16.0,13.0,5.0,7.0,4.0,11.0,5.0,19.0 M81093,61.0,56.0,63.0,67.0,68.0,61.0,65.0,71.0,67.0,55.0,56.0,57.0,54.0,53.0,58.0,58.0,57.0,56.0,53.0,35.0,62.0,63.0,53.0,60.0,77.0,53.0,62.0,84.0,56.0,70.0,91.0,84.0,71.0,86.0,93.0,89.0,96.0,82.0,73.0,67.0,64.0,72.0,75.0,76.0,74.0,63.0,64.0,64.0,57.0,64.0,70.0,58.0,79.0,58.0,75.0,56.0,68.0,68.0,77.0,64.0,56.0,74.0,69.0,55.0,68.0,61.0,39.0,57.0,48.0,50.0,42.0,50.0,36.0,43.0,47.0,46.0,34.0,41.0,40.0,20.0,30.0,31.0,22.0,22.0,25.0,12.0,16.0,16.0,16.0,14.0,14.0,14.0,9.0,5.0,4.0,15.0 M81094,38.0,38.0,44.0,43.0,45.0,42.0,50.0,47.0,71.0,49.0,53.0,64.0,69.0,65.0,50.0,57.0,49.0,53.0,48.0,45.0,45.0,32.0,42.0,43.0,57.0,40.0,39.0,42.0,45.0,51.0,69.0,52.0,50.0,76.0,71.0,77.0,72.0,67.0,91.0,76.0,61.0,63.0,60.0,78.0,59.0,68.0,68.0,51.0,56.0,70.0,51.0,70.0,75.0,84.0,82.0,73.0,67.0,65.0,75.0,59.0,65.0,65.0,59.0,70.0,63.0,61.0,51.0,67.0,58.0,44.0,59.0,61.0,44.0,51.0,42.0,48.0,47.0,52.0,63.0,44.0,40.0,21.0,20.0,33.0,29.0,22.0,35.0,20.0,16.0,18.0,18.0,8.0,14.0,6.0,4.0,12.0 M81600,10.0,8.0,15.0,13.0,18.0,17.0,20.0,13.0,17.0,9.0,15.0,19.0,16.0,24.0,21.0,22.0,20.0,14.0,12.0,18.0,19.0,17.0,12.0,15.0,19.0,17.0,9.0,17.0,23.0,14.0,19.0,15.0,13.0,24.0,19.0,26.0,23.0,22.0,15.0,29.0,23.0,17.0,25.0,26.0,26.0,20.0,13.0,21.0,25.0,19.0,21.0,24.0,20.0,36.0,41.0,31.0,29.0,39.0,41.0,45.0,32.0,52.0,29.0,43.0,45.0,35.0,34.0,37.0,32.0,30.0,42.0,24.0,22.0,20.0,25.0,27.0,29.0,38.0,38.0,14.0,17.0,22.0,13.0,16.0,8.0,12.0,17.0,6.0,6.0,5.0,1.0,3.0,2.0,1.0,,4.0 M81604,27.0,18.0,30.0,33.0,34.0,17.0,37.0,31.0,34.0,35.0,38.0,39.0,33.0,34.0,41.0,32.0,44.0,34.0,20.0,20.0,16.0,33.0,31.0,31.0,30.0,23.0,28.0,43.0,20.0,31.0,37.0,25.0,31.0,38.0,38.0,28.0,47.0,34.0,41.0,41.0,30.0,38.0,36.0,45.0,39.0,36.0,28.0,37.0,45.0,31.0,51.0,41.0,42.0,51.0,45.0,57.0,68.0,63.0,52.0,68.0,81.0,56.0,64.0,56.0,65.0,43.0,43.0,52.0,54.0,48.0,44.0,41.0,43.0,38.0,54.0,54.0,48.0,42.0,50.0,35.0,31.0,21.0,25.0,26.0,24.0,28.0,15.0,21.0,13.0,11.0,13.0,9.0,7.0,5.0,2.0,6.0 M81605,14.0,14.0,13.0,20.0,17.0,28.0,21.0,19.0,26.0,28.0,32.0,40.0,36.0,31.0,39.0,39.0,41.0,43.0,34.0,27.0,23.0,26.0,26.0,27.0,22.0,31.0,28.0,30.0,28.0,33.0,28.0,31.0,19.0,27.0,26.0,23.0,29.0,28.0,22.0,28.0,24.0,31.0,33.0,39.0,42.0,45.0,45.0,30.0,36.0,35.0,41.0,43.0,44.0,41.0,49.0,53.0,45.0,52.0,48.0,64.0,52.0,43.0,41.0,52.0,49.0,37.0,40.0,33.0,23.0,26.0,27.0,39.0,41.0,25.0,26.0,22.0,20.0,28.0,37.0,20.0,22.0,33.0,24.0,10.0,18.0,11.0,10.0,18.0,11.0,8.0,7.0,6.0,8.0,6.0,6.0,5.0 M81608,19.0,17.0,12.0,25.0,13.0,10.0,12.0,15.0,17.0,17.0,22.0,17.0,26.0,18.0,18.0,16.0,23.0,18.0,20.0,20.0,17.0,12.0,14.0,14.0,19.0,15.0,22.0,17.0,19.0,17.0,23.0,19.0,29.0,26.0,37.0,23.0,23.0,20.0,28.0,14.0,21.0,17.0,10.0,16.0,28.0,20.0,15.0,25.0,14.0,16.0,17.0,33.0,30.0,22.0,33.0,32.0,39.0,39.0,33.0,41.0,36.0,34.0,26.0,37.0,50.0,38.0,20.0,36.0,26.0,24.0,30.0,24.0,24.0,21.0,27.0,21.0,26.0,25.0,19.0,30.0,25.0,27.0,18.0,19.0,20.0,14.0,17.0,10.0,11.0,10.0,10.0,5.0,4.0,3.0,4.0,3.0 M81616,17.0,21.0,12.0,17.0,14.0,12.0,13.0,12.0,14.0,15.0,18.0,20.0,22.0,16.0,19.0,20.0,17.0,12.0,14.0,7.0,16.0,15.0,15.0,14.0,14.0,14.0,23.0,24.0,28.0,26.0,21.0,25.0,29.0,23.0,26.0,31.0,18.0,33.0,27.0,29.0,20.0,20.0,18.0,19.0,27.0,22.0,18.0,23.0,19.0,14.0,18.0,15.0,15.0,20.0,16.0,18.0,10.0,22.0,25.0,15.0,26.0,21.0,22.0,22.0,18.0,19.0,36.0,22.0,21.0,20.0,12.0,23.0,20.0,16.0,13.0,9.0,14.0,15.0,15.0,8.0,11.0,8.0,8.0,5.0,4.0,3.0,10.0,1.0,4.0,4.0,3.0,4.0,2.0,3.0,3.0,3.0 M81617,26.0,21.0,45.0,37.0,31.0,29.0,41.0,30.0,37.0,31.0,35.0,34.0,38.0,34.0,28.0,28.0,34.0,31.0,32.0,14.0,31.0,15.0,25.0,24.0,24.0,28.0,32.0,40.0,37.0,27.0,49.0,46.0,28.0,44.0,45.0,53.0,51.0,50.0,43.0,43.0,48.0,46.0,44.0,45.0,39.0,37.0,31.0,26.0,29.0,43.0,27.0,36.0,39.0,36.0,31.0,39.0,35.0,37.0,37.0,51.0,48.0,27.0,41.0,42.0,27.0,28.0,27.0,35.0,24.0,25.0,28.0,24.0,20.0,31.0,28.0,18.0,25.0,21.0,14.0,14.0,15.0,12.0,9.0,8.0,10.0,5.0,7.0,8.0,6.0,4.0,5.0,3.0,1.0,2.0,1.0,6.0 M81627,31.0,26.0,28.0,53.0,47.0,36.0,49.0,50.0,45.0,50.0,51.0,40.0,50.0,45.0,55.0,44.0,51.0,43.0,45.0,48.0,46.0,29.0,33.0,39.0,41.0,55.0,45.0,40.0,43.0,56.0,61.0,52.0,61.0,56.0,56.0,71.0,95.0,72.0,75.0,68.0,73.0,63.0,71.0,62.0,50.0,62.0,48.0,52.0,55.0,45.0,51.0,54.0,50.0,64.0,65.0,52.0,55.0,79.0,63.0,49.0,62.0,62.0,49.0,54.0,47.0,43.0,28.0,39.0,34.0,42.0,29.0,35.0,41.0,32.0,34.0,30.0,29.0,37.0,35.0,16.0,24.0,23.0,19.0,14.0,20.0,14.0,16.0,19.0,10.0,6.0,6.0,2.0,3.0,7.0,12.0,16.0 M81629,29.0,34.0,35.0,34.0,36.0,42.0,43.0,32.0,35.0,39.0,53.0,41.0,54.0,56.0,83.0,102.0,150.0,135.0,135.0,90.0,82.0,69.0,64.0,57.0,55.0,45.0,43.0,55.0,51.0,42.0,51.0,53.0,53.0,47.0,57.0,63.0,49.0,48.0,46.0,42.0,44.0,57.0,46.0,43.0,49.0,62.0,52.0,51.0,59.0,59.0,60.0,50.0,63.0,66.0,63.0,58.0,74.0,86.0,71.0,68.0,65.0,71.0,77.0,64.0,60.0,62.0,61.0,50.0,56.0,49.0,54.0,81.0,55.0,59.0,58.0,74.0,60.0,56.0,71.0,50.0,56.0,55.0,44.0,38.0,41.0,37.0,40.0,21.0,39.0,27.0,18.0,17.0,17.0,9.0,10.0,17.0 Y03602,19.0,17.0,18.0,26.0,25.0,27.0,31.0,22.0,31.0,31.0,28.0,41.0,24.0,22.0,27.0,37.0,30.0,20.0,26.0,23.0,21.0,25.0,18.0,34.0,22.0,24.0,17.0,31.0,25.0,26.0,24.0,34.0,24.0,28.0,33.0,33.0,37.0,33.0,34.0,33.0,30.0,40.0,25.0,38.0,34.0,33.0,37.0,38.0,29.0,43.0,38.0,50.0,31.0,39.0,53.0,41.0,52.0,50.0,69.0,63.0,53.0,63.0,60.0,65.0,52.0,47.0,30.0,44.0,53.0,39.0,38.0,35.0,38.0,52.0,42.0,33.0,34.0,39.0,44.0,42.0,32.0,26.0,33.0,19.0,27.0,20.0,12.0,11.0,9.0,6.0,4.0,7.0,5.0,8.0,4.0,10.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 F81001,52.0,69.0,52.0,67.0,78.0,77.0,80.0,76.0,76.0,69.0,74.0,80.0,80.0,76.0,82.0,75.0,83.0,71.0,72.0,78.0,47.0,66.0,54.0,88.0,87.0,63.0,59.0,66.0,78.0,65.0,72.0,99.0,89.0,91.0,95.0,98.0,90.0,64.0,96.0,97.0,81.0,85.0,85.0,86.0,94.0,83.0,95.0,50.0,73.0,77.0,91.0,69.0,84.0,90.0,101.0,91.0,99.0,93.0,95.0,96.0,81.0,75.0,87.0,89.0,80.0,69.0,76.0,84.0,59.0,72.0,63.0,74.0,57.0,73.0,71.0,67.0,81.0,99.0,96.0,66.0,65.0,56.0,67.0,61.0,52.0,46.0,40.0,45.0,41.0,33.0,21.0,18.0,14.0,10.0,3.0,33.0 F81003,29.0,31.0,30.0,31.0,33.0,33.0,51.0,41.0,45.0,34.0,35.0,45.0,37.0,44.0,43.0,39.0,39.0,37.0,39.0,37.0,23.0,35.0,25.0,45.0,36.0,38.0,37.0,37.0,41.0,42.0,44.0,43.0,47.0,40.0,43.0,49.0,46.0,48.0,43.0,51.0,35.0,45.0,36.0,37.0,54.0,47.0,38.0,27.0,40.0,34.0,37.0,46.0,47.0,32.0,40.0,33.0,35.0,45.0,44.0,33.0,39.0,45.0,43.0,33.0,31.0,36.0,32.0,24.0,27.0,32.0,20.0,31.0,21.0,26.0,18.0,20.0,27.0,24.0,31.0,16.0,17.0,12.0,20.0,10.0,7.0,7.0,6.0,6.0,3.0,7.0,3.0,5.0,4.0,3.0,,9.0 F81006,21.0,25.0,29.0,28.0,29.0,35.0,32.0,40.0,42.0,49.0,32.0,52.0,53.0,35.0,34.0,42.0,39.0,50.0,33.0,32.0,26.0,23.0,27.0,22.0,24.0,30.0,23.0,53.0,38.0,32.0,36.0,41.0,36.0,45.0,37.0,35.0,40.0,42.0,37.0,54.0,40.0,40.0,35.0,39.0,41.0,36.0,40.0,31.0,31.0,36.0,42.0,26.0,35.0,29.0,30.0,42.0,40.0,40.0,23.0,28.0,33.0,26.0,29.0,22.0,33.0,21.0,18.0,25.0,24.0,19.0,27.0,13.0,20.0,21.0,15.0,19.0,21.0,20.0,24.0,9.0,14.0,7.0,9.0,12.0,8.0,8.0,10.0,4.0,4.0,11.0,4.0,7.0,6.0,5.0,4.0,7.0 F81007,75.0,87.0,79.0,84.0,95.0,91.0,101.0,95.0,108.0,114.0,120.0,116.0,117.0,119.0,124.0,123.0,118.0,121.0,116.0,85.0,101.0,96.0,105.0,112.0,109.0,134.0,129.0,104.0,115.0,127.0,109.0,143.0,140.0,130.0,135.0,141.0,119.0,123.0,134.0,131.0,120.0,138.0,115.0,129.0,144.0,142.0,140.0,123.0,124.0,125.0,103.0,133.0,123.0,137.0,138.0,152.0,159.0,158.0,141.0,116.0,150.0,126.0,145.0,130.0,115.0,140.0,89.0,110.0,110.0,109.0,112.0,87.0,101.0,83.0,96.0,110.0,96.0,104.0,123.0,83.0,91.0,85.0,70.0,64.0,56.0,61.0,51.0,51.0,43.0,38.0,41.0,21.0,25.0,26.0,12.0,37.0 F81010,55.0,60.0,57.0,68.0,69.0,72.0,84.0,83.0,83.0,88.0,80.0,78.0,82.0,83.0,91.0,101.0,86.0,99.0,78.0,64.0,74.0,61.0,73.0,63.0,48.0,69.0,79.0,73.0,55.0,71.0,65.0,94.0,86.0,79.0,97.0,79.0,88.0,109.0,79.0,88.0,110.0,90.0,90.0,91.0,104.0,105.0,96.0,76.0,69.0,90.0,81.0,86.0,81.0,79.0,80.0,86.0,86.0,85.0,83.0,76.0,80.0,86.0,76.0,81.0,64.0,54.0,55.0,44.0,40.0,36.0,37.0,55.0,49.0,42.0,45.0,41.0,49.0,44.0,35.0,27.0,35.0,26.0,30.0,25.0,26.0,19.0,16.0,15.0,18.0,17.0,16.0,8.0,9.0,5.0,6.0,5.0 F81011,45.0,42.0,42.0,45.0,24.0,39.0,40.0,42.0,42.0,38.0,34.0,39.0,57.0,48.0,44.0,46.0,43.0,40.0,45.0,39.0,31.0,34.0,36.0,36.0,46.0,35.0,37.0,30.0,43.0,49.0,52.0,65.0,56.0,64.0,57.0,62.0,41.0,47.0,45.0,44.0,55.0,63.0,48.0,51.0,48.0,40.0,48.0,42.0,51.0,46.0,69.0,74.0,61.0,54.0,53.0,68.0,74.0,56.0,57.0,65.0,49.0,48.0,63.0,46.0,51.0,42.0,50.0,39.0,32.0,36.0,46.0,41.0,50.0,47.0,36.0,49.0,37.0,46.0,59.0,31.0,38.0,25.0,30.0,18.0,18.0,17.0,14.0,19.0,11.0,8.0,9.0,8.0,11.0,5.0,8.0,14.0 F81013,45.0,72.0,72.0,78.0,72.0,71.0,73.0,70.0,92.0,62.0,72.0,79.0,66.0,71.0,67.0,71.0,66.0,70.0,65.0,49.0,69.0,51.0,55.0,73.0,61.0,63.0,64.0,81.0,59.0,75.0,61.0,66.0,80.0,66.0,93.0,105.0,94.0,80.0,77.0,90.0,78.0,87.0,88.0,90.0,84.0,110.0,92.0,76.0,81.0,82.0,71.0,88.0,80.0,97.0,104.0,93.0,82.0,99.0,90.0,101.0,85.0,95.0,91.0,64.0,77.0,70.0,71.0,66.0,54.0,54.0,69.0,51.0,64.0,55.0,63.0,55.0,78.0,68.0,86.0,51.0,59.0,65.0,49.0,37.0,38.0,37.0,28.0,35.0,35.0,37.0,15.0,21.0,19.0,16.0,7.0,21.0 F81014,55.0,69.0,66.0,92.0,72.0,85.0,75.0,77.0,74.0,76.0,62.0,67.0,81.0,57.0,66.0,86.0,69.0,67.0,63.0,52.0,48.0,45.0,57.0,59.0,58.0,58.0,62.0,69.0,83.0,85.0,90.0,86.0,96.0,101.0,95.0,87.0,91.0,107.0,111.0,99.0,90.0,112.0,78.0,66.0,71.0,82.0,77.0,73.0,64.0,65.0,81.0,58.0,71.0,64.0,80.0,71.0,69.0,68.0,64.0,61.0,80.0,63.0,65.0,52.0,56.0,69.0,55.0,49.0,64.0,54.0,47.0,30.0,45.0,51.0,45.0,53.0,48.0,63.0,67.0,38.0,53.0,34.0,42.0,34.0,22.0,27.0,28.0,31.0,26.0,20.0,21.0,12.0,15.0,19.0,9.0,19.0 F81020,19.0,26.0,28.0,37.0,22.0,34.0,29.0,33.0,37.0,33.0,35.0,30.0,40.0,38.0,36.0,33.0,45.0,48.0,25.0,23.0,34.0,36.0,42.0,29.0,41.0,31.0,31.0,37.0,29.0,33.0,37.0,43.0,39.0,42.0,30.0,52.0,35.0,44.0,50.0,43.0,38.0,41.0,52.0,49.0,51.0,45.0,40.0,51.0,48.0,46.0,55.0,50.0,61.0,66.0,72.0,62.0,73.0,90.0,90.0,85.0,86.0,92.0,77.0,67.0,82.0,54.0,62.0,63.0,84.0,57.0,54.0,50.0,49.0,49.0,69.0,48.0,43.0,53.0,65.0,34.0,44.0,27.0,24.0,21.0,22.0,19.0,21.0,15.0,15.0,9.0,7.0,5.0,9.0,6.0,2.0,5.0 F81022,51.0,87.0,67.0,98.0,86.0,82.0,87.0,73.0,89.0,90.0,79.0,88.0,86.0,86.0,80.0,80.0,82.0,75.0,72.0,70.0,77.0,79.0,91.0,75.0,74.0,86.0,82.0,86.0,99.0,81.0,95.0,104.0,112.0,116.0,115.0,109.0,104.0,109.0,96.0,89.0,109.0,109.0,81.0,83.0,99.0,75.0,98.0,79.0,73.0,102.0,89.0,101.0,108.0,141.0,122.0,136.0,127.0,124.0,122.0,133.0,133.0,126.0,132.0,101.0,105.0,114.0,95.0,121.0,107.0,81.0,79.0,101.0,68.0,92.0,72.0,82.0,100.0,111.0,134.0,85.0,89.0,73.0,69.0,60.0,59.0,53.0,56.0,61.0,46.0,44.0,33.0,24.0,26.0,23.0,17.0,38.0 F81023,85.0,90.0,87.0,90.0,75.0,73.0,73.0,69.0,72.0,80.0,74.0,66.0,73.0,63.0,78.0,74.0,69.0,75.0,77.0,61.0,54.0,37.0,59.0,70.0,65.0,78.0,94.0,112.0,112.0,130.0,120.0,128.0,115.0,139.0,138.0,138.0,155.0,108.0,117.0,94.0,109.0,99.0,96.0,100.0,103.0,84.0,87.0,71.0,89.0,85.0,84.0,103.0,99.0,101.0,76.0,77.0,87.0,82.0,88.0,74.0,85.0,68.0,77.0,81.0,78.0,58.0,75.0,62.0,58.0,61.0,54.0,46.0,47.0,32.0,36.0,34.0,38.0,56.0,47.0,34.0,47.0,28.0,28.0,29.0,14.0,25.0,24.0,23.0,16.0,21.0,13.0,16.0,6.0,9.0,7.0,11.0 F81025,53.0,49.0,60.0,66.0,81.0,65.0,73.0,83.0,58.0,75.0,62.0,63.0,74.0,57.0,69.0,64.0,40.0,63.0,58.0,41.0,55.0,43.0,39.0,54.0,72.0,60.0,89.0,81.0,107.0,118.0,96.0,101.0,114.0,91.0,119.0,108.0,118.0,87.0,96.0,84.0,77.0,80.0,64.0,67.0,60.0,55.0,55.0,55.0,53.0,50.0,61.0,59.0,49.0,37.0,59.0,53.0,68.0,56.0,61.0,55.0,65.0,58.0,48.0,63.0,53.0,57.0,42.0,38.0,40.0,32.0,38.0,28.0,35.0,32.0,24.0,29.0,39.0,34.0,37.0,23.0,20.0,20.0,21.0,12.0,15.0,19.0,15.0,11.0,12.0,14.0,5.0,8.0,8.0,6.0,3.0,12.0 F81029,42.0,48.0,49.0,67.0,52.0,57.0,68.0,61.0,65.0,74.0,59.0,59.0,50.0,68.0,64.0,57.0,49.0,42.0,30.0,37.0,30.0,34.0,32.0,27.0,43.0,41.0,44.0,65.0,72.0,50.0,78.0,65.0,81.0,83.0,85.0,83.0,84.0,110.0,88.0,85.0,86.0,63.0,82.0,69.0,62.0,63.0,46.0,44.0,46.0,47.0,30.0,49.0,28.0,38.0,51.0,36.0,34.0,35.0,44.0,40.0,53.0,38.0,45.0,47.0,42.0,37.0,31.0,22.0,36.0,38.0,27.0,38.0,35.0,25.0,19.0,26.0,25.0,22.0,25.0,7.0,14.0,12.0,6.0,15.0,12.0,11.0,13.0,11.0,9.0,9.0,4.0,4.0,7.0,2.0,5.0,4.0 F81030,85.0,68.0,68.0,88.0,70.0,75.0,108.0,103.0,81.0,84.0,98.0,82.0,85.0,112.0,91.0,115.0,83.0,107.0,97.0,86.0,71.0,78.0,68.0,83.0,71.0,82.0,96.0,96.0,112.0,144.0,129.0,127.0,127.0,136.0,124.0,122.0,138.0,119.0,120.0,130.0,97.0,96.0,91.0,95.0,131.0,107.0,110.0,95.0,92.0,102.0,117.0,112.0,123.0,105.0,108.0,119.0,125.0,124.0,128.0,107.0,119.0,106.0,105.0,116.0,107.0,87.0,81.0,84.0,92.0,91.0,85.0,90.0,79.0,87.0,91.0,91.0,97.0,123.0,114.0,64.0,93.0,76.0,57.0,53.0,59.0,54.0,54.0,32.0,39.0,32.0,28.0,18.0,19.0,11.0,11.0,20.0 F81031,33.0,33.0,42.0,45.0,50.0,52.0,46.0,51.0,57.0,47.0,45.0,53.0,56.0,63.0,58.0,51.0,47.0,49.0,53.0,45.0,32.0,48.0,51.0,43.0,40.0,31.0,39.0,50.0,48.0,53.0,46.0,55.0,52.0,60.0,62.0,69.0,65.0,75.0,45.0,55.0,68.0,49.0,53.0,58.0,64.0,59.0,52.0,65.0,42.0,46.0,40.0,31.0,43.0,28.0,46.0,41.0,45.0,55.0,51.0,41.0,37.0,53.0,53.0,44.0,44.0,32.0,27.0,47.0,30.0,36.0,33.0,39.0,28.0,23.0,24.0,27.0,22.0,22.0,22.0,18.0,19.0,22.0,10.0,16.0,16.0,13.0,8.0,14.0,11.0,11.0,14.0,12.0,13.0,12.0,6.0,30.0 F81032,11.0,10.0,8.0,13.0,15.0,8.0,17.0,12.0,21.0,15.0,12.0,14.0,14.0,18.0,24.0,17.0,14.0,15.0,14.0,10.0,17.0,17.0,15.0,13.0,14.0,9.0,15.0,18.0,17.0,14.0,19.0,9.0,14.0,12.0,20.0,17.0,11.0,18.0,20.0,21.0,25.0,16.0,19.0,23.0,16.0,21.0,17.0,20.0,16.0,18.0,15.0,23.0,24.0,18.0,17.0,23.0,29.0,18.0,26.0,23.0,28.0,28.0,20.0,19.0,23.0,26.0,24.0,19.0,24.0,21.0,16.0,24.0,11.0,19.0,20.0,20.0,19.0,26.0,17.0,26.0,14.0,21.0,21.0,10.0,14.0,11.0,18.0,10.0,6.0,11.0,8.0,6.0,4.0,5.0,4.0,10.0 F81036,60.0,94.0,83.0,110.0,88.0,84.0,89.0,80.0,102.0,106.0,125.0,103.0,130.0,121.0,113.0,118.0,111.0,119.0,102.0,97.0,103.0,81.0,85.0,92.0,91.0,84.0,109.0,108.0,101.0,107.0,130.0,107.0,118.0,126.0,120.0,125.0,137.0,135.0,137.0,115.0,109.0,105.0,104.0,117.0,116.0,116.0,114.0,124.0,130.0,149.0,140.0,116.0,134.0,130.0,135.0,116.0,137.0,131.0,125.0,144.0,140.0,122.0,109.0,109.0,104.0,94.0,79.0,95.0,80.0,89.0,75.0,74.0,78.0,81.0,81.0,76.0,91.0,86.0,107.0,79.0,77.0,42.0,71.0,52.0,48.0,50.0,51.0,41.0,39.0,30.0,31.0,20.0,21.0,15.0,11.0,29.0 F81038,78.0,70.0,72.0,69.0,68.0,65.0,74.0,69.0,86.0,70.0,65.0,82.0,82.0,66.0,76.0,63.0,71.0,76.0,69.0,59.0,66.0,67.0,57.0,60.0,61.0,62.0,77.0,74.0,70.0,75.0,76.0,90.0,80.0,89.0,103.0,93.0,88.0,102.0,100.0,105.0,109.0,86.0,89.0,110.0,86.0,70.0,80.0,82.0,76.0,83.0,83.0,77.0,93.0,87.0,104.0,85.0,78.0,88.0,104.0,90.0,88.0,95.0,113.0,91.0,75.0,81.0,86.0,96.0,77.0,79.0,75.0,91.0,65.0,72.0,72.0,62.0,63.0,84.0,82.0,63.0,72.0,52.0,54.0,50.0,34.0,45.0,33.0,38.0,34.0,28.0,33.0,15.0,17.0,13.0,8.0,34.0 F81040,20.0,12.0,14.0,16.0,25.0,20.0,22.0,28.0,16.0,28.0,21.0,22.0,33.0,24.0,19.0,20.0,19.0,20.0,20.0,19.0,30.0,15.0,18.0,18.0,20.0,24.0,22.0,20.0,21.0,16.0,22.0,13.0,16.0,26.0,27.0,26.0,25.0,21.0,28.0,24.0,20.0,26.0,21.0,32.0,26.0,23.0,22.0,24.0,25.0,29.0,22.0,27.0,29.0,50.0,42.0,31.0,41.0,50.0,44.0,42.0,31.0,48.0,27.0,44.0,40.0,35.0,36.0,48.0,23.0,46.0,27.0,24.0,32.0,30.0,24.0,29.0,30.0,42.0,36.0,27.0,31.0,26.0,30.0,18.0,17.0,20.0,22.0,21.0,12.0,9.0,8.0,7.0,5.0,3.0,5.0,8.0 F81041,62.0,79.0,69.0,89.0,78.0,93.0,78.0,75.0,77.0,78.0,73.0,64.0,83.0,70.0,66.0,75.0,78.0,75.0,59.0,54.0,57.0,61.0,71.0,68.0,66.0,78.0,91.0,98.0,82.0,112.0,91.0,106.0,105.0,121.0,103.0,110.0,114.0,97.0,94.0,107.0,97.0,74.0,98.0,91.0,78.0,91.0,78.0,84.0,62.0,78.0,78.0,67.0,100.0,74.0,99.0,76.0,96.0,99.0,102.0,83.0,95.0,90.0,88.0,100.0,69.0,74.0,83.0,83.0,74.0,79.0,76.0,67.0,54.0,84.0,85.0,95.0,97.0,102.0,120.0,87.0,62.0,65.0,57.0,47.0,40.0,43.0,49.0,33.0,35.0,39.0,24.0,17.0,19.0,11.0,9.0,38.0 F81045,28.0,34.0,26.0,34.0,42.0,38.0,39.0,41.0,36.0,44.0,42.0,40.0,37.0,31.0,46.0,55.0,37.0,42.0,48.0,27.0,34.0,25.0,25.0,36.0,35.0,30.0,35.0,28.0,41.0,42.0,38.0,48.0,46.0,44.0,50.0,45.0,54.0,45.0,49.0,46.0,47.0,44.0,52.0,45.0,37.0,38.0,38.0,44.0,38.0,41.0,34.0,38.0,58.0,46.0,57.0,35.0,44.0,44.0,40.0,30.0,43.0,46.0,33.0,40.0,39.0,33.0,38.0,41.0,22.0,30.0,40.0,29.0,29.0,28.0,24.0,34.0,34.0,43.0,49.0,20.0,40.0,39.0,21.0,20.0,24.0,13.0,20.0,25.0,19.0,12.0,21.0,5.0,7.0,7.0,3.0,12.0 F81046,11.0,12.0,15.0,14.0,18.0,7.0,22.0,14.0,26.0,18.0,26.0,28.0,22.0,28.0,25.0,27.0,23.0,19.0,19.0,10.0,19.0,14.0,17.0,24.0,20.0,21.0,12.0,23.0,23.0,25.0,27.0,22.0,23.0,31.0,21.0,25.0,28.0,17.0,38.0,26.0,29.0,21.0,29.0,22.0,35.0,26.0,26.0,20.0,30.0,24.0,21.0,18.0,27.0,34.0,28.0,21.0,21.0,25.0,38.0,49.0,31.0,49.0,41.0,36.0,44.0,26.0,30.0,26.0,28.0,29.0,28.0,35.0,28.0,35.0,28.0,32.0,27.0,39.0,29.0,25.0,30.0,20.0,22.0,23.0,23.0,16.0,14.0,15.0,11.0,13.0,9.0,11.0,6.0,4.0,5.0,18.0 F81051,31.0,35.0,31.0,43.0,40.0,53.0,31.0,49.0,52.0,52.0,48.0,48.0,47.0,35.0,38.0,50.0,55.0,44.0,31.0,39.0,46.0,30.0,31.0,30.0,40.0,33.0,37.0,56.0,36.0,49.0,46.0,56.0,49.0,64.0,57.0,52.0,68.0,45.0,46.0,55.0,48.0,47.0,53.0,38.0,55.0,39.0,46.0,38.0,35.0,42.0,43.0,47.0,42.0,41.0,55.0,64.0,57.0,57.0,47.0,45.0,47.0,56.0,53.0,53.0,40.0,45.0,45.0,47.0,45.0,51.0,36.0,60.0,45.0,51.0,49.0,41.0,46.0,59.0,47.0,29.0,40.0,29.0,25.0,22.0,19.0,23.0,14.0,15.0,14.0,7.0,7.0,4.0,4.0,1.0,4.0,4.0 F81055,61.0,61.0,62.0,74.0,61.0,70.0,77.0,79.0,70.0,91.0,68.0,83.0,83.0,99.0,79.0,80.0,106.0,70.0,71.0,47.0,52.0,66.0,66.0,54.0,72.0,72.0,74.0,71.0,70.0,65.0,73.0,74.0,90.0,80.0,97.0,82.0,88.0,80.0,92.0,83.0,105.0,101.0,86.0,97.0,102.0,78.0,84.0,84.0,90.0,93.0,75.0,79.0,79.0,88.0,107.0,107.0,87.0,88.0,111.0,85.0,126.0,100.0,103.0,89.0,87.0,86.0,74.0,75.0,64.0,76.0,61.0,59.0,55.0,50.0,57.0,60.0,59.0,79.0,72.0,49.0,67.0,47.0,46.0,34.0,37.0,44.0,28.0,31.0,30.0,37.0,20.0,26.0,17.0,20.0,19.0,35.0 F81057,76.0,73.0,82.0,79.0,72.0,69.0,89.0,73.0,93.0,91.0,59.0,70.0,87.0,73.0,87.0,92.0,83.0,72.0,63.0,63.0,62.0,83.0,81.0,82.0,85.0,96.0,98.0,95.0,117.0,125.0,150.0,130.0,129.0,148.0,147.0,137.0,131.0,127.0,109.0,117.0,99.0,109.0,109.0,107.0,102.0,111.0,90.0,97.0,91.0,109.0,92.0,108.0,101.0,91.0,108.0,85.0,98.0,95.0,94.0,98.0,101.0,88.0,87.0,91.0,72.0,58.0,57.0,60.0,56.0,60.0,52.0,52.0,47.0,48.0,48.0,52.0,61.0,76.0,68.0,41.0,45.0,45.0,38.0,30.0,38.0,43.0,36.0,31.0,40.0,29.0,21.0,28.0,13.0,8.0,10.0,24.0 F81060,20.0,37.0,26.0,34.0,48.0,33.0,38.0,48.0,39.0,32.0,30.0,47.0,44.0,37.0,24.0,39.0,27.0,25.0,36.0,30.0,26.0,27.0,22.0,26.0,18.0,31.0,25.0,32.0,29.0,57.0,30.0,31.0,44.0,30.0,36.0,33.0,48.0,46.0,42.0,35.0,42.0,45.0,39.0,40.0,38.0,37.0,30.0,25.0,29.0,24.0,26.0,28.0,24.0,26.0,22.0,28.0,30.0,31.0,21.0,26.0,30.0,30.0,25.0,26.0,26.0,26.0,28.0,26.0,24.0,24.0,15.0,18.0,12.0,18.0,12.0,20.0,19.0,12.0,18.0,13.0,15.0,6.0,7.0,9.0,5.0,6.0,10.0,7.0,8.0,6.0,8.0,4.0,8.0,2.0,4.0,7.0 F81061,28.0,38.0,36.0,40.0,35.0,45.0,41.0,31.0,34.0,37.0,33.0,40.0,35.0,40.0,42.0,40.0,40.0,27.0,33.0,31.0,29.0,27.0,32.0,44.0,34.0,26.0,41.0,42.0,44.0,51.0,38.0,58.0,45.0,55.0,48.0,50.0,50.0,42.0,42.0,38.0,50.0,33.0,40.0,48.0,42.0,45.0,34.0,30.0,27.0,46.0,38.0,51.0,40.0,60.0,56.0,51.0,45.0,56.0,69.0,54.0,69.0,62.0,58.0,42.0,46.0,55.0,59.0,41.0,56.0,46.0,48.0,49.0,57.0,58.0,55.0,62.0,67.0,56.0,63.0,58.0,44.0,59.0,42.0,50.0,33.0,30.0,24.0,32.0,13.0,14.0,8.0,8.0,4.0,7.0,5.0,13.0 F81065,25.0,21.0,26.0,20.0,27.0,23.0,23.0,19.0,20.0,22.0,24.0,14.0,24.0,21.0,21.0,33.0,30.0,25.0,29.0,19.0,20.0,23.0,18.0,23.0,20.0,21.0,23.0,17.0,20.0,35.0,28.0,31.0,33.0,20.0,32.0,27.0,33.0,23.0,33.0,31.0,32.0,19.0,27.0,32.0,44.0,26.0,25.0,22.0,30.0,29.0,29.0,34.0,29.0,36.0,34.0,31.0,28.0,37.0,38.0,35.0,15.0,27.0,27.0,25.0,28.0,20.0,23.0,16.0,21.0,16.0,21.0,26.0,21.0,21.0,34.0,21.0,21.0,24.0,31.0,22.0,19.0,8.0,9.0,15.0,8.0,11.0,13.0,3.0,6.0,3.0,7.0,5.0,2.0,4.0,2.0,3.0 F81066,29.0,26.0,30.0,31.0,29.0,32.0,20.0,26.0,23.0,34.0,27.0,42.0,23.0,36.0,33.0,28.0,36.0,33.0,31.0,33.0,29.0,16.0,23.0,29.0,40.0,36.0,38.0,35.0,28.0,37.0,39.0,30.0,33.0,37.0,33.0,30.0,32.0,47.0,50.0,38.0,38.0,43.0,30.0,25.0,42.0,32.0,48.0,38.0,27.0,34.0,33.0,33.0,43.0,47.0,55.0,41.0,54.0,55.0,42.0,49.0,43.0,48.0,51.0,45.0,48.0,49.0,30.0,49.0,41.0,40.0,40.0,49.0,40.0,41.0,30.0,37.0,43.0,61.0,50.0,49.0,37.0,38.0,33.0,29.0,18.0,22.0,22.0,13.0,15.0,10.0,14.0,10.0,11.0,6.0,5.0,9.0 F81068,81.0,72.0,76.0,87.0,80.0,101.0,101.0,80.0,68.0,77.0,72.0,122.0,89.0,103.0,100.0,99.0,98.0,88.0,104.0,79.0,61.0,80.0,75.0,86.0,86.0,86.0,82.0,94.0,108.0,109.0,104.0,117.0,98.0,114.0,121.0,112.0,126.0,119.0,111.0,105.0,112.0,89.0,90.0,92.0,123.0,95.0,102.0,100.0,106.0,90.0,127.0,116.0,115.0,114.0,125.0,109.0,119.0,129.0,129.0,137.0,124.0,105.0,113.0,86.0,114.0,109.0,112.0,100.0,83.0,84.0,89.0,103.0,81.0,93.0,71.0,92.0,85.0,121.0,121.0,64.0,82.0,85.0,71.0,52.0,51.0,66.0,46.0,40.0,46.0,36.0,30.0,17.0,20.0,21.0,13.0,37.0 F81071,62.0,58.0,60.0,66.0,55.0,61.0,67.0,72.0,68.0,66.0,79.0,75.0,68.0,66.0,77.0,67.0,68.0,68.0,73.0,88.0,117.0,138.0,151.0,131.0,150.0,167.0,154.0,156.0,169.0,180.0,163.0,150.0,156.0,159.0,127.0,125.0,124.0,154.0,103.0,97.0,95.0,78.0,95.0,86.0,86.0,102.0,84.0,73.0,85.0,57.0,72.0,81.0,77.0,65.0,86.0,73.0,66.0,74.0,62.0,60.0,57.0,62.0,62.0,73.0,55.0,43.0,36.0,54.0,50.0,47.0,44.0,43.0,33.0,42.0,39.0,30.0,29.0,49.0,51.0,33.0,42.0,34.0,34.0,26.0,25.0,20.0,21.0,27.0,18.0,11.0,15.0,10.0,9.0,9.0,11.0,29.0 F81075,39.0,47.0,47.0,46.0,49.0,52.0,54.0,55.0,53.0,54.0,53.0,57.0,59.0,60.0,64.0,64.0,67.0,72.0,68.0,62.0,58.0,54.0,55.0,58.0,59.0,60.0,66.0,59.0,63.0,62.0,70.0,65.0,73.0,77.0,68.0,65.0,76.0,61.0,76.0,68.0,67.0,80.0,68.0,70.0,75.0,73.0,68.0,73.0,60.0,79.0,86.0,70.0,90.0,89.0,87.0,85.0,93.0,91.0,79.0,97.0,105.0,93.0,83.0,97.0,81.0,80.0,79.0,85.0,90.0,74.0,86.0,78.0,78.0,86.0,72.0,85.0,99.0,102.0,109.0,76.0,87.0,67.0,64.0,57.0,50.0,59.0,56.0,53.0,50.0,47.0,28.0,30.0,24.0,15.0,13.0,38.0 F81076,13.0,14.0,24.0,19.0,20.0,22.0,27.0,24.0,17.0,17.0,26.0,25.0,30.0,24.0,25.0,28.0,26.0,14.0,22.0,21.0,25.0,11.0,29.0,18.0,20.0,23.0,17.0,21.0,16.0,20.0,12.0,23.0,31.0,32.0,22.0,29.0,24.0,25.0,22.0,21.0,23.0,31.0,25.0,18.0,24.0,39.0,25.0,29.0,29.0,22.0,37.0,28.0,36.0,37.0,35.0,37.0,35.0,41.0,42.0,35.0,42.0,22.0,42.0,34.0,35.0,34.0,34.0,33.0,36.0,39.0,35.0,36.0,33.0,27.0,43.0,31.0,25.0,39.0,33.0,23.0,22.0,17.0,16.0,20.0,8.0,11.0,11.0,13.0,10.0,5.0,5.0,5.0,4.0,7.0,4.0,1.0 F81080,31.0,48.0,37.0,47.0,41.0,67.0,50.0,68.0,62.0,63.0,47.0,84.0,74.0,69.0,84.0,94.0,82.0,72.0,70.0,52.0,46.0,53.0,60.0,76.0,70.0,56.0,76.0,53.0,59.0,53.0,41.0,63.0,53.0,44.0,63.0,54.0,62.0,68.0,62.0,77.0,79.0,73.0,80.0,95.0,70.0,93.0,98.0,77.0,90.0,86.0,92.0,106.0,79.0,82.0,99.0,82.0,96.0,101.0,88.0,88.0,86.0,90.0,81.0,87.0,95.0,69.0,65.0,75.0,73.0,51.0,75.0,60.0,68.0,70.0,69.0,84.0,65.0,100.0,93.0,57.0,59.0,55.0,63.0,38.0,36.0,35.0,25.0,28.0,26.0,15.0,20.0,12.0,14.0,7.0,6.0,11.0 F81081,87.0,115.0,131.0,126.0,108.0,138.0,111.0,145.0,130.0,152.0,120.0,147.0,142.0,137.0,140.0,149.0,164.0,107.0,124.0,117.0,126.0,89.0,119.0,125.0,148.0,165.0,167.0,149.0,176.0,181.0,198.0,170.0,168.0,164.0,190.0,163.0,201.0,166.0,180.0,180.0,162.0,149.0,163.0,169.0,151.0,150.0,147.0,120.0,129.0,145.0,148.0,132.0,140.0,126.0,127.0,142.0,120.0,132.0,142.0,143.0,135.0,124.0,152.0,112.0,139.0,108.0,115.0,97.0,95.0,93.0,94.0,77.0,85.0,93.0,80.0,72.0,75.0,80.0,75.0,53.0,59.0,64.0,62.0,36.0,32.0,33.0,43.0,36.0,37.0,24.0,27.0,16.0,20.0,15.0,8.0,19.0 F81082,16.0,17.0,17.0,18.0,20.0,28.0,24.0,18.0,26.0,27.0,29.0,28.0,28.0,20.0,30.0,19.0,33.0,15.0,31.0,27.0,20.0,19.0,16.0,15.0,25.0,21.0,33.0,20.0,26.0,17.0,17.0,26.0,32.0,30.0,25.0,29.0,34.0,33.0,34.0,28.0,38.0,28.0,33.0,28.0,26.0,20.0,20.0,25.0,21.0,22.0,26.0,22.0,29.0,26.0,24.0,22.0,33.0,25.0,33.0,25.0,21.0,20.0,26.0,32.0,35.0,22.0,23.0,26.0,16.0,16.0,22.0,18.0,25.0,35.0,29.0,26.0,18.0,29.0,34.0,17.0,20.0,13.0,17.0,18.0,16.0,9.0,9.0,9.0,10.0,8.0,7.0,4.0,4.0,6.0,1.0,7.0 F81083,52.0,56.0,62.0,62.0,63.0,59.0,60.0,63.0,70.0,71.0,69.0,43.0,67.0,64.0,79.0,49.0,57.0,62.0,58.0,35.0,44.0,50.0,66.0,59.0,58.0,79.0,70.0,79.0,94.0,108.0,117.0,105.0,111.0,110.0,115.0,100.0,110.0,89.0,101.0,83.0,96.0,79.0,72.0,94.0,84.0,93.0,87.0,69.0,65.0,80.0,77.0,82.0,88.0,69.0,85.0,83.0,82.0,97.0,74.0,79.0,52.0,51.0,57.0,58.0,62.0,46.0,56.0,59.0,42.0,55.0,55.0,35.0,52.0,55.0,42.0,54.0,54.0,72.0,80.0,45.0,45.0,45.0,45.0,35.0,44.0,23.0,31.0,31.0,26.0,23.0,22.0,18.0,11.0,14.0,14.0,33.0 F81085,52.0,78.0,64.0,74.0,62.0,83.0,79.0,65.0,78.0,88.0,78.0,103.0,87.0,86.0,77.0,80.0,83.0,90.0,75.0,54.0,50.0,62.0,56.0,65.0,75.0,73.0,77.0,96.0,94.0,95.0,108.0,116.0,123.0,117.0,119.0,114.0,110.0,98.0,121.0,106.0,112.0,92.0,106.0,117.0,105.0,81.0,106.0,86.0,99.0,79.0,77.0,88.0,74.0,72.0,78.0,85.0,67.0,85.0,78.0,83.0,78.0,68.0,74.0,76.0,84.0,57.0,58.0,68.0,60.0,42.0,54.0,51.0,64.0,67.0,55.0,51.0,54.0,80.0,75.0,44.0,48.0,51.0,44.0,26.0,36.0,42.0,40.0,26.0,25.0,29.0,21.0,21.0,15.0,18.0,13.0,40.0 F81086,40.0,35.0,27.0,39.0,48.0,40.0,41.0,49.0,45.0,55.0,45.0,54.0,50.0,45.0,45.0,54.0,40.0,43.0,51.0,51.0,33.0,28.0,44.0,35.0,33.0,38.0,42.0,42.0,40.0,36.0,41.0,59.0,54.0,48.0,49.0,49.0,50.0,42.0,52.0,46.0,64.0,55.0,49.0,63.0,52.0,56.0,70.0,54.0,52.0,49.0,42.0,45.0,54.0,66.0,47.0,54.0,56.0,60.0,65.0,56.0,44.0,36.0,46.0,53.0,61.0,46.0,48.0,34.0,34.0,29.0,30.0,42.0,33.0,32.0,21.0,45.0,36.0,39.0,39.0,31.0,26.0,40.0,20.0,21.0,16.0,13.0,21.0,21.0,4.0,11.0,7.0,9.0,7.0,3.0,9.0,9.0 F81087,40.0,61.0,60.0,50.0,60.0,64.0,78.0,61.0,87.0,82.0,77.0,73.0,66.0,76.0,67.0,74.0,78.0,70.0,69.0,54.0,68.0,70.0,55.0,53.0,84.0,90.0,72.0,81.0,88.0,76.0,98.0,100.0,111.0,92.0,99.0,90.0,106.0,99.0,92.0,95.0,91.0,79.0,95.0,80.0,87.0,88.0,83.0,74.0,75.0,82.0,97.0,96.0,71.0,87.0,94.0,103.0,101.0,104.0,89.0,89.0,101.0,98.0,103.0,77.0,81.0,79.0,62.0,74.0,67.0,61.0,83.0,75.0,71.0,73.0,63.0,67.0,61.0,91.0,88.0,80.0,60.0,63.0,54.0,41.0,42.0,38.0,35.0,37.0,26.0,30.0,31.0,22.0,16.0,22.0,11.0,35.0 F81088,12.0,11.0,14.0,24.0,22.0,10.0,16.0,21.0,28.0,12.0,10.0,16.0,15.0,18.0,11.0,8.0,16.0,13.0,24.0,16.0,18.0,14.0,16.0,13.0,13.0,15.0,15.0,10.0,16.0,14.0,10.0,15.0,16.0,17.0,23.0,16.0,21.0,30.0,24.0,21.0,19.0,19.0,21.0,21.0,17.0,17.0,17.0,13.0,16.0,10.0,20.0,11.0,14.0,15.0,19.0,17.0,16.0,15.0,21.0,15.0,14.0,12.0,13.0,10.0,15.0,20.0,14.0,9.0,12.0,11.0,10.0,15.0,14.0,17.0,18.0,16.0,14.0,20.0,18.0,7.0,5.0,7.0,8.0,7.0,4.0,4.0,8.0,2.0,3.0,2.0,1.0,1.0,3.0,,1.0,4.0 F81089,30.0,49.0,47.0,49.0,34.0,42.0,51.0,61.0,54.0,52.0,55.0,46.0,52.0,64.0,56.0,62.0,77.0,60.0,43.0,41.0,53.0,37.0,42.0,45.0,48.0,55.0,54.0,68.0,52.0,47.0,69.0,59.0,48.0,71.0,68.0,70.0,73.0,55.0,51.0,50.0,56.0,51.0,58.0,54.0,64.0,69.0,74.0,59.0,55.0,56.0,51.0,68.0,62.0,80.0,73.0,62.0,69.0,80.0,75.0,83.0,65.0,89.0,88.0,82.0,69.0,77.0,69.0,68.0,60.0,59.0,65.0,55.0,61.0,61.0,58.0,76.0,83.0,79.0,87.0,42.0,57.0,51.0,51.0,35.0,29.0,33.0,30.0,24.0,12.0,26.0,18.0,16.0,13.0,7.0,6.0,14.0 F81092,14.0,12.0,19.0,24.0,25.0,32.0,32.0,32.0,31.0,27.0,42.0,32.0,25.0,31.0,33.0,35.0,26.0,31.0,21.0,24.0,21.0,14.0,12.0,23.0,12.0,17.0,13.0,27.0,21.0,25.0,23.0,24.0,19.0,26.0,31.0,29.0,36.0,33.0,31.0,32.0,39.0,33.0,39.0,34.0,46.0,32.0,24.0,29.0,26.0,32.0,29.0,26.0,25.0,34.0,28.0,20.0,30.0,31.0,25.0,28.0,26.0,37.0,36.0,23.0,21.0,39.0,27.0,34.0,25.0,24.0,23.0,27.0,19.0,19.0,19.0,24.0,29.0,21.0,28.0,19.0,19.0,14.0,21.0,14.0,15.0,20.0,11.0,9.0,8.0,11.0,12.0,8.0,5.0,5.0,2.0,8.0 F81096,41.0,42.0,58.0,67.0,38.0,54.0,42.0,47.0,52.0,62.0,64.0,51.0,60.0,67.0,56.0,60.0,64.0,48.0,43.0,42.0,59.0,50.0,68.0,69.0,46.0,60.0,64.0,69.0,63.0,64.0,72.0,69.0,53.0,68.0,68.0,58.0,59.0,68.0,67.0,67.0,60.0,68.0,45.0,55.0,86.0,58.0,55.0,55.0,54.0,53.0,64.0,56.0,68.0,52.0,75.0,71.0,65.0,71.0,63.0,87.0,61.0,84.0,74.0,71.0,83.0,72.0,68.0,66.0,85.0,67.0,52.0,74.0,84.0,65.0,67.0,87.0,90.0,84.0,85.0,68.0,62.0,47.0,51.0,56.0,44.0,23.0,32.0,38.0,25.0,25.0,27.0,19.0,12.0,17.0,10.0,19.0 F81097,94.0,94.0,80.0,84.0,115.0,101.0,122.0,108.0,104.0,106.0,106.0,111.0,106.0,105.0,106.0,101.0,92.0,89.0,96.0,59.0,59.0,67.0,67.0,64.0,100.0,93.0,100.0,108.0,131.0,110.0,124.0,131.0,138.0,167.0,189.0,157.0,167.0,140.0,141.0,170.0,144.0,139.0,135.0,122.0,115.0,139.0,118.0,120.0,125.0,103.0,114.0,139.0,127.0,107.0,130.0,115.0,126.0,94.0,113.0,94.0,102.0,107.0,87.0,104.0,74.0,72.0,80.0,82.0,71.0,89.0,70.0,61.0,69.0,56.0,66.0,60.0,68.0,72.0,74.0,53.0,71.0,50.0,42.0,36.0,31.0,39.0,32.0,35.0,22.0,23.0,26.0,22.0,16.0,14.0,14.0,39.0 F81098,28.0,37.0,45.0,42.0,50.0,43.0,47.0,41.0,45.0,29.0,39.0,51.0,45.0,42.0,42.0,51.0,43.0,43.0,38.0,48.0,70.0,63.0,54.0,47.0,41.0,37.0,36.0,41.0,41.0,45.0,36.0,44.0,42.0,39.0,43.0,41.0,58.0,41.0,53.0,49.0,41.0,57.0,52.0,52.0,51.0,40.0,54.0,48.0,42.0,45.0,46.0,53.0,58.0,45.0,71.0,58.0,66.0,71.0,62.0,58.0,47.0,63.0,63.0,63.0,42.0,52.0,62.0,61.0,53.0,36.0,45.0,54.0,47.0,38.0,40.0,45.0,45.0,52.0,50.0,52.0,55.0,47.0,39.0,28.0,26.0,27.0,27.0,19.0,17.0,23.0,17.0,8.0,8.0,12.0,4.0,17.0 F81099,37.0,44.0,39.0,48.0,53.0,53.0,47.0,51.0,51.0,52.0,49.0,64.0,63.0,60.0,58.0,73.0,78.0,65.0,56.0,43.0,52.0,52.0,62.0,48.0,56.0,54.0,50.0,62.0,69.0,72.0,60.0,80.0,76.0,54.0,56.0,59.0,59.0,77.0,71.0,65.0,77.0,57.0,68.0,68.0,77.0,72.0,59.0,60.0,66.0,82.0,57.0,89.0,87.0,76.0,85.0,96.0,102.0,98.0,102.0,94.0,103.0,114.0,96.0,94.0,98.0,84.0,92.0,97.0,82.0,76.0,92.0,85.0,75.0,68.0,69.0,92.0,102.0,109.0,92.0,81.0,66.0,71.0,56.0,44.0,40.0,50.0,45.0,41.0,31.0,30.0,10.0,12.0,21.0,11.0,9.0,23.0 F81100,84.0,86.0,117.0,133.0,127.0,100.0,151.0,132.0,117.0,138.0,119.0,161.0,145.0,142.0,156.0,162.0,142.0,143.0,124.0,108.0,111.0,115.0,101.0,104.0,121.0,119.0,126.0,121.0,126.0,133.0,143.0,135.0,139.0,162.0,163.0,138.0,155.0,165.0,158.0,149.0,174.0,150.0,154.0,178.0,168.0,163.0,188.0,141.0,142.0,147.0,178.0,151.0,180.0,160.0,184.0,166.0,174.0,164.0,165.0,187.0,215.0,181.0,159.0,155.0,160.0,148.0,136.0,142.0,134.0,132.0,123.0,139.0,115.0,117.0,111.0,127.0,124.0,151.0,163.0,111.0,111.0,96.0,92.0,79.0,69.0,58.0,72.0,57.0,67.0,50.0,40.0,23.0,19.0,14.0,11.0,27.0 F81101,24.0,27.0,21.0,29.0,28.0,22.0,30.0,24.0,19.0,24.0,27.0,25.0,34.0,21.0,27.0,32.0,30.0,28.0,25.0,21.0,15.0,29.0,18.0,23.0,20.0,29.0,27.0,35.0,24.0,35.0,26.0,39.0,34.0,33.0,25.0,44.0,45.0,26.0,25.0,33.0,41.0,31.0,25.0,30.0,44.0,21.0,23.0,23.0,29.0,28.0,32.0,33.0,32.0,35.0,35.0,43.0,51.0,51.0,51.0,48.0,41.0,50.0,52.0,41.0,36.0,37.0,33.0,33.0,22.0,25.0,41.0,23.0,30.0,32.0,43.0,30.0,37.0,49.0,43.0,32.0,42.0,40.0,30.0,27.0,23.0,23.0,22.0,16.0,13.0,15.0,10.0,10.0,3.0,5.0,8.0,8.0 F81102,38.0,31.0,36.0,41.0,35.0,33.0,35.0,50.0,50.0,43.0,54.0,51.0,38.0,49.0,39.0,46.0,33.0,47.0,41.0,35.0,33.0,40.0,36.0,43.0,43.0,45.0,44.0,48.0,45.0,37.0,61.0,43.0,55.0,52.0,47.0,37.0,47.0,50.0,51.0,39.0,56.0,56.0,51.0,40.0,47.0,73.0,54.0,59.0,52.0,49.0,48.0,44.0,50.0,55.0,49.0,45.0,42.0,73.0,53.0,58.0,42.0,40.0,41.0,33.0,49.0,31.0,28.0,26.0,32.0,33.0,37.0,27.0,26.0,25.0,28.0,24.0,36.0,45.0,36.0,32.0,38.0,37.0,30.0,16.0,19.0,19.0,26.0,28.0,14.0,16.0,19.0,11.0,10.0,13.0,8.0,25.0 F81104,14.0,19.0,24.0,24.0,24.0,39.0,38.0,36.0,26.0,23.0,28.0,26.0,26.0,28.0,27.0,24.0,30.0,24.0,24.0,33.0,22.0,28.0,22.0,30.0,21.0,35.0,19.0,25.0,20.0,30.0,27.0,29.0,30.0,29.0,32.0,36.0,24.0,24.0,27.0,33.0,44.0,33.0,27.0,37.0,32.0,38.0,30.0,17.0,36.0,32.0,35.0,25.0,27.0,32.0,35.0,23.0,49.0,32.0,25.0,23.0,24.0,35.0,27.0,23.0,36.0,22.0,28.0,38.0,29.0,23.0,30.0,37.0,34.0,28.0,23.0,32.0,24.0,38.0,31.0,18.0,21.0,29.0,19.0,19.0,15.0,10.0,8.0,21.0,13.0,12.0,8.0,9.0,4.0,11.0,3.0,9.0 F81105,67.0,87.0,103.0,112.0,103.0,119.0,114.0,107.0,139.0,140.0,123.0,110.0,143.0,138.0,167.0,156.0,154.0,158.0,136.0,131.0,124.0,111.0,121.0,109.0,105.0,105.0,103.0,100.0,95.0,116.0,117.0,137.0,109.0,135.0,133.0,150.0,133.0,132.0,146.0,137.0,141.0,134.0,157.0,167.0,166.0,176.0,127.0,131.0,131.0,147.0,174.0,163.0,170.0,167.0,188.0,175.0,159.0,169.0,155.0,152.0,150.0,138.0,134.0,133.0,152.0,97.0,124.0,100.0,99.0,88.0,79.0,80.0,79.0,85.0,95.0,95.0,96.0,106.0,126.0,74.0,75.0,72.0,79.0,46.0,31.0,55.0,40.0,40.0,23.0,20.0,21.0,13.0,9.0,16.0,7.0,28.0 F81108,78.0,87.0,84.0,88.0,103.0,109.0,105.0,113.0,91.0,124.0,111.0,130.0,130.0,121.0,126.0,127.0,142.0,128.0,123.0,108.0,91.0,99.0,104.0,108.0,94.0,109.0,113.0,116.0,112.0,128.0,139.0,151.0,122.0,134.0,158.0,169.0,119.0,128.0,140.0,130.0,140.0,141.0,146.0,145.0,116.0,135.0,118.0,119.0,106.0,111.0,102.0,116.0,123.0,108.0,137.0,109.0,135.0,117.0,99.0,105.0,95.0,118.0,114.0,106.0,113.0,90.0,104.0,88.0,94.0,89.0,90.0,81.0,88.0,65.0,72.0,78.0,88.0,97.0,107.0,71.0,54.0,49.0,58.0,41.0,40.0,38.0,41.0,41.0,28.0,24.0,19.0,25.0,18.0,8.0,12.0,17.0 F81110,53.0,64.0,72.0,78.0,87.0,99.0,81.0,113.0,92.0,98.0,107.0,78.0,91.0,103.0,107.0,87.0,101.0,112.0,98.0,80.0,65.0,70.0,65.0,59.0,54.0,86.0,90.0,77.0,70.0,79.0,80.0,75.0,99.0,104.0,109.0,99.0,102.0,109.0,98.0,90.0,110.0,103.0,91.0,101.0,91.0,80.0,76.0,89.0,63.0,73.0,82.0,73.0,72.0,63.0,69.0,67.0,67.0,56.0,78.0,72.0,70.0,63.0,53.0,62.0,74.0,56.0,60.0,46.0,35.0,37.0,43.0,40.0,36.0,32.0,36.0,38.0,21.0,42.0,41.0,33.0,18.0,29.0,32.0,19.0,14.0,22.0,17.0,17.0,14.0,14.0,8.0,8.0,11.0,6.0,9.0,11.0 F81112,68.0,59.0,63.0,69.0,89.0,62.0,63.0,77.0,79.0,65.0,87.0,69.0,104.0,84.0,78.0,88.0,96.0,82.0,73.0,65.0,53.0,60.0,71.0,74.0,71.0,71.0,76.0,71.0,93.0,64.0,77.0,86.0,83.0,97.0,97.0,87.0,81.0,97.0,109.0,94.0,91.0,94.0,106.0,99.0,108.0,118.0,92.0,84.0,99.0,86.0,108.0,99.0,117.0,104.0,114.0,118.0,92.0,95.0,107.0,110.0,116.0,79.0,88.0,73.0,80.0,98.0,84.0,84.0,72.0,82.0,97.0,84.0,93.0,94.0,75.0,93.0,86.0,101.0,123.0,78.0,70.0,71.0,66.0,59.0,46.0,45.0,46.0,49.0,27.0,27.0,23.0,20.0,17.0,13.0,13.0,31.0 F81113,60.0,60.0,58.0,74.0,72.0,89.0,94.0,89.0,106.0,112.0,84.0,93.0,119.0,113.0,116.0,105.0,129.0,134.0,102.0,90.0,95.0,91.0,84.0,89.0,102.0,77.0,80.0,99.0,88.0,90.0,95.0,83.0,108.0,85.0,120.0,118.0,103.0,131.0,140.0,132.0,137.0,114.0,121.0,136.0,128.0,139.0,117.0,112.0,141.0,117.0,117.0,104.0,105.0,140.0,132.0,98.0,124.0,108.0,109.0,83.0,106.0,72.0,68.0,58.0,65.0,56.0,50.0,41.0,47.0,37.0,35.0,35.0,46.0,26.0,30.0,30.0,38.0,37.0,18.0,12.0,23.0,18.0,13.0,20.0,21.0,15.0,7.0,5.0,3.0,9.0,3.0,3.0,4.0,5.0,2.0,4.0 F81114,40.0,49.0,48.0,65.0,65.0,44.0,75.0,56.0,75.0,66.0,87.0,88.0,72.0,70.0,102.0,74.0,88.0,87.0,75.0,67.0,59.0,61.0,47.0,57.0,65.0,49.0,62.0,74.0,60.0,78.0,81.0,84.0,73.0,69.0,91.0,79.0,96.0,80.0,83.0,87.0,93.0,104.0,101.0,99.0,102.0,108.0,101.0,73.0,97.0,82.0,85.0,100.0,103.0,77.0,88.0,117.0,103.0,112.0,101.0,94.0,73.0,92.0,81.0,88.0,75.0,77.0,77.0,62.0,67.0,72.0,76.0,80.0,68.0,75.0,77.0,72.0,93.0,99.0,101.0,93.0,71.0,60.0,65.0,44.0,46.0,58.0,39.0,41.0,39.0,32.0,26.0,21.0,19.0,15.0,11.0,30.0 F81117,41.0,37.0,46.0,49.0,45.0,52.0,46.0,59.0,64.0,49.0,52.0,51.0,67.0,59.0,47.0,52.0,47.0,63.0,46.0,50.0,46.0,42.0,43.0,49.0,53.0,53.0,67.0,55.0,58.0,64.0,73.0,70.0,62.0,62.0,70.0,80.0,60.0,70.0,82.0,68.0,63.0,71.0,56.0,76.0,66.0,70.0,75.0,70.0,71.0,73.0,65.0,55.0,75.0,50.0,69.0,59.0,59.0,59.0,65.0,68.0,67.0,54.0,53.0,62.0,47.0,48.0,45.0,33.0,40.0,41.0,40.0,35.0,36.0,23.0,32.0,36.0,48.0,38.0,47.0,34.0,28.0,31.0,22.0,35.0,27.0,27.0,20.0,34.0,13.0,16.0,18.0,18.0,14.0,6.0,6.0,18.0 F81119,20.0,37.0,37.0,37.0,42.0,45.0,41.0,45.0,41.0,36.0,54.0,31.0,57.0,38.0,37.0,49.0,39.0,49.0,34.0,48.0,26.0,36.0,33.0,28.0,27.0,34.0,35.0,43.0,46.0,43.0,42.0,51.0,46.0,46.0,51.0,50.0,49.0,43.0,39.0,42.0,53.0,49.0,44.0,53.0,38.0,48.0,54.0,56.0,58.0,68.0,54.0,47.0,55.0,59.0,55.0,65.0,70.0,67.0,76.0,66.0,60.0,72.0,74.0,71.0,55.0,71.0,52.0,66.0,64.0,49.0,55.0,61.0,64.0,42.0,47.0,59.0,47.0,39.0,54.0,42.0,42.0,34.0,42.0,22.0,28.0,27.0,16.0,23.0,15.0,9.0,15.0,11.0,7.0,7.0,3.0,14.0 F81121,51.0,55.0,70.0,75.0,59.0,64.0,93.0,79.0,87.0,85.0,113.0,101.0,95.0,101.0,87.0,75.0,107.0,78.0,94.0,67.0,82.0,75.0,67.0,75.0,77.0,81.0,68.0,96.0,77.0,90.0,98.0,96.0,97.0,95.0,89.0,119.0,107.0,95.0,90.0,94.0,109.0,118.0,96.0,109.0,89.0,115.0,103.0,83.0,92.0,94.0,88.0,99.0,98.0,113.0,87.0,122.0,138.0,121.0,124.0,123.0,124.0,112.0,109.0,107.0,96.0,82.0,89.0,90.0,97.0,70.0,86.0,89.0,87.0,89.0,78.0,79.0,94.0,112.0,101.0,81.0,82.0,77.0,76.0,43.0,36.0,43.0,40.0,28.0,34.0,23.0,26.0,11.0,23.0,18.0,8.0,14.0 F81122,108.0,112.0,148.0,137.0,173.0,153.0,181.0,230.0,197.0,176.0,220.0,220.0,216.0,244.0,215.0,218.0,214.0,191.0,196.0,156.0,147.0,179.0,154.0,166.0,181.0,179.0,163.0,175.0,184.0,184.0,174.0,192.0,240.0,213.0,217.0,236.0,237.0,249.0,245.0,242.0,238.0,223.0,252.0,254.0,243.0,256.0,220.0,213.0,224.0,183.0,199.0,198.0,201.0,232.0,212.0,203.0,201.0,237.0,187.0,210.0,196.0,189.0,201.0,183.0,164.0,149.0,174.0,169.0,158.0,152.0,151.0,161.0,153.0,146.0,126.0,146.0,160.0,175.0,183.0,122.0,119.0,107.0,79.0,89.0,57.0,75.0,70.0,75.0,75.0,52.0,39.0,41.0,22.0,29.0,25.0,41.0 F81123,61.0,83.0,87.0,89.0,93.0,92.0,120.0,112.0,98.0,96.0,150.0,121.0,130.0,114.0,127.0,146.0,121.0,108.0,115.0,114.0,90.0,113.0,82.0,88.0,88.0,95.0,89.0,96.0,94.0,80.0,97.0,123.0,115.0,128.0,115.0,104.0,110.0,142.0,132.0,132.0,135.0,137.0,138.0,118.0,133.0,139.0,139.0,124.0,147.0,131.0,138.0,129.0,164.0,140.0,149.0,143.0,145.0,139.0,160.0,144.0,128.0,136.0,129.0,147.0,109.0,106.0,114.0,96.0,111.0,107.0,100.0,115.0,107.0,118.0,115.0,121.0,135.0,150.0,165.0,119.0,103.0,99.0,112.0,88.0,79.0,86.0,85.0,73.0,54.0,56.0,55.0,27.0,41.0,34.0,24.0,48.0 F81125,59.0,54.0,51.0,55.0,57.0,59.0,52.0,64.0,48.0,53.0,63.0,75.0,67.0,61.0,90.0,70.0,81.0,79.0,70.0,62.0,65.0,63.0,69.0,73.0,78.0,87.0,79.0,88.0,60.0,88.0,82.0,85.0,69.0,81.0,81.0,74.0,89.0,89.0,65.0,73.0,77.0,80.0,99.0,75.0,104.0,90.0,65.0,78.0,77.0,99.0,85.0,85.0,103.0,104.0,105.0,129.0,116.0,101.0,127.0,111.0,131.0,96.0,110.0,131.0,101.0,101.0,113.0,93.0,100.0,91.0,78.0,85.0,82.0,83.0,83.0,76.0,92.0,103.0,99.0,79.0,77.0,65.0,73.0,52.0,46.0,38.0,52.0,37.0,35.0,31.0,20.0,28.0,19.0,7.0,11.0,39.0 F81126,28.0,53.0,42.0,46.0,61.0,45.0,54.0,55.0,45.0,43.0,30.0,39.0,46.0,36.0,49.0,47.0,34.0,45.0,46.0,44.0,29.0,37.0,44.0,31.0,40.0,44.0,43.0,33.0,52.0,43.0,55.0,54.0,59.0,61.0,58.0,51.0,61.0,61.0,56.0,44.0,36.0,47.0,54.0,72.0,49.0,58.0,64.0,44.0,51.0,59.0,65.0,67.0,76.0,63.0,73.0,77.0,71.0,90.0,76.0,90.0,68.0,72.0,70.0,80.0,67.0,75.0,59.0,71.0,87.0,64.0,78.0,73.0,56.0,75.0,63.0,84.0,65.0,70.0,75.0,61.0,58.0,46.0,49.0,42.0,34.0,29.0,23.0,18.0,23.0,25.0,16.0,15.0,10.0,9.0,6.0,16.0 F81128,46.0,58.0,66.0,55.0,68.0,58.0,70.0,94.0,73.0,75.0,72.0,83.0,80.0,98.0,87.0,85.0,77.0,84.0,94.0,64.0,62.0,46.0,53.0,58.0,65.0,56.0,86.0,72.0,62.0,89.0,68.0,81.0,76.0,90.0,90.0,82.0,91.0,87.0,101.0,111.0,84.0,77.0,81.0,98.0,107.0,94.0,95.0,90.0,93.0,83.0,87.0,77.0,82.0,97.0,102.0,98.0,101.0,95.0,82.0,94.0,101.0,113.0,90.0,103.0,96.0,94.0,102.0,74.0,90.0,68.0,82.0,79.0,92.0,75.0,109.0,99.0,101.0,116.0,111.0,87.0,83.0,73.0,74.0,65.0,49.0,65.0,35.0,45.0,39.0,33.0,31.0,28.0,16.0,17.0,13.0,59.0 F81130,14.0,20.0,32.0,31.0,26.0,16.0,23.0,27.0,25.0,29.0,24.0,29.0,41.0,27.0,31.0,29.0,33.0,35.0,35.0,25.0,32.0,26.0,27.0,25.0,37.0,38.0,35.0,35.0,33.0,39.0,35.0,27.0,35.0,38.0,37.0,30.0,44.0,30.0,39.0,31.0,28.0,32.0,26.0,36.0,38.0,42.0,45.0,29.0,29.0,27.0,38.0,35.0,44.0,46.0,55.0,53.0,53.0,59.0,63.0,50.0,37.0,51.0,33.0,37.0,49.0,47.0,43.0,37.0,28.0,47.0,33.0,40.0,40.0,37.0,28.0,31.0,42.0,36.0,56.0,28.0,28.0,27.0,29.0,24.0,13.0,10.0,15.0,11.0,11.0,9.0,8.0,7.0,4.0,5.0,1.0,10.0 F81132,88.0,86.0,96.0,72.0,94.0,98.0,101.0,113.0,98.0,99.0,109.0,85.0,93.0,119.0,109.0,118.0,112.0,129.0,118.0,90.0,70.0,69.0,76.0,83.0,69.0,93.0,104.0,99.0,104.0,101.0,93.0,102.0,121.0,153.0,107.0,123.0,134.0,139.0,131.0,129.0,119.0,119.0,123.0,147.0,136.0,111.0,105.0,98.0,116.0,110.0,116.0,103.0,111.0,125.0,122.0,104.0,115.0,117.0,117.0,119.0,103.0,98.0,125.0,103.0,95.0,99.0,107.0,110.0,92.0,85.0,106.0,82.0,81.0,88.0,82.0,89.0,104.0,107.0,117.0,66.0,66.0,77.0,56.0,46.0,46.0,34.0,38.0,29.0,14.0,30.0,33.0,14.0,17.0,21.0,7.0,37.0 F81134,26.0,46.0,52.0,51.0,48.0,45.0,54.0,66.0,55.0,54.0,49.0,35.0,53.0,51.0,56.0,43.0,45.0,39.0,46.0,37.0,35.0,39.0,35.0,28.0,34.0,36.0,39.0,41.0,40.0,32.0,40.0,70.0,54.0,67.0,51.0,64.0,71.0,67.0,66.0,61.0,58.0,48.0,53.0,57.0,77.0,56.0,54.0,42.0,42.0,38.0,54.0,43.0,53.0,46.0,57.0,60.0,59.0,52.0,45.0,49.0,57.0,47.0,48.0,38.0,51.0,33.0,28.0,42.0,29.0,41.0,38.0,26.0,31.0,31.0,30.0,33.0,26.0,29.0,33.0,18.0,22.0,29.0,32.0,14.0,20.0,17.0,11.0,11.0,13.0,10.0,11.0,3.0,4.0,5.0,8.0,11.0 F81137,32.0,33.0,19.0,31.0,32.0,37.0,22.0,39.0,50.0,43.0,42.0,52.0,46.0,36.0,40.0,36.0,40.0,48.0,39.0,37.0,30.0,34.0,35.0,40.0,52.0,38.0,32.0,23.0,40.0,37.0,28.0,34.0,34.0,33.0,42.0,44.0,51.0,51.0,34.0,57.0,51.0,60.0,44.0,63.0,53.0,51.0,56.0,42.0,54.0,44.0,49.0,41.0,48.0,49.0,62.0,56.0,69.0,55.0,57.0,46.0,58.0,59.0,52.0,73.0,38.0,57.0,52.0,45.0,48.0,22.0,37.0,38.0,45.0,44.0,36.0,35.0,33.0,34.0,56.0,32.0,36.0,28.0,34.0,18.0,32.0,25.0,22.0,13.0,16.0,18.0,12.0,8.0,7.0,7.0,4.0,12.0 F81142,22.0,23.0,17.0,25.0,30.0,28.0,27.0,38.0,35.0,48.0,25.0,51.0,28.0,41.0,50.0,40.0,52.0,39.0,44.0,37.0,22.0,20.0,23.0,20.0,36.0,33.0,31.0,25.0,28.0,32.0,31.0,33.0,35.0,43.0,37.0,38.0,46.0,39.0,42.0,37.0,42.0,46.0,35.0,42.0,32.0,41.0,33.0,26.0,38.0,34.0,35.0,35.0,39.0,41.0,40.0,41.0,37.0,56.0,33.0,43.0,61.0,43.0,39.0,34.0,37.0,41.0,41.0,33.0,34.0,27.0,38.0,37.0,36.0,51.0,45.0,35.0,50.0,49.0,61.0,31.0,33.0,27.0,21.0,18.0,26.0,22.0,15.0,12.0,13.0,15.0,15.0,5.0,6.0,4.0,8.0,16.0 F81144,99.0,116.0,93.0,107.0,125.0,128.0,124.0,120.0,144.0,130.0,151.0,128.0,131.0,118.0,136.0,159.0,126.0,120.0,122.0,88.0,93.0,79.0,75.0,105.0,107.0,104.0,113.0,101.0,109.0,107.0,120.0,125.0,134.0,143.0,149.0,137.0,163.0,154.0,148.0,184.0,199.0,171.0,168.0,190.0,172.0,189.0,155.0,151.0,169.0,165.0,165.0,165.0,175.0,154.0,155.0,130.0,148.0,152.0,147.0,151.0,139.0,167.0,133.0,130.0,119.0,118.0,114.0,117.0,107.0,104.0,109.0,85.0,94.0,101.0,85.0,114.0,86.0,88.0,95.0,104.0,82.0,78.0,73.0,63.0,62.0,70.0,53.0,54.0,55.0,55.0,52.0,34.0,34.0,23.0,16.0,74.0 F81147,14.0,20.0,16.0,19.0,19.0,27.0,28.0,16.0,22.0,21.0,26.0,26.0,26.0,28.0,28.0,27.0,26.0,12.0,29.0,20.0,19.0,20.0,20.0,26.0,21.0,25.0,22.0,34.0,42.0,37.0,37.0,32.0,34.0,34.0,35.0,31.0,26.0,28.0,33.0,30.0,32.0,34.0,31.0,25.0,40.0,29.0,25.0,20.0,24.0,40.0,19.0,27.0,42.0,35.0,28.0,35.0,25.0,24.0,29.0,38.0,35.0,27.0,33.0,27.0,31.0,26.0,27.0,24.0,29.0,27.0,20.0,30.0,23.0,22.0,19.0,35.0,19.0,27.0,33.0,22.0,21.0,25.0,17.0,18.0,19.0,23.0,24.0,19.0,18.0,11.0,12.0,12.0,14.0,5.0,7.0,34.0 F81149,55.0,61.0,64.0,63.0,65.0,53.0,52.0,60.0,55.0,52.0,55.0,57.0,64.0,51.0,63.0,74.0,64.0,67.0,53.0,54.0,55.0,46.0,52.0,50.0,57.0,64.0,67.0,48.0,59.0,55.0,64.0,91.0,92.0,77.0,85.0,91.0,59.0,76.0,74.0,64.0,67.0,69.0,77.0,70.0,80.0,52.0,70.0,64.0,80.0,83.0,64.0,80.0,84.0,75.0,87.0,74.0,87.0,72.0,95.0,71.0,76.0,86.0,90.0,95.0,85.0,69.0,71.0,69.0,70.0,72.0,78.0,51.0,59.0,52.0,62.0,55.0,57.0,63.0,70.0,45.0,48.0,54.0,48.0,40.0,20.0,35.0,39.0,21.0,18.0,22.0,14.0,18.0,8.0,11.0,11.0,18.0 F81150,73.0,61.0,90.0,91.0,83.0,96.0,95.0,90.0,101.0,94.0,99.0,81.0,105.0,94.0,77.0,79.0,75.0,85.0,93.0,65.0,56.0,59.0,64.0,67.0,77.0,72.0,92.0,78.0,88.0,97.0,110.0,114.0,96.0,107.0,110.0,118.0,119.0,126.0,105.0,128.0,110.0,106.0,93.0,94.0,97.0,81.0,83.0,66.0,86.0,68.0,54.0,61.0,73.0,71.0,68.0,83.0,71.0,66.0,84.0,78.0,86.0,73.0,61.0,59.0,67.0,51.0,59.0,53.0,47.0,24.0,28.0,49.0,36.0,33.0,28.0,30.0,25.0,27.0,29.0,21.0,28.0,30.0,19.0,29.0,26.0,26.0,26.0,26.0,16.0,13.0,12.0,17.0,10.0,9.0,7.0,10.0 F81153,57.0,61.0,65.0,70.0,58.0,76.0,65.0,61.0,87.0,72.0,70.0,76.0,87.0,69.0,86.0,79.0,89.0,92.0,75.0,72.0,87.0,87.0,68.0,60.0,76.0,78.0,88.0,75.0,74.0,75.0,77.0,89.0,89.0,84.0,78.0,69.0,85.0,93.0,94.0,87.0,86.0,98.0,85.0,91.0,100.0,110.0,94.0,71.0,90.0,84.0,93.0,76.0,88.0,93.0,89.0,83.0,95.0,84.0,101.0,95.0,70.0,97.0,85.0,66.0,68.0,73.0,52.0,62.0,74.0,70.0,60.0,64.0,76.0,60.0,74.0,70.0,85.0,85.0,92.0,64.0,62.0,47.0,41.0,41.0,31.0,33.0,36.0,29.0,24.0,16.0,13.0,13.0,7.0,6.0,5.0,12.0 F81155,13.0,30.0,22.0,29.0,29.0,28.0,40.0,34.0,31.0,30.0,34.0,25.0,29.0,35.0,40.0,43.0,34.0,56.0,32.0,34.0,32.0,29.0,32.0,31.0,27.0,25.0,42.0,31.0,38.0,35.0,42.0,39.0,43.0,35.0,40.0,45.0,29.0,42.0,39.0,31.0,38.0,31.0,38.0,39.0,37.0,34.0,49.0,35.0,35.0,42.0,23.0,37.0,27.0,47.0,37.0,39.0,37.0,34.0,34.0,35.0,29.0,38.0,22.0,30.0,31.0,26.0,27.0,19.0,19.0,26.0,26.0,27.0,27.0,18.0,14.0,25.0,12.0,15.0,22.0,21.0,13.0,11.0,9.0,10.0,17.0,5.0,12.0,7.0,12.0,8.0,5.0,3.0,5.0,6.0,1.0,5.0 F81158,12.0,23.0,18.0,24.0,27.0,32.0,33.0,17.0,17.0,20.0,30.0,23.0,32.0,25.0,27.0,24.0,23.0,41.0,21.0,19.0,18.0,16.0,17.0,18.0,18.0,25.0,22.0,25.0,18.0,20.0,31.0,38.0,23.0,21.0,35.0,40.0,31.0,44.0,29.0,22.0,29.0,25.0,20.0,21.0,15.0,28.0,20.0,22.0,23.0,22.0,32.0,23.0,18.0,20.0,29.0,31.0,21.0,30.0,22.0,25.0,22.0,22.0,35.0,23.0,23.0,17.0,27.0,25.0,22.0,22.0,23.0,17.0,20.0,18.0,15.0,15.0,20.0,14.0,19.0,9.0,15.0,12.0,15.0,6.0,9.0,12.0,4.0,7.0,6.0,3.0,4.0,2.0,,1.0,2.0,2.0 F81159,49.0,38.0,43.0,44.0,31.0,44.0,46.0,44.0,45.0,47.0,38.0,43.0,43.0,40.0,44.0,34.0,28.0,33.0,28.0,40.0,47.0,61.0,65.0,70.0,75.0,75.0,79.0,75.0,97.0,73.0,94.0,100.0,80.0,90.0,80.0,84.0,72.0,64.0,79.0,68.0,54.0,52.0,56.0,72.0,40.0,40.0,48.0,26.0,37.0,37.0,44.0,34.0,33.0,26.0,27.0,34.0,34.0,29.0,31.0,22.0,22.0,22.0,20.0,26.0,22.0,21.0,15.0,14.0,12.0,14.0,18.0,11.0,12.0,12.0,10.0,10.0,10.0,12.0,15.0,10.0,14.0,13.0,3.0,4.0,5.0,8.0,5.0,7.0,5.0,3.0,1.0,1.0,3.0,1.0,4.0,7.0 F81163,26.0,49.0,43.0,37.0,33.0,35.0,29.0,37.0,35.0,48.0,39.0,52.0,44.0,31.0,41.0,41.0,45.0,40.0,47.0,36.0,35.0,27.0,33.0,37.0,38.0,41.0,36.0,41.0,42.0,42.0,36.0,47.0,45.0,43.0,45.0,40.0,45.0,55.0,49.0,46.0,39.0,57.0,48.0,49.0,41.0,42.0,44.0,36.0,42.0,36.0,57.0,42.0,57.0,42.0,35.0,62.0,51.0,58.0,65.0,51.0,66.0,55.0,59.0,57.0,45.0,40.0,32.0,39.0,31.0,35.0,28.0,30.0,35.0,23.0,25.0,42.0,27.0,37.0,46.0,31.0,30.0,30.0,33.0,24.0,26.0,25.0,22.0,24.0,22.0,22.0,8.0,10.0,13.0,12.0,10.0,15.0 F81164,34.0,47.0,40.0,41.0,46.0,55.0,67.0,54.0,67.0,62.0,64.0,62.0,65.0,70.0,73.0,67.0,72.0,58.0,63.0,40.0,32.0,59.0,52.0,40.0,49.0,42.0,50.0,47.0,68.0,61.0,56.0,60.0,73.0,62.0,67.0,71.0,69.0,56.0,83.0,89.0,82.0,74.0,74.0,72.0,64.0,88.0,71.0,57.0,52.0,69.0,58.0,55.0,71.0,61.0,59.0,61.0,67.0,68.0,87.0,63.0,64.0,64.0,65.0,43.0,67.0,49.0,53.0,43.0,48.0,40.0,50.0,41.0,41.0,24.0,40.0,44.0,34.0,39.0,30.0,29.0,32.0,26.0,24.0,20.0,15.0,19.0,23.0,12.0,6.0,14.0,9.0,7.0,6.0,6.0,3.0,11.0 F81170,36.0,58.0,56.0,45.0,68.0,63.0,64.0,81.0,67.0,67.0,88.0,72.0,92.0,93.0,83.0,91.0,75.0,79.0,81.0,79.0,68.0,50.0,72.0,76.0,61.0,61.0,66.0,79.0,84.0,71.0,68.0,97.0,65.0,83.0,89.0,86.0,98.0,83.0,84.0,78.0,98.0,97.0,89.0,81.0,93.0,96.0,79.0,93.0,74.0,75.0,109.0,93.0,83.0,104.0,92.0,95.0,92.0,106.0,97.0,98.0,88.0,86.0,95.0,87.0,104.0,74.0,85.0,96.0,89.0,89.0,71.0,73.0,90.0,85.0,92.0,89.0,100.0,82.0,121.0,52.0,46.0,50.0,42.0,33.0,30.0,29.0,30.0,24.0,24.0,24.0,17.0,10.0,10.0,9.0,13.0,15.0 F81173,34.0,34.0,31.0,51.0,34.0,43.0,61.0,65.0,42.0,51.0,51.0,55.0,59.0,52.0,32.0,48.0,40.0,57.0,38.0,33.0,35.0,35.0,24.0,27.0,31.0,36.0,43.0,41.0,42.0,48.0,46.0,52.0,46.0,48.0,72.0,57.0,66.0,62.0,56.0,58.0,56.0,53.0,38.0,35.0,43.0,40.0,51.0,41.0,33.0,46.0,40.0,35.0,45.0,35.0,27.0,22.0,29.0,36.0,34.0,38.0,38.0,42.0,24.0,21.0,34.0,25.0,24.0,23.0,32.0,26.0,26.0,28.0,31.0,22.0,23.0,28.0,29.0,33.0,18.0,22.0,21.0,14.0,20.0,7.0,9.0,8.0,3.0,5.0,2.0,3.0,2.0,3.0,1.0,1.0,1.0,1.0 F81176,20.0,16.0,15.0,24.0,16.0,21.0,21.0,20.0,29.0,24.0,17.0,22.0,21.0,18.0,21.0,19.0,22.0,20.0,20.0,19.0,20.0,10.0,9.0,17.0,18.0,7.0,12.0,22.0,11.0,15.0,20.0,13.0,21.0,23.0,28.0,29.0,22.0,35.0,23.0,28.0,23.0,25.0,31.0,35.0,25.0,26.0,23.0,29.0,17.0,16.0,15.0,17.0,15.0,17.0,22.0,19.0,19.0,15.0,16.0,16.0,18.0,28.0,22.0,13.0,18.0,17.0,19.0,20.0,15.0,18.0,15.0,24.0,13.0,14.0,15.0,18.0,7.0,15.0,15.0,11.0,10.0,8.0,10.0,4.0,4.0,6.0,4.0,2.0,,2.0,7.0,1.0,2.0,1.0,1.0,3.0 F81177,22.0,25.0,28.0,36.0,24.0,28.0,40.0,30.0,26.0,30.0,33.0,26.0,22.0,33.0,25.0,19.0,35.0,23.0,20.0,18.0,23.0,30.0,25.0,20.0,26.0,24.0,33.0,20.0,37.0,26.0,37.0,33.0,37.0,48.0,41.0,53.0,39.0,38.0,35.0,26.0,36.0,32.0,26.0,33.0,35.0,22.0,34.0,26.0,32.0,20.0,30.0,24.0,28.0,21.0,26.0,18.0,24.0,18.0,19.0,19.0,29.0,24.0,27.0,19.0,15.0,19.0,13.0,26.0,19.0,20.0,19.0,23.0,19.0,13.0,30.0,15.0,23.0,15.0,16.0,16.0,16.0,10.0,10.0,11.0,7.0,4.0,5.0,5.0,9.0,4.0,7.0,3.0,4.0,2.0,3.0,8.0 F81183,13.0,15.0,20.0,23.0,20.0,17.0,33.0,22.0,34.0,34.0,23.0,36.0,22.0,19.0,23.0,26.0,26.0,29.0,28.0,26.0,24.0,19.0,22.0,28.0,24.0,28.0,29.0,34.0,30.0,29.0,17.0,25.0,35.0,27.0,31.0,33.0,42.0,27.0,26.0,25.0,35.0,37.0,30.0,29.0,29.0,27.0,31.0,31.0,25.0,27.0,26.0,34.0,41.0,45.0,46.0,33.0,46.0,65.0,61.0,63.0,62.0,42.0,49.0,49.0,38.0,56.0,45.0,42.0,34.0,43.0,48.0,37.0,25.0,50.0,32.0,42.0,39.0,27.0,50.0,20.0,39.0,32.0,17.0,10.0,20.0,18.0,12.0,21.0,14.0,14.0,7.0,7.0,5.0,4.0,4.0,19.0 F81186,35.0,39.0,42.0,53.0,56.0,53.0,63.0,56.0,51.0,57.0,56.0,59.0,56.0,53.0,48.0,72.0,47.0,61.0,47.0,47.0,44.0,40.0,34.0,40.0,43.0,41.0,45.0,48.0,40.0,49.0,44.0,55.0,61.0,70.0,60.0,63.0,69.0,62.0,59.0,81.0,56.0,63.0,49.0,51.0,55.0,63.0,47.0,38.0,33.0,48.0,46.0,39.0,44.0,33.0,37.0,28.0,30.0,35.0,35.0,31.0,34.0,32.0,34.0,39.0,24.0,27.0,22.0,23.0,27.0,30.0,25.0,30.0,19.0,20.0,25.0,15.0,22.0,33.0,17.0,18.0,11.0,5.0,13.0,13.0,12.0,14.0,10.0,11.0,3.0,3.0,5.0,4.0,1.0,1.0,2.0,8.0 F81192,39.0,33.0,48.0,51.0,37.0,54.0,58.0,50.0,68.0,65.0,57.0,67.0,62.0,65.0,81.0,66.0,75.0,68.0,55.0,52.0,66.0,48.0,50.0,58.0,48.0,58.0,48.0,52.0,70.0,54.0,56.0,60.0,59.0,57.0,56.0,58.0,74.0,61.0,79.0,77.0,71.0,76.0,74.0,71.0,60.0,64.0,66.0,56.0,63.0,82.0,61.0,82.0,72.0,66.0,60.0,57.0,59.0,76.0,69.0,55.0,54.0,61.0,63.0,57.0,61.0,54.0,55.0,59.0,55.0,69.0,54.0,57.0,55.0,58.0,64.0,53.0,51.0,64.0,74.0,55.0,41.0,32.0,34.0,28.0,20.0,22.0,28.0,28.0,21.0,21.0,15.0,14.0,15.0,13.0,11.0,28.0 F81193,33.0,42.0,52.0,51.0,50.0,47.0,47.0,52.0,39.0,64.0,39.0,47.0,54.0,31.0,54.0,39.0,37.0,31.0,29.0,40.0,27.0,25.0,27.0,23.0,32.0,35.0,44.0,47.0,54.0,58.0,73.0,67.0,62.0,72.0,67.0,74.0,81.0,61.0,57.0,57.0,63.0,63.0,53.0,47.0,50.0,46.0,41.0,37.0,28.0,38.0,32.0,30.0,36.0,46.0,43.0,44.0,42.0,37.0,46.0,44.0,48.0,40.0,46.0,27.0,35.0,34.0,33.0,32.0,25.0,33.0,41.0,31.0,24.0,30.0,19.0,30.0,32.0,38.0,40.0,25.0,24.0,23.0,16.0,17.0,20.0,9.0,11.0,13.0,7.0,8.0,4.0,5.0,6.0,7.0,5.0,10.0 F81197,9.0,11.0,13.0,21.0,14.0,13.0,28.0,13.0,14.0,20.0,16.0,11.0,20.0,13.0,14.0,20.0,18.0,10.0,19.0,12.0,13.0,17.0,10.0,12.0,13.0,12.0,15.0,10.0,15.0,21.0,14.0,16.0,19.0,19.0,22.0,14.0,26.0,32.0,17.0,28.0,17.0,19.0,17.0,23.0,17.0,18.0,22.0,18.0,9.0,18.0,17.0,12.0,16.0,18.0,15.0,18.0,22.0,19.0,13.0,11.0,23.0,23.0,26.0,19.0,13.0,15.0,16.0,7.0,16.0,11.0,10.0,15.0,10.0,10.0,8.0,9.0,7.0,8.0,17.0,7.0,3.0,4.0,3.0,3.0,5.0,1.0,5.0,1.0,2.0,1.0,1.0,3.0,,1.0,1.0,3.0 F81198,13.0,10.0,12.0,12.0,11.0,8.0,11.0,6.0,11.0,12.0,20.0,13.0,15.0,13.0,14.0,18.0,12.0,14.0,8.0,14.0,18.0,14.0,12.0,16.0,14.0,15.0,20.0,13.0,10.0,13.0,18.0,11.0,19.0,22.0,18.0,20.0,11.0,15.0,14.0,11.0,17.0,13.0,21.0,24.0,21.0,16.0,14.0,10.0,11.0,18.0,16.0,13.0,21.0,13.0,26.0,20.0,26.0,18.0,24.0,14.0,25.0,20.0,23.0,27.0,17.0,16.0,14.0,13.0,11.0,12.0,16.0,18.0,14.0,15.0,16.0,18.0,15.0,17.0,16.0,6.0,7.0,13.0,10.0,8.0,9.0,9.0,5.0,,6.0,3.0,2.0,2.0,3.0,,,1.0 F81205,17.0,16.0,23.0,32.0,28.0,32.0,26.0,27.0,33.0,25.0,30.0,40.0,47.0,36.0,42.0,39.0,31.0,46.0,37.0,30.0,34.0,26.0,22.0,26.0,25.0,20.0,28.0,26.0,23.0,19.0,20.0,29.0,24.0,34.0,28.0,39.0,40.0,36.0,36.0,31.0,26.0,35.0,30.0,27.0,34.0,39.0,28.0,32.0,23.0,26.0,24.0,32.0,31.0,40.0,38.0,39.0,40.0,40.0,43.0,46.0,32.0,38.0,41.0,37.0,40.0,26.0,37.0,28.0,35.0,31.0,37.0,30.0,27.0,31.0,35.0,29.0,37.0,43.0,34.0,37.0,27.0,26.0,15.0,17.0,16.0,17.0,20.0,11.0,10.0,4.0,6.0,2.0,3.0,5.0,1.0,2.0 F81206,24.0,40.0,34.0,41.0,41.0,41.0,46.0,62.0,49.0,56.0,58.0,59.0,50.0,70.0,45.0,52.0,49.0,56.0,43.0,37.0,43.0,32.0,31.0,38.0,45.0,35.0,43.0,43.0,36.0,42.0,47.0,51.0,45.0,43.0,48.0,47.0,46.0,44.0,49.0,49.0,67.0,53.0,54.0,60.0,54.0,40.0,39.0,28.0,29.0,32.0,38.0,38.0,35.0,23.0,37.0,35.0,39.0,23.0,36.0,30.0,32.0,34.0,18.0,27.0,28.0,16.0,20.0,13.0,30.0,12.0,22.0,20.0,9.0,13.0,16.0,4.0,10.0,12.0,16.0,10.0,7.0,7.0,7.0,4.0,5.0,8.0,7.0,4.0,5.0,4.0,3.0,1.0,3.0,1.0,2.0,2.0 F81207,19.0,8.0,8.0,17.0,8.0,15.0,14.0,16.0,16.0,16.0,20.0,15.0,10.0,24.0,11.0,16.0,16.0,12.0,11.0,14.0,14.0,6.0,11.0,11.0,10.0,14.0,23.0,32.0,22.0,26.0,26.0,25.0,23.0,25.0,30.0,20.0,19.0,17.0,17.0,22.0,21.0,19.0,16.0,26.0,19.0,22.0,19.0,11.0,12.0,8.0,11.0,15.0,12.0,14.0,17.0,13.0,14.0,13.0,8.0,14.0,10.0,13.0,10.0,6.0,12.0,9.0,5.0,11.0,8.0,4.0,7.0,4.0,10.0,5.0,5.0,6.0,6.0,9.0,5.0,5.0,6.0,2.0,1.0,4.0,7.0,2.0,3.0,4.0,4.0,4.0,1.0,,1.0,1.0,,6.0 F81211,22.0,22.0,31.0,26.0,28.0,32.0,30.0,33.0,22.0,35.0,30.0,38.0,33.0,34.0,42.0,37.0,42.0,35.0,30.0,30.0,24.0,20.0,21.0,21.0,34.0,34.0,25.0,31.0,49.0,36.0,41.0,33.0,41.0,42.0,33.0,37.0,40.0,46.0,50.0,46.0,38.0,39.0,53.0,44.0,40.0,31.0,40.0,35.0,40.0,42.0,40.0,31.0,34.0,35.0,26.0,33.0,34.0,27.0,29.0,36.0,37.0,30.0,31.0,24.0,32.0,21.0,22.0,27.0,26.0,21.0,18.0,15.0,16.0,10.0,13.0,22.0,19.0,18.0,12.0,11.0,14.0,12.0,12.0,6.0,10.0,10.0,6.0,6.0,2.0,6.0,2.0,3.0,6.0,1.0,,5.0 F81215,42.0,40.0,41.0,48.0,39.0,47.0,41.0,36.0,59.0,57.0,53.0,46.0,53.0,44.0,58.0,55.0,77.0,45.0,37.0,52.0,57.0,42.0,41.0,47.0,59.0,49.0,42.0,54.0,53.0,46.0,47.0,48.0,57.0,58.0,59.0,44.0,58.0,44.0,51.0,58.0,49.0,51.0,57.0,69.0,60.0,60.0,61.0,50.0,61.0,48.0,68.0,62.0,55.0,61.0,65.0,64.0,75.0,95.0,87.0,99.0,83.0,63.0,69.0,81.0,75.0,74.0,61.0,60.0,55.0,60.0,59.0,60.0,58.0,45.0,59.0,64.0,46.0,55.0,77.0,53.0,51.0,44.0,48.0,32.0,31.0,33.0,32.0,28.0,25.0,19.0,19.0,15.0,19.0,10.0,7.0,18.0 F81219,31.0,33.0,36.0,44.0,30.0,36.0,22.0,35.0,31.0,33.0,24.0,36.0,38.0,17.0,26.0,23.0,40.0,25.0,29.0,24.0,22.0,22.0,27.0,24.0,29.0,31.0,34.0,32.0,40.0,47.0,37.0,44.0,48.0,43.0,48.0,35.0,49.0,37.0,37.0,27.0,38.0,37.0,26.0,27.0,32.0,37.0,31.0,35.0,29.0,21.0,31.0,29.0,35.0,36.0,29.0,32.0,37.0,29.0,46.0,41.0,39.0,38.0,35.0,29.0,32.0,26.0,38.0,26.0,25.0,23.0,20.0,25.0,21.0,35.0,17.0,19.0,29.0,34.0,37.0,19.0,26.0,20.0,11.0,21.0,8.0,14.0,11.0,9.0,11.0,13.0,5.0,10.0,3.0,4.0,,8.0 F81222,19.0,27.0,21.0,24.0,24.0,27.0,34.0,35.0,29.0,25.0,25.0,30.0,27.0,41.0,26.0,28.0,35.0,35.0,25.0,20.0,23.0,27.0,17.0,19.0,25.0,23.0,30.0,31.0,38.0,26.0,34.0,31.0,35.0,34.0,36.0,32.0,40.0,43.0,30.0,40.0,52.0,37.0,23.0,28.0,32.0,34.0,34.0,23.0,33.0,32.0,32.0,33.0,43.0,41.0,43.0,42.0,37.0,39.0,36.0,34.0,42.0,40.0,35.0,42.0,42.0,37.0,30.0,32.0,26.0,21.0,22.0,16.0,21.0,23.0,19.0,19.0,20.0,13.0,24.0,12.0,20.0,13.0,6.0,9.0,13.0,18.0,12.0,10.0,8.0,11.0,3.0,3.0,4.0,1.0,2.0,8.0 F81223,8.0,13.0,10.0,16.0,13.0,14.0,17.0,16.0,18.0,21.0,22.0,14.0,20.0,22.0,18.0,20.0,21.0,20.0,12.0,20.0,15.0,10.0,10.0,13.0,17.0,23.0,14.0,19.0,16.0,23.0,16.0,16.0,14.0,15.0,20.0,15.0,12.0,21.0,22.0,22.0,20.0,27.0,17.0,22.0,18.0,24.0,20.0,25.0,22.0,28.0,15.0,26.0,19.0,26.0,21.0,24.0,21.0,22.0,22.0,29.0,20.0,24.0,30.0,14.0,20.0,21.0,11.0,16.0,14.0,18.0,15.0,15.0,21.0,18.0,28.0,22.0,17.0,15.0,10.0,18.0,14.0,6.0,14.0,13.0,9.0,9.0,9.0,6.0,11.0,4.0,6.0,2.0,1.0,1.0,1.0,3.0 F81613,30.0,30.0,43.0,32.0,51.0,38.0,37.0,59.0,53.0,64.0,47.0,45.0,61.0,52.0,64.0,60.0,55.0,58.0,55.0,43.0,53.0,47.0,46.0,48.0,49.0,58.0,38.0,55.0,58.0,66.0,49.0,55.0,58.0,57.0,60.0,52.0,48.0,63.0,58.0,64.0,59.0,52.0,65.0,70.0,64.0,62.0,52.0,46.0,54.0,55.0,64.0,67.0,63.0,71.0,52.0,66.0,47.0,69.0,57.0,60.0,67.0,49.0,50.0,71.0,50.0,61.0,54.0,62.0,45.0,46.0,33.0,36.0,40.0,43.0,45.0,42.0,43.0,50.0,50.0,25.0,36.0,29.0,24.0,16.0,17.0,19.0,21.0,18.0,13.0,11.0,11.0,14.0,12.0,9.0,9.0,12.0 F81618,19.0,27.0,27.0,27.0,23.0,28.0,17.0,27.0,30.0,17.0,26.0,26.0,26.0,30.0,25.0,31.0,22.0,21.0,14.0,18.0,27.0,24.0,30.0,24.0,34.0,36.0,18.0,27.0,31.0,22.0,32.0,39.0,34.0,32.0,29.0,29.0,32.0,26.0,34.0,25.0,26.0,37.0,26.0,40.0,27.0,22.0,32.0,29.0,23.0,27.0,26.0,27.0,28.0,25.0,38.0,34.0,30.0,26.0,30.0,30.0,35.0,19.0,31.0,23.0,22.0,19.0,18.0,15.0,20.0,13.0,17.0,20.0,21.0,20.0,16.0,23.0,12.0,26.0,25.0,18.0,18.0,29.0,14.0,11.0,10.0,11.0,17.0,12.0,12.0,2.0,4.0,4.0,8.0,6.0,4.0,6.0 F81623,9.0,9.0,7.0,18.0,7.0,13.0,11.0,17.0,19.0,14.0,9.0,13.0,10.0,19.0,6.0,15.0,19.0,16.0,19.0,9.0,8.0,13.0,6.0,12.0,13.0,7.0,11.0,19.0,13.0,10.0,13.0,9.0,23.0,16.0,17.0,18.0,19.0,18.0,22.0,20.0,13.0,19.0,23.0,26.0,15.0,16.0,19.0,16.0,23.0,11.0,17.0,19.0,15.0,14.0,14.0,11.0,11.0,13.0,16.0,15.0,15.0,15.0,7.0,15.0,16.0,9.0,4.0,9.0,8.0,6.0,19.0,8.0,10.0,9.0,11.0,7.0,10.0,13.0,8.0,9.0,4.0,11.0,8.0,4.0,4.0,3.0,4.0,2.0,6.0,1.0,1.0,,1.0,,,2.0 F81632,47.0,40.0,52.0,46.0,48.0,44.0,47.0,46.0,34.0,39.0,35.0,48.0,44.0,37.0,31.0,40.0,34.0,30.0,37.0,36.0,28.0,31.0,27.0,33.0,34.0,34.0,53.0,49.0,46.0,56.0,58.0,45.0,44.0,62.0,63.0,53.0,50.0,51.0,50.0,57.0,46.0,48.0,45.0,58.0,45.0,48.0,39.0,27.0,38.0,40.0,43.0,30.0,23.0,33.0,53.0,33.0,36.0,39.0,29.0,37.0,29.0,34.0,32.0,24.0,15.0,9.0,19.0,18.0,27.0,5.0,14.0,15.0,13.0,22.0,19.0,12.0,5.0,16.0,10.0,7.0,11.0,10.0,8.0,9.0,10.0,3.0,2.0,4.0,3.0,3.0,2.0,1.0,3.0,2.0,4.0,2.0 F81635,13.0,25.0,25.0,19.0,8.0,20.0,24.0,14.0,24.0,15.0,14.0,12.0,16.0,12.0,13.0,11.0,18.0,6.0,6.0,10.0,11.0,11.0,6.0,13.0,10.0,16.0,14.0,16.0,25.0,18.0,19.0,30.0,22.0,21.0,33.0,21.0,33.0,36.0,27.0,21.0,17.0,22.0,13.0,18.0,18.0,9.0,18.0,22.0,13.0,10.0,13.0,8.0,10.0,16.0,18.0,8.0,17.0,17.0,12.0,10.0,16.0,14.0,12.0,14.0,9.0,7.0,8.0,12.0,12.0,10.0,6.0,8.0,7.0,8.0,12.0,12.0,10.0,8.0,8.0,12.0,9.0,5.0,4.0,4.0,7.0,2.0,3.0,2.0,3.0,2.0,1.0,3.0,2.0,3.0,,4.0 F81640,13.0,29.0,18.0,28.0,30.0,26.0,25.0,33.0,33.0,38.0,33.0,40.0,39.0,27.0,34.0,42.0,31.0,31.0,25.0,22.0,30.0,35.0,22.0,14.0,24.0,25.0,20.0,19.0,29.0,19.0,39.0,26.0,27.0,40.0,44.0,36.0,43.0,35.0,29.0,44.0,34.0,36.0,36.0,35.0,32.0,34.0,32.0,28.0,26.0,28.0,27.0,19.0,32.0,26.0,18.0,21.0,30.0,20.0,23.0,38.0,34.0,20.0,23.0,24.0,28.0,30.0,27.0,23.0,23.0,12.0,18.0,18.0,23.0,14.0,15.0,24.0,8.0,18.0,16.0,13.0,9.0,7.0,11.0,4.0,5.0,5.0,6.0,5.0,2.0,2.0,,1.0,1.0,1.0,1.0, F81641,48.0,64.0,57.0,56.0,40.0,42.0,48.0,55.0,50.0,42.0,39.0,40.0,44.0,38.0,43.0,28.0,44.0,45.0,37.0,21.0,41.0,38.0,34.0,45.0,49.0,52.0,41.0,53.0,67.0,73.0,82.0,63.0,62.0,72.0,90.0,75.0,80.0,62.0,57.0,60.0,65.0,58.0,51.0,65.0,60.0,50.0,39.0,54.0,38.0,40.0,50.0,36.0,38.0,51.0,37.0,29.0,45.0,36.0,37.0,35.0,37.0,35.0,34.0,27.0,45.0,33.0,30.0,27.0,32.0,20.0,30.0,22.0,23.0,21.0,16.0,24.0,20.0,17.0,23.0,17.0,9.0,11.0,13.0,12.0,14.0,12.0,9.0,13.0,12.0,5.0,8.0,3.0,1.0,4.0,4.0,12.0 F81645,22.0,22.0,31.0,15.0,23.0,15.0,25.0,22.0,25.0,24.0,29.0,27.0,41.0,28.0,25.0,27.0,33.0,27.0,24.0,32.0,26.0,24.0,33.0,21.0,32.0,22.0,21.0,21.0,25.0,28.0,23.0,21.0,31.0,24.0,27.0,33.0,24.0,27.0,31.0,31.0,29.0,33.0,29.0,38.0,44.0,27.0,26.0,26.0,30.0,27.0,32.0,22.0,26.0,31.0,30.0,23.0,20.0,27.0,29.0,30.0,30.0,22.0,31.0,25.0,19.0,36.0,29.0,27.0,30.0,21.0,27.0,20.0,25.0,26.0,19.0,17.0,22.0,28.0,25.0,22.0,17.0,11.0,7.0,11.0,4.0,4.0,1.0,1.0,1.0,3.0,3.0,2.0,2.0,1.0,,5.0 F81649,15.0,16.0,23.0,24.0,23.0,16.0,27.0,26.0,26.0,30.0,31.0,36.0,15.0,27.0,29.0,25.0,33.0,23.0,18.0,16.0,21.0,17.0,24.0,20.0,22.0,25.0,25.0,20.0,27.0,24.0,21.0,28.0,24.0,27.0,38.0,36.0,23.0,42.0,21.0,31.0,26.0,33.0,45.0,24.0,32.0,35.0,32.0,24.0,29.0,21.0,23.0,23.0,26.0,35.0,27.0,25.0,38.0,27.0,27.0,42.0,26.0,21.0,43.0,22.0,36.0,32.0,33.0,27.0,37.0,26.0,27.0,30.0,29.0,25.0,19.0,31.0,26.0,37.0,29.0,23.0,24.0,12.0,13.0,8.0,9.0,12.0,11.0,8.0,7.0,11.0,4.0,5.0,1.0,6.0,1.0,5.0 F81652,35.0,27.0,19.0,32.0,25.0,33.0,39.0,44.0,35.0,27.0,35.0,28.0,31.0,39.0,30.0,36.0,39.0,37.0,26.0,25.0,30.0,29.0,25.0,31.0,34.0,34.0,34.0,39.0,25.0,35.0,41.0,36.0,43.0,48.0,40.0,40.0,32.0,32.0,55.0,55.0,37.0,36.0,29.0,41.0,40.0,38.0,24.0,26.0,40.0,24.0,25.0,32.0,25.0,32.0,30.0,29.0,34.0,15.0,20.0,31.0,27.0,31.0,33.0,30.0,37.0,21.0,21.0,20.0,25.0,25.0,24.0,24.0,21.0,24.0,20.0,24.0,17.0,38.0,22.0,29.0,24.0,23.0,18.0,17.0,11.0,16.0,10.0,17.0,12.0,12.0,14.0,14.0,7.0,12.0,6.0,28.0 F81656,5.0,10.0,6.0,13.0,15.0,16.0,18.0,20.0,18.0,19.0,16.0,19.0,16.0,16.0,18.0,11.0,12.0,11.0,20.0,19.0,6.0,18.0,17.0,16.0,21.0,17.0,24.0,18.0,13.0,24.0,20.0,23.0,14.0,18.0,27.0,32.0,21.0,19.0,18.0,25.0,12.0,23.0,20.0,20.0,9.0,17.0,23.0,21.0,10.0,13.0,13.0,25.0,19.0,13.0,11.0,15.0,24.0,15.0,17.0,14.0,23.0,14.0,12.0,23.0,15.0,13.0,14.0,21.0,8.0,15.0,10.0,12.0,10.0,3.0,11.0,15.0,6.0,13.0,12.0,5.0,10.0,7.0,5.0,7.0,5.0,5.0,6.0,3.0,1.0,4.0,2.0,3.0,2.0,3.0,2.0,4.0 F81665,29.0,22.0,21.0,26.0,21.0,34.0,25.0,33.0,38.0,27.0,37.0,34.0,42.0,30.0,33.0,19.0,31.0,27.0,25.0,19.0,18.0,19.0,24.0,17.0,35.0,37.0,28.0,33.0,26.0,30.0,36.0,41.0,46.0,35.0,38.0,43.0,36.0,51.0,43.0,48.0,42.0,45.0,37.0,47.0,50.0,45.0,37.0,47.0,45.0,36.0,35.0,38.0,36.0,39.0,44.0,40.0,25.0,25.0,32.0,22.0,19.0,17.0,21.0,21.0,28.0,26.0,15.0,33.0,21.0,22.0,20.0,10.0,18.0,16.0,18.0,19.0,15.0,22.0,20.0,8.0,10.0,22.0,11.0,7.0,6.0,5.0,7.0,6.0,8.0,7.0,7.0,1.0,2.0,3.0,1.0,1.0 F81666,18.0,17.0,22.0,22.0,18.0,11.0,25.0,16.0,17.0,25.0,16.0,18.0,18.0,14.0,23.0,27.0,27.0,13.0,26.0,14.0,16.0,15.0,13.0,17.0,12.0,15.0,14.0,21.0,24.0,16.0,20.0,18.0,23.0,30.0,14.0,26.0,25.0,39.0,26.0,24.0,25.0,20.0,25.0,28.0,22.0,23.0,30.0,24.0,26.0,16.0,18.0,23.0,23.0,21.0,27.0,31.0,24.0,30.0,18.0,27.0,18.0,20.0,24.0,24.0,27.0,14.0,24.0,15.0,19.0,12.0,16.0,23.0,14.0,20.0,11.0,15.0,17.0,10.0,22.0,13.0,7.0,8.0,9.0,4.0,6.0,7.0,8.0,4.0,2.0,4.0,6.0,3.0,4.0,,2.0, F81669,30.0,39.0,52.0,53.0,43.0,58.0,65.0,72.0,57.0,62.0,71.0,72.0,60.0,54.0,61.0,37.0,55.0,50.0,45.0,37.0,31.0,28.0,53.0,28.0,38.0,38.0,33.0,53.0,46.0,44.0,57.0,60.0,69.0,65.0,75.0,60.0,77.0,69.0,85.0,87.0,76.0,58.0,62.0,75.0,61.0,66.0,57.0,50.0,43.0,46.0,49.0,43.0,43.0,42.0,42.0,36.0,51.0,31.0,36.0,32.0,29.0,29.0,30.0,38.0,27.0,36.0,26.0,22.0,17.0,9.0,21.0,14.0,11.0,16.0,12.0,17.0,11.0,16.0,14.0,13.0,3.0,8.0,4.0,4.0,3.0,4.0,2.0,2.0,2.0,4.0,,3.0,2.0,2.0,,2.0 F81674,47.0,60.0,59.0,70.0,61.0,81.0,62.0,80.0,67.0,63.0,62.0,55.0,62.0,67.0,54.0,51.0,44.0,55.0,46.0,46.0,36.0,40.0,36.0,50.0,74.0,55.0,65.0,63.0,68.0,76.0,69.0,83.0,87.0,77.0,87.0,87.0,86.0,92.0,77.0,81.0,75.0,83.0,66.0,70.0,86.0,57.0,63.0,60.0,66.0,57.0,64.0,60.0,63.0,67.0,67.0,72.0,91.0,73.0,72.0,93.0,86.0,93.0,91.0,81.0,104.0,83.0,74.0,83.0,67.0,63.0,70.0,58.0,75.0,54.0,69.0,51.0,54.0,52.0,56.0,45.0,42.0,30.0,23.0,27.0,23.0,21.0,18.0,18.0,7.0,15.0,16.0,9.0,8.0,6.0,4.0,12.0 F81675,32.0,37.0,40.0,42.0,42.0,57.0,45.0,48.0,36.0,30.0,33.0,31.0,35.0,26.0,27.0,27.0,20.0,32.0,33.0,20.0,13.0,23.0,14.0,22.0,25.0,30.0,27.0,48.0,38.0,38.0,40.0,44.0,58.0,48.0,52.0,56.0,55.0,51.0,52.0,45.0,49.0,59.0,41.0,37.0,44.0,38.0,30.0,25.0,29.0,34.0,25.0,35.0,36.0,29.0,36.0,32.0,38.0,35.0,34.0,33.0,36.0,29.0,36.0,37.0,29.0,29.0,37.0,20.0,19.0,24.0,17.0,24.0,15.0,18.0,17.0,17.0,21.0,26.0,20.0,16.0,19.0,10.0,8.0,7.0,9.0,7.0,6.0,5.0,9.0,6.0,5.0,4.0,2.0,1.0,2.0,6.0 F81683,42.0,53.0,47.0,59.0,56.0,65.0,64.0,72.0,51.0,71.0,59.0,70.0,65.0,70.0,71.0,78.0,75.0,70.0,70.0,52.0,64.0,57.0,44.0,52.0,59.0,74.0,62.0,63.0,90.0,72.0,81.0,80.0,72.0,77.0,83.0,103.0,73.0,77.0,83.0,86.0,90.0,69.0,71.0,62.0,72.0,85.0,68.0,71.0,79.0,69.0,75.0,78.0,70.0,77.0,74.0,66.0,77.0,84.0,68.0,66.0,81.0,63.0,78.0,65.0,36.0,57.0,47.0,46.0,38.0,38.0,33.0,37.0,32.0,30.0,35.0,29.0,38.0,40.0,30.0,27.0,25.0,22.0,15.0,18.0,16.0,15.0,23.0,12.0,13.0,10.0,12.0,12.0,6.0,5.0,9.0,10.0 F81690,29.0,30.0,46.0,34.0,45.0,42.0,30.0,28.0,31.0,24.0,27.0,32.0,31.0,26.0,39.0,21.0,29.0,30.0,31.0,17.0,20.0,24.0,30.0,25.0,23.0,23.0,34.0,33.0,37.0,43.0,60.0,32.0,44.0,46.0,48.0,46.0,47.0,50.0,36.0,31.0,28.0,29.0,37.0,37.0,31.0,41.0,33.0,29.0,28.0,25.0,33.0,24.0,31.0,35.0,41.0,42.0,46.0,40.0,47.0,39.0,42.0,38.0,46.0,42.0,51.0,43.0,45.0,44.0,41.0,28.0,40.0,39.0,34.0,25.0,27.0,27.0,28.0,36.0,40.0,26.0,22.0,25.0,22.0,12.0,13.0,14.0,12.0,11.0,12.0,10.0,7.0,7.0,2.0,6.0,3.0,3.0 F81696,15.0,19.0,13.0,17.0,17.0,10.0,13.0,7.0,14.0,15.0,15.0,12.0,14.0,19.0,12.0,12.0,9.0,18.0,12.0,10.0,9.0,6.0,11.0,9.0,10.0,14.0,12.0,14.0,11.0,13.0,13.0,24.0,19.0,13.0,17.0,29.0,23.0,13.0,18.0,22.0,16.0,25.0,20.0,12.0,29.0,13.0,12.0,14.0,20.0,11.0,6.0,10.0,22.0,18.0,15.0,19.0,20.0,15.0,22.0,16.0,22.0,18.0,23.0,23.0,12.0,17.0,24.0,24.0,16.0,12.0,23.0,19.0,21.0,7.0,15.0,20.0,20.0,24.0,14.0,9.0,19.0,13.0,6.0,12.0,10.0,5.0,6.0,7.0,5.0,6.0,,3.0,1.0,2.0,,1.0 F81697,2.0,12.0,9.0,12.0,15.0,21.0,14.0,16.0,18.0,15.0,22.0,15.0,11.0,16.0,13.0,14.0,14.0,20.0,16.0,16.0,15.0,8.0,12.0,10.0,15.0,11.0,11.0,16.0,16.0,16.0,11.0,10.0,19.0,20.0,15.0,19.0,21.0,18.0,20.0,24.0,20.0,18.0,16.0,16.0,17.0,10.0,10.0,20.0,21.0,14.0,22.0,14.0,16.0,12.0,23.0,17.0,25.0,19.0,31.0,28.0,13.0,19.0,19.0,19.0,17.0,14.0,11.0,15.0,15.0,22.0,15.0,12.0,16.0,16.0,22.0,20.0,15.0,28.0,21.0,10.0,14.0,16.0,15.0,10.0,9.0,6.0,5.0,4.0,7.0,7.0,3.0,2.0,3.0,1.0,2.0,2.0 F81700,13.0,10.0,11.0,18.0,20.0,17.0,15.0,17.0,25.0,19.0,24.0,20.0,22.0,29.0,45.0,29.0,28.0,12.0,25.0,15.0,19.0,16.0,16.0,13.0,14.0,16.0,19.0,21.0,9.0,22.0,17.0,27.0,24.0,22.0,29.0,24.0,26.0,35.0,31.0,23.0,30.0,26.0,21.0,30.0,19.0,20.0,22.0,23.0,25.0,26.0,31.0,19.0,28.0,23.0,28.0,30.0,24.0,29.0,28.0,32.0,40.0,24.0,26.0,34.0,26.0,30.0,27.0,32.0,30.0,20.0,23.0,22.0,28.0,16.0,23.0,26.0,17.0,15.0,28.0,6.0,16.0,17.0,10.0,18.0,8.0,7.0,15.0,7.0,1.0,9.0,1.0,8.0,6.0,,4.0,2.0 F81704,15.0,20.0,22.0,26.0,26.0,20.0,29.0,29.0,26.0,21.0,29.0,21.0,16.0,22.0,19.0,24.0,19.0,24.0,19.0,18.0,17.0,18.0,22.0,18.0,24.0,21.0,25.0,25.0,24.0,26.0,22.0,25.0,29.0,29.0,38.0,33.0,28.0,25.0,30.0,29.0,24.0,20.0,31.0,20.0,28.0,31.0,31.0,21.0,36.0,24.0,28.0,28.0,25.0,27.0,30.0,23.0,42.0,29.0,25.0,33.0,26.0,25.0,27.0,39.0,30.0,18.0,23.0,18.0,16.0,14.0,13.0,14.0,12.0,9.0,18.0,12.0,9.0,16.0,21.0,10.0,10.0,12.0,7.0,3.0,,5.0,6.0,4.0,2.0,5.0,1.0,,1.0,,1.0,3.0 F81707,55.0,45.0,39.0,42.0,52.0,56.0,59.0,49.0,54.0,44.0,51.0,54.0,39.0,41.0,30.0,41.0,43.0,45.0,40.0,32.0,25.0,34.0,28.0,37.0,30.0,40.0,45.0,48.0,38.0,41.0,58.0,76.0,54.0,78.0,58.0,74.0,53.0,74.0,53.0,49.0,51.0,54.0,29.0,34.0,46.0,31.0,28.0,35.0,15.0,35.0,26.0,30.0,23.0,30.0,23.0,25.0,31.0,25.0,29.0,18.0,24.0,28.0,18.0,21.0,16.0,16.0,20.0,13.0,17.0,14.0,22.0,10.0,14.0,13.0,12.0,17.0,12.0,12.0,7.0,7.0,10.0,1.0,2.0,7.0,4.0,3.0,1.0,5.0,2.0,,2.0,,1.0,,1.0, F81708,57.0,88.0,80.0,85.0,83.0,86.0,76.0,77.0,72.0,106.0,80.0,100.0,102.0,89.0,101.0,82.0,86.0,103.0,89.0,80.0,60.0,73.0,70.0,78.0,81.0,81.0,77.0,83.0,82.0,84.0,81.0,95.0,91.0,102.0,111.0,93.0,95.0,117.0,93.0,88.0,101.0,88.0,87.0,97.0,99.0,73.0,79.0,65.0,69.0,71.0,63.0,68.0,71.0,60.0,77.0,54.0,67.0,69.0,57.0,74.0,63.0,57.0,48.0,56.0,57.0,36.0,43.0,43.0,66.0,33.0,41.0,31.0,34.0,36.0,23.0,32.0,27.0,37.0,49.0,26.0,24.0,20.0,23.0,16.0,12.0,18.0,15.0,8.0,8.0,9.0,5.0,6.0,5.0,7.0,5.0,6.0 F81711,30.0,36.0,27.0,26.0,35.0,15.0,15.0,25.0,30.0,23.0,30.0,22.0,19.0,13.0,24.0,29.0,8.0,14.0,18.0,17.0,22.0,20.0,12.0,19.0,19.0,18.0,30.0,36.0,31.0,43.0,53.0,49.0,46.0,30.0,32.0,42.0,36.0,43.0,28.0,39.0,40.0,28.0,27.0,28.0,29.0,27.0,23.0,19.0,19.0,13.0,20.0,11.0,13.0,11.0,17.0,16.0,25.0,23.0,21.0,23.0,15.0,20.0,11.0,15.0,11.0,17.0,10.0,14.0,8.0,15.0,10.0,16.0,10.0,6.0,8.0,8.0,6.0,6.0,7.0,7.0,8.0,8.0,10.0,6.0,3.0,7.0,3.0,3.0,3.0,3.0,3.0,5.0,,,,1.0 F81713,4.0,6.0,5.0,8.0,8.0,4.0,7.0,13.0,10.0,16.0,9.0,15.0,10.0,14.0,21.0,27.0,25.0,20.0,19.0,24.0,22.0,18.0,13.0,10.0,13.0,15.0,18.0,8.0,13.0,9.0,12.0,11.0,10.0,8.0,10.0,10.0,18.0,11.0,8.0,19.0,17.0,22.0,20.0,12.0,11.0,16.0,25.0,18.0,24.0,20.0,18.0,17.0,19.0,34.0,24.0,24.0,26.0,22.0,28.0,20.0,24.0,22.0,22.0,16.0,15.0,18.0,13.0,18.0,4.0,8.0,10.0,13.0,12.0,13.0,12.0,25.0,13.0,21.0,11.0,8.0,5.0,15.0,6.0,7.0,6.0,6.0,7.0,1.0,2.0,4.0,2.0,5.0,3.0,3.0,1.0,2.0 F81729,10.0,23.0,16.0,15.0,12.0,26.0,27.0,24.0,18.0,34.0,29.0,34.0,22.0,31.0,20.0,22.0,20.0,21.0,16.0,23.0,17.0,16.0,23.0,20.0,11.0,17.0,16.0,24.0,24.0,22.0,23.0,20.0,26.0,30.0,23.0,32.0,30.0,31.0,20.0,35.0,28.0,25.0,23.0,26.0,23.0,21.0,30.0,22.0,32.0,29.0,24.0,31.0,23.0,25.0,29.0,26.0,26.0,21.0,23.0,29.0,14.0,19.0,19.0,18.0,23.0,21.0,17.0,21.0,24.0,7.0,10.0,15.0,15.0,13.0,13.0,12.0,19.0,16.0,12.0,9.0,12.0,4.0,6.0,2.0,5.0,5.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,1.0,2.0,3.0 F81730,25.0,27.0,27.0,35.0,28.0,30.0,23.0,42.0,29.0,37.0,28.0,32.0,40.0,40.0,41.0,45.0,48.0,44.0,51.0,26.0,29.0,33.0,33.0,34.0,34.0,25.0,28.0,29.0,28.0,27.0,34.0,24.0,32.0,31.0,48.0,34.0,34.0,41.0,42.0,45.0,48.0,39.0,41.0,30.0,34.0,44.0,40.0,45.0,40.0,44.0,54.0,57.0,55.0,58.0,60.0,55.0,67.0,72.0,61.0,47.0,49.0,52.0,60.0,45.0,55.0,38.0,49.0,59.0,38.0,42.0,33.0,48.0,50.0,36.0,41.0,44.0,54.0,51.0,61.0,30.0,33.0,27.0,34.0,25.0,28.0,28.0,16.0,17.0,8.0,14.0,10.0,9.0,10.0,8.0,4.0,12.0 F81732,21.0,40.0,47.0,36.0,34.0,41.0,36.0,48.0,47.0,43.0,49.0,41.0,40.0,36.0,33.0,32.0,29.0,44.0,33.0,22.0,32.0,31.0,32.0,18.0,33.0,34.0,41.0,33.0,43.0,25.0,35.0,43.0,45.0,37.0,50.0,50.0,44.0,65.0,52.0,42.0,49.0,54.0,56.0,48.0,44.0,52.0,35.0,49.0,33.0,42.0,53.0,33.0,45.0,51.0,39.0,44.0,40.0,45.0,41.0,52.0,37.0,36.0,31.0,42.0,32.0,44.0,37.0,39.0,31.0,33.0,33.0,25.0,35.0,40.0,39.0,37.0,45.0,43.0,39.0,24.0,37.0,29.0,30.0,21.0,29.0,20.0,21.0,11.0,16.0,5.0,10.0,13.0,3.0,9.0,2.0,14.0 F81737,18.0,10.0,14.0,19.0,19.0,20.0,22.0,21.0,17.0,22.0,18.0,22.0,14.0,21.0,14.0,23.0,21.0,14.0,19.0,12.0,12.0,10.0,16.0,21.0,16.0,14.0,16.0,32.0,18.0,28.0,25.0,28.0,31.0,24.0,21.0,21.0,15.0,21.0,19.0,22.0,26.0,23.0,23.0,20.0,30.0,24.0,15.0,19.0,19.0,22.0,24.0,25.0,18.0,22.0,26.0,22.0,23.0,19.0,28.0,18.0,18.0,22.0,20.0,21.0,16.0,12.0,13.0,18.0,12.0,14.0,9.0,16.0,9.0,8.0,14.0,9.0,8.0,8.0,15.0,11.0,9.0,5.0,10.0,6.0,3.0,2.0,9.0,,2.0,4.0,2.0,1.0,,1.0,2.0,2.0 F81739,42.0,30.0,38.0,31.0,30.0,28.0,37.0,39.0,31.0,41.0,32.0,42.0,34.0,36.0,26.0,41.0,32.0,28.0,42.0,30.0,28.0,36.0,33.0,24.0,29.0,40.0,28.0,42.0,44.0,42.0,30.0,33.0,53.0,35.0,46.0,50.0,34.0,37.0,45.0,37.0,34.0,47.0,27.0,43.0,29.0,35.0,35.0,38.0,25.0,47.0,38.0,38.0,34.0,35.0,42.0,62.0,50.0,33.0,50.0,52.0,54.0,57.0,49.0,35.0,45.0,48.0,48.0,39.0,50.0,59.0,46.0,38.0,46.0,54.0,43.0,46.0,52.0,52.0,52.0,47.0,42.0,34.0,47.0,31.0,37.0,25.0,26.0,23.0,15.0,15.0,15.0,6.0,8.0,6.0,4.0,19.0 F81740,18.0,34.0,20.0,29.0,30.0,30.0,26.0,28.0,29.0,31.0,31.0,30.0,36.0,29.0,31.0,43.0,31.0,29.0,26.0,24.0,30.0,31.0,19.0,37.0,30.0,35.0,40.0,39.0,36.0,31.0,39.0,41.0,31.0,33.0,30.0,34.0,39.0,33.0,37.0,18.0,38.0,40.0,31.0,39.0,32.0,41.0,31.0,29.0,31.0,42.0,31.0,31.0,35.0,43.0,54.0,41.0,45.0,38.0,39.0,44.0,32.0,43.0,37.0,44.0,42.0,34.0,44.0,40.0,35.0,41.0,50.0,55.0,44.0,54.0,56.0,57.0,57.0,55.0,68.0,54.0,46.0,48.0,38.0,28.0,25.0,24.0,32.0,20.0,15.0,13.0,13.0,14.0,6.0,4.0,5.0,9.0 F81744,5.0,13.0,8.0,9.0,11.0,16.0,9.0,12.0,21.0,18.0,11.0,11.0,15.0,14.0,22.0,11.0,21.0,20.0,19.0,7.0,16.0,11.0,11.0,7.0,12.0,7.0,14.0,12.0,6.0,20.0,10.0,19.0,12.0,14.0,20.0,19.0,12.0,16.0,12.0,16.0,12.0,13.0,19.0,23.0,18.0,15.0,18.0,19.0,17.0,16.0,21.0,15.0,14.0,17.0,16.0,16.0,26.0,21.0,13.0,20.0,14.0,26.0,19.0,15.0,20.0,24.0,21.0,19.0,24.0,21.0,13.0,12.0,17.0,11.0,20.0,12.0,21.0,24.0,18.0,19.0,12.0,15.0,8.0,7.0,5.0,8.0,6.0,6.0,4.0,2.0,7.0,2.0,,3.0,1.0,5.0 F81751,11.0,16.0,20.0,21.0,17.0,25.0,26.0,32.0,23.0,41.0,25.0,32.0,44.0,29.0,35.0,22.0,31.0,21.0,29.0,15.0,18.0,20.0,21.0,23.0,13.0,21.0,28.0,25.0,20.0,27.0,21.0,25.0,25.0,29.0,29.0,29.0,32.0,34.0,32.0,25.0,25.0,32.0,28.0,29.0,34.0,38.0,34.0,18.0,25.0,27.0,21.0,31.0,26.0,25.0,36.0,36.0,42.0,40.0,42.0,29.0,22.0,28.0,26.0,28.0,28.0,28.0,24.0,28.0,25.0,26.0,20.0,26.0,23.0,24.0,15.0,25.0,16.0,21.0,20.0,10.0,16.0,11.0,7.0,12.0,3.0,12.0,9.0,5.0,2.0,6.0,2.0,1.0,1.0,2.0,,3.0 Y00033,42.0,51.0,50.0,61.0,58.0,51.0,42.0,54.0,59.0,62.0,52.0,44.0,51.0,47.0,62.0,43.0,59.0,41.0,40.0,48.0,27.0,34.0,26.0,32.0,34.0,34.0,49.0,51.0,42.0,58.0,55.0,63.0,75.0,75.0,59.0,74.0,72.0,79.0,51.0,58.0,54.0,81.0,47.0,67.0,54.0,48.0,42.0,47.0,48.0,63.0,51.0,46.0,35.0,48.0,33.0,41.0,31.0,27.0,26.0,31.0,26.0,25.0,16.0,25.0,25.0,21.0,18.0,11.0,17.0,23.0,15.0,15.0,5.0,7.0,11.0,10.0,7.0,12.0,8.0,3.0,4.0,6.0,3.0,2.0,3.0,2.0,1.0,4.0,2.0,2.0,1.0,1.0,,,, Y00293,39.0,40.0,48.0,49.0,38.0,36.0,57.0,51.0,61.0,39.0,48.0,46.0,61.0,58.0,46.0,53.0,53.0,59.0,51.0,44.0,37.0,38.0,30.0,36.0,36.0,36.0,31.0,49.0,46.0,43.0,48.0,47.0,55.0,55.0,62.0,34.0,65.0,64.0,62.0,56.0,59.0,48.0,62.0,52.0,61.0,58.0,50.0,61.0,55.0,67.0,63.0,57.0,63.0,59.0,70.0,61.0,93.0,79.0,87.0,83.0,65.0,68.0,82.0,75.0,57.0,50.0,65.0,57.0,64.0,60.0,66.0,60.0,60.0,49.0,50.0,58.0,47.0,71.0,45.0,40.0,40.0,46.0,40.0,33.0,25.0,27.0,20.0,20.0,14.0,18.0,15.0,14.0,3.0,7.0,8.0,11.0 Y00469,53.0,70.0,60.0,86.0,74.0,73.0,75.0,80.0,59.0,87.0,80.0,84.0,84.0,73.0,73.0,69.0,64.0,73.0,62.0,74.0,62.0,54.0,80.0,62.0,43.0,72.0,76.0,73.0,75.0,72.0,63.0,88.0,92.0,98.0,100.0,88.0,98.0,99.0,102.0,84.0,81.0,84.0,81.0,72.0,77.0,87.0,62.0,45.0,73.0,62.0,60.0,63.0,72.0,84.0,75.0,69.0,73.0,79.0,71.0,66.0,71.0,81.0,75.0,71.0,78.0,70.0,65.0,63.0,57.0,50.0,63.0,58.0,53.0,61.0,71.0,47.0,59.0,60.0,64.0,45.0,39.0,33.0,40.0,21.0,34.0,19.0,32.0,19.0,20.0,10.0,7.0,8.0,14.0,9.0,11.0,13.0 Y00758,14.0,17.0,22.0,13.0,19.0,20.0,16.0,22.0,16.0,18.0,20.0,22.0,15.0,24.0,16.0,21.0,15.0,15.0,13.0,18.0,17.0,15.0,15.0,18.0,12.0,8.0,7.0,19.0,21.0,21.0,18.0,17.0,23.0,14.0,23.0,24.0,23.0,19.0,16.0,24.0,19.0,22.0,14.0,20.0,21.0,12.0,22.0,14.0,22.0,12.0,17.0,16.0,12.0,15.0,16.0,12.0,13.0,9.0,20.0,15.0,17.0,11.0,4.0,11.0,12.0,4.0,11.0,12.0,10.0,9.0,9.0,10.0,12.0,9.0,4.0,5.0,5.0,12.0,5.0,6.0,8.0,5.0,6.0,9.0,3.0,1.0,1.0,2.0,2.0,,5.0,1.0,,1.0,,1.0 Y00999,53.0,69.0,92.0,76.0,60.0,71.0,92.0,89.0,87.0,101.0,94.0,98.0,79.0,90.0,106.0,99.0,72.0,92.0,82.0,66.0,65.0,58.0,48.0,52.0,77.0,63.0,70.0,81.0,74.0,91.0,94.0,128.0,124.0,98.0,104.0,132.0,125.0,116.0,110.0,128.0,129.0,117.0,88.0,70.0,95.0,91.0,86.0,82.0,83.0,72.0,72.0,73.0,56.0,66.0,49.0,57.0,76.0,56.0,63.0,53.0,64.0,49.0,48.0,48.0,46.0,42.0,38.0,36.0,37.0,21.0,21.0,26.0,25.0,19.0,30.0,14.0,23.0,23.0,25.0,15.0,12.0,14.0,9.0,11.0,8.0,6.0,6.0,8.0,7.0,4.0,5.0,6.0,3.0,3.0,3.0,3.0 Y02177,24.0,36.0,32.0,49.0,46.0,50.0,35.0,43.0,44.0,58.0,51.0,55.0,43.0,49.0,51.0,46.0,41.0,34.0,35.0,35.0,30.0,37.0,26.0,33.0,47.0,51.0,43.0,41.0,48.0,62.0,71.0,61.0,61.0,72.0,62.0,69.0,58.0,71.0,59.0,60.0,69.0,57.0,54.0,54.0,56.0,47.0,60.0,36.0,54.0,49.0,46.0,41.0,30.0,39.0,39.0,37.0,40.0,33.0,40.0,39.0,29.0,34.0,36.0,24.0,24.0,28.0,26.0,20.0,17.0,22.0,16.0,26.0,24.0,25.0,18.0,10.0,16.0,16.0,12.0,9.0,13.0,9.0,6.0,7.0,6.0,8.0,5.0,1.0,6.0,2.0,2.0,3.0,6.0,3.0,3.0,4.0 Y02611,108.0,129.0,145.0,145.0,111.0,130.0,147.0,147.0,147.0,133.0,141.0,138.0,129.0,118.0,111.0,128.0,110.0,103.0,71.0,57.0,62.0,61.0,45.0,75.0,88.0,105.0,109.0,120.0,107.0,136.0,146.0,171.0,165.0,186.0,181.0,208.0,180.0,196.0,199.0,191.0,177.0,168.0,169.0,173.0,167.0,140.0,139.0,122.0,112.0,110.0,73.0,113.0,71.0,92.0,80.0,78.0,68.0,78.0,79.0,53.0,51.0,64.0,43.0,51.0,35.0,42.0,43.0,37.0,43.0,37.0,37.0,34.0,36.0,35.0,30.0,35.0,27.0,23.0,24.0,21.0,10.0,21.0,16.0,17.0,10.0,14.0,10.0,14.0,4.0,12.0,11.0,4.0,7.0,3.0,2.0,13.0 Y02707,24.0,28.0,33.0,33.0,38.0,41.0,40.0,55.0,49.0,64.0,61.0,44.0,51.0,60.0,64.0,70.0,60.0,55.0,47.0,49.0,41.0,42.0,36.0,35.0,50.0,48.0,40.0,41.0,40.0,36.0,42.0,27.0,46.0,45.0,58.0,37.0,49.0,54.0,63.0,74.0,64.0,55.0,51.0,51.0,56.0,53.0,51.0,47.0,44.0,42.0,42.0,38.0,36.0,54.0,47.0,43.0,46.0,40.0,43.0,39.0,45.0,43.0,32.0,41.0,30.0,25.0,33.0,22.0,29.0,24.0,18.0,28.0,20.0,26.0,21.0,15.0,24.0,22.0,25.0,15.0,20.0,10.0,9.0,10.0,9.0,14.0,6.0,4.0,6.0,7.0,3.0,2.0,3.0,6.0,3.0,8.0 Y02807,78.0,123.0,75.0,112.0,110.0,119.0,116.0,121.0,119.0,116.0,134.0,121.0,112.0,88.0,73.0,78.0,84.0,85.0,68.0,70.0,54.0,60.0,48.0,58.0,65.0,76.0,82.0,107.0,121.0,120.0,125.0,131.0,131.0,155.0,163.0,176.0,165.0,150.0,170.0,144.0,151.0,157.0,110.0,105.0,109.0,107.0,96.0,87.0,78.0,73.0,81.0,54.0,60.0,46.0,64.0,39.0,44.0,37.0,59.0,43.0,47.0,31.0,43.0,29.0,32.0,27.0,16.0,23.0,28.0,19.0,15.0,16.0,10.0,12.0,15.0,11.0,15.0,4.0,10.0,5.0,5.0,5.0,6.0,6.0,2.0,3.0,,1.0,3.0,1.0,1.0,,1.0,,1.0, Y03052,93.0,107.0,86.0,110.0,106.0,119.0,117.0,118.0,115.0,103.0,95.0,108.0,77.0,86.0,81.0,79.0,94.0,67.0,76.0,57.0,68.0,66.0,62.0,82.0,73.0,84.0,78.0,74.0,103.0,124.0,116.0,109.0,119.0,141.0,132.0,151.0,143.0,141.0,121.0,100.0,122.0,121.0,104.0,103.0,93.0,89.0,87.0,82.0,95.0,90.0,103.0,87.0,109.0,106.0,88.0,94.0,99.0,83.0,88.0,112.0,93.0,83.0,72.0,82.0,81.0,65.0,74.0,67.0,64.0,53.0,64.0,52.0,53.0,47.0,47.0,52.0,46.0,60.0,61.0,41.0,35.0,42.0,31.0,25.0,23.0,17.0,18.0,17.0,9.0,18.0,10.0,8.0,4.0,4.0,4.0,14.0 Y05023,28.0,32.0,33.0,28.0,21.0,33.0,40.0,31.0,38.0,32.0,34.0,38.0,20.0,30.0,19.0,29.0,25.0,29.0,22.0,24.0,27.0,9.0,19.0,30.0,20.0,25.0,25.0,44.0,45.0,35.0,55.0,43.0,40.0,44.0,33.0,42.0,38.0,48.0,39.0,43.0,28.0,33.0,35.0,37.0,32.0,28.0,27.0,24.0,24.0,24.0,23.0,32.0,27.0,35.0,28.0,29.0,31.0,21.0,36.0,42.0,31.0,27.0,27.0,29.0,28.0,27.0,29.0,32.0,20.0,29.0,25.0,33.0,15.0,24.0,20.0,22.0,24.0,30.0,24.0,12.0,18.0,12.0,13.0,12.0,16.0,11.0,9.0,5.0,5.0,10.0,6.0,9.0,4.0,8.0,4.0,3.0 Y06389,3.0,3.0,2.0,,1.0,2.0,1.0,4.0,1.0,2.0,1.0,1.0,1.0,1.0,2.0,1.0,2.0,,,1.0,1.0,1.0,,1.0,,1.0,2.0,2.0,,1.0,2.0,1.0,2.0,,3.0,1.0,,6.0,4.0,2.0,5.0,,2.0,,1.0,2.0,3.0,,1.0,4.0,2.0,1.0,,,,,1.0,2.0,,,,2.0,,,,,1.0,,,1.0,,1.0,2.0,,1.0,1.0,,1.0,,1.0,,,1.0,1.0,2.0,,1.0,,2.0,3.0,2.0,2.0,,1.0,,1.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 E81002,37.0,38.0,45.0,74.0,59.0,70.0,63.0,83.0,70.0,79.0,86.0,84.0,75.0,65.0,62.0,62.0,64.0,69.0,50.0,42.0,56.0,41.0,48.0,41.0,39.0,45.0,58.0,52.0,55.0,42.0,58.0,56.0,66.0,80.0,80.0,60.0,80.0,86.0,90.0,87.0,77.0,76.0,65.0,91.0,94.0,72.0,66.0,59.0,78.0,55.0,85.0,66.0,83.0,88.0,77.0,70.0,65.0,68.0,74.0,83.0,74.0,68.0,67.0,54.0,77.0,61.0,64.0,62.0,45.0,49.0,64.0,57.0,48.0,54.0,39.0,45.0,41.0,52.0,31.0,29.0,44.0,31.0,17.0,21.0,20.0,23.0,25.0,19.0,22.0,11.0,11.0,9.0,4.0,10.0,8.0,11.0 E81003,139.0,124.0,154.0,149.0,127.0,137.0,103.0,126.0,152.0,119.0,124.0,124.0,146.0,127.0,114.0,110.0,104.0,100.0,95.0,77.0,76.0,70.0,76.0,70.0,85.0,105.0,96.0,115.0,118.0,166.0,157.0,163.0,172.0,167.0,181.0,212.0,190.0,186.0,204.0,177.0,153.0,173.0,140.0,157.0,165.0,137.0,144.0,114.0,105.0,121.0,122.0,117.0,136.0,122.0,120.0,122.0,128.0,126.0,117.0,128.0,136.0,119.0,135.0,115.0,107.0,112.0,99.0,108.0,89.0,106.0,97.0,114.0,111.0,108.0,104.0,116.0,115.0,105.0,112.0,69.0,87.0,78.0,67.0,59.0,35.0,59.0,48.0,40.0,39.0,33.0,22.0,28.0,18.0,15.0,10.0,23.0 E81004,57.0,65.0,70.0,73.0,70.0,76.0,89.0,68.0,71.0,64.0,66.0,66.0,79.0,66.0,76.0,72.0,71.0,73.0,47.0,57.0,43.0,41.0,46.0,64.0,51.0,46.0,51.0,70.0,56.0,87.0,78.0,90.0,105.0,88.0,125.0,106.0,117.0,108.0,100.0,101.0,93.0,87.0,91.0,104.0,91.0,76.0,73.0,63.0,82.0,71.0,77.0,65.0,67.0,69.0,58.0,61.0,61.0,66.0,79.0,71.0,73.0,82.0,75.0,73.0,86.0,64.0,68.0,66.0,53.0,62.0,64.0,47.0,42.0,60.0,57.0,47.0,61.0,59.0,57.0,44.0,46.0,42.0,39.0,28.0,27.0,35.0,33.0,19.0,29.0,16.0,17.0,18.0,15.0,8.0,8.0,26.0 E81005,55.0,73.0,66.0,57.0,71.0,74.0,82.0,76.0,74.0,67.0,68.0,80.0,66.0,77.0,75.0,83.0,64.0,75.0,70.0,70.0,85.0,63.0,75.0,70.0,65.0,84.0,72.0,79.0,70.0,85.0,83.0,94.0,81.0,69.0,80.0,73.0,90.0,75.0,87.0,68.0,77.0,78.0,95.0,65.0,80.0,69.0,64.0,47.0,58.0,61.0,58.0,56.0,53.0,53.0,52.0,47.0,49.0,49.0,41.0,53.0,52.0,47.0,40.0,45.0,37.0,32.0,37.0,48.0,32.0,40.0,35.0,26.0,39.0,28.0,36.0,30.0,24.0,22.0,34.0,18.0,17.0,27.0,22.0,26.0,16.0,21.0,12.0,13.0,15.0,7.0,6.0,10.0,11.0,2.0,2.0,9.0 E81006,38.0,50.0,44.0,51.0,43.0,53.0,45.0,49.0,59.0,49.0,60.0,59.0,59.0,52.0,58.0,66.0,53.0,51.0,65.0,48.0,40.0,54.0,41.0,45.0,61.0,58.0,62.0,54.0,61.0,54.0,68.0,70.0,66.0,56.0,52.0,61.0,80.0,81.0,54.0,69.0,76.0,71.0,65.0,53.0,68.0,53.0,64.0,59.0,56.0,51.0,56.0,54.0,47.0,55.0,63.0,55.0,76.0,65.0,59.0,56.0,58.0,84.0,61.0,47.0,57.0,49.0,58.0,42.0,45.0,44.0,38.0,39.0,36.0,31.0,48.0,46.0,37.0,29.0,34.0,36.0,30.0,29.0,39.0,32.0,11.0,23.0,21.0,12.0,19.0,20.0,11.0,12.0,13.0,4.0,7.0,12.0 E81007,23.0,28.0,23.0,25.0,26.0,27.0,19.0,35.0,25.0,31.0,45.0,30.0,41.0,44.0,24.0,49.0,48.0,36.0,38.0,26.0,29.0,29.0,34.0,21.0,36.0,38.0,23.0,32.0,32.0,28.0,28.0,21.0,34.0,29.0,38.0,23.0,39.0,31.0,39.0,35.0,45.0,31.0,36.0,53.0,39.0,39.0,39.0,36.0,47.0,56.0,49.0,58.0,54.0,54.0,64.0,57.0,54.0,55.0,54.0,47.0,60.0,61.0,55.0,60.0,43.0,41.0,40.0,45.0,51.0,38.0,46.0,42.0,37.0,42.0,25.0,40.0,32.0,42.0,42.0,21.0,42.0,33.0,31.0,22.0,25.0,12.0,22.0,14.0,11.0,17.0,5.0,5.0,7.0,8.0,4.0,10.0 E81008,48.0,50.0,57.0,68.0,62.0,70.0,73.0,77.0,75.0,75.0,84.0,71.0,77.0,85.0,90.0,61.0,92.0,89.0,105.0,64.0,48.0,73.0,62.0,75.0,74.0,57.0,86.0,83.0,68.0,78.0,80.0,62.0,77.0,73.0,71.0,79.0,91.0,98.0,76.0,118.0,103.0,105.0,94.0,86.0,81.0,92.0,80.0,84.0,79.0,80.0,86.0,82.0,79.0,62.0,86.0,71.0,94.0,78.0,67.0,74.0,92.0,83.0,81.0,73.0,69.0,62.0,73.0,57.0,51.0,57.0,48.0,45.0,43.0,40.0,46.0,46.0,38.0,52.0,36.0,36.0,27.0,27.0,23.0,26.0,24.0,27.0,26.0,19.0,22.0,24.0,18.0,13.0,9.0,8.0,7.0,15.0 E81009,45.0,61.0,47.0,63.0,65.0,62.0,72.0,66.0,72.0,77.0,70.0,75.0,61.0,77.0,79.0,75.0,74.0,64.0,75.0,55.0,51.0,57.0,50.0,68.0,57.0,66.0,70.0,69.0,72.0,76.0,83.0,87.0,79.0,99.0,93.0,94.0,91.0,113.0,87.0,89.0,92.0,76.0,70.0,80.0,91.0,86.0,73.0,74.0,74.0,74.0,67.0,66.0,79.0,67.0,72.0,75.0,94.0,91.0,88.0,90.0,98.0,83.0,77.0,76.0,79.0,69.0,77.0,62.0,62.0,68.0,49.0,53.0,55.0,64.0,68.0,53.0,65.0,72.0,58.0,47.0,54.0,58.0,43.0,32.0,28.0,33.0,47.0,32.0,22.0,28.0,20.0,14.0,11.0,10.0,7.0,21.0 E81010,62.0,63.0,54.0,52.0,60.0,63.0,68.0,57.0,63.0,81.0,73.0,55.0,60.0,64.0,53.0,82.0,68.0,65.0,58.0,40.0,49.0,62.0,51.0,64.0,67.0,68.0,83.0,95.0,76.0,83.0,69.0,82.0,88.0,64.0,66.0,67.0,78.0,91.0,67.0,65.0,79.0,70.0,77.0,56.0,58.0,59.0,56.0,53.0,67.0,39.0,56.0,56.0,48.0,71.0,59.0,45.0,47.0,52.0,36.0,48.0,48.0,48.0,40.0,48.0,50.0,44.0,36.0,28.0,26.0,31.0,29.0,18.0,27.0,33.0,25.0,29.0,29.0,28.0,28.0,15.0,32.0,19.0,26.0,17.0,17.0,21.0,20.0,12.0,18.0,17.0,6.0,7.0,4.0,5.0,3.0,4.0 E81012,65.0,50.0,67.0,72.0,76.0,68.0,61.0,74.0,70.0,79.0,68.0,76.0,79.0,74.0,76.0,70.0,69.0,55.0,63.0,60.0,50.0,52.0,42.0,58.0,57.0,72.0,71.0,67.0,60.0,61.0,76.0,96.0,83.0,82.0,80.0,76.0,99.0,93.0,87.0,82.0,77.0,77.0,71.0,61.0,82.0,98.0,83.0,64.0,76.0,67.0,79.0,86.0,74.0,97.0,117.0,84.0,93.0,99.0,76.0,95.0,101.0,92.0,94.0,95.0,83.0,96.0,95.0,83.0,74.0,80.0,70.0,70.0,82.0,62.0,77.0,87.0,82.0,88.0,83.0,67.0,50.0,53.0,52.0,28.0,34.0,39.0,23.0,26.0,20.0,16.0,21.0,14.0,11.0,15.0,6.0,21.0 E81013,69.0,58.0,73.0,88.0,79.0,54.0,74.0,81.0,84.0,77.0,72.0,96.0,88.0,69.0,78.0,78.0,79.0,75.0,90.0,67.0,80.0,70.0,85.0,115.0,129.0,136.0,150.0,189.0,172.0,147.0,173.0,127.0,158.0,161.0,141.0,152.0,125.0,127.0,144.0,125.0,106.0,128.0,102.0,113.0,91.0,110.0,101.0,97.0,71.0,89.0,70.0,65.0,71.0,72.0,80.0,74.0,86.0,86.0,90.0,75.0,89.0,96.0,99.0,92.0,73.0,70.0,66.0,67.0,73.0,66.0,38.0,49.0,37.0,44.0,42.0,39.0,46.0,44.0,48.0,25.0,37.0,18.0,24.0,20.0,13.0,28.0,14.0,21.0,10.0,12.0,17.0,9.0,13.0,5.0,3.0,13.0 E81014,123.0,142.0,129.0,126.0,127.0,145.0,131.0,122.0,124.0,134.0,115.0,114.0,129.0,100.0,108.0,105.0,119.0,86.0,94.0,88.0,91.0,80.0,75.0,99.0,118.0,131.0,128.0,115.0,155.0,162.0,166.0,170.0,168.0,200.0,183.0,174.0,184.0,206.0,181.0,192.0,175.0,169.0,133.0,163.0,129.0,117.0,113.0,120.0,112.0,94.0,97.0,87.0,84.0,83.0,104.0,90.0,92.0,102.0,99.0,78.0,105.0,79.0,89.0,80.0,99.0,83.0,88.0,67.0,63.0,54.0,59.0,61.0,57.0,55.0,61.0,56.0,48.0,60.0,58.0,42.0,33.0,25.0,22.0,24.0,15.0,20.0,25.0,17.0,20.0,24.0,9.0,13.0,6.0,8.0,7.0,15.0 E81015,51.0,75.0,63.0,70.0,54.0,61.0,79.0,62.0,65.0,57.0,87.0,56.0,87.0,82.0,97.0,84.0,84.0,93.0,68.0,65.0,78.0,63.0,72.0,72.0,67.0,73.0,83.0,70.0,83.0,83.0,80.0,83.0,106.0,99.0,90.0,88.0,78.0,84.0,89.0,87.0,102.0,99.0,94.0,85.0,87.0,83.0,91.0,95.0,95.0,94.0,101.0,95.0,89.0,102.0,124.0,94.0,89.0,105.0,109.0,124.0,114.0,110.0,106.0,110.0,107.0,100.0,111.0,76.0,90.0,86.0,82.0,65.0,70.0,58.0,67.0,75.0,56.0,93.0,71.0,52.0,53.0,60.0,48.0,40.0,23.0,27.0,25.0,18.0,27.0,25.0,20.0,11.0,17.0,7.0,7.0,24.0 E81016,32.0,43.0,46.0,35.0,29.0,38.0,40.0,41.0,38.0,45.0,43.0,45.0,65.0,52.0,48.0,52.0,56.0,51.0,51.0,49.0,28.0,38.0,46.0,38.0,39.0,55.0,61.0,44.0,44.0,43.0,41.0,46.0,49.0,51.0,37.0,50.0,49.0,35.0,56.0,37.0,50.0,49.0,46.0,55.0,48.0,35.0,41.0,29.0,32.0,33.0,30.0,50.0,36.0,31.0,36.0,39.0,38.0,26.0,36.0,36.0,32.0,29.0,20.0,26.0,21.0,33.0,24.0,16.0,19.0,25.0,19.0,14.0,11.0,18.0,19.0,14.0,21.0,16.0,13.0,10.0,7.0,15.0,8.0,9.0,10.0,9.0,11.0,9.0,9.0,6.0,6.0,4.0,2.0,6.0,2.0,4.0 E81018,58.0,61.0,59.0,84.0,64.0,70.0,71.0,91.0,77.0,83.0,80.0,78.0,88.0,95.0,89.0,90.0,80.0,102.0,91.0,75.0,82.0,82.0,103.0,91.0,89.0,96.0,107.0,97.0,90.0,84.0,94.0,64.0,80.0,79.0,68.0,69.0,76.0,85.0,98.0,79.0,89.0,81.0,102.0,88.0,88.0,71.0,90.0,72.0,73.0,85.0,59.0,84.0,85.0,80.0,57.0,82.0,79.0,78.0,71.0,52.0,68.0,60.0,73.0,68.0,54.0,60.0,56.0,69.0,60.0,45.0,48.0,42.0,37.0,42.0,27.0,36.0,36.0,40.0,43.0,37.0,39.0,42.0,24.0,24.0,25.0,27.0,18.0,23.0,22.0,14.0,8.0,13.0,7.0,6.0,9.0,15.0 E81019,104.0,162.0,145.0,119.0,147.0,157.0,150.0,159.0,157.0,152.0,145.0,161.0,168.0,168.0,170.0,172.0,163.0,164.0,138.0,161.0,108.0,139.0,128.0,142.0,143.0,142.0,183.0,171.0,195.0,194.0,184.0,178.0,186.0,184.0,193.0,217.0,213.0,210.0,197.0,199.0,188.0,199.0,165.0,169.0,205.0,175.0,148.0,139.0,152.0,160.0,148.0,139.0,167.0,130.0,134.0,148.0,121.0,121.0,112.0,121.0,129.0,109.0,122.0,100.0,109.0,84.0,93.0,85.0,70.0,74.0,69.0,82.0,57.0,65.0,74.0,52.0,58.0,66.0,53.0,47.0,39.0,53.0,27.0,30.0,26.0,32.0,25.0,20.0,20.0,20.0,22.0,14.0,11.0,4.0,11.0,22.0 E81021,156.0,130.0,141.0,159.0,160.0,159.0,192.0,160.0,176.0,155.0,180.0,167.0,188.0,183.0,184.0,177.0,175.0,154.0,138.0,112.0,114.0,99.0,126.0,138.0,136.0,131.0,146.0,145.0,176.0,180.0,165.0,184.0,192.0,183.0,183.0,190.0,202.0,230.0,200.0,208.0,196.0,190.0,198.0,182.0,190.0,160.0,163.0,164.0,154.0,124.0,128.0,117.0,145.0,136.0,121.0,125.0,108.0,117.0,103.0,100.0,88.0,113.0,104.0,102.0,82.0,75.0,93.0,75.0,78.0,59.0,67.0,58.0,56.0,77.0,59.0,64.0,64.0,50.0,46.0,47.0,44.0,32.0,40.0,28.0,28.0,30.0,31.0,22.0,27.0,17.0,14.0,13.0,12.0,7.0,5.0,18.0 E81022,111.0,97.0,117.0,118.0,111.0,125.0,141.0,108.0,135.0,140.0,190.0,132.0,139.0,131.0,137.0,157.0,114.0,132.0,96.0,78.0,76.0,81.0,67.0,78.0,90.0,86.0,99.0,110.0,104.0,100.0,136.0,114.0,137.0,141.0,144.0,172.0,164.0,152.0,170.0,156.0,157.0,163.0,154.0,172.0,169.0,167.0,149.0,134.0,114.0,138.0,145.0,143.0,151.0,138.0,141.0,136.0,131.0,129.0,117.0,131.0,122.0,106.0,103.0,90.0,107.0,101.0,75.0,91.0,78.0,87.0,100.0,98.0,89.0,83.0,75.0,83.0,70.0,73.0,72.0,69.0,64.0,49.0,47.0,37.0,29.0,37.0,24.0,20.0,24.0,28.0,17.0,12.0,9.0,10.0,15.0,18.0 E81024,15.0,12.0,14.0,18.0,21.0,23.0,20.0,36.0,35.0,31.0,43.0,27.0,37.0,31.0,36.0,51.0,30.0,45.0,40.0,30.0,22.0,34.0,30.0,33.0,21.0,26.0,28.0,29.0,32.0,18.0,28.0,25.0,22.0,35.0,34.0,26.0,29.0,36.0,32.0,40.0,39.0,38.0,28.0,37.0,39.0,42.0,28.0,29.0,45.0,39.0,33.0,42.0,48.0,55.0,49.0,45.0,70.0,48.0,62.0,56.0,58.0,62.0,49.0,47.0,43.0,33.0,44.0,40.0,36.0,40.0,34.0,38.0,35.0,37.0,33.0,44.0,37.0,52.0,46.0,32.0,34.0,32.0,25.0,27.0,18.0,16.0,17.0,8.0,21.0,16.0,13.0,11.0,6.0,7.0,5.0,13.0 E81025,54.0,49.0,54.0,67.0,50.0,62.0,52.0,60.0,44.0,50.0,43.0,42.0,52.0,56.0,52.0,52.0,51.0,58.0,38.0,37.0,36.0,38.0,44.0,42.0,38.0,70.0,62.0,55.0,64.0,56.0,78.0,68.0,76.0,66.0,54.0,65.0,60.0,69.0,61.0,57.0,51.0,55.0,47.0,46.0,46.0,47.0,42.0,39.0,57.0,36.0,50.0,48.0,28.0,34.0,42.0,42.0,37.0,40.0,34.0,44.0,38.0,36.0,39.0,29.0,22.0,27.0,30.0,35.0,25.0,20.0,21.0,24.0,32.0,14.0,21.0,28.0,20.0,18.0,23.0,20.0,20.0,14.0,19.0,14.0,16.0,16.0,17.0,9.0,15.0,12.0,8.0,9.0,3.0,1.0,6.0,13.0 E81026,47.0,53.0,65.0,63.0,62.0,62.0,59.0,52.0,56.0,73.0,63.0,57.0,67.0,40.0,60.0,66.0,61.0,53.0,56.0,56.0,38.0,49.0,46.0,48.0,68.0,53.0,49.0,60.0,64.0,74.0,61.0,69.0,69.0,82.0,85.0,104.0,82.0,85.0,78.0,85.0,73.0,86.0,82.0,73.0,71.0,69.0,68.0,46.0,49.0,68.0,58.0,63.0,66.0,53.0,63.0,68.0,57.0,69.0,61.0,56.0,78.0,65.0,83.0,50.0,32.0,53.0,49.0,41.0,53.0,48.0,35.0,45.0,33.0,28.0,35.0,35.0,35.0,28.0,28.0,26.0,28.0,24.0,25.0,12.0,12.0,11.0,16.0,9.0,11.0,7.0,11.0,5.0,7.0,3.0,6.0,9.0 E81027,71.0,97.0,99.0,114.0,84.0,104.0,93.0,84.0,97.0,115.0,85.0,99.0,106.0,87.0,97.0,103.0,88.0,87.0,84.0,64.0,67.0,65.0,69.0,66.0,79.0,86.0,85.0,82.0,90.0,105.0,102.0,86.0,111.0,123.0,131.0,122.0,117.0,134.0,137.0,141.0,127.0,124.0,114.0,102.0,86.0,82.0,117.0,76.0,79.0,76.0,73.0,77.0,62.0,72.0,85.0,79.0,95.0,67.0,63.0,56.0,67.0,62.0,69.0,76.0,61.0,53.0,72.0,62.0,58.0,45.0,47.0,44.0,36.0,42.0,35.0,33.0,32.0,34.0,19.0,26.0,25.0,27.0,17.0,16.0,7.0,12.0,18.0,17.0,10.0,15.0,10.0,3.0,7.0,5.0,16.0,13.0 E81028,111.0,120.0,126.0,106.0,118.0,121.0,114.0,122.0,130.0,134.0,129.0,112.0,146.0,137.0,147.0,135.0,143.0,144.0,136.0,132.0,131.0,117.0,131.0,142.0,131.0,124.0,123.0,156.0,127.0,147.0,136.0,131.0,123.0,112.0,126.0,127.0,118.0,122.0,122.0,134.0,131.0,128.0,122.0,133.0,106.0,98.0,111.0,83.0,86.0,91.0,79.0,79.0,81.0,79.0,67.0,62.0,72.0,71.0,58.0,52.0,39.0,40.0,47.0,48.0,40.0,55.0,42.0,48.0,50.0,38.0,37.0,40.0,27.0,29.0,33.0,25.0,21.0,28.0,19.0,20.0,14.0,12.0,17.0,14.0,11.0,12.0,8.0,10.0,12.0,9.0,3.0,,1.0,3.0,7.0,8.0 E81029,74.0,91.0,80.0,95.0,89.0,87.0,119.0,109.0,91.0,88.0,98.0,102.0,122.0,113.0,122.0,135.0,112.0,108.0,112.0,105.0,73.0,97.0,108.0,107.0,94.0,86.0,117.0,113.0,96.0,108.0,116.0,119.0,130.0,104.0,115.0,135.0,125.0,139.0,132.0,145.0,134.0,125.0,133.0,133.0,182.0,128.0,159.0,112.0,109.0,116.0,111.0,124.0,115.0,88.0,108.0,101.0,98.0,117.0,124.0,114.0,107.0,108.0,106.0,98.0,101.0,99.0,103.0,81.0,66.0,88.0,84.0,85.0,78.0,62.0,82.0,83.0,76.0,69.0,76.0,60.0,59.0,57.0,62.0,57.0,34.0,47.0,30.0,50.0,34.0,36.0,32.0,18.0,13.0,13.0,10.0,31.0 E81030,71.0,85.0,84.0,79.0,82.0,81.0,80.0,72.0,83.0,81.0,66.0,80.0,75.0,69.0,74.0,58.0,79.0,84.0,54.0,52.0,53.0,62.0,54.0,70.0,80.0,92.0,117.0,144.0,137.0,122.0,118.0,104.0,139.0,114.0,105.0,134.0,111.0,116.0,100.0,103.0,98.0,106.0,82.0,94.0,58.0,66.0,68.0,73.0,62.0,70.0,69.0,58.0,51.0,48.0,45.0,55.0,46.0,47.0,42.0,46.0,37.0,43.0,29.0,42.0,32.0,35.0,25.0,35.0,18.0,14.0,18.0,17.0,17.0,18.0,18.0,13.0,13.0,12.0,10.0,6.0,5.0,7.0,9.0,7.0,9.0,4.0,9.0,12.0,8.0,7.0,4.0,6.0,5.0,2.0,1.0,5.0 E81031,13.0,21.0,18.0,17.0,32.0,27.0,22.0,23.0,21.0,24.0,34.0,35.0,17.0,22.0,25.0,35.0,24.0,32.0,26.0,21.0,18.0,17.0,12.0,23.0,33.0,15.0,26.0,19.0,14.0,20.0,27.0,22.0,33.0,35.0,25.0,33.0,37.0,32.0,30.0,32.0,31.0,28.0,31.0,31.0,21.0,32.0,27.0,27.0,41.0,32.0,31.0,35.0,39.0,34.0,40.0,41.0,45.0,46.0,31.0,34.0,39.0,37.0,52.0,39.0,38.0,39.0,39.0,35.0,35.0,38.0,24.0,33.0,30.0,26.0,25.0,26.0,29.0,35.0,31.0,27.0,32.0,28.0,26.0,15.0,17.0,7.0,8.0,10.0,6.0,3.0,8.0,3.0,8.0,2.0,1.0,5.0 E81032,332.0,321.0,328.0,321.0,298.0,362.0,321.0,291.0,336.0,285.0,272.0,280.0,304.0,275.0,305.0,262.0,277.0,256.0,204.0,257.0,241.0,256.0,299.0,350.0,432.0,448.0,496.0,506.0,528.0,542.0,511.0,468.0,439.0,427.0,425.0,430.0,423.0,403.0,384.0,381.0,380.0,358.0,344.0,321.0,343.0,293.0,248.0,245.0,270.0,236.0,221.0,217.0,204.0,233.0,224.0,202.0,206.0,201.0,209.0,197.0,184.0,190.0,182.0,158.0,155.0,132.0,111.0,120.0,124.0,121.0,90.0,86.0,84.0,74.0,82.0,83.0,70.0,86.0,68.0,56.0,57.0,55.0,53.0,48.0,44.0,47.0,34.0,36.0,42.0,27.0,26.0,23.0,14.0,12.0,7.0,26.0 E81033,81.0,106.0,110.0,106.0,124.0,123.0,120.0,125.0,143.0,126.0,121.0,123.0,131.0,124.0,122.0,117.0,129.0,116.0,108.0,93.0,89.0,69.0,92.0,91.0,100.0,85.0,116.0,105.0,101.0,119.0,120.0,122.0,151.0,141.0,140.0,138.0,139.0,142.0,175.0,141.0,131.0,151.0,142.0,127.0,127.0,134.0,153.0,127.0,131.0,114.0,128.0,127.0,141.0,141.0,164.0,122.0,155.0,176.0,137.0,148.0,134.0,117.0,149.0,139.0,121.0,135.0,101.0,107.0,102.0,93.0,101.0,104.0,114.0,91.0,85.0,100.0,110.0,95.0,93.0,74.0,71.0,56.0,57.0,50.0,46.0,53.0,57.0,35.0,35.0,30.0,27.0,19.0,15.0,21.0,10.0,28.0 E81034,33.0,37.0,36.0,39.0,45.0,31.0,44.0,40.0,53.0,31.0,48.0,48.0,45.0,52.0,42.0,45.0,47.0,46.0,38.0,27.0,44.0,43.0,32.0,39.0,38.0,46.0,32.0,31.0,39.0,44.0,49.0,52.0,47.0,56.0,53.0,65.0,57.0,49.0,58.0,54.0,50.0,56.0,47.0,51.0,57.0,52.0,54.0,33.0,64.0,53.0,38.0,33.0,50.0,67.0,71.0,55.0,67.0,71.0,68.0,78.0,68.0,64.0,58.0,63.0,63.0,55.0,49.0,43.0,51.0,36.0,38.0,29.0,27.0,39.0,41.0,39.0,36.0,47.0,39.0,29.0,34.0,23.0,29.0,24.0,25.0,20.0,19.0,22.0,16.0,15.0,17.0,7.0,10.0,7.0,3.0,13.0 E81035,43.0,47.0,48.0,48.0,39.0,64.0,47.0,49.0,43.0,58.0,58.0,57.0,68.0,72.0,56.0,73.0,61.0,49.0,63.0,52.0,50.0,53.0,45.0,51.0,45.0,40.0,61.0,43.0,59.0,67.0,66.0,78.0,66.0,73.0,61.0,77.0,58.0,65.0,63.0,68.0,59.0,73.0,60.0,52.0,66.0,70.0,60.0,52.0,61.0,63.0,65.0,72.0,82.0,81.0,54.0,78.0,62.0,65.0,65.0,58.0,56.0,55.0,59.0,54.0,55.0,56.0,65.0,52.0,42.0,48.0,75.0,52.0,51.0,38.0,55.0,46.0,46.0,51.0,56.0,43.0,32.0,37.0,25.0,25.0,24.0,20.0,19.0,13.0,16.0,7.0,10.0,10.0,6.0,2.0,7.0,9.0 E81036,54.0,86.0,81.0,83.0,83.0,78.0,98.0,86.0,92.0,69.0,91.0,79.0,73.0,89.0,70.0,72.0,67.0,58.0,53.0,61.0,41.0,42.0,43.0,40.0,42.0,53.0,56.0,49.0,62.0,69.0,83.0,93.0,96.0,101.0,122.0,121.0,125.0,131.0,126.0,87.0,91.0,109.0,123.0,117.0,106.0,100.0,71.0,68.0,62.0,68.0,87.0,70.0,84.0,77.0,75.0,77.0,67.0,79.0,77.0,79.0,60.0,72.0,85.0,84.0,85.0,68.0,78.0,69.0,77.0,71.0,66.0,74.0,66.0,65.0,54.0,61.0,72.0,80.0,61.0,41.0,63.0,50.0,53.0,32.0,26.0,22.0,24.0,22.0,25.0,19.0,17.0,14.0,12.0,9.0,11.0,21.0 E81037,112.0,140.0,142.0,129.0,137.0,144.0,129.0,163.0,150.0,191.0,176.0,160.0,176.0,171.0,184.0,197.0,190.0,193.0,192.0,178.0,145.0,153.0,145.0,176.0,192.0,212.0,218.0,235.0,252.0,232.0,202.0,254.0,263.0,233.0,265.0,242.0,220.0,285.0,232.0,244.0,242.0,228.0,217.0,215.0,240.0,261.0,232.0,215.0,245.0,214.0,243.0,229.0,264.0,245.0,247.0,264.0,270.0,277.0,278.0,281.0,274.0,303.0,282.0,233.0,232.0,237.0,206.0,222.0,186.0,187.0,190.0,164.0,175.0,182.0,173.0,202.0,192.0,199.0,221.0,120.0,159.0,141.0,127.0,103.0,106.0,108.0,75.0,98.0,81.0,65.0,60.0,65.0,32.0,32.0,29.0,86.0 E81038,84.0,85.0,97.0,106.0,103.0,115.0,116.0,125.0,125.0,125.0,118.0,133.0,119.0,122.0,129.0,125.0,142.0,104.0,115.0,96.0,100.0,93.0,101.0,118.0,106.0,120.0,112.0,111.0,123.0,128.0,125.0,140.0,145.0,129.0,150.0,138.0,154.0,177.0,160.0,148.0,164.0,156.0,151.0,179.0,167.0,167.0,135.0,141.0,131.0,124.0,125.0,121.0,137.0,138.0,132.0,132.0,149.0,152.0,165.0,129.0,120.0,144.0,145.0,136.0,153.0,129.0,121.0,127.0,116.0,118.0,127.0,137.0,98.0,91.0,108.0,96.0,97.0,132.0,101.0,81.0,91.0,83.0,68.0,53.0,47.0,50.0,41.0,38.0,29.0,30.0,26.0,26.0,26.0,7.0,9.0,28.0 E81040,34.0,29.0,42.0,51.0,58.0,52.0,40.0,63.0,51.0,62.0,59.0,71.0,54.0,58.0,61.0,68.0,60.0,58.0,46.0,45.0,55.0,37.0,43.0,55.0,43.0,41.0,71.0,52.0,70.0,42.0,51.0,48.0,58.0,65.0,56.0,66.0,59.0,62.0,76.0,50.0,74.0,62.0,75.0,55.0,74.0,67.0,55.0,49.0,61.0,48.0,62.0,53.0,59.0,62.0,69.0,59.0,55.0,60.0,64.0,74.0,71.0,72.0,53.0,55.0,59.0,54.0,54.0,38.0,45.0,47.0,44.0,46.0,38.0,37.0,34.0,36.0,29.0,48.0,46.0,34.0,35.0,32.0,44.0,26.0,29.0,20.0,26.0,25.0,23.0,30.0,19.0,13.0,8.0,11.0,5.0,16.0 E81041,66.0,78.0,80.0,93.0,89.0,96.0,98.0,101.0,111.0,116.0,91.0,118.0,110.0,122.0,116.0,112.0,102.0,123.0,95.0,97.0,67.0,84.0,94.0,106.0,109.0,91.0,112.0,130.0,103.0,123.0,99.0,87.0,94.0,103.0,106.0,113.0,127.0,120.0,98.0,113.0,116.0,97.0,89.0,111.0,110.0,89.0,82.0,71.0,107.0,47.0,82.0,73.0,81.0,55.0,80.0,81.0,70.0,82.0,83.0,85.0,54.0,79.0,63.0,48.0,55.0,53.0,52.0,35.0,40.0,41.0,41.0,47.0,52.0,34.0,34.0,23.0,22.0,36.0,38.0,22.0,37.0,27.0,34.0,15.0,19.0,24.0,19.0,17.0,10.0,20.0,13.0,9.0,8.0,2.0,5.0,4.0 E81043,51.0,68.0,77.0,59.0,64.0,68.0,80.0,59.0,69.0,60.0,50.0,75.0,56.0,50.0,59.0,46.0,65.0,45.0,41.0,41.0,27.0,39.0,72.0,107.0,96.0,97.0,87.0,70.0,75.0,95.0,89.0,89.0,112.0,104.0,84.0,90.0,85.0,91.0,79.0,71.0,65.0,63.0,75.0,74.0,60.0,78.0,58.0,58.0,52.0,63.0,55.0,49.0,64.0,57.0,66.0,59.0,57.0,49.0,56.0,70.0,62.0,52.0,53.0,51.0,42.0,45.0,35.0,46.0,33.0,43.0,40.0,46.0,36.0,36.0,23.0,38.0,39.0,51.0,40.0,29.0,37.0,24.0,22.0,19.0,15.0,20.0,10.0,20.0,15.0,8.0,8.0,5.0,6.0,9.0,4.0,20.0 E81044,101.0,95.0,112.0,115.0,105.0,95.0,109.0,115.0,127.0,121.0,127.0,126.0,115.0,137.0,151.0,118.0,116.0,127.0,105.0,89.0,67.0,76.0,76.0,82.0,88.0,90.0,87.0,95.0,126.0,121.0,133.0,164.0,153.0,147.0,168.0,154.0,174.0,159.0,165.0,162.0,166.0,134.0,159.0,145.0,172.0,141.0,162.0,123.0,131.0,141.0,139.0,129.0,129.0,121.0,132.0,107.0,106.0,132.0,132.0,125.0,100.0,109.0,103.0,114.0,91.0,89.0,112.0,91.0,101.0,77.0,71.0,94.0,85.0,79.0,85.0,76.0,81.0,83.0,87.0,62.0,58.0,55.0,49.0,32.0,41.0,42.0,24.0,17.0,23.0,21.0,20.0,15.0,15.0,8.0,11.0,12.0 E81045,47.0,47.0,47.0,52.0,52.0,51.0,54.0,59.0,58.0,69.0,55.0,54.0,63.0,68.0,78.0,65.0,64.0,57.0,48.0,52.0,61.0,41.0,50.0,61.0,57.0,67.0,57.0,61.0,71.0,62.0,52.0,73.0,67.0,82.0,80.0,70.0,75.0,70.0,69.0,85.0,88.0,68.0,92.0,100.0,73.0,75.0,80.0,70.0,74.0,56.0,54.0,63.0,45.0,65.0,68.0,58.0,63.0,61.0,45.0,54.0,48.0,52.0,55.0,59.0,43.0,54.0,50.0,55.0,34.0,45.0,46.0,39.0,46.0,46.0,45.0,52.0,46.0,62.0,55.0,43.0,48.0,32.0,32.0,32.0,32.0,32.0,28.0,30.0,29.0,28.0,12.0,12.0,13.0,9.0,5.0,14.0 E81046,34.0,41.0,46.0,51.0,44.0,46.0,48.0,51.0,59.0,66.0,76.0,72.0,82.0,69.0,64.0,68.0,74.0,85.0,69.0,55.0,46.0,56.0,51.0,44.0,50.0,40.0,63.0,55.0,63.0,49.0,54.0,54.0,61.0,56.0,57.0,72.0,66.0,74.0,70.0,63.0,56.0,90.0,73.0,71.0,85.0,73.0,83.0,68.0,76.0,81.0,69.0,87.0,85.0,88.0,98.0,92.0,75.0,99.0,103.0,121.0,94.0,114.0,101.0,108.0,72.0,78.0,79.0,63.0,61.0,67.0,74.0,90.0,62.0,73.0,61.0,80.0,67.0,88.0,75.0,65.0,65.0,57.0,64.0,50.0,40.0,37.0,38.0,26.0,26.0,28.0,18.0,18.0,13.0,9.0,7.0,15.0 E81047,86.0,100.0,92.0,83.0,98.0,84.0,96.0,115.0,104.0,106.0,88.0,103.0,117.0,114.0,104.0,121.0,86.0,88.0,69.0,86.0,72.0,101.0,83.0,85.0,126.0,109.0,131.0,119.0,110.0,121.0,130.0,137.0,145.0,136.0,155.0,131.0,146.0,161.0,161.0,134.0,151.0,131.0,151.0,150.0,163.0,138.0,150.0,131.0,93.0,105.0,115.0,118.0,101.0,119.0,128.0,110.0,121.0,89.0,116.0,117.0,110.0,108.0,94.0,102.0,83.0,98.0,96.0,92.0,76.0,88.0,76.0,84.0,66.0,63.0,75.0,75.0,75.0,80.0,77.0,60.0,60.0,67.0,39.0,39.0,44.0,26.0,36.0,35.0,23.0,29.0,22.0,30.0,18.0,14.0,12.0,31.0 E81048,77.0,67.0,58.0,73.0,52.0,68.0,67.0,47.0,63.0,73.0,73.0,56.0,67.0,55.0,66.0,63.0,75.0,49.0,59.0,57.0,68.0,67.0,72.0,108.0,113.0,92.0,102.0,109.0,134.0,122.0,118.0,102.0,113.0,92.0,75.0,102.0,97.0,76.0,80.0,84.0,67.0,67.0,73.0,77.0,72.0,70.0,71.0,57.0,55.0,32.0,46.0,40.0,50.0,39.0,49.0,45.0,42.0,54.0,59.0,53.0,53.0,52.0,52.0,54.0,32.0,47.0,32.0,27.0,45.0,20.0,32.0,23.0,27.0,30.0,22.0,24.0,15.0,24.0,14.0,20.0,17.0,23.0,12.0,11.0,15.0,11.0,12.0,7.0,12.0,6.0,7.0,5.0,5.0,5.0,4.0,10.0 E81049,22.0,19.0,34.0,31.0,33.0,29.0,40.0,36.0,40.0,39.0,43.0,59.0,42.0,53.0,42.0,53.0,48.0,46.0,45.0,27.0,35.0,34.0,37.0,36.0,39.0,36.0,43.0,30.0,44.0,38.0,44.0,41.0,53.0,54.0,55.0,61.0,40.0,49.0,46.0,50.0,58.0,48.0,44.0,45.0,60.0,69.0,71.0,54.0,36.0,42.0,69.0,61.0,44.0,44.0,67.0,52.0,51.0,47.0,56.0,55.0,57.0,44.0,38.0,53.0,44.0,41.0,49.0,44.0,48.0,41.0,39.0,38.0,35.0,37.0,44.0,38.0,45.0,46.0,41.0,27.0,30.0,35.0,24.0,22.0,21.0,15.0,19.0,17.0,15.0,11.0,8.0,7.0,7.0,7.0,9.0,10.0 E81050,41.0,55.0,39.0,68.0,70.0,64.0,58.0,62.0,69.0,75.0,69.0,63.0,78.0,59.0,77.0,71.0,66.0,82.0,67.0,45.0,41.0,42.0,53.0,60.0,69.0,42.0,52.0,63.0,61.0,50.0,62.0,59.0,77.0,66.0,74.0,90.0,100.0,75.0,87.0,83.0,88.0,72.0,96.0,72.0,100.0,84.0,94.0,85.0,85.0,92.0,92.0,81.0,89.0,114.0,89.0,73.0,87.0,91.0,108.0,103.0,108.0,109.0,93.0,85.0,88.0,78.0,74.0,71.0,78.0,69.0,68.0,81.0,58.0,71.0,66.0,71.0,91.0,80.0,71.0,48.0,68.0,54.0,57.0,41.0,23.0,45.0,31.0,37.0,20.0,23.0,20.0,16.0,17.0,7.0,10.0,31.0 E81052,20.0,22.0,19.0,30.0,33.0,38.0,46.0,47.0,39.0,51.0,48.0,49.0,52.0,47.0,51.0,37.0,40.0,47.0,53.0,40.0,35.0,32.0,31.0,33.0,36.0,44.0,39.0,41.0,36.0,42.0,52.0,49.0,31.0,46.0,74.0,51.0,71.0,53.0,54.0,48.0,53.0,75.0,65.0,45.0,50.0,45.0,45.0,47.0,57.0,38.0,51.0,46.0,44.0,39.0,52.0,47.0,81.0,44.0,66.0,84.0,77.0,69.0,67.0,67.0,47.0,59.0,62.0,37.0,39.0,38.0,37.0,32.0,32.0,29.0,44.0,30.0,29.0,45.0,35.0,32.0,30.0,34.0,27.0,28.0,28.0,24.0,25.0,18.0,11.0,14.0,14.0,5.0,5.0,9.0,3.0,8.0 E81057,126.0,109.0,116.0,147.0,120.0,122.0,131.0,110.0,123.0,116.0,123.0,127.0,123.0,112.0,138.0,120.0,112.0,130.0,95.0,90.0,76.0,96.0,103.0,115.0,102.0,136.0,132.0,146.0,132.0,172.0,174.0,168.0,194.0,172.0,172.0,187.0,169.0,175.0,151.0,158.0,156.0,152.0,140.0,126.0,145.0,155.0,124.0,136.0,119.0,121.0,133.0,149.0,161.0,153.0,159.0,164.0,165.0,153.0,164.0,148.0,165.0,169.0,133.0,153.0,120.0,138.0,106.0,103.0,115.0,102.0,104.0,104.0,105.0,92.0,102.0,97.0,93.0,132.0,105.0,71.0,86.0,83.0,71.0,49.0,49.0,43.0,42.0,36.0,29.0,38.0,28.0,25.0,20.0,8.0,12.0,32.0 E81060,29.0,37.0,30.0,29.0,29.0,29.0,34.0,42.0,35.0,28.0,30.0,28.0,39.0,30.0,38.0,44.0,41.0,40.0,29.0,25.0,33.0,26.0,25.0,24.0,23.0,29.0,32.0,39.0,39.0,37.0,45.0,46.0,55.0,43.0,56.0,48.0,37.0,52.0,38.0,51.0,43.0,49.0,48.0,33.0,43.0,42.0,40.0,45.0,41.0,36.0,36.0,38.0,35.0,33.0,27.0,44.0,47.0,35.0,37.0,25.0,25.0,43.0,35.0,22.0,29.0,31.0,28.0,33.0,25.0,28.0,26.0,23.0,21.0,24.0,21.0,30.0,20.0,21.0,18.0,21.0,25.0,11.0,10.0,10.0,18.0,12.0,11.0,13.0,10.0,15.0,12.0,12.0,5.0,1.0,6.0,13.0 E81061,28.0,59.0,44.0,55.0,43.0,56.0,45.0,40.0,52.0,56.0,47.0,52.0,44.0,35.0,40.0,40.0,41.0,39.0,39.0,28.0,31.0,24.0,25.0,29.0,42.0,33.0,39.0,29.0,43.0,38.0,56.0,50.0,55.0,57.0,66.0,53.0,65.0,67.0,58.0,51.0,64.0,55.0,46.0,49.0,60.0,44.0,52.0,50.0,42.0,32.0,50.0,45.0,62.0,45.0,53.0,48.0,41.0,61.0,59.0,42.0,52.0,38.0,33.0,45.0,47.0,36.0,53.0,36.0,31.0,35.0,27.0,40.0,24.0,43.0,29.0,29.0,33.0,30.0,20.0,15.0,22.0,18.0,8.0,15.0,15.0,14.0,14.0,6.0,7.0,2.0,6.0,8.0,5.0,3.0,1.0,3.0 E81063,58.0,60.0,53.0,65.0,50.0,64.0,64.0,70.0,54.0,71.0,57.0,74.0,65.0,80.0,89.0,74.0,85.0,87.0,73.0,69.0,88.0,76.0,89.0,71.0,85.0,88.0,90.0,69.0,75.0,101.0,54.0,74.0,65.0,64.0,64.0,65.0,80.0,65.0,84.0,67.0,59.0,54.0,83.0,60.0,70.0,75.0,61.0,54.0,54.0,53.0,47.0,45.0,52.0,49.0,39.0,41.0,31.0,49.0,34.0,27.0,17.0,19.0,19.0,20.0,18.0,23.0,25.0,33.0,25.0,23.0,35.0,29.0,22.0,19.0,23.0,16.0,7.0,10.0,10.0,8.0,10.0,7.0,6.0,9.0,11.0,6.0,3.0,5.0,7.0,4.0,3.0,1.0,3.0,2.0,5.0,5.0 E81069,22.0,26.0,17.0,24.0,22.0,20.0,28.0,23.0,21.0,23.0,23.0,17.0,34.0,24.0,27.0,28.0,32.0,26.0,27.0,18.0,10.0,22.0,21.0,22.0,20.0,29.0,15.0,22.0,22.0,21.0,18.0,27.0,27.0,23.0,25.0,35.0,36.0,32.0,36.0,31.0,27.0,34.0,18.0,29.0,28.0,31.0,31.0,21.0,33.0,29.0,37.0,30.0,39.0,23.0,31.0,31.0,46.0,37.0,38.0,44.0,36.0,37.0,41.0,42.0,34.0,35.0,31.0,32.0,32.0,28.0,39.0,44.0,28.0,28.0,33.0,31.0,33.0,42.0,41.0,36.0,34.0,38.0,29.0,11.0,24.0,20.0,15.0,14.0,11.0,16.0,10.0,7.0,8.0,7.0,3.0,8.0 E81073,113.0,130.0,93.0,134.0,145.0,123.0,132.0,149.0,136.0,144.0,117.0,115.0,131.0,122.0,122.0,110.0,110.0,107.0,90.0,87.0,88.0,85.0,96.0,111.0,133.0,138.0,160.0,145.0,173.0,164.0,177.0,172.0,150.0,180.0,213.0,198.0,190.0,190.0,176.0,192.0,157.0,161.0,153.0,135.0,135.0,130.0,135.0,122.0,74.0,111.0,94.0,80.0,85.0,74.0,79.0,80.0,89.0,74.0,66.0,76.0,87.0,68.0,85.0,67.0,64.0,64.0,55.0,51.0,44.0,50.0,30.0,44.0,43.0,32.0,29.0,46.0,31.0,31.0,36.0,23.0,31.0,24.0,16.0,15.0,15.0,19.0,16.0,10.0,9.0,9.0,17.0,11.0,7.0,5.0,6.0,8.0 E81074,38.0,53.0,47.0,54.0,60.0,53.0,58.0,54.0,65.0,66.0,54.0,64.0,53.0,92.0,82.0,75.0,91.0,71.0,68.0,59.0,41.0,49.0,50.0,49.0,59.0,56.0,52.0,62.0,53.0,63.0,71.0,65.0,64.0,66.0,74.0,67.0,70.0,84.0,81.0,68.0,59.0,59.0,74.0,72.0,64.0,85.0,68.0,86.0,80.0,87.0,93.0,86.0,94.0,100.0,102.0,75.0,79.0,92.0,90.0,115.0,95.0,90.0,88.0,78.0,83.0,77.0,93.0,73.0,60.0,55.0,56.0,53.0,63.0,63.0,68.0,54.0,68.0,74.0,66.0,57.0,60.0,51.0,54.0,32.0,36.0,26.0,33.0,26.0,33.0,25.0,18.0,16.0,12.0,15.0,7.0,14.0 E81076,30.0,31.0,33.0,26.0,34.0,43.0,50.0,45.0,49.0,53.0,36.0,50.0,43.0,53.0,42.0,39.0,41.0,29.0,35.0,29.0,26.0,19.0,40.0,32.0,25.0,33.0,42.0,44.0,49.0,57.0,40.0,51.0,39.0,41.0,56.0,43.0,49.0,64.0,51.0,53.0,44.0,50.0,46.0,40.0,40.0,38.0,41.0,32.0,30.0,29.0,24.0,32.0,33.0,24.0,35.0,31.0,34.0,17.0,20.0,34.0,33.0,29.0,27.0,20.0,25.0,20.0,20.0,20.0,22.0,13.0,18.0,14.0,8.0,10.0,11.0,14.0,10.0,11.0,12.0,14.0,6.0,5.0,12.0,6.0,14.0,11.0,6.0,11.0,5.0,6.0,2.0,5.0,4.0,1.0,2.0,3.0 E81612,25.0,23.0,21.0,40.0,33.0,34.0,27.0,44.0,36.0,42.0,49.0,43.0,39.0,46.0,49.0,43.0,45.0,46.0,38.0,38.0,38.0,33.0,33.0,37.0,34.0,42.0,30.0,44.0,32.0,35.0,33.0,43.0,24.0,44.0,47.0,43.0,51.0,37.0,47.0,42.0,45.0,38.0,59.0,33.0,37.0,44.0,36.0,47.0,31.0,27.0,22.0,33.0,23.0,31.0,31.0,24.0,34.0,30.0,28.0,35.0,25.0,22.0,23.0,24.0,30.0,23.0,27.0,29.0,16.0,13.0,25.0,23.0,23.0,20.0,12.0,15.0,18.0,11.0,13.0,12.0,9.0,9.0,3.0,6.0,8.0,7.0,7.0,8.0,2.0,5.0,4.0,4.0,1.0,1.0,2.0,6.0 E81615,30.0,31.0,25.0,18.0,19.0,15.0,19.0,26.0,25.0,22.0,40.0,31.0,37.0,19.0,32.0,21.0,37.0,16.0,31.0,16.0,38.0,41.0,41.0,21.0,37.0,32.0,47.0,40.0,41.0,34.0,33.0,34.0,30.0,39.0,37.0,38.0,37.0,49.0,36.0,23.0,25.0,35.0,29.0,34.0,22.0,46.0,21.0,21.0,22.0,19.0,23.0,27.0,17.0,17.0,25.0,20.0,23.0,16.0,12.0,13.0,10.0,13.0,13.0,13.0,14.0,12.0,7.0,9.0,7.0,17.0,11.0,8.0,10.0,6.0,7.0,4.0,8.0,4.0,4.0,5.0,7.0,2.0,1.0,3.0,1.0,2.0,1.0,1.0,2.0,1.0,5.0,1.0,,2.0,1.0,1.0 E81617,17.0,21.0,19.0,22.0,25.0,23.0,27.0,32.0,39.0,28.0,29.0,29.0,30.0,46.0,43.0,34.0,37.0,25.0,25.0,32.0,24.0,25.0,20.0,18.0,29.0,27.0,29.0,27.0,31.0,31.0,33.0,36.0,30.0,37.0,45.0,37.0,36.0,47.0,38.0,41.0,32.0,39.0,30.0,45.0,45.0,47.0,32.0,22.0,34.0,32.0,27.0,24.0,34.0,31.0,40.0,29.0,27.0,30.0,35.0,47.0,44.0,25.0,45.0,30.0,23.0,31.0,50.0,30.0,28.0,31.0,20.0,32.0,31.0,36.0,22.0,22.0,29.0,28.0,11.0,22.0,16.0,5.0,13.0,16.0,12.0,15.0,9.0,13.0,7.0,3.0,10.0,5.0,2.0,4.0,3.0,6.0 E81631,64.0,65.0,52.0,62.0,50.0,91.0,57.0,71.0,63.0,63.0,63.0,69.0,75.0,70.0,83.0,61.0,88.0,82.0,68.0,76.0,85.0,62.0,75.0,68.0,69.0,74.0,70.0,84.0,76.0,59.0,70.0,74.0,55.0,72.0,66.0,88.0,64.0,80.0,69.0,93.0,68.0,69.0,65.0,70.0,72.0,85.0,62.0,56.0,60.0,59.0,50.0,50.0,45.0,32.0,25.0,40.0,30.0,27.0,29.0,30.0,22.0,12.0,21.0,24.0,20.0,27.0,25.0,17.0,13.0,16.0,27.0,18.0,21.0,15.0,17.0,14.0,13.0,13.0,7.0,16.0,6.0,7.0,13.0,7.0,8.0,10.0,10.0,6.0,6.0,5.0,4.0,4.0,3.0,3.0,4.0,5.0 E81632,33.0,35.0,33.0,41.0,43.0,35.0,51.0,50.0,46.0,39.0,48.0,37.0,52.0,52.0,48.0,55.0,51.0,42.0,49.0,34.0,30.0,47.0,36.0,46.0,47.0,46.0,52.0,51.0,49.0,43.0,44.0,61.0,60.0,48.0,58.0,62.0,64.0,75.0,62.0,48.0,61.0,58.0,51.0,49.0,67.0,66.0,54.0,43.0,58.0,46.0,39.0,41.0,49.0,46.0,61.0,64.0,57.0,62.0,67.0,51.0,50.0,54.0,41.0,52.0,54.0,42.0,57.0,40.0,57.0,39.0,40.0,39.0,42.0,31.0,33.0,43.0,31.0,31.0,34.0,46.0,30.0,24.0,23.0,27.0,20.0,22.0,12.0,20.0,17.0,18.0,14.0,10.0,11.0,8.0,8.0,13.0 E81633,38.0,34.0,35.0,48.0,38.0,37.0,41.0,39.0,46.0,58.0,49.0,36.0,41.0,44.0,42.0,33.0,37.0,43.0,32.0,27.0,44.0,23.0,35.0,24.0,35.0,37.0,52.0,41.0,51.0,44.0,53.0,47.0,29.0,47.0,38.0,44.0,41.0,39.0,38.0,39.0,53.0,39.0,45.0,42.0,38.0,37.0,35.0,26.0,26.0,29.0,27.0,27.0,25.0,25.0,26.0,25.0,23.0,21.0,19.0,22.0,18.0,21.0,22.0,18.0,16.0,11.0,8.0,14.0,11.0,14.0,17.0,9.0,10.0,15.0,6.0,9.0,10.0,9.0,17.0,11.0,10.0,4.0,5.0,5.0,8.0,5.0,6.0,5.0,4.0,6.0,5.0,3.0,2.0,3.0,1.0, E81635,81.0,80.0,59.0,72.0,63.0,72.0,53.0,50.0,47.0,37.0,38.0,40.0,34.0,34.0,32.0,41.0,40.0,34.0,36.0,35.0,29.0,34.0,27.0,38.0,61.0,75.0,71.0,64.0,66.0,77.0,119.0,99.0,99.0,105.0,92.0,86.0,94.0,77.0,70.0,62.0,70.0,57.0,47.0,44.0,45.0,44.0,43.0,51.0,43.0,39.0,42.0,30.0,37.0,28.0,40.0,34.0,52.0,36.0,46.0,48.0,30.0,37.0,32.0,31.0,32.0,33.0,22.0,22.0,29.0,24.0,20.0,15.0,26.0,18.0,20.0,18.0,19.0,21.0,22.0,19.0,17.0,21.0,18.0,12.0,9.0,12.0,7.0,9.0,9.0,7.0,4.0,4.0,6.0,1.0,1.0,3.0 K82003,100.0,79.0,103.0,116.0,90.0,117.0,103.0,111.0,128.0,117.0,113.0,125.0,125.0,137.0,114.0,126.0,134.0,108.0,94.0,93.0,83.0,85.0,104.0,81.0,96.0,96.0,104.0,105.0,118.0,128.0,116.0,111.0,145.0,132.0,150.0,147.0,134.0,116.0,156.0,144.0,158.0,133.0,133.0,129.0,123.0,114.0,112.0,107.0,94.0,103.0,94.0,103.0,95.0,80.0,92.0,85.0,84.0,76.0,67.0,61.0,81.0,69.0,57.0,68.0,69.0,63.0,67.0,59.0,56.0,57.0,60.0,57.0,53.0,62.0,55.0,52.0,36.0,41.0,37.0,26.0,24.0,15.0,15.0,27.0,13.0,17.0,12.0,10.0,7.0,3.0,9.0,2.0,7.0,3.0,2.0,5.0 K82009,144.0,145.0,162.0,182.0,189.0,211.0,205.0,230.0,240.0,277.0,254.0,264.0,292.0,266.0,288.0,278.0,300.0,289.0,211.0,176.0,154.0,187.0,178.0,184.0,182.0,184.0,200.0,177.0,201.0,205.0,184.0,229.0,263.0,280.0,279.0,293.0,333.0,306.0,365.0,311.0,312.0,340.0,326.0,341.0,339.0,323.0,306.0,283.0,282.0,308.0,335.0,288.0,310.0,285.0,300.0,311.0,314.0,285.0,275.0,271.0,289.0,280.0,244.0,233.0,237.0,196.0,225.0,188.0,208.0,188.0,185.0,175.0,198.0,170.0,168.0,190.0,180.0,186.0,184.0,113.0,141.0,126.0,115.0,85.0,69.0,82.0,72.0,61.0,39.0,43.0,32.0,23.0,32.0,32.0,19.0,49.0 K82013,54.0,55.0,65.0,62.0,92.0,82.0,66.0,85.0,65.0,71.0,68.0,73.0,71.0,67.0,84.0,81.0,84.0,63.0,79.0,68.0,42.0,56.0,66.0,66.0,79.0,66.0,88.0,64.0,89.0,80.0,90.0,90.0,100.0,113.0,96.0,114.0,116.0,92.0,90.0,107.0,104.0,82.0,87.0,88.0,99.0,95.0,103.0,88.0,70.0,83.0,84.0,84.0,89.0,96.0,101.0,109.0,108.0,93.0,94.0,109.0,87.0,97.0,107.0,85.0,90.0,90.0,105.0,72.0,86.0,67.0,67.0,81.0,77.0,70.0,79.0,76.0,86.0,85.0,91.0,75.0,67.0,57.0,46.0,39.0,41.0,37.0,41.0,38.0,23.0,28.0,24.0,26.0,10.0,9.0,13.0,28.0 K82015,33.0,44.0,32.0,42.0,44.0,55.0,73.0,65.0,59.0,66.0,71.0,82.0,71.0,75.0,73.0,66.0,76.0,74.0,65.0,51.0,51.0,44.0,43.0,36.0,60.0,46.0,56.0,52.0,57.0,59.0,75.0,47.0,73.0,77.0,75.0,78.0,93.0,80.0,71.0,100.0,76.0,61.0,87.0,79.0,91.0,78.0,67.0,70.0,65.0,67.0,70.0,54.0,63.0,64.0,64.0,65.0,80.0,60.0,61.0,67.0,59.0,66.0,49.0,63.0,65.0,47.0,45.0,42.0,57.0,44.0,41.0,37.0,44.0,38.0,45.0,48.0,38.0,46.0,41.0,30.0,32.0,43.0,36.0,29.0,24.0,31.0,20.0,17.0,15.0,9.0,18.0,10.0,2.0,6.0,4.0,9.0 K82016,110.0,114.0,137.0,137.0,150.0,162.0,143.0,162.0,192.0,174.0,161.0,169.0,187.0,184.0,176.0,176.0,168.0,150.0,152.0,117.0,108.0,113.0,126.0,131.0,137.0,157.0,152.0,167.0,171.0,192.0,156.0,190.0,199.0,220.0,245.0,226.0,192.0,236.0,240.0,230.0,231.0,244.0,228.0,221.0,221.0,233.0,193.0,183.0,206.0,183.0,179.0,186.0,169.0,178.0,188.0,172.0,181.0,175.0,206.0,179.0,196.0,183.0,164.0,193.0,160.0,155.0,178.0,183.0,149.0,178.0,185.0,159.0,148.0,168.0,147.0,160.0,144.0,150.0,133.0,116.0,116.0,97.0,83.0,65.0,72.0,64.0,58.0,47.0,53.0,38.0,38.0,31.0,32.0,20.0,18.0,58.0 K82025,30.0,51.0,44.0,53.0,42.0,30.0,50.0,46.0,48.0,54.0,43.0,52.0,47.0,69.0,60.0,62.0,74.0,65.0,55.0,63.0,55.0,49.0,39.0,43.0,59.0,44.0,47.0,49.0,80.0,54.0,48.0,70.0,60.0,52.0,65.0,84.0,68.0,71.0,71.0,74.0,65.0,75.0,65.0,80.0,79.0,80.0,63.0,73.0,70.0,58.0,61.0,68.0,72.0,90.0,66.0,53.0,89.0,57.0,81.0,79.0,82.0,55.0,63.0,79.0,77.0,74.0,75.0,65.0,71.0,87.0,68.0,54.0,67.0,78.0,65.0,69.0,74.0,60.0,50.0,55.0,36.0,31.0,37.0,37.0,27.0,18.0,32.0,31.0,25.0,16.0,21.0,9.0,5.0,7.0,8.0,18.0 K82026,112.0,107.0,116.0,129.0,117.0,126.0,149.0,170.0,184.0,176.0,195.0,161.0,168.0,198.0,190.0,153.0,162.0,179.0,130.0,109.0,111.0,104.0,111.0,133.0,102.0,113.0,125.0,139.0,123.0,125.0,152.0,138.0,161.0,162.0,187.0,196.0,177.0,190.0,187.0,175.0,170.0,153.0,179.0,181.0,183.0,167.0,153.0,127.0,158.0,123.0,119.0,149.0,142.0,106.0,140.0,123.0,110.0,117.0,139.0,121.0,112.0,109.0,120.0,93.0,110.0,101.0,99.0,85.0,102.0,89.0,81.0,92.0,75.0,78.0,85.0,90.0,80.0,100.0,86.0,70.0,67.0,54.0,54.0,44.0,35.0,39.0,39.0,24.0,35.0,25.0,21.0,21.0,6.0,13.0,13.0,25.0 K82027,22.0,36.0,25.0,28.0,24.0,33.0,39.0,37.0,36.0,30.0,43.0,33.0,31.0,39.0,31.0,47.0,39.0,52.0,45.0,34.0,29.0,27.0,23.0,32.0,28.0,37.0,41.0,35.0,27.0,35.0,41.0,38.0,46.0,46.0,51.0,48.0,58.0,46.0,41.0,52.0,43.0,41.0,43.0,44.0,49.0,34.0,42.0,46.0,40.0,48.0,35.0,28.0,43.0,32.0,35.0,42.0,46.0,34.0,46.0,31.0,28.0,24.0,32.0,27.0,33.0,27.0,32.0,21.0,32.0,31.0,37.0,22.0,27.0,20.0,25.0,17.0,14.0,30.0,26.0,19.0,11.0,11.0,17.0,8.0,10.0,7.0,7.0,4.0,5.0,2.0,4.0,,3.0,3.0,2.0,2.0 K82032,53.0,61.0,52.0,56.0,65.0,59.0,68.0,84.0,85.0,71.0,83.0,99.0,71.0,81.0,84.0,72.0,77.0,99.0,60.0,56.0,70.0,71.0,45.0,57.0,65.0,59.0,67.0,80.0,69.0,70.0,100.0,69.0,88.0,86.0,96.0,94.0,114.0,103.0,112.0,110.0,89.0,103.0,101.0,115.0,96.0,96.0,88.0,83.0,90.0,76.0,81.0,75.0,78.0,66.0,76.0,68.0,74.0,66.0,82.0,74.0,60.0,81.0,68.0,67.0,53.0,70.0,65.0,65.0,57.0,63.0,51.0,64.0,57.0,41.0,52.0,37.0,35.0,37.0,44.0,28.0,25.0,18.0,23.0,19.0,22.0,19.0,11.0,7.0,7.0,11.0,3.0,3.0,8.0,3.0,4.0,7.0 K82039,82.0,78.0,95.0,96.0,86.0,101.0,108.0,103.0,100.0,108.0,104.0,102.0,97.0,103.0,97.0,83.0,84.0,84.0,82.0,71.0,98.0,75.0,79.0,99.0,95.0,118.0,114.0,112.0,117.0,140.0,125.0,128.0,155.0,136.0,161.0,160.0,132.0,145.0,117.0,143.0,145.0,137.0,134.0,116.0,139.0,140.0,112.0,124.0,101.0,96.0,95.0,98.0,106.0,91.0,102.0,91.0,87.0,80.0,92.0,68.0,85.0,81.0,68.0,69.0,61.0,71.0,57.0,45.0,53.0,55.0,61.0,74.0,51.0,42.0,60.0,50.0,46.0,55.0,45.0,40.0,33.0,34.0,39.0,30.0,25.0,22.0,14.0,18.0,29.0,14.0,14.0,9.0,7.0,5.0,4.0,14.0 K82054,42.0,42.0,32.0,45.0,42.0,34.0,51.0,61.0,58.0,71.0,68.0,91.0,64.0,76.0,83.0,87.0,71.0,73.0,90.0,66.0,66.0,73.0,57.0,58.0,60.0,62.0,69.0,64.0,67.0,44.0,60.0,75.0,90.0,63.0,70.0,63.0,79.0,70.0,78.0,100.0,75.0,66.0,76.0,90.0,78.0,79.0,80.0,69.0,75.0,76.0,86.0,76.0,62.0,70.0,73.0,71.0,69.0,44.0,62.0,54.0,69.0,58.0,53.0,56.0,48.0,66.0,51.0,57.0,40.0,41.0,47.0,47.0,35.0,45.0,53.0,41.0,42.0,41.0,33.0,30.0,22.0,20.0,19.0,22.0,11.0,14.0,11.0,14.0,10.0,13.0,5.0,9.0,7.0,6.0,5.0,9.0 K82057,28.0,28.0,33.0,37.0,42.0,44.0,48.0,27.0,52.0,47.0,34.0,50.0,62.0,45.0,55.0,61.0,59.0,55.0,48.0,28.0,42.0,33.0,50.0,30.0,39.0,39.0,29.0,40.0,42.0,39.0,36.0,55.0,32.0,43.0,57.0,44.0,56.0,54.0,45.0,46.0,57.0,58.0,50.0,37.0,54.0,63.0,53.0,49.0,70.0,52.0,72.0,63.0,75.0,70.0,71.0,55.0,64.0,81.0,63.0,82.0,69.0,99.0,72.0,62.0,59.0,71.0,70.0,63.0,47.0,51.0,56.0,59.0,59.0,49.0,49.0,70.0,57.0,61.0,63.0,45.0,42.0,47.0,33.0,34.0,32.0,29.0,29.0,23.0,25.0,19.0,19.0,14.0,12.0,9.0,5.0,15.0 K82059,48.0,56.0,50.0,55.0,52.0,49.0,58.0,70.0,60.0,54.0,48.0,63.0,49.0,61.0,44.0,51.0,67.0,52.0,46.0,39.0,44.0,48.0,45.0,41.0,51.0,56.0,73.0,45.0,76.0,92.0,90.0,89.0,84.0,81.0,95.0,88.0,78.0,90.0,72.0,62.0,62.0,69.0,67.0,65.0,73.0,66.0,62.0,52.0,54.0,49.0,42.0,60.0,56.0,37.0,47.0,48.0,55.0,49.0,56.0,40.0,48.0,45.0,53.0,51.0,34.0,34.0,45.0,40.0,37.0,31.0,37.0,41.0,36.0,36.0,37.0,29.0,28.0,26.0,29.0,31.0,17.0,11.0,17.0,11.0,10.0,13.0,12.0,11.0,10.0,9.0,7.0,7.0,5.0,4.0,3.0,9.0 K82064,42.0,53.0,42.0,37.0,37.0,36.0,34.0,55.0,44.0,46.0,42.0,44.0,28.0,51.0,45.0,41.0,52.0,50.0,45.0,46.0,23.0,31.0,42.0,34.0,45.0,74.0,70.0,74.0,67.0,64.0,81.0,67.0,71.0,73.0,63.0,73.0,56.0,59.0,68.0,57.0,69.0,51.0,57.0,52.0,61.0,46.0,46.0,40.0,38.0,46.0,39.0,42.0,41.0,36.0,50.0,41.0,39.0,35.0,39.0,38.0,31.0,31.0,33.0,34.0,25.0,24.0,21.0,37.0,22.0,18.0,19.0,18.0,12.0,16.0,11.0,15.0,15.0,9.0,13.0,5.0,3.0,3.0,1.0,5.0,3.0,6.0,7.0,3.0,5.0,3.0,,4.0,1.0,,,2.0 K82065,87.0,97.0,98.0,105.0,81.0,101.0,87.0,89.0,99.0,109.0,97.0,100.0,100.0,116.0,111.0,103.0,98.0,94.0,110.0,81.0,109.0,124.0,123.0,136.0,163.0,190.0,217.0,231.0,220.0,213.0,219.0,254.0,226.0,218.0,221.0,204.0,240.0,216.0,224.0,189.0,162.0,182.0,152.0,147.0,176.0,149.0,134.0,111.0,126.0,104.0,125.0,110.0,114.0,99.0,99.0,102.0,97.0,100.0,93.0,79.0,101.0,103.0,81.0,84.0,96.0,76.0,78.0,64.0,81.0,67.0,73.0,61.0,63.0,61.0,58.0,61.0,53.0,42.0,55.0,24.0,27.0,29.0,26.0,25.0,21.0,18.0,23.0,9.0,12.0,9.0,6.0,6.0,2.0,3.0,6.0,11.0 K82610,34.0,39.0,34.0,56.0,52.0,47.0,59.0,57.0,72.0,53.0,49.0,63.0,66.0,61.0,73.0,79.0,74.0,58.0,56.0,35.0,43.0,51.0,43.0,59.0,67.0,80.0,83.0,68.0,61.0,72.0,59.0,68.0,82.0,75.0,76.0,88.0,93.0,68.0,72.0,86.0,81.0,69.0,61.0,55.0,74.0,66.0,78.0,61.0,69.0,55.0,60.0,57.0,57.0,51.0,50.0,62.0,36.0,40.0,43.0,53.0,39.0,32.0,36.0,27.0,33.0,36.0,42.0,24.0,35.0,17.0,21.0,15.0,22.0,25.0,13.0,16.0,11.0,12.0,15.0,6.0,5.0,8.0,3.0,3.0,3.0,1.0,8.0,2.0,4.0,1.0,2.0,3.0,1.0,2.0,,2.0 K82615,78.0,109.0,98.0,91.0,108.0,102.0,117.0,104.0,120.0,92.0,87.0,99.0,101.0,91.0,89.0,90.0,81.0,92.0,85.0,56.0,66.0,53.0,64.0,71.0,88.0,103.0,116.0,115.0,126.0,107.0,136.0,148.0,149.0,143.0,162.0,156.0,136.0,134.0,124.0,141.0,115.0,117.0,127.0,119.0,126.0,81.0,95.0,119.0,103.0,88.0,106.0,95.0,106.0,100.0,113.0,117.0,108.0,98.0,114.0,104.0,97.0,97.0,86.0,81.0,72.0,59.0,67.0,61.0,46.0,58.0,44.0,39.0,45.0,49.0,28.0,33.0,24.0,36.0,36.0,19.0,27.0,18.0,20.0,14.0,15.0,17.0,11.0,4.0,7.0,11.0,1.0,3.0,1.0,1.0,5.0,3.0 K82617,27.0,36.0,32.0,34.0,39.0,45.0,46.0,60.0,60.0,52.0,66.0,53.0,69.0,71.0,37.0,55.0,45.0,52.0,47.0,34.0,32.0,29.0,36.0,38.0,36.0,41.0,39.0,51.0,39.0,52.0,36.0,45.0,51.0,63.0,71.0,62.0,56.0,55.0,73.0,72.0,82.0,55.0,76.0,62.0,85.0,68.0,70.0,71.0,61.0,47.0,51.0,68.0,59.0,50.0,61.0,53.0,51.0,59.0,46.0,53.0,52.0,55.0,38.0,36.0,51.0,54.0,51.0,37.0,40.0,34.0,37.0,30.0,40.0,42.0,31.0,44.0,30.0,41.0,28.0,20.0,23.0,21.0,22.0,20.0,19.0,17.0,17.0,12.0,12.0,16.0,3.0,6.0,3.0,1.0,5.0,8.0 K82631,59.0,53.0,65.0,78.0,81.0,84.0,96.0,114.0,123.0,135.0,128.0,157.0,140.0,151.0,155.0,178.0,146.0,140.0,112.0,107.0,102.0,96.0,77.0,89.0,91.0,68.0,73.0,78.0,70.0,72.0,70.0,77.0,78.0,107.0,118.0,116.0,119.0,118.0,129.0,131.0,176.0,176.0,180.0,170.0,160.0,196.0,179.0,155.0,156.0,175.0,167.0,133.0,131.0,128.0,126.0,110.0,101.0,100.0,86.0,99.0,78.0,80.0,74.0,59.0,63.0,63.0,61.0,66.0,50.0,47.0,44.0,54.0,40.0,38.0,37.0,36.0,25.0,36.0,37.0,20.0,23.0,22.0,11.0,7.0,10.0,9.0,4.0,4.0,9.0,6.0,9.0,1.0,1.0,2.0,5.0,4.0 K82633,69.0,71.0,73.0,93.0,101.0,115.0,98.0,102.0,120.0,144.0,130.0,150.0,124.0,154.0,146.0,143.0,162.0,150.0,119.0,109.0,92.0,94.0,95.0,86.0,107.0,80.0,108.0,101.0,92.0,114.0,100.0,98.0,103.0,112.0,106.0,139.0,137.0,148.0,144.0,150.0,163.0,144.0,156.0,154.0,185.0,166.0,162.0,172.0,161.0,145.0,148.0,157.0,142.0,126.0,113.0,104.0,106.0,74.0,90.0,92.0,68.0,69.0,69.0,43.0,62.0,52.0,45.0,50.0,31.0,28.0,26.0,24.0,23.0,30.0,24.0,23.0,25.0,34.0,34.0,22.0,24.0,27.0,15.0,15.0,13.0,18.0,16.0,14.0,9.0,16.0,6.0,10.0,6.0,5.0,1.0,8.0 Y00560,121.0,138.0,146.0,146.0,158.0,156.0,168.0,158.0,138.0,143.0,123.0,118.0,124.0,123.0,127.0,138.0,118.0,74.0,84.0,76.0,77.0,58.0,80.0,75.0,81.0,99.0,117.0,120.0,135.0,158.0,176.0,182.0,200.0,216.0,184.0,171.0,206.0,194.0,158.0,206.0,165.0,163.0,136.0,156.0,141.0,143.0,115.0,121.0,82.0,89.0,101.0,83.0,102.0,111.0,87.0,93.0,90.0,71.0,86.0,73.0,63.0,76.0,87.0,77.0,88.0,58.0,66.0,62.0,52.0,44.0,50.0,44.0,35.0,45.0,54.0,32.0,36.0,34.0,41.0,36.0,33.0,29.0,28.0,26.0,19.0,16.0,12.0,21.0,9.0,12.0,8.0,8.0,3.0,6.0,5.0,12.0 Y02332,122.0,127.0,154.0,125.0,114.0,119.0,138.0,121.0,131.0,124.0,123.0,109.0,127.0,122.0,147.0,121.0,135.0,138.0,128.0,108.0,122.0,134.0,116.0,129.0,172.0,163.0,149.0,178.0,172.0,152.0,159.0,158.0,146.0,142.0,157.0,146.0,153.0,140.0,158.0,129.0,136.0,121.0,139.0,128.0,130.0,120.0,136.0,113.0,108.0,94.0,86.0,95.0,72.0,86.0,81.0,90.0,84.0,79.0,54.0,75.0,49.0,61.0,72.0,50.0,58.0,68.0,48.0,49.0,53.0,50.0,48.0,38.0,51.0,42.0,44.0,40.0,20.0,35.0,30.0,24.0,39.0,23.0,24.0,16.0,11.0,14.0,23.0,17.0,15.0,14.0,5.0,6.0,3.0,5.0,7.0,12.0 Y02463,87.0,94.0,86.0,95.0,87.0,71.0,84.0,80.0,93.0,66.0,71.0,78.0,61.0,66.0,47.0,63.0,56.0,62.0,49.0,48.0,66.0,69.0,60.0,93.0,138.0,144.0,181.0,169.0,185.0,209.0,201.0,207.0,155.0,155.0,162.0,169.0,147.0,142.0,118.0,109.0,100.0,98.0,96.0,91.0,82.0,78.0,70.0,50.0,50.0,60.0,59.0,48.0,46.0,36.0,48.0,34.0,50.0,27.0,33.0,27.0,31.0,20.0,19.0,23.0,21.0,19.0,16.0,23.0,15.0,15.0,15.0,11.0,7.0,8.0,8.0,5.0,5.0,3.0,7.0,3.0,3.0,2.0,,2.0,2.0,,,1.0,,,2.0,,,1.0,,2.0 Y02900,147.0,163.0,172.0,169.0,178.0,187.0,195.0,192.0,202.0,192.0,176.0,180.0,155.0,171.0,144.0,175.0,160.0,142.0,122.0,70.0,96.0,81.0,84.0,99.0,127.0,164.0,171.0,187.0,183.0,200.0,192.0,225.0,245.0,257.0,261.0,255.0,289.0,299.0,251.0,257.0,242.0,254.0,259.0,251.0,219.0,184.0,190.0,150.0,165.0,127.0,128.0,98.0,95.0,87.0,77.0,93.0,75.0,75.0,59.0,52.0,40.0,51.0,70.0,54.0,58.0,50.0,50.0,47.0,36.0,40.0,38.0,25.0,31.0,19.0,16.0,17.0,18.0,16.0,10.0,7.0,12.0,7.0,7.0,8.0,2.0,2.0,5.0,1.0,1.0,3.0,4.0,1.0,1.0,1.0,,3.0 Y06810,87.0,128.0,134.0,118.0,114.0,118.0,93.0,111.0,94.0,106.0,116.0,103.0,120.0,121.0,98.0,89.0,72.0,72.0,70.0,45.0,54.0,56.0,61.0,76.0,107.0,125.0,137.0,138.0,157.0,128.0,162.0,162.0,148.0,182.0,172.0,173.0,180.0,170.0,142.0,160.0,166.0,140.0,136.0,131.0,136.0,120.0,101.0,98.0,85.0,85.0,82.0,71.0,67.0,65.0,74.0,51.0,59.0,64.0,54.0,43.0,54.0,57.0,54.0,54.0,58.0,52.0,47.0,43.0,43.0,44.0,39.0,27.0,42.0,28.0,39.0,24.0,23.0,21.0,28.0,7.0,9.0,11.0,7.0,14.0,9.0,8.0,10.0,10.0,4.0,6.0,2.0,4.0,1.0,1.0,2.0,2.0 Y07040,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,2.0,,1.0,,1.0,1.0,1.0,,1.0,2.0,2.0,,,,1.0,,,,,,1.0,,2.0,2.0,2.0,,,2.0,,1.0,2.0,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,,,,,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 M85001,16.0,19.0,23.0,29.0,33.0,36.0,33.0,41.0,43.0,24.0,34.0,41.0,42.0,29.0,32.0,30.0,30.0,30.0,39.0,29.0,30.0,25.0,25.0,20.0,28.0,24.0,30.0,34.0,37.0,39.0,32.0,45.0,27.0,52.0,46.0,31.0,46.0,26.0,48.0,31.0,36.0,36.0,28.0,25.0,37.0,27.0,30.0,25.0,21.0,28.0,33.0,26.0,35.0,43.0,38.0,43.0,36.0,36.0,30.0,23.0,37.0,40.0,22.0,46.0,21.0,24.0,21.0,21.0,23.0,18.0,19.0,17.0,26.0,11.0,18.0,19.0,13.0,13.0,13.0,12.0,10.0,11.0,9.0,8.0,5.0,9.0,9.0,7.0,3.0,6.0,1.0,7.0,4.0,2.0,,3.0 M85005,47.0,55.0,38.0,40.0,43.0,45.0,51.0,60.0,45.0,55.0,67.0,47.0,89.0,73.0,54.0,68.0,85.0,63.0,77.0,65.0,77.0,55.0,74.0,84.0,61.0,61.0,57.0,51.0,53.0,60.0,48.0,57.0,37.0,50.0,39.0,50.0,57.0,63.0,61.0,55.0,52.0,51.0,58.0,50.0,51.0,37.0,44.0,53.0,40.0,44.0,42.0,36.0,41.0,38.0,37.0,40.0,25.0,42.0,35.0,29.0,16.0,27.0,23.0,34.0,27.0,20.0,9.0,17.0,12.0,19.0,20.0,17.0,16.0,9.0,11.0,16.0,9.0,13.0,5.0,10.0,12.0,11.0,10.0,9.0,4.0,7.0,7.0,8.0,3.0,5.0,9.0,5.0,3.0,3.0,4.0,6.0 M85006,60.0,47.0,68.0,61.0,73.0,61.0,65.0,66.0,83.0,77.0,73.0,76.0,79.0,88.0,75.0,84.0,78.0,85.0,76.0,63.0,75.0,75.0,59.0,63.0,65.0,48.0,70.0,58.0,72.0,70.0,61.0,60.0,79.0,79.0,65.0,88.0,95.0,98.0,78.0,83.0,91.0,91.0,84.0,72.0,74.0,75.0,74.0,50.0,58.0,41.0,53.0,45.0,63.0,51.0,50.0,62.0,58.0,62.0,47.0,64.0,55.0,65.0,69.0,68.0,52.0,51.0,47.0,47.0,45.0,34.0,28.0,40.0,40.0,47.0,28.0,34.0,37.0,32.0,34.0,36.0,21.0,26.0,29.0,14.0,22.0,22.0,11.0,16.0,14.0,19.0,10.0,4.0,8.0,10.0,1.0,11.0 M85007,96.0,109.0,116.0,110.0,109.0,123.0,121.0,101.0,121.0,122.0,115.0,118.0,103.0,100.0,98.0,117.0,107.0,115.0,82.0,93.0,76.0,89.0,85.0,91.0,98.0,110.0,124.0,132.0,136.0,160.0,161.0,144.0,177.0,188.0,175.0,149.0,160.0,168.0,122.0,119.0,123.0,118.0,114.0,114.0,98.0,85.0,95.0,81.0,79.0,91.0,89.0,93.0,102.0,84.0,93.0,91.0,91.0,87.0,84.0,84.0,97.0,72.0,80.0,82.0,81.0,85.0,67.0,70.0,70.0,63.0,57.0,52.0,59.0,54.0,59.0,66.0,57.0,49.0,62.0,50.0,38.0,60.0,45.0,48.0,37.0,34.0,37.0,40.0,38.0,32.0,27.0,19.0,28.0,21.0,25.0,68.0 M85009,19.0,26.0,43.0,42.0,43.0,34.0,49.0,36.0,38.0,50.0,44.0,39.0,44.0,45.0,45.0,23.0,46.0,40.0,37.0,37.0,42.0,34.0,38.0,47.0,47.0,37.0,43.0,34.0,52.0,54.0,61.0,53.0,49.0,45.0,62.0,48.0,52.0,45.0,47.0,39.0,52.0,47.0,42.0,53.0,41.0,31.0,42.0,36.0,33.0,41.0,40.0,26.0,32.0,22.0,34.0,31.0,30.0,38.0,42.0,37.0,34.0,41.0,31.0,43.0,40.0,29.0,21.0,34.0,28.0,33.0,33.0,18.0,14.0,18.0,16.0,29.0,18.0,26.0,22.0,12.0,21.0,22.0,23.0,18.0,16.0,14.0,17.0,13.0,18.0,5.0,12.0,10.0,4.0,4.0,2.0,7.0 M85011,33.0,42.0,39.0,33.0,39.0,33.0,42.0,42.0,42.0,45.0,49.0,46.0,43.0,43.0,59.0,47.0,41.0,53.0,55.0,42.0,46.0,44.0,39.0,53.0,45.0,57.0,55.0,50.0,49.0,47.0,47.0,55.0,65.0,46.0,43.0,44.0,50.0,51.0,59.0,42.0,53.0,55.0,54.0,53.0,54.0,51.0,41.0,35.0,41.0,43.0,36.0,30.0,34.0,45.0,33.0,38.0,43.0,43.0,43.0,51.0,53.0,46.0,33.0,52.0,48.0,37.0,22.0,46.0,38.0,29.0,33.0,35.0,35.0,16.0,32.0,15.0,21.0,31.0,38.0,26.0,26.0,27.0,19.0,13.0,24.0,13.0,17.0,17.0,14.0,18.0,7.0,10.0,11.0,13.0,9.0,18.0 M85013,25.0,28.0,23.0,24.0,18.0,20.0,25.0,23.0,27.0,14.0,33.0,36.0,30.0,36.0,30.0,30.0,34.0,29.0,26.0,40.0,31.0,30.0,24.0,28.0,27.0,33.0,36.0,24.0,35.0,16.0,16.0,33.0,25.0,25.0,29.0,27.0,26.0,34.0,31.0,24.0,31.0,23.0,27.0,31.0,28.0,30.0,24.0,17.0,19.0,25.0,23.0,22.0,27.0,20.0,26.0,20.0,13.0,24.0,23.0,21.0,11.0,17.0,18.0,16.0,28.0,17.0,26.0,14.0,13.0,12.0,10.0,11.0,17.0,9.0,5.0,13.0,17.0,7.0,11.0,9.0,7.0,12.0,8.0,9.0,7.0,7.0,9.0,4.0,4.0,2.0,4.0,1.0,3.0,5.0,,2.0 M85014,37.0,19.0,20.0,31.0,39.0,33.0,33.0,29.0,34.0,23.0,27.0,31.0,21.0,23.0,32.0,26.0,20.0,42.0,19.0,23.0,26.0,25.0,38.0,32.0,31.0,27.0,21.0,44.0,47.0,43.0,28.0,42.0,34.0,37.0,29.0,46.0,31.0,26.0,33.0,39.0,24.0,31.0,29.0,36.0,31.0,21.0,18.0,22.0,12.0,17.0,19.0,16.0,21.0,20.0,21.0,26.0,19.0,22.0,23.0,18.0,27.0,19.0,29.0,21.0,24.0,16.0,17.0,17.0,9.0,11.0,14.0,10.0,9.0,8.0,8.0,5.0,10.0,14.0,11.0,11.0,10.0,7.0,6.0,9.0,6.0,6.0,2.0,3.0,6.0,2.0,5.0,2.0,2.0,1.0,1.0,4.0 M85016,31.0,20.0,30.0,31.0,32.0,27.0,38.0,45.0,39.0,46.0,40.0,36.0,42.0,43.0,39.0,31.0,36.0,36.0,37.0,18.0,39.0,32.0,34.0,32.0,21.0,32.0,25.0,34.0,39.0,43.0,31.0,34.0,33.0,27.0,33.0,42.0,52.0,45.0,43.0,38.0,42.0,39.0,39.0,33.0,30.0,25.0,27.0,25.0,30.0,29.0,29.0,29.0,26.0,26.0,29.0,32.0,35.0,27.0,31.0,25.0,35.0,34.0,34.0,27.0,26.0,21.0,17.0,31.0,30.0,21.0,22.0,26.0,14.0,22.0,17.0,18.0,17.0,27.0,18.0,12.0,21.0,22.0,19.0,16.0,5.0,6.0,4.0,9.0,3.0,6.0,4.0,3.0,2.0,6.0,1.0,8.0 M85018,51.0,47.0,66.0,56.0,62.0,71.0,60.0,89.0,70.0,67.0,76.0,71.0,77.0,68.0,69.0,79.0,66.0,73.0,63.0,68.0,53.0,53.0,39.0,59.0,50.0,45.0,58.0,57.0,68.0,58.0,63.0,83.0,66.0,67.0,77.0,92.0,101.0,77.0,56.0,75.0,70.0,64.0,85.0,73.0,70.0,81.0,70.0,57.0,43.0,47.0,54.0,60.0,56.0,71.0,70.0,53.0,69.0,72.0,66.0,72.0,66.0,77.0,56.0,66.0,68.0,56.0,57.0,76.0,45.0,61.0,46.0,48.0,52.0,40.0,39.0,50.0,48.0,44.0,57.0,40.0,44.0,37.0,24.0,25.0,29.0,28.0,19.0,27.0,35.0,11.0,14.0,13.0,13.0,8.0,8.0,15.0 M85019,83.0,99.0,90.0,108.0,100.0,120.0,111.0,108.0,134.0,125.0,113.0,111.0,122.0,128.0,112.0,116.0,139.0,130.0,117.0,116.0,103.0,105.0,92.0,122.0,100.0,117.0,119.0,137.0,129.0,127.0,152.0,143.0,153.0,133.0,123.0,158.0,143.0,150.0,139.0,177.0,129.0,141.0,129.0,127.0,123.0,133.0,126.0,120.0,106.0,114.0,85.0,102.0,111.0,111.0,106.0,115.0,131.0,130.0,117.0,104.0,127.0,115.0,104.0,94.0,115.0,78.0,85.0,82.0,74.0,76.0,61.0,65.0,60.0,64.0,62.0,61.0,61.0,68.0,73.0,59.0,58.0,54.0,46.0,36.0,39.0,36.0,37.0,32.0,28.0,28.0,18.0,15.0,11.0,18.0,6.0,29.0 M85020,145.0,116.0,125.0,132.0,145.0,135.0,146.0,173.0,164.0,183.0,160.0,176.0,179.0,179.0,169.0,202.0,205.0,181.0,187.0,178.0,148.0,172.0,159.0,152.0,156.0,168.0,163.0,175.0,160.0,161.0,167.0,127.0,172.0,173.0,143.0,143.0,163.0,161.0,178.0,167.0,161.0,163.0,146.0,153.0,149.0,153.0,115.0,114.0,117.0,124.0,108.0,105.0,110.0,92.0,93.0,105.0,79.0,97.0,102.0,81.0,84.0,74.0,95.0,70.0,74.0,62.0,53.0,60.0,56.0,54.0,44.0,44.0,49.0,39.0,31.0,34.0,29.0,25.0,18.0,22.0,19.0,26.0,23.0,30.0,24.0,18.0,17.0,20.0,14.0,10.0,11.0,10.0,8.0,5.0,3.0,11.0 M85021,23.0,21.0,20.0,25.0,21.0,13.0,13.0,20.0,18.0,14.0,13.0,21.0,18.0,26.0,14.0,24.0,19.0,18.0,15.0,13.0,16.0,30.0,25.0,35.0,45.0,47.0,72.0,77.0,79.0,70.0,68.0,60.0,54.0,62.0,64.0,51.0,47.0,43.0,42.0,35.0,37.0,33.0,24.0,43.0,32.0,23.0,31.0,21.0,23.0,28.0,15.0,21.0,18.0,18.0,13.0,20.0,19.0,15.0,13.0,15.0,11.0,12.0,15.0,15.0,9.0,11.0,9.0,9.0,11.0,12.0,4.0,5.0,13.0,6.0,7.0,4.0,7.0,3.0,4.0,4.0,,7.0,4.0,5.0,3.0,5.0,3.0,4.0,1.0,3.0,1.0,1.0,2.0,1.0,2.0,2.0 M85023,44.0,40.0,45.0,55.0,50.0,64.0,52.0,65.0,71.0,66.0,76.0,77.0,71.0,76.0,68.0,90.0,69.0,74.0,74.0,69.0,73.0,67.0,43.0,51.0,63.0,74.0,47.0,43.0,50.0,52.0,57.0,52.0,68.0,84.0,67.0,71.0,67.0,68.0,76.0,58.0,65.0,71.0,82.0,58.0,73.0,58.0,63.0,61.0,50.0,52.0,62.0,46.0,61.0,64.0,67.0,57.0,53.0,53.0,63.0,53.0,53.0,56.0,57.0,46.0,52.0,46.0,46.0,42.0,39.0,25.0,28.0,40.0,40.0,30.0,28.0,25.0,39.0,20.0,33.0,23.0,29.0,15.0,21.0,18.0,21.0,13.0,13.0,9.0,21.0,9.0,6.0,12.0,9.0,6.0,11.0,13.0 M85024,55.0,51.0,41.0,41.0,39.0,50.0,48.0,52.0,67.0,48.0,55.0,52.0,46.0,58.0,49.0,56.0,69.0,51.0,54.0,58.0,52.0,51.0,65.0,67.0,70.0,56.0,62.0,52.0,52.0,72.0,49.0,41.0,48.0,56.0,47.0,51.0,64.0,47.0,51.0,47.0,58.0,51.0,35.0,46.0,40.0,51.0,38.0,50.0,39.0,39.0,38.0,35.0,39.0,27.0,38.0,30.0,21.0,34.0,29.0,20.0,30.0,22.0,21.0,26.0,19.0,22.0,17.0,18.0,22.0,20.0,24.0,13.0,18.0,13.0,11.0,12.0,16.0,12.0,5.0,2.0,14.0,6.0,4.0,9.0,3.0,4.0,3.0,5.0,6.0,3.0,10.0,8.0,4.0,4.0,1.0,10.0 M85025,63.0,80.0,71.0,66.0,58.0,71.0,50.0,68.0,50.0,55.0,58.0,51.0,49.0,47.0,49.0,46.0,43.0,41.0,73.0,139.0,151.0,174.0,322.0,403.0,393.0,307.0,233.0,363.0,244.0,229.0,240.0,171.0,219.0,217.0,173.0,155.0,166.0,131.0,109.0,99.0,84.0,99.0,98.0,77.0,68.0,71.0,52.0,49.0,45.0,39.0,43.0,58.0,46.0,48.0,42.0,67.0,57.0,38.0,28.0,49.0,44.0,53.0,46.0,42.0,43.0,33.0,35.0,36.0,25.0,22.0,24.0,22.0,23.0,12.0,18.0,15.0,9.0,17.0,18.0,15.0,12.0,12.0,7.0,13.0,14.0,8.0,6.0,8.0,10.0,4.0,6.0,2.0,4.0,4.0,1.0,7.0 M85026,50.0,46.0,50.0,60.0,78.0,67.0,71.0,69.0,75.0,78.0,82.0,77.0,91.0,85.0,79.0,76.0,88.0,74.0,54.0,54.0,50.0,59.0,62.0,69.0,61.0,59.0,63.0,64.0,70.0,72.0,77.0,71.0,71.0,82.0,98.0,73.0,86.0,81.0,113.0,95.0,92.0,93.0,93.0,90.0,86.0,90.0,85.0,103.0,84.0,69.0,84.0,94.0,96.0,91.0,102.0,103.0,128.0,128.0,100.0,131.0,134.0,136.0,116.0,113.0,123.0,107.0,107.0,90.0,96.0,113.0,105.0,104.0,119.0,97.0,101.0,104.0,83.0,100.0,118.0,70.0,74.0,85.0,64.0,50.0,45.0,29.0,34.0,42.0,36.0,34.0,28.0,20.0,16.0,18.0,14.0,32.0 M85027,39.0,46.0,33.0,33.0,43.0,41.0,39.0,47.0,43.0,43.0,37.0,54.0,53.0,59.0,51.0,43.0,55.0,56.0,35.0,46.0,49.0,22.0,52.0,44.0,42.0,43.0,44.0,58.0,63.0,52.0,66.0,61.0,62.0,54.0,51.0,44.0,42.0,54.0,56.0,71.0,44.0,43.0,63.0,48.0,61.0,50.0,50.0,45.0,39.0,42.0,49.0,53.0,59.0,68.0,57.0,52.0,66.0,57.0,60.0,52.0,57.0,56.0,54.0,44.0,62.0,43.0,43.0,35.0,43.0,45.0,47.0,37.0,45.0,39.0,28.0,39.0,28.0,38.0,31.0,24.0,20.0,18.0,27.0,24.0,20.0,17.0,14.0,13.0,14.0,7.0,12.0,10.0,3.0,5.0,3.0,8.0 M85028,119.0,121.0,123.0,134.0,152.0,163.0,158.0,153.0,177.0,159.0,144.0,164.0,197.0,150.0,153.0,164.0,176.0,160.0,133.0,127.0,106.0,122.0,153.0,130.0,131.0,154.0,141.0,161.0,158.0,172.0,164.0,160.0,157.0,188.0,207.0,215.0,179.0,207.0,184.0,204.0,207.0,208.0,188.0,200.0,183.0,181.0,164.0,159.0,162.0,171.0,146.0,165.0,157.0,163.0,158.0,146.0,163.0,162.0,137.0,150.0,119.0,143.0,124.0,124.0,130.0,123.0,103.0,114.0,127.0,98.0,97.0,129.0,116.0,98.0,95.0,92.0,103.0,94.0,118.0,62.0,87.0,90.0,82.0,63.0,61.0,57.0,37.0,36.0,33.0,37.0,28.0,26.0,15.0,17.0,15.0,33.0 M85029,80.0,84.0,90.0,88.0,80.0,80.0,89.0,87.0,110.0,125.0,107.0,109.0,101.0,131.0,124.0,117.0,97.0,107.0,98.0,101.0,109.0,79.0,115.0,146.0,128.0,124.0,130.0,137.0,115.0,128.0,135.0,132.0,127.0,127.0,133.0,140.0,135.0,147.0,139.0,141.0,121.0,141.0,138.0,155.0,146.0,134.0,119.0,113.0,107.0,113.0,113.0,109.0,102.0,114.0,123.0,114.0,119.0,112.0,117.0,120.0,120.0,100.0,116.0,153.0,109.0,99.0,93.0,107.0,105.0,100.0,90.0,99.0,102.0,87.0,90.0,74.0,83.0,95.0,105.0,62.0,99.0,81.0,51.0,58.0,56.0,56.0,66.0,43.0,47.0,41.0,24.0,33.0,27.0,33.0,19.0,49.0 M85030,99.0,91.0,74.0,114.0,93.0,102.0,108.0,133.0,106.0,123.0,110.0,133.0,122.0,139.0,128.0,112.0,118.0,119.0,114.0,98.0,116.0,82.0,110.0,96.0,82.0,105.0,108.0,110.0,128.0,102.0,126.0,139.0,131.0,139.0,142.0,146.0,129.0,146.0,132.0,123.0,127.0,124.0,129.0,128.0,130.0,127.0,106.0,101.0,108.0,104.0,92.0,119.0,104.0,99.0,101.0,114.0,111.0,98.0,114.0,111.0,124.0,108.0,93.0,101.0,98.0,114.0,102.0,87.0,93.0,85.0,78.0,73.0,84.0,70.0,51.0,71.0,63.0,55.0,61.0,36.0,58.0,38.0,48.0,38.0,40.0,32.0,34.0,29.0,22.0,18.0,14.0,17.0,11.0,11.0,8.0,18.0 M85031,53.0,49.0,61.0,74.0,52.0,86.0,66.0,66.0,66.0,60.0,74.0,61.0,77.0,76.0,71.0,72.0,65.0,59.0,70.0,87.0,62.0,58.0,47.0,65.0,61.0,58.0,50.0,53.0,62.0,69.0,90.0,76.0,78.0,80.0,83.0,96.0,94.0,96.0,78.0,70.0,54.0,64.0,67.0,72.0,75.0,83.0,72.0,62.0,48.0,42.0,54.0,66.0,57.0,84.0,72.0,64.0,69.0,71.0,85.0,69.0,68.0,65.0,86.0,68.0,56.0,58.0,62.0,68.0,51.0,43.0,48.0,45.0,44.0,45.0,45.0,69.0,37.0,44.0,47.0,40.0,38.0,34.0,40.0,32.0,23.0,19.0,20.0,16.0,19.0,16.0,14.0,14.0,13.0,11.0,10.0,19.0 M85033,68.0,69.0,69.0,98.0,77.0,105.0,102.0,115.0,116.0,118.0,114.0,138.0,129.0,115.0,118.0,121.0,133.0,104.0,90.0,76.0,80.0,71.0,69.0,66.0,72.0,79.0,87.0,86.0,68.0,79.0,101.0,100.0,126.0,118.0,103.0,114.0,129.0,135.0,126.0,132.0,145.0,146.0,151.0,121.0,135.0,124.0,137.0,122.0,122.0,123.0,118.0,120.0,123.0,140.0,130.0,123.0,120.0,100.0,107.0,111.0,127.0,122.0,101.0,107.0,126.0,101.0,104.0,90.0,79.0,97.0,87.0,73.0,90.0,81.0,90.0,101.0,85.0,77.0,99.0,63.0,87.0,60.0,61.0,62.0,34.0,44.0,35.0,41.0,38.0,23.0,19.0,19.0,13.0,17.0,12.0,23.0 M85034,102.0,100.0,101.0,105.0,97.0,113.0,146.0,134.0,147.0,146.0,137.0,165.0,132.0,185.0,188.0,173.0,180.0,170.0,142.0,163.0,148.0,158.0,149.0,161.0,158.0,154.0,147.0,127.0,117.0,143.0,103.0,112.0,101.0,105.0,123.0,116.0,129.0,132.0,140.0,115.0,144.0,121.0,110.0,104.0,102.0,127.0,81.0,89.0,116.0,95.0,87.0,92.0,93.0,83.0,82.0,80.0,92.0,69.0,53.0,60.0,64.0,51.0,60.0,44.0,49.0,68.0,40.0,44.0,34.0,36.0,36.0,25.0,22.0,23.0,33.0,31.0,23.0,22.0,14.0,16.0,17.0,20.0,21.0,11.0,11.0,17.0,15.0,9.0,6.0,7.0,5.0,3.0,8.0,3.0,4.0,6.0 M85035,31.0,28.0,28.0,28.0,24.0,38.0,45.0,39.0,49.0,37.0,34.0,42.0,40.0,38.0,42.0,54.0,39.0,50.0,37.0,38.0,31.0,31.0,34.0,23.0,42.0,22.0,45.0,41.0,43.0,38.0,41.0,35.0,43.0,43.0,43.0,42.0,47.0,46.0,38.0,35.0,39.0,40.0,34.0,38.0,24.0,40.0,47.0,26.0,28.0,48.0,34.0,45.0,45.0,39.0,43.0,42.0,44.0,34.0,31.0,42.0,36.0,23.0,29.0,24.0,17.0,20.0,24.0,21.0,14.0,16.0,17.0,23.0,20.0,16.0,25.0,15.0,20.0,27.0,19.0,17.0,22.0,9.0,14.0,10.0,6.0,6.0,6.0,5.0,5.0,,4.0,1.0,2.0,1.0,1.0,6.0 M85037,30.0,43.0,23.0,47.0,39.0,56.0,56.0,46.0,50.0,58.0,62.0,54.0,47.0,52.0,49.0,72.0,56.0,51.0,37.0,45.0,43.0,45.0,28.0,36.0,34.0,47.0,36.0,40.0,45.0,52.0,44.0,56.0,54.0,63.0,49.0,52.0,53.0,62.0,68.0,69.0,74.0,71.0,72.0,63.0,89.0,64.0,64.0,68.0,62.0,68.0,59.0,66.0,66.0,66.0,69.0,76.0,68.0,65.0,69.0,71.0,51.0,67.0,60.0,70.0,59.0,52.0,64.0,59.0,60.0,53.0,52.0,57.0,59.0,49.0,46.0,55.0,45.0,55.0,55.0,36.0,51.0,26.0,32.0,31.0,34.0,26.0,22.0,21.0,14.0,9.0,14.0,10.0,2.0,7.0,5.0,16.0 M85041,25.0,12.0,28.0,24.0,23.0,22.0,32.0,32.0,28.0,37.0,29.0,22.0,21.0,30.0,36.0,33.0,20.0,31.0,112.0,331.0,569.0,712.0,701.0,672.0,650.0,263.0,216.0,170.0,140.0,204.0,85.0,75.0,75.0,67.0,67.0,73.0,61.0,52.0,46.0,48.0,37.0,41.0,33.0,41.0,29.0,31.0,44.0,22.0,26.0,22.0,22.0,26.0,23.0,21.0,30.0,16.0,22.0,22.0,27.0,20.0,13.0,13.0,20.0,23.0,16.0,20.0,19.0,25.0,11.0,17.0,19.0,14.0,17.0,15.0,10.0,16.0,15.0,14.0,15.0,11.0,12.0,9.0,11.0,11.0,13.0,6.0,4.0,11.0,15.0,6.0,7.0,3.0,5.0,5.0,6.0,13.0 M85042,19.0,23.0,17.0,22.0,26.0,19.0,30.0,20.0,18.0,22.0,35.0,22.0,16.0,22.0,26.0,22.0,21.0,22.0,31.0,24.0,30.0,35.0,45.0,62.0,41.0,40.0,46.0,38.0,39.0,35.0,30.0,49.0,40.0,41.0,41.0,34.0,42.0,36.0,30.0,32.0,30.0,33.0,26.0,21.0,29.0,20.0,34.0,40.0,30.0,42.0,20.0,23.0,29.0,34.0,22.0,29.0,32.0,35.0,26.0,19.0,26.0,21.0,31.0,29.0,30.0,27.0,19.0,30.0,24.0,30.0,17.0,20.0,25.0,18.0,28.0,21.0,12.0,25.0,21.0,13.0,16.0,14.0,6.0,10.0,18.0,14.0,15.0,5.0,8.0,9.0,4.0,6.0,3.0,2.0,2.0,3.0 M85043,18.0,23.0,21.0,19.0,23.0,29.0,24.0,25.0,29.0,32.0,25.0,36.0,42.0,37.0,34.0,30.0,32.0,43.0,40.0,30.0,34.0,27.0,21.0,20.0,28.0,25.0,29.0,30.0,26.0,20.0,26.0,32.0,26.0,25.0,34.0,47.0,29.0,37.0,28.0,35.0,31.0,35.0,26.0,38.0,22.0,32.0,29.0,35.0,26.0,15.0,17.0,26.0,26.0,28.0,27.0,32.0,21.0,31.0,24.0,21.0,21.0,28.0,23.0,27.0,19.0,16.0,27.0,24.0,21.0,15.0,24.0,17.0,16.0,36.0,25.0,23.0,24.0,22.0,13.0,16.0,13.0,10.0,9.0,6.0,9.0,6.0,3.0,11.0,5.0,8.0,7.0,4.0,1.0,4.0,2.0,5.0 M85046,165.0,197.0,215.0,251.0,235.0,278.0,279.0,330.0,328.0,323.0,357.0,346.0,373.0,334.0,338.0,304.0,337.0,328.0,274.0,223.0,226.0,209.0,221.0,241.0,232.0,255.0,263.0,265.0,250.0,267.0,263.0,277.0,312.0,306.0,322.0,305.0,333.0,349.0,398.0,372.0,398.0,380.0,385.0,405.0,374.0,397.0,362.0,366.0,397.0,368.0,356.0,318.0,321.0,362.0,392.0,341.0,352.0,392.0,334.0,356.0,397.0,340.0,367.0,341.0,316.0,289.0,297.0,279.0,305.0,264.0,239.0,256.0,277.0,281.0,237.0,269.0,294.0,348.0,295.0,258.0,285.0,252.0,215.0,183.0,169.0,156.0,186.0,140.0,118.0,141.0,103.0,89.0,66.0,66.0,52.0,100.0 M85047,21.0,28.0,36.0,33.0,27.0,38.0,43.0,37.0,39.0,42.0,44.0,42.0,34.0,44.0,39.0,34.0,40.0,35.0,36.0,26.0,30.0,34.0,33.0,30.0,36.0,35.0,45.0,39.0,37.0,34.0,30.0,46.0,35.0,42.0,53.0,29.0,44.0,63.0,51.0,42.0,55.0,50.0,50.0,49.0,25.0,35.0,43.0,35.0,32.0,41.0,43.0,39.0,23.0,54.0,34.0,40.0,53.0,45.0,39.0,39.0,43.0,39.0,45.0,44.0,41.0,35.0,36.0,33.0,31.0,21.0,31.0,40.0,27.0,29.0,23.0,32.0,31.0,27.0,30.0,14.0,26.0,25.0,20.0,11.0,18.0,18.0,12.0,13.0,10.0,5.0,7.0,4.0,3.0,5.0,1.0,9.0 M85048,46.0,52.0,63.0,57.0,61.0,59.0,57.0,51.0,54.0,64.0,60.0,66.0,68.0,66.0,50.0,81.0,53.0,67.0,70.0,60.0,58.0,64.0,62.0,68.0,54.0,63.0,63.0,85.0,91.0,72.0,68.0,79.0,82.0,76.0,80.0,60.0,70.0,78.0,75.0,75.0,77.0,73.0,84.0,64.0,69.0,57.0,68.0,63.0,49.0,78.0,67.0,74.0,69.0,81.0,90.0,78.0,84.0,57.0,87.0,89.0,69.0,66.0,88.0,76.0,65.0,57.0,62.0,59.0,55.0,36.0,45.0,59.0,59.0,49.0,59.0,64.0,64.0,55.0,67.0,43.0,50.0,46.0,32.0,38.0,36.0,34.0,33.0,34.0,21.0,24.0,21.0,14.0,9.0,7.0,10.0,24.0 M85051,46.0,50.0,56.0,55.0,58.0,39.0,61.0,42.0,60.0,52.0,49.0,53.0,54.0,45.0,53.0,53.0,67.0,80.0,64.0,69.0,78.0,71.0,66.0,70.0,79.0,81.0,72.0,63.0,81.0,82.0,70.0,74.0,63.0,72.0,56.0,54.0,70.0,46.0,60.0,56.0,57.0,50.0,66.0,39.0,38.0,46.0,44.0,35.0,40.0,24.0,33.0,39.0,37.0,32.0,35.0,30.0,29.0,23.0,20.0,21.0,27.0,19.0,16.0,20.0,21.0,19.0,16.0,16.0,21.0,21.0,19.0,21.0,23.0,9.0,9.0,13.0,12.0,12.0,7.0,8.0,9.0,6.0,3.0,7.0,7.0,7.0,2.0,6.0,3.0,,4.0,3.0,,2.0,1.0,4.0 M85053,31.0,34.0,45.0,42.0,40.0,39.0,52.0,63.0,52.0,50.0,49.0,52.0,49.0,43.0,47.0,60.0,69.0,54.0,63.0,69.0,58.0,52.0,51.0,52.0,57.0,53.0,73.0,48.0,53.0,32.0,62.0,53.0,46.0,34.0,50.0,45.0,42.0,54.0,58.0,42.0,49.0,42.0,54.0,63.0,52.0,40.0,35.0,34.0,45.0,31.0,29.0,27.0,28.0,36.0,30.0,37.0,39.0,23.0,24.0,30.0,31.0,24.0,37.0,34.0,26.0,25.0,24.0,24.0,23.0,26.0,22.0,19.0,17.0,18.0,12.0,15.0,13.0,12.0,12.0,12.0,11.0,10.0,9.0,6.0,6.0,9.0,3.0,3.0,3.0,,2.0,3.0,5.0,2.0,1.0,4.0 M85055,13.0,25.0,19.0,33.0,24.0,36.0,38.0,43.0,50.0,36.0,32.0,50.0,46.0,44.0,39.0,39.0,26.0,39.0,51.0,85.0,67.0,74.0,87.0,81.0,69.0,69.0,97.0,76.0,81.0,66.0,48.0,48.0,47.0,36.0,54.0,42.0,51.0,56.0,42.0,47.0,31.0,40.0,53.0,47.0,38.0,33.0,36.0,41.0,32.0,29.0,28.0,28.0,32.0,24.0,25.0,32.0,29.0,25.0,25.0,15.0,25.0,22.0,31.0,24.0,14.0,20.0,23.0,25.0,16.0,12.0,17.0,17.0,7.0,8.0,13.0,15.0,17.0,15.0,20.0,10.0,16.0,11.0,10.0,8.0,10.0,9.0,7.0,10.0,8.0,6.0,4.0,2.0,4.0,2.0,4.0,2.0 M85056,33.0,30.0,33.0,42.0,34.0,38.0,46.0,46.0,51.0,48.0,38.0,44.0,51.0,43.0,46.0,49.0,43.0,47.0,43.0,37.0,47.0,41.0,46.0,36.0,46.0,48.0,43.0,44.0,38.0,53.0,44.0,45.0,58.0,57.0,62.0,63.0,55.0,51.0,67.0,44.0,56.0,48.0,48.0,36.0,51.0,49.0,38.0,46.0,49.0,41.0,39.0,51.0,40.0,35.0,34.0,61.0,52.0,56.0,51.0,49.0,38.0,32.0,42.0,39.0,41.0,35.0,24.0,36.0,34.0,33.0,23.0,30.0,37.0,36.0,30.0,24.0,32.0,28.0,24.0,19.0,27.0,22.0,20.0,11.0,12.0,17.0,12.0,12.0,9.0,7.0,6.0,2.0,5.0,2.0,6.0,6.0 M85058,61.0,81.0,72.0,95.0,89.0,81.0,95.0,81.0,100.0,93.0,101.0,122.0,111.0,78.0,93.0,105.0,94.0,80.0,73.0,80.0,76.0,82.0,101.0,130.0,137.0,145.0,199.0,212.0,214.0,194.0,173.0,173.0,177.0,174.0,163.0,171.0,163.0,156.0,182.0,148.0,150.0,141.0,153.0,131.0,127.0,140.0,96.0,92.0,99.0,83.0,82.0,81.0,78.0,87.0,80.0,93.0,72.0,59.0,53.0,81.0,60.0,68.0,54.0,61.0,50.0,57.0,57.0,58.0,49.0,53.0,34.0,45.0,39.0,36.0,37.0,35.0,39.0,53.0,39.0,28.0,34.0,25.0,30.0,28.0,30.0,31.0,30.0,15.0,22.0,18.0,9.0,13.0,12.0,9.0,7.0,26.0 M85060,95.0,80.0,73.0,76.0,83.0,85.0,99.0,81.0,96.0,95.0,75.0,99.0,98.0,97.0,98.0,102.0,88.0,121.0,88.0,80.0,93.0,86.0,90.0,99.0,93.0,103.0,128.0,104.0,106.0,111.0,108.0,135.0,118.0,123.0,136.0,128.0,132.0,118.0,101.0,112.0,105.0,108.0,123.0,103.0,105.0,104.0,96.0,79.0,80.0,79.0,102.0,98.0,89.0,107.0,106.0,111.0,92.0,115.0,117.0,129.0,90.0,94.0,98.0,98.0,88.0,80.0,88.0,86.0,63.0,65.0,47.0,46.0,59.0,57.0,53.0,53.0,53.0,68.0,58.0,45.0,58.0,46.0,45.0,39.0,38.0,36.0,35.0,34.0,18.0,23.0,18.0,13.0,14.0,16.0,14.0,20.0 M85061,75.0,55.0,85.0,86.0,77.0,78.0,77.0,82.0,83.0,100.0,107.0,86.0,99.0,76.0,104.0,98.0,118.0,103.0,103.0,115.0,106.0,94.0,98.0,101.0,97.0,98.0,97.0,93.0,101.0,93.0,100.0,93.0,81.0,87.0,87.0,89.0,88.0,93.0,74.0,76.0,79.0,90.0,92.0,67.0,68.0,75.0,70.0,61.0,70.0,74.0,59.0,70.0,71.0,59.0,69.0,53.0,67.0,59.0,71.0,67.0,60.0,49.0,61.0,43.0,46.0,39.0,41.0,40.0,44.0,39.0,33.0,25.0,28.0,27.0,27.0,28.0,22.0,33.0,21.0,22.0,22.0,18.0,11.0,16.0,15.0,16.0,14.0,7.0,14.0,9.0,4.0,5.0,4.0,6.0,2.0,18.0 M85062,13.0,20.0,20.0,36.0,27.0,25.0,35.0,41.0,38.0,38.0,28.0,40.0,33.0,27.0,41.0,36.0,36.0,36.0,34.0,33.0,36.0,22.0,22.0,22.0,19.0,27.0,18.0,20.0,20.0,28.0,28.0,26.0,29.0,23.0,27.0,29.0,40.0,45.0,37.0,38.0,41.0,28.0,38.0,46.0,43.0,41.0,36.0,33.0,41.0,31.0,28.0,27.0,28.0,27.0,28.0,31.0,32.0,33.0,30.0,29.0,31.0,21.0,27.0,38.0,35.0,28.0,25.0,27.0,38.0,22.0,24.0,22.0,33.0,25.0,21.0,28.0,32.0,17.0,21.0,10.0,16.0,19.0,14.0,6.0,11.0,9.0,6.0,12.0,4.0,10.0,7.0,3.0,9.0,10.0,4.0,9.0 M85063,214.0,252.0,253.0,265.0,254.0,288.0,309.0,300.0,318.0,345.0,342.0,332.0,347.0,368.0,363.0,358.0,345.0,370.0,334.0,317.0,295.0,284.0,299.0,288.0,329.0,325.0,341.0,352.0,384.0,385.0,383.0,414.0,383.0,367.0,430.0,421.0,409.0,443.0,368.0,421.0,388.0,388.0,428.0,382.0,425.0,361.0,339.0,357.0,314.0,362.0,324.0,347.0,341.0,360.0,373.0,351.0,355.0,396.0,370.0,350.0,366.0,371.0,316.0,370.0,280.0,326.0,278.0,267.0,235.0,235.0,230.0,213.0,233.0,212.0,213.0,200.0,178.0,229.0,211.0,162.0,156.0,155.0,147.0,137.0,108.0,93.0,125.0,109.0,75.0,78.0,55.0,58.0,44.0,41.0,35.0,75.0 M85065,58.0,72.0,76.0,81.0,84.0,91.0,82.0,100.0,100.0,93.0,81.0,103.0,85.0,73.0,70.0,75.0,70.0,87.0,65.0,71.0,56.0,66.0,59.0,69.0,81.0,83.0,102.0,88.0,99.0,78.0,115.0,105.0,109.0,96.0,116.0,113.0,112.0,135.0,108.0,97.0,126.0,97.0,98.0,103.0,96.0,104.0,85.0,83.0,82.0,78.0,83.0,62.0,92.0,74.0,104.0,96.0,89.0,93.0,90.0,69.0,110.0,92.0,99.0,76.0,74.0,81.0,76.0,72.0,83.0,68.0,78.0,69.0,60.0,52.0,69.0,56.0,46.0,61.0,51.0,53.0,56.0,39.0,38.0,41.0,38.0,41.0,31.0,41.0,35.0,32.0,37.0,34.0,29.0,24.0,18.0,66.0 M85066,41.0,34.0,28.0,49.0,39.0,44.0,51.0,47.0,48.0,50.0,61.0,58.0,63.0,58.0,60.0,56.0,75.0,61.0,49.0,61.0,54.0,47.0,63.0,58.0,59.0,69.0,62.0,64.0,36.0,53.0,40.0,48.0,40.0,41.0,57.0,47.0,45.0,58.0,60.0,55.0,39.0,52.0,34.0,46.0,52.0,42.0,36.0,39.0,40.0,46.0,29.0,29.0,43.0,38.0,33.0,43.0,38.0,35.0,32.0,32.0,29.0,35.0,42.0,35.0,35.0,27.0,22.0,35.0,35.0,31.0,25.0,21.0,33.0,30.0,18.0,24.0,17.0,24.0,22.0,15.0,13.0,10.0,16.0,15.0,11.0,18.0,14.0,12.0,12.0,4.0,5.0,4.0,5.0,7.0,1.0,2.0 M85070,64.0,85.0,74.0,96.0,85.0,117.0,115.0,87.0,114.0,99.0,90.0,87.0,99.0,116.0,97.0,107.0,69.0,70.0,70.0,76.0,70.0,81.0,66.0,61.0,91.0,81.0,76.0,112.0,97.0,115.0,99.0,118.0,115.0,115.0,122.0,134.0,122.0,147.0,110.0,133.0,93.0,121.0,101.0,85.0,112.0,102.0,71.0,67.0,64.0,70.0,67.0,59.0,67.0,65.0,86.0,56.0,75.0,60.0,70.0,76.0,67.0,61.0,70.0,58.0,60.0,53.0,41.0,50.0,47.0,41.0,37.0,37.0,30.0,21.0,49.0,29.0,34.0,37.0,27.0,25.0,24.0,21.0,21.0,21.0,19.0,12.0,22.0,22.0,17.0,12.0,7.0,6.0,7.0,4.0,6.0,10.0 M85071,27.0,25.0,31.0,30.0,38.0,43.0,37.0,39.0,43.0,36.0,46.0,46.0,47.0,45.0,52.0,48.0,54.0,56.0,55.0,66.0,59.0,42.0,31.0,43.0,41.0,33.0,46.0,33.0,50.0,29.0,30.0,35.0,38.0,46.0,57.0,43.0,57.0,54.0,42.0,56.0,37.0,56.0,54.0,54.0,54.0,50.0,53.0,50.0,53.0,53.0,61.0,51.0,45.0,64.0,49.0,56.0,65.0,66.0,59.0,48.0,61.0,68.0,66.0,48.0,55.0,56.0,63.0,49.0,46.0,35.0,41.0,46.0,44.0,44.0,46.0,44.0,43.0,35.0,33.0,33.0,21.0,33.0,30.0,24.0,10.0,13.0,12.0,12.0,13.0,13.0,15.0,6.0,6.0,7.0,4.0,9.0 M85074,25.0,29.0,28.0,30.0,30.0,36.0,31.0,33.0,49.0,45.0,33.0,42.0,39.0,39.0,42.0,34.0,50.0,42.0,32.0,30.0,20.0,25.0,38.0,38.0,46.0,41.0,43.0,55.0,49.0,42.0,75.0,50.0,63.0,54.0,61.0,59.0,54.0,58.0,59.0,61.0,75.0,46.0,59.0,47.0,61.0,69.0,55.0,54.0,56.0,58.0,61.0,53.0,47.0,64.0,40.0,54.0,49.0,55.0,49.0,56.0,54.0,38.0,55.0,52.0,52.0,39.0,40.0,44.0,53.0,41.0,32.0,44.0,40.0,40.0,39.0,35.0,38.0,39.0,35.0,18.0,27.0,19.0,23.0,9.0,17.0,12.0,8.0,8.0,10.0,7.0,8.0,7.0,4.0,4.0,3.0,4.0 M85076,45.0,46.0,46.0,67.0,61.0,61.0,55.0,71.0,63.0,75.0,68.0,71.0,68.0,83.0,79.0,75.0,76.0,81.0,66.0,62.0,77.0,49.0,55.0,56.0,54.0,68.0,67.0,70.0,57.0,61.0,65.0,71.0,68.0,96.0,76.0,85.0,83.0,78.0,83.0,83.0,64.0,68.0,84.0,85.0,71.0,75.0,65.0,80.0,78.0,57.0,53.0,64.0,63.0,82.0,70.0,56.0,61.0,66.0,70.0,62.0,75.0,65.0,53.0,68.0,58.0,56.0,62.0,64.0,58.0,63.0,57.0,56.0,49.0,55.0,48.0,53.0,53.0,43.0,43.0,33.0,35.0,28.0,22.0,20.0,18.0,17.0,16.0,22.0,20.0,15.0,15.0,4.0,5.0,10.0,2.0,12.0 M85077,40.0,37.0,33.0,35.0,52.0,44.0,49.0,49.0,48.0,67.0,54.0,68.0,59.0,76.0,57.0,42.0,51.0,62.0,46.0,52.0,47.0,40.0,38.0,40.0,41.0,40.0,46.0,44.0,42.0,52.0,47.0,53.0,51.0,56.0,62.0,72.0,56.0,60.0,65.0,64.0,50.0,72.0,84.0,71.0,77.0,83.0,76.0,54.0,78.0,62.0,67.0,69.0,79.0,60.0,62.0,57.0,66.0,69.0,66.0,65.0,67.0,41.0,66.0,59.0,58.0,55.0,53.0,47.0,56.0,49.0,58.0,53.0,55.0,66.0,56.0,50.0,45.0,52.0,51.0,44.0,49.0,48.0,50.0,26.0,18.0,32.0,21.0,20.0,25.0,17.0,17.0,18.0,9.0,11.0,6.0,14.0 M85078,52.0,53.0,47.0,55.0,69.0,46.0,49.0,69.0,75.0,78.0,66.0,78.0,72.0,65.0,81.0,91.0,79.0,99.0,79.0,88.0,90.0,73.0,94.0,81.0,79.0,65.0,78.0,64.0,63.0,69.0,60.0,59.0,60.0,57.0,55.0,71.0,76.0,77.0,68.0,72.0,66.0,53.0,68.0,55.0,54.0,72.0,54.0,71.0,56.0,45.0,50.0,55.0,40.0,49.0,61.0,57.0,40.0,39.0,44.0,36.0,33.0,36.0,21.0,34.0,26.0,46.0,31.0,39.0,38.0,35.0,42.0,24.0,17.0,28.0,20.0,25.0,16.0,23.0,18.0,14.0,9.0,9.0,12.0,14.0,16.0,12.0,12.0,10.0,7.0,4.0,5.0,6.0,2.0,2.0,3.0,5.0 M85079,54.0,68.0,86.0,88.0,71.0,63.0,52.0,71.0,70.0,54.0,77.0,78.0,64.0,94.0,75.0,64.0,75.0,76.0,77.0,61.0,68.0,73.0,71.0,84.0,70.0,95.0,70.0,79.0,88.0,99.0,84.0,80.0,96.0,96.0,78.0,90.0,90.0,78.0,81.0,89.0,88.0,71.0,87.0,76.0,90.0,59.0,60.0,60.0,69.0,58.0,55.0,59.0,63.0,80.0,78.0,63.0,75.0,62.0,67.0,91.0,58.0,68.0,69.0,56.0,51.0,41.0,48.0,36.0,52.0,36.0,44.0,38.0,38.0,27.0,34.0,28.0,27.0,22.0,36.0,21.0,28.0,27.0,33.0,25.0,22.0,23.0,20.0,17.0,14.0,17.0,8.0,6.0,8.0,5.0,8.0,11.0 M85081,48.0,49.0,56.0,55.0,57.0,57.0,64.0,57.0,66.0,62.0,58.0,75.0,79.0,66.0,58.0,71.0,64.0,74.0,64.0,73.0,57.0,64.0,61.0,49.0,61.0,53.0,67.0,66.0,48.0,58.0,59.0,61.0,66.0,73.0,73.0,58.0,49.0,65.0,78.0,69.0,73.0,72.0,83.0,55.0,50.0,63.0,62.0,59.0,72.0,46.0,48.0,49.0,45.0,56.0,37.0,52.0,58.0,46.0,60.0,59.0,72.0,62.0,62.0,51.0,65.0,45.0,42.0,52.0,48.0,37.0,31.0,46.0,41.0,35.0,42.0,25.0,22.0,41.0,33.0,31.0,25.0,34.0,25.0,13.0,19.0,20.0,15.0,15.0,25.0,13.0,8.0,6.0,5.0,5.0,6.0,6.0 M85082,54.0,49.0,18.0,31.0,34.0,17.0,31.0,29.0,31.0,24.0,19.0,43.0,28.0,26.0,20.0,24.0,22.0,21.0,18.0,28.0,27.0,32.0,52.0,71.0,77.0,68.0,57.0,83.0,63.0,58.0,53.0,49.0,56.0,44.0,34.0,25.0,43.0,37.0,35.0,35.0,42.0,28.0,33.0,30.0,35.0,28.0,21.0,19.0,22.0,20.0,29.0,20.0,22.0,16.0,29.0,21.0,22.0,25.0,18.0,12.0,16.0,17.0,20.0,19.0,22.0,12.0,23.0,12.0,10.0,9.0,12.0,20.0,26.0,13.0,17.0,8.0,9.0,9.0,9.0,9.0,4.0,7.0,1.0,5.0,5.0,5.0,4.0,1.0,4.0,1.0,2.0,1.0,,1.0,,1.0 M85084,34.0,32.0,36.0,33.0,37.0,39.0,45.0,49.0,40.0,38.0,56.0,37.0,37.0,42.0,38.0,44.0,44.0,43.0,50.0,40.0,35.0,57.0,43.0,45.0,65.0,51.0,78.0,61.0,68.0,58.0,54.0,62.0,56.0,46.0,62.0,55.0,43.0,48.0,53.0,61.0,38.0,44.0,42.0,45.0,41.0,37.0,26.0,28.0,26.0,29.0,30.0,25.0,29.0,36.0,35.0,23.0,35.0,38.0,29.0,33.0,25.0,34.0,29.0,25.0,26.0,24.0,20.0,18.0,17.0,12.0,24.0,15.0,10.0,20.0,13.0,18.0,11.0,9.0,8.0,11.0,7.0,10.0,11.0,12.0,7.0,10.0,11.0,6.0,9.0,7.0,8.0,3.0,4.0,4.0,2.0,7.0 M85086,49.0,74.0,52.0,55.0,63.0,65.0,62.0,84.0,68.0,74.0,80.0,70.0,95.0,86.0,65.0,62.0,78.0,69.0,61.0,48.0,41.0,56.0,46.0,38.0,56.0,62.0,72.0,68.0,67.0,83.0,102.0,80.0,82.0,92.0,118.0,91.0,90.0,85.0,91.0,86.0,91.0,83.0,70.0,86.0,83.0,82.0,66.0,62.0,73.0,65.0,56.0,54.0,57.0,68.0,68.0,63.0,69.0,82.0,68.0,63.0,50.0,74.0,66.0,60.0,50.0,52.0,59.0,45.0,47.0,41.0,44.0,37.0,36.0,28.0,29.0,31.0,30.0,39.0,39.0,28.0,45.0,34.0,29.0,20.0,14.0,24.0,15.0,27.0,13.0,9.0,10.0,10.0,6.0,5.0,2.0,12.0 M85087,52.0,57.0,68.0,67.0,58.0,54.0,78.0,70.0,86.0,88.0,87.0,81.0,99.0,87.0,87.0,86.0,77.0,77.0,73.0,76.0,83.0,80.0,69.0,73.0,84.0,73.0,84.0,74.0,98.0,70.0,72.0,77.0,91.0,66.0,75.0,84.0,79.0,83.0,96.0,100.0,95.0,82.0,88.0,80.0,84.0,84.0,72.0,62.0,62.0,74.0,66.0,62.0,61.0,73.0,82.0,70.0,64.0,61.0,85.0,66.0,78.0,71.0,69.0,63.0,62.0,52.0,50.0,33.0,49.0,36.0,49.0,40.0,33.0,45.0,26.0,27.0,37.0,32.0,38.0,31.0,30.0,26.0,28.0,22.0,16.0,20.0,17.0,11.0,17.0,12.0,6.0,10.0,4.0,1.0,1.0,8.0 M85088,88.0,67.0,91.0,74.0,76.0,85.0,77.0,76.0,80.0,93.0,94.0,86.0,83.0,102.0,91.0,86.0,74.0,86.0,87.0,92.0,107.0,127.0,116.0,166.0,171.0,208.0,203.0,213.0,211.0,229.0,210.0,198.0,202.0,186.0,180.0,173.0,195.0,164.0,145.0,145.0,149.0,125.0,135.0,131.0,92.0,100.0,94.0,104.0,107.0,69.0,81.0,87.0,80.0,82.0,68.0,88.0,79.0,87.0,88.0,83.0,70.0,75.0,89.0,73.0,52.0,55.0,71.0,62.0,58.0,37.0,39.0,43.0,42.0,40.0,42.0,39.0,33.0,37.0,30.0,26.0,38.0,18.0,28.0,22.0,13.0,16.0,21.0,21.0,16.0,6.0,13.0,8.0,10.0,7.0,5.0,10.0 M85094,20.0,25.0,20.0,24.0,16.0,18.0,14.0,20.0,25.0,18.0,18.0,22.0,21.0,15.0,12.0,21.0,18.0,20.0,14.0,18.0,12.0,12.0,14.0,13.0,15.0,29.0,20.0,31.0,17.0,12.0,25.0,18.0,27.0,16.0,23.0,24.0,25.0,21.0,16.0,20.0,22.0,11.0,13.0,16.0,17.0,6.0,9.0,12.0,14.0,16.0,11.0,5.0,6.0,5.0,21.0,12.0,5.0,8.0,8.0,12.0,8.0,9.0,10.0,2.0,9.0,7.0,7.0,3.0,4.0,3.0,7.0,2.0,3.0,3.0,4.0,5.0,1.0,1.0,1.0,1.0,2.0,1.0,3.0,5.0,5.0,2.0,2.0,2.0,,1.0,2.0,1.0,1.0,2.0,,1.0 M85097,6.0,12.0,14.0,12.0,8.0,12.0,14.0,13.0,14.0,13.0,13.0,13.0,14.0,16.0,10.0,13.0,13.0,12.0,10.0,10.0,6.0,17.0,5.0,5.0,9.0,18.0,16.0,26.0,27.0,17.0,18.0,31.0,25.0,15.0,19.0,18.0,14.0,27.0,17.0,13.0,17.0,21.0,16.0,13.0,13.0,15.0,11.0,14.0,8.0,10.0,14.0,10.0,7.0,11.0,10.0,8.0,9.0,5.0,12.0,9.0,14.0,13.0,14.0,13.0,15.0,9.0,13.0,7.0,5.0,7.0,8.0,10.0,9.0,6.0,7.0,6.0,9.0,8.0,10.0,5.0,4.0,5.0,3.0,7.0,2.0,7.0,2.0,3.0,2.0,1.0,1.0,1.0,1.0,,,1.0 M85098,22.0,18.0,28.0,22.0,31.0,28.0,23.0,29.0,17.0,34.0,34.0,29.0,32.0,23.0,27.0,35.0,30.0,32.0,48.0,21.0,34.0,32.0,27.0,32.0,30.0,47.0,33.0,39.0,37.0,56.0,36.0,65.0,39.0,45.0,52.0,42.0,44.0,48.0,37.0,33.0,50.0,50.0,51.0,46.0,45.0,47.0,38.0,26.0,36.0,31.0,23.0,25.0,34.0,34.0,22.0,18.0,21.0,20.0,16.0,22.0,15.0,24.0,16.0,19.0,19.0,14.0,11.0,9.0,11.0,12.0,8.0,16.0,15.0,13.0,8.0,9.0,8.0,7.0,7.0,8.0,6.0,11.0,4.0,8.0,7.0,9.0,4.0,6.0,2.0,2.0,6.0,4.0,3.0,1.0,,3.0 M85105,30.0,30.0,29.0,41.0,29.0,42.0,35.0,39.0,38.0,30.0,35.0,31.0,28.0,40.0,35.0,33.0,26.0,33.0,35.0,33.0,19.0,28.0,37.0,37.0,23.0,30.0,32.0,35.0,42.0,42.0,51.0,42.0,46.0,49.0,40.0,45.0,56.0,49.0,57.0,42.0,43.0,27.0,39.0,28.0,30.0,33.0,35.0,22.0,28.0,19.0,33.0,31.0,37.0,29.0,22.0,23.0,35.0,34.0,32.0,29.0,30.0,36.0,26.0,32.0,27.0,18.0,25.0,17.0,22.0,28.0,19.0,16.0,14.0,13.0,7.0,20.0,14.0,19.0,16.0,18.0,8.0,12.0,14.0,15.0,9.0,8.0,10.0,10.0,11.0,8.0,6.0,2.0,5.0,6.0,2.0,9.0 M85107,25.0,18.0,23.0,30.0,18.0,25.0,36.0,26.0,27.0,36.0,22.0,28.0,29.0,24.0,34.0,28.0,29.0,26.0,26.0,24.0,23.0,29.0,22.0,31.0,28.0,20.0,25.0,24.0,28.0,21.0,24.0,31.0,31.0,37.0,29.0,32.0,29.0,15.0,32.0,21.0,25.0,35.0,29.0,24.0,33.0,19.0,19.0,23.0,21.0,23.0,20.0,19.0,22.0,16.0,21.0,22.0,29.0,22.0,19.0,26.0,20.0,23.0,13.0,17.0,21.0,14.0,15.0,10.0,8.0,8.0,10.0,12.0,2.0,7.0,4.0,6.0,4.0,8.0,5.0,3.0,7.0,4.0,5.0,1.0,4.0,4.0,2.0,3.0,,2.0,1.0,1.0,1.0,,1.0,1.0 M85108,26.0,35.0,39.0,28.0,44.0,29.0,32.0,62.0,44.0,49.0,37.0,58.0,49.0,51.0,43.0,45.0,47.0,33.0,52.0,53.0,46.0,59.0,59.0,51.0,41.0,57.0,42.0,44.0,47.0,55.0,44.0,31.0,27.0,38.0,42.0,43.0,31.0,37.0,52.0,45.0,49.0,35.0,44.0,37.0,45.0,32.0,36.0,40.0,34.0,27.0,38.0,35.0,31.0,28.0,32.0,32.0,22.0,27.0,24.0,30.0,33.0,25.0,25.0,18.0,21.0,21.0,18.0,15.0,16.0,15.0,17.0,9.0,8.0,13.0,10.0,5.0,11.0,7.0,9.0,11.0,11.0,6.0,7.0,9.0,9.0,12.0,6.0,7.0,6.0,1.0,5.0,5.0,4.0,3.0,2.0,3.0 M85110,67.0,59.0,50.0,58.0,58.0,51.0,57.0,62.0,70.0,65.0,63.0,77.0,67.0,97.0,86.0,78.0,95.0,81.0,90.0,79.0,90.0,100.0,85.0,80.0,88.0,84.0,78.0,81.0,72.0,75.0,81.0,82.0,65.0,71.0,66.0,79.0,53.0,60.0,63.0,56.0,59.0,74.0,52.0,76.0,72.0,62.0,76.0,63.0,66.0,50.0,64.0,51.0,56.0,76.0,61.0,34.0,56.0,51.0,45.0,37.0,31.0,31.0,30.0,25.0,36.0,25.0,30.0,32.0,20.0,32.0,20.0,23.0,19.0,14.0,18.0,10.0,17.0,15.0,20.0,10.0,5.0,14.0,11.0,11.0,13.0,15.0,9.0,4.0,8.0,10.0,9.0,7.0,4.0,6.0,5.0,15.0 M85113,22.0,37.0,34.0,33.0,23.0,44.0,37.0,51.0,40.0,36.0,43.0,41.0,43.0,55.0,50.0,42.0,46.0,45.0,42.0,42.0,38.0,35.0,37.0,35.0,38.0,43.0,36.0,33.0,44.0,36.0,30.0,39.0,26.0,28.0,50.0,46.0,38.0,52.0,52.0,27.0,53.0,39.0,44.0,47.0,43.0,37.0,39.0,40.0,33.0,32.0,29.0,31.0,35.0,28.0,38.0,38.0,37.0,34.0,33.0,27.0,39.0,37.0,36.0,26.0,36.0,27.0,35.0,35.0,24.0,21.0,30.0,20.0,19.0,20.0,22.0,21.0,22.0,21.0,20.0,11.0,13.0,17.0,9.0,10.0,12.0,12.0,10.0,15.0,8.0,11.0,5.0,7.0,5.0,3.0,7.0,5.0 M85115,11.0,9.0,13.0,10.0,13.0,10.0,11.0,17.0,9.0,15.0,12.0,18.0,9.0,8.0,14.0,17.0,10.0,9.0,21.0,6.0,9.0,13.0,16.0,15.0,9.0,13.0,8.0,8.0,23.0,11.0,19.0,10.0,16.0,17.0,16.0,16.0,13.0,11.0,15.0,25.0,11.0,23.0,19.0,26.0,8.0,16.0,10.0,9.0,16.0,10.0,11.0,15.0,10.0,13.0,9.0,13.0,11.0,12.0,18.0,21.0,19.0,13.0,14.0,10.0,25.0,18.0,10.0,10.0,17.0,5.0,12.0,16.0,8.0,6.0,3.0,7.0,7.0,7.0,13.0,4.0,5.0,5.0,2.0,4.0,5.0,3.0,2.0,2.0,2.0,4.0,2.0,3.0,4.0,1.0,1.0,4.0 M85116,51.0,46.0,52.0,54.0,53.0,62.0,56.0,72.0,65.0,55.0,81.0,69.0,75.0,66.0,66.0,81.0,79.0,86.0,69.0,79.0,71.0,75.0,71.0,57.0,68.0,58.0,61.0,62.0,65.0,65.0,60.0,75.0,53.0,59.0,47.0,53.0,50.0,56.0,59.0,55.0,71.0,56.0,59.0,68.0,72.0,79.0,59.0,54.0,53.0,60.0,42.0,55.0,37.0,45.0,47.0,50.0,46.0,35.0,35.0,32.0,35.0,34.0,21.0,25.0,22.0,25.0,29.0,30.0,33.0,23.0,26.0,19.0,24.0,23.0,20.0,23.0,19.0,8.0,19.0,14.0,12.0,17.0,17.0,14.0,11.0,10.0,8.0,9.0,9.0,4.0,9.0,7.0,3.0,3.0,2.0,10.0 M85117,31.0,39.0,28.0,36.0,36.0,32.0,40.0,37.0,44.0,38.0,34.0,41.0,47.0,41.0,58.0,39.0,52.0,35.0,39.0,32.0,34.0,33.0,31.0,41.0,36.0,23.0,39.0,37.0,39.0,53.0,45.0,35.0,33.0,49.0,48.0,42.0,44.0,49.0,55.0,41.0,44.0,36.0,45.0,53.0,31.0,68.0,40.0,39.0,32.0,40.0,33.0,41.0,34.0,23.0,40.0,38.0,32.0,28.0,37.0,30.0,41.0,36.0,34.0,40.0,31.0,34.0,36.0,34.0,31.0,30.0,33.0,41.0,34.0,24.0,27.0,21.0,28.0,31.0,34.0,20.0,16.0,15.0,24.0,6.0,10.0,13.0,7.0,9.0,5.0,4.0,,7.0,5.0,3.0,2.0,7.0 M85118,14.0,21.0,17.0,13.0,16.0,19.0,16.0,20.0,16.0,18.0,16.0,20.0,14.0,30.0,21.0,20.0,19.0,23.0,20.0,18.0,16.0,10.0,6.0,20.0,16.0,14.0,25.0,11.0,16.0,13.0,23.0,11.0,13.0,14.0,23.0,12.0,14.0,19.0,18.0,30.0,27.0,17.0,15.0,21.0,26.0,20.0,26.0,18.0,20.0,11.0,24.0,14.0,28.0,21.0,24.0,18.0,15.0,20.0,13.0,14.0,22.0,17.0,18.0,19.0,18.0,17.0,19.0,15.0,8.0,23.0,17.0,17.0,23.0,6.0,10.0,12.0,12.0,16.0,13.0,10.0,18.0,14.0,6.0,15.0,8.0,7.0,8.0,5.0,9.0,3.0,3.0,3.0,3.0,1.0,,7.0 M85123,59.0,56.0,47.0,55.0,50.0,52.0,61.0,64.0,75.0,55.0,67.0,71.0,76.0,82.0,59.0,78.0,77.0,78.0,84.0,72.0,88.0,75.0,68.0,72.0,75.0,70.0,77.0,70.0,69.0,72.0,57.0,64.0,61.0,50.0,64.0,68.0,55.0,57.0,57.0,50.0,61.0,63.0,75.0,71.0,69.0,59.0,63.0,41.0,47.0,45.0,49.0,39.0,40.0,32.0,43.0,49.0,37.0,38.0,35.0,35.0,29.0,27.0,17.0,25.0,22.0,21.0,19.0,24.0,19.0,16.0,23.0,30.0,18.0,19.0,24.0,20.0,11.0,11.0,10.0,12.0,11.0,7.0,8.0,9.0,10.0,10.0,8.0,8.0,11.0,6.0,4.0,4.0,4.0,7.0,2.0,12.0 M85124,43.0,47.0,51.0,52.0,50.0,48.0,40.0,60.0,65.0,77.0,63.0,78.0,46.0,86.0,83.0,63.0,56.0,52.0,75.0,89.0,86.0,128.0,152.0,193.0,211.0,226.0,232.0,166.0,137.0,147.0,140.0,127.0,136.0,110.0,108.0,115.0,130.0,85.0,106.0,107.0,84.0,68.0,85.0,82.0,72.0,78.0,51.0,53.0,49.0,31.0,62.0,44.0,47.0,48.0,46.0,47.0,44.0,40.0,44.0,46.0,53.0,51.0,55.0,32.0,43.0,40.0,37.0,45.0,28.0,28.0,18.0,19.0,26.0,32.0,19.0,18.0,22.0,23.0,19.0,15.0,17.0,13.0,12.0,14.0,8.0,14.0,14.0,9.0,14.0,7.0,6.0,3.0,6.0,3.0,2.0,11.0 M85128,24.0,18.0,26.0,23.0,27.0,27.0,26.0,32.0,28.0,39.0,39.0,33.0,41.0,46.0,39.0,37.0,38.0,37.0,40.0,33.0,33.0,38.0,29.0,44.0,35.0,44.0,35.0,45.0,40.0,29.0,31.0,45.0,33.0,34.0,28.0,34.0,28.0,31.0,40.0,37.0,43.0,38.0,31.0,40.0,39.0,37.0,33.0,23.0,34.0,33.0,17.0,27.0,30.0,29.0,25.0,36.0,30.0,23.0,36.0,23.0,31.0,29.0,29.0,20.0,23.0,21.0,26.0,20.0,23.0,15.0,14.0,20.0,17.0,17.0,9.0,11.0,16.0,19.0,12.0,11.0,12.0,8.0,6.0,8.0,6.0,4.0,5.0,5.0,5.0,5.0,1.0,2.0,5.0,1.0,3.0,5.0 M85136,47.0,52.0,56.0,85.0,83.0,82.0,88.0,78.0,84.0,82.0,91.0,88.0,115.0,88.0,104.0,83.0,91.0,86.0,69.0,75.0,70.0,67.0,57.0,57.0,61.0,83.0,61.0,74.0,73.0,76.0,82.0,93.0,61.0,89.0,84.0,87.0,97.0,86.0,101.0,80.0,71.0,93.0,68.0,72.0,70.0,81.0,72.0,50.0,62.0,46.0,57.0,44.0,48.0,54.0,51.0,59.0,59.0,72.0,55.0,55.0,48.0,47.0,36.0,54.0,43.0,63.0,45.0,34.0,37.0,30.0,35.0,24.0,23.0,23.0,20.0,29.0,23.0,17.0,23.0,19.0,18.0,20.0,17.0,19.0,13.0,10.0,21.0,14.0,14.0,14.0,5.0,6.0,3.0,6.0,3.0,11.0 M85139,24.0,35.0,47.0,39.0,32.0,38.0,44.0,45.0,46.0,37.0,41.0,50.0,47.0,44.0,37.0,51.0,51.0,51.0,52.0,40.0,45.0,53.0,47.0,53.0,51.0,44.0,58.0,57.0,44.0,49.0,43.0,37.0,36.0,35.0,32.0,53.0,33.0,44.0,48.0,32.0,46.0,44.0,44.0,43.0,37.0,38.0,41.0,35.0,41.0,25.0,32.0,29.0,24.0,30.0,32.0,22.0,24.0,39.0,18.0,26.0,21.0,15.0,20.0,11.0,18.0,13.0,16.0,10.0,18.0,12.0,12.0,17.0,10.0,10.0,9.0,9.0,6.0,6.0,6.0,2.0,4.0,5.0,6.0,4.0,3.0,3.0,3.0,8.0,5.0,4.0,5.0,2.0,1.0,1.0,3.0,9.0 M85141,15.0,21.0,14.0,24.0,24.0,20.0,14.0,20.0,23.0,16.0,16.0,13.0,16.0,20.0,19.0,19.0,21.0,16.0,17.0,10.0,11.0,17.0,19.0,14.0,18.0,13.0,15.0,18.0,23.0,19.0,23.0,12.0,22.0,27.0,32.0,23.0,22.0,28.0,25.0,20.0,27.0,26.0,29.0,16.0,19.0,12.0,21.0,13.0,14.0,13.0,15.0,19.0,19.0,23.0,22.0,24.0,27.0,23.0,25.0,20.0,20.0,20.0,14.0,25.0,14.0,18.0,25.0,27.0,18.0,14.0,18.0,14.0,17.0,16.0,11.0,20.0,15.0,12.0,15.0,13.0,10.0,13.0,8.0,7.0,8.0,7.0,6.0,7.0,9.0,4.0,4.0,3.0,6.0,4.0,1.0,8.0 M85143,24.0,28.0,30.0,41.0,34.0,32.0,49.0,40.0,49.0,44.0,46.0,56.0,42.0,48.0,59.0,51.0,52.0,33.0,56.0,53.0,41.0,49.0,37.0,36.0,44.0,52.0,46.0,45.0,54.0,54.0,52.0,44.0,51.0,59.0,64.0,49.0,60.0,54.0,72.0,58.0,50.0,53.0,44.0,53.0,60.0,43.0,45.0,45.0,42.0,47.0,53.0,50.0,49.0,46.0,42.0,50.0,45.0,59.0,50.0,54.0,35.0,35.0,48.0,49.0,33.0,31.0,47.0,30.0,35.0,24.0,36.0,36.0,30.0,32.0,30.0,35.0,42.0,34.0,40.0,28.0,15.0,21.0,20.0,12.0,14.0,14.0,7.0,8.0,8.0,10.0,6.0,7.0,4.0,2.0,2.0,10.0 M85145,62.0,53.0,75.0,69.0,56.0,50.0,57.0,67.0,56.0,53.0,61.0,58.0,54.0,64.0,50.0,55.0,73.0,67.0,52.0,64.0,66.0,67.0,50.0,65.0,59.0,59.0,74.0,91.0,85.0,68.0,75.0,69.0,73.0,83.0,75.0,77.0,57.0,74.0,66.0,59.0,79.0,76.0,74.0,77.0,85.0,58.0,59.0,54.0,43.0,45.0,52.0,45.0,40.0,64.0,42.0,50.0,48.0,54.0,43.0,52.0,57.0,48.0,79.0,45.0,48.0,61.0,46.0,31.0,36.0,33.0,37.0,43.0,43.0,29.0,29.0,35.0,32.0,28.0,29.0,19.0,12.0,17.0,20.0,20.0,14.0,20.0,13.0,12.0,14.0,10.0,12.0,16.0,9.0,6.0,5.0,14.0 M85146,52.0,54.0,47.0,42.0,43.0,32.0,33.0,35.0,48.0,45.0,40.0,46.0,52.0,41.0,52.0,45.0,41.0,44.0,49.0,53.0,55.0,52.0,56.0,61.0,52.0,54.0,66.0,60.0,60.0,49.0,50.0,58.0,38.0,47.0,36.0,49.0,45.0,40.0,43.0,53.0,47.0,38.0,50.0,32.0,52.0,53.0,29.0,23.0,38.0,36.0,28.0,25.0,24.0,28.0,25.0,21.0,21.0,24.0,21.0,24.0,21.0,14.0,11.0,16.0,11.0,23.0,20.0,14.0,18.0,21.0,7.0,11.0,15.0,6.0,11.0,6.0,8.0,7.0,10.0,6.0,9.0,,4.0,9.0,4.0,9.0,2.0,3.0,2.0,5.0,5.0,3.0,,3.0,,3.0 M85149,30.0,33.0,28.0,30.0,35.0,35.0,31.0,31.0,36.0,40.0,51.0,47.0,52.0,53.0,52.0,48.0,50.0,50.0,39.0,54.0,41.0,43.0,47.0,44.0,43.0,49.0,54.0,43.0,48.0,40.0,37.0,43.0,34.0,38.0,22.0,47.0,42.0,32.0,37.0,44.0,45.0,44.0,31.0,42.0,43.0,46.0,36.0,37.0,26.0,33.0,31.0,24.0,33.0,30.0,31.0,35.0,28.0,28.0,25.0,20.0,16.0,17.0,15.0,19.0,4.0,5.0,20.0,12.0,16.0,15.0,18.0,16.0,6.0,5.0,14.0,7.0,6.0,17.0,9.0,8.0,10.0,4.0,5.0,3.0,3.0,1.0,4.0,4.0,1.0,5.0,7.0,6.0,3.0,2.0,4.0,6.0 M85153,29.0,26.0,34.0,23.0,23.0,24.0,23.0,18.0,29.0,36.0,33.0,24.0,26.0,21.0,36.0,24.0,33.0,31.0,22.0,27.0,33.0,23.0,34.0,28.0,40.0,43.0,38.0,45.0,29.0,43.0,38.0,28.0,30.0,31.0,23.0,26.0,35.0,34.0,19.0,23.0,33.0,21.0,20.0,27.0,25.0,20.0,16.0,16.0,20.0,23.0,13.0,17.0,16.0,17.0,14.0,16.0,17.0,16.0,22.0,5.0,11.0,9.0,7.0,14.0,11.0,10.0,10.0,4.0,12.0,9.0,6.0,9.0,9.0,7.0,5.0,4.0,3.0,7.0,4.0,6.0,2.0,3.0,3.0,3.0,2.0,7.0,6.0,3.0,3.0,2.0,1.0,2.0,1.0,2.0,,4.0 M85154,37.0,28.0,19.0,27.0,37.0,36.0,23.0,34.0,28.0,32.0,37.0,32.0,35.0,33.0,35.0,41.0,43.0,38.0,41.0,31.0,45.0,33.0,31.0,33.0,35.0,48.0,38.0,30.0,38.0,41.0,39.0,31.0,26.0,27.0,20.0,29.0,47.0,41.0,29.0,38.0,33.0,35.0,25.0,28.0,39.0,33.0,40.0,27.0,31.0,17.0,34.0,17.0,23.0,25.0,20.0,22.0,17.0,12.0,13.0,16.0,12.0,8.0,9.0,15.0,12.0,11.0,13.0,16.0,14.0,13.0,14.0,14.0,14.0,16.0,15.0,6.0,8.0,4.0,7.0,3.0,6.0,4.0,4.0,5.0,8.0,4.0,,3.0,1.0,2.0,3.0,2.0,1.0,1.0,1.0,2.0 M85155,29.0,42.0,32.0,42.0,50.0,43.0,58.0,60.0,41.0,45.0,45.0,45.0,49.0,60.0,59.0,40.0,41.0,44.0,58.0,46.0,38.0,27.0,36.0,39.0,46.0,51.0,45.0,38.0,46.0,51.0,61.0,54.0,55.0,58.0,62.0,61.0,42.0,57.0,70.0,32.0,54.0,52.0,45.0,49.0,36.0,49.0,30.0,36.0,37.0,42.0,24.0,36.0,36.0,32.0,53.0,35.0,40.0,48.0,38.0,38.0,44.0,46.0,34.0,44.0,26.0,36.0,21.0,31.0,27.0,29.0,26.0,25.0,23.0,22.0,20.0,14.0,22.0,24.0,21.0,18.0,12.0,16.0,20.0,8.0,15.0,9.0,14.0,10.0,5.0,9.0,3.0,7.0,3.0,5.0,2.0,2.0 M85156,54.0,34.0,51.0,46.0,43.0,49.0,44.0,48.0,54.0,68.0,41.0,59.0,53.0,46.0,65.0,60.0,59.0,58.0,41.0,40.0,52.0,70.0,86.0,102.0,120.0,84.0,64.0,72.0,80.0,78.0,78.0,111.0,83.0,88.0,83.0,92.0,80.0,85.0,96.0,73.0,70.0,81.0,72.0,76.0,71.0,72.0,50.0,50.0,54.0,45.0,48.0,57.0,54.0,64.0,55.0,69.0,62.0,62.0,62.0,52.0,59.0,56.0,50.0,45.0,55.0,38.0,38.0,54.0,29.0,36.0,23.0,31.0,39.0,28.0,19.0,28.0,34.0,28.0,26.0,17.0,16.0,16.0,12.0,8.0,13.0,10.0,9.0,15.0,5.0,11.0,2.0,4.0,,1.0,3.0,9.0 M85158,3.0,7.0,15.0,6.0,6.0,7.0,11.0,17.0,14.0,21.0,20.0,20.0,17.0,23.0,17.0,19.0,12.0,17.0,7.0,17.0,10.0,16.0,13.0,10.0,12.0,9.0,11.0,8.0,10.0,8.0,6.0,7.0,12.0,14.0,15.0,18.0,9.0,20.0,16.0,20.0,14.0,22.0,12.0,16.0,8.0,10.0,12.0,10.0,13.0,15.0,11.0,16.0,8.0,5.0,15.0,15.0,14.0,17.0,15.0,16.0,18.0,24.0,15.0,15.0,20.0,9.0,8.0,11.0,10.0,13.0,13.0,10.0,8.0,12.0,11.0,15.0,7.0,10.0,9.0,5.0,9.0,11.0,7.0,6.0,4.0,3.0,4.0,4.0,7.0,2.0,5.0,4.0,2.0,2.0,, M85164,84.0,91.0,93.0,86.0,95.0,93.0,92.0,90.0,98.0,96.0,87.0,95.0,104.0,95.0,99.0,106.0,99.0,116.0,97.0,112.0,103.0,111.0,100.0,78.0,112.0,101.0,93.0,117.0,92.0,89.0,88.0,103.0,88.0,97.0,89.0,90.0,87.0,106.0,111.0,87.0,83.0,92.0,96.0,96.0,98.0,87.0,79.0,73.0,86.0,69.0,62.0,59.0,50.0,53.0,71.0,57.0,48.0,53.0,45.0,36.0,36.0,36.0,41.0,33.0,35.0,38.0,38.0,34.0,50.0,35.0,44.0,31.0,17.0,25.0,27.0,27.0,30.0,16.0,19.0,21.0,12.0,23.0,11.0,11.0,9.0,14.0,13.0,12.0,13.0,7.0,16.0,6.0,4.0,5.0,3.0,2.0 M85167,9.0,13.0,23.0,18.0,18.0,22.0,27.0,21.0,21.0,23.0,20.0,22.0,32.0,32.0,20.0,28.0,22.0,41.0,374.0,855.0,922.0,769.0,717.0,621.0,504.0,339.0,257.0,137.0,111.0,83.0,85.0,72.0,52.0,54.0,36.0,43.0,37.0,48.0,36.0,36.0,47.0,33.0,40.0,47.0,33.0,32.0,33.0,31.0,27.0,22.0,24.0,24.0,29.0,26.0,26.0,26.0,34.0,20.0,18.0,31.0,28.0,17.0,17.0,15.0,12.0,18.0,18.0,26.0,14.0,16.0,21.0,24.0,13.0,17.0,16.0,8.0,18.0,26.0,13.0,20.0,23.0,13.0,12.0,10.0,10.0,5.0,8.0,10.0,10.0,6.0,1.0,4.0,2.0,3.0,1.0,3.0 M85170,38.0,37.0,39.0,27.0,46.0,48.0,42.0,35.0,41.0,30.0,31.0,37.0,39.0,31.0,33.0,38.0,42.0,43.0,41.0,31.0,34.0,34.0,39.0,45.0,40.0,40.0,44.0,46.0,54.0,46.0,37.0,52.0,31.0,34.0,31.0,29.0,41.0,36.0,49.0,44.0,34.0,34.0,34.0,29.0,21.0,17.0,25.0,20.0,23.0,22.0,24.0,21.0,20.0,31.0,29.0,14.0,29.0,19.0,15.0,17.0,18.0,8.0,15.0,7.0,15.0,16.0,18.0,19.0,22.0,13.0,7.0,12.0,19.0,13.0,9.0,15.0,11.0,7.0,8.0,6.0,4.0,7.0,5.0,7.0,9.0,5.0,4.0,1.0,8.0,5.0,3.0,3.0,4.0,2.0,,10.0 M85171,17.0,20.0,13.0,11.0,28.0,13.0,17.0,17.0,18.0,27.0,13.0,18.0,17.0,21.0,18.0,18.0,24.0,17.0,21.0,18.0,23.0,11.0,14.0,15.0,14.0,25.0,24.0,21.0,19.0,24.0,15.0,23.0,18.0,26.0,24.0,26.0,22.0,30.0,25.0,24.0,20.0,16.0,22.0,20.0,22.0,18.0,23.0,13.0,17.0,19.0,17.0,14.0,5.0,16.0,14.0,14.0,12.0,15.0,14.0,16.0,20.0,18.0,12.0,22.0,12.0,16.0,21.0,17.0,20.0,9.0,9.0,8.0,13.0,13.0,9.0,12.0,6.0,6.0,6.0,3.0,6.0,11.0,4.0,5.0,9.0,7.0,4.0,2.0,6.0,5.0,3.0,2.0,2.0,1.0,2.0,3.0 M85172,65.0,84.0,77.0,78.0,75.0,70.0,80.0,99.0,80.0,87.0,105.0,117.0,107.0,112.0,107.0,102.0,91.0,106.0,106.0,89.0,70.0,86.0,58.0,85.0,91.0,80.0,75.0,73.0,89.0,95.0,100.0,110.0,70.0,112.0,104.0,119.0,112.0,115.0,100.0,104.0,110.0,134.0,119.0,108.0,97.0,97.0,79.0,97.0,88.0,95.0,70.0,79.0,78.0,98.0,81.0,81.0,87.0,78.0,86.0,80.0,87.0,71.0,80.0,77.0,88.0,76.0,77.0,61.0,61.0,69.0,43.0,51.0,39.0,45.0,58.0,46.0,54.0,68.0,53.0,48.0,53.0,33.0,31.0,36.0,23.0,29.0,32.0,23.0,22.0,17.0,17.0,7.0,8.0,6.0,1.0,15.0 M85174,22.0,16.0,25.0,29.0,34.0,25.0,31.0,46.0,29.0,27.0,36.0,35.0,39.0,34.0,31.0,33.0,42.0,32.0,30.0,37.0,36.0,26.0,22.0,26.0,30.0,44.0,28.0,28.0,33.0,33.0,22.0,34.0,23.0,34.0,31.0,26.0,32.0,45.0,33.0,29.0,23.0,34.0,41.0,20.0,16.0,27.0,24.0,24.0,16.0,18.0,11.0,26.0,23.0,22.0,17.0,22.0,21.0,16.0,12.0,21.0,21.0,14.0,17.0,19.0,8.0,19.0,14.0,18.0,7.0,6.0,13.0,6.0,5.0,8.0,8.0,4.0,9.0,2.0,8.0,5.0,5.0,6.0,3.0,4.0,1.0,3.0,5.0,4.0,6.0,1.0,3.0,2.0,3.0,1.0,1.0,3.0 M85175,26.0,36.0,28.0,42.0,39.0,47.0,42.0,49.0,52.0,49.0,51.0,43.0,56.0,56.0,61.0,67.0,55.0,71.0,50.0,45.0,38.0,38.0,37.0,37.0,46.0,34.0,44.0,33.0,55.0,42.0,49.0,38.0,48.0,50.0,66.0,49.0,54.0,60.0,68.0,61.0,61.0,48.0,72.0,74.0,69.0,69.0,58.0,59.0,69.0,58.0,77.0,72.0,63.0,84.0,67.0,79.0,72.0,75.0,82.0,98.0,73.0,86.0,68.0,72.0,79.0,85.0,73.0,77.0,65.0,68.0,61.0,62.0,60.0,73.0,79.0,92.0,78.0,88.0,80.0,56.0,58.0,45.0,64.0,45.0,45.0,24.0,39.0,28.0,30.0,36.0,24.0,20.0,25.0,13.0,12.0,23.0 M85176,32.0,33.0,26.0,24.0,36.0,31.0,34.0,28.0,39.0,30.0,35.0,35.0,43.0,41.0,27.0,29.0,33.0,36.0,34.0,27.0,33.0,36.0,39.0,40.0,41.0,41.0,48.0,64.0,51.0,61.0,46.0,44.0,50.0,43.0,44.0,36.0,45.0,51.0,35.0,30.0,24.0,44.0,33.0,40.0,28.0,39.0,21.0,25.0,32.0,30.0,29.0,22.0,24.0,31.0,24.0,23.0,27.0,26.0,22.0,23.0,20.0,30.0,21.0,30.0,24.0,18.0,19.0,24.0,22.0,16.0,18.0,11.0,15.0,14.0,9.0,18.0,4.0,12.0,10.0,9.0,5.0,6.0,5.0,8.0,10.0,5.0,6.0,7.0,2.0,1.0,4.0,1.0,2.0,2.0,1.0,3.0 M85177,31.0,32.0,41.0,37.0,47.0,49.0,39.0,40.0,45.0,37.0,52.0,54.0,50.0,47.0,41.0,40.0,52.0,38.0,53.0,24.0,35.0,37.0,28.0,43.0,36.0,38.0,48.0,44.0,41.0,39.0,48.0,57.0,40.0,46.0,53.0,56.0,58.0,52.0,49.0,51.0,49.0,34.0,39.0,48.0,39.0,42.0,37.0,30.0,38.0,35.0,37.0,31.0,31.0,37.0,42.0,37.0,35.0,40.0,34.0,37.0,34.0,40.0,39.0,41.0,30.0,30.0,25.0,27.0,33.0,21.0,21.0,30.0,20.0,20.0,15.0,20.0,21.0,28.0,23.0,12.0,6.0,21.0,7.0,10.0,12.0,10.0,5.0,8.0,6.0,6.0,4.0,5.0,3.0,2.0,,10.0 M85178,158.0,179.0,183.0,187.0,189.0,197.0,198.0,239.0,240.0,244.0,266.0,263.0,284.0,282.0,290.0,275.0,325.0,307.0,264.0,288.0,319.0,294.0,346.0,304.0,311.0,296.0,326.0,307.0,282.0,276.0,275.0,284.0,294.0,261.0,295.0,280.0,276.0,288.0,294.0,288.0,280.0,279.0,307.0,261.0,267.0,289.0,261.0,222.0,248.0,227.0,208.0,198.0,211.0,215.0,219.0,203.0,207.0,190.0,234.0,196.0,198.0,209.0,228.0,172.0,182.0,163.0,154.0,157.0,143.0,122.0,106.0,126.0,107.0,80.0,84.0,74.0,63.0,61.0,53.0,61.0,56.0,71.0,50.0,38.0,50.0,67.0,51.0,41.0,30.0,43.0,38.0,21.0,21.0,16.0,13.0,37.0 M85179,31.0,21.0,25.0,26.0,27.0,32.0,35.0,20.0,32.0,35.0,24.0,27.0,29.0,34.0,27.0,27.0,34.0,34.0,26.0,16.0,26.0,30.0,34.0,19.0,28.0,32.0,26.0,32.0,34.0,45.0,38.0,33.0,42.0,27.0,38.0,43.0,28.0,39.0,39.0,27.0,32.0,31.0,36.0,38.0,37.0,22.0,30.0,23.0,31.0,33.0,23.0,28.0,33.0,40.0,32.0,32.0,42.0,44.0,40.0,33.0,43.0,36.0,32.0,34.0,27.0,20.0,29.0,26.0,31.0,21.0,24.0,25.0,19.0,25.0,21.0,21.0,21.0,26.0,17.0,13.0,18.0,16.0,19.0,11.0,16.0,11.0,15.0,20.0,11.0,5.0,8.0,6.0,7.0,3.0,3.0,11.0 M85600,102.0,101.0,104.0,110.0,111.0,99.0,97.0,101.0,113.0,125.0,94.0,113.0,119.0,102.0,93.0,87.0,115.0,100.0,73.0,62.0,70.0,61.0,80.0,74.0,92.0,95.0,99.0,136.0,127.0,152.0,162.0,153.0,185.0,175.0,165.0,175.0,168.0,163.0,159.0,138.0,146.0,157.0,122.0,124.0,144.0,122.0,114.0,80.0,107.0,95.0,79.0,75.0,87.0,84.0,88.0,86.0,96.0,110.0,75.0,77.0,90.0,66.0,95.0,79.0,72.0,60.0,51.0,59.0,54.0,50.0,52.0,61.0,63.0,38.0,61.0,63.0,52.0,63.0,59.0,35.0,29.0,37.0,34.0,24.0,24.0,25.0,26.0,25.0,13.0,23.0,17.0,7.0,16.0,6.0,4.0,19.0 M85624,31.0,39.0,27.0,36.0,39.0,32.0,40.0,29.0,43.0,40.0,57.0,38.0,43.0,36.0,36.0,41.0,29.0,36.0,43.0,40.0,42.0,38.0,39.0,32.0,45.0,33.0,33.0,42.0,37.0,46.0,41.0,40.0,36.0,47.0,45.0,43.0,59.0,48.0,47.0,47.0,42.0,56.0,45.0,44.0,36.0,39.0,36.0,32.0,31.0,35.0,43.0,32.0,40.0,37.0,34.0,36.0,43.0,32.0,39.0,38.0,39.0,33.0,45.0,49.0,40.0,32.0,40.0,26.0,23.0,28.0,17.0,18.0,19.0,23.0,24.0,24.0,37.0,20.0,13.0,15.0,10.0,13.0,15.0,14.0,14.0,11.0,4.0,8.0,9.0,6.0,5.0,5.0,3.0,2.0,,4.0 M85634,71.0,57.0,52.0,71.0,56.0,47.0,70.0,71.0,70.0,68.0,62.0,69.0,64.0,82.0,69.0,65.0,71.0,66.0,70.0,63.0,64.0,83.0,78.0,81.0,79.0,84.0,72.0,76.0,84.0,98.0,99.0,80.0,81.0,65.0,60.0,70.0,76.0,73.0,70.0,78.0,80.0,61.0,59.0,53.0,52.0,59.0,56.0,51.0,57.0,57.0,51.0,46.0,52.0,50.0,42.0,38.0,41.0,38.0,45.0,41.0,38.0,32.0,35.0,31.0,33.0,22.0,24.0,22.0,14.0,22.0,23.0,21.0,21.0,14.0,17.0,15.0,15.0,20.0,11.0,13.0,7.0,12.0,15.0,13.0,14.0,8.0,6.0,9.0,10.0,8.0,2.0,3.0,3.0,2.0,5.0,9.0 M85642,33.0,23.0,27.0,24.0,36.0,25.0,38.0,31.0,33.0,28.0,45.0,49.0,32.0,24.0,39.0,47.0,38.0,48.0,49.0,39.0,36.0,47.0,42.0,52.0,45.0,45.0,46.0,51.0,39.0,59.0,42.0,37.0,29.0,39.0,37.0,25.0,48.0,46.0,38.0,42.0,47.0,40.0,48.0,48.0,44.0,35.0,39.0,36.0,36.0,37.0,35.0,37.0,30.0,38.0,18.0,34.0,23.0,27.0,28.0,37.0,21.0,17.0,31.0,21.0,27.0,34.0,17.0,29.0,17.0,14.0,26.0,22.0,22.0,16.0,18.0,9.0,11.0,14.0,12.0,12.0,6.0,17.0,13.0,14.0,9.0,11.0,5.0,8.0,3.0,10.0,7.0,5.0,2.0,3.0,5.0,4.0 M85669,56.0,50.0,54.0,52.0,49.0,51.0,62.0,60.0,54.0,36.0,38.0,38.0,40.0,43.0,37.0,33.0,48.0,33.0,36.0,38.0,38.0,37.0,52.0,59.0,64.0,77.0,72.0,87.0,81.0,98.0,83.0,73.0,95.0,95.0,95.0,73.0,82.0,71.0,73.0,66.0,45.0,51.0,62.0,51.0,39.0,46.0,43.0,51.0,34.0,34.0,34.0,24.0,28.0,26.0,27.0,24.0,40.0,25.0,35.0,32.0,26.0,26.0,31.0,34.0,16.0,28.0,28.0,15.0,21.0,18.0,15.0,16.0,5.0,13.0,10.0,10.0,13.0,4.0,11.0,1.0,10.0,3.0,3.0,2.0,6.0,2.0,4.0,3.0,1.0,4.0,4.0,4.0,2.0,1.0,1.0,3.0 M85670,18.0,20.0,16.0,20.0,35.0,27.0,37.0,23.0,29.0,35.0,27.0,33.0,28.0,22.0,35.0,36.0,26.0,24.0,39.0,31.0,35.0,44.0,26.0,29.0,34.0,32.0,32.0,27.0,26.0,25.0,28.0,32.0,29.0,26.0,26.0,29.0,20.0,21.0,33.0,19.0,17.0,19.0,22.0,18.0,19.0,26.0,19.0,13.0,21.0,12.0,12.0,17.0,18.0,19.0,17.0,15.0,10.0,20.0,13.0,8.0,7.0,9.0,8.0,8.0,7.0,15.0,5.0,8.0,5.0,5.0,7.0,9.0,7.0,4.0,5.0,2.0,4.0,3.0,,1.0,1.0,4.0,3.0,1.0,3.0,2.0,4.0,1.0,2.0,2.0,2.0,3.0,1.0,,1.0,2.0 M85676,53.0,46.0,46.0,45.0,41.0,36.0,42.0,43.0,67.0,45.0,56.0,35.0,41.0,55.0,36.0,37.0,41.0,38.0,47.0,52.0,51.0,54.0,52.0,58.0,82.0,74.0,57.0,70.0,62.0,56.0,67.0,57.0,56.0,49.0,47.0,49.0,53.0,41.0,53.0,48.0,41.0,34.0,42.0,41.0,25.0,52.0,20.0,38.0,27.0,39.0,33.0,28.0,33.0,28.0,25.0,23.0,18.0,16.0,17.0,13.0,19.0,20.0,8.0,19.0,25.0,11.0,13.0,10.0,18.0,14.0,15.0,10.0,14.0,9.0,16.0,11.0,11.0,8.0,5.0,4.0,6.0,3.0,10.0,12.0,6.0,9.0,4.0,4.0,5.0,4.0,4.0,3.0,5.0,3.0,1.0,7.0 M85679,39.0,33.0,34.0,39.0,49.0,48.0,38.0,42.0,54.0,47.0,53.0,56.0,59.0,42.0,57.0,58.0,38.0,50.0,53.0,45.0,40.0,62.0,51.0,49.0,41.0,48.0,52.0,59.0,37.0,41.0,42.0,48.0,41.0,33.0,36.0,38.0,32.0,60.0,44.0,48.0,39.0,34.0,36.0,37.0,36.0,44.0,31.0,42.0,33.0,33.0,23.0,23.0,27.0,33.0,24.0,21.0,16.0,22.0,22.0,18.0,21.0,16.0,17.0,17.0,17.0,20.0,13.0,24.0,14.0,13.0,11.0,10.0,15.0,10.0,9.0,12.0,10.0,7.0,10.0,8.0,7.0,5.0,6.0,2.0,6.0,8.0,6.0,2.0,6.0,4.0,5.0,5.0,2.0,3.0,3.0,4.0 M85680,27.0,30.0,23.0,28.0,23.0,21.0,21.0,26.0,18.0,27.0,23.0,30.0,31.0,30.0,23.0,24.0,18.0,22.0,29.0,23.0,20.0,24.0,21.0,18.0,17.0,18.0,22.0,27.0,20.0,15.0,18.0,14.0,14.0,14.0,11.0,13.0,23.0,18.0,25.0,23.0,12.0,16.0,14.0,10.0,16.0,12.0,10.0,15.0,4.0,15.0,8.0,12.0,6.0,13.0,9.0,5.0,7.0,4.0,10.0,4.0,6.0,4.0,6.0,2.0,1.0,5.0,3.0,8.0,6.0,4.0,2.0,6.0,1.0,5.0,2.0,3.0,4.0,,3.0,3.0,2.0,2.0,1.0,1.0,1.0,1.0,,,,,,,,,1.0,2.0 M85684,43.0,30.0,30.0,18.0,23.0,23.0,19.0,15.0,12.0,14.0,9.0,12.0,19.0,13.0,19.0,8.0,14.0,11.0,13.0,14.0,19.0,32.0,38.0,55.0,89.0,69.0,84.0,91.0,73.0,76.0,65.0,64.0,54.0,55.0,45.0,42.0,49.0,37.0,20.0,30.0,35.0,19.0,18.0,26.0,19.0,20.0,20.0,21.0,17.0,11.0,6.0,10.0,10.0,9.0,8.0,18.0,14.0,8.0,13.0,5.0,8.0,7.0,4.0,6.0,5.0,7.0,3.0,4.0,2.0,3.0,1.0,4.0,4.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,2.0,1.0,2.0,3.0,3.0,2.0,,,1.0,1.0,,,1.0,,, M85686,7.0,3.0,7.0,9.0,4.0,6.0,5.0,10.0,11.0,15.0,7.0,8.0,8.0,10.0,10.0,13.0,16.0,12.0,8.0,18.0,11.0,8.0,11.0,11.0,20.0,7.0,12.0,8.0,13.0,3.0,5.0,13.0,8.0,9.0,11.0,6.0,23.0,10.0,8.0,10.0,9.0,14.0,14.0,13.0,11.0,12.0,11.0,6.0,15.0,11.0,11.0,7.0,8.0,9.0,11.0,11.0,14.0,11.0,12.0,13.0,12.0,11.0,11.0,12.0,9.0,5.0,11.0,5.0,6.0,5.0,8.0,6.0,5.0,3.0,3.0,4.0,4.0,2.0,4.0,2.0,,5.0,2.0,,2.0,1.0,1.0,2.0,2.0,,,,,,,1.0 M85693,9.0,10.0,10.0,19.0,12.0,13.0,18.0,15.0,23.0,18.0,15.0,11.0,14.0,8.0,6.0,14.0,12.0,9.0,11.0,7.0,9.0,17.0,7.0,11.0,15.0,15.0,17.0,16.0,18.0,18.0,21.0,17.0,16.0,23.0,14.0,27.0,17.0,20.0,22.0,21.0,18.0,18.0,24.0,17.0,18.0,21.0,10.0,21.0,18.0,15.0,16.0,13.0,9.0,15.0,16.0,14.0,17.0,10.0,12.0,14.0,12.0,19.0,15.0,16.0,11.0,16.0,8.0,12.0,5.0,13.0,7.0,10.0,11.0,6.0,3.0,7.0,11.0,7.0,8.0,6.0,10.0,6.0,8.0,4.0,4.0,,5.0,4.0,3.0,,2.0,,3.0,2.0,,2.0 M85694,17.0,29.0,21.0,32.0,21.0,36.0,27.0,27.0,27.0,17.0,27.0,28.0,24.0,22.0,21.0,26.0,21.0,28.0,27.0,26.0,12.0,21.0,16.0,15.0,29.0,31.0,24.0,26.0,38.0,22.0,32.0,25.0,34.0,41.0,26.0,34.0,30.0,40.0,37.0,32.0,32.0,28.0,25.0,30.0,23.0,30.0,25.0,16.0,18.0,24.0,16.0,12.0,12.0,25.0,19.0,25.0,23.0,15.0,24.0,30.0,14.0,16.0,28.0,23.0,13.0,15.0,11.0,13.0,16.0,15.0,16.0,11.0,15.0,13.0,9.0,12.0,8.0,13.0,10.0,11.0,13.0,6.0,8.0,9.0,7.0,4.0,3.0,6.0,2.0,1.0,2.0,4.0,1.0,3.0,,1.0 M85697,35.0,44.0,32.0,32.0,21.0,34.0,26.0,31.0,34.0,33.0,31.0,39.0,33.0,32.0,36.0,37.0,40.0,36.0,29.0,31.0,33.0,38.0,27.0,32.0,36.0,43.0,42.0,38.0,41.0,32.0,53.0,36.0,37.0,40.0,39.0,35.0,33.0,40.0,35.0,32.0,18.0,28.0,30.0,27.0,24.0,30.0,36.0,28.0,24.0,31.0,33.0,26.0,38.0,23.0,29.0,23.0,24.0,17.0,26.0,23.0,20.0,22.0,24.0,21.0,23.0,15.0,20.0,19.0,17.0,19.0,10.0,17.0,9.0,12.0,8.0,9.0,10.0,6.0,10.0,5.0,13.0,6.0,5.0,3.0,5.0,3.0,5.0,2.0,4.0,2.0,2.0,,,2.0,1.0,4.0 M85699,31.0,30.0,25.0,29.0,21.0,32.0,26.0,32.0,33.0,41.0,30.0,39.0,34.0,29.0,45.0,41.0,53.0,32.0,38.0,41.0,32.0,49.0,35.0,44.0,43.0,29.0,30.0,33.0,34.0,33.0,36.0,35.0,31.0,28.0,30.0,45.0,24.0,39.0,34.0,46.0,42.0,35.0,47.0,28.0,43.0,37.0,28.0,29.0,20.0,21.0,26.0,31.0,30.0,23.0,27.0,24.0,21.0,13.0,22.0,13.0,19.0,23.0,13.0,12.0,13.0,22.0,10.0,14.0,18.0,9.0,14.0,12.0,12.0,14.0,10.0,2.0,7.0,9.0,4.0,5.0,5.0,5.0,3.0,1.0,4.0,5.0,7.0,4.0,6.0,7.0,1.0,1.0,4.0,,1.0,4.0 M85701,41.0,37.0,29.0,29.0,32.0,37.0,25.0,25.0,33.0,39.0,30.0,34.0,29.0,33.0,34.0,32.0,29.0,32.0,42.0,43.0,57.0,41.0,48.0,49.0,55.0,54.0,43.0,47.0,46.0,54.0,49.0,39.0,47.0,30.0,23.0,34.0,34.0,39.0,41.0,33.0,23.0,27.0,32.0,32.0,32.0,32.0,35.0,34.0,34.0,17.0,17.0,20.0,21.0,17.0,24.0,26.0,11.0,20.0,11.0,4.0,16.0,20.0,16.0,7.0,18.0,7.0,16.0,8.0,13.0,9.0,7.0,8.0,5.0,6.0,11.0,7.0,7.0,9.0,5.0,7.0,2.0,1.0,6.0,4.0,4.0,3.0,1.0,1.0,5.0,3.0,,3.0,4.0,,,3.0 M85706,82.0,73.0,93.0,70.0,81.0,96.0,94.0,117.0,117.0,105.0,116.0,125.0,109.0,94.0,128.0,117.0,113.0,143.0,112.0,115.0,109.0,104.0,95.0,116.0,115.0,109.0,99.0,99.0,101.0,98.0,115.0,105.0,97.0,90.0,100.0,103.0,103.0,108.0,113.0,107.0,99.0,106.0,101.0,108.0,92.0,115.0,86.0,75.0,82.0,64.0,82.0,75.0,81.0,82.0,71.0,68.0,67.0,61.0,47.0,63.0,56.0,69.0,51.0,58.0,56.0,46.0,40.0,50.0,41.0,53.0,55.0,31.0,38.0,34.0,33.0,26.0,35.0,16.0,32.0,18.0,20.0,21.0,15.0,18.0,11.0,14.0,11.0,14.0,9.0,11.0,8.0,4.0,11.0,4.0,4.0,7.0 M85711,28.0,24.0,13.0,19.0,32.0,25.0,29.0,14.0,24.0,21.0,19.0,20.0,16.0,26.0,16.0,24.0,16.0,20.0,22.0,23.0,23.0,28.0,31.0,28.0,46.0,44.0,41.0,46.0,66.0,55.0,44.0,47.0,41.0,49.0,28.0,38.0,42.0,30.0,24.0,37.0,20.0,28.0,19.0,28.0,21.0,18.0,20.0,15.0,18.0,19.0,21.0,20.0,13.0,14.0,15.0,14.0,7.0,12.0,18.0,7.0,11.0,8.0,8.0,9.0,7.0,6.0,11.0,8.0,10.0,12.0,6.0,8.0,6.0,10.0,7.0,9.0,3.0,4.0,5.0,6.0,,6.0,1.0,,1.0,3.0,4.0,1.0,2.0,2.0,3.0,4.0,1.0,2.0,1.0,2.0 M85713,42.0,39.0,47.0,40.0,51.0,43.0,40.0,51.0,34.0,46.0,38.0,30.0,31.0,41.0,40.0,25.0,27.0,31.0,34.0,36.0,35.0,40.0,40.0,54.0,55.0,52.0,43.0,68.0,53.0,51.0,64.0,60.0,60.0,38.0,38.0,43.0,53.0,44.0,42.0,47.0,38.0,40.0,37.0,35.0,23.0,48.0,31.0,28.0,22.0,30.0,24.0,26.0,33.0,26.0,18.0,26.0,22.0,18.0,17.0,18.0,16.0,8.0,23.0,10.0,16.0,18.0,22.0,10.0,13.0,13.0,11.0,14.0,12.0,9.0,5.0,8.0,7.0,7.0,7.0,7.0,4.0,6.0,6.0,8.0,5.0,3.0,5.0,2.0,6.0,6.0,6.0,3.0,2.0,2.0,3.0,7.0 M85715,68.0,71.0,72.0,73.0,65.0,76.0,82.0,82.0,78.0,76.0,73.0,86.0,100.0,73.0,91.0,83.0,86.0,103.0,93.0,81.0,89.0,73.0,102.0,96.0,107.0,110.0,77.0,100.0,104.0,87.0,104.0,81.0,93.0,95.0,84.0,73.0,80.0,92.0,81.0,88.0,89.0,94.0,84.0,86.0,79.0,101.0,59.0,63.0,70.0,88.0,50.0,65.0,55.0,52.0,66.0,42.0,54.0,57.0,38.0,46.0,52.0,32.0,53.0,31.0,36.0,43.0,29.0,27.0,35.0,29.0,29.0,24.0,25.0,17.0,26.0,20.0,17.0,15.0,16.0,15.0,5.0,14.0,14.0,10.0,17.0,12.0,12.0,9.0,8.0,10.0,3.0,6.0,5.0,8.0,1.0,16.0 M85716,24.0,26.0,22.0,24.0,44.0,39.0,28.0,34.0,41.0,33.0,27.0,38.0,49.0,33.0,54.0,50.0,38.0,36.0,38.0,27.0,22.0,31.0,22.0,30.0,31.0,35.0,32.0,53.0,45.0,37.0,38.0,39.0,41.0,34.0,53.0,45.0,40.0,46.0,61.0,48.0,35.0,47.0,34.0,39.0,35.0,40.0,30.0,29.0,25.0,22.0,30.0,17.0,22.0,17.0,19.0,34.0,25.0,33.0,29.0,32.0,29.0,32.0,16.0,20.0,32.0,13.0,13.0,21.0,10.0,11.0,13.0,9.0,12.0,11.0,10.0,4.0,7.0,13.0,11.0,6.0,6.0,3.0,2.0,2.0,3.0,5.0,2.0,6.0,3.0,2.0,,,2.0,,2.0,2.0 M85717,14.0,17.0,28.0,24.0,36.0,37.0,28.0,33.0,35.0,40.0,28.0,35.0,40.0,36.0,33.0,35.0,28.0,39.0,31.0,28.0,30.0,29.0,25.0,29.0,38.0,23.0,34.0,28.0,27.0,33.0,35.0,39.0,36.0,40.0,46.0,31.0,38.0,46.0,35.0,27.0,25.0,35.0,31.0,27.0,35.0,27.0,26.0,19.0,23.0,32.0,22.0,22.0,24.0,25.0,31.0,17.0,23.0,27.0,23.0,24.0,20.0,24.0,24.0,17.0,21.0,22.0,15.0,18.0,17.0,13.0,11.0,24.0,17.0,18.0,8.0,15.0,15.0,12.0,12.0,10.0,4.0,8.0,5.0,6.0,3.0,7.0,4.0,6.0,4.0,4.0,3.0,3.0,3.0,1.0,,5.0 M85721,72.0,71.0,69.0,52.0,47.0,45.0,47.0,43.0,57.0,56.0,57.0,60.0,62.0,55.0,82.0,57.0,56.0,70.0,71.0,63.0,71.0,93.0,83.0,77.0,120.0,120.0,111.0,90.0,90.0,88.0,102.0,92.0,85.0,77.0,76.0,84.0,74.0,79.0,60.0,62.0,59.0,55.0,54.0,45.0,57.0,58.0,33.0,49.0,39.0,39.0,50.0,42.0,34.0,18.0,37.0,24.0,40.0,35.0,31.0,26.0,26.0,24.0,20.0,17.0,19.0,25.0,31.0,21.0,11.0,11.0,7.0,9.0,13.0,5.0,10.0,13.0,4.0,11.0,1.0,4.0,4.0,3.0,3.0,1.0,3.0,,,4.0,2.0,3.0,3.0,2.0,,1.0,,1.0 M85722,38.0,26.0,31.0,30.0,39.0,29.0,35.0,25.0,43.0,56.0,42.0,39.0,57.0,55.0,43.0,51.0,58.0,49.0,57.0,47.0,48.0,45.0,58.0,55.0,30.0,44.0,45.0,49.0,41.0,43.0,32.0,41.0,36.0,38.0,35.0,35.0,39.0,43.0,38.0,35.0,37.0,47.0,43.0,52.0,35.0,46.0,25.0,37.0,29.0,30.0,35.0,44.0,28.0,34.0,31.0,24.0,24.0,33.0,23.0,22.0,7.0,10.0,19.0,13.0,7.0,14.0,10.0,8.0,8.0,17.0,19.0,13.0,14.0,6.0,7.0,4.0,6.0,3.0,5.0,10.0,4.0,5.0,2.0,4.0,3.0,6.0,5.0,3.0,6.0,7.0,1.0,3.0,3.0,2.0,2.0,3.0 M85730,41.0,38.0,32.0,22.0,33.0,29.0,25.0,37.0,28.0,39.0,49.0,30.0,35.0,37.0,28.0,40.0,37.0,36.0,38.0,27.0,31.0,22.0,19.0,26.0,26.0,27.0,36.0,42.0,35.0,39.0,53.0,41.0,51.0,43.0,47.0,53.0,62.0,54.0,53.0,46.0,42.0,43.0,44.0,54.0,37.0,40.0,36.0,32.0,36.0,33.0,33.0,31.0,37.0,31.0,27.0,28.0,27.0,21.0,30.0,23.0,21.0,26.0,27.0,22.0,27.0,19.0,18.0,17.0,16.0,22.0,22.0,14.0,13.0,16.0,13.0,13.0,14.0,8.0,13.0,3.0,8.0,7.0,7.0,5.0,4.0,5.0,3.0,1.0,2.0,2.0,2.0,2.0,1.0,1.0,1.0,1.0 M85732,11.0,9.0,15.0,15.0,18.0,10.0,7.0,15.0,20.0,18.0,12.0,11.0,17.0,12.0,16.0,11.0,16.0,17.0,25.0,17.0,35.0,28.0,46.0,29.0,36.0,51.0,51.0,41.0,36.0,36.0,30.0,23.0,19.0,16.0,19.0,10.0,16.0,22.0,17.0,19.0,14.0,12.0,8.0,11.0,16.0,14.0,12.0,10.0,6.0,12.0,5.0,18.0,10.0,14.0,9.0,10.0,13.0,11.0,13.0,7.0,4.0,12.0,8.0,9.0,5.0,8.0,5.0,9.0,5.0,2.0,5.0,7.0,3.0,5.0,4.0,2.0,4.0,5.0,4.0,3.0,3.0,1.0,4.0,2.0,2.0,1.0,1.0,3.0,2.0,,3.0,,2.0,,,2.0 M85733,49.0,30.0,41.0,39.0,43.0,36.0,40.0,41.0,49.0,35.0,52.0,51.0,49.0,58.0,54.0,39.0,56.0,56.0,43.0,47.0,37.0,53.0,36.0,47.0,50.0,61.0,43.0,58.0,53.0,66.0,80.0,56.0,61.0,59.0,58.0,75.0,64.0,81.0,55.0,65.0,48.0,80.0,54.0,63.0,64.0,50.0,51.0,35.0,47.0,56.0,46.0,32.0,38.0,43.0,41.0,52.0,53.0,34.0,39.0,29.0,34.0,45.0,29.0,27.0,23.0,29.0,29.0,26.0,29.0,22.0,19.0,20.0,29.0,23.0,18.0,17.0,27.0,18.0,8.0,13.0,13.0,15.0,10.0,4.0,11.0,9.0,4.0,5.0,5.0,6.0,5.0,6.0,4.0,3.0,2.0,6.0 M85735,39.0,51.0,51.0,46.0,54.0,45.0,43.0,42.0,55.0,52.0,47.0,69.0,57.0,75.0,62.0,59.0,57.0,51.0,47.0,58.0,40.0,41.0,56.0,53.0,43.0,58.0,51.0,52.0,47.0,45.0,41.0,44.0,44.0,43.0,54.0,44.0,47.0,50.0,49.0,60.0,47.0,47.0,42.0,60.0,53.0,46.0,32.0,45.0,37.0,23.0,29.0,25.0,26.0,30.0,32.0,25.0,19.0,22.0,20.0,19.0,18.0,10.0,15.0,15.0,9.0,17.0,16.0,6.0,21.0,12.0,16.0,11.0,8.0,9.0,7.0,12.0,2.0,9.0,7.0,5.0,7.0,10.0,,,3.0,3.0,3.0,5.0,7.0,1.0,4.0,2.0,1.0,4.0,1.0,8.0 M85736,22.0,26.0,34.0,28.0,31.0,34.0,37.0,35.0,30.0,37.0,38.0,35.0,41.0,39.0,29.0,35.0,29.0,42.0,41.0,34.0,37.0,28.0,22.0,45.0,20.0,25.0,32.0,35.0,38.0,38.0,40.0,34.0,23.0,38.0,35.0,55.0,40.0,46.0,37.0,36.0,32.0,38.0,47.0,46.0,26.0,33.0,38.0,21.0,30.0,39.0,32.0,23.0,24.0,23.0,28.0,15.0,26.0,22.0,11.0,20.0,22.0,22.0,23.0,14.0,16.0,14.0,24.0,15.0,16.0,16.0,16.0,9.0,8.0,7.0,8.0,7.0,5.0,6.0,7.0,3.0,11.0,8.0,7.0,8.0,7.0,12.0,3.0,7.0,6.0,4.0,10.0,3.0,1.0,,4.0,5.0 M85739,24.0,20.0,29.0,32.0,23.0,34.0,39.0,31.0,34.0,41.0,44.0,43.0,57.0,41.0,35.0,48.0,50.0,30.0,44.0,47.0,51.0,54.0,58.0,50.0,53.0,38.0,48.0,47.0,46.0,33.0,45.0,27.0,29.0,29.0,28.0,26.0,37.0,39.0,37.0,28.0,22.0,31.0,36.0,38.0,31.0,31.0,43.0,25.0,31.0,22.0,18.0,16.0,14.0,20.0,34.0,27.0,16.0,12.0,7.0,22.0,11.0,10.0,7.0,14.0,11.0,11.0,6.0,8.0,4.0,12.0,9.0,11.0,9.0,10.0,7.0,3.0,7.0,7.0,1.0,6.0,3.0,3.0,2.0,2.0,1.0,2.0,3.0,2.0,2.0,2.0,4.0,,1.0,,2.0,2.0 M85746,24.0,19.0,37.0,37.0,39.0,44.0,43.0,47.0,36.0,45.0,45.0,52.0,53.0,53.0,54.0,51.0,48.0,42.0,45.0,33.0,32.0,39.0,37.0,23.0,32.0,34.0,39.0,29.0,42.0,33.0,39.0,35.0,44.0,52.0,54.0,44.0,60.0,38.0,48.0,52.0,47.0,52.0,36.0,28.0,49.0,40.0,29.0,29.0,37.0,32.0,30.0,24.0,33.0,28.0,21.0,33.0,31.0,22.0,33.0,22.0,32.0,29.0,19.0,25.0,20.0,23.0,23.0,21.0,22.0,16.0,17.0,16.0,19.0,12.0,12.0,14.0,16.0,19.0,11.0,13.0,8.0,9.0,6.0,4.0,4.0,6.0,7.0,5.0,3.0,4.0,2.0,4.0,,1.0,1.0,4.0 M85749,25.0,24.0,17.0,18.0,24.0,25.0,22.0,22.0,33.0,18.0,28.0,22.0,25.0,33.0,32.0,40.0,21.0,20.0,20.0,19.0,27.0,27.0,25.0,35.0,25.0,26.0,18.0,19.0,30.0,20.0,19.0,13.0,17.0,21.0,22.0,33.0,22.0,25.0,18.0,25.0,38.0,22.0,26.0,22.0,21.0,15.0,20.0,20.0,11.0,16.0,18.0,11.0,9.0,15.0,17.0,17.0,14.0,8.0,7.0,9.0,9.0,10.0,6.0,12.0,5.0,11.0,4.0,6.0,8.0,8.0,6.0,9.0,9.0,8.0,3.0,4.0,4.0,1.0,8.0,3.0,3.0,3.0,4.0,2.0,5.0,2.0,3.0,1.0,1.0,1.0,3.0,1.0,3.0,3.0,1.0, M85756,11.0,9.0,10.0,15.0,8.0,16.0,13.0,11.0,12.0,15.0,17.0,11.0,18.0,15.0,20.0,26.0,28.0,21.0,16.0,24.0,17.0,26.0,24.0,15.0,21.0,17.0,20.0,26.0,17.0,19.0,12.0,14.0,16.0,18.0,11.0,13.0,16.0,12.0,12.0,13.0,20.0,15.0,15.0,20.0,19.0,17.0,19.0,22.0,17.0,17.0,21.0,16.0,10.0,14.0,16.0,10.0,8.0,9.0,9.0,10.0,8.0,4.0,13.0,13.0,4.0,6.0,11.0,5.0,11.0,5.0,4.0,5.0,5.0,7.0,8.0,3.0,10.0,5.0,6.0,5.0,2.0,5.0,5.0,4.0,2.0,6.0,7.0,2.0,2.0,,2.0,1.0,,,1.0,2.0 M85757,26.0,27.0,16.0,40.0,32.0,25.0,37.0,26.0,26.0,27.0,26.0,25.0,27.0,21.0,30.0,29.0,16.0,26.0,21.0,26.0,33.0,29.0,43.0,32.0,36.0,38.0,44.0,32.0,46.0,38.0,41.0,39.0,33.0,41.0,28.0,36.0,29.0,30.0,40.0,40.0,27.0,29.0,26.0,35.0,25.0,25.0,27.0,23.0,19.0,31.0,25.0,15.0,26.0,19.0,20.0,15.0,16.0,18.0,13.0,22.0,10.0,18.0,18.0,13.0,10.0,13.0,12.0,4.0,8.0,9.0,10.0,12.0,5.0,7.0,6.0,6.0,6.0,4.0,7.0,4.0,4.0,2.0,3.0,6.0,,3.0,1.0,2.0,1.0,,1.0,1.0,1.0,,,3.0 M85759,35.0,42.0,41.0,56.0,50.0,56.0,46.0,58.0,68.0,52.0,87.0,69.0,67.0,65.0,84.0,73.0,82.0,69.0,79.0,114.0,75.0,102.0,78.0,75.0,79.0,67.0,54.0,64.0,56.0,65.0,69.0,61.0,38.0,46.0,46.0,46.0,50.0,56.0,49.0,59.0,57.0,61.0,65.0,52.0,48.0,54.0,44.0,40.0,38.0,37.0,42.0,30.0,35.0,26.0,34.0,40.0,23.0,34.0,32.0,22.0,21.0,38.0,37.0,34.0,29.0,25.0,22.0,20.0,19.0,17.0,13.0,11.0,10.0,14.0,8.0,16.0,11.0,8.0,9.0,4.0,7.0,8.0,6.0,6.0,10.0,6.0,6.0,8.0,5.0,8.0,4.0,4.0,2.0,,2.0,2.0 M85766,29.0,31.0,32.0,37.0,29.0,38.0,27.0,21.0,28.0,17.0,32.0,30.0,38.0,33.0,29.0,30.0,35.0,43.0,47.0,32.0,29.0,41.0,30.0,35.0,40.0,37.0,49.0,33.0,46.0,49.0,29.0,35.0,30.0,44.0,24.0,32.0,28.0,43.0,28.0,39.0,34.0,28.0,15.0,18.0,25.0,28.0,29.0,22.0,16.0,17.0,15.0,14.0,21.0,11.0,14.0,22.0,15.0,16.0,9.0,11.0,8.0,10.0,6.0,17.0,12.0,17.0,6.0,9.0,11.0,9.0,5.0,8.0,12.0,9.0,4.0,7.0,4.0,12.0,8.0,2.0,4.0,2.0,1.0,,4.0,7.0,2.0,4.0,2.0,2.0,1.0,1.0,2.0,1.0,3.0,2.0 M85770,4.0,9.0,8.0,12.0,9.0,7.0,13.0,9.0,11.0,9.0,13.0,21.0,8.0,10.0,16.0,6.0,16.0,6.0,9.0,7.0,10.0,7.0,6.0,8.0,10.0,12.0,8.0,14.0,12.0,10.0,11.0,9.0,13.0,10.0,14.0,15.0,15.0,15.0,12.0,12.0,11.0,18.0,15.0,10.0,16.0,14.0,22.0,10.0,6.0,7.0,11.0,11.0,18.0,10.0,10.0,18.0,19.0,11.0,18.0,11.0,15.0,16.0,15.0,12.0,13.0,16.0,6.0,22.0,14.0,17.0,13.0,11.0,8.0,8.0,12.0,10.0,11.0,8.0,5.0,4.0,7.0,7.0,3.0,9.0,2.0,3.0,1.0,5.0,4.0,3.0,,,3.0,,1.0,1.0 M85774,51.0,54.0,59.0,51.0,52.0,66.0,50.0,59.0,68.0,67.0,54.0,58.0,65.0,75.0,70.0,67.0,66.0,64.0,56.0,43.0,54.0,57.0,64.0,58.0,58.0,63.0,68.0,51.0,77.0,63.0,52.0,70.0,59.0,62.0,49.0,65.0,65.0,64.0,64.0,62.0,66.0,52.0,57.0,66.0,55.0,54.0,43.0,54.0,43.0,44.0,31.0,37.0,41.0,26.0,40.0,43.0,28.0,34.0,29.0,26.0,22.0,23.0,24.0,22.0,21.0,25.0,12.0,16.0,21.0,21.0,12.0,12.0,18.0,14.0,13.0,11.0,10.0,10.0,5.0,5.0,10.0,7.0,4.0,8.0,7.0,5.0,3.0,5.0,5.0,4.0,1.0,1.0,1.0,6.0,1.0,6.0 M85778,31.0,28.0,39.0,38.0,33.0,22.0,23.0,28.0,21.0,22.0,17.0,14.0,20.0,17.0,6.0,3.0,14.0,18.0,163.0,354.0,403.0,374.0,414.0,489.0,548.0,532.0,475.0,519.0,431.0,434.0,393.0,315.0,294.0,241.0,230.0,202.0,166.0,140.0,119.0,98.0,87.0,97.0,71.0,69.0,39.0,41.0,26.0,29.0,28.0,22.0,34.0,18.0,24.0,19.0,28.0,19.0,14.0,16.0,24.0,16.0,20.0,16.0,18.0,12.0,12.0,7.0,9.0,12.0,7.0,6.0,14.0,5.0,5.0,6.0,6.0,3.0,3.0,4.0,3.0,2.0,3.0,2.0,,1.0,2.0,1.0,4.0,,2.0,,,,,,, M85779,5.0,9.0,12.0,26.0,18.0,14.0,20.0,19.0,14.0,24.0,19.0,32.0,19.0,21.0,21.0,19.0,25.0,30.0,14.0,12.0,17.0,20.0,17.0,12.0,20.0,10.0,16.0,19.0,15.0,20.0,22.0,21.0,24.0,18.0,28.0,21.0,26.0,28.0,18.0,20.0,21.0,25.0,19.0,15.0,14.0,13.0,19.0,15.0,17.0,11.0,8.0,9.0,17.0,19.0,29.0,21.0,26.0,16.0,21.0,15.0,26.0,15.0,23.0,20.0,10.0,14.0,15.0,13.0,4.0,9.0,14.0,9.0,5.0,12.0,9.0,9.0,11.0,10.0,6.0,8.0,7.0,8.0,6.0,7.0,6.0,5.0,8.0,6.0,6.0,2.0,4.0,5.0,3.0,2.0,2.0,5.0 M85781,22.0,34.0,30.0,16.0,33.0,19.0,20.0,25.0,34.0,29.0,38.0,27.0,39.0,28.0,35.0,29.0,44.0,30.0,24.0,37.0,40.0,39.0,29.0,45.0,38.0,45.0,38.0,33.0,28.0,26.0,26.0,35.0,21.0,25.0,20.0,30.0,35.0,28.0,27.0,28.0,31.0,20.0,29.0,27.0,28.0,22.0,18.0,23.0,12.0,25.0,8.0,20.0,10.0,9.0,17.0,14.0,16.0,12.0,9.0,12.0,9.0,9.0,7.0,8.0,10.0,3.0,5.0,9.0,9.0,6.0,11.0,5.0,6.0,8.0,7.0,4.0,4.0,6.0,3.0,5.0,3.0,2.0,3.0,,7.0,1.0,2.0,2.0,,3.0,3.0,3.0,,2.0,1.0,3.0 M85783,43.0,47.0,30.0,46.0,38.0,40.0,33.0,56.0,41.0,60.0,49.0,51.0,30.0,53.0,49.0,49.0,50.0,49.0,62.0,48.0,62.0,48.0,58.0,62.0,75.0,50.0,55.0,61.0,55.0,67.0,45.0,41.0,47.0,55.0,35.0,43.0,44.0,40.0,39.0,31.0,29.0,36.0,29.0,35.0,44.0,32.0,30.0,24.0,28.0,26.0,29.0,19.0,20.0,25.0,26.0,24.0,26.0,17.0,14.0,14.0,14.0,11.0,13.0,7.0,13.0,19.0,7.0,11.0,13.0,6.0,14.0,12.0,10.0,8.0,5.0,6.0,3.0,4.0,7.0,10.0,2.0,6.0,4.0,2.0,5.0,3.0,2.0,,1.0,4.0,3.0,1.0,3.0,1.0,1.0,3.0 M85792,13.0,16.0,13.0,21.0,16.0,24.0,16.0,23.0,25.0,19.0,17.0,14.0,19.0,16.0,17.0,12.0,18.0,19.0,11.0,15.0,12.0,10.0,17.0,19.0,7.0,15.0,19.0,19.0,11.0,24.0,15.0,28.0,22.0,28.0,22.0,19.0,27.0,18.0,25.0,20.0,28.0,23.0,15.0,20.0,21.0,27.0,20.0,13.0,16.0,15.0,20.0,23.0,15.0,26.0,29.0,20.0,16.0,22.0,22.0,27.0,24.0,18.0,27.0,23.0,25.0,19.0,23.0,27.0,17.0,17.0,18.0,15.0,18.0,11.0,16.0,22.0,19.0,14.0,28.0,19.0,18.0,18.0,16.0,7.0,13.0,10.0,8.0,12.0,13.0,11.0,9.0,5.0,7.0,1.0,2.0,3.0 M85794,29.0,38.0,20.0,24.0,23.0,31.0,25.0,33.0,26.0,22.0,24.0,24.0,33.0,20.0,26.0,36.0,25.0,28.0,34.0,32.0,27.0,38.0,37.0,41.0,31.0,34.0,42.0,36.0,48.0,34.0,26.0,41.0,29.0,30.0,29.0,21.0,31.0,20.0,30.0,26.0,27.0,30.0,17.0,23.0,29.0,26.0,25.0,19.0,16.0,11.0,21.0,16.0,11.0,17.0,19.0,13.0,15.0,15.0,10.0,11.0,10.0,15.0,6.0,11.0,9.0,8.0,10.0,10.0,9.0,20.0,7.0,13.0,4.0,5.0,2.0,4.0,13.0,5.0,5.0,3.0,3.0,5.0,4.0,2.0,3.0,2.0,1.0,,3.0,1.0,,1.0,1.0,2.0,,2.0 M85797,62.0,59.0,46.0,53.0,47.0,54.0,46.0,42.0,51.0,50.0,35.0,41.0,45.0,37.0,43.0,28.0,41.0,32.0,40.0,70.0,79.0,84.0,113.0,141.0,202.0,228.0,247.0,231.0,254.0,244.0,224.0,178.0,170.0,183.0,149.0,138.0,129.0,118.0,94.0,79.0,91.0,65.0,83.0,85.0,61.0,68.0,63.0,50.0,41.0,39.0,43.0,53.0,28.0,38.0,31.0,34.0,48.0,42.0,30.0,40.0,40.0,37.0,42.0,18.0,30.0,29.0,26.0,18.0,28.0,14.0,14.0,14.0,9.0,12.0,11.0,7.0,10.0,6.0,3.0,2.0,6.0,8.0,8.0,6.0,5.0,6.0,8.0,4.0,3.0,3.0,2.0,2.0,,1.0,2.0,3.0 M85803,66.0,73.0,80.0,68.0,77.0,67.0,81.0,90.0,103.0,95.0,86.0,108.0,94.0,100.0,99.0,125.0,114.0,114.0,130.0,119.0,116.0,115.0,93.0,102.0,100.0,106.0,69.0,76.0,75.0,73.0,65.0,58.0,68.0,62.0,45.0,82.0,79.0,85.0,88.0,83.0,72.0,63.0,78.0,83.0,83.0,80.0,58.0,72.0,61.0,48.0,65.0,46.0,36.0,48.0,45.0,46.0,40.0,31.0,23.0,30.0,22.0,19.0,20.0,19.0,24.0,18.0,17.0,19.0,18.0,18.0,17.0,4.0,,8.0,10.0,12.0,10.0,6.0,7.0,5.0,6.0,6.0,8.0,1.0,5.0,3.0,5.0,4.0,1.0,,4.0,,5.0,,,3.0 M88020,37.0,50.0,48.0,47.0,49.0,47.0,65.0,69.0,70.0,92.0,62.0,73.0,89.0,73.0,79.0,72.0,74.0,73.0,65.0,50.0,50.0,43.0,67.0,58.0,55.0,57.0,71.0,73.0,74.0,64.0,86.0,87.0,90.0,106.0,103.0,101.0,95.0,114.0,88.0,86.0,85.0,96.0,110.0,96.0,95.0,113.0,96.0,79.0,81.0,84.0,69.0,67.0,105.0,85.0,86.0,76.0,80.0,93.0,87.0,92.0,79.0,70.0,89.0,84.0,87.0,67.0,80.0,73.0,46.0,63.0,71.0,55.0,61.0,67.0,49.0,50.0,68.0,54.0,50.0,37.0,41.0,46.0,48.0,32.0,31.0,26.0,34.0,34.0,23.0,33.0,17.0,15.0,23.0,9.0,6.0,20.0 M89001,20.0,13.0,18.0,15.0,14.0,21.0,21.0,18.0,16.0,15.0,20.0,21.0,16.0,22.0,17.0,17.0,20.0,15.0,20.0,11.0,17.0,12.0,21.0,22.0,15.0,15.0,26.0,25.0,13.0,31.0,33.0,20.0,20.0,38.0,28.0,25.0,19.0,40.0,15.0,34.0,23.0,27.0,17.0,22.0,19.0,24.0,13.0,12.0,17.0,16.0,16.0,21.0,20.0,13.0,22.0,24.0,24.0,26.0,24.0,21.0,24.0,27.0,28.0,20.0,16.0,41.0,21.0,28.0,24.0,24.0,22.0,15.0,29.0,23.0,23.0,26.0,23.0,23.0,24.0,18.0,14.0,12.0,15.0,6.0,7.0,6.0,2.0,5.0,5.0,3.0,2.0,5.0,2.0,5.0,2.0,3.0 M89002,41.0,28.0,44.0,33.0,36.0,32.0,40.0,43.0,45.0,43.0,54.0,40.0,45.0,63.0,53.0,50.0,59.0,41.0,47.0,46.0,44.0,35.0,38.0,49.0,36.0,46.0,40.0,40.0,50.0,46.0,52.0,53.0,54.0,57.0,59.0,50.0,51.0,56.0,57.0,51.0,51.0,50.0,58.0,38.0,41.0,37.0,38.0,40.0,31.0,41.0,32.0,41.0,40.0,38.0,34.0,43.0,41.0,39.0,36.0,29.0,42.0,35.0,37.0,36.0,35.0,39.0,40.0,18.0,25.0,34.0,20.0,26.0,25.0,15.0,25.0,23.0,19.0,17.0,15.0,13.0,19.0,9.0,12.0,10.0,8.0,4.0,8.0,11.0,6.0,4.0,4.0,4.0,3.0,2.0,2.0,6.0 M89003,131.0,151.0,159.0,165.0,172.0,205.0,183.0,224.0,222.0,233.0,257.0,228.0,244.0,279.0,255.0,235.0,228.0,242.0,218.0,194.0,150.0,180.0,167.0,173.0,190.0,161.0,188.0,178.0,179.0,186.0,213.0,201.0,228.0,207.0,249.0,239.0,233.0,276.0,278.0,267.0,262.0,259.0,287.0,289.0,285.0,291.0,275.0,226.0,276.0,250.0,251.0,264.0,247.0,280.0,241.0,270.0,264.0,255.0,240.0,273.0,258.0,263.0,260.0,254.0,255.0,250.0,222.0,240.0,217.0,223.0,213.0,220.0,220.0,206.0,203.0,219.0,266.0,219.0,243.0,171.0,173.0,171.0,164.0,136.0,129.0,95.0,102.0,116.0,85.0,80.0,74.0,55.0,45.0,54.0,37.0,112.0 M89005,45.0,38.0,41.0,52.0,34.0,45.0,48.0,38.0,51.0,56.0,41.0,44.0,38.0,60.0,47.0,49.0,49.0,41.0,32.0,42.0,24.0,30.0,50.0,51.0,30.0,54.0,47.0,34.0,41.0,59.0,51.0,66.0,58.0,78.0,53.0,52.0,54.0,73.0,69.0,48.0,69.0,50.0,49.0,43.0,60.0,59.0,55.0,65.0,36.0,65.0,36.0,48.0,59.0,60.0,63.0,58.0,68.0,61.0,62.0,74.0,50.0,63.0,66.0,52.0,60.0,48.0,38.0,36.0,51.0,41.0,41.0,45.0,40.0,34.0,44.0,48.0,38.0,47.0,62.0,38.0,45.0,38.0,47.0,31.0,13.0,20.0,33.0,26.0,19.0,24.0,17.0,20.0,13.0,12.0,8.0,26.0 M89007,48.0,28.0,28.0,44.0,40.0,28.0,35.0,43.0,60.0,44.0,45.0,41.0,39.0,42.0,42.0,42.0,44.0,30.0,34.0,38.0,35.0,31.0,41.0,34.0,40.0,39.0,36.0,40.0,49.0,45.0,47.0,50.0,50.0,46.0,65.0,41.0,45.0,56.0,65.0,52.0,48.0,43.0,49.0,42.0,47.0,47.0,37.0,42.0,44.0,45.0,39.0,45.0,33.0,35.0,47.0,40.0,45.0,52.0,56.0,41.0,44.0,45.0,47.0,40.0,38.0,32.0,34.0,31.0,27.0,19.0,25.0,28.0,21.0,29.0,18.0,19.0,22.0,23.0,28.0,33.0,28.0,19.0,21.0,18.0,12.0,20.0,20.0,13.0,22.0,9.0,5.0,8.0,7.0,7.0,2.0,6.0 M89008,72.0,83.0,77.0,92.0,74.0,96.0,80.0,69.0,84.0,105.0,95.0,117.0,86.0,104.0,91.0,96.0,67.0,78.0,88.0,83.0,82.0,76.0,90.0,69.0,90.0,86.0,75.0,101.0,94.0,102.0,101.0,106.0,103.0,133.0,127.0,130.0,127.0,101.0,97.0,104.0,97.0,88.0,88.0,88.0,86.0,66.0,72.0,64.0,66.0,80.0,72.0,91.0,86.0,72.0,102.0,95.0,92.0,97.0,87.0,92.0,98.0,73.0,84.0,72.0,79.0,75.0,62.0,61.0,48.0,51.0,47.0,59.0,48.0,50.0,57.0,62.0,60.0,47.0,60.0,56.0,48.0,49.0,42.0,29.0,18.0,29.0,30.0,17.0,14.0,10.0,11.0,12.0,9.0,9.0,7.0,10.0 M89009,35.0,58.0,52.0,60.0,60.0,60.0,64.0,78.0,77.0,75.0,67.0,79.0,86.0,64.0,67.0,75.0,60.0,65.0,61.0,51.0,76.0,40.0,52.0,54.0,52.0,61.0,59.0,68.0,81.0,73.0,74.0,74.0,89.0,81.0,92.0,93.0,92.0,81.0,95.0,74.0,76.0,61.0,69.0,62.0,85.0,77.0,59.0,70.0,75.0,53.0,62.0,67.0,73.0,79.0,94.0,84.0,69.0,80.0,95.0,83.0,69.0,82.0,75.0,80.0,61.0,73.0,56.0,49.0,57.0,43.0,35.0,47.0,47.0,48.0,36.0,41.0,53.0,55.0,58.0,39.0,48.0,34.0,44.0,34.0,29.0,25.0,24.0,21.0,18.0,19.0,15.0,6.0,15.0,7.0,9.0,15.0 M89010,29.0,36.0,35.0,42.0,39.0,50.0,43.0,46.0,65.0,65.0,66.0,79.0,66.0,71.0,76.0,75.0,59.0,63.0,52.0,31.0,42.0,44.0,37.0,46.0,58.0,42.0,45.0,42.0,49.0,36.0,41.0,48.0,57.0,56.0,52.0,43.0,51.0,57.0,53.0,63.0,72.0,60.0,90.0,63.0,68.0,75.0,76.0,78.0,67.0,68.0,64.0,71.0,79.0,66.0,75.0,80.0,78.0,69.0,79.0,109.0,80.0,76.0,92.0,76.0,77.0,74.0,74.0,59.0,65.0,40.0,51.0,96.0,69.0,54.0,66.0,68.0,81.0,81.0,69.0,56.0,58.0,72.0,66.0,37.0,34.0,31.0,46.0,26.0,32.0,38.0,34.0,26.0,10.0,13.0,14.0,34.0 M89012,48.0,59.0,67.0,70.0,68.0,74.0,81.0,75.0,75.0,86.0,92.0,76.0,84.0,88.0,88.0,68.0,68.0,76.0,65.0,62.0,70.0,67.0,55.0,65.0,63.0,75.0,87.0,82.0,72.0,67.0,91.0,79.0,86.0,82.0,109.0,90.0,112.0,91.0,91.0,92.0,86.0,73.0,69.0,67.0,77.0,71.0,42.0,48.0,42.0,54.0,46.0,59.0,81.0,90.0,72.0,72.0,85.0,70.0,75.0,65.0,63.0,69.0,66.0,63.0,54.0,44.0,47.0,37.0,35.0,29.0,25.0,30.0,26.0,34.0,37.0,41.0,47.0,54.0,67.0,34.0,47.0,39.0,22.0,34.0,25.0,16.0,20.0,18.0,17.0,19.0,11.0,9.0,8.0,9.0,4.0,13.0 M89013,26.0,23.0,32.0,32.0,48.0,48.0,47.0,34.0,56.0,53.0,48.0,67.0,48.0,56.0,55.0,50.0,55.0,51.0,41.0,49.0,43.0,33.0,32.0,35.0,41.0,44.0,37.0,46.0,49.0,55.0,51.0,55.0,42.0,55.0,53.0,50.0,59.0,55.0,54.0,68.0,44.0,47.0,53.0,51.0,48.0,46.0,40.0,23.0,40.0,40.0,24.0,31.0,30.0,38.0,29.0,36.0,36.0,32.0,24.0,38.0,32.0,27.0,37.0,30.0,14.0,21.0,19.0,16.0,18.0,20.0,15.0,20.0,19.0,24.0,17.0,28.0,19.0,10.0,14.0,19.0,14.0,12.0,6.0,4.0,8.0,9.0,10.0,3.0,4.0,4.0,1.0,1.0,,2.0,,3.0 M89015,52.0,49.0,48.0,55.0,77.0,62.0,73.0,71.0,61.0,72.0,82.0,79.0,100.0,86.0,91.0,66.0,79.0,75.0,67.0,52.0,52.0,44.0,45.0,57.0,63.0,57.0,76.0,49.0,59.0,72.0,59.0,77.0,59.0,78.0,84.0,82.0,89.0,76.0,94.0,85.0,83.0,99.0,100.0,80.0,91.0,81.0,69.0,58.0,77.0,80.0,74.0,90.0,83.0,85.0,72.0,89.0,83.0,96.0,100.0,85.0,83.0,85.0,89.0,87.0,74.0,76.0,67.0,66.0,67.0,66.0,76.0,71.0,61.0,50.0,46.0,52.0,55.0,72.0,75.0,52.0,52.0,50.0,36.0,39.0,34.0,31.0,38.0,37.0,23.0,18.0,27.0,14.0,19.0,9.0,15.0,29.0 M89016,29.0,49.0,28.0,64.0,64.0,57.0,74.0,55.0,60.0,64.0,72.0,64.0,67.0,86.0,74.0,62.0,78.0,76.0,69.0,68.0,60.0,54.0,54.0,67.0,62.0,59.0,64.0,47.0,47.0,53.0,50.0,52.0,54.0,58.0,49.0,58.0,57.0,70.0,60.0,74.0,81.0,77.0,66.0,97.0,84.0,87.0,90.0,74.0,94.0,81.0,80.0,85.0,85.0,108.0,83.0,113.0,115.0,84.0,103.0,98.0,107.0,90.0,91.0,97.0,80.0,89.0,73.0,66.0,82.0,70.0,73.0,93.0,72.0,85.0,70.0,83.0,81.0,90.0,101.0,66.0,81.0,64.0,67.0,49.0,38.0,54.0,45.0,33.0,34.0,24.0,23.0,25.0,14.0,16.0,6.0,23.0 M89017,197.0,209.0,218.0,216.0,262.0,306.0,293.0,311.0,316.0,383.0,361.0,346.0,377.0,350.0,388.0,368.0,404.0,333.0,302.0,252.0,221.0,208.0,235.0,238.0,261.0,257.0,279.0,288.0,320.0,316.0,300.0,335.0,340.0,335.0,380.0,408.0,353.0,378.0,411.0,412.0,455.0,442.0,447.0,423.0,432.0,419.0,423.0,412.0,375.0,392.0,390.0,348.0,355.0,371.0,404.0,345.0,377.0,329.0,341.0,351.0,344.0,320.0,351.0,365.0,306.0,329.0,315.0,280.0,264.0,259.0,250.0,286.0,271.0,255.0,268.0,282.0,292.0,284.0,284.0,225.0,209.0,259.0,207.0,184.0,132.0,163.0,180.0,145.0,149.0,120.0,113.0,100.0,82.0,63.0,55.0,139.0 M89019,62.0,48.0,61.0,57.0,68.0,71.0,55.0,80.0,82.0,79.0,56.0,59.0,69.0,77.0,72.0,85.0,81.0,65.0,68.0,57.0,55.0,52.0,54.0,65.0,59.0,64.0,63.0,71.0,60.0,86.0,72.0,69.0,89.0,90.0,83.0,84.0,83.0,94.0,96.0,91.0,77.0,65.0,76.0,73.0,82.0,87.0,77.0,80.0,75.0,74.0,72.0,54.0,67.0,81.0,71.0,85.0,81.0,88.0,95.0,82.0,71.0,72.0,71.0,62.0,66.0,60.0,65.0,55.0,38.0,37.0,28.0,54.0,28.0,47.0,40.0,41.0,44.0,47.0,48.0,39.0,38.0,39.0,20.0,42.0,32.0,31.0,26.0,20.0,15.0,14.0,11.0,12.0,11.0,6.0,3.0,10.0 M89021,23.0,26.0,26.0,27.0,26.0,27.0,31.0,21.0,27.0,33.0,26.0,20.0,21.0,21.0,26.0,32.0,23.0,15.0,16.0,13.0,19.0,22.0,22.0,17.0,33.0,29.0,43.0,32.0,39.0,30.0,31.0,28.0,42.0,34.0,44.0,32.0,40.0,45.0,38.0,39.0,26.0,45.0,26.0,38.0,29.0,25.0,24.0,18.0,25.0,23.0,34.0,30.0,23.0,22.0,24.0,28.0,39.0,29.0,36.0,27.0,31.0,35.0,30.0,36.0,25.0,35.0,28.0,29.0,26.0,24.0,19.0,24.0,18.0,16.0,19.0,19.0,20.0,28.0,33.0,20.0,19.0,19.0,19.0,24.0,15.0,12.0,18.0,13.0,12.0,6.0,3.0,7.0,6.0,6.0,2.0,10.0 M89024,12.0,20.0,17.0,14.0,19.0,20.0,21.0,29.0,20.0,38.0,26.0,27.0,31.0,28.0,22.0,34.0,12.0,20.0,27.0,22.0,16.0,22.0,12.0,11.0,15.0,16.0,33.0,26.0,29.0,29.0,19.0,27.0,25.0,21.0,34.0,29.0,27.0,26.0,33.0,42.0,30.0,36.0,32.0,30.0,30.0,28.0,30.0,22.0,11.0,24.0,22.0,21.0,17.0,32.0,21.0,24.0,14.0,17.0,29.0,30.0,26.0,28.0,28.0,27.0,30.0,27.0,20.0,22.0,29.0,21.0,12.0,16.0,23.0,13.0,22.0,11.0,14.0,21.0,18.0,17.0,12.0,22.0,15.0,7.0,10.0,7.0,3.0,8.0,7.0,6.0,6.0,1.0,7.0,6.0,1.0,11.0 M89026,41.0,35.0,64.0,48.0,73.0,47.0,52.0,68.0,68.0,70.0,72.0,79.0,69.0,64.0,69.0,65.0,58.0,56.0,41.0,60.0,49.0,40.0,51.0,61.0,59.0,47.0,59.0,63.0,72.0,70.0,62.0,65.0,66.0,74.0,69.0,76.0,96.0,86.0,61.0,83.0,78.0,71.0,74.0,53.0,59.0,69.0,68.0,51.0,54.0,75.0,54.0,74.0,63.0,73.0,92.0,78.0,104.0,76.0,73.0,80.0,75.0,86.0,74.0,70.0,72.0,80.0,72.0,44.0,63.0,51.0,52.0,64.0,63.0,51.0,58.0,53.0,62.0,57.0,70.0,40.0,51.0,57.0,38.0,40.0,29.0,20.0,17.0,14.0,16.0,21.0,10.0,9.0,15.0,6.0,1.0,16.0 M89027,55.0,50.0,62.0,58.0,57.0,63.0,55.0,60.0,52.0,64.0,70.0,64.0,72.0,75.0,50.0,63.0,52.0,60.0,65.0,54.0,54.0,49.0,36.0,44.0,45.0,50.0,52.0,65.0,67.0,73.0,70.0,82.0,61.0,62.0,63.0,77.0,74.0,64.0,56.0,61.0,75.0,58.0,62.0,55.0,67.0,57.0,58.0,40.0,48.0,51.0,50.0,49.0,38.0,64.0,59.0,52.0,61.0,51.0,43.0,33.0,36.0,38.0,39.0,41.0,58.0,32.0,41.0,31.0,29.0,30.0,31.0,22.0,36.0,22.0,34.0,33.0,19.0,34.0,33.0,20.0,25.0,23.0,23.0,21.0,13.0,10.0,10.0,6.0,12.0,10.0,4.0,3.0,2.0,2.0,1.0,3.0 M89030,24.0,10.0,19.0,23.0,16.0,22.0,28.0,39.0,29.0,41.0,37.0,42.0,45.0,44.0,40.0,42.0,34.0,50.0,42.0,21.0,27.0,22.0,32.0,24.0,26.0,25.0,26.0,25.0,29.0,23.0,26.0,19.0,22.0,19.0,26.0,28.0,32.0,27.0,30.0,31.0,41.0,40.0,36.0,38.0,41.0,35.0,44.0,42.0,44.0,41.0,44.0,37.0,51.0,65.0,54.0,39.0,52.0,48.0,42.0,55.0,38.0,49.0,40.0,53.0,41.0,55.0,41.0,37.0,30.0,45.0,33.0,25.0,35.0,43.0,39.0,50.0,39.0,38.0,45.0,53.0,43.0,31.0,22.0,16.0,16.0,20.0,13.0,14.0,14.0,16.0,6.0,6.0,7.0,8.0,3.0,7.0 M89608,16.0,11.0,19.0,21.0,16.0,22.0,19.0,21.0,20.0,16.0,18.0,15.0,22.0,20.0,16.0,17.0,20.0,20.0,20.0,16.0,19.0,16.0,20.0,16.0,21.0,23.0,13.0,17.0,15.0,17.0,25.0,15.0,20.0,20.0,20.0,13.0,17.0,27.0,22.0,28.0,26.0,22.0,30.0,22.0,15.0,30.0,14.0,17.0,24.0,25.0,32.0,17.0,30.0,32.0,40.0,26.0,36.0,24.0,24.0,21.0,26.0,39.0,24.0,29.0,41.0,28.0,28.0,20.0,21.0,18.0,19.0,14.0,31.0,14.0,16.0,16.0,19.0,20.0,24.0,11.0,19.0,16.0,19.0,9.0,11.0,8.0,6.0,6.0,8.0,7.0,9.0,4.0,9.0,2.0,10.0,13.0 M91642,7.0,8.0,5.0,18.0,10.0,15.0,11.0,4.0,12.0,9.0,5.0,10.0,9.0,10.0,8.0,10.0,8.0,7.0,11.0,7.0,10.0,5.0,10.0,7.0,12.0,8.0,12.0,9.0,7.0,15.0,12.0,8.0,14.0,12.0,12.0,15.0,14.0,11.0,20.0,12.0,9.0,7.0,8.0,10.0,8.0,8.0,9.0,14.0,7.0,10.0,13.0,6.0,10.0,9.0,8.0,7.0,10.0,8.0,12.0,13.0,11.0,16.0,14.0,18.0,15.0,11.0,3.0,10.0,7.0,7.0,8.0,4.0,2.0,9.0,4.0,7.0,4.0,5.0,5.0,6.0,5.0,3.0,2.0,6.0,2.0,3.0,4.0,4.0,2.0,2.0,3.0,2.0,1.0,,,2.0 Y00159,208.0,183.0,191.0,212.0,200.0,192.0,213.0,257.0,237.0,209.0,250.0,233.0,226.0,235.0,230.0,223.0,245.0,194.0,230.0,203.0,190.0,215.0,220.0,219.0,258.0,253.0,233.0,231.0,251.0,309.0,276.0,266.0,257.0,228.0,258.0,242.0,235.0,275.0,259.0,235.0,222.0,227.0,239.0,218.0,215.0,204.0,215.0,197.0,180.0,188.0,166.0,160.0,168.0,188.0,153.0,177.0,172.0,178.0,162.0,146.0,140.0,164.0,138.0,147.0,138.0,134.0,130.0,113.0,109.0,118.0,120.0,127.0,109.0,100.0,99.0,92.0,78.0,87.0,83.0,71.0,69.0,66.0,78.0,51.0,50.0,49.0,36.0,29.0,27.0,31.0,23.0,25.0,18.0,16.0,18.0,26.0 Y00412,40.0,31.0,34.0,27.0,20.0,21.0,29.0,18.0,26.0,37.0,29.0,41.0,27.0,34.0,39.0,27.0,38.0,42.0,36.0,40.0,45.0,35.0,55.0,50.0,52.0,58.0,64.0,75.0,56.0,52.0,50.0,38.0,47.0,32.0,37.0,41.0,31.0,33.0,48.0,34.0,35.0,34.0,47.0,50.0,36.0,30.0,38.0,36.0,28.0,28.0,29.0,32.0,21.0,31.0,24.0,30.0,16.0,30.0,10.0,25.0,27.0,31.0,26.0,24.0,18.0,19.0,21.0,15.0,22.0,15.0,17.0,16.0,23.0,11.0,14.0,14.0,16.0,6.0,6.0,8.0,6.0,6.0,7.0,6.0,9.0,4.0,7.0,6.0,3.0,3.0,5.0,6.0,,2.0,,3.0 Y00471,38.0,30.0,34.0,40.0,30.0,39.0,44.0,34.0,39.0,40.0,46.0,36.0,42.0,39.0,36.0,33.0,39.0,28.0,28.0,41.0,45.0,49.0,70.0,71.0,78.0,81.0,95.0,93.0,85.0,84.0,95.0,84.0,101.0,77.0,86.0,81.0,68.0,73.0,73.0,74.0,70.0,52.0,56.0,41.0,42.0,33.0,39.0,41.0,32.0,31.0,25.0,27.0,32.0,24.0,33.0,29.0,15.0,23.0,26.0,23.0,30.0,28.0,22.0,31.0,24.0,29.0,22.0,18.0,15.0,12.0,17.0,18.0,12.0,12.0,6.0,13.0,10.0,5.0,6.0,7.0,5.0,11.0,7.0,,5.0,10.0,9.0,3.0,4.0,6.0,3.0,2.0,6.0,3.0,,4.0 Y00492,44.0,53.0,61.0,60.0,60.0,66.0,55.0,67.0,85.0,69.0,70.0,80.0,76.0,74.0,64.0,93.0,87.0,75.0,78.0,62.0,78.0,62.0,54.0,52.0,73.0,59.0,65.0,77.0,76.0,95.0,88.0,80.0,81.0,67.0,66.0,82.0,83.0,78.0,73.0,80.0,89.0,75.0,69.0,78.0,69.0,68.0,69.0,47.0,58.0,42.0,42.0,38.0,34.0,41.0,39.0,43.0,42.0,32.0,20.0,22.0,30.0,22.0,25.0,25.0,21.0,16.0,16.0,11.0,13.0,9.0,7.0,6.0,5.0,6.0,5.0,2.0,5.0,2.0,1.0,3.0,4.0,,5.0,2.0,2.0,,2.0,2.0,,1.0,1.0,,,,, Y01057,,,,,,,,,,,,,,,,,,,1.0,2.0,1.0,,3.0,2.0,5.0,4.0,3.0,5.0,2.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,2.0,7.0,4.0,5.0,9.0,7.0,6.0,13.0,5.0,5.0,4.0,3.0,3.0,6.0,4.0,2.0,,1.0,1.0,3.0,2.0,,1.0,3.0,4.0,1.0,,,2.0,,,,,1.0,1.0,,,,,,,,,,,,,,,,,,,,,,,,, Y01068,31.0,38.0,46.0,23.0,43.0,36.0,37.0,39.0,46.0,39.0,31.0,47.0,35.0,31.0,47.0,39.0,59.0,51.0,45.0,48.0,50.0,56.0,61.0,45.0,52.0,38.0,45.0,46.0,41.0,44.0,40.0,38.0,35.0,24.0,25.0,31.0,37.0,40.0,43.0,31.0,26.0,37.0,28.0,34.0,48.0,49.0,30.0,26.0,26.0,28.0,36.0,23.0,20.0,20.0,24.0,22.0,22.0,15.0,15.0,16.0,7.0,9.0,9.0,5.0,12.0,10.0,7.0,7.0,8.0,8.0,3.0,6.0,7.0,11.0,11.0,5.0,5.0,4.0,6.0,2.0,4.0,3.0,1.0,4.0,2.0,,1.0,1.0,,2.0,1.0,1.0,3.0,,,4.0 Y02567,41.0,63.0,59.0,64.0,64.0,77.0,54.0,76.0,82.0,66.0,62.0,66.0,65.0,85.0,70.0,65.0,66.0,70.0,57.0,59.0,48.0,46.0,48.0,41.0,44.0,60.0,56.0,48.0,52.0,55.0,45.0,64.0,51.0,55.0,49.0,60.0,49.0,39.0,71.0,48.0,62.0,60.0,74.0,44.0,45.0,34.0,41.0,34.0,28.0,27.0,34.0,26.0,29.0,21.0,29.0,24.0,19.0,32.0,23.0,16.0,25.0,17.0,18.0,17.0,22.0,25.0,18.0,9.0,12.0,10.0,9.0,8.0,12.0,13.0,2.0,8.0,8.0,4.0,4.0,1.0,5.0,6.0,3.0,4.0,6.0,6.0,5.0,3.0,2.0,2.0,3.0,1.0,1.0,2.0,,4.0 Y02571,51.0,46.0,66.0,61.0,68.0,47.0,72.0,50.0,79.0,50.0,63.0,70.0,59.0,46.0,50.0,65.0,61.0,51.0,47.0,31.0,28.0,33.0,33.0,30.0,33.0,50.0,63.0,57.0,77.0,81.0,70.0,74.0,68.0,99.0,84.0,81.0,84.0,77.0,106.0,83.0,83.0,99.0,92.0,92.0,67.0,76.0,70.0,62.0,62.0,59.0,63.0,45.0,58.0,43.0,39.0,52.0,39.0,32.0,29.0,37.0,22.0,42.0,33.0,39.0,17.0,34.0,28.0,33.0,18.0,23.0,32.0,25.0,19.0,22.0,24.0,23.0,21.0,23.0,20.0,21.0,10.0,13.0,17.0,9.0,5.0,9.0,7.0,14.0,9.0,5.0,5.0,3.0,9.0,7.0,2.0,8.0 Y02794,101.0,111.0,116.0,101.0,133.0,115.0,110.0,122.0,155.0,119.0,144.0,130.0,133.0,140.0,151.0,160.0,127.0,116.0,113.0,115.0,115.0,110.0,110.0,120.0,115.0,99.0,105.0,97.0,117.0,96.0,117.0,90.0,95.0,103.0,89.0,105.0,108.0,116.0,94.0,99.0,93.0,84.0,103.0,94.0,89.0,79.0,69.0,74.0,66.0,53.0,48.0,57.0,43.0,40.0,44.0,44.0,34.0,33.0,27.0,22.0,21.0,22.0,21.0,23.0,14.0,12.0,17.0,20.0,17.0,17.0,17.0,16.0,8.0,17.0,11.0,5.0,11.0,4.0,7.0,4.0,3.0,11.0,6.0,4.0,8.0,6.0,3.0,4.0,3.0,1.0,6.0,2.0,,2.0,4.0,2.0 Y02893,169.0,143.0,167.0,172.0,145.0,147.0,176.0,187.0,157.0,195.0,188.0,195.0,162.0,183.0,159.0,152.0,164.0,187.0,145.0,162.0,146.0,160.0,146.0,149.0,156.0,158.0,172.0,168.0,147.0,173.0,170.0,186.0,160.0,173.0,171.0,182.0,206.0,167.0,186.0,192.0,153.0,178.0,156.0,130.0,148.0,142.0,138.0,129.0,125.0,108.0,102.0,100.0,111.0,117.0,121.0,110.0,92.0,99.0,112.0,108.0,120.0,98.0,86.0,77.0,98.0,88.0,80.0,73.0,66.0,70.0,70.0,76.0,46.0,50.0,53.0,49.0,54.0,59.0,44.0,42.0,45.0,33.0,43.0,26.0,28.0,26.0,22.0,29.0,23.0,18.0,19.0,21.0,12.0,7.0,6.0,13.0 Y03597,65.0,53.0,53.0,79.0,71.0,65.0,66.0,69.0,65.0,68.0,72.0,72.0,80.0,67.0,69.0,82.0,65.0,55.0,60.0,74.0,53.0,59.0,62.0,63.0,75.0,59.0,75.0,61.0,59.0,79.0,68.0,60.0,57.0,45.0,51.0,56.0,69.0,58.0,51.0,57.0,52.0,59.0,49.0,48.0,50.0,46.0,37.0,39.0,37.0,38.0,39.0,33.0,24.0,32.0,30.0,36.0,40.0,30.0,24.0,21.0,19.0,18.0,13.0,15.0,22.0,15.0,11.0,21.0,10.0,14.0,12.0,10.0,11.0,14.0,9.0,7.0,2.0,5.0,9.0,7.0,10.0,4.0,6.0,2.0,,6.0,7.0,1.0,1.0,2.0,1.0,3.0,1.0,1.0,1.0,7.0 Y05826,44.0,39.0,55.0,56.0,44.0,57.0,62.0,51.0,51.0,70.0,74.0,57.0,64.0,57.0,61.0,67.0,63.0,60.0,63.0,55.0,54.0,51.0,50.0,43.0,28.0,54.0,54.0,55.0,51.0,41.0,48.0,34.0,46.0,53.0,51.0,43.0,55.0,52.0,51.0,64.0,43.0,51.0,54.0,52.0,49.0,48.0,41.0,36.0,34.0,26.0,31.0,22.0,27.0,22.0,14.0,29.0,16.0,18.0,18.0,12.0,16.0,15.0,9.0,7.0,12.0,10.0,13.0,7.0,12.0,5.0,7.0,8.0,7.0,2.0,1.0,6.0,4.0,4.0,3.0,1.0,3.0,4.0,5.0,2.0,4.0,1.0,1.0,2.0,2.0,1.0,,1.0,,,, Y06378,30.0,48.0,41.0,43.0,50.0,38.0,54.0,55.0,50.0,54.0,80.0,55.0,81.0,59.0,53.0,53.0,53.0,47.0,57.0,42.0,53.0,45.0,41.0,50.0,52.0,52.0,50.0,75.0,52.0,55.0,70.0,71.0,54.0,62.0,76.0,81.0,65.0,55.0,64.0,66.0,66.0,59.0,42.0,47.0,31.0,43.0,33.0,33.0,25.0,32.0,36.0,38.0,29.0,19.0,21.0,20.0,24.0,26.0,20.0,17.0,19.0,19.0,19.0,24.0,9.0,9.0,12.0,6.0,6.0,14.0,7.0,7.0,6.0,5.0,1.0,4.0,2.0,7.0,6.0,5.0,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,6.0,9.0,2.0,3.0,2.0,4.0,9.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 A81001,15.0,17.0,21.0,17.0,17.0,25.0,13.0,21.0,30.0,17.0,22.0,28.0,27.0,23.0,25.0,21.0,27.0,23.0,31.0,25.0,21.0,12.0,26.0,12.0,29.0,20.0,20.0,22.0,31.0,19.0,22.0,32.0,31.0,17.0,20.0,30.0,18.0,30.0,15.0,26.0,29.0,23.0,23.0,20.0,24.0,18.0,19.0,22.0,15.0,20.0,13.0,25.0,29.0,31.0,20.0,25.0,29.0,21.0,22.0,27.0,24.0,34.0,32.0,21.0,27.0,25.0,18.0,23.0,22.0,12.0,19.0,15.0,18.0,22.0,22.0,22.0,22.0,13.0,32.0,23.0,11.0,15.0,13.0,13.0,12.0,16.0,7.0,6.0,14.0,8.0,8.0,2.0,3.0,1.0,4.0,8.0 A81002,71.0,63.0,91.0,89.0,82.0,87.0,86.0,117.0,82.0,107.0,113.0,95.0,132.0,115.0,94.0,104.0,106.0,109.0,98.0,88.0,81.0,96.0,92.0,56.0,96.0,77.0,93.0,101.0,125.0,121.0,104.0,138.0,157.0,134.0,135.0,128.0,136.0,125.0,133.0,124.0,106.0,111.0,104.0,104.0,106.0,89.0,96.0,99.0,93.0,91.0,77.0,97.0,106.0,121.0,130.0,124.0,138.0,123.0,142.0,138.0,156.0,171.0,154.0,152.0,148.0,140.0,111.0,125.0,119.0,111.0,125.0,96.0,95.0,117.0,96.0,112.0,103.0,108.0,111.0,69.0,81.0,72.0,61.0,61.0,43.0,62.0,55.0,45.0,42.0,26.0,31.0,25.0,22.0,16.0,10.0,21.0 A81004,51.0,62.0,69.0,59.0,64.0,72.0,60.0,58.0,65.0,53.0,54.0,67.0,80.0,62.0,64.0,71.0,65.0,52.0,56.0,57.0,51.0,67.0,60.0,47.0,50.0,52.0,61.0,67.0,71.0,72.0,85.0,101.0,85.0,86.0,81.0,65.0,80.0,90.0,79.0,94.0,77.0,62.0,72.0,76.0,69.0,59.0,57.0,39.0,50.0,47.0,55.0,50.0,78.0,70.0,64.0,50.0,78.0,65.0,69.0,57.0,72.0,71.0,66.0,60.0,66.0,62.0,65.0,67.0,50.0,60.0,60.0,65.0,56.0,57.0,45.0,41.0,62.0,45.0,55.0,49.0,36.0,37.0,37.0,38.0,29.0,32.0,28.0,28.0,16.0,21.0,21.0,14.0,16.0,8.0,4.0,11.0 A81005,19.0,21.0,29.0,32.0,28.0,36.0,27.0,34.0,28.0,35.0,37.0,40.0,40.0,35.0,47.0,41.0,42.0,41.0,54.0,35.0,27.0,33.0,27.0,26.0,24.0,27.0,22.0,24.0,26.0,30.0,32.0,37.0,41.0,46.0,41.0,37.0,45.0,31.0,40.0,45.0,49.0,43.0,39.0,40.0,45.0,55.0,38.0,37.0,47.0,53.0,49.0,44.0,50.0,50.0,62.0,50.0,41.0,63.0,62.0,63.0,58.0,56.0,52.0,59.0,52.0,59.0,50.0,50.0,64.0,63.0,70.0,51.0,61.0,55.0,65.0,62.0,70.0,77.0,65.0,63.0,51.0,43.0,49.0,27.0,24.0,33.0,22.0,23.0,18.0,21.0,20.0,12.0,10.0,4.0,4.0,15.0 A81006,58.0,65.0,65.0,66.0,71.0,78.0,81.0,86.0,75.0,74.0,76.0,99.0,88.0,106.0,83.0,106.0,77.0,94.0,91.0,81.0,81.0,66.0,55.0,75.0,76.0,71.0,84.0,98.0,97.0,87.0,93.0,96.0,98.0,117.0,104.0,101.0,99.0,114.0,100.0,114.0,134.0,88.0,106.0,97.0,108.0,97.0,71.0,63.0,73.0,66.0,82.0,76.0,94.0,87.0,97.0,82.0,96.0,82.0,90.0,105.0,101.0,109.0,114.0,116.0,102.0,99.0,84.0,105.0,85.0,65.0,88.0,80.0,63.0,73.0,64.0,73.0,82.0,78.0,74.0,58.0,49.0,49.0,44.0,37.0,41.0,29.0,32.0,33.0,20.0,24.0,18.0,16.0,7.0,3.0,6.0,12.0 A81007,57.0,41.0,44.0,46.0,53.0,56.0,76.0,43.0,63.0,68.0,47.0,58.0,55.0,60.0,62.0,69.0,70.0,84.0,61.0,55.0,74.0,70.0,50.0,51.0,53.0,63.0,60.0,67.0,80.0,66.0,62.0,74.0,75.0,89.0,62.0,65.0,61.0,65.0,80.0,80.0,76.0,68.0,72.0,72.0,69.0,59.0,52.0,61.0,48.0,60.0,43.0,67.0,52.0,54.0,78.0,54.0,62.0,80.0,80.0,84.0,69.0,89.0,81.0,87.0,84.0,63.0,69.0,46.0,51.0,58.0,52.0,45.0,56.0,36.0,50.0,47.0,43.0,52.0,34.0,37.0,34.0,39.0,40.0,24.0,35.0,21.0,17.0,26.0,21.0,14.0,19.0,7.0,13.0,10.0,10.0,19.0 A81009,34.0,29.0,39.0,38.0,48.0,42.0,40.0,51.0,37.0,40.0,54.0,55.0,61.0,49.0,43.0,43.0,58.0,37.0,42.0,44.0,44.0,53.0,39.0,41.0,40.0,36.0,41.0,44.0,47.0,56.0,64.0,62.0,47.0,57.0,69.0,64.0,54.0,54.0,60.0,55.0,56.0,42.0,50.0,45.0,52.0,45.0,49.0,43.0,32.0,40.0,41.0,39.0,47.0,53.0,52.0,69.0,64.0,50.0,65.0,64.0,60.0,60.0,62.0,59.0,62.0,54.0,50.0,60.0,52.0,43.0,40.0,43.0,41.0,21.0,40.0,39.0,37.0,26.0,38.0,29.0,17.0,23.0,16.0,18.0,18.0,14.0,7.0,19.0,5.0,17.0,8.0,11.0,6.0,2.0,5.0,11.0 A81011,39.0,60.0,57.0,43.0,52.0,64.0,62.0,73.0,60.0,88.0,59.0,62.0,72.0,74.0,58.0,65.0,69.0,56.0,56.0,64.0,59.0,69.0,49.0,57.0,56.0,71.0,68.0,69.0,70.0,66.0,72.0,88.0,74.0,87.0,82.0,71.0,78.0,74.0,95.0,88.0,77.0,69.0,55.0,81.0,73.0,66.0,75.0,54.0,64.0,61.0,49.0,85.0,70.0,85.0,81.0,80.0,82.0,79.0,89.0,92.0,87.0,99.0,93.0,90.0,98.0,72.0,81.0,68.0,87.0,85.0,73.0,65.0,88.0,64.0,71.0,82.0,60.0,56.0,76.0,32.0,47.0,42.0,40.0,32.0,32.0,30.0,31.0,31.0,21.0,19.0,13.0,17.0,13.0,7.0,11.0,9.0 A81012,26.0,33.0,20.0,24.0,29.0,27.0,40.0,44.0,32.0,39.0,35.0,37.0,40.0,49.0,57.0,26.0,41.0,42.0,33.0,31.0,31.0,32.0,29.0,39.0,27.0,34.0,39.0,38.0,36.0,37.0,38.0,53.0,35.0,46.0,46.0,46.0,46.0,60.0,39.0,45.0,48.0,29.0,35.0,24.0,40.0,34.0,31.0,28.0,26.0,41.0,25.0,23.0,26.0,25.0,36.0,30.0,35.0,34.0,35.0,40.0,37.0,24.0,38.0,42.0,30.0,24.0,29.0,28.0,27.0,30.0,19.0,25.0,18.0,18.0,13.0,15.0,13.0,10.0,16.0,12.0,8.0,7.0,8.0,9.0,5.0,8.0,6.0,6.0,6.0,5.0,2.0,5.0,2.0,5.0,2.0,6.0 A81013,41.0,45.0,24.0,37.0,34.0,36.0,44.0,32.0,41.0,43.0,44.0,44.0,41.0,59.0,38.0,40.0,46.0,49.0,51.0,52.0,36.0,31.0,34.0,39.0,39.0,55.0,36.0,36.0,55.0,53.0,52.0,38.0,52.0,45.0,48.0,48.0,41.0,32.0,54.0,60.0,41.0,41.0,44.0,68.0,45.0,40.0,46.0,43.0,36.0,46.0,45.0,44.0,59.0,71.0,57.0,70.0,52.0,64.0,75.0,60.0,64.0,55.0,65.0,57.0,52.0,53.0,44.0,53.0,38.0,50.0,40.0,36.0,41.0,45.0,48.0,34.0,43.0,44.0,40.0,32.0,28.0,27.0,14.0,24.0,17.0,23.0,17.0,16.0,5.0,10.0,6.0,4.0,5.0,5.0,3.0,9.0 A81014,20.0,23.0,21.0,19.0,13.0,23.0,22.0,9.0,16.0,15.0,23.0,16.0,21.0,25.0,18.0,17.0,30.0,20.0,16.0,18.0,13.0,13.0,15.0,14.0,19.0,12.0,19.0,22.0,21.0,28.0,31.0,19.0,34.0,39.0,25.0,26.0,19.0,37.0,23.0,24.0,35.0,27.0,22.0,18.0,21.0,19.0,22.0,17.0,22.0,15.0,20.0,14.0,17.0,17.0,17.0,31.0,32.0,25.0,34.0,31.0,32.0,32.0,24.0,40.0,38.0,33.0,31.0,28.0,33.0,20.0,26.0,27.0,28.0,34.0,25.0,23.0,27.0,26.0,32.0,25.0,20.0,16.0,22.0,17.0,7.0,20.0,15.0,16.0,8.0,11.0,5.0,8.0,13.0,4.0,5.0,4.0 A81016,72.0,80.0,60.0,67.0,65.0,62.0,79.0,78.0,95.0,93.0,93.0,85.0,92.0,79.0,73.0,82.0,89.0,72.0,65.0,65.0,61.0,74.0,92.0,75.0,83.0,93.0,82.0,119.0,102.0,103.0,110.0,119.0,83.0,105.0,96.0,103.0,97.0,89.0,110.0,73.0,78.0,89.0,82.0,72.0,80.0,70.0,62.0,53.0,62.0,47.0,48.0,47.0,52.0,50.0,68.0,42.0,49.0,53.0,48.0,50.0,54.0,54.0,47.0,49.0,59.0,57.0,50.0,47.0,53.0,49.0,47.0,41.0,34.0,36.0,38.0,34.0,33.0,32.0,35.0,24.0,28.0,24.0,27.0,17.0,24.0,8.0,13.0,18.0,11.0,6.0,7.0,8.0,6.0,3.0,4.0,7.0 A81017,59.0,76.0,83.0,90.0,81.0,86.0,73.0,118.0,108.0,111.0,107.0,109.0,129.0,145.0,140.0,116.0,145.0,142.0,130.0,97.0,103.0,96.0,95.0,94.0,97.0,92.0,80.0,94.0,97.0,107.0,81.0,95.0,101.0,103.0,115.0,127.0,110.0,148.0,126.0,119.0,136.0,137.0,145.0,137.0,147.0,156.0,132.0,109.0,112.0,121.0,123.0,134.0,148.0,125.0,149.0,146.0,146.0,134.0,124.0,108.0,144.0,119.0,112.0,113.0,111.0,117.0,111.0,99.0,87.0,91.0,70.0,99.0,93.0,92.0,63.0,74.0,74.0,82.0,88.0,62.0,56.0,41.0,53.0,30.0,24.0,45.0,25.0,27.0,21.0,21.0,11.0,18.0,9.0,9.0,7.0,16.0 A81018,37.0,29.0,39.0,48.0,46.0,54.0,66.0,42.0,59.0,60.0,62.0,55.0,80.0,59.0,69.0,56.0,68.0,65.0,64.0,50.0,50.0,44.0,49.0,53.0,39.0,41.0,54.0,49.0,44.0,47.0,66.0,43.0,51.0,75.0,87.0,52.0,75.0,65.0,60.0,72.0,64.0,68.0,53.0,75.0,64.0,53.0,68.0,59.0,36.0,64.0,48.0,57.0,61.0,64.0,72.0,63.0,52.0,71.0,61.0,84.0,73.0,77.0,68.0,77.0,63.0,64.0,74.0,66.0,64.0,53.0,49.0,65.0,57.0,48.0,42.0,43.0,57.0,48.0,54.0,46.0,36.0,30.0,35.0,37.0,22.0,32.0,31.0,29.0,23.0,13.0,12.0,8.0,11.0,6.0,1.0,12.0 A81019,50.0,47.0,38.0,51.0,44.0,55.0,48.0,53.0,56.0,56.0,60.0,68.0,60.0,73.0,62.0,60.0,68.0,50.0,73.0,59.0,53.0,55.0,47.0,40.0,66.0,56.0,51.0,59.0,54.0,50.0,66.0,56.0,55.0,73.0,65.0,73.0,47.0,70.0,63.0,64.0,51.0,63.0,48.0,58.0,72.0,53.0,47.0,48.0,45.0,49.0,43.0,54.0,46.0,54.0,51.0,56.0,64.0,63.0,62.0,70.0,62.0,59.0,74.0,57.0,55.0,54.0,47.0,49.0,59.0,54.0,45.0,42.0,42.0,39.0,37.0,24.0,29.0,33.0,33.0,28.0,19.0,26.0,14.0,10.0,16.0,19.0,13.0,19.0,14.0,8.0,13.0,8.0,8.0,1.0,3.0,8.0 A81020,32.0,32.0,48.0,39.0,49.0,22.0,41.0,44.0,56.0,52.0,64.0,56.0,55.0,52.0,56.0,57.0,41.0,48.0,56.0,37.0,34.0,29.0,39.0,25.0,51.0,28.0,36.0,59.0,45.0,46.0,60.0,47.0,55.0,56.0,66.0,55.0,76.0,58.0,72.0,63.0,68.0,46.0,62.0,52.0,43.0,48.0,46.0,33.0,35.0,41.0,36.0,48.0,50.0,41.0,49.0,30.0,36.0,51.0,48.0,44.0,54.0,53.0,62.0,45.0,51.0,38.0,55.0,38.0,46.0,48.0,50.0,41.0,32.0,29.0,40.0,27.0,34.0,41.0,51.0,34.0,34.0,24.0,37.0,22.0,17.0,16.0,23.0,20.0,14.0,14.0,10.0,10.0,11.0,4.0,8.0,9.0 A81021,105.0,132.0,138.0,129.0,118.0,139.0,124.0,148.0,154.0,125.0,161.0,143.0,144.0,158.0,143.0,139.0,135.0,133.0,119.0,124.0,106.0,122.0,96.0,134.0,116.0,129.0,121.0,142.0,134.0,132.0,175.0,169.0,170.0,148.0,156.0,169.0,171.0,137.0,168.0,136.0,163.0,126.0,130.0,150.0,136.0,135.0,125.0,92.0,113.0,135.0,132.0,126.0,135.0,149.0,141.0,180.0,181.0,172.0,158.0,174.0,185.0,154.0,170.0,152.0,130.0,174.0,145.0,139.0,128.0,132.0,105.0,133.0,130.0,105.0,108.0,114.0,116.0,108.0,130.0,90.0,89.0,88.0,73.0,67.0,73.0,59.0,49.0,44.0,42.0,36.0,21.0,23.0,19.0,12.0,10.0,24.0 A81022,32.0,28.0,42.0,37.0,28.0,43.0,32.0,42.0,50.0,43.0,41.0,66.0,53.0,52.0,51.0,70.0,54.0,54.0,54.0,42.0,52.0,46.0,34.0,37.0,43.0,41.0,48.0,54.0,57.0,42.0,52.0,54.0,46.0,64.0,65.0,52.0,42.0,54.0,52.0,56.0,62.0,54.0,60.0,46.0,51.0,72.0,46.0,52.0,72.0,56.0,40.0,56.0,78.0,65.0,72.0,76.0,60.0,60.0,87.0,76.0,62.0,76.0,66.0,87.0,79.0,64.0,73.0,59.0,63.0,44.0,63.0,60.0,58.0,51.0,49.0,68.0,59.0,65.0,77.0,45.0,35.0,41.0,33.0,23.0,17.0,29.0,20.0,13.0,19.0,11.0,11.0,12.0,6.0,2.0,6.0,9.0 A81023,46.0,43.0,47.0,53.0,46.0,54.0,51.0,51.0,50.0,35.0,44.0,58.0,51.0,43.0,45.0,36.0,47.0,50.0,41.0,51.0,52.0,60.0,44.0,65.0,90.0,87.0,86.0,107.0,94.0,123.0,97.0,72.0,79.0,85.0,91.0,75.0,62.0,71.0,73.0,59.0,62.0,60.0,54.0,39.0,41.0,45.0,35.0,32.0,32.0,41.0,30.0,35.0,41.0,34.0,41.0,42.0,37.0,38.0,35.0,40.0,48.0,48.0,40.0,49.0,45.0,37.0,33.0,46.0,37.0,36.0,27.0,23.0,27.0,22.0,23.0,18.0,22.0,25.0,12.0,15.0,12.0,16.0,12.0,14.0,6.0,6.0,10.0,10.0,6.0,6.0,7.0,,1.0,2.0,1.0,1.0 A81025,24.0,21.0,21.0,20.0,21.0,18.0,26.0,17.0,18.0,22.0,22.0,30.0,22.0,25.0,31.0,28.0,25.0,15.0,26.0,22.0,20.0,19.0,18.0,20.0,15.0,28.0,22.0,33.0,29.0,26.0,24.0,31.0,30.0,33.0,29.0,32.0,30.0,28.0,20.0,31.0,23.0,34.0,29.0,38.0,35.0,27.0,22.0,9.0,12.0,20.0,24.0,28.0,12.0,19.0,26.0,22.0,23.0,26.0,30.0,22.0,22.0,20.0,27.0,22.0,26.0,24.0,22.0,30.0,18.0,19.0,23.0,23.0,25.0,16.0,17.0,18.0,17.0,22.0,13.0,15.0,13.0,13.0,12.0,16.0,9.0,7.0,13.0,7.0,6.0,6.0,7.0,7.0,5.0,5.0,4.0,8.0 A81026,97.0,119.0,139.0,120.0,144.0,134.0,136.0,155.0,147.0,147.0,149.0,149.0,144.0,145.0,134.0,141.0,129.0,126.0,147.0,112.0,122.0,114.0,122.0,125.0,135.0,136.0,144.0,161.0,153.0,140.0,147.0,139.0,159.0,149.0,143.0,152.0,160.0,170.0,152.0,178.0,149.0,154.0,146.0,108.0,136.0,116.0,96.0,101.0,79.0,107.0,105.0,76.0,91.0,104.0,124.0,113.0,110.0,112.0,94.0,108.0,108.0,123.0,118.0,135.0,105.0,100.0,114.0,109.0,89.0,90.0,99.0,81.0,80.0,80.0,91.0,63.0,67.0,72.0,65.0,46.0,56.0,50.0,33.0,41.0,41.0,30.0,40.0,34.0,18.0,14.0,11.0,15.0,8.0,13.0,5.0,23.0 A81027,61.0,48.0,67.0,64.0,55.0,68.0,75.0,69.0,91.0,75.0,83.0,83.0,75.0,79.0,75.0,79.0,92.0,90.0,76.0,83.0,47.0,55.0,75.0,64.0,66.0,66.0,57.0,65.0,63.0,72.0,78.0,68.0,80.0,88.0,103.0,94.0,86.0,87.0,94.0,100.0,109.0,122.0,107.0,106.0,106.0,109.0,99.0,91.0,76.0,99.0,77.0,101.0,98.0,103.0,92.0,105.0,78.0,105.0,108.0,91.0,82.0,130.0,96.0,108.0,72.0,117.0,96.0,109.0,93.0,99.0,88.0,82.0,85.0,91.0,95.0,95.0,83.0,79.0,68.0,63.0,75.0,66.0,55.0,51.0,40.0,43.0,40.0,36.0,22.0,19.0,22.0,17.0,15.0,13.0,14.0,16.0 A81029,46.0,48.0,45.0,33.0,41.0,45.0,43.0,20.0,45.0,32.0,52.0,39.0,23.0,35.0,39.0,41.0,25.0,35.0,42.0,43.0,39.0,27.0,44.0,64.0,92.0,73.0,70.0,86.0,83.0,63.0,79.0,80.0,71.0,55.0,45.0,48.0,42.0,41.0,46.0,41.0,46.0,32.0,27.0,28.0,30.0,24.0,28.0,25.0,27.0,24.0,29.0,34.0,27.0,18.0,31.0,26.0,30.0,29.0,25.0,29.0,29.0,37.0,25.0,32.0,28.0,22.0,27.0,22.0,24.0,31.0,20.0,25.0,20.0,15.0,21.0,17.0,19.0,19.0,18.0,17.0,11.0,11.0,9.0,10.0,7.0,6.0,6.0,6.0,10.0,4.0,8.0,3.0,3.0,3.0,,3.0 A81030,91.0,84.0,74.0,92.0,85.0,97.0,91.0,102.0,116.0,93.0,86.0,81.0,100.0,102.0,119.0,99.0,75.0,94.0,101.0,106.0,111.0,117.0,99.0,96.0,109.0,94.0,112.0,108.0,133.0,130.0,116.0,120.0,115.0,109.0,135.0,103.0,114.0,122.0,113.0,110.0,88.0,109.0,99.0,106.0,103.0,111.0,100.0,84.0,86.0,86.0,86.0,84.0,95.0,100.0,100.0,101.0,109.0,97.0,94.0,114.0,95.0,106.0,94.0,87.0,98.0,97.0,103.0,104.0,98.0,79.0,74.0,65.0,82.0,83.0,75.0,95.0,73.0,62.0,78.0,61.0,65.0,54.0,43.0,46.0,51.0,41.0,38.0,35.0,36.0,32.0,17.0,23.0,11.0,16.0,9.0,30.0 A81031,61.0,63.0,70.0,81.0,68.0,74.0,67.0,83.0,81.0,79.0,90.0,84.0,69.0,105.0,93.0,89.0,84.0,83.0,82.0,74.0,80.0,73.0,76.0,63.0,95.0,85.0,77.0,82.0,78.0,95.0,88.0,91.0,108.0,99.0,127.0,102.0,101.0,101.0,119.0,92.0,84.0,103.0,100.0,99.0,78.0,86.0,76.0,68.0,77.0,83.0,63.0,73.0,69.0,86.0,85.0,88.0,106.0,96.0,88.0,104.0,109.0,102.0,90.0,95.0,90.0,77.0,74.0,77.0,71.0,80.0,58.0,61.0,51.0,56.0,50.0,66.0,61.0,59.0,59.0,44.0,45.0,54.0,45.0,37.0,25.0,33.0,25.0,41.0,24.0,23.0,18.0,19.0,12.0,11.0,9.0,24.0 A81032,39.0,53.0,55.0,45.0,47.0,48.0,50.0,53.0,57.0,66.0,52.0,58.0,73.0,71.0,65.0,58.0,58.0,49.0,62.0,55.0,41.0,47.0,56.0,55.0,63.0,51.0,61.0,64.0,57.0,67.0,54.0,78.0,68.0,87.0,66.0,72.0,83.0,58.0,62.0,77.0,58.0,68.0,68.0,65.0,76.0,58.0,67.0,57.0,67.0,62.0,64.0,67.0,81.0,70.0,86.0,80.0,80.0,102.0,103.0,85.0,118.0,90.0,93.0,96.0,71.0,72.0,79.0,85.0,91.0,67.0,57.0,86.0,74.0,83.0,70.0,80.0,79.0,82.0,82.0,59.0,50.0,52.0,48.0,57.0,31.0,43.0,41.0,37.0,17.0,27.0,27.0,18.0,20.0,14.0,8.0,23.0 A81034,80.0,75.0,102.0,93.0,108.0,116.0,108.0,89.0,124.0,133.0,139.0,142.0,142.0,161.0,174.0,169.0,163.0,166.0,124.0,119.0,99.0,103.0,102.0,103.0,93.0,117.0,92.0,103.0,105.0,123.0,115.0,126.0,116.0,147.0,149.0,141.0,143.0,181.0,147.0,135.0,175.0,154.0,139.0,151.0,163.0,156.0,148.0,131.0,137.0,147.0,126.0,151.0,117.0,158.0,160.0,138.0,163.0,161.0,146.0,151.0,148.0,119.0,134.0,115.0,138.0,123.0,102.0,116.0,118.0,101.0,112.0,91.0,78.0,86.0,83.0,70.0,89.0,85.0,75.0,50.0,47.0,53.0,42.0,35.0,37.0,31.0,34.0,31.0,27.0,22.0,10.0,14.0,14.0,7.0,10.0,20.0 A81035,39.0,42.0,44.0,35.0,38.0,57.0,48.0,59.0,50.0,51.0,62.0,64.0,60.0,61.0,64.0,62.0,72.0,74.0,55.0,50.0,52.0,67.0,46.0,43.0,50.0,72.0,54.0,65.0,49.0,73.0,72.0,79.0,57.0,59.0,59.0,82.0,58.0,62.0,68.0,65.0,64.0,65.0,59.0,55.0,52.0,61.0,57.0,50.0,48.0,43.0,34.0,54.0,52.0,58.0,47.0,49.0,58.0,53.0,57.0,57.0,58.0,63.0,57.0,54.0,72.0,56.0,57.0,48.0,50.0,45.0,45.0,45.0,40.0,31.0,40.0,46.0,40.0,43.0,42.0,29.0,25.0,17.0,11.0,18.0,22.0,16.0,18.0,17.0,13.0,14.0,8.0,8.0,7.0,4.0,3.0,9.0 A81036,64.0,75.0,65.0,88.0,87.0,69.0,102.0,81.0,83.0,85.0,100.0,101.0,86.0,84.0,100.0,120.0,102.0,117.0,90.0,78.0,71.0,74.0,80.0,71.0,76.0,95.0,78.0,93.0,90.0,104.0,111.0,133.0,111.0,102.0,103.0,107.0,104.0,118.0,110.0,96.0,128.0,101.0,96.0,109.0,113.0,116.0,110.0,87.0,100.0,112.0,106.0,96.0,94.0,117.0,133.0,124.0,108.0,109.0,117.0,99.0,95.0,113.0,109.0,113.0,93.0,101.0,102.0,110.0,100.0,93.0,85.0,81.0,86.0,89.0,82.0,59.0,86.0,112.0,95.0,57.0,69.0,58.0,54.0,63.0,48.0,44.0,40.0,28.0,34.0,24.0,22.0,20.0,19.0,15.0,12.0,21.0 A81037,22.0,20.0,29.0,25.0,25.0,28.0,31.0,37.0,37.0,26.0,41.0,37.0,35.0,32.0,34.0,37.0,44.0,37.0,39.0,38.0,30.0,40.0,38.0,51.0,66.0,51.0,56.0,74.0,70.0,56.0,58.0,50.0,44.0,40.0,42.0,41.0,40.0,47.0,46.0,45.0,41.0,42.0,25.0,40.0,42.0,37.0,33.0,31.0,31.0,38.0,31.0,24.0,35.0,37.0,29.0,36.0,39.0,45.0,39.0,33.0,40.0,42.0,33.0,34.0,39.0,26.0,29.0,37.0,30.0,15.0,24.0,19.0,22.0,20.0,20.0,19.0,19.0,20.0,18.0,12.0,20.0,14.0,16.0,7.0,12.0,11.0,16.0,7.0,9.0,1.0,9.0,2.0,5.0,1.0,,3.0 A81038,24.0,25.0,29.0,26.0,20.0,27.0,28.0,25.0,32.0,20.0,35.0,30.0,38.0,30.0,37.0,25.0,29.0,30.0,27.0,27.0,28.0,26.0,26.0,29.0,18.0,23.0,22.0,23.0,27.0,35.0,25.0,32.0,29.0,27.0,28.0,29.0,30.0,28.0,34.0,33.0,36.0,21.0,25.0,30.0,26.0,20.0,22.0,21.0,16.0,21.0,28.0,17.0,13.0,19.0,20.0,20.0,20.0,21.0,20.0,13.0,20.0,18.0,15.0,18.0,16.0,14.0,9.0,18.0,17.0,16.0,15.0,16.0,14.0,11.0,15.0,10.0,10.0,13.0,8.0,6.0,9.0,7.0,4.0,6.0,3.0,3.0,1.0,3.0,1.0,4.0,3.0,4.0,2.0,2.0,1.0,6.0 A81039,58.0,65.0,52.0,60.0,57.0,66.0,61.0,68.0,82.0,69.0,68.0,91.0,90.0,77.0,90.0,83.0,101.0,64.0,77.0,64.0,46.0,54.0,56.0,64.0,40.0,53.0,62.0,68.0,58.0,67.0,72.0,79.0,88.0,94.0,89.0,74.0,95.0,106.0,79.0,80.0,89.0,88.0,82.0,91.0,104.0,99.0,87.0,81.0,87.0,81.0,93.0,77.0,85.0,92.0,105.0,91.0,91.0,89.0,84.0,97.0,82.0,76.0,100.0,88.0,92.0,68.0,92.0,89.0,63.0,62.0,58.0,81.0,80.0,65.0,76.0,66.0,69.0,77.0,78.0,47.0,45.0,56.0,20.0,32.0,27.0,38.0,30.0,31.0,12.0,22.0,20.0,16.0,6.0,5.0,9.0,14.0 A81040,42.0,47.0,30.0,39.0,44.0,46.0,51.0,48.0,44.0,50.0,56.0,59.0,50.0,44.0,63.0,56.0,54.0,44.0,51.0,43.0,42.0,37.0,33.0,36.0,41.0,36.0,33.0,40.0,46.0,40.0,42.0,49.0,44.0,59.0,60.0,59.0,72.0,59.0,61.0,59.0,57.0,57.0,56.0,59.0,47.0,54.0,65.0,48.0,52.0,51.0,46.0,43.0,44.0,53.0,47.0,50.0,57.0,49.0,53.0,62.0,65.0,73.0,72.0,74.0,71.0,65.0,46.0,60.0,74.0,56.0,61.0,52.0,39.0,35.0,45.0,40.0,47.0,49.0,34.0,28.0,20.0,27.0,24.0,22.0,20.0,19.0,21.0,16.0,23.0,9.0,10.0,11.0,4.0,6.0,7.0,10.0 A81041,37.0,34.0,46.0,41.0,45.0,52.0,51.0,55.0,39.0,49.0,56.0,49.0,49.0,50.0,42.0,45.0,57.0,50.0,48.0,50.0,42.0,54.0,44.0,37.0,51.0,52.0,46.0,52.0,49.0,57.0,62.0,55.0,66.0,55.0,74.0,71.0,70.0,78.0,65.0,50.0,68.0,49.0,55.0,57.0,44.0,44.0,41.0,52.0,30.0,49.0,48.0,41.0,47.0,60.0,61.0,60.0,63.0,71.0,69.0,72.0,79.0,88.0,74.0,90.0,80.0,68.0,70.0,62.0,62.0,64.0,60.0,55.0,77.0,45.0,54.0,50.0,43.0,56.0,34.0,33.0,26.0,25.0,25.0,32.0,19.0,29.0,25.0,21.0,20.0,11.0,10.0,6.0,13.0,8.0,4.0,10.0 A81042,71.0,83.0,88.0,76.0,73.0,87.0,110.0,105.0,108.0,99.0,94.0,98.0,110.0,97.0,117.0,99.0,98.0,104.0,90.0,87.0,95.0,91.0,91.0,77.0,87.0,104.0,106.0,87.0,104.0,108.0,94.0,106.0,103.0,125.0,115.0,118.0,108.0,103.0,116.0,128.0,107.0,108.0,88.0,111.0,110.0,77.0,79.0,65.0,60.0,75.0,61.0,64.0,75.0,97.0,96.0,95.0,89.0,118.0,108.0,92.0,115.0,104.0,100.0,115.0,94.0,90.0,112.0,97.0,76.0,85.0,74.0,67.0,64.0,79.0,45.0,44.0,55.0,56.0,47.0,52.0,40.0,38.0,28.0,32.0,28.0,27.0,22.0,25.0,28.0,16.0,14.0,10.0,7.0,9.0,1.0,18.0 A81044,76.0,68.0,105.0,89.0,93.0,95.0,100.0,85.0,97.0,106.0,93.0,108.0,106.0,124.0,104.0,111.0,105.0,116.0,102.0,113.0,107.0,108.0,83.0,98.0,100.0,101.0,103.0,125.0,118.0,127.0,113.0,146.0,128.0,109.0,130.0,128.0,123.0,121.0,131.0,113.0,115.0,140.0,113.0,115.0,96.0,127.0,113.0,105.0,110.0,98.0,116.0,113.0,111.0,129.0,139.0,125.0,134.0,130.0,134.0,166.0,137.0,135.0,134.0,137.0,125.0,132.0,135.0,118.0,101.0,112.0,100.0,93.0,88.0,83.0,74.0,91.0,111.0,112.0,75.0,63.0,59.0,50.0,55.0,54.0,35.0,47.0,43.0,49.0,32.0,32.0,26.0,12.0,11.0,14.0,17.0,25.0 A81045,15.0,25.0,21.0,32.0,19.0,26.0,25.0,26.0,31.0,36.0,29.0,28.0,35.0,37.0,30.0,33.0,38.0,35.0,33.0,38.0,28.0,25.0,27.0,32.0,33.0,42.0,29.0,27.0,37.0,37.0,37.0,31.0,40.0,38.0,41.0,32.0,40.0,45.0,56.0,42.0,39.0,36.0,27.0,41.0,46.0,40.0,34.0,45.0,37.0,30.0,34.0,36.0,49.0,49.0,40.0,44.0,37.0,40.0,53.0,67.0,49.0,44.0,41.0,46.0,29.0,32.0,59.0,35.0,35.0,34.0,26.0,34.0,36.0,29.0,31.0,35.0,40.0,28.0,30.0,35.0,21.0,19.0,17.0,24.0,20.0,10.0,15.0,18.0,11.0,14.0,9.0,4.0,6.0,4.0,5.0,11.0 A81046,56.0,63.0,51.0,61.0,66.0,74.0,57.0,64.0,78.0,77.0,76.0,51.0,71.0,68.0,88.0,59.0,66.0,78.0,71.0,59.0,51.0,54.0,54.0,42.0,58.0,57.0,56.0,87.0,91.0,74.0,58.0,81.0,110.0,69.0,68.0,93.0,98.0,83.0,81.0,96.0,72.0,95.0,84.0,75.0,82.0,79.0,62.0,68.0,56.0,64.0,64.0,72.0,62.0,69.0,79.0,86.0,87.0,88.0,77.0,78.0,65.0,89.0,81.0,81.0,84.0,71.0,94.0,90.0,81.0,75.0,62.0,57.0,62.0,59.0,55.0,57.0,58.0,70.0,70.0,47.0,55.0,42.0,40.0,45.0,31.0,49.0,37.0,35.0,24.0,28.0,14.0,17.0,11.0,7.0,9.0,24.0 A81048,20.0,16.0,21.0,19.0,19.0,25.0,21.0,22.0,18.0,36.0,35.0,38.0,42.0,42.0,41.0,34.0,30.0,34.0,35.0,20.0,26.0,32.0,31.0,38.0,30.0,24.0,26.0,19.0,28.0,36.0,36.0,26.0,33.0,39.0,32.0,24.0,25.0,49.0,33.0,37.0,35.0,36.0,35.0,44.0,48.0,41.0,29.0,44.0,33.0,37.0,40.0,52.0,54.0,49.0,56.0,55.0,44.0,56.0,62.0,48.0,50.0,62.0,58.0,51.0,47.0,57.0,53.0,50.0,48.0,49.0,49.0,53.0,46.0,38.0,46.0,70.0,48.0,77.0,66.0,49.0,61.0,49.0,38.0,28.0,30.0,42.0,30.0,27.0,22.0,15.0,12.0,12.0,12.0,11.0,11.0,20.0 A81049,26.0,21.0,35.0,27.0,42.0,27.0,39.0,55.0,50.0,39.0,47.0,41.0,48.0,48.0,57.0,49.0,51.0,45.0,46.0,39.0,37.0,33.0,32.0,31.0,36.0,31.0,37.0,40.0,43.0,37.0,39.0,46.0,45.0,44.0,42.0,51.0,61.0,61.0,55.0,54.0,61.0,54.0,52.0,35.0,46.0,35.0,39.0,31.0,29.0,21.0,24.0,30.0,36.0,43.0,46.0,48.0,36.0,42.0,44.0,43.0,50.0,44.0,38.0,38.0,41.0,41.0,44.0,37.0,24.0,41.0,30.0,25.0,27.0,26.0,19.0,25.0,27.0,18.0,20.0,24.0,17.0,14.0,12.0,16.0,16.0,11.0,10.0,7.0,8.0,7.0,10.0,3.0,,2.0,2.0,7.0 A81051,40.0,40.0,29.0,36.0,44.0,29.0,35.0,41.0,47.0,40.0,49.0,47.0,52.0,53.0,52.0,51.0,43.0,46.0,39.0,33.0,33.0,42.0,41.0,42.0,42.0,33.0,46.0,36.0,47.0,48.0,45.0,59.0,51.0,51.0,51.0,50.0,68.0,55.0,63.0,56.0,54.0,48.0,40.0,40.0,37.0,44.0,42.0,36.0,42.0,34.0,28.0,42.0,42.0,49.0,44.0,45.0,50.0,49.0,43.0,50.0,50.0,35.0,50.0,56.0,45.0,53.0,42.0,37.0,40.0,45.0,42.0,37.0,24.0,36.0,42.0,32.0,40.0,31.0,18.0,20.0,13.0,17.0,16.0,15.0,14.0,19.0,12.0,8.0,10.0,11.0,11.0,10.0,5.0,3.0,3.0,3.0 A81052,33.0,40.0,60.0,63.0,59.0,71.0,49.0,65.0,66.0,52.0,62.0,42.0,58.0,65.0,54.0,51.0,62.0,51.0,46.0,48.0,54.0,48.0,40.0,36.0,47.0,48.0,50.0,56.0,68.0,66.0,55.0,64.0,67.0,76.0,73.0,81.0,81.0,74.0,80.0,59.0,75.0,66.0,52.0,59.0,57.0,69.0,62.0,47.0,49.0,35.0,56.0,61.0,63.0,82.0,67.0,81.0,84.0,63.0,75.0,90.0,80.0,105.0,99.0,73.0,82.0,65.0,62.0,63.0,57.0,56.0,43.0,69.0,51.0,48.0,54.0,59.0,44.0,57.0,63.0,45.0,53.0,39.0,33.0,38.0,22.0,25.0,27.0,25.0,23.0,14.0,16.0,19.0,8.0,5.0,11.0,21.0 A81053,17.0,20.0,27.0,27.0,24.0,31.0,37.0,28.0,30.0,36.0,29.0,38.0,34.0,46.0,24.0,29.0,28.0,32.0,27.0,27.0,24.0,26.0,34.0,29.0,35.0,24.0,21.0,31.0,28.0,17.0,38.0,33.0,29.0,26.0,44.0,32.0,47.0,29.0,40.0,30.0,25.0,36.0,33.0,34.0,35.0,33.0,30.0,33.0,25.0,34.0,30.0,32.0,38.0,42.0,50.0,33.0,37.0,41.0,44.0,46.0,36.0,49.0,43.0,37.0,41.0,35.0,50.0,37.0,30.0,38.0,29.0,35.0,41.0,47.0,30.0,29.0,40.0,41.0,30.0,20.0,27.0,23.0,13.0,23.0,17.0,22.0,18.0,9.0,10.0,9.0,8.0,4.0,6.0,4.0,3.0,2.0 A81054,32.0,36.0,47.0,48.0,40.0,48.0,34.0,48.0,40.0,38.0,42.0,40.0,46.0,43.0,50.0,50.0,45.0,44.0,44.0,51.0,36.0,35.0,37.0,39.0,49.0,43.0,45.0,43.0,47.0,47.0,60.0,51.0,55.0,73.0,54.0,64.0,66.0,55.0,37.0,53.0,58.0,52.0,46.0,57.0,52.0,52.0,49.0,54.0,41.0,36.0,43.0,51.0,46.0,63.0,53.0,61.0,69.0,73.0,69.0,70.0,73.0,61.0,85.0,65.0,63.0,54.0,58.0,63.0,57.0,52.0,49.0,51.0,50.0,42.0,44.0,43.0,56.0,51.0,50.0,32.0,32.0,19.0,24.0,23.0,21.0,19.0,22.0,24.0,17.0,15.0,13.0,12.0,6.0,10.0,6.0,11.0 A81056,4.0,5.0,9.0,9.0,11.0,12.0,14.0,12.0,18.0,11.0,18.0,8.0,9.0,16.0,12.0,16.0,16.0,11.0,15.0,7.0,13.0,7.0,8.0,12.0,7.0,11.0,15.0,11.0,8.0,14.0,10.0,17.0,13.0,14.0,8.0,9.0,18.0,15.0,13.0,7.0,18.0,13.0,14.0,14.0,15.0,15.0,7.0,13.0,7.0,9.0,15.0,15.0,8.0,14.0,19.0,24.0,18.0,13.0,27.0,25.0,27.0,21.0,33.0,20.0,25.0,21.0,21.0,19.0,20.0,28.0,10.0,6.0,13.0,10.0,15.0,8.0,12.0,11.0,12.0,8.0,7.0,9.0,8.0,11.0,6.0,8.0,2.0,6.0,6.0,8.0,3.0,6.0,7.0,4.0,2.0,2.0 A81057,48.0,49.0,40.0,50.0,63.0,56.0,45.0,57.0,59.0,76.0,54.0,56.0,64.0,65.0,80.0,79.0,61.0,63.0,72.0,52.0,54.0,45.0,35.0,51.0,48.0,47.0,59.0,48.0,61.0,53.0,57.0,74.0,59.0,80.0,83.0,79.0,63.0,89.0,74.0,70.0,69.0,68.0,74.0,51.0,60.0,58.0,74.0,57.0,47.0,55.0,66.0,41.0,55.0,77.0,66.0,72.0,79.0,61.0,82.0,75.0,89.0,81.0,77.0,75.0,80.0,92.0,67.0,58.0,76.0,53.0,64.0,66.0,40.0,50.0,45.0,39.0,47.0,53.0,45.0,21.0,32.0,33.0,29.0,29.0,20.0,14.0,14.0,11.0,13.0,16.0,14.0,9.0,8.0,6.0,7.0,7.0 A81058,31.0,59.0,47.0,64.0,47.0,49.0,57.0,48.0,49.0,48.0,43.0,70.0,60.0,58.0,68.0,59.0,68.0,58.0,57.0,61.0,54.0,54.0,44.0,42.0,40.0,50.0,48.0,50.0,51.0,55.0,57.0,58.0,62.0,70.0,57.0,56.0,64.0,69.0,64.0,70.0,63.0,63.0,72.0,56.0,71.0,43.0,56.0,54.0,51.0,57.0,52.0,56.0,70.0,58.0,65.0,76.0,53.0,64.0,84.0,58.0,57.0,61.0,62.0,58.0,58.0,54.0,60.0,70.0,76.0,55.0,62.0,58.0,51.0,43.0,45.0,54.0,52.0,54.0,60.0,38.0,37.0,29.0,32.0,29.0,25.0,30.0,21.0,17.0,18.0,16.0,13.0,18.0,6.0,11.0,6.0,11.0 A81060,24.0,22.0,25.0,28.0,33.0,26.0,36.0,40.0,25.0,39.0,34.0,38.0,37.0,32.0,40.0,40.0,25.0,48.0,41.0,39.0,39.0,38.0,20.0,30.0,32.0,42.0,39.0,36.0,38.0,35.0,44.0,41.0,43.0,45.0,35.0,43.0,41.0,39.0,35.0,46.0,38.0,39.0,31.0,31.0,36.0,39.0,35.0,33.0,32.0,34.0,36.0,45.0,36.0,55.0,39.0,53.0,51.0,42.0,58.0,48.0,48.0,37.0,45.0,53.0,30.0,38.0,49.0,51.0,49.0,33.0,43.0,33.0,52.0,36.0,39.0,25.0,41.0,29.0,43.0,26.0,22.0,22.0,22.0,13.0,16.0,17.0,14.0,13.0,8.0,9.0,13.0,7.0,3.0,6.0,4.0,5.0 A81063,21.0,21.0,26.0,22.0,23.0,23.0,33.0,26.0,32.0,32.0,23.0,30.0,37.0,35.0,33.0,38.0,36.0,38.0,39.0,25.0,27.0,23.0,30.0,28.0,28.0,32.0,29.0,21.0,31.0,28.0,22.0,27.0,34.0,34.0,30.0,33.0,33.0,34.0,31.0,30.0,37.0,36.0,38.0,26.0,35.0,33.0,30.0,28.0,35.0,27.0,27.0,37.0,33.0,33.0,38.0,28.0,30.0,34.0,41.0,41.0,22.0,38.0,27.0,38.0,37.0,35.0,29.0,31.0,28.0,23.0,24.0,26.0,17.0,34.0,28.0,23.0,27.0,23.0,18.0,17.0,15.0,13.0,9.0,17.0,11.0,7.0,8.0,7.0,3.0,7.0,10.0,2.0,6.0,4.0,2.0,4.0 A81064,66.0,45.0,49.0,42.0,33.0,47.0,48.0,57.0,61.0,45.0,31.0,33.0,41.0,52.0,43.0,33.0,53.0,41.0,28.0,34.0,65.0,64.0,82.0,81.0,99.0,88.0,105.0,119.0,106.0,83.0,78.0,91.0,93.0,70.0,68.0,73.0,74.0,52.0,51.0,60.0,56.0,40.0,50.0,41.0,37.0,46.0,33.0,25.0,29.0,32.0,26.0,25.0,24.0,40.0,33.0,35.0,34.0,35.0,24.0,35.0,35.0,36.0,35.0,27.0,38.0,24.0,33.0,36.0,30.0,20.0,31.0,20.0,21.0,22.0,17.0,15.0,18.0,22.0,23.0,21.0,15.0,6.0,20.0,17.0,6.0,12.0,11.0,8.0,9.0,4.0,2.0,3.0,3.0,4.0,2.0,10.0 A81065,9.0,20.0,26.0,22.0,21.0,22.0,31.0,21.0,36.0,29.0,35.0,19.0,31.0,22.0,32.0,19.0,23.0,12.0,25.0,20.0,11.0,15.0,14.0,22.0,20.0,26.0,24.0,31.0,18.0,25.0,25.0,24.0,35.0,23.0,31.0,37.0,31.0,32.0,33.0,33.0,18.0,24.0,20.0,31.0,19.0,23.0,18.0,15.0,17.0,12.0,18.0,23.0,19.0,19.0,22.0,23.0,29.0,23.0,22.0,23.0,28.0,22.0,23.0,22.0,23.0,23.0,19.0,28.0,23.0,21.0,20.0,22.0,11.0,11.0,10.0,11.0,9.0,9.0,11.0,10.0,14.0,7.0,8.0,10.0,4.0,6.0,1.0,1.0,2.0,2.0,3.0,,,,,3.0 A81066,19.0,25.0,18.0,32.0,32.0,22.0,34.0,20.0,23.0,31.0,29.0,27.0,31.0,32.0,32.0,30.0,34.0,36.0,32.0,25.0,25.0,30.0,20.0,28.0,25.0,28.0,30.0,18.0,24.0,35.0,32.0,41.0,38.0,38.0,35.0,28.0,44.0,26.0,21.0,31.0,37.0,33.0,30.0,42.0,26.0,38.0,25.0,29.0,37.0,49.0,44.0,40.0,43.0,48.0,43.0,47.0,41.0,36.0,47.0,47.0,47.0,49.0,50.0,56.0,32.0,42.0,37.0,40.0,50.0,33.0,23.0,36.0,25.0,24.0,30.0,17.0,32.0,36.0,25.0,25.0,22.0,22.0,20.0,23.0,6.0,6.0,10.0,7.0,4.0,4.0,2.0,5.0,2.0,1.0,2.0,2.0 A81067,42.0,43.0,48.0,47.0,50.0,58.0,56.0,75.0,63.0,53.0,75.0,74.0,76.0,81.0,64.0,77.0,79.0,54.0,81.0,52.0,67.0,56.0,72.0,100.0,84.0,63.0,47.0,64.0,76.0,62.0,66.0,76.0,75.0,81.0,79.0,67.0,80.0,80.0,73.0,88.0,66.0,67.0,74.0,55.0,77.0,58.0,61.0,60.0,50.0,61.0,45.0,59.0,50.0,54.0,58.0,64.0,59.0,59.0,59.0,69.0,65.0,61.0,77.0,73.0,56.0,68.0,56.0,67.0,43.0,41.0,52.0,59.0,45.0,44.0,41.0,42.0,30.0,43.0,45.0,32.0,16.0,18.0,17.0,15.0,21.0,9.0,7.0,17.0,7.0,9.0,1.0,3.0,6.0,5.0,3.0,5.0 A81070,14.0,23.0,18.0,31.0,31.0,30.0,36.0,32.0,33.0,39.0,50.0,35.0,69.0,61.0,48.0,47.0,63.0,41.0,47.0,53.0,34.0,37.0,18.0,32.0,41.0,28.0,44.0,26.0,17.0,31.0,29.0,36.0,34.0,39.0,53.0,42.0,54.0,46.0,49.0,44.0,59.0,47.0,62.0,41.0,58.0,49.0,38.0,43.0,48.0,34.0,47.0,41.0,36.0,40.0,58.0,48.0,42.0,38.0,34.0,41.0,35.0,40.0,33.0,31.0,24.0,28.0,31.0,24.0,33.0,18.0,25.0,22.0,26.0,26.0,18.0,23.0,29.0,24.0,25.0,17.0,15.0,12.0,12.0,10.0,6.0,13.0,10.0,11.0,7.0,3.0,7.0,2.0,2.0,2.0,2.0,5.0 A81602,4.0,7.0,5.0,6.0,9.0,6.0,15.0,11.0,13.0,9.0,10.0,8.0,9.0,7.0,9.0,6.0,13.0,12.0,7.0,8.0,9.0,13.0,13.0,7.0,8.0,4.0,7.0,9.0,8.0,7.0,8.0,8.0,10.0,17.0,14.0,14.0,11.0,13.0,5.0,11.0,13.0,11.0,14.0,16.0,11.0,10.0,8.0,9.0,13.0,10.0,9.0,12.0,12.0,20.0,27.0,14.0,18.0,15.0,23.0,25.0,8.0,20.0,18.0,17.0,17.0,14.0,15.0,9.0,27.0,14.0,8.0,12.0,12.0,15.0,19.0,14.0,10.0,26.0,19.0,14.0,18.0,13.0,14.0,15.0,6.0,6.0,10.0,3.0,4.0,7.0,5.0,5.0,4.0,2.0,1.0,1.0 A81608,81.0,90.0,95.0,111.0,83.0,101.0,98.0,87.0,79.0,84.0,96.0,78.0,81.0,79.0,70.0,62.0,64.0,96.0,158.0,194.0,239.0,193.0,222.0,227.0,258.0,209.0,186.0,183.0,170.0,159.0,162.0,132.0,142.0,142.0,109.0,118.0,113.0,107.0,118.0,103.0,85.0,92.0,84.0,68.0,69.0,79.0,60.0,58.0,65.0,55.0,73.0,53.0,51.0,60.0,55.0,51.0,55.0,54.0,55.0,73.0,50.0,73.0,58.0,51.0,54.0,44.0,37.0,45.0,46.0,42.0,46.0,36.0,32.0,29.0,33.0,31.0,29.0,29.0,20.0,20.0,17.0,12.0,10.0,10.0,8.0,11.0,8.0,6.0,9.0,1.0,3.0,5.0,3.0,1.0,1.0,6.0 A81610,38.0,38.0,43.0,31.0,38.0,53.0,40.0,41.0,54.0,41.0,42.0,37.0,55.0,59.0,58.0,34.0,64.0,50.0,56.0,58.0,39.0,42.0,39.0,45.0,36.0,44.0,44.0,43.0,42.0,49.0,58.0,61.0,48.0,52.0,66.0,71.0,73.0,61.0,57.0,58.0,71.0,64.0,48.0,66.0,45.0,42.0,42.0,33.0,45.0,55.0,35.0,50.0,44.0,56.0,44.0,43.0,47.0,58.0,56.0,49.0,62.0,72.0,54.0,58.0,61.0,63.0,52.0,47.0,50.0,38.0,38.0,33.0,35.0,33.0,31.0,39.0,38.0,32.0,29.0,31.0,29.0,16.0,21.0,11.0,19.0,20.0,8.0,16.0,19.0,11.0,8.0,4.0,5.0,9.0,1.0,4.0 A81611,51.0,37.0,46.0,46.0,53.0,53.0,59.0,63.0,61.0,54.0,51.0,63.0,55.0,59.0,73.0,54.0,46.0,66.0,53.0,45.0,39.0,41.0,34.0,43.0,55.0,51.0,59.0,51.0,59.0,61.0,62.0,69.0,80.0,72.0,60.0,77.0,73.0,79.0,64.0,70.0,69.0,69.0,72.0,63.0,47.0,50.0,63.0,49.0,67.0,63.0,65.0,63.0,63.0,57.0,63.0,54.0,52.0,63.0,50.0,67.0,56.0,57.0,65.0,71.0,61.0,57.0,59.0,61.0,56.0,51.0,38.0,58.0,62.0,43.0,61.0,43.0,44.0,47.0,47.0,22.0,31.0,18.0,31.0,21.0,25.0,24.0,20.0,18.0,18.0,14.0,8.0,8.0,13.0,6.0,5.0,15.0 A81612,20.0,18.0,18.0,20.0,24.0,17.0,29.0,22.0,32.0,20.0,26.0,23.0,20.0,25.0,23.0,17.0,19.0,23.0,26.0,22.0,12.0,22.0,12.0,15.0,14.0,20.0,23.0,21.0,29.0,28.0,20.0,35.0,30.0,32.0,19.0,27.0,18.0,29.0,38.0,16.0,28.0,32.0,25.0,32.0,27.0,24.0,22.0,27.0,24.0,19.0,23.0,32.0,23.0,25.0,22.0,22.0,34.0,28.0,28.0,36.0,26.0,25.0,43.0,33.0,31.0,28.0,25.0,29.0,21.0,26.0,24.0,20.0,25.0,24.0,26.0,23.0,26.0,22.0,22.0,15.0,12.0,10.0,11.0,10.0,9.0,10.0,13.0,9.0,10.0,5.0,8.0,7.0,7.0,3.0,1.0,5.0 A81618,20.0,31.0,21.0,36.0,31.0,37.0,40.0,44.0,53.0,31.0,46.0,46.0,44.0,56.0,38.0,56.0,37.0,59.0,48.0,35.0,46.0,32.0,35.0,40.0,37.0,43.0,45.0,45.0,53.0,41.0,47.0,36.0,41.0,52.0,62.0,54.0,48.0,67.0,57.0,60.0,59.0,64.0,43.0,55.0,67.0,53.0,54.0,40.0,60.0,52.0,54.0,64.0,71.0,73.0,90.0,86.0,85.0,78.0,111.0,86.0,66.0,81.0,106.0,101.0,84.0,74.0,70.0,76.0,66.0,69.0,63.0,67.0,68.0,72.0,79.0,84.0,73.0,77.0,77.0,60.0,50.0,46.0,56.0,51.0,51.0,41.0,30.0,32.0,21.0,24.0,22.0,19.0,19.0,8.0,14.0,23.0 A81621,25.0,11.0,24.0,17.0,18.0,22.0,20.0,22.0,23.0,33.0,29.0,32.0,28.0,32.0,28.0,30.0,26.0,25.0,23.0,21.0,25.0,15.0,14.0,15.0,21.0,19.0,28.0,25.0,24.0,13.0,20.0,19.0,21.0,18.0,23.0,18.0,21.0,26.0,26.0,29.0,25.0,25.0,17.0,14.0,23.0,20.0,15.0,13.0,13.0,15.0,7.0,11.0,12.0,12.0,19.0,14.0,6.0,13.0,10.0,16.0,14.0,16.0,13.0,13.0,14.0,16.0,10.0,11.0,7.0,6.0,1.0,6.0,9.0,7.0,3.0,4.0,4.0,6.0,3.0,1.0,3.0,3.0,4.0,4.0,2.0,4.0,,2.0,2.0,1.0,2.0,3.0,1.0,,1.0,1.0 A81622,18.0,39.0,35.0,30.0,25.0,31.0,39.0,25.0,41.0,39.0,43.0,53.0,31.0,39.0,40.0,43.0,41.0,43.0,37.0,39.0,28.0,33.0,29.0,43.0,36.0,33.0,40.0,32.0,37.0,34.0,48.0,48.0,36.0,51.0,38.0,37.0,38.0,48.0,38.0,45.0,32.0,36.0,29.0,32.0,28.0,38.0,32.0,29.0,31.0,23.0,32.0,19.0,33.0,26.0,39.0,44.0,38.0,43.0,40.0,43.0,41.0,39.0,41.0,36.0,24.0,19.0,23.0,30.0,21.0,17.0,23.0,21.0,18.0,31.0,12.0,28.0,20.0,31.0,28.0,15.0,21.0,14.0,10.0,11.0,8.0,11.0,14.0,8.0,11.0,5.0,9.0,5.0,2.0,3.0,5.0,9.0 A81629,39.0,49.0,44.0,34.0,40.0,37.0,44.0,36.0,43.0,34.0,47.0,34.0,58.0,45.0,41.0,45.0,40.0,48.0,48.0,40.0,35.0,29.0,38.0,35.0,42.0,44.0,46.0,58.0,67.0,57.0,60.0,66.0,63.0,69.0,60.0,55.0,56.0,45.0,65.0,40.0,64.0,66.0,48.0,54.0,47.0,41.0,46.0,54.0,33.0,39.0,40.0,35.0,38.0,32.0,50.0,41.0,33.0,42.0,35.0,52.0,37.0,37.0,44.0,39.0,32.0,28.0,31.0,37.0,28.0,35.0,30.0,36.0,28.0,30.0,32.0,28.0,27.0,43.0,28.0,19.0,11.0,11.0,14.0,12.0,10.0,5.0,6.0,5.0,4.0,5.0,8.0,4.0,4.0,6.0,2.0,3.0 A81631,39.0,38.0,29.0,28.0,38.0,39.0,32.0,40.0,48.0,49.0,42.0,52.0,32.0,48.0,46.0,64.0,42.0,40.0,43.0,47.0,47.0,32.0,49.0,46.0,33.0,35.0,43.0,61.0,54.0,54.0,49.0,51.0,43.0,59.0,46.0,49.0,52.0,54.0,46.0,45.0,45.0,50.0,51.0,44.0,48.0,49.0,48.0,36.0,34.0,36.0,40.0,43.0,57.0,59.0,57.0,60.0,63.0,53.0,54.0,59.0,66.0,72.0,65.0,54.0,56.0,43.0,57.0,42.0,39.0,45.0,35.0,43.0,39.0,49.0,33.0,46.0,39.0,43.0,40.0,28.0,23.0,21.0,21.0,15.0,16.0,21.0,18.0,17.0,15.0,7.0,11.0,6.0,2.0,4.0,4.0,8.0 A81634,23.0,17.0,22.0,29.0,24.0,18.0,23.0,26.0,24.0,15.0,22.0,22.0,15.0,21.0,20.0,11.0,18.0,12.0,27.0,12.0,10.0,12.0,14.0,17.0,28.0,26.0,34.0,26.0,42.0,34.0,27.0,40.0,39.0,27.0,35.0,27.0,16.0,32.0,34.0,27.0,22.0,24.0,13.0,27.0,21.0,23.0,8.0,11.0,15.0,10.0,13.0,15.0,11.0,8.0,8.0,10.0,11.0,9.0,9.0,6.0,4.0,2.0,11.0,2.0,4.0,3.0,3.0,4.0,4.0,3.0,1.0,4.0,3.0,6.0,3.0,2.0,1.0,4.0,,,,1.0,1.0,,,1.0,,,,,,,,1.0,, A82004,11.0,5.0,10.0,11.0,12.0,10.0,7.0,8.0,8.0,10.0,12.0,6.0,7.0,6.0,13.0,7.0,8.0,11.0,13.0,7.0,4.0,10.0,6.0,1.0,4.0,5.0,11.0,13.0,11.0,2.0,14.0,7.0,12.0,11.0,10.0,14.0,14.0,13.0,7.0,9.0,9.0,5.0,10.0,16.0,7.0,15.0,9.0,11.0,18.0,9.0,12.0,20.0,11.0,10.0,19.0,27.0,28.0,19.0,16.0,28.0,21.0,17.0,34.0,21.0,25.0,16.0,26.0,18.0,17.0,18.0,15.0,16.0,15.0,16.0,12.0,13.0,18.0,19.0,8.0,8.0,10.0,7.0,6.0,6.0,6.0,5.0,7.0,5.0,8.0,8.0,3.0,1.0,5.0,,2.0, A82006,26.0,23.0,11.0,20.0,19.0,25.0,13.0,23.0,20.0,32.0,20.0,22.0,25.0,13.0,16.0,23.0,17.0,32.0,21.0,18.0,19.0,22.0,13.0,17.0,24.0,21.0,26.0,24.0,24.0,23.0,21.0,22.0,24.0,21.0,24.0,23.0,27.0,27.0,25.0,30.0,21.0,27.0,26.0,32.0,20.0,19.0,22.0,28.0,31.0,26.0,30.0,23.0,28.0,36.0,41.0,30.0,48.0,39.0,39.0,52.0,53.0,48.0,51.0,46.0,36.0,46.0,37.0,51.0,33.0,44.0,37.0,41.0,47.0,33.0,52.0,40.0,31.0,49.0,44.0,30.0,25.0,29.0,23.0,16.0,18.0,15.0,24.0,8.0,19.0,14.0,11.0,6.0,5.0,4.0,4.0,11.0 A82012,42.0,46.0,61.0,52.0,57.0,60.0,78.0,58.0,62.0,64.0,69.0,86.0,86.0,97.0,77.0,89.0,96.0,69.0,65.0,69.0,71.0,55.0,66.0,68.0,72.0,67.0,65.0,72.0,72.0,67.0,55.0,76.0,64.0,72.0,76.0,82.0,71.0,74.0,89.0,73.0,81.0,86.0,103.0,85.0,85.0,88.0,105.0,88.0,97.0,88.0,93.0,95.0,110.0,115.0,138.0,142.0,147.0,143.0,141.0,148.0,162.0,157.0,159.0,150.0,153.0,158.0,148.0,147.0,140.0,118.0,137.0,117.0,138.0,119.0,115.0,126.0,127.0,120.0,140.0,84.0,86.0,77.0,76.0,48.0,52.0,56.0,63.0,48.0,45.0,51.0,32.0,28.0,19.0,20.0,11.0,30.0 A82013,18.0,17.0,22.0,22.0,18.0,17.0,24.0,28.0,26.0,32.0,18.0,31.0,51.0,35.0,36.0,30.0,24.0,36.0,23.0,24.0,18.0,32.0,18.0,23.0,31.0,22.0,31.0,27.0,27.0,31.0,21.0,19.0,21.0,26.0,35.0,19.0,29.0,40.0,26.0,34.0,39.0,35.0,35.0,30.0,46.0,35.0,47.0,31.0,35.0,34.0,34.0,40.0,46.0,38.0,56.0,45.0,55.0,68.0,63.0,44.0,72.0,62.0,52.0,49.0,63.0,56.0,52.0,48.0,44.0,54.0,51.0,45.0,48.0,49.0,48.0,48.0,42.0,51.0,55.0,40.0,44.0,30.0,28.0,24.0,26.0,28.0,26.0,24.0,17.0,10.0,15.0,10.0,7.0,12.0,6.0,20.0 A82014,12.0,14.0,12.0,15.0,9.0,17.0,14.0,17.0,10.0,12.0,14.0,13.0,13.0,18.0,13.0,17.0,16.0,18.0,15.0,17.0,25.0,10.0,15.0,14.0,21.0,22.0,21.0,18.0,19.0,18.0,24.0,21.0,18.0,19.0,16.0,18.0,18.0,14.0,7.0,18.0,11.0,20.0,18.0,14.0,21.0,27.0,21.0,23.0,17.0,28.0,24.0,31.0,28.0,36.0,29.0,41.0,43.0,50.0,42.0,29.0,51.0,49.0,54.0,41.0,41.0,39.0,46.0,33.0,36.0,39.0,28.0,31.0,35.0,36.0,34.0,26.0,37.0,42.0,35.0,19.0,25.0,19.0,23.0,19.0,16.0,19.0,9.0,6.0,8.0,5.0,11.0,13.0,8.0,5.0,4.0,9.0 A82015,56.0,67.0,61.0,64.0,65.0,61.0,73.0,75.0,77.0,68.0,98.0,73.0,58.0,94.0,69.0,73.0,73.0,71.0,78.0,75.0,82.0,76.0,83.0,83.0,100.0,94.0,116.0,109.0,123.0,143.0,122.0,122.0,125.0,127.0,115.0,108.0,106.0,118.0,96.0,98.0,116.0,90.0,96.0,83.0,96.0,75.0,66.0,64.0,72.0,61.0,66.0,63.0,72.0,84.0,84.0,72.0,86.0,89.0,71.0,79.0,72.0,80.0,72.0,88.0,61.0,69.0,77.0,53.0,66.0,40.0,45.0,43.0,54.0,52.0,35.0,52.0,44.0,52.0,44.0,34.0,37.0,35.0,31.0,30.0,41.0,23.0,26.0,20.0,23.0,24.0,11.0,11.0,9.0,3.0,7.0,20.0 A82016,186.0,167.0,178.0,197.0,193.0,187.0,202.0,192.0,239.0,231.0,245.0,225.0,241.0,215.0,256.0,217.0,236.0,234.0,220.0,186.0,200.0,203.0,191.0,167.0,205.0,197.0,235.0,258.0,272.0,234.0,254.0,273.0,281.0,324.0,295.0,280.0,281.0,264.0,253.0,262.0,260.0,265.0,250.0,257.0,243.0,256.0,213.0,224.0,230.0,247.0,233.0,242.0,275.0,238.0,294.0,273.0,267.0,291.0,272.0,285.0,247.0,259.0,253.0,245.0,264.0,243.0,241.0,227.0,265.0,217.0,211.0,217.0,200.0,208.0,193.0,209.0,213.0,199.0,192.0,154.0,154.0,149.0,147.0,117.0,120.0,98.0,87.0,92.0,102.0,80.0,55.0,52.0,47.0,30.0,20.0,59.0 A82018,42.0,57.0,57.0,61.0,72.0,75.0,63.0,54.0,67.0,85.0,70.0,71.0,89.0,89.0,87.0,87.0,67.0,82.0,75.0,60.0,53.0,53.0,63.0,65.0,83.0,59.0,67.0,81.0,82.0,80.0,98.0,105.0,110.0,97.0,116.0,119.0,93.0,103.0,97.0,92.0,114.0,88.0,118.0,92.0,88.0,92.0,76.0,59.0,70.0,72.0,77.0,82.0,89.0,101.0,87.0,87.0,106.0,90.0,80.0,87.0,106.0,113.0,80.0,92.0,89.0,103.0,88.0,106.0,83.0,84.0,68.0,80.0,61.0,70.0,59.0,74.0,54.0,70.0,64.0,48.0,47.0,47.0,39.0,32.0,36.0,32.0,28.0,32.0,23.0,22.0,17.0,15.0,20.0,7.0,13.0,14.0 A82020,56.0,83.0,89.0,72.0,91.0,95.0,92.0,83.0,89.0,108.0,108.0,105.0,95.0,87.0,91.0,100.0,75.0,79.0,83.0,79.0,73.0,61.0,70.0,49.0,88.0,67.0,98.0,98.0,103.0,108.0,92.0,114.0,124.0,130.0,133.0,118.0,123.0,117.0,104.0,136.0,110.0,138.0,122.0,112.0,103.0,100.0,69.0,96.0,74.0,93.0,78.0,102.0,96.0,92.0,85.0,96.0,102.0,80.0,107.0,108.0,99.0,103.0,95.0,102.0,107.0,76.0,100.0,100.0,91.0,82.0,86.0,83.0,77.0,90.0,80.0,80.0,75.0,90.0,81.0,61.0,58.0,63.0,43.0,47.0,39.0,43.0,31.0,24.0,26.0,23.0,14.0,15.0,14.0,15.0,7.0,12.0 A82021,63.0,51.0,61.0,65.0,80.0,62.0,60.0,63.0,100.0,95.0,68.0,79.0,99.0,95.0,98.0,113.0,91.0,107.0,85.0,65.0,70.0,68.0,58.0,74.0,76.0,65.0,79.0,76.0,85.0,90.0,92.0,83.0,92.0,104.0,112.0,97.0,90.0,98.0,91.0,104.0,115.0,101.0,96.0,113.0,104.0,110.0,92.0,101.0,113.0,113.0,103.0,121.0,128.0,149.0,145.0,150.0,149.0,153.0,186.0,158.0,152.0,162.0,157.0,160.0,140.0,138.0,132.0,143.0,125.0,124.0,127.0,135.0,140.0,105.0,111.0,130.0,128.0,115.0,138.0,79.0,96.0,93.0,62.0,67.0,55.0,68.0,65.0,44.0,34.0,38.0,28.0,25.0,33.0,12.0,18.0,22.0 A82022,22.0,19.0,23.0,21.0,20.0,18.0,27.0,22.0,22.0,25.0,29.0,23.0,21.0,24.0,25.0,35.0,29.0,34.0,19.0,19.0,20.0,16.0,17.0,17.0,19.0,22.0,14.0,12.0,17.0,28.0,26.0,30.0,21.0,17.0,34.0,24.0,23.0,24.0,23.0,26.0,29.0,32.0,23.0,32.0,26.0,19.0,36.0,36.0,30.0,27.0,38.0,37.0,41.0,36.0,31.0,42.0,47.0,43.0,45.0,37.0,49.0,50.0,29.0,44.0,44.0,37.0,37.0,41.0,35.0,30.0,36.0,43.0,35.0,29.0,28.0,33.0,34.0,37.0,43.0,35.0,34.0,32.0,19.0,20.0,21.0,20.0,15.0,22.0,14.0,11.0,6.0,3.0,5.0,9.0,2.0,5.0 A82023,22.0,19.0,40.0,16.0,36.0,33.0,25.0,32.0,25.0,40.0,21.0,22.0,26.0,29.0,34.0,28.0,31.0,25.0,24.0,20.0,20.0,28.0,25.0,26.0,30.0,28.0,30.0,25.0,39.0,36.0,38.0,29.0,44.0,45.0,48.0,45.0,54.0,36.0,37.0,38.0,44.0,35.0,27.0,42.0,27.0,22.0,36.0,25.0,23.0,37.0,39.0,47.0,36.0,47.0,40.0,49.0,58.0,47.0,51.0,63.0,53.0,43.0,61.0,54.0,49.0,45.0,61.0,45.0,43.0,50.0,39.0,42.0,48.0,33.0,54.0,42.0,43.0,35.0,32.0,30.0,37.0,30.0,24.0,30.0,15.0,16.0,17.0,11.0,13.0,9.0,13.0,7.0,8.0,5.0,5.0,3.0 A82024,9.0,21.0,18.0,18.0,19.0,19.0,29.0,17.0,27.0,22.0,35.0,29.0,34.0,36.0,25.0,33.0,14.0,33.0,21.0,23.0,17.0,20.0,11.0,27.0,22.0,26.0,23.0,30.0,18.0,22.0,27.0,24.0,29.0,25.0,40.0,35.0,33.0,38.0,28.0,31.0,27.0,32.0,43.0,34.0,36.0,39.0,35.0,28.0,31.0,33.0,36.0,43.0,38.0,43.0,48.0,42.0,44.0,42.0,50.0,53.0,52.0,66.0,48.0,51.0,51.0,45.0,63.0,46.0,44.0,46.0,44.0,44.0,37.0,44.0,46.0,42.0,43.0,46.0,30.0,28.0,29.0,31.0,25.0,24.0,20.0,18.0,20.0,17.0,14.0,16.0,9.0,13.0,9.0,4.0,2.0,13.0 A82028,17.0,20.0,30.0,21.0,24.0,20.0,22.0,25.0,28.0,34.0,30.0,30.0,35.0,31.0,42.0,49.0,53.0,55.0,41.0,29.0,31.0,37.0,40.0,28.0,31.0,39.0,40.0,38.0,35.0,37.0,35.0,41.0,42.0,44.0,51.0,42.0,41.0,51.0,33.0,37.0,41.0,51.0,42.0,42.0,55.0,45.0,37.0,38.0,42.0,50.0,48.0,49.0,57.0,70.0,82.0,82.0,71.0,80.0,79.0,60.0,74.0,65.0,65.0,54.0,72.0,63.0,68.0,69.0,66.0,52.0,42.0,62.0,64.0,51.0,52.0,53.0,49.0,79.0,58.0,49.0,50.0,43.0,44.0,27.0,34.0,30.0,24.0,34.0,23.0,16.0,19.0,15.0,13.0,10.0,4.0,26.0 A82029,8.0,13.0,9.0,9.0,4.0,14.0,15.0,22.0,9.0,20.0,21.0,13.0,14.0,12.0,19.0,20.0,12.0,21.0,19.0,15.0,18.0,10.0,23.0,16.0,13.0,9.0,17.0,14.0,20.0,11.0,14.0,12.0,16.0,18.0,14.0,12.0,15.0,21.0,9.0,18.0,18.0,16.0,16.0,9.0,13.0,28.0,15.0,18.0,15.0,14.0,21.0,31.0,27.0,25.0,27.0,31.0,31.0,31.0,40.0,38.0,29.0,32.0,41.0,37.0,29.0,32.0,34.0,25.0,15.0,41.0,16.0,31.0,29.0,29.0,27.0,22.0,35.0,30.0,29.0,13.0,15.0,16.0,11.0,17.0,11.0,11.0,14.0,8.0,6.0,5.0,6.0,2.0,3.0,3.0,2.0,4.0 A82031,13.0,6.0,10.0,11.0,13.0,13.0,11.0,15.0,17.0,14.0,13.0,12.0,16.0,16.0,14.0,18.0,12.0,17.0,20.0,11.0,14.0,9.0,16.0,14.0,15.0,14.0,19.0,9.0,13.0,19.0,15.0,15.0,22.0,16.0,15.0,17.0,21.0,17.0,11.0,23.0,19.0,20.0,17.0,17.0,13.0,17.0,19.0,19.0,19.0,19.0,14.0,21.0,19.0,27.0,32.0,32.0,35.0,27.0,28.0,20.0,32.0,38.0,36.0,27.0,37.0,38.0,31.0,29.0,20.0,25.0,21.0,21.0,26.0,29.0,17.0,27.0,19.0,21.0,21.0,10.0,12.0,14.0,14.0,7.0,11.0,6.0,13.0,7.0,4.0,5.0,6.0,6.0,3.0,2.0,3.0,4.0 A82032,53.0,54.0,61.0,66.0,54.0,65.0,63.0,92.0,72.0,68.0,81.0,86.0,93.0,89.0,95.0,70.0,73.0,69.0,88.0,64.0,64.0,49.0,54.0,54.0,75.0,83.0,64.0,78.0,73.0,73.0,69.0,89.0,81.0,93.0,98.0,82.0,87.0,77.0,83.0,86.0,77.0,72.0,89.0,99.0,91.0,97.0,69.0,63.0,72.0,80.0,80.0,101.0,107.0,109.0,93.0,111.0,102.0,99.0,124.0,99.0,86.0,100.0,103.0,82.0,82.0,88.0,98.0,84.0,82.0,68.0,73.0,85.0,99.0,87.0,81.0,73.0,79.0,92.0,87.0,59.0,55.0,60.0,55.0,44.0,37.0,35.0,43.0,29.0,34.0,14.0,17.0,9.0,15.0,11.0,3.0,11.0 A82035,36.0,47.0,50.0,53.0,64.0,44.0,55.0,48.0,37.0,63.0,73.0,57.0,70.0,74.0,80.0,89.0,79.0,88.0,64.0,97.0,59.0,69.0,67.0,81.0,70.0,66.0,59.0,65.0,57.0,66.0,79.0,82.0,77.0,86.0,76.0,88.0,85.0,88.0,64.0,80.0,87.0,84.0,72.0,84.0,76.0,87.0,74.0,85.0,73.0,85.0,84.0,93.0,89.0,107.0,98.0,117.0,131.0,108.0,104.0,111.0,122.0,118.0,95.0,131.0,114.0,108.0,122.0,115.0,84.0,91.0,108.0,91.0,99.0,92.0,102.0,96.0,113.0,95.0,86.0,71.0,88.0,65.0,60.0,65.0,47.0,49.0,53.0,38.0,38.0,44.0,30.0,24.0,23.0,11.0,14.0,39.0 A82036,44.0,35.0,39.0,56.0,49.0,46.0,59.0,53.0,59.0,51.0,44.0,60.0,63.0,52.0,72.0,61.0,40.0,61.0,42.0,33.0,36.0,47.0,36.0,53.0,51.0,50.0,63.0,49.0,78.0,75.0,77.0,67.0,94.0,81.0,72.0,91.0,72.0,68.0,74.0,82.0,67.0,62.0,59.0,84.0,65.0,66.0,67.0,53.0,51.0,65.0,66.0,69.0,77.0,93.0,94.0,92.0,105.0,96.0,95.0,89.0,101.0,79.0,87.0,102.0,85.0,68.0,89.0,76.0,74.0,65.0,68.0,67.0,63.0,55.0,67.0,79.0,60.0,69.0,69.0,49.0,54.0,47.0,37.0,37.0,32.0,34.0,33.0,30.0,19.0,30.0,19.0,18.0,19.0,12.0,16.0,32.0 A82037,18.0,15.0,16.0,15.0,15.0,13.0,11.0,8.0,18.0,19.0,15.0,19.0,12.0,26.0,27.0,18.0,20.0,13.0,22.0,12.0,19.0,16.0,17.0,25.0,13.0,18.0,17.0,27.0,20.0,25.0,17.0,27.0,23.0,19.0,17.0,23.0,20.0,15.0,21.0,24.0,15.0,24.0,19.0,12.0,13.0,18.0,19.0,24.0,25.0,23.0,22.0,28.0,22.0,26.0,28.0,28.0,34.0,35.0,46.0,29.0,55.0,50.0,34.0,40.0,49.0,30.0,46.0,38.0,44.0,35.0,36.0,41.0,35.0,28.0,38.0,33.0,34.0,37.0,38.0,31.0,23.0,26.0,19.0,25.0,15.0,17.0,14.0,10.0,13.0,18.0,12.0,10.0,11.0,5.0,9.0,10.0 A82038,14.0,16.0,19.0,25.0,22.0,16.0,21.0,27.0,19.0,21.0,25.0,26.0,30.0,32.0,27.0,28.0,27.0,27.0,23.0,24.0,19.0,24.0,15.0,19.0,15.0,20.0,23.0,14.0,20.0,17.0,18.0,26.0,21.0,23.0,26.0,33.0,23.0,28.0,21.0,28.0,25.0,30.0,25.0,20.0,24.0,26.0,24.0,27.0,28.0,19.0,31.0,35.0,40.0,32.0,35.0,44.0,39.0,41.0,34.0,47.0,38.0,53.0,44.0,37.0,51.0,32.0,24.0,32.0,23.0,29.0,38.0,24.0,26.0,29.0,32.0,25.0,27.0,32.0,28.0,30.0,28.0,20.0,16.0,14.0,6.0,12.0,14.0,13.0,4.0,6.0,3.0,6.0,3.0,4.0,5.0,2.0 A82041,40.0,49.0,56.0,60.0,45.0,52.0,57.0,65.0,71.0,70.0,70.0,73.0,78.0,82.0,91.0,78.0,76.0,64.0,72.0,67.0,61.0,66.0,63.0,64.0,66.0,81.0,76.0,85.0,86.0,77.0,87.0,62.0,95.0,85.0,83.0,87.0,86.0,86.0,77.0,86.0,73.0,77.0,88.0,78.0,97.0,80.0,84.0,71.0,73.0,78.0,80.0,100.0,91.0,103.0,102.0,104.0,80.0,109.0,110.0,109.0,113.0,110.0,113.0,89.0,92.0,91.0,86.0,87.0,90.0,76.0,60.0,85.0,78.0,69.0,69.0,87.0,74.0,67.0,70.0,60.0,51.0,56.0,44.0,40.0,36.0,37.0,48.0,39.0,31.0,19.0,16.0,16.0,9.0,13.0,7.0,11.0 A82044,79.0,105.0,105.0,124.0,109.0,115.0,118.0,145.0,136.0,127.0,124.0,134.0,132.0,152.0,125.0,123.0,131.0,119.0,108.0,117.0,109.0,99.0,100.0,87.0,113.0,100.0,135.0,139.0,146.0,134.0,131.0,146.0,167.0,172.0,167.0,151.0,169.0,148.0,173.0,149.0,156.0,133.0,148.0,139.0,122.0,138.0,127.0,118.0,123.0,136.0,125.0,143.0,151.0,150.0,173.0,167.0,162.0,155.0,166.0,187.0,185.0,192.0,196.0,172.0,156.0,141.0,138.0,166.0,154.0,125.0,125.0,95.0,105.0,109.0,110.0,111.0,109.0,107.0,112.0,60.0,84.0,79.0,69.0,52.0,54.0,52.0,54.0,47.0,47.0,23.0,31.0,22.0,15.0,7.0,11.0,23.0 A82045,37.0,44.0,43.0,36.0,39.0,45.0,43.0,52.0,44.0,54.0,49.0,63.0,50.0,60.0,50.0,52.0,57.0,44.0,51.0,37.0,38.0,30.0,39.0,46.0,51.0,55.0,51.0,62.0,57.0,43.0,47.0,56.0,54.0,64.0,52.0,58.0,55.0,57.0,42.0,46.0,51.0,45.0,50.0,53.0,50.0,53.0,51.0,43.0,48.0,50.0,51.0,56.0,73.0,71.0,79.0,80.0,89.0,78.0,73.0,77.0,80.0,63.0,66.0,68.0,44.0,56.0,63.0,67.0,58.0,72.0,59.0,44.0,54.0,55.0,63.0,64.0,55.0,55.0,69.0,43.0,44.0,42.0,31.0,28.0,21.0,25.0,24.0,27.0,19.0,15.0,16.0,11.0,10.0,7.0,3.0,14.0 A82047,140.0,145.0,132.0,145.0,198.0,173.0,161.0,171.0,183.0,166.0,201.0,202.0,193.0,202.0,222.0,204.0,154.0,194.0,173.0,149.0,169.0,141.0,148.0,151.0,156.0,182.0,203.0,187.0,191.0,208.0,211.0,207.0,229.0,231.0,223.0,229.0,211.0,228.0,207.0,224.0,221.0,205.0,211.0,215.0,221.0,192.0,173.0,157.0,152.0,173.0,177.0,182.0,211.0,223.0,249.0,221.0,238.0,253.0,245.0,247.0,237.0,213.0,251.0,240.0,218.0,233.0,201.0,206.0,191.0,201.0,176.0,168.0,182.0,151.0,180.0,195.0,181.0,206.0,156.0,115.0,130.0,124.0,115.0,107.0,73.0,94.0,74.0,87.0,69.0,54.0,43.0,39.0,32.0,29.0,29.0,56.0 A82055,27.0,27.0,21.0,20.0,36.0,27.0,30.0,31.0,40.0,42.0,39.0,42.0,46.0,44.0,51.0,49.0,46.0,41.0,37.0,34.0,16.0,30.0,30.0,24.0,34.0,32.0,32.0,29.0,32.0,29.0,42.0,42.0,22.0,41.0,35.0,41.0,33.0,45.0,53.0,49.0,44.0,41.0,43.0,37.0,49.0,42.0,24.0,33.0,39.0,43.0,42.0,43.0,55.0,46.0,59.0,76.0,64.0,35.0,54.0,57.0,68.0,73.0,65.0,59.0,58.0,67.0,54.0,54.0,46.0,47.0,38.0,53.0,33.0,43.0,48.0,50.0,55.0,56.0,43.0,40.0,30.0,33.0,20.0,14.0,21.0,15.0,22.0,12.0,13.0,14.0,9.0,6.0,10.0,8.0,1.0,11.0 A82064,20.0,18.0,28.0,22.0,24.0,30.0,23.0,21.0,19.0,23.0,40.0,30.0,22.0,27.0,32.0,32.0,37.0,20.0,23.0,26.0,20.0,31.0,34.0,31.0,18.0,28.0,35.0,32.0,26.0,32.0,28.0,33.0,33.0,27.0,39.0,34.0,40.0,46.0,25.0,27.0,35.0,33.0,37.0,23.0,39.0,35.0,30.0,30.0,37.0,29.0,37.0,39.0,41.0,47.0,50.0,56.0,52.0,59.0,52.0,57.0,62.0,64.0,43.0,61.0,53.0,40.0,39.0,47.0,50.0,43.0,47.0,45.0,32.0,33.0,49.0,41.0,44.0,45.0,44.0,27.0,34.0,26.0,25.0,30.0,14.0,15.0,22.0,12.0,12.0,11.0,12.0,3.0,1.0,6.0,1.0,5.0 A82075,35.0,29.0,26.0,46.0,33.0,43.0,38.0,36.0,37.0,56.0,38.0,32.0,40.0,42.0,38.0,36.0,33.0,51.0,48.0,56.0,58.0,43.0,38.0,47.0,37.0,47.0,36.0,45.0,47.0,58.0,52.0,58.0,46.0,65.0,65.0,38.0,40.0,54.0,50.0,41.0,48.0,55.0,55.0,39.0,44.0,46.0,37.0,42.0,29.0,56.0,42.0,41.0,41.0,48.0,56.0,38.0,62.0,55.0,63.0,64.0,67.0,54.0,44.0,44.0,60.0,43.0,56.0,54.0,42.0,48.0,48.0,38.0,46.0,40.0,54.0,36.0,39.0,48.0,34.0,30.0,18.0,22.0,20.0,21.0,25.0,25.0,14.0,16.0,7.0,10.0,11.0,9.0,5.0,15.0,5.0,14.0 A82617,11.0,9.0,15.0,11.0,6.0,19.0,19.0,7.0,14.0,15.0,10.0,12.0,16.0,9.0,16.0,11.0,18.0,11.0,7.0,10.0,4.0,8.0,7.0,8.0,6.0,12.0,7.0,9.0,13.0,8.0,12.0,12.0,15.0,16.0,13.0,18.0,8.0,24.0,11.0,13.0,16.0,16.0,14.0,8.0,13.0,13.0,14.0,13.0,19.0,16.0,9.0,16.0,19.0,18.0,26.0,25.0,23.0,30.0,23.0,27.0,28.0,29.0,23.0,29.0,27.0,28.0,22.0,34.0,28.0,20.0,16.0,21.0,14.0,26.0,19.0,11.0,18.0,19.0,18.0,11.0,18.0,12.0,8.0,4.0,8.0,8.0,6.0,2.0,5.0,4.0,2.0,5.0,5.0,,,8.0 A82620,1.0,4.0,2.0,3.0,3.0,1.0,3.0,6.0,5.0,5.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,6.0,2.0,9.0,6.0,3.0,3.0,3.0,6.0,7.0,3.0,5.0,2.0,5.0,6.0,3.0,8.0,2.0,4.0,3.0,3.0,4.0,9.0,10.0,4.0,5.0,5.0,4.0,13.0,7.0,5.0,4.0,3.0,5.0,7.0,7.0,6.0,9.0,9.0,10.0,8.0,11.0,8.0,16.0,7.0,12.0,8.0,7.0,7.0,5.0,10.0,8.0,6.0,2.0,8.0,6.0,3.0,2.0,3.0,6.0,4.0,3.0,6.0,3.0,5.0,2.0,3.0,2.0,,6.0,1.0,3.0,2.0,2.0,1.0,1.0,,2.0,1.0,4.0 A82631,12.0,14.0,8.0,23.0,16.0,14.0,11.0,22.0,17.0,16.0,18.0,21.0,16.0,12.0,26.0,15.0,14.0,13.0,14.0,12.0,13.0,18.0,17.0,12.0,14.0,13.0,22.0,18.0,23.0,8.0,16.0,16.0,16.0,22.0,17.0,16.0,24.0,24.0,30.0,21.0,15.0,26.0,15.0,25.0,22.0,21.0,22.0,14.0,18.0,23.0,23.0,21.0,24.0,34.0,28.0,31.0,35.0,27.0,45.0,39.0,39.0,37.0,33.0,46.0,35.0,33.0,28.0,39.0,23.0,32.0,25.0,18.0,24.0,27.0,18.0,23.0,22.0,23.0,21.0,23.0,12.0,17.0,15.0,19.0,8.0,8.0,15.0,6.0,10.0,9.0,12.0,7.0,2.0,2.0,4.0,6.0 A82646,13.0,18.0,12.0,19.0,12.0,17.0,21.0,19.0,26.0,16.0,20.0,14.0,16.0,24.0,19.0,20.0,27.0,17.0,18.0,16.0,18.0,13.0,20.0,13.0,11.0,21.0,11.0,20.0,15.0,24.0,16.0,22.0,16.0,29.0,23.0,33.0,30.0,27.0,20.0,23.0,27.0,18.0,30.0,20.0,19.0,20.0,22.0,11.0,13.0,18.0,15.0,16.0,23.0,31.0,20.0,31.0,31.0,30.0,28.0,22.0,27.0,30.0,46.0,35.0,27.0,25.0,21.0,38.0,22.0,23.0,25.0,25.0,34.0,33.0,21.0,24.0,20.0,20.0,17.0,13.0,16.0,14.0,12.0,13.0,8.0,16.0,12.0,10.0,7.0,6.0,6.0,4.0,5.0,2.0,4.0,6.0 A82654,28.0,38.0,40.0,33.0,43.0,37.0,37.0,36.0,34.0,26.0,39.0,41.0,31.0,47.0,32.0,37.0,33.0,50.0,36.0,44.0,34.0,42.0,28.0,29.0,38.0,44.0,50.0,47.0,51.0,39.0,58.0,40.0,72.0,58.0,59.0,66.0,64.0,43.0,45.0,44.0,40.0,37.0,41.0,47.0,47.0,40.0,39.0,34.0,46.0,47.0,58.0,54.0,41.0,50.0,62.0,66.0,58.0,64.0,49.0,63.0,61.0,68.0,71.0,58.0,64.0,48.0,59.0,36.0,40.0,32.0,36.0,24.0,29.0,31.0,46.0,30.0,38.0,46.0,35.0,24.0,25.0,20.0,25.0,24.0,20.0,18.0,11.0,26.0,13.0,7.0,18.0,8.0,11.0,12.0,9.0,11.0 A83001,82.0,70.0,83.0,89.0,78.0,83.0,88.0,111.0,83.0,100.0,93.0,84.0,81.0,97.0,95.0,81.0,84.0,91.0,82.0,74.0,72.0,63.0,82.0,67.0,94.0,85.0,100.0,93.0,96.0,106.0,102.0,109.0,115.0,115.0,116.0,124.0,136.0,111.0,119.0,115.0,93.0,107.0,112.0,116.0,108.0,114.0,106.0,104.0,89.0,95.0,58.0,103.0,111.0,120.0,101.0,102.0,100.0,114.0,91.0,108.0,102.0,116.0,98.0,101.0,113.0,94.0,93.0,95.0,89.0,90.0,85.0,82.0,97.0,89.0,90.0,91.0,78.0,71.0,74.0,70.0,55.0,30.0,40.0,42.0,36.0,32.0,25.0,29.0,18.0,19.0,17.0,3.0,5.0,10.0,7.0,18.0 A83003,22.0,38.0,33.0,34.0,43.0,31.0,41.0,48.0,42.0,49.0,53.0,50.0,44.0,49.0,58.0,62.0,59.0,59.0,53.0,58.0,49.0,36.0,49.0,25.0,41.0,36.0,34.0,48.0,50.0,48.0,49.0,37.0,56.0,50.0,47.0,69.0,67.0,61.0,61.0,53.0,60.0,52.0,47.0,57.0,65.0,68.0,47.0,57.0,43.0,52.0,59.0,72.0,68.0,55.0,82.0,64.0,83.0,80.0,68.0,67.0,74.0,78.0,79.0,61.0,71.0,65.0,75.0,79.0,48.0,51.0,55.0,61.0,42.0,41.0,58.0,57.0,47.0,63.0,44.0,45.0,33.0,24.0,30.0,25.0,28.0,20.0,16.0,21.0,13.0,9.0,8.0,9.0,6.0,5.0,3.0,8.0 A83005,48.0,59.0,55.0,55.0,57.0,61.0,56.0,64.0,56.0,71.0,72.0,60.0,78.0,78.0,73.0,70.0,70.0,86.0,61.0,53.0,62.0,59.0,70.0,52.0,61.0,59.0,67.0,77.0,62.0,71.0,58.0,75.0,68.0,93.0,81.0,85.0,88.0,96.0,81.0,77.0,66.0,95.0,83.0,78.0,77.0,72.0,79.0,62.0,69.0,60.0,77.0,89.0,76.0,100.0,85.0,87.0,84.0,83.0,82.0,89.0,85.0,104.0,96.0,86.0,94.0,75.0,103.0,98.0,82.0,74.0,52.0,60.0,76.0,76.0,56.0,64.0,68.0,88.0,91.0,51.0,47.0,30.0,34.0,32.0,36.0,35.0,25.0,25.0,20.0,23.0,20.0,13.0,7.0,12.0,8.0,9.0 A83006,29.0,49.0,52.0,48.0,44.0,53.0,44.0,50.0,46.0,42.0,62.0,48.0,42.0,51.0,46.0,52.0,49.0,45.0,51.0,41.0,42.0,41.0,51.0,37.0,53.0,58.0,63.0,62.0,61.0,54.0,62.0,62.0,67.0,78.0,69.0,68.0,75.0,64.0,65.0,59.0,70.0,59.0,47.0,52.0,56.0,51.0,52.0,46.0,40.0,56.0,56.0,59.0,65.0,50.0,51.0,61.0,51.0,68.0,62.0,81.0,61.0,66.0,64.0,51.0,53.0,41.0,56.0,46.0,42.0,36.0,39.0,31.0,38.0,26.0,43.0,40.0,32.0,37.0,36.0,26.0,29.0,29.0,19.0,24.0,22.0,20.0,21.0,12.0,12.0,10.0,8.0,9.0,6.0,6.0,7.0,12.0 A83007,33.0,36.0,47.0,39.0,33.0,44.0,47.0,50.0,51.0,45.0,43.0,51.0,47.0,58.0,58.0,62.0,48.0,50.0,51.0,56.0,55.0,51.0,49.0,53.0,58.0,63.0,82.0,49.0,64.0,68.0,60.0,71.0,58.0,68.0,76.0,69.0,72.0,62.0,68.0,63.0,73.0,56.0,58.0,58.0,59.0,50.0,66.0,40.0,61.0,50.0,53.0,66.0,51.0,74.0,73.0,62.0,81.0,79.0,92.0,76.0,74.0,77.0,69.0,78.0,93.0,79.0,82.0,77.0,75.0,75.0,52.0,67.0,71.0,55.0,71.0,44.0,63.0,50.0,48.0,33.0,58.0,31.0,24.0,42.0,35.0,31.0,23.0,29.0,19.0,18.0,17.0,17.0,7.0,11.0,3.0,19.0 A83008,20.0,21.0,23.0,20.0,27.0,31.0,36.0,28.0,26.0,29.0,30.0,30.0,29.0,43.0,31.0,32.0,25.0,29.0,25.0,35.0,31.0,35.0,22.0,37.0,19.0,30.0,31.0,32.0,27.0,32.0,36.0,25.0,37.0,37.0,37.0,36.0,41.0,48.0,32.0,35.0,39.0,33.0,39.0,33.0,20.0,32.0,23.0,17.0,27.0,36.0,28.0,33.0,35.0,30.0,45.0,37.0,39.0,30.0,43.0,34.0,34.0,39.0,36.0,38.0,37.0,40.0,31.0,34.0,25.0,30.0,31.0,23.0,20.0,25.0,26.0,35.0,23.0,36.0,32.0,21.0,14.0,19.0,14.0,19.0,9.0,13.0,10.0,10.0,11.0,6.0,10.0,8.0,4.0,5.0,2.0,9.0 A83009,28.0,18.0,17.0,23.0,37.0,34.0,23.0,35.0,48.0,24.0,36.0,39.0,47.0,49.0,40.0,44.0,40.0,41.0,41.0,40.0,38.0,36.0,43.0,42.0,35.0,42.0,33.0,44.0,50.0,24.0,51.0,37.0,39.0,41.0,43.0,41.0,40.0,34.0,43.0,43.0,39.0,45.0,56.0,44.0,49.0,42.0,45.0,50.0,46.0,42.0,56.0,51.0,55.0,53.0,68.0,50.0,63.0,71.0,68.0,82.0,65.0,45.0,68.0,50.0,57.0,57.0,48.0,51.0,50.0,53.0,41.0,39.0,42.0,47.0,43.0,53.0,44.0,43.0,56.0,39.0,46.0,45.0,29.0,32.0,28.0,41.0,18.0,19.0,18.0,14.0,12.0,16.0,13.0,11.0,6.0,14.0 A83010,48.0,49.0,27.0,54.0,57.0,57.0,61.0,70.0,45.0,54.0,68.0,50.0,78.0,89.0,68.0,75.0,58.0,74.0,69.0,66.0,56.0,55.0,60.0,68.0,53.0,69.0,62.0,64.0,69.0,72.0,71.0,83.0,89.0,62.0,99.0,85.0,69.0,90.0,67.0,72.0,74.0,76.0,86.0,82.0,75.0,84.0,96.0,73.0,62.0,80.0,78.0,81.0,92.0,100.0,97.0,111.0,84.0,97.0,95.0,97.0,105.0,105.0,110.0,91.0,105.0,111.0,82.0,78.0,90.0,61.0,82.0,82.0,72.0,70.0,74.0,81.0,71.0,78.0,90.0,67.0,64.0,64.0,50.0,54.0,53.0,42.0,48.0,42.0,38.0,30.0,24.0,16.0,15.0,22.0,10.0,23.0 A83011,48.0,34.0,56.0,46.0,35.0,43.0,41.0,77.0,61.0,61.0,69.0,73.0,71.0,63.0,62.0,60.0,68.0,84.0,674.0,1447.0,1768.0,1627.0,1442.0,1195.0,1067.0,337.0,253.0,255.0,191.0,158.0,145.0,145.0,111.0,91.0,105.0,109.0,96.0,100.0,82.0,86.0,91.0,100.0,86.0,89.0,77.0,95.0,72.0,76.0,76.0,77.0,83.0,68.0,79.0,84.0,76.0,88.0,83.0,88.0,86.0,81.0,79.0,84.0,79.0,73.0,81.0,85.0,101.0,80.0,72.0,72.0,65.0,88.0,72.0,74.0,62.0,77.0,70.0,87.0,88.0,48.0,71.0,44.0,54.0,38.0,41.0,51.0,39.0,46.0,36.0,31.0,23.0,12.0,13.0,16.0,20.0,27.0 A83012,51.0,75.0,81.0,64.0,79.0,67.0,73.0,65.0,88.0,90.0,83.0,100.0,103.0,114.0,99.0,94.0,84.0,99.0,99.0,77.0,93.0,95.0,80.0,76.0,82.0,91.0,80.0,80.0,109.0,88.0,90.0,92.0,87.0,99.0,114.0,86.0,103.0,115.0,118.0,104.0,103.0,118.0,117.0,107.0,112.0,115.0,113.0,97.0,77.0,83.0,84.0,88.0,110.0,120.0,109.0,117.0,120.0,109.0,115.0,117.0,110.0,94.0,120.0,126.0,100.0,108.0,109.0,85.0,103.0,86.0,89.0,76.0,77.0,72.0,82.0,66.0,71.0,72.0,73.0,68.0,59.0,55.0,47.0,30.0,51.0,29.0,44.0,32.0,22.0,25.0,23.0,21.0,12.0,11.0,7.0,20.0 A83013,55.0,54.0,71.0,82.0,75.0,75.0,75.0,88.0,81.0,84.0,87.0,79.0,101.0,98.0,110.0,73.0,89.0,76.0,74.0,71.0,62.0,62.0,78.0,70.0,78.0,85.0,101.0,106.0,82.0,101.0,100.0,96.0,103.0,111.0,110.0,119.0,131.0,111.0,123.0,105.0,73.0,97.0,99.0,106.0,67.0,99.0,70.0,78.0,93.0,74.0,55.0,74.0,76.0,80.0,74.0,69.0,85.0,82.0,73.0,85.0,82.0,79.0,71.0,84.0,71.0,56.0,66.0,66.0,76.0,64.0,70.0,54.0,50.0,56.0,50.0,49.0,50.0,44.0,50.0,39.0,37.0,24.0,29.0,21.0,24.0,27.0,29.0,25.0,23.0,10.0,14.0,9.0,11.0,3.0,5.0,15.0 A83014,25.0,18.0,21.0,22.0,20.0,16.0,23.0,28.0,40.0,30.0,28.0,35.0,35.0,33.0,31.0,37.0,25.0,34.0,33.0,24.0,31.0,26.0,30.0,24.0,36.0,39.0,34.0,26.0,48.0,36.0,30.0,29.0,34.0,41.0,44.0,36.0,40.0,37.0,36.0,45.0,45.0,44.0,35.0,41.0,32.0,49.0,31.0,43.0,35.0,25.0,41.0,50.0,40.0,42.0,51.0,37.0,45.0,51.0,43.0,50.0,48.0,44.0,45.0,40.0,47.0,40.0,30.0,37.0,41.0,45.0,36.0,34.0,36.0,29.0,30.0,35.0,34.0,48.0,35.0,32.0,31.0,22.0,17.0,13.0,17.0,21.0,19.0,16.0,10.0,12.0,7.0,9.0,4.0,1.0,5.0,6.0 A83015,36.0,46.0,40.0,50.0,44.0,45.0,37.0,46.0,42.0,44.0,42.0,49.0,58.0,57.0,49.0,46.0,46.0,59.0,59.0,53.0,46.0,53.0,44.0,38.0,66.0,44.0,45.0,64.0,50.0,48.0,61.0,62.0,60.0,58.0,73.0,51.0,51.0,53.0,56.0,61.0,63.0,42.0,61.0,64.0,55.0,57.0,40.0,47.0,52.0,58.0,65.0,60.0,66.0,70.0,56.0,67.0,70.0,90.0,83.0,97.0,85.0,66.0,66.0,83.0,64.0,56.0,66.0,63.0,51.0,67.0,60.0,50.0,64.0,54.0,54.0,65.0,59.0,69.0,61.0,48.0,45.0,38.0,37.0,43.0,38.0,30.0,26.0,25.0,20.0,14.0,22.0,16.0,15.0,8.0,17.0,12.0 A83016,35.0,58.0,41.0,45.0,55.0,38.0,55.0,44.0,49.0,62.0,58.0,50.0,59.0,64.0,61.0,68.0,56.0,67.0,62.0,56.0,56.0,48.0,55.0,48.0,52.0,53.0,52.0,54.0,82.0,70.0,60.0,71.0,73.0,58.0,65.0,55.0,84.0,71.0,70.0,81.0,68.0,65.0,53.0,65.0,58.0,59.0,54.0,64.0,50.0,70.0,48.0,64.0,80.0,79.0,93.0,80.0,91.0,72.0,89.0,85.0,82.0,92.0,75.0,64.0,80.0,78.0,88.0,69.0,71.0,72.0,68.0,71.0,63.0,70.0,53.0,58.0,56.0,53.0,65.0,58.0,36.0,48.0,40.0,25.0,21.0,23.0,20.0,24.0,22.0,20.0,14.0,14.0,10.0,6.0,8.0,6.0 A83018,46.0,48.0,57.0,65.0,47.0,56.0,65.0,75.0,81.0,98.0,82.0,91.0,87.0,100.0,104.0,89.0,101.0,107.0,98.0,96.0,66.0,76.0,78.0,79.0,71.0,97.0,84.0,80.0,91.0,98.0,78.0,74.0,95.0,99.0,115.0,96.0,105.0,96.0,96.0,115.0,97.0,88.0,105.0,98.0,106.0,107.0,117.0,84.0,96.0,104.0,106.0,118.0,116.0,137.0,128.0,133.0,124.0,120.0,111.0,138.0,135.0,133.0,110.0,146.0,114.0,118.0,130.0,112.0,110.0,101.0,97.0,100.0,93.0,109.0,99.0,94.0,104.0,93.0,98.0,73.0,71.0,69.0,65.0,51.0,53.0,39.0,55.0,53.0,30.0,37.0,32.0,16.0,7.0,11.0,9.0,30.0 A83020,49.0,49.0,59.0,67.0,65.0,60.0,61.0,72.0,59.0,63.0,69.0,84.0,67.0,89.0,76.0,70.0,94.0,73.0,60.0,74.0,61.0,62.0,58.0,52.0,74.0,55.0,60.0,68.0,73.0,59.0,73.0,81.0,71.0,74.0,109.0,88.0,91.0,86.0,64.0,95.0,76.0,77.0,99.0,84.0,80.0,86.0,87.0,65.0,84.0,67.0,88.0,97.0,87.0,93.0,93.0,86.0,97.0,87.0,106.0,93.0,117.0,96.0,98.0,109.0,83.0,86.0,100.0,96.0,94.0,93.0,82.0,66.0,82.0,89.0,85.0,80.0,82.0,78.0,83.0,64.0,54.0,69.0,48.0,44.0,40.0,31.0,28.0,28.0,32.0,23.0,26.0,17.0,14.0,7.0,12.0,22.0 A83021,61.0,75.0,77.0,72.0,60.0,86.0,79.0,80.0,82.0,81.0,89.0,106.0,113.0,105.0,106.0,89.0,105.0,101.0,78.0,101.0,87.0,109.0,84.0,83.0,102.0,85.0,93.0,81.0,106.0,94.0,77.0,102.0,106.0,121.0,101.0,113.0,119.0,101.0,113.0,109.0,107.0,106.0,99.0,99.0,103.0,103.0,97.0,81.0,73.0,83.0,95.0,86.0,113.0,98.0,128.0,117.0,112.0,105.0,117.0,112.0,106.0,122.0,110.0,103.0,110.0,92.0,88.0,97.0,97.0,95.0,83.0,77.0,99.0,82.0,81.0,88.0,89.0,88.0,90.0,48.0,69.0,63.0,39.0,42.0,41.0,30.0,35.0,22.0,24.0,26.0,16.0,13.0,9.0,8.0,7.0,10.0 A83022,98.0,111.0,127.0,112.0,135.0,124.0,120.0,144.0,152.0,164.0,166.0,138.0,141.0,151.0,151.0,146.0,155.0,156.0,140.0,148.0,126.0,114.0,134.0,137.0,140.0,148.0,137.0,127.0,133.0,153.0,147.0,189.0,178.0,189.0,179.0,184.0,195.0,195.0,170.0,192.0,181.0,173.0,168.0,179.0,161.0,191.0,155.0,157.0,167.0,149.0,141.0,155.0,190.0,187.0,174.0,193.0,234.0,178.0,219.0,183.0,200.0,207.0,194.0,219.0,193.0,160.0,175.0,173.0,168.0,150.0,168.0,142.0,160.0,137.0,141.0,138.0,129.0,124.0,151.0,93.0,95.0,93.0,83.0,74.0,68.0,63.0,51.0,65.0,46.0,36.0,32.0,16.0,20.0,14.0,9.0,16.0 A83023,54.0,61.0,59.0,56.0,49.0,65.0,69.0,65.0,69.0,58.0,73.0,65.0,77.0,74.0,74.0,74.0,77.0,89.0,65.0,66.0,61.0,62.0,68.0,52.0,73.0,57.0,79.0,87.0,75.0,91.0,86.0,121.0,74.0,97.0,102.0,88.0,84.0,94.0,97.0,83.0,84.0,84.0,83.0,86.0,87.0,71.0,59.0,69.0,63.0,64.0,73.0,75.0,83.0,73.0,81.0,92.0,85.0,82.0,93.0,85.0,101.0,73.0,75.0,57.0,80.0,76.0,66.0,79.0,65.0,63.0,42.0,62.0,66.0,72.0,47.0,60.0,53.0,72.0,66.0,42.0,55.0,31.0,39.0,23.0,27.0,25.0,23.0,24.0,16.0,23.0,9.0,10.0,7.0,4.0,8.0,5.0 A83024,18.0,22.0,21.0,27.0,22.0,28.0,22.0,25.0,20.0,22.0,30.0,39.0,25.0,31.0,30.0,34.0,32.0,26.0,30.0,30.0,25.0,21.0,23.0,26.0,24.0,28.0,33.0,23.0,27.0,31.0,32.0,34.0,28.0,27.0,29.0,38.0,25.0,45.0,33.0,23.0,30.0,29.0,29.0,27.0,41.0,41.0,34.0,40.0,30.0,31.0,31.0,33.0,32.0,46.0,41.0,39.0,48.0,40.0,40.0,27.0,57.0,41.0,40.0,42.0,30.0,47.0,54.0,40.0,40.0,37.0,32.0,29.0,37.0,29.0,29.0,21.0,36.0,32.0,48.0,29.0,24.0,27.0,17.0,16.0,19.0,13.0,16.0,16.0,17.0,10.0,11.0,7.0,10.0,6.0,2.0,7.0 A83025,52.0,62.0,52.0,60.0,63.0,57.0,53.0,77.0,78.0,60.0,80.0,71.0,75.0,86.0,87.0,78.0,80.0,86.0,71.0,72.0,83.0,66.0,80.0,81.0,65.0,67.0,83.0,73.0,93.0,92.0,89.0,86.0,93.0,80.0,85.0,90.0,95.0,93.0,92.0,86.0,76.0,76.0,80.0,78.0,81.0,92.0,73.0,68.0,87.0,70.0,88.0,72.0,87.0,108.0,99.0,97.0,98.0,104.0,115.0,121.0,116.0,120.0,108.0,101.0,96.0,80.0,88.0,100.0,75.0,75.0,78.0,60.0,69.0,65.0,61.0,75.0,75.0,76.0,75.0,39.0,49.0,41.0,35.0,22.0,34.0,23.0,25.0,27.0,25.0,16.0,21.0,11.0,10.0,12.0,7.0,17.0 A83026,35.0,50.0,52.0,50.0,47.0,59.0,61.0,54.0,55.0,71.0,74.0,43.0,66.0,62.0,61.0,54.0,55.0,54.0,45.0,54.0,46.0,46.0,58.0,50.0,56.0,56.0,61.0,73.0,65.0,83.0,74.0,54.0,82.0,68.0,89.0,85.0,75.0,89.0,78.0,76.0,66.0,90.0,73.0,78.0,64.0,76.0,79.0,54.0,67.0,68.0,53.0,61.0,66.0,79.0,83.0,81.0,76.0,71.0,81.0,89.0,77.0,74.0,64.0,80.0,69.0,65.0,61.0,48.0,54.0,54.0,62.0,42.0,59.0,56.0,57.0,45.0,52.0,53.0,65.0,37.0,36.0,35.0,26.0,32.0,19.0,20.0,24.0,15.0,17.0,8.0,15.0,2.0,7.0,7.0,2.0,7.0 A83027,36.0,36.0,41.0,45.0,40.0,39.0,35.0,37.0,26.0,38.0,36.0,44.0,33.0,42.0,52.0,36.0,42.0,41.0,44.0,39.0,22.0,44.0,43.0,31.0,52.0,48.0,40.0,73.0,50.0,61.0,77.0,67.0,73.0,68.0,64.0,58.0,43.0,64.0,53.0,41.0,57.0,44.0,45.0,47.0,43.0,45.0,55.0,44.0,38.0,50.0,48.0,55.0,55.0,47.0,58.0,60.0,63.0,56.0,66.0,49.0,62.0,64.0,58.0,53.0,53.0,44.0,51.0,39.0,40.0,41.0,31.0,44.0,31.0,46.0,36.0,33.0,25.0,36.0,33.0,28.0,27.0,18.0,27.0,16.0,20.0,17.0,15.0,18.0,6.0,7.0,7.0,4.0,1.0,1.0,3.0,4.0 A83028,27.0,34.0,30.0,38.0,36.0,34.0,44.0,38.0,33.0,44.0,51.0,43.0,46.0,34.0,42.0,47.0,51.0,49.0,45.0,40.0,48.0,29.0,39.0,50.0,45.0,56.0,47.0,51.0,58.0,44.0,58.0,54.0,42.0,80.0,50.0,57.0,56.0,67.0,59.0,50.0,57.0,53.0,60.0,52.0,55.0,56.0,65.0,44.0,57.0,59.0,56.0,52.0,54.0,69.0,83.0,76.0,94.0,76.0,84.0,73.0,71.0,97.0,79.0,80.0,71.0,76.0,67.0,74.0,74.0,63.0,52.0,72.0,67.0,53.0,60.0,54.0,46.0,60.0,56.0,47.0,48.0,47.0,46.0,23.0,27.0,25.0,21.0,21.0,23.0,15.0,11.0,8.0,10.0,9.0,4.0,12.0 A83029,23.0,18.0,15.0,17.0,17.0,16.0,30.0,22.0,22.0,19.0,29.0,29.0,27.0,30.0,32.0,30.0,26.0,24.0,25.0,24.0,12.0,22.0,22.0,15.0,26.0,24.0,27.0,32.0,25.0,31.0,32.0,42.0,33.0,29.0,29.0,31.0,36.0,27.0,31.0,34.0,33.0,24.0,31.0,32.0,26.0,26.0,30.0,28.0,25.0,25.0,43.0,31.0,40.0,48.0,37.0,38.0,43.0,47.0,62.0,41.0,41.0,55.0,36.0,35.0,38.0,36.0,48.0,43.0,30.0,34.0,33.0,40.0,27.0,34.0,37.0,25.0,33.0,39.0,37.0,29.0,23.0,23.0,13.0,15.0,14.0,12.0,18.0,14.0,15.0,13.0,6.0,7.0,2.0,3.0,3.0,7.0 A83030,57.0,57.0,57.0,61.0,71.0,78.0,76.0,82.0,84.0,84.0,101.0,84.0,85.0,82.0,99.0,98.0,87.0,85.0,82.0,77.0,71.0,69.0,93.0,101.0,89.0,102.0,80.0,86.0,77.0,89.0,92.0,124.0,103.0,120.0,116.0,119.0,119.0,108.0,121.0,84.0,109.0,112.0,94.0,101.0,98.0,119.0,109.0,84.0,92.0,83.0,86.0,79.0,91.0,81.0,112.0,91.0,89.0,92.0,90.0,101.0,90.0,94.0,85.0,105.0,78.0,78.0,85.0,75.0,77.0,84.0,70.0,63.0,62.0,63.0,62.0,57.0,51.0,65.0,61.0,44.0,48.0,47.0,34.0,30.0,29.0,20.0,32.0,19.0,28.0,17.0,14.0,12.0,9.0,9.0,7.0,13.0 A83031,47.0,50.0,54.0,54.0,48.0,52.0,58.0,58.0,51.0,53.0,43.0,54.0,50.0,67.0,54.0,78.0,66.0,66.0,65.0,65.0,56.0,59.0,44.0,40.0,49.0,44.0,75.0,52.0,64.0,55.0,63.0,71.0,63.0,52.0,76.0,70.0,69.0,61.0,88.0,64.0,69.0,53.0,78.0,78.0,83.0,81.0,73.0,69.0,61.0,68.0,58.0,77.0,75.0,90.0,85.0,94.0,92.0,79.0,93.0,83.0,87.0,95.0,77.0,106.0,88.0,77.0,74.0,82.0,73.0,74.0,66.0,79.0,70.0,72.0,66.0,64.0,76.0,71.0,76.0,68.0,50.0,53.0,43.0,37.0,44.0,39.0,41.0,38.0,23.0,34.0,29.0,16.0,16.0,15.0,5.0,28.0 A83032,6.0,12.0,5.0,8.0,5.0,9.0,9.0,12.0,5.0,9.0,7.0,15.0,11.0,14.0,16.0,15.0,17.0,14.0,21.0,5.0,19.0,12.0,11.0,11.0,9.0,9.0,10.0,14.0,11.0,12.0,14.0,11.0,15.0,7.0,17.0,16.0,11.0,14.0,13.0,10.0,13.0,8.0,8.0,17.0,9.0,16.0,17.0,9.0,15.0,12.0,12.0,21.0,18.0,27.0,21.0,26.0,25.0,24.0,26.0,24.0,23.0,15.0,23.0,18.0,29.0,20.0,19.0,22.0,18.0,20.0,10.0,28.0,24.0,19.0,23.0,12.0,15.0,22.0,19.0,14.0,15.0,11.0,13.0,12.0,9.0,11.0,12.0,11.0,4.0,6.0,3.0,4.0,5.0,5.0,2.0,9.0 A83033,47.0,57.0,47.0,50.0,48.0,52.0,65.0,45.0,41.0,57.0,53.0,56.0,59.0,54.0,48.0,60.0,42.0,64.0,45.0,31.0,50.0,46.0,53.0,47.0,51.0,53.0,60.0,75.0,71.0,69.0,79.0,63.0,76.0,91.0,60.0,76.0,84.0,70.0,56.0,70.0,70.0,63.0,50.0,44.0,62.0,66.0,47.0,52.0,47.0,66.0,68.0,70.0,46.0,75.0,78.0,71.0,66.0,72.0,80.0,75.0,68.0,73.0,83.0,54.0,52.0,64.0,50.0,67.0,49.0,51.0,64.0,59.0,44.0,55.0,52.0,53.0,49.0,69.0,52.0,43.0,53.0,43.0,26.0,29.0,28.0,27.0,24.0,26.0,20.0,15.0,10.0,9.0,10.0,5.0,7.0,8.0 A83034,57.0,47.0,55.0,56.0,68.0,74.0,73.0,78.0,64.0,61.0,64.0,65.0,65.0,69.0,80.0,78.0,76.0,83.0,59.0,66.0,59.0,56.0,48.0,55.0,44.0,63.0,59.0,71.0,77.0,76.0,79.0,85.0,70.0,86.0,88.0,83.0,85.0,82.0,75.0,103.0,71.0,94.0,73.0,99.0,73.0,79.0,51.0,71.0,64.0,69.0,53.0,78.0,67.0,68.0,85.0,71.0,79.0,77.0,68.0,63.0,82.0,54.0,53.0,66.0,69.0,60.0,67.0,65.0,56.0,59.0,50.0,57.0,53.0,47.0,55.0,59.0,44.0,40.0,41.0,48.0,46.0,32.0,36.0,22.0,32.0,30.0,24.0,21.0,17.0,21.0,20.0,9.0,18.0,10.0,6.0,21.0 A83035,16.0,28.0,14.0,20.0,13.0,29.0,25.0,23.0,23.0,27.0,35.0,24.0,27.0,23.0,33.0,33.0,40.0,35.0,39.0,26.0,23.0,26.0,18.0,24.0,26.0,23.0,19.0,32.0,26.0,28.0,24.0,20.0,22.0,25.0,32.0,25.0,37.0,40.0,31.0,40.0,27.0,28.0,36.0,37.0,36.0,38.0,40.0,35.0,34.0,41.0,49.0,65.0,65.0,59.0,60.0,58.0,59.0,76.0,71.0,79.0,79.0,69.0,64.0,58.0,62.0,64.0,62.0,68.0,65.0,59.0,69.0,48.0,63.0,60.0,55.0,48.0,49.0,65.0,56.0,31.0,47.0,44.0,35.0,24.0,22.0,19.0,19.0,20.0,17.0,15.0,17.0,8.0,10.0,12.0,7.0,10.0 A83036,24.0,23.0,29.0,38.0,25.0,33.0,47.0,45.0,67.0,45.0,58.0,48.0,67.0,57.0,57.0,69.0,64.0,62.0,51.0,48.0,42.0,26.0,40.0,39.0,38.0,44.0,40.0,41.0,42.0,42.0,32.0,37.0,60.0,49.0,46.0,47.0,57.0,54.0,56.0,71.0,70.0,66.0,66.0,67.0,72.0,63.0,69.0,61.0,63.0,55.0,71.0,54.0,64.0,77.0,72.0,83.0,65.0,68.0,52.0,87.0,67.0,72.0,80.0,72.0,73.0,80.0,56.0,88.0,72.0,95.0,84.0,74.0,95.0,78.0,76.0,94.0,90.0,97.0,91.0,66.0,65.0,69.0,55.0,41.0,34.0,34.0,40.0,24.0,37.0,24.0,11.0,24.0,14.0,9.0,9.0,19.0 A83037,40.0,55.0,49.0,43.0,46.0,57.0,64.0,74.0,60.0,56.0,55.0,73.0,73.0,61.0,87.0,75.0,67.0,74.0,64.0,53.0,69.0,70.0,53.0,40.0,70.0,61.0,79.0,62.0,71.0,63.0,64.0,58.0,77.0,87.0,66.0,82.0,79.0,72.0,76.0,78.0,77.0,64.0,60.0,93.0,72.0,60.0,89.0,81.0,67.0,79.0,75.0,65.0,83.0,88.0,96.0,107.0,103.0,119.0,118.0,120.0,118.0,100.0,94.0,105.0,105.0,99.0,99.0,105.0,82.0,68.0,90.0,88.0,66.0,74.0,82.0,90.0,77.0,79.0,100.0,61.0,59.0,60.0,50.0,61.0,44.0,28.0,47.0,40.0,38.0,29.0,21.0,21.0,14.0,8.0,9.0,24.0 A83038,29.0,30.0,24.0,25.0,30.0,23.0,27.0,36.0,36.0,36.0,36.0,41.0,36.0,41.0,31.0,29.0,40.0,53.0,29.0,35.0,27.0,35.0,28.0,21.0,28.0,31.0,34.0,38.0,35.0,47.0,42.0,31.0,48.0,40.0,46.0,46.0,50.0,51.0,29.0,56.0,36.0,42.0,48.0,39.0,57.0,52.0,47.0,31.0,46.0,38.0,42.0,46.0,46.0,46.0,38.0,43.0,59.0,53.0,39.0,54.0,47.0,50.0,48.0,48.0,36.0,39.0,53.0,35.0,27.0,36.0,30.0,34.0,25.0,31.0,25.0,32.0,29.0,33.0,16.0,26.0,23.0,21.0,17.0,17.0,12.0,20.0,16.0,8.0,16.0,9.0,8.0,4.0,4.0,5.0,4.0,5.0 A83040,59.0,61.0,57.0,65.0,69.0,59.0,62.0,65.0,69.0,79.0,66.0,64.0,73.0,82.0,70.0,72.0,68.0,87.0,70.0,67.0,76.0,70.0,70.0,51.0,65.0,85.0,101.0,84.0,99.0,97.0,99.0,83.0,88.0,88.0,108.0,90.0,82.0,74.0,81.0,88.0,96.0,72.0,77.0,72.0,83.0,90.0,70.0,75.0,62.0,64.0,82.0,73.0,58.0,76.0,75.0,69.0,83.0,72.0,68.0,72.0,82.0,94.0,68.0,88.0,76.0,72.0,68.0,69.0,63.0,68.0,56.0,65.0,45.0,51.0,46.0,41.0,48.0,63.0,48.0,40.0,32.0,40.0,16.0,23.0,33.0,37.0,23.0,27.0,14.0,15.0,17.0,6.0,9.0,7.0,3.0,10.0 A83041,33.0,34.0,24.0,39.0,23.0,30.0,43.0,41.0,37.0,30.0,44.0,42.0,33.0,38.0,40.0,42.0,51.0,36.0,41.0,38.0,32.0,38.0,43.0,25.0,34.0,45.0,35.0,50.0,39.0,36.0,51.0,39.0,49.0,40.0,58.0,43.0,53.0,64.0,50.0,41.0,61.0,52.0,45.0,51.0,48.0,30.0,45.0,34.0,43.0,35.0,42.0,48.0,39.0,56.0,55.0,53.0,61.0,46.0,51.0,70.0,57.0,56.0,60.0,55.0,42.0,38.0,45.0,56.0,49.0,44.0,45.0,55.0,38.0,33.0,35.0,38.0,32.0,43.0,38.0,28.0,33.0,25.0,30.0,15.0,15.0,16.0,21.0,22.0,14.0,15.0,11.0,11.0,5.0,6.0,7.0,13.0 A83043,3.0,6.0,7.0,11.0,4.0,8.0,6.0,7.0,8.0,10.0,13.0,10.0,8.0,12.0,12.0,15.0,8.0,16.0,13.0,7.0,7.0,11.0,9.0,9.0,10.0,6.0,10.0,10.0,5.0,11.0,6.0,10.0,10.0,10.0,7.0,11.0,9.0,14.0,14.0,9.0,9.0,19.0,20.0,4.0,10.0,17.0,14.0,14.0,12.0,7.0,17.0,18.0,15.0,16.0,21.0,21.0,26.0,24.0,20.0,25.0,32.0,37.0,23.0,23.0,29.0,21.0,25.0,26.0,25.0,13.0,31.0,31.0,29.0,23.0,35.0,21.0,28.0,20.0,20.0,19.0,19.0,15.0,8.0,11.0,10.0,4.0,12.0,7.0,9.0,6.0,,5.0,3.0,2.0,,2.0 A83044,51.0,35.0,47.0,36.0,48.0,33.0,37.0,45.0,47.0,47.0,33.0,38.0,46.0,53.0,43.0,45.0,42.0,46.0,49.0,37.0,43.0,46.0,42.0,42.0,41.0,40.0,55.0,59.0,54.0,53.0,53.0,56.0,77.0,54.0,52.0,61.0,64.0,81.0,40.0,60.0,55.0,47.0,42.0,56.0,55.0,48.0,42.0,39.0,47.0,38.0,44.0,49.0,47.0,60.0,73.0,52.0,60.0,57.0,66.0,65.0,70.0,82.0,58.0,68.0,55.0,62.0,62.0,48.0,53.0,51.0,45.0,34.0,34.0,41.0,33.0,49.0,34.0,32.0,44.0,35.0,32.0,33.0,26.0,26.0,26.0,15.0,23.0,18.0,14.0,16.0,17.0,7.0,5.0,6.0,3.0,10.0 A83045,62.0,71.0,58.0,71.0,70.0,71.0,69.0,76.0,94.0,72.0,74.0,89.0,82.0,101.0,72.0,87.0,74.0,71.0,63.0,85.0,70.0,80.0,88.0,76.0,70.0,69.0,87.0,89.0,85.0,85.0,94.0,93.0,104.0,118.0,98.0,97.0,86.0,93.0,76.0,113.0,80.0,83.0,78.0,70.0,94.0,92.0,77.0,84.0,69.0,83.0,87.0,101.0,115.0,107.0,106.0,107.0,129.0,115.0,125.0,115.0,114.0,111.0,113.0,113.0,114.0,83.0,97.0,107.0,68.0,94.0,83.0,93.0,88.0,77.0,90.0,89.0,79.0,85.0,89.0,68.0,63.0,64.0,46.0,48.0,27.0,29.0,37.0,18.0,37.0,22.0,17.0,14.0,10.0,9.0,4.0,13.0 A83046,34.0,25.0,42.0,45.0,39.0,43.0,45.0,47.0,35.0,37.0,52.0,47.0,57.0,48.0,42.0,60.0,58.0,67.0,48.0,44.0,37.0,57.0,44.0,42.0,38.0,43.0,46.0,46.0,53.0,53.0,56.0,45.0,61.0,44.0,53.0,57.0,55.0,63.0,49.0,52.0,61.0,50.0,46.0,50.0,70.0,70.0,53.0,61.0,55.0,55.0,52.0,72.0,74.0,104.0,94.0,72.0,92.0,103.0,89.0,103.0,108.0,100.0,93.0,111.0,90.0,98.0,111.0,93.0,87.0,81.0,84.0,85.0,87.0,68.0,85.0,77.0,81.0,88.0,64.0,53.0,59.0,45.0,57.0,53.0,49.0,59.0,35.0,33.0,25.0,27.0,29.0,21.0,18.0,12.0,14.0,37.0 A83047,55.0,64.0,80.0,82.0,81.0,86.0,69.0,79.0,77.0,79.0,92.0,98.0,93.0,79.0,89.0,80.0,72.0,84.0,93.0,78.0,79.0,82.0,72.0,71.0,86.0,114.0,104.0,90.0,113.0,99.0,112.0,112.0,122.0,108.0,138.0,98.0,115.0,109.0,99.0,97.0,94.0,109.0,85.0,91.0,95.0,96.0,94.0,72.0,83.0,81.0,88.0,90.0,96.0,106.0,114.0,93.0,83.0,102.0,116.0,90.0,96.0,95.0,106.0,87.0,97.0,72.0,104.0,86.0,73.0,82.0,58.0,65.0,70.0,69.0,77.0,55.0,62.0,64.0,99.0,45.0,66.0,48.0,42.0,37.0,26.0,23.0,35.0,31.0,23.0,18.0,26.0,16.0,14.0,9.0,6.0,24.0 A83048,12.0,29.0,21.0,19.0,23.0,24.0,18.0,34.0,38.0,42.0,33.0,31.0,34.0,31.0,37.0,41.0,30.0,33.0,35.0,23.0,35.0,29.0,25.0,29.0,36.0,29.0,29.0,31.0,27.0,28.0,27.0,32.0,20.0,21.0,39.0,26.0,30.0,33.0,28.0,42.0,38.0,43.0,36.0,46.0,23.0,36.0,57.0,49.0,45.0,30.0,48.0,57.0,40.0,41.0,49.0,49.0,43.0,52.0,63.0,51.0,49.0,54.0,36.0,59.0,47.0,45.0,48.0,42.0,46.0,39.0,31.0,50.0,38.0,42.0,30.0,37.0,32.0,56.0,44.0,39.0,36.0,26.0,31.0,15.0,23.0,16.0,23.0,13.0,13.0,12.0,8.0,5.0,2.0,3.0,5.0,3.0 A83049,90.0,71.0,66.0,78.0,93.0,85.0,76.0,88.0,93.0,92.0,94.0,104.0,81.0,92.0,98.0,73.0,101.0,93.0,99.0,84.0,75.0,78.0,62.0,80.0,97.0,89.0,103.0,90.0,125.0,88.0,106.0,98.0,123.0,119.0,135.0,135.0,119.0,115.0,105.0,97.0,103.0,104.0,119.0,123.0,126.0,104.0,100.0,103.0,94.0,108.0,109.0,95.0,123.0,131.0,115.0,114.0,127.0,116.0,154.0,131.0,118.0,118.0,113.0,117.0,129.0,113.0,105.0,93.0,97.0,88.0,84.0,70.0,67.0,84.0,81.0,89.0,68.0,78.0,62.0,54.0,56.0,51.0,44.0,30.0,42.0,40.0,31.0,23.0,20.0,20.0,16.0,15.0,10.0,5.0,7.0,10.0 A83050,29.0,45.0,41.0,68.0,59.0,51.0,55.0,62.0,66.0,70.0,66.0,65.0,62.0,70.0,68.0,61.0,64.0,89.0,74.0,58.0,64.0,61.0,64.0,60.0,52.0,58.0,87.0,85.0,63.0,70.0,85.0,66.0,76.0,74.0,87.0,67.0,84.0,80.0,97.0,97.0,63.0,89.0,80.0,82.0,76.0,77.0,88.0,72.0,73.0,61.0,69.0,81.0,92.0,106.0,112.0,107.0,114.0,83.0,103.0,104.0,107.0,104.0,108.0,99.0,100.0,94.0,91.0,86.0,88.0,77.0,70.0,67.0,66.0,66.0,54.0,61.0,88.0,69.0,84.0,59.0,46.0,46.0,38.0,30.0,33.0,33.0,28.0,33.0,25.0,19.0,15.0,19.0,9.0,11.0,10.0,18.0 A83051,38.0,48.0,58.0,65.0,60.0,51.0,66.0,58.0,56.0,81.0,58.0,59.0,71.0,72.0,71.0,58.0,63.0,56.0,59.0,61.0,56.0,43.0,39.0,51.0,59.0,56.0,64.0,62.0,66.0,59.0,75.0,75.0,77.0,74.0,87.0,72.0,66.0,87.0,64.0,73.0,67.0,102.0,93.0,66.0,73.0,72.0,76.0,73.0,66.0,65.0,51.0,78.0,89.0,94.0,81.0,66.0,69.0,81.0,73.0,88.0,71.0,85.0,81.0,76.0,84.0,69.0,100.0,73.0,62.0,61.0,77.0,60.0,71.0,44.0,64.0,66.0,49.0,42.0,54.0,33.0,59.0,43.0,32.0,39.0,26.0,21.0,30.0,22.0,27.0,16.0,24.0,17.0,15.0,7.0,3.0,18.0 A83052,32.0,47.0,36.0,42.0,26.0,46.0,33.0,42.0,41.0,56.0,43.0,37.0,48.0,49.0,52.0,51.0,43.0,39.0,63.0,46.0,46.0,39.0,38.0,39.0,45.0,47.0,43.0,41.0,55.0,47.0,37.0,68.0,67.0,63.0,55.0,41.0,52.0,56.0,47.0,71.0,49.0,62.0,52.0,59.0,47.0,44.0,43.0,52.0,46.0,45.0,66.0,44.0,64.0,55.0,57.0,63.0,54.0,68.0,59.0,63.0,59.0,70.0,58.0,61.0,54.0,56.0,51.0,54.0,66.0,53.0,62.0,51.0,56.0,63.0,51.0,67.0,56.0,47.0,51.0,44.0,44.0,28.0,26.0,25.0,27.0,17.0,15.0,20.0,11.0,14.0,6.0,10.0,3.0,6.0,4.0,12.0 A83054,59.0,66.0,64.0,79.0,84.0,92.0,78.0,75.0,79.0,94.0,92.0,88.0,97.0,90.0,97.0,109.0,102.0,107.0,96.0,58.0,85.0,76.0,67.0,67.0,72.0,67.0,66.0,71.0,78.0,98.0,94.0,91.0,88.0,119.0,112.0,105.0,96.0,105.0,99.0,100.0,107.0,105.0,102.0,95.0,116.0,100.0,118.0,97.0,101.0,119.0,89.0,119.0,122.0,131.0,112.0,129.0,129.0,150.0,148.0,139.0,149.0,127.0,127.0,120.0,123.0,123.0,122.0,102.0,103.0,115.0,100.0,96.0,96.0,65.0,93.0,90.0,106.0,108.0,100.0,80.0,77.0,67.0,52.0,46.0,48.0,44.0,46.0,27.0,20.0,22.0,26.0,18.0,12.0,9.0,8.0,24.0 A83055,19.0,22.0,17.0,18.0,19.0,17.0,28.0,30.0,27.0,33.0,26.0,30.0,25.0,31.0,27.0,35.0,25.0,27.0,29.0,21.0,24.0,25.0,17.0,21.0,16.0,22.0,32.0,20.0,30.0,21.0,31.0,34.0,32.0,37.0,24.0,28.0,33.0,33.0,50.0,38.0,31.0,37.0,38.0,45.0,27.0,39.0,26.0,27.0,34.0,26.0,30.0,32.0,31.0,41.0,35.0,34.0,30.0,33.0,37.0,22.0,30.0,38.0,35.0,35.0,36.0,32.0,21.0,43.0,36.0,38.0,24.0,37.0,33.0,39.0,33.0,52.0,39.0,45.0,43.0,28.0,28.0,26.0,26.0,18.0,18.0,19.0,14.0,20.0,14.0,9.0,8.0,2.0,8.0,2.0,5.0,5.0 A83057,66.0,79.0,78.0,90.0,90.0,94.0,99.0,108.0,101.0,91.0,111.0,105.0,116.0,95.0,111.0,104.0,116.0,113.0,110.0,85.0,90.0,82.0,86.0,81.0,80.0,93.0,104.0,126.0,109.0,101.0,93.0,127.0,153.0,169.0,121.0,116.0,118.0,134.0,131.0,116.0,113.0,94.0,116.0,98.0,96.0,123.0,90.0,100.0,89.0,99.0,107.0,103.0,117.0,149.0,141.0,135.0,146.0,140.0,144.0,129.0,119.0,131.0,138.0,139.0,129.0,107.0,115.0,107.0,104.0,65.0,100.0,102.0,82.0,100.0,82.0,86.0,67.0,92.0,80.0,73.0,72.0,71.0,60.0,52.0,56.0,34.0,40.0,37.0,23.0,29.0,28.0,17.0,16.0,11.0,10.0,25.0 A83060,8.0,10.0,14.0,8.0,15.0,17.0,4.0,13.0,17.0,9.0,9.0,18.0,14.0,14.0,13.0,16.0,13.0,9.0,8.0,12.0,12.0,14.0,9.0,9.0,7.0,7.0,11.0,10.0,16.0,11.0,10.0,12.0,13.0,17.0,16.0,16.0,15.0,17.0,23.0,10.0,14.0,11.0,16.0,13.0,16.0,14.0,15.0,14.0,13.0,16.0,13.0,18.0,22.0,32.0,35.0,33.0,20.0,26.0,28.0,42.0,41.0,29.0,20.0,30.0,25.0,35.0,23.0,25.0,20.0,21.0,15.0,17.0,19.0,19.0,14.0,18.0,21.0,15.0,16.0,11.0,16.0,15.0,6.0,9.0,9.0,7.0,4.0,5.0,7.0,5.0,2.0,4.0,1.0,1.0,2.0,6.0 A83061,12.0,10.0,9.0,8.0,11.0,4.0,10.0,12.0,19.0,10.0,18.0,21.0,15.0,29.0,15.0,16.0,19.0,21.0,21.0,11.0,21.0,16.0,10.0,25.0,15.0,14.0,11.0,13.0,20.0,19.0,10.0,16.0,18.0,18.0,18.0,17.0,13.0,15.0,15.0,19.0,19.0,21.0,18.0,31.0,16.0,22.0,25.0,19.0,22.0,24.0,21.0,27.0,20.0,28.0,37.0,40.0,28.0,36.0,38.0,36.0,35.0,32.0,31.0,39.0,36.0,35.0,25.0,21.0,30.0,20.0,29.0,29.0,18.0,25.0,27.0,27.0,31.0,29.0,28.0,20.0,23.0,15.0,15.0,14.0,18.0,16.0,9.0,5.0,10.0,6.0,4.0,3.0,,4.0,2.0,12.0 A83066,65.0,70.0,69.0,91.0,66.0,66.0,79.0,62.0,78.0,62.0,76.0,76.0,81.0,94.0,72.0,74.0,82.0,72.0,96.0,61.0,69.0,66.0,52.0,60.0,95.0,74.0,73.0,73.0,85.0,86.0,88.0,95.0,73.0,99.0,81.0,86.0,85.0,71.0,89.0,89.0,93.0,73.0,99.0,82.0,83.0,82.0,73.0,86.0,68.0,73.0,61.0,78.0,80.0,88.0,95.0,65.0,83.0,76.0,84.0,90.0,88.0,73.0,98.0,68.0,55.0,84.0,78.0,65.0,66.0,64.0,42.0,56.0,69.0,53.0,47.0,37.0,57.0,56.0,46.0,40.0,38.0,38.0,33.0,32.0,24.0,24.0,9.0,17.0,10.0,22.0,12.0,6.0,9.0,8.0,8.0,14.0 A83070,24.0,22.0,24.0,21.0,20.0,21.0,22.0,33.0,18.0,32.0,25.0,29.0,31.0,22.0,24.0,39.0,31.0,35.0,18.0,28.0,23.0,20.0,26.0,15.0,21.0,23.0,14.0,27.0,17.0,37.0,28.0,34.0,37.0,42.0,37.0,26.0,41.0,36.0,29.0,34.0,32.0,40.0,38.0,38.0,36.0,29.0,35.0,35.0,31.0,40.0,43.0,45.0,48.0,38.0,45.0,42.0,38.0,51.0,55.0,44.0,62.0,44.0,51.0,36.0,47.0,31.0,50.0,45.0,42.0,43.0,25.0,37.0,43.0,37.0,45.0,33.0,30.0,44.0,37.0,33.0,29.0,28.0,24.0,22.0,12.0,25.0,14.0,21.0,19.0,15.0,13.0,16.0,7.0,7.0,4.0,17.0 A83071,22.0,22.0,16.0,20.0,28.0,24.0,17.0,26.0,32.0,34.0,19.0,26.0,34.0,32.0,28.0,26.0,29.0,21.0,29.0,29.0,36.0,22.0,26.0,17.0,27.0,26.0,30.0,23.0,32.0,25.0,34.0,21.0,36.0,37.0,33.0,30.0,40.0,35.0,28.0,25.0,33.0,31.0,39.0,35.0,45.0,26.0,36.0,32.0,27.0,24.0,24.0,30.0,36.0,33.0,29.0,27.0,46.0,40.0,40.0,35.0,37.0,37.0,29.0,35.0,43.0,31.0,28.0,29.0,22.0,20.0,21.0,28.0,26.0,20.0,18.0,20.0,16.0,18.0,21.0,16.0,9.0,15.0,14.0,6.0,14.0,12.0,8.0,8.0,5.0,7.0,7.0,1.0,2.0,1.0,3.0,7.0 A83072,18.0,12.0,13.0,18.0,11.0,17.0,13.0,25.0,14.0,19.0,18.0,22.0,37.0,21.0,26.0,27.0,15.0,24.0,19.0,15.0,14.0,12.0,16.0,13.0,14.0,17.0,11.0,16.0,10.0,13.0,16.0,17.0,17.0,17.0,22.0,11.0,33.0,24.0,28.0,34.0,26.0,19.0,25.0,36.0,24.0,18.0,18.0,24.0,33.0,26.0,26.0,24.0,23.0,39.0,36.0,32.0,30.0,33.0,32.0,44.0,21.0,31.0,36.0,27.0,31.0,34.0,27.0,19.0,35.0,25.0,25.0,26.0,24.0,30.0,21.0,35.0,39.0,39.0,37.0,28.0,25.0,24.0,20.0,20.0,14.0,16.0,20.0,13.0,12.0,13.0,10.0,7.0,7.0,4.0,6.0,12.0 A83073,22.0,24.0,14.0,28.0,18.0,27.0,19.0,19.0,25.0,26.0,37.0,24.0,25.0,36.0,31.0,29.0,31.0,31.0,25.0,27.0,23.0,21.0,21.0,26.0,28.0,32.0,24.0,27.0,28.0,25.0,36.0,32.0,31.0,31.0,42.0,44.0,29.0,41.0,35.0,35.0,29.0,33.0,28.0,35.0,35.0,22.0,32.0,21.0,30.0,29.0,38.0,25.0,39.0,38.0,31.0,38.0,42.0,36.0,35.0,46.0,44.0,40.0,35.0,43.0,38.0,33.0,30.0,35.0,41.0,28.0,27.0,44.0,26.0,31.0,38.0,33.0,36.0,32.0,41.0,19.0,22.0,18.0,26.0,15.0,15.0,16.0,20.0,16.0,11.0,4.0,10.0,10.0,7.0,5.0,4.0,9.0 A83074,44.0,55.0,71.0,85.0,62.0,57.0,79.0,72.0,62.0,70.0,70.0,80.0,75.0,91.0,81.0,95.0,77.0,82.0,71.0,57.0,69.0,50.0,48.0,55.0,69.0,65.0,63.0,84.0,81.0,81.0,81.0,111.0,79.0,79.0,82.0,91.0,87.0,80.0,90.0,81.0,81.0,84.0,75.0,89.0,88.0,67.0,76.0,61.0,72.0,69.0,52.0,57.0,68.0,67.0,92.0,71.0,90.0,72.0,87.0,70.0,103.0,116.0,85.0,96.0,80.0,83.0,66.0,74.0,80.0,57.0,77.0,54.0,68.0,55.0,56.0,53.0,66.0,49.0,56.0,32.0,41.0,41.0,21.0,25.0,18.0,18.0,23.0,22.0,19.0,16.0,11.0,9.0,14.0,4.0,6.0,8.0 A83075,23.0,38.0,29.0,27.0,43.0,46.0,45.0,32.0,37.0,46.0,41.0,46.0,42.0,51.0,50.0,57.0,46.0,39.0,38.0,49.0,32.0,36.0,37.0,46.0,38.0,42.0,54.0,38.0,50.0,52.0,49.0,56.0,63.0,39.0,46.0,53.0,35.0,53.0,51.0,46.0,58.0,53.0,53.0,53.0,75.0,51.0,53.0,43.0,51.0,56.0,43.0,33.0,38.0,57.0,78.0,50.0,61.0,66.0,59.0,71.0,48.0,73.0,62.0,64.0,54.0,51.0,66.0,60.0,65.0,61.0,40.0,52.0,33.0,32.0,33.0,38.0,34.0,42.0,32.0,21.0,30.0,28.0,21.0,28.0,21.0,15.0,10.0,13.0,25.0,13.0,17.0,8.0,11.0,10.0,4.0,14.0 A83610,10.0,14.0,20.0,24.0,8.0,14.0,18.0,14.0,22.0,27.0,21.0,21.0,24.0,20.0,20.0,27.0,24.0,21.0,13.0,15.0,16.0,18.0,28.0,20.0,22.0,18.0,22.0,24.0,21.0,25.0,16.0,29.0,24.0,23.0,31.0,29.0,25.0,12.0,27.0,19.0,26.0,26.0,22.0,28.0,26.0,25.0,20.0,20.0,14.0,20.0,25.0,23.0,29.0,20.0,33.0,28.0,32.0,14.0,17.0,40.0,28.0,28.0,28.0,19.0,14.0,26.0,18.0,14.0,16.0,28.0,15.0,19.0,15.0,19.0,17.0,18.0,20.0,9.0,12.0,10.0,13.0,10.0,9.0,1.0,6.0,2.0,4.0,3.0,6.0,3.0,3.0,2.0,3.0,,,1.0 A83616,38.0,29.0,40.0,47.0,52.0,43.0,45.0,52.0,60.0,50.0,55.0,58.0,52.0,45.0,45.0,43.0,47.0,39.0,42.0,37.0,56.0,52.0,40.0,45.0,47.0,43.0,50.0,59.0,52.0,59.0,71.0,58.0,62.0,65.0,72.0,59.0,76.0,61.0,59.0,59.0,49.0,49.0,41.0,57.0,51.0,65.0,53.0,40.0,55.0,51.0,52.0,56.0,47.0,47.0,62.0,60.0,59.0,67.0,54.0,47.0,63.0,70.0,50.0,56.0,61.0,47.0,64.0,47.0,40.0,50.0,48.0,45.0,34.0,39.0,30.0,36.0,38.0,38.0,41.0,34.0,27.0,18.0,18.0,19.0,19.0,11.0,13.0,12.0,15.0,12.0,6.0,9.0,2.0,2.0,2.0,1.0 A83617,6.0,10.0,5.0,6.0,18.0,12.0,15.0,9.0,12.0,11.0,11.0,15.0,11.0,11.0,13.0,15.0,14.0,8.0,20.0,20.0,13.0,16.0,9.0,12.0,18.0,19.0,17.0,14.0,16.0,16.0,10.0,15.0,18.0,18.0,20.0,18.0,17.0,16.0,14.0,17.0,17.0,17.0,14.0,13.0,17.0,14.0,13.0,12.0,12.0,17.0,18.0,19.0,14.0,22.0,32.0,18.0,20.0,24.0,25.0,21.0,22.0,14.0,26.0,24.0,14.0,19.0,16.0,20.0,23.0,23.0,15.0,14.0,9.0,15.0,16.0,13.0,16.0,15.0,22.0,6.0,15.0,9.0,7.0,8.0,12.0,5.0,7.0,2.0,8.0,4.0,3.0,6.0,1.0,,2.0,1.0 A83618,40.0,32.0,24.0,44.0,28.0,40.0,28.0,40.0,45.0,41.0,39.0,53.0,44.0,37.0,39.0,31.0,52.0,36.0,43.0,24.0,33.0,31.0,30.0,22.0,31.0,38.0,40.0,41.0,45.0,45.0,39.0,43.0,50.0,56.0,53.0,58.0,61.0,61.0,45.0,53.0,53.0,66.0,56.0,53.0,54.0,57.0,43.0,37.0,50.0,48.0,52.0,44.0,47.0,58.0,51.0,59.0,55.0,46.0,61.0,65.0,69.0,58.0,65.0,68.0,64.0,53.0,50.0,60.0,48.0,49.0,53.0,47.0,47.0,37.0,36.0,41.0,38.0,44.0,42.0,30.0,21.0,34.0,20.0,14.0,17.0,18.0,19.0,13.0,16.0,8.0,9.0,12.0,12.0,2.0,9.0,16.0 A83619,11.0,18.0,17.0,18.0,14.0,24.0,32.0,17.0,12.0,28.0,19.0,17.0,15.0,26.0,26.0,19.0,20.0,20.0,25.0,17.0,20.0,21.0,15.0,15.0,17.0,18.0,17.0,18.0,20.0,32.0,24.0,16.0,27.0,24.0,26.0,17.0,30.0,30.0,20.0,24.0,26.0,27.0,21.0,23.0,28.0,25.0,13.0,16.0,11.0,19.0,19.0,26.0,23.0,16.0,24.0,21.0,24.0,24.0,24.0,29.0,30.0,22.0,20.0,22.0,22.0,24.0,19.0,16.0,18.0,24.0,19.0,15.0,13.0,10.0,13.0,7.0,16.0,14.0,7.0,7.0,19.0,5.0,3.0,4.0,7.0,4.0,8.0,5.0,2.0,3.0,3.0,2.0,1.0,1.0,,3.0 A83622,3.0,4.0,5.0,3.0,5.0,6.0,10.0,7.0,8.0,7.0,17.0,8.0,9.0,16.0,12.0,10.0,10.0,11.0,8.0,10.0,3.0,6.0,8.0,7.0,8.0,6.0,9.0,4.0,10.0,5.0,7.0,4.0,10.0,13.0,10.0,7.0,16.0,11.0,16.0,9.0,7.0,9.0,12.0,10.0,14.0,10.0,12.0,12.0,7.0,11.0,11.0,9.0,10.0,14.0,8.0,13.0,20.0,16.0,10.0,17.0,10.0,10.0,9.0,15.0,12.0,15.0,14.0,13.0,9.0,12.0,10.0,10.0,7.0,16.0,11.0,18.0,8.0,8.0,7.0,8.0,7.0,6.0,8.0,1.0,1.0,6.0,1.0,3.0,4.0,4.0,4.0,1.0,2.0,,1.0,2.0 A83626,11.0,13.0,13.0,7.0,14.0,18.0,10.0,11.0,11.0,13.0,6.0,10.0,10.0,15.0,14.0,14.0,13.0,12.0,11.0,9.0,10.0,14.0,11.0,8.0,7.0,16.0,9.0,10.0,13.0,18.0,15.0,15.0,17.0,12.0,12.0,16.0,7.0,8.0,12.0,18.0,10.0,18.0,14.0,15.0,18.0,9.0,16.0,14.0,10.0,19.0,13.0,13.0,20.0,16.0,19.0,16.0,17.0,15.0,18.0,14.0,13.0,16.0,17.0,13.0,17.0,10.0,20.0,23.0,21.0,19.0,10.0,20.0,10.0,9.0,12.0,5.0,14.0,13.0,13.0,10.0,7.0,,8.0,5.0,2.0,5.0,6.0,5.0,2.0,3.0,3.0,,,1.0,2.0,3.0 A83627,28.0,32.0,34.0,37.0,35.0,44.0,49.0,28.0,50.0,49.0,48.0,46.0,36.0,35.0,52.0,40.0,50.0,42.0,38.0,31.0,45.0,30.0,31.0,34.0,38.0,35.0,42.0,58.0,42.0,49.0,39.0,55.0,54.0,52.0,49.0,49.0,55.0,61.0,46.0,52.0,57.0,51.0,48.0,52.0,39.0,62.0,38.0,39.0,53.0,54.0,30.0,41.0,41.0,46.0,49.0,32.0,45.0,42.0,44.0,37.0,42.0,37.0,40.0,54.0,46.0,32.0,45.0,36.0,31.0,24.0,33.0,33.0,33.0,28.0,17.0,25.0,33.0,21.0,20.0,12.0,15.0,9.0,9.0,13.0,4.0,10.0,7.0,3.0,7.0,9.0,1.0,5.0,,2.0,2.0,2.0 A83634,12.0,12.0,13.0,15.0,19.0,9.0,14.0,24.0,15.0,12.0,17.0,13.0,12.0,19.0,9.0,5.0,16.0,19.0,12.0,8.0,15.0,13.0,8.0,13.0,8.0,17.0,16.0,19.0,18.0,20.0,15.0,9.0,11.0,19.0,22.0,22.0,16.0,18.0,25.0,14.0,13.0,13.0,14.0,17.0,16.0,15.0,16.0,18.0,11.0,14.0,16.0,16.0,11.0,13.0,18.0,23.0,26.0,16.0,15.0,18.0,15.0,20.0,28.0,25.0,21.0,20.0,23.0,21.0,14.0,19.0,16.0,9.0,17.0,9.0,9.0,18.0,7.0,29.0,16.0,10.0,14.0,11.0,11.0,10.0,9.0,5.0,7.0,8.0,4.0,5.0,2.0,5.0,1.0,1.0,2.0,3.0 A83635,20.0,24.0,24.0,35.0,29.0,33.0,27.0,21.0,45.0,26.0,28.0,26.0,31.0,31.0,24.0,33.0,30.0,29.0,31.0,17.0,18.0,19.0,16.0,16.0,29.0,23.0,30.0,37.0,42.0,52.0,40.0,47.0,35.0,40.0,39.0,50.0,34.0,49.0,43.0,42.0,32.0,30.0,32.0,29.0,35.0,26.0,30.0,21.0,27.0,22.0,24.0,22.0,16.0,23.0,30.0,25.0,32.0,26.0,20.0,37.0,26.0,29.0,29.0,17.0,20.0,15.0,19.0,23.0,18.0,24.0,19.0,15.0,20.0,11.0,11.0,11.0,14.0,13.0,16.0,5.0,11.0,17.0,10.0,7.0,7.0,12.0,5.0,8.0,7.0,9.0,5.0,4.0,3.0,5.0,,7.0 A83636,18.0,27.0,24.0,28.0,24.0,31.0,31.0,21.0,31.0,37.0,43.0,31.0,33.0,36.0,37.0,33.0,36.0,39.0,27.0,30.0,30.0,15.0,30.0,25.0,37.0,35.0,25.0,30.0,25.0,24.0,28.0,26.0,50.0,38.0,49.0,42.0,42.0,52.0,40.0,51.0,44.0,33.0,41.0,48.0,47.0,40.0,35.0,29.0,36.0,33.0,39.0,26.0,40.0,39.0,41.0,39.0,57.0,44.0,40.0,40.0,44.0,40.0,44.0,43.0,27.0,40.0,44.0,33.0,50.0,36.0,38.0,24.0,31.0,36.0,23.0,27.0,31.0,21.0,31.0,18.0,19.0,21.0,20.0,15.0,17.0,15.0,15.0,12.0,12.0,10.0,10.0,5.0,8.0,1.0,2.0,11.0 A83637,14.0,19.0,9.0,16.0,12.0,9.0,19.0,18.0,22.0,27.0,28.0,23.0,23.0,25.0,23.0,29.0,24.0,24.0,21.0,15.0,13.0,18.0,16.0,16.0,14.0,19.0,16.0,23.0,25.0,25.0,20.0,26.0,28.0,22.0,20.0,17.0,18.0,29.0,33.0,27.0,27.0,18.0,31.0,16.0,23.0,28.0,23.0,19.0,17.0,13.0,25.0,27.0,23.0,28.0,33.0,29.0,30.0,27.0,27.0,37.0,39.0,40.0,36.0,32.0,34.0,38.0,29.0,25.0,23.0,28.0,18.0,25.0,18.0,20.0,20.0,18.0,20.0,14.0,26.0,21.0,12.0,9.0,14.0,9.0,8.0,8.0,4.0,7.0,12.0,9.0,5.0,2.0,3.0,2.0,,8.0 A83641,26.0,22.0,19.0,22.0,11.0,26.0,36.0,27.0,23.0,29.0,33.0,28.0,37.0,34.0,24.0,36.0,27.0,34.0,28.0,18.0,32.0,24.0,27.0,20.0,23.0,34.0,39.0,31.0,33.0,35.0,37.0,33.0,32.0,36.0,47.0,34.0,53.0,37.0,42.0,38.0,34.0,31.0,32.0,28.0,40.0,29.0,37.0,21.0,20.0,28.0,25.0,19.0,25.0,20.0,29.0,16.0,34.0,20.0,20.0,31.0,29.0,31.0,23.0,16.0,26.0,17.0,19.0,20.0,17.0,16.0,18.0,11.0,15.0,12.0,16.0,15.0,25.0,12.0,11.0,8.0,6.0,11.0,9.0,6.0,5.0,5.0,8.0,6.0,6.0,3.0,4.0,2.0,2.0,2.0,1.0,2.0 A83644,12.0,10.0,8.0,16.0,14.0,19.0,6.0,14.0,23.0,14.0,18.0,20.0,23.0,28.0,17.0,21.0,17.0,18.0,15.0,18.0,18.0,20.0,17.0,20.0,9.0,16.0,18.0,28.0,19.0,28.0,18.0,21.0,26.0,25.0,28.0,10.0,27.0,26.0,28.0,31.0,24.0,24.0,25.0,18.0,32.0,25.0,19.0,15.0,17.0,21.0,20.0,15.0,20.0,24.0,18.0,25.0,25.0,32.0,18.0,29.0,20.0,25.0,23.0,23.0,24.0,15.0,32.0,22.0,22.0,26.0,22.0,12.0,16.0,14.0,17.0,17.0,17.0,17.0,26.0,14.0,9.0,13.0,12.0,14.0,8.0,3.0,12.0,2.0,4.0,3.0,6.0,5.0,3.0,2.0,1.0,6.0 A84002,8.0,11.0,8.0,19.0,19.0,21.0,14.0,21.0,23.0,25.0,16.0,18.0,31.0,26.0,25.0,32.0,32.0,24.0,22.0,10.0,21.0,19.0,12.0,22.0,22.0,18.0,11.0,25.0,15.0,16.0,25.0,19.0,22.0,18.0,15.0,18.0,21.0,31.0,26.0,26.0,14.0,24.0,33.0,28.0,16.0,25.0,38.0,31.0,34.0,29.0,36.0,39.0,30.0,45.0,55.0,62.0,57.0,51.0,51.0,68.0,68.0,59.0,87.0,63.0,63.0,74.0,84.0,55.0,70.0,67.0,63.0,67.0,57.0,56.0,48.0,51.0,52.0,59.0,63.0,40.0,45.0,33.0,38.0,28.0,18.0,33.0,17.0,18.0,26.0,15.0,10.0,10.0,6.0,11.0,10.0,14.0 A84005,55.0,47.0,63.0,59.0,54.0,70.0,66.0,53.0,71.0,62.0,57.0,82.0,89.0,66.0,75.0,74.0,80.0,70.0,63.0,63.0,80.0,73.0,71.0,72.0,57.0,74.0,75.0,75.0,81.0,85.0,69.0,71.0,83.0,95.0,99.0,92.0,75.0,85.0,70.0,71.0,73.0,75.0,76.0,76.0,85.0,81.0,74.0,66.0,79.0,86.0,51.0,78.0,98.0,104.0,95.0,116.0,96.0,107.0,87.0,104.0,112.0,107.0,106.0,110.0,101.0,75.0,87.0,81.0,94.0,77.0,71.0,78.0,88.0,62.0,80.0,71.0,72.0,81.0,59.0,49.0,53.0,35.0,41.0,33.0,46.0,30.0,25.0,26.0,29.0,13.0,13.0,11.0,12.0,9.0,6.0,17.0 A84006,49.0,57.0,66.0,49.0,73.0,81.0,67.0,72.0,71.0,85.0,71.0,74.0,83.0,95.0,86.0,104.0,82.0,97.0,81.0,78.0,76.0,74.0,72.0,76.0,73.0,82.0,90.0,63.0,84.0,78.0,82.0,83.0,83.0,90.0,85.0,104.0,104.0,105.0,86.0,94.0,102.0,90.0,82.0,115.0,91.0,110.0,94.0,92.0,113.0,97.0,106.0,116.0,111.0,155.0,134.0,129.0,164.0,176.0,166.0,168.0,186.0,195.0,186.0,161.0,185.0,166.0,186.0,174.0,174.0,140.0,161.0,126.0,126.0,141.0,147.0,133.0,150.0,150.0,145.0,101.0,102.0,100.0,93.0,74.0,75.0,84.0,53.0,63.0,55.0,43.0,34.0,29.0,35.0,27.0,16.0,44.0 A84007,39.0,50.0,42.0,41.0,46.0,40.0,53.0,49.0,56.0,46.0,39.0,63.0,46.0,58.0,53.0,45.0,59.0,54.0,46.0,45.0,34.0,34.0,44.0,42.0,47.0,45.0,55.0,33.0,46.0,46.0,48.0,39.0,63.0,52.0,68.0,63.0,66.0,57.0,60.0,46.0,79.0,68.0,61.0,63.0,79.0,78.0,67.0,53.0,54.0,59.0,64.0,62.0,66.0,73.0,80.0,78.0,84.0,85.0,66.0,82.0,90.0,87.0,86.0,76.0,74.0,86.0,83.0,96.0,71.0,76.0,67.0,69.0,53.0,66.0,64.0,77.0,72.0,76.0,87.0,63.0,52.0,53.0,50.0,42.0,57.0,38.0,40.0,35.0,31.0,29.0,24.0,12.0,21.0,14.0,13.0,32.0 A84008,8.0,10.0,5.0,16.0,14.0,13.0,8.0,9.0,17.0,14.0,12.0,18.0,15.0,14.0,14.0,13.0,12.0,14.0,15.0,11.0,14.0,13.0,18.0,19.0,19.0,17.0,11.0,14.0,21.0,16.0,18.0,22.0,17.0,13.0,19.0,19.0,20.0,22.0,19.0,16.0,25.0,20.0,19.0,18.0,24.0,29.0,19.0,20.0,23.0,22.0,16.0,18.0,33.0,25.0,32.0,39.0,35.0,49.0,42.0,35.0,56.0,52.0,54.0,57.0,56.0,61.0,52.0,59.0,40.0,47.0,44.0,37.0,36.0,39.0,51.0,61.0,33.0,30.0,35.0,31.0,29.0,29.0,23.0,28.0,18.0,16.0,17.0,10.0,10.0,14.0,10.0,5.0,4.0,7.0,3.0,9.0 A84009,110.0,135.0,149.0,136.0,122.0,137.0,157.0,125.0,172.0,165.0,172.0,161.0,162.0,172.0,167.0,151.0,156.0,148.0,173.0,150.0,109.0,145.0,134.0,156.0,112.0,134.0,164.0,168.0,173.0,172.0,193.0,195.0,189.0,188.0,204.0,169.0,178.0,199.0,195.0,188.0,208.0,186.0,180.0,183.0,153.0,169.0,144.0,130.0,131.0,172.0,147.0,136.0,147.0,158.0,167.0,164.0,193.0,181.0,178.0,210.0,188.0,190.0,177.0,181.0,164.0,179.0,150.0,154.0,170.0,161.0,155.0,140.0,140.0,147.0,138.0,141.0,143.0,153.0,150.0,93.0,92.0,82.0,85.0,59.0,58.0,56.0,55.0,49.0,38.0,29.0,35.0,19.0,24.0,21.0,13.0,35.0 A84011,31.0,37.0,41.0,37.0,40.0,40.0,41.0,49.0,47.0,49.0,41.0,52.0,49.0,53.0,51.0,45.0,45.0,43.0,23.0,43.0,32.0,36.0,34.0,52.0,27.0,32.0,34.0,40.0,45.0,37.0,35.0,34.0,40.0,49.0,39.0,48.0,43.0,49.0,50.0,49.0,63.0,56.0,48.0,52.0,61.0,62.0,60.0,65.0,46.0,47.0,53.0,52.0,43.0,73.0,74.0,50.0,51.0,60.0,71.0,79.0,78.0,71.0,61.0,58.0,68.0,64.0,56.0,65.0,49.0,51.0,54.0,50.0,44.0,43.0,54.0,61.0,52.0,56.0,64.0,55.0,50.0,35.0,37.0,32.0,26.0,40.0,27.0,28.0,26.0,29.0,16.0,14.0,14.0,8.0,12.0,24.0 A84013,32.0,28.0,22.0,32.0,30.0,31.0,25.0,34.0,38.0,40.0,36.0,32.0,43.0,33.0,44.0,32.0,29.0,33.0,36.0,28.0,35.0,37.0,29.0,28.0,32.0,37.0,35.0,42.0,38.0,35.0,26.0,32.0,44.0,47.0,40.0,40.0,53.0,46.0,44.0,46.0,41.0,37.0,34.0,41.0,28.0,42.0,33.0,35.0,36.0,45.0,35.0,47.0,49.0,44.0,44.0,42.0,47.0,40.0,54.0,59.0,63.0,43.0,46.0,58.0,45.0,36.0,42.0,32.0,36.0,39.0,36.0,38.0,22.0,31.0,29.0,44.0,25.0,32.0,36.0,21.0,32.0,26.0,20.0,20.0,23.0,14.0,18.0,12.0,13.0,10.0,11.0,4.0,3.0,8.0,,9.0 A84014,67.0,64.0,77.0,58.0,69.0,61.0,76.0,80.0,82.0,67.0,60.0,72.0,85.0,70.0,84.0,76.0,87.0,69.0,72.0,75.0,70.0,70.0,56.0,80.0,74.0,100.0,71.0,102.0,102.0,90.0,93.0,97.0,91.0,108.0,92.0,81.0,95.0,88.0,106.0,87.0,98.0,77.0,87.0,86.0,77.0,96.0,83.0,80.0,87.0,69.0,104.0,79.0,102.0,96.0,89.0,92.0,90.0,89.0,92.0,100.0,97.0,104.0,84.0,92.0,100.0,86.0,79.0,84.0,76.0,66.0,60.0,83.0,71.0,72.0,82.0,72.0,93.0,93.0,85.0,59.0,53.0,52.0,49.0,35.0,33.0,27.0,30.0,20.0,22.0,15.0,18.0,11.0,14.0,8.0,6.0,13.0 A84016,17.0,28.0,29.0,23.0,34.0,30.0,29.0,29.0,39.0,43.0,33.0,45.0,35.0,44.0,45.0,37.0,38.0,36.0,43.0,34.0,37.0,43.0,36.0,34.0,36.0,33.0,33.0,34.0,39.0,38.0,31.0,36.0,40.0,45.0,44.0,34.0,54.0,62.0,43.0,41.0,37.0,44.0,48.0,54.0,45.0,39.0,41.0,39.0,53.0,40.0,51.0,46.0,49.0,62.0,50.0,48.0,51.0,59.0,51.0,52.0,63.0,64.0,64.0,49.0,57.0,55.0,57.0,46.0,39.0,27.0,41.0,32.0,34.0,37.0,39.0,50.0,33.0,41.0,37.0,24.0,22.0,32.0,20.0,20.0,15.0,13.0,11.0,9.0,12.0,14.0,8.0,8.0,7.0,7.0,5.0,4.0 A84018,13.0,17.0,29.0,26.0,18.0,26.0,38.0,23.0,29.0,36.0,30.0,23.0,36.0,37.0,31.0,32.0,44.0,29.0,33.0,33.0,29.0,19.0,31.0,29.0,20.0,23.0,20.0,21.0,15.0,21.0,24.0,25.0,27.0,40.0,31.0,39.0,29.0,30.0,41.0,28.0,41.0,48.0,34.0,42.0,40.0,44.0,39.0,41.0,36.0,41.0,53.0,45.0,38.0,51.0,59.0,59.0,68.0,58.0,58.0,55.0,78.0,70.0,66.0,55.0,82.0,80.0,75.0,90.0,67.0,57.0,63.0,73.0,71.0,48.0,53.0,51.0,59.0,68.0,55.0,47.0,48.0,56.0,34.0,31.0,31.0,25.0,35.0,41.0,27.0,20.0,11.0,18.0,15.0,6.0,9.0,31.0 A84020,25.0,25.0,30.0,33.0,42.0,32.0,35.0,28.0,39.0,32.0,49.0,31.0,43.0,41.0,41.0,35.0,44.0,37.0,36.0,32.0,37.0,39.0,46.0,38.0,58.0,46.0,34.0,45.0,36.0,45.0,43.0,45.0,41.0,39.0,40.0,25.0,43.0,39.0,55.0,52.0,42.0,54.0,38.0,46.0,53.0,51.0,42.0,39.0,39.0,43.0,37.0,48.0,57.0,68.0,43.0,59.0,61.0,69.0,58.0,64.0,78.0,47.0,86.0,80.0,69.0,63.0,53.0,52.0,55.0,43.0,41.0,41.0,53.0,49.0,38.0,47.0,52.0,46.0,57.0,33.0,40.0,41.0,41.0,36.0,31.0,27.0,30.0,22.0,21.0,18.0,19.0,11.0,11.0,6.0,7.0,14.0 A84022,34.0,37.0,51.0,50.0,48.0,48.0,53.0,65.0,63.0,53.0,44.0,47.0,62.0,57.0,45.0,65.0,57.0,55.0,60.0,38.0,44.0,40.0,34.0,45.0,49.0,50.0,61.0,51.0,56.0,51.0,72.0,62.0,76.0,61.0,56.0,66.0,67.0,72.0,54.0,55.0,62.0,75.0,58.0,77.0,68.0,75.0,63.0,49.0,50.0,55.0,82.0,65.0,67.0,101.0,110.0,103.0,84.0,112.0,126.0,105.0,120.0,101.0,130.0,146.0,116.0,127.0,118.0,125.0,103.0,95.0,97.0,91.0,94.0,77.0,89.0,83.0,99.0,95.0,62.0,71.0,78.0,50.0,58.0,53.0,35.0,40.0,38.0,31.0,33.0,21.0,19.0,10.0,11.0,12.0,8.0,26.0 A84024,37.0,28.0,23.0,45.0,39.0,42.0,44.0,41.0,47.0,39.0,34.0,52.0,51.0,43.0,48.0,50.0,44.0,55.0,49.0,44.0,44.0,40.0,40.0,53.0,42.0,40.0,43.0,45.0,42.0,45.0,52.0,58.0,61.0,56.0,70.0,63.0,44.0,64.0,59.0,52.0,59.0,69.0,54.0,65.0,63.0,59.0,64.0,53.0,53.0,62.0,66.0,55.0,52.0,84.0,89.0,80.0,84.0,84.0,74.0,74.0,87.0,92.0,86.0,90.0,82.0,80.0,92.0,85.0,100.0,75.0,64.0,70.0,76.0,72.0,81.0,80.0,72.0,82.0,86.0,53.0,74.0,65.0,54.0,46.0,41.0,43.0,32.0,43.0,25.0,26.0,20.0,13.0,23.0,15.0,18.0,30.0 A84025,15.0,17.0,20.0,20.0,22.0,19.0,33.0,27.0,22.0,30.0,24.0,31.0,34.0,26.0,23.0,19.0,42.0,31.0,29.0,29.0,28.0,20.0,23.0,22.0,22.0,31.0,20.0,35.0,26.0,34.0,33.0,34.0,36.0,38.0,32.0,32.0,31.0,27.0,36.0,37.0,41.0,46.0,34.0,33.0,44.0,35.0,34.0,29.0,32.0,25.0,37.0,32.0,32.0,25.0,29.0,26.0,33.0,30.0,35.0,29.0,38.0,30.0,30.0,48.0,30.0,27.0,40.0,44.0,41.0,39.0,53.0,39.0,46.0,37.0,34.0,36.0,38.0,39.0,34.0,22.0,23.0,23.0,19.0,15.0,16.0,16.0,10.0,8.0,8.0,8.0,6.0,4.0,5.0,5.0,3.0,3.0 A84026,32.0,23.0,31.0,21.0,32.0,25.0,32.0,37.0,38.0,41.0,40.0,41.0,46.0,52.0,50.0,57.0,43.0,65.0,42.0,37.0,28.0,40.0,43.0,41.0,31.0,45.0,46.0,38.0,44.0,39.0,38.0,51.0,37.0,45.0,34.0,53.0,55.0,65.0,45.0,68.0,58.0,49.0,49.0,58.0,53.0,41.0,47.0,47.0,44.0,28.0,50.0,58.0,56.0,46.0,58.0,63.0,56.0,62.0,65.0,76.0,91.0,79.0,87.0,92.0,73.0,66.0,70.0,74.0,68.0,64.0,66.0,67.0,65.0,75.0,64.0,71.0,58.0,99.0,54.0,58.0,49.0,50.0,47.0,41.0,32.0,34.0,37.0,34.0,34.0,24.0,23.0,19.0,15.0,10.0,4.0,30.0 A84027,10.0,7.0,11.0,12.0,14.0,17.0,14.0,12.0,12.0,22.0,13.0,11.0,15.0,23.0,21.0,16.0,16.0,14.0,9.0,10.0,10.0,17.0,12.0,13.0,6.0,14.0,7.0,12.0,16.0,6.0,10.0,16.0,18.0,18.0,11.0,14.0,12.0,14.0,14.0,20.0,21.0,18.0,14.0,20.0,21.0,16.0,15.0,13.0,16.0,20.0,18.0,22.0,13.0,33.0,34.0,27.0,44.0,24.0,27.0,45.0,34.0,41.0,34.0,34.0,42.0,43.0,38.0,39.0,27.0,26.0,23.0,25.0,24.0,27.0,20.0,26.0,27.0,15.0,18.0,13.0,24.0,14.0,19.0,7.0,17.0,10.0,4.0,10.0,10.0,8.0,2.0,4.0,5.0,3.0,1.0,3.0 A84028,62.0,77.0,78.0,72.0,87.0,76.0,116.0,107.0,114.0,98.0,110.0,110.0,112.0,118.0,104.0,109.0,122.0,114.0,107.0,93.0,101.0,95.0,103.0,96.0,99.0,115.0,103.0,104.0,133.0,104.0,130.0,117.0,130.0,119.0,129.0,127.0,127.0,128.0,146.0,147.0,114.0,107.0,98.0,120.0,111.0,141.0,108.0,103.0,102.0,131.0,113.0,136.0,132.0,164.0,155.0,127.0,152.0,167.0,150.0,126.0,137.0,130.0,138.0,134.0,131.0,141.0,137.0,138.0,122.0,129.0,117.0,113.0,94.0,115.0,112.0,108.0,100.0,114.0,104.0,69.0,92.0,76.0,51.0,39.0,43.0,40.0,41.0,40.0,28.0,25.0,21.0,11.0,21.0,12.0,14.0,14.0 A84029,8.0,18.0,15.0,21.0,18.0,17.0,14.0,16.0,23.0,18.0,23.0,18.0,23.0,13.0,23.0,27.0,30.0,15.0,20.0,13.0,14.0,16.0,15.0,24.0,15.0,16.0,18.0,27.0,23.0,15.0,22.0,12.0,21.0,28.0,26.0,20.0,24.0,31.0,19.0,30.0,20.0,17.0,36.0,24.0,24.0,29.0,20.0,18.0,21.0,32.0,26.0,24.0,19.0,48.0,24.0,35.0,49.0,32.0,38.0,50.0,47.0,44.0,43.0,44.0,43.0,43.0,42.0,42.0,39.0,39.0,48.0,54.0,41.0,36.0,30.0,24.0,30.0,37.0,29.0,15.0,23.0,15.0,24.0,12.0,13.0,14.0,17.0,9.0,8.0,6.0,4.0,4.0,3.0,2.0,2.0,4.0 A84030,37.0,51.0,47.0,47.0,50.0,49.0,64.0,50.0,58.0,57.0,53.0,49.0,62.0,54.0,51.0,52.0,48.0,51.0,53.0,72.0,51.0,62.0,47.0,57.0,64.0,57.0,78.0,89.0,71.0,56.0,84.0,84.0,88.0,79.0,76.0,87.0,64.0,68.0,61.0,72.0,62.0,66.0,49.0,65.0,77.0,60.0,70.0,71.0,74.0,56.0,79.0,74.0,76.0,92.0,102.0,77.0,86.0,73.0,71.0,92.0,75.0,79.0,81.0,68.0,63.0,71.0,68.0,71.0,57.0,70.0,72.0,60.0,61.0,77.0,90.0,73.0,83.0,124.0,92.0,69.0,62.0,45.0,52.0,41.0,42.0,29.0,35.0,33.0,32.0,9.0,20.0,11.0,12.0,17.0,6.0,15.0 A84031,29.0,40.0,36.0,45.0,41.0,46.0,34.0,49.0,50.0,52.0,50.0,41.0,47.0,44.0,57.0,35.0,58.0,50.0,48.0,41.0,43.0,32.0,37.0,45.0,41.0,37.0,51.0,58.0,49.0,55.0,64.0,50.0,45.0,43.0,44.0,68.0,59.0,65.0,65.0,49.0,72.0,62.0,55.0,55.0,60.0,63.0,56.0,42.0,67.0,57.0,69.0,75.0,65.0,78.0,93.0,80.0,69.0,85.0,94.0,110.0,106.0,112.0,112.0,85.0,93.0,102.0,89.0,100.0,84.0,85.0,68.0,86.0,80.0,63.0,69.0,64.0,76.0,87.0,86.0,75.0,63.0,55.0,54.0,34.0,36.0,37.0,37.0,32.0,28.0,30.0,25.0,27.0,18.0,12.0,6.0,19.0 A84033,16.0,17.0,12.0,22.0,18.0,24.0,18.0,33.0,22.0,22.0,32.0,32.0,26.0,30.0,20.0,28.0,26.0,27.0,32.0,30.0,32.0,20.0,24.0,38.0,27.0,17.0,34.0,20.0,23.0,25.0,25.0,24.0,29.0,27.0,20.0,35.0,37.0,26.0,28.0,30.0,40.0,29.0,28.0,31.0,43.0,32.0,37.0,27.0,31.0,35.0,36.0,35.0,39.0,44.0,34.0,50.0,42.0,50.0,46.0,40.0,50.0,50.0,49.0,56.0,52.0,48.0,45.0,57.0,49.0,49.0,45.0,50.0,49.0,34.0,36.0,44.0,34.0,41.0,53.0,31.0,46.0,17.0,21.0,21.0,25.0,18.0,12.0,18.0,17.0,14.0,17.0,10.0,5.0,8.0,5.0,15.0 A84034,20.0,17.0,19.0,15.0,16.0,16.0,22.0,18.0,24.0,16.0,22.0,26.0,30.0,30.0,28.0,29.0,30.0,33.0,23.0,33.0,28.0,26.0,18.0,17.0,28.0,21.0,17.0,21.0,14.0,30.0,33.0,22.0,25.0,34.0,22.0,37.0,26.0,33.0,29.0,28.0,29.0,27.0,28.0,36.0,27.0,25.0,22.0,25.0,16.0,23.0,27.0,31.0,40.0,40.0,52.0,34.0,43.0,39.0,42.0,54.0,45.0,49.0,64.0,49.0,49.0,48.0,56.0,43.0,53.0,30.0,39.0,53.0,45.0,52.0,33.0,33.0,47.0,52.0,52.0,41.0,36.0,17.0,25.0,26.0,21.0,12.0,13.0,21.0,20.0,10.0,6.0,9.0,11.0,3.0,4.0,9.0 A84035,24.0,20.0,25.0,20.0,29.0,24.0,35.0,23.0,28.0,30.0,34.0,36.0,26.0,25.0,29.0,32.0,25.0,28.0,27.0,23.0,21.0,19.0,25.0,17.0,29.0,18.0,31.0,22.0,23.0,24.0,28.0,32.0,26.0,23.0,24.0,31.0,36.0,40.0,38.0,34.0,25.0,31.0,37.0,40.0,34.0,43.0,33.0,40.0,35.0,44.0,42.0,35.0,39.0,49.0,42.0,53.0,41.0,34.0,42.0,49.0,44.0,47.0,58.0,55.0,53.0,45.0,46.0,41.0,34.0,40.0,43.0,43.0,31.0,29.0,40.0,47.0,51.0,45.0,42.0,34.0,35.0,34.0,28.0,23.0,24.0,19.0,23.0,16.0,24.0,17.0,9.0,8.0,11.0,9.0,4.0,7.0 A84036,167.0,206.0,205.0,211.0,218.0,229.0,261.0,278.0,289.0,290.0,249.0,281.0,312.0,315.0,299.0,282.0,255.0,270.0,242.0,264.0,209.0,203.0,252.0,242.0,218.0,253.0,252.0,249.0,270.0,302.0,306.0,290.0,302.0,357.0,339.0,311.0,297.0,311.0,300.0,325.0,332.0,315.0,296.0,353.0,316.0,354.0,308.0,257.0,279.0,280.0,313.0,303.0,317.0,352.0,341.0,326.0,362.0,355.0,359.0,373.0,386.0,389.0,372.0,369.0,356.0,364.0,384.0,341.0,339.0,334.0,300.0,285.0,298.0,290.0,288.0,269.0,278.0,286.0,276.0,216.0,205.0,187.0,146.0,112.0,124.0,124.0,109.0,98.0,97.0,57.0,61.0,44.0,39.0,30.0,30.0,60.0 A84037,22.0,21.0,23.0,21.0,25.0,22.0,21.0,19.0,26.0,28.0,27.0,28.0,26.0,25.0,25.0,26.0,31.0,31.0,28.0,25.0,33.0,29.0,22.0,17.0,22.0,27.0,30.0,36.0,35.0,43.0,34.0,39.0,37.0,48.0,35.0,37.0,46.0,31.0,35.0,33.0,33.0,42.0,31.0,32.0,32.0,30.0,33.0,37.0,36.0,35.0,38.0,56.0,38.0,50.0,56.0,39.0,53.0,46.0,52.0,52.0,46.0,49.0,40.0,51.0,55.0,50.0,47.0,44.0,41.0,33.0,37.0,30.0,46.0,41.0,38.0,35.0,47.0,57.0,31.0,31.0,30.0,23.0,32.0,18.0,14.0,12.0,14.0,12.0,14.0,8.0,7.0,7.0,3.0,5.0,2.0,1.0 A84038,44.0,55.0,43.0,47.0,39.0,46.0,32.0,36.0,33.0,43.0,39.0,50.0,53.0,54.0,56.0,37.0,49.0,50.0,40.0,42.0,45.0,47.0,32.0,45.0,39.0,51.0,41.0,61.0,62.0,47.0,76.0,80.0,77.0,76.0,64.0,87.0,59.0,65.0,64.0,45.0,54.0,59.0,62.0,49.0,53.0,67.0,74.0,55.0,57.0,58.0,58.0,51.0,60.0,51.0,68.0,56.0,59.0,68.0,66.0,56.0,61.0,57.0,48.0,59.0,43.0,68.0,48.0,71.0,59.0,69.0,65.0,58.0,50.0,65.0,69.0,69.0,72.0,86.0,79.0,47.0,40.0,45.0,32.0,20.0,20.0,14.0,10.0,16.0,13.0,15.0,14.0,6.0,7.0,1.0,5.0,11.0 A84039,24.0,42.0,27.0,35.0,32.0,31.0,38.0,24.0,26.0,33.0,40.0,32.0,31.0,35.0,35.0,38.0,36.0,28.0,34.0,27.0,23.0,25.0,26.0,29.0,31.0,37.0,36.0,29.0,34.0,34.0,50.0,45.0,36.0,49.0,53.0,37.0,34.0,48.0,50.0,47.0,49.0,27.0,57.0,42.0,40.0,46.0,41.0,46.0,41.0,41.0,38.0,40.0,50.0,47.0,66.0,53.0,66.0,59.0,57.0,49.0,58.0,71.0,67.0,57.0,51.0,65.0,78.0,57.0,45.0,52.0,52.0,53.0,46.0,55.0,56.0,57.0,32.0,52.0,50.0,38.0,33.0,36.0,32.0,27.0,19.0,18.0,21.0,16.0,23.0,14.0,12.0,4.0,6.0,8.0,5.0,14.0 A84040,9.0,9.0,13.0,9.0,5.0,14.0,19.0,16.0,18.0,23.0,9.0,10.0,20.0,12.0,22.0,15.0,14.0,14.0,15.0,8.0,10.0,10.0,11.0,9.0,8.0,11.0,11.0,11.0,12.0,8.0,16.0,10.0,7.0,23.0,22.0,15.0,14.0,16.0,9.0,15.0,23.0,18.0,19.0,8.0,18.0,23.0,14.0,17.0,20.0,21.0,20.0,23.0,19.0,25.0,31.0,30.0,30.0,28.0,24.0,32.0,35.0,50.0,33.0,29.0,37.0,41.0,21.0,37.0,27.0,39.0,32.0,27.0,30.0,35.0,24.0,20.0,26.0,26.0,26.0,19.0,18.0,13.0,14.0,7.0,16.0,9.0,9.0,12.0,8.0,12.0,4.0,6.0,,2.0,1.0,1.0 A84042,4.0,5.0,2.0,7.0,5.0,6.0,5.0,7.0,11.0,4.0,9.0,5.0,5.0,9.0,10.0,11.0,10.0,8.0,8.0,9.0,8.0,12.0,5.0,3.0,8.0,2.0,6.0,9.0,7.0,8.0,6.0,12.0,9.0,10.0,10.0,11.0,15.0,8.0,10.0,9.0,8.0,9.0,16.0,12.0,13.0,11.0,10.0,10.0,9.0,14.0,12.0,16.0,15.0,23.0,17.0,16.0,19.0,20.0,24.0,21.0,15.0,23.0,28.0,18.0,26.0,24.0,28.0,15.0,21.0,24.0,16.0,16.0,12.0,14.0,15.0,11.0,12.0,12.0,12.0,16.0,9.0,13.0,11.0,13.0,6.0,10.0,11.0,5.0,1.0,7.0,2.0,3.0,2.0,4.0,3.0,2.0 A84044,17.0,29.0,22.0,26.0,29.0,16.0,30.0,25.0,36.0,26.0,31.0,35.0,38.0,33.0,42.0,42.0,38.0,33.0,24.0,29.0,36.0,27.0,16.0,37.0,32.0,33.0,31.0,33.0,25.0,27.0,30.0,30.0,43.0,52.0,37.0,46.0,44.0,60.0,31.0,43.0,37.0,33.0,44.0,42.0,49.0,41.0,36.0,31.0,32.0,50.0,39.0,37.0,44.0,52.0,60.0,50.0,52.0,61.0,59.0,61.0,65.0,69.0,57.0,67.0,78.0,56.0,68.0,60.0,52.0,57.0,58.0,54.0,43.0,51.0,47.0,61.0,48.0,46.0,57.0,33.0,58.0,54.0,33.0,28.0,22.0,12.0,15.0,19.0,14.0,8.0,8.0,10.0,10.0,7.0,8.0,12.0 A84045,11.0,18.0,9.0,15.0,12.0,18.0,25.0,25.0,25.0,18.0,20.0,23.0,17.0,19.0,23.0,27.0,23.0,27.0,24.0,21.0,17.0,20.0,20.0,23.0,18.0,15.0,9.0,24.0,22.0,22.0,17.0,25.0,24.0,23.0,24.0,23.0,26.0,28.0,17.0,28.0,25.0,28.0,17.0,29.0,26.0,25.0,26.0,30.0,25.0,31.0,28.0,38.0,34.0,45.0,46.0,51.0,36.0,40.0,50.0,59.0,54.0,56.0,52.0,56.0,56.0,45.0,50.0,51.0,50.0,48.0,47.0,37.0,32.0,33.0,49.0,43.0,43.0,33.0,42.0,29.0,30.0,21.0,22.0,20.0,13.0,19.0,8.0,10.0,11.0,15.0,15.0,3.0,6.0,5.0,5.0,11.0 A84047,13.0,13.0,11.0,22.0,15.0,20.0,23.0,13.0,18.0,27.0,39.0,17.0,27.0,30.0,29.0,33.0,27.0,25.0,30.0,28.0,24.0,21.0,15.0,13.0,19.0,27.0,17.0,15.0,21.0,26.0,24.0,18.0,26.0,23.0,24.0,18.0,23.0,32.0,17.0,32.0,25.0,32.0,36.0,34.0,42.0,32.0,36.0,27.0,33.0,36.0,28.0,42.0,48.0,65.0,42.0,44.0,43.0,44.0,51.0,45.0,50.0,41.0,50.0,43.0,41.0,40.0,46.0,29.0,30.0,43.0,38.0,50.0,44.0,39.0,32.0,24.0,39.0,46.0,48.0,33.0,37.0,30.0,31.0,24.0,14.0,14.0,26.0,28.0,8.0,17.0,10.0,13.0,4.0,10.0,5.0,10.0 A84604,16.0,13.0,17.0,20.0,14.0,13.0,17.0,16.0,11.0,10.0,18.0,19.0,22.0,22.0,24.0,18.0,21.0,27.0,15.0,16.0,12.0,19.0,7.0,14.0,17.0,15.0,17.0,17.0,15.0,14.0,22.0,15.0,24.0,27.0,27.0,31.0,19.0,12.0,21.0,24.0,26.0,17.0,24.0,21.0,19.0,26.0,34.0,16.0,21.0,17.0,26.0,23.0,34.0,35.0,27.0,36.0,43.0,31.0,61.0,43.0,62.0,60.0,70.0,43.0,48.0,46.0,69.0,50.0,49.0,63.0,42.0,47.0,40.0,41.0,34.0,51.0,49.0,39.0,33.0,39.0,30.0,34.0,17.0,21.0,13.0,20.0,15.0,17.0,16.0,8.0,13.0,8.0,5.0,3.0,4.0,9.0 A84614,8.0,6.0,4.0,9.0,8.0,12.0,11.0,7.0,8.0,12.0,6.0,13.0,8.0,12.0,19.0,11.0,14.0,18.0,12.0,9.0,7.0,15.0,16.0,8.0,6.0,14.0,12.0,13.0,14.0,9.0,12.0,17.0,10.0,17.0,18.0,13.0,14.0,14.0,18.0,15.0,8.0,14.0,9.0,8.0,13.0,15.0,12.0,9.0,11.0,14.0,15.0,14.0,16.0,15.0,13.0,10.0,16.0,19.0,21.0,23.0,33.0,13.0,10.0,13.0,11.0,10.0,14.0,10.0,11.0,9.0,19.0,11.0,8.0,7.0,14.0,10.0,12.0,16.0,14.0,11.0,8.0,10.0,6.0,8.0,8.0,9.0,6.0,2.0,1.0,3.0,2.0,2.0,3.0,1.0,1.0,2.0 A84619,16.0,26.0,20.0,22.0,18.0,33.0,19.0,20.0,26.0,15.0,26.0,16.0,26.0,23.0,22.0,21.0,18.0,24.0,22.0,21.0,14.0,13.0,24.0,19.0,19.0,25.0,24.0,36.0,24.0,30.0,27.0,34.0,42.0,34.0,30.0,38.0,29.0,32.0,32.0,34.0,28.0,21.0,20.0,39.0,28.0,27.0,27.0,23.0,20.0,30.0,18.0,23.0,26.0,30.0,26.0,26.0,28.0,32.0,24.0,34.0,26.0,32.0,23.0,32.0,29.0,37.0,41.0,36.0,18.0,22.0,31.0,23.0,29.0,22.0,28.0,22.0,28.0,18.0,17.0,19.0,18.0,16.0,12.0,15.0,9.0,12.0,12.0,13.0,5.0,5.0,10.0,6.0,4.0,1.0,5.0,6.0 A85001,20.0,23.0,24.0,38.0,42.0,34.0,45.0,43.0,36.0,46.0,42.0,34.0,49.0,37.0,42.0,36.0,44.0,35.0,41.0,28.0,28.0,41.0,40.0,25.0,30.0,43.0,27.0,39.0,39.0,32.0,43.0,38.0,44.0,55.0,47.0,47.0,46.0,50.0,49.0,44.0,50.0,52.0,58.0,60.0,58.0,57.0,53.0,53.0,46.0,47.0,49.0,73.0,56.0,53.0,60.0,46.0,65.0,59.0,49.0,67.0,57.0,59.0,56.0,54.0,49.0,43.0,43.0,42.0,42.0,39.0,43.0,44.0,41.0,32.0,37.0,35.0,39.0,49.0,41.0,30.0,33.0,41.0,23.0,25.0,34.0,20.0,15.0,16.0,9.0,13.0,9.0,7.0,6.0,5.0,3.0,10.0 A85002,11.0,10.0,13.0,18.0,14.0,20.0,20.0,17.0,24.0,20.0,14.0,16.0,12.0,16.0,11.0,18.0,22.0,17.0,22.0,13.0,14.0,20.0,21.0,20.0,17.0,24.0,20.0,32.0,26.0,23.0,26.0,18.0,20.0,27.0,25.0,26.0,32.0,22.0,24.0,20.0,17.0,27.0,19.0,24.0,23.0,23.0,14.0,23.0,19.0,16.0,32.0,31.0,21.0,25.0,22.0,27.0,24.0,33.0,35.0,26.0,26.0,23.0,17.0,30.0,23.0,18.0,23.0,22.0,19.0,32.0,20.0,24.0,12.0,16.0,19.0,19.0,17.0,21.0,18.0,8.0,14.0,17.0,14.0,15.0,14.0,14.0,10.0,7.0,12.0,6.0,3.0,6.0,1.0,4.0,1.0,4.0 A85004,34.0,31.0,34.0,51.0,40.0,60.0,52.0,60.0,51.0,63.0,57.0,57.0,74.0,54.0,58.0,69.0,72.0,51.0,56.0,53.0,53.0,47.0,56.0,60.0,43.0,54.0,64.0,62.0,65.0,61.0,62.0,46.0,71.0,58.0,65.0,85.0,60.0,66.0,81.0,88.0,61.0,58.0,64.0,60.0,80.0,72.0,71.0,42.0,57.0,59.0,53.0,54.0,61.0,69.0,69.0,68.0,62.0,77.0,62.0,71.0,78.0,80.0,82.0,61.0,97.0,64.0,73.0,77.0,73.0,76.0,66.0,66.0,45.0,64.0,54.0,57.0,54.0,45.0,50.0,39.0,47.0,27.0,29.0,30.0,19.0,34.0,21.0,30.0,13.0,15.0,10.0,8.0,12.0,8.0,10.0,11.0 A85005,76.0,78.0,80.0,72.0,96.0,90.0,94.0,89.0,93.0,112.0,95.0,96.0,92.0,94.0,110.0,89.0,103.0,86.0,96.0,82.0,94.0,66.0,79.0,95.0,93.0,125.0,90.0,129.0,106.0,111.0,140.0,142.0,154.0,137.0,150.0,123.0,145.0,125.0,143.0,156.0,112.0,127.0,136.0,119.0,112.0,124.0,95.0,89.0,90.0,94.0,96.0,108.0,95.0,97.0,88.0,84.0,110.0,110.0,119.0,113.0,102.0,99.0,125.0,94.0,107.0,87.0,86.0,92.0,83.0,72.0,77.0,61.0,61.0,73.0,64.0,67.0,81.0,70.0,67.0,61.0,50.0,31.0,40.0,48.0,44.0,42.0,48.0,38.0,37.0,32.0,25.0,27.0,23.0,13.0,15.0,25.0 A85006,49.0,73.0,58.0,71.0,66.0,59.0,75.0,50.0,86.0,65.0,69.0,81.0,93.0,67.0,98.0,75.0,90.0,72.0,96.0,60.0,69.0,73.0,74.0,63.0,82.0,81.0,85.0,95.0,114.0,102.0,116.0,102.0,86.0,101.0,112.0,110.0,115.0,102.0,102.0,126.0,114.0,116.0,112.0,98.0,104.0,102.0,113.0,102.0,81.0,78.0,80.0,91.0,102.0,107.0,97.0,87.0,108.0,105.0,107.0,99.0,112.0,102.0,92.0,95.0,81.0,92.0,68.0,78.0,85.0,62.0,77.0,73.0,62.0,54.0,60.0,64.0,66.0,52.0,75.0,43.0,41.0,32.0,23.0,42.0,33.0,25.0,42.0,40.0,22.0,13.0,8.0,18.0,10.0,11.0,7.0,12.0 A85007,33.0,36.0,40.0,38.0,42.0,39.0,42.0,40.0,47.0,34.0,46.0,52.0,46.0,43.0,60.0,48.0,52.0,38.0,38.0,40.0,42.0,29.0,26.0,51.0,39.0,51.0,50.0,51.0,56.0,42.0,65.0,45.0,58.0,75.0,55.0,55.0,60.0,58.0,58.0,63.0,51.0,59.0,75.0,65.0,66.0,67.0,58.0,60.0,48.0,54.0,55.0,44.0,60.0,64.0,58.0,70.0,64.0,53.0,72.0,66.0,84.0,60.0,81.0,58.0,78.0,54.0,47.0,53.0,60.0,50.0,50.0,34.0,50.0,47.0,44.0,49.0,49.0,52.0,43.0,32.0,47.0,37.0,31.0,25.0,37.0,27.0,27.0,22.0,26.0,10.0,18.0,26.0,9.0,5.0,6.0,12.0 A85008,52.0,48.0,64.0,58.0,75.0,80.0,91.0,79.0,70.0,88.0,87.0,88.0,78.0,84.0,104.0,90.0,97.0,85.0,89.0,83.0,84.0,76.0,69.0,59.0,62.0,79.0,80.0,100.0,82.0,69.0,86.0,99.0,95.0,90.0,94.0,104.0,103.0,94.0,76.0,103.0,103.0,103.0,106.0,88.0,113.0,111.0,96.0,81.0,101.0,78.0,93.0,105.0,107.0,131.0,112.0,109.0,97.0,103.0,91.0,108.0,104.0,132.0,107.0,112.0,101.0,75.0,88.0,101.0,84.0,80.0,91.0,83.0,92.0,85.0,76.0,83.0,86.0,93.0,89.0,75.0,70.0,57.0,61.0,44.0,48.0,55.0,38.0,37.0,32.0,32.0,25.0,24.0,20.0,14.0,11.0,28.0 A85009,24.0,31.0,27.0,28.0,29.0,33.0,34.0,36.0,36.0,29.0,39.0,27.0,42.0,30.0,22.0,35.0,31.0,34.0,31.0,34.0,35.0,29.0,36.0,42.0,40.0,39.0,47.0,34.0,46.0,41.0,43.0,40.0,48.0,48.0,41.0,41.0,41.0,56.0,50.0,44.0,42.0,36.0,41.0,30.0,42.0,33.0,28.0,27.0,27.0,42.0,33.0,40.0,36.0,57.0,37.0,35.0,48.0,49.0,52.0,46.0,36.0,40.0,48.0,42.0,44.0,35.0,43.0,29.0,43.0,29.0,22.0,22.0,30.0,28.0,30.0,25.0,23.0,27.0,18.0,24.0,28.0,22.0,19.0,14.0,14.0,12.0,18.0,15.0,9.0,7.0,10.0,6.0,5.0,5.0,6.0,8.0 A85010,39.0,60.0,42.0,50.0,42.0,42.0,55.0,63.0,63.0,69.0,58.0,66.0,59.0,65.0,65.0,71.0,58.0,57.0,66.0,47.0,54.0,37.0,42.0,67.0,45.0,63.0,68.0,81.0,76.0,66.0,75.0,74.0,78.0,78.0,66.0,71.0,67.0,79.0,75.0,79.0,87.0,78.0,74.0,83.0,78.0,87.0,58.0,64.0,69.0,88.0,67.0,75.0,84.0,98.0,97.0,96.0,85.0,89.0,79.0,110.0,80.0,79.0,83.0,85.0,73.0,60.0,76.0,72.0,87.0,68.0,67.0,47.0,63.0,56.0,51.0,63.0,61.0,69.0,55.0,54.0,55.0,42.0,34.0,36.0,33.0,27.0,34.0,28.0,21.0,21.0,18.0,11.0,17.0,12.0,9.0,19.0 A85011,26.0,24.0,23.0,33.0,26.0,34.0,42.0,23.0,54.0,32.0,48.0,43.0,50.0,48.0,49.0,47.0,44.0,37.0,34.0,30.0,39.0,36.0,25.0,41.0,40.0,34.0,29.0,31.0,41.0,35.0,44.0,55.0,38.0,46.0,32.0,53.0,57.0,60.0,42.0,60.0,70.0,46.0,50.0,61.0,55.0,58.0,53.0,48.0,36.0,40.0,45.0,41.0,40.0,47.0,45.0,53.0,31.0,56.0,43.0,45.0,55.0,48.0,47.0,54.0,62.0,49.0,45.0,48.0,46.0,43.0,38.0,35.0,46.0,30.0,28.0,35.0,28.0,38.0,34.0,20.0,44.0,17.0,22.0,21.0,20.0,14.0,13.0,24.0,12.0,21.0,10.0,15.0,13.0,11.0,5.0,25.0 A85013,12.0,14.0,21.0,19.0,15.0,22.0,13.0,14.0,12.0,13.0,20.0,18.0,20.0,19.0,13.0,22.0,10.0,14.0,17.0,25.0,33.0,18.0,16.0,24.0,25.0,22.0,30.0,29.0,28.0,23.0,31.0,31.0,42.0,22.0,36.0,32.0,25.0,39.0,29.0,22.0,26.0,21.0,17.0,8.0,21.0,18.0,16.0,13.0,17.0,20.0,18.0,21.0,21.0,16.0,27.0,26.0,25.0,22.0,27.0,18.0,20.0,27.0,26.0,24.0,18.0,20.0,24.0,18.0,20.0,13.0,11.0,12.0,18.0,13.0,14.0,15.0,8.0,19.0,19.0,8.0,8.0,10.0,9.0,9.0,12.0,8.0,7.0,7.0,4.0,2.0,1.0,5.0,3.0,,1.0,4.0 A85014,79.0,90.0,75.0,111.0,93.0,89.0,88.0,100.0,107.0,106.0,94.0,99.0,138.0,107.0,123.0,110.0,103.0,107.0,111.0,90.0,79.0,81.0,79.0,72.0,100.0,119.0,103.0,110.0,157.0,111.0,138.0,138.0,139.0,160.0,162.0,131.0,149.0,160.0,144.0,143.0,129.0,124.0,128.0,115.0,123.0,155.0,105.0,122.0,111.0,111.0,128.0,120.0,156.0,143.0,133.0,139.0,152.0,158.0,162.0,161.0,160.0,153.0,150.0,158.0,138.0,140.0,148.0,106.0,112.0,100.0,115.0,98.0,109.0,100.0,115.0,106.0,127.0,128.0,132.0,87.0,94.0,101.0,69.0,57.0,55.0,56.0,67.0,51.0,41.0,46.0,43.0,27.0,21.0,12.0,13.0,25.0 A85016,59.0,58.0,75.0,81.0,67.0,65.0,74.0,70.0,59.0,69.0,81.0,71.0,68.0,89.0,61.0,67.0,64.0,66.0,58.0,73.0,64.0,66.0,52.0,73.0,69.0,79.0,60.0,71.0,71.0,86.0,109.0,80.0,89.0,98.0,94.0,103.0,99.0,94.0,86.0,87.0,92.0,91.0,92.0,85.0,65.0,81.0,79.0,79.0,59.0,64.0,63.0,51.0,68.0,84.0,95.0,75.0,75.0,79.0,85.0,94.0,86.0,77.0,88.0,92.0,78.0,80.0,73.0,75.0,48.0,63.0,64.0,63.0,61.0,59.0,58.0,54.0,53.0,65.0,52.0,38.0,45.0,36.0,25.0,31.0,25.0,29.0,29.0,19.0,20.0,22.0,8.0,18.0,5.0,10.0,4.0,11.0 A85017,51.0,57.0,71.0,96.0,63.0,70.0,67.0,63.0,77.0,70.0,71.0,58.0,51.0,71.0,73.0,50.0,134.0,213.0,216.0,188.0,120.0,98.0,77.0,66.0,65.0,54.0,64.0,52.0,47.0,64.0,63.0,50.0,58.0,53.0,50.0,41.0,40.0,43.0,54.0,45.0,32.0,36.0,34.0,42.0,27.0,34.0,32.0,32.0,27.0,24.0,22.0,26.0,19.0,24.0,23.0,27.0,18.0,31.0,22.0,28.0,25.0,35.0,22.0,31.0,26.0,33.0,30.0,31.0,24.0,20.0,25.0,16.0,18.0,12.0,20.0,24.0,20.0,28.0,23.0,16.0,9.0,4.0,9.0,8.0,7.0,12.0,8.0,7.0,13.0,7.0,6.0,6.0,8.0,4.0,4.0,11.0 A85018,19.0,11.0,22.0,17.0,17.0,22.0,18.0,20.0,23.0,29.0,28.0,35.0,25.0,31.0,37.0,22.0,21.0,23.0,25.0,25.0,19.0,22.0,23.0,21.0,26.0,23.0,23.0,27.0,32.0,30.0,26.0,23.0,21.0,20.0,34.0,22.0,38.0,30.0,34.0,34.0,32.0,29.0,36.0,35.0,24.0,22.0,30.0,14.0,31.0,27.0,35.0,27.0,32.0,38.0,31.0,27.0,29.0,36.0,50.0,28.0,50.0,39.0,37.0,23.0,33.0,32.0,29.0,31.0,22.0,30.0,19.0,29.0,26.0,21.0,25.0,25.0,27.0,33.0,28.0,26.0,29.0,17.0,19.0,16.0,15.0,19.0,14.0,23.0,11.0,8.0,4.0,11.0,1.0,2.0,3.0,5.0 A85019,38.0,28.0,42.0,42.0,38.0,54.0,49.0,49.0,50.0,59.0,69.0,53.0,55.0,64.0,48.0,55.0,50.0,52.0,46.0,55.0,50.0,50.0,38.0,58.0,60.0,69.0,75.0,76.0,75.0,73.0,77.0,86.0,71.0,93.0,84.0,79.0,87.0,86.0,86.0,73.0,71.0,62.0,74.0,66.0,74.0,66.0,53.0,51.0,52.0,60.0,64.0,64.0,70.0,72.0,74.0,71.0,58.0,58.0,73.0,86.0,76.0,73.0,81.0,65.0,62.0,76.0,54.0,61.0,49.0,45.0,39.0,57.0,39.0,50.0,42.0,42.0,44.0,32.0,42.0,23.0,24.0,28.0,14.0,24.0,20.0,17.0,27.0,12.0,10.0,13.0,7.0,12.0,5.0,5.0,,10.0 A85020,53.0,44.0,49.0,65.0,76.0,56.0,67.0,74.0,81.0,66.0,68.0,93.0,76.0,88.0,82.0,69.0,85.0,83.0,77.0,50.0,54.0,75.0,47.0,60.0,66.0,60.0,74.0,85.0,62.0,69.0,82.0,69.0,91.0,91.0,104.0,93.0,104.0,99.0,91.0,88.0,92.0,96.0,103.0,104.0,97.0,94.0,93.0,81.0,94.0,109.0,93.0,102.0,84.0,97.0,103.0,86.0,101.0,109.0,122.0,87.0,107.0,100.0,110.0,105.0,101.0,102.0,105.0,121.0,104.0,103.0,105.0,114.0,120.0,122.0,90.0,116.0,146.0,117.0,123.0,84.0,95.0,113.0,75.0,66.0,67.0,70.0,57.0,55.0,48.0,39.0,36.0,30.0,21.0,30.0,14.0,28.0 A85021,16.0,21.0,15.0,17.0,15.0,15.0,24.0,21.0,21.0,23.0,18.0,25.0,20.0,21.0,18.0,18.0,16.0,15.0,10.0,22.0,45.0,35.0,43.0,56.0,55.0,58.0,67.0,77.0,59.0,64.0,38.0,37.0,40.0,36.0,22.0,23.0,35.0,23.0,27.0,13.0,18.0,23.0,25.0,12.0,14.0,16.0,11.0,7.0,12.0,11.0,12.0,11.0,10.0,13.0,6.0,11.0,16.0,15.0,14.0,16.0,6.0,10.0,9.0,7.0,7.0,4.0,10.0,16.0,6.0,8.0,9.0,6.0,5.0,6.0,8.0,9.0,5.0,14.0,10.0,5.0,5.0,2.0,4.0,4.0,3.0,3.0,5.0,3.0,3.0,4.0,4.0,1.0,,,1.0,1.0 A85024,15.0,10.0,18.0,11.0,11.0,12.0,8.0,11.0,11.0,17.0,10.0,7.0,8.0,10.0,18.0,12.0,7.0,11.0,6.0,15.0,8.0,21.0,9.0,11.0,15.0,15.0,22.0,16.0,21.0,12.0,23.0,21.0,16.0,24.0,20.0,16.0,12.0,12.0,17.0,13.0,14.0,19.0,18.0,15.0,12.0,11.0,21.0,15.0,13.0,12.0,19.0,14.0,17.0,13.0,13.0,15.0,13.0,16.0,15.0,16.0,8.0,13.0,16.0,14.0,21.0,23.0,16.0,24.0,22.0,27.0,20.0,13.0,12.0,16.0,12.0,16.0,17.0,16.0,14.0,9.0,10.0,13.0,4.0,8.0,4.0,3.0,5.0,6.0,5.0,1.0,7.0,2.0,3.0,,4.0,4.0 A85026,25.0,24.0,31.0,30.0,24.0,33.0,33.0,34.0,35.0,36.0,28.0,35.0,35.0,27.0,23.0,37.0,30.0,45.0,35.0,41.0,38.0,23.0,22.0,39.0,35.0,29.0,42.0,42.0,39.0,44.0,47.0,50.0,37.0,51.0,46.0,49.0,55.0,38.0,48.0,41.0,34.0,38.0,39.0,38.0,40.0,35.0,35.0,21.0,21.0,34.0,23.0,46.0,38.0,35.0,45.0,49.0,37.0,36.0,42.0,40.0,38.0,35.0,29.0,35.0,33.0,31.0,41.0,30.0,28.0,16.0,22.0,20.0,22.0,19.0,20.0,18.0,24.0,25.0,21.0,8.0,12.0,14.0,11.0,8.0,13.0,10.0,5.0,10.0,6.0,10.0,5.0,2.0,3.0,4.0,3.0,2.0 A85611,27.0,19.0,27.0,25.0,33.0,24.0,32.0,33.0,38.0,20.0,22.0,34.0,29.0,38.0,29.0,27.0,30.0,21.0,37.0,33.0,16.0,32.0,36.0,22.0,22.0,27.0,41.0,39.0,43.0,30.0,44.0,43.0,26.0,43.0,40.0,37.0,41.0,45.0,58.0,38.0,38.0,40.0,46.0,35.0,45.0,43.0,40.0,35.0,36.0,36.0,29.0,36.0,45.0,37.0,43.0,37.0,48.0,40.0,52.0,41.0,45.0,40.0,38.0,39.0,27.0,31.0,31.0,33.0,32.0,35.0,35.0,28.0,21.0,22.0,28.0,23.0,19.0,15.0,25.0,26.0,14.0,12.0,16.0,15.0,6.0,6.0,10.0,3.0,8.0,7.0,8.0,4.0,4.0,1.0,6.0,3.0 A85614,36.0,37.0,30.0,37.0,33.0,31.0,30.0,33.0,20.0,22.0,34.0,22.0,26.0,32.0,24.0,28.0,18.0,25.0,67.0,118.0,128.0,109.0,134.0,110.0,148.0,110.0,106.0,105.0,111.0,87.0,117.0,104.0,87.0,85.0,74.0,86.0,57.0,47.0,53.0,63.0,56.0,40.0,36.0,41.0,41.0,39.0,30.0,25.0,44.0,38.0,31.0,30.0,28.0,24.0,36.0,33.0,32.0,34.0,25.0,33.0,40.0,36.0,39.0,33.0,24.0,32.0,32.0,30.0,27.0,25.0,16.0,24.0,22.0,23.0,18.0,16.0,22.0,15.0,28.0,12.0,8.0,16.0,9.0,11.0,10.0,6.0,5.0,6.0,9.0,10.0,8.0,2.0,5.0,3.0,3.0,7.0 A85616,14.0,18.0,18.0,16.0,20.0,19.0,23.0,19.0,28.0,20.0,25.0,19.0,25.0,30.0,36.0,27.0,28.0,26.0,18.0,20.0,20.0,16.0,27.0,19.0,20.0,18.0,18.0,26.0,30.0,26.0,33.0,31.0,27.0,32.0,30.0,29.0,33.0,28.0,21.0,35.0,34.0,34.0,34.0,26.0,40.0,32.0,29.0,17.0,19.0,24.0,26.0,25.0,28.0,32.0,37.0,33.0,42.0,33.0,32.0,49.0,52.0,37.0,30.0,33.0,46.0,39.0,36.0,27.0,28.0,33.0,26.0,35.0,36.0,36.0,29.0,29.0,34.0,24.0,19.0,24.0,25.0,16.0,28.0,12.0,15.0,15.0,17.0,16.0,11.0,10.0,6.0,6.0,2.0,4.0,2.0,2.0 A85617,15.0,21.0,13.0,18.0,24.0,24.0,25.0,22.0,27.0,29.0,18.0,21.0,21.0,26.0,29.0,21.0,22.0,23.0,15.0,24.0,21.0,24.0,14.0,17.0,19.0,18.0,21.0,19.0,27.0,22.0,14.0,29.0,25.0,36.0,20.0,37.0,31.0,26.0,15.0,27.0,27.0,19.0,29.0,23.0,33.0,25.0,31.0,17.0,27.0,30.0,22.0,27.0,27.0,28.0,35.0,32.0,34.0,34.0,22.0,32.0,25.0,40.0,36.0,17.0,22.0,23.0,19.0,24.0,18.0,16.0,15.0,16.0,20.0,12.0,21.0,15.0,21.0,25.0,26.0,21.0,17.0,18.0,11.0,9.0,11.0,8.0,7.0,8.0,6.0,12.0,,4.0,2.0,,3.0,1.0 A86003,78.0,105.0,81.0,80.0,83.0,78.0,106.0,78.0,92.0,95.0,100.0,92.0,98.0,99.0,91.0,91.0,102.0,106.0,357.0,692.0,924.0,988.0,908.0,977.0,1123.0,958.0,940.0,908.0,798.0,786.0,692.0,469.0,364.0,356.0,328.0,255.0,232.0,196.0,211.0,203.0,168.0,158.0,155.0,136.0,136.0,138.0,113.0,105.0,96.0,109.0,94.0,100.0,104.0,106.0,116.0,89.0,116.0,106.0,120.0,100.0,110.0,112.0,130.0,101.0,78.0,88.0,99.0,73.0,77.0,82.0,64.0,72.0,50.0,54.0,71.0,63.0,61.0,54.0,55.0,49.0,56.0,32.0,35.0,21.0,34.0,31.0,29.0,36.0,30.0,17.0,24.0,17.0,14.0,14.0,7.0,23.0 A86004,90.0,84.0,91.0,81.0,87.0,102.0,95.0,118.0,97.0,96.0,115.0,99.0,93.0,98.0,111.0,99.0,112.0,94.0,86.0,101.0,75.0,69.0,74.0,73.0,84.0,114.0,102.0,106.0,100.0,105.0,133.0,120.0,106.0,87.0,101.0,114.0,100.0,129.0,126.0,116.0,95.0,105.0,120.0,88.0,94.0,89.0,74.0,68.0,75.0,80.0,77.0,63.0,82.0,68.0,55.0,63.0,57.0,70.0,57.0,48.0,43.0,55.0,51.0,57.0,51.0,53.0,49.0,48.0,61.0,38.0,50.0,39.0,38.0,29.0,30.0,35.0,41.0,28.0,39.0,26.0,18.0,18.0,20.0,20.0,20.0,20.0,20.0,15.0,16.0,24.0,12.0,13.0,8.0,12.0,8.0,18.0 A86005,27.0,23.0,23.0,36.0,39.0,26.0,35.0,42.0,36.0,42.0,35.0,38.0,37.0,27.0,25.0,35.0,28.0,35.0,23.0,24.0,23.0,21.0,19.0,28.0,37.0,39.0,42.0,38.0,50.0,54.0,50.0,40.0,61.0,59.0,51.0,61.0,68.0,59.0,42.0,44.0,44.0,37.0,47.0,39.0,53.0,35.0,35.0,43.0,28.0,34.0,36.0,24.0,34.0,28.0,33.0,40.0,35.0,37.0,39.0,37.0,38.0,39.0,33.0,40.0,30.0,39.0,25.0,37.0,35.0,26.0,29.0,30.0,26.0,27.0,22.0,20.0,28.0,23.0,29.0,15.0,15.0,11.0,9.0,15.0,12.0,8.0,13.0,13.0,14.0,11.0,5.0,8.0,6.0,6.0,3.0,7.0 A86006,20.0,23.0,26.0,27.0,31.0,29.0,32.0,24.0,19.0,23.0,29.0,25.0,29.0,23.0,38.0,32.0,24.0,19.0,24.0,21.0,18.0,24.0,40.0,35.0,31.0,35.0,34.0,48.0,41.0,40.0,37.0,32.0,43.0,32.0,45.0,47.0,41.0,49.0,55.0,35.0,50.0,39.0,35.0,49.0,28.0,36.0,31.0,33.0,21.0,40.0,21.0,29.0,37.0,27.0,40.0,29.0,34.0,40.0,35.0,32.0,41.0,37.0,55.0,56.0,44.0,43.0,36.0,49.0,55.0,42.0,32.0,44.0,20.0,34.0,25.0,27.0,32.0,30.0,43.0,13.0,29.0,24.0,24.0,14.0,11.0,14.0,12.0,14.0,15.0,8.0,9.0,7.0,7.0,7.0,2.0,5.0 A86008,63.0,47.0,67.0,72.0,58.0,67.0,69.0,78.0,86.0,70.0,77.0,81.0,90.0,93.0,74.0,68.0,71.0,86.0,60.0,65.0,51.0,59.0,53.0,51.0,64.0,83.0,74.0,61.0,86.0,85.0,93.0,94.0,93.0,105.0,119.0,111.0,103.0,101.0,93.0,113.0,98.0,110.0,114.0,87.0,100.0,78.0,92.0,84.0,78.0,89.0,82.0,84.0,68.0,82.0,73.0,72.0,87.0,79.0,80.0,86.0,93.0,76.0,86.0,101.0,85.0,100.0,78.0,75.0,67.0,77.0,78.0,55.0,58.0,55.0,68.0,62.0,69.0,63.0,47.0,39.0,32.0,40.0,28.0,26.0,20.0,28.0,25.0,21.0,8.0,10.0,13.0,12.0,13.0,6.0,7.0,12.0 A86010,37.0,40.0,50.0,43.0,41.0,43.0,43.0,45.0,49.0,44.0,42.0,47.0,47.0,52.0,44.0,37.0,44.0,49.0,41.0,52.0,52.0,81.0,79.0,96.0,111.0,147.0,128.0,141.0,116.0,150.0,123.0,113.0,127.0,113.0,73.0,106.0,97.0,121.0,104.0,95.0,82.0,73.0,70.0,69.0,66.0,62.0,65.0,40.0,48.0,33.0,56.0,49.0,49.0,49.0,55.0,49.0,52.0,60.0,52.0,57.0,53.0,52.0,44.0,41.0,44.0,46.0,52.0,44.0,38.0,42.0,37.0,38.0,29.0,34.0,27.0,40.0,30.0,26.0,25.0,30.0,15.0,12.0,21.0,17.0,11.0,11.0,8.0,13.0,15.0,8.0,13.0,5.0,3.0,5.0,9.0,12.0 A86011,48.0,47.0,57.0,54.0,50.0,59.0,63.0,82.0,65.0,90.0,56.0,59.0,68.0,65.0,67.0,59.0,60.0,76.0,56.0,66.0,52.0,49.0,54.0,66.0,62.0,66.0,70.0,66.0,68.0,59.0,85.0,88.0,75.0,79.0,79.0,77.0,71.0,90.0,70.0,78.0,75.0,72.0,67.0,74.0,77.0,64.0,66.0,46.0,42.0,64.0,49.0,52.0,60.0,65.0,72.0,70.0,63.0,61.0,70.0,55.0,65.0,68.0,87.0,68.0,76.0,64.0,71.0,67.0,60.0,59.0,56.0,44.0,54.0,38.0,42.0,37.0,40.0,49.0,56.0,32.0,30.0,25.0,21.0,20.0,23.0,25.0,24.0,13.0,18.0,12.0,13.0,18.0,7.0,7.0,7.0,12.0 A86012,76.0,68.0,87.0,70.0,68.0,73.0,70.0,85.0,107.0,87.0,81.0,75.0,82.0,91.0,90.0,90.0,79.0,85.0,63.0,78.0,73.0,84.0,96.0,106.0,115.0,103.0,110.0,113.0,115.0,103.0,92.0,88.0,97.0,85.0,100.0,88.0,92.0,103.0,94.0,78.0,107.0,90.0,76.0,80.0,90.0,78.0,64.0,57.0,54.0,69.0,67.0,56.0,63.0,52.0,57.0,51.0,54.0,48.0,46.0,36.0,44.0,48.0,48.0,33.0,45.0,43.0,51.0,35.0,42.0,33.0,29.0,34.0,39.0,15.0,22.0,20.0,26.0,33.0,26.0,11.0,11.0,23.0,15.0,17.0,11.0,19.0,28.0,11.0,13.0,12.0,12.0,9.0,5.0,1.0,6.0,15.0 A86013,26.0,31.0,36.0,43.0,48.0,42.0,58.0,37.0,38.0,52.0,33.0,39.0,51.0,43.0,42.0,52.0,35.0,44.0,41.0,44.0,34.0,33.0,36.0,36.0,34.0,44.0,34.0,45.0,44.0,56.0,36.0,44.0,56.0,45.0,57.0,62.0,72.0,57.0,54.0,54.0,56.0,58.0,37.0,54.0,51.0,43.0,43.0,39.0,27.0,37.0,42.0,36.0,39.0,39.0,43.0,36.0,45.0,52.0,62.0,58.0,53.0,53.0,52.0,48.0,48.0,64.0,60.0,47.0,55.0,46.0,39.0,39.0,29.0,40.0,40.0,34.0,33.0,37.0,48.0,25.0,28.0,35.0,20.0,24.0,17.0,26.0,25.0,25.0,21.0,11.0,11.0,11.0,11.0,5.0,5.0,7.0 A86016,35.0,42.0,53.0,40.0,39.0,44.0,46.0,46.0,65.0,48.0,43.0,47.0,43.0,52.0,49.0,47.0,52.0,56.0,47.0,42.0,36.0,50.0,38.0,33.0,36.0,52.0,41.0,56.0,60.0,48.0,59.0,57.0,63.0,74.0,80.0,76.0,77.0,68.0,90.0,84.0,82.0,58.0,48.0,81.0,69.0,71.0,63.0,72.0,62.0,70.0,70.0,68.0,52.0,60.0,76.0,60.0,65.0,58.0,70.0,74.0,83.0,78.0,73.0,64.0,57.0,66.0,70.0,67.0,65.0,51.0,47.0,58.0,53.0,48.0,46.0,55.0,44.0,39.0,65.0,28.0,39.0,19.0,37.0,19.0,24.0,15.0,21.0,13.0,17.0,12.0,9.0,11.0,12.0,3.0,7.0,16.0 A86017,57.0,47.0,49.0,61.0,57.0,48.0,47.0,72.0,81.0,71.0,58.0,61.0,68.0,58.0,64.0,69.0,57.0,64.0,73.0,71.0,79.0,64.0,76.0,90.0,77.0,109.0,103.0,107.0,89.0,85.0,80.0,84.0,87.0,91.0,69.0,93.0,92.0,88.0,83.0,69.0,70.0,83.0,69.0,78.0,79.0,69.0,58.0,60.0,48.0,61.0,59.0,48.0,59.0,58.0,66.0,45.0,56.0,43.0,70.0,55.0,58.0,46.0,57.0,79.0,57.0,69.0,56.0,59.0,62.0,60.0,44.0,47.0,43.0,33.0,22.0,33.0,31.0,25.0,35.0,23.0,21.0,19.0,14.0,18.0,15.0,19.0,16.0,14.0,9.0,12.0,9.0,5.0,6.0,11.0,4.0,13.0 A86018,40.0,49.0,42.0,60.0,53.0,61.0,68.0,51.0,52.0,67.0,59.0,57.0,64.0,60.0,88.0,84.0,77.0,81.0,49.0,54.0,58.0,51.0,65.0,59.0,65.0,93.0,79.0,80.0,82.0,68.0,63.0,84.0,84.0,72.0,75.0,81.0,82.0,91.0,75.0,90.0,79.0,70.0,91.0,89.0,74.0,96.0,85.0,91.0,71.0,71.0,102.0,79.0,100.0,89.0,89.0,105.0,72.0,108.0,101.0,99.0,84.0,101.0,100.0,93.0,78.0,95.0,76.0,81.0,79.0,89.0,80.0,85.0,89.0,67.0,82.0,84.0,77.0,85.0,76.0,60.0,66.0,65.0,54.0,35.0,47.0,60.0,51.0,39.0,34.0,31.0,23.0,12.0,24.0,21.0,14.0,36.0 A86020,76.0,111.0,121.0,104.0,117.0,100.0,122.0,97.0,128.0,122.0,131.0,125.0,132.0,116.0,114.0,125.0,97.0,97.0,101.0,157.0,297.0,366.0,377.0,344.0,287.0,296.0,276.0,243.0,269.0,248.0,216.0,223.0,215.0,213.0,219.0,197.0,204.0,204.0,199.0,190.0,194.0,172.0,202.0,183.0,182.0,154.0,128.0,130.0,134.0,133.0,145.0,129.0,132.0,136.0,142.0,131.0,139.0,138.0,131.0,158.0,151.0,155.0,146.0,142.0,139.0,126.0,123.0,107.0,115.0,127.0,110.0,124.0,121.0,113.0,111.0,89.0,119.0,111.0,117.0,81.0,84.0,64.0,71.0,58.0,50.0,56.0,44.0,58.0,43.0,50.0,31.0,36.0,29.0,29.0,20.0,55.0 A86021,56.0,53.0,49.0,60.0,51.0,57.0,62.0,52.0,59.0,59.0,57.0,63.0,59.0,65.0,66.0,65.0,59.0,58.0,60.0,48.0,58.0,54.0,39.0,58.0,58.0,76.0,38.0,68.0,85.0,77.0,66.0,63.0,74.0,80.0,65.0,73.0,81.0,83.0,63.0,67.0,64.0,64.0,51.0,55.0,52.0,58.0,70.0,38.0,47.0,50.0,51.0,56.0,52.0,46.0,49.0,53.0,45.0,59.0,53.0,65.0,72.0,64.0,60.0,50.0,63.0,65.0,58.0,47.0,45.0,40.0,47.0,47.0,42.0,48.0,38.0,49.0,33.0,51.0,56.0,38.0,45.0,35.0,33.0,23.0,39.0,33.0,31.0,33.0,33.0,26.0,18.0,15.0,9.0,7.0,10.0,23.0 A86022,36.0,34.0,33.0,35.0,37.0,42.0,41.0,40.0,37.0,63.0,44.0,48.0,47.0,46.0,52.0,45.0,57.0,52.0,40.0,43.0,36.0,36.0,27.0,27.0,45.0,37.0,51.0,50.0,38.0,67.0,44.0,69.0,56.0,56.0,58.0,52.0,45.0,56.0,52.0,61.0,44.0,56.0,54.0,46.0,58.0,64.0,58.0,47.0,48.0,63.0,53.0,56.0,48.0,68.0,52.0,47.0,42.0,53.0,57.0,54.0,60.0,63.0,57.0,64.0,71.0,83.0,67.0,60.0,44.0,62.0,46.0,55.0,48.0,41.0,54.0,48.0,62.0,51.0,50.0,37.0,39.0,39.0,41.0,37.0,39.0,24.0,28.0,21.0,26.0,22.0,13.0,6.0,9.0,4.0,4.0,16.0 A86023,45.0,33.0,40.0,40.0,52.0,51.0,45.0,43.0,43.0,47.0,48.0,60.0,46.0,53.0,41.0,48.0,50.0,47.0,45.0,47.0,54.0,64.0,74.0,70.0,89.0,82.0,91.0,105.0,90.0,93.0,88.0,82.0,82.0,82.0,91.0,81.0,62.0,93.0,90.0,98.0,74.0,63.0,80.0,51.0,69.0,53.0,64.0,57.0,55.0,51.0,50.0,47.0,68.0,68.0,54.0,66.0,56.0,55.0,50.0,71.0,63.0,64.0,73.0,63.0,56.0,48.0,62.0,56.0,81.0,66.0,56.0,59.0,46.0,49.0,27.0,37.0,39.0,38.0,39.0,28.0,30.0,19.0,27.0,20.0,15.0,23.0,16.0,17.0,8.0,5.0,6.0,8.0,5.0,2.0,1.0,4.0 A86024,30.0,36.0,26.0,32.0,40.0,29.0,37.0,37.0,36.0,20.0,34.0,38.0,48.0,34.0,36.0,39.0,34.0,31.0,32.0,32.0,38.0,64.0,56.0,50.0,65.0,70.0,73.0,72.0,68.0,63.0,80.0,84.0,81.0,74.0,73.0,61.0,69.0,51.0,48.0,64.0,54.0,38.0,45.0,49.0,41.0,43.0,29.0,37.0,31.0,43.0,27.0,37.0,36.0,34.0,41.0,40.0,39.0,31.0,41.0,38.0,31.0,39.0,34.0,41.0,32.0,42.0,27.0,29.0,23.0,17.0,16.0,29.0,16.0,21.0,11.0,22.0,23.0,22.0,18.0,14.0,18.0,27.0,12.0,15.0,15.0,9.0,20.0,11.0,13.0,7.0,8.0,6.0,4.0,4.0,3.0,8.0 A86025,51.0,67.0,69.0,92.0,85.0,74.0,91.0,90.0,106.0,117.0,105.0,96.0,115.0,97.0,98.0,117.0,92.0,79.0,98.0,74.0,70.0,67.0,73.0,76.0,80.0,73.0,82.0,89.0,101.0,85.0,115.0,101.0,106.0,132.0,102.0,119.0,103.0,139.0,108.0,101.0,109.0,95.0,101.0,101.0,113.0,85.0,74.0,66.0,88.0,94.0,77.0,59.0,68.0,93.0,72.0,87.0,72.0,90.0,85.0,82.0,90.0,90.0,90.0,80.0,90.0,84.0,95.0,80.0,73.0,61.0,46.0,57.0,55.0,43.0,50.0,59.0,58.0,52.0,49.0,30.0,43.0,32.0,27.0,26.0,27.0,18.0,18.0,26.0,15.0,18.0,8.0,10.0,5.0,4.0,2.0,6.0 A86026,33.0,49.0,37.0,46.0,38.0,39.0,46.0,39.0,46.0,42.0,43.0,48.0,43.0,40.0,36.0,39.0,43.0,47.0,40.0,34.0,39.0,38.0,31.0,36.0,36.0,37.0,47.0,51.0,55.0,42.0,45.0,56.0,47.0,55.0,47.0,55.0,55.0,58.0,66.0,50.0,56.0,54.0,46.0,59.0,40.0,61.0,49.0,41.0,41.0,38.0,44.0,25.0,45.0,41.0,62.0,46.0,46.0,57.0,51.0,39.0,66.0,71.0,47.0,46.0,38.0,49.0,51.0,45.0,46.0,32.0,30.0,38.0,25.0,34.0,38.0,37.0,40.0,40.0,38.0,46.0,35.0,33.0,26.0,14.0,21.0,14.0,17.0,19.0,10.0,13.0,17.0,17.0,9.0,12.0,3.0,11.0 A86027,22.0,11.0,17.0,15.0,17.0,18.0,13.0,17.0,10.0,17.0,8.0,12.0,12.0,8.0,13.0,11.0,13.0,32.0,267.0,743.0,906.0,865.0,831.0,777.0,899.0,650.0,624.0,446.0,293.0,268.0,192.0,158.0,148.0,113.0,102.0,74.0,91.0,79.0,40.0,34.0,37.0,31.0,34.0,26.0,25.0,18.0,23.0,22.0,10.0,18.0,16.0,18.0,22.0,22.0,18.0,24.0,11.0,8.0,13.0,15.0,7.0,16.0,13.0,11.0,12.0,11.0,9.0,18.0,9.0,8.0,2.0,6.0,8.0,7.0,7.0,3.0,5.0,3.0,5.0,3.0,4.0,5.0,2.0,1.0,1.0,4.0,1.0,2.0,2.0,,,,,1.0,,1.0 A86028,37.0,44.0,38.0,43.0,38.0,51.0,40.0,58.0,29.0,39.0,43.0,45.0,39.0,51.0,49.0,38.0,39.0,43.0,32.0,33.0,24.0,25.0,27.0,45.0,47.0,42.0,60.0,48.0,58.0,59.0,61.0,70.0,70.0,76.0,57.0,72.0,65.0,66.0,45.0,60.0,75.0,60.0,50.0,41.0,55.0,43.0,48.0,43.0,49.0,35.0,46.0,40.0,34.0,38.0,43.0,34.0,43.0,40.0,43.0,37.0,45.0,38.0,38.0,36.0,38.0,45.0,36.0,30.0,37.0,40.0,38.0,40.0,41.0,39.0,28.0,36.0,31.0,28.0,29.0,34.0,21.0,21.0,15.0,10.0,19.0,12.0,12.0,12.0,9.0,8.0,8.0,9.0,4.0,,4.0,5.0 A86029,39.0,72.0,48.0,56.0,68.0,52.0,75.0,86.0,82.0,84.0,68.0,90.0,72.0,83.0,99.0,91.0,70.0,98.0,255.0,495.0,431.0,352.0,337.0,329.0,335.0,281.0,193.0,200.0,176.0,146.0,112.0,135.0,108.0,93.0,109.0,98.0,107.0,106.0,117.0,97.0,91.0,86.0,83.0,99.0,100.0,72.0,85.0,71.0,81.0,78.0,81.0,91.0,77.0,72.0,103.0,80.0,94.0,78.0,73.0,72.0,86.0,95.0,84.0,74.0,67.0,74.0,69.0,71.0,67.0,63.0,61.0,50.0,58.0,52.0,32.0,49.0,43.0,60.0,54.0,40.0,34.0,27.0,22.0,32.0,32.0,29.0,25.0,23.0,19.0,17.0,14.0,10.0,5.0,9.0,4.0,14.0 A86030,52.0,57.0,62.0,62.0,46.0,56.0,60.0,77.0,73.0,76.0,69.0,77.0,84.0,67.0,78.0,68.0,77.0,70.0,59.0,49.0,53.0,62.0,68.0,53.0,55.0,50.0,59.0,67.0,60.0,71.0,70.0,70.0,87.0,81.0,84.0,92.0,84.0,72.0,82.0,91.0,89.0,83.0,94.0,76.0,80.0,65.0,62.0,54.0,67.0,58.0,69.0,63.0,44.0,69.0,73.0,65.0,72.0,75.0,54.0,52.0,72.0,84.0,70.0,56.0,67.0,53.0,63.0,63.0,56.0,39.0,45.0,44.0,45.0,40.0,47.0,46.0,39.0,44.0,33.0,31.0,17.0,14.0,28.0,21.0,23.0,14.0,17.0,23.0,13.0,12.0,9.0,5.0,10.0,6.0,7.0,18.0 A86031,46.0,59.0,59.0,59.0,60.0,71.0,75.0,78.0,58.0,61.0,70.0,82.0,83.0,83.0,75.0,71.0,68.0,70.0,80.0,63.0,68.0,67.0,67.0,74.0,70.0,80.0,68.0,90.0,83.0,91.0,91.0,79.0,88.0,79.0,91.0,89.0,93.0,101.0,78.0,87.0,82.0,78.0,97.0,87.0,77.0,79.0,68.0,59.0,59.0,50.0,53.0,65.0,56.0,59.0,55.0,67.0,59.0,63.0,63.0,54.0,55.0,50.0,46.0,46.0,54.0,57.0,54.0,37.0,42.0,42.0,41.0,43.0,33.0,37.0,30.0,22.0,27.0,25.0,19.0,21.0,30.0,18.0,19.0,18.0,13.0,18.0,11.0,13.0,9.0,18.0,13.0,10.0,5.0,11.0,6.0,23.0 A86033,60.0,54.0,56.0,65.0,57.0,70.0,58.0,75.0,63.0,95.0,56.0,67.0,67.0,60.0,61.0,71.0,54.0,67.0,39.0,34.0,23.0,19.0,22.0,23.0,26.0,23.0,33.0,48.0,45.0,64.0,70.0,70.0,74.0,73.0,79.0,76.0,84.0,88.0,95.0,88.0,84.0,85.0,87.0,94.0,82.0,64.0,70.0,44.0,46.0,64.0,50.0,49.0,60.0,45.0,44.0,35.0,48.0,37.0,36.0,39.0,33.0,34.0,34.0,36.0,29.0,31.0,39.0,19.0,33.0,40.0,22.0,21.0,23.0,20.0,27.0,19.0,18.0,23.0,22.0,12.0,23.0,16.0,14.0,16.0,20.0,18.0,5.0,16.0,10.0,10.0,14.0,11.0,6.0,7.0,2.0,13.0 A86037,63.0,36.0,43.0,44.0,28.0,62.0,38.0,39.0,52.0,62.0,44.0,46.0,49.0,44.0,48.0,53.0,51.0,59.0,42.0,48.0,52.0,49.0,50.0,55.0,55.0,56.0,61.0,69.0,70.0,55.0,61.0,55.0,61.0,42.0,52.0,55.0,53.0,58.0,42.0,50.0,40.0,55.0,46.0,55.0,47.0,43.0,35.0,34.0,45.0,41.0,42.0,42.0,34.0,41.0,34.0,27.0,17.0,36.0,32.0,34.0,27.0,37.0,30.0,25.0,16.0,32.0,24.0,25.0,24.0,22.0,18.0,13.0,22.0,14.0,24.0,22.0,14.0,9.0,13.0,11.0,5.0,11.0,11.0,14.0,2.0,7.0,2.0,10.0,4.0,2.0,6.0,5.0,,2.0,,6.0 A86038,28.0,28.0,30.0,24.0,24.0,30.0,41.0,37.0,43.0,34.0,39.0,34.0,31.0,34.0,29.0,22.0,40.0,36.0,29.0,34.0,30.0,24.0,32.0,30.0,40.0,36.0,41.0,42.0,45.0,51.0,56.0,50.0,40.0,50.0,44.0,30.0,55.0,39.0,47.0,49.0,47.0,31.0,45.0,42.0,40.0,46.0,43.0,26.0,32.0,28.0,32.0,44.0,38.0,45.0,35.0,36.0,37.0,46.0,37.0,47.0,42.0,42.0,47.0,44.0,41.0,40.0,41.0,32.0,29.0,37.0,30.0,43.0,31.0,27.0,27.0,27.0,24.0,37.0,33.0,19.0,20.0,20.0,20.0,22.0,17.0,13.0,15.0,13.0,13.0,11.0,8.0,6.0,5.0,3.0,3.0,12.0 A86040,31.0,39.0,38.0,51.0,48.0,58.0,51.0,53.0,47.0,58.0,56.0,48.0,55.0,58.0,52.0,39.0,48.0,53.0,44.0,31.0,25.0,49.0,49.0,45.0,31.0,38.0,39.0,48.0,47.0,40.0,49.0,61.0,47.0,52.0,60.0,69.0,67.0,62.0,70.0,54.0,55.0,48.0,58.0,50.0,37.0,49.0,45.0,35.0,42.0,30.0,31.0,31.0,33.0,40.0,46.0,30.0,38.0,37.0,35.0,43.0,42.0,42.0,48.0,37.0,35.0,40.0,25.0,25.0,24.0,28.0,26.0,15.0,28.0,22.0,18.0,31.0,16.0,18.0,22.0,10.0,14.0,8.0,9.0,7.0,3.0,9.0,10.0,6.0,6.0,4.0,4.0,3.0,5.0,1.0,2.0,1.0 A86041,31.0,43.0,28.0,48.0,38.0,43.0,45.0,35.0,40.0,24.0,39.0,30.0,44.0,41.0,41.0,39.0,33.0,25.0,40.0,35.0,28.0,31.0,24.0,37.0,33.0,36.0,35.0,44.0,37.0,42.0,36.0,62.0,48.0,66.0,71.0,63.0,53.0,58.0,59.0,54.0,53.0,57.0,55.0,55.0,46.0,47.0,45.0,34.0,36.0,26.0,34.0,32.0,31.0,31.0,30.0,34.0,42.0,32.0,48.0,37.0,32.0,39.0,45.0,47.0,41.0,38.0,50.0,35.0,35.0,33.0,40.0,38.0,24.0,26.0,33.0,31.0,28.0,30.0,34.0,22.0,24.0,18.0,19.0,14.0,13.0,17.0,12.0,16.0,10.0,7.0,8.0,7.0,6.0,6.0,4.0,9.0 A86601,34.0,43.0,45.0,35.0,44.0,41.0,54.0,51.0,61.0,45.0,52.0,42.0,54.0,35.0,60.0,54.0,46.0,50.0,38.0,39.0,42.0,38.0,40.0,65.0,49.0,66.0,47.0,50.0,65.0,57.0,55.0,74.0,64.0,67.0,70.0,78.0,57.0,67.0,72.0,57.0,63.0,50.0,65.0,72.0,52.0,51.0,54.0,52.0,57.0,56.0,39.0,46.0,64.0,63.0,66.0,61.0,64.0,61.0,69.0,71.0,55.0,64.0,68.0,59.0,45.0,51.0,58.0,58.0,42.0,50.0,42.0,37.0,46.0,47.0,48.0,47.0,36.0,39.0,43.0,37.0,30.0,27.0,21.0,20.0,20.0,25.0,32.0,25.0,19.0,13.0,9.0,7.0,10.0,6.0,5.0,8.0 A87002,25.0,19.0,22.0,22.0,16.0,25.0,23.0,20.0,24.0,21.0,24.0,24.0,28.0,29.0,18.0,25.0,16.0,28.0,23.0,23.0,25.0,25.0,28.0,37.0,35.0,42.0,26.0,29.0,36.0,40.0,34.0,52.0,38.0,36.0,42.0,36.0,34.0,40.0,34.0,33.0,42.0,33.0,23.0,25.0,38.0,32.0,35.0,29.0,38.0,41.0,30.0,37.0,41.0,35.0,42.0,47.0,39.0,42.0,47.0,51.0,51.0,48.0,56.0,46.0,38.0,45.0,37.0,52.0,29.0,39.0,38.0,43.0,36.0,34.0,23.0,32.0,26.0,37.0,30.0,28.0,26.0,34.0,22.0,17.0,34.0,15.0,15.0,15.0,21.0,15.0,13.0,11.0,9.0,3.0,6.0,6.0 A87004,96.0,95.0,95.0,116.0,110.0,97.0,125.0,116.0,144.0,141.0,129.0,110.0,125.0,126.0,127.0,120.0,145.0,134.0,105.0,104.0,113.0,115.0,119.0,104.0,143.0,129.0,149.0,153.0,168.0,170.0,162.0,162.0,179.0,180.0,167.0,173.0,164.0,167.0,198.0,150.0,179.0,174.0,158.0,158.0,168.0,156.0,146.0,122.0,157.0,153.0,163.0,174.0,161.0,182.0,176.0,178.0,170.0,166.0,175.0,167.0,190.0,181.0,172.0,163.0,135.0,174.0,150.0,160.0,155.0,145.0,144.0,136.0,123.0,145.0,159.0,134.0,142.0,133.0,146.0,102.0,109.0,93.0,77.0,70.0,62.0,69.0,48.0,59.0,52.0,34.0,43.0,37.0,17.0,24.0,12.0,34.0 A87005,38.0,52.0,61.0,55.0,57.0,69.0,81.0,86.0,77.0,70.0,63.0,81.0,62.0,82.0,69.0,85.0,54.0,74.0,59.0,46.0,48.0,55.0,45.0,56.0,54.0,52.0,53.0,55.0,51.0,62.0,46.0,65.0,68.0,93.0,72.0,88.0,90.0,94.0,104.0,92.0,94.0,104.0,74.0,94.0,119.0,112.0,96.0,81.0,95.0,80.0,81.0,90.0,89.0,100.0,102.0,96.0,97.0,83.0,95.0,68.0,100.0,97.0,114.0,92.0,94.0,92.0,94.0,116.0,104.0,98.0,104.0,90.0,102.0,78.0,82.0,97.0,104.0,92.0,94.0,72.0,81.0,63.0,60.0,48.0,58.0,63.0,42.0,53.0,40.0,30.0,26.0,21.0,15.0,11.0,5.0,27.0 A87006,21.0,21.0,19.0,22.0,27.0,20.0,27.0,31.0,18.0,19.0,22.0,30.0,21.0,22.0,28.0,33.0,27.0,25.0,34.0,22.0,27.0,13.0,20.0,29.0,31.0,25.0,24.0,29.0,20.0,21.0,27.0,24.0,30.0,26.0,22.0,36.0,35.0,41.0,41.0,33.0,30.0,44.0,27.0,40.0,36.0,35.0,29.0,35.0,38.0,31.0,45.0,33.0,37.0,48.0,39.0,33.0,49.0,38.0,42.0,34.0,38.0,49.0,49.0,43.0,42.0,51.0,33.0,41.0,30.0,36.0,39.0,38.0,41.0,45.0,30.0,33.0,43.0,39.0,47.0,38.0,27.0,25.0,16.0,22.0,25.0,34.0,26.0,27.0,23.0,15.0,15.0,10.0,12.0,12.0,9.0,15.0 A87007,75.0,67.0,70.0,88.0,95.0,81.0,85.0,103.0,100.0,89.0,115.0,87.0,83.0,100.0,99.0,120.0,106.0,89.0,98.0,93.0,89.0,77.0,82.0,68.0,88.0,102.0,97.0,108.0,117.0,121.0,88.0,106.0,108.0,120.0,119.0,128.0,121.0,143.0,136.0,136.0,130.0,141.0,141.0,116.0,114.0,128.0,114.0,95.0,78.0,101.0,98.0,116.0,115.0,123.0,131.0,127.0,127.0,119.0,128.0,138.0,120.0,122.0,124.0,131.0,119.0,118.0,128.0,110.0,97.0,95.0,109.0,94.0,97.0,82.0,94.0,90.0,89.0,97.0,103.0,58.0,72.0,48.0,45.0,34.0,38.0,41.0,31.0,43.0,34.0,32.0,19.0,21.0,11.0,12.0,6.0,13.0 A87008,30.0,40.0,41.0,48.0,39.0,50.0,58.0,67.0,63.0,83.0,71.0,61.0,67.0,68.0,61.0,57.0,63.0,57.0,52.0,45.0,27.0,33.0,36.0,38.0,31.0,39.0,25.0,36.0,38.0,39.0,41.0,33.0,50.0,51.0,61.0,54.0,65.0,65.0,60.0,44.0,79.0,91.0,77.0,88.0,86.0,95.0,78.0,70.0,73.0,73.0,64.0,68.0,70.0,66.0,50.0,61.0,71.0,62.0,60.0,59.0,42.0,61.0,44.0,50.0,60.0,44.0,40.0,48.0,51.0,29.0,38.0,35.0,48.0,39.0,35.0,48.0,44.0,53.0,49.0,46.0,38.0,30.0,38.0,29.0,27.0,26.0,23.0,23.0,13.0,14.0,11.0,10.0,6.0,13.0,6.0,11.0 A87009,46.0,70.0,57.0,68.0,74.0,74.0,92.0,80.0,76.0,82.0,91.0,74.0,91.0,87.0,94.0,86.0,80.0,75.0,74.0,55.0,48.0,59.0,62.0,64.0,74.0,66.0,71.0,74.0,85.0,94.0,96.0,94.0,108.0,107.0,108.0,110.0,113.0,112.0,112.0,115.0,131.0,95.0,133.0,129.0,128.0,121.0,116.0,92.0,100.0,114.0,105.0,96.0,107.0,117.0,121.0,107.0,113.0,111.0,107.0,119.0,118.0,117.0,115.0,120.0,87.0,101.0,98.0,106.0,100.0,111.0,82.0,99.0,95.0,86.0,74.0,78.0,55.0,70.0,71.0,49.0,47.0,37.0,38.0,37.0,42.0,25.0,26.0,24.0,28.0,18.0,20.0,18.0,17.0,5.0,4.0,23.0 A87011,19.0,14.0,15.0,22.0,29.0,24.0,27.0,35.0,37.0,32.0,36.0,38.0,37.0,37.0,52.0,28.0,51.0,26.0,31.0,34.0,28.0,25.0,29.0,23.0,11.0,23.0,24.0,21.0,23.0,29.0,22.0,24.0,21.0,21.0,30.0,18.0,33.0,28.0,33.0,41.0,45.0,51.0,55.0,45.0,55.0,54.0,45.0,57.0,47.0,32.0,44.0,46.0,37.0,52.0,58.0,48.0,50.0,51.0,47.0,48.0,50.0,53.0,52.0,48.0,47.0,40.0,42.0,47.0,41.0,36.0,56.0,38.0,45.0,39.0,47.0,46.0,37.0,38.0,44.0,30.0,32.0,35.0,18.0,21.0,18.0,25.0,15.0,13.0,21.0,10.0,13.0,9.0,2.0,5.0,3.0,11.0 A87012,31.0,31.0,41.0,34.0,35.0,41.0,48.0,40.0,33.0,48.0,39.0,38.0,35.0,26.0,46.0,30.0,23.0,39.0,47.0,43.0,39.0,39.0,25.0,34.0,24.0,35.0,45.0,35.0,54.0,49.0,47.0,56.0,46.0,50.0,50.0,52.0,67.0,66.0,49.0,52.0,47.0,58.0,40.0,45.0,41.0,38.0,40.0,34.0,39.0,38.0,49.0,53.0,51.0,53.0,63.0,57.0,55.0,54.0,58.0,57.0,63.0,56.0,55.0,64.0,60.0,54.0,57.0,47.0,42.0,51.0,38.0,51.0,50.0,41.0,41.0,58.0,40.0,58.0,44.0,40.0,20.0,24.0,28.0,15.0,24.0,18.0,17.0,25.0,19.0,21.0,14.0,10.0,7.0,4.0,4.0,10.0 A87013,40.0,32.0,34.0,35.0,42.0,35.0,45.0,49.0,49.0,47.0,45.0,50.0,62.0,59.0,64.0,59.0,56.0,52.0,59.0,51.0,49.0,44.0,52.0,50.0,52.0,49.0,53.0,63.0,55.0,62.0,67.0,61.0,66.0,60.0,62.0,63.0,72.0,86.0,65.0,64.0,74.0,60.0,56.0,84.0,73.0,67.0,76.0,49.0,49.0,43.0,62.0,64.0,43.0,57.0,68.0,61.0,51.0,62.0,64.0,59.0,63.0,68.0,58.0,61.0,59.0,66.0,76.0,66.0,54.0,43.0,59.0,65.0,57.0,37.0,44.0,33.0,43.0,51.0,45.0,30.0,32.0,45.0,32.0,19.0,22.0,19.0,20.0,16.0,15.0,13.0,11.0,12.0,8.0,6.0,9.0,14.0 A87016,65.0,40.0,74.0,61.0,53.0,56.0,74.0,63.0,50.0,64.0,69.0,70.0,67.0,67.0,62.0,72.0,49.0,72.0,62.0,56.0,74.0,66.0,54.0,57.0,69.0,74.0,82.0,99.0,95.0,101.0,112.0,131.0,95.0,100.0,99.0,94.0,96.0,96.0,106.0,105.0,85.0,98.0,89.0,90.0,105.0,113.0,70.0,65.0,79.0,86.0,74.0,75.0,78.0,70.0,85.0,71.0,89.0,64.0,83.0,94.0,78.0,78.0,85.0,84.0,72.0,86.0,74.0,78.0,66.0,76.0,72.0,71.0,67.0,60.0,60.0,62.0,58.0,61.0,53.0,29.0,38.0,35.0,23.0,24.0,23.0,21.0,21.0,17.0,15.0,14.0,9.0,9.0,6.0,3.0,4.0,9.0 A87017,35.0,41.0,31.0,37.0,36.0,30.0,38.0,43.0,38.0,38.0,25.0,37.0,36.0,31.0,30.0,32.0,23.0,24.0,18.0,21.0,19.0,22.0,24.0,27.0,28.0,32.0,39.0,43.0,35.0,48.0,37.0,43.0,53.0,64.0,58.0,47.0,61.0,49.0,55.0,37.0,39.0,58.0,39.0,41.0,47.0,44.0,40.0,30.0,32.0,42.0,40.0,33.0,31.0,45.0,50.0,41.0,35.0,45.0,44.0,43.0,41.0,49.0,47.0,50.0,42.0,47.0,39.0,45.0,47.0,47.0,52.0,43.0,39.0,38.0,52.0,48.0,48.0,46.0,43.0,26.0,34.0,29.0,20.0,24.0,16.0,21.0,22.0,24.0,20.0,9.0,10.0,7.0,10.0,11.0,6.0,16.0 A87019,17.0,21.0,18.0,18.0,15.0,20.0,23.0,20.0,28.0,21.0,27.0,23.0,28.0,30.0,27.0,23.0,28.0,28.0,33.0,35.0,19.0,30.0,24.0,14.0,22.0,13.0,30.0,28.0,34.0,36.0,27.0,37.0,30.0,38.0,34.0,31.0,40.0,29.0,31.0,31.0,36.0,37.0,32.0,28.0,22.0,24.0,29.0,17.0,29.0,26.0,27.0,22.0,31.0,34.0,39.0,39.0,38.0,38.0,29.0,34.0,56.0,31.0,43.0,45.0,41.0,28.0,31.0,37.0,23.0,26.0,28.0,32.0,28.0,18.0,16.0,29.0,20.0,33.0,31.0,16.0,24.0,20.0,19.0,14.0,8.0,10.0,13.0,12.0,12.0,13.0,12.0,7.0,6.0,4.0,2.0,9.0 A87020,37.0,34.0,39.0,47.0,40.0,53.0,74.0,54.0,60.0,83.0,70.0,84.0,75.0,73.0,76.0,74.0,65.0,85.0,70.0,59.0,82.0,56.0,72.0,58.0,60.0,41.0,45.0,55.0,42.0,51.0,55.0,42.0,52.0,71.0,80.0,70.0,77.0,64.0,72.0,88.0,87.0,96.0,110.0,97.0,102.0,99.0,100.0,96.0,82.0,103.0,96.0,96.0,109.0,117.0,101.0,108.0,95.0,100.0,106.0,93.0,108.0,102.0,95.0,104.0,106.0,100.0,100.0,91.0,87.0,81.0,74.0,76.0,79.0,78.0,74.0,94.0,87.0,89.0,85.0,57.0,63.0,68.0,50.0,40.0,35.0,46.0,42.0,26.0,36.0,30.0,18.0,20.0,10.0,17.0,13.0,26.0 A87022,58.0,56.0,60.0,51.0,57.0,62.0,66.0,52.0,61.0,70.0,64.0,53.0,63.0,66.0,53.0,52.0,57.0,54.0,46.0,40.0,44.0,45.0,46.0,35.0,38.0,54.0,56.0,66.0,71.0,70.0,81.0,73.0,88.0,109.0,100.0,92.0,83.0,87.0,94.0,117.0,82.0,87.0,71.0,74.0,73.0,92.0,82.0,67.0,77.0,62.0,64.0,51.0,67.0,63.0,62.0,58.0,56.0,49.0,58.0,49.0,51.0,40.0,55.0,48.0,48.0,41.0,54.0,43.0,53.0,45.0,40.0,39.0,32.0,25.0,26.0,25.0,34.0,33.0,25.0,16.0,16.0,11.0,12.0,13.0,10.0,11.0,9.0,14.0,10.0,8.0,5.0,6.0,4.0,5.0,3.0,12.0 A87029,91.0,103.0,106.0,83.0,103.0,106.0,103.0,98.0,89.0,124.0,78.0,119.0,125.0,116.0,107.0,109.0,111.0,116.0,104.0,123.0,93.0,89.0,95.0,97.0,114.0,112.0,123.0,162.0,144.0,158.0,151.0,171.0,176.0,164.0,196.0,167.0,147.0,162.0,163.0,180.0,164.0,159.0,165.0,156.0,148.0,142.0,142.0,100.0,93.0,110.0,112.0,108.0,131.0,138.0,129.0,127.0,135.0,119.0,131.0,141.0,149.0,140.0,141.0,142.0,143.0,134.0,123.0,125.0,124.0,131.0,129.0,101.0,122.0,97.0,92.0,95.0,89.0,106.0,110.0,70.0,69.0,58.0,59.0,51.0,34.0,53.0,43.0,34.0,34.0,20.0,25.0,18.0,22.0,15.0,7.0,23.0 A87030,27.0,31.0,32.0,33.0,25.0,46.0,38.0,49.0,46.0,38.0,46.0,41.0,59.0,43.0,49.0,55.0,67.0,45.0,34.0,39.0,48.0,37.0,31.0,38.0,37.0,35.0,33.0,43.0,46.0,51.0,59.0,46.0,51.0,63.0,58.0,55.0,58.0,66.0,55.0,54.0,58.0,55.0,44.0,49.0,43.0,35.0,30.0,30.0,20.0,39.0,31.0,42.0,45.0,43.0,47.0,35.0,49.0,51.0,35.0,42.0,43.0,39.0,36.0,29.0,35.0,28.0,33.0,32.0,19.0,26.0,21.0,23.0,22.0,20.0,13.0,9.0,11.0,22.0,14.0,12.0,10.0,12.0,12.0,6.0,8.0,7.0,4.0,6.0,7.0,7.0,3.0,1.0,2.0,1.0,5.0,6.0 A87600,14.0,30.0,26.0,26.0,30.0,15.0,33.0,19.0,28.0,13.0,27.0,17.0,28.0,35.0,29.0,25.0,25.0,21.0,20.0,27.0,31.0,15.0,11.0,30.0,18.0,20.0,34.0,26.0,20.0,31.0,27.0,32.0,25.0,23.0,25.0,26.0,32.0,35.0,36.0,36.0,28.0,27.0,33.0,40.0,38.0,36.0,31.0,42.0,33.0,28.0,27.0,43.0,36.0,41.0,41.0,28.0,45.0,38.0,38.0,41.0,35.0,31.0,29.0,31.0,30.0,27.0,23.0,21.0,34.0,20.0,22.0,35.0,21.0,28.0,22.0,27.0,22.0,19.0,36.0,22.0,27.0,15.0,23.0,13.0,19.0,24.0,7.0,15.0,12.0,9.0,10.0,7.0,7.0,2.0,4.0,12.0 A87612,28.0,28.0,33.0,37.0,34.0,32.0,33.0,32.0,37.0,37.0,33.0,31.0,42.0,42.0,36.0,39.0,27.0,48.0,37.0,32.0,28.0,30.0,27.0,31.0,31.0,32.0,30.0,41.0,42.0,45.0,44.0,55.0,43.0,55.0,52.0,43.0,48.0,55.0,52.0,40.0,42.0,54.0,56.0,52.0,52.0,50.0,38.0,38.0,56.0,39.0,49.0,39.0,47.0,38.0,42.0,55.0,56.0,48.0,42.0,36.0,44.0,44.0,50.0,43.0,42.0,39.0,35.0,38.0,32.0,36.0,35.0,44.0,30.0,37.0,36.0,35.0,28.0,44.0,32.0,26.0,32.0,16.0,21.0,11.0,13.0,13.0,17.0,17.0,6.0,7.0,8.0,5.0,6.0,4.0,3.0,8.0 A87615,25.0,24.0,30.0,31.0,29.0,24.0,43.0,20.0,32.0,42.0,19.0,51.0,30.0,30.0,31.0,28.0,36.0,29.0,32.0,29.0,19.0,26.0,29.0,20.0,30.0,33.0,40.0,39.0,46.0,44.0,38.0,40.0,43.0,28.0,43.0,35.0,54.0,56.0,45.0,46.0,43.0,47.0,34.0,34.0,34.0,50.0,40.0,32.0,33.0,33.0,31.0,28.0,30.0,32.0,44.0,30.0,29.0,25.0,29.0,35.0,31.0,36.0,30.0,26.0,31.0,24.0,30.0,36.0,31.0,26.0,25.0,23.0,31.0,19.0,36.0,25.0,36.0,38.0,25.0,23.0,18.0,20.0,15.0,17.0,10.0,6.0,11.0,8.0,7.0,7.0,4.0,1.0,4.0,2.0,2.0,6.0 A88001,11.0,16.0,17.0,16.0,18.0,20.0,24.0,21.0,16.0,20.0,13.0,20.0,19.0,19.0,10.0,19.0,20.0,14.0,25.0,13.0,12.0,12.0,12.0,12.0,16.0,16.0,25.0,20.0,19.0,27.0,17.0,26.0,27.0,25.0,28.0,28.0,31.0,25.0,29.0,24.0,26.0,25.0,29.0,34.0,14.0,20.0,34.0,27.0,22.0,23.0,21.0,21.0,16.0,16.0,20.0,16.0,20.0,15.0,29.0,17.0,16.0,23.0,28.0,30.0,19.0,24.0,25.0,19.0,17.0,18.0,15.0,12.0,15.0,21.0,18.0,22.0,14.0,18.0,25.0,11.0,18.0,7.0,14.0,9.0,14.0,7.0,5.0,10.0,5.0,10.0,3.0,7.0,3.0,1.0,3.0,12.0 A88002,56.0,77.0,77.0,76.0,78.0,83.0,63.0,95.0,108.0,89.0,86.0,102.0,92.0,81.0,94.0,69.0,85.0,96.0,74.0,72.0,79.0,85.0,72.0,74.0,71.0,77.0,81.0,82.0,102.0,103.0,124.0,119.0,110.0,107.0,135.0,139.0,146.0,123.0,132.0,139.0,120.0,114.0,114.0,98.0,109.0,107.0,94.0,70.0,92.0,80.0,91.0,81.0,86.0,101.0,97.0,82.0,98.0,121.0,108.0,115.0,130.0,130.0,132.0,130.0,116.0,111.0,128.0,119.0,121.0,102.0,90.0,81.0,95.0,85.0,76.0,83.0,68.0,79.0,69.0,64.0,62.0,50.0,47.0,46.0,40.0,32.0,34.0,34.0,35.0,28.0,26.0,23.0,24.0,10.0,12.0,20.0 A88003,86.0,96.0,98.0,94.0,95.0,90.0,103.0,121.0,107.0,111.0,88.0,102.0,104.0,126.0,120.0,117.0,117.0,127.0,116.0,113.0,99.0,108.0,106.0,103.0,117.0,106.0,134.0,127.0,152.0,151.0,146.0,157.0,162.0,149.0,135.0,121.0,144.0,172.0,150.0,151.0,140.0,147.0,122.0,144.0,151.0,121.0,136.0,120.0,105.0,113.0,136.0,118.0,131.0,158.0,151.0,149.0,176.0,145.0,170.0,175.0,169.0,175.0,163.0,166.0,178.0,169.0,135.0,139.0,137.0,154.0,126.0,136.0,154.0,93.0,107.0,120.0,97.0,151.0,128.0,94.0,94.0,77.0,74.0,62.0,62.0,69.0,66.0,54.0,52.0,43.0,26.0,34.0,23.0,20.0,15.0,41.0 A88004,26.0,41.0,41.0,46.0,40.0,45.0,41.0,40.0,43.0,44.0,36.0,47.0,57.0,64.0,52.0,66.0,52.0,60.0,50.0,52.0,45.0,48.0,40.0,47.0,49.0,54.0,33.0,41.0,49.0,43.0,43.0,52.0,59.0,54.0,59.0,67.0,66.0,67.0,82.0,66.0,59.0,54.0,68.0,57.0,61.0,60.0,53.0,55.0,56.0,54.0,63.0,65.0,66.0,67.0,62.0,64.0,68.0,60.0,71.0,73.0,55.0,64.0,62.0,56.0,66.0,50.0,56.0,52.0,51.0,57.0,64.0,51.0,49.0,37.0,47.0,47.0,39.0,52.0,36.0,26.0,28.0,40.0,28.0,28.0,20.0,26.0,19.0,22.0,15.0,15.0,10.0,8.0,5.0,6.0,1.0,11.0 A88005,20.0,19.0,25.0,24.0,30.0,20.0,22.0,29.0,22.0,25.0,20.0,24.0,35.0,39.0,31.0,30.0,25.0,26.0,37.0,16.0,25.0,18.0,23.0,22.0,31.0,27.0,21.0,21.0,28.0,26.0,27.0,28.0,33.0,21.0,23.0,27.0,33.0,30.0,40.0,36.0,26.0,28.0,28.0,22.0,31.0,43.0,19.0,13.0,22.0,20.0,13.0,20.0,20.0,18.0,25.0,26.0,18.0,24.0,17.0,31.0,40.0,22.0,29.0,27.0,34.0,28.0,29.0,33.0,14.0,21.0,18.0,28.0,16.0,18.0,16.0,15.0,23.0,16.0,16.0,18.0,10.0,13.0,10.0,7.0,10.0,7.0,9.0,4.0,12.0,4.0,8.0,6.0,1.0,2.0,1.0,3.0 A88006,24.0,31.0,42.0,33.0,30.0,38.0,40.0,45.0,46.0,43.0,59.0,47.0,47.0,42.0,48.0,59.0,37.0,43.0,42.0,35.0,44.0,29.0,25.0,40.0,36.0,39.0,51.0,41.0,44.0,39.0,46.0,44.0,58.0,49.0,55.0,62.0,73.0,56.0,57.0,54.0,61.0,61.0,48.0,36.0,37.0,49.0,40.0,43.0,33.0,41.0,33.0,42.0,41.0,53.0,44.0,50.0,68.0,52.0,65.0,67.0,69.0,60.0,57.0,66.0,52.0,67.0,55.0,58.0,66.0,57.0,42.0,43.0,44.0,39.0,61.0,37.0,51.0,46.0,27.0,25.0,28.0,27.0,25.0,26.0,13.0,23.0,16.0,19.0,14.0,5.0,10.0,11.0,7.0,5.0,6.0,8.0 A88008,25.0,30.0,27.0,34.0,23.0,19.0,28.0,26.0,26.0,31.0,31.0,37.0,24.0,31.0,24.0,32.0,30.0,32.0,29.0,23.0,32.0,31.0,29.0,28.0,38.0,38.0,52.0,41.0,29.0,29.0,44.0,45.0,31.0,33.0,49.0,46.0,44.0,40.0,51.0,37.0,39.0,39.0,35.0,33.0,42.0,43.0,28.0,36.0,36.0,21.0,39.0,33.0,38.0,33.0,41.0,37.0,31.0,45.0,34.0,38.0,32.0,36.0,43.0,43.0,45.0,40.0,39.0,45.0,41.0,38.0,30.0,43.0,44.0,44.0,33.0,33.0,27.0,44.0,39.0,28.0,15.0,17.0,16.0,13.0,18.0,14.0,6.0,12.0,9.0,12.0,7.0,4.0,9.0,1.0,2.0,11.0 A88009,16.0,24.0,24.0,19.0,25.0,24.0,26.0,37.0,34.0,29.0,31.0,27.0,28.0,36.0,29.0,33.0,22.0,29.0,32.0,27.0,17.0,23.0,28.0,32.0,29.0,31.0,26.0,35.0,27.0,28.0,27.0,25.0,31.0,34.0,42.0,33.0,25.0,30.0,49.0,31.0,48.0,45.0,28.0,33.0,35.0,33.0,29.0,22.0,28.0,31.0,30.0,42.0,40.0,58.0,46.0,43.0,40.0,54.0,51.0,54.0,51.0,53.0,59.0,52.0,41.0,46.0,52.0,34.0,38.0,27.0,35.0,33.0,37.0,32.0,37.0,37.0,34.0,31.0,34.0,29.0,26.0,20.0,23.0,17.0,26.0,24.0,22.0,15.0,20.0,12.0,11.0,9.0,2.0,8.0,8.0,14.0 A88010,14.0,17.0,21.0,17.0,13.0,12.0,14.0,13.0,11.0,14.0,22.0,18.0,13.0,23.0,14.0,15.0,15.0,14.0,17.0,10.0,12.0,20.0,22.0,23.0,8.0,20.0,23.0,23.0,22.0,16.0,17.0,33.0,27.0,17.0,33.0,27.0,24.0,17.0,17.0,27.0,24.0,22.0,17.0,23.0,17.0,17.0,20.0,10.0,21.0,18.0,13.0,20.0,20.0,24.0,28.0,24.0,23.0,25.0,25.0,25.0,34.0,19.0,21.0,27.0,26.0,20.0,24.0,25.0,17.0,21.0,21.0,23.0,16.0,17.0,15.0,21.0,16.0,21.0,25.0,18.0,8.0,17.0,11.0,14.0,15.0,5.0,10.0,7.0,4.0,6.0,3.0,5.0,4.0,4.0,2.0,6.0 A88012,22.0,22.0,31.0,29.0,28.0,36.0,43.0,32.0,30.0,34.0,39.0,35.0,26.0,33.0,47.0,20.0,31.0,36.0,21.0,31.0,29.0,39.0,27.0,19.0,15.0,32.0,24.0,38.0,27.0,33.0,45.0,49.0,40.0,40.0,50.0,51.0,54.0,58.0,42.0,42.0,48.0,46.0,38.0,43.0,41.0,27.0,32.0,24.0,36.0,29.0,36.0,40.0,32.0,40.0,33.0,32.0,46.0,47.0,48.0,50.0,53.0,48.0,41.0,53.0,46.0,46.0,51.0,53.0,38.0,34.0,33.0,46.0,33.0,29.0,28.0,32.0,25.0,30.0,24.0,24.0,22.0,15.0,10.0,10.0,16.0,7.0,14.0,8.0,15.0,7.0,5.0,8.0,3.0,6.0,2.0,7.0 A88013,76.0,84.0,88.0,94.0,102.0,94.0,129.0,110.0,109.0,110.0,130.0,128.0,107.0,119.0,125.0,117.0,126.0,103.0,99.0,106.0,91.0,96.0,89.0,105.0,96.0,100.0,104.0,110.0,117.0,133.0,134.0,107.0,137.0,177.0,154.0,151.0,148.0,146.0,162.0,164.0,151.0,128.0,124.0,148.0,121.0,129.0,126.0,117.0,103.0,116.0,108.0,108.0,115.0,113.0,117.0,121.0,130.0,115.0,143.0,116.0,136.0,128.0,123.0,135.0,116.0,119.0,117.0,114.0,99.0,103.0,102.0,90.0,79.0,78.0,86.0,93.0,87.0,90.0,88.0,66.0,82.0,59.0,44.0,44.0,32.0,37.0,40.0,36.0,31.0,25.0,30.0,16.0,19.0,20.0,9.0,28.0 A88014,8.0,13.0,15.0,15.0,10.0,11.0,16.0,17.0,15.0,12.0,16.0,11.0,8.0,8.0,18.0,9.0,7.0,12.0,13.0,14.0,13.0,18.0,12.0,16.0,19.0,17.0,14.0,10.0,19.0,13.0,18.0,28.0,16.0,18.0,13.0,13.0,21.0,18.0,18.0,23.0,13.0,17.0,16.0,23.0,17.0,8.0,9.0,8.0,9.0,8.0,12.0,11.0,10.0,14.0,17.0,16.0,15.0,15.0,16.0,15.0,17.0,9.0,10.0,18.0,12.0,13.0,15.0,11.0,15.0,12.0,10.0,8.0,7.0,5.0,13.0,5.0,11.0,7.0,8.0,8.0,6.0,4.0,4.0,5.0,8.0,3.0,4.0,6.0,2.0,5.0,1.0,1.0,2.0,,,1.0 A88015,35.0,30.0,38.0,42.0,41.0,33.0,35.0,39.0,35.0,40.0,35.0,45.0,32.0,37.0,32.0,50.0,35.0,47.0,43.0,41.0,42.0,39.0,41.0,39.0,49.0,35.0,44.0,43.0,43.0,41.0,58.0,40.0,41.0,44.0,43.0,59.0,46.0,49.0,46.0,45.0,56.0,42.0,41.0,38.0,49.0,63.0,36.0,38.0,38.0,38.0,28.0,45.0,34.0,38.0,48.0,40.0,46.0,41.0,53.0,59.0,43.0,46.0,52.0,38.0,55.0,46.0,44.0,54.0,35.0,33.0,33.0,46.0,33.0,31.0,35.0,30.0,25.0,24.0,29.0,22.0,19.0,21.0,22.0,16.0,15.0,12.0,12.0,13.0,11.0,4.0,6.0,4.0,8.0,6.0,5.0,2.0 A88016,29.0,26.0,32.0,39.0,44.0,42.0,40.0,50.0,47.0,48.0,35.0,47.0,66.0,47.0,46.0,45.0,55.0,65.0,44.0,34.0,51.0,41.0,44.0,52.0,39.0,51.0,40.0,34.0,25.0,44.0,39.0,47.0,46.0,48.0,66.0,51.0,50.0,56.0,65.0,53.0,47.0,50.0,52.0,44.0,63.0,66.0,63.0,48.0,49.0,56.0,65.0,64.0,45.0,78.0,61.0,79.0,60.0,62.0,60.0,60.0,48.0,69.0,65.0,52.0,65.0,58.0,59.0,43.0,60.0,50.0,47.0,54.0,49.0,50.0,51.0,43.0,47.0,44.0,50.0,34.0,40.0,41.0,32.0,18.0,30.0,23.0,24.0,19.0,20.0,11.0,11.0,13.0,8.0,4.0,3.0,15.0 A88022,43.0,77.0,56.0,67.0,73.0,50.0,65.0,77.0,69.0,57.0,79.0,68.0,78.0,68.0,78.0,64.0,80.0,61.0,57.0,59.0,50.0,55.0,42.0,67.0,65.0,58.0,58.0,92.0,68.0,80.0,98.0,93.0,72.0,97.0,84.0,90.0,93.0,84.0,113.0,97.0,96.0,97.0,76.0,90.0,103.0,77.0,81.0,60.0,52.0,72.0,69.0,46.0,54.0,77.0,74.0,72.0,66.0,87.0,71.0,76.0,88.0,68.0,59.0,70.0,82.0,51.0,64.0,67.0,52.0,61.0,42.0,55.0,53.0,54.0,32.0,39.0,35.0,39.0,41.0,34.0,36.0,40.0,24.0,13.0,21.0,17.0,20.0,18.0,14.0,20.0,6.0,7.0,7.0,6.0,8.0,18.0 A88023,13.0,21.0,20.0,23.0,16.0,20.0,24.0,21.0,28.0,23.0,24.0,25.0,31.0,29.0,36.0,32.0,39.0,35.0,30.0,24.0,27.0,18.0,15.0,22.0,26.0,21.0,21.0,17.0,23.0,28.0,21.0,31.0,19.0,38.0,16.0,21.0,41.0,32.0,42.0,31.0,34.0,31.0,29.0,42.0,32.0,45.0,37.0,32.0,26.0,32.0,36.0,41.0,49.0,39.0,43.0,25.0,44.0,38.0,54.0,56.0,44.0,53.0,46.0,35.0,40.0,46.0,45.0,32.0,33.0,35.0,33.0,33.0,26.0,29.0,36.0,27.0,52.0,45.0,33.0,26.0,32.0,26.0,26.0,12.0,17.0,13.0,20.0,22.0,17.0,7.0,7.0,10.0,5.0,8.0,4.0,6.0 A88025,9.0,13.0,16.0,8.0,11.0,17.0,16.0,21.0,21.0,27.0,21.0,25.0,22.0,29.0,18.0,22.0,32.0,31.0,21.0,33.0,22.0,26.0,17.0,23.0,16.0,13.0,14.0,21.0,20.0,22.0,22.0,18.0,29.0,19.0,30.0,31.0,21.0,20.0,23.0,35.0,28.0,27.0,27.0,21.0,19.0,29.0,30.0,21.0,31.0,23.0,20.0,29.0,29.0,31.0,37.0,30.0,39.0,39.0,33.0,38.0,51.0,38.0,43.0,36.0,37.0,38.0,29.0,29.0,35.0,31.0,34.0,35.0,32.0,26.0,33.0,22.0,29.0,21.0,21.0,21.0,15.0,23.0,14.0,12.0,12.0,12.0,18.0,14.0,11.0,6.0,11.0,6.0,3.0,5.0,2.0,9.0 A88601,16.0,25.0,19.0,13.0,16.0,19.0,25.0,17.0,19.0,23.0,21.0,16.0,26.0,26.0,27.0,15.0,15.0,10.0,19.0,12.0,17.0,14.0,18.0,18.0,25.0,23.0,24.0,23.0,32.0,41.0,36.0,38.0,38.0,33.0,42.0,22.0,35.0,26.0,24.0,35.0,33.0,23.0,23.0,25.0,25.0,26.0,31.0,19.0,20.0,29.0,21.0,23.0,24.0,25.0,32.0,35.0,27.0,29.0,31.0,37.0,32.0,33.0,45.0,28.0,35.0,28.0,33.0,33.0,25.0,24.0,21.0,29.0,21.0,24.0,23.0,35.0,22.0,30.0,15.0,21.0,16.0,17.0,15.0,12.0,9.0,11.0,14.0,6.0,9.0,9.0,3.0,,1.0,2.0,3.0,6.0 A88608,22.0,19.0,32.0,28.0,22.0,27.0,29.0,30.0,23.0,28.0,42.0,32.0,34.0,38.0,31.0,29.0,26.0,38.0,17.0,26.0,28.0,28.0,16.0,27.0,24.0,32.0,26.0,30.0,31.0,33.0,35.0,41.0,51.0,42.0,49.0,49.0,47.0,44.0,30.0,50.0,36.0,30.0,37.0,38.0,42.0,32.0,34.0,24.0,24.0,28.0,33.0,28.0,37.0,38.0,34.0,39.0,43.0,35.0,43.0,48.0,42.0,42.0,48.0,48.0,35.0,50.0,33.0,26.0,38.0,38.0,24.0,28.0,36.0,28.0,20.0,26.0,32.0,26.0,28.0,23.0,27.0,22.0,15.0,17.0,18.0,15.0,16.0,12.0,11.0,8.0,7.0,4.0,4.0,6.0,2.0,7.0 A88613,20.0,20.0,24.0,18.0,25.0,17.0,23.0,26.0,26.0,23.0,23.0,28.0,25.0,27.0,26.0,27.0,21.0,22.0,22.0,28.0,14.0,21.0,19.0,16.0,22.0,39.0,32.0,22.0,32.0,36.0,25.0,31.0,25.0,37.0,27.0,28.0,40.0,32.0,29.0,28.0,31.0,24.0,27.0,24.0,30.0,22.0,27.0,19.0,20.0,16.0,20.0,25.0,25.0,26.0,39.0,29.0,43.0,21.0,22.0,25.0,33.0,30.0,24.0,30.0,25.0,26.0,35.0,30.0,19.0,26.0,20.0,19.0,15.0,18.0,17.0,27.0,29.0,26.0,27.0,13.0,15.0,13.0,18.0,18.0,10.0,15.0,14.0,7.0,11.0,3.0,5.0,3.0,6.0,3.0,4.0,8.0 A89001,50.0,61.0,63.0,71.0,64.0,64.0,67.0,86.0,64.0,77.0,77.0,88.0,89.0,94.0,83.0,83.0,90.0,77.0,73.0,84.0,76.0,67.0,85.0,69.0,66.0,83.0,83.0,87.0,90.0,85.0,94.0,110.0,97.0,115.0,109.0,97.0,93.0,127.0,92.0,99.0,88.0,85.0,93.0,86.0,104.0,76.0,71.0,62.0,67.0,61.0,68.0,59.0,87.0,100.0,89.0,102.0,83.0,98.0,74.0,100.0,97.0,93.0,91.0,77.0,98.0,70.0,106.0,92.0,68.0,68.0,70.0,73.0,69.0,51.0,58.0,51.0,54.0,51.0,42.0,39.0,46.0,34.0,33.0,30.0,28.0,29.0,39.0,34.0,27.0,22.0,19.0,18.0,18.0,6.0,6.0,24.0 A89002,32.0,32.0,30.0,31.0,27.0,33.0,28.0,20.0,37.0,27.0,35.0,28.0,24.0,35.0,18.0,36.0,31.0,24.0,51.0,56.0,55.0,62.0,60.0,79.0,65.0,65.0,50.0,55.0,74.0,61.0,64.0,48.0,57.0,67.0,44.0,58.0,44.0,51.0,51.0,40.0,49.0,39.0,42.0,35.0,45.0,37.0,32.0,23.0,23.0,25.0,23.0,30.0,44.0,41.0,40.0,49.0,35.0,36.0,47.0,40.0,39.0,39.0,40.0,36.0,29.0,37.0,37.0,36.0,19.0,18.0,29.0,23.0,21.0,12.0,32.0,27.0,21.0,27.0,16.0,12.0,18.0,14.0,14.0,4.0,11.0,7.0,8.0,8.0,2.0,7.0,4.0,1.0,1.0,1.0,,5.0 A89004,45.0,62.0,49.0,70.0,75.0,63.0,49.0,65.0,63.0,71.0,64.0,61.0,74.0,56.0,72.0,67.0,61.0,67.0,63.0,60.0,38.0,49.0,48.0,57.0,63.0,81.0,72.0,57.0,79.0,75.0,93.0,88.0,80.0,96.0,93.0,89.0,95.0,70.0,74.0,56.0,86.0,61.0,72.0,77.0,73.0,70.0,49.0,60.0,59.0,66.0,56.0,55.0,61.0,79.0,87.0,60.0,85.0,93.0,86.0,99.0,90.0,87.0,76.0,87.0,72.0,84.0,67.0,79.0,71.0,68.0,61.0,62.0,53.0,64.0,56.0,69.0,83.0,69.0,59.0,59.0,50.0,44.0,44.0,41.0,34.0,34.0,29.0,22.0,25.0,17.0,18.0,13.0,15.0,14.0,6.0,12.0 A89005,13.0,17.0,28.0,27.0,19.0,16.0,20.0,34.0,28.0,26.0,21.0,40.0,42.0,43.0,35.0,38.0,22.0,38.0,30.0,22.0,28.0,18.0,30.0,29.0,21.0,31.0,31.0,38.0,25.0,31.0,24.0,39.0,32.0,46.0,39.0,34.0,44.0,35.0,35.0,45.0,37.0,39.0,28.0,42.0,36.0,30.0,35.0,19.0,28.0,33.0,21.0,28.0,27.0,33.0,36.0,45.0,47.0,44.0,40.0,39.0,33.0,38.0,52.0,50.0,32.0,40.0,42.0,30.0,39.0,36.0,38.0,40.0,29.0,35.0,39.0,32.0,25.0,31.0,35.0,23.0,26.0,18.0,25.0,17.0,17.0,13.0,22.0,22.0,12.0,11.0,10.0,6.0,7.0,8.0,5.0,15.0 A89006,28.0,37.0,42.0,36.0,48.0,37.0,45.0,51.0,39.0,38.0,54.0,45.0,64.0,50.0,42.0,49.0,35.0,49.0,42.0,42.0,44.0,44.0,53.0,53.0,47.0,66.0,48.0,66.0,64.0,72.0,72.0,80.0,66.0,67.0,79.0,79.0,64.0,83.0,65.0,47.0,47.0,48.0,54.0,35.0,47.0,39.0,46.0,42.0,40.0,59.0,42.0,42.0,54.0,56.0,42.0,55.0,41.0,43.0,53.0,48.0,47.0,41.0,55.0,36.0,37.0,40.0,30.0,32.0,43.0,30.0,34.0,31.0,22.0,28.0,26.0,23.0,24.0,30.0,24.0,24.0,19.0,21.0,8.0,19.0,20.0,12.0,17.0,16.0,11.0,8.0,9.0,6.0,4.0,2.0,3.0,5.0 A89007,40.0,35.0,48.0,34.0,42.0,55.0,38.0,57.0,51.0,53.0,52.0,47.0,48.0,58.0,53.0,65.0,48.0,61.0,54.0,48.0,43.0,49.0,43.0,45.0,61.0,61.0,63.0,60.0,62.0,82.0,79.0,60.0,84.0,93.0,73.0,72.0,71.0,86.0,93.0,79.0,69.0,74.0,75.0,58.0,43.0,55.0,52.0,62.0,51.0,49.0,62.0,64.0,57.0,64.0,95.0,64.0,59.0,81.0,72.0,68.0,72.0,69.0,73.0,58.0,71.0,57.0,58.0,55.0,59.0,58.0,53.0,47.0,62.0,45.0,62.0,47.0,46.0,52.0,62.0,36.0,35.0,27.0,35.0,20.0,23.0,22.0,21.0,18.0,24.0,14.0,13.0,13.0,12.0,10.0,7.0,20.0 A89008,31.0,24.0,23.0,32.0,30.0,33.0,25.0,29.0,33.0,29.0,21.0,28.0,35.0,38.0,27.0,37.0,33.0,32.0,26.0,33.0,23.0,33.0,33.0,33.0,25.0,30.0,41.0,41.0,38.0,34.0,47.0,50.0,39.0,35.0,39.0,51.0,44.0,44.0,41.0,33.0,32.0,36.0,33.0,35.0,39.0,28.0,33.0,29.0,29.0,24.0,26.0,25.0,36.0,38.0,38.0,31.0,52.0,37.0,48.0,36.0,46.0,36.0,24.0,44.0,37.0,24.0,35.0,39.0,29.0,18.0,32.0,21.0,24.0,27.0,16.0,12.0,15.0,20.0,13.0,11.0,11.0,13.0,16.0,6.0,10.0,15.0,13.0,8.0,6.0,8.0,2.0,7.0,5.0,3.0,4.0,10.0 A89009,43.0,42.0,45.0,60.0,47.0,53.0,52.0,50.0,74.0,57.0,52.0,47.0,51.0,52.0,39.0,57.0,48.0,53.0,48.0,48.0,41.0,42.0,34.0,41.0,40.0,46.0,61.0,51.0,76.0,72.0,68.0,74.0,83.0,86.0,70.0,74.0,64.0,75.0,75.0,87.0,79.0,52.0,74.0,56.0,56.0,60.0,54.0,47.0,48.0,47.0,53.0,52.0,59.0,73.0,77.0,60.0,77.0,78.0,66.0,61.0,73.0,71.0,87.0,78.0,49.0,68.0,67.0,60.0,58.0,37.0,47.0,42.0,47.0,41.0,49.0,35.0,33.0,48.0,32.0,30.0,36.0,33.0,39.0,21.0,23.0,20.0,24.0,23.0,18.0,20.0,15.0,13.0,9.0,15.0,10.0,13.0 A89010,39.0,54.0,51.0,56.0,39.0,59.0,63.0,65.0,68.0,57.0,62.0,60.0,68.0,68.0,41.0,64.0,64.0,67.0,65.0,58.0,74.0,47.0,42.0,44.0,50.0,44.0,55.0,55.0,82.0,65.0,62.0,72.0,75.0,93.0,90.0,77.0,73.0,62.0,90.0,75.0,88.0,83.0,96.0,83.0,79.0,74.0,58.0,80.0,54.0,59.0,93.0,83.0,78.0,87.0,82.0,83.0,99.0,100.0,93.0,91.0,73.0,108.0,89.0,78.0,94.0,87.0,90.0,89.0,81.0,80.0,77.0,64.0,67.0,84.0,78.0,70.0,71.0,70.0,77.0,55.0,69.0,61.0,47.0,49.0,43.0,51.0,34.0,27.0,24.0,21.0,10.0,17.0,12.0,11.0,8.0,16.0 A89011,33.0,30.0,25.0,25.0,17.0,25.0,23.0,26.0,39.0,10.0,30.0,33.0,23.0,36.0,28.0,29.0,27.0,21.0,31.0,20.0,26.0,20.0,25.0,18.0,25.0,27.0,24.0,32.0,32.0,33.0,45.0,25.0,44.0,34.0,28.0,21.0,30.0,30.0,38.0,41.0,30.0,32.0,34.0,30.0,40.0,38.0,33.0,24.0,21.0,25.0,26.0,13.0,29.0,34.0,33.0,31.0,26.0,34.0,42.0,34.0,28.0,33.0,33.0,41.0,31.0,30.0,25.0,40.0,30.0,29.0,22.0,18.0,32.0,23.0,23.0,25.0,21.0,20.0,28.0,20.0,20.0,17.0,14.0,15.0,9.0,12.0,15.0,9.0,10.0,6.0,7.0,4.0,4.0,5.0,5.0,5.0 A89012,32.0,44.0,40.0,64.0,58.0,62.0,60.0,45.0,61.0,76.0,67.0,67.0,54.0,76.0,81.0,57.0,66.0,61.0,71.0,61.0,62.0,65.0,59.0,62.0,66.0,59.0,64.0,61.0,71.0,75.0,62.0,88.0,90.0,63.0,85.0,64.0,80.0,76.0,92.0,83.0,83.0,74.0,95.0,84.0,97.0,86.0,83.0,83.0,71.0,59.0,72.0,68.0,69.0,82.0,69.0,64.0,60.0,55.0,59.0,64.0,60.0,51.0,61.0,59.0,60.0,73.0,64.0,85.0,82.0,77.0,100.0,91.0,84.0,74.0,82.0,83.0,57.0,57.0,81.0,44.0,37.0,28.0,23.0,30.0,14.0,12.0,12.0,6.0,7.0,10.0,5.0,3.0,1.0,2.0,2.0,8.0 A89013,17.0,26.0,22.0,13.0,21.0,19.0,13.0,16.0,19.0,24.0,23.0,18.0,18.0,16.0,18.0,21.0,24.0,21.0,26.0,40.0,46.0,45.0,46.0,58.0,58.0,58.0,54.0,52.0,59.0,48.0,54.0,45.0,39.0,32.0,34.0,34.0,35.0,39.0,34.0,32.0,29.0,23.0,25.0,29.0,31.0,24.0,29.0,16.0,18.0,19.0,23.0,22.0,28.0,25.0,31.0,40.0,27.0,27.0,40.0,35.0,35.0,37.0,29.0,36.0,33.0,28.0,34.0,35.0,28.0,29.0,22.0,29.0,29.0,25.0,23.0,31.0,25.0,36.0,33.0,28.0,33.0,19.0,22.0,16.0,22.0,11.0,18.0,10.0,16.0,13.0,9.0,8.0,4.0,4.0,1.0,10.0 A89015,26.0,32.0,31.0,30.0,26.0,36.0,36.0,42.0,40.0,39.0,35.0,51.0,44.0,45.0,41.0,35.0,39.0,37.0,38.0,36.0,42.0,27.0,38.0,30.0,38.0,55.0,37.0,45.0,55.0,48.0,55.0,40.0,44.0,57.0,50.0,46.0,42.0,57.0,47.0,51.0,60.0,49.0,51.0,63.0,52.0,65.0,55.0,57.0,51.0,46.0,56.0,69.0,78.0,79.0,65.0,90.0,84.0,85.0,84.0,73.0,98.0,87.0,86.0,72.0,75.0,83.0,64.0,74.0,57.0,64.0,69.0,63.0,49.0,67.0,63.0,63.0,47.0,53.0,78.0,59.0,79.0,42.0,46.0,41.0,51.0,45.0,34.0,33.0,25.0,31.0,22.0,20.0,17.0,9.0,9.0,23.0 A89016,32.0,36.0,27.0,26.0,46.0,28.0,32.0,43.0,35.0,32.0,29.0,44.0,44.0,41.0,47.0,40.0,45.0,53.0,52.0,48.0,53.0,41.0,62.0,54.0,63.0,60.0,67.0,59.0,69.0,52.0,73.0,66.0,73.0,72.0,73.0,77.0,65.0,66.0,61.0,66.0,62.0,63.0,63.0,58.0,37.0,46.0,49.0,40.0,42.0,48.0,42.0,53.0,53.0,65.0,47.0,66.0,49.0,50.0,70.0,61.0,66.0,84.0,70.0,68.0,71.0,67.0,70.0,42.0,60.0,63.0,46.0,47.0,35.0,43.0,47.0,39.0,53.0,41.0,54.0,32.0,35.0,31.0,39.0,22.0,26.0,22.0,24.0,23.0,15.0,16.0,24.0,14.0,13.0,7.0,10.0,17.0 A89017,57.0,47.0,71.0,77.0,68.0,58.0,79.0,82.0,90.0,74.0,82.0,75.0,67.0,83.0,81.0,92.0,69.0,72.0,74.0,78.0,79.0,77.0,90.0,84.0,82.0,94.0,96.0,122.0,93.0,122.0,110.0,88.0,83.0,109.0,113.0,126.0,110.0,118.0,104.0,116.0,101.0,86.0,78.0,87.0,79.0,80.0,85.0,73.0,74.0,79.0,83.0,82.0,91.0,101.0,96.0,82.0,86.0,99.0,99.0,101.0,97.0,85.0,101.0,121.0,78.0,90.0,97.0,98.0,84.0,88.0,77.0,61.0,54.0,79.0,46.0,64.0,50.0,73.0,55.0,49.0,48.0,32.0,29.0,21.0,26.0,27.0,23.0,34.0,19.0,18.0,14.0,9.0,5.0,16.0,2.0,9.0 A89018,17.0,21.0,20.0,24.0,33.0,22.0,25.0,23.0,23.0,29.0,16.0,28.0,29.0,35.0,24.0,24.0,33.0,32.0,33.0,31.0,27.0,36.0,26.0,31.0,18.0,42.0,29.0,28.0,46.0,28.0,38.0,32.0,36.0,43.0,45.0,45.0,37.0,41.0,30.0,48.0,31.0,30.0,25.0,30.0,24.0,30.0,32.0,29.0,38.0,28.0,26.0,35.0,43.0,43.0,30.0,34.0,38.0,27.0,33.0,32.0,32.0,37.0,25.0,20.0,23.0,30.0,33.0,32.0,31.0,33.0,39.0,20.0,22.0,13.0,24.0,20.0,19.0,26.0,34.0,14.0,13.0,15.0,12.0,11.0,18.0,17.0,8.0,8.0,11.0,9.0,10.0,6.0,5.0,4.0,1.0,7.0 A89019,61.0,58.0,66.0,79.0,60.0,89.0,71.0,92.0,87.0,88.0,87.0,85.0,82.0,107.0,92.0,93.0,82.0,97.0,83.0,79.0,70.0,90.0,76.0,84.0,100.0,76.0,69.0,100.0,103.0,71.0,113.0,102.0,115.0,107.0,122.0,118.0,100.0,105.0,105.0,95.0,117.0,93.0,72.0,125.0,101.0,88.0,101.0,84.0,88.0,83.0,67.0,96.0,88.0,125.0,98.0,82.0,89.0,89.0,105.0,110.0,100.0,115.0,104.0,105.0,95.0,99.0,90.0,95.0,92.0,84.0,75.0,88.0,69.0,70.0,57.0,63.0,75.0,61.0,74.0,59.0,58.0,55.0,28.0,34.0,44.0,38.0,35.0,22.0,23.0,23.0,14.0,16.0,13.0,10.0,17.0,23.0 A89020,21.0,32.0,33.0,27.0,34.0,33.0,39.0,37.0,49.0,38.0,40.0,35.0,37.0,50.0,48.0,40.0,51.0,54.0,46.0,65.0,70.0,62.0,63.0,49.0,48.0,46.0,40.0,48.0,50.0,57.0,45.0,58.0,48.0,63.0,66.0,66.0,66.0,68.0,59.0,55.0,58.0,57.0,52.0,48.0,41.0,47.0,29.0,31.0,34.0,42.0,48.0,54.0,56.0,49.0,46.0,52.0,56.0,56.0,49.0,49.0,49.0,48.0,45.0,62.0,46.0,36.0,50.0,51.0,56.0,38.0,33.0,29.0,40.0,30.0,35.0,36.0,25.0,40.0,40.0,30.0,26.0,22.0,30.0,20.0,16.0,28.0,12.0,14.0,7.0,9.0,12.0,4.0,7.0,3.0,4.0,9.0 A89021,27.0,43.0,44.0,37.0,29.0,51.0,39.0,40.0,43.0,49.0,49.0,39.0,46.0,55.0,58.0,46.0,63.0,52.0,42.0,53.0,42.0,45.0,39.0,42.0,47.0,42.0,61.0,53.0,56.0,50.0,48.0,63.0,55.0,79.0,54.0,76.0,51.0,54.0,48.0,52.0,52.0,49.0,41.0,56.0,63.0,51.0,64.0,47.0,53.0,54.0,44.0,39.0,59.0,62.0,74.0,57.0,42.0,65.0,61.0,75.0,62.0,65.0,66.0,60.0,67.0,43.0,62.0,57.0,47.0,37.0,38.0,41.0,56.0,49.0,48.0,55.0,35.0,39.0,44.0,27.0,33.0,27.0,27.0,20.0,25.0,22.0,19.0,21.0,14.0,15.0,5.0,11.0,8.0,10.0,3.0,11.0 A89022,21.0,29.0,24.0,24.0,19.0,23.0,22.0,28.0,26.0,30.0,19.0,20.0,28.0,35.0,37.0,28.0,21.0,22.0,27.0,27.0,33.0,33.0,28.0,25.0,38.0,25.0,33.0,34.0,21.0,22.0,44.0,39.0,33.0,27.0,36.0,31.0,41.0,33.0,41.0,31.0,25.0,31.0,37.0,29.0,43.0,25.0,34.0,26.0,27.0,35.0,32.0,30.0,27.0,32.0,25.0,37.0,45.0,38.0,36.0,27.0,29.0,33.0,27.0,42.0,36.0,28.0,27.0,35.0,35.0,27.0,34.0,43.0,39.0,42.0,41.0,41.0,31.0,40.0,48.0,31.0,23.0,19.0,20.0,15.0,13.0,13.0,11.0,18.0,9.0,6.0,11.0,8.0,1.0,2.0,3.0,8.0 A89023,44.0,39.0,47.0,43.0,46.0,58.0,33.0,38.0,44.0,41.0,58.0,61.0,43.0,49.0,54.0,48.0,45.0,49.0,46.0,40.0,29.0,50.0,42.0,53.0,45.0,39.0,47.0,40.0,52.0,60.0,48.0,81.0,57.0,66.0,56.0,48.0,62.0,57.0,63.0,54.0,62.0,56.0,63.0,51.0,47.0,53.0,53.0,32.0,58.0,49.0,47.0,41.0,42.0,53.0,55.0,62.0,53.0,57.0,66.0,49.0,56.0,62.0,46.0,60.0,69.0,55.0,61.0,61.0,68.0,42.0,51.0,53.0,49.0,40.0,43.0,33.0,47.0,47.0,41.0,36.0,29.0,41.0,26.0,24.0,24.0,26.0,25.0,20.0,15.0,18.0,14.0,7.0,8.0,4.0,3.0,10.0 A89024,42.0,40.0,37.0,41.0,39.0,37.0,37.0,43.0,55.0,27.0,34.0,49.0,29.0,53.0,50.0,41.0,40.0,49.0,37.0,40.0,39.0,39.0,37.0,48.0,46.0,59.0,46.0,45.0,68.0,57.0,67.0,66.0,56.0,73.0,54.0,49.0,55.0,57.0,56.0,55.0,43.0,56.0,52.0,45.0,46.0,47.0,47.0,43.0,50.0,49.0,42.0,45.0,54.0,62.0,75.0,62.0,44.0,55.0,53.0,52.0,46.0,47.0,48.0,49.0,39.0,37.0,40.0,45.0,41.0,38.0,33.0,40.0,45.0,36.0,35.0,36.0,55.0,49.0,46.0,32.0,32.0,20.0,20.0,27.0,28.0,13.0,21.0,11.0,10.0,12.0,8.0,13.0,5.0,4.0,2.0,13.0 A89025,36.0,28.0,40.0,49.0,58.0,48.0,51.0,55.0,64.0,65.0,61.0,61.0,60.0,83.0,71.0,71.0,77.0,82.0,67.0,68.0,57.0,51.0,47.0,49.0,44.0,49.0,51.0,54.0,67.0,53.0,61.0,66.0,60.0,70.0,77.0,76.0,73.0,88.0,71.0,77.0,73.0,66.0,80.0,75.0,88.0,93.0,83.0,68.0,63.0,74.0,48.0,59.0,53.0,82.0,72.0,66.0,58.0,58.0,66.0,71.0,56.0,51.0,66.0,73.0,51.0,70.0,40.0,54.0,54.0,65.0,61.0,63.0,53.0,49.0,61.0,50.0,39.0,52.0,55.0,21.0,31.0,17.0,17.0,9.0,15.0,14.0,10.0,11.0,11.0,13.0,5.0,6.0,4.0,6.0,7.0,8.0 A89026,21.0,19.0,27.0,36.0,30.0,33.0,40.0,38.0,31.0,45.0,30.0,33.0,39.0,33.0,44.0,40.0,41.0,57.0,50.0,41.0,33.0,39.0,35.0,39.0,27.0,41.0,36.0,43.0,33.0,47.0,35.0,26.0,42.0,44.0,61.0,34.0,40.0,43.0,46.0,41.0,49.0,34.0,43.0,31.0,48.0,50.0,48.0,39.0,48.0,42.0,35.0,53.0,46.0,52.0,45.0,45.0,61.0,53.0,53.0,57.0,38.0,60.0,58.0,54.0,57.0,46.0,59.0,47.0,40.0,56.0,54.0,50.0,45.0,34.0,50.0,51.0,46.0,46.0,54.0,33.0,29.0,16.0,22.0,22.0,13.0,12.0,16.0,12.0,12.0,14.0,5.0,7.0,9.0,8.0,4.0,9.0 A89027,27.0,19.0,26.0,28.0,35.0,33.0,39.0,45.0,33.0,42.0,42.0,31.0,40.0,37.0,40.0,46.0,38.0,50.0,46.0,39.0,53.0,39.0,35.0,31.0,28.0,36.0,32.0,49.0,39.0,33.0,43.0,40.0,39.0,51.0,42.0,44.0,46.0,51.0,58.0,48.0,48.0,47.0,49.0,40.0,52.0,40.0,37.0,43.0,35.0,31.0,45.0,38.0,35.0,43.0,54.0,47.0,49.0,60.0,42.0,48.0,60.0,49.0,59.0,50.0,50.0,45.0,42.0,35.0,40.0,36.0,34.0,38.0,31.0,25.0,21.0,37.0,27.0,35.0,32.0,20.0,27.0,12.0,13.0,11.0,10.0,12.0,17.0,12.0,9.0,11.0,6.0,1.0,7.0,10.0,8.0,7.0 A89028,28.0,28.0,26.0,34.0,30.0,33.0,37.0,32.0,40.0,36.0,29.0,34.0,35.0,47.0,36.0,37.0,47.0,47.0,39.0,34.0,41.0,25.0,38.0,41.0,40.0,36.0,37.0,46.0,41.0,34.0,38.0,52.0,33.0,45.0,39.0,40.0,53.0,43.0,53.0,48.0,42.0,42.0,37.0,51.0,47.0,46.0,44.0,51.0,37.0,48.0,68.0,63.0,73.0,61.0,67.0,50.0,54.0,61.0,57.0,41.0,67.0,48.0,59.0,45.0,38.0,47.0,43.0,46.0,46.0,40.0,51.0,29.0,34.0,40.0,43.0,36.0,50.0,42.0,53.0,22.0,29.0,36.0,24.0,25.0,10.0,15.0,23.0,13.0,20.0,16.0,14.0,8.0,8.0,5.0,3.0,6.0 A89030,29.0,27.0,30.0,27.0,27.0,27.0,29.0,33.0,28.0,25.0,46.0,35.0,35.0,35.0,36.0,42.0,39.0,36.0,41.0,36.0,29.0,28.0,37.0,26.0,29.0,37.0,44.0,32.0,30.0,38.0,43.0,48.0,53.0,50.0,45.0,52.0,44.0,50.0,47.0,59.0,54.0,46.0,51.0,55.0,44.0,48.0,34.0,32.0,39.0,36.0,41.0,36.0,37.0,55.0,44.0,43.0,38.0,48.0,44.0,41.0,40.0,45.0,44.0,57.0,39.0,40.0,41.0,43.0,39.0,37.0,41.0,38.0,39.0,33.0,32.0,47.0,40.0,42.0,37.0,18.0,24.0,12.0,32.0,22.0,20.0,20.0,15.0,20.0,11.0,12.0,15.0,10.0,9.0,4.0,2.0,8.0 A89031,35.0,34.0,29.0,43.0,21.0,31.0,31.0,29.0,39.0,26.0,36.0,33.0,32.0,40.0,35.0,43.0,34.0,39.0,42.0,40.0,56.0,56.0,49.0,53.0,72.0,65.0,63.0,103.0,83.0,83.0,91.0,87.0,75.0,69.0,81.0,55.0,56.0,65.0,65.0,59.0,58.0,41.0,42.0,39.0,40.0,54.0,50.0,36.0,38.0,34.0,26.0,41.0,28.0,36.0,41.0,34.0,35.0,31.0,35.0,37.0,44.0,32.0,33.0,28.0,35.0,23.0,26.0,22.0,32.0,24.0,27.0,24.0,22.0,25.0,20.0,21.0,19.0,21.0,19.0,18.0,10.0,13.0,5.0,16.0,10.0,6.0,7.0,10.0,4.0,7.0,5.0,4.0,9.0,2.0,2.0,4.0 A89032,36.0,37.0,33.0,45.0,42.0,48.0,41.0,46.0,54.0,55.0,39.0,53.0,52.0,48.0,40.0,57.0,55.0,68.0,61.0,39.0,41.0,51.0,35.0,37.0,37.0,38.0,51.0,42.0,64.0,46.0,58.0,59.0,72.0,60.0,57.0,52.0,55.0,61.0,57.0,71.0,51.0,51.0,56.0,46.0,51.0,61.0,47.0,48.0,52.0,77.0,51.0,58.0,55.0,58.0,68.0,72.0,77.0,68.0,75.0,67.0,74.0,84.0,78.0,63.0,71.0,60.0,66.0,62.0,57.0,50.0,56.0,54.0,49.0,74.0,56.0,52.0,47.0,38.0,62.0,23.0,48.0,33.0,34.0,29.0,31.0,35.0,25.0,19.0,15.0,17.0,12.0,11.0,8.0,7.0,6.0,28.0 A89034,16.0,25.0,14.0,13.0,13.0,19.0,18.0,18.0,16.0,14.0,15.0,19.0,18.0,24.0,14.0,13.0,19.0,23.0,28.0,32.0,37.0,39.0,41.0,39.0,38.0,41.0,41.0,52.0,42.0,41.0,40.0,37.0,43.0,28.0,35.0,31.0,33.0,36.0,39.0,21.0,30.0,27.0,30.0,21.0,27.0,26.0,17.0,16.0,15.0,18.0,14.0,17.0,26.0,21.0,19.0,26.0,17.0,18.0,22.0,21.0,15.0,22.0,15.0,16.0,11.0,14.0,14.0,11.0,16.0,13.0,21.0,16.0,15.0,11.0,9.0,13.0,7.0,13.0,12.0,4.0,7.0,11.0,6.0,6.0,8.0,6.0,6.0,5.0,1.0,2.0,3.0,4.0,1.0,7.0,,1.0 A89035,53.0,57.0,63.0,61.0,56.0,59.0,54.0,63.0,56.0,61.0,50.0,57.0,63.0,55.0,57.0,61.0,68.0,61.0,64.0,56.0,61.0,50.0,44.0,50.0,46.0,57.0,68.0,83.0,89.0,62.0,69.0,85.0,89.0,92.0,94.0,89.0,87.0,88.0,84.0,74.0,73.0,84.0,80.0,59.0,68.0,77.0,62.0,56.0,59.0,73.0,51.0,55.0,75.0,59.0,61.0,71.0,53.0,71.0,67.0,71.0,84.0,79.0,81.0,81.0,70.0,78.0,76.0,71.0,59.0,61.0,53.0,59.0,42.0,50.0,46.0,41.0,36.0,46.0,53.0,40.0,32.0,30.0,19.0,22.0,27.0,26.0,23.0,25.0,26.0,23.0,18.0,13.0,9.0,8.0,6.0,16.0 A89036,6.0,6.0,6.0,17.0,8.0,13.0,6.0,9.0,8.0,12.0,8.0,10.0,10.0,10.0,17.0,16.0,9.0,9.0,7.0,7.0,10.0,11.0,8.0,6.0,14.0,11.0,13.0,10.0,14.0,15.0,9.0,15.0,10.0,13.0,14.0,12.0,12.0,13.0,15.0,11.0,12.0,9.0,12.0,12.0,10.0,16.0,9.0,8.0,12.0,11.0,14.0,10.0,14.0,10.0,16.0,17.0,15.0,15.0,18.0,20.0,13.0,16.0,15.0,12.0,16.0,21.0,17.0,8.0,14.0,16.0,6.0,9.0,13.0,17.0,10.0,12.0,8.0,10.0,6.0,8.0,5.0,5.0,9.0,3.0,5.0,5.0,6.0,2.0,3.0,3.0,1.0,1.0,,2.0,, A89040,15.0,15.0,19.0,7.0,17.0,17.0,18.0,17.0,16.0,14.0,17.0,14.0,24.0,16.0,19.0,24.0,14.0,22.0,13.0,29.0,26.0,31.0,33.0,26.0,21.0,32.0,22.0,29.0,27.0,31.0,27.0,21.0,22.0,26.0,29.0,18.0,31.0,28.0,23.0,31.0,22.0,25.0,26.0,18.0,17.0,27.0,16.0,18.0,16.0,17.0,24.0,21.0,23.0,23.0,20.0,27.0,29.0,33.0,31.0,35.0,32.0,27.0,28.0,38.0,24.0,34.0,31.0,34.0,27.0,31.0,26.0,26.0,22.0,30.0,25.0,20.0,28.0,23.0,24.0,19.0,15.0,19.0,18.0,17.0,11.0,16.0,20.0,13.0,4.0,12.0,11.0,3.0,8.0,3.0,3.0,6.0 A89041,30.0,50.0,58.0,63.0,36.0,42.0,51.0,55.0,47.0,48.0,38.0,48.0,51.0,51.0,42.0,47.0,63.0,43.0,62.0,42.0,40.0,56.0,42.0,39.0,34.0,47.0,52.0,45.0,58.0,57.0,65.0,62.0,72.0,80.0,88.0,51.0,71.0,69.0,73.0,78.0,63.0,62.0,53.0,61.0,60.0,61.0,48.0,42.0,37.0,41.0,50.0,52.0,41.0,59.0,51.0,55.0,56.0,52.0,59.0,38.0,59.0,57.0,43.0,50.0,60.0,49.0,50.0,46.0,49.0,35.0,44.0,31.0,34.0,40.0,31.0,42.0,36.0,36.0,37.0,20.0,29.0,17.0,17.0,12.0,17.0,16.0,14.0,13.0,11.0,3.0,3.0,7.0,4.0,4.0,3.0,3.0 A89614,15.0,20.0,16.0,14.0,19.0,23.0,22.0,26.0,31.0,28.0,31.0,21.0,33.0,32.0,24.0,32.0,32.0,32.0,42.0,16.0,27.0,25.0,23.0,17.0,22.0,19.0,26.0,29.0,18.0,34.0,39.0,25.0,31.0,34.0,30.0,31.0,36.0,36.0,46.0,38.0,29.0,29.0,26.0,30.0,28.0,27.0,22.0,29.0,31.0,25.0,17.0,22.0,26.0,43.0,32.0,32.0,36.0,26.0,34.0,34.0,32.0,30.0,29.0,24.0,28.0,32.0,29.0,23.0,27.0,22.0,17.0,16.0,19.0,16.0,14.0,26.0,20.0,21.0,25.0,8.0,18.0,11.0,17.0,12.0,11.0,10.0,6.0,8.0,11.0,8.0,5.0,6.0,6.0,7.0,4.0,11.0 A89616,10.0,18.0,12.0,14.0,8.0,11.0,11.0,22.0,14.0,10.0,15.0,11.0,22.0,17.0,21.0,19.0,26.0,20.0,14.0,12.0,16.0,15.0,18.0,16.0,11.0,13.0,18.0,10.0,14.0,20.0,17.0,19.0,30.0,17.0,13.0,14.0,13.0,15.0,11.0,16.0,23.0,18.0,26.0,25.0,18.0,20.0,18.0,14.0,20.0,13.0,24.0,20.0,23.0,18.0,26.0,19.0,21.0,17.0,14.0,13.0,19.0,32.0,32.0,23.0,22.0,19.0,16.0,16.0,21.0,17.0,24.0,22.0,15.0,9.0,16.0,16.0,11.0,13.0,13.0,6.0,5.0,12.0,9.0,5.0,3.0,5.0,4.0,3.0,5.0,1.0,2.0,1.0,2.0,,1.0, A89617,10.0,14.0,9.0,21.0,18.0,10.0,15.0,11.0,9.0,25.0,28.0,17.0,14.0,24.0,16.0,20.0,18.0,25.0,20.0,20.0,13.0,10.0,10.0,5.0,16.0,15.0,9.0,18.0,17.0,13.0,22.0,21.0,29.0,20.0,22.0,25.0,26.0,20.0,19.0,14.0,20.0,13.0,28.0,21.0,29.0,24.0,21.0,16.0,15.0,26.0,22.0,18.0,29.0,19.0,19.0,20.0,25.0,26.0,22.0,24.0,40.0,36.0,22.0,26.0,25.0,28.0,18.0,36.0,35.0,27.0,23.0,20.0,20.0,15.0,18.0,26.0,20.0,21.0,21.0,12.0,16.0,8.0,10.0,9.0,12.0,11.0,6.0,7.0,9.0,9.0,5.0,4.0,3.0,3.0,1.0,7.0 A89623,8.0,25.0,13.0,15.0,26.0,20.0,23.0,14.0,14.0,22.0,14.0,20.0,18.0,18.0,13.0,12.0,21.0,16.0,12.0,15.0,16.0,13.0,16.0,14.0,12.0,16.0,17.0,25.0,24.0,25.0,24.0,20.0,28.0,24.0,26.0,31.0,14.0,26.0,13.0,27.0,26.0,22.0,23.0,13.0,14.0,14.0,20.0,18.0,12.0,12.0,14.0,12.0,12.0,15.0,14.0,11.0,17.0,12.0,14.0,8.0,7.0,19.0,12.0,14.0,15.0,19.0,26.0,10.0,13.0,10.0,12.0,13.0,8.0,10.0,10.0,12.0,15.0,9.0,16.0,9.0,7.0,12.0,10.0,5.0,1.0,4.0,7.0,7.0,2.0,6.0,6.0,4.0,4.0,6.0,1.0,1.0 Y00184,48.0,52.0,48.0,55.0,60.0,64.0,51.0,48.0,67.0,66.0,56.0,66.0,72.0,63.0,69.0,68.0,79.0,44.0,64.0,66.0,61.0,71.0,69.0,72.0,78.0,91.0,105.0,85.0,108.0,93.0,57.0,84.0,78.0,66.0,76.0,78.0,69.0,75.0,60.0,68.0,60.0,55.0,57.0,40.0,41.0,47.0,38.0,36.0,42.0,33.0,40.0,37.0,25.0,29.0,20.0,33.0,32.0,20.0,24.0,31.0,19.0,19.0,21.0,16.0,13.0,16.0,8.0,14.0,14.0,12.0,18.0,6.0,11.0,8.0,6.0,11.0,5.0,8.0,4.0,,8.0,4.0,2.0,2.0,4.0,4.0,1.0,2.0,2.0,2.0,1.0,2.0,2.0,,2.0, Y00286,24.0,10.0,20.0,16.0,17.0,22.0,22.0,23.0,18.0,18.0,18.0,20.0,23.0,18.0,21.0,16.0,20.0,24.0,19.0,27.0,15.0,10.0,17.0,16.0,21.0,26.0,19.0,20.0,29.0,16.0,23.0,20.0,23.0,19.0,24.0,25.0,28.0,23.0,21.0,29.0,31.0,18.0,22.0,15.0,24.0,28.0,23.0,13.0,15.0,16.0,20.0,17.0,18.0,25.0,22.0,22.0,31.0,23.0,22.0,38.0,28.0,29.0,30.0,27.0,20.0,21.0,20.0,16.0,15.0,23.0,17.0,14.0,18.0,7.0,22.0,15.0,15.0,19.0,19.0,15.0,13.0,9.0,6.0,7.0,8.0,11.0,5.0,9.0,2.0,3.0,5.0,4.0,1.0,3.0,1.0,7.0 Y01262,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,1.0,,,,,,,,,,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, Y03303,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 C81001,49.0,54.0,63.0,45.0,58.0,62.0,56.0,51.0,52.0,64.0,71.0,61.0,69.0,72.0,61.0,41.0,66.0,60.0,49.0,56.0,40.0,54.0,47.0,50.0,39.0,76.0,55.0,69.0,73.0,80.0,85.0,83.0,89.0,84.0,87.0,84.0,82.0,78.0,78.0,64.0,91.0,63.0,75.0,63.0,71.0,75.0,45.0,52.0,64.0,61.0,56.0,73.0,82.0,85.0,74.0,94.0,95.0,74.0,94.0,92.0,91.0,96.0,91.0,73.0,65.0,53.0,75.0,71.0,58.0,67.0,59.0,70.0,68.0,66.0,65.0,70.0,65.0,55.0,70.0,48.0,54.0,40.0,28.0,29.0,32.0,20.0,34.0,24.0,16.0,17.0,15.0,11.0,12.0,4.0,7.0,22.0 C81002,35.0,45.0,45.0,52.0,45.0,50.0,62.0,60.0,53.0,60.0,79.0,72.0,61.0,72.0,70.0,83.0,44.0,77.0,63.0,59.0,51.0,59.0,46.0,52.0,49.0,47.0,62.0,54.0,72.0,54.0,58.0,70.0,68.0,90.0,91.0,73.0,65.0,73.0,80.0,88.0,77.0,84.0,69.0,68.0,84.0,90.0,66.0,73.0,73.0,75.0,74.0,78.0,78.0,92.0,89.0,118.0,88.0,104.0,92.0,97.0,90.0,88.0,99.0,67.0,82.0,89.0,85.0,87.0,74.0,75.0,88.0,76.0,75.0,81.0,75.0,80.0,72.0,85.0,77.0,63.0,73.0,70.0,56.0,44.0,57.0,40.0,43.0,31.0,33.0,29.0,19.0,11.0,11.0,15.0,14.0,27.0 C81003,34.0,23.0,35.0,38.0,29.0,39.0,35.0,47.0,47.0,45.0,49.0,46.0,52.0,50.0,46.0,55.0,53.0,49.0,46.0,28.0,49.0,26.0,38.0,48.0,34.0,53.0,51.0,48.0,41.0,45.0,49.0,45.0,58.0,65.0,66.0,56.0,45.0,59.0,59.0,69.0,61.0,64.0,64.0,60.0,64.0,56.0,63.0,64.0,58.0,57.0,74.0,60.0,75.0,71.0,77.0,67.0,83.0,73.0,83.0,94.0,95.0,78.0,78.0,83.0,81.0,73.0,77.0,70.0,61.0,56.0,66.0,71.0,49.0,71.0,52.0,62.0,67.0,78.0,79.0,50.0,52.0,38.0,38.0,23.0,26.0,30.0,19.0,23.0,21.0,14.0,21.0,8.0,7.0,5.0,4.0,16.0 C81004,39.0,33.0,35.0,42.0,50.0,49.0,55.0,57.0,53.0,59.0,42.0,54.0,68.0,51.0,54.0,46.0,46.0,60.0,55.0,37.0,33.0,35.0,47.0,44.0,46.0,59.0,59.0,55.0,66.0,70.0,67.0,57.0,56.0,77.0,64.0,61.0,73.0,57.0,63.0,55.0,68.0,67.0,56.0,63.0,67.0,71.0,50.0,53.0,51.0,63.0,57.0,62.0,74.0,81.0,72.0,79.0,84.0,78.0,79.0,94.0,77.0,84.0,80.0,77.0,88.0,77.0,69.0,52.0,76.0,69.0,68.0,62.0,64.0,65.0,73.0,69.0,61.0,84.0,76.0,48.0,43.0,61.0,53.0,42.0,31.0,28.0,23.0,29.0,29.0,16.0,12.0,19.0,5.0,5.0,3.0,13.0 C81005,62.0,57.0,81.0,82.0,84.0,75.0,84.0,96.0,84.0,96.0,86.0,74.0,93.0,86.0,107.0,99.0,86.0,98.0,81.0,88.0,73.0,69.0,67.0,75.0,98.0,105.0,91.0,105.0,99.0,99.0,121.0,110.0,112.0,122.0,130.0,98.0,121.0,98.0,104.0,100.0,122.0,95.0,112.0,108.0,96.0,95.0,83.0,98.0,79.0,91.0,104.0,98.0,125.0,136.0,112.0,124.0,127.0,136.0,128.0,124.0,119.0,117.0,111.0,104.0,123.0,112.0,108.0,102.0,106.0,84.0,101.0,97.0,93.0,92.0,81.0,99.0,102.0,129.0,102.0,65.0,99.0,64.0,55.0,49.0,42.0,39.0,23.0,35.0,28.0,20.0,19.0,17.0,11.0,4.0,7.0,24.0 C81006,166.0,167.0,144.0,140.0,154.0,131.0,173.0,166.0,158.0,138.0,150.0,136.0,149.0,159.0,133.0,153.0,123.0,146.0,137.0,161.0,154.0,150.0,156.0,181.0,223.0,217.0,275.0,271.0,281.0,269.0,268.0,286.0,259.0,269.0,278.0,252.0,249.0,214.0,214.0,206.0,204.0,191.0,172.0,146.0,184.0,133.0,137.0,128.0,139.0,123.0,133.0,131.0,126.0,139.0,133.0,116.0,127.0,141.0,139.0,136.0,138.0,107.0,116.0,114.0,108.0,85.0,91.0,86.0,87.0,83.0,79.0,72.0,63.0,57.0,76.0,68.0,70.0,69.0,42.0,57.0,53.0,47.0,43.0,27.0,30.0,35.0,41.0,29.0,26.0,23.0,13.0,19.0,7.0,14.0,8.0,21.0 C81007,48.0,69.0,54.0,65.0,57.0,65.0,69.0,55.0,69.0,81.0,60.0,84.0,57.0,79.0,65.0,68.0,67.0,55.0,50.0,53.0,60.0,65.0,74.0,72.0,92.0,103.0,104.0,102.0,104.0,97.0,110.0,110.0,106.0,119.0,115.0,125.0,117.0,119.0,97.0,112.0,100.0,92.0,76.0,79.0,71.0,80.0,54.0,59.0,69.0,55.0,54.0,60.0,54.0,74.0,64.0,56.0,57.0,72.0,65.0,47.0,57.0,59.0,61.0,70.0,59.0,46.0,40.0,45.0,53.0,46.0,49.0,41.0,46.0,42.0,34.0,48.0,31.0,49.0,40.0,27.0,40.0,40.0,28.0,19.0,26.0,29.0,21.0,20.0,18.0,14.0,14.0,13.0,11.0,7.0,4.0,9.0 C81008,47.0,34.0,54.0,60.0,34.0,47.0,39.0,54.0,50.0,44.0,54.0,70.0,51.0,50.0,53.0,46.0,45.0,51.0,40.0,47.0,51.0,40.0,42.0,46.0,45.0,61.0,51.0,60.0,70.0,58.0,67.0,61.0,78.0,72.0,57.0,58.0,63.0,66.0,71.0,62.0,50.0,53.0,63.0,46.0,60.0,65.0,50.0,46.0,40.0,53.0,48.0,60.0,66.0,59.0,60.0,66.0,65.0,79.0,75.0,70.0,73.0,105.0,73.0,69.0,48.0,65.0,59.0,63.0,57.0,44.0,40.0,59.0,52.0,51.0,44.0,60.0,67.0,53.0,64.0,52.0,51.0,33.0,41.0,28.0,28.0,35.0,24.0,25.0,19.0,21.0,20.0,9.0,11.0,10.0,7.0,11.0 C81009,89.0,96.0,112.0,105.0,103.0,123.0,112.0,118.0,117.0,137.0,129.0,120.0,113.0,121.0,128.0,140.0,129.0,118.0,96.0,100.0,120.0,113.0,102.0,105.0,133.0,147.0,164.0,160.0,165.0,163.0,172.0,163.0,177.0,179.0,152.0,141.0,144.0,191.0,152.0,147.0,156.0,148.0,134.0,151.0,124.0,146.0,135.0,111.0,102.0,99.0,107.0,105.0,92.0,99.0,122.0,100.0,94.0,106.0,102.0,86.0,92.0,98.0,119.0,88.0,89.0,78.0,88.0,67.0,81.0,68.0,44.0,57.0,59.0,48.0,41.0,49.0,46.0,51.0,41.0,39.0,39.0,35.0,26.0,25.0,27.0,26.0,25.0,7.0,15.0,14.0,14.0,10.0,6.0,5.0,5.0,9.0 C81010,62.0,50.0,40.0,50.0,61.0,55.0,63.0,54.0,61.0,58.0,70.0,60.0,86.0,57.0,65.0,63.0,74.0,55.0,67.0,53.0,67.0,49.0,62.0,62.0,82.0,82.0,85.0,99.0,109.0,95.0,89.0,79.0,104.0,79.0,86.0,85.0,90.0,74.0,84.0,81.0,72.0,75.0,84.0,88.0,90.0,79.0,59.0,60.0,63.0,79.0,81.0,86.0,94.0,98.0,94.0,100.0,102.0,103.0,105.0,105.0,112.0,88.0,102.0,100.0,99.0,71.0,89.0,72.0,75.0,58.0,71.0,64.0,71.0,74.0,63.0,68.0,76.0,81.0,71.0,53.0,66.0,58.0,53.0,45.0,48.0,36.0,29.0,33.0,31.0,24.0,21.0,15.0,7.0,5.0,8.0,19.0 C81012,60.0,51.0,74.0,65.0,82.0,75.0,70.0,74.0,88.0,90.0,103.0,108.0,95.0,81.0,101.0,82.0,76.0,96.0,72.0,63.0,58.0,76.0,55.0,91.0,70.0,84.0,90.0,93.0,106.0,102.0,119.0,119.0,110.0,121.0,123.0,97.0,107.0,115.0,120.0,107.0,108.0,102.0,104.0,105.0,108.0,87.0,112.0,82.0,89.0,103.0,80.0,89.0,103.0,107.0,110.0,92.0,97.0,125.0,103.0,108.0,88.0,118.0,117.0,105.0,117.0,106.0,92.0,98.0,75.0,89.0,90.0,90.0,76.0,99.0,67.0,86.0,70.0,96.0,94.0,55.0,63.0,64.0,58.0,44.0,35.0,42.0,45.0,25.0,25.0,17.0,25.0,27.0,20.0,11.0,16.0,30.0 C81013,6.0,8.0,17.0,16.0,5.0,17.0,19.0,14.0,22.0,19.0,20.0,30.0,26.0,29.0,25.0,26.0,23.0,31.0,22.0,13.0,19.0,13.0,15.0,23.0,18.0,15.0,13.0,13.0,12.0,16.0,16.0,17.0,13.0,15.0,13.0,20.0,19.0,19.0,16.0,28.0,18.0,25.0,30.0,21.0,29.0,27.0,27.0,23.0,31.0,32.0,26.0,24.0,35.0,36.0,45.0,32.0,42.0,33.0,33.0,47.0,53.0,38.0,53.0,47.0,49.0,46.0,44.0,59.0,33.0,37.0,38.0,30.0,42.0,38.0,44.0,35.0,44.0,40.0,39.0,45.0,41.0,35.0,24.0,15.0,23.0,22.0,18.0,10.0,13.0,5.0,17.0,3.0,7.0,7.0,7.0,10.0 C81014,53.0,51.0,62.0,60.0,52.0,64.0,62.0,62.0,63.0,79.0,71.0,78.0,73.0,80.0,83.0,80.0,82.0,81.0,70.0,53.0,64.0,53.0,57.0,71.0,71.0,64.0,70.0,68.0,74.0,89.0,86.0,76.0,91.0,98.0,89.0,85.0,94.0,90.0,95.0,63.0,74.0,84.0,71.0,85.0,80.0,69.0,69.0,59.0,60.0,65.0,71.0,64.0,68.0,67.0,82.0,65.0,87.0,67.0,74.0,83.0,66.0,61.0,79.0,70.0,58.0,61.0,66.0,55.0,72.0,56.0,49.0,45.0,41.0,61.0,56.0,59.0,71.0,60.0,57.0,58.0,44.0,53.0,45.0,37.0,38.0,29.0,31.0,22.0,12.0,15.0,17.0,9.0,4.0,8.0,5.0,10.0 C81015,39.0,48.0,49.0,54.0,45.0,62.0,60.0,59.0,68.0,52.0,64.0,65.0,61.0,73.0,71.0,68.0,73.0,61.0,66.0,38.0,50.0,39.0,46.0,42.0,63.0,57.0,71.0,66.0,64.0,61.0,60.0,83.0,72.0,87.0,65.0,83.0,76.0,91.0,100.0,83.0,71.0,70.0,71.0,52.0,75.0,82.0,72.0,68.0,62.0,78.0,72.0,77.0,76.0,94.0,93.0,89.0,79.0,77.0,98.0,98.0,83.0,101.0,90.0,97.0,93.0,93.0,99.0,68.0,79.0,76.0,73.0,80.0,80.0,67.0,85.0,86.0,71.0,68.0,96.0,62.0,68.0,66.0,60.0,38.0,41.0,36.0,21.0,48.0,31.0,23.0,23.0,11.0,10.0,10.0,3.0,20.0 C81016,23.0,28.0,24.0,27.0,28.0,28.0,22.0,27.0,22.0,50.0,42.0,34.0,42.0,59.0,56.0,48.0,31.0,45.0,36.0,40.0,37.0,45.0,35.0,26.0,38.0,30.0,33.0,29.0,33.0,26.0,32.0,31.0,42.0,47.0,38.0,40.0,38.0,36.0,48.0,36.0,47.0,38.0,34.0,46.0,52.0,40.0,41.0,44.0,49.0,55.0,55.0,61.0,71.0,72.0,68.0,73.0,74.0,64.0,99.0,79.0,85.0,84.0,88.0,77.0,88.0,62.0,86.0,77.0,64.0,64.0,69.0,64.0,58.0,57.0,68.0,65.0,56.0,64.0,63.0,42.0,46.0,52.0,28.0,42.0,41.0,32.0,39.0,29.0,16.0,21.0,16.0,12.0,14.0,9.0,7.0,24.0 C81017,39.0,32.0,47.0,43.0,50.0,43.0,44.0,37.0,33.0,49.0,41.0,45.0,55.0,50.0,49.0,49.0,69.0,43.0,43.0,34.0,27.0,35.0,29.0,27.0,32.0,41.0,45.0,33.0,53.0,50.0,57.0,59.0,47.0,66.0,68.0,57.0,60.0,76.0,64.0,60.0,51.0,48.0,58.0,56.0,70.0,64.0,50.0,54.0,61.0,60.0,51.0,52.0,51.0,62.0,61.0,66.0,72.0,73.0,81.0,65.0,79.0,82.0,77.0,72.0,64.0,56.0,65.0,56.0,59.0,57.0,60.0,54.0,58.0,59.0,56.0,53.0,55.0,49.0,42.0,34.0,37.0,44.0,33.0,30.0,19.0,25.0,16.0,19.0,14.0,19.0,9.0,7.0,8.0,5.0,8.0,12.0 C81020,42.0,62.0,43.0,51.0,45.0,45.0,57.0,46.0,46.0,49.0,61.0,47.0,74.0,76.0,85.0,81.0,89.0,89.0,80.0,67.0,64.0,47.0,54.0,57.0,59.0,57.0,58.0,67.0,69.0,70.0,73.0,80.0,71.0,73.0,66.0,64.0,58.0,58.0,70.0,47.0,60.0,53.0,67.0,54.0,69.0,67.0,88.0,58.0,62.0,47.0,59.0,64.0,73.0,75.0,72.0,77.0,71.0,70.0,86.0,70.0,86.0,62.0,84.0,70.0,68.0,55.0,77.0,79.0,52.0,74.0,79.0,58.0,59.0,62.0,65.0,70.0,53.0,67.0,50.0,45.0,30.0,47.0,19.0,30.0,31.0,25.0,33.0,16.0,21.0,13.0,11.0,8.0,9.0,5.0,6.0,14.0 C81021,53.0,74.0,79.0,80.0,88.0,58.0,73.0,85.0,94.0,85.0,101.0,97.0,99.0,84.0,82.0,76.0,84.0,91.0,65.0,88.0,70.0,77.0,74.0,83.0,78.0,92.0,84.0,104.0,95.0,103.0,112.0,107.0,125.0,113.0,113.0,126.0,128.0,95.0,100.0,116.0,106.0,93.0,96.0,92.0,103.0,91.0,90.0,77.0,82.0,76.0,93.0,88.0,107.0,98.0,128.0,104.0,109.0,102.0,78.0,111.0,103.0,107.0,105.0,106.0,101.0,89.0,78.0,76.0,69.0,57.0,77.0,52.0,82.0,68.0,68.0,74.0,82.0,69.0,79.0,65.0,45.0,54.0,57.0,29.0,38.0,32.0,26.0,30.0,10.0,22.0,15.0,13.0,10.0,2.0,10.0,14.0 C81022,17.0,20.0,22.0,20.0,21.0,16.0,18.0,18.0,17.0,23.0,17.0,24.0,22.0,24.0,25.0,30.0,22.0,25.0,21.0,17.0,15.0,16.0,24.0,21.0,15.0,40.0,29.0,32.0,27.0,23.0,34.0,29.0,23.0,30.0,21.0,24.0,28.0,26.0,27.0,23.0,27.0,28.0,18.0,24.0,25.0,23.0,28.0,23.0,16.0,17.0,34.0,32.0,27.0,30.0,36.0,27.0,34.0,34.0,34.0,29.0,34.0,35.0,23.0,20.0,23.0,24.0,16.0,19.0,27.0,18.0,22.0,12.0,31.0,25.0,26.0,24.0,22.0,19.0,33.0,22.0,17.0,16.0,14.0,15.0,7.0,13.0,9.0,6.0,6.0,4.0,3.0,5.0,4.0,5.0,3.0,11.0 C81023,27.0,25.0,21.0,25.0,26.0,33.0,28.0,38.0,33.0,29.0,43.0,50.0,40.0,44.0,50.0,48.0,42.0,40.0,33.0,43.0,22.0,37.0,39.0,41.0,47.0,30.0,44.0,39.0,44.0,44.0,47.0,41.0,45.0,47.0,47.0,47.0,54.0,60.0,41.0,53.0,44.0,50.0,43.0,54.0,54.0,46.0,50.0,39.0,49.0,37.0,43.0,55.0,47.0,69.0,62.0,54.0,53.0,79.0,71.0,77.0,56.0,68.0,54.0,54.0,58.0,50.0,57.0,49.0,44.0,52.0,48.0,45.0,60.0,45.0,48.0,56.0,65.0,62.0,62.0,42.0,57.0,26.0,38.0,26.0,21.0,24.0,18.0,23.0,22.0,11.0,7.0,7.0,8.0,8.0,4.0,4.0 C81025,27.0,41.0,33.0,42.0,52.0,38.0,44.0,49.0,59.0,69.0,50.0,61.0,54.0,61.0,62.0,64.0,59.0,68.0,50.0,49.0,44.0,44.0,49.0,52.0,35.0,37.0,46.0,34.0,35.0,53.0,67.0,60.0,68.0,52.0,57.0,65.0,62.0,77.0,61.0,80.0,71.0,57.0,72.0,66.0,63.0,73.0,54.0,79.0,63.0,64.0,72.0,61.0,83.0,76.0,67.0,94.0,88.0,69.0,71.0,72.0,77.0,95.0,72.0,70.0,69.0,76.0,70.0,71.0,78.0,69.0,78.0,71.0,64.0,62.0,67.0,67.0,63.0,68.0,75.0,75.0,71.0,52.0,58.0,35.0,38.0,37.0,27.0,28.0,13.0,23.0,22.0,13.0,17.0,13.0,6.0,17.0 C81026,26.0,18.0,30.0,25.0,18.0,27.0,32.0,34.0,33.0,35.0,34.0,33.0,41.0,35.0,34.0,37.0,45.0,31.0,34.0,32.0,31.0,24.0,15.0,23.0,25.0,33.0,41.0,36.0,44.0,44.0,40.0,37.0,39.0,50.0,34.0,41.0,50.0,32.0,36.0,40.0,39.0,33.0,35.0,50.0,45.0,46.0,48.0,34.0,34.0,41.0,36.0,42.0,39.0,49.0,40.0,60.0,53.0,48.0,54.0,51.0,49.0,52.0,55.0,49.0,45.0,39.0,46.0,35.0,32.0,43.0,33.0,35.0,31.0,24.0,23.0,30.0,29.0,35.0,34.0,22.0,23.0,24.0,20.0,25.0,19.0,18.0,12.0,19.0,12.0,14.0,11.0,11.0,9.0,8.0,8.0,12.0 C81027,46.0,40.0,51.0,42.0,38.0,42.0,35.0,38.0,46.0,41.0,32.0,46.0,49.0,30.0,42.0,54.0,43.0,40.0,41.0,35.0,37.0,32.0,53.0,45.0,42.0,51.0,67.0,55.0,54.0,62.0,58.0,59.0,53.0,57.0,55.0,68.0,58.0,61.0,53.0,50.0,52.0,61.0,52.0,41.0,51.0,51.0,43.0,49.0,54.0,46.0,62.0,42.0,49.0,68.0,55.0,48.0,59.0,61.0,61.0,70.0,59.0,55.0,65.0,55.0,53.0,49.0,50.0,40.0,41.0,41.0,39.0,49.0,47.0,28.0,46.0,41.0,41.0,37.0,38.0,26.0,35.0,32.0,21.0,18.0,24.0,15.0,19.0,16.0,10.0,5.0,3.0,10.0,3.0,5.0,2.0,9.0 C81028,15.0,21.0,18.0,18.0,30.0,20.0,42.0,25.0,30.0,33.0,34.0,22.0,32.0,42.0,38.0,44.0,30.0,42.0,30.0,30.0,29.0,23.0,41.0,27.0,37.0,25.0,30.0,31.0,29.0,26.0,31.0,35.0,34.0,27.0,35.0,29.0,33.0,31.0,43.0,25.0,44.0,44.0,38.0,38.0,50.0,44.0,35.0,34.0,35.0,41.0,37.0,55.0,49.0,46.0,72.0,65.0,51.0,67.0,49.0,64.0,68.0,75.0,64.0,59.0,45.0,56.0,73.0,61.0,47.0,62.0,44.0,65.0,52.0,66.0,51.0,64.0,62.0,66.0,58.0,34.0,49.0,40.0,41.0,26.0,33.0,19.0,17.0,18.0,21.0,12.0,19.0,12.0,6.0,8.0,6.0,12.0 C81029,67.0,84.0,69.0,88.0,85.0,84.0,101.0,99.0,98.0,108.0,96.0,95.0,90.0,107.0,93.0,106.0,87.0,82.0,89.0,84.0,80.0,64.0,69.0,95.0,76.0,101.0,98.0,108.0,113.0,115.0,141.0,126.0,112.0,117.0,130.0,105.0,124.0,116.0,122.0,114.0,107.0,104.0,100.0,114.0,104.0,113.0,95.0,82.0,78.0,83.0,100.0,95.0,96.0,144.0,132.0,122.0,123.0,130.0,143.0,126.0,140.0,153.0,113.0,126.0,114.0,111.0,127.0,109.0,107.0,95.0,107.0,91.0,90.0,84.0,88.0,83.0,96.0,88.0,88.0,72.0,61.0,86.0,58.0,51.0,39.0,41.0,36.0,31.0,25.0,22.0,11.0,16.0,12.0,11.0,12.0,25.0 C81030,18.0,35.0,26.0,30.0,31.0,35.0,26.0,32.0,46.0,37.0,34.0,41.0,39.0,62.0,45.0,35.0,43.0,42.0,37.0,30.0,31.0,30.0,32.0,44.0,25.0,35.0,34.0,36.0,38.0,36.0,38.0,45.0,46.0,62.0,38.0,42.0,61.0,47.0,43.0,44.0,41.0,42.0,43.0,49.0,45.0,47.0,55.0,39.0,58.0,55.0,39.0,56.0,75.0,56.0,78.0,70.0,62.0,81.0,75.0,63.0,82.0,87.0,75.0,80.0,76.0,75.0,58.0,73.0,88.0,70.0,64.0,51.0,62.0,77.0,57.0,61.0,61.0,70.0,69.0,60.0,49.0,60.0,45.0,48.0,35.0,39.0,47.0,28.0,24.0,25.0,25.0,18.0,16.0,20.0,12.0,36.0 C81031,42.0,46.0,44.0,49.0,42.0,42.0,52.0,43.0,53.0,38.0,57.0,45.0,50.0,59.0,61.0,57.0,52.0,61.0,64.0,44.0,38.0,52.0,41.0,52.0,51.0,50.0,54.0,55.0,80.0,60.0,60.0,66.0,67.0,79.0,66.0,80.0,63.0,70.0,78.0,58.0,64.0,48.0,68.0,62.0,53.0,62.0,55.0,51.0,48.0,52.0,47.0,63.0,61.0,58.0,59.0,79.0,64.0,69.0,69.0,63.0,70.0,85.0,74.0,60.0,66.0,46.0,60.0,54.0,43.0,38.0,48.0,47.0,67.0,45.0,47.0,49.0,47.0,53.0,51.0,37.0,31.0,30.0,27.0,27.0,20.0,21.0,22.0,25.0,12.0,17.0,11.0,6.0,9.0,3.0,2.0,11.0 C81032,48.0,54.0,62.0,74.0,71.0,59.0,67.0,73.0,70.0,93.0,75.0,67.0,70.0,84.0,82.0,86.0,81.0,72.0,65.0,68.0,62.0,60.0,61.0,53.0,71.0,69.0,72.0,88.0,97.0,99.0,86.0,98.0,85.0,107.0,85.0,92.0,73.0,99.0,82.0,96.0,81.0,92.0,78.0,74.0,105.0,79.0,80.0,80.0,73.0,73.0,81.0,95.0,102.0,113.0,118.0,97.0,125.0,117.0,84.0,104.0,95.0,87.0,80.0,87.0,74.0,83.0,94.0,70.0,71.0,72.0,70.0,95.0,71.0,88.0,56.0,84.0,73.0,90.0,83.0,60.0,72.0,50.0,51.0,44.0,34.0,27.0,30.0,20.0,25.0,13.0,14.0,8.0,13.0,8.0,6.0,26.0 C81033,72.0,64.0,83.0,107.0,77.0,67.0,77.0,91.0,88.0,108.0,100.0,88.0,95.0,106.0,105.0,82.0,90.0,103.0,83.0,91.0,82.0,69.0,86.0,89.0,107.0,102.0,100.0,118.0,116.0,122.0,108.0,129.0,137.0,126.0,130.0,107.0,122.0,119.0,117.0,112.0,95.0,115.0,110.0,95.0,87.0,101.0,84.0,78.0,68.0,105.0,98.0,84.0,111.0,122.0,127.0,107.0,128.0,122.0,113.0,121.0,109.0,115.0,138.0,91.0,118.0,94.0,91.0,88.0,119.0,71.0,71.0,57.0,59.0,59.0,71.0,42.0,60.0,70.0,79.0,64.0,69.0,62.0,60.0,34.0,40.0,41.0,30.0,33.0,27.0,25.0,27.0,21.0,13.0,8.0,11.0,18.0 C81034,36.0,50.0,64.0,47.0,41.0,47.0,54.0,52.0,42.0,58.0,67.0,66.0,70.0,68.0,73.0,58.0,74.0,66.0,58.0,55.0,37.0,39.0,50.0,62.0,60.0,71.0,59.0,78.0,76.0,68.0,65.0,72.0,59.0,88.0,66.0,75.0,60.0,59.0,68.0,57.0,72.0,62.0,57.0,58.0,57.0,60.0,51.0,64.0,46.0,69.0,70.0,63.0,78.0,99.0,93.0,75.0,99.0,94.0,93.0,94.0,101.0,77.0,84.0,77.0,74.0,77.0,70.0,71.0,63.0,66.0,60.0,70.0,53.0,67.0,56.0,51.0,72.0,67.0,71.0,46.0,49.0,53.0,45.0,35.0,33.0,24.0,42.0,29.0,35.0,21.0,19.0,18.0,19.0,11.0,6.0,18.0 C81035,51.0,68.0,71.0,70.0,51.0,70.0,82.0,68.0,71.0,70.0,70.0,73.0,87.0,81.0,86.0,81.0,75.0,86.0,79.0,59.0,70.0,69.0,57.0,71.0,62.0,81.0,81.0,72.0,81.0,73.0,74.0,74.0,76.0,66.0,82.0,95.0,98.0,85.0,89.0,100.0,78.0,89.0,101.0,83.0,93.0,91.0,70.0,88.0,73.0,62.0,67.0,73.0,87.0,72.0,53.0,73.0,73.0,86.0,71.0,76.0,72.0,52.0,66.0,66.0,63.0,68.0,66.0,73.0,59.0,63.0,56.0,56.0,47.0,53.0,61.0,42.0,59.0,69.0,44.0,39.0,44.0,41.0,32.0,33.0,21.0,30.0,30.0,27.0,19.0,22.0,14.0,16.0,10.0,6.0,7.0,19.0 C81036,18.0,13.0,21.0,13.0,19.0,19.0,23.0,28.0,19.0,23.0,24.0,19.0,21.0,26.0,16.0,24.0,18.0,16.0,34.0,50.0,75.0,62.0,42.0,53.0,54.0,53.0,73.0,54.0,56.0,57.0,45.0,46.0,59.0,55.0,34.0,36.0,38.0,40.0,37.0,28.0,44.0,34.0,28.0,24.0,34.0,17.0,22.0,18.0,30.0,24.0,16.0,18.0,17.0,22.0,22.0,19.0,18.0,17.0,21.0,29.0,23.0,20.0,19.0,19.0,15.0,15.0,22.0,17.0,17.0,16.0,14.0,20.0,16.0,14.0,12.0,20.0,8.0,24.0,15.0,17.0,10.0,14.0,13.0,11.0,9.0,9.0,8.0,9.0,7.0,8.0,5.0,3.0,7.0,4.0,5.0,9.0 C81037,46.0,40.0,44.0,40.0,42.0,60.0,43.0,41.0,55.0,42.0,50.0,45.0,42.0,48.0,47.0,67.0,61.0,56.0,45.0,43.0,41.0,33.0,39.0,43.0,52.0,45.0,53.0,60.0,45.0,77.0,51.0,73.0,59.0,57.0,53.0,66.0,63.0,57.0,53.0,70.0,74.0,64.0,49.0,56.0,70.0,46.0,59.0,60.0,58.0,63.0,60.0,57.0,81.0,88.0,90.0,81.0,73.0,89.0,91.0,109.0,98.0,98.0,79.0,82.0,95.0,100.0,68.0,80.0,63.0,65.0,65.0,71.0,65.0,72.0,67.0,54.0,65.0,65.0,70.0,49.0,48.0,52.0,54.0,39.0,26.0,33.0,35.0,21.0,24.0,19.0,16.0,9.0,8.0,5.0,7.0,20.0 C81038,35.0,54.0,55.0,44.0,57.0,68.0,53.0,60.0,55.0,61.0,60.0,61.0,58.0,57.0,62.0,72.0,78.0,70.0,66.0,52.0,47.0,48.0,59.0,65.0,53.0,64.0,51.0,65.0,71.0,59.0,79.0,75.0,74.0,81.0,82.0,69.0,72.0,81.0,72.0,83.0,72.0,81.0,60.0,68.0,74.0,63.0,83.0,65.0,79.0,86.0,71.0,107.0,113.0,105.0,109.0,107.0,121.0,107.0,105.0,98.0,103.0,91.0,105.0,102.0,81.0,83.0,85.0,61.0,73.0,69.0,77.0,77.0,62.0,59.0,62.0,80.0,83.0,80.0,75.0,56.0,63.0,60.0,59.0,40.0,43.0,33.0,34.0,26.0,16.0,25.0,17.0,15.0,19.0,15.0,11.0,21.0 C81039,8.0,11.0,12.0,7.0,12.0,20.0,14.0,19.0,19.0,12.0,14.0,23.0,8.0,18.0,17.0,18.0,11.0,24.0,20.0,9.0,17.0,15.0,13.0,15.0,14.0,11.0,21.0,16.0,16.0,14.0,18.0,12.0,19.0,18.0,18.0,20.0,17.0,12.0,22.0,17.0,20.0,18.0,20.0,25.0,18.0,21.0,17.0,16.0,21.0,17.0,22.0,16.0,19.0,32.0,33.0,28.0,35.0,34.0,25.0,39.0,30.0,34.0,35.0,38.0,32.0,30.0,30.0,31.0,38.0,36.0,32.0,25.0,29.0,18.0,23.0,23.0,26.0,21.0,28.0,12.0,21.0,27.0,20.0,15.0,12.0,10.0,13.0,12.0,9.0,11.0,1.0,1.0,3.0,2.0,1.0,5.0 C81040,29.0,34.0,26.0,27.0,34.0,38.0,39.0,42.0,34.0,44.0,41.0,45.0,59.0,44.0,38.0,41.0,46.0,44.0,47.0,39.0,34.0,26.0,32.0,44.0,38.0,40.0,45.0,42.0,47.0,49.0,43.0,46.0,40.0,44.0,41.0,47.0,48.0,47.0,45.0,53.0,48.0,57.0,46.0,50.0,64.0,58.0,49.0,38.0,63.0,41.0,57.0,55.0,61.0,46.0,60.0,70.0,71.0,70.0,64.0,65.0,68.0,70.0,63.0,58.0,57.0,45.0,60.0,56.0,44.0,59.0,45.0,65.0,47.0,52.0,41.0,51.0,56.0,62.0,46.0,40.0,53.0,37.0,40.0,25.0,37.0,25.0,20.0,28.0,23.0,24.0,12.0,12.0,9.0,5.0,9.0,10.0 C81041,51.0,65.0,71.0,57.0,56.0,53.0,67.0,60.0,71.0,69.0,63.0,66.0,77.0,69.0,74.0,73.0,56.0,69.0,53.0,60.0,47.0,50.0,57.0,61.0,73.0,79.0,65.0,75.0,82.0,79.0,84.0,85.0,92.0,87.0,73.0,83.0,78.0,75.0,94.0,83.0,81.0,85.0,70.0,70.0,79.0,49.0,72.0,64.0,68.0,72.0,61.0,77.0,77.0,76.0,88.0,68.0,108.0,84.0,91.0,81.0,100.0,89.0,85.0,75.0,78.0,81.0,72.0,68.0,82.0,69.0,58.0,66.0,67.0,49.0,59.0,68.0,63.0,62.0,66.0,39.0,41.0,41.0,31.0,43.0,26.0,25.0,26.0,19.0,18.0,17.0,13.0,12.0,3.0,5.0,9.0,11.0 C81042,77.0,77.0,54.0,66.0,91.0,61.0,82.0,63.0,67.0,64.0,81.0,77.0,64.0,76.0,62.0,70.0,61.0,76.0,56.0,40.0,36.0,53.0,43.0,45.0,56.0,73.0,80.0,75.0,83.0,78.0,96.0,96.0,96.0,102.0,109.0,101.0,96.0,92.0,96.0,81.0,98.0,80.0,80.0,96.0,78.0,98.0,71.0,71.0,86.0,75.0,69.0,90.0,85.0,93.0,82.0,83.0,103.0,74.0,90.0,89.0,98.0,106.0,86.0,99.0,83.0,91.0,69.0,94.0,88.0,76.0,83.0,71.0,73.0,84.0,73.0,62.0,72.0,84.0,80.0,51.0,57.0,59.0,42.0,36.0,42.0,41.0,32.0,36.0,18.0,26.0,31.0,13.0,20.0,10.0,8.0,22.0 C81044,32.0,34.0,46.0,28.0,34.0,43.0,30.0,44.0,52.0,36.0,37.0,41.0,45.0,47.0,42.0,61.0,46.0,43.0,39.0,43.0,36.0,37.0,34.0,37.0,40.0,45.0,54.0,59.0,56.0,65.0,47.0,63.0,65.0,68.0,62.0,59.0,61.0,62.0,65.0,43.0,61.0,49.0,53.0,54.0,50.0,49.0,41.0,42.0,38.0,44.0,52.0,31.0,49.0,69.0,59.0,87.0,64.0,67.0,58.0,70.0,76.0,72.0,68.0,51.0,58.0,52.0,46.0,62.0,48.0,56.0,44.0,45.0,42.0,32.0,43.0,31.0,56.0,44.0,45.0,41.0,46.0,26.0,30.0,25.0,17.0,15.0,27.0,23.0,10.0,16.0,12.0,10.0,13.0,3.0,3.0,15.0 C81045,47.0,47.0,54.0,63.0,44.0,64.0,63.0,58.0,60.0,66.0,52.0,65.0,61.0,72.0,69.0,59.0,62.0,69.0,75.0,51.0,63.0,60.0,69.0,69.0,82.0,80.0,75.0,72.0,98.0,92.0,108.0,91.0,95.0,96.0,89.0,74.0,92.0,87.0,86.0,77.0,74.0,78.0,89.0,69.0,77.0,81.0,82.0,82.0,68.0,71.0,81.0,83.0,79.0,90.0,96.0,86.0,92.0,94.0,86.0,116.0,95.0,92.0,82.0,87.0,98.0,81.0,69.0,91.0,71.0,67.0,65.0,57.0,60.0,63.0,63.0,48.0,60.0,70.0,65.0,53.0,55.0,53.0,42.0,41.0,34.0,31.0,25.0,26.0,22.0,20.0,18.0,10.0,12.0,7.0,9.0,15.0 C81046,19.0,13.0,15.0,23.0,13.0,16.0,14.0,19.0,19.0,21.0,20.0,23.0,25.0,26.0,29.0,32.0,29.0,23.0,16.0,13.0,19.0,23.0,14.0,23.0,13.0,17.0,34.0,19.0,17.0,24.0,22.0,32.0,18.0,30.0,30.0,26.0,33.0,33.0,24.0,32.0,35.0,19.0,31.0,25.0,24.0,23.0,29.0,18.0,25.0,22.0,33.0,31.0,36.0,37.0,39.0,28.0,36.0,34.0,44.0,41.0,34.0,39.0,37.0,37.0,33.0,37.0,25.0,29.0,17.0,30.0,43.0,39.0,33.0,33.0,37.0,29.0,30.0,34.0,36.0,23.0,19.0,26.0,24.0,19.0,15.0,20.0,15.0,12.0,7.0,14.0,9.0,6.0,5.0,7.0,5.0,12.0 C81047,51.0,45.0,72.0,46.0,53.0,56.0,57.0,58.0,55.0,60.0,46.0,58.0,53.0,70.0,64.0,60.0,52.0,64.0,60.0,62.0,61.0,54.0,54.0,57.0,45.0,52.0,62.0,55.0,66.0,63.0,78.0,87.0,91.0,86.0,86.0,85.0,71.0,67.0,74.0,53.0,64.0,61.0,63.0,72.0,81.0,62.0,61.0,54.0,57.0,73.0,76.0,81.0,76.0,75.0,94.0,87.0,90.0,82.0,107.0,107.0,88.0,102.0,84.0,113.0,69.0,96.0,67.0,72.0,72.0,68.0,74.0,65.0,58.0,60.0,53.0,78.0,89.0,83.0,99.0,64.0,70.0,61.0,58.0,52.0,52.0,47.0,40.0,48.0,20.0,37.0,26.0,23.0,14.0,12.0,12.0,30.0 C81048,28.0,21.0,29.0,36.0,26.0,34.0,51.0,45.0,69.0,70.0,58.0,74.0,71.0,81.0,71.0,70.0,70.0,69.0,68.0,52.0,38.0,54.0,57.0,44.0,50.0,57.0,38.0,33.0,37.0,41.0,40.0,41.0,44.0,42.0,55.0,47.0,36.0,52.0,42.0,50.0,70.0,59.0,67.0,73.0,75.0,80.0,68.0,84.0,62.0,96.0,77.0,82.0,89.0,91.0,84.0,96.0,93.0,83.0,97.0,88.0,101.0,91.0,78.0,76.0,79.0,77.0,77.0,74.0,62.0,67.0,60.0,55.0,48.0,70.0,74.0,88.0,69.0,85.0,85.0,50.0,62.0,63.0,60.0,47.0,42.0,47.0,31.0,39.0,36.0,32.0,23.0,25.0,23.0,14.0,12.0,37.0 C81049,42.0,31.0,56.0,53.0,40.0,45.0,38.0,45.0,61.0,49.0,75.0,49.0,51.0,48.0,52.0,49.0,56.0,66.0,39.0,38.0,41.0,35.0,49.0,36.0,46.0,52.0,50.0,60.0,80.0,67.0,70.0,59.0,74.0,83.0,77.0,72.0,57.0,73.0,64.0,57.0,73.0,73.0,50.0,56.0,71.0,68.0,52.0,61.0,67.0,62.0,52.0,73.0,78.0,88.0,63.0,71.0,70.0,76.0,73.0,82.0,62.0,70.0,66.0,56.0,68.0,57.0,40.0,47.0,66.0,39.0,52.0,48.0,52.0,47.0,39.0,52.0,50.0,48.0,55.0,44.0,49.0,43.0,26.0,31.0,18.0,17.0,14.0,19.0,16.0,18.0,5.0,11.0,7.0,2.0,1.0,6.0 C81050,40.0,36.0,47.0,45.0,40.0,50.0,53.0,48.0,50.0,59.0,60.0,66.0,65.0,66.0,58.0,50.0,58.0,58.0,50.0,53.0,37.0,33.0,42.0,50.0,45.0,53.0,54.0,58.0,60.0,67.0,61.0,65.0,43.0,49.0,76.0,60.0,77.0,69.0,67.0,53.0,72.0,72.0,66.0,56.0,71.0,50.0,49.0,41.0,59.0,50.0,58.0,49.0,65.0,71.0,70.0,67.0,77.0,63.0,58.0,75.0,64.0,84.0,57.0,58.0,42.0,53.0,56.0,47.0,45.0,43.0,44.0,57.0,43.0,45.0,32.0,62.0,41.0,47.0,41.0,31.0,52.0,42.0,36.0,22.0,15.0,27.0,27.0,18.0,23.0,14.0,12.0,15.0,13.0,12.0,8.0,15.0 C81051,99.0,98.0,95.0,92.0,100.0,94.0,107.0,129.0,138.0,143.0,127.0,146.0,167.0,146.0,123.0,150.0,141.0,133.0,200.0,327.0,366.0,337.0,286.0,253.0,268.0,224.0,176.0,213.0,195.0,180.0,187.0,188.0,179.0,205.0,181.0,171.0,193.0,168.0,170.0,154.0,174.0,175.0,172.0,174.0,170.0,129.0,133.0,134.0,127.0,138.0,119.0,145.0,162.0,155.0,167.0,175.0,159.0,160.0,169.0,171.0,168.0,187.0,169.0,184.0,132.0,164.0,141.0,152.0,114.0,101.0,111.0,108.0,114.0,114.0,95.0,113.0,124.0,144.0,141.0,98.0,99.0,77.0,75.0,55.0,68.0,74.0,53.0,61.0,40.0,34.0,44.0,26.0,15.0,18.0,16.0,45.0 C81052,24.0,33.0,34.0,46.0,32.0,24.0,30.0,38.0,35.0,34.0,36.0,38.0,35.0,58.0,34.0,31.0,33.0,30.0,47.0,40.0,27.0,37.0,33.0,34.0,48.0,50.0,30.0,50.0,40.0,45.0,33.0,52.0,60.0,41.0,68.0,48.0,48.0,49.0,38.0,48.0,50.0,44.0,43.0,46.0,55.0,43.0,34.0,38.0,38.0,36.0,39.0,46.0,61.0,55.0,56.0,54.0,72.0,47.0,43.0,49.0,44.0,52.0,41.0,34.0,58.0,39.0,49.0,38.0,43.0,33.0,39.0,33.0,27.0,33.0,40.0,33.0,46.0,34.0,33.0,27.0,37.0,26.0,22.0,16.0,12.0,17.0,18.0,18.0,13.0,6.0,12.0,8.0,4.0,1.0,5.0,12.0 C81053,47.0,51.0,49.0,49.0,37.0,48.0,78.0,57.0,46.0,53.0,64.0,48.0,61.0,68.0,61.0,63.0,65.0,56.0,66.0,38.0,46.0,34.0,50.0,48.0,53.0,66.0,80.0,58.0,77.0,89.0,74.0,77.0,78.0,68.0,78.0,103.0,82.0,73.0,82.0,87.0,82.0,63.0,71.0,89.0,72.0,75.0,66.0,47.0,73.0,57.0,66.0,65.0,61.0,85.0,59.0,71.0,66.0,70.0,84.0,82.0,89.0,69.0,85.0,59.0,73.0,69.0,58.0,84.0,71.0,72.0,63.0,48.0,53.0,57.0,57.0,49.0,56.0,52.0,62.0,49.0,47.0,32.0,28.0,27.0,20.0,21.0,26.0,23.0,20.0,13.0,13.0,5.0,9.0,2.0,7.0,7.0 C81054,169.0,193.0,178.0,194.0,184.0,217.0,221.0,237.0,241.0,278.0,249.0,268.0,271.0,281.0,254.0,282.0,242.0,253.0,210.0,194.0,192.0,182.0,181.0,171.0,181.0,176.0,185.0,225.0,228.0,223.0,245.0,247.0,284.0,289.0,271.0,270.0,276.0,306.0,271.0,307.0,329.0,294.0,267.0,227.0,283.0,265.0,255.0,199.0,225.0,230.0,227.0,206.0,210.0,206.0,180.0,206.0,198.0,207.0,183.0,210.0,188.0,196.0,165.0,168.0,171.0,162.0,158.0,155.0,144.0,135.0,158.0,140.0,138.0,116.0,131.0,120.0,94.0,130.0,109.0,74.0,88.0,83.0,69.0,66.0,57.0,72.0,54.0,42.0,44.0,47.0,30.0,31.0,21.0,17.0,19.0,47.0 C81055,37.0,24.0,24.0,29.0,19.0,26.0,22.0,23.0,27.0,25.0,29.0,16.0,32.0,19.0,29.0,24.0,24.0,22.0,28.0,21.0,25.0,19.0,24.0,33.0,23.0,30.0,32.0,36.0,43.0,39.0,50.0,39.0,55.0,37.0,47.0,29.0,36.0,21.0,31.0,35.0,26.0,28.0,33.0,24.0,34.0,27.0,23.0,27.0,22.0,35.0,30.0,29.0,27.0,35.0,41.0,19.0,31.0,37.0,28.0,20.0,30.0,34.0,34.0,20.0,22.0,35.0,28.0,40.0,33.0,31.0,28.0,30.0,29.0,27.0,23.0,26.0,30.0,20.0,16.0,18.0,12.0,18.0,8.0,12.0,8.0,5.0,8.0,7.0,7.0,4.0,7.0,3.0,1.0,2.0,1.0,8.0 C81056,30.0,36.0,27.0,32.0,36.0,31.0,38.0,29.0,45.0,42.0,50.0,33.0,25.0,40.0,30.0,28.0,20.0,31.0,29.0,23.0,23.0,27.0,26.0,26.0,51.0,40.0,35.0,36.0,69.0,45.0,53.0,62.0,55.0,48.0,58.0,43.0,43.0,54.0,42.0,37.0,57.0,47.0,44.0,35.0,29.0,36.0,28.0,28.0,31.0,43.0,29.0,40.0,37.0,41.0,36.0,40.0,44.0,49.0,52.0,42.0,52.0,52.0,46.0,39.0,38.0,35.0,37.0,48.0,36.0,52.0,37.0,45.0,36.0,50.0,36.0,31.0,43.0,40.0,39.0,44.0,29.0,23.0,19.0,18.0,18.0,21.0,17.0,22.0,6.0,14.0,7.0,9.0,7.0,1.0,3.0,5.0 C81057,44.0,41.0,46.0,47.0,55.0,41.0,41.0,46.0,52.0,57.0,55.0,45.0,62.0,53.0,60.0,70.0,63.0,60.0,49.0,44.0,39.0,39.0,59.0,37.0,45.0,61.0,48.0,55.0,38.0,60.0,59.0,45.0,54.0,68.0,76.0,77.0,65.0,75.0,68.0,78.0,38.0,62.0,58.0,64.0,58.0,68.0,77.0,58.0,50.0,65.0,63.0,70.0,74.0,84.0,100.0,85.0,101.0,91.0,75.0,79.0,88.0,96.0,100.0,83.0,86.0,81.0,73.0,65.0,68.0,74.0,56.0,68.0,73.0,73.0,54.0,64.0,72.0,74.0,58.0,42.0,51.0,47.0,38.0,32.0,19.0,17.0,25.0,21.0,17.0,20.0,10.0,13.0,4.0,8.0,3.0,14.0 C81058,36.0,41.0,43.0,46.0,40.0,42.0,44.0,43.0,45.0,43.0,48.0,43.0,44.0,42.0,38.0,39.0,46.0,49.0,39.0,38.0,38.0,48.0,35.0,41.0,55.0,71.0,56.0,51.0,59.0,65.0,73.0,72.0,65.0,61.0,67.0,59.0,75.0,48.0,55.0,54.0,50.0,51.0,55.0,57.0,58.0,42.0,54.0,44.0,41.0,59.0,60.0,66.0,61.0,54.0,69.0,55.0,63.0,68.0,61.0,59.0,63.0,75.0,57.0,48.0,53.0,53.0,49.0,47.0,41.0,50.0,44.0,37.0,37.0,44.0,44.0,58.0,35.0,49.0,35.0,39.0,44.0,40.0,23.0,27.0,25.0,32.0,21.0,21.0,25.0,15.0,13.0,15.0,15.0,7.0,7.0,10.0 C81059,31.0,33.0,31.0,29.0,19.0,27.0,31.0,39.0,27.0,34.0,31.0,34.0,33.0,46.0,33.0,33.0,31.0,32.0,31.0,32.0,28.0,31.0,28.0,36.0,30.0,33.0,56.0,44.0,33.0,47.0,49.0,41.0,47.0,47.0,37.0,47.0,40.0,35.0,44.0,44.0,40.0,35.0,37.0,33.0,45.0,39.0,35.0,35.0,27.0,41.0,37.0,39.0,41.0,46.0,44.0,40.0,52.0,53.0,40.0,42.0,42.0,58.0,40.0,27.0,30.0,37.0,38.0,35.0,32.0,33.0,26.0,28.0,34.0,24.0,32.0,27.0,34.0,27.0,32.0,26.0,34.0,28.0,18.0,16.0,16.0,13.0,12.0,11.0,9.0,7.0,5.0,11.0,6.0,3.0,4.0,6.0 C81060,49.0,58.0,60.0,60.0,49.0,64.0,68.0,57.0,62.0,63.0,61.0,44.0,45.0,59.0,63.0,52.0,68.0,51.0,46.0,64.0,41.0,52.0,55.0,45.0,73.0,60.0,72.0,70.0,91.0,83.0,79.0,93.0,78.0,89.0,82.0,72.0,64.0,69.0,88.0,69.0,71.0,75.0,75.0,53.0,71.0,66.0,63.0,52.0,54.0,72.0,61.0,70.0,73.0,74.0,96.0,98.0,88.0,95.0,79.0,83.0,88.0,75.0,64.0,76.0,65.0,71.0,58.0,66.0,39.0,53.0,53.0,50.0,55.0,43.0,30.0,42.0,50.0,58.0,57.0,30.0,30.0,36.0,26.0,26.0,18.0,23.0,21.0,15.0,20.0,21.0,12.0,8.0,10.0,2.0,9.0,15.0 C81061,74.0,85.0,97.0,78.0,71.0,73.0,99.0,80.0,84.0,85.0,99.0,83.0,79.0,89.0,104.0,105.0,87.0,83.0,76.0,87.0,76.0,81.0,88.0,90.0,99.0,105.0,110.0,125.0,105.0,116.0,116.0,108.0,115.0,141.0,116.0,128.0,142.0,138.0,122.0,118.0,114.0,109.0,92.0,142.0,110.0,126.0,94.0,87.0,89.0,93.0,102.0,107.0,117.0,108.0,127.0,104.0,140.0,126.0,147.0,139.0,133.0,120.0,116.0,116.0,122.0,110.0,104.0,109.0,101.0,92.0,103.0,107.0,86.0,80.0,104.0,90.0,84.0,114.0,89.0,81.0,71.0,63.0,64.0,55.0,35.0,36.0,51.0,36.0,20.0,27.0,16.0,15.0,20.0,18.0,14.0,17.0 C81062,34.0,22.0,21.0,28.0,26.0,33.0,33.0,28.0,38.0,43.0,32.0,37.0,45.0,46.0,59.0,56.0,61.0,54.0,47.0,46.0,32.0,35.0,34.0,42.0,31.0,31.0,35.0,34.0,45.0,40.0,45.0,41.0,43.0,42.0,41.0,37.0,50.0,36.0,33.0,47.0,41.0,34.0,47.0,40.0,60.0,49.0,55.0,47.0,46.0,47.0,63.0,63.0,78.0,81.0,79.0,83.0,96.0,76.0,101.0,95.0,80.0,68.0,83.0,76.0,80.0,77.0,81.0,60.0,79.0,77.0,72.0,64.0,61.0,56.0,66.0,57.0,64.0,74.0,66.0,64.0,44.0,44.0,35.0,47.0,23.0,26.0,25.0,26.0,16.0,8.0,13.0,18.0,10.0,8.0,5.0,10.0 C81063,40.0,39.0,29.0,51.0,46.0,44.0,59.0,55.0,57.0,53.0,48.0,43.0,54.0,35.0,36.0,61.0,45.0,52.0,46.0,45.0,30.0,34.0,40.0,29.0,41.0,33.0,42.0,36.0,45.0,36.0,41.0,50.0,68.0,55.0,58.0,58.0,69.0,55.0,65.0,61.0,64.0,52.0,60.0,48.0,53.0,54.0,53.0,51.0,51.0,36.0,50.0,57.0,68.0,55.0,72.0,73.0,81.0,74.0,76.0,74.0,78.0,69.0,72.0,82.0,75.0,78.0,79.0,76.0,61.0,59.0,48.0,54.0,59.0,72.0,61.0,51.0,70.0,52.0,66.0,50.0,46.0,44.0,43.0,44.0,31.0,34.0,24.0,15.0,25.0,14.0,11.0,11.0,10.0,6.0,11.0,13.0 C81064,41.0,61.0,52.0,56.0,49.0,61.0,68.0,69.0,71.0,60.0,67.0,65.0,60.0,89.0,85.0,76.0,63.0,76.0,86.0,62.0,47.0,49.0,49.0,63.0,62.0,61.0,62.0,70.0,69.0,63.0,71.0,90.0,84.0,84.0,80.0,86.0,77.0,79.0,101.0,95.0,104.0,91.0,98.0,97.0,79.0,93.0,79.0,72.0,65.0,83.0,74.0,74.0,66.0,86.0,82.0,98.0,87.0,90.0,90.0,91.0,91.0,92.0,72.0,71.0,83.0,62.0,68.0,70.0,74.0,62.0,52.0,60.0,61.0,60.0,68.0,77.0,69.0,87.0,80.0,56.0,77.0,50.0,54.0,43.0,49.0,50.0,48.0,60.0,36.0,43.0,33.0,21.0,34.0,21.0,13.0,46.0 C81065,37.0,45.0,42.0,38.0,38.0,48.0,32.0,40.0,38.0,44.0,41.0,51.0,49.0,52.0,60.0,56.0,53.0,49.0,53.0,43.0,45.0,45.0,39.0,53.0,56.0,64.0,66.0,59.0,60.0,76.0,71.0,56.0,67.0,73.0,51.0,56.0,56.0,55.0,56.0,50.0,52.0,62.0,59.0,61.0,55.0,57.0,46.0,45.0,43.0,57.0,44.0,78.0,72.0,57.0,50.0,81.0,62.0,66.0,61.0,68.0,70.0,70.0,54.0,64.0,61.0,52.0,51.0,59.0,58.0,46.0,34.0,38.0,44.0,47.0,38.0,48.0,45.0,43.0,34.0,30.0,34.0,26.0,27.0,21.0,25.0,31.0,21.0,20.0,20.0,17.0,12.0,10.0,1.0,5.0,2.0,9.0 C81066,36.0,46.0,52.0,44.0,48.0,55.0,49.0,53.0,53.0,67.0,58.0,72.0,53.0,80.0,66.0,77.0,83.0,83.0,53.0,38.0,58.0,46.0,55.0,54.0,51.0,59.0,58.0,68.0,58.0,54.0,65.0,61.0,78.0,69.0,78.0,74.0,82.0,80.0,95.0,79.0,69.0,66.0,66.0,78.0,96.0,63.0,86.0,63.0,58.0,93.0,66.0,82.0,72.0,98.0,97.0,102.0,84.0,99.0,96.0,101.0,101.0,86.0,84.0,83.0,95.0,69.0,78.0,68.0,77.0,70.0,65.0,71.0,72.0,85.0,66.0,78.0,59.0,75.0,92.0,68.0,68.0,62.0,58.0,36.0,36.0,31.0,30.0,34.0,25.0,20.0,21.0,10.0,17.0,10.0,2.0,21.0 C81067,28.0,28.0,32.0,37.0,34.0,37.0,47.0,50.0,55.0,34.0,42.0,54.0,50.0,42.0,53.0,46.0,53.0,56.0,49.0,48.0,32.0,35.0,32.0,36.0,26.0,39.0,38.0,32.0,39.0,38.0,46.0,37.0,39.0,38.0,49.0,54.0,45.0,50.0,53.0,54.0,44.0,54.0,50.0,60.0,53.0,66.0,48.0,50.0,53.0,68.0,71.0,60.0,76.0,83.0,84.0,74.0,63.0,69.0,101.0,94.0,100.0,87.0,100.0,69.0,77.0,86.0,73.0,78.0,81.0,83.0,80.0,84.0,71.0,75.0,67.0,74.0,81.0,77.0,92.0,67.0,60.0,45.0,53.0,43.0,32.0,41.0,43.0,26.0,28.0,21.0,22.0,24.0,10.0,12.0,4.0,24.0 C81068,56.0,41.0,43.0,49.0,55.0,66.0,63.0,66.0,67.0,63.0,68.0,76.0,88.0,75.0,94.0,83.0,75.0,75.0,79.0,68.0,58.0,51.0,51.0,55.0,77.0,61.0,65.0,57.0,63.0,78.0,83.0,79.0,84.0,82.0,87.0,82.0,95.0,86.0,86.0,76.0,76.0,89.0,81.0,92.0,85.0,99.0,85.0,56.0,61.0,76.0,64.0,76.0,94.0,98.0,95.0,82.0,85.0,82.0,93.0,90.0,76.0,81.0,89.0,82.0,74.0,65.0,77.0,72.0,71.0,57.0,53.0,54.0,61.0,47.0,50.0,55.0,50.0,71.0,74.0,43.0,68.0,59.0,41.0,40.0,38.0,27.0,25.0,26.0,28.0,15.0,22.0,21.0,13.0,16.0,9.0,24.0 C81069,41.0,48.0,54.0,41.0,62.0,54.0,50.0,62.0,59.0,61.0,56.0,78.0,62.0,73.0,71.0,58.0,57.0,61.0,71.0,52.0,54.0,53.0,65.0,54.0,53.0,67.0,69.0,71.0,75.0,54.0,75.0,83.0,61.0,87.0,65.0,82.0,62.0,87.0,79.0,93.0,84.0,74.0,66.0,81.0,98.0,97.0,88.0,81.0,82.0,85.0,109.0,102.0,112.0,116.0,115.0,113.0,110.0,120.0,116.0,114.0,144.0,109.0,126.0,107.0,106.0,100.0,85.0,97.0,77.0,80.0,75.0,90.0,87.0,70.0,82.0,86.0,85.0,105.0,100.0,70.0,71.0,64.0,65.0,39.0,44.0,40.0,39.0,31.0,33.0,22.0,18.0,16.0,18.0,11.0,14.0,20.0 C81070,14.0,12.0,11.0,11.0,13.0,14.0,11.0,15.0,14.0,9.0,16.0,24.0,19.0,25.0,23.0,14.0,18.0,18.0,14.0,15.0,20.0,14.0,14.0,15.0,16.0,11.0,16.0,17.0,12.0,14.0,15.0,18.0,11.0,23.0,16.0,12.0,13.0,22.0,17.0,18.0,28.0,22.0,22.0,21.0,20.0,14.0,22.0,20.0,24.0,17.0,21.0,20.0,26.0,20.0,33.0,42.0,33.0,28.0,37.0,36.0,39.0,25.0,29.0,26.0,30.0,30.0,24.0,22.0,26.0,31.0,25.0,34.0,21.0,23.0,24.0,31.0,32.0,37.0,32.0,34.0,33.0,25.0,33.0,26.0,19.0,23.0,26.0,17.0,14.0,15.0,6.0,9.0,9.0,5.0,3.0,6.0 C81071,59.0,69.0,53.0,68.0,68.0,80.0,72.0,68.0,77.0,68.0,91.0,83.0,81.0,82.0,74.0,75.0,72.0,74.0,69.0,52.0,71.0,62.0,57.0,50.0,65.0,86.0,86.0,95.0,64.0,76.0,86.0,90.0,94.0,88.0,106.0,94.0,100.0,95.0,74.0,85.0,100.0,96.0,85.0,81.0,89.0,92.0,72.0,67.0,81.0,71.0,74.0,69.0,80.0,84.0,76.0,84.0,78.0,69.0,78.0,82.0,70.0,66.0,73.0,65.0,58.0,50.0,58.0,47.0,47.0,40.0,41.0,52.0,34.0,43.0,48.0,41.0,31.0,38.0,24.0,21.0,30.0,34.0,18.0,25.0,27.0,13.0,16.0,21.0,22.0,10.0,15.0,17.0,15.0,7.0,9.0,23.0 C81072,219.0,201.0,190.0,213.0,218.0,188.0,217.0,205.0,218.0,217.0,209.0,226.0,245.0,239.0,224.0,221.0,225.0,208.0,201.0,186.0,205.0,195.0,219.0,212.0,233.0,244.0,270.0,292.0,268.0,216.0,246.0,241.0,261.0,243.0,225.0,253.0,238.0,233.0,213.0,220.0,219.0,206.0,202.0,175.0,192.0,186.0,183.0,154.0,158.0,177.0,164.0,154.0,152.0,162.0,172.0,154.0,184.0,120.0,162.0,130.0,154.0,151.0,148.0,112.0,108.0,98.0,92.0,72.0,97.0,90.0,81.0,94.0,67.0,67.0,44.0,59.0,59.0,48.0,53.0,34.0,59.0,41.0,38.0,37.0,35.0,32.0,30.0,23.0,23.0,25.0,21.0,20.0,17.0,9.0,12.0,23.0 C81073,53.0,60.0,72.0,59.0,69.0,62.0,82.0,71.0,72.0,75.0,67.0,64.0,61.0,68.0,62.0,56.0,76.0,51.0,55.0,53.0,57.0,53.0,48.0,69.0,67.0,92.0,86.0,92.0,111.0,118.0,92.0,115.0,125.0,101.0,116.0,120.0,135.0,99.0,92.0,112.0,99.0,98.0,88.0,81.0,84.0,82.0,77.0,73.0,54.0,45.0,60.0,57.0,66.0,64.0,60.0,57.0,66.0,59.0,59.0,71.0,72.0,51.0,71.0,75.0,59.0,48.0,63.0,52.0,58.0,43.0,46.0,39.0,58.0,41.0,49.0,44.0,40.0,43.0,53.0,22.0,32.0,26.0,26.0,21.0,30.0,17.0,21.0,15.0,26.0,24.0,13.0,7.0,12.0,6.0,6.0,15.0 C81074,11.0,18.0,16.0,19.0,17.0,22.0,19.0,26.0,22.0,37.0,28.0,27.0,28.0,35.0,35.0,31.0,38.0,36.0,21.0,29.0,23.0,18.0,19.0,21.0,22.0,26.0,33.0,25.0,33.0,33.0,31.0,22.0,29.0,32.0,17.0,28.0,23.0,36.0,27.0,25.0,35.0,21.0,26.0,36.0,30.0,36.0,35.0,34.0,34.0,35.0,49.0,34.0,39.0,44.0,51.0,41.0,37.0,44.0,45.0,53.0,40.0,57.0,47.0,36.0,53.0,43.0,39.0,30.0,34.0,36.0,40.0,35.0,26.0,24.0,25.0,31.0,26.0,26.0,27.0,24.0,28.0,16.0,21.0,16.0,12.0,16.0,17.0,7.0,9.0,13.0,6.0,8.0,5.0,5.0,,14.0 C81075,12.0,11.0,20.0,24.0,17.0,22.0,27.0,25.0,15.0,31.0,22.0,25.0,30.0,29.0,30.0,31.0,28.0,27.0,35.0,29.0,18.0,22.0,14.0,22.0,23.0,20.0,24.0,22.0,20.0,20.0,17.0,23.0,29.0,30.0,27.0,24.0,24.0,21.0,28.0,29.0,20.0,27.0,22.0,20.0,25.0,29.0,27.0,28.0,30.0,37.0,24.0,32.0,36.0,39.0,51.0,43.0,41.0,51.0,43.0,53.0,60.0,59.0,44.0,39.0,45.0,41.0,50.0,31.0,37.0,36.0,36.0,43.0,31.0,39.0,28.0,33.0,40.0,34.0,38.0,22.0,29.0,31.0,19.0,14.0,14.0,19.0,13.0,21.0,10.0,14.0,8.0,12.0,3.0,6.0,,8.0 C81080,21.0,27.0,26.0,32.0,30.0,34.0,23.0,34.0,38.0,36.0,45.0,54.0,41.0,50.0,34.0,48.0,53.0,47.0,38.0,37.0,34.0,32.0,37.0,27.0,24.0,26.0,31.0,21.0,29.0,30.0,32.0,35.0,46.0,46.0,52.0,50.0,39.0,45.0,50.0,46.0,49.0,48.0,52.0,39.0,73.0,48.0,42.0,42.0,51.0,52.0,53.0,47.0,58.0,51.0,80.0,80.0,67.0,69.0,73.0,70.0,81.0,68.0,74.0,59.0,71.0,67.0,62.0,54.0,63.0,49.0,55.0,46.0,42.0,58.0,48.0,52.0,51.0,63.0,54.0,32.0,29.0,40.0,31.0,31.0,19.0,20.0,19.0,25.0,14.0,14.0,14.0,12.0,8.0,5.0,5.0,15.0 C81081,84.0,69.0,93.0,99.0,93.0,81.0,91.0,126.0,107.0,110.0,94.0,84.0,98.0,120.0,112.0,101.0,115.0,104.0,123.0,96.0,74.0,86.0,77.0,89.0,101.0,109.0,122.0,99.0,115.0,117.0,135.0,115.0,130.0,173.0,145.0,138.0,132.0,148.0,165.0,145.0,144.0,145.0,119.0,128.0,150.0,117.0,132.0,129.0,104.0,118.0,126.0,119.0,131.0,137.0,151.0,159.0,150.0,167.0,152.0,158.0,176.0,174.0,152.0,165.0,151.0,163.0,140.0,128.0,99.0,108.0,107.0,116.0,120.0,111.0,92.0,111.0,97.0,140.0,116.0,82.0,72.0,94.0,65.0,67.0,68.0,53.0,46.0,37.0,26.0,25.0,35.0,15.0,17.0,8.0,9.0,17.0 C81082,15.0,9.0,19.0,18.0,16.0,17.0,11.0,10.0,11.0,13.0,13.0,12.0,12.0,20.0,11.0,13.0,14.0,14.0,11.0,9.0,9.0,17.0,15.0,13.0,13.0,11.0,17.0,22.0,10.0,13.0,21.0,9.0,20.0,22.0,21.0,14.0,11.0,19.0,15.0,14.0,12.0,16.0,13.0,19.0,22.0,18.0,17.0,12.0,17.0,18.0,13.0,23.0,17.0,25.0,30.0,31.0,31.0,32.0,41.0,42.0,33.0,35.0,33.0,38.0,35.0,40.0,29.0,28.0,27.0,27.0,31.0,16.0,18.0,27.0,27.0,16.0,21.0,30.0,15.0,13.0,17.0,14.0,9.0,18.0,4.0,5.0,9.0,9.0,7.0,5.0,4.0,1.0,1.0,,1.0,3.0 C81083,68.0,53.0,83.0,85.0,90.0,104.0,102.0,99.0,103.0,100.0,97.0,82.0,95.0,111.0,101.0,76.0,79.0,105.0,82.0,63.0,61.0,64.0,51.0,72.0,76.0,82.0,85.0,114.0,110.0,121.0,115.0,142.0,123.0,153.0,145.0,145.0,148.0,136.0,130.0,125.0,120.0,129.0,117.0,108.0,90.0,101.0,117.0,96.0,100.0,98.0,92.0,110.0,93.0,114.0,121.0,108.0,130.0,124.0,120.0,118.0,117.0,124.0,109.0,111.0,108.0,97.0,88.0,107.0,85.0,74.0,79.0,93.0,73.0,78.0,64.0,62.0,70.0,86.0,71.0,54.0,60.0,52.0,39.0,47.0,36.0,44.0,32.0,35.0,25.0,26.0,15.0,16.0,18.0,8.0,8.0,13.0 C81084,97.0,93.0,86.0,85.0,104.0,86.0,97.0,111.0,96.0,103.0,99.0,115.0,117.0,124.0,100.0,85.0,102.0,114.0,99.0,93.0,82.0,75.0,67.0,85.0,94.0,99.0,115.0,113.0,122.0,124.0,152.0,162.0,151.0,155.0,140.0,150.0,159.0,134.0,161.0,155.0,140.0,129.0,113.0,144.0,172.0,128.0,137.0,107.0,110.0,115.0,102.0,131.0,138.0,136.0,149.0,150.0,160.0,130.0,154.0,157.0,153.0,147.0,138.0,150.0,135.0,132.0,129.0,130.0,123.0,115.0,106.0,116.0,109.0,107.0,111.0,130.0,104.0,112.0,122.0,92.0,80.0,95.0,72.0,55.0,50.0,63.0,56.0,50.0,42.0,33.0,30.0,25.0,30.0,19.0,17.0,47.0 C81086,25.0,29.0,25.0,28.0,23.0,29.0,28.0,28.0,47.0,40.0,38.0,35.0,43.0,53.0,35.0,38.0,49.0,52.0,37.0,57.0,39.0,36.0,49.0,49.0,40.0,44.0,38.0,33.0,43.0,27.0,42.0,37.0,36.0,39.0,43.0,46.0,45.0,44.0,38.0,40.0,42.0,41.0,37.0,50.0,43.0,47.0,55.0,54.0,42.0,37.0,46.0,47.0,57.0,68.0,81.0,77.0,68.0,63.0,71.0,85.0,65.0,69.0,83.0,48.0,54.0,46.0,64.0,46.0,53.0,33.0,50.0,54.0,48.0,43.0,63.0,49.0,68.0,58.0,53.0,40.0,44.0,42.0,31.0,30.0,25.0,26.0,27.0,21.0,19.0,13.0,19.0,17.0,15.0,7.0,7.0,19.0 C81089,25.0,19.0,23.0,30.0,26.0,39.0,25.0,27.0,34.0,23.0,35.0,41.0,26.0,41.0,22.0,35.0,34.0,23.0,22.0,27.0,20.0,18.0,25.0,32.0,20.0,25.0,27.0,22.0,43.0,38.0,31.0,32.0,25.0,36.0,36.0,28.0,35.0,48.0,41.0,25.0,43.0,36.0,33.0,38.0,38.0,37.0,29.0,39.0,26.0,30.0,31.0,36.0,41.0,37.0,48.0,49.0,47.0,50.0,52.0,47.0,39.0,31.0,35.0,25.0,38.0,33.0,30.0,28.0,33.0,30.0,32.0,29.0,29.0,34.0,30.0,37.0,42.0,52.0,61.0,43.0,60.0,38.0,40.0,32.0,26.0,23.0,22.0,21.0,10.0,12.0,18.0,10.0,10.0,6.0,4.0,12.0 C81091,25.0,38.0,38.0,42.0,56.0,40.0,46.0,41.0,48.0,40.0,45.0,41.0,37.0,50.0,39.0,53.0,39.0,46.0,43.0,33.0,24.0,47.0,41.0,38.0,44.0,43.0,37.0,49.0,45.0,31.0,64.0,47.0,49.0,60.0,60.0,50.0,56.0,59.0,41.0,50.0,60.0,58.0,49.0,56.0,60.0,54.0,31.0,46.0,45.0,44.0,40.0,48.0,58.0,50.0,56.0,70.0,63.0,55.0,65.0,66.0,64.0,74.0,66.0,85.0,66.0,62.0,74.0,69.0,51.0,54.0,55.0,52.0,50.0,53.0,48.0,54.0,51.0,48.0,49.0,49.0,35.0,34.0,20.0,21.0,19.0,18.0,13.0,10.0,10.0,13.0,13.0,9.0,7.0,5.0,1.0,9.0 C81092,16.0,24.0,17.0,17.0,18.0,16.0,22.0,16.0,22.0,24.0,18.0,17.0,21.0,12.0,24.0,22.0,26.0,24.0,29.0,24.0,22.0,27.0,19.0,25.0,18.0,17.0,32.0,24.0,21.0,22.0,19.0,28.0,16.0,30.0,21.0,24.0,25.0,19.0,24.0,29.0,36.0,31.0,18.0,33.0,30.0,34.0,34.0,24.0,33.0,36.0,30.0,31.0,46.0,50.0,39.0,55.0,59.0,57.0,56.0,57.0,46.0,49.0,56.0,59.0,63.0,44.0,44.0,50.0,45.0,44.0,34.0,51.0,40.0,34.0,40.0,30.0,55.0,52.0,48.0,48.0,32.0,35.0,29.0,31.0,19.0,28.0,22.0,26.0,23.0,8.0,16.0,14.0,8.0,8.0,7.0,24.0 C81094,22.0,31.0,31.0,29.0,37.0,38.0,25.0,35.0,46.0,41.0,32.0,34.0,36.0,49.0,40.0,39.0,36.0,37.0,39.0,33.0,28.0,26.0,33.0,28.0,29.0,32.0,29.0,27.0,42.0,32.0,39.0,40.0,44.0,32.0,49.0,40.0,42.0,36.0,48.0,41.0,41.0,41.0,48.0,41.0,32.0,41.0,42.0,45.0,45.0,51.0,42.0,48.0,57.0,62.0,71.0,65.0,71.0,63.0,88.0,82.0,74.0,71.0,80.0,72.0,65.0,67.0,67.0,83.0,72.0,58.0,67.0,65.0,57.0,51.0,62.0,46.0,58.0,55.0,68.0,52.0,37.0,46.0,35.0,33.0,17.0,25.0,21.0,13.0,22.0,13.0,13.0,15.0,4.0,9.0,3.0,14.0 C81095,20.0,25.0,16.0,19.0,29.0,27.0,24.0,24.0,32.0,31.0,12.0,23.0,24.0,37.0,20.0,31.0,29.0,30.0,25.0,22.0,32.0,25.0,25.0,27.0,29.0,22.0,27.0,40.0,30.0,26.0,35.0,33.0,23.0,38.0,40.0,27.0,41.0,41.0,35.0,39.0,32.0,36.0,34.0,30.0,30.0,38.0,21.0,29.0,26.0,29.0,36.0,30.0,40.0,34.0,34.0,46.0,40.0,41.0,42.0,43.0,33.0,26.0,25.0,24.0,24.0,28.0,31.0,35.0,28.0,27.0,23.0,22.0,24.0,24.0,24.0,29.0,28.0,27.0,16.0,11.0,20.0,9.0,14.0,10.0,15.0,13.0,10.0,5.0,5.0,3.0,6.0,4.0,1.0,3.0,,2.0 C81096,27.0,31.0,22.0,29.0,31.0,28.0,26.0,21.0,23.0,25.0,19.0,30.0,30.0,25.0,37.0,38.0,23.0,29.0,27.0,27.0,21.0,27.0,33.0,26.0,22.0,24.0,25.0,33.0,42.0,36.0,45.0,40.0,38.0,39.0,39.0,46.0,38.0,37.0,41.0,31.0,44.0,32.0,28.0,27.0,34.0,30.0,41.0,29.0,25.0,24.0,35.0,30.0,33.0,42.0,55.0,50.0,42.0,32.0,52.0,32.0,37.0,33.0,43.0,40.0,44.0,46.0,37.0,37.0,37.0,30.0,28.0,41.0,32.0,26.0,29.0,45.0,31.0,34.0,27.0,19.0,24.0,34.0,20.0,15.0,19.0,9.0,10.0,13.0,13.0,7.0,5.0,9.0,2.0,8.0,3.0,8.0 C81097,21.0,18.0,20.0,24.0,27.0,19.0,31.0,26.0,22.0,32.0,34.0,27.0,48.0,39.0,30.0,37.0,31.0,40.0,28.0,28.0,30.0,30.0,34.0,30.0,33.0,26.0,30.0,32.0,35.0,26.0,44.0,29.0,39.0,43.0,46.0,41.0,39.0,49.0,54.0,45.0,40.0,51.0,45.0,43.0,44.0,43.0,39.0,40.0,37.0,43.0,43.0,53.0,43.0,43.0,53.0,45.0,46.0,38.0,49.0,45.0,43.0,42.0,39.0,30.0,35.0,35.0,34.0,25.0,27.0,27.0,17.0,20.0,13.0,38.0,17.0,17.0,29.0,30.0,29.0,19.0,23.0,30.0,14.0,21.0,15.0,12.0,10.0,12.0,11.0,7.0,6.0,6.0,4.0,5.0,6.0,7.0 C81099,33.0,41.0,38.0,35.0,50.0,49.0,46.0,36.0,38.0,46.0,55.0,48.0,64.0,50.0,56.0,55.0,53.0,63.0,61.0,48.0,56.0,64.0,46.0,42.0,52.0,59.0,65.0,63.0,65.0,63.0,74.0,62.0,76.0,64.0,72.0,65.0,55.0,47.0,71.0,68.0,56.0,59.0,65.0,54.0,57.0,65.0,50.0,64.0,63.0,56.0,59.0,77.0,81.0,96.0,106.0,88.0,98.0,98.0,90.0,91.0,77.0,58.0,95.0,70.0,55.0,79.0,63.0,59.0,63.0,69.0,56.0,76.0,53.0,44.0,68.0,70.0,55.0,74.0,66.0,47.0,33.0,42.0,45.0,28.0,35.0,22.0,38.0,22.0,18.0,26.0,17.0,19.0,8.0,7.0,16.0,16.0 C81101,14.0,22.0,29.0,27.0,27.0,23.0,40.0,30.0,37.0,55.0,44.0,45.0,43.0,64.0,48.0,36.0,38.0,62.0,38.0,44.0,37.0,27.0,37.0,36.0,44.0,45.0,38.0,33.0,27.0,28.0,30.0,41.0,58.0,37.0,58.0,48.0,55.0,59.0,66.0,47.0,55.0,46.0,45.0,57.0,72.0,55.0,50.0,36.0,56.0,52.0,50.0,57.0,82.0,68.0,60.0,55.0,74.0,86.0,60.0,66.0,65.0,59.0,66.0,54.0,65.0,68.0,50.0,41.0,46.0,36.0,51.0,56.0,69.0,54.0,58.0,49.0,58.0,52.0,59.0,44.0,42.0,38.0,30.0,31.0,23.0,20.0,20.0,15.0,25.0,14.0,11.0,14.0,9.0,7.0,5.0,19.0 C81106,23.0,38.0,32.0,24.0,41.0,34.0,40.0,39.0,50.0,37.0,43.0,37.0,37.0,52.0,33.0,39.0,48.0,35.0,40.0,30.0,36.0,37.0,41.0,38.0,43.0,45.0,41.0,43.0,44.0,51.0,45.0,53.0,45.0,61.0,60.0,55.0,57.0,61.0,57.0,59.0,61.0,47.0,36.0,51.0,53.0,52.0,54.0,37.0,44.0,42.0,34.0,51.0,52.0,46.0,47.0,45.0,60.0,68.0,52.0,62.0,59.0,72.0,58.0,36.0,53.0,41.0,50.0,31.0,41.0,37.0,37.0,30.0,21.0,23.0,43.0,33.0,36.0,35.0,35.0,24.0,20.0,17.0,18.0,22.0,17.0,9.0,18.0,9.0,11.0,8.0,7.0,3.0,4.0,1.0,1.0,8.0 C81108,51.0,73.0,58.0,61.0,72.0,81.0,71.0,73.0,89.0,97.0,84.0,84.0,88.0,116.0,103.0,94.0,100.0,88.0,91.0,85.0,56.0,57.0,63.0,68.0,79.0,65.0,76.0,69.0,64.0,76.0,95.0,86.0,91.0,94.0,105.0,104.0,99.0,98.0,95.0,93.0,98.0,108.0,117.0,112.0,120.0,95.0,109.0,113.0,104.0,112.0,92.0,112.0,118.0,122.0,122.0,121.0,116.0,110.0,119.0,107.0,123.0,120.0,134.0,106.0,106.0,90.0,85.0,74.0,100.0,100.0,76.0,77.0,96.0,88.0,81.0,59.0,75.0,88.0,68.0,67.0,60.0,50.0,44.0,42.0,52.0,40.0,41.0,27.0,16.0,28.0,32.0,20.0,21.0,15.0,8.0,22.0 C81110,48.0,61.0,65.0,60.0,70.0,66.0,69.0,70.0,57.0,77.0,70.0,54.0,84.0,82.0,84.0,97.0,70.0,84.0,66.0,56.0,59.0,72.0,52.0,56.0,75.0,56.0,72.0,78.0,82.0,81.0,100.0,97.0,95.0,98.0,81.0,91.0,61.0,89.0,74.0,89.0,93.0,69.0,77.0,95.0,87.0,108.0,88.0,82.0,80.0,80.0,89.0,104.0,84.0,103.0,95.0,73.0,90.0,92.0,77.0,83.0,73.0,66.0,79.0,72.0,53.0,68.0,56.0,54.0,47.0,40.0,47.0,38.0,44.0,56.0,44.0,41.0,33.0,52.0,56.0,34.0,41.0,42.0,24.0,28.0,25.0,26.0,20.0,14.0,17.0,15.0,11.0,10.0,10.0,6.0,5.0,12.0 C81113,44.0,35.0,27.0,38.0,42.0,34.0,49.0,44.0,42.0,42.0,37.0,47.0,41.0,40.0,25.0,43.0,41.0,43.0,47.0,25.0,22.0,36.0,27.0,19.0,19.0,31.0,32.0,35.0,30.0,38.0,41.0,31.0,46.0,41.0,57.0,37.0,32.0,50.0,71.0,65.0,54.0,50.0,34.0,46.0,46.0,39.0,43.0,39.0,41.0,49.0,35.0,33.0,47.0,31.0,37.0,50.0,34.0,42.0,35.0,45.0,37.0,39.0,21.0,44.0,44.0,43.0,40.0,35.0,33.0,30.0,46.0,36.0,45.0,37.0,38.0,35.0,29.0,44.0,31.0,22.0,32.0,19.0,21.0,16.0,10.0,14.0,21.0,20.0,13.0,5.0,7.0,9.0,6.0,3.0,4.0,12.0 C81114,53.0,67.0,63.0,79.0,84.0,83.0,78.0,85.0,78.0,102.0,101.0,105.0,98.0,87.0,81.0,80.0,79.0,78.0,74.0,67.0,51.0,62.0,68.0,65.0,58.0,76.0,82.0,93.0,96.0,107.0,97.0,108.0,110.0,101.0,119.0,104.0,107.0,120.0,104.0,124.0,106.0,105.0,99.0,103.0,82.0,81.0,78.0,83.0,81.0,70.0,86.0,93.0,84.0,96.0,110.0,112.0,115.0,82.0,97.0,100.0,88.0,79.0,85.0,84.0,76.0,90.0,83.0,73.0,53.0,49.0,46.0,60.0,51.0,36.0,40.0,44.0,50.0,54.0,42.0,27.0,37.0,36.0,22.0,19.0,16.0,21.0,19.0,10.0,14.0,14.0,13.0,10.0,11.0,12.0,5.0,8.0 C81115,23.0,19.0,19.0,24.0,22.0,28.0,20.0,19.0,24.0,33.0,26.0,23.0,28.0,21.0,30.0,22.0,30.0,34.0,21.0,23.0,24.0,21.0,17.0,30.0,24.0,29.0,33.0,40.0,33.0,32.0,35.0,32.0,40.0,31.0,41.0,27.0,35.0,33.0,34.0,27.0,34.0,23.0,32.0,29.0,25.0,20.0,29.0,24.0,30.0,31.0,32.0,37.0,33.0,33.0,40.0,51.0,44.0,45.0,32.0,55.0,35.0,34.0,37.0,28.0,37.0,41.0,23.0,31.0,36.0,30.0,32.0,17.0,28.0,23.0,22.0,22.0,22.0,41.0,29.0,17.0,28.0,21.0,18.0,20.0,14.0,13.0,16.0,16.0,9.0,10.0,6.0,8.0,7.0,8.0,7.0,11.0 C81118,51.0,55.0,68.0,51.0,56.0,58.0,78.0,63.0,86.0,57.0,64.0,76.0,51.0,78.0,72.0,79.0,73.0,70.0,58.0,47.0,47.0,69.0,49.0,60.0,61.0,62.0,58.0,53.0,53.0,55.0,48.0,60.0,58.0,56.0,56.0,68.0,54.0,68.0,63.0,54.0,74.0,58.0,70.0,61.0,58.0,64.0,60.0,50.0,45.0,39.0,34.0,39.0,41.0,45.0,32.0,45.0,44.0,41.0,33.0,42.0,29.0,32.0,40.0,26.0,34.0,27.0,28.0,33.0,26.0,26.0,22.0,26.0,26.0,18.0,13.0,30.0,18.0,16.0,11.0,11.0,19.0,6.0,17.0,19.0,10.0,17.0,9.0,15.0,12.0,10.0,7.0,3.0,3.0,6.0,3.0,8.0 C81604,28.0,16.0,37.0,24.0,34.0,28.0,25.0,17.0,22.0,30.0,22.0,33.0,24.0,31.0,22.0,21.0,28.0,28.0,24.0,19.0,21.0,28.0,21.0,29.0,32.0,31.0,31.0,30.0,46.0,32.0,44.0,40.0,42.0,30.0,33.0,33.0,42.0,37.0,28.0,47.0,32.0,20.0,35.0,31.0,33.0,26.0,25.0,24.0,24.0,32.0,40.0,36.0,35.0,42.0,27.0,35.0,35.0,30.0,46.0,33.0,37.0,33.0,28.0,32.0,18.0,17.0,24.0,29.0,35.0,23.0,23.0,13.0,17.0,22.0,17.0,24.0,27.0,28.0,17.0,11.0,16.0,17.0,9.0,11.0,10.0,6.0,8.0,11.0,8.0,6.0,5.0,6.0,2.0,2.0,2.0,5.0 C81611,13.0,8.0,13.0,16.0,8.0,8.0,11.0,13.0,12.0,9.0,17.0,7.0,8.0,11.0,10.0,9.0,7.0,11.0,5.0,10.0,5.0,15.0,8.0,20.0,7.0,4.0,6.0,12.0,11.0,8.0,4.0,5.0,13.0,9.0,9.0,17.0,14.0,15.0,14.0,7.0,13.0,8.0,12.0,16.0,11.0,12.0,10.0,13.0,18.0,19.0,19.0,16.0,18.0,12.0,29.0,19.0,29.0,9.0,19.0,27.0,21.0,36.0,21.0,21.0,23.0,31.0,21.0,23.0,14.0,26.0,19.0,15.0,13.0,18.0,18.0,17.0,18.0,28.0,15.0,12.0,21.0,16.0,15.0,7.0,6.0,12.0,6.0,10.0,7.0,6.0,6.0,6.0,5.0,3.0,2.0,5.0 C81615,16.0,7.0,11.0,14.0,13.0,10.0,15.0,14.0,12.0,8.0,13.0,11.0,18.0,19.0,21.0,15.0,16.0,16.0,13.0,10.0,11.0,8.0,13.0,17.0,12.0,15.0,7.0,18.0,17.0,12.0,18.0,14.0,15.0,20.0,19.0,23.0,15.0,14.0,10.0,12.0,15.0,13.0,15.0,18.0,14.0,19.0,19.0,9.0,15.0,15.0,17.0,15.0,12.0,19.0,29.0,22.0,15.0,13.0,19.0,12.0,10.0,19.0,16.0,16.0,17.0,17.0,18.0,10.0,8.0,3.0,9.0,10.0,9.0,7.0,10.0,9.0,4.0,7.0,6.0,8.0,7.0,10.0,5.0,9.0,4.0,2.0,3.0,3.0,2.0,6.0,1.0,,,2.0,1.0,3.0 C81616,33.0,40.0,32.0,35.0,41.0,36.0,36.0,42.0,45.0,41.0,43.0,36.0,44.0,46.0,43.0,46.0,42.0,53.0,53.0,41.0,32.0,44.0,42.0,51.0,47.0,37.0,45.0,36.0,45.0,30.0,33.0,36.0,34.0,28.0,22.0,30.0,43.0,38.0,39.0,41.0,40.0,43.0,32.0,34.0,39.0,40.0,40.0,33.0,36.0,30.0,33.0,40.0,34.0,37.0,42.0,33.0,25.0,26.0,24.0,19.0,12.0,13.0,12.0,18.0,12.0,18.0,12.0,17.0,15.0,17.0,15.0,18.0,12.0,13.0,14.0,13.0,13.0,10.0,10.0,7.0,9.0,2.0,8.0,5.0,6.0,12.0,12.0,5.0,5.0,7.0,8.0,8.0,3.0,1.0,3.0,9.0 C81634,24.0,20.0,19.0,29.0,30.0,27.0,28.0,22.0,29.0,24.0,19.0,25.0,22.0,30.0,25.0,24.0,14.0,13.0,25.0,20.0,17.0,12.0,17.0,13.0,16.0,20.0,17.0,31.0,29.0,36.0,40.0,32.0,30.0,41.0,37.0,45.0,37.0,43.0,33.0,32.0,37.0,36.0,39.0,32.0,38.0,26.0,30.0,35.0,20.0,25.0,36.0,39.0,29.0,33.0,39.0,30.0,32.0,37.0,28.0,46.0,35.0,39.0,31.0,33.0,40.0,22.0,30.0,34.0,20.0,23.0,18.0,21.0,20.0,26.0,17.0,17.0,20.0,26.0,30.0,16.0,22.0,17.0,15.0,7.0,8.0,7.0,9.0,5.0,3.0,7.0,3.0,7.0,1.0,,,2.0 C81638,20.0,16.0,25.0,16.0,19.0,16.0,19.0,23.0,11.0,18.0,19.0,17.0,27.0,14.0,18.0,12.0,9.0,23.0,16.0,21.0,23.0,13.0,15.0,19.0,27.0,27.0,28.0,20.0,34.0,29.0,38.0,28.0,39.0,25.0,29.0,35.0,26.0,29.0,30.0,28.0,23.0,20.0,16.0,22.0,18.0,25.0,18.0,17.0,26.0,17.0,21.0,22.0,31.0,27.0,35.0,24.0,41.0,31.0,35.0,36.0,43.0,30.0,38.0,17.0,17.0,27.0,19.0,30.0,18.0,16.0,19.0,25.0,15.0,21.0,22.0,16.0,15.0,18.0,15.0,15.0,13.0,10.0,12.0,9.0,11.0,9.0,11.0,6.0,4.0,4.0,5.0,1.0,2.0,3.0,1.0,4.0 C81640,13.0,16.0,12.0,10.0,16.0,16.0,22.0,23.0,21.0,20.0,27.0,31.0,30.0,28.0,25.0,16.0,22.0,24.0,28.0,16.0,16.0,19.0,7.0,11.0,14.0,14.0,9.0,18.0,14.0,18.0,16.0,16.0,29.0,18.0,25.0,28.0,18.0,32.0,21.0,21.0,28.0,24.0,29.0,23.0,26.0,26.0,20.0,17.0,23.0,22.0,22.0,29.0,28.0,30.0,24.0,30.0,28.0,31.0,27.0,31.0,33.0,34.0,28.0,24.0,19.0,14.0,33.0,23.0,26.0,23.0,21.0,24.0,14.0,26.0,21.0,22.0,23.0,21.0,21.0,19.0,15.0,16.0,10.0,13.0,9.0,5.0,8.0,3.0,3.0,9.0,4.0,3.0,4.0,3.0,,1.0 C81647,12.0,10.0,6.0,15.0,14.0,19.0,25.0,17.0,16.0,20.0,22.0,17.0,19.0,17.0,12.0,19.0,19.0,17.0,27.0,9.0,18.0,20.0,15.0,20.0,22.0,16.0,17.0,25.0,15.0,24.0,18.0,25.0,25.0,24.0,24.0,18.0,21.0,31.0,25.0,22.0,21.0,23.0,29.0,19.0,29.0,26.0,25.0,15.0,23.0,27.0,38.0,24.0,32.0,39.0,41.0,30.0,40.0,43.0,34.0,36.0,42.0,43.0,35.0,36.0,33.0,33.0,24.0,28.0,30.0,26.0,31.0,34.0,23.0,23.0,29.0,25.0,26.0,31.0,27.0,18.0,28.0,23.0,29.0,20.0,14.0,13.0,9.0,7.0,15.0,6.0,5.0,2.0,4.0,1.0,,1.0 C81649,28.0,29.0,38.0,44.0,32.0,37.0,44.0,41.0,33.0,38.0,34.0,45.0,44.0,40.0,46.0,42.0,47.0,51.0,46.0,40.0,39.0,38.0,40.0,21.0,35.0,52.0,39.0,46.0,53.0,47.0,53.0,70.0,53.0,59.0,62.0,51.0,47.0,65.0,48.0,54.0,53.0,37.0,48.0,44.0,43.0,45.0,44.0,45.0,44.0,49.0,44.0,35.0,61.0,56.0,62.0,53.0,64.0,65.0,67.0,58.0,86.0,67.0,54.0,63.0,66.0,50.0,58.0,49.0,47.0,44.0,39.0,34.0,30.0,48.0,39.0,47.0,35.0,47.0,47.0,35.0,36.0,35.0,35.0,24.0,18.0,16.0,17.0,17.0,15.0,12.0,8.0,10.0,5.0,4.0,3.0,9.0 C81652,16.0,20.0,15.0,30.0,23.0,22.0,23.0,24.0,28.0,27.0,24.0,22.0,25.0,29.0,15.0,29.0,19.0,18.0,13.0,16.0,16.0,19.0,24.0,26.0,33.0,35.0,34.0,47.0,40.0,47.0,36.0,50.0,44.0,44.0,49.0,50.0,41.0,50.0,41.0,32.0,46.0,44.0,40.0,26.0,34.0,27.0,26.0,33.0,29.0,26.0,27.0,27.0,27.0,37.0,27.0,32.0,21.0,20.0,28.0,36.0,19.0,32.0,29.0,20.0,28.0,23.0,16.0,18.0,22.0,15.0,14.0,17.0,11.0,11.0,12.0,17.0,12.0,11.0,14.0,13.0,5.0,11.0,6.0,8.0,10.0,6.0,6.0,6.0,5.0,3.0,3.0,2.0,,2.0,,5.0 C81653,15.0,10.0,30.0,27.0,24.0,29.0,24.0,21.0,35.0,27.0,37.0,26.0,42.0,44.0,27.0,34.0,33.0,27.0,23.0,16.0,21.0,17.0,16.0,18.0,26.0,24.0,22.0,19.0,25.0,26.0,32.0,21.0,28.0,31.0,36.0,31.0,34.0,34.0,45.0,40.0,35.0,32.0,52.0,31.0,41.0,41.0,36.0,39.0,26.0,36.0,23.0,27.0,21.0,26.0,21.0,23.0,29.0,29.0,20.0,36.0,20.0,22.0,24.0,20.0,13.0,14.0,18.0,17.0,15.0,18.0,19.0,13.0,16.0,9.0,12.0,8.0,7.0,15.0,16.0,9.0,7.0,4.0,10.0,8.0,7.0,2.0,8.0,7.0,4.0,6.0,8.0,2.0,2.0,4.0,5.0,3.0 C81655,10.0,16.0,13.0,16.0,11.0,14.0,13.0,19.0,16.0,18.0,13.0,10.0,25.0,22.0,20.0,22.0,17.0,13.0,9.0,17.0,16.0,9.0,15.0,19.0,17.0,19.0,21.0,23.0,19.0,23.0,18.0,29.0,22.0,21.0,22.0,19.0,24.0,18.0,26.0,22.0,20.0,18.0,20.0,22.0,16.0,14.0,12.0,19.0,22.0,22.0,21.0,29.0,27.0,27.0,25.0,21.0,36.0,24.0,35.0,34.0,34.0,30.0,16.0,26.0,23.0,30.0,23.0,24.0,23.0,24.0,27.0,21.0,23.0,18.0,29.0,16.0,19.0,25.0,30.0,20.0,23.0,23.0,19.0,12.0,12.0,10.0,9.0,11.0,11.0,3.0,9.0,9.0,5.0,4.0,2.0,6.0 C81658,36.0,44.0,34.0,42.0,42.0,33.0,39.0,38.0,37.0,43.0,38.0,40.0,33.0,40.0,39.0,28.0,38.0,35.0,34.0,31.0,30.0,23.0,27.0,28.0,31.0,41.0,48.0,39.0,50.0,45.0,45.0,54.0,63.0,56.0,50.0,50.0,55.0,58.0,54.0,49.0,38.0,44.0,48.0,44.0,34.0,47.0,53.0,50.0,48.0,35.0,50.0,44.0,51.0,52.0,58.0,61.0,51.0,50.0,63.0,66.0,62.0,65.0,70.0,58.0,59.0,61.0,59.0,40.0,49.0,51.0,60.0,45.0,45.0,49.0,50.0,53.0,63.0,51.0,56.0,39.0,36.0,45.0,26.0,22.0,28.0,24.0,15.0,25.0,14.0,13.0,11.0,10.0,6.0,3.0,5.0,8.0 C81662,46.0,38.0,36.0,42.0,39.0,41.0,40.0,28.0,44.0,42.0,36.0,56.0,44.0,57.0,58.0,51.0,51.0,60.0,47.0,47.0,44.0,34.0,40.0,39.0,53.0,57.0,42.0,59.0,50.0,46.0,56.0,61.0,58.0,53.0,51.0,47.0,43.0,62.0,62.0,50.0,61.0,59.0,45.0,49.0,55.0,49.0,45.0,54.0,55.0,48.0,48.0,77.0,67.0,73.0,65.0,81.0,86.0,80.0,61.0,82.0,64.0,70.0,50.0,58.0,49.0,54.0,53.0,72.0,54.0,43.0,40.0,48.0,40.0,51.0,39.0,45.0,37.0,42.0,42.0,26.0,37.0,29.0,23.0,15.0,19.0,19.0,12.0,18.0,9.0,11.0,3.0,6.0,4.0,4.0,4.0,8.0 Y01812,55.0,61.0,61.0,69.0,60.0,54.0,71.0,55.0,72.0,83.0,68.0,70.0,65.0,58.0,60.0,69.0,88.0,65.0,76.0,51.0,49.0,46.0,59.0,53.0,56.0,72.0,74.0,86.0,78.0,82.0,87.0,90.0,97.0,93.0,112.0,92.0,85.0,96.0,93.0,88.0,96.0,85.0,84.0,73.0,77.0,80.0,80.0,72.0,68.0,61.0,49.0,63.0,90.0,93.0,70.0,78.0,84.0,73.0,87.0,62.0,66.0,68.0,66.0,65.0,54.0,60.0,49.0,59.0,57.0,52.0,48.0,56.0,27.0,57.0,49.0,49.0,47.0,51.0,43.0,34.0,37.0,25.0,31.0,25.0,21.0,24.0,23.0,19.0,19.0,10.0,13.0,12.0,12.0,7.0,3.0,12.0 Y04977,21.0,31.0,36.0,27.0,34.0,35.0,35.0,24.0,40.0,31.0,26.0,41.0,30.0,34.0,30.0,27.0,32.0,29.0,25.0,13.0,24.0,28.0,21.0,18.0,23.0,33.0,45.0,42.0,46.0,46.0,50.0,52.0,55.0,47.0,53.0,48.0,51.0,46.0,32.0,25.0,33.0,26.0,23.0,33.0,27.0,26.0,23.0,20.0,25.0,33.0,37.0,43.0,47.0,33.0,40.0,34.0,36.0,40.0,37.0,39.0,34.0,30.0,34.0,39.0,44.0,26.0,25.0,26.0,33.0,28.0,26.0,21.0,28.0,16.0,25.0,17.0,24.0,16.0,31.0,30.0,21.0,21.0,21.0,10.0,16.0,12.0,7.0,3.0,9.0,8.0,7.0,1.0,3.0,5.0,5.0,4.0 Y04995,68.0,86.0,94.0,93.0,87.0,96.0,98.0,100.0,103.0,99.0,110.0,121.0,122.0,136.0,110.0,130.0,145.0,120.0,119.0,99.0,96.0,97.0,114.0,84.0,113.0,99.0,112.0,137.0,117.0,125.0,119.0,133.0,133.0,138.0,133.0,135.0,148.0,106.0,109.0,101.0,115.0,111.0,87.0,105.0,123.0,110.0,120.0,121.0,104.0,93.0,126.0,114.0,148.0,139.0,146.0,134.0,120.0,118.0,135.0,145.0,139.0,113.0,110.0,111.0,106.0,122.0,121.0,111.0,104.0,94.0,89.0,91.0,98.0,84.0,82.0,102.0,91.0,93.0,102.0,66.0,67.0,64.0,57.0,44.0,41.0,24.0,32.0,47.0,29.0,16.0,21.0,23.0,16.0,8.0,12.0,19.0 Y05286,99.0,101.0,120.0,120.0,117.0,109.0,97.0,139.0,138.0,146.0,151.0,151.0,148.0,158.0,136.0,149.0,137.0,133.0,114.0,126.0,84.0,94.0,104.0,86.0,92.0,101.0,91.0,101.0,131.0,111.0,150.0,136.0,156.0,158.0,178.0,152.0,159.0,138.0,158.0,180.0,170.0,130.0,165.0,128.0,136.0,141.0,135.0,115.0,111.0,93.0,113.0,113.0,108.0,95.0,104.0,114.0,107.0,93.0,87.0,78.0,92.0,89.0,64.0,73.0,83.0,61.0,73.0,57.0,53.0,38.0,42.0,51.0,51.0,37.0,24.0,39.0,43.0,43.0,37.0,33.0,28.0,27.0,24.0,23.0,23.0,15.0,11.0,18.0,9.0,6.0,10.0,8.0,13.0,7.0,4.0,16.0 Y05733,11.0,23.0,38.0,31.0,37.0,47.0,57.0,41.0,47.0,42.0,50.0,40.0,51.0,47.0,43.0,40.0,31.0,29.0,39.0,23.0,31.0,27.0,20.0,36.0,34.0,34.0,45.0,57.0,40.0,39.0,44.0,56.0,58.0,60.0,61.0,67.0,57.0,50.0,42.0,60.0,46.0,50.0,53.0,54.0,52.0,41.0,41.0,30.0,31.0,36.0,42.0,35.0,34.0,38.0,33.0,46.0,31.0,45.0,40.0,44.0,48.0,34.0,41.0,40.0,22.0,28.0,37.0,32.0,30.0,27.0,27.0,22.0,17.0,22.0,11.0,25.0,22.0,27.0,28.0,23.0,23.0,24.0,18.0,16.0,15.0,14.0,11.0,8.0,6.0,7.0,9.0,1.0,2.0,3.0,3.0,5.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 D83001,49.0,47.0,41.0,38.0,54.0,47.0,44.0,45.0,48.0,55.0,50.0,57.0,42.0,59.0,59.0,59.0,58.0,63.0,37.0,40.0,44.0,57.0,50.0,62.0,56.0,59.0,69.0,55.0,49.0,47.0,50.0,49.0,49.0,52.0,66.0,61.0,54.0,59.0,59.0,52.0,61.0,54.0,60.0,63.0,70.0,70.0,55.0,78.0,57.0,77.0,68.0,63.0,69.0,80.0,107.0,82.0,69.0,93.0,99.0,84.0,90.0,86.0,96.0,92.0,77.0,65.0,68.0,80.0,65.0,74.0,58.0,69.0,69.0,62.0,61.0,64.0,78.0,117.0,97.0,63.0,68.0,60.0,43.0,41.0,45.0,39.0,29.0,35.0,27.0,24.0,20.0,9.0,13.0,11.0,5.0,22.0 D83003,12.0,17.0,13.0,13.0,26.0,16.0,21.0,24.0,27.0,24.0,13.0,25.0,22.0,34.0,23.0,28.0,10.0,17.0,17.0,22.0,19.0,18.0,16.0,23.0,25.0,19.0,20.0,21.0,30.0,22.0,19.0,18.0,24.0,19.0,19.0,21.0,20.0,28.0,26.0,21.0,26.0,20.0,24.0,22.0,33.0,31.0,31.0,27.0,21.0,33.0,29.0,34.0,26.0,39.0,29.0,44.0,46.0,43.0,48.0,41.0,49.0,53.0,51.0,50.0,49.0,40.0,48.0,43.0,53.0,34.0,44.0,45.0,38.0,38.0,31.0,34.0,35.0,43.0,42.0,32.0,34.0,37.0,33.0,13.0,24.0,11.0,14.0,11.0,6.0,17.0,7.0,6.0,5.0,4.0,4.0,8.0 D83004,37.0,43.0,31.0,37.0,35.0,50.0,52.0,69.0,39.0,68.0,67.0,63.0,67.0,53.0,55.0,63.0,54.0,51.0,60.0,44.0,41.0,39.0,39.0,43.0,44.0,51.0,33.0,47.0,57.0,50.0,57.0,53.0,63.0,60.0,76.0,66.0,71.0,78.0,79.0,75.0,59.0,66.0,75.0,63.0,71.0,64.0,65.0,56.0,54.0,47.0,46.0,60.0,53.0,66.0,83.0,59.0,80.0,75.0,69.0,77.0,77.0,71.0,77.0,80.0,79.0,68.0,85.0,63.0,67.0,42.0,59.0,58.0,53.0,52.0,57.0,64.0,57.0,53.0,55.0,44.0,38.0,29.0,38.0,33.0,35.0,27.0,28.0,27.0,23.0,23.0,17.0,11.0,13.0,13.0,8.0,8.0 D83005,52.0,52.0,62.0,51.0,54.0,42.0,52.0,63.0,61.0,59.0,66.0,48.0,61.0,70.0,77.0,59.0,76.0,78.0,69.0,49.0,59.0,59.0,64.0,65.0,75.0,78.0,76.0,93.0,91.0,92.0,91.0,98.0,83.0,94.0,101.0,107.0,92.0,101.0,85.0,112.0,86.0,75.0,65.0,72.0,80.0,77.0,89.0,76.0,86.0,66.0,69.0,76.0,71.0,87.0,104.0,100.0,103.0,109.0,106.0,95.0,105.0,127.0,90.0,97.0,88.0,73.0,82.0,80.0,86.0,92.0,88.0,98.0,92.0,80.0,87.0,76.0,86.0,110.0,126.0,89.0,81.0,89.0,62.0,76.0,51.0,48.0,52.0,57.0,44.0,33.0,21.0,26.0,23.0,16.0,20.0,41.0 D83006,22.0,33.0,39.0,28.0,29.0,27.0,25.0,32.0,30.0,30.0,27.0,31.0,32.0,42.0,35.0,29.0,34.0,41.0,32.0,35.0,24.0,34.0,23.0,38.0,27.0,26.0,35.0,28.0,32.0,26.0,50.0,44.0,30.0,42.0,34.0,39.0,34.0,36.0,48.0,29.0,41.0,27.0,41.0,41.0,44.0,33.0,33.0,38.0,21.0,42.0,43.0,45.0,49.0,54.0,57.0,62.0,70.0,67.0,66.0,65.0,74.0,79.0,68.0,63.0,71.0,57.0,63.0,86.0,53.0,66.0,45.0,62.0,60.0,57.0,50.0,65.0,57.0,53.0,58.0,36.0,47.0,54.0,37.0,32.0,32.0,14.0,23.0,14.0,17.0,7.0,12.0,6.0,5.0,5.0,7.0,15.0 D83007,31.0,27.0,33.0,36.0,43.0,51.0,36.0,41.0,41.0,51.0,36.0,47.0,59.0,48.0,47.0,49.0,49.0,46.0,53.0,37.0,41.0,47.0,44.0,46.0,54.0,48.0,39.0,49.0,44.0,40.0,54.0,50.0,54.0,49.0,55.0,59.0,57.0,60.0,60.0,53.0,36.0,53.0,39.0,54.0,48.0,51.0,61.0,43.0,58.0,64.0,55.0,66.0,64.0,62.0,88.0,60.0,90.0,82.0,84.0,82.0,85.0,80.0,80.0,87.0,76.0,68.0,75.0,76.0,76.0,50.0,57.0,57.0,54.0,49.0,58.0,66.0,57.0,91.0,60.0,46.0,59.0,53.0,38.0,49.0,34.0,33.0,16.0,25.0,28.0,22.0,10.0,14.0,9.0,7.0,6.0,23.0 D83008,83.0,97.0,80.0,89.0,93.0,100.0,89.0,98.0,115.0,105.0,121.0,90.0,94.0,85.0,107.0,101.0,91.0,93.0,86.0,95.0,69.0,95.0,78.0,93.0,85.0,118.0,123.0,125.0,128.0,150.0,129.0,135.0,157.0,137.0,131.0,167.0,138.0,129.0,137.0,120.0,121.0,127.0,122.0,125.0,102.0,114.0,91.0,65.0,84.0,81.0,78.0,92.0,76.0,86.0,101.0,67.0,92.0,89.0,78.0,82.0,87.0,84.0,74.0,73.0,67.0,76.0,81.0,82.0,71.0,81.0,64.0,59.0,56.0,70.0,55.0,51.0,61.0,53.0,53.0,42.0,46.0,39.0,34.0,25.0,19.0,27.0,28.0,34.0,19.0,22.0,13.0,11.0,9.0,10.0,10.0,25.0 D83012,71.0,75.0,90.0,109.0,95.0,91.0,101.0,124.0,103.0,147.0,134.0,146.0,127.0,145.0,142.0,131.0,146.0,154.0,134.0,120.0,115.0,105.0,91.0,119.0,88.0,100.0,107.0,94.0,98.0,119.0,115.0,121.0,126.0,129.0,128.0,125.0,171.0,143.0,128.0,134.0,143.0,149.0,143.0,141.0,165.0,145.0,135.0,126.0,120.0,142.0,159.0,167.0,164.0,171.0,159.0,190.0,188.0,165.0,173.0,205.0,180.0,192.0,196.0,166.0,184.0,174.0,163.0,140.0,126.0,144.0,144.0,151.0,154.0,134.0,130.0,166.0,139.0,157.0,158.0,135.0,129.0,116.0,112.0,71.0,76.0,71.0,69.0,71.0,54.0,43.0,43.0,43.0,27.0,23.0,23.0,56.0 D83013,52.0,57.0,71.0,54.0,51.0,63.0,70.0,55.0,69.0,51.0,77.0,57.0,54.0,72.0,64.0,58.0,62.0,60.0,63.0,56.0,42.0,53.0,70.0,63.0,60.0,73.0,63.0,75.0,90.0,67.0,87.0,98.0,98.0,102.0,105.0,108.0,91.0,94.0,105.0,91.0,78.0,72.0,86.0,71.0,86.0,65.0,63.0,74.0,74.0,85.0,80.0,80.0,93.0,94.0,93.0,77.0,94.0,107.0,93.0,90.0,98.0,117.0,103.0,91.0,72.0,69.0,86.0,75.0,71.0,76.0,74.0,83.0,78.0,75.0,82.0,84.0,96.0,112.0,106.0,73.0,71.0,88.0,83.0,66.0,51.0,55.0,41.0,47.0,37.0,47.0,27.0,19.0,20.0,15.0,12.0,25.0 D83015,34.0,25.0,20.0,28.0,38.0,25.0,36.0,20.0,29.0,27.0,26.0,34.0,32.0,37.0,43.0,34.0,37.0,36.0,36.0,32.0,29.0,23.0,28.0,30.0,40.0,43.0,42.0,46.0,31.0,39.0,38.0,50.0,44.0,34.0,38.0,40.0,42.0,31.0,53.0,49.0,35.0,36.0,37.0,50.0,50.0,39.0,57.0,53.0,43.0,45.0,49.0,50.0,46.0,47.0,77.0,48.0,52.0,56.0,73.0,59.0,66.0,67.0,75.0,58.0,81.0,66.0,65.0,63.0,64.0,74.0,64.0,86.0,54.0,70.0,65.0,78.0,74.0,103.0,96.0,66.0,67.0,69.0,55.0,48.0,39.0,44.0,35.0,41.0,25.0,25.0,28.0,25.0,18.0,20.0,9.0,39.0 D83017,64.0,56.0,61.0,63.0,75.0,58.0,50.0,67.0,52.0,63.0,60.0,49.0,60.0,64.0,75.0,70.0,61.0,66.0,61.0,50.0,50.0,50.0,48.0,58.0,52.0,82.0,79.0,89.0,85.0,80.0,90.0,121.0,112.0,82.0,97.0,88.0,83.0,103.0,81.0,91.0,83.0,72.0,76.0,84.0,88.0,83.0,73.0,67.0,72.0,72.0,85.0,101.0,78.0,100.0,103.0,95.0,103.0,108.0,101.0,106.0,95.0,99.0,98.0,95.0,103.0,84.0,105.0,93.0,99.0,87.0,93.0,83.0,78.0,82.0,77.0,109.0,85.0,86.0,92.0,73.0,64.0,47.0,60.0,54.0,40.0,51.0,41.0,42.0,33.0,19.0,31.0,19.0,18.0,19.0,9.0,25.0 D83018,64.0,66.0,43.0,59.0,50.0,60.0,54.0,89.0,76.0,60.0,73.0,66.0,71.0,73.0,70.0,77.0,75.0,58.0,45.0,62.0,56.0,38.0,63.0,55.0,46.0,56.0,73.0,48.0,81.0,67.0,91.0,96.0,94.0,91.0,93.0,91.0,73.0,97.0,76.0,84.0,100.0,84.0,93.0,80.0,84.0,82.0,88.0,83.0,68.0,64.0,80.0,74.0,90.0,78.0,91.0,71.0,88.0,92.0,83.0,97.0,91.0,88.0,87.0,75.0,78.0,79.0,86.0,66.0,72.0,68.0,90.0,81.0,68.0,70.0,61.0,68.0,78.0,83.0,84.0,59.0,53.0,52.0,45.0,35.0,43.0,45.0,29.0,34.0,26.0,29.0,23.0,14.0,10.0,13.0,4.0,21.0 D83019,19.0,19.0,38.0,27.0,28.0,35.0,34.0,39.0,29.0,34.0,38.0,35.0,41.0,36.0,36.0,35.0,53.0,42.0,42.0,33.0,33.0,27.0,36.0,31.0,24.0,42.0,38.0,36.0,36.0,39.0,43.0,36.0,35.0,34.0,34.0,26.0,49.0,38.0,38.0,41.0,35.0,43.0,45.0,34.0,35.0,47.0,45.0,36.0,35.0,42.0,42.0,52.0,51.0,59.0,49.0,58.0,74.0,73.0,64.0,79.0,65.0,83.0,68.0,66.0,72.0,63.0,62.0,70.0,79.0,62.0,58.0,59.0,46.0,60.0,57.0,49.0,60.0,54.0,51.0,43.0,39.0,31.0,38.0,27.0,25.0,16.0,24.0,15.0,10.0,12.0,9.0,10.0,9.0,10.0,1.0,9.0 D83020,26.0,21.0,28.0,41.0,29.0,35.0,32.0,27.0,42.0,35.0,34.0,49.0,56.0,48.0,64.0,68.0,76.0,86.0,68.0,38.0,37.0,33.0,39.0,31.0,30.0,29.0,26.0,35.0,34.0,35.0,32.0,32.0,29.0,39.0,56.0,40.0,43.0,49.0,42.0,38.0,45.0,45.0,41.0,44.0,43.0,42.0,37.0,42.0,45.0,44.0,56.0,35.0,45.0,58.0,61.0,59.0,75.0,62.0,74.0,73.0,89.0,70.0,55.0,73.0,71.0,60.0,71.0,49.0,58.0,59.0,55.0,50.0,48.0,49.0,44.0,55.0,54.0,51.0,66.0,46.0,47.0,29.0,26.0,40.0,35.0,29.0,30.0,26.0,21.0,19.0,13.0,17.0,11.0,13.0,10.0,30.0 D83021,103.0,115.0,109.0,123.0,106.0,122.0,99.0,117.0,112.0,127.0,128.0,134.0,121.0,129.0,126.0,137.0,131.0,148.0,119.0,104.0,86.0,96.0,97.0,111.0,100.0,117.0,151.0,152.0,140.0,164.0,136.0,167.0,173.0,186.0,178.0,155.0,173.0,169.0,162.0,135.0,144.0,139.0,113.0,130.0,122.0,129.0,128.0,108.0,117.0,127.0,122.0,130.0,126.0,144.0,143.0,116.0,134.0,131.0,112.0,130.0,127.0,106.0,97.0,92.0,81.0,76.0,88.0,98.0,91.0,86.0,63.0,82.0,79.0,72.0,97.0,74.0,75.0,100.0,109.0,76.0,70.0,67.0,61.0,62.0,38.0,37.0,40.0,32.0,27.0,15.0,17.0,15.0,14.0,7.0,3.0,21.0 D83024,59.0,55.0,44.0,61.0,59.0,47.0,50.0,62.0,58.0,50.0,82.0,64.0,68.0,71.0,63.0,92.0,72.0,83.0,79.0,55.0,70.0,74.0,60.0,75.0,72.0,78.0,102.0,100.0,119.0,77.0,88.0,105.0,99.0,89.0,95.0,103.0,103.0,88.0,86.0,84.0,71.0,68.0,82.0,84.0,89.0,86.0,79.0,81.0,81.0,90.0,98.0,91.0,112.0,103.0,110.0,106.0,103.0,116.0,87.0,95.0,97.0,104.0,91.0,93.0,89.0,101.0,91.0,70.0,76.0,80.0,68.0,61.0,73.0,68.0,70.0,58.0,53.0,70.0,82.0,58.0,52.0,45.0,49.0,40.0,34.0,30.0,38.0,25.0,31.0,23.0,19.0,21.0,19.0,8.0,11.0,28.0 D83026,19.0,25.0,26.0,33.0,24.0,40.0,33.0,47.0,36.0,46.0,37.0,46.0,39.0,65.0,43.0,84.0,51.0,90.0,84.0,62.0,44.0,46.0,39.0,31.0,42.0,30.0,40.0,27.0,29.0,32.0,33.0,39.0,36.0,29.0,31.0,42.0,40.0,37.0,46.0,46.0,43.0,43.0,49.0,40.0,42.0,55.0,57.0,52.0,44.0,40.0,75.0,60.0,67.0,85.0,69.0,73.0,76.0,82.0,80.0,69.0,83.0,73.0,82.0,80.0,75.0,71.0,61.0,64.0,63.0,52.0,70.0,65.0,66.0,56.0,60.0,63.0,66.0,75.0,74.0,58.0,72.0,47.0,47.0,31.0,34.0,30.0,46.0,33.0,35.0,26.0,19.0,24.0,11.0,13.0,7.0,27.0 D83027,39.0,48.0,60.0,65.0,54.0,59.0,58.0,45.0,64.0,77.0,53.0,60.0,70.0,68.0,52.0,69.0,55.0,62.0,46.0,48.0,56.0,51.0,57.0,62.0,62.0,73.0,65.0,89.0,93.0,90.0,119.0,84.0,91.0,106.0,90.0,103.0,94.0,96.0,106.0,93.0,76.0,83.0,90.0,68.0,81.0,83.0,65.0,78.0,75.0,67.0,74.0,62.0,67.0,74.0,91.0,80.0,78.0,79.0,105.0,80.0,80.0,93.0,93.0,71.0,71.0,70.0,72.0,54.0,76.0,65.0,57.0,58.0,60.0,52.0,36.0,57.0,50.0,57.0,61.0,39.0,27.0,40.0,42.0,30.0,17.0,22.0,29.0,28.0,23.0,17.0,18.0,11.0,7.0,8.0,6.0,17.0 D83028,36.0,41.0,45.0,46.0,43.0,44.0,44.0,47.0,46.0,53.0,50.0,38.0,32.0,52.0,34.0,63.0,42.0,30.0,41.0,51.0,27.0,33.0,35.0,40.0,34.0,45.0,56.0,52.0,48.0,46.0,60.0,47.0,55.0,68.0,57.0,67.0,62.0,53.0,58.0,34.0,46.0,51.0,31.0,38.0,58.0,54.0,49.0,37.0,38.0,51.0,59.0,41.0,54.0,55.0,58.0,54.0,58.0,62.0,72.0,66.0,75.0,89.0,83.0,93.0,75.0,84.0,86.0,78.0,82.0,76.0,72.0,65.0,74.0,73.0,69.0,82.0,63.0,99.0,85.0,60.0,45.0,54.0,57.0,40.0,38.0,34.0,35.0,28.0,29.0,22.0,19.0,17.0,14.0,12.0,9.0,21.0 D83029,41.0,49.0,61.0,49.0,52.0,52.0,60.0,62.0,62.0,71.0,68.0,63.0,59.0,91.0,53.0,72.0,65.0,72.0,64.0,78.0,51.0,67.0,71.0,79.0,84.0,76.0,109.0,85.0,78.0,114.0,109.0,99.0,100.0,105.0,87.0,89.0,113.0,100.0,79.0,112.0,95.0,92.0,90.0,113.0,90.0,104.0,76.0,85.0,86.0,74.0,80.0,65.0,82.0,67.0,76.0,84.0,71.0,89.0,90.0,83.0,95.0,101.0,92.0,73.0,62.0,87.0,78.0,72.0,85.0,71.0,61.0,67.0,68.0,69.0,71.0,70.0,81.0,74.0,95.0,57.0,51.0,49.0,55.0,44.0,40.0,30.0,41.0,34.0,31.0,34.0,18.0,19.0,11.0,17.0,13.0,20.0 D83033,30.0,24.0,28.0,33.0,27.0,46.0,37.0,39.0,38.0,40.0,42.0,49.0,50.0,64.0,44.0,54.0,65.0,53.0,53.0,32.0,38.0,40.0,20.0,36.0,48.0,49.0,46.0,40.0,45.0,34.0,58.0,42.0,37.0,41.0,48.0,34.0,46.0,42.0,42.0,45.0,44.0,49.0,51.0,50.0,51.0,67.0,43.0,50.0,51.0,56.0,64.0,81.0,64.0,76.0,73.0,69.0,80.0,95.0,88.0,104.0,105.0,111.0,87.0,87.0,89.0,80.0,84.0,93.0,55.0,76.0,65.0,77.0,75.0,80.0,88.0,55.0,92.0,99.0,93.0,58.0,53.0,56.0,49.0,42.0,32.0,21.0,34.0,28.0,28.0,11.0,20.0,15.0,13.0,4.0,5.0,19.0 D83037,54.0,49.0,66.0,70.0,70.0,70.0,80.0,91.0,82.0,101.0,81.0,96.0,102.0,105.0,82.0,88.0,102.0,104.0,80.0,80.0,68.0,68.0,66.0,71.0,70.0,72.0,54.0,62.0,80.0,95.0,81.0,88.0,67.0,87.0,86.0,104.0,90.0,126.0,100.0,81.0,90.0,101.0,75.0,82.0,106.0,100.0,85.0,87.0,100.0,93.0,103.0,93.0,114.0,114.0,133.0,122.0,129.0,129.0,120.0,144.0,123.0,133.0,123.0,116.0,117.0,113.0,101.0,107.0,94.0,116.0,115.0,74.0,109.0,93.0,100.0,119.0,105.0,125.0,126.0,87.0,101.0,88.0,86.0,75.0,60.0,53.0,64.0,43.0,44.0,49.0,39.0,35.0,23.0,15.0,23.0,45.0 D83038,72.0,72.0,71.0,83.0,74.0,72.0,77.0,91.0,98.0,82.0,103.0,92.0,91.0,86.0,91.0,97.0,105.0,89.0,83.0,58.0,68.0,70.0,69.0,70.0,84.0,76.0,85.0,93.0,95.0,94.0,100.0,102.0,110.0,98.0,114.0,101.0,113.0,97.0,100.0,112.0,104.0,115.0,109.0,122.0,110.0,129.0,96.0,93.0,94.0,97.0,119.0,116.0,119.0,126.0,125.0,120.0,121.0,121.0,139.0,112.0,85.0,118.0,119.0,120.0,98.0,90.0,87.0,92.0,91.0,81.0,100.0,88.0,69.0,68.0,77.0,88.0,109.0,80.0,77.0,76.0,81.0,64.0,61.0,39.0,49.0,43.0,38.0,37.0,37.0,32.0,27.0,22.0,22.0,14.0,10.0,23.0 D83040,35.0,37.0,31.0,50.0,38.0,44.0,46.0,57.0,49.0,61.0,53.0,56.0,61.0,66.0,82.0,74.0,97.0,99.0,85.0,64.0,63.0,63.0,44.0,51.0,53.0,71.0,62.0,53.0,61.0,59.0,62.0,63.0,61.0,62.0,65.0,59.0,57.0,76.0,60.0,73.0,62.0,75.0,55.0,62.0,65.0,77.0,47.0,63.0,64.0,61.0,76.0,67.0,85.0,81.0,68.0,85.0,73.0,68.0,67.0,88.0,53.0,83.0,57.0,69.0,62.0,72.0,62.0,74.0,61.0,63.0,69.0,63.0,59.0,59.0,54.0,79.0,71.0,69.0,93.0,68.0,65.0,55.0,37.0,51.0,49.0,38.0,37.0,26.0,32.0,26.0,19.0,12.0,11.0,13.0,15.0,27.0 D83041,20.0,21.0,34.0,45.0,33.0,34.0,32.0,37.0,40.0,49.0,44.0,52.0,58.0,69.0,50.0,51.0,62.0,70.0,62.0,41.0,38.0,51.0,46.0,44.0,42.0,38.0,43.0,40.0,40.0,45.0,43.0,45.0,33.0,39.0,57.0,47.0,56.0,34.0,46.0,51.0,37.0,40.0,52.0,53.0,58.0,69.0,56.0,55.0,68.0,63.0,86.0,69.0,82.0,86.0,77.0,94.0,88.0,90.0,88.0,96.0,91.0,94.0,90.0,66.0,87.0,62.0,100.0,85.0,74.0,55.0,72.0,75.0,62.0,80.0,69.0,70.0,53.0,65.0,59.0,53.0,49.0,43.0,35.0,29.0,21.0,30.0,28.0,17.0,20.0,20.0,10.0,17.0,5.0,6.0,6.0,17.0 D83043,12.0,17.0,26.0,17.0,24.0,22.0,26.0,23.0,24.0,31.0,21.0,26.0,25.0,38.0,34.0,24.0,47.0,32.0,25.0,24.0,28.0,25.0,17.0,20.0,22.0,20.0,14.0,23.0,23.0,31.0,27.0,25.0,23.0,35.0,27.0,40.0,35.0,30.0,33.0,41.0,23.0,40.0,38.0,21.0,35.0,30.0,27.0,32.0,35.0,30.0,36.0,42.0,38.0,43.0,45.0,45.0,42.0,54.0,56.0,70.0,46.0,37.0,51.0,51.0,41.0,59.0,44.0,39.0,40.0,43.0,40.0,40.0,47.0,39.0,56.0,51.0,42.0,65.0,59.0,32.0,37.0,36.0,31.0,31.0,30.0,30.0,23.0,15.0,25.0,4.0,17.0,6.0,8.0,4.0,7.0,14.0 D83044,116.0,109.0,117.0,156.0,121.0,134.0,121.0,124.0,134.0,137.0,137.0,140.0,130.0,132.0,118.0,130.0,121.0,124.0,126.0,94.0,114.0,112.0,114.0,122.0,120.0,145.0,161.0,161.0,190.0,183.0,167.0,168.0,182.0,187.0,184.0,187.0,195.0,178.0,152.0,167.0,152.0,143.0,146.0,163.0,149.0,162.0,146.0,125.0,126.0,118.0,149.0,137.0,130.0,127.0,129.0,150.0,140.0,134.0,184.0,149.0,167.0,166.0,132.0,131.0,135.0,139.0,128.0,106.0,129.0,98.0,119.0,108.0,118.0,105.0,116.0,119.0,99.0,93.0,103.0,80.0,89.0,79.0,57.0,73.0,70.0,62.0,66.0,45.0,38.0,55.0,48.0,29.0,32.0,21.0,16.0,67.0 D83045,21.0,21.0,26.0,27.0,25.0,28.0,26.0,32.0,27.0,29.0,20.0,30.0,21.0,34.0,29.0,35.0,38.0,27.0,25.0,30.0,30.0,21.0,17.0,25.0,24.0,30.0,24.0,25.0,36.0,33.0,37.0,34.0,33.0,49.0,27.0,39.0,39.0,43.0,28.0,28.0,37.0,39.0,32.0,30.0,30.0,29.0,32.0,27.0,33.0,34.0,29.0,38.0,31.0,43.0,40.0,38.0,37.0,55.0,44.0,48.0,46.0,48.0,48.0,46.0,41.0,29.0,27.0,33.0,35.0,24.0,40.0,34.0,27.0,31.0,29.0,32.0,31.0,38.0,42.0,24.0,25.0,22.0,17.0,22.0,12.0,16.0,16.0,13.0,7.0,11.0,8.0,8.0,3.0,1.0,3.0,6.0 D83046,127.0,145.0,113.0,148.0,129.0,133.0,142.0,147.0,151.0,185.0,157.0,151.0,186.0,171.0,177.0,185.0,182.0,191.0,156.0,152.0,129.0,151.0,124.0,167.0,161.0,175.0,172.0,186.0,203.0,193.0,213.0,218.0,217.0,257.0,255.0,221.0,212.0,204.0,233.0,217.0,189.0,185.0,203.0,207.0,192.0,195.0,181.0,192.0,164.0,170.0,200.0,232.0,204.0,200.0,209.0,164.0,212.0,175.0,179.0,174.0,189.0,176.0,186.0,158.0,183.0,167.0,153.0,152.0,163.0,117.0,127.0,160.0,153.0,141.0,153.0,150.0,137.0,154.0,170.0,114.0,113.0,104.0,89.0,84.0,84.0,76.0,85.0,54.0,53.0,47.0,40.0,26.0,38.0,23.0,18.0,55.0 D83048,52.0,39.0,59.0,67.0,72.0,61.0,77.0,97.0,81.0,78.0,70.0,81.0,84.0,80.0,84.0,77.0,97.0,75.0,79.0,77.0,75.0,56.0,67.0,66.0,77.0,86.0,91.0,90.0,77.0,99.0,92.0,86.0,82.0,85.0,93.0,103.0,106.0,96.0,96.0,105.0,108.0,81.0,85.0,75.0,94.0,92.0,87.0,86.0,80.0,79.0,87.0,91.0,121.0,119.0,118.0,111.0,137.0,124.0,119.0,140.0,140.0,152.0,139.0,159.0,156.0,127.0,134.0,161.0,127.0,139.0,116.0,124.0,113.0,136.0,144.0,123.0,117.0,125.0,138.0,91.0,105.0,86.0,93.0,68.0,52.0,54.0,49.0,59.0,52.0,48.0,31.0,24.0,27.0,18.0,8.0,42.0 D83049,18.0,16.0,34.0,15.0,26.0,34.0,19.0,23.0,30.0,34.0,30.0,23.0,29.0,23.0,39.0,41.0,29.0,31.0,38.0,22.0,30.0,26.0,20.0,28.0,31.0,24.0,33.0,32.0,30.0,26.0,26.0,39.0,34.0,24.0,26.0,21.0,38.0,38.0,33.0,38.0,31.0,30.0,29.0,38.0,39.0,34.0,28.0,51.0,26.0,49.0,39.0,48.0,45.0,54.0,55.0,53.0,73.0,64.0,52.0,70.0,62.0,50.0,51.0,61.0,46.0,60.0,62.0,50.0,52.0,51.0,46.0,52.0,55.0,62.0,60.0,57.0,57.0,61.0,67.0,49.0,56.0,51.0,45.0,42.0,25.0,34.0,42.0,21.0,44.0,28.0,23.0,13.0,13.0,19.0,11.0,26.0 D83050,111.0,126.0,135.0,124.0,145.0,145.0,143.0,172.0,170.0,182.0,194.0,165.0,208.0,194.0,189.0,178.0,155.0,168.0,138.0,153.0,149.0,127.0,129.0,113.0,140.0,126.0,140.0,137.0,163.0,178.0,183.0,211.0,212.0,189.0,218.0,212.0,194.0,230.0,229.0,181.0,194.0,206.0,188.0,191.0,185.0,213.0,161.0,172.0,184.0,163.0,160.0,169.0,157.0,166.0,188.0,191.0,174.0,171.0,170.0,171.0,194.0,186.0,168.0,173.0,153.0,150.0,147.0,137.0,133.0,123.0,129.0,134.0,112.0,113.0,129.0,120.0,118.0,132.0,134.0,99.0,134.0,81.0,82.0,82.0,75.0,63.0,57.0,48.0,44.0,52.0,40.0,20.0,19.0,26.0,18.0,43.0 D83051,87.0,81.0,82.0,110.0,93.0,104.0,115.0,109.0,109.0,129.0,104.0,121.0,132.0,134.0,130.0,118.0,145.0,121.0,111.0,101.0,99.0,88.0,101.0,100.0,104.0,111.0,122.0,109.0,139.0,124.0,148.0,158.0,126.0,127.0,157.0,167.0,165.0,135.0,149.0,141.0,159.0,141.0,140.0,137.0,144.0,156.0,130.0,106.0,127.0,128.0,131.0,157.0,134.0,141.0,113.0,127.0,126.0,122.0,120.0,125.0,136.0,122.0,108.0,115.0,94.0,96.0,96.0,95.0,96.0,74.0,91.0,66.0,82.0,93.0,68.0,84.0,84.0,86.0,83.0,61.0,61.0,59.0,37.0,49.0,35.0,32.0,34.0,31.0,27.0,29.0,15.0,19.0,15.0,13.0,4.0,24.0 D83053,38.0,32.0,43.0,37.0,29.0,42.0,37.0,45.0,41.0,45.0,55.0,49.0,41.0,51.0,51.0,54.0,43.0,45.0,42.0,35.0,35.0,42.0,38.0,40.0,31.0,33.0,33.0,48.0,48.0,46.0,55.0,54.0,49.0,53.0,53.0,44.0,54.0,46.0,60.0,41.0,44.0,39.0,43.0,41.0,61.0,41.0,36.0,58.0,35.0,45.0,62.0,63.0,62.0,80.0,63.0,80.0,76.0,82.0,88.0,78.0,80.0,79.0,83.0,83.0,74.0,87.0,80.0,67.0,69.0,73.0,71.0,79.0,52.0,64.0,58.0,69.0,70.0,77.0,83.0,66.0,60.0,56.0,42.0,50.0,29.0,27.0,38.0,29.0,22.0,24.0,18.0,10.0,6.0,9.0,3.0,10.0 D83054,12.0,9.0,15.0,26.0,16.0,20.0,26.0,27.0,37.0,26.0,19.0,18.0,24.0,32.0,29.0,26.0,32.0,36.0,23.0,22.0,39.0,19.0,28.0,16.0,25.0,29.0,27.0,21.0,27.0,27.0,22.0,31.0,28.0,28.0,31.0,33.0,21.0,27.0,36.0,24.0,37.0,34.0,22.0,33.0,26.0,37.0,35.0,22.0,38.0,36.0,33.0,38.0,40.0,36.0,57.0,51.0,54.0,67.0,57.0,60.0,60.0,69.0,75.0,64.0,77.0,69.0,58.0,62.0,77.0,51.0,50.0,65.0,52.0,49.0,47.0,62.0,46.0,61.0,56.0,38.0,38.0,44.0,29.0,35.0,23.0,32.0,17.0,22.0,22.0,20.0,10.0,15.0,9.0,11.0,17.0,36.0 D83055,55.0,79.0,75.0,77.0,70.0,79.0,79.0,65.0,81.0,64.0,81.0,75.0,86.0,75.0,79.0,82.0,90.0,74.0,72.0,81.0,60.0,64.0,67.0,60.0,70.0,84.0,92.0,81.0,71.0,98.0,98.0,78.0,69.0,100.0,110.0,111.0,105.0,89.0,85.0,83.0,106.0,81.0,92.0,85.0,92.0,76.0,87.0,81.0,75.0,77.0,98.0,89.0,97.0,105.0,98.0,118.0,147.0,116.0,131.0,153.0,132.0,141.0,133.0,109.0,133.0,110.0,126.0,126.0,94.0,102.0,88.0,93.0,93.0,109.0,95.0,121.0,101.0,129.0,123.0,89.0,82.0,80.0,58.0,48.0,54.0,59.0,37.0,42.0,32.0,25.0,23.0,18.0,13.0,9.0,12.0,26.0 D83056,49.0,53.0,67.0,72.0,64.0,67.0,54.0,77.0,94.0,86.0,81.0,75.0,96.0,98.0,79.0,88.0,71.0,80.0,69.0,46.0,59.0,46.0,58.0,56.0,64.0,68.0,65.0,94.0,91.0,85.0,105.0,71.0,88.0,105.0,93.0,99.0,94.0,97.0,85.0,63.0,83.0,83.0,90.0,74.0,74.0,73.0,66.0,67.0,59.0,43.0,41.0,47.0,67.0,62.0,57.0,64.0,60.0,61.0,42.0,58.0,54.0,65.0,55.0,46.0,44.0,49.0,41.0,54.0,49.0,46.0,53.0,36.0,46.0,33.0,33.0,38.0,31.0,44.0,45.0,34.0,32.0,22.0,28.0,31.0,11.0,19.0,23.0,20.0,16.0,15.0,13.0,12.0,10.0,11.0,14.0,24.0 D83057,50.0,51.0,51.0,70.0,52.0,69.0,64.0,87.0,61.0,82.0,100.0,97.0,88.0,70.0,81.0,96.0,84.0,91.0,74.0,71.0,63.0,47.0,60.0,47.0,61.0,59.0,57.0,66.0,50.0,61.0,69.0,82.0,56.0,66.0,71.0,80.0,94.0,108.0,88.0,73.0,84.0,83.0,99.0,86.0,106.0,110.0,68.0,91.0,83.0,84.0,77.0,96.0,95.0,107.0,109.0,109.0,102.0,108.0,110.0,115.0,123.0,101.0,83.0,97.0,91.0,104.0,99.0,100.0,96.0,102.0,92.0,86.0,84.0,98.0,76.0,104.0,93.0,87.0,128.0,90.0,73.0,67.0,58.0,55.0,50.0,47.0,47.0,46.0,51.0,31.0,37.0,42.0,24.0,16.0,18.0,45.0 D83059,127.0,114.0,137.0,122.0,119.0,147.0,132.0,147.0,149.0,142.0,142.0,144.0,154.0,144.0,149.0,141.0,123.0,130.0,160.0,111.0,133.0,116.0,127.0,121.0,150.0,135.0,140.0,140.0,153.0,164.0,185.0,183.0,173.0,212.0,168.0,177.0,167.0,197.0,157.0,186.0,162.0,173.0,143.0,145.0,156.0,122.0,140.0,117.0,112.0,103.0,131.0,114.0,123.0,134.0,126.0,125.0,105.0,103.0,109.0,106.0,96.0,93.0,80.0,95.0,95.0,83.0,88.0,88.0,71.0,75.0,54.0,79.0,73.0,64.0,70.0,74.0,46.0,63.0,56.0,39.0,46.0,47.0,38.0,26.0,24.0,25.0,26.0,28.0,12.0,18.0,13.0,12.0,10.0,5.0,7.0,21.0 D83060,101.0,89.0,106.0,97.0,106.0,124.0,102.0,121.0,123.0,131.0,142.0,130.0,127.0,126.0,117.0,118.0,132.0,123.0,111.0,108.0,125.0,105.0,104.0,112.0,106.0,118.0,127.0,144.0,146.0,127.0,147.0,137.0,136.0,129.0,153.0,167.0,144.0,139.0,152.0,148.0,150.0,143.0,123.0,128.0,136.0,141.0,142.0,122.0,131.0,149.0,143.0,187.0,170.0,198.0,191.0,183.0,173.0,204.0,175.0,199.0,193.0,189.0,153.0,170.0,154.0,148.0,128.0,137.0,156.0,146.0,153.0,145.0,158.0,151.0,158.0,144.0,158.0,175.0,183.0,145.0,124.0,145.0,123.0,99.0,83.0,68.0,80.0,60.0,60.0,48.0,37.0,36.0,23.0,24.0,20.0,45.0 D83061,22.0,23.0,32.0,48.0,32.0,46.0,45.0,39.0,38.0,43.0,52.0,52.0,51.0,57.0,50.0,72.0,58.0,56.0,59.0,49.0,38.0,36.0,34.0,43.0,45.0,45.0,46.0,52.0,42.0,51.0,44.0,37.0,38.0,47.0,49.0,47.0,72.0,52.0,57.0,43.0,49.0,54.0,47.0,69.0,59.0,57.0,52.0,59.0,54.0,52.0,64.0,67.0,67.0,81.0,75.0,89.0,80.0,84.0,70.0,82.0,93.0,74.0,66.0,80.0,74.0,75.0,77.0,68.0,72.0,84.0,62.0,62.0,64.0,81.0,77.0,64.0,78.0,68.0,80.0,50.0,48.0,54.0,42.0,31.0,25.0,31.0,31.0,31.0,15.0,25.0,12.0,15.0,10.0,11.0,6.0,21.0 D83062,22.0,15.0,26.0,28.0,34.0,28.0,41.0,33.0,38.0,37.0,42.0,34.0,36.0,34.0,46.0,28.0,37.0,36.0,33.0,28.0,27.0,23.0,26.0,18.0,30.0,30.0,46.0,34.0,36.0,50.0,44.0,42.0,42.0,38.0,51.0,41.0,42.0,54.0,43.0,40.0,46.0,51.0,48.0,48.0,33.0,39.0,32.0,34.0,54.0,46.0,43.0,45.0,50.0,58.0,58.0,51.0,60.0,47.0,42.0,55.0,62.0,49.0,66.0,61.0,54.0,54.0,61.0,69.0,50.0,44.0,52.0,54.0,50.0,51.0,62.0,38.0,42.0,57.0,55.0,40.0,48.0,41.0,31.0,20.0,29.0,28.0,19.0,26.0,12.0,18.0,17.0,13.0,10.0,6.0,8.0,20.0 D83064,19.0,17.0,9.0,22.0,13.0,24.0,23.0,28.0,18.0,25.0,27.0,21.0,25.0,20.0,23.0,17.0,17.0,17.0,28.0,15.0,14.0,24.0,15.0,16.0,25.0,16.0,18.0,11.0,21.0,30.0,21.0,27.0,27.0,38.0,30.0,26.0,25.0,27.0,22.0,18.0,29.0,20.0,21.0,26.0,20.0,30.0,32.0,30.0,28.0,23.0,21.0,32.0,24.0,21.0,27.0,30.0,46.0,29.0,37.0,37.0,37.0,48.0,34.0,23.0,33.0,34.0,31.0,38.0,34.0,43.0,37.0,47.0,21.0,39.0,30.0,30.0,50.0,34.0,35.0,32.0,27.0,16.0,22.0,23.0,16.0,15.0,19.0,12.0,13.0,7.0,10.0,4.0,2.0,5.0,,6.0 D83067,41.0,33.0,40.0,47.0,48.0,42.0,43.0,54.0,58.0,42.0,41.0,52.0,49.0,45.0,44.0,41.0,40.0,59.0,37.0,20.0,31.0,42.0,44.0,32.0,45.0,39.0,40.0,58.0,58.0,62.0,58.0,65.0,60.0,62.0,47.0,52.0,62.0,79.0,43.0,58.0,68.0,56.0,53.0,69.0,59.0,48.0,51.0,60.0,49.0,54.0,62.0,49.0,63.0,59.0,69.0,51.0,55.0,63.0,70.0,59.0,59.0,59.0,40.0,48.0,46.0,34.0,37.0,38.0,35.0,37.0,38.0,35.0,38.0,29.0,25.0,44.0,31.0,32.0,40.0,21.0,24.0,23.0,23.0,14.0,21.0,17.0,11.0,18.0,19.0,9.0,7.0,9.0,4.0,3.0,4.0,15.0 D83069,15.0,19.0,21.0,23.0,26.0,20.0,31.0,23.0,29.0,21.0,39.0,45.0,31.0,44.0,34.0,43.0,20.0,31.0,27.0,21.0,23.0,20.0,18.0,21.0,24.0,16.0,24.0,22.0,24.0,19.0,23.0,25.0,31.0,37.0,26.0,28.0,22.0,30.0,34.0,24.0,34.0,29.0,37.0,38.0,36.0,32.0,34.0,39.0,30.0,27.0,32.0,41.0,42.0,46.0,54.0,42.0,63.0,48.0,77.0,57.0,68.0,57.0,71.0,70.0,64.0,66.0,50.0,50.0,51.0,45.0,56.0,43.0,50.0,49.0,36.0,41.0,41.0,53.0,54.0,42.0,50.0,36.0,33.0,37.0,21.0,18.0,18.0,20.0,12.0,16.0,15.0,6.0,7.0,3.0,4.0,12.0 D83070,11.0,22.0,25.0,25.0,31.0,22.0,20.0,27.0,20.0,25.0,30.0,20.0,24.0,35.0,24.0,29.0,25.0,26.0,21.0,23.0,20.0,24.0,21.0,28.0,18.0,20.0,24.0,24.0,14.0,30.0,13.0,27.0,34.0,21.0,24.0,23.0,27.0,28.0,36.0,23.0,25.0,24.0,32.0,40.0,32.0,27.0,19.0,22.0,34.0,24.0,29.0,38.0,24.0,39.0,39.0,41.0,50.0,39.0,48.0,45.0,43.0,42.0,45.0,26.0,44.0,40.0,47.0,34.0,36.0,42.0,39.0,41.0,40.0,36.0,41.0,36.0,49.0,43.0,42.0,38.0,19.0,25.0,31.0,22.0,24.0,16.0,13.0,17.0,8.0,13.0,10.0,4.0,4.0,7.0,4.0,9.0 D83073,21.0,20.0,34.0,30.0,26.0,23.0,37.0,35.0,49.0,36.0,26.0,33.0,30.0,41.0,36.0,45.0,36.0,40.0,26.0,44.0,28.0,23.0,22.0,29.0,28.0,29.0,34.0,32.0,43.0,42.0,35.0,43.0,48.0,50.0,57.0,51.0,60.0,53.0,50.0,42.0,43.0,49.0,44.0,49.0,56.0,50.0,33.0,26.0,31.0,30.0,37.0,23.0,24.0,25.0,36.0,28.0,23.0,29.0,30.0,28.0,36.0,26.0,35.0,34.0,30.0,20.0,19.0,24.0,19.0,20.0,25.0,25.0,16.0,16.0,17.0,14.0,13.0,13.0,30.0,20.0,23.0,14.0,7.0,11.0,8.0,10.0,6.0,13.0,7.0,6.0,4.0,9.0,5.0,10.0,4.0,13.0 D83074,47.0,74.0,58.0,72.0,69.0,78.0,79.0,88.0,79.0,86.0,95.0,95.0,80.0,81.0,84.0,79.0,91.0,112.0,69.0,87.0,79.0,88.0,78.0,86.0,89.0,96.0,89.0,107.0,88.0,99.0,110.0,108.0,115.0,125.0,128.0,134.0,140.0,125.0,112.0,105.0,107.0,91.0,88.0,115.0,97.0,102.0,83.0,103.0,83.0,96.0,93.0,84.0,64.0,86.0,75.0,80.0,73.0,67.0,70.0,75.0,90.0,67.0,64.0,57.0,56.0,53.0,51.0,60.0,65.0,42.0,58.0,41.0,47.0,40.0,47.0,41.0,42.0,49.0,56.0,20.0,37.0,26.0,23.0,21.0,14.0,19.0,27.0,19.0,14.0,21.0,17.0,11.0,10.0,17.0,8.0,16.0 D83075,59.0,64.0,64.0,60.0,72.0,64.0,71.0,61.0,78.0,74.0,61.0,65.0,53.0,65.0,87.0,54.0,52.0,65.0,74.0,64.0,60.0,63.0,57.0,58.0,56.0,62.0,82.0,67.0,89.0,80.0,83.0,108.0,82.0,100.0,93.0,97.0,95.0,79.0,90.0,75.0,67.0,79.0,83.0,77.0,74.0,76.0,57.0,80.0,78.0,59.0,66.0,79.0,82.0,80.0,92.0,98.0,87.0,103.0,93.0,103.0,122.0,87.0,97.0,91.0,107.0,72.0,82.0,74.0,76.0,65.0,70.0,71.0,64.0,69.0,57.0,60.0,70.0,74.0,87.0,50.0,47.0,55.0,60.0,45.0,35.0,50.0,29.0,33.0,29.0,29.0,18.0,14.0,13.0,13.0,8.0,21.0 D83076,12.0,18.0,19.0,19.0,18.0,19.0,18.0,20.0,32.0,15.0,18.0,31.0,23.0,34.0,33.0,26.0,35.0,26.0,19.0,29.0,19.0,18.0,16.0,18.0,16.0,21.0,20.0,18.0,17.0,16.0,19.0,20.0,13.0,25.0,18.0,27.0,20.0,30.0,21.0,21.0,23.0,27.0,27.0,26.0,36.0,33.0,26.0,33.0,28.0,26.0,42.0,37.0,42.0,34.0,38.0,42.0,53.0,40.0,49.0,55.0,51.0,52.0,33.0,52.0,37.0,46.0,45.0,43.0,48.0,43.0,51.0,47.0,41.0,43.0,38.0,45.0,46.0,55.0,47.0,31.0,44.0,44.0,34.0,26.0,16.0,17.0,20.0,13.0,12.0,9.0,8.0,5.0,7.0,4.0,2.0,11.0 D83078,54.0,70.0,73.0,62.0,70.0,70.0,84.0,61.0,93.0,65.0,84.0,77.0,94.0,81.0,66.0,54.0,52.0,55.0,54.0,41.0,42.0,33.0,43.0,42.0,44.0,55.0,54.0,63.0,79.0,75.0,81.0,92.0,74.0,100.0,105.0,109.0,107.0,105.0,89.0,94.0,87.0,92.0,77.0,73.0,91.0,67.0,71.0,61.0,42.0,53.0,60.0,54.0,56.0,51.0,39.0,66.0,59.0,64.0,64.0,59.0,53.0,60.0,52.0,58.0,60.0,62.0,54.0,43.0,42.0,37.0,35.0,35.0,32.0,35.0,39.0,30.0,25.0,34.0,25.0,19.0,21.0,22.0,19.0,20.0,12.0,12.0,12.0,6.0,12.0,11.0,10.0,3.0,2.0,3.0,1.0,6.0 D83079,26.0,35.0,32.0,30.0,36.0,39.0,36.0,40.0,35.0,43.0,38.0,45.0,56.0,55.0,60.0,47.0,55.0,62.0,53.0,39.0,43.0,52.0,53.0,41.0,51.0,55.0,49.0,63.0,48.0,52.0,53.0,45.0,39.0,54.0,52.0,74.0,54.0,55.0,55.0,60.0,67.0,53.0,47.0,58.0,69.0,64.0,46.0,56.0,62.0,66.0,56.0,64.0,87.0,78.0,82.0,69.0,68.0,67.0,73.0,88.0,71.0,71.0,74.0,55.0,62.0,57.0,60.0,62.0,56.0,45.0,56.0,62.0,45.0,51.0,40.0,50.0,53.0,59.0,61.0,45.0,52.0,34.0,36.0,26.0,24.0,26.0,25.0,17.0,15.0,18.0,14.0,8.0,10.0,4.0,6.0,18.0 D83080,14.0,14.0,22.0,26.0,25.0,25.0,28.0,34.0,27.0,21.0,42.0,44.0,29.0,36.0,35.0,39.0,25.0,32.0,40.0,25.0,33.0,15.0,21.0,35.0,22.0,25.0,24.0,30.0,22.0,19.0,29.0,31.0,26.0,31.0,31.0,32.0,29.0,36.0,31.0,37.0,30.0,34.0,51.0,39.0,48.0,29.0,37.0,33.0,33.0,32.0,49.0,36.0,51.0,41.0,40.0,35.0,33.0,39.0,29.0,48.0,44.0,30.0,48.0,30.0,41.0,42.0,44.0,44.0,42.0,42.0,34.0,37.0,43.0,37.0,36.0,45.0,31.0,38.0,49.0,35.0,35.0,25.0,21.0,19.0,26.0,14.0,14.0,15.0,21.0,8.0,7.0,6.0,7.0,3.0,3.0,3.0 D83081,31.0,19.0,38.0,53.0,51.0,40.0,40.0,30.0,37.0,46.0,43.0,39.0,58.0,42.0,39.0,53.0,57.0,60.0,39.0,41.0,49.0,41.0,46.0,35.0,50.0,57.0,41.0,48.0,49.0,35.0,48.0,49.0,59.0,55.0,49.0,47.0,45.0,54.0,46.0,56.0,54.0,41.0,55.0,53.0,46.0,60.0,46.0,43.0,48.0,53.0,53.0,56.0,50.0,70.0,75.0,75.0,59.0,75.0,62.0,68.0,83.0,86.0,76.0,55.0,60.0,60.0,59.0,66.0,48.0,52.0,36.0,43.0,47.0,47.0,48.0,53.0,41.0,42.0,52.0,38.0,39.0,34.0,27.0,30.0,21.0,21.0,18.0,16.0,13.0,16.0,9.0,7.0,7.0,10.0,4.0,18.0 D83084,16.0,26.0,27.0,19.0,26.0,34.0,29.0,29.0,38.0,46.0,31.0,34.0,47.0,44.0,62.0,49.0,43.0,42.0,37.0,32.0,27.0,30.0,36.0,28.0,31.0,18.0,32.0,26.0,24.0,31.0,28.0,34.0,26.0,31.0,30.0,27.0,33.0,42.0,43.0,51.0,48.0,44.0,43.0,45.0,43.0,53.0,44.0,48.0,40.0,30.0,36.0,46.0,47.0,54.0,53.0,46.0,52.0,45.0,48.0,32.0,33.0,49.0,49.0,29.0,50.0,46.0,29.0,32.0,31.0,31.0,45.0,21.0,22.0,33.0,35.0,42.0,39.0,41.0,54.0,27.0,35.0,30.0,19.0,20.0,21.0,32.0,26.0,15.0,17.0,11.0,9.0,9.0,9.0,7.0,10.0,15.0 D83610,41.0,35.0,61.0,47.0,56.0,70.0,56.0,75.0,61.0,64.0,54.0,77.0,81.0,69.0,78.0,78.0,93.0,95.0,61.0,68.0,61.0,74.0,61.0,57.0,64.0,63.0,74.0,82.0,89.0,80.0,83.0,87.0,91.0,91.0,97.0,91.0,94.0,95.0,86.0,84.0,85.0,92.0,85.0,67.0,87.0,91.0,73.0,92.0,87.0,81.0,79.0,91.0,108.0,118.0,99.0,98.0,106.0,99.0,108.0,98.0,84.0,86.0,94.0,87.0,100.0,72.0,64.0,50.0,68.0,56.0,56.0,60.0,62.0,49.0,56.0,47.0,58.0,57.0,58.0,46.0,36.0,52.0,45.0,28.0,31.0,23.0,29.0,22.0,25.0,21.0,12.0,16.0,10.0,10.0,9.0,35.0 F81012,11.0,20.0,15.0,14.0,22.0,20.0,22.0,26.0,27.0,18.0,26.0,25.0,15.0,27.0,35.0,30.0,32.0,38.0,41.0,22.0,27.0,30.0,34.0,27.0,34.0,31.0,28.0,25.0,23.0,21.0,27.0,21.0,9.0,20.0,31.0,19.0,34.0,37.0,34.0,28.0,27.0,33.0,33.0,34.0,30.0,39.0,35.0,40.0,37.0,39.0,40.0,39.0,57.0,63.0,66.0,44.0,66.0,60.0,79.0,62.0,69.0,57.0,64.0,65.0,57.0,56.0,64.0,66.0,58.0,66.0,66.0,56.0,77.0,61.0,66.0,84.0,81.0,83.0,69.0,58.0,59.0,67.0,46.0,38.0,41.0,45.0,31.0,28.0,21.0,31.0,14.0,24.0,15.0,9.0,8.0,29.0 F81017,22.0,26.0,26.0,27.0,35.0,33.0,39.0,31.0,30.0,43.0,35.0,35.0,33.0,23.0,41.0,38.0,33.0,38.0,45.0,25.0,30.0,27.0,31.0,36.0,35.0,33.0,37.0,38.0,38.0,36.0,35.0,38.0,39.0,38.0,34.0,42.0,41.0,41.0,24.0,30.0,36.0,25.0,39.0,39.0,43.0,37.0,33.0,46.0,30.0,44.0,34.0,44.0,50.0,42.0,55.0,73.0,57.0,61.0,65.0,52.0,64.0,73.0,82.0,63.0,67.0,81.0,73.0,65.0,75.0,73.0,65.0,84.0,57.0,74.0,66.0,75.0,80.0,89.0,103.0,102.0,63.0,67.0,46.0,46.0,39.0,46.0,42.0,35.0,24.0,22.0,26.0,24.0,16.0,10.0,11.0,37.0 F81019,75.0,71.0,88.0,95.0,94.0,114.0,90.0,97.0,117.0,119.0,100.0,113.0,115.0,107.0,118.0,100.0,139.0,117.0,83.0,89.0,77.0,85.0,99.0,97.0,94.0,111.0,100.0,95.0,100.0,94.0,96.0,103.0,111.0,123.0,109.0,100.0,100.0,109.0,105.0,98.0,108.0,92.0,110.0,101.0,114.0,105.0,91.0,95.0,93.0,100.0,84.0,117.0,114.0,117.0,125.0,110.0,117.0,134.0,108.0,130.0,119.0,135.0,133.0,131.0,103.0,104.0,117.0,103.0,98.0,108.0,99.0,86.0,95.0,88.0,104.0,101.0,124.0,108.0,118.0,92.0,76.0,71.0,83.0,55.0,46.0,62.0,52.0,60.0,51.0,35.0,18.0,23.0,27.0,14.0,14.0,31.0 F81021,41.0,33.0,45.0,45.0,54.0,58.0,34.0,55.0,55.0,67.0,57.0,49.0,53.0,53.0,60.0,65.0,53.0,57.0,66.0,56.0,41.0,49.0,54.0,31.0,52.0,38.0,49.0,49.0,62.0,52.0,44.0,60.0,60.0,73.0,73.0,57.0,59.0,69.0,47.0,60.0,76.0,50.0,45.0,58.0,73.0,70.0,57.0,59.0,60.0,69.0,67.0,85.0,98.0,79.0,78.0,89.0,104.0,81.0,110.0,98.0,116.0,99.0,116.0,96.0,89.0,79.0,90.0,117.0,81.0,93.0,81.0,92.0,73.0,87.0,95.0,98.0,70.0,96.0,92.0,77.0,57.0,55.0,50.0,50.0,33.0,25.0,19.0,26.0,16.0,19.0,18.0,13.0,7.0,8.0,7.0,13.0 F81026,18.0,26.0,24.0,18.0,26.0,24.0,20.0,26.0,29.0,29.0,27.0,28.0,30.0,38.0,37.0,32.0,37.0,41.0,40.0,34.0,28.0,27.0,34.0,37.0,24.0,30.0,25.0,26.0,24.0,30.0,26.0,32.0,40.0,37.0,40.0,30.0,31.0,39.0,34.0,24.0,29.0,30.0,43.0,34.0,42.0,26.0,43.0,43.0,29.0,37.0,59.0,42.0,51.0,44.0,42.0,54.0,76.0,56.0,70.0,81.0,65.0,75.0,72.0,85.0,77.0,83.0,64.0,85.0,76.0,86.0,85.0,95.0,92.0,84.0,95.0,94.0,88.0,118.0,115.0,78.0,86.0,76.0,58.0,53.0,54.0,59.0,59.0,45.0,33.0,23.0,33.0,29.0,29.0,22.0,19.0,53.0 F81028,28.0,37.0,33.0,31.0,46.0,49.0,55.0,52.0,53.0,41.0,60.0,50.0,65.0,50.0,54.0,40.0,38.0,53.0,46.0,37.0,29.0,32.0,41.0,37.0,31.0,47.0,41.0,43.0,34.0,50.0,43.0,53.0,43.0,43.0,52.0,60.0,49.0,60.0,52.0,69.0,61.0,71.0,76.0,72.0,59.0,79.0,71.0,61.0,62.0,69.0,55.0,56.0,64.0,59.0,66.0,76.0,60.0,65.0,69.0,61.0,66.0,70.0,66.0,54.0,45.0,65.0,58.0,44.0,66.0,59.0,59.0,53.0,60.0,53.0,56.0,51.0,63.0,82.0,76.0,40.0,51.0,49.0,40.0,31.0,32.0,23.0,22.0,20.0,19.0,15.0,13.0,12.0,11.0,6.0,7.0,12.0 F81037,32.0,29.0,34.0,35.0,37.0,42.0,52.0,55.0,31.0,47.0,53.0,54.0,47.0,55.0,60.0,51.0,45.0,46.0,52.0,41.0,37.0,48.0,43.0,42.0,40.0,57.0,46.0,61.0,51.0,55.0,44.0,53.0,55.0,55.0,62.0,58.0,57.0,57.0,55.0,56.0,49.0,45.0,39.0,43.0,52.0,42.0,51.0,32.0,38.0,49.0,42.0,50.0,50.0,70.0,54.0,58.0,56.0,63.0,46.0,63.0,61.0,77.0,65.0,58.0,50.0,50.0,61.0,45.0,49.0,53.0,46.0,39.0,50.0,39.0,38.0,49.0,42.0,58.0,62.0,42.0,40.0,42.0,27.0,29.0,27.0,25.0,29.0,17.0,24.0,22.0,11.0,6.0,7.0,10.0,9.0,18.0 F81042,169.0,185.0,200.0,213.0,216.0,196.0,217.0,254.0,246.0,278.0,286.0,274.0,261.0,284.0,259.0,262.0,253.0,241.0,237.0,218.0,211.0,219.0,203.0,232.0,274.0,288.0,270.0,280.0,291.0,297.0,305.0,324.0,333.0,324.0,305.0,297.0,337.0,337.0,355.0,321.0,297.0,283.0,276.0,286.0,261.0,281.0,274.0,254.0,259.0,229.0,233.0,266.0,283.0,259.0,246.0,239.0,280.0,249.0,264.0,253.0,264.0,254.0,259.0,226.0,212.0,210.0,205.0,209.0,189.0,166.0,169.0,180.0,166.0,176.0,163.0,170.0,164.0,180.0,203.0,143.0,156.0,134.0,116.0,95.0,97.0,105.0,85.0,76.0,74.0,44.0,50.0,33.0,30.0,15.0,16.0,51.0 F81044,21.0,25.0,30.0,40.0,33.0,32.0,25.0,36.0,36.0,43.0,31.0,26.0,40.0,44.0,26.0,38.0,38.0,47.0,50.0,44.0,34.0,29.0,30.0,40.0,44.0,36.0,34.0,17.0,25.0,33.0,29.0,31.0,35.0,52.0,40.0,28.0,41.0,45.0,41.0,42.0,41.0,41.0,34.0,37.0,60.0,43.0,56.0,41.0,38.0,45.0,55.0,64.0,47.0,51.0,52.0,62.0,67.0,54.0,59.0,76.0,61.0,84.0,68.0,49.0,60.0,64.0,58.0,62.0,51.0,47.0,53.0,49.0,53.0,36.0,44.0,50.0,40.0,45.0,50.0,44.0,47.0,40.0,25.0,23.0,20.0,25.0,29.0,20.0,19.0,8.0,21.0,10.0,9.0,11.0,4.0,24.0 F81052,59.0,50.0,54.0,61.0,64.0,76.0,69.0,68.0,69.0,61.0,69.0,72.0,90.0,82.0,78.0,85.0,82.0,79.0,88.0,43.0,57.0,48.0,49.0,35.0,63.0,72.0,85.0,75.0,78.0,86.0,71.0,82.0,91.0,92.0,93.0,99.0,93.0,85.0,77.0,95.0,77.0,77.0,43.0,66.0,63.0,74.0,58.0,77.0,65.0,79.0,90.0,68.0,97.0,105.0,93.0,112.0,113.0,121.0,131.0,126.0,124.0,103.0,117.0,135.0,127.0,118.0,115.0,119.0,119.0,101.0,112.0,118.0,108.0,118.0,115.0,111.0,131.0,143.0,145.0,115.0,120.0,110.0,101.0,89.0,75.0,84.0,72.0,56.0,59.0,64.0,40.0,28.0,15.0,22.0,18.0,47.0 F81067,33.0,58.0,54.0,63.0,62.0,62.0,77.0,68.0,75.0,73.0,81.0,98.0,83.0,84.0,90.0,104.0,92.0,97.0,74.0,66.0,69.0,54.0,52.0,55.0,53.0,64.0,61.0,69.0,63.0,67.0,65.0,72.0,68.0,88.0,86.0,88.0,100.0,99.0,80.0,98.0,97.0,86.0,95.0,94.0,113.0,99.0,91.0,98.0,99.0,82.0,89.0,95.0,101.0,76.0,107.0,108.0,116.0,101.0,98.0,99.0,94.0,107.0,91.0,89.0,97.0,85.0,84.0,76.0,95.0,83.0,69.0,88.0,85.0,79.0,84.0,78.0,89.0,95.0,102.0,58.0,88.0,70.0,59.0,44.0,56.0,44.0,49.0,35.0,38.0,28.0,31.0,24.0,20.0,25.0,15.0,34.0 F81069,45.0,32.0,38.0,52.0,58.0,50.0,62.0,53.0,54.0,53.0,50.0,55.0,67.0,59.0,63.0,56.0,50.0,56.0,54.0,42.0,39.0,36.0,27.0,38.0,60.0,38.0,48.0,52.0,48.0,45.0,61.0,48.0,67.0,71.0,61.0,70.0,55.0,72.0,54.0,61.0,68.0,59.0,62.0,55.0,60.0,45.0,46.0,47.0,60.0,49.0,58.0,66.0,57.0,48.0,59.0,52.0,60.0,46.0,53.0,65.0,43.0,57.0,46.0,35.0,46.0,44.0,43.0,39.0,58.0,38.0,30.0,40.0,31.0,35.0,44.0,43.0,52.0,38.0,41.0,28.0,26.0,31.0,26.0,19.0,16.0,21.0,14.0,11.0,4.0,11.0,9.0,7.0,6.0,4.0,5.0,12.0 F81091,54.0,54.0,37.0,49.0,52.0,45.0,45.0,42.0,47.0,59.0,47.0,53.0,45.0,54.0,64.0,42.0,49.0,38.0,49.0,37.0,44.0,53.0,47.0,72.0,79.0,83.0,99.0,103.0,101.0,95.0,86.0,86.0,80.0,102.0,85.0,83.0,81.0,75.0,68.0,86.0,67.0,54.0,82.0,58.0,55.0,63.0,60.0,54.0,57.0,55.0,58.0,48.0,56.0,53.0,52.0,64.0,48.0,71.0,43.0,48.0,50.0,43.0,29.0,41.0,41.0,43.0,52.0,38.0,39.0,44.0,35.0,38.0,41.0,27.0,37.0,36.0,44.0,33.0,48.0,30.0,32.0,48.0,31.0,29.0,25.0,16.0,20.0,14.0,21.0,11.0,12.0,15.0,5.0,2.0,8.0,13.0 F81095,98.0,135.0,120.0,144.0,145.0,143.0,140.0,143.0,153.0,165.0,158.0,157.0,142.0,163.0,145.0,146.0,146.0,131.0,122.0,99.0,96.0,99.0,124.0,123.0,144.0,159.0,159.0,168.0,162.0,180.0,173.0,199.0,177.0,186.0,195.0,190.0,219.0,190.0,187.0,168.0,188.0,175.0,160.0,161.0,167.0,140.0,125.0,129.0,100.0,130.0,109.0,100.0,104.0,124.0,135.0,120.0,116.0,110.0,112.0,127.0,119.0,107.0,103.0,99.0,111.0,95.0,95.0,82.0,83.0,74.0,77.0,86.0,75.0,56.0,73.0,68.0,84.0,58.0,76.0,61.0,58.0,35.0,37.0,42.0,28.0,33.0,20.0,29.0,19.0,16.0,20.0,12.0,17.0,9.0,7.0,20.0 F81115,107.0,97.0,103.0,117.0,98.0,122.0,148.0,145.0,166.0,134.0,182.0,189.0,168.0,192.0,158.0,174.0,177.0,162.0,142.0,120.0,103.0,106.0,110.0,98.0,139.0,115.0,137.0,172.0,145.0,147.0,160.0,148.0,170.0,184.0,161.0,170.0,192.0,193.0,191.0,207.0,209.0,179.0,204.0,207.0,214.0,229.0,180.0,171.0,181.0,184.0,206.0,191.0,187.0,181.0,201.0,186.0,198.0,175.0,189.0,201.0,177.0,208.0,221.0,161.0,196.0,171.0,181.0,157.0,136.0,135.0,156.0,137.0,135.0,145.0,162.0,167.0,156.0,193.0,177.0,90.0,129.0,120.0,95.0,105.0,80.0,77.0,58.0,61.0,60.0,69.0,44.0,35.0,37.0,24.0,38.0,82.0 F81116,30.0,31.0,44.0,48.0,40.0,36.0,52.0,49.0,53.0,48.0,47.0,50.0,68.0,67.0,43.0,53.0,68.0,64.0,57.0,33.0,44.0,41.0,38.0,41.0,42.0,55.0,42.0,60.0,50.0,51.0,69.0,52.0,53.0,70.0,57.0,59.0,60.0,67.0,66.0,69.0,50.0,53.0,49.0,53.0,69.0,50.0,63.0,69.0,62.0,65.0,65.0,67.0,80.0,78.0,91.0,78.0,100.0,77.0,76.0,90.0,79.0,83.0,90.0,72.0,79.0,88.0,68.0,93.0,60.0,74.0,72.0,53.0,68.0,84.0,83.0,76.0,83.0,79.0,97.0,65.0,54.0,53.0,59.0,54.0,41.0,34.0,37.0,39.0,22.0,33.0,25.0,16.0,13.0,11.0,5.0,27.0 F81133,50.0,54.0,45.0,59.0,49.0,48.0,52.0,61.0,60.0,58.0,69.0,51.0,73.0,58.0,62.0,61.0,70.0,56.0,73.0,42.0,53.0,53.0,54.0,49.0,55.0,54.0,68.0,49.0,59.0,66.0,78.0,73.0,73.0,80.0,72.0,74.0,78.0,74.0,71.0,63.0,54.0,57.0,82.0,71.0,57.0,57.0,62.0,64.0,69.0,73.0,87.0,81.0,87.0,77.0,83.0,83.0,85.0,89.0,95.0,106.0,84.0,107.0,106.0,86.0,74.0,100.0,82.0,72.0,60.0,78.0,79.0,77.0,83.0,63.0,84.0,92.0,86.0,114.0,126.0,73.0,77.0,83.0,57.0,54.0,41.0,44.0,34.0,32.0,28.0,18.0,16.0,22.0,16.0,11.0,6.0,16.0 F81141,20.0,18.0,24.0,27.0,28.0,15.0,20.0,32.0,25.0,21.0,28.0,19.0,25.0,22.0,23.0,16.0,25.0,30.0,168.0,296.0,400.0,455.0,508.0,556.0,609.0,249.0,171.0,172.0,133.0,101.0,77.0,89.0,71.0,61.0,62.0,61.0,56.0,41.0,45.0,41.0,26.0,35.0,20.0,29.0,32.0,28.0,31.0,30.0,22.0,26.0,26.0,47.0,27.0,27.0,31.0,34.0,38.0,27.0,34.0,49.0,37.0,35.0,35.0,26.0,32.0,30.0,47.0,35.0,32.0,31.0,26.0,31.0,28.0,29.0,20.0,27.0,27.0,27.0,30.0,18.0,17.0,15.0,17.0,9.0,11.0,14.0,10.0,12.0,10.0,9.0,9.0,6.0,6.0,7.0,3.0,13.0 F81156,50.0,51.0,46.0,58.0,50.0,60.0,62.0,59.0,52.0,38.0,47.0,62.0,67.0,66.0,59.0,31.0,68.0,57.0,54.0,46.0,44.0,46.0,30.0,34.0,50.0,45.0,60.0,71.0,66.0,63.0,63.0,69.0,62.0,84.0,76.0,80.0,58.0,57.0,57.0,46.0,61.0,61.0,44.0,48.0,51.0,48.0,50.0,38.0,48.0,53.0,48.0,50.0,41.0,46.0,59.0,39.0,53.0,55.0,57.0,39.0,62.0,62.0,67.0,65.0,69.0,70.0,63.0,47.0,66.0,57.0,58.0,51.0,60.0,42.0,41.0,52.0,50.0,66.0,48.0,36.0,48.0,46.0,32.0,34.0,35.0,30.0,26.0,40.0,21.0,25.0,14.0,12.0,14.0,10.0,10.0,37.0 F81212,47.0,63.0,52.0,54.0,55.0,47.0,56.0,53.0,60.0,61.0,74.0,68.0,70.0,66.0,70.0,53.0,60.0,63.0,52.0,58.0,50.0,57.0,42.0,60.0,58.0,57.0,61.0,62.0,79.0,56.0,67.0,69.0,53.0,66.0,79.0,77.0,80.0,59.0,63.0,67.0,65.0,61.0,46.0,51.0,59.0,48.0,47.0,61.0,42.0,56.0,49.0,58.0,55.0,62.0,54.0,48.0,65.0,70.0,56.0,68.0,75.0,79.0,55.0,67.0,69.0,57.0,52.0,56.0,57.0,52.0,57.0,54.0,36.0,43.0,40.0,50.0,44.0,47.0,68.0,24.0,26.0,31.0,35.0,24.0,22.0,17.0,23.0,18.0,13.0,14.0,16.0,13.0,4.0,4.0,5.0,12.0 F81213,29.0,21.0,29.0,37.0,26.0,33.0,37.0,27.0,39.0,28.0,36.0,48.0,43.0,34.0,42.0,31.0,35.0,42.0,37.0,38.0,22.0,38.0,31.0,26.0,30.0,36.0,28.0,29.0,31.0,27.0,27.0,36.0,37.0,30.0,41.0,54.0,40.0,35.0,45.0,23.0,36.0,36.0,44.0,41.0,52.0,37.0,49.0,41.0,43.0,33.0,43.0,43.0,44.0,39.0,68.0,65.0,59.0,56.0,65.0,57.0,64.0,72.0,74.0,62.0,71.0,61.0,70.0,61.0,47.0,60.0,54.0,63.0,55.0,56.0,58.0,52.0,65.0,69.0,69.0,47.0,45.0,39.0,31.0,30.0,32.0,23.0,29.0,21.0,11.0,12.0,15.0,12.0,9.0,7.0,8.0,8.0 F81221,15.0,21.0,29.0,32.0,25.0,18.0,28.0,32.0,29.0,37.0,24.0,28.0,25.0,25.0,26.0,16.0,23.0,37.0,25.0,29.0,17.0,27.0,27.0,28.0,29.0,25.0,37.0,28.0,22.0,28.0,39.0,39.0,27.0,32.0,26.0,22.0,28.0,34.0,21.0,35.0,25.0,31.0,38.0,26.0,25.0,32.0,27.0,24.0,35.0,21.0,31.0,31.0,31.0,32.0,35.0,37.0,38.0,38.0,35.0,41.0,36.0,34.0,37.0,36.0,39.0,31.0,31.0,35.0,37.0,37.0,35.0,32.0,33.0,23.0,29.0,23.0,33.0,27.0,38.0,19.0,19.0,22.0,17.0,18.0,13.0,5.0,8.0,3.0,7.0,7.0,7.0,3.0,6.0,8.0,4.0,14.0 F81606,10.0,8.0,12.0,18.0,11.0,15.0,11.0,11.0,16.0,10.0,6.0,12.0,10.0,10.0,21.0,13.0,12.0,15.0,12.0,9.0,15.0,19.0,11.0,25.0,17.0,13.0,10.0,12.0,13.0,13.0,7.0,14.0,14.0,12.0,12.0,18.0,11.0,13.0,22.0,23.0,15.0,11.0,10.0,17.0,18.0,9.0,23.0,10.0,9.0,17.0,19.0,28.0,27.0,20.0,24.0,16.0,22.0,27.0,30.0,24.0,31.0,19.0,17.0,27.0,18.0,20.0,36.0,29.0,21.0,20.0,18.0,24.0,24.0,36.0,21.0,20.0,14.0,23.0,20.0,23.0,26.0,14.0,14.0,15.0,5.0,6.0,6.0,6.0,10.0,7.0,4.0,3.0,4.0,1.0,1.0,6.0 F81633,29.0,30.0,33.0,45.0,33.0,26.0,21.0,37.0,21.0,27.0,25.0,16.0,29.0,26.0,27.0,25.0,22.0,22.0,23.0,13.0,17.0,12.0,23.0,16.0,22.0,28.0,30.0,37.0,33.0,34.0,31.0,49.0,36.0,41.0,47.0,41.0,41.0,48.0,45.0,41.0,29.0,31.0,29.0,33.0,31.0,20.0,24.0,27.0,22.0,26.0,27.0,32.0,25.0,34.0,21.0,32.0,35.0,26.0,36.0,38.0,30.0,32.0,32.0,31.0,37.0,13.0,34.0,31.0,31.0,32.0,18.0,27.0,29.0,17.0,22.0,19.0,24.0,24.0,30.0,24.0,19.0,13.0,19.0,12.0,9.0,10.0,10.0,7.0,12.0,9.0,9.0,8.0,2.0,4.0,2.0,3.0 F81636,93.0,143.0,112.0,101.0,111.0,115.0,114.0,135.0,133.0,121.0,128.0,131.0,147.0,129.0,124.0,137.0,116.0,99.0,100.0,79.0,59.0,82.0,67.0,74.0,87.0,90.0,108.0,134.0,117.0,137.0,163.0,144.0,154.0,185.0,165.0,177.0,189.0,184.0,142.0,165.0,166.0,153.0,182.0,177.0,158.0,172.0,168.0,140.0,117.0,132.0,123.0,100.0,130.0,104.0,99.0,103.0,108.0,121.0,96.0,114.0,112.0,70.0,82.0,77.0,77.0,55.0,53.0,62.0,69.0,58.0,62.0,52.0,46.0,43.0,57.0,59.0,68.0,55.0,57.0,40.0,50.0,35.0,33.0,22.0,26.0,17.0,27.0,14.0,8.0,16.0,6.0,8.0,5.0,3.0,10.0,10.0 F81679,36.0,43.0,38.0,43.0,43.0,37.0,53.0,38.0,42.0,45.0,50.0,44.0,66.0,45.0,68.0,54.0,48.0,49.0,43.0,41.0,27.0,32.0,32.0,49.0,43.0,47.0,58.0,48.0,53.0,52.0,64.0,56.0,63.0,61.0,65.0,63.0,70.0,53.0,57.0,63.0,62.0,54.0,64.0,66.0,66.0,58.0,65.0,39.0,53.0,45.0,47.0,53.0,47.0,52.0,56.0,53.0,61.0,46.0,51.0,44.0,46.0,53.0,34.0,32.0,40.0,37.0,43.0,24.0,21.0,28.0,31.0,20.0,21.0,23.0,26.0,24.0,28.0,27.0,37.0,25.0,26.0,21.0,24.0,17.0,12.0,11.0,10.0,10.0,13.0,14.0,11.0,11.0,14.0,9.0,5.0,15.0 F81681,31.0,50.0,52.0,50.0,47.0,43.0,47.0,58.0,62.0,70.0,50.0,73.0,70.0,83.0,87.0,86.0,78.0,65.0,65.0,68.0,66.0,51.0,47.0,47.0,61.0,47.0,64.0,81.0,66.0,62.0,68.0,58.0,55.0,66.0,52.0,73.0,73.0,78.0,59.0,60.0,82.0,61.0,61.0,62.0,81.0,74.0,63.0,66.0,67.0,81.0,70.0,68.0,84.0,103.0,108.0,96.0,98.0,121.0,132.0,108.0,120.0,147.0,137.0,144.0,150.0,153.0,161.0,156.0,145.0,140.0,124.0,137.0,157.0,145.0,157.0,162.0,156.0,176.0,197.0,128.0,132.0,128.0,96.0,71.0,78.0,68.0,67.0,52.0,59.0,44.0,31.0,30.0,31.0,15.0,16.0,44.0 F81716,60.0,63.0,67.0,59.0,80.0,78.0,77.0,70.0,71.0,79.0,70.0,54.0,70.0,83.0,60.0,80.0,65.0,65.0,61.0,50.0,53.0,41.0,57.0,55.0,62.0,83.0,66.0,76.0,78.0,71.0,103.0,94.0,82.0,81.0,106.0,83.0,92.0,70.0,81.0,86.0,95.0,78.0,76.0,95.0,81.0,81.0,81.0,72.0,63.0,60.0,60.0,61.0,64.0,65.0,65.0,64.0,62.0,64.0,64.0,71.0,68.0,55.0,50.0,52.0,55.0,41.0,38.0,29.0,29.0,25.0,39.0,43.0,41.0,36.0,31.0,42.0,36.0,49.0,26.0,23.0,35.0,24.0,22.0,19.0,20.0,20.0,14.0,16.0,9.0,10.0,8.0,3.0,10.0,7.0,4.0,11.0 F81741,39.0,50.0,52.0,43.0,37.0,43.0,50.0,52.0,58.0,57.0,47.0,42.0,59.0,62.0,56.0,50.0,58.0,51.0,39.0,54.0,44.0,42.0,44.0,37.0,47.0,54.0,56.0,61.0,65.0,58.0,67.0,63.0,67.0,62.0,50.0,59.0,70.0,58.0,50.0,39.0,49.0,44.0,54.0,48.0,49.0,61.0,43.0,49.0,50.0,38.0,50.0,63.0,53.0,59.0,72.0,77.0,71.0,98.0,72.0,106.0,75.0,90.0,75.0,91.0,99.0,83.0,88.0,92.0,70.0,74.0,91.0,84.0,86.0,77.0,66.0,105.0,81.0,89.0,69.0,74.0,75.0,72.0,75.0,57.0,45.0,46.0,37.0,23.0,25.0,28.0,19.0,24.0,21.0,14.0,4.0,31.0 F81746,14.0,19.0,16.0,21.0,16.0,25.0,23.0,31.0,28.0,40.0,30.0,26.0,30.0,45.0,31.0,29.0,42.0,27.0,26.0,30.0,22.0,20.0,11.0,15.0,18.0,18.0,23.0,28.0,27.0,25.0,31.0,35.0,28.0,33.0,39.0,37.0,36.0,38.0,32.0,32.0,30.0,23.0,32.0,30.0,35.0,29.0,33.0,29.0,29.0,34.0,27.0,22.0,21.0,21.0,31.0,16.0,22.0,25.0,23.0,15.0,18.0,18.0,17.0,6.0,13.0,12.0,6.0,20.0,9.0,11.0,8.0,8.0,8.0,7.0,6.0,5.0,4.0,5.0,5.0,4.0,7.0,2.0,2.0,2.0,,1.0,4.0,2.0,2.0,2.0,,,1.0,1.0,1.0,1.0 F81757,27.0,20.0,24.0,25.0,30.0,38.0,38.0,39.0,37.0,42.0,32.0,33.0,52.0,46.0,32.0,43.0,41.0,29.0,29.0,21.0,34.0,29.0,16.0,20.0,20.0,30.0,22.0,16.0,41.0,27.0,31.0,40.0,39.0,43.0,41.0,51.0,47.0,52.0,39.0,61.0,64.0,42.0,47.0,37.0,45.0,51.0,40.0,40.0,41.0,43.0,45.0,50.0,61.0,50.0,41.0,53.0,45.0,45.0,58.0,58.0,73.0,62.0,54.0,48.0,40.0,49.0,41.0,42.0,43.0,50.0,50.0,48.0,51.0,33.0,42.0,41.0,46.0,54.0,39.0,29.0,30.0,29.0,17.0,20.0,16.0,18.0,19.0,17.0,17.0,9.0,18.0,11.0,5.0,9.0,3.0,9.0 Y00774,8.0,22.0,18.0,13.0,26.0,14.0,18.0,21.0,15.0,19.0,27.0,28.0,22.0,34.0,32.0,27.0,28.0,19.0,25.0,25.0,18.0,26.0,22.0,23.0,13.0,20.0,29.0,28.0,27.0,20.0,31.0,25.0,29.0,24.0,35.0,26.0,27.0,27.0,34.0,30.0,30.0,28.0,41.0,33.0,31.0,38.0,28.0,32.0,32.0,30.0,27.0,32.0,30.0,28.0,32.0,23.0,34.0,29.0,45.0,45.0,39.0,35.0,29.0,30.0,29.0,32.0,28.0,32.0,34.0,34.0,33.0,29.0,32.0,33.0,41.0,23.0,35.0,38.0,28.0,29.0,38.0,24.0,24.0,14.0,11.0,16.0,23.0,9.0,8.0,13.0,3.0,8.0,8.0,3.0,2.0,8.0 Y01794,62.0,54.0,67.0,74.0,74.0,83.0,74.0,84.0,86.0,93.0,92.0,107.0,102.0,94.0,104.0,111.0,119.0,109.0,97.0,61.0,83.0,64.0,62.0,84.0,80.0,87.0,76.0,77.0,83.0,85.0,95.0,77.0,98.0,82.0,100.0,94.0,104.0,103.0,91.0,96.0,113.0,107.0,108.0,117.0,110.0,103.0,96.0,93.0,95.0,102.0,87.0,96.0,96.0,97.0,95.0,97.0,92.0,75.0,90.0,92.0,110.0,124.0,108.0,99.0,81.0,71.0,77.0,81.0,81.0,65.0,95.0,77.0,74.0,76.0,72.0,77.0,64.0,49.0,79.0,44.0,56.0,44.0,40.0,36.0,42.0,37.0,35.0,34.0,23.0,17.0,30.0,19.0,15.0,12.0,9.0,26.0 Y02646,63.0,74.0,93.0,74.0,69.0,88.0,81.0,92.0,91.0,95.0,84.0,78.0,68.0,82.0,67.0,61.0,60.0,54.0,53.0,40.0,31.0,30.0,47.0,36.0,52.0,68.0,77.0,82.0,83.0,106.0,106.0,158.0,158.0,139.0,135.0,119.0,169.0,119.0,134.0,144.0,114.0,141.0,114.0,98.0,92.0,85.0,74.0,74.0,67.0,40.0,57.0,45.0,62.0,51.0,55.0,46.0,41.0,40.0,37.0,38.0,41.0,42.0,45.0,26.0,33.0,18.0,17.0,23.0,20.0,16.0,15.0,16.0,15.0,8.0,10.0,10.0,14.0,17.0,20.0,9.0,12.0,6.0,3.0,10.0,5.0,,3.0,3.0,2.0,2.0,1.0,,1.0,4.0,,1.0 Y06499,,,,,,1.0,1.0,,,,,,,,1.0,,,,1.0,,,,,2.0,,,,1.0,,,1.0,3.0,3.0,1.0,,2.0,,2.0,2.0,,,1.0,,1.0,1.0,,1.0,1.0,,1.0,1.0,2.0,1.0,,,,,1.0,1.0,1.0,2.0,,,,,1.0,,1.0,,,1.0,1.0,,,,1.0,,,1.0,,,,,,,,,,,,,,,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 L83002,50.0,72.0,67.0,81.0,83.0,84.0,78.0,71.0,93.0,102.0,82.0,67.0,81.0,102.0,86.0,83.0,112.0,78.0,85.0,75.0,73.0,61.0,60.0,67.0,80.0,61.0,74.0,90.0,114.0,117.0,105.0,107.0,102.0,112.0,103.0,111.0,96.0,96.0,92.0,120.0,83.0,101.0,106.0,79.0,100.0,94.0,93.0,86.0,98.0,106.0,105.0,91.0,151.0,121.0,144.0,127.0,120.0,128.0,143.0,150.0,125.0,134.0,136.0,135.0,133.0,121.0,153.0,127.0,122.0,123.0,114.0,112.0,141.0,137.0,123.0,124.0,130.0,127.0,147.0,102.0,104.0,98.0,92.0,73.0,73.0,65.0,78.0,79.0,55.0,58.0,42.0,30.0,32.0,17.0,25.0,59.0 L83003,46.0,42.0,39.0,38.0,37.0,54.0,44.0,62.0,63.0,61.0,73.0,60.0,69.0,70.0,72.0,66.0,61.0,73.0,53.0,61.0,60.0,50.0,47.0,42.0,71.0,61.0,81.0,85.0,88.0,78.0,79.0,88.0,99.0,70.0,83.0,77.0,81.0,90.0,71.0,68.0,76.0,71.0,58.0,67.0,70.0,66.0,64.0,59.0,74.0,73.0,61.0,72.0,69.0,80.0,74.0,89.0,83.0,83.0,83.0,90.0,99.0,74.0,69.0,76.0,91.0,67.0,69.0,73.0,66.0,58.0,58.0,58.0,62.0,46.0,46.0,44.0,46.0,54.0,57.0,35.0,33.0,47.0,34.0,42.0,30.0,35.0,26.0,17.0,17.0,22.0,10.0,4.0,5.0,17.0,7.0,13.0 L83004,28.0,52.0,66.0,55.0,53.0,69.0,62.0,60.0,65.0,58.0,65.0,67.0,64.0,61.0,65.0,76.0,70.0,64.0,61.0,50.0,40.0,50.0,45.0,57.0,55.0,57.0,58.0,64.0,70.0,56.0,64.0,74.0,63.0,77.0,86.0,92.0,82.0,87.0,74.0,79.0,60.0,65.0,76.0,74.0,58.0,77.0,76.0,51.0,63.0,69.0,77.0,70.0,73.0,75.0,60.0,89.0,100.0,84.0,105.0,84.0,89.0,85.0,93.0,83.0,90.0,80.0,78.0,72.0,83.0,60.0,60.0,65.0,66.0,69.0,58.0,69.0,71.0,72.0,88.0,57.0,53.0,41.0,53.0,41.0,39.0,37.0,29.0,27.0,22.0,28.0,19.0,17.0,26.0,14.0,12.0,29.0 L83005,41.0,41.0,45.0,51.0,47.0,51.0,66.0,63.0,73.0,76.0,60.0,67.0,74.0,76.0,87.0,57.0,68.0,88.0,75.0,76.0,67.0,70.0,64.0,69.0,64.0,66.0,81.0,71.0,62.0,75.0,67.0,85.0,75.0,79.0,73.0,81.0,79.0,93.0,81.0,86.0,87.0,94.0,82.0,88.0,78.0,76.0,79.0,91.0,74.0,88.0,80.0,93.0,104.0,100.0,100.0,109.0,124.0,115.0,129.0,126.0,141.0,139.0,143.0,140.0,137.0,141.0,123.0,129.0,106.0,141.0,129.0,131.0,143.0,97.0,110.0,97.0,128.0,129.0,100.0,104.0,97.0,77.0,77.0,75.0,65.0,78.0,42.0,41.0,45.0,36.0,34.0,22.0,27.0,22.0,17.0,49.0 L83006,119.0,122.0,138.0,142.0,155.0,143.0,140.0,165.0,166.0,194.0,208.0,204.0,238.0,225.0,202.0,222.0,194.0,229.0,209.0,186.0,194.0,197.0,178.0,168.0,173.0,177.0,163.0,189.0,197.0,194.0,202.0,216.0,222.0,245.0,206.0,244.0,222.0,234.0,235.0,234.0,204.0,242.0,213.0,237.0,219.0,220.0,189.0,192.0,189.0,208.0,210.0,194.0,229.0,252.0,209.0,204.0,221.0,233.0,238.0,246.0,242.0,233.0,238.0,241.0,218.0,211.0,220.0,183.0,199.0,160.0,178.0,163.0,156.0,148.0,159.0,136.0,154.0,153.0,159.0,174.0,120.0,135.0,117.0,95.0,83.0,92.0,80.0,56.0,63.0,66.0,37.0,29.0,33.0,29.0,21.0,47.0 L83007,28.0,32.0,33.0,33.0,23.0,34.0,38.0,38.0,36.0,33.0,33.0,32.0,37.0,51.0,40.0,49.0,42.0,48.0,24.0,43.0,25.0,21.0,20.0,34.0,16.0,31.0,28.0,38.0,35.0,28.0,48.0,41.0,36.0,33.0,36.0,50.0,43.0,45.0,44.0,35.0,42.0,43.0,50.0,46.0,41.0,46.0,50.0,27.0,38.0,49.0,52.0,58.0,53.0,70.0,54.0,62.0,77.0,64.0,70.0,79.0,91.0,71.0,95.0,80.0,86.0,87.0,84.0,88.0,87.0,77.0,74.0,93.0,81.0,81.0,86.0,79.0,98.0,86.0,111.0,79.0,81.0,77.0,73.0,52.0,59.0,45.0,41.0,33.0,40.0,36.0,31.0,19.0,22.0,17.0,18.0,43.0 L83008,108.0,138.0,135.0,145.0,120.0,151.0,153.0,143.0,147.0,167.0,164.0,175.0,173.0,192.0,158.0,188.0,179.0,151.0,156.0,143.0,142.0,136.0,130.0,126.0,148.0,173.0,220.0,239.0,252.0,283.0,302.0,259.0,287.0,258.0,250.0,213.0,223.0,216.0,236.0,272.0,210.0,230.0,197.0,207.0,204.0,195.0,174.0,169.0,168.0,174.0,185.0,159.0,176.0,170.0,187.0,176.0,165.0,167.0,170.0,153.0,164.0,165.0,181.0,160.0,133.0,144.0,109.0,136.0,152.0,128.0,113.0,132.0,138.0,115.0,110.0,136.0,124.0,132.0,132.0,100.0,85.0,75.0,62.0,60.0,59.0,54.0,59.0,50.0,40.0,37.0,35.0,21.0,14.0,15.0,14.0,54.0 L83010,21.0,16.0,20.0,31.0,24.0,38.0,34.0,28.0,37.0,38.0,42.0,47.0,38.0,55.0,45.0,42.0,37.0,42.0,39.0,34.0,31.0,32.0,32.0,33.0,36.0,26.0,31.0,28.0,39.0,29.0,35.0,33.0,41.0,34.0,39.0,35.0,41.0,40.0,40.0,47.0,41.0,33.0,42.0,48.0,39.0,49.0,46.0,46.0,58.0,42.0,46.0,47.0,57.0,45.0,58.0,73.0,69.0,47.0,69.0,84.0,70.0,70.0,72.0,56.0,58.0,50.0,52.0,38.0,45.0,48.0,48.0,58.0,51.0,41.0,32.0,43.0,39.0,43.0,48.0,37.0,38.0,35.0,39.0,20.0,24.0,17.0,21.0,22.0,10.0,8.0,8.0,12.0,5.0,7.0,4.0,14.0 L83011,13.0,17.0,11.0,23.0,33.0,15.0,30.0,24.0,39.0,31.0,32.0,37.0,29.0,32.0,31.0,33.0,34.0,46.0,47.0,27.0,27.0,24.0,39.0,23.0,21.0,23.0,20.0,23.0,19.0,28.0,33.0,28.0,29.0,37.0,31.0,25.0,39.0,35.0,26.0,34.0,21.0,41.0,38.0,35.0,44.0,42.0,43.0,43.0,43.0,42.0,46.0,51.0,47.0,59.0,53.0,75.0,50.0,57.0,68.0,68.0,61.0,75.0,65.0,61.0,69.0,72.0,80.0,89.0,73.0,80.0,78.0,75.0,89.0,95.0,69.0,76.0,86.0,107.0,102.0,87.0,78.0,82.0,69.0,44.0,66.0,52.0,46.0,30.0,45.0,35.0,24.0,22.0,33.0,17.0,15.0,36.0 L83012,9.0,11.0,9.0,5.0,13.0,11.0,11.0,13.0,16.0,16.0,11.0,22.0,10.0,12.0,12.0,15.0,9.0,10.0,16.0,20.0,22.0,14.0,13.0,17.0,18.0,6.0,15.0,10.0,11.0,11.0,11.0,12.0,15.0,10.0,16.0,16.0,7.0,20.0,15.0,8.0,12.0,16.0,17.0,14.0,14.0,18.0,21.0,16.0,14.0,19.0,14.0,21.0,23.0,32.0,28.0,23.0,25.0,23.0,31.0,29.0,23.0,37.0,28.0,26.0,35.0,32.0,20.0,26.0,25.0,19.0,33.0,19.0,36.0,22.0,18.0,27.0,22.0,24.0,19.0,18.0,14.0,15.0,9.0,12.0,12.0,6.0,10.0,11.0,8.0,6.0,4.0,1.0,2.0,1.0,2.0,1.0 L83013,48.0,53.0,61.0,68.0,54.0,55.0,87.0,74.0,77.0,78.0,83.0,81.0,98.0,96.0,88.0,88.0,85.0,74.0,83.0,62.0,52.0,59.0,60.0,71.0,72.0,89.0,102.0,85.0,91.0,80.0,101.0,72.0,99.0,117.0,105.0,124.0,93.0,91.0,109.0,106.0,89.0,93.0,81.0,104.0,102.0,91.0,78.0,85.0,100.0,95.0,109.0,82.0,92.0,106.0,102.0,110.0,117.0,104.0,102.0,112.0,89.0,120.0,119.0,97.0,99.0,94.0,111.0,77.0,97.0,90.0,87.0,93.0,94.0,87.0,97.0,81.0,89.0,103.0,103.0,70.0,75.0,91.0,73.0,55.0,51.0,52.0,62.0,51.0,38.0,33.0,40.0,27.0,29.0,29.0,23.0,43.0 L83014,55.0,55.0,64.0,61.0,54.0,73.0,79.0,92.0,79.0,92.0,101.0,124.0,102.0,114.0,117.0,113.0,104.0,115.0,112.0,73.0,84.0,82.0,85.0,73.0,90.0,80.0,89.0,91.0,73.0,82.0,86.0,85.0,93.0,121.0,98.0,100.0,112.0,107.0,98.0,130.0,117.0,102.0,96.0,119.0,113.0,110.0,107.0,107.0,96.0,121.0,112.0,108.0,132.0,133.0,146.0,145.0,167.0,147.0,138.0,169.0,175.0,187.0,177.0,163.0,172.0,136.0,173.0,171.0,139.0,135.0,151.0,158.0,137.0,157.0,153.0,143.0,147.0,194.0,200.0,129.0,120.0,140.0,117.0,94.0,83.0,69.0,78.0,62.0,63.0,54.0,48.0,33.0,36.0,26.0,17.0,40.0 L83015,42.0,42.0,43.0,48.0,47.0,49.0,57.0,54.0,55.0,56.0,55.0,46.0,80.0,55.0,63.0,55.0,59.0,57.0,56.0,50.0,41.0,52.0,41.0,46.0,58.0,60.0,53.0,55.0,49.0,56.0,57.0,64.0,61.0,70.0,64.0,67.0,56.0,77.0,66.0,54.0,55.0,47.0,42.0,45.0,61.0,44.0,50.0,41.0,37.0,54.0,35.0,69.0,39.0,45.0,49.0,44.0,66.0,51.0,52.0,55.0,57.0,56.0,33.0,33.0,47.0,40.0,35.0,36.0,36.0,29.0,26.0,30.0,41.0,38.0,23.0,36.0,32.0,49.0,43.0,31.0,36.0,22.0,17.0,10.0,4.0,12.0,17.0,11.0,6.0,14.0,3.0,9.0,4.0,,3.0,6.0 L83016,78.0,68.0,82.0,79.0,91.0,72.0,86.0,102.0,102.0,111.0,117.0,89.0,120.0,102.0,93.0,121.0,97.0,110.0,720.0,1578.0,1685.0,1637.0,1219.0,958.0,824.0,368.0,347.0,347.0,259.0,259.0,197.0,188.0,184.0,176.0,171.0,173.0,164.0,162.0,171.0,156.0,150.0,151.0,140.0,147.0,135.0,156.0,143.0,102.0,115.0,105.0,136.0,113.0,111.0,122.0,108.0,108.0,144.0,107.0,156.0,134.0,145.0,138.0,118.0,115.0,118.0,118.0,126.0,107.0,109.0,100.0,108.0,117.0,106.0,90.0,107.0,99.0,100.0,109.0,125.0,91.0,84.0,81.0,80.0,58.0,68.0,66.0,60.0,54.0,52.0,27.0,37.0,38.0,28.0,18.0,15.0,49.0 L83019,24.0,27.0,32.0,36.0,41.0,41.0,50.0,50.0,53.0,51.0,64.0,58.0,44.0,68.0,54.0,49.0,54.0,64.0,64.0,84.0,94.0,90.0,63.0,48.0,49.0,44.0,60.0,68.0,52.0,57.0,62.0,58.0,65.0,56.0,53.0,57.0,55.0,63.0,63.0,77.0,64.0,52.0,74.0,66.0,62.0,59.0,66.0,65.0,59.0,62.0,58.0,58.0,59.0,57.0,59.0,65.0,56.0,54.0,64.0,55.0,56.0,48.0,46.0,57.0,59.0,59.0,67.0,74.0,83.0,89.0,82.0,74.0,69.0,82.0,74.0,68.0,62.0,60.0,78.0,55.0,55.0,44.0,41.0,22.0,24.0,23.0,13.0,13.0,14.0,4.0,5.0,8.0,3.0,5.0,3.0,3.0 L83020,34.0,41.0,40.0,52.0,49.0,58.0,50.0,62.0,61.0,56.0,75.0,57.0,69.0,68.0,57.0,55.0,55.0,52.0,57.0,57.0,56.0,40.0,64.0,66.0,45.0,54.0,55.0,55.0,42.0,58.0,62.0,62.0,66.0,65.0,74.0,67.0,67.0,64.0,66.0,61.0,73.0,70.0,78.0,61.0,68.0,68.0,62.0,59.0,64.0,60.0,77.0,72.0,78.0,97.0,91.0,102.0,78.0,102.0,98.0,91.0,127.0,108.0,90.0,103.0,81.0,93.0,95.0,86.0,104.0,99.0,95.0,97.0,110.0,79.0,101.0,107.0,102.0,125.0,110.0,84.0,84.0,77.0,74.0,74.0,56.0,51.0,54.0,37.0,42.0,26.0,38.0,24.0,18.0,15.0,13.0,40.0 L83021,29.0,27.0,32.0,42.0,22.0,41.0,50.0,46.0,44.0,62.0,67.0,51.0,62.0,62.0,68.0,50.0,47.0,55.0,48.0,46.0,40.0,44.0,46.0,42.0,45.0,37.0,41.0,43.0,37.0,38.0,43.0,38.0,41.0,66.0,46.0,66.0,63.0,54.0,57.0,57.0,60.0,65.0,66.0,74.0,70.0,58.0,63.0,45.0,58.0,56.0,67.0,60.0,68.0,72.0,82.0,70.0,78.0,79.0,96.0,74.0,77.0,84.0,75.0,68.0,69.0,68.0,58.0,65.0,69.0,66.0,69.0,75.0,66.0,66.0,72.0,81.0,82.0,106.0,82.0,83.0,70.0,65.0,65.0,50.0,45.0,48.0,45.0,24.0,31.0,28.0,32.0,27.0,14.0,9.0,5.0,31.0 L83023,10.0,22.0,22.0,22.0,28.0,19.0,23.0,20.0,33.0,28.0,23.0,34.0,29.0,36.0,36.0,19.0,32.0,27.0,41.0,18.0,23.0,30.0,19.0,18.0,23.0,30.0,27.0,19.0,20.0,27.0,24.0,36.0,19.0,26.0,29.0,26.0,26.0,26.0,29.0,36.0,31.0,38.0,20.0,26.0,28.0,20.0,30.0,23.0,28.0,31.0,31.0,45.0,41.0,46.0,53.0,56.0,44.0,46.0,47.0,48.0,53.0,76.0,54.0,53.0,56.0,43.0,57.0,42.0,53.0,46.0,42.0,34.0,31.0,32.0,34.0,42.0,34.0,50.0,44.0,29.0,37.0,25.0,23.0,25.0,15.0,22.0,10.0,14.0,9.0,17.0,6.0,8.0,13.0,5.0,2.0,14.0 L83024,23.0,30.0,28.0,31.0,26.0,33.0,37.0,47.0,36.0,45.0,42.0,43.0,40.0,44.0,37.0,43.0,39.0,49.0,39.0,35.0,40.0,45.0,61.0,56.0,61.0,73.0,78.0,66.0,68.0,53.0,61.0,84.0,80.0,49.0,65.0,80.0,69.0,56.0,66.0,65.0,62.0,79.0,53.0,73.0,67.0,69.0,51.0,61.0,45.0,50.0,44.0,53.0,51.0,57.0,57.0,50.0,60.0,60.0,66.0,62.0,44.0,38.0,50.0,44.0,46.0,51.0,41.0,55.0,35.0,47.0,46.0,44.0,49.0,50.0,33.0,44.0,44.0,41.0,36.0,32.0,27.0,30.0,23.0,23.0,15.0,17.0,17.0,14.0,19.0,14.0,12.0,7.0,3.0,11.0,4.0,27.0 L83025,20.0,29.0,23.0,20.0,22.0,35.0,27.0,28.0,31.0,20.0,35.0,27.0,29.0,43.0,59.0,44.0,53.0,37.0,50.0,29.0,23.0,32.0,30.0,28.0,39.0,30.0,24.0,25.0,17.0,34.0,31.0,42.0,36.0,22.0,28.0,44.0,35.0,30.0,38.0,27.0,24.0,26.0,40.0,38.0,29.0,42.0,44.0,39.0,33.0,41.0,42.0,37.0,47.0,74.0,62.0,57.0,55.0,65.0,76.0,81.0,61.0,81.0,62.0,68.0,69.0,60.0,77.0,68.0,61.0,64.0,67.0,58.0,62.0,61.0,57.0,59.0,53.0,62.0,67.0,48.0,42.0,34.0,35.0,28.0,29.0,25.0,25.0,13.0,18.0,8.0,16.0,12.0,11.0,3.0,7.0,10.0 L83026,19.0,23.0,15.0,25.0,23.0,16.0,16.0,24.0,14.0,31.0,18.0,28.0,31.0,31.0,30.0,29.0,27.0,23.0,19.0,19.0,20.0,12.0,19.0,13.0,19.0,21.0,19.0,16.0,23.0,20.0,24.0,20.0,15.0,40.0,30.0,32.0,28.0,18.0,25.0,29.0,26.0,32.0,23.0,23.0,31.0,20.0,27.0,21.0,24.0,28.0,42.0,21.0,42.0,40.0,41.0,37.0,52.0,42.0,46.0,33.0,50.0,53.0,49.0,42.0,44.0,48.0,42.0,43.0,40.0,42.0,39.0,42.0,30.0,35.0,31.0,47.0,47.0,44.0,49.0,33.0,28.0,21.0,18.0,22.0,20.0,18.0,12.0,11.0,12.0,14.0,11.0,4.0,9.0,7.0,4.0,7.0 L83027,20.0,19.0,26.0,23.0,37.0,23.0,32.0,49.0,40.0,52.0,42.0,50.0,40.0,36.0,36.0,40.0,31.0,42.0,27.0,27.0,49.0,50.0,53.0,50.0,49.0,44.0,47.0,47.0,50.0,50.0,61.0,58.0,52.0,64.0,70.0,52.0,43.0,42.0,45.0,52.0,47.0,50.0,54.0,45.0,50.0,48.0,42.0,39.0,29.0,52.0,42.0,46.0,38.0,42.0,54.0,48.0,46.0,59.0,38.0,58.0,51.0,46.0,54.0,52.0,40.0,50.0,44.0,29.0,43.0,42.0,32.0,41.0,34.0,22.0,33.0,29.0,31.0,46.0,29.0,17.0,19.0,23.0,18.0,20.0,14.0,18.0,18.0,16.0,8.0,5.0,8.0,3.0,9.0,3.0,3.0,10.0 L83028,54.0,57.0,50.0,72.0,64.0,65.0,55.0,82.0,75.0,80.0,87.0,68.0,74.0,70.0,75.0,69.0,62.0,80.0,80.0,62.0,54.0,81.0,55.0,59.0,54.0,64.0,82.0,68.0,56.0,71.0,85.0,82.0,87.0,89.0,76.0,74.0,90.0,102.0,88.0,81.0,74.0,80.0,76.0,77.0,73.0,77.0,71.0,61.0,67.0,63.0,58.0,83.0,65.0,76.0,86.0,72.0,62.0,81.0,93.0,76.0,81.0,91.0,87.0,77.0,65.0,72.0,80.0,76.0,63.0,58.0,56.0,68.0,47.0,52.0,55.0,42.0,47.0,52.0,50.0,43.0,43.0,31.0,29.0,18.0,28.0,19.0,17.0,21.0,16.0,11.0,12.0,11.0,8.0,3.0,5.0,8.0 L83029,24.0,30.0,37.0,34.0,34.0,43.0,47.0,39.0,53.0,57.0,48.0,46.0,44.0,49.0,56.0,54.0,57.0,51.0,50.0,54.0,27.0,56.0,42.0,38.0,46.0,43.0,54.0,62.0,64.0,56.0,59.0,54.0,65.0,59.0,69.0,62.0,41.0,56.0,56.0,61.0,55.0,63.0,47.0,58.0,61.0,62.0,55.0,62.0,52.0,52.0,57.0,48.0,55.0,53.0,61.0,61.0,59.0,58.0,51.0,64.0,57.0,61.0,69.0,54.0,48.0,46.0,43.0,52.0,38.0,46.0,42.0,40.0,40.0,34.0,46.0,46.0,43.0,42.0,46.0,24.0,43.0,29.0,31.0,29.0,27.0,21.0,21.0,17.0,20.0,10.0,11.0,5.0,3.0,6.0,8.0,17.0 L83030,32.0,48.0,45.0,32.0,45.0,46.0,39.0,39.0,41.0,52.0,55.0,33.0,39.0,39.0,43.0,38.0,36.0,49.0,58.0,80.0,96.0,88.0,99.0,91.0,85.0,112.0,108.0,91.0,98.0,113.0,102.0,92.0,78.0,98.0,74.0,70.0,68.0,73.0,79.0,59.0,52.0,69.0,70.0,51.0,63.0,79.0,56.0,50.0,44.0,39.0,49.0,52.0,43.0,40.0,62.0,53.0,57.0,41.0,59.0,44.0,50.0,53.0,51.0,45.0,52.0,49.0,36.0,38.0,51.0,50.0,38.0,29.0,33.0,31.0,31.0,29.0,24.0,25.0,35.0,24.0,19.0,24.0,19.0,17.0,16.0,11.0,20.0,11.0,13.0,14.0,10.0,11.0,6.0,5.0,5.0,23.0 L83031,32.0,52.0,38.0,39.0,51.0,35.0,65.0,42.0,53.0,64.0,61.0,69.0,66.0,62.0,69.0,64.0,62.0,61.0,53.0,42.0,42.0,49.0,49.0,60.0,50.0,48.0,53.0,49.0,45.0,57.0,57.0,53.0,59.0,70.0,74.0,68.0,74.0,86.0,70.0,49.0,63.0,67.0,50.0,71.0,70.0,71.0,74.0,77.0,66.0,53.0,68.0,72.0,91.0,101.0,106.0,85.0,86.0,102.0,103.0,123.0,128.0,109.0,88.0,88.0,110.0,111.0,93.0,105.0,96.0,85.0,90.0,83.0,86.0,78.0,78.0,86.0,90.0,113.0,93.0,83.0,69.0,65.0,61.0,60.0,36.0,41.0,36.0,40.0,29.0,29.0,21.0,21.0,17.0,13.0,12.0,32.0 L83034,28.0,28.0,41.0,46.0,38.0,55.0,63.0,40.0,38.0,46.0,62.0,56.0,48.0,55.0,57.0,54.0,56.0,57.0,42.0,42.0,43.0,40.0,55.0,53.0,44.0,48.0,55.0,60.0,45.0,58.0,57.0,74.0,60.0,77.0,59.0,57.0,68.0,78.0,72.0,57.0,65.0,68.0,80.0,39.0,66.0,56.0,57.0,52.0,50.0,54.0,55.0,68.0,79.0,74.0,76.0,66.0,79.0,83.0,82.0,72.0,72.0,72.0,86.0,69.0,66.0,57.0,58.0,62.0,52.0,57.0,46.0,60.0,57.0,57.0,53.0,46.0,48.0,59.0,59.0,52.0,61.0,34.0,37.0,45.0,24.0,36.0,30.0,24.0,15.0,21.0,23.0,14.0,16.0,9.0,10.0,26.0 L83035,55.0,57.0,77.0,73.0,70.0,77.0,88.0,92.0,83.0,91.0,83.0,75.0,94.0,87.0,95.0,115.0,91.0,100.0,97.0,70.0,85.0,73.0,76.0,56.0,85.0,77.0,86.0,81.0,79.0,96.0,103.0,99.0,89.0,94.0,101.0,94.0,110.0,102.0,83.0,104.0,105.0,91.0,96.0,102.0,121.0,91.0,103.0,78.0,92.0,90.0,102.0,102.0,122.0,119.0,138.0,120.0,128.0,116.0,139.0,131.0,118.0,141.0,145.0,139.0,113.0,102.0,124.0,103.0,125.0,106.0,96.0,105.0,105.0,98.0,83.0,78.0,102.0,112.0,100.0,83.0,77.0,68.0,78.0,57.0,50.0,44.0,31.0,34.0,43.0,30.0,19.0,31.0,11.0,19.0,14.0,42.0 L83036,45.0,52.0,46.0,58.0,51.0,48.0,67.0,55.0,66.0,68.0,57.0,49.0,81.0,63.0,62.0,67.0,67.0,57.0,53.0,58.0,45.0,46.0,50.0,63.0,50.0,43.0,42.0,46.0,56.0,69.0,69.0,60.0,82.0,83.0,74.0,86.0,67.0,89.0,80.0,72.0,76.0,62.0,75.0,89.0,86.0,85.0,64.0,81.0,63.0,92.0,77.0,74.0,57.0,80.0,81.0,82.0,84.0,82.0,85.0,69.0,89.0,72.0,64.0,77.0,76.0,72.0,100.0,74.0,71.0,75.0,69.0,79.0,70.0,83.0,79.0,69.0,77.0,82.0,91.0,88.0,78.0,60.0,61.0,59.0,62.0,42.0,29.0,41.0,31.0,31.0,26.0,18.0,17.0,16.0,15.0,29.0 L83038,34.0,37.0,43.0,50.0,68.0,49.0,50.0,75.0,65.0,62.0,73.0,67.0,70.0,64.0,58.0,88.0,76.0,102.0,84.0,58.0,58.0,55.0,72.0,50.0,52.0,67.0,65.0,59.0,60.0,59.0,54.0,74.0,73.0,61.0,66.0,65.0,72.0,68.0,90.0,80.0,68.0,76.0,69.0,68.0,83.0,65.0,65.0,60.0,50.0,78.0,77.0,84.0,102.0,99.0,107.0,113.0,114.0,132.0,124.0,140.0,138.0,114.0,121.0,124.0,119.0,129.0,101.0,97.0,91.0,101.0,122.0,109.0,92.0,95.0,92.0,113.0,101.0,110.0,114.0,86.0,93.0,57.0,72.0,42.0,36.0,40.0,33.0,50.0,32.0,17.0,20.0,19.0,18.0,13.0,7.0,27.0 L83039,24.0,41.0,22.0,32.0,28.0,37.0,44.0,39.0,32.0,34.0,44.0,40.0,40.0,49.0,29.0,38.0,44.0,43.0,27.0,27.0,32.0,15.0,21.0,28.0,30.0,29.0,42.0,37.0,49.0,39.0,42.0,30.0,41.0,47.0,50.0,48.0,46.0,47.0,42.0,37.0,45.0,46.0,38.0,42.0,34.0,36.0,36.0,28.0,25.0,27.0,38.0,35.0,21.0,29.0,34.0,36.0,46.0,32.0,41.0,38.0,35.0,37.0,34.0,35.0,30.0,44.0,32.0,34.0,23.0,26.0,23.0,22.0,35.0,21.0,20.0,21.0,21.0,22.0,25.0,22.0,14.0,15.0,16.0,16.0,15.0,15.0,6.0,9.0,14.0,5.0,7.0,6.0,5.0,6.0,1.0, L83040,111.0,134.0,135.0,115.0,124.0,137.0,125.0,123.0,127.0,113.0,102.0,110.0,103.0,115.0,94.0,101.0,97.0,98.0,87.0,95.0,73.0,84.0,78.0,79.0,93.0,103.0,129.0,126.0,144.0,157.0,160.0,153.0,165.0,176.0,188.0,180.0,166.0,147.0,165.0,151.0,141.0,133.0,155.0,149.0,112.0,122.0,111.0,101.0,117.0,91.0,91.0,117.0,120.0,117.0,113.0,115.0,98.0,88.0,108.0,107.0,104.0,111.0,94.0,81.0,79.0,91.0,77.0,71.0,57.0,60.0,63.0,71.0,66.0,68.0,53.0,90.0,60.0,78.0,62.0,50.0,71.0,50.0,47.0,35.0,40.0,42.0,33.0,31.0,30.0,24.0,18.0,16.0,18.0,21.0,8.0,44.0 L83041,26.0,34.0,23.0,42.0,46.0,47.0,40.0,49.0,56.0,51.0,51.0,50.0,63.0,51.0,60.0,49.0,46.0,43.0,34.0,44.0,36.0,48.0,31.0,38.0,40.0,45.0,38.0,36.0,62.0,42.0,46.0,55.0,48.0,59.0,52.0,61.0,60.0,70.0,51.0,63.0,64.0,62.0,56.0,49.0,67.0,68.0,57.0,62.0,52.0,49.0,53.0,52.0,65.0,73.0,73.0,63.0,61.0,73.0,69.0,56.0,66.0,93.0,68.0,70.0,58.0,52.0,72.0,67.0,61.0,59.0,47.0,58.0,58.0,57.0,58.0,55.0,58.0,65.0,59.0,61.0,57.0,43.0,44.0,36.0,17.0,21.0,19.0,25.0,18.0,15.0,22.0,9.0,9.0,9.0,4.0,15.0 L83042,47.0,33.0,49.0,36.0,45.0,58.0,47.0,56.0,47.0,47.0,38.0,59.0,38.0,63.0,58.0,58.0,47.0,53.0,42.0,42.0,38.0,63.0,43.0,68.0,79.0,82.0,82.0,68.0,70.0,69.0,80.0,93.0,93.0,81.0,79.0,66.0,98.0,108.0,84.0,74.0,74.0,73.0,67.0,80.0,62.0,76.0,71.0,58.0,67.0,81.0,67.0,51.0,54.0,45.0,70.0,50.0,67.0,71.0,59.0,58.0,58.0,50.0,60.0,66.0,47.0,54.0,47.0,46.0,44.0,42.0,42.0,46.0,40.0,38.0,40.0,39.0,44.0,50.0,50.0,28.0,17.0,34.0,20.0,18.0,18.0,14.0,18.0,16.0,8.0,13.0,11.0,10.0,10.0,4.0,4.0,12.0 L83043,23.0,34.0,54.0,53.0,53.0,63.0,60.0,65.0,62.0,55.0,85.0,77.0,91.0,80.0,85.0,78.0,83.0,77.0,92.0,54.0,67.0,46.0,52.0,52.0,63.0,59.0,55.0,60.0,58.0,63.0,58.0,54.0,69.0,69.0,78.0,93.0,83.0,88.0,81.0,59.0,87.0,91.0,99.0,103.0,99.0,90.0,107.0,99.0,125.0,96.0,85.0,94.0,96.0,109.0,107.0,110.0,126.0,124.0,150.0,136.0,115.0,132.0,121.0,116.0,118.0,127.0,99.0,115.0,131.0,110.0,98.0,111.0,112.0,103.0,135.0,85.0,79.0,106.0,113.0,81.0,56.0,77.0,69.0,58.0,44.0,40.0,32.0,35.0,36.0,30.0,19.0,25.0,16.0,8.0,6.0,38.0 L83044,19.0,20.0,24.0,26.0,33.0,33.0,34.0,41.0,40.0,43.0,36.0,54.0,35.0,44.0,42.0,50.0,38.0,32.0,38.0,28.0,25.0,19.0,26.0,23.0,22.0,36.0,36.0,30.0,38.0,28.0,30.0,33.0,34.0,46.0,36.0,29.0,47.0,40.0,46.0,41.0,38.0,41.0,40.0,50.0,53.0,49.0,49.0,50.0,44.0,33.0,57.0,51.0,58.0,66.0,71.0,68.0,72.0,71.0,79.0,89.0,86.0,76.0,76.0,68.0,61.0,61.0,69.0,73.0,64.0,65.0,69.0,52.0,44.0,50.0,48.0,61.0,67.0,60.0,57.0,51.0,56.0,39.0,33.0,29.0,40.0,34.0,27.0,21.0,20.0,13.0,13.0,13.0,9.0,8.0,10.0,16.0 L83045,53.0,67.0,51.0,51.0,46.0,71.0,67.0,74.0,62.0,100.0,89.0,72.0,68.0,78.0,74.0,80.0,81.0,63.0,89.0,55.0,53.0,61.0,52.0,53.0,63.0,70.0,68.0,78.0,75.0,62.0,73.0,71.0,71.0,89.0,88.0,95.0,90.0,81.0,79.0,89.0,86.0,89.0,80.0,83.0,84.0,87.0,84.0,68.0,79.0,84.0,80.0,91.0,110.0,111.0,105.0,118.0,110.0,111.0,128.0,141.0,126.0,134.0,137.0,131.0,100.0,112.0,120.0,102.0,121.0,122.0,100.0,104.0,103.0,108.0,95.0,112.0,101.0,122.0,128.0,92.0,93.0,91.0,66.0,57.0,58.0,57.0,61.0,50.0,44.0,37.0,29.0,36.0,26.0,19.0,6.0,30.0 L83046,40.0,48.0,37.0,40.0,37.0,27.0,55.0,41.0,60.0,44.0,50.0,56.0,61.0,60.0,46.0,58.0,45.0,54.0,49.0,35.0,35.0,33.0,36.0,44.0,42.0,45.0,44.0,54.0,56.0,65.0,59.0,64.0,70.0,74.0,73.0,76.0,59.0,77.0,79.0,65.0,72.0,70.0,68.0,60.0,62.0,73.0,53.0,49.0,70.0,50.0,48.0,56.0,68.0,47.0,76.0,71.0,55.0,76.0,77.0,73.0,67.0,77.0,76.0,47.0,64.0,64.0,60.0,48.0,47.0,54.0,46.0,50.0,57.0,65.0,56.0,37.0,58.0,59.0,49.0,38.0,45.0,54.0,36.0,29.0,23.0,24.0,23.0,19.0,21.0,16.0,10.0,15.0,9.0,8.0,4.0,16.0 L83048,37.0,45.0,52.0,58.0,53.0,51.0,60.0,52.0,54.0,61.0,69.0,63.0,71.0,69.0,72.0,61.0,66.0,70.0,57.0,46.0,53.0,56.0,30.0,48.0,44.0,46.0,48.0,56.0,69.0,54.0,67.0,81.0,59.0,80.0,65.0,76.0,77.0,96.0,80.0,76.0,69.0,96.0,70.0,78.0,70.0,65.0,67.0,56.0,61.0,62.0,54.0,47.0,56.0,67.0,76.0,86.0,71.0,63.0,80.0,68.0,73.0,72.0,64.0,78.0,94.0,79.0,68.0,85.0,86.0,67.0,58.0,81.0,74.0,81.0,58.0,61.0,60.0,78.0,75.0,71.0,66.0,65.0,64.0,55.0,42.0,43.0,36.0,34.0,25.0,21.0,31.0,17.0,15.0,19.0,9.0,17.0 L83049,5.0,7.0,4.0,14.0,12.0,12.0,11.0,7.0,9.0,12.0,13.0,15.0,8.0,12.0,13.0,16.0,17.0,13.0,15.0,15.0,8.0,16.0,7.0,6.0,10.0,10.0,8.0,20.0,11.0,11.0,17.0,17.0,14.0,13.0,15.0,17.0,11.0,22.0,19.0,15.0,10.0,13.0,11.0,21.0,23.0,17.0,20.0,14.0,13.0,18.0,21.0,15.0,27.0,36.0,29.0,19.0,24.0,26.0,29.0,35.0,34.0,37.0,33.0,45.0,38.0,32.0,28.0,24.0,36.0,26.0,22.0,27.0,25.0,28.0,22.0,30.0,37.0,39.0,27.0,23.0,14.0,16.0,16.0,6.0,12.0,19.0,8.0,8.0,8.0,5.0,4.0,7.0,3.0,2.0,4.0,9.0 L83050,34.0,40.0,50.0,49.0,39.0,45.0,41.0,55.0,63.0,50.0,51.0,60.0,55.0,70.0,71.0,55.0,57.0,63.0,53.0,59.0,36.0,46.0,55.0,43.0,34.0,49.0,62.0,45.0,61.0,46.0,57.0,50.0,52.0,50.0,58.0,83.0,68.0,71.0,64.0,58.0,65.0,72.0,65.0,69.0,72.0,79.0,64.0,80.0,80.0,76.0,79.0,79.0,88.0,96.0,113.0,100.0,84.0,106.0,125.0,119.0,87.0,109.0,113.0,109.0,93.0,113.0,132.0,107.0,89.0,109.0,92.0,114.0,95.0,74.0,99.0,115.0,117.0,123.0,125.0,86.0,93.0,106.0,69.0,69.0,46.0,60.0,42.0,42.0,38.0,35.0,29.0,24.0,25.0,23.0,15.0,39.0 L83051,33.0,33.0,45.0,43.0,50.0,47.0,57.0,50.0,38.0,56.0,51.0,55.0,53.0,39.0,64.0,39.0,53.0,52.0,57.0,41.0,39.0,42.0,41.0,35.0,54.0,51.0,52.0,44.0,61.0,58.0,65.0,71.0,83.0,74.0,70.0,77.0,72.0,66.0,79.0,59.0,60.0,57.0,63.0,43.0,58.0,61.0,49.0,52.0,42.0,56.0,43.0,66.0,67.0,71.0,79.0,71.0,75.0,90.0,93.0,96.0,79.0,88.0,83.0,83.0,76.0,76.0,65.0,73.0,69.0,55.0,58.0,71.0,55.0,55.0,44.0,61.0,72.0,68.0,70.0,35.0,45.0,43.0,48.0,33.0,38.0,35.0,25.0,26.0,24.0,19.0,10.0,16.0,6.0,10.0,8.0,30.0 L83052,36.0,43.0,43.0,44.0,50.0,47.0,53.0,54.0,70.0,70.0,69.0,71.0,73.0,80.0,90.0,82.0,67.0,95.0,83.0,66.0,63.0,63.0,67.0,48.0,61.0,65.0,73.0,67.0,58.0,81.0,73.0,54.0,73.0,70.0,80.0,73.0,82.0,80.0,72.0,89.0,95.0,84.0,80.0,76.0,77.0,83.0,77.0,72.0,71.0,66.0,82.0,96.0,106.0,97.0,84.0,118.0,80.0,91.0,101.0,93.0,117.0,104.0,103.0,93.0,81.0,88.0,65.0,89.0,70.0,81.0,85.0,84.0,72.0,72.0,76.0,68.0,69.0,91.0,78.0,51.0,57.0,62.0,72.0,42.0,47.0,37.0,34.0,33.0,29.0,25.0,21.0,13.0,12.0,14.0,2.0,16.0 L83054,11.0,15.0,17.0,13.0,19.0,12.0,11.0,17.0,19.0,10.0,20.0,20.0,27.0,25.0,21.0,21.0,24.0,28.0,21.0,19.0,12.0,19.0,9.0,17.0,24.0,23.0,20.0,19.0,17.0,15.0,22.0,17.0,24.0,25.0,20.0,29.0,13.0,27.0,19.0,22.0,27.0,19.0,26.0,18.0,28.0,24.0,26.0,21.0,26.0,24.0,30.0,28.0,35.0,45.0,28.0,37.0,34.0,42.0,49.0,48.0,50.0,57.0,56.0,60.0,44.0,54.0,46.0,44.0,52.0,52.0,53.0,51.0,42.0,47.0,48.0,66.0,67.0,67.0,74.0,60.0,60.0,44.0,51.0,34.0,36.0,38.0,31.0,28.0,26.0,17.0,17.0,13.0,16.0,19.0,10.0,22.0 L83055,28.0,44.0,42.0,52.0,39.0,51.0,52.0,69.0,62.0,62.0,48.0,67.0,73.0,67.0,58.0,67.0,67.0,66.0,68.0,57.0,55.0,65.0,58.0,53.0,59.0,53.0,54.0,74.0,64.0,58.0,55.0,83.0,70.0,65.0,71.0,66.0,60.0,72.0,77.0,73.0,67.0,53.0,64.0,60.0,73.0,74.0,71.0,61.0,82.0,81.0,82.0,91.0,97.0,102.0,106.0,101.0,132.0,114.0,146.0,154.0,146.0,153.0,145.0,159.0,155.0,149.0,137.0,147.0,135.0,142.0,128.0,125.0,133.0,128.0,131.0,143.0,133.0,129.0,158.0,110.0,134.0,92.0,84.0,74.0,75.0,71.0,47.0,64.0,58.0,40.0,33.0,36.0,13.0,24.0,20.0,23.0 L83056,68.0,91.0,79.0,98.0,95.0,106.0,112.0,128.0,121.0,136.0,136.0,137.0,143.0,145.0,148.0,148.0,147.0,171.0,102.0,114.0,116.0,104.0,97.0,110.0,118.0,116.0,120.0,127.0,112.0,111.0,120.0,132.0,139.0,152.0,153.0,154.0,156.0,137.0,151.0,167.0,134.0,151.0,139.0,167.0,175.0,143.0,148.0,120.0,144.0,134.0,166.0,163.0,184.0,202.0,182.0,208.0,203.0,211.0,209.0,213.0,202.0,219.0,205.0,186.0,195.0,212.0,204.0,189.0,206.0,208.0,174.0,193.0,190.0,165.0,189.0,194.0,213.0,198.0,212.0,165.0,191.0,136.0,147.0,109.0,115.0,109.0,97.0,71.0,79.0,82.0,44.0,52.0,56.0,46.0,33.0,78.0 L83057,24.0,20.0,23.0,28.0,33.0,35.0,31.0,44.0,47.0,38.0,36.0,33.0,32.0,23.0,35.0,33.0,44.0,38.0,31.0,33.0,22.0,29.0,27.0,32.0,32.0,30.0,33.0,42.0,33.0,41.0,26.0,31.0,45.0,29.0,47.0,39.0,37.0,43.0,42.0,49.0,39.0,30.0,36.0,47.0,57.0,56.0,30.0,38.0,36.0,37.0,39.0,38.0,51.0,53.0,66.0,58.0,46.0,51.0,76.0,78.0,69.0,66.0,79.0,88.0,67.0,73.0,70.0,73.0,61.0,49.0,48.0,64.0,54.0,66.0,60.0,51.0,58.0,64.0,75.0,46.0,72.0,55.0,50.0,39.0,33.0,36.0,18.0,30.0,21.0,11.0,21.0,13.0,14.0,10.0,4.0,14.0 L83058,28.0,38.0,41.0,37.0,42.0,27.0,29.0,43.0,34.0,35.0,31.0,28.0,30.0,22.0,25.0,28.0,29.0,38.0,39.0,25.0,35.0,25.0,34.0,26.0,58.0,55.0,54.0,68.0,63.0,91.0,65.0,58.0,59.0,60.0,78.0,71.0,67.0,94.0,64.0,74.0,60.0,56.0,64.0,47.0,54.0,52.0,62.0,53.0,57.0,38.0,59.0,44.0,40.0,44.0,43.0,41.0,68.0,49.0,39.0,48.0,50.0,46.0,51.0,31.0,43.0,21.0,37.0,44.0,35.0,29.0,41.0,33.0,30.0,40.0,32.0,32.0,33.0,38.0,27.0,25.0,31.0,28.0,19.0,25.0,18.0,17.0,19.0,14.0,11.0,7.0,9.0,10.0,2.0,6.0,5.0,16.0 L83059,22.0,30.0,24.0,29.0,31.0,39.0,42.0,47.0,48.0,51.0,50.0,61.0,54.0,57.0,60.0,61.0,53.0,65.0,48.0,49.0,37.0,41.0,48.0,45.0,46.0,39.0,47.0,45.0,47.0,50.0,34.0,34.0,42.0,52.0,50.0,51.0,66.0,50.0,67.0,59.0,61.0,66.0,58.0,46.0,58.0,60.0,70.0,55.0,55.0,61.0,53.0,74.0,61.0,56.0,65.0,67.0,64.0,77.0,81.0,79.0,94.0,83.0,79.0,96.0,96.0,83.0,82.0,84.0,75.0,66.0,56.0,67.0,57.0,62.0,67.0,68.0,66.0,65.0,90.0,52.0,56.0,49.0,50.0,43.0,33.0,33.0,32.0,26.0,24.0,38.0,20.0,21.0,22.0,15.0,6.0,28.0 L83064,31.0,51.0,49.0,50.0,52.0,51.0,59.0,56.0,58.0,77.0,63.0,70.0,72.0,60.0,73.0,90.0,71.0,78.0,72.0,49.0,61.0,53.0,64.0,61.0,52.0,54.0,70.0,58.0,61.0,59.0,62.0,62.0,77.0,61.0,64.0,79.0,59.0,72.0,84.0,103.0,73.0,84.0,76.0,82.0,80.0,86.0,79.0,65.0,58.0,73.0,80.0,71.0,80.0,94.0,81.0,96.0,89.0,104.0,91.0,87.0,99.0,102.0,90.0,89.0,102.0,80.0,93.0,79.0,78.0,79.0,69.0,68.0,70.0,64.0,75.0,76.0,83.0,105.0,97.0,65.0,70.0,65.0,53.0,44.0,64.0,56.0,51.0,41.0,41.0,32.0,29.0,36.0,26.0,22.0,16.0,37.0 L83066,62.0,66.0,75.0,73.0,68.0,83.0,77.0,86.0,99.0,106.0,94.0,94.0,110.0,83.0,87.0,108.0,76.0,115.0,98.0,157.0,174.0,151.0,156.0,152.0,150.0,159.0,158.0,145.0,134.0,124.0,121.0,135.0,140.0,125.0,139.0,124.0,122.0,135.0,143.0,132.0,135.0,123.0,108.0,124.0,116.0,99.0,112.0,103.0,98.0,94.0,89.0,104.0,101.0,96.0,100.0,101.0,108.0,104.0,89.0,112.0,105.0,96.0,94.0,90.0,89.0,93.0,79.0,62.0,74.0,71.0,75.0,79.0,67.0,70.0,59.0,69.0,82.0,71.0,77.0,51.0,68.0,48.0,51.0,35.0,39.0,34.0,31.0,26.0,32.0,17.0,25.0,18.0,19.0,12.0,11.0,32.0 L83067,18.0,33.0,33.0,28.0,36.0,44.0,55.0,46.0,61.0,53.0,44.0,66.0,68.0,51.0,62.0,60.0,71.0,60.0,56.0,38.0,47.0,46.0,51.0,56.0,53.0,50.0,59.0,45.0,49.0,49.0,37.0,48.0,38.0,58.0,52.0,58.0,57.0,47.0,54.0,57.0,59.0,57.0,62.0,71.0,70.0,78.0,59.0,67.0,67.0,65.0,63.0,87.0,69.0,101.0,101.0,122.0,109.0,122.0,129.0,105.0,167.0,131.0,118.0,148.0,149.0,134.0,140.0,137.0,118.0,132.0,128.0,153.0,158.0,147.0,157.0,151.0,166.0,175.0,181.0,143.0,137.0,138.0,125.0,104.0,90.0,85.0,79.0,87.0,76.0,68.0,68.0,64.0,42.0,45.0,39.0,91.0 L83069,38.0,41.0,49.0,64.0,58.0,76.0,62.0,57.0,60.0,80.0,63.0,92.0,62.0,85.0,69.0,79.0,72.0,84.0,86.0,65.0,61.0,64.0,55.0,69.0,61.0,57.0,59.0,68.0,65.0,60.0,77.0,71.0,66.0,69.0,79.0,87.0,65.0,74.0,88.0,72.0,83.0,75.0,70.0,81.0,71.0,76.0,84.0,78.0,88.0,71.0,84.0,98.0,95.0,101.0,112.0,127.0,116.0,137.0,148.0,129.0,137.0,139.0,151.0,138.0,139.0,145.0,143.0,135.0,117.0,109.0,108.0,116.0,107.0,98.0,93.0,127.0,90.0,107.0,101.0,84.0,84.0,73.0,67.0,61.0,57.0,30.0,44.0,45.0,37.0,31.0,28.0,32.0,20.0,20.0,13.0,35.0 L83070,12.0,17.0,12.0,22.0,13.0,18.0,30.0,23.0,19.0,20.0,23.0,25.0,28.0,33.0,19.0,32.0,27.0,24.0,18.0,23.0,19.0,18.0,24.0,17.0,18.0,26.0,22.0,40.0,19.0,27.0,26.0,22.0,28.0,29.0,29.0,40.0,28.0,35.0,36.0,28.0,21.0,23.0,51.0,29.0,32.0,37.0,30.0,21.0,25.0,32.0,26.0,47.0,33.0,37.0,50.0,34.0,38.0,46.0,34.0,36.0,48.0,39.0,28.0,44.0,38.0,35.0,36.0,38.0,37.0,26.0,21.0,34.0,31.0,33.0,30.0,37.0,40.0,25.0,39.0,24.0,28.0,20.0,28.0,10.0,16.0,12.0,14.0,10.0,10.0,8.0,5.0,7.0,3.0,,3.0,5.0 L83071,29.0,21.0,25.0,46.0,21.0,41.0,32.0,37.0,39.0,25.0,48.0,33.0,43.0,50.0,44.0,48.0,39.0,46.0,53.0,34.0,37.0,34.0,43.0,58.0,46.0,60.0,36.0,67.0,72.0,64.0,48.0,59.0,50.0,59.0,62.0,55.0,52.0,75.0,66.0,47.0,61.0,56.0,56.0,51.0,48.0,53.0,45.0,43.0,45.0,47.0,48.0,39.0,54.0,64.0,67.0,51.0,59.0,82.0,63.0,62.0,82.0,62.0,53.0,51.0,50.0,41.0,46.0,41.0,46.0,29.0,33.0,39.0,39.0,34.0,35.0,31.0,41.0,29.0,40.0,26.0,34.0,24.0,26.0,21.0,18.0,16.0,18.0,20.0,13.0,11.0,15.0,16.0,9.0,6.0,2.0,18.0 L83072,55.0,46.0,49.0,65.0,47.0,53.0,55.0,74.0,62.0,60.0,58.0,62.0,71.0,73.0,75.0,72.0,64.0,62.0,77.0,92.0,107.0,108.0,100.0,82.0,101.0,141.0,120.0,134.0,117.0,125.0,110.0,97.0,104.0,117.0,115.0,104.0,92.0,87.0,78.0,102.0,64.0,65.0,76.0,80.0,88.0,89.0,67.0,52.0,44.0,58.0,71.0,74.0,72.0,74.0,72.0,80.0,72.0,72.0,68.0,55.0,70.0,79.0,59.0,66.0,47.0,45.0,55.0,53.0,52.0,62.0,43.0,51.0,54.0,50.0,49.0,37.0,44.0,50.0,36.0,37.0,25.0,40.0,32.0,25.0,12.0,30.0,25.0,18.0,16.0,18.0,15.0,13.0,16.0,14.0,5.0,21.0 L83073,78.0,102.0,84.0,101.0,83.0,114.0,99.0,111.0,117.0,108.0,86.0,99.0,121.0,110.0,138.0,125.0,116.0,104.0,91.0,92.0,75.0,79.0,74.0,77.0,89.0,95.0,109.0,126.0,130.0,127.0,142.0,131.0,134.0,146.0,123.0,150.0,142.0,153.0,147.0,123.0,136.0,123.0,119.0,122.0,116.0,117.0,116.0,102.0,88.0,127.0,105.0,125.0,113.0,151.0,147.0,118.0,127.0,158.0,131.0,151.0,123.0,131.0,150.0,136.0,130.0,133.0,115.0,105.0,134.0,106.0,96.0,114.0,99.0,114.0,109.0,121.0,93.0,128.0,132.0,86.0,100.0,88.0,88.0,56.0,66.0,64.0,55.0,56.0,34.0,39.0,29.0,19.0,20.0,24.0,14.0,39.0 L83075,15.0,22.0,25.0,16.0,23.0,21.0,27.0,30.0,28.0,34.0,32.0,37.0,39.0,36.0,24.0,28.0,35.0,37.0,31.0,27.0,23.0,27.0,21.0,18.0,26.0,21.0,31.0,27.0,24.0,30.0,33.0,34.0,30.0,29.0,25.0,34.0,28.0,39.0,36.0,34.0,35.0,29.0,52.0,35.0,36.0,43.0,33.0,45.0,23.0,31.0,39.0,30.0,50.0,50.0,49.0,50.0,49.0,55.0,51.0,54.0,66.0,51.0,69.0,51.0,53.0,51.0,35.0,62.0,48.0,48.0,47.0,44.0,46.0,33.0,46.0,40.0,37.0,55.0,38.0,28.0,33.0,24.0,33.0,19.0,17.0,12.0,15.0,15.0,9.0,12.0,13.0,6.0,9.0,6.0,6.0,21.0 L83076,62.0,60.0,57.0,72.0,68.0,83.0,66.0,54.0,58.0,78.0,64.0,53.0,78.0,65.0,58.0,64.0,63.0,52.0,47.0,43.0,62.0,56.0,54.0,68.0,78.0,104.0,95.0,108.0,118.0,121.0,109.0,92.0,114.0,110.0,116.0,91.0,103.0,100.0,92.0,93.0,76.0,84.0,78.0,65.0,73.0,78.0,64.0,49.0,56.0,48.0,62.0,59.0,49.0,60.0,63.0,75.0,80.0,65.0,67.0,56.0,60.0,71.0,72.0,61.0,60.0,53.0,67.0,54.0,67.0,55.0,37.0,56.0,35.0,47.0,46.0,42.0,25.0,27.0,40.0,22.0,32.0,26.0,30.0,14.0,17.0,11.0,14.0,12.0,13.0,10.0,9.0,7.0,7.0,2.0,2.0,10.0 L83077,31.0,41.0,31.0,39.0,31.0,46.0,40.0,31.0,46.0,41.0,29.0,40.0,37.0,46.0,43.0,31.0,47.0,41.0,85.0,121.0,106.0,72.0,73.0,79.0,71.0,71.0,65.0,56.0,46.0,51.0,53.0,49.0,54.0,68.0,66.0,73.0,69.0,63.0,63.0,62.0,66.0,66.0,60.0,59.0,53.0,67.0,45.0,55.0,37.0,43.0,49.0,48.0,44.0,52.0,38.0,53.0,41.0,44.0,39.0,51.0,51.0,53.0,46.0,53.0,40.0,40.0,45.0,23.0,27.0,27.0,36.0,28.0,29.0,32.0,27.0,23.0,35.0,32.0,25.0,26.0,28.0,29.0,21.0,24.0,22.0,25.0,23.0,15.0,14.0,13.0,16.0,5.0,9.0,4.0,5.0,17.0 L83079,39.0,32.0,44.0,37.0,36.0,28.0,39.0,44.0,47.0,41.0,31.0,42.0,42.0,45.0,45.0,35.0,36.0,27.0,44.0,32.0,34.0,37.0,36.0,38.0,43.0,47.0,59.0,55.0,62.0,56.0,63.0,57.0,47.0,63.0,65.0,57.0,63.0,55.0,52.0,47.0,54.0,59.0,50.0,53.0,71.0,53.0,53.0,54.0,42.0,48.0,47.0,60.0,51.0,70.0,61.0,59.0,58.0,61.0,64.0,75.0,66.0,49.0,56.0,66.0,61.0,53.0,43.0,40.0,44.0,45.0,43.0,62.0,42.0,43.0,53.0,40.0,58.0,46.0,47.0,38.0,45.0,30.0,49.0,33.0,28.0,28.0,19.0,30.0,26.0,23.0,10.0,10.0,15.0,7.0,10.0,16.0 L83081,11.0,21.0,19.0,23.0,21.0,28.0,30.0,33.0,32.0,18.0,40.0,36.0,33.0,28.0,31.0,43.0,38.0,31.0,40.0,28.0,25.0,29.0,18.0,11.0,16.0,19.0,21.0,20.0,23.0,25.0,21.0,23.0,32.0,24.0,33.0,31.0,31.0,29.0,31.0,32.0,36.0,29.0,30.0,48.0,34.0,27.0,53.0,32.0,41.0,48.0,31.0,35.0,43.0,60.0,36.0,42.0,47.0,47.0,58.0,69.0,50.0,45.0,53.0,50.0,58.0,51.0,37.0,42.0,58.0,43.0,45.0,43.0,50.0,48.0,46.0,50.0,39.0,52.0,59.0,44.0,58.0,30.0,35.0,33.0,21.0,19.0,28.0,25.0,22.0,14.0,11.0,9.0,6.0,9.0,9.0,13.0 L83082,8.0,9.0,9.0,17.0,10.0,7.0,9.0,16.0,10.0,8.0,15.0,18.0,14.0,11.0,17.0,15.0,13.0,17.0,13.0,10.0,12.0,8.0,6.0,12.0,15.0,7.0,10.0,10.0,15.0,17.0,17.0,18.0,17.0,11.0,22.0,12.0,20.0,15.0,12.0,15.0,21.0,18.0,16.0,18.0,20.0,19.0,13.0,19.0,12.0,22.0,23.0,14.0,29.0,30.0,16.0,27.0,26.0,39.0,26.0,34.0,36.0,32.0,25.0,40.0,36.0,31.0,34.0,28.0,20.0,31.0,26.0,24.0,22.0,23.0,30.0,19.0,24.0,32.0,28.0,17.0,13.0,22.0,22.0,14.0,16.0,11.0,7.0,13.0,11.0,6.0,3.0,2.0,3.0,1.0,1.0,5.0 L83083,57.0,54.0,61.0,58.0,66.0,64.0,59.0,62.0,73.0,71.0,91.0,83.0,85.0,111.0,94.0,100.0,76.0,78.0,72.0,66.0,56.0,65.0,57.0,57.0,58.0,78.0,71.0,69.0,77.0,81.0,79.0,91.0,82.0,90.0,104.0,78.0,79.0,95.0,95.0,75.0,94.0,86.0,68.0,85.0,83.0,95.0,81.0,74.0,64.0,101.0,97.0,72.0,116.0,107.0,111.0,115.0,115.0,113.0,110.0,115.0,108.0,135.0,118.0,101.0,112.0,128.0,109.0,120.0,94.0,85.0,100.0,93.0,102.0,107.0,95.0,92.0,94.0,119.0,110.0,82.0,89.0,72.0,58.0,58.0,45.0,52.0,34.0,43.0,30.0,33.0,21.0,15.0,14.0,17.0,20.0,38.0 L83084,27.0,35.0,40.0,37.0,32.0,35.0,38.0,37.0,46.0,38.0,42.0,30.0,45.0,49.0,39.0,47.0,37.0,58.0,34.0,44.0,42.0,38.0,42.0,59.0,65.0,55.0,63.0,56.0,58.0,63.0,55.0,43.0,80.0,47.0,51.0,62.0,70.0,63.0,62.0,45.0,59.0,50.0,55.0,52.0,51.0,54.0,46.0,45.0,47.0,53.0,46.0,47.0,58.0,44.0,58.0,63.0,50.0,66.0,63.0,60.0,66.0,54.0,51.0,55.0,60.0,41.0,56.0,42.0,50.0,45.0,51.0,30.0,40.0,36.0,31.0,44.0,45.0,46.0,44.0,29.0,32.0,40.0,34.0,33.0,26.0,31.0,22.0,30.0,18.0,22.0,15.0,17.0,10.0,13.0,12.0,12.0 L83085,58.0,68.0,59.0,76.0,74.0,73.0,79.0,103.0,87.0,88.0,114.0,94.0,117.0,95.0,119.0,125.0,111.0,146.0,122.0,99.0,81.0,90.0,75.0,76.0,106.0,99.0,77.0,89.0,113.0,99.0,111.0,93.0,94.0,111.0,121.0,116.0,99.0,122.0,109.0,109.0,121.0,119.0,104.0,113.0,104.0,94.0,104.0,101.0,98.0,117.0,90.0,88.0,126.0,109.0,127.0,116.0,149.0,147.0,124.0,138.0,149.0,151.0,137.0,125.0,119.0,124.0,148.0,124.0,137.0,120.0,118.0,103.0,115.0,108.0,109.0,110.0,119.0,122.0,121.0,92.0,95.0,91.0,79.0,64.0,61.0,51.0,50.0,58.0,40.0,34.0,32.0,27.0,19.0,22.0,20.0,34.0 L83086,10.0,13.0,11.0,20.0,17.0,22.0,25.0,27.0,31.0,23.0,32.0,25.0,36.0,34.0,30.0,28.0,28.0,26.0,29.0,17.0,9.0,13.0,22.0,18.0,20.0,20.0,10.0,12.0,12.0,17.0,23.0,28.0,30.0,34.0,24.0,36.0,35.0,28.0,33.0,25.0,29.0,26.0,28.0,36.0,24.0,31.0,32.0,32.0,25.0,21.0,29.0,39.0,25.0,34.0,22.0,50.0,37.0,39.0,40.0,47.0,52.0,48.0,56.0,42.0,59.0,56.0,46.0,44.0,45.0,45.0,32.0,44.0,40.0,35.0,39.0,45.0,48.0,45.0,41.0,24.0,25.0,26.0,23.0,11.0,10.0,15.0,17.0,6.0,11.0,10.0,8.0,8.0,4.0,5.0,7.0,5.0 L83087,71.0,52.0,67.0,55.0,58.0,69.0,74.0,77.0,75.0,84.0,84.0,81.0,96.0,103.0,89.0,87.0,84.0,84.0,69.0,64.0,65.0,53.0,58.0,81.0,60.0,67.0,72.0,88.0,72.0,72.0,86.0,84.0,92.0,95.0,99.0,90.0,91.0,95.0,91.0,69.0,85.0,91.0,96.0,83.0,99.0,84.0,83.0,92.0,81.0,87.0,91.0,86.0,113.0,112.0,103.0,85.0,127.0,109.0,116.0,117.0,126.0,115.0,121.0,110.0,121.0,87.0,87.0,98.0,95.0,88.0,92.0,99.0,95.0,97.0,80.0,90.0,106.0,85.0,104.0,77.0,79.0,75.0,64.0,62.0,35.0,51.0,45.0,47.0,34.0,30.0,32.0,24.0,17.0,17.0,12.0,36.0 L83088,7.0,14.0,13.0,21.0,9.0,22.0,19.0,31.0,15.0,18.0,23.0,24.0,21.0,27.0,21.0,27.0,20.0,32.0,14.0,15.0,20.0,22.0,19.0,15.0,23.0,17.0,14.0,21.0,11.0,23.0,17.0,30.0,21.0,30.0,20.0,32.0,33.0,18.0,28.0,25.0,21.0,28.0,34.0,21.0,29.0,27.0,23.0,28.0,27.0,23.0,29.0,39.0,29.0,28.0,39.0,38.0,44.0,46.0,40.0,46.0,40.0,50.0,53.0,46.0,43.0,49.0,54.0,56.0,46.0,37.0,47.0,47.0,50.0,46.0,45.0,36.0,38.0,57.0,50.0,42.0,35.0,26.0,26.0,27.0,17.0,27.0,27.0,14.0,18.0,6.0,14.0,14.0,8.0,7.0,5.0,15.0 L83089,52.0,63.0,58.0,60.0,74.0,76.0,75.0,63.0,79.0,79.0,86.0,68.0,98.0,89.0,79.0,81.0,79.0,88.0,84.0,55.0,68.0,59.0,42.0,57.0,76.0,68.0,81.0,87.0,89.0,80.0,70.0,83.0,86.0,99.0,90.0,105.0,96.0,101.0,118.0,69.0,85.0,102.0,107.0,84.0,108.0,106.0,89.0,79.0,77.0,79.0,94.0,87.0,108.0,81.0,97.0,111.0,93.0,95.0,100.0,105.0,104.0,102.0,99.0,93.0,94.0,84.0,118.0,90.0,85.0,79.0,74.0,65.0,68.0,72.0,64.0,78.0,74.0,62.0,71.0,72.0,67.0,60.0,61.0,35.0,37.0,39.0,39.0,23.0,30.0,35.0,21.0,20.0,20.0,12.0,4.0,15.0 L83092,80.0,83.0,60.0,86.0,80.0,89.0,66.0,98.0,103.0,105.0,86.0,84.0,91.0,110.0,99.0,120.0,115.0,101.0,80.0,84.0,69.0,59.0,63.0,41.0,70.0,72.0,71.0,59.0,82.0,87.0,69.0,91.0,116.0,94.0,112.0,107.0,88.0,106.0,109.0,113.0,100.0,120.0,124.0,98.0,111.0,87.0,106.0,93.0,104.0,87.0,104.0,102.0,116.0,113.0,109.0,125.0,119.0,130.0,122.0,115.0,122.0,94.0,119.0,100.0,118.0,102.0,113.0,86.0,110.0,91.0,81.0,94.0,76.0,91.0,102.0,76.0,91.0,94.0,92.0,89.0,84.0,70.0,63.0,55.0,50.0,40.0,37.0,38.0,30.0,24.0,17.0,27.0,20.0,15.0,10.0,40.0 L83094,20.0,20.0,24.0,31.0,29.0,31.0,39.0,35.0,33.0,31.0,39.0,35.0,36.0,32.0,33.0,33.0,40.0,30.0,30.0,36.0,31.0,27.0,32.0,29.0,24.0,33.0,33.0,39.0,42.0,25.0,38.0,31.0,26.0,35.0,39.0,43.0,42.0,43.0,49.0,50.0,39.0,40.0,40.0,36.0,36.0,37.0,49.0,44.0,31.0,43.0,40.0,37.0,65.0,63.0,63.0,53.0,60.0,75.0,81.0,69.0,69.0,92.0,98.0,79.0,69.0,79.0,78.0,90.0,69.0,67.0,71.0,63.0,63.0,60.0,58.0,73.0,53.0,60.0,73.0,60.0,51.0,53.0,41.0,35.0,37.0,46.0,32.0,22.0,18.0,18.0,33.0,15.0,14.0,20.0,10.0,28.0 L83095,38.0,46.0,49.0,66.0,47.0,79.0,78.0,61.0,88.0,82.0,92.0,100.0,97.0,111.0,92.0,109.0,107.0,98.0,84.0,69.0,51.0,59.0,59.0,47.0,57.0,46.0,49.0,68.0,60.0,39.0,61.0,61.0,63.0,72.0,65.0,71.0,85.0,76.0,80.0,89.0,75.0,93.0,97.0,97.0,102.0,102.0,91.0,85.0,102.0,100.0,99.0,109.0,113.0,125.0,114.0,122.0,135.0,139.0,119.0,122.0,130.0,146.0,137.0,117.0,110.0,142.0,114.0,120.0,96.0,117.0,104.0,140.0,111.0,111.0,112.0,99.0,118.0,125.0,126.0,99.0,110.0,90.0,90.0,70.0,69.0,57.0,50.0,59.0,37.0,40.0,30.0,20.0,12.0,20.0,14.0,34.0 L83096,42.0,54.0,56.0,62.0,62.0,61.0,74.0,63.0,83.0,89.0,87.0,106.0,88.0,98.0,111.0,115.0,111.0,102.0,107.0,80.0,84.0,77.0,79.0,81.0,73.0,68.0,83.0,79.0,106.0,64.0,94.0,81.0,90.0,101.0,108.0,112.0,111.0,89.0,96.0,90.0,102.0,87.0,98.0,99.0,112.0,104.0,103.0,109.0,75.0,111.0,106.0,132.0,129.0,127.0,145.0,139.0,154.0,140.0,137.0,144.0,152.0,145.0,132.0,138.0,145.0,143.0,128.0,114.0,147.0,117.0,129.0,126.0,115.0,117.0,125.0,124.0,97.0,136.0,118.0,103.0,113.0,79.0,78.0,65.0,59.0,56.0,43.0,49.0,47.0,26.0,29.0,19.0,17.0,22.0,14.0,47.0 L83097,45.0,49.0,52.0,45.0,52.0,46.0,65.0,84.0,77.0,82.0,95.0,88.0,90.0,103.0,92.0,82.0,82.0,79.0,83.0,72.0,42.0,57.0,39.0,50.0,47.0,53.0,50.0,50.0,57.0,62.0,51.0,69.0,68.0,71.0,79.0,56.0,63.0,73.0,71.0,82.0,74.0,81.0,97.0,99.0,90.0,98.0,95.0,99.0,104.0,93.0,84.0,86.0,100.0,97.0,81.0,85.0,98.0,91.0,93.0,109.0,96.0,97.0,98.0,81.0,78.0,77.0,75.0,86.0,65.0,72.0,81.0,68.0,63.0,71.0,87.0,80.0,84.0,93.0,78.0,62.0,88.0,71.0,59.0,57.0,52.0,49.0,53.0,36.0,41.0,32.0,23.0,10.0,19.0,11.0,15.0,25.0 L83098,12.0,19.0,20.0,25.0,32.0,29.0,27.0,34.0,30.0,34.0,31.0,31.0,32.0,19.0,38.0,27.0,35.0,19.0,20.0,25.0,27.0,20.0,14.0,18.0,24.0,23.0,26.0,20.0,22.0,18.0,20.0,24.0,17.0,20.0,31.0,31.0,24.0,22.0,27.0,42.0,35.0,29.0,39.0,38.0,25.0,35.0,39.0,33.0,32.0,38.0,25.0,32.0,26.0,31.0,40.0,47.0,52.0,42.0,32.0,44.0,57.0,54.0,58.0,52.0,49.0,33.0,48.0,47.0,29.0,41.0,35.0,54.0,38.0,50.0,44.0,46.0,28.0,47.0,43.0,26.0,20.0,32.0,32.0,22.0,12.0,17.0,15.0,8.0,17.0,11.0,11.0,8.0,7.0,3.0,2.0,10.0 L83099,20.0,19.0,24.0,20.0,27.0,30.0,29.0,27.0,29.0,18.0,18.0,25.0,22.0,26.0,30.0,30.0,35.0,29.0,19.0,28.0,40.0,18.0,29.0,40.0,39.0,50.0,42.0,42.0,43.0,39.0,41.0,43.0,57.0,49.0,42.0,52.0,35.0,42.0,49.0,42.0,38.0,45.0,44.0,47.0,32.0,32.0,43.0,37.0,35.0,35.0,43.0,33.0,32.0,34.0,30.0,34.0,36.0,33.0,34.0,24.0,26.0,40.0,26.0,26.0,32.0,42.0,29.0,29.0,22.0,22.0,27.0,21.0,16.0,35.0,28.0,19.0,29.0,25.0,29.0,25.0,20.0,22.0,12.0,17.0,18.0,8.0,11.0,10.0,6.0,10.0,12.0,6.0,3.0,5.0,6.0,4.0 L83100,139.0,162.0,184.0,189.0,207.0,209.0,216.0,211.0,222.0,253.0,249.0,252.0,264.0,273.0,296.0,289.0,254.0,258.0,231.0,232.0,195.0,176.0,190.0,207.0,172.0,219.0,204.0,231.0,224.0,268.0,268.0,268.0,266.0,286.0,299.0,298.0,314.0,294.0,286.0,297.0,301.0,277.0,279.0,254.0,270.0,270.0,271.0,240.0,215.0,277.0,253.0,317.0,315.0,291.0,349.0,284.0,360.0,304.0,365.0,340.0,330.0,302.0,290.0,312.0,309.0,271.0,292.0,279.0,253.0,243.0,229.0,246.0,238.0,235.0,230.0,255.0,250.0,315.0,269.0,203.0,193.0,190.0,180.0,134.0,150.0,149.0,118.0,103.0,95.0,81.0,72.0,46.0,45.0,41.0,28.0,80.0 L83101,35.0,46.0,39.0,49.0,44.0,51.0,56.0,54.0,70.0,60.0,67.0,67.0,64.0,76.0,98.0,77.0,85.0,85.0,75.0,55.0,57.0,58.0,55.0,67.0,49.0,46.0,64.0,53.0,77.0,51.0,60.0,74.0,68.0,76.0,87.0,65.0,85.0,72.0,70.0,74.0,76.0,74.0,67.0,88.0,92.0,87.0,78.0,75.0,88.0,95.0,76.0,101.0,114.0,115.0,100.0,121.0,126.0,117.0,126.0,131.0,139.0,136.0,139.0,147.0,145.0,119.0,152.0,133.0,111.0,124.0,104.0,120.0,105.0,121.0,118.0,119.0,131.0,142.0,121.0,93.0,98.0,74.0,90.0,61.0,56.0,74.0,49.0,50.0,47.0,50.0,41.0,31.0,34.0,20.0,19.0,33.0 L83102,13.0,18.0,17.0,27.0,26.0,21.0,20.0,36.0,38.0,27.0,37.0,43.0,33.0,33.0,44.0,48.0,38.0,41.0,41.0,25.0,28.0,30.0,27.0,23.0,18.0,31.0,22.0,33.0,28.0,29.0,34.0,33.0,28.0,33.0,35.0,34.0,33.0,37.0,34.0,37.0,35.0,43.0,34.0,33.0,54.0,39.0,45.0,41.0,41.0,33.0,42.0,42.0,62.0,47.0,57.0,71.0,65.0,72.0,60.0,89.0,75.0,81.0,83.0,86.0,89.0,61.0,80.0,75.0,68.0,66.0,67.0,44.0,52.0,60.0,59.0,50.0,65.0,79.0,58.0,42.0,61.0,43.0,34.0,45.0,38.0,29.0,27.0,12.0,21.0,19.0,17.0,15.0,17.0,11.0,6.0,24.0 L83103,46.0,46.0,42.0,65.0,58.0,60.0,75.0,80.0,76.0,88.0,84.0,85.0,84.0,70.0,77.0,82.0,93.0,71.0,69.0,84.0,86.0,77.0,73.0,74.0,66.0,78.0,71.0,100.0,91.0,82.0,87.0,99.0,88.0,75.0,106.0,85.0,108.0,94.0,91.0,99.0,90.0,86.0,85.0,72.0,95.0,101.0,95.0,85.0,102.0,82.0,103.0,92.0,91.0,91.0,113.0,111.0,122.0,131.0,118.0,104.0,135.0,128.0,135.0,109.0,123.0,116.0,109.0,123.0,90.0,106.0,96.0,107.0,86.0,92.0,105.0,115.0,98.0,114.0,128.0,94.0,94.0,70.0,88.0,77.0,54.0,77.0,47.0,55.0,43.0,47.0,40.0,36.0,31.0,27.0,15.0,58.0 L83105,19.0,34.0,27.0,27.0,29.0,22.0,31.0,33.0,17.0,29.0,32.0,38.0,31.0,29.0,35.0,38.0,35.0,36.0,25.0,30.0,24.0,32.0,26.0,23.0,29.0,21.0,32.0,24.0,34.0,33.0,26.0,27.0,42.0,35.0,29.0,24.0,39.0,32.0,35.0,34.0,33.0,39.0,28.0,25.0,42.0,37.0,29.0,26.0,32.0,37.0,38.0,34.0,43.0,47.0,70.0,56.0,53.0,52.0,65.0,53.0,57.0,70.0,63.0,63.0,57.0,50.0,62.0,64.0,62.0,49.0,55.0,48.0,50.0,46.0,63.0,57.0,49.0,61.0,44.0,30.0,45.0,36.0,33.0,25.0,30.0,25.0,15.0,25.0,15.0,15.0,12.0,8.0,10.0,4.0,5.0,17.0 L83106,39.0,29.0,46.0,34.0,37.0,46.0,50.0,45.0,46.0,48.0,42.0,54.0,61.0,64.0,63.0,48.0,48.0,43.0,51.0,41.0,49.0,29.0,40.0,47.0,47.0,43.0,51.0,52.0,43.0,53.0,65.0,64.0,57.0,61.0,67.0,69.0,81.0,56.0,60.0,68.0,43.0,46.0,53.0,64.0,70.0,55.0,50.0,45.0,68.0,59.0,50.0,52.0,55.0,72.0,65.0,73.0,64.0,55.0,79.0,85.0,79.0,74.0,90.0,73.0,85.0,72.0,78.0,73.0,80.0,49.0,67.0,71.0,58.0,73.0,82.0,65.0,47.0,48.0,55.0,44.0,55.0,46.0,39.0,29.0,22.0,26.0,18.0,23.0,17.0,23.0,16.0,14.0,10.0,10.0,6.0,11.0 L83111,60.0,49.0,39.0,61.0,67.0,51.0,82.0,85.0,67.0,67.0,84.0,92.0,84.0,63.0,76.0,76.0,81.0,76.0,80.0,67.0,62.0,52.0,62.0,52.0,60.0,70.0,92.0,69.0,85.0,91.0,80.0,92.0,92.0,87.0,108.0,103.0,111.0,83.0,98.0,83.0,94.0,85.0,89.0,83.0,95.0,90.0,69.0,72.0,80.0,86.0,87.0,92.0,93.0,104.0,127.0,128.0,113.0,112.0,128.0,129.0,135.0,123.0,118.0,122.0,113.0,130.0,129.0,105.0,119.0,87.0,127.0,114.0,94.0,119.0,97.0,118.0,120.0,121.0,144.0,90.0,87.0,107.0,75.0,74.0,60.0,70.0,52.0,46.0,40.0,42.0,39.0,28.0,24.0,11.0,15.0,36.0 L83112,19.0,10.0,18.0,9.0,13.0,16.0,11.0,19.0,11.0,11.0,13.0,14.0,10.0,11.0,19.0,12.0,16.0,14.0,23.0,39.0,48.0,48.0,46.0,54.0,52.0,44.0,56.0,59.0,51.0,49.0,53.0,58.0,46.0,44.0,41.0,44.0,45.0,30.0,33.0,30.0,33.0,32.0,36.0,30.0,37.0,17.0,28.0,36.0,23.0,31.0,27.0,28.0,28.0,43.0,39.0,47.0,37.0,37.0,37.0,44.0,38.0,29.0,34.0,45.0,39.0,51.0,45.0,40.0,43.0,38.0,37.0,38.0,40.0,35.0,35.0,38.0,37.0,36.0,32.0,29.0,29.0,19.0,20.0,12.0,17.0,15.0,18.0,26.0,7.0,12.0,12.0,3.0,6.0,4.0,5.0,8.0 L83113,26.0,45.0,35.0,38.0,55.0,56.0,49.0,52.0,59.0,46.0,55.0,49.0,52.0,52.0,62.0,46.0,58.0,53.0,48.0,39.0,28.0,43.0,32.0,31.0,42.0,55.0,41.0,55.0,57.0,53.0,59.0,62.0,62.0,62.0,64.0,81.0,67.0,77.0,64.0,59.0,60.0,60.0,68.0,48.0,49.0,54.0,45.0,43.0,37.0,37.0,41.0,45.0,49.0,41.0,52.0,50.0,51.0,49.0,43.0,51.0,42.0,55.0,56.0,57.0,55.0,45.0,45.0,37.0,37.0,35.0,37.0,30.0,26.0,35.0,29.0,28.0,28.0,34.0,26.0,12.0,19.0,9.0,16.0,20.0,13.0,12.0,9.0,2.0,11.0,4.0,7.0,4.0,4.0,1.0,4.0,1.0 L83115,24.0,20.0,32.0,29.0,31.0,27.0,36.0,34.0,40.0,43.0,40.0,30.0,38.0,41.0,37.0,31.0,39.0,39.0,29.0,30.0,24.0,26.0,19.0,25.0,19.0,23.0,34.0,39.0,33.0,40.0,37.0,41.0,28.0,50.0,34.0,57.0,35.0,38.0,49.0,44.0,35.0,33.0,39.0,30.0,39.0,32.0,35.0,33.0,30.0,24.0,26.0,32.0,37.0,40.0,26.0,29.0,19.0,27.0,24.0,37.0,30.0,23.0,22.0,25.0,29.0,14.0,16.0,19.0,17.0,23.0,18.0,18.0,25.0,23.0,14.0,11.0,21.0,20.0,21.0,23.0,11.0,12.0,14.0,16.0,9.0,9.0,14.0,8.0,12.0,9.0,3.0,4.0,5.0,2.0,2.0,8.0 L83116,16.0,23.0,17.0,25.0,27.0,30.0,23.0,20.0,45.0,28.0,33.0,28.0,22.0,23.0,25.0,32.0,37.0,28.0,25.0,27.0,18.0,17.0,22.0,26.0,16.0,17.0,16.0,22.0,15.0,27.0,30.0,18.0,27.0,27.0,25.0,24.0,32.0,26.0,38.0,37.0,30.0,37.0,32.0,35.0,29.0,45.0,38.0,28.0,35.0,27.0,29.0,30.0,41.0,40.0,42.0,35.0,48.0,52.0,37.0,48.0,48.0,50.0,49.0,47.0,45.0,50.0,42.0,50.0,36.0,37.0,36.0,54.0,49.0,38.0,37.0,40.0,27.0,37.0,32.0,19.0,37.0,19.0,24.0,12.0,14.0,10.0,20.0,13.0,11.0,9.0,5.0,4.0,3.0,3.0,2.0,8.0 L83118,46.0,58.0,61.0,72.0,67.0,87.0,94.0,98.0,99.0,101.0,120.0,103.0,118.0,124.0,123.0,118.0,125.0,111.0,114.0,71.0,97.0,84.0,87.0,81.0,78.0,83.0,84.0,98.0,89.0,94.0,132.0,104.0,102.0,124.0,127.0,122.0,101.0,143.0,123.0,120.0,134.0,134.0,103.0,126.0,103.0,119.0,93.0,112.0,109.0,99.0,94.0,103.0,128.0,138.0,123.0,135.0,136.0,131.0,119.0,123.0,161.0,120.0,110.0,114.0,117.0,109.0,111.0,106.0,85.0,82.0,100.0,88.0,103.0,87.0,82.0,87.0,96.0,101.0,106.0,74.0,71.0,59.0,67.0,53.0,43.0,42.0,37.0,30.0,37.0,21.0,22.0,13.0,14.0,20.0,12.0,26.0 L83120,44.0,33.0,51.0,43.0,51.0,64.0,56.0,62.0,69.0,54.0,59.0,74.0,96.0,88.0,85.0,90.0,82.0,87.0,79.0,67.0,66.0,55.0,66.0,56.0,58.0,66.0,56.0,65.0,59.0,69.0,65.0,77.0,52.0,70.0,86.0,62.0,100.0,93.0,78.0,79.0,93.0,92.0,91.0,97.0,91.0,97.0,113.0,77.0,100.0,104.0,102.0,101.0,130.0,130.0,131.0,114.0,135.0,131.0,120.0,124.0,130.0,149.0,144.0,159.0,163.0,155.0,135.0,132.0,141.0,147.0,155.0,139.0,144.0,135.0,162.0,154.0,150.0,147.0,169.0,99.0,108.0,105.0,83.0,73.0,68.0,76.0,65.0,65.0,38.0,51.0,48.0,38.0,33.0,20.0,22.0,68.0 L83127,51.0,53.0,69.0,61.0,75.0,79.0,86.0,84.0,86.0,88.0,75.0,81.0,84.0,87.0,95.0,106.0,95.0,81.0,108.0,77.0,72.0,78.0,68.0,68.0,56.0,66.0,77.0,71.0,90.0,77.0,80.0,88.0,91.0,89.0,88.0,94.0,83.0,94.0,81.0,69.0,106.0,110.0,93.0,97.0,101.0,88.0,118.0,87.0,83.0,105.0,95.0,95.0,107.0,108.0,132.0,115.0,148.0,106.0,127.0,123.0,119.0,133.0,135.0,113.0,118.0,125.0,89.0,105.0,100.0,111.0,106.0,107.0,87.0,111.0,94.0,105.0,96.0,119.0,98.0,76.0,75.0,67.0,72.0,65.0,49.0,38.0,41.0,48.0,37.0,28.0,27.0,30.0,16.0,11.0,13.0,31.0 L83128,28.0,35.0,41.0,27.0,38.0,37.0,43.0,48.0,44.0,38.0,42.0,38.0,48.0,40.0,40.0,42.0,50.0,42.0,55.0,36.0,35.0,34.0,36.0,37.0,25.0,46.0,48.0,52.0,42.0,37.0,41.0,56.0,55.0,55.0,61.0,64.0,47.0,72.0,51.0,47.0,44.0,50.0,51.0,39.0,39.0,55.0,39.0,47.0,44.0,44.0,53.0,52.0,44.0,57.0,47.0,45.0,64.0,50.0,76.0,59.0,75.0,70.0,55.0,50.0,54.0,52.0,53.0,43.0,43.0,63.0,40.0,38.0,28.0,36.0,41.0,38.0,32.0,42.0,40.0,30.0,28.0,23.0,23.0,18.0,16.0,14.0,13.0,18.0,20.0,20.0,13.0,9.0,6.0,10.0,5.0,19.0 L83129,11.0,4.0,8.0,17.0,12.0,13.0,17.0,14.0,16.0,7.0,15.0,24.0,14.0,9.0,19.0,14.0,13.0,15.0,15.0,5.0,14.0,13.0,9.0,6.0,17.0,10.0,9.0,12.0,7.0,9.0,9.0,12.0,18.0,13.0,11.0,13.0,12.0,14.0,20.0,13.0,13.0,16.0,10.0,25.0,12.0,9.0,17.0,18.0,11.0,27.0,18.0,20.0,20.0,20.0,23.0,33.0,26.0,24.0,26.0,39.0,25.0,26.0,37.0,29.0,32.0,27.0,24.0,25.0,20.0,22.0,20.0,24.0,14.0,32.0,17.0,16.0,25.0,23.0,23.0,21.0,18.0,18.0,10.0,12.0,7.0,13.0,6.0,9.0,4.0,11.0,4.0,,2.0,4.0,2.0,4.0 L83131,78.0,84.0,86.0,91.0,98.0,92.0,112.0,95.0,116.0,128.0,112.0,133.0,123.0,151.0,149.0,148.0,127.0,119.0,127.0,117.0,126.0,77.0,107.0,113.0,112.0,110.0,128.0,138.0,125.0,121.0,119.0,136.0,157.0,162.0,149.0,153.0,152.0,154.0,138.0,127.0,153.0,130.0,144.0,158.0,157.0,135.0,170.0,128.0,125.0,161.0,150.0,161.0,164.0,174.0,202.0,168.0,189.0,181.0,177.0,204.0,193.0,184.0,205.0,192.0,191.0,187.0,162.0,187.0,165.0,176.0,168.0,171.0,191.0,139.0,171.0,156.0,166.0,180.0,180.0,155.0,147.0,154.0,110.0,101.0,85.0,85.0,82.0,67.0,70.0,58.0,51.0,45.0,31.0,32.0,27.0,78.0 L83134,11.0,7.0,12.0,9.0,18.0,18.0,13.0,19.0,21.0,14.0,15.0,18.0,26.0,16.0,23.0,27.0,18.0,16.0,19.0,23.0,13.0,15.0,19.0,16.0,17.0,13.0,16.0,16.0,17.0,14.0,14.0,19.0,13.0,25.0,15.0,23.0,21.0,16.0,21.0,18.0,19.0,14.0,20.0,22.0,25.0,30.0,27.0,24.0,21.0,25.0,24.0,28.0,27.0,35.0,32.0,37.0,34.0,33.0,42.0,29.0,41.0,28.0,51.0,37.0,33.0,37.0,30.0,30.0,21.0,25.0,24.0,43.0,30.0,34.0,30.0,24.0,27.0,32.0,23.0,26.0,31.0,16.0,25.0,15.0,17.0,14.0,20.0,13.0,17.0,11.0,5.0,8.0,1.0,3.0,4.0,7.0 L83136,13.0,20.0,20.0,20.0,22.0,22.0,25.0,22.0,27.0,26.0,26.0,29.0,27.0,31.0,38.0,31.0,24.0,28.0,26.0,29.0,24.0,23.0,26.0,30.0,20.0,30.0,16.0,24.0,27.0,33.0,26.0,33.0,33.0,30.0,30.0,40.0,39.0,33.0,40.0,33.0,23.0,38.0,35.0,40.0,40.0,31.0,34.0,30.0,36.0,30.0,44.0,33.0,37.0,37.0,44.0,42.0,48.0,33.0,44.0,48.0,40.0,39.0,46.0,38.0,38.0,38.0,46.0,49.0,58.0,38.0,47.0,48.0,47.0,57.0,32.0,40.0,50.0,51.0,41.0,39.0,52.0,21.0,26.0,21.0,21.0,22.0,21.0,22.0,19.0,14.0,11.0,17.0,9.0,4.0,7.0,16.0 L83137,39.0,48.0,33.0,48.0,69.0,46.0,50.0,56.0,43.0,54.0,64.0,73.0,68.0,84.0,69.0,82.0,75.0,66.0,73.0,67.0,52.0,48.0,51.0,42.0,53.0,53.0,42.0,46.0,44.0,75.0,70.0,55.0,72.0,49.0,79.0,69.0,82.0,68.0,64.0,54.0,74.0,78.0,78.0,55.0,70.0,76.0,50.0,60.0,59.0,71.0,58.0,67.0,95.0,81.0,84.0,97.0,92.0,93.0,131.0,104.0,111.0,110.0,112.0,103.0,115.0,109.0,120.0,114.0,77.0,97.0,95.0,83.0,84.0,86.0,80.0,94.0,103.0,94.0,87.0,74.0,69.0,71.0,66.0,42.0,50.0,52.0,41.0,30.0,36.0,26.0,27.0,14.0,18.0,14.0,12.0,26.0 L83143,18.0,17.0,17.0,26.0,26.0,27.0,22.0,18.0,22.0,23.0,34.0,21.0,28.0,28.0,30.0,29.0,29.0,24.0,23.0,22.0,12.0,11.0,15.0,20.0,15.0,31.0,32.0,21.0,35.0,29.0,28.0,42.0,26.0,35.0,33.0,45.0,32.0,39.0,41.0,35.0,40.0,35.0,36.0,35.0,32.0,41.0,35.0,25.0,38.0,31.0,29.0,29.0,32.0,32.0,45.0,31.0,33.0,28.0,36.0,31.0,20.0,26.0,29.0,30.0,21.0,23.0,23.0,24.0,19.0,23.0,22.0,20.0,13.0,19.0,18.0,18.0,14.0,22.0,16.0,15.0,15.0,11.0,16.0,5.0,15.0,5.0,8.0,4.0,4.0,6.0,4.0,2.0,,2.0,,4.0 L83146,14.0,28.0,19.0,25.0,23.0,27.0,22.0,24.0,26.0,30.0,26.0,25.0,28.0,22.0,31.0,19.0,17.0,14.0,21.0,13.0,18.0,16.0,22.0,15.0,10.0,14.0,28.0,30.0,30.0,36.0,35.0,31.0,27.0,31.0,38.0,31.0,29.0,36.0,37.0,27.0,39.0,38.0,28.0,37.0,34.0,32.0,38.0,24.0,40.0,23.0,33.0,26.0,37.0,33.0,37.0,40.0,31.0,27.0,51.0,40.0,35.0,43.0,50.0,43.0,52.0,28.0,43.0,41.0,34.0,32.0,31.0,38.0,37.0,32.0,36.0,41.0,34.0,28.0,28.0,29.0,22.0,31.0,18.0,16.0,13.0,20.0,13.0,7.0,8.0,3.0,8.0,12.0,7.0,5.0,3.0,8.0 L83147,66.0,62.0,62.0,61.0,54.0,66.0,68.0,54.0,61.0,53.0,57.0,54.0,59.0,65.0,64.0,62.0,63.0,77.0,75.0,66.0,96.0,98.0,112.0,107.0,136.0,154.0,180.0,168.0,154.0,138.0,140.0,134.0,136.0,145.0,141.0,123.0,120.0,129.0,102.0,110.0,99.0,81.0,70.0,87.0,85.0,72.0,79.0,55.0,70.0,75.0,71.0,68.0,66.0,76.0,86.0,74.0,77.0,96.0,93.0,86.0,71.0,73.0,75.0,77.0,58.0,63.0,56.0,47.0,63.0,44.0,50.0,47.0,53.0,47.0,42.0,61.0,36.0,44.0,55.0,37.0,32.0,17.0,45.0,24.0,22.0,18.0,17.0,13.0,14.0,14.0,13.0,14.0,14.0,11.0,5.0,14.0 L83148,4.0,8.0,8.0,10.0,12.0,14.0,14.0,20.0,19.0,17.0,23.0,15.0,18.0,24.0,22.0,6.0,20.0,21.0,14.0,17.0,12.0,11.0,17.0,7.0,15.0,6.0,14.0,8.0,14.0,6.0,10.0,9.0,19.0,11.0,19.0,12.0,10.0,19.0,14.0,14.0,19.0,19.0,18.0,11.0,16.0,19.0,21.0,20.0,18.0,25.0,25.0,17.0,25.0,31.0,36.0,34.0,31.0,18.0,25.0,31.0,32.0,35.0,45.0,35.0,34.0,40.0,41.0,28.0,34.0,32.0,33.0,31.0,34.0,28.0,31.0,42.0,35.0,31.0,43.0,30.0,31.0,27.0,17.0,22.0,22.0,18.0,16.0,20.0,10.0,10.0,10.0,6.0,4.0,4.0,3.0,10.0 L83607,25.0,22.0,25.0,30.0,26.0,41.0,26.0,36.0,33.0,20.0,32.0,41.0,45.0,37.0,26.0,28.0,29.0,39.0,30.0,37.0,29.0,36.0,20.0,27.0,20.0,27.0,26.0,29.0,22.0,34.0,42.0,41.0,39.0,43.0,42.0,34.0,42.0,32.0,56.0,30.0,36.0,38.0,40.0,32.0,36.0,44.0,25.0,32.0,28.0,29.0,31.0,39.0,38.0,42.0,57.0,44.0,40.0,39.0,52.0,42.0,46.0,47.0,44.0,48.0,31.0,47.0,35.0,36.0,37.0,42.0,28.0,35.0,24.0,19.0,30.0,25.0,20.0,32.0,25.0,10.0,16.0,24.0,20.0,11.0,12.0,10.0,12.0,5.0,6.0,4.0,4.0,4.0,6.0,2.0,2.0,2.0 L83616,8.0,14.0,9.0,6.0,10.0,12.0,6.0,15.0,11.0,3.0,11.0,15.0,11.0,12.0,10.0,16.0,14.0,15.0,12.0,10.0,8.0,11.0,9.0,15.0,11.0,10.0,7.0,9.0,7.0,7.0,8.0,5.0,4.0,7.0,11.0,13.0,13.0,13.0,16.0,11.0,15.0,12.0,21.0,18.0,11.0,16.0,17.0,19.0,17.0,15.0,16.0,23.0,17.0,15.0,23.0,14.0,26.0,25.0,24.0,12.0,23.0,15.0,15.0,17.0,14.0,17.0,18.0,13.0,18.0,15.0,17.0,10.0,14.0,19.0,12.0,13.0,8.0,14.0,13.0,9.0,16.0,10.0,10.0,5.0,9.0,11.0,5.0,6.0,9.0,2.0,1.0,4.0,1.0,3.0,3.0,2.0 L83624,37.0,43.0,56.0,49.0,53.0,48.0,39.0,49.0,43.0,38.0,49.0,47.0,47.0,44.0,46.0,49.0,41.0,50.0,50.0,41.0,46.0,39.0,45.0,41.0,40.0,51.0,49.0,59.0,63.0,66.0,64.0,49.0,60.0,71.0,62.0,63.0,71.0,66.0,61.0,69.0,65.0,58.0,68.0,43.0,51.0,48.0,47.0,41.0,45.0,40.0,39.0,40.0,39.0,52.0,50.0,51.0,36.0,44.0,51.0,38.0,53.0,37.0,34.0,52.0,53.0,39.0,29.0,31.0,25.0,28.0,24.0,23.0,20.0,28.0,21.0,29.0,36.0,33.0,28.0,20.0,15.0,17.0,15.0,7.0,11.0,9.0,13.0,14.0,10.0,4.0,7.0,1.0,3.0,1.0,2.0,5.0 L83628,21.0,23.0,26.0,22.0,27.0,17.0,22.0,27.0,31.0,36.0,18.0,36.0,28.0,38.0,37.0,28.0,30.0,38.0,28.0,22.0,26.0,28.0,29.0,30.0,32.0,43.0,31.0,53.0,47.0,42.0,33.0,48.0,31.0,49.0,39.0,50.0,56.0,30.0,38.0,53.0,42.0,38.0,39.0,35.0,33.0,42.0,39.0,28.0,31.0,44.0,36.0,43.0,42.0,42.0,55.0,46.0,47.0,45.0,60.0,45.0,47.0,55.0,49.0,57.0,46.0,39.0,37.0,49.0,39.0,48.0,47.0,39.0,47.0,36.0,34.0,43.0,40.0,44.0,53.0,32.0,34.0,26.0,29.0,30.0,20.0,29.0,13.0,15.0,18.0,17.0,10.0,10.0,10.0,6.0,10.0,11.0 L83639,9.0,7.0,15.0,14.0,10.0,10.0,10.0,12.0,23.0,10.0,14.0,14.0,16.0,10.0,16.0,15.0,13.0,9.0,13.0,12.0,6.0,7.0,8.0,6.0,16.0,7.0,7.0,7.0,8.0,8.0,8.0,9.0,12.0,18.0,10.0,14.0,12.0,11.0,14.0,17.0,15.0,14.0,10.0,16.0,18.0,23.0,18.0,12.0,24.0,18.0,12.0,15.0,22.0,22.0,22.0,22.0,26.0,22.0,25.0,27.0,30.0,29.0,17.0,21.0,19.0,18.0,27.0,23.0,27.0,29.0,27.0,17.0,23.0,16.0,23.0,18.0,30.0,28.0,44.0,27.0,15.0,18.0,19.0,15.0,11.0,12.0,11.0,11.0,12.0,7.0,5.0,5.0,3.0,1.0,2.0,6.0 L83646,35.0,44.0,36.0,54.0,49.0,52.0,49.0,50.0,50.0,57.0,55.0,59.0,55.0,65.0,52.0,61.0,47.0,56.0,61.0,41.0,57.0,43.0,55.0,43.0,60.0,56.0,71.0,66.0,69.0,77.0,62.0,82.0,74.0,70.0,78.0,63.0,68.0,79.0,77.0,64.0,67.0,63.0,64.0,66.0,66.0,65.0,56.0,54.0,45.0,56.0,62.0,62.0,67.0,67.0,41.0,56.0,69.0,71.0,58.0,46.0,64.0,64.0,46.0,50.0,55.0,49.0,37.0,41.0,42.0,31.0,36.0,23.0,21.0,24.0,36.0,23.0,23.0,25.0,23.0,19.0,10.0,13.0,18.0,19.0,19.0,12.0,9.0,7.0,4.0,10.0,7.0,2.0,4.0,2.0,,7.0 L83648,71.0,64.0,60.0,74.0,81.0,71.0,87.0,86.0,70.0,96.0,89.0,97.0,89.0,87.0,77.0,89.0,77.0,75.0,253.0,589.0,862.0,876.0,738.0,522.0,427.0,330.0,313.0,307.0,228.0,239.0,208.0,150.0,171.0,149.0,133.0,139.0,125.0,145.0,120.0,120.0,136.0,127.0,117.0,110.0,122.0,104.0,103.0,93.0,92.0,95.0,108.0,101.0,89.0,116.0,111.0,108.0,113.0,97.0,106.0,79.0,104.0,97.0,81.0,103.0,73.0,79.0,82.0,67.0,70.0,61.0,62.0,71.0,59.0,55.0,56.0,50.0,48.0,69.0,78.0,40.0,51.0,46.0,34.0,41.0,27.0,38.0,24.0,30.0,31.0,9.0,18.0,15.0,14.0,7.0,8.0,32.0 L83651,20.0,26.0,25.0,24.0,21.0,28.0,22.0,24.0,26.0,35.0,20.0,29.0,30.0,26.0,25.0,30.0,17.0,26.0,23.0,27.0,26.0,28.0,38.0,34.0,45.0,34.0,33.0,39.0,41.0,48.0,34.0,46.0,45.0,40.0,44.0,40.0,43.0,38.0,42.0,38.0,39.0,29.0,33.0,32.0,30.0,31.0,14.0,25.0,26.0,24.0,20.0,22.0,22.0,28.0,21.0,20.0,21.0,16.0,28.0,24.0,29.0,18.0,20.0,25.0,16.0,20.0,11.0,13.0,12.0,8.0,9.0,21.0,9.0,10.0,10.0,8.0,9.0,6.0,14.0,8.0,8.0,6.0,8.0,6.0,2.0,2.0,4.0,3.0,2.0,1.0,2.0,2.0,1.0,,1.0,1.0 L83655,46.0,45.0,40.0,33.0,41.0,51.0,37.0,50.0,53.0,63.0,46.0,61.0,63.0,46.0,42.0,48.0,44.0,49.0,37.0,36.0,32.0,33.0,46.0,36.0,43.0,61.0,85.0,75.0,57.0,67.0,82.0,84.0,87.0,96.0,80.0,79.0,74.0,70.0,85.0,76.0,66.0,80.0,52.0,57.0,47.0,37.0,40.0,34.0,32.0,46.0,36.0,53.0,38.0,42.0,42.0,31.0,42.0,44.0,38.0,48.0,48.0,39.0,36.0,35.0,36.0,30.0,27.0,35.0,27.0,20.0,22.0,15.0,11.0,17.0,14.0,16.0,12.0,15.0,17.0,16.0,11.0,5.0,9.0,8.0,9.0,14.0,4.0,5.0,8.0,2.0,3.0,2.0,2.0,,4.0,4.0 L83657,21.0,19.0,13.0,12.0,17.0,14.0,15.0,15.0,24.0,22.0,24.0,22.0,22.0,32.0,25.0,27.0,28.0,29.0,12.0,18.0,15.0,25.0,23.0,18.0,25.0,16.0,17.0,24.0,17.0,37.0,22.0,29.0,28.0,22.0,24.0,28.0,39.0,35.0,28.0,25.0,23.0,34.0,26.0,39.0,25.0,28.0,25.0,30.0,40.0,30.0,45.0,43.0,27.0,46.0,46.0,36.0,38.0,48.0,52.0,58.0,50.0,47.0,49.0,51.0,53.0,42.0,35.0,50.0,47.0,51.0,42.0,51.0,49.0,39.0,37.0,41.0,45.0,54.0,37.0,33.0,32.0,31.0,23.0,21.0,24.0,21.0,17.0,15.0,14.0,16.0,10.0,8.0,5.0,6.0,5.0,19.0 L83663,11.0,12.0,11.0,13.0,11.0,13.0,13.0,9.0,14.0,7.0,13.0,10.0,10.0,10.0,14.0,15.0,20.0,11.0,15.0,22.0,7.0,13.0,18.0,16.0,9.0,9.0,15.0,8.0,8.0,7.0,7.0,3.0,14.0,16.0,10.0,13.0,11.0,12.0,18.0,11.0,11.0,15.0,14.0,13.0,18.0,17.0,12.0,14.0,9.0,10.0,16.0,22.0,22.0,22.0,24.0,29.0,23.0,28.0,23.0,25.0,33.0,21.0,29.0,30.0,20.0,36.0,33.0,28.0,22.0,31.0,18.0,29.0,18.0,16.0,24.0,30.0,19.0,22.0,28.0,15.0,24.0,17.0,11.0,13.0,14.0,9.0,11.0,10.0,10.0,5.0,5.0,3.0,7.0,4.0,3.0,1.0 L83666,10.0,26.0,24.0,31.0,16.0,25.0,26.0,19.0,25.0,26.0,25.0,25.0,27.0,32.0,31.0,23.0,30.0,22.0,23.0,17.0,22.0,16.0,17.0,17.0,19.0,27.0,21.0,31.0,13.0,31.0,31.0,23.0,28.0,40.0,36.0,33.0,33.0,36.0,29.0,36.0,24.0,27.0,21.0,17.0,30.0,23.0,21.0,20.0,29.0,16.0,18.0,25.0,18.0,24.0,36.0,26.0,28.0,31.0,26.0,25.0,27.0,26.0,36.0,32.0,27.0,21.0,24.0,22.0,28.0,17.0,27.0,17.0,18.0,25.0,19.0,12.0,11.0,16.0,17.0,17.0,8.0,13.0,8.0,9.0,6.0,7.0,8.0,6.0,4.0,9.0,1.0,2.0,5.0,,2.0,4.0 L83673,,,,,,,,,,,,,,,,,,3.0,4.0,7.0,2.0,9.0,6.0,1.0,4.0,2.0,2.0,4.0,1.0,8.0,1.0,3.0,5.0,3.0,3.0,5.0,1.0,3.0,6.0,4.0,4.0,4.0,2.0,4.0,3.0,3.0,3.0,4.0,,5.0,3.0,2.0,2.0,2.0,4.0,1.0,2.0,,5.0,,2.0,,,1.0,,2.0,,,,,,1.0,,,,,,,,,,,,,,,,,,,,,,,, Y00568,17.0,18.0,16.0,18.0,27.0,25.0,25.0,28.0,25.0,29.0,32.0,25.0,18.0,23.0,28.0,19.0,25.0,22.0,46.0,50.0,39.0,33.0,36.0,56.0,82.0,55.0,59.0,58.0,45.0,57.0,49.0,41.0,39.0,40.0,36.0,45.0,35.0,33.0,31.0,27.0,33.0,41.0,41.0,32.0,44.0,38.0,41.0,25.0,26.0,31.0,23.0,20.0,21.0,23.0,23.0,26.0,21.0,19.0,31.0,24.0,24.0,18.0,23.0,16.0,19.0,21.0,15.0,16.0,8.0,11.0,11.0,14.0,10.0,8.0,9.0,13.0,11.0,8.0,12.0,14.0,10.0,10.0,3.0,10.0,7.0,4.0,2.0,7.0,8.0,5.0,5.0,4.0,3.0,3.0,3.0,4.0 Y02633,21.0,30.0,21.0,33.0,26.0,28.0,29.0,24.0,23.0,31.0,31.0,33.0,35.0,38.0,29.0,26.0,42.0,34.0,30.0,21.0,16.0,12.0,28.0,18.0,14.0,23.0,32.0,19.0,29.0,41.0,28.0,35.0,29.0,31.0,40.0,37.0,33.0,40.0,38.0,37.0,31.0,31.0,38.0,34.0,33.0,38.0,34.0,41.0,33.0,35.0,41.0,31.0,45.0,37.0,40.0,42.0,52.0,42.0,42.0,61.0,60.0,58.0,53.0,58.0,43.0,47.0,36.0,44.0,37.0,35.0,38.0,41.0,36.0,32.0,36.0,29.0,36.0,37.0,38.0,23.0,30.0,24.0,23.0,17.0,20.0,14.0,14.0,7.0,7.0,5.0,8.0,8.0,5.0,4.0,8.0,6.0 Y04662,50.0,67.0,64.0,77.0,61.0,48.0,55.0,53.0,60.0,55.0,52.0,39.0,62.0,55.0,26.0,44.0,35.0,27.0,24.0,20.0,17.0,15.0,28.0,26.0,39.0,50.0,57.0,76.0,78.0,67.0,69.0,79.0,74.0,90.0,94.0,82.0,77.0,65.0,79.0,65.0,60.0,57.0,54.0,52.0,41.0,47.0,31.0,29.0,21.0,28.0,26.0,25.0,21.0,29.0,22.0,20.0,24.0,14.0,19.0,14.0,16.0,9.0,13.0,12.0,17.0,12.0,12.0,15.0,11.0,15.0,13.0,9.0,4.0,7.0,6.0,4.0,4.0,4.0,1.0,3.0,3.0,2.0,1.0,2.0,2.0,2.0,,,,2.0,2.0,,,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 C82076,22.0,17.0,21.0,25.0,20.0,25.0,21.0,30.0,37.0,31.0,20.0,27.0,48.0,38.0,52.0,51.0,56.0,53.0,39.0,37.0,26.0,25.0,26.0,28.0,25.0,26.0,38.0,30.0,25.0,29.0,27.0,18.0,33.0,20.0,31.0,32.0,26.0,31.0,37.0,39.0,33.0,46.0,29.0,43.0,48.0,35.0,30.0,44.0,44.0,44.0,53.0,48.0,52.0,56.0,62.0,67.0,54.0,59.0,56.0,61.0,47.0,67.0,60.0,50.0,57.0,46.0,50.0,50.0,53.0,47.0,46.0,40.0,53.0,45.0,47.0,40.0,47.0,44.0,44.0,43.0,38.0,27.0,32.0,21.0,25.0,20.0,20.0,9.0,18.0,17.0,7.0,10.0,6.0,8.0,5.0,7.0 C83001,73.0,95.0,102.0,104.0,110.0,92.0,104.0,111.0,101.0,120.0,103.0,85.0,113.0,97.0,115.0,112.0,112.0,98.0,318.0,663.0,856.0,854.0,557.0,537.0,423.0,338.0,319.0,343.0,289.0,262.0,269.0,225.0,212.0,207.0,211.0,185.0,167.0,178.0,153.0,164.0,154.0,138.0,153.0,131.0,140.0,132.0,135.0,107.0,96.0,111.0,101.0,112.0,129.0,122.0,119.0,113.0,115.0,111.0,114.0,115.0,121.0,107.0,124.0,94.0,99.0,88.0,86.0,91.0,75.0,69.0,78.0,94.0,61.0,84.0,79.0,57.0,60.0,71.0,74.0,52.0,52.0,54.0,47.0,30.0,25.0,40.0,31.0,28.0,35.0,31.0,17.0,19.0,10.0,11.0,10.0,14.0 C83002,39.0,47.0,51.0,47.0,58.0,41.0,44.0,53.0,56.0,56.0,53.0,59.0,62.0,46.0,50.0,52.0,61.0,51.0,45.0,31.0,21.0,33.0,41.0,52.0,50.0,40.0,51.0,43.0,59.0,63.0,42.0,75.0,65.0,60.0,58.0,64.0,67.0,75.0,55.0,54.0,50.0,64.0,61.0,49.0,66.0,67.0,52.0,58.0,45.0,39.0,57.0,44.0,73.0,68.0,65.0,56.0,62.0,85.0,63.0,78.0,80.0,79.0,75.0,68.0,66.0,77.0,70.0,60.0,63.0,51.0,51.0,42.0,47.0,54.0,55.0,61.0,57.0,74.0,64.0,47.0,44.0,44.0,36.0,42.0,36.0,32.0,45.0,25.0,23.0,21.0,13.0,10.0,12.0,6.0,9.0,31.0 C83003,67.0,94.0,94.0,84.0,101.0,109.0,98.0,141.0,118.0,142.0,113.0,155.0,140.0,124.0,130.0,142.0,125.0,100.0,98.0,100.0,76.0,76.0,97.0,100.0,107.0,111.0,144.0,122.0,136.0,127.0,149.0,164.0,183.0,166.0,165.0,183.0,163.0,179.0,166.0,158.0,164.0,148.0,162.0,138.0,137.0,142.0,144.0,123.0,134.0,127.0,135.0,127.0,129.0,141.0,137.0,130.0,136.0,137.0,135.0,131.0,129.0,148.0,129.0,110.0,124.0,119.0,108.0,89.0,89.0,87.0,86.0,87.0,87.0,110.0,81.0,103.0,71.0,104.0,93.0,82.0,65.0,70.0,75.0,59.0,63.0,47.0,50.0,44.0,36.0,31.0,23.0,22.0,19.0,13.0,14.0,24.0 C83004,35.0,32.0,49.0,55.0,40.0,53.0,44.0,58.0,53.0,64.0,71.0,70.0,66.0,52.0,76.0,71.0,68.0,66.0,74.0,74.0,69.0,58.0,61.0,58.0,58.0,67.0,64.0,66.0,68.0,66.0,73.0,77.0,67.0,94.0,88.0,86.0,69.0,87.0,70.0,81.0,85.0,78.0,72.0,77.0,78.0,67.0,86.0,64.0,71.0,84.0,81.0,88.0,81.0,75.0,101.0,90.0,92.0,74.0,82.0,84.0,74.0,69.0,80.0,69.0,60.0,55.0,67.0,57.0,68.0,54.0,52.0,46.0,42.0,50.0,49.0,48.0,46.0,52.0,62.0,35.0,35.0,47.0,36.0,33.0,28.0,37.0,25.0,29.0,21.0,19.0,15.0,8.0,9.0,10.0,7.0,16.0 C83005,23.0,27.0,30.0,27.0,22.0,31.0,29.0,36.0,31.0,53.0,44.0,39.0,41.0,44.0,47.0,40.0,40.0,41.0,35.0,33.0,28.0,34.0,24.0,20.0,31.0,34.0,28.0,28.0,23.0,29.0,30.0,40.0,33.0,42.0,38.0,36.0,42.0,41.0,36.0,45.0,35.0,37.0,37.0,37.0,29.0,40.0,46.0,30.0,39.0,39.0,40.0,48.0,50.0,57.0,64.0,54.0,64.0,54.0,57.0,66.0,71.0,86.0,57.0,58.0,66.0,46.0,61.0,64.0,52.0,66.0,49.0,52.0,62.0,56.0,50.0,61.0,52.0,54.0,55.0,43.0,40.0,51.0,39.0,43.0,30.0,33.0,25.0,25.0,29.0,14.0,10.0,10.0,9.0,9.0,4.0,17.0 C83007,88.0,96.0,97.0,105.0,115.0,97.0,107.0,129.0,127.0,140.0,145.0,159.0,156.0,158.0,168.0,177.0,169.0,169.0,145.0,113.0,88.0,117.0,105.0,109.0,115.0,142.0,120.0,117.0,150.0,110.0,136.0,140.0,155.0,155.0,163.0,170.0,157.0,141.0,169.0,174.0,178.0,166.0,200.0,171.0,202.0,190.0,174.0,150.0,181.0,167.0,185.0,187.0,185.0,210.0,227.0,223.0,188.0,178.0,206.0,219.0,201.0,196.0,191.0,186.0,174.0,167.0,180.0,172.0,157.0,145.0,135.0,126.0,147.0,153.0,166.0,141.0,145.0,174.0,216.0,136.0,155.0,141.0,92.0,104.0,90.0,93.0,76.0,63.0,70.0,90.0,69.0,42.0,38.0,30.0,23.0,74.0 C83008,42.0,49.0,46.0,34.0,45.0,50.0,46.0,51.0,49.0,62.0,73.0,53.0,55.0,67.0,65.0,53.0,55.0,58.0,45.0,37.0,46.0,47.0,37.0,39.0,40.0,49.0,40.0,42.0,50.0,43.0,59.0,63.0,55.0,53.0,57.0,50.0,57.0,62.0,58.0,62.0,72.0,53.0,46.0,48.0,58.0,55.0,58.0,39.0,33.0,35.0,43.0,41.0,47.0,53.0,46.0,46.0,44.0,38.0,33.0,46.0,47.0,44.0,35.0,33.0,30.0,36.0,31.0,37.0,25.0,25.0,35.0,32.0,27.0,31.0,34.0,30.0,30.0,35.0,31.0,27.0,21.0,22.0,25.0,14.0,17.0,19.0,14.0,12.0,7.0,4.0,8.0,8.0,4.0,7.0,7.0,18.0 C83009,42.0,33.0,40.0,45.0,53.0,47.0,55.0,59.0,43.0,68.0,45.0,63.0,61.0,47.0,52.0,59.0,58.0,52.0,66.0,53.0,54.0,50.0,39.0,36.0,42.0,68.0,48.0,59.0,43.0,56.0,74.0,79.0,61.0,61.0,61.0,62.0,71.0,82.0,64.0,51.0,58.0,77.0,76.0,66.0,63.0,61.0,53.0,48.0,56.0,49.0,51.0,49.0,43.0,49.0,63.0,60.0,42.0,61.0,65.0,59.0,59.0,63.0,55.0,48.0,51.0,46.0,41.0,38.0,40.0,43.0,43.0,33.0,46.0,35.0,39.0,28.0,39.0,29.0,34.0,28.0,32.0,29.0,28.0,12.0,27.0,15.0,18.0,13.0,18.0,13.0,11.0,9.0,7.0,9.0,9.0,14.0 C83010,72.0,86.0,91.0,78.0,84.0,77.0,99.0,129.0,132.0,147.0,134.0,131.0,160.0,135.0,119.0,128.0,124.0,111.0,107.0,113.0,111.0,85.0,120.0,104.0,128.0,108.0,144.0,130.0,127.0,133.0,140.0,100.0,153.0,157.0,163.0,178.0,154.0,170.0,156.0,149.0,151.0,150.0,157.0,127.0,119.0,142.0,118.0,108.0,100.0,133.0,102.0,105.0,117.0,108.0,99.0,102.0,132.0,117.0,129.0,111.0,113.0,106.0,97.0,114.0,88.0,86.0,86.0,92.0,98.0,86.0,74.0,73.0,67.0,85.0,69.0,70.0,69.0,70.0,74.0,62.0,57.0,51.0,42.0,42.0,35.0,34.0,33.0,32.0,26.0,20.0,26.0,19.0,19.0,11.0,14.0,30.0 C83011,36.0,66.0,33.0,57.0,57.0,54.0,51.0,57.0,70.0,77.0,72.0,67.0,80.0,74.0,74.0,70.0,80.0,87.0,60.0,48.0,68.0,47.0,44.0,55.0,51.0,61.0,55.0,58.0,53.0,87.0,68.0,86.0,74.0,81.0,89.0,67.0,78.0,86.0,80.0,77.0,79.0,61.0,72.0,72.0,73.0,74.0,77.0,77.0,65.0,69.0,84.0,89.0,85.0,101.0,93.0,98.0,100.0,102.0,91.0,105.0,90.0,108.0,81.0,105.0,85.0,81.0,78.0,78.0,79.0,73.0,62.0,53.0,80.0,83.0,60.0,81.0,74.0,81.0,91.0,53.0,52.0,55.0,46.0,43.0,38.0,48.0,32.0,34.0,32.0,26.0,22.0,18.0,11.0,13.0,5.0,19.0 C83013,30.0,21.0,35.0,24.0,34.0,38.0,42.0,40.0,39.0,45.0,45.0,39.0,35.0,49.0,38.0,34.0,47.0,33.0,25.0,38.0,32.0,32.0,29.0,32.0,30.0,32.0,32.0,34.0,34.0,32.0,50.0,44.0,37.0,53.0,51.0,47.0,37.0,45.0,45.0,33.0,55.0,45.0,41.0,52.0,40.0,45.0,31.0,42.0,38.0,47.0,36.0,52.0,59.0,60.0,74.0,69.0,67.0,89.0,72.0,88.0,61.0,64.0,67.0,64.0,54.0,50.0,62.0,59.0,71.0,52.0,46.0,41.0,55.0,54.0,45.0,57.0,48.0,68.0,58.0,35.0,49.0,57.0,51.0,38.0,30.0,33.0,27.0,21.0,26.0,18.0,11.0,16.0,11.0,13.0,1.0,12.0 C83014,28.0,46.0,47.0,31.0,49.0,45.0,43.0,45.0,64.0,68.0,67.0,79.0,66.0,62.0,69.0,77.0,71.0,52.0,64.0,47.0,47.0,42.0,47.0,50.0,62.0,35.0,62.0,70.0,52.0,64.0,69.0,64.0,86.0,83.0,66.0,83.0,63.0,85.0,87.0,67.0,87.0,69.0,74.0,72.0,63.0,77.0,54.0,72.0,59.0,70.0,58.0,57.0,64.0,68.0,70.0,68.0,75.0,65.0,69.0,80.0,64.0,67.0,72.0,73.0,61.0,53.0,63.0,51.0,50.0,47.0,57.0,45.0,50.0,42.0,51.0,64.0,42.0,47.0,40.0,43.0,42.0,47.0,41.0,19.0,34.0,32.0,12.0,35.0,21.0,19.0,14.0,12.0,8.0,8.0,7.0,19.0 C83015,40.0,28.0,36.0,32.0,35.0,41.0,31.0,40.0,33.0,43.0,33.0,46.0,40.0,49.0,47.0,47.0,41.0,42.0,36.0,25.0,18.0,34.0,35.0,25.0,36.0,28.0,46.0,35.0,46.0,38.0,44.0,41.0,52.0,41.0,50.0,55.0,47.0,43.0,52.0,40.0,40.0,56.0,50.0,48.0,35.0,32.0,39.0,38.0,49.0,51.0,47.0,46.0,49.0,68.0,54.0,70.0,58.0,62.0,75.0,74.0,80.0,76.0,75.0,67.0,82.0,66.0,70.0,62.0,69.0,54.0,64.0,59.0,59.0,60.0,58.0,58.0,45.0,78.0,62.0,53.0,44.0,42.0,39.0,30.0,30.0,33.0,38.0,31.0,13.0,12.0,10.0,15.0,4.0,12.0,10.0,17.0 C83018,54.0,40.0,50.0,64.0,54.0,61.0,63.0,70.0,83.0,83.0,79.0,97.0,90.0,68.0,82.0,75.0,83.0,80.0,74.0,48.0,68.0,66.0,67.0,71.0,50.0,72.0,59.0,83.0,71.0,81.0,86.0,76.0,91.0,82.0,88.0,94.0,84.0,90.0,87.0,77.0,99.0,78.0,80.0,72.0,72.0,70.0,62.0,67.0,62.0,52.0,70.0,74.0,93.0,78.0,99.0,80.0,90.0,87.0,95.0,93.0,72.0,71.0,75.0,73.0,63.0,75.0,73.0,49.0,79.0,60.0,55.0,63.0,59.0,49.0,41.0,44.0,62.0,62.0,66.0,47.0,41.0,38.0,34.0,34.0,35.0,35.0,25.0,22.0,25.0,17.0,20.0,8.0,4.0,8.0,10.0,12.0 C83019,73.0,74.0,69.0,92.0,76.0,79.0,102.0,102.0,91.0,84.0,96.0,97.0,99.0,104.0,95.0,116.0,104.0,98.0,81.0,118.0,91.0,100.0,101.0,75.0,109.0,94.0,105.0,107.0,116.0,104.0,98.0,119.0,107.0,93.0,126.0,104.0,107.0,118.0,135.0,111.0,100.0,109.0,84.0,95.0,114.0,105.0,111.0,117.0,87.0,108.0,129.0,130.0,152.0,162.0,148.0,158.0,168.0,196.0,183.0,193.0,173.0,184.0,204.0,212.0,191.0,193.0,195.0,181.0,179.0,167.0,151.0,158.0,173.0,161.0,162.0,181.0,151.0,167.0,174.0,121.0,129.0,130.0,99.0,71.0,66.0,62.0,75.0,48.0,55.0,38.0,28.0,26.0,20.0,22.0,16.0,33.0 C83020,30.0,30.0,31.0,35.0,44.0,45.0,55.0,29.0,48.0,52.0,48.0,51.0,60.0,61.0,69.0,69.0,55.0,63.0,67.0,44.0,47.0,43.0,40.0,50.0,38.0,38.0,52.0,39.0,43.0,43.0,41.0,52.0,39.0,52.0,56.0,60.0,49.0,55.0,65.0,53.0,52.0,63.0,52.0,45.0,51.0,67.0,55.0,51.0,56.0,59.0,67.0,69.0,64.0,71.0,76.0,101.0,75.0,107.0,88.0,100.0,91.0,98.0,90.0,91.0,90.0,80.0,75.0,73.0,64.0,63.0,67.0,61.0,77.0,67.0,72.0,57.0,60.0,68.0,57.0,53.0,69.0,56.0,32.0,37.0,35.0,32.0,23.0,19.0,19.0,16.0,18.0,8.0,11.0,5.0,8.0,8.0 C83022,84.0,92.0,112.0,121.0,115.0,118.0,110.0,114.0,111.0,146.0,140.0,141.0,138.0,152.0,129.0,122.0,135.0,130.0,121.0,110.0,105.0,87.0,97.0,115.0,101.0,126.0,109.0,133.0,123.0,129.0,126.0,151.0,138.0,136.0,128.0,148.0,151.0,169.0,150.0,161.0,155.0,145.0,166.0,161.0,147.0,150.0,126.0,140.0,119.0,132.0,134.0,134.0,165.0,150.0,172.0,155.0,149.0,141.0,159.0,148.0,128.0,152.0,127.0,131.0,131.0,114.0,112.0,117.0,116.0,114.0,98.0,96.0,111.0,120.0,91.0,99.0,132.0,124.0,123.0,92.0,103.0,80.0,77.0,80.0,72.0,51.0,60.0,51.0,57.0,44.0,38.0,16.0,23.0,20.0,19.0,34.0 C83023,56.0,53.0,47.0,73.0,68.0,86.0,85.0,70.0,92.0,101.0,99.0,85.0,108.0,113.0,117.0,123.0,112.0,91.0,108.0,97.0,77.0,94.0,80.0,82.0,85.0,89.0,103.0,75.0,79.0,81.0,93.0,107.0,99.0,86.0,117.0,87.0,117.0,128.0,96.0,134.0,109.0,114.0,114.0,113.0,95.0,93.0,103.0,98.0,89.0,106.0,96.0,107.0,123.0,139.0,130.0,151.0,125.0,148.0,155.0,135.0,135.0,132.0,132.0,126.0,115.0,120.0,109.0,90.0,116.0,109.0,92.0,105.0,103.0,86.0,90.0,113.0,98.0,112.0,114.0,84.0,92.0,89.0,73.0,59.0,50.0,57.0,52.0,47.0,44.0,27.0,29.0,18.0,32.0,10.0,10.0,26.0 C83024,10.0,6.0,13.0,17.0,11.0,12.0,17.0,18.0,15.0,15.0,12.0,16.0,25.0,14.0,23.0,15.0,18.0,23.0,13.0,20.0,18.0,18.0,18.0,13.0,19.0,15.0,14.0,17.0,17.0,14.0,17.0,17.0,24.0,12.0,21.0,24.0,22.0,22.0,18.0,23.0,20.0,15.0,21.0,21.0,32.0,25.0,16.0,16.0,20.0,18.0,23.0,28.0,32.0,30.0,37.0,35.0,47.0,33.0,39.0,37.0,32.0,37.0,32.0,24.0,32.0,23.0,35.0,39.0,32.0,31.0,31.0,20.0,32.0,20.0,28.0,22.0,30.0,27.0,21.0,21.0,15.0,17.0,16.0,7.0,10.0,9.0,8.0,3.0,9.0,3.0,4.0,5.0,5.0,3.0,,5.0 C83025,68.0,84.0,90.0,82.0,108.0,89.0,93.0,114.0,105.0,114.0,112.0,110.0,112.0,108.0,103.0,100.0,100.0,123.0,94.0,88.0,79.0,76.0,88.0,74.0,95.0,99.0,95.0,111.0,105.0,121.0,106.0,118.0,113.0,140.0,150.0,115.0,127.0,146.0,130.0,132.0,141.0,141.0,121.0,117.0,110.0,123.0,109.0,108.0,107.0,103.0,101.0,110.0,121.0,145.0,123.0,132.0,144.0,125.0,134.0,121.0,138.0,114.0,127.0,125.0,124.0,109.0,116.0,110.0,99.0,85.0,103.0,101.0,97.0,105.0,97.0,111.0,84.0,124.0,95.0,87.0,87.0,77.0,62.0,78.0,55.0,62.0,52.0,40.0,34.0,27.0,22.0,31.0,22.0,16.0,17.0,28.0 C83026,71.0,62.0,96.0,102.0,89.0,91.0,111.0,100.0,117.0,123.0,129.0,115.0,133.0,136.0,137.0,121.0,144.0,137.0,140.0,92.0,93.0,104.0,108.0,89.0,101.0,130.0,102.0,108.0,103.0,116.0,114.0,104.0,118.0,125.0,121.0,136.0,133.0,130.0,127.0,124.0,141.0,148.0,166.0,145.0,180.0,142.0,129.0,140.0,147.0,132.0,163.0,168.0,162.0,190.0,172.0,211.0,206.0,193.0,181.0,198.0,188.0,189.0,185.0,181.0,189.0,166.0,184.0,189.0,176.0,173.0,180.0,167.0,151.0,146.0,144.0,170.0,168.0,179.0,167.0,125.0,132.0,106.0,97.0,99.0,73.0,71.0,67.0,54.0,51.0,48.0,42.0,39.0,26.0,30.0,21.0,43.0 C83027,32.0,38.0,54.0,48.0,32.0,45.0,43.0,40.0,55.0,46.0,45.0,44.0,53.0,53.0,50.0,57.0,60.0,51.0,56.0,52.0,35.0,37.0,39.0,54.0,45.0,46.0,42.0,52.0,49.0,48.0,58.0,56.0,49.0,58.0,60.0,50.0,73.0,58.0,53.0,62.0,50.0,62.0,54.0,53.0,57.0,52.0,39.0,33.0,52.0,45.0,65.0,59.0,80.0,82.0,71.0,78.0,95.0,78.0,93.0,84.0,109.0,86.0,89.0,92.0,77.0,86.0,75.0,77.0,89.0,83.0,83.0,57.0,79.0,49.0,75.0,85.0,84.0,88.0,61.0,64.0,62.0,61.0,49.0,56.0,37.0,38.0,33.0,38.0,26.0,23.0,26.0,14.0,17.0,10.0,12.0,16.0 C83028,29.0,25.0,37.0,33.0,26.0,41.0,39.0,38.0,37.0,44.0,39.0,33.0,44.0,54.0,48.0,47.0,33.0,39.0,49.0,40.0,22.0,28.0,36.0,37.0,38.0,46.0,51.0,46.0,46.0,30.0,51.0,43.0,42.0,52.0,40.0,36.0,49.0,44.0,43.0,51.0,30.0,42.0,40.0,47.0,41.0,45.0,37.0,32.0,37.0,45.0,33.0,76.0,52.0,57.0,63.0,52.0,54.0,68.0,63.0,72.0,54.0,59.0,67.0,65.0,44.0,54.0,46.0,56.0,48.0,43.0,52.0,38.0,56.0,38.0,37.0,40.0,52.0,64.0,47.0,36.0,40.0,45.0,30.0,33.0,23.0,32.0,24.0,20.0,25.0,19.0,17.0,12.0,10.0,18.0,6.0,20.0 C83029,11.0,13.0,18.0,16.0,18.0,17.0,17.0,27.0,18.0,32.0,21.0,23.0,39.0,37.0,27.0,35.0,30.0,36.0,21.0,19.0,22.0,14.0,21.0,19.0,20.0,17.0,18.0,16.0,23.0,26.0,21.0,20.0,20.0,37.0,40.0,26.0,34.0,26.0,20.0,23.0,35.0,32.0,27.0,25.0,28.0,25.0,32.0,28.0,28.0,18.0,31.0,35.0,31.0,31.0,39.0,53.0,35.0,39.0,48.0,35.0,41.0,29.0,39.0,30.0,29.0,27.0,31.0,27.0,23.0,24.0,28.0,24.0,21.0,21.0,28.0,30.0,33.0,23.0,34.0,21.0,32.0,29.0,15.0,17.0,21.0,12.0,10.0,19.0,7.0,12.0,6.0,7.0,4.0,5.0,2.0,13.0 C83030,26.0,22.0,22.0,32.0,10.0,20.0,26.0,27.0,33.0,31.0,33.0,32.0,31.0,32.0,29.0,23.0,25.0,29.0,21.0,15.0,18.0,21.0,22.0,24.0,26.0,30.0,29.0,28.0,17.0,20.0,23.0,32.0,31.0,38.0,23.0,31.0,28.0,24.0,33.0,24.0,31.0,21.0,25.0,25.0,23.0,31.0,23.0,28.0,26.0,22.0,29.0,34.0,26.0,48.0,48.0,60.0,46.0,47.0,50.0,45.0,50.0,41.0,58.0,37.0,41.0,37.0,44.0,49.0,34.0,28.0,39.0,27.0,23.0,39.0,41.0,40.0,42.0,27.0,31.0,19.0,31.0,20.0,15.0,26.0,15.0,21.0,19.0,12.0,12.0,8.0,3.0,4.0,4.0,3.0,1.0,9.0 C83031,36.0,42.0,51.0,56.0,53.0,54.0,60.0,49.0,58.0,63.0,62.0,57.0,61.0,59.0,57.0,73.0,59.0,57.0,71.0,58.0,40.0,41.0,45.0,26.0,46.0,44.0,53.0,41.0,53.0,43.0,64.0,58.0,58.0,64.0,63.0,51.0,78.0,70.0,65.0,73.0,71.0,70.0,83.0,74.0,79.0,73.0,88.0,55.0,64.0,69.0,72.0,57.0,80.0,80.0,82.0,83.0,83.0,81.0,98.0,121.0,94.0,108.0,91.0,101.0,97.0,101.0,94.0,85.0,85.0,73.0,87.0,97.0,87.0,82.0,91.0,106.0,90.0,113.0,108.0,94.0,93.0,66.0,62.0,53.0,61.0,50.0,43.0,44.0,43.0,42.0,36.0,21.0,25.0,23.0,11.0,24.0 C83032,24.0,19.0,17.0,23.0,26.0,20.0,19.0,22.0,29.0,41.0,34.0,25.0,38.0,32.0,40.0,37.0,42.0,35.0,39.0,31.0,19.0,32.0,18.0,29.0,19.0,16.0,30.0,23.0,29.0,33.0,28.0,28.0,26.0,32.0,32.0,39.0,33.0,31.0,28.0,43.0,41.0,26.0,34.0,25.0,35.0,31.0,23.0,30.0,37.0,25.0,35.0,30.0,37.0,51.0,44.0,49.0,70.0,62.0,62.0,57.0,64.0,68.0,61.0,61.0,65.0,59.0,58.0,63.0,55.0,68.0,62.0,56.0,63.0,57.0,61.0,67.0,58.0,50.0,76.0,36.0,51.0,37.0,29.0,49.0,25.0,24.0,32.0,22.0,17.0,21.0,19.0,9.0,8.0,6.0,5.0,18.0 C83033,10.0,12.0,13.0,16.0,15.0,19.0,8.0,15.0,15.0,20.0,16.0,15.0,21.0,24.0,20.0,13.0,21.0,27.0,18.0,18.0,14.0,14.0,12.0,12.0,16.0,12.0,16.0,16.0,17.0,9.0,15.0,16.0,12.0,20.0,21.0,28.0,24.0,23.0,23.0,21.0,16.0,22.0,20.0,22.0,12.0,18.0,24.0,17.0,12.0,25.0,24.0,27.0,19.0,26.0,34.0,28.0,31.0,22.0,41.0,36.0,31.0,41.0,39.0,30.0,22.0,35.0,33.0,25.0,34.0,24.0,22.0,25.0,18.0,15.0,35.0,25.0,35.0,24.0,29.0,16.0,23.0,27.0,22.0,10.0,13.0,16.0,9.0,13.0,9.0,12.0,14.0,2.0,2.0,1.0,5.0,4.0 C83035,53.0,34.0,50.0,61.0,60.0,61.0,59.0,67.0,73.0,91.0,67.0,71.0,74.0,71.0,74.0,78.0,87.0,87.0,66.0,58.0,55.0,54.0,59.0,75.0,58.0,71.0,72.0,66.0,57.0,67.0,77.0,71.0,71.0,84.0,85.0,61.0,80.0,85.0,80.0,68.0,83.0,86.0,69.0,68.0,85.0,85.0,84.0,89.0,73.0,86.0,82.0,70.0,91.0,85.0,91.0,98.0,89.0,83.0,94.0,79.0,94.0,77.0,86.0,72.0,70.0,89.0,75.0,68.0,51.0,54.0,62.0,85.0,68.0,71.0,75.0,70.0,71.0,82.0,69.0,59.0,65.0,53.0,60.0,32.0,39.0,31.0,38.0,32.0,28.0,30.0,19.0,22.0,11.0,14.0,9.0,37.0 C83036,25.0,43.0,22.0,46.0,34.0,36.0,37.0,34.0,48.0,47.0,53.0,53.0,57.0,45.0,36.0,43.0,31.0,34.0,34.0,33.0,26.0,30.0,31.0,48.0,31.0,31.0,44.0,31.0,48.0,30.0,40.0,41.0,56.0,44.0,42.0,52.0,43.0,46.0,47.0,44.0,52.0,46.0,41.0,44.0,55.0,43.0,38.0,47.0,60.0,44.0,41.0,58.0,53.0,41.0,64.0,66.0,72.0,63.0,53.0,67.0,75.0,87.0,64.0,72.0,55.0,51.0,56.0,62.0,69.0,69.0,64.0,61.0,53.0,46.0,61.0,63.0,46.0,62.0,70.0,45.0,53.0,35.0,42.0,30.0,22.0,25.0,28.0,16.0,15.0,11.0,21.0,12.0,17.0,8.0,11.0,8.0 C83037,23.0,36.0,38.0,49.0,37.0,59.0,51.0,54.0,44.0,64.0,49.0,63.0,62.0,69.0,64.0,53.0,50.0,62.0,56.0,38.0,42.0,48.0,37.0,58.0,55.0,51.0,47.0,44.0,51.0,51.0,39.0,70.0,51.0,51.0,60.0,63.0,70.0,73.0,61.0,49.0,64.0,67.0,65.0,61.0,57.0,58.0,63.0,52.0,67.0,67.0,58.0,61.0,65.0,73.0,85.0,76.0,89.0,81.0,69.0,66.0,74.0,73.0,73.0,76.0,81.0,61.0,84.0,54.0,63.0,60.0,61.0,61.0,55.0,62.0,53.0,53.0,49.0,67.0,66.0,39.0,56.0,37.0,55.0,32.0,31.0,24.0,15.0,17.0,17.0,11.0,13.0,9.0,10.0,8.0,7.0,7.0 C83038,22.0,27.0,32.0,37.0,26.0,35.0,31.0,44.0,34.0,47.0,36.0,39.0,45.0,47.0,32.0,42.0,48.0,36.0,33.0,37.0,26.0,23.0,29.0,28.0,28.0,32.0,32.0,45.0,33.0,53.0,40.0,38.0,49.0,44.0,45.0,43.0,32.0,45.0,55.0,47.0,48.0,44.0,48.0,44.0,46.0,40.0,50.0,39.0,32.0,45.0,51.0,53.0,57.0,61.0,65.0,72.0,69.0,58.0,79.0,48.0,89.0,64.0,78.0,76.0,71.0,59.0,61.0,63.0,48.0,51.0,52.0,70.0,54.0,46.0,57.0,75.0,55.0,53.0,55.0,57.0,60.0,59.0,34.0,33.0,29.0,30.0,18.0,19.0,27.0,16.0,16.0,10.0,10.0,7.0,6.0,15.0 C83039,9.0,13.0,23.0,22.0,20.0,30.0,15.0,25.0,18.0,21.0,23.0,20.0,24.0,34.0,25.0,32.0,34.0,16.0,23.0,33.0,13.0,17.0,18.0,26.0,15.0,21.0,18.0,27.0,21.0,22.0,13.0,24.0,21.0,22.0,34.0,28.0,31.0,28.0,18.0,26.0,25.0,21.0,27.0,30.0,22.0,27.0,20.0,21.0,28.0,36.0,28.0,29.0,46.0,51.0,56.0,55.0,44.0,57.0,56.0,52.0,67.0,44.0,68.0,56.0,54.0,40.0,49.0,48.0,53.0,45.0,38.0,41.0,37.0,43.0,40.0,42.0,45.0,47.0,37.0,30.0,37.0,24.0,27.0,14.0,21.0,21.0,19.0,14.0,15.0,18.0,15.0,4.0,9.0,6.0,4.0,12.0 C83040,52.0,52.0,55.0,57.0,55.0,73.0,70.0,65.0,61.0,81.0,82.0,74.0,75.0,72.0,101.0,64.0,65.0,100.0,84.0,56.0,68.0,62.0,60.0,83.0,85.0,71.0,78.0,95.0,93.0,97.0,91.0,88.0,92.0,94.0,105.0,86.0,75.0,103.0,85.0,95.0,83.0,81.0,88.0,79.0,106.0,85.0,96.0,78.0,75.0,77.0,96.0,80.0,90.0,102.0,95.0,91.0,91.0,97.0,93.0,103.0,97.0,86.0,92.0,86.0,101.0,88.0,88.0,90.0,70.0,70.0,77.0,89.0,74.0,62.0,89.0,73.0,83.0,91.0,105.0,61.0,68.0,63.0,69.0,65.0,49.0,48.0,37.0,37.0,26.0,34.0,24.0,25.0,14.0,9.0,20.0,32.0 C83041,30.0,24.0,36.0,33.0,35.0,42.0,36.0,42.0,44.0,45.0,45.0,45.0,43.0,38.0,42.0,50.0,39.0,45.0,29.0,33.0,35.0,29.0,31.0,34.0,46.0,48.0,44.0,48.0,51.0,36.0,59.0,52.0,53.0,53.0,55.0,57.0,57.0,63.0,62.0,38.0,61.0,60.0,49.0,54.0,35.0,59.0,40.0,41.0,45.0,42.0,33.0,41.0,41.0,53.0,47.0,49.0,50.0,68.0,45.0,57.0,45.0,51.0,56.0,56.0,55.0,48.0,59.0,39.0,42.0,38.0,43.0,41.0,43.0,50.0,49.0,43.0,45.0,41.0,44.0,41.0,57.0,44.0,27.0,32.0,31.0,26.0,28.0,29.0,15.0,24.0,17.0,15.0,6.0,9.0,11.0,12.0 C83042,28.0,28.0,24.0,28.0,30.0,17.0,27.0,27.0,24.0,27.0,37.0,25.0,36.0,26.0,25.0,31.0,28.0,31.0,43.0,24.0,20.0,30.0,22.0,26.0,20.0,29.0,19.0,21.0,33.0,26.0,25.0,29.0,34.0,26.0,33.0,28.0,29.0,27.0,35.0,37.0,28.0,33.0,35.0,32.0,38.0,38.0,29.0,30.0,31.0,31.0,23.0,45.0,53.0,57.0,57.0,60.0,54.0,65.0,67.0,69.0,68.0,80.0,64.0,75.0,62.0,65.0,72.0,60.0,56.0,65.0,64.0,66.0,64.0,45.0,47.0,70.0,45.0,51.0,63.0,39.0,54.0,36.0,33.0,31.0,27.0,27.0,17.0,15.0,12.0,15.0,10.0,9.0,8.0,5.0,2.0,10.0 C83043,34.0,30.0,39.0,31.0,36.0,45.0,45.0,60.0,52.0,48.0,53.0,60.0,69.0,53.0,55.0,49.0,36.0,63.0,51.0,43.0,31.0,29.0,45.0,40.0,49.0,51.0,39.0,51.0,61.0,61.0,61.0,48.0,60.0,51.0,48.0,58.0,66.0,52.0,60.0,62.0,59.0,54.0,55.0,62.0,54.0,60.0,39.0,41.0,45.0,56.0,55.0,58.0,70.0,71.0,73.0,86.0,94.0,80.0,99.0,86.0,92.0,115.0,88.0,98.0,78.0,108.0,87.0,85.0,65.0,95.0,75.0,72.0,84.0,66.0,68.0,63.0,82.0,90.0,78.0,55.0,50.0,54.0,47.0,38.0,38.0,37.0,39.0,34.0,20.0,23.0,18.0,10.0,11.0,8.0,14.0,24.0 C83044,61.0,56.0,60.0,63.0,66.0,70.0,75.0,65.0,89.0,89.0,87.0,81.0,92.0,83.0,77.0,77.0,67.0,86.0,57.0,61.0,55.0,60.0,53.0,56.0,65.0,58.0,78.0,89.0,95.0,103.0,78.0,73.0,109.0,110.0,96.0,86.0,85.0,72.0,77.0,89.0,67.0,70.0,91.0,79.0,56.0,57.0,66.0,54.0,55.0,65.0,68.0,69.0,80.0,67.0,83.0,77.0,87.0,79.0,75.0,91.0,93.0,76.0,82.0,67.0,56.0,69.0,64.0,69.0,64.0,65.0,65.0,62.0,61.0,49.0,54.0,55.0,55.0,64.0,60.0,43.0,46.0,53.0,53.0,37.0,27.0,27.0,17.0,15.0,24.0,22.0,13.0,13.0,8.0,6.0,3.0,16.0 C83045,57.0,55.0,54.0,57.0,53.0,65.0,60.0,71.0,72.0,74.0,62.0,87.0,76.0,86.0,87.0,95.0,80.0,74.0,74.0,85.0,79.0,83.0,79.0,86.0,81.0,59.0,77.0,76.0,60.0,83.0,80.0,91.0,97.0,92.0,76.0,71.0,106.0,64.0,87.0,86.0,83.0,86.0,85.0,90.0,95.0,90.0,66.0,90.0,73.0,73.0,100.0,77.0,87.0,118.0,146.0,143.0,144.0,130.0,133.0,151.0,134.0,140.0,151.0,145.0,138.0,150.0,141.0,125.0,114.0,146.0,110.0,121.0,118.0,112.0,144.0,129.0,106.0,111.0,123.0,78.0,101.0,90.0,69.0,48.0,58.0,59.0,51.0,39.0,30.0,26.0,21.0,12.0,14.0,18.0,13.0,30.0 C83046,26.0,19.0,23.0,30.0,24.0,34.0,26.0,35.0,29.0,44.0,27.0,39.0,36.0,45.0,43.0,34.0,39.0,45.0,32.0,23.0,18.0,29.0,22.0,32.0,38.0,39.0,32.0,34.0,38.0,33.0,38.0,45.0,45.0,38.0,48.0,49.0,40.0,48.0,39.0,42.0,46.0,35.0,49.0,37.0,41.0,43.0,46.0,34.0,36.0,29.0,45.0,39.0,45.0,50.0,42.0,45.0,49.0,48.0,38.0,50.0,43.0,42.0,42.0,42.0,40.0,40.0,43.0,37.0,32.0,30.0,18.0,34.0,22.0,24.0,31.0,22.0,25.0,26.0,33.0,16.0,20.0,16.0,24.0,10.0,11.0,13.0,11.0,7.0,13.0,11.0,3.0,6.0,4.0,4.0,2.0,10.0 C83048,51.0,42.0,61.0,52.0,56.0,69.0,67.0,77.0,86.0,73.0,96.0,86.0,102.0,97.0,100.0,92.0,95.0,90.0,86.0,62.0,56.0,60.0,54.0,59.0,68.0,61.0,81.0,74.0,63.0,85.0,97.0,91.0,85.0,75.0,112.0,104.0,104.0,96.0,79.0,98.0,110.0,102.0,92.0,90.0,117.0,83.0,77.0,82.0,68.0,87.0,89.0,100.0,96.0,96.0,100.0,91.0,94.0,82.0,75.0,76.0,79.0,93.0,72.0,78.0,87.0,60.0,59.0,62.0,55.0,62.0,74.0,45.0,74.0,54.0,62.0,47.0,74.0,73.0,77.0,48.0,45.0,53.0,47.0,34.0,29.0,26.0,23.0,14.0,18.0,13.0,22.0,13.0,12.0,10.0,7.0,17.0 C83049,24.0,11.0,11.0,21.0,18.0,26.0,26.0,27.0,31.0,31.0,32.0,33.0,31.0,43.0,32.0,31.0,42.0,40.0,32.0,38.0,44.0,35.0,41.0,56.0,64.0,50.0,50.0,46.0,41.0,45.0,37.0,39.0,33.0,37.0,38.0,21.0,36.0,47.0,43.0,39.0,43.0,26.0,38.0,31.0,33.0,48.0,36.0,30.0,43.0,50.0,56.0,47.0,50.0,55.0,47.0,63.0,55.0,57.0,58.0,69.0,73.0,79.0,61.0,70.0,56.0,60.0,52.0,62.0,47.0,43.0,54.0,56.0,50.0,41.0,42.0,42.0,42.0,51.0,59.0,46.0,43.0,39.0,30.0,33.0,32.0,26.0,21.0,19.0,15.0,15.0,11.0,11.0,5.0,6.0,1.0,9.0 C83051,50.0,47.0,44.0,55.0,47.0,46.0,50.0,67.0,36.0,40.0,56.0,65.0,49.0,43.0,45.0,54.0,41.0,34.0,40.0,35.0,45.0,43.0,44.0,49.0,70.0,69.0,96.0,89.0,89.0,93.0,86.0,101.0,101.0,88.0,102.0,93.0,99.0,89.0,107.0,81.0,52.0,71.0,59.0,46.0,74.0,46.0,55.0,49.0,39.0,37.0,39.0,45.0,42.0,41.0,46.0,40.0,36.0,35.0,40.0,52.0,31.0,36.0,32.0,36.0,32.0,22.0,32.0,28.0,24.0,23.0,22.0,19.0,13.0,20.0,21.0,12.0,15.0,17.0,17.0,13.0,19.0,9.0,7.0,9.0,7.0,11.0,5.0,6.0,7.0,8.0,1.0,7.0,1.0,4.0,2.0,6.0 C83052,12.0,18.0,12.0,26.0,18.0,24.0,17.0,20.0,13.0,23.0,17.0,21.0,12.0,20.0,16.0,17.0,25.0,25.0,15.0,23.0,13.0,20.0,18.0,11.0,22.0,18.0,23.0,22.0,19.0,22.0,21.0,26.0,26.0,28.0,25.0,26.0,33.0,23.0,17.0,25.0,18.0,25.0,25.0,35.0,28.0,18.0,25.0,25.0,21.0,20.0,15.0,29.0,16.0,35.0,38.0,27.0,36.0,42.0,37.0,43.0,40.0,30.0,42.0,36.0,30.0,33.0,26.0,31.0,28.0,35.0,28.0,13.0,19.0,23.0,30.0,23.0,24.0,20.0,17.0,13.0,15.0,15.0,22.0,7.0,7.0,6.0,5.0,5.0,4.0,4.0,2.0,1.0,2.0,,1.0,3.0 C83053,10.0,7.0,16.0,22.0,10.0,14.0,13.0,8.0,15.0,13.0,11.0,12.0,11.0,13.0,7.0,13.0,10.0,12.0,6.0,4.0,9.0,7.0,9.0,2.0,5.0,17.0,7.0,8.0,10.0,5.0,13.0,14.0,15.0,17.0,11.0,13.0,13.0,17.0,11.0,11.0,13.0,14.0,16.0,13.0,16.0,16.0,17.0,7.0,11.0,16.0,10.0,25.0,16.0,16.0,18.0,12.0,15.0,25.0,19.0,20.0,19.0,32.0,19.0,21.0,24.0,15.0,13.0,12.0,14.0,14.0,14.0,13.0,15.0,16.0,6.0,14.0,18.0,26.0,13.0,13.0,11.0,10.0,11.0,11.0,8.0,5.0,5.0,7.0,6.0,5.0,6.0,1.0,4.0,1.0,1.0,1.0 C83054,55.0,60.0,72.0,86.0,71.0,84.0,76.0,96.0,86.0,99.0,90.0,100.0,86.0,103.0,93.0,76.0,100.0,93.0,94.0,66.0,61.0,53.0,55.0,54.0,72.0,75.0,71.0,80.0,74.0,93.0,101.0,109.0,92.0,115.0,113.0,113.0,101.0,96.0,112.0,119.0,96.0,92.0,105.0,108.0,99.0,106.0,88.0,81.0,92.0,81.0,97.0,92.0,109.0,111.0,111.0,111.0,126.0,79.0,118.0,111.0,120.0,112.0,114.0,109.0,99.0,104.0,98.0,96.0,87.0,90.0,89.0,95.0,70.0,81.0,81.0,83.0,86.0,101.0,91.0,65.0,91.0,49.0,56.0,54.0,38.0,42.0,39.0,28.0,30.0,23.0,15.0,23.0,10.0,14.0,8.0,20.0 C83055,20.0,19.0,13.0,20.0,18.0,25.0,21.0,22.0,25.0,25.0,29.0,26.0,30.0,26.0,20.0,33.0,29.0,25.0,32.0,21.0,19.0,26.0,26.0,21.0,17.0,16.0,19.0,26.0,33.0,18.0,30.0,31.0,26.0,28.0,24.0,33.0,28.0,31.0,29.0,26.0,33.0,28.0,22.0,26.0,31.0,27.0,29.0,25.0,28.0,36.0,26.0,46.0,35.0,36.0,60.0,56.0,59.0,58.0,66.0,63.0,56.0,64.0,62.0,60.0,51.0,41.0,54.0,65.0,68.0,58.0,47.0,49.0,45.0,39.0,53.0,51.0,35.0,44.0,37.0,31.0,20.0,36.0,25.0,28.0,21.0,14.0,11.0,12.0,11.0,11.0,4.0,6.0,8.0,5.0,2.0,9.0 C83056,25.0,46.0,45.0,55.0,55.0,59.0,61.0,64.0,63.0,62.0,73.0,75.0,85.0,79.0,83.0,82.0,77.0,80.0,60.0,52.0,52.0,59.0,48.0,47.0,55.0,52.0,57.0,55.0,64.0,70.0,75.0,49.0,71.0,76.0,76.0,66.0,84.0,104.0,80.0,78.0,79.0,69.0,61.0,67.0,82.0,70.0,78.0,81.0,78.0,79.0,85.0,89.0,105.0,124.0,98.0,105.0,114.0,106.0,118.0,123.0,142.0,113.0,139.0,132.0,102.0,93.0,105.0,112.0,110.0,111.0,97.0,97.0,85.0,121.0,97.0,99.0,111.0,104.0,115.0,96.0,90.0,79.0,74.0,56.0,46.0,54.0,45.0,40.0,36.0,24.0,28.0,12.0,20.0,14.0,11.0,28.0 C83057,32.0,34.0,35.0,51.0,39.0,48.0,41.0,64.0,44.0,49.0,55.0,51.0,64.0,73.0,57.0,46.0,52.0,56.0,48.0,39.0,41.0,37.0,30.0,50.0,42.0,38.0,51.0,46.0,45.0,55.0,55.0,53.0,49.0,60.0,66.0,49.0,68.0,68.0,49.0,68.0,68.0,67.0,45.0,61.0,46.0,47.0,47.0,44.0,35.0,39.0,42.0,44.0,54.0,65.0,49.0,66.0,54.0,49.0,63.0,58.0,56.0,60.0,47.0,38.0,71.0,49.0,49.0,47.0,41.0,48.0,33.0,33.0,52.0,31.0,34.0,36.0,41.0,37.0,37.0,42.0,32.0,33.0,34.0,15.0,26.0,20.0,22.0,13.0,14.0,18.0,5.0,15.0,8.0,8.0,3.0,15.0 C83058,21.0,34.0,35.0,33.0,30.0,38.0,46.0,39.0,41.0,37.0,51.0,40.0,49.0,44.0,46.0,50.0,56.0,42.0,46.0,34.0,37.0,28.0,31.0,33.0,45.0,47.0,54.0,52.0,42.0,37.0,43.0,41.0,35.0,46.0,51.0,53.0,56.0,47.0,45.0,54.0,50.0,50.0,46.0,45.0,52.0,63.0,60.0,37.0,59.0,55.0,48.0,48.0,74.0,69.0,67.0,78.0,68.0,78.0,63.0,67.0,75.0,79.0,62.0,80.0,66.0,78.0,58.0,57.0,59.0,61.0,70.0,62.0,66.0,59.0,66.0,75.0,76.0,77.0,74.0,48.0,78.0,52.0,49.0,34.0,40.0,29.0,33.0,32.0,13.0,21.0,16.0,15.0,13.0,18.0,8.0,17.0 C83059,60.0,65.0,82.0,63.0,67.0,71.0,64.0,75.0,82.0,82.0,84.0,84.0,81.0,83.0,92.0,110.0,104.0,86.0,93.0,65.0,66.0,80.0,64.0,66.0,90.0,81.0,83.0,85.0,99.0,95.0,108.0,118.0,128.0,107.0,106.0,103.0,126.0,116.0,115.0,110.0,100.0,102.0,94.0,84.0,99.0,84.0,83.0,83.0,75.0,99.0,100.0,88.0,98.0,93.0,90.0,96.0,96.0,93.0,88.0,87.0,106.0,79.0,93.0,87.0,91.0,80.0,58.0,74.0,51.0,68.0,51.0,60.0,63.0,56.0,61.0,66.0,65.0,46.0,55.0,41.0,34.0,45.0,24.0,33.0,24.0,26.0,35.0,21.0,25.0,22.0,7.0,13.0,8.0,5.0,9.0,27.0 C83060,48.0,62.0,63.0,74.0,71.0,92.0,71.0,98.0,89.0,86.0,104.0,99.0,94.0,101.0,90.0,91.0,96.0,114.0,93.0,79.0,53.0,58.0,59.0,58.0,80.0,83.0,88.0,81.0,96.0,94.0,105.0,112.0,114.0,112.0,113.0,122.0,104.0,91.0,130.0,120.0,108.0,124.0,87.0,97.0,107.0,97.0,109.0,93.0,99.0,91.0,124.0,86.0,92.0,100.0,113.0,102.0,97.0,107.0,97.0,98.0,101.0,86.0,100.0,105.0,104.0,80.0,83.0,95.0,83.0,62.0,75.0,77.0,63.0,62.0,69.0,62.0,57.0,69.0,62.0,37.0,63.0,47.0,32.0,28.0,32.0,42.0,34.0,23.0,13.0,23.0,13.0,11.0,15.0,19.0,15.0,30.0 C83061,24.0,27.0,33.0,24.0,17.0,34.0,35.0,34.0,48.0,34.0,43.0,44.0,41.0,51.0,50.0,48.0,52.0,48.0,51.0,46.0,39.0,32.0,44.0,37.0,34.0,30.0,34.0,36.0,33.0,43.0,24.0,27.0,42.0,45.0,53.0,42.0,53.0,40.0,43.0,45.0,41.0,56.0,34.0,39.0,46.0,36.0,34.0,52.0,36.0,62.0,42.0,53.0,68.0,58.0,87.0,61.0,83.0,64.0,89.0,80.0,91.0,96.0,89.0,81.0,80.0,77.0,94.0,78.0,80.0,73.0,58.0,84.0,58.0,86.0,77.0,70.0,94.0,80.0,85.0,64.0,50.0,47.0,54.0,40.0,37.0,30.0,33.0,25.0,20.0,11.0,11.0,10.0,13.0,6.0,7.0,13.0 C83062,21.0,22.0,22.0,32.0,30.0,32.0,27.0,27.0,24.0,32.0,44.0,38.0,36.0,32.0,50.0,29.0,34.0,37.0,38.0,24.0,20.0,22.0,20.0,27.0,24.0,22.0,31.0,22.0,31.0,31.0,22.0,30.0,30.0,26.0,36.0,25.0,25.0,44.0,44.0,48.0,33.0,41.0,44.0,40.0,32.0,33.0,30.0,33.0,28.0,34.0,38.0,40.0,39.0,41.0,39.0,45.0,56.0,37.0,49.0,46.0,52.0,54.0,53.0,39.0,58.0,43.0,39.0,35.0,31.0,23.0,29.0,29.0,33.0,27.0,37.0,30.0,30.0,51.0,42.0,27.0,34.0,19.0,27.0,25.0,20.0,18.0,16.0,10.0,12.0,13.0,6.0,12.0,3.0,5.0,2.0,8.0 C83063,55.0,62.0,68.0,63.0,70.0,67.0,73.0,84.0,65.0,72.0,90.0,90.0,88.0,80.0,87.0,91.0,84.0,77.0,74.0,70.0,55.0,56.0,64.0,58.0,60.0,61.0,82.0,57.0,76.0,77.0,85.0,78.0,66.0,76.0,91.0,82.0,76.0,85.0,78.0,83.0,87.0,87.0,82.0,86.0,75.0,86.0,77.0,71.0,93.0,74.0,86.0,94.0,97.0,117.0,120.0,119.0,124.0,123.0,141.0,117.0,118.0,141.0,128.0,161.0,117.0,120.0,102.0,118.0,124.0,123.0,103.0,95.0,98.0,102.0,106.0,122.0,119.0,118.0,136.0,95.0,104.0,91.0,79.0,71.0,70.0,59.0,49.0,65.0,42.0,46.0,28.0,15.0,28.0,14.0,16.0,27.0 C83064,32.0,33.0,40.0,37.0,47.0,36.0,36.0,46.0,49.0,49.0,51.0,47.0,57.0,71.0,58.0,67.0,57.0,53.0,48.0,32.0,46.0,50.0,43.0,39.0,52.0,48.0,47.0,38.0,42.0,35.0,66.0,44.0,40.0,52.0,45.0,72.0,64.0,50.0,47.0,57.0,49.0,48.0,45.0,45.0,47.0,66.0,45.0,52.0,57.0,47.0,55.0,75.0,77.0,103.0,99.0,86.0,107.0,105.0,113.0,147.0,139.0,164.0,133.0,150.0,161.0,166.0,167.0,165.0,184.0,145.0,157.0,143.0,150.0,143.0,136.0,132.0,156.0,139.0,169.0,120.0,128.0,90.0,84.0,72.0,76.0,66.0,54.0,48.0,40.0,38.0,22.0,27.0,17.0,10.0,8.0,27.0 C83065,44.0,37.0,37.0,47.0,44.0,52.0,43.0,51.0,43.0,31.0,50.0,57.0,32.0,35.0,51.0,57.0,54.0,34.0,40.0,38.0,22.0,26.0,30.0,50.0,64.0,53.0,62.0,67.0,62.0,75.0,61.0,51.0,59.0,65.0,57.0,59.0,48.0,64.0,53.0,54.0,52.0,48.0,40.0,41.0,52.0,53.0,51.0,46.0,40.0,64.0,70.0,55.0,58.0,61.0,69.0,68.0,63.0,57.0,68.0,67.0,72.0,69.0,61.0,74.0,72.0,75.0,57.0,64.0,61.0,59.0,56.0,64.0,54.0,52.0,49.0,60.0,50.0,65.0,64.0,34.0,51.0,42.0,33.0,32.0,25.0,31.0,28.0,27.0,23.0,34.0,14.0,17.0,10.0,12.0,9.0,11.0 C83067,17.0,27.0,18.0,30.0,32.0,18.0,28.0,36.0,42.0,33.0,34.0,35.0,36.0,40.0,33.0,44.0,31.0,27.0,41.0,29.0,23.0,24.0,24.0,28.0,24.0,23.0,24.0,16.0,23.0,22.0,30.0,26.0,30.0,24.0,34.0,20.0,27.0,30.0,39.0,37.0,30.0,28.0,38.0,40.0,41.0,40.0,42.0,33.0,29.0,35.0,53.0,44.0,51.0,61.0,65.0,61.0,62.0,66.0,72.0,66.0,61.0,61.0,74.0,67.0,53.0,75.0,66.0,63.0,50.0,54.0,47.0,59.0,53.0,51.0,51.0,54.0,62.0,54.0,55.0,41.0,33.0,29.0,38.0,29.0,31.0,23.0,24.0,17.0,12.0,11.0,9.0,6.0,8.0,9.0,1.0,7.0 C83072,44.0,38.0,25.0,27.0,41.0,50.0,47.0,48.0,49.0,56.0,70.0,81.0,61.0,57.0,61.0,63.0,59.0,45.0,50.0,55.0,47.0,59.0,40.0,34.0,47.0,41.0,55.0,45.0,48.0,49.0,50.0,45.0,47.0,44.0,58.0,67.0,66.0,66.0,73.0,59.0,59.0,77.0,49.0,61.0,66.0,75.0,71.0,55.0,55.0,66.0,63.0,73.0,61.0,63.0,66.0,73.0,76.0,77.0,55.0,76.0,76.0,84.0,92.0,75.0,75.0,63.0,69.0,68.0,61.0,54.0,58.0,63.0,52.0,64.0,44.0,44.0,53.0,63.0,50.0,44.0,39.0,50.0,38.0,30.0,33.0,29.0,15.0,25.0,16.0,20.0,16.0,14.0,12.0,11.0,5.0,23.0 C83073,35.0,41.0,45.0,54.0,49.0,34.0,29.0,42.0,44.0,47.0,45.0,39.0,49.0,36.0,36.0,34.0,33.0,53.0,43.0,52.0,70.0,59.0,71.0,76.0,74.0,72.0,82.0,88.0,81.0,81.0,95.0,80.0,79.0,84.0,84.0,68.0,67.0,73.0,59.0,75.0,74.0,56.0,56.0,62.0,61.0,49.0,46.0,40.0,45.0,40.0,47.0,55.0,44.0,53.0,55.0,54.0,47.0,39.0,42.0,36.0,41.0,42.0,53.0,47.0,43.0,30.0,31.0,26.0,24.0,22.0,17.0,28.0,27.0,19.0,26.0,31.0,25.0,20.0,23.0,14.0,19.0,18.0,18.0,10.0,10.0,13.0,18.0,8.0,11.0,8.0,6.0,7.0,14.0,2.0,5.0,11.0 C83074,10.0,16.0,19.0,10.0,12.0,17.0,20.0,18.0,18.0,17.0,17.0,18.0,18.0,26.0,26.0,16.0,19.0,21.0,20.0,22.0,15.0,15.0,17.0,15.0,19.0,11.0,15.0,22.0,21.0,33.0,26.0,21.0,21.0,21.0,18.0,14.0,19.0,20.0,26.0,26.0,24.0,21.0,26.0,31.0,30.0,36.0,30.0,25.0,23.0,29.0,25.0,28.0,25.0,33.0,35.0,42.0,31.0,46.0,46.0,51.0,48.0,49.0,51.0,40.0,44.0,49.0,43.0,44.0,45.0,43.0,51.0,34.0,29.0,30.0,35.0,35.0,39.0,30.0,43.0,22.0,37.0,30.0,20.0,21.0,21.0,23.0,7.0,9.0,12.0,8.0,9.0,10.0,5.0,2.0,4.0,12.0 C83075,43.0,44.0,53.0,38.0,45.0,52.0,51.0,60.0,51.0,78.0,75.0,59.0,64.0,71.0,61.0,57.0,56.0,60.0,47.0,40.0,42.0,41.0,46.0,55.0,43.0,54.0,55.0,55.0,69.0,67.0,76.0,69.0,72.0,74.0,71.0,77.0,79.0,86.0,66.0,58.0,71.0,86.0,78.0,68.0,65.0,68.0,78.0,68.0,63.0,69.0,62.0,75.0,78.0,81.0,72.0,89.0,67.0,77.0,79.0,80.0,89.0,75.0,60.0,66.0,76.0,78.0,72.0,65.0,62.0,33.0,52.0,65.0,55.0,72.0,53.0,54.0,55.0,69.0,71.0,43.0,48.0,45.0,30.0,45.0,24.0,28.0,20.0,22.0,28.0,17.0,12.0,4.0,7.0,5.0,10.0,21.0 C83078,41.0,37.0,37.0,32.0,35.0,45.0,49.0,56.0,55.0,58.0,45.0,46.0,64.0,61.0,44.0,54.0,52.0,45.0,46.0,47.0,37.0,32.0,43.0,49.0,35.0,56.0,49.0,56.0,51.0,56.0,65.0,54.0,85.0,75.0,80.0,70.0,74.0,73.0,69.0,74.0,48.0,69.0,65.0,59.0,69.0,55.0,51.0,49.0,40.0,52.0,51.0,59.0,49.0,60.0,70.0,47.0,61.0,64.0,72.0,49.0,53.0,57.0,73.0,61.0,67.0,62.0,52.0,50.0,52.0,34.0,45.0,52.0,40.0,43.0,40.0,44.0,48.0,54.0,44.0,28.0,34.0,38.0,34.0,32.0,22.0,26.0,24.0,24.0,9.0,19.0,19.0,15.0,4.0,5.0,3.0,11.0 C83079,24.0,38.0,33.0,43.0,36.0,40.0,32.0,27.0,41.0,40.0,50.0,32.0,48.0,35.0,46.0,36.0,33.0,27.0,40.0,25.0,34.0,24.0,23.0,32.0,34.0,35.0,56.0,37.0,41.0,57.0,40.0,53.0,76.0,54.0,61.0,42.0,51.0,54.0,58.0,52.0,47.0,42.0,50.0,49.0,51.0,47.0,32.0,36.0,36.0,45.0,39.0,45.0,41.0,26.0,36.0,35.0,41.0,39.0,45.0,43.0,35.0,33.0,40.0,43.0,30.0,30.0,34.0,47.0,30.0,29.0,31.0,20.0,30.0,22.0,21.0,30.0,32.0,27.0,32.0,24.0,18.0,20.0,14.0,15.0,10.0,11.0,8.0,8.0,6.0,7.0,5.0,4.0,,4.0,5.0,8.0 C83080,20.0,15.0,30.0,23.0,26.0,31.0,24.0,31.0,33.0,33.0,39.0,38.0,49.0,47.0,45.0,37.0,51.0,30.0,42.0,28.0,20.0,28.0,23.0,28.0,22.0,26.0,24.0,30.0,21.0,38.0,33.0,28.0,30.0,33.0,41.0,46.0,34.0,31.0,42.0,42.0,40.0,36.0,47.0,42.0,50.0,48.0,35.0,39.0,33.0,34.0,34.0,33.0,45.0,38.0,43.0,47.0,36.0,45.0,39.0,49.0,45.0,36.0,48.0,42.0,46.0,33.0,37.0,40.0,25.0,35.0,33.0,31.0,32.0,41.0,21.0,30.0,31.0,29.0,26.0,17.0,21.0,17.0,22.0,12.0,13.0,9.0,12.0,6.0,10.0,5.0,7.0,5.0,2.0,5.0,4.0,10.0 C83082,40.0,57.0,46.0,56.0,55.0,63.0,46.0,57.0,63.0,74.0,55.0,55.0,61.0,60.0,62.0,65.0,53.0,68.0,56.0,48.0,53.0,45.0,45.0,41.0,52.0,72.0,60.0,73.0,70.0,70.0,89.0,81.0,72.0,90.0,84.0,92.0,86.0,91.0,61.0,83.0,75.0,82.0,68.0,83.0,86.0,66.0,70.0,64.0,57.0,58.0,53.0,56.0,63.0,77.0,69.0,60.0,66.0,73.0,71.0,71.0,64.0,68.0,77.0,77.0,57.0,54.0,64.0,70.0,55.0,60.0,57.0,62.0,56.0,51.0,46.0,62.0,45.0,46.0,55.0,35.0,50.0,32.0,29.0,23.0,23.0,29.0,24.0,25.0,16.0,15.0,7.0,9.0,6.0,14.0,7.0,19.0 C83083,28.0,36.0,38.0,25.0,50.0,37.0,40.0,40.0,35.0,44.0,41.0,42.0,46.0,48.0,55.0,43.0,49.0,51.0,48.0,38.0,41.0,35.0,30.0,35.0,30.0,43.0,56.0,47.0,34.0,45.0,45.0,47.0,56.0,56.0,45.0,53.0,50.0,61.0,45.0,60.0,41.0,38.0,47.0,51.0,55.0,37.0,46.0,33.0,44.0,39.0,53.0,37.0,51.0,41.0,66.0,46.0,56.0,45.0,66.0,60.0,75.0,59.0,79.0,66.0,67.0,55.0,61.0,56.0,49.0,43.0,53.0,39.0,38.0,47.0,39.0,41.0,53.0,50.0,37.0,35.0,29.0,35.0,34.0,18.0,21.0,13.0,16.0,16.0,20.0,13.0,13.0,11.0,11.0,12.0,4.0,12.0 C83085,42.0,48.0,47.0,53.0,48.0,49.0,56.0,54.0,79.0,66.0,70.0,74.0,77.0,70.0,97.0,93.0,90.0,68.0,72.0,58.0,65.0,61.0,51.0,58.0,63.0,73.0,55.0,75.0,73.0,62.0,91.0,73.0,65.0,79.0,93.0,78.0,83.0,99.0,76.0,79.0,66.0,61.0,71.0,89.0,85.0,71.0,63.0,58.0,72.0,68.0,77.0,85.0,96.0,110.0,113.0,88.0,105.0,89.0,90.0,90.0,104.0,117.0,113.0,86.0,96.0,93.0,89.0,89.0,92.0,112.0,83.0,86.0,85.0,74.0,78.0,92.0,68.0,97.0,105.0,67.0,67.0,61.0,48.0,56.0,36.0,36.0,47.0,34.0,30.0,23.0,24.0,29.0,13.0,11.0,15.0,30.0 C83611,32.0,30.0,43.0,46.0,41.0,49.0,33.0,40.0,55.0,47.0,55.0,44.0,49.0,56.0,41.0,44.0,51.0,46.0,40.0,28.0,31.0,39.0,30.0,33.0,39.0,28.0,28.0,40.0,33.0,46.0,40.0,42.0,49.0,53.0,46.0,50.0,54.0,43.0,56.0,52.0,48.0,57.0,45.0,55.0,58.0,54.0,47.0,42.0,60.0,49.0,46.0,44.0,59.0,53.0,59.0,57.0,43.0,49.0,50.0,49.0,55.0,47.0,52.0,42.0,46.0,39.0,37.0,33.0,22.0,34.0,43.0,42.0,32.0,31.0,33.0,24.0,34.0,39.0,35.0,23.0,33.0,21.0,15.0,17.0,9.0,8.0,7.0,8.0,7.0,11.0,6.0,5.0,5.0,4.0,5.0,5.0 C83613,17.0,10.0,18.0,14.0,14.0,17.0,17.0,35.0,28.0,19.0,26.0,32.0,30.0,37.0,37.0,32.0,36.0,37.0,27.0,24.0,16.0,15.0,22.0,25.0,20.0,20.0,16.0,17.0,21.0,23.0,16.0,20.0,32.0,23.0,31.0,27.0,23.0,27.0,27.0,22.0,29.0,26.0,35.0,26.0,43.0,33.0,35.0,27.0,35.0,32.0,23.0,35.0,33.0,45.0,41.0,41.0,47.0,43.0,54.0,44.0,46.0,47.0,49.0,43.0,44.0,44.0,41.0,42.0,22.0,39.0,39.0,30.0,33.0,38.0,35.0,25.0,36.0,33.0,42.0,23.0,24.0,25.0,21.0,19.0,16.0,7.0,10.0,15.0,5.0,9.0,8.0,6.0,6.0,6.0,4.0,11.0 C83614,9.0,8.0,13.0,14.0,9.0,16.0,15.0,12.0,18.0,11.0,17.0,19.0,22.0,23.0,13.0,19.0,19.0,13.0,18.0,21.0,17.0,21.0,17.0,21.0,21.0,16.0,20.0,10.0,21.0,15.0,13.0,15.0,17.0,21.0,20.0,12.0,19.0,22.0,14.0,19.0,12.0,15.0,17.0,24.0,23.0,20.0,19.0,15.0,21.0,21.0,19.0,22.0,16.0,34.0,39.0,35.0,20.0,34.0,40.0,40.0,27.0,31.0,25.0,39.0,26.0,27.0,30.0,38.0,17.0,31.0,24.0,20.0,28.0,18.0,27.0,39.0,20.0,23.0,38.0,29.0,19.0,15.0,18.0,10.0,8.0,11.0,4.0,10.0,4.0,4.0,6.0,3.0,,5.0,1.0,7.0 C83617,48.0,37.0,43.0,52.0,48.0,36.0,45.0,46.0,58.0,55.0,46.0,43.0,57.0,64.0,36.0,63.0,52.0,55.0,57.0,43.0,51.0,33.0,35.0,49.0,35.0,52.0,44.0,47.0,58.0,70.0,67.0,65.0,74.0,53.0,60.0,66.0,65.0,50.0,69.0,62.0,58.0,44.0,56.0,55.0,79.0,49.0,57.0,53.0,48.0,70.0,59.0,55.0,68.0,75.0,58.0,60.0,59.0,66.0,78.0,76.0,87.0,55.0,67.0,59.0,55.0,68.0,70.0,60.0,45.0,49.0,58.0,61.0,53.0,55.0,53.0,34.0,47.0,61.0,50.0,37.0,30.0,31.0,28.0,21.0,12.0,20.0,11.0,15.0,11.0,9.0,5.0,4.0,6.0,6.0,5.0,10.0 C83626,57.0,52.0,63.0,41.0,49.0,53.0,64.0,49.0,54.0,46.0,54.0,54.0,47.0,42.0,45.0,40.0,39.0,39.0,45.0,109.0,101.0,121.0,109.0,139.0,116.0,137.0,135.0,154.0,124.0,133.0,122.0,125.0,121.0,114.0,115.0,100.0,101.0,96.0,101.0,94.0,96.0,51.0,56.0,66.0,61.0,64.0,60.0,54.0,46.0,42.0,38.0,47.0,43.0,40.0,48.0,56.0,44.0,39.0,50.0,47.0,38.0,39.0,44.0,35.0,43.0,27.0,42.0,27.0,28.0,31.0,21.0,24.0,22.0,23.0,25.0,27.0,17.0,28.0,24.0,16.0,14.0,9.0,13.0,10.0,10.0,10.0,8.0,4.0,6.0,7.0,4.0,5.0,3.0,1.0,1.0,6.0 C83634,18.0,13.0,8.0,16.0,15.0,13.0,16.0,18.0,23.0,20.0,23.0,20.0,17.0,25.0,30.0,27.0,15.0,33.0,17.0,23.0,18.0,13.0,20.0,17.0,12.0,14.0,13.0,19.0,15.0,18.0,16.0,25.0,28.0,22.0,17.0,24.0,20.0,19.0,23.0,32.0,22.0,18.0,23.0,27.0,21.0,29.0,29.0,22.0,19.0,25.0,27.0,30.0,25.0,33.0,42.0,34.0,33.0,33.0,41.0,42.0,40.0,38.0,39.0,44.0,36.0,43.0,50.0,42.0,38.0,38.0,35.0,38.0,35.0,45.0,39.0,47.0,57.0,41.0,59.0,32.0,40.0,44.0,31.0,25.0,30.0,18.0,20.0,24.0,20.0,18.0,15.0,12.0,6.0,6.0,6.0,19.0 C83635,8.0,11.0,14.0,16.0,20.0,11.0,20.0,25.0,16.0,24.0,26.0,27.0,32.0,30.0,26.0,26.0,28.0,30.0,21.0,24.0,23.0,18.0,22.0,16.0,24.0,27.0,21.0,23.0,20.0,20.0,15.0,15.0,32.0,28.0,32.0,22.0,24.0,17.0,15.0,19.0,22.0,28.0,27.0,30.0,30.0,21.0,26.0,22.0,24.0,36.0,34.0,22.0,41.0,33.0,44.0,39.0,35.0,33.0,40.0,53.0,55.0,53.0,54.0,58.0,58.0,45.0,48.0,53.0,46.0,52.0,33.0,42.0,49.0,44.0,53.0,46.0,56.0,51.0,56.0,35.0,30.0,35.0,32.0,20.0,20.0,19.0,19.0,23.0,15.0,11.0,6.0,12.0,4.0,4.0,4.0,8.0 C83641,14.0,16.0,13.0,10.0,14.0,10.0,10.0,18.0,13.0,19.0,20.0,24.0,26.0,17.0,14.0,14.0,12.0,11.0,14.0,12.0,16.0,17.0,16.0,15.0,13.0,11.0,15.0,11.0,14.0,14.0,18.0,14.0,27.0,19.0,19.0,19.0,14.0,32.0,16.0,31.0,30.0,22.0,22.0,9.0,17.0,16.0,21.0,18.0,24.0,22.0,22.0,23.0,31.0,28.0,17.0,30.0,39.0,17.0,39.0,36.0,32.0,37.0,36.0,45.0,33.0,30.0,24.0,36.0,40.0,43.0,43.0,36.0,24.0,21.0,22.0,31.0,32.0,28.0,33.0,35.0,34.0,24.0,16.0,18.0,12.0,10.0,15.0,15.0,21.0,7.0,10.0,8.0,3.0,1.0,,2.0 C83643,4.0,10.0,4.0,8.0,10.0,6.0,12.0,10.0,10.0,13.0,11.0,14.0,6.0,6.0,13.0,11.0,12.0,10.0,11.0,6.0,7.0,7.0,6.0,8.0,9.0,9.0,9.0,9.0,12.0,15.0,6.0,12.0,16.0,9.0,9.0,10.0,10.0,18.0,12.0,9.0,8.0,9.0,10.0,7.0,11.0,14.0,14.0,11.0,12.0,10.0,16.0,11.0,16.0,8.0,21.0,17.0,27.0,15.0,22.0,22.0,33.0,31.0,31.0,32.0,20.0,27.0,19.0,26.0,27.0,17.0,23.0,16.0,14.0,18.0,22.0,16.0,18.0,17.0,19.0,9.0,17.0,11.0,9.0,4.0,8.0,9.0,6.0,3.0,1.0,1.0,2.0,4.0,6.0,3.0,2.0, C83649,17.0,21.0,19.0,28.0,29.0,24.0,26.0,25.0,21.0,29.0,28.0,22.0,34.0,29.0,42.0,37.0,36.0,39.0,35.0,23.0,21.0,16.0,19.0,22.0,15.0,24.0,13.0,24.0,23.0,33.0,20.0,31.0,31.0,25.0,31.0,46.0,26.0,29.0,21.0,39.0,28.0,27.0,35.0,31.0,36.0,35.0,29.0,27.0,27.0,26.0,39.0,29.0,44.0,46.0,60.0,52.0,49.0,41.0,47.0,58.0,51.0,44.0,46.0,40.0,46.0,45.0,43.0,39.0,35.0,42.0,29.0,35.0,34.0,36.0,24.0,32.0,35.0,25.0,28.0,27.0,17.0,19.0,18.0,21.0,9.0,8.0,14.0,8.0,7.0,8.0,2.0,4.0,3.0,2.0,1.0,2.0 C83650,18.0,18.0,10.0,12.0,15.0,13.0,13.0,18.0,18.0,17.0,23.0,18.0,23.0,20.0,22.0,25.0,22.0,18.0,17.0,15.0,13.0,14.0,19.0,16.0,15.0,14.0,26.0,21.0,31.0,22.0,22.0,11.0,20.0,23.0,17.0,21.0,23.0,29.0,15.0,19.0,19.0,26.0,21.0,17.0,29.0,26.0,19.0,25.0,21.0,24.0,25.0,35.0,24.0,23.0,30.0,35.0,26.0,25.0,30.0,36.0,44.0,35.0,41.0,38.0,27.0,35.0,36.0,38.0,27.0,36.0,36.0,26.0,27.0,29.0,20.0,36.0,25.0,33.0,27.0,24.0,20.0,20.0,20.0,12.0,12.0,12.0,14.0,12.0,4.0,9.0,4.0,5.0,4.0,7.0,3.0,10.0 Y01652,15.0,12.0,12.0,16.0,14.0,15.0,19.0,23.0,28.0,31.0,31.0,27.0,30.0,22.0,30.0,25.0,42.0,38.0,27.0,19.0,22.0,22.0,24.0,25.0,19.0,30.0,18.0,22.0,24.0,26.0,19.0,35.0,22.0,22.0,24.0,29.0,31.0,32.0,27.0,29.0,34.0,18.0,38.0,27.0,36.0,36.0,26.0,27.0,34.0,38.0,33.0,45.0,39.0,66.0,66.0,47.0,58.0,60.0,68.0,69.0,77.0,57.0,54.0,52.0,56.0,65.0,62.0,50.0,46.0,48.0,49.0,40.0,55.0,37.0,46.0,44.0,48.0,55.0,48.0,37.0,28.0,41.0,30.0,29.0,24.0,11.0,18.0,17.0,13.0,9.0,8.0,11.0,4.0,7.0,8.0,16.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 C82001,104.0,104.0,100.0,100.0,105.0,133.0,146.0,133.0,151.0,142.0,154.0,152.0,154.0,154.0,143.0,168.0,147.0,146.0,128.0,114.0,99.0,101.0,105.0,112.0,100.0,111.0,101.0,111.0,107.0,132.0,137.0,135.0,154.0,128.0,164.0,153.0,128.0,163.0,180.0,201.0,152.0,158.0,166.0,176.0,169.0,203.0,175.0,142.0,156.0,180.0,172.0,203.0,175.0,171.0,203.0,174.0,195.0,169.0,196.0,199.0,222.0,186.0,191.0,198.0,167.0,155.0,161.0,154.0,145.0,163.0,156.0,142.0,145.0,134.0,133.0,174.0,152.0,162.0,169.0,98.0,138.0,106.0,98.0,71.0,72.0,77.0,68.0,65.0,56.0,35.0,35.0,33.0,28.0,16.0,19.0,41.0 C82002,40.0,49.0,42.0,52.0,43.0,46.0,46.0,56.0,68.0,63.0,51.0,60.0,58.0,58.0,78.0,67.0,62.0,65.0,72.0,60.0,50.0,39.0,54.0,59.0,50.0,54.0,45.0,52.0,58.0,48.0,49.0,72.0,63.0,74.0,66.0,62.0,60.0,75.0,72.0,62.0,62.0,84.0,64.0,73.0,67.0,82.0,51.0,52.0,63.0,72.0,69.0,69.0,98.0,82.0,88.0,74.0,98.0,76.0,83.0,88.0,92.0,87.0,71.0,72.0,79.0,73.0,78.0,59.0,66.0,62.0,62.0,72.0,82.0,54.0,65.0,91.0,76.0,79.0,61.0,56.0,48.0,44.0,48.0,24.0,24.0,27.0,36.0,23.0,22.0,17.0,24.0,15.0,12.0,5.0,8.0,13.0 C82003,40.0,35.0,38.0,52.0,61.0,54.0,71.0,61.0,72.0,65.0,75.0,66.0,68.0,72.0,74.0,56.0,73.0,78.0,79.0,51.0,44.0,69.0,57.0,56.0,63.0,61.0,47.0,58.0,68.0,53.0,67.0,73.0,73.0,57.0,62.0,67.0,73.0,74.0,87.0,86.0,90.0,91.0,70.0,83.0,97.0,85.0,72.0,57.0,69.0,64.0,64.0,77.0,74.0,82.0,88.0,77.0,74.0,96.0,86.0,86.0,79.0,81.0,79.0,88.0,79.0,88.0,79.0,67.0,64.0,74.0,51.0,61.0,74.0,62.0,43.0,52.0,59.0,65.0,60.0,53.0,52.0,55.0,45.0,39.0,36.0,29.0,35.0,37.0,25.0,25.0,25.0,19.0,12.0,8.0,7.0,17.0 C82005,41.0,54.0,62.0,54.0,53.0,54.0,72.0,61.0,66.0,61.0,75.0,63.0,87.0,80.0,79.0,64.0,62.0,67.0,66.0,67.0,59.0,70.0,65.0,66.0,64.0,69.0,74.0,80.0,88.0,79.0,85.0,84.0,96.0,88.0,85.0,91.0,88.0,97.0,99.0,101.0,97.0,93.0,88.0,85.0,79.0,93.0,60.0,69.0,54.0,71.0,76.0,60.0,55.0,62.0,70.0,61.0,73.0,76.0,60.0,63.0,61.0,64.0,53.0,55.0,50.0,58.0,41.0,50.0,44.0,41.0,42.0,32.0,40.0,28.0,29.0,43.0,45.0,49.0,37.0,30.0,23.0,24.0,18.0,19.0,14.0,13.0,21.0,22.0,16.0,19.0,10.0,7.0,7.0,5.0,5.0,8.0 C82007,51.0,40.0,61.0,46.0,52.0,56.0,49.0,50.0,46.0,52.0,50.0,54.0,62.0,54.0,41.0,54.0,45.0,47.0,44.0,46.0,42.0,45.0,37.0,40.0,39.0,56.0,58.0,65.0,78.0,78.0,65.0,71.0,86.0,77.0,84.0,73.0,71.0,81.0,61.0,69.0,77.0,60.0,54.0,70.0,66.0,69.0,68.0,62.0,52.0,55.0,71.0,72.0,69.0,84.0,96.0,80.0,89.0,80.0,79.0,87.0,81.0,74.0,71.0,69.0,75.0,76.0,85.0,66.0,56.0,40.0,58.0,55.0,62.0,59.0,41.0,59.0,52.0,51.0,70.0,54.0,51.0,47.0,41.0,33.0,32.0,31.0,24.0,23.0,26.0,8.0,5.0,6.0,11.0,8.0,4.0,15.0 C82008,28.0,44.0,50.0,51.0,43.0,55.0,46.0,58.0,71.0,47.0,57.0,60.0,51.0,65.0,71.0,68.0,54.0,66.0,60.0,48.0,54.0,54.0,51.0,48.0,46.0,60.0,53.0,45.0,47.0,61.0,61.0,53.0,60.0,62.0,73.0,54.0,75.0,63.0,71.0,71.0,58.0,59.0,72.0,55.0,54.0,48.0,70.0,50.0,52.0,47.0,50.0,62.0,52.0,42.0,53.0,62.0,42.0,62.0,55.0,57.0,58.0,43.0,51.0,55.0,45.0,37.0,42.0,35.0,32.0,36.0,40.0,27.0,28.0,21.0,39.0,35.0,38.0,36.0,34.0,23.0,24.0,33.0,19.0,26.0,10.0,13.0,16.0,11.0,11.0,9.0,9.0,11.0,1.0,3.0,3.0,9.0 C82009,117.0,146.0,142.0,152.0,155.0,124.0,136.0,133.0,130.0,138.0,139.0,153.0,139.0,170.0,164.0,151.0,144.0,149.0,149.0,120.0,99.0,129.0,122.0,109.0,130.0,154.0,130.0,154.0,179.0,167.0,178.0,179.0,194.0,174.0,212.0,197.0,183.0,206.0,211.0,207.0,162.0,183.0,171.0,203.0,174.0,179.0,194.0,163.0,154.0,197.0,194.0,175.0,193.0,198.0,220.0,202.0,222.0,221.0,230.0,223.0,223.0,217.0,205.0,173.0,180.0,179.0,166.0,162.0,181.0,168.0,161.0,164.0,174.0,145.0,142.0,151.0,170.0,175.0,175.0,127.0,144.0,129.0,116.0,109.0,78.0,94.0,96.0,77.0,91.0,83.0,68.0,53.0,26.0,33.0,28.0,57.0 C82010,44.0,50.0,52.0,52.0,64.0,42.0,61.0,73.0,68.0,77.0,75.0,60.0,89.0,86.0,86.0,115.0,118.0,130.0,120.0,66.0,70.0,52.0,58.0,69.0,79.0,58.0,69.0,74.0,56.0,66.0,75.0,82.0,79.0,67.0,93.0,79.0,84.0,70.0,102.0,75.0,99.0,92.0,82.0,90.0,96.0,89.0,85.0,72.0,81.0,88.0,92.0,107.0,98.0,96.0,96.0,112.0,105.0,133.0,94.0,100.0,115.0,105.0,99.0,87.0,113.0,95.0,110.0,102.0,97.0,98.0,83.0,97.0,85.0,95.0,95.0,110.0,78.0,114.0,105.0,71.0,102.0,86.0,86.0,57.0,83.0,60.0,53.0,50.0,47.0,47.0,37.0,27.0,21.0,21.0,21.0,35.0 C82011,55.0,65.0,62.0,62.0,57.0,78.0,65.0,72.0,63.0,68.0,63.0,78.0,75.0,71.0,68.0,74.0,91.0,65.0,62.0,55.0,68.0,81.0,84.0,88.0,77.0,72.0,84.0,99.0,91.0,109.0,95.0,95.0,103.0,105.0,108.0,101.0,89.0,115.0,102.0,110.0,70.0,80.0,90.0,82.0,71.0,72.0,72.0,79.0,64.0,78.0,75.0,75.0,80.0,84.0,76.0,71.0,68.0,68.0,68.0,59.0,53.0,63.0,67.0,80.0,61.0,66.0,57.0,58.0,69.0,38.0,62.0,51.0,48.0,59.0,59.0,49.0,51.0,47.0,51.0,47.0,46.0,48.0,31.0,31.0,28.0,21.0,20.0,26.0,13.0,14.0,14.0,9.0,15.0,10.0,5.0,18.0 C82012,46.0,52.0,66.0,64.0,61.0,66.0,75.0,60.0,58.0,83.0,66.0,74.0,80.0,82.0,66.0,66.0,68.0,62.0,52.0,38.0,61.0,54.0,35.0,58.0,51.0,73.0,58.0,83.0,69.0,72.0,78.0,97.0,82.0,89.0,93.0,60.0,91.0,79.0,85.0,72.0,87.0,69.0,83.0,72.0,78.0,78.0,69.0,74.0,70.0,73.0,68.0,85.0,74.0,89.0,91.0,102.0,93.0,85.0,101.0,92.0,64.0,65.0,67.0,81.0,94.0,58.0,59.0,57.0,58.0,56.0,47.0,67.0,61.0,53.0,61.0,59.0,74.0,68.0,46.0,59.0,47.0,47.0,45.0,41.0,31.0,20.0,21.0,13.0,21.0,12.0,14.0,11.0,14.0,2.0,2.0,11.0 C82013,61.0,83.0,71.0,77.0,64.0,64.0,72.0,77.0,71.0,86.0,74.0,82.0,74.0,84.0,72.0,72.0,79.0,65.0,66.0,59.0,70.0,60.0,78.0,56.0,67.0,76.0,66.0,79.0,70.0,83.0,112.0,87.0,105.0,108.0,102.0,105.0,91.0,102.0,86.0,90.0,95.0,86.0,95.0,82.0,82.0,88.0,72.0,71.0,72.0,82.0,80.0,80.0,73.0,71.0,84.0,82.0,71.0,83.0,84.0,72.0,104.0,102.0,97.0,76.0,84.0,60.0,86.0,70.0,82.0,60.0,67.0,63.0,86.0,71.0,71.0,86.0,84.0,77.0,84.0,70.0,66.0,56.0,46.0,43.0,28.0,35.0,32.0,31.0,32.0,38.0,16.0,19.0,17.0,14.0,8.0,29.0 C82014,67.0,84.0,75.0,79.0,75.0,82.0,97.0,95.0,83.0,69.0,116.0,112.0,113.0,120.0,126.0,120.0,123.0,128.0,112.0,67.0,82.0,84.0,84.0,77.0,74.0,96.0,82.0,91.0,85.0,95.0,89.0,128.0,117.0,116.0,124.0,119.0,121.0,118.0,120.0,112.0,126.0,129.0,123.0,140.0,133.0,110.0,124.0,107.0,98.0,112.0,111.0,157.0,140.0,118.0,134.0,138.0,129.0,138.0,129.0,121.0,115.0,131.0,114.0,129.0,107.0,127.0,117.0,97.0,96.0,110.0,103.0,98.0,87.0,96.0,105.0,98.0,104.0,110.0,102.0,81.0,85.0,76.0,66.0,43.0,32.0,57.0,45.0,42.0,37.0,27.0,24.0,25.0,15.0,16.0,11.0,29.0 C82016,36.0,34.0,32.0,44.0,48.0,60.0,52.0,58.0,47.0,50.0,56.0,51.0,51.0,59.0,60.0,81.0,53.0,62.0,45.0,37.0,39.0,52.0,48.0,51.0,47.0,47.0,43.0,44.0,42.0,48.0,56.0,56.0,47.0,59.0,51.0,57.0,61.0,61.0,56.0,59.0,66.0,67.0,72.0,59.0,49.0,67.0,73.0,73.0,65.0,65.0,71.0,74.0,72.0,87.0,101.0,100.0,103.0,99.0,110.0,121.0,111.0,106.0,113.0,103.0,92.0,90.0,74.0,85.0,73.0,74.0,60.0,80.0,72.0,52.0,77.0,71.0,77.0,78.0,62.0,55.0,49.0,40.0,45.0,31.0,24.0,27.0,29.0,16.0,17.0,18.0,15.0,8.0,12.0,9.0,3.0,11.0 C82017,55.0,55.0,57.0,71.0,81.0,59.0,68.0,88.0,65.0,86.0,53.0,90.0,97.0,91.0,81.0,87.0,95.0,87.0,61.0,69.0,61.0,68.0,88.0,79.0,77.0,62.0,80.0,76.0,87.0,79.0,80.0,76.0,76.0,101.0,114.0,112.0,97.0,109.0,110.0,81.0,86.0,86.0,91.0,92.0,90.0,100.0,97.0,85.0,104.0,100.0,94.0,104.0,125.0,117.0,126.0,129.0,133.0,124.0,132.0,134.0,141.0,120.0,119.0,116.0,109.0,107.0,104.0,97.0,94.0,98.0,90.0,92.0,97.0,83.0,98.0,103.0,87.0,99.0,105.0,73.0,66.0,73.0,50.0,43.0,40.0,28.0,33.0,28.0,19.0,18.0,21.0,7.0,12.0,7.0,6.0,23.0 C82018,53.0,55.0,59.0,83.0,54.0,80.0,75.0,68.0,89.0,73.0,103.0,72.0,104.0,96.0,112.0,93.0,97.0,96.0,83.0,71.0,80.0,73.0,74.0,70.0,93.0,84.0,87.0,90.0,98.0,86.0,93.0,89.0,94.0,120.0,85.0,99.0,87.0,118.0,91.0,117.0,112.0,106.0,106.0,107.0,98.0,115.0,101.0,86.0,84.0,100.0,95.0,84.0,98.0,81.0,78.0,82.0,86.0,81.0,74.0,87.0,61.0,75.0,73.0,86.0,81.0,68.0,92.0,80.0,77.0,80.0,72.0,69.0,50.0,62.0,61.0,59.0,46.0,44.0,33.0,38.0,36.0,34.0,30.0,18.0,13.0,20.0,19.0,18.0,11.0,16.0,13.0,14.0,8.0,4.0,7.0,21.0 C82019,27.0,27.0,28.0,46.0,42.0,39.0,38.0,39.0,45.0,45.0,49.0,47.0,41.0,41.0,54.0,50.0,38.0,40.0,51.0,34.0,26.0,25.0,25.0,29.0,31.0,30.0,26.0,43.0,33.0,31.0,39.0,47.0,44.0,39.0,39.0,54.0,44.0,52.0,55.0,57.0,46.0,51.0,54.0,44.0,48.0,30.0,35.0,24.0,30.0,27.0,25.0,41.0,34.0,37.0,33.0,32.0,33.0,31.0,29.0,25.0,39.0,34.0,34.0,22.0,32.0,37.0,37.0,29.0,24.0,29.0,24.0,32.0,28.0,14.0,20.0,18.0,15.0,17.0,18.0,13.0,16.0,15.0,6.0,10.0,11.0,10.0,11.0,10.0,8.0,7.0,4.0,4.0,4.0,3.0,4.0,3.0 C82020,40.0,53.0,46.0,42.0,50.0,36.0,35.0,45.0,36.0,37.0,36.0,32.0,36.0,31.0,20.0,33.0,40.0,32.0,168.0,401.0,663.0,690.0,645.0,633.0,635.0,525.0,462.0,388.0,295.0,232.0,160.0,143.0,125.0,101.0,98.0,80.0,73.0,82.0,76.0,55.0,49.0,44.0,42.0,55.0,47.0,44.0,37.0,36.0,27.0,30.0,34.0,32.0,29.0,27.0,38.0,24.0,29.0,34.0,33.0,22.0,32.0,31.0,17.0,19.0,29.0,13.0,15.0,19.0,9.0,16.0,12.0,12.0,7.0,13.0,5.0,7.0,5.0,5.0,6.0,8.0,7.0,10.0,2.0,2.0,3.0,4.0,4.0,3.0,5.0,2.0,2.0,,,,1.0,2.0 C82021,25.0,26.0,28.0,38.0,28.0,36.0,28.0,39.0,45.0,52.0,39.0,48.0,43.0,56.0,57.0,43.0,62.0,60.0,55.0,50.0,44.0,22.0,36.0,30.0,26.0,31.0,46.0,45.0,42.0,32.0,43.0,43.0,36.0,41.0,39.0,61.0,48.0,51.0,51.0,47.0,42.0,46.0,63.0,58.0,63.0,51.0,46.0,55.0,36.0,52.0,42.0,43.0,26.0,59.0,50.0,42.0,41.0,52.0,50.0,54.0,53.0,55.0,54.0,53.0,47.0,40.0,48.0,49.0,39.0,32.0,33.0,33.0,35.0,23.0,24.0,39.0,30.0,39.0,42.0,35.0,30.0,31.0,23.0,28.0,19.0,26.0,29.0,32.0,22.0,19.0,20.0,18.0,17.0,15.0,9.0,32.0 C82022,22.0,28.0,41.0,42.0,32.0,30.0,30.0,38.0,42.0,41.0,33.0,40.0,45.0,37.0,49.0,40.0,52.0,41.0,23.0,24.0,22.0,33.0,29.0,34.0,33.0,27.0,22.0,32.0,20.0,27.0,36.0,38.0,41.0,38.0,39.0,26.0,36.0,45.0,37.0,45.0,33.0,44.0,42.0,57.0,35.0,53.0,34.0,45.0,36.0,42.0,41.0,46.0,42.0,54.0,60.0,58.0,65.0,61.0,56.0,57.0,66.0,58.0,63.0,68.0,57.0,63.0,48.0,51.0,49.0,48.0,45.0,56.0,45.0,38.0,55.0,44.0,49.0,44.0,39.0,44.0,43.0,32.0,32.0,16.0,18.0,24.0,21.0,26.0,20.0,13.0,12.0,10.0,8.0,7.0,2.0,17.0 C82024,71.0,90.0,85.0,71.0,99.0,98.0,98.0,104.0,89.0,108.0,89.0,98.0,100.0,115.0,104.0,120.0,112.0,131.0,124.0,118.0,113.0,128.0,132.0,142.0,154.0,150.0,181.0,154.0,151.0,139.0,152.0,108.0,137.0,142.0,134.0,158.0,141.0,132.0,142.0,129.0,157.0,110.0,146.0,120.0,149.0,142.0,131.0,115.0,124.0,113.0,123.0,120.0,127.0,142.0,131.0,134.0,125.0,106.0,107.0,103.0,106.0,111.0,119.0,124.0,148.0,126.0,115.0,116.0,106.0,108.0,108.0,114.0,99.0,97.0,73.0,68.0,62.0,57.0,36.0,45.0,35.0,29.0,33.0,33.0,33.0,26.0,32.0,29.0,16.0,19.0,16.0,18.0,9.0,9.0,9.0,25.0 C82025,44.0,50.0,43.0,52.0,47.0,42.0,56.0,50.0,50.0,54.0,46.0,52.0,46.0,53.0,49.0,59.0,53.0,52.0,69.0,43.0,52.0,38.0,47.0,63.0,56.0,45.0,41.0,43.0,61.0,52.0,58.0,44.0,57.0,62.0,68.0,71.0,55.0,79.0,53.0,54.0,69.0,50.0,60.0,60.0,78.0,69.0,67.0,56.0,65.0,62.0,69.0,83.0,82.0,89.0,87.0,79.0,85.0,72.0,97.0,74.0,73.0,93.0,73.0,74.0,93.0,69.0,77.0,70.0,54.0,74.0,58.0,54.0,58.0,68.0,69.0,78.0,52.0,63.0,78.0,64.0,65.0,59.0,46.0,25.0,33.0,29.0,32.0,30.0,28.0,19.0,20.0,12.0,8.0,8.0,6.0,27.0 C82026,25.0,22.0,42.0,28.0,33.0,29.0,28.0,50.0,42.0,40.0,41.0,45.0,42.0,43.0,61.0,48.0,38.0,49.0,39.0,34.0,61.0,46.0,55.0,63.0,53.0,56.0,46.0,62.0,55.0,46.0,59.0,54.0,50.0,47.0,58.0,58.0,66.0,57.0,54.0,50.0,41.0,52.0,43.0,54.0,62.0,59.0,56.0,49.0,30.0,47.0,39.0,51.0,40.0,42.0,60.0,50.0,43.0,44.0,58.0,45.0,68.0,54.0,43.0,52.0,47.0,62.0,50.0,42.0,59.0,38.0,35.0,39.0,39.0,42.0,46.0,30.0,36.0,32.0,51.0,30.0,33.0,38.0,28.0,25.0,19.0,18.0,27.0,18.0,11.0,14.0,13.0,11.0,13.0,7.0,5.0,11.0 C82027,28.0,31.0,34.0,52.0,43.0,41.0,56.0,55.0,57.0,62.0,47.0,41.0,50.0,53.0,52.0,38.0,33.0,41.0,29.0,27.0,26.0,24.0,29.0,29.0,28.0,33.0,30.0,32.0,38.0,43.0,44.0,50.0,52.0,49.0,58.0,66.0,52.0,54.0,56.0,52.0,56.0,62.0,46.0,53.0,55.0,44.0,50.0,34.0,44.0,46.0,38.0,35.0,52.0,50.0,61.0,52.0,54.0,48.0,47.0,54.0,57.0,46.0,35.0,40.0,39.0,57.0,50.0,50.0,42.0,35.0,40.0,48.0,41.0,50.0,48.0,47.0,55.0,50.0,38.0,29.0,35.0,40.0,28.0,26.0,22.0,24.0,22.0,9.0,7.0,8.0,6.0,8.0,7.0,6.0,4.0,7.0 C82028,26.0,27.0,28.0,31.0,29.0,28.0,23.0,27.0,29.0,32.0,44.0,39.0,41.0,41.0,33.0,29.0,38.0,34.0,30.0,38.0,23.0,41.0,38.0,34.0,40.0,35.0,26.0,47.0,34.0,46.0,38.0,58.0,35.0,45.0,50.0,40.0,39.0,34.0,54.0,46.0,39.0,38.0,29.0,31.0,50.0,49.0,46.0,35.0,38.0,37.0,42.0,40.0,48.0,52.0,64.0,52.0,64.0,63.0,61.0,63.0,52.0,56.0,57.0,42.0,58.0,62.0,41.0,56.0,46.0,53.0,37.0,60.0,47.0,44.0,46.0,60.0,61.0,63.0,46.0,35.0,55.0,36.0,40.0,28.0,35.0,18.0,26.0,20.0,16.0,19.0,11.0,8.0,9.0,4.0,9.0,13.0 C82030,29.0,27.0,19.0,21.0,31.0,31.0,26.0,29.0,40.0,38.0,39.0,32.0,40.0,32.0,49.0,37.0,38.0,51.0,39.0,29.0,36.0,49.0,36.0,36.0,37.0,41.0,39.0,34.0,37.0,32.0,32.0,44.0,22.0,32.0,35.0,47.0,45.0,56.0,52.0,54.0,51.0,45.0,34.0,40.0,48.0,36.0,45.0,36.0,39.0,44.0,38.0,36.0,37.0,30.0,47.0,40.0,56.0,60.0,61.0,45.0,52.0,47.0,53.0,55.0,54.0,42.0,54.0,44.0,59.0,40.0,53.0,41.0,43.0,42.0,43.0,42.0,29.0,42.0,47.0,29.0,33.0,34.0,34.0,35.0,20.0,30.0,17.0,21.0,16.0,15.0,13.0,20.0,14.0,13.0,9.0,21.0 C82031,76.0,84.0,77.0,97.0,93.0,116.0,110.0,115.0,124.0,127.0,132.0,107.0,122.0,135.0,134.0,127.0,125.0,108.0,109.0,82.0,91.0,91.0,76.0,86.0,87.0,78.0,93.0,94.0,101.0,105.0,118.0,116.0,132.0,119.0,121.0,118.0,125.0,126.0,117.0,133.0,138.0,124.0,140.0,132.0,120.0,114.0,110.0,101.0,103.0,97.0,100.0,83.0,101.0,80.0,81.0,88.0,76.0,76.0,60.0,77.0,66.0,64.0,54.0,53.0,62.0,65.0,49.0,64.0,62.0,61.0,57.0,38.0,53.0,43.0,34.0,38.0,39.0,32.0,32.0,31.0,23.0,18.0,19.0,13.0,17.0,14.0,11.0,12.0,16.0,10.0,7.0,8.0,5.0,6.0,5.0,7.0 C82032,35.0,30.0,27.0,40.0,43.0,44.0,42.0,49.0,47.0,39.0,36.0,42.0,45.0,43.0,65.0,48.0,36.0,36.0,36.0,31.0,33.0,19.0,26.0,31.0,29.0,32.0,28.0,30.0,45.0,42.0,40.0,43.0,33.0,62.0,48.0,50.0,49.0,63.0,44.0,60.0,47.0,50.0,55.0,51.0,58.0,50.0,39.0,50.0,27.0,48.0,41.0,49.0,61.0,53.0,60.0,54.0,56.0,56.0,54.0,57.0,56.0,51.0,55.0,44.0,46.0,51.0,37.0,48.0,43.0,26.0,38.0,44.0,46.0,28.0,41.0,59.0,48.0,54.0,48.0,32.0,39.0,45.0,29.0,20.0,27.0,26.0,20.0,20.0,19.0,10.0,11.0,4.0,5.0,8.0,7.0,15.0 C82033,48.0,56.0,75.0,58.0,67.0,62.0,77.0,91.0,75.0,84.0,86.0,90.0,99.0,82.0,102.0,98.0,83.0,69.0,87.0,85.0,93.0,73.0,85.0,86.0,79.0,86.0,81.0,84.0,73.0,84.0,76.0,76.0,74.0,81.0,86.0,92.0,101.0,77.0,91.0,101.0,69.0,89.0,81.0,79.0,91.0,100.0,71.0,74.0,71.0,81.0,88.0,60.0,60.0,67.0,64.0,67.0,73.0,59.0,67.0,59.0,61.0,66.0,70.0,62.0,55.0,51.0,48.0,49.0,70.0,53.0,43.0,43.0,39.0,46.0,46.0,41.0,28.0,34.0,32.0,27.0,31.0,30.0,25.0,15.0,25.0,20.0,23.0,15.0,6.0,12.0,4.0,6.0,5.0,8.0,4.0,13.0 C82034,45.0,34.0,41.0,43.0,34.0,48.0,45.0,48.0,44.0,46.0,70.0,46.0,63.0,61.0,51.0,50.0,58.0,62.0,42.0,40.0,52.0,40.0,48.0,48.0,36.0,50.0,37.0,49.0,56.0,55.0,49.0,46.0,57.0,56.0,62.0,54.0,58.0,71.0,55.0,53.0,65.0,72.0,64.0,64.0,54.0,63.0,67.0,60.0,66.0,80.0,69.0,77.0,65.0,82.0,81.0,67.0,85.0,84.0,62.0,51.0,88.0,69.0,76.0,69.0,96.0,59.0,51.0,62.0,55.0,36.0,49.0,56.0,46.0,63.0,58.0,52.0,58.0,62.0,49.0,42.0,62.0,55.0,44.0,33.0,31.0,33.0,26.0,28.0,20.0,26.0,21.0,16.0,11.0,12.0,11.0,22.0 C82035,40.0,25.0,30.0,41.0,41.0,49.0,28.0,33.0,39.0,35.0,33.0,35.0,41.0,44.0,52.0,42.0,47.0,37.0,50.0,34.0,44.0,40.0,75.0,54.0,73.0,38.0,68.0,60.0,59.0,47.0,47.0,56.0,62.0,51.0,54.0,57.0,48.0,40.0,57.0,61.0,57.0,53.0,43.0,48.0,47.0,53.0,47.0,54.0,51.0,49.0,35.0,51.0,51.0,61.0,46.0,46.0,52.0,49.0,61.0,44.0,42.0,42.0,37.0,39.0,50.0,32.0,47.0,35.0,28.0,38.0,28.0,29.0,42.0,43.0,34.0,27.0,37.0,42.0,39.0,24.0,22.0,29.0,20.0,19.0,17.0,18.0,18.0,12.0,13.0,5.0,10.0,8.0,6.0,7.0,2.0,7.0 C82037,47.0,46.0,37.0,46.0,46.0,45.0,46.0,49.0,46.0,60.0,39.0,46.0,52.0,44.0,58.0,50.0,62.0,42.0,41.0,44.0,51.0,60.0,68.0,63.0,85.0,97.0,79.0,85.0,94.0,85.0,94.0,60.0,76.0,81.0,85.0,59.0,71.0,56.0,68.0,72.0,68.0,65.0,72.0,67.0,57.0,54.0,54.0,52.0,46.0,64.0,50.0,54.0,44.0,48.0,54.0,46.0,64.0,54.0,53.0,51.0,62.0,73.0,65.0,72.0,63.0,69.0,66.0,68.0,60.0,75.0,59.0,57.0,53.0,64.0,61.0,62.0,48.0,33.0,33.0,26.0,26.0,31.0,26.0,22.0,28.0,14.0,27.0,19.0,22.0,18.0,12.0,8.0,6.0,6.0,6.0,9.0 C82038,112.0,149.0,163.0,185.0,169.0,173.0,189.0,205.0,202.0,207.0,221.0,207.0,229.0,222.0,247.0,185.0,196.0,189.0,188.0,176.0,160.0,139.0,179.0,204.0,162.0,167.0,193.0,204.0,230.0,205.0,250.0,226.0,272.0,236.0,263.0,263.0,233.0,239.0,247.0,223.0,223.0,224.0,222.0,227.0,257.0,255.0,210.0,217.0,198.0,203.0,224.0,232.0,228.0,237.0,241.0,270.0,272.0,245.0,310.0,295.0,272.0,261.0,285.0,253.0,261.0,218.0,237.0,241.0,222.0,186.0,219.0,202.0,211.0,220.0,213.0,205.0,215.0,243.0,195.0,161.0,171.0,151.0,159.0,115.0,79.0,115.0,84.0,82.0,76.0,66.0,67.0,41.0,40.0,28.0,25.0,49.0 C82039,58.0,64.0,68.0,59.0,67.0,82.0,53.0,37.0,75.0,68.0,67.0,71.0,73.0,65.0,81.0,62.0,79.0,62.0,59.0,54.0,49.0,59.0,61.0,71.0,58.0,77.0,72.0,82.0,70.0,57.0,78.0,68.0,80.0,90.0,81.0,68.0,93.0,83.0,106.0,88.0,81.0,94.0,84.0,78.0,76.0,77.0,71.0,71.0,51.0,84.0,70.0,68.0,74.0,62.0,61.0,67.0,76.0,63.0,78.0,55.0,67.0,71.0,72.0,47.0,57.0,63.0,59.0,64.0,46.0,42.0,51.0,43.0,55.0,28.0,43.0,32.0,39.0,49.0,42.0,37.0,41.0,35.0,28.0,19.0,21.0,24.0,15.0,29.0,11.0,20.0,19.0,12.0,14.0,6.0,2.0,11.0 C82041,40.0,34.0,56.0,47.0,55.0,67.0,73.0,63.0,64.0,64.0,70.0,82.0,81.0,79.0,95.0,72.0,85.0,110.0,100.0,84.0,76.0,74.0,88.0,61.0,57.0,69.0,71.0,64.0,72.0,60.0,79.0,65.0,96.0,103.0,100.0,101.0,87.0,109.0,100.0,97.0,90.0,104.0,90.0,94.0,91.0,82.0,79.0,84.0,74.0,72.0,86.0,82.0,82.0,87.0,72.0,87.0,78.0,99.0,77.0,79.0,94.0,69.0,67.0,68.0,63.0,72.0,68.0,70.0,55.0,56.0,54.0,52.0,70.0,61.0,54.0,57.0,62.0,59.0,57.0,48.0,47.0,46.0,24.0,29.0,30.0,30.0,29.0,23.0,21.0,13.0,11.0,11.0,7.0,3.0,10.0,12.0 C82042,32.0,44.0,44.0,59.0,49.0,64.0,63.0,62.0,67.0,77.0,76.0,50.0,81.0,70.0,74.0,72.0,74.0,64.0,60.0,47.0,51.0,52.0,43.0,46.0,52.0,68.0,41.0,52.0,72.0,66.0,62.0,69.0,65.0,93.0,96.0,71.0,61.0,96.0,78.0,86.0,89.0,77.0,79.0,82.0,78.0,80.0,85.0,71.0,49.0,84.0,77.0,82.0,99.0,86.0,98.0,101.0,86.0,83.0,90.0,97.0,104.0,104.0,93.0,82.0,92.0,91.0,87.0,92.0,62.0,81.0,78.0,82.0,86.0,84.0,87.0,79.0,77.0,86.0,81.0,58.0,59.0,65.0,56.0,33.0,31.0,41.0,30.0,37.0,27.0,20.0,19.0,9.0,20.0,15.0,5.0,21.0 C82043,24.0,42.0,44.0,41.0,36.0,46.0,44.0,62.0,52.0,65.0,46.0,56.0,54.0,56.0,59.0,71.0,56.0,58.0,64.0,49.0,36.0,45.0,40.0,43.0,48.0,57.0,50.0,56.0,52.0,68.0,71.0,70.0,63.0,63.0,84.0,73.0,79.0,79.0,65.0,75.0,69.0,73.0,68.0,65.0,73.0,63.0,65.0,62.0,65.0,60.0,69.0,72.0,78.0,81.0,80.0,69.0,81.0,88.0,69.0,93.0,85.0,75.0,90.0,81.0,65.0,68.0,60.0,49.0,59.0,62.0,45.0,63.0,56.0,53.0,55.0,71.0,62.0,73.0,61.0,53.0,66.0,60.0,57.0,40.0,37.0,36.0,31.0,33.0,26.0,25.0,19.0,20.0,12.0,11.0,10.0,26.0 C82044,32.0,28.0,39.0,41.0,45.0,47.0,52.0,57.0,53.0,53.0,66.0,62.0,42.0,55.0,48.0,56.0,50.0,56.0,46.0,32.0,32.0,32.0,25.0,33.0,34.0,39.0,29.0,30.0,32.0,39.0,42.0,49.0,39.0,64.0,68.0,59.0,54.0,61.0,58.0,60.0,66.0,44.0,64.0,55.0,71.0,67.0,63.0,76.0,56.0,59.0,58.0,73.0,67.0,70.0,76.0,97.0,80.0,80.0,85.0,81.0,81.0,88.0,80.0,76.0,75.0,77.0,85.0,63.0,61.0,50.0,69.0,55.0,67.0,64.0,58.0,65.0,89.0,65.0,54.0,49.0,47.0,57.0,53.0,32.0,34.0,24.0,29.0,25.0,22.0,12.0,11.0,14.0,8.0,3.0,7.0,14.0 C82045,49.0,36.0,38.0,59.0,50.0,40.0,68.0,56.0,64.0,43.0,45.0,48.0,39.0,36.0,48.0,50.0,34.0,46.0,44.0,29.0,25.0,35.0,34.0,31.0,48.0,64.0,50.0,59.0,70.0,73.0,71.0,66.0,82.0,78.0,84.0,71.0,82.0,84.0,58.0,58.0,63.0,57.0,44.0,55.0,52.0,55.0,46.0,43.0,38.0,38.0,50.0,48.0,56.0,62.0,55.0,56.0,68.0,50.0,56.0,53.0,55.0,50.0,54.0,60.0,52.0,37.0,42.0,37.0,46.0,32.0,30.0,36.0,33.0,33.0,27.0,38.0,38.0,34.0,30.0,27.0,21.0,33.0,19.0,16.0,17.0,17.0,8.0,16.0,18.0,11.0,5.0,5.0,8.0,9.0,5.0,8.0 C82046,78.0,82.0,67.0,93.0,117.0,84.0,96.0,102.0,120.0,149.0,151.0,146.0,125.0,157.0,132.0,143.0,127.0,125.0,124.0,122.0,108.0,102.0,106.0,111.0,121.0,103.0,113.0,128.0,113.0,134.0,130.0,131.0,119.0,109.0,125.0,123.0,137.0,146.0,134.0,138.0,160.0,130.0,136.0,152.0,128.0,117.0,115.0,98.0,104.0,98.0,107.0,106.0,117.0,115.0,119.0,98.0,113.0,103.0,87.0,85.0,102.0,115.0,119.0,87.0,94.0,94.0,88.0,78.0,68.0,64.0,49.0,66.0,58.0,50.0,44.0,49.0,54.0,56.0,49.0,44.0,40.0,32.0,35.0,28.0,31.0,31.0,20.0,16.0,21.0,14.0,11.0,6.0,10.0,4.0,6.0,7.0 C82047,47.0,43.0,44.0,41.0,54.0,36.0,46.0,52.0,62.0,38.0,61.0,43.0,57.0,48.0,55.0,38.0,51.0,46.0,41.0,54.0,45.0,51.0,48.0,59.0,63.0,62.0,81.0,46.0,66.0,64.0,64.0,67.0,75.0,81.0,70.0,73.0,82.0,80.0,59.0,59.0,64.0,53.0,68.0,74.0,66.0,58.0,77.0,63.0,68.0,58.0,79.0,70.0,73.0,83.0,87.0,66.0,85.0,74.0,83.0,97.0,73.0,73.0,73.0,81.0,77.0,65.0,65.0,67.0,63.0,51.0,47.0,61.0,59.0,54.0,61.0,56.0,55.0,54.0,45.0,57.0,36.0,50.0,31.0,25.0,20.0,31.0,23.0,14.0,12.0,13.0,11.0,8.0,11.0,6.0,6.0,19.0 C82048,15.0,11.0,23.0,28.0,21.0,33.0,42.0,29.0,25.0,28.0,29.0,39.0,35.0,25.0,22.0,35.0,29.0,27.0,23.0,28.0,13.0,22.0,18.0,20.0,15.0,17.0,23.0,23.0,19.0,25.0,16.0,17.0,29.0,28.0,29.0,35.0,33.0,31.0,36.0,47.0,42.0,46.0,31.0,26.0,35.0,51.0,30.0,26.0,24.0,20.0,19.0,36.0,30.0,32.0,27.0,27.0,29.0,31.0,39.0,31.0,23.0,37.0,29.0,31.0,33.0,20.0,32.0,35.0,32.0,23.0,28.0,35.0,17.0,29.0,36.0,27.0,44.0,26.0,34.0,29.0,21.0,28.0,27.0,17.0,17.0,7.0,18.0,17.0,15.0,9.0,16.0,8.0,2.0,8.0,4.0,15.0 C82050,41.0,61.0,63.0,61.0,55.0,53.0,71.0,65.0,82.0,92.0,74.0,83.0,74.0,82.0,80.0,89.0,82.0,79.0,64.0,61.0,71.0,66.0,71.0,76.0,67.0,72.0,83.0,85.0,82.0,72.0,73.0,89.0,97.0,113.0,105.0,103.0,84.0,100.0,77.0,105.0,86.0,104.0,102.0,97.0,104.0,76.0,82.0,76.0,88.0,90.0,86.0,85.0,121.0,120.0,91.0,99.0,105.0,98.0,106.0,106.0,92.0,97.0,105.0,97.0,78.0,61.0,77.0,78.0,75.0,65.0,67.0,62.0,67.0,69.0,55.0,76.0,66.0,81.0,92.0,59.0,52.0,68.0,44.0,39.0,42.0,27.0,27.0,29.0,20.0,28.0,17.0,10.0,9.0,7.0,7.0,16.0 C82051,35.0,43.0,48.0,48.0,74.0,58.0,53.0,57.0,51.0,79.0,64.0,73.0,75.0,75.0,82.0,68.0,72.0,67.0,64.0,45.0,42.0,47.0,48.0,43.0,44.0,40.0,46.0,50.0,47.0,68.0,62.0,46.0,71.0,65.0,75.0,60.0,74.0,76.0,66.0,72.0,85.0,78.0,69.0,82.0,64.0,71.0,85.0,51.0,63.0,67.0,83.0,73.0,73.0,87.0,90.0,86.0,88.0,89.0,85.0,96.0,91.0,105.0,87.0,92.0,102.0,79.0,80.0,82.0,76.0,67.0,78.0,82.0,77.0,88.0,71.0,101.0,89.0,66.0,80.0,65.0,75.0,51.0,51.0,56.0,33.0,37.0,26.0,33.0,21.0,22.0,20.0,4.0,13.0,8.0,13.0,20.0 C82052,10.0,12.0,19.0,8.0,13.0,18.0,13.0,11.0,11.0,12.0,22.0,17.0,15.0,25.0,25.0,19.0,23.0,20.0,27.0,16.0,10.0,12.0,13.0,11.0,19.0,14.0,15.0,8.0,15.0,19.0,20.0,13.0,23.0,23.0,27.0,18.0,24.0,16.0,22.0,21.0,20.0,25.0,28.0,26.0,25.0,25.0,20.0,19.0,18.0,17.0,15.0,19.0,31.0,20.0,43.0,25.0,26.0,24.0,26.0,21.0,41.0,23.0,32.0,21.0,12.0,26.0,22.0,23.0,20.0,34.0,24.0,26.0,15.0,13.0,17.0,25.0,16.0,23.0,23.0,23.0,26.0,18.0,20.0,5.0,11.0,8.0,11.0,9.0,6.0,6.0,12.0,6.0,6.0,4.0,4.0, C82053,37.0,42.0,48.0,59.0,46.0,77.0,52.0,90.0,71.0,84.0,94.0,91.0,97.0,95.0,105.0,95.0,120.0,100.0,89.0,80.0,77.0,96.0,63.0,67.0,59.0,63.0,54.0,57.0,58.0,47.0,53.0,80.0,72.0,67.0,74.0,73.0,69.0,89.0,80.0,91.0,105.0,87.0,83.0,95.0,82.0,85.0,62.0,81.0,57.0,52.0,60.0,65.0,69.0,85.0,69.0,59.0,89.0,59.0,72.0,68.0,79.0,56.0,63.0,74.0,61.0,54.0,63.0,52.0,56.0,40.0,44.0,25.0,28.0,35.0,35.0,27.0,23.0,29.0,39.0,26.0,17.0,21.0,16.0,15.0,15.0,11.0,13.0,9.0,15.0,11.0,7.0,7.0,6.0,4.0,2.0,4.0 C82054,44.0,56.0,67.0,71.0,73.0,56.0,63.0,72.0,54.0,75.0,74.0,57.0,67.0,74.0,68.0,62.0,69.0,68.0,49.0,55.0,48.0,59.0,54.0,50.0,57.0,58.0,62.0,66.0,63.0,72.0,72.0,92.0,86.0,85.0,67.0,89.0,65.0,87.0,81.0,86.0,66.0,89.0,91.0,89.0,79.0,83.0,71.0,70.0,70.0,86.0,76.0,69.0,75.0,89.0,83.0,100.0,88.0,76.0,84.0,90.0,77.0,89.0,84.0,76.0,66.0,73.0,75.0,72.0,78.0,81.0,71.0,86.0,69.0,72.0,74.0,82.0,84.0,67.0,65.0,43.0,70.0,58.0,42.0,50.0,39.0,30.0,33.0,27.0,18.0,26.0,19.0,20.0,17.0,14.0,12.0,34.0 C82055,42.0,53.0,63.0,72.0,52.0,81.0,66.0,70.0,68.0,76.0,92.0,80.0,63.0,70.0,72.0,68.0,83.0,90.0,74.0,75.0,70.0,57.0,63.0,66.0,62.0,59.0,82.0,75.0,89.0,86.0,77.0,76.0,91.0,97.0,93.0,102.0,96.0,113.0,67.0,91.0,96.0,86.0,74.0,95.0,85.0,86.0,108.0,82.0,84.0,103.0,93.0,85.0,106.0,100.0,111.0,91.0,117.0,134.0,102.0,121.0,107.0,116.0,109.0,126.0,114.0,99.0,99.0,85.0,85.0,67.0,85.0,93.0,80.0,70.0,65.0,100.0,92.0,85.0,91.0,63.0,65.0,63.0,65.0,36.0,40.0,36.0,45.0,27.0,32.0,22.0,23.0,15.0,14.0,14.0,13.0,23.0 C82056,45.0,54.0,60.0,65.0,64.0,71.0,81.0,72.0,56.0,68.0,71.0,81.0,80.0,81.0,92.0,78.0,78.0,95.0,77.0,60.0,56.0,51.0,69.0,69.0,65.0,64.0,66.0,67.0,71.0,75.0,85.0,64.0,60.0,98.0,94.0,87.0,83.0,96.0,87.0,96.0,95.0,107.0,82.0,82.0,92.0,95.0,92.0,81.0,76.0,86.0,113.0,96.0,105.0,97.0,99.0,95.0,108.0,84.0,85.0,110.0,105.0,104.0,105.0,94.0,93.0,99.0,82.0,71.0,90.0,71.0,80.0,83.0,77.0,87.0,79.0,105.0,87.0,74.0,88.0,49.0,67.0,70.0,47.0,43.0,41.0,37.0,42.0,37.0,35.0,22.0,21.0,23.0,18.0,15.0,10.0,20.0 C82059,11.0,8.0,12.0,10.0,10.0,6.0,9.0,14.0,11.0,14.0,7.0,11.0,7.0,13.0,10.0,10.0,6.0,11.0,8.0,11.0,12.0,4.0,12.0,8.0,15.0,7.0,14.0,20.0,26.0,24.0,19.0,16.0,12.0,16.0,28.0,21.0,18.0,10.0,16.0,18.0,6.0,10.0,7.0,6.0,8.0,10.0,13.0,13.0,10.0,12.0,10.0,8.0,8.0,15.0,9.0,9.0,6.0,8.0,7.0,5.0,7.0,3.0,3.0,6.0,5.0,6.0,6.0,4.0,,3.0,5.0,2.0,7.0,5.0,5.0,5.0,3.0,4.0,6.0,4.0,2.0,3.0,5.0,5.0,1.0,1.0,3.0,3.0,1.0,2.0,3.0,,2.0,,2.0,2.0 C82060,21.0,21.0,27.0,25.0,32.0,25.0,28.0,24.0,34.0,30.0,31.0,28.0,34.0,29.0,40.0,40.0,38.0,42.0,33.0,37.0,36.0,34.0,42.0,36.0,36.0,31.0,35.0,31.0,29.0,34.0,38.0,31.0,22.0,22.0,22.0,28.0,25.0,38.0,37.0,33.0,29.0,36.0,27.0,31.0,26.0,31.0,29.0,22.0,28.0,30.0,21.0,25.0,19.0,19.0,20.0,14.0,21.0,17.0,12.0,19.0,16.0,22.0,17.0,12.0,11.0,14.0,11.0,14.0,12.0,13.0,9.0,14.0,15.0,7.0,7.0,15.0,5.0,7.0,6.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,,3.0,1.0,2.0,1.0,2.0,,,2.0,2.0 C82061,71.0,61.0,92.0,83.0,82.0,91.0,87.0,81.0,84.0,83.0,90.0,93.0,87.0,92.0,100.0,90.0,85.0,88.0,76.0,54.0,71.0,46.0,63.0,67.0,78.0,76.0,91.0,112.0,114.0,113.0,131.0,118.0,117.0,129.0,138.0,141.0,127.0,129.0,126.0,110.0,133.0,117.0,110.0,104.0,113.0,96.0,77.0,88.0,85.0,85.0,87.0,67.0,100.0,94.0,111.0,105.0,101.0,92.0,93.0,95.0,78.0,77.0,78.0,83.0,74.0,86.0,84.0,81.0,64.0,70.0,64.0,63.0,69.0,58.0,56.0,68.0,64.0,63.0,57.0,52.0,54.0,33.0,31.0,25.0,27.0,23.0,25.0,16.0,20.0,12.0,18.0,10.0,10.0,5.0,4.0,12.0 C82062,43.0,35.0,29.0,39.0,37.0,52.0,39.0,47.0,30.0,51.0,49.0,51.0,44.0,55.0,61.0,54.0,49.0,47.0,49.0,40.0,29.0,49.0,35.0,36.0,35.0,35.0,39.0,41.0,47.0,58.0,43.0,45.0,48.0,68.0,53.0,66.0,53.0,61.0,47.0,58.0,56.0,59.0,54.0,58.0,73.0,71.0,58.0,55.0,48.0,75.0,53.0,43.0,71.0,51.0,84.0,69.0,76.0,74.0,72.0,57.0,71.0,73.0,70.0,62.0,69.0,66.0,62.0,66.0,51.0,49.0,57.0,44.0,55.0,59.0,55.0,55.0,51.0,76.0,64.0,42.0,42.0,36.0,35.0,26.0,27.0,18.0,18.0,24.0,15.0,16.0,19.0,11.0,8.0,9.0,6.0,5.0 C82063,77.0,76.0,67.0,70.0,79.0,75.0,64.0,64.0,61.0,64.0,70.0,67.0,82.0,86.0,66.0,71.0,82.0,81.0,72.0,60.0,83.0,88.0,102.0,108.0,121.0,106.0,111.0,103.0,97.0,113.0,97.0,91.0,91.0,81.0,75.0,80.0,71.0,78.0,85.0,87.0,80.0,82.0,98.0,85.0,84.0,61.0,80.0,60.0,82.0,70.0,85.0,52.0,70.0,84.0,69.0,71.0,81.0,58.0,72.0,67.0,62.0,68.0,80.0,67.0,56.0,49.0,54.0,50.0,50.0,50.0,47.0,43.0,31.0,33.0,27.0,26.0,29.0,44.0,29.0,28.0,22.0,19.0,23.0,24.0,21.0,15.0,8.0,12.0,19.0,7.0,8.0,4.0,7.0,3.0,4.0,11.0 C82064,50.0,59.0,54.0,49.0,52.0,56.0,59.0,64.0,73.0,72.0,55.0,66.0,69.0,61.0,72.0,82.0,70.0,48.0,58.0,60.0,42.0,71.0,51.0,51.0,63.0,68.0,76.0,69.0,71.0,79.0,79.0,91.0,75.0,87.0,96.0,94.0,87.0,85.0,80.0,67.0,92.0,90.0,93.0,86.0,85.0,78.0,79.0,64.0,56.0,65.0,86.0,69.0,64.0,89.0,84.0,79.0,89.0,87.0,96.0,93.0,97.0,84.0,86.0,65.0,78.0,87.0,93.0,63.0,73.0,74.0,75.0,80.0,63.0,78.0,59.0,80.0,73.0,90.0,59.0,44.0,70.0,57.0,50.0,35.0,29.0,31.0,34.0,29.0,12.0,28.0,23.0,18.0,9.0,12.0,5.0,38.0 C82066,98.0,95.0,99.0,110.0,109.0,116.0,118.0,114.0,91.0,115.0,100.0,99.0,101.0,125.0,105.0,93.0,89.0,91.0,87.0,65.0,74.0,72.0,62.0,60.0,71.0,89.0,82.0,77.0,96.0,105.0,133.0,132.0,127.0,121.0,156.0,148.0,133.0,168.0,151.0,141.0,144.0,133.0,132.0,115.0,131.0,112.0,127.0,90.0,87.0,98.0,86.0,99.0,118.0,112.0,93.0,103.0,101.0,115.0,101.0,83.0,111.0,93.0,87.0,100.0,86.0,100.0,91.0,84.0,86.0,81.0,67.0,68.0,75.0,71.0,69.0,64.0,74.0,87.0,75.0,57.0,76.0,59.0,50.0,36.0,40.0,45.0,47.0,49.0,36.0,24.0,31.0,28.0,9.0,13.0,21.0,38.0 C82067,25.0,34.0,38.0,36.0,42.0,56.0,38.0,46.0,55.0,73.0,52.0,55.0,69.0,69.0,70.0,58.0,60.0,66.0,60.0,41.0,43.0,37.0,35.0,36.0,49.0,45.0,37.0,38.0,42.0,44.0,39.0,51.0,52.0,34.0,46.0,55.0,55.0,52.0,54.0,65.0,77.0,56.0,68.0,61.0,68.0,49.0,76.0,60.0,56.0,56.0,59.0,55.0,48.0,56.0,69.0,63.0,58.0,53.0,47.0,68.0,57.0,62.0,71.0,52.0,69.0,67.0,58.0,47.0,57.0,48.0,50.0,54.0,47.0,53.0,40.0,34.0,48.0,39.0,47.0,40.0,41.0,29.0,30.0,17.0,24.0,30.0,21.0,26.0,26.0,14.0,23.0,18.0,9.0,12.0,11.0,16.0 C82068,45.0,61.0,62.0,53.0,55.0,57.0,62.0,50.0,67.0,67.0,67.0,69.0,74.0,71.0,73.0,55.0,71.0,77.0,65.0,57.0,52.0,62.0,66.0,52.0,58.0,63.0,61.0,70.0,79.0,74.0,79.0,64.0,95.0,74.0,81.0,86.0,91.0,90.0,80.0,89.0,66.0,69.0,65.0,64.0,70.0,69.0,62.0,71.0,71.0,58.0,93.0,70.0,80.0,71.0,84.0,82.0,92.0,96.0,92.0,86.0,94.0,99.0,97.0,62.0,95.0,74.0,72.0,85.0,76.0,69.0,71.0,72.0,71.0,61.0,57.0,79.0,93.0,93.0,87.0,58.0,70.0,57.0,74.0,50.0,48.0,45.0,55.0,26.0,27.0,23.0,13.0,28.0,18.0,14.0,15.0,31.0 C82070,42.0,25.0,40.0,42.0,35.0,52.0,43.0,45.0,54.0,64.0,60.0,42.0,75.0,51.0,55.0,57.0,62.0,55.0,53.0,58.0,78.0,63.0,61.0,77.0,75.0,81.0,83.0,72.0,62.0,79.0,92.0,71.0,66.0,75.0,78.0,82.0,79.0,79.0,91.0,81.0,68.0,73.0,76.0,73.0,78.0,69.0,67.0,76.0,62.0,54.0,64.0,70.0,65.0,70.0,54.0,73.0,61.0,58.0,57.0,58.0,64.0,50.0,58.0,67.0,55.0,43.0,56.0,48.0,48.0,49.0,47.0,59.0,37.0,52.0,42.0,44.0,36.0,49.0,46.0,28.0,31.0,32.0,33.0,26.0,25.0,19.0,22.0,18.0,23.0,14.0,12.0,7.0,10.0,6.0,6.0,13.0 C82071,57.0,45.0,61.0,94.0,68.0,55.0,65.0,70.0,74.0,75.0,78.0,96.0,88.0,80.0,92.0,102.0,87.0,86.0,81.0,62.0,54.0,72.0,80.0,64.0,79.0,88.0,82.0,81.0,104.0,85.0,76.0,90.0,86.0,97.0,116.0,108.0,98.0,104.0,97.0,96.0,93.0,109.0,82.0,87.0,88.0,84.0,80.0,64.0,90.0,71.0,84.0,90.0,85.0,77.0,112.0,82.0,116.0,82.0,98.0,113.0,85.0,105.0,96.0,101.0,77.0,81.0,94.0,66.0,64.0,72.0,79.0,64.0,90.0,69.0,57.0,73.0,56.0,76.0,64.0,56.0,59.0,70.0,40.0,39.0,31.0,39.0,51.0,36.0,33.0,26.0,26.0,19.0,18.0,8.0,10.0,27.0 C82072,36.0,36.0,40.0,56.0,64.0,44.0,46.0,47.0,47.0,41.0,54.0,42.0,51.0,48.0,46.0,53.0,43.0,39.0,38.0,50.0,55.0,42.0,40.0,48.0,40.0,44.0,56.0,56.0,55.0,49.0,54.0,60.0,53.0,70.0,62.0,67.0,60.0,59.0,75.0,57.0,59.0,46.0,69.0,52.0,55.0,48.0,46.0,45.0,45.0,59.0,49.0,54.0,51.0,64.0,73.0,71.0,63.0,53.0,51.0,61.0,42.0,62.0,50.0,54.0,49.0,51.0,39.0,58.0,37.0,43.0,46.0,34.0,45.0,42.0,42.0,38.0,38.0,32.0,51.0,34.0,37.0,38.0,31.0,17.0,16.0,27.0,15.0,10.0,10.0,13.0,16.0,8.0,7.0,5.0,5.0,11.0 C82073,61.0,55.0,77.0,72.0,62.0,100.0,87.0,92.0,94.0,94.0,90.0,101.0,110.0,103.0,126.0,107.0,123.0,108.0,74.0,73.0,90.0,73.0,80.0,99.0,80.0,92.0,83.0,102.0,106.0,100.0,92.0,107.0,115.0,96.0,109.0,131.0,123.0,129.0,121.0,132.0,127.0,116.0,92.0,103.0,113.0,94.0,102.0,84.0,90.0,99.0,92.0,93.0,95.0,100.0,94.0,94.0,81.0,77.0,77.0,70.0,69.0,72.0,68.0,65.0,67.0,67.0,66.0,48.0,55.0,57.0,49.0,47.0,38.0,45.0,36.0,48.0,39.0,44.0,26.0,35.0,29.0,15.0,17.0,15.0,12.0,16.0,19.0,20.0,12.0,6.0,13.0,3.0,7.0,1.0,3.0,7.0 C82075,36.0,51.0,53.0,68.0,37.0,53.0,53.0,50.0,53.0,51.0,61.0,55.0,59.0,64.0,67.0,46.0,47.0,59.0,52.0,61.0,40.0,45.0,44.0,60.0,59.0,45.0,48.0,62.0,65.0,51.0,66.0,64.0,53.0,66.0,83.0,79.0,65.0,69.0,84.0,66.0,82.0,68.0,64.0,64.0,68.0,70.0,56.0,58.0,68.0,68.0,82.0,63.0,77.0,82.0,86.0,87.0,83.0,90.0,92.0,73.0,82.0,73.0,76.0,69.0,70.0,77.0,74.0,74.0,56.0,61.0,53.0,68.0,58.0,70.0,57.0,69.0,79.0,53.0,68.0,56.0,62.0,49.0,46.0,30.0,20.0,28.0,36.0,21.0,15.0,17.0,14.0,13.0,8.0,11.0,5.0,10.0 C82077,44.0,44.0,45.0,43.0,51.0,36.0,59.0,48.0,68.0,55.0,54.0,68.0,58.0,67.0,125.0,139.0,154.0,162.0,131.0,59.0,54.0,51.0,48.0,49.0,44.0,48.0,42.0,52.0,31.0,43.0,34.0,68.0,54.0,70.0,57.0,67.0,58.0,68.0,48.0,44.0,84.0,63.0,57.0,64.0,74.0,74.0,73.0,77.0,75.0,66.0,84.0,75.0,104.0,87.0,103.0,95.0,109.0,111.0,89.0,110.0,110.0,96.0,94.0,107.0,90.0,95.0,97.0,93.0,90.0,92.0,86.0,83.0,79.0,74.0,70.0,77.0,88.0,101.0,89.0,63.0,80.0,58.0,63.0,34.0,42.0,38.0,28.0,28.0,22.0,22.0,12.0,25.0,14.0,11.0,7.0,29.0 C82078,47.0,42.0,38.0,56.0,58.0,64.0,63.0,66.0,52.0,62.0,46.0,66.0,59.0,71.0,77.0,69.0,69.0,68.0,56.0,54.0,42.0,67.0,50.0,74.0,60.0,60.0,67.0,69.0,65.0,62.0,64.0,66.0,86.0,81.0,84.0,88.0,76.0,87.0,62.0,77.0,76.0,72.0,82.0,58.0,83.0,81.0,69.0,64.0,58.0,81.0,87.0,76.0,90.0,88.0,101.0,101.0,91.0,113.0,90.0,89.0,77.0,108.0,92.0,93.0,62.0,73.0,80.0,72.0,68.0,63.0,76.0,71.0,75.0,84.0,68.0,81.0,68.0,65.0,76.0,60.0,64.0,49.0,31.0,34.0,37.0,28.0,26.0,20.0,16.0,21.0,19.0,13.0,12.0,14.0,4.0,20.0 C82079,26.0,25.0,37.0,23.0,32.0,32.0,29.0,39.0,36.0,51.0,44.0,40.0,56.0,51.0,42.0,52.0,49.0,44.0,39.0,44.0,39.0,34.0,42.0,32.0,35.0,36.0,52.0,35.0,37.0,39.0,41.0,49.0,53.0,45.0,41.0,40.0,53.0,49.0,54.0,45.0,50.0,39.0,43.0,44.0,61.0,41.0,41.0,43.0,36.0,46.0,36.0,32.0,46.0,37.0,58.0,48.0,58.0,56.0,38.0,43.0,40.0,38.0,51.0,46.0,43.0,39.0,37.0,35.0,32.0,24.0,34.0,39.0,25.0,31.0,30.0,31.0,30.0,28.0,31.0,16.0,23.0,26.0,23.0,25.0,24.0,19.0,17.0,15.0,12.0,12.0,17.0,11.0,8.0,6.0,2.0,18.0 C82080,23.0,32.0,32.0,33.0,36.0,25.0,22.0,33.0,28.0,32.0,24.0,32.0,33.0,32.0,34.0,33.0,34.0,41.0,34.0,30.0,36.0,30.0,41.0,27.0,37.0,30.0,36.0,39.0,40.0,38.0,36.0,31.0,28.0,32.0,35.0,29.0,40.0,34.0,36.0,31.0,30.0,26.0,37.0,32.0,28.0,39.0,24.0,22.0,23.0,27.0,27.0,27.0,31.0,22.0,24.0,22.0,23.0,21.0,29.0,26.0,26.0,17.0,19.0,18.0,24.0,13.0,19.0,12.0,13.0,19.0,12.0,14.0,16.0,10.0,14.0,15.0,7.0,12.0,7.0,6.0,8.0,5.0,7.0,8.0,4.0,6.0,3.0,4.0,3.0,3.0,5.0,1.0,1.0,,1.0,1.0 C82082,13.0,20.0,22.0,21.0,16.0,30.0,26.0,24.0,39.0,27.0,27.0,24.0,28.0,23.0,24.0,32.0,23.0,38.0,37.0,30.0,24.0,26.0,31.0,25.0,26.0,28.0,44.0,37.0,32.0,48.0,50.0,36.0,32.0,33.0,46.0,40.0,34.0,39.0,39.0,50.0,33.0,36.0,32.0,41.0,29.0,34.0,39.0,28.0,34.0,26.0,23.0,26.0,35.0,38.0,32.0,30.0,31.0,46.0,25.0,35.0,29.0,23.0,27.0,37.0,25.0,27.0,29.0,31.0,23.0,25.0,22.0,28.0,30.0,24.0,34.0,28.0,34.0,39.0,36.0,20.0,24.0,26.0,17.0,18.0,12.0,13.0,22.0,17.0,8.0,15.0,8.0,6.0,3.0,3.0,5.0,13.0 C82084,10.0,14.0,11.0,11.0,21.0,25.0,23.0,23.0,24.0,12.0,19.0,27.0,20.0,20.0,18.0,17.0,19.0,21.0,24.0,18.0,20.0,27.0,25.0,28.0,21.0,35.0,33.0,40.0,34.0,30.0,23.0,29.0,21.0,24.0,18.0,27.0,27.0,20.0,21.0,23.0,33.0,25.0,31.0,26.0,16.0,23.0,23.0,20.0,15.0,20.0,29.0,21.0,20.0,20.0,22.0,29.0,25.0,23.0,35.0,21.0,24.0,17.0,9.0,20.0,18.0,17.0,21.0,19.0,19.0,13.0,9.0,13.0,16.0,16.0,17.0,16.0,10.0,11.0,8.0,7.0,7.0,4.0,3.0,8.0,4.0,2.0,6.0,6.0,5.0,1.0,4.0,4.0,4.0,,5.0, C82086,47.0,42.0,54.0,63.0,53.0,61.0,63.0,56.0,69.0,62.0,62.0,61.0,64.0,81.0,84.0,78.0,77.0,64.0,64.0,53.0,69.0,58.0,66.0,66.0,89.0,86.0,81.0,102.0,89.0,105.0,99.0,101.0,100.0,98.0,90.0,93.0,99.0,86.0,78.0,93.0,89.0,93.0,84.0,86.0,77.0,71.0,78.0,68.0,50.0,47.0,62.0,51.0,62.0,54.0,57.0,53.0,51.0,54.0,48.0,56.0,46.0,49.0,42.0,40.0,47.0,48.0,38.0,33.0,25.0,27.0,28.0,29.0,21.0,33.0,16.0,23.0,23.0,22.0,24.0,14.0,18.0,11.0,8.0,9.0,5.0,12.0,11.0,13.0,11.0,2.0,9.0,3.0,6.0,1.0,1.0,6.0 C82088,47.0,49.0,42.0,36.0,57.0,44.0,46.0,53.0,68.0,58.0,58.0,65.0,68.0,72.0,82.0,60.0,56.0,66.0,61.0,51.0,64.0,60.0,60.0,80.0,66.0,82.0,77.0,81.0,81.0,79.0,84.0,71.0,72.0,70.0,70.0,75.0,69.0,79.0,64.0,73.0,94.0,65.0,67.0,55.0,69.0,86.0,67.0,61.0,66.0,48.0,59.0,50.0,63.0,73.0,71.0,54.0,65.0,55.0,64.0,67.0,49.0,51.0,48.0,51.0,74.0,60.0,37.0,45.0,47.0,40.0,47.0,52.0,50.0,41.0,43.0,37.0,27.0,35.0,26.0,24.0,14.0,24.0,19.0,23.0,15.0,18.0,8.0,6.0,12.0,9.0,4.0,6.0,5.0,3.0,5.0,5.0 C82091,47.0,53.0,82.0,64.0,54.0,64.0,56.0,58.0,71.0,57.0,83.0,72.0,67.0,77.0,63.0,76.0,71.0,58.0,56.0,62.0,42.0,37.0,50.0,48.0,49.0,59.0,51.0,52.0,60.0,58.0,67.0,68.0,77.0,98.0,85.0,91.0,98.0,74.0,73.0,83.0,88.0,80.0,82.0,78.0,52.0,53.0,51.0,59.0,58.0,66.0,64.0,58.0,65.0,44.0,63.0,61.0,51.0,70.0,60.0,48.0,55.0,55.0,51.0,53.0,62.0,48.0,34.0,40.0,34.0,37.0,35.0,36.0,33.0,27.0,32.0,27.0,23.0,35.0,35.0,23.0,29.0,23.0,14.0,15.0,17.0,21.0,24.0,14.0,27.0,18.0,15.0,6.0,9.0,6.0,5.0,23.0 C82092,34.0,31.0,35.0,29.0,28.0,41.0,31.0,17.0,29.0,26.0,20.0,26.0,33.0,26.0,31.0,21.0,18.0,19.0,27.0,18.0,17.0,19.0,15.0,27.0,21.0,42.0,40.0,44.0,40.0,54.0,47.0,49.0,54.0,39.0,56.0,40.0,43.0,53.0,31.0,53.0,32.0,31.0,28.0,41.0,28.0,34.0,27.0,29.0,20.0,27.0,24.0,28.0,30.0,19.0,24.0,24.0,24.0,24.0,14.0,16.0,25.0,30.0,18.0,23.0,24.0,13.0,17.0,15.0,27.0,18.0,20.0,17.0,19.0,8.0,15.0,13.0,20.0,12.0,8.0,11.0,7.0,15.0,7.0,9.0,7.0,3.0,6.0,5.0,4.0,4.0,7.0,1.0,1.0,1.0,1.0,1.0 C82093,47.0,56.0,54.0,51.0,73.0,61.0,69.0,56.0,55.0,75.0,75.0,82.0,72.0,87.0,72.0,82.0,64.0,73.0,79.0,50.0,56.0,63.0,58.0,73.0,60.0,55.0,73.0,64.0,83.0,72.0,76.0,68.0,70.0,70.0,82.0,86.0,88.0,79.0,66.0,76.0,80.0,89.0,78.0,85.0,75.0,83.0,77.0,96.0,73.0,80.0,91.0,73.0,89.0,90.0,119.0,105.0,112.0,115.0,89.0,95.0,110.0,97.0,92.0,73.0,90.0,81.0,90.0,73.0,83.0,74.0,62.0,62.0,72.0,65.0,58.0,76.0,56.0,64.0,50.0,43.0,44.0,43.0,41.0,21.0,36.0,20.0,20.0,22.0,17.0,19.0,9.0,7.0,10.0,1.0,4.0,10.0 C82094,33.0,26.0,37.0,41.0,31.0,43.0,42.0,52.0,49.0,49.0,42.0,53.0,46.0,70.0,43.0,64.0,52.0,46.0,53.0,47.0,41.0,40.0,40.0,38.0,38.0,36.0,44.0,48.0,45.0,34.0,41.0,49.0,45.0,46.0,54.0,58.0,52.0,44.0,54.0,54.0,35.0,49.0,55.0,43.0,44.0,44.0,63.0,37.0,39.0,50.0,61.0,28.0,45.0,47.0,46.0,56.0,47.0,39.0,47.0,41.0,43.0,37.0,32.0,31.0,37.0,34.0,33.0,34.0,23.0,30.0,28.0,19.0,25.0,18.0,27.0,28.0,21.0,26.0,20.0,15.0,16.0,10.0,15.0,11.0,9.0,10.0,4.0,6.0,4.0,6.0,2.0,,,,4.0,3.0 C82095,31.0,42.0,48.0,61.0,40.0,53.0,42.0,63.0,59.0,50.0,48.0,50.0,50.0,54.0,58.0,54.0,46.0,50.0,47.0,43.0,39.0,34.0,32.0,33.0,41.0,43.0,45.0,36.0,44.0,54.0,54.0,59.0,51.0,63.0,78.0,75.0,55.0,71.0,75.0,55.0,63.0,64.0,53.0,56.0,55.0,58.0,57.0,59.0,51.0,37.0,48.0,67.0,76.0,66.0,69.0,63.0,82.0,68.0,73.0,70.0,74.0,66.0,68.0,80.0,60.0,51.0,62.0,58.0,48.0,44.0,41.0,51.0,50.0,31.0,40.0,41.0,44.0,39.0,53.0,46.0,43.0,39.0,30.0,23.0,27.0,27.0,16.0,22.0,25.0,11.0,9.0,15.0,13.0,10.0,16.0,38.0 C82096,47.0,57.0,56.0,74.0,61.0,70.0,68.0,67.0,62.0,79.0,65.0,67.0,69.0,55.0,67.0,58.0,39.0,54.0,51.0,48.0,33.0,42.0,50.0,35.0,45.0,60.0,74.0,79.0,74.0,65.0,89.0,84.0,77.0,99.0,117.0,85.0,88.0,84.0,85.0,80.0,71.0,82.0,85.0,67.0,77.0,60.0,55.0,59.0,56.0,73.0,60.0,65.0,64.0,70.0,68.0,66.0,62.0,65.0,70.0,63.0,75.0,47.0,81.0,51.0,59.0,53.0,47.0,38.0,38.0,50.0,32.0,35.0,37.0,31.0,39.0,42.0,32.0,38.0,42.0,24.0,19.0,19.0,17.0,13.0,13.0,14.0,12.0,14.0,13.0,7.0,6.0,7.0,5.0,3.0,5.0,4.0 C82097,18.0,15.0,15.0,15.0,25.0,17.0,15.0,21.0,12.0,13.0,19.0,16.0,9.0,14.0,13.0,16.0,9.0,11.0,7.0,9.0,9.0,13.0,15.0,8.0,18.0,17.0,20.0,26.0,27.0,20.0,24.0,20.0,19.0,38.0,35.0,23.0,31.0,29.0,26.0,18.0,23.0,19.0,25.0,30.0,13.0,15.0,15.0,15.0,12.0,15.0,15.0,12.0,17.0,8.0,18.0,11.0,14.0,16.0,13.0,17.0,18.0,14.0,20.0,13.0,9.0,17.0,15.0,12.0,10.0,12.0,18.0,11.0,8.0,11.0,10.0,13.0,9.0,11.0,6.0,7.0,6.0,7.0,4.0,3.0,4.0,5.0,4.0,5.0,2.0,3.0,2.0,3.0,1.0,1.0,2.0,1.0 C82098,27.0,29.0,27.0,35.0,36.0,34.0,46.0,32.0,39.0,44.0,48.0,40.0,34.0,36.0,50.0,48.0,43.0,32.0,37.0,37.0,34.0,38.0,33.0,31.0,42.0,45.0,38.0,34.0,36.0,45.0,34.0,36.0,39.0,51.0,53.0,39.0,51.0,65.0,46.0,44.0,44.0,49.0,32.0,46.0,49.0,46.0,35.0,46.0,45.0,46.0,49.0,43.0,61.0,46.0,57.0,63.0,52.0,55.0,57.0,52.0,52.0,53.0,43.0,49.0,53.0,52.0,46.0,46.0,40.0,39.0,33.0,39.0,34.0,45.0,35.0,43.0,39.0,42.0,52.0,36.0,43.0,32.0,22.0,27.0,23.0,17.0,18.0,20.0,9.0,15.0,6.0,13.0,4.0,7.0,5.0,12.0 C82099,21.0,24.0,25.0,16.0,33.0,28.0,30.0,33.0,39.0,22.0,37.0,27.0,41.0,37.0,36.0,32.0,38.0,39.0,37.0,37.0,32.0,24.0,29.0,32.0,31.0,30.0,36.0,41.0,35.0,31.0,48.0,32.0,31.0,22.0,34.0,35.0,29.0,31.0,34.0,37.0,26.0,39.0,40.0,28.0,31.0,27.0,26.0,18.0,30.0,22.0,23.0,19.0,22.0,24.0,18.0,21.0,33.0,14.0,13.0,23.0,33.0,25.0,27.0,25.0,24.0,25.0,20.0,21.0,17.0,20.0,12.0,19.0,7.0,14.0,9.0,17.0,7.0,8.0,7.0,6.0,1.0,6.0,5.0,12.0,2.0,2.0,4.0,6.0,2.0,4.0,2.0,4.0,1.0,,,4.0 C82100,25.0,29.0,29.0,29.0,26.0,36.0,33.0,37.0,38.0,43.0,43.0,59.0,53.0,53.0,43.0,45.0,58.0,53.0,35.0,33.0,41.0,26.0,29.0,32.0,29.0,25.0,27.0,35.0,29.0,42.0,31.0,34.0,40.0,39.0,51.0,50.0,43.0,44.0,48.0,49.0,55.0,61.0,57.0,43.0,55.0,35.0,27.0,33.0,50.0,32.0,30.0,31.0,39.0,32.0,51.0,35.0,36.0,32.0,35.0,34.0,41.0,39.0,32.0,43.0,36.0,28.0,38.0,26.0,38.0,23.0,26.0,27.0,20.0,22.0,26.0,20.0,24.0,27.0,29.0,12.0,20.0,13.0,19.0,11.0,22.0,18.0,9.0,15.0,14.0,17.0,5.0,5.0,1.0,6.0,8.0,17.0 C82102,14.0,18.0,17.0,19.0,18.0,23.0,17.0,17.0,24.0,20.0,21.0,34.0,27.0,26.0,35.0,28.0,31.0,40.0,21.0,20.0,18.0,18.0,19.0,17.0,17.0,22.0,19.0,22.0,17.0,21.0,17.0,19.0,24.0,25.0,28.0,31.0,28.0,30.0,29.0,32.0,29.0,25.0,34.0,36.0,31.0,31.0,27.0,34.0,28.0,31.0,43.0,23.0,26.0,62.0,56.0,38.0,49.0,46.0,52.0,49.0,44.0,40.0,43.0,44.0,43.0,31.0,34.0,37.0,40.0,28.0,27.0,34.0,36.0,40.0,22.0,28.0,28.0,32.0,28.0,22.0,19.0,22.0,12.0,11.0,9.0,11.0,11.0,5.0,10.0,3.0,1.0,6.0,3.0,3.0,2.0,3.0 C82103,21.0,24.0,25.0,29.0,40.0,32.0,38.0,47.0,47.0,55.0,46.0,35.0,49.0,46.0,38.0,31.0,39.0,41.0,48.0,41.0,32.0,23.0,25.0,32.0,38.0,33.0,34.0,46.0,37.0,35.0,34.0,47.0,47.0,40.0,35.0,48.0,54.0,66.0,61.0,57.0,57.0,57.0,56.0,63.0,55.0,56.0,58.0,46.0,32.0,49.0,36.0,43.0,33.0,48.0,41.0,49.0,50.0,49.0,46.0,38.0,39.0,42.0,54.0,57.0,41.0,38.0,39.0,39.0,32.0,38.0,41.0,45.0,35.0,38.0,30.0,25.0,33.0,45.0,30.0,29.0,26.0,25.0,24.0,10.0,11.0,19.0,11.0,11.0,9.0,7.0,7.0,8.0,5.0,2.0,4.0,9.0 C82107,34.0,32.0,34.0,47.0,39.0,56.0,46.0,54.0,44.0,48.0,46.0,40.0,44.0,46.0,51.0,51.0,50.0,54.0,51.0,49.0,44.0,44.0,55.0,59.0,69.0,79.0,81.0,71.0,76.0,57.0,66.0,77.0,63.0,60.0,71.0,66.0,56.0,67.0,69.0,52.0,64.0,64.0,63.0,69.0,57.0,60.0,56.0,50.0,42.0,54.0,48.0,51.0,53.0,46.0,43.0,62.0,40.0,35.0,33.0,40.0,32.0,34.0,32.0,51.0,44.0,41.0,43.0,44.0,35.0,27.0,32.0,30.0,23.0,25.0,33.0,21.0,26.0,24.0,13.0,11.0,16.0,11.0,21.0,10.0,12.0,10.0,8.0,10.0,12.0,3.0,7.0,3.0,6.0,6.0,4.0,8.0 C82109,27.0,21.0,33.0,31.0,29.0,30.0,36.0,26.0,16.0,26.0,19.0,22.0,25.0,20.0,12.0,23.0,19.0,19.0,30.0,21.0,18.0,18.0,19.0,21.0,24.0,19.0,34.0,29.0,29.0,32.0,31.0,29.0,38.0,48.0,28.0,47.0,44.0,37.0,32.0,34.0,26.0,26.0,36.0,28.0,20.0,25.0,26.0,30.0,18.0,29.0,31.0,36.0,38.0,40.0,31.0,47.0,46.0,53.0,43.0,38.0,44.0,44.0,40.0,46.0,42.0,32.0,39.0,27.0,30.0,32.0,38.0,28.0,31.0,22.0,26.0,27.0,20.0,34.0,35.0,22.0,23.0,19.0,20.0,18.0,11.0,5.0,9.0,7.0,8.0,10.0,9.0,9.0,3.0,2.0,4.0,8.0 C82111,4.0,8.0,9.0,9.0,7.0,8.0,11.0,13.0,11.0,13.0,14.0,4.0,14.0,8.0,8.0,13.0,6.0,17.0,340.0,725.0,789.0,788.0,707.0,472.0,314.0,200.0,231.0,250.0,162.0,140.0,90.0,73.0,57.0,44.0,40.0,40.0,25.0,28.0,14.0,27.0,8.0,13.0,11.0,14.0,8.0,11.0,15.0,5.0,12.0,8.0,9.0,11.0,8.0,9.0,5.0,3.0,4.0,3.0,9.0,8.0,9.0,4.0,2.0,4.0,5.0,4.0,3.0,4.0,3.0,2.0,1.0,,1.0,,2.0,,3.0,1.0,1.0,1.0,,3.0,2.0,4.0,,3.0,1.0,2.0,4.0,4.0,2.0,3.0,1.0,2.0,1.0,9.0 C82112,45.0,42.0,59.0,50.0,43.0,50.0,64.0,61.0,60.0,64.0,60.0,73.0,74.0,66.0,75.0,65.0,70.0,70.0,52.0,74.0,43.0,47.0,67.0,51.0,56.0,68.0,70.0,62.0,74.0,75.0,70.0,81.0,70.0,59.0,93.0,81.0,75.0,73.0,75.0,84.0,72.0,79.0,90.0,65.0,85.0,78.0,84.0,70.0,61.0,67.0,76.0,66.0,67.0,66.0,60.0,64.0,57.0,72.0,60.0,66.0,78.0,60.0,52.0,61.0,49.0,49.0,37.0,49.0,33.0,41.0,35.0,45.0,33.0,23.0,41.0,27.0,31.0,30.0,36.0,13.0,22.0,16.0,13.0,21.0,17.0,18.0,9.0,11.0,11.0,11.0,9.0,8.0,7.0,2.0,2.0,11.0 C82114,5.0,17.0,8.0,10.0,17.0,6.0,7.0,18.0,10.0,10.0,11.0,18.0,13.0,12.0,20.0,7.0,12.0,11.0,10.0,18.0,13.0,8.0,10.0,11.0,23.0,18.0,24.0,20.0,16.0,28.0,25.0,20.0,19.0,21.0,17.0,26.0,25.0,25.0,12.0,16.0,18.0,12.0,24.0,13.0,17.0,16.0,17.0,18.0,12.0,12.0,13.0,7.0,16.0,13.0,13.0,14.0,7.0,7.0,17.0,9.0,11.0,7.0,10.0,11.0,7.0,9.0,9.0,10.0,5.0,5.0,11.0,3.0,6.0,2.0,3.0,5.0,1.0,8.0,7.0,2.0,6.0,2.0,1.0,4.0,2.0,3.0,1.0,2.0,,1.0,3.0,,,,,1.0 C82116,21.0,21.0,30.0,22.0,20.0,22.0,24.0,22.0,19.0,24.0,22.0,31.0,23.0,30.0,33.0,26.0,25.0,29.0,31.0,43.0,34.0,47.0,42.0,58.0,60.0,64.0,57.0,60.0,62.0,47.0,48.0,52.0,48.0,39.0,30.0,37.0,40.0,43.0,31.0,45.0,36.0,29.0,27.0,32.0,31.0,32.0,26.0,25.0,36.0,22.0,25.0,24.0,26.0,26.0,20.0,20.0,12.0,19.0,14.0,14.0,21.0,10.0,21.0,17.0,9.0,10.0,7.0,12.0,13.0,14.0,14.0,18.0,6.0,15.0,10.0,9.0,8.0,10.0,9.0,4.0,10.0,6.0,7.0,5.0,4.0,5.0,1.0,3.0,7.0,4.0,2.0,1.0,1.0,1.0,,3.0 C82119,25.0,19.0,15.0,23.0,19.0,23.0,15.0,13.0,20.0,18.0,21.0,11.0,11.0,16.0,24.0,19.0,18.0,15.0,16.0,14.0,6.0,15.0,28.0,27.0,24.0,33.0,32.0,39.0,43.0,30.0,44.0,28.0,35.0,27.0,35.0,38.0,26.0,22.0,25.0,14.0,20.0,18.0,26.0,15.0,19.0,19.0,18.0,23.0,11.0,16.0,21.0,14.0,13.0,13.0,9.0,16.0,18.0,13.0,11.0,14.0,14.0,6.0,7.0,11.0,15.0,10.0,10.0,10.0,12.0,12.0,7.0,8.0,15.0,5.0,12.0,11.0,12.0,6.0,6.0,,5.0,4.0,8.0,9.0,3.0,6.0,6.0,2.0,3.0,,,,2.0,1.0,2.0, C82120,16.0,18.0,20.0,15.0,22.0,14.0,15.0,19.0,21.0,16.0,17.0,20.0,16.0,17.0,21.0,23.0,21.0,24.0,14.0,10.0,17.0,12.0,19.0,19.0,16.0,18.0,33.0,29.0,24.0,28.0,24.0,24.0,29.0,17.0,24.0,18.0,29.0,16.0,22.0,23.0,12.0,30.0,25.0,16.0,26.0,24.0,21.0,13.0,24.0,20.0,33.0,24.0,29.0,28.0,19.0,24.0,27.0,33.0,29.0,22.0,32.0,28.0,28.0,39.0,28.0,31.0,27.0,43.0,32.0,24.0,26.0,30.0,29.0,17.0,26.0,27.0,23.0,25.0,36.0,19.0,14.0,16.0,11.0,15.0,11.0,6.0,8.0,6.0,5.0,9.0,3.0,4.0,4.0,1.0,1.0,7.0 C82121,54.0,58.0,69.0,75.0,60.0,77.0,68.0,74.0,84.0,79.0,87.0,85.0,71.0,86.0,85.0,87.0,91.0,80.0,74.0,58.0,62.0,61.0,54.0,67.0,75.0,92.0,89.0,94.0,92.0,97.0,103.0,100.0,115.0,121.0,98.0,125.0,94.0,89.0,100.0,89.0,105.0,97.0,109.0,100.0,88.0,91.0,105.0,80.0,70.0,86.0,86.0,106.0,112.0,85.0,99.0,100.0,95.0,93.0,99.0,120.0,92.0,101.0,98.0,121.0,93.0,98.0,88.0,99.0,89.0,87.0,77.0,75.0,94.0,80.0,85.0,69.0,96.0,93.0,78.0,70.0,67.0,48.0,54.0,44.0,28.0,30.0,36.0,30.0,22.0,21.0,19.0,18.0,16.0,9.0,9.0,30.0 C82124,62.0,55.0,38.0,67.0,66.0,63.0,41.0,64.0,64.0,75.0,60.0,54.0,54.0,57.0,69.0,63.0,34.0,55.0,273.0,650.0,758.0,699.0,557.0,550.0,533.0,452.0,449.0,489.0,389.0,327.0,320.0,235.0,185.0,172.0,163.0,161.0,140.0,121.0,122.0,126.0,111.0,118.0,83.0,88.0,90.0,74.0,66.0,64.0,54.0,73.0,60.0,61.0,48.0,61.0,53.0,53.0,63.0,55.0,45.0,50.0,52.0,45.0,47.0,45.0,39.0,28.0,43.0,24.0,36.0,30.0,29.0,20.0,16.0,25.0,18.0,23.0,16.0,15.0,19.0,17.0,17.0,13.0,11.0,7.0,8.0,11.0,11.0,4.0,5.0,9.0,3.0,3.0,5.0,4.0,1.0,3.0 C82600,30.0,34.0,28.0,40.0,33.0,41.0,43.0,37.0,31.0,43.0,41.0,29.0,41.0,39.0,34.0,32.0,44.0,30.0,40.0,30.0,22.0,39.0,24.0,27.0,36.0,36.0,44.0,47.0,48.0,42.0,49.0,61.0,52.0,66.0,65.0,40.0,46.0,44.0,50.0,41.0,47.0,28.0,32.0,40.0,57.0,51.0,43.0,27.0,28.0,30.0,32.0,37.0,39.0,34.0,50.0,42.0,53.0,43.0,40.0,48.0,51.0,32.0,36.0,28.0,44.0,34.0,39.0,32.0,23.0,27.0,27.0,22.0,33.0,26.0,25.0,21.0,26.0,18.0,28.0,11.0,19.0,21.0,14.0,14.0,9.0,7.0,7.0,6.0,5.0,15.0,8.0,5.0,5.0,2.0,4.0,3.0 C82610,25.0,43.0,38.0,45.0,42.0,59.0,53.0,71.0,55.0,49.0,61.0,79.0,70.0,63.0,79.0,66.0,69.0,57.0,44.0,54.0,56.0,40.0,48.0,39.0,34.0,22.0,28.0,40.0,30.0,32.0,46.0,45.0,47.0,54.0,50.0,59.0,64.0,60.0,56.0,52.0,59.0,55.0,73.0,52.0,46.0,45.0,53.0,38.0,25.0,35.0,47.0,28.0,35.0,34.0,35.0,39.0,38.0,31.0,33.0,31.0,25.0,33.0,15.0,26.0,26.0,27.0,27.0,22.0,16.0,23.0,12.0,16.0,17.0,22.0,16.0,14.0,13.0,15.0,13.0,15.0,6.0,8.0,6.0,9.0,4.0,8.0,8.0,4.0,6.0,6.0,,3.0,2.0,2.0,1.0,3.0 C82611,23.0,35.0,29.0,25.0,32.0,32.0,42.0,38.0,55.0,45.0,41.0,37.0,44.0,34.0,41.0,35.0,32.0,48.0,36.0,26.0,35.0,35.0,31.0,31.0,43.0,44.0,36.0,37.0,38.0,39.0,35.0,48.0,44.0,48.0,45.0,45.0,47.0,43.0,44.0,32.0,34.0,46.0,50.0,45.0,55.0,43.0,46.0,45.0,40.0,38.0,52.0,57.0,62.0,62.0,50.0,56.0,59.0,55.0,45.0,40.0,55.0,57.0,40.0,31.0,44.0,44.0,40.0,38.0,29.0,37.0,30.0,31.0,33.0,19.0,24.0,35.0,33.0,36.0,34.0,24.0,21.0,25.0,25.0,15.0,16.0,21.0,20.0,14.0,13.0,4.0,6.0,9.0,5.0,8.0,2.0,18.0 C82614,22.0,22.0,20.0,23.0,27.0,29.0,26.0,35.0,34.0,31.0,33.0,38.0,38.0,41.0,33.0,31.0,35.0,30.0,32.0,32.0,30.0,29.0,27.0,35.0,21.0,30.0,25.0,31.0,27.0,26.0,32.0,26.0,20.0,41.0,30.0,27.0,28.0,34.0,25.0,37.0,36.0,29.0,42.0,52.0,31.0,27.0,35.0,40.0,32.0,42.0,22.0,21.0,31.0,27.0,30.0,26.0,21.0,21.0,30.0,19.0,24.0,15.0,24.0,29.0,22.0,16.0,23.0,15.0,15.0,23.0,24.0,17.0,17.0,18.0,18.0,15.0,21.0,16.0,9.0,12.0,12.0,16.0,12.0,6.0,8.0,8.0,8.0,7.0,10.0,12.0,5.0,6.0,2.0,4.0,4.0,6.0 C82620,14.0,14.0,7.0,7.0,11.0,8.0,14.0,11.0,11.0,12.0,5.0,14.0,10.0,12.0,10.0,11.0,7.0,9.0,14.0,12.0,22.0,17.0,14.0,10.0,16.0,23.0,18.0,35.0,22.0,21.0,24.0,29.0,18.0,18.0,22.0,17.0,22.0,18.0,20.0,18.0,19.0,17.0,17.0,13.0,15.0,15.0,17.0,9.0,13.0,8.0,11.0,8.0,7.0,2.0,7.0,11.0,13.0,1.0,10.0,8.0,13.0,12.0,16.0,8.0,8.0,11.0,4.0,10.0,15.0,11.0,5.0,5.0,9.0,6.0,1.0,6.0,4.0,4.0,3.0,2.0,2.0,,4.0,4.0,5.0,3.0,2.0,1.0,1.0,,1.0,1.0,1.0,,,2.0 C82624,40.0,59.0,55.0,53.0,60.0,55.0,47.0,72.0,70.0,65.0,73.0,81.0,71.0,88.0,80.0,59.0,64.0,79.0,63.0,57.0,59.0,55.0,68.0,58.0,56.0,60.0,56.0,58.0,61.0,74.0,73.0,77.0,66.0,70.0,77.0,79.0,79.0,85.0,75.0,80.0,75.0,75.0,59.0,69.0,55.0,50.0,56.0,55.0,61.0,57.0,49.0,45.0,54.0,44.0,47.0,36.0,35.0,37.0,36.0,28.0,31.0,30.0,38.0,36.0,35.0,30.0,23.0,28.0,25.0,27.0,14.0,24.0,19.0,11.0,14.0,12.0,13.0,11.0,19.0,5.0,9.0,12.0,9.0,5.0,4.0,5.0,6.0,8.0,8.0,5.0,,5.0,1.0,4.0,3.0,12.0 C82627,42.0,30.0,46.0,49.0,35.0,56.0,39.0,35.0,47.0,46.0,51.0,31.0,49.0,54.0,53.0,46.0,46.0,53.0,35.0,45.0,37.0,38.0,33.0,45.0,28.0,45.0,45.0,65.0,50.0,43.0,57.0,54.0,55.0,53.0,65.0,67.0,66.0,55.0,70.0,53.0,88.0,66.0,59.0,60.0,69.0,51.0,53.0,41.0,44.0,42.0,34.0,50.0,41.0,45.0,33.0,43.0,47.0,49.0,38.0,48.0,61.0,55.0,46.0,53.0,47.0,44.0,44.0,45.0,37.0,39.0,36.0,34.0,34.0,34.0,30.0,34.0,20.0,27.0,25.0,21.0,27.0,33.0,18.0,20.0,12.0,9.0,16.0,12.0,12.0,11.0,9.0,8.0,3.0,6.0,5.0,7.0 C82628,11.0,11.0,14.0,12.0,11.0,14.0,15.0,22.0,26.0,19.0,24.0,27.0,21.0,17.0,24.0,23.0,14.0,19.0,19.0,16.0,10.0,15.0,13.0,9.0,17.0,17.0,12.0,7.0,19.0,9.0,17.0,14.0,26.0,14.0,25.0,26.0,22.0,23.0,23.0,21.0,30.0,25.0,37.0,32.0,22.0,23.0,24.0,11.0,24.0,18.0,27.0,12.0,29.0,23.0,22.0,32.0,25.0,19.0,23.0,23.0,17.0,22.0,39.0,30.0,33.0,23.0,18.0,26.0,20.0,23.0,14.0,31.0,33.0,19.0,16.0,19.0,20.0,25.0,17.0,10.0,12.0,15.0,11.0,12.0,6.0,5.0,11.0,6.0,7.0,5.0,6.0,1.0,5.0,3.0,2.0,1.0 C82631,41.0,47.0,35.0,36.0,49.0,43.0,45.0,43.0,44.0,49.0,46.0,41.0,55.0,50.0,46.0,50.0,41.0,53.0,38.0,32.0,33.0,35.0,36.0,36.0,44.0,44.0,41.0,38.0,45.0,46.0,51.0,58.0,57.0,55.0,58.0,68.0,57.0,71.0,68.0,68.0,46.0,58.0,61.0,61.0,43.0,46.0,62.0,33.0,40.0,40.0,50.0,36.0,54.0,45.0,54.0,64.0,55.0,47.0,53.0,45.0,43.0,52.0,53.0,46.0,42.0,36.0,41.0,36.0,24.0,24.0,26.0,25.0,19.0,28.0,22.0,21.0,21.0,31.0,37.0,12.0,18.0,13.0,11.0,12.0,9.0,3.0,13.0,5.0,6.0,3.0,5.0,1.0,5.0,1.0,4.0,4.0 C82634,33.0,46.0,31.0,44.0,36.0,42.0,39.0,33.0,39.0,44.0,44.0,32.0,42.0,44.0,38.0,39.0,33.0,29.0,29.0,28.0,31.0,26.0,27.0,30.0,38.0,30.0,39.0,37.0,41.0,61.0,50.0,53.0,59.0,54.0,79.0,60.0,44.0,46.0,44.0,40.0,55.0,48.0,40.0,32.0,49.0,36.0,49.0,33.0,30.0,27.0,25.0,38.0,43.0,30.0,38.0,44.0,35.0,30.0,42.0,53.0,50.0,48.0,35.0,31.0,35.0,23.0,32.0,34.0,19.0,32.0,25.0,38.0,13.0,21.0,29.0,31.0,19.0,27.0,22.0,16.0,20.0,18.0,19.0,13.0,10.0,8.0,16.0,3.0,8.0,2.0,1.0,6.0,3.0,5.0,5.0,5.0 C82639,46.0,49.0,54.0,46.0,72.0,55.0,64.0,56.0,48.0,72.0,65.0,52.0,63.0,53.0,75.0,55.0,56.0,57.0,46.0,74.0,56.0,59.0,54.0,61.0,60.0,63.0,75.0,77.0,67.0,79.0,73.0,86.0,70.0,87.0,84.0,86.0,72.0,77.0,77.0,77.0,77.0,79.0,58.0,73.0,69.0,62.0,69.0,59.0,71.0,61.0,61.0,54.0,55.0,75.0,62.0,57.0,67.0,60.0,68.0,58.0,53.0,60.0,62.0,56.0,58.0,50.0,40.0,46.0,40.0,29.0,35.0,38.0,41.0,33.0,31.0,36.0,20.0,45.0,29.0,26.0,26.0,29.0,32.0,21.0,24.0,16.0,27.0,17.0,10.0,15.0,11.0,12.0,9.0,2.0,7.0,21.0 C82642,60.0,54.0,48.0,55.0,64.0,42.0,61.0,76.0,67.0,62.0,57.0,68.0,51.0,69.0,64.0,54.0,78.0,63.0,59.0,62.0,64.0,83.0,61.0,74.0,75.0,71.0,96.0,114.0,90.0,103.0,78.0,77.0,85.0,83.0,86.0,72.0,69.0,86.0,75.0,84.0,77.0,74.0,92.0,61.0,64.0,79.0,65.0,67.0,57.0,64.0,58.0,45.0,59.0,45.0,53.0,53.0,52.0,44.0,58.0,46.0,51.0,50.0,56.0,44.0,48.0,35.0,44.0,48.0,38.0,34.0,32.0,29.0,33.0,35.0,22.0,22.0,21.0,21.0,18.0,10.0,7.0,12.0,19.0,14.0,8.0,11.0,7.0,6.0,10.0,3.0,2.0,3.0,5.0,,2.0,3.0 C82643,79.0,89.0,78.0,87.0,108.0,95.0,85.0,101.0,105.0,123.0,117.0,110.0,111.0,120.0,124.0,134.0,118.0,115.0,114.0,108.0,101.0,107.0,103.0,114.0,101.0,128.0,112.0,112.0,97.0,110.0,112.0,101.0,108.0,91.0,106.0,108.0,119.0,115.0,119.0,119.0,106.0,107.0,92.0,90.0,104.0,104.0,96.0,77.0,97.0,100.0,79.0,108.0,73.0,84.0,69.0,71.0,57.0,61.0,54.0,67.0,65.0,61.0,48.0,65.0,70.0,52.0,41.0,38.0,34.0,29.0,30.0,43.0,45.0,45.0,32.0,38.0,29.0,28.0,13.0,21.0,20.0,13.0,16.0,14.0,7.0,12.0,9.0,6.0,6.0,6.0,4.0,3.0,2.0,1.0,2.0,4.0 C82644,34.0,33.0,26.0,41.0,35.0,37.0,35.0,25.0,35.0,45.0,30.0,35.0,34.0,41.0,25.0,32.0,33.0,31.0,27.0,18.0,18.0,21.0,13.0,34.0,29.0,34.0,32.0,33.0,32.0,43.0,40.0,40.0,45.0,45.0,52.0,56.0,54.0,52.0,47.0,39.0,34.0,43.0,41.0,37.0,31.0,33.0,38.0,30.0,21.0,25.0,29.0,25.0,31.0,41.0,30.0,28.0,27.0,27.0,31.0,30.0,32.0,31.0,39.0,26.0,31.0,18.0,26.0,30.0,19.0,23.0,18.0,25.0,16.0,20.0,22.0,13.0,15.0,20.0,15.0,9.0,17.0,14.0,9.0,5.0,7.0,8.0,10.0,8.0,4.0,9.0,3.0,4.0,4.0,1.0,3.0,3.0 C82649,17.0,27.0,24.0,23.0,22.0,28.0,29.0,28.0,28.0,30.0,29.0,23.0,32.0,30.0,44.0,28.0,34.0,32.0,35.0,25.0,16.0,20.0,23.0,23.0,21.0,24.0,17.0,22.0,29.0,25.0,35.0,31.0,42.0,25.0,27.0,36.0,29.0,41.0,33.0,31.0,38.0,29.0,35.0,43.0,31.0,46.0,25.0,39.0,31.0,39.0,31.0,33.0,47.0,50.0,55.0,56.0,48.0,46.0,50.0,51.0,48.0,56.0,46.0,52.0,48.0,37.0,46.0,42.0,43.0,45.0,41.0,44.0,24.0,42.0,34.0,43.0,42.0,46.0,40.0,19.0,41.0,31.0,25.0,14.0,16.0,18.0,15.0,9.0,7.0,11.0,9.0,5.0,3.0,3.0,3.0,8.0 C82650,17.0,21.0,18.0,23.0,35.0,38.0,25.0,30.0,46.0,38.0,46.0,22.0,39.0,36.0,41.0,36.0,36.0,44.0,34.0,32.0,23.0,26.0,22.0,16.0,18.0,15.0,29.0,25.0,24.0,32.0,22.0,26.0,38.0,45.0,39.0,37.0,25.0,38.0,28.0,33.0,34.0,39.0,30.0,53.0,44.0,37.0,47.0,36.0,32.0,43.0,40.0,35.0,38.0,40.0,34.0,30.0,41.0,35.0,31.0,39.0,33.0,34.0,34.0,34.0,41.0,29.0,24.0,37.0,29.0,29.0,21.0,29.0,31.0,22.0,23.0,26.0,25.0,29.0,28.0,15.0,17.0,24.0,16.0,16.0,13.0,14.0,13.0,9.0,10.0,9.0,3.0,7.0,4.0,4.0,5.0,6.0 C82651,13.0,13.0,7.0,13.0,20.0,21.0,22.0,18.0,20.0,16.0,17.0,20.0,16.0,18.0,19.0,16.0,21.0,17.0,17.0,22.0,25.0,27.0,30.0,36.0,33.0,36.0,40.0,26.0,28.0,29.0,30.0,30.0,24.0,28.0,29.0,29.0,25.0,34.0,23.0,31.0,31.0,24.0,20.0,25.0,28.0,17.0,22.0,19.0,28.0,19.0,23.0,17.0,21.0,26.0,32.0,18.0,23.0,19.0,14.0,18.0,21.0,22.0,10.0,21.0,18.0,24.0,21.0,24.0,26.0,19.0,16.0,15.0,20.0,18.0,18.0,14.0,15.0,7.0,18.0,13.0,10.0,5.0,7.0,6.0,7.0,11.0,8.0,9.0,4.0,2.0,5.0,1.0,,1.0,1.0,2.0 C82653,11.0,12.0,8.0,9.0,11.0,12.0,9.0,12.0,12.0,6.0,13.0,4.0,12.0,9.0,13.0,13.0,7.0,11.0,10.0,8.0,10.0,9.0,7.0,12.0,15.0,17.0,15.0,25.0,20.0,20.0,29.0,17.0,19.0,19.0,9.0,14.0,21.0,18.0,18.0,19.0,22.0,21.0,13.0,10.0,10.0,10.0,9.0,13.0,7.0,5.0,8.0,11.0,5.0,8.0,9.0,9.0,5.0,12.0,6.0,13.0,9.0,3.0,14.0,8.0,4.0,4.0,3.0,2.0,3.0,5.0,4.0,3.0,2.0,3.0,6.0,4.0,1.0,2.0,3.0,2.0,4.0,3.0,2.0,,2.0,,,,,,,,,,, C82656,11.0,27.0,24.0,17.0,19.0,24.0,18.0,21.0,24.0,19.0,20.0,18.0,16.0,32.0,13.0,26.0,19.0,15.0,17.0,11.0,13.0,8.0,15.0,19.0,13.0,19.0,14.0,17.0,30.0,27.0,27.0,27.0,30.0,36.0,24.0,16.0,20.0,19.0,30.0,23.0,19.0,20.0,13.0,19.0,19.0,22.0,15.0,13.0,12.0,19.0,18.0,19.0,9.0,20.0,26.0,15.0,19.0,10.0,12.0,10.0,11.0,29.0,19.0,14.0,15.0,13.0,14.0,14.0,14.0,10.0,13.0,12.0,17.0,16.0,10.0,13.0,18.0,17.0,9.0,11.0,14.0,12.0,7.0,7.0,6.0,3.0,4.0,7.0,3.0,2.0,1.0,,2.0,,1.0,2.0 C82659,21.0,13.0,23.0,8.0,17.0,15.0,19.0,14.0,13.0,13.0,13.0,23.0,15.0,27.0,21.0,19.0,22.0,16.0,26.0,23.0,22.0,23.0,20.0,23.0,26.0,37.0,27.0,26.0,34.0,25.0,24.0,23.0,28.0,25.0,17.0,24.0,19.0,15.0,26.0,19.0,21.0,11.0,15.0,26.0,22.0,25.0,14.0,21.0,17.0,17.0,16.0,20.0,15.0,12.0,22.0,19.0,20.0,16.0,10.0,8.0,12.0,11.0,11.0,8.0,9.0,11.0,7.0,15.0,14.0,14.0,9.0,5.0,10.0,8.0,3.0,8.0,10.0,5.0,1.0,3.0,7.0,1.0,1.0,4.0,3.0,5.0,5.0,,1.0,,,,2.0,,1.0,1.0 C82660,28.0,48.0,41.0,35.0,32.0,41.0,36.0,47.0,37.0,36.0,40.0,44.0,39.0,41.0,38.0,38.0,54.0,45.0,33.0,50.0,52.0,39.0,56.0,66.0,55.0,57.0,67.0,45.0,58.0,65.0,54.0,58.0,57.0,50.0,46.0,55.0,40.0,56.0,55.0,48.0,53.0,57.0,47.0,34.0,44.0,60.0,41.0,51.0,44.0,40.0,35.0,38.0,40.0,27.0,32.0,44.0,32.0,28.0,29.0,24.0,24.0,36.0,40.0,35.0,29.0,29.0,31.0,24.0,27.0,31.0,24.0,18.0,19.0,18.0,17.0,17.0,22.0,28.0,14.0,12.0,15.0,12.0,12.0,11.0,8.0,13.0,9.0,14.0,9.0,6.0,7.0,8.0,7.0,2.0,3.0,13.0 C82662,39.0,59.0,66.0,55.0,48.0,61.0,42.0,46.0,61.0,55.0,49.0,33.0,48.0,29.0,35.0,41.0,43.0,34.0,51.0,62.0,51.0,42.0,60.0,69.0,80.0,90.0,92.0,148.0,127.0,121.0,129.0,133.0,155.0,122.0,128.0,140.0,92.0,101.0,78.0,91.0,71.0,79.0,51.0,71.0,52.0,48.0,58.0,34.0,37.0,38.0,24.0,34.0,32.0,33.0,28.0,39.0,25.0,19.0,25.0,24.0,22.0,16.0,34.0,26.0,19.0,17.0,17.0,14.0,13.0,8.0,12.0,12.0,12.0,10.0,12.0,2.0,5.0,3.0,8.0,4.0,3.0,5.0,3.0,,5.0,3.0,3.0,3.0,2.0,1.0,2.0,1.0,1.0,,,3.0 C82667,43.0,43.0,45.0,39.0,46.0,41.0,54.0,71.0,62.0,59.0,73.0,76.0,72.0,59.0,53.0,57.0,66.0,72.0,55.0,54.0,55.0,53.0,63.0,60.0,48.0,69.0,62.0,78.0,61.0,41.0,50.0,51.0,62.0,79.0,52.0,50.0,57.0,70.0,69.0,64.0,55.0,61.0,71.0,66.0,69.0,54.0,40.0,51.0,54.0,50.0,58.0,40.0,44.0,48.0,51.0,48.0,50.0,53.0,53.0,40.0,39.0,35.0,42.0,30.0,32.0,48.0,24.0,31.0,29.0,31.0,25.0,23.0,28.0,30.0,24.0,27.0,27.0,21.0,22.0,13.0,19.0,13.0,9.0,9.0,9.0,12.0,5.0,9.0,8.0,5.0,3.0,5.0,3.0,6.0,4.0,5.0 C82669,19.0,19.0,25.0,18.0,24.0,18.0,21.0,32.0,34.0,27.0,25.0,29.0,26.0,29.0,27.0,19.0,27.0,21.0,25.0,19.0,26.0,28.0,23.0,18.0,31.0,29.0,26.0,32.0,29.0,37.0,21.0,38.0,43.0,37.0,38.0,35.0,45.0,41.0,29.0,31.0,37.0,30.0,32.0,31.0,37.0,28.0,35.0,23.0,27.0,34.0,24.0,22.0,27.0,28.0,24.0,24.0,16.0,26.0,17.0,25.0,29.0,18.0,19.0,15.0,20.0,26.0,13.0,14.0,15.0,13.0,8.0,9.0,16.0,16.0,7.0,7.0,11.0,8.0,20.0,12.0,8.0,2.0,6.0,6.0,5.0,4.0,5.0,5.0,6.0,3.0,4.0,1.0,4.0,2.0,2.0, C82670,,,,,,,,,,,,,,,,,,1.0,5.0,4.0,6.0,7.0,1.0,3.0,2.0,4.0,3.0,2.0,4.0,1.0,1.0,6.0,4.0,4.0,1.0,7.0,7.0,4.0,2.0,8.0,6.0,5.0,5.0,3.0,8.0,3.0,3.0,1.0,4.0,3.0,3.0,,5.0,3.0,3.0,2.0,,,1.0,2.0,1.0,1.0,1.0,1.0,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, C82671,52.0,39.0,45.0,49.0,35.0,44.0,55.0,46.0,48.0,59.0,46.0,50.0,55.0,31.0,42.0,34.0,49.0,43.0,46.0,41.0,47.0,55.0,56.0,65.0,83.0,101.0,95.0,87.0,97.0,77.0,83.0,84.0,89.0,82.0,56.0,69.0,63.0,62.0,54.0,49.0,68.0,63.0,56.0,72.0,55.0,57.0,72.0,57.0,48.0,63.0,58.0,55.0,42.0,49.0,42.0,51.0,37.0,44.0,39.0,36.0,32.0,22.0,29.0,44.0,33.0,39.0,28.0,28.0,24.0,23.0,24.0,23.0,22.0,17.0,19.0,19.0,12.0,14.0,6.0,9.0,10.0,10.0,6.0,5.0,2.0,6.0,6.0,3.0,3.0,4.0,2.0,,1.0,1.0,1.0,2.0 C82676,31.0,39.0,46.0,52.0,57.0,48.0,46.0,62.0,59.0,52.0,59.0,49.0,55.0,67.0,53.0,58.0,45.0,60.0,40.0,36.0,50.0,39.0,31.0,38.0,47.0,45.0,49.0,46.0,54.0,39.0,51.0,69.0,46.0,50.0,49.0,55.0,59.0,80.0,57.0,47.0,64.0,58.0,62.0,45.0,53.0,47.0,38.0,44.0,41.0,41.0,38.0,36.0,40.0,51.0,29.0,41.0,44.0,41.0,48.0,26.0,38.0,31.0,34.0,32.0,25.0,25.0,30.0,34.0,26.0,27.0,30.0,31.0,28.0,28.0,17.0,25.0,33.0,22.0,19.0,20.0,27.0,17.0,19.0,13.0,25.0,15.0,10.0,10.0,14.0,10.0,4.0,5.0,2.0,5.0,1.0,13.0 C82678,20.0,20.0,20.0,20.0,22.0,25.0,23.0,28.0,27.0,33.0,41.0,42.0,33.0,27.0,31.0,33.0,42.0,33.0,29.0,32.0,19.0,29.0,35.0,27.0,33.0,36.0,41.0,42.0,28.0,34.0,44.0,32.0,51.0,27.0,31.0,40.0,39.0,48.0,50.0,44.0,59.0,44.0,40.0,43.0,48.0,44.0,33.0,45.0,41.0,33.0,45.0,41.0,44.0,31.0,37.0,44.0,47.0,31.0,49.0,41.0,37.0,32.0,31.0,46.0,35.0,33.0,34.0,25.0,24.0,28.0,30.0,37.0,19.0,30.0,29.0,32.0,37.0,30.0,18.0,15.0,24.0,21.0,24.0,15.0,9.0,10.0,6.0,7.0,8.0,5.0,3.0,11.0,9.0,6.0,1.0,10.0 C82680,15.0,16.0,17.0,19.0,15.0,25.0,29.0,22.0,23.0,30.0,22.0,31.0,28.0,28.0,27.0,33.0,36.0,31.0,23.0,27.0,32.0,21.0,32.0,24.0,42.0,46.0,38.0,54.0,28.0,35.0,38.0,41.0,36.0,43.0,26.0,36.0,19.0,36.0,30.0,41.0,32.0,31.0,30.0,31.0,33.0,46.0,25.0,15.0,31.0,35.0,21.0,30.0,28.0,22.0,31.0,28.0,36.0,31.0,28.0,28.0,30.0,16.0,36.0,25.0,32.0,25.0,24.0,17.0,22.0,26.0,22.0,17.0,34.0,26.0,18.0,19.0,23.0,21.0,19.0,21.0,8.0,13.0,19.0,5.0,17.0,20.0,7.0,9.0,11.0,5.0,9.0,8.0,3.0,4.0,4.0,6.0 Y00137,157.0,162.0,197.0,173.0,179.0,193.0,217.0,235.0,235.0,237.0,264.0,214.0,225.0,216.0,245.0,227.0,256.0,246.0,194.0,196.0,181.0,179.0,220.0,195.0,207.0,196.0,233.0,226.0,248.0,209.0,234.0,227.0,219.0,269.0,285.0,254.0,234.0,277.0,274.0,266.0,280.0,247.0,238.0,241.0,237.0,222.0,199.0,185.0,173.0,168.0,185.0,183.0,167.0,195.0,183.0,182.0,183.0,163.0,168.0,170.0,152.0,166.0,190.0,153.0,175.0,165.0,121.0,134.0,140.0,112.0,102.0,101.0,122.0,116.0,73.0,110.0,113.0,96.0,94.0,71.0,68.0,87.0,63.0,56.0,54.0,56.0,49.0,59.0,51.0,47.0,44.0,34.0,24.0,26.0,25.0,57.0 Y00252,7.0,13.0,13.0,18.0,14.0,15.0,16.0,18.0,19.0,21.0,19.0,22.0,25.0,21.0,24.0,12.0,18.0,21.0,15.0,7.0,14.0,16.0,14.0,9.0,12.0,8.0,14.0,8.0,14.0,9.0,12.0,13.0,15.0,16.0,13.0,25.0,13.0,21.0,19.0,27.0,18.0,23.0,23.0,22.0,25.0,20.0,17.0,15.0,19.0,19.0,16.0,31.0,31.0,22.0,26.0,24.0,27.0,23.0,25.0,22.0,25.0,25.0,23.0,17.0,18.0,17.0,27.0,16.0,17.0,18.0,14.0,20.0,21.0,22.0,17.0,5.0,20.0,24.0,17.0,11.0,16.0,11.0,14.0,11.0,9.0,9.0,6.0,7.0,6.0,2.0,3.0,3.0,2.0,5.0,1.0, Y00344,6.0,9.0,6.0,,7.0,6.0,8.0,6.0,5.0,1.0,2.0,,4.0,,,,4.0,3.0,,1.0,6.0,9.0,5.0,8.0,6.0,10.0,6.0,9.0,9.0,13.0,5.0,12.0,7.0,6.0,6.0,12.0,11.0,2.0,11.0,5.0,5.0,4.0,,2.0,2.0,4.0,5.0,,6.0,3.0,2.0,3.0,2.0,5.0,3.0,1.0,3.0,5.0,2.0,2.0,1.0,2.0,2.0,,1.0,,,,1.0,3.0,1.0,,,,,,,1.0,,,1.0,,,,,,1.0,,,,,,,,, Y02469,56.0,61.0,60.0,53.0,50.0,58.0,73.0,56.0,61.0,87.0,79.0,79.0,87.0,79.0,92.0,76.0,93.0,64.0,88.0,81.0,79.0,76.0,76.0,94.0,97.0,75.0,83.0,94.0,85.0,84.0,67.0,65.0,62.0,67.0,64.0,81.0,85.0,83.0,85.0,86.0,77.0,75.0,67.0,66.0,76.0,79.0,79.0,65.0,68.0,71.0,61.0,73.0,47.0,53.0,58.0,49.0,56.0,48.0,35.0,47.0,36.0,29.0,41.0,27.0,24.0,39.0,28.0,29.0,20.0,26.0,24.0,19.0,8.0,31.0,15.0,9.0,16.0,18.0,17.0,7.0,8.0,6.0,9.0,10.0,9.0,5.0,6.0,4.0,4.0,3.0,1.0,3.0,,3.0,,7.0 Y02686,59.0,55.0,39.0,60.0,54.0,41.0,47.0,40.0,53.0,39.0,39.0,41.0,31.0,24.0,24.0,31.0,27.0,24.0,58.0,95.0,110.0,97.0,116.0,119.0,130.0,169.0,159.0,164.0,162.0,165.0,157.0,155.0,164.0,122.0,113.0,88.0,99.0,80.0,85.0,74.0,60.0,70.0,50.0,43.0,38.0,53.0,45.0,36.0,26.0,29.0,30.0,29.0,19.0,28.0,17.0,16.0,19.0,25.0,21.0,22.0,22.0,14.0,11.0,14.0,8.0,9.0,9.0,11.0,12.0,3.0,6.0,3.0,6.0,6.0,2.0,3.0,4.0,,3.0,2.0,1.0,1.0,1.0,,,1.0,,,,,,1.0,,,, Y03584,,,,,,,,,,,,,,,,,,,,,,,1.0,,,1.0,,,1.0,1.0,,,1.0,1.0,,,1.0,,1.0,,,1.0,1.0,,1.0,,,,,,,,,,2.0,1.0,,,,,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 G83001,45.0,66.0,59.0,57.0,44.0,61.0,62.0,72.0,91.0,92.0,83.0,70.0,100.0,79.0,88.0,93.0,75.0,75.0,90.0,58.0,53.0,55.0,53.0,81.0,81.0,89.0,87.0,76.0,79.0,68.0,83.0,72.0,71.0,105.0,83.0,92.0,113.0,95.0,87.0,106.0,99.0,109.0,122.0,111.0,107.0,134.0,109.0,80.0,99.0,98.0,104.0,82.0,72.0,85.0,104.0,98.0,93.0,72.0,89.0,82.0,87.0,79.0,77.0,66.0,67.0,60.0,73.0,51.0,52.0,70.0,54.0,53.0,32.0,64.0,57.0,59.0,49.0,53.0,50.0,36.0,37.0,36.0,36.0,22.0,21.0,24.0,22.0,32.0,13.0,19.0,16.0,11.0,7.0,7.0,5.0,9.0 G83002,45.0,51.0,33.0,41.0,56.0,59.0,75.0,51.0,73.0,56.0,60.0,71.0,73.0,61.0,67.0,73.0,46.0,50.0,45.0,51.0,44.0,37.0,60.0,49.0,48.0,52.0,49.0,48.0,52.0,65.0,67.0,64.0,71.0,68.0,77.0,81.0,91.0,74.0,69.0,91.0,83.0,74.0,96.0,97.0,80.0,70.0,64.0,57.0,57.0,54.0,57.0,68.0,47.0,58.0,50.0,48.0,62.0,47.0,60.0,58.0,55.0,69.0,72.0,53.0,44.0,47.0,53.0,45.0,37.0,45.0,49.0,43.0,34.0,33.0,41.0,34.0,41.0,30.0,36.0,19.0,33.0,30.0,26.0,19.0,23.0,30.0,19.0,15.0,25.0,19.0,18.0,12.0,16.0,5.0,14.0,20.0 G83004,38.0,42.0,68.0,66.0,56.0,78.0,66.0,64.0,97.0,83.0,80.0,88.0,90.0,88.0,80.0,77.0,77.0,66.0,81.0,76.0,58.0,63.0,55.0,50.0,66.0,67.0,68.0,68.0,72.0,54.0,68.0,69.0,60.0,75.0,83.0,88.0,75.0,90.0,88.0,111.0,105.0,87.0,109.0,99.0,95.0,90.0,86.0,79.0,85.0,93.0,87.0,74.0,99.0,96.0,93.0,77.0,87.0,90.0,99.0,97.0,98.0,106.0,113.0,105.0,86.0,86.0,89.0,92.0,96.0,80.0,89.0,80.0,75.0,80.0,84.0,88.0,83.0,86.0,95.0,80.0,56.0,60.0,73.0,49.0,46.0,42.0,42.0,34.0,36.0,29.0,30.0,24.0,15.0,15.0,9.0,24.0 G83006,77.0,52.0,69.0,87.0,81.0,89.0,93.0,111.0,95.0,97.0,100.0,98.0,89.0,94.0,102.0,91.0,89.0,80.0,82.0,76.0,65.0,69.0,75.0,74.0,93.0,86.0,98.0,80.0,81.0,91.0,95.0,112.0,135.0,115.0,123.0,129.0,146.0,113.0,134.0,137.0,144.0,116.0,110.0,125.0,112.0,113.0,122.0,88.0,91.0,89.0,84.0,98.0,84.0,91.0,89.0,95.0,117.0,99.0,113.0,114.0,116.0,108.0,119.0,96.0,101.0,89.0,77.0,72.0,75.0,71.0,62.0,78.0,63.0,75.0,84.0,76.0,77.0,97.0,76.0,63.0,55.0,61.0,69.0,61.0,49.0,58.0,39.0,46.0,32.0,27.0,32.0,22.0,21.0,16.0,9.0,28.0 G83009,38.0,56.0,58.0,51.0,54.0,60.0,68.0,78.0,86.0,73.0,75.0,64.0,77.0,78.0,80.0,78.0,64.0,87.0,63.0,54.0,45.0,51.0,70.0,53.0,63.0,60.0,65.0,60.0,52.0,60.0,55.0,66.0,61.0,85.0,87.0,85.0,101.0,77.0,99.0,97.0,103.0,101.0,90.0,112.0,104.0,122.0,90.0,88.0,81.0,71.0,71.0,95.0,84.0,113.0,78.0,75.0,95.0,90.0,69.0,77.0,63.0,76.0,72.0,86.0,54.0,69.0,54.0,74.0,55.0,60.0,62.0,48.0,43.0,42.0,43.0,38.0,53.0,54.0,57.0,39.0,38.0,30.0,38.0,30.0,29.0,32.0,22.0,20.0,25.0,11.0,18.0,16.0,10.0,7.0,4.0,16.0 G83010,54.0,49.0,78.0,50.0,62.0,66.0,90.0,84.0,87.0,96.0,94.0,96.0,100.0,92.0,82.0,110.0,94.0,108.0,105.0,98.0,82.0,91.0,75.0,83.0,77.0,76.0,92.0,88.0,102.0,96.0,92.0,109.0,83.0,114.0,113.0,102.0,111.0,97.0,98.0,101.0,111.0,114.0,112.0,96.0,106.0,101.0,75.0,91.0,100.0,93.0,78.0,97.0,107.0,81.0,99.0,117.0,86.0,86.0,105.0,105.0,103.0,93.0,78.0,95.0,86.0,73.0,76.0,62.0,72.0,70.0,60.0,49.0,57.0,47.0,59.0,48.0,61.0,65.0,60.0,42.0,41.0,34.0,36.0,24.0,26.0,29.0,41.0,27.0,25.0,15.0,19.0,11.0,12.0,16.0,11.0,21.0 G83012,66.0,68.0,50.0,64.0,61.0,78.0,87.0,93.0,110.0,98.0,106.0,94.0,111.0,145.0,111.0,131.0,139.0,118.0,140.0,113.0,100.0,95.0,87.0,107.0,82.0,113.0,104.0,108.0,116.0,101.0,97.0,94.0,96.0,95.0,82.0,107.0,114.0,106.0,99.0,105.0,123.0,116.0,124.0,117.0,137.0,142.0,119.0,114.0,136.0,127.0,120.0,141.0,122.0,121.0,113.0,111.0,122.0,103.0,111.0,104.0,104.0,93.0,85.0,91.0,78.0,82.0,75.0,55.0,51.0,57.0,54.0,41.0,41.0,37.0,33.0,26.0,26.0,30.0,30.0,28.0,20.0,16.0,19.0,17.0,8.0,10.0,12.0,6.0,4.0,8.0,3.0,9.0,5.0,6.0,2.0,6.0 G83013,38.0,25.0,42.0,30.0,51.0,47.0,42.0,38.0,45.0,31.0,32.0,40.0,52.0,45.0,51.0,43.0,38.0,54.0,30.0,36.0,23.0,40.0,40.0,36.0,53.0,65.0,67.0,83.0,72.0,72.0,59.0,80.0,90.0,81.0,89.0,84.0,74.0,76.0,73.0,79.0,61.0,73.0,67.0,67.0,80.0,69.0,52.0,53.0,61.0,58.0,50.0,55.0,48.0,54.0,56.0,48.0,47.0,41.0,25.0,33.0,34.0,32.0,46.0,34.0,43.0,42.0,30.0,34.0,24.0,34.0,23.0,27.0,30.0,23.0,27.0,27.0,21.0,30.0,31.0,17.0,22.0,27.0,15.0,18.0,16.0,10.0,11.0,4.0,7.0,7.0,6.0,6.0,10.0,2.0,3.0,8.0 G83015,36.0,36.0,40.0,48.0,35.0,49.0,48.0,61.0,46.0,66.0,34.0,47.0,51.0,42.0,50.0,53.0,47.0,46.0,41.0,46.0,51.0,42.0,38.0,50.0,54.0,46.0,55.0,68.0,68.0,49.0,70.0,70.0,72.0,61.0,65.0,70.0,71.0,57.0,58.0,71.0,60.0,72.0,60.0,59.0,63.0,61.0,65.0,66.0,51.0,44.0,41.0,59.0,62.0,48.0,46.0,42.0,45.0,44.0,52.0,44.0,46.0,42.0,43.0,48.0,45.0,34.0,30.0,30.0,28.0,41.0,26.0,28.0,21.0,21.0,28.0,33.0,22.0,18.0,26.0,20.0,19.0,24.0,17.0,15.0,6.0,11.0,11.0,9.0,9.0,12.0,4.0,3.0,4.0,7.0,4.0,14.0 G83016,59.0,53.0,44.0,54.0,63.0,54.0,66.0,60.0,57.0,57.0,66.0,37.0,38.0,36.0,45.0,31.0,35.0,31.0,37.0,37.0,36.0,36.0,33.0,67.0,90.0,104.0,116.0,123.0,130.0,165.0,146.0,161.0,163.0,141.0,138.0,160.0,166.0,164.0,144.0,163.0,121.0,103.0,111.0,86.0,106.0,93.0,77.0,80.0,69.0,71.0,74.0,69.0,48.0,53.0,55.0,59.0,56.0,57.0,56.0,34.0,53.0,51.0,45.0,40.0,47.0,43.0,34.0,28.0,35.0,28.0,26.0,27.0,30.0,25.0,27.0,24.0,29.0,16.0,14.0,12.0,18.0,9.0,8.0,5.0,6.0,5.0,7.0,5.0,4.0,2.0,8.0,2.0,,2.0,,1.0 G83018,79.0,73.0,88.0,101.0,100.0,113.0,112.0,104.0,105.0,120.0,130.0,141.0,134.0,145.0,134.0,134.0,138.0,162.0,123.0,137.0,94.0,114.0,134.0,139.0,144.0,164.0,164.0,138.0,170.0,189.0,173.0,171.0,178.0,172.0,180.0,173.0,188.0,180.0,158.0,166.0,156.0,150.0,154.0,149.0,135.0,143.0,139.0,132.0,143.0,120.0,157.0,127.0,137.0,122.0,120.0,115.0,163.0,108.0,129.0,118.0,106.0,92.0,84.0,83.0,99.0,72.0,74.0,69.0,75.0,64.0,51.0,50.0,48.0,48.0,48.0,39.0,46.0,42.0,41.0,32.0,21.0,33.0,30.0,22.0,24.0,20.0,16.0,11.0,8.0,15.0,8.0,12.0,2.0,2.0,2.0,3.0 G83019,78.0,65.0,102.0,87.0,85.0,95.0,82.0,111.0,90.0,89.0,97.0,98.0,84.0,99.0,92.0,67.0,82.0,102.0,78.0,81.0,74.0,80.0,77.0,89.0,116.0,106.0,96.0,108.0,123.0,138.0,106.0,105.0,119.0,118.0,137.0,138.0,130.0,117.0,122.0,135.0,110.0,113.0,126.0,101.0,98.0,129.0,109.0,89.0,106.0,110.0,79.0,90.0,92.0,96.0,107.0,113.0,110.0,109.0,106.0,101.0,98.0,114.0,90.0,103.0,106.0,115.0,80.0,93.0,77.0,102.0,69.0,63.0,77.0,71.0,56.0,59.0,42.0,60.0,49.0,42.0,49.0,38.0,28.0,35.0,33.0,38.0,18.0,28.0,16.0,13.0,17.0,5.0,5.0,11.0,7.0,9.0 G83021,101.0,103.0,109.0,120.0,110.0,101.0,95.0,107.0,118.0,107.0,99.0,88.0,118.0,99.0,90.0,102.0,78.0,91.0,69.0,68.0,75.0,80.0,80.0,93.0,135.0,150.0,175.0,184.0,217.0,205.0,240.0,237.0,255.0,255.0,275.0,247.0,253.0,252.0,199.0,215.0,191.0,235.0,190.0,164.0,181.0,172.0,137.0,148.0,136.0,126.0,100.0,126.0,99.0,97.0,82.0,80.0,72.0,77.0,83.0,74.0,79.0,72.0,70.0,75.0,61.0,49.0,69.0,58.0,50.0,58.0,54.0,39.0,38.0,32.0,34.0,41.0,42.0,41.0,45.0,29.0,34.0,15.0,23.0,23.0,22.0,19.0,22.0,14.0,8.0,9.0,9.0,4.0,7.0,10.0,2.0,7.0 G83024,10.0,24.0,24.0,22.0,26.0,18.0,24.0,26.0,27.0,32.0,28.0,32.0,32.0,48.0,26.0,24.0,29.0,31.0,28.0,31.0,24.0,20.0,16.0,25.0,30.0,31.0,34.0,23.0,26.0,25.0,29.0,35.0,29.0,34.0,32.0,32.0,31.0,38.0,41.0,37.0,39.0,35.0,34.0,38.0,43.0,43.0,38.0,28.0,34.0,22.0,26.0,22.0,32.0,30.0,30.0,31.0,43.0,24.0,42.0,33.0,24.0,35.0,30.0,34.0,27.0,29.0,31.0,22.0,30.0,29.0,17.0,17.0,23.0,20.0,23.0,17.0,23.0,20.0,17.0,18.0,16.0,18.0,12.0,6.0,11.0,14.0,10.0,11.0,14.0,2.0,9.0,5.0,3.0,2.0,3.0,4.0 G83025,27.0,38.0,38.0,52.0,50.0,52.0,46.0,51.0,55.0,61.0,66.0,63.0,55.0,65.0,55.0,64.0,65.0,53.0,64.0,62.0,46.0,68.0,57.0,48.0,66.0,65.0,75.0,76.0,75.0,65.0,73.0,73.0,78.0,76.0,79.0,69.0,70.0,67.0,66.0,78.0,74.0,78.0,63.0,86.0,77.0,91.0,67.0,65.0,69.0,56.0,55.0,68.0,76.0,76.0,67.0,77.0,81.0,81.0,88.0,86.0,99.0,108.0,87.0,99.0,78.0,73.0,73.0,75.0,59.0,67.0,53.0,59.0,52.0,62.0,58.0,62.0,58.0,69.0,54.0,46.0,37.0,44.0,47.0,30.0,19.0,30.0,36.0,32.0,24.0,16.0,10.0,14.0,10.0,11.0,7.0,15.0 G83026,41.0,42.0,44.0,53.0,38.0,53.0,54.0,42.0,55.0,55.0,67.0,57.0,65.0,55.0,54.0,63.0,66.0,68.0,50.0,51.0,44.0,39.0,47.0,49.0,74.0,65.0,72.0,72.0,58.0,61.0,70.0,76.0,88.0,66.0,68.0,84.0,80.0,84.0,75.0,62.0,66.0,67.0,71.0,70.0,68.0,66.0,67.0,54.0,53.0,52.0,61.0,44.0,53.0,37.0,71.0,44.0,40.0,49.0,51.0,38.0,39.0,39.0,28.0,31.0,28.0,25.0,26.0,28.0,27.0,15.0,16.0,9.0,19.0,15.0,15.0,10.0,13.0,9.0,11.0,13.0,6.0,9.0,9.0,6.0,2.0,7.0,6.0,5.0,2.0,5.0,4.0,4.0,,,1.0,4.0 G83027,90.0,117.0,127.0,124.0,128.0,106.0,109.0,127.0,118.0,123.0,111.0,106.0,100.0,122.0,99.0,113.0,127.0,112.0,101.0,117.0,90.0,92.0,122.0,131.0,145.0,131.0,152.0,145.0,173.0,167.0,197.0,182.0,207.0,195.0,194.0,201.0,212.0,184.0,169.0,204.0,162.0,170.0,176.0,175.0,153.0,141.0,144.0,119.0,136.0,133.0,102.0,104.0,124.0,127.0,124.0,110.0,123.0,100.0,127.0,120.0,110.0,106.0,97.0,93.0,95.0,90.0,92.0,90.0,74.0,96.0,78.0,57.0,72.0,82.0,58.0,60.0,56.0,80.0,76.0,35.0,48.0,39.0,36.0,29.0,27.0,26.0,25.0,25.0,24.0,10.0,12.0,12.0,11.0,10.0,4.0,24.0 G83028,54.0,76.0,68.0,91.0,81.0,78.0,105.0,82.0,83.0,92.0,91.0,91.0,96.0,96.0,87.0,90.0,81.0,94.0,109.0,71.0,86.0,78.0,83.0,100.0,78.0,94.0,110.0,112.0,114.0,112.0,102.0,107.0,96.0,109.0,133.0,108.0,130.0,122.0,150.0,99.0,113.0,107.0,113.0,148.0,126.0,97.0,85.0,93.0,90.0,83.0,85.0,69.0,76.0,74.0,73.0,82.0,75.0,93.0,72.0,91.0,88.0,75.0,75.0,64.0,85.0,66.0,56.0,66.0,55.0,60.0,42.0,47.0,50.0,46.0,46.0,45.0,39.0,44.0,43.0,33.0,37.0,27.0,26.0,24.0,22.0,29.0,25.0,19.0,19.0,7.0,11.0,13.0,6.0,5.0,6.0,12.0 G83029,33.0,29.0,30.0,43.0,32.0,40.0,48.0,45.0,32.0,50.0,36.0,47.0,45.0,37.0,35.0,57.0,44.0,34.0,40.0,41.0,29.0,22.0,41.0,36.0,44.0,43.0,44.0,41.0,43.0,43.0,39.0,41.0,45.0,33.0,44.0,44.0,59.0,57.0,48.0,47.0,59.0,33.0,52.0,49.0,41.0,56.0,51.0,53.0,40.0,66.0,48.0,57.0,51.0,55.0,68.0,64.0,58.0,59.0,44.0,58.0,53.0,44.0,47.0,53.0,47.0,57.0,31.0,31.0,36.0,36.0,34.0,28.0,41.0,32.0,27.0,41.0,35.0,46.0,36.0,39.0,37.0,25.0,31.0,15.0,25.0,32.0,24.0,22.0,18.0,17.0,14.0,17.0,11.0,11.0,11.0,14.0 G83030,37.0,32.0,46.0,53.0,41.0,53.0,34.0,44.0,44.0,39.0,42.0,35.0,42.0,45.0,48.0,34.0,37.0,43.0,33.0,48.0,43.0,40.0,39.0,37.0,43.0,62.0,58.0,65.0,71.0,51.0,60.0,54.0,65.0,62.0,46.0,60.0,59.0,55.0,68.0,51.0,62.0,62.0,52.0,58.0,49.0,47.0,46.0,44.0,34.0,46.0,39.0,35.0,41.0,51.0,34.0,23.0,41.0,48.0,39.0,33.0,33.0,22.0,31.0,26.0,24.0,26.0,27.0,21.0,27.0,12.0,20.0,22.0,26.0,20.0,13.0,12.0,18.0,24.0,14.0,19.0,15.0,9.0,8.0,8.0,5.0,7.0,9.0,3.0,7.0,5.0,,6.0,1.0,3.0,,4.0 G83031,33.0,28.0,33.0,38.0,28.0,36.0,33.0,42.0,45.0,54.0,28.0,49.0,49.0,49.0,54.0,66.0,44.0,59.0,50.0,43.0,41.0,40.0,40.0,50.0,42.0,52.0,51.0,52.0,60.0,56.0,58.0,54.0,56.0,39.0,59.0,56.0,41.0,55.0,64.0,58.0,52.0,47.0,48.0,37.0,45.0,51.0,48.0,43.0,57.0,40.0,48.0,55.0,48.0,49.0,44.0,49.0,56.0,58.0,44.0,42.0,43.0,56.0,45.0,36.0,43.0,41.0,24.0,33.0,42.0,16.0,22.0,25.0,32.0,18.0,31.0,27.0,21.0,28.0,17.0,13.0,21.0,16.0,22.0,12.0,9.0,9.0,8.0,16.0,8.0,7.0,5.0,4.0,4.0,5.0,1.0,4.0 G83033,27.0,31.0,34.0,28.0,32.0,24.0,28.0,41.0,19.0,19.0,23.0,19.0,32.0,32.0,26.0,28.0,25.0,24.0,30.0,15.0,18.0,21.0,28.0,34.0,29.0,29.0,22.0,32.0,29.0,40.0,37.0,32.0,40.0,25.0,32.0,55.0,49.0,41.0,45.0,40.0,28.0,26.0,40.0,37.0,30.0,40.0,36.0,33.0,40.0,24.0,32.0,27.0,35.0,24.0,26.0,38.0,36.0,44.0,41.0,36.0,28.0,47.0,34.0,34.0,30.0,35.0,36.0,34.0,33.0,43.0,27.0,31.0,31.0,37.0,39.0,40.0,39.0,29.0,34.0,28.0,31.0,24.0,19.0,10.0,18.0,13.0,21.0,8.0,16.0,7.0,14.0,2.0,6.0,3.0,6.0,5.0 G83039,47.0,40.0,57.0,61.0,48.0,67.0,68.0,80.0,74.0,65.0,60.0,55.0,68.0,72.0,65.0,58.0,69.0,66.0,67.0,63.0,53.0,66.0,58.0,72.0,60.0,54.0,82.0,79.0,67.0,105.0,88.0,76.0,79.0,94.0,92.0,100.0,100.0,105.0,107.0,98.0,84.0,82.0,75.0,84.0,85.0,71.0,70.0,63.0,64.0,64.0,65.0,59.0,63.0,66.0,68.0,70.0,66.0,58.0,72.0,73.0,59.0,62.0,57.0,58.0,44.0,51.0,40.0,35.0,45.0,27.0,27.0,39.0,18.0,21.0,29.0,19.0,19.0,16.0,20.0,25.0,10.0,12.0,7.0,9.0,7.0,7.0,8.0,9.0,6.0,1.0,6.0,3.0,5.0,1.0,2.0,6.0 G83044,64.0,60.0,75.0,73.0,76.0,84.0,88.0,68.0,91.0,75.0,75.0,81.0,77.0,75.0,84.0,84.0,85.0,94.0,63.0,80.0,79.0,76.0,77.0,73.0,80.0,99.0,109.0,102.0,118.0,104.0,105.0,107.0,114.0,117.0,107.0,109.0,126.0,107.0,113.0,122.0,102.0,117.0,123.0,90.0,109.0,94.0,104.0,81.0,105.0,85.0,93.0,96.0,83.0,92.0,93.0,68.0,67.0,86.0,67.0,52.0,64.0,44.0,63.0,71.0,63.0,56.0,58.0,48.0,54.0,43.0,45.0,48.0,39.0,33.0,30.0,33.0,28.0,26.0,22.0,20.0,20.0,18.0,12.0,11.0,11.0,12.0,11.0,9.0,10.0,5.0,7.0,8.0,3.0,6.0,1.0,5.0 G83046,42.0,35.0,34.0,39.0,37.0,30.0,47.0,38.0,37.0,35.0,35.0,36.0,49.0,37.0,27.0,30.0,45.0,36.0,22.0,34.0,31.0,25.0,37.0,31.0,41.0,29.0,38.0,43.0,43.0,35.0,46.0,58.0,50.0,54.0,64.0,58.0,52.0,58.0,52.0,49.0,57.0,47.0,50.0,40.0,65.0,44.0,41.0,48.0,39.0,49.0,26.0,27.0,40.0,37.0,34.0,37.0,34.0,34.0,42.0,36.0,46.0,42.0,35.0,37.0,54.0,37.0,41.0,30.0,33.0,31.0,39.0,37.0,31.0,33.0,18.0,27.0,32.0,21.0,30.0,18.0,19.0,15.0,13.0,19.0,9.0,8.0,11.0,14.0,9.0,6.0,8.0,6.0,6.0,3.0,3.0,7.0 G83047,23.0,40.0,54.0,46.0,42.0,44.0,44.0,42.0,41.0,44.0,41.0,36.0,49.0,51.0,42.0,44.0,50.0,65.0,88.0,87.0,109.0,111.0,77.0,63.0,81.0,84.0,72.0,73.0,64.0,65.0,83.0,65.0,72.0,57.0,67.0,74.0,62.0,62.0,61.0,59.0,87.0,61.0,59.0,64.0,57.0,58.0,67.0,59.0,60.0,67.0,87.0,59.0,90.0,73.0,55.0,63.0,73.0,80.0,72.0,86.0,81.0,79.0,52.0,68.0,69.0,58.0,63.0,60.0,44.0,47.0,57.0,46.0,45.0,44.0,40.0,49.0,47.0,46.0,47.0,61.0,41.0,34.0,32.0,33.0,19.0,32.0,30.0,23.0,32.0,22.0,16.0,9.0,5.0,12.0,8.0,20.0 G83049,66.0,88.0,77.0,81.0,90.0,79.0,80.0,63.0,80.0,66.0,83.0,61.0,57.0,67.0,55.0,68.0,64.0,60.0,37.0,57.0,48.0,53.0,61.0,58.0,60.0,72.0,68.0,67.0,75.0,75.0,104.0,87.0,92.0,100.0,112.0,111.0,104.0,113.0,111.0,84.0,112.0,99.0,84.0,96.0,84.0,108.0,97.0,66.0,77.0,66.0,66.0,72.0,66.0,68.0,77.0,77.0,79.0,60.0,89.0,71.0,72.0,89.0,47.0,74.0,63.0,60.0,63.0,62.0,66.0,56.0,68.0,57.0,58.0,52.0,59.0,59.0,57.0,75.0,68.0,65.0,49.0,47.0,40.0,38.0,28.0,31.0,35.0,42.0,24.0,28.0,16.0,21.0,21.0,12.0,12.0,31.0 G83052,89.0,101.0,99.0,118.0,122.0,112.0,96.0,105.0,115.0,107.0,126.0,113.0,107.0,120.0,88.0,136.0,130.0,123.0,114.0,96.0,106.0,105.0,99.0,109.0,141.0,110.0,122.0,104.0,128.0,162.0,142.0,126.0,148.0,167.0,139.0,172.0,162.0,163.0,159.0,160.0,154.0,140.0,156.0,127.0,134.0,129.0,146.0,120.0,116.0,101.0,114.0,114.0,98.0,107.0,111.0,86.0,105.0,89.0,92.0,107.0,87.0,106.0,101.0,91.0,91.0,98.0,90.0,76.0,87.0,75.0,71.0,55.0,51.0,55.0,59.0,58.0,56.0,66.0,56.0,39.0,46.0,41.0,41.0,39.0,31.0,27.0,21.0,17.0,16.0,19.0,13.0,11.0,8.0,8.0,9.0,23.0 G83053,115.0,127.0,126.0,132.0,133.0,127.0,139.0,137.0,141.0,143.0,117.0,155.0,141.0,156.0,149.0,136.0,148.0,153.0,140.0,96.0,116.0,102.0,103.0,106.0,124.0,126.0,114.0,144.0,141.0,155.0,166.0,164.0,171.0,186.0,173.0,159.0,189.0,205.0,192.0,187.0,186.0,172.0,182.0,157.0,162.0,159.0,156.0,138.0,129.0,126.0,123.0,132.0,136.0,136.0,143.0,131.0,135.0,108.0,131.0,158.0,128.0,124.0,116.0,97.0,91.0,120.0,103.0,87.0,85.0,67.0,74.0,76.0,74.0,78.0,74.0,65.0,67.0,83.0,80.0,69.0,74.0,62.0,63.0,44.0,51.0,52.0,40.0,37.0,24.0,24.0,19.0,21.0,15.0,6.0,7.0,19.0 G83057,62.0,66.0,65.0,56.0,67.0,67.0,57.0,67.0,57.0,70.0,65.0,50.0,52.0,64.0,57.0,65.0,58.0,65.0,60.0,50.0,55.0,61.0,69.0,63.0,58.0,67.0,68.0,60.0,61.0,73.0,77.0,90.0,101.0,115.0,88.0,96.0,97.0,97.0,84.0,83.0,88.0,93.0,90.0,77.0,71.0,77.0,71.0,70.0,66.0,77.0,58.0,57.0,55.0,72.0,63.0,63.0,94.0,70.0,82.0,91.0,88.0,87.0,67.0,84.0,83.0,72.0,85.0,59.0,65.0,52.0,57.0,55.0,58.0,59.0,63.0,65.0,54.0,66.0,64.0,48.0,52.0,30.0,45.0,31.0,39.0,24.0,23.0,22.0,20.0,18.0,20.0,13.0,6.0,5.0,1.0,12.0 G83058,53.0,68.0,46.0,49.0,53.0,55.0,36.0,52.0,44.0,41.0,40.0,46.0,53.0,49.0,45.0,46.0,41.0,39.0,50.0,72.0,69.0,85.0,87.0,101.0,152.0,143.0,138.0,122.0,158.0,158.0,158.0,153.0,141.0,149.0,168.0,168.0,128.0,130.0,132.0,90.0,115.0,103.0,89.0,78.0,96.0,85.0,85.0,74.0,65.0,57.0,77.0,45.0,64.0,55.0,56.0,56.0,61.0,66.0,48.0,50.0,61.0,63.0,49.0,43.0,43.0,39.0,34.0,35.0,23.0,22.0,21.0,19.0,16.0,18.0,17.0,20.0,17.0,26.0,18.0,17.0,16.0,15.0,13.0,10.0,5.0,4.0,3.0,2.0,11.0,6.0,8.0,3.0,3.0,1.0,4.0,4.0 G83060,29.0,43.0,40.0,38.0,35.0,37.0,36.0,54.0,42.0,50.0,46.0,57.0,67.0,50.0,62.0,54.0,53.0,44.0,42.0,52.0,52.0,51.0,44.0,60.0,55.0,54.0,78.0,60.0,66.0,75.0,51.0,56.0,71.0,64.0,60.0,44.0,46.0,62.0,42.0,60.0,45.0,66.0,46.0,50.0,57.0,52.0,53.0,45.0,41.0,49.0,44.0,50.0,55.0,34.0,52.0,44.0,45.0,43.0,47.0,34.0,38.0,35.0,33.0,42.0,36.0,32.0,29.0,30.0,22.0,20.0,25.0,22.0,26.0,15.0,15.0,20.0,8.0,18.0,20.0,8.0,11.0,11.0,5.0,4.0,6.0,6.0,1.0,5.0,3.0,7.0,1.0,,,,4.0,2.0 G83062,53.0,71.0,73.0,73.0,82.0,87.0,80.0,92.0,98.0,91.0,96.0,102.0,102.0,113.0,90.0,94.0,104.0,99.0,85.0,64.0,61.0,73.0,55.0,86.0,86.0,69.0,94.0,75.0,105.0,103.0,93.0,93.0,100.0,98.0,122.0,100.0,128.0,105.0,106.0,92.0,88.0,100.0,104.0,103.0,95.0,104.0,93.0,83.0,74.0,88.0,83.0,75.0,76.0,78.0,75.0,83.0,74.0,67.0,76.0,65.0,59.0,58.0,54.0,47.0,45.0,48.0,30.0,35.0,33.0,30.0,33.0,24.0,35.0,20.0,19.0,10.0,17.0,19.0,16.0,10.0,15.0,13.0,11.0,10.0,11.0,14.0,13.0,10.0,6.0,8.0,1.0,2.0,2.0,3.0,,1.0 G83065,52.0,71.0,61.0,69.0,58.0,90.0,88.0,98.0,103.0,84.0,95.0,101.0,82.0,82.0,65.0,82.0,83.0,57.0,91.0,126.0,130.0,133.0,108.0,130.0,160.0,168.0,170.0,178.0,164.0,167.0,168.0,180.0,165.0,196.0,174.0,166.0,162.0,166.0,165.0,153.0,171.0,153.0,167.0,128.0,160.0,135.0,147.0,135.0,90.0,104.0,89.0,77.0,82.0,63.0,82.0,73.0,77.0,64.0,71.0,57.0,83.0,64.0,71.0,56.0,58.0,53.0,37.0,52.0,35.0,35.0,40.0,37.0,31.0,31.0,20.0,33.0,28.0,17.0,26.0,28.0,16.0,24.0,14.0,9.0,17.0,15.0,11.0,17.0,5.0,9.0,10.0,7.0,3.0,3.0,3.0,6.0 G83066,102.0,86.0,99.0,110.0,106.0,113.0,111.0,115.0,123.0,125.0,134.0,118.0,129.0,139.0,145.0,133.0,144.0,109.0,123.0,122.0,114.0,108.0,124.0,113.0,141.0,114.0,112.0,111.0,132.0,105.0,124.0,118.0,149.0,127.0,170.0,147.0,163.0,159.0,160.0,168.0,171.0,156.0,151.0,162.0,165.0,148.0,149.0,157.0,138.0,123.0,127.0,114.0,129.0,139.0,133.0,145.0,121.0,146.0,135.0,104.0,118.0,124.0,118.0,106.0,93.0,97.0,92.0,102.0,95.0,92.0,84.0,83.0,83.0,72.0,84.0,76.0,77.0,95.0,101.0,64.0,92.0,68.0,81.0,60.0,61.0,70.0,87.0,58.0,48.0,50.0,41.0,47.0,32.0,38.0,35.0,91.0 G83067,137.0,166.0,177.0,171.0,158.0,185.0,177.0,188.0,185.0,189.0,200.0,224.0,194.0,217.0,236.0,207.0,220.0,225.0,238.0,208.0,174.0,195.0,200.0,234.0,264.0,261.0,305.0,327.0,329.0,355.0,319.0,300.0,341.0,317.0,279.0,333.0,292.0,289.0,291.0,299.0,296.0,263.0,265.0,271.0,267.0,257.0,242.0,256.0,227.0,223.0,205.0,210.0,207.0,174.0,173.0,187.0,182.0,161.0,165.0,166.0,152.0,162.0,135.0,105.0,125.0,127.0,100.0,94.0,76.0,92.0,53.0,64.0,52.0,49.0,54.0,53.0,34.0,40.0,44.0,35.0,35.0,29.0,13.0,16.0,18.0,13.0,18.0,13.0,14.0,9.0,4.0,4.0,2.0,3.0,6.0,9.0 G83628,66.0,64.0,73.0,73.0,75.0,72.0,78.0,78.0,91.0,77.0,89.0,65.0,75.0,74.0,72.0,55.0,61.0,63.0,56.0,55.0,54.0,60.0,49.0,55.0,54.0,59.0,59.0,64.0,73.0,74.0,67.0,66.0,66.0,106.0,70.0,95.0,95.0,114.0,90.0,117.0,102.0,100.0,109.0,84.0,76.0,80.0,95.0,60.0,78.0,63.0,65.0,67.0,36.0,53.0,65.0,67.0,63.0,54.0,69.0,45.0,61.0,55.0,54.0,42.0,52.0,46.0,48.0,38.0,36.0,32.0,39.0,26.0,37.0,25.0,27.0,28.0,23.0,42.0,31.0,31.0,28.0,22.0,36.0,19.0,23.0,17.0,20.0,13.0,9.0,13.0,8.0,5.0,5.0,6.0,5.0,15.0 G83630,50.0,61.0,76.0,72.0,78.0,85.0,94.0,84.0,106.0,83.0,112.0,93.0,93.0,111.0,97.0,91.0,89.0,97.0,80.0,62.0,64.0,67.0,58.0,72.0,67.0,106.0,78.0,97.0,85.0,79.0,81.0,104.0,92.0,111.0,112.0,116.0,110.0,96.0,117.0,86.0,103.0,110.0,105.0,105.0,103.0,94.0,84.0,91.0,75.0,88.0,77.0,90.0,82.0,82.0,96.0,72.0,79.0,71.0,71.0,85.0,74.0,62.0,67.0,57.0,66.0,40.0,51.0,60.0,41.0,38.0,32.0,34.0,39.0,33.0,28.0,33.0,29.0,17.0,27.0,22.0,14.0,14.0,24.0,13.0,17.0,16.0,17.0,9.0,11.0,8.0,9.0,6.0,4.0,5.0,3.0,4.0 G83631,20.0,21.0,16.0,28.0,22.0,28.0,25.0,20.0,27.0,24.0,21.0,33.0,27.0,23.0,23.0,40.0,33.0,31.0,33.0,24.0,27.0,40.0,33.0,31.0,37.0,40.0,33.0,42.0,48.0,42.0,30.0,37.0,44.0,38.0,50.0,36.0,47.0,45.0,33.0,33.0,44.0,37.0,36.0,32.0,36.0,37.0,24.0,39.0,41.0,27.0,39.0,29.0,35.0,25.0,38.0,28.0,34.0,35.0,32.0,30.0,25.0,25.0,35.0,22.0,32.0,16.0,21.0,18.0,20.0,13.0,18.0,17.0,13.0,19.0,7.0,2.0,7.0,10.0,10.0,4.0,4.0,4.0,4.0,5.0,3.0,,5.0,4.0,,1.0,4.0,1.0,1.0,2.0,,3.0 G83633,30.0,29.0,31.0,31.0,23.0,31.0,28.0,30.0,31.0,31.0,34.0,23.0,27.0,31.0,21.0,31.0,25.0,22.0,30.0,25.0,31.0,45.0,46.0,43.0,44.0,62.0,59.0,55.0,65.0,64.0,51.0,66.0,50.0,48.0,47.0,54.0,46.0,44.0,45.0,50.0,39.0,42.0,32.0,41.0,33.0,36.0,19.0,28.0,25.0,19.0,28.0,21.0,26.0,24.0,26.0,22.0,26.0,24.0,35.0,26.0,25.0,34.0,36.0,28.0,31.0,26.0,21.0,30.0,16.0,13.0,13.0,12.0,13.0,15.0,11.0,13.0,12.0,10.0,12.0,5.0,6.0,8.0,4.0,7.0,4.0,10.0,5.0,7.0,2.0,3.0,3.0,,1.0,,1.0,4.0 G83635,26.0,16.0,16.0,15.0,18.0,23.0,18.0,25.0,25.0,17.0,25.0,17.0,35.0,28.0,21.0,19.0,29.0,20.0,25.0,34.0,24.0,25.0,27.0,29.0,32.0,21.0,32.0,24.0,22.0,32.0,36.0,32.0,28.0,37.0,22.0,36.0,39.0,34.0,42.0,37.0,28.0,32.0,28.0,30.0,33.0,30.0,28.0,35.0,22.0,25.0,20.0,26.0,29.0,35.0,30.0,32.0,35.0,21.0,29.0,28.0,26.0,40.0,30.0,25.0,38.0,26.0,26.0,11.0,18.0,17.0,20.0,13.0,10.0,27.0,16.0,13.0,16.0,16.0,9.0,11.0,11.0,12.0,12.0,8.0,6.0,10.0,10.0,12.0,4.0,4.0,2.0,4.0,1.0,3.0,,5.0 G83641,12.0,8.0,14.0,12.0,18.0,8.0,14.0,17.0,15.0,8.0,15.0,11.0,18.0,14.0,15.0,19.0,17.0,19.0,13.0,19.0,23.0,21.0,26.0,34.0,42.0,59.0,48.0,38.0,51.0,51.0,32.0,38.0,34.0,42.0,38.0,40.0,40.0,31.0,22.0,27.0,27.0,24.0,17.0,23.0,23.0,14.0,23.0,19.0,13.0,18.0,20.0,16.0,20.0,13.0,20.0,17.0,14.0,18.0,18.0,12.0,20.0,16.0,12.0,10.0,16.0,15.0,15.0,5.0,10.0,13.0,15.0,6.0,10.0,2.0,9.0,6.0,3.0,1.0,3.0,1.0,5.0,5.0,3.0,1.0,,4.0,1.0,1.0,,,,1.0,,,1.0,2.0 G83642,69.0,57.0,53.0,72.0,61.0,59.0,60.0,64.0,71.0,91.0,76.0,87.0,75.0,82.0,89.0,92.0,49.0,74.0,60.0,62.0,54.0,55.0,54.0,66.0,68.0,76.0,69.0,61.0,77.0,70.0,101.0,82.0,77.0,101.0,125.0,110.0,99.0,92.0,84.0,95.0,113.0,88.0,96.0,84.0,107.0,73.0,72.0,84.0,68.0,64.0,54.0,66.0,58.0,62.0,48.0,58.0,49.0,54.0,59.0,68.0,62.0,47.0,51.0,42.0,56.0,36.0,30.0,34.0,37.0,30.0,31.0,31.0,27.0,19.0,15.0,31.0,25.0,27.0,25.0,20.0,23.0,22.0,11.0,17.0,14.0,15.0,9.0,9.0,6.0,4.0,7.0,3.0,3.0,5.0,,4.0 G83647,34.0,50.0,38.0,49.0,41.0,52.0,49.0,48.0,60.0,54.0,38.0,42.0,50.0,48.0,50.0,47.0,53.0,60.0,59.0,62.0,37.0,49.0,52.0,45.0,66.0,62.0,88.0,79.0,67.0,63.0,73.0,58.0,71.0,78.0,54.0,67.0,66.0,80.0,63.0,67.0,72.0,70.0,58.0,54.0,63.0,64.0,57.0,47.0,55.0,59.0,53.0,49.0,35.0,54.0,51.0,41.0,43.0,49.0,55.0,47.0,35.0,36.0,40.0,46.0,30.0,32.0,34.0,26.0,22.0,23.0,22.0,16.0,22.0,16.0,21.0,17.0,15.0,12.0,11.0,13.0,13.0,14.0,9.0,10.0,6.0,6.0,5.0,4.0,4.0,4.0,5.0,3.0,1.0,4.0,1.0,3.0 G83651,26.0,22.0,23.0,16.0,21.0,22.0,19.0,28.0,19.0,37.0,23.0,31.0,26.0,26.0,29.0,33.0,36.0,37.0,25.0,26.0,40.0,24.0,37.0,37.0,40.0,69.0,52.0,71.0,58.0,58.0,72.0,83.0,59.0,64.0,62.0,75.0,57.0,56.0,54.0,65.0,43.0,54.0,48.0,51.0,48.0,48.0,45.0,33.0,22.0,27.0,36.0,34.0,35.0,36.0,30.0,42.0,35.0,29.0,21.0,22.0,31.0,28.0,20.0,27.0,23.0,24.0,18.0,19.0,14.0,22.0,20.0,24.0,17.0,18.0,9.0,21.0,11.0,12.0,17.0,11.0,8.0,13.0,15.0,12.0,7.0,8.0,6.0,12.0,4.0,5.0,8.0,1.0,3.0,2.0,2.0,9.0 G83654,15.0,25.0,30.0,23.0,31.0,28.0,28.0,28.0,32.0,43.0,34.0,37.0,39.0,31.0,36.0,31.0,33.0,36.0,30.0,22.0,47.0,35.0,48.0,42.0,49.0,58.0,70.0,62.0,49.0,43.0,40.0,48.0,50.0,52.0,42.0,44.0,58.0,41.0,44.0,61.0,38.0,30.0,41.0,48.0,38.0,40.0,45.0,39.0,29.0,43.0,36.0,28.0,36.0,27.0,26.0,29.0,21.0,29.0,34.0,37.0,21.0,22.0,34.0,30.0,25.0,14.0,21.0,11.0,18.0,15.0,22.0,11.0,14.0,14.0,14.0,14.0,15.0,18.0,12.0,11.0,6.0,7.0,4.0,3.0,7.0,6.0,3.0,4.0,4.0,1.0,2.0,2.0,1.0,1.0,1.0,4.0 G83673,36.0,46.0,23.0,27.0,27.0,27.0,32.0,37.0,35.0,53.0,36.0,49.0,40.0,38.0,49.0,41.0,46.0,35.0,43.0,55.0,52.0,53.0,45.0,57.0,51.0,63.0,60.0,51.0,56.0,43.0,49.0,43.0,42.0,64.0,43.0,54.0,50.0,47.0,51.0,49.0,55.0,50.0,56.0,56.0,45.0,45.0,48.0,43.0,42.0,34.0,40.0,26.0,36.0,31.0,37.0,30.0,40.0,29.0,37.0,30.0,37.0,29.0,20.0,29.0,24.0,28.0,26.0,24.0,16.0,22.0,13.0,16.0,18.0,20.0,14.0,13.0,16.0,16.0,8.0,17.0,12.0,9.0,8.0,6.0,5.0,8.0,7.0,8.0,5.0,,2.0,4.0,,1.0,1.0,3.0 G83680,102.0,147.0,137.0,125.0,126.0,169.0,161.0,150.0,164.0,171.0,168.0,190.0,160.0,165.0,177.0,161.0,182.0,160.0,144.0,124.0,144.0,133.0,125.0,130.0,160.0,168.0,150.0,150.0,169.0,158.0,148.0,162.0,177.0,173.0,180.0,203.0,226.0,215.0,207.0,209.0,213.0,207.0,228.0,236.0,218.0,216.0,209.0,179.0,171.0,187.0,187.0,165.0,148.0,170.0,171.0,176.0,159.0,161.0,157.0,171.0,150.0,147.0,147.0,137.0,147.0,139.0,119.0,136.0,96.0,105.0,124.0,117.0,92.0,104.0,103.0,95.0,120.0,130.0,124.0,89.0,112.0,76.0,69.0,52.0,50.0,56.0,57.0,60.0,30.0,32.0,33.0,31.0,16.0,11.0,20.0,33.0 G84001,67.0,71.0,63.0,70.0,70.0,65.0,76.0,77.0,86.0,109.0,73.0,82.0,87.0,88.0,103.0,84.0,94.0,78.0,67.0,41.0,60.0,68.0,51.0,70.0,64.0,72.0,85.0,70.0,81.0,80.0,89.0,98.0,112.0,99.0,101.0,103.0,102.0,126.0,100.0,114.0,77.0,119.0,119.0,125.0,113.0,111.0,111.0,114.0,80.0,89.0,107.0,94.0,102.0,93.0,96.0,103.0,95.0,92.0,96.0,78.0,93.0,75.0,74.0,88.0,89.0,65.0,84.0,57.0,62.0,55.0,50.0,60.0,60.0,63.0,46.0,74.0,51.0,55.0,56.0,38.0,52.0,49.0,43.0,37.0,28.0,36.0,27.0,22.0,19.0,15.0,11.0,16.0,11.0,4.0,8.0,18.0 G84002,56.0,65.0,71.0,61.0,81.0,91.0,83.0,94.0,79.0,96.0,95.0,70.0,85.0,93.0,71.0,58.0,55.0,69.0,58.0,43.0,49.0,49.0,50.0,61.0,55.0,59.0,83.0,80.0,93.0,103.0,99.0,130.0,133.0,124.0,127.0,166.0,141.0,138.0,154.0,144.0,108.0,113.0,132.0,110.0,124.0,115.0,96.0,88.0,81.0,81.0,80.0,73.0,96.0,91.0,87.0,64.0,63.0,77.0,78.0,81.0,85.0,61.0,70.0,61.0,75.0,67.0,54.0,54.0,50.0,42.0,36.0,53.0,58.0,34.0,38.0,43.0,53.0,51.0,56.0,41.0,35.0,33.0,25.0,38.0,24.0,21.0,23.0,21.0,15.0,18.0,19.0,12.0,17.0,7.0,9.0,16.0 G84003,36.0,53.0,58.0,55.0,67.0,69.0,60.0,94.0,54.0,60.0,70.0,73.0,65.0,88.0,89.0,76.0,65.0,93.0,79.0,64.0,65.0,52.0,68.0,72.0,60.0,85.0,69.0,75.0,95.0,79.0,79.0,88.0,86.0,84.0,101.0,95.0,107.0,116.0,109.0,104.0,95.0,96.0,99.0,101.0,81.0,103.0,83.0,92.0,62.0,71.0,65.0,83.0,81.0,80.0,72.0,69.0,80.0,67.0,66.0,78.0,85.0,79.0,77.0,65.0,69.0,57.0,57.0,50.0,40.0,46.0,42.0,49.0,37.0,54.0,39.0,36.0,37.0,49.0,38.0,31.0,23.0,29.0,22.0,17.0,13.0,21.0,15.0,16.0,9.0,12.0,9.0,9.0,11.0,6.0,5.0,6.0 G84004,39.0,28.0,34.0,36.0,40.0,27.0,31.0,38.0,60.0,49.0,44.0,52.0,51.0,57.0,38.0,48.0,61.0,51.0,58.0,41.0,52.0,55.0,34.0,45.0,46.0,47.0,50.0,46.0,57.0,49.0,40.0,36.0,47.0,56.0,44.0,50.0,55.0,50.0,48.0,62.0,59.0,48.0,62.0,45.0,51.0,56.0,59.0,40.0,57.0,61.0,72.0,53.0,65.0,77.0,69.0,54.0,63.0,71.0,77.0,88.0,66.0,70.0,57.0,67.0,66.0,61.0,66.0,64.0,62.0,48.0,52.0,54.0,58.0,68.0,66.0,65.0,77.0,73.0,100.0,65.0,58.0,50.0,64.0,42.0,33.0,34.0,36.0,30.0,18.0,26.0,11.0,22.0,15.0,10.0,9.0,10.0 G84005,21.0,22.0,20.0,21.0,24.0,25.0,22.0,27.0,24.0,28.0,29.0,33.0,38.0,30.0,29.0,28.0,21.0,36.0,29.0,28.0,27.0,24.0,24.0,34.0,33.0,31.0,38.0,36.0,34.0,34.0,39.0,34.0,34.0,28.0,33.0,41.0,32.0,45.0,28.0,35.0,36.0,28.0,32.0,31.0,30.0,37.0,36.0,29.0,26.0,30.0,34.0,30.0,30.0,40.0,32.0,40.0,40.0,52.0,39.0,31.0,45.0,41.0,30.0,32.0,36.0,31.0,32.0,28.0,20.0,23.0,12.0,22.0,21.0,17.0,18.0,31.0,30.0,25.0,25.0,29.0,19.0,16.0,12.0,18.0,19.0,12.0,9.0,14.0,14.0,7.0,6.0,10.0,8.0,3.0,5.0,7.0 G84006,30.0,23.0,23.0,29.0,32.0,33.0,34.0,28.0,39.0,47.0,56.0,48.0,62.0,78.0,64.0,65.0,76.0,71.0,58.0,35.0,50.0,43.0,48.0,46.0,58.0,51.0,41.0,40.0,53.0,52.0,56.0,66.0,60.0,47.0,49.0,42.0,44.0,48.0,42.0,57.0,50.0,45.0,54.0,63.0,51.0,46.0,58.0,71.0,76.0,61.0,67.0,56.0,68.0,65.0,79.0,78.0,73.0,83.0,79.0,87.0,84.0,92.0,74.0,75.0,71.0,64.0,69.0,73.0,48.0,49.0,63.0,59.0,60.0,52.0,63.0,65.0,53.0,77.0,67.0,55.0,45.0,37.0,49.0,31.0,39.0,37.0,44.0,32.0,39.0,24.0,16.0,16.0,13.0,16.0,13.0,22.0 G84007,15.0,25.0,39.0,36.0,34.0,44.0,47.0,48.0,43.0,42.0,52.0,52.0,50.0,66.0,54.0,53.0,68.0,48.0,69.0,42.0,46.0,37.0,34.0,48.0,60.0,51.0,45.0,40.0,45.0,47.0,36.0,35.0,40.0,61.0,64.0,58.0,66.0,53.0,51.0,47.0,40.0,80.0,54.0,49.0,70.0,60.0,55.0,61.0,61.0,56.0,50.0,54.0,62.0,48.0,65.0,64.0,70.0,52.0,71.0,60.0,61.0,64.0,54.0,63.0,73.0,52.0,43.0,50.0,35.0,38.0,35.0,41.0,28.0,38.0,34.0,25.0,33.0,30.0,53.0,30.0,24.0,17.0,25.0,23.0,18.0,16.0,20.0,10.0,15.0,4.0,8.0,6.0,5.0,7.0,,10.0 G84008,23.0,24.0,29.0,39.0,22.0,40.0,27.0,29.0,42.0,26.0,24.0,29.0,31.0,30.0,33.0,24.0,30.0,31.0,21.0,19.0,16.0,20.0,24.0,28.0,21.0,31.0,35.0,34.0,50.0,30.0,34.0,62.0,49.0,63.0,61.0,69.0,67.0,53.0,50.0,53.0,55.0,46.0,56.0,59.0,57.0,60.0,52.0,43.0,42.0,41.0,32.0,40.0,37.0,38.0,36.0,30.0,41.0,31.0,42.0,38.0,49.0,51.0,49.0,41.0,36.0,34.0,40.0,43.0,21.0,27.0,26.0,24.0,40.0,31.0,25.0,36.0,35.0,30.0,32.0,22.0,25.0,15.0,19.0,13.0,15.0,9.0,14.0,8.0,9.0,8.0,6.0,5.0,5.0,4.0,2.0,10.0 G84009,10.0,12.0,15.0,23.0,23.0,22.0,20.0,24.0,28.0,29.0,18.0,31.0,28.0,23.0,22.0,14.0,19.0,22.0,14.0,9.0,15.0,16.0,16.0,17.0,17.0,20.0,13.0,12.0,22.0,9.0,22.0,15.0,22.0,28.0,25.0,30.0,28.0,26.0,34.0,33.0,31.0,28.0,40.0,35.0,39.0,23.0,31.0,36.0,27.0,17.0,24.0,28.0,22.0,32.0,19.0,26.0,28.0,30.0,30.0,31.0,26.0,26.0,31.0,19.0,24.0,40.0,22.0,17.0,17.0,18.0,31.0,27.0,16.0,18.0,28.0,18.0,20.0,19.0,38.0,17.0,22.0,16.0,22.0,10.0,14.0,18.0,18.0,14.0,7.0,5.0,6.0,11.0,8.0,1.0,2.0,6.0 G84010,79.0,112.0,103.0,110.0,111.0,132.0,146.0,137.0,141.0,143.0,145.0,170.0,180.0,178.0,178.0,153.0,162.0,153.0,133.0,112.0,100.0,101.0,99.0,122.0,116.0,118.0,117.0,104.0,109.0,127.0,121.0,120.0,111.0,125.0,150.0,171.0,174.0,181.0,165.0,184.0,182.0,189.0,190.0,216.0,183.0,206.0,204.0,185.0,213.0,173.0,195.0,177.0,155.0,166.0,173.0,189.0,175.0,151.0,184.0,195.0,147.0,169.0,157.0,150.0,157.0,136.0,128.0,111.0,150.0,121.0,99.0,104.0,99.0,88.0,118.0,108.0,142.0,126.0,125.0,92.0,103.0,96.0,86.0,80.0,58.0,61.0,62.0,64.0,58.0,48.0,35.0,20.0,43.0,26.0,14.0,42.0 G84011,20.0,32.0,28.0,29.0,32.0,41.0,45.0,53.0,39.0,51.0,46.0,44.0,58.0,47.0,60.0,43.0,47.0,62.0,58.0,43.0,50.0,37.0,52.0,40.0,53.0,53.0,41.0,46.0,38.0,52.0,44.0,35.0,53.0,65.0,34.0,57.0,52.0,50.0,60.0,46.0,53.0,55.0,58.0,59.0,60.0,78.0,66.0,84.0,54.0,64.0,70.0,71.0,80.0,68.0,55.0,74.0,81.0,70.0,75.0,64.0,71.0,72.0,50.0,41.0,61.0,44.0,58.0,41.0,51.0,35.0,36.0,31.0,23.0,35.0,47.0,31.0,39.0,35.0,42.0,26.0,34.0,22.0,12.0,25.0,14.0,22.0,19.0,15.0,12.0,10.0,10.0,11.0,10.0,9.0,3.0,10.0 G84013,31.0,29.0,28.0,28.0,28.0,27.0,33.0,29.0,31.0,26.0,34.0,23.0,26.0,30.0,27.0,25.0,30.0,26.0,30.0,29.0,24.0,27.0,19.0,22.0,25.0,34.0,29.0,37.0,37.0,37.0,30.0,35.0,33.0,50.0,38.0,40.0,40.0,34.0,42.0,31.0,22.0,25.0,35.0,36.0,33.0,33.0,31.0,31.0,36.0,28.0,18.0,35.0,25.0,18.0,35.0,20.0,21.0,25.0,22.0,34.0,26.0,31.0,23.0,18.0,16.0,19.0,12.0,16.0,16.0,15.0,18.0,14.0,9.0,11.0,13.0,12.0,22.0,12.0,14.0,10.0,12.0,11.0,13.0,11.0,12.0,7.0,6.0,5.0,8.0,4.0,3.0,4.0,3.0,3.0,2.0,5.0 G84015,18.0,29.0,29.0,21.0,29.0,31.0,39.0,50.0,50.0,54.0,56.0,39.0,63.0,55.0,57.0,80.0,72.0,74.0,63.0,41.0,44.0,56.0,47.0,60.0,69.0,75.0,46.0,64.0,53.0,47.0,47.0,48.0,41.0,45.0,51.0,49.0,47.0,52.0,53.0,44.0,46.0,46.0,53.0,64.0,57.0,77.0,61.0,58.0,67.0,76.0,63.0,72.0,83.0,95.0,82.0,88.0,72.0,90.0,77.0,105.0,108.0,119.0,92.0,88.0,72.0,78.0,67.0,86.0,74.0,69.0,77.0,58.0,67.0,66.0,63.0,54.0,51.0,58.0,75.0,63.0,60.0,43.0,48.0,35.0,32.0,38.0,39.0,26.0,28.0,28.0,20.0,15.0,12.0,12.0,10.0,26.0 G84016,34.0,64.0,56.0,51.0,56.0,51.0,65.0,94.0,70.0,73.0,82.0,84.0,80.0,76.0,89.0,83.0,89.0,89.0,81.0,49.0,49.0,62.0,52.0,74.0,56.0,60.0,69.0,70.0,80.0,84.0,74.0,88.0,71.0,78.0,81.0,83.0,94.0,97.0,95.0,100.0,93.0,99.0,117.0,121.0,113.0,103.0,111.0,99.0,106.0,103.0,116.0,99.0,122.0,84.0,95.0,99.0,97.0,83.0,96.0,88.0,90.0,101.0,87.0,72.0,77.0,70.0,81.0,81.0,71.0,80.0,60.0,58.0,58.0,54.0,77.0,66.0,82.0,59.0,62.0,42.0,43.0,42.0,40.0,28.0,37.0,30.0,25.0,26.0,23.0,17.0,17.0,16.0,19.0,1.0,9.0,22.0 G84017,19.0,32.0,28.0,30.0,31.0,35.0,36.0,41.0,33.0,40.0,48.0,37.0,51.0,53.0,49.0,72.0,58.0,58.0,67.0,39.0,30.0,45.0,53.0,48.0,59.0,55.0,35.0,51.0,39.0,51.0,36.0,41.0,44.0,43.0,51.0,51.0,45.0,45.0,48.0,51.0,55.0,43.0,52.0,45.0,64.0,61.0,48.0,71.0,50.0,55.0,49.0,63.0,60.0,58.0,65.0,58.0,65.0,71.0,86.0,72.0,68.0,76.0,54.0,62.0,71.0,66.0,56.0,53.0,45.0,35.0,50.0,42.0,38.0,46.0,45.0,59.0,51.0,62.0,58.0,35.0,30.0,37.0,26.0,25.0,31.0,28.0,33.0,18.0,21.0,20.0,21.0,9.0,18.0,7.0,3.0,25.0 G84018,30.0,25.0,37.0,27.0,37.0,27.0,45.0,39.0,45.0,39.0,37.0,32.0,39.0,31.0,37.0,31.0,37.0,30.0,33.0,25.0,16.0,21.0,27.0,26.0,28.0,40.0,31.0,47.0,44.0,46.0,45.0,59.0,44.0,46.0,50.0,52.0,50.0,54.0,54.0,54.0,56.0,58.0,57.0,68.0,57.0,58.0,53.0,51.0,47.0,51.0,62.0,49.0,60.0,60.0,53.0,41.0,61.0,53.0,57.0,59.0,46.0,44.0,46.0,43.0,43.0,44.0,46.0,45.0,48.0,59.0,34.0,44.0,53.0,42.0,41.0,51.0,46.0,55.0,52.0,37.0,38.0,42.0,34.0,24.0,27.0,25.0,28.0,25.0,22.0,17.0,20.0,16.0,9.0,12.0,10.0,22.0 G84019,48.0,48.0,65.0,62.0,58.0,60.0,68.0,59.0,80.0,70.0,74.0,59.0,74.0,72.0,72.0,76.0,87.0,73.0,70.0,72.0,62.0,61.0,69.0,74.0,72.0,62.0,67.0,69.0,59.0,71.0,64.0,71.0,88.0,57.0,102.0,103.0,124.0,100.0,105.0,90.0,94.0,76.0,74.0,70.0,99.0,74.0,78.0,68.0,94.0,61.0,84.0,76.0,66.0,56.0,68.0,66.0,94.0,82.0,72.0,90.0,72.0,71.0,71.0,72.0,74.0,56.0,51.0,37.0,41.0,38.0,44.0,44.0,36.0,42.0,28.0,33.0,29.0,39.0,48.0,31.0,30.0,28.0,17.0,21.0,17.0,22.0,15.0,22.0,11.0,16.0,10.0,4.0,7.0,6.0,5.0,12.0 G84020,41.0,37.0,35.0,47.0,36.0,60.0,51.0,61.0,59.0,57.0,73.0,46.0,58.0,54.0,64.0,57.0,58.0,58.0,38.0,37.0,33.0,57.0,50.0,56.0,48.0,44.0,46.0,40.0,34.0,45.0,39.0,39.0,57.0,45.0,64.0,55.0,53.0,53.0,65.0,54.0,60.0,70.0,57.0,73.0,62.0,92.0,81.0,52.0,67.0,62.0,53.0,71.0,60.0,72.0,70.0,64.0,71.0,50.0,62.0,79.0,66.0,66.0,72.0,71.0,66.0,64.0,56.0,40.0,50.0,60.0,45.0,52.0,36.0,50.0,43.0,45.0,46.0,62.0,67.0,32.0,50.0,36.0,42.0,25.0,20.0,35.0,18.0,20.0,17.0,20.0,18.0,17.0,11.0,9.0,7.0,13.0 G84023,40.0,44.0,46.0,46.0,52.0,46.0,49.0,51.0,58.0,53.0,62.0,52.0,63.0,65.0,71.0,51.0,72.0,55.0,50.0,53.0,54.0,52.0,56.0,48.0,46.0,61.0,58.0,52.0,44.0,51.0,49.0,48.0,62.0,75.0,65.0,69.0,78.0,66.0,67.0,58.0,62.0,78.0,71.0,73.0,68.0,79.0,65.0,83.0,65.0,60.0,71.0,85.0,75.0,77.0,86.0,72.0,79.0,66.0,68.0,64.0,76.0,84.0,62.0,59.0,58.0,48.0,62.0,60.0,63.0,53.0,36.0,55.0,53.0,48.0,40.0,54.0,47.0,52.0,48.0,40.0,43.0,31.0,38.0,28.0,23.0,27.0,22.0,29.0,14.0,11.0,21.0,7.0,14.0,7.0,9.0,15.0 G84024,41.0,47.0,50.0,64.0,60.0,71.0,66.0,66.0,70.0,81.0,85.0,63.0,61.0,73.0,73.0,52.0,51.0,63.0,54.0,45.0,56.0,46.0,44.0,37.0,33.0,47.0,62.0,55.0,60.0,52.0,51.0,53.0,65.0,89.0,90.0,90.0,90.0,99.0,102.0,96.0,74.0,106.0,78.0,110.0,99.0,92.0,93.0,69.0,79.0,76.0,74.0,57.0,73.0,52.0,74.0,56.0,65.0,53.0,61.0,52.0,43.0,56.0,50.0,53.0,39.0,44.0,41.0,46.0,43.0,38.0,35.0,25.0,48.0,37.0,38.0,28.0,28.0,38.0,41.0,30.0,24.0,24.0,25.0,12.0,23.0,23.0,13.0,9.0,11.0,14.0,8.0,4.0,7.0,7.0,6.0,10.0 G84025,50.0,39.0,53.0,55.0,48.0,48.0,55.0,55.0,45.0,40.0,36.0,52.0,51.0,45.0,57.0,57.0,49.0,50.0,63.0,50.0,50.0,41.0,53.0,33.0,63.0,60.0,49.0,64.0,68.0,90.0,84.0,92.0,101.0,111.0,107.0,84.0,84.0,92.0,97.0,82.0,84.0,94.0,71.0,55.0,75.0,82.0,72.0,59.0,69.0,62.0,68.0,66.0,69.0,79.0,70.0,76.0,72.0,71.0,55.0,68.0,58.0,59.0,45.0,47.0,52.0,36.0,50.0,41.0,30.0,36.0,24.0,31.0,24.0,17.0,21.0,26.0,23.0,18.0,14.0,15.0,7.0,9.0,10.0,12.0,8.0,8.0,7.0,11.0,5.0,4.0,4.0,5.0,3.0,5.0,5.0,2.0 G84027,132.0,126.0,134.0,134.0,130.0,136.0,91.0,115.0,139.0,134.0,130.0,135.0,118.0,122.0,127.0,123.0,112.0,134.0,96.0,68.0,73.0,77.0,75.0,90.0,98.0,115.0,131.0,101.0,121.0,114.0,144.0,134.0,154.0,159.0,219.0,178.0,188.0,213.0,184.0,209.0,189.0,173.0,173.0,185.0,209.0,195.0,168.0,175.0,185.0,164.0,159.0,159.0,155.0,141.0,146.0,126.0,112.0,134.0,137.0,147.0,131.0,125.0,128.0,130.0,117.0,100.0,114.0,102.0,84.0,104.0,87.0,81.0,75.0,78.0,79.0,66.0,73.0,84.0,82.0,55.0,65.0,53.0,41.0,42.0,41.0,34.0,33.0,30.0,32.0,26.0,17.0,22.0,23.0,14.0,17.0,21.0 G84028,36.0,42.0,35.0,42.0,43.0,43.0,41.0,45.0,36.0,28.0,40.0,32.0,30.0,45.0,38.0,42.0,30.0,36.0,33.0,25.0,32.0,29.0,28.0,42.0,43.0,49.0,44.0,43.0,44.0,52.0,52.0,51.0,51.0,62.0,63.0,67.0,67.0,62.0,60.0,44.0,72.0,76.0,48.0,63.0,51.0,52.0,60.0,33.0,36.0,41.0,29.0,56.0,47.0,37.0,46.0,50.0,63.0,50.0,54.0,36.0,49.0,63.0,48.0,52.0,50.0,37.0,44.0,39.0,36.0,31.0,35.0,38.0,32.0,30.0,38.0,33.0,30.0,41.0,38.0,24.0,15.0,17.0,18.0,33.0,15.0,21.0,24.0,19.0,9.0,8.0,12.0,6.0,7.0,7.0,3.0,14.0 G84029,9.0,15.0,17.0,5.0,14.0,13.0,16.0,9.0,18.0,11.0,18.0,14.0,7.0,14.0,23.0,17.0,25.0,18.0,19.0,22.0,19.0,23.0,19.0,16.0,21.0,22.0,22.0,24.0,41.0,22.0,22.0,27.0,28.0,20.0,23.0,17.0,26.0,12.0,25.0,19.0,19.0,23.0,31.0,22.0,28.0,23.0,28.0,41.0,30.0,27.0,23.0,21.0,21.0,22.0,34.0,37.0,34.0,28.0,30.0,26.0,17.0,27.0,37.0,21.0,26.0,28.0,27.0,29.0,14.0,14.0,22.0,25.0,23.0,21.0,15.0,11.0,18.0,20.0,20.0,18.0,5.0,12.0,10.0,8.0,9.0,4.0,4.0,6.0,9.0,12.0,5.0,3.0,3.0,2.0,,1.0 G84030,24.0,19.0,19.0,17.0,24.0,32.0,40.0,34.0,35.0,31.0,41.0,43.0,39.0,37.0,52.0,38.0,40.0,49.0,46.0,29.0,34.0,34.0,53.0,26.0,36.0,40.0,26.0,27.0,24.0,38.0,19.0,24.0,38.0,32.0,30.0,30.0,25.0,32.0,38.0,36.0,38.0,44.0,24.0,43.0,43.0,44.0,55.0,54.0,59.0,48.0,59.0,51.0,47.0,65.0,52.0,58.0,51.0,52.0,70.0,61.0,52.0,47.0,60.0,47.0,48.0,47.0,28.0,36.0,43.0,36.0,31.0,27.0,39.0,35.0,42.0,35.0,43.0,33.0,33.0,22.0,25.0,18.0,18.0,14.0,24.0,15.0,13.0,14.0,10.0,8.0,15.0,11.0,5.0,3.0,5.0,10.0 G84032,63.0,64.0,85.0,58.0,57.0,73.0,88.0,87.0,93.0,93.0,82.0,80.0,88.0,80.0,90.0,82.0,67.0,97.0,83.0,48.0,55.0,52.0,61.0,63.0,71.0,79.0,68.0,82.0,85.0,87.0,76.0,109.0,97.0,103.0,102.0,110.0,124.0,134.0,114.0,134.0,101.0,112.0,106.0,126.0,104.0,123.0,90.0,102.0,87.0,91.0,85.0,88.0,114.0,78.0,92.0,90.0,99.0,121.0,73.0,69.0,91.0,76.0,76.0,76.0,77.0,72.0,79.0,68.0,82.0,74.0,67.0,65.0,56.0,71.0,73.0,73.0,77.0,68.0,82.0,82.0,73.0,51.0,73.0,47.0,47.0,37.0,46.0,42.0,29.0,36.0,29.0,24.0,17.0,14.0,12.0,30.0 G84033,27.0,34.0,45.0,50.0,50.0,57.0,46.0,52.0,53.0,65.0,66.0,71.0,55.0,56.0,72.0,62.0,60.0,46.0,52.0,36.0,31.0,32.0,31.0,41.0,39.0,50.0,41.0,33.0,45.0,43.0,53.0,34.0,51.0,33.0,47.0,53.0,72.0,70.0,60.0,72.0,63.0,60.0,81.0,74.0,82.0,56.0,63.0,63.0,78.0,58.0,60.0,56.0,58.0,42.0,57.0,60.0,51.0,52.0,61.0,54.0,57.0,47.0,57.0,41.0,44.0,36.0,41.0,37.0,33.0,29.0,36.0,28.0,38.0,44.0,39.0,41.0,48.0,53.0,44.0,39.0,34.0,31.0,33.0,17.0,26.0,16.0,19.0,16.0,12.0,10.0,13.0,6.0,10.0,5.0,5.0,10.0 G84035,48.0,55.0,38.0,58.0,44.0,60.0,59.0,60.0,43.0,59.0,58.0,66.0,55.0,54.0,62.0,48.0,64.0,47.0,35.0,42.0,38.0,35.0,50.0,43.0,32.0,32.0,55.0,31.0,50.0,32.0,35.0,51.0,61.0,47.0,69.0,66.0,57.0,73.0,78.0,58.0,66.0,64.0,72.0,72.0,75.0,85.0,63.0,74.0,57.0,73.0,57.0,55.0,61.0,49.0,69.0,53.0,55.0,46.0,54.0,51.0,46.0,53.0,55.0,45.0,36.0,33.0,37.0,36.0,43.0,42.0,45.0,39.0,33.0,39.0,29.0,44.0,35.0,34.0,38.0,36.0,28.0,30.0,22.0,22.0,17.0,17.0,15.0,12.0,16.0,8.0,13.0,12.0,2.0,4.0,6.0,8.0 G84039,16.0,24.0,23.0,16.0,30.0,22.0,23.0,22.0,25.0,29.0,28.0,29.0,25.0,28.0,26.0,26.0,26.0,28.0,16.0,29.0,23.0,20.0,22.0,20.0,15.0,16.0,13.0,12.0,22.0,21.0,24.0,29.0,22.0,28.0,44.0,31.0,24.0,32.0,30.0,27.0,28.0,28.0,24.0,32.0,31.0,32.0,32.0,19.0,24.0,21.0,24.0,25.0,20.0,24.0,13.0,26.0,26.0,24.0,26.0,28.0,25.0,18.0,14.0,17.0,16.0,13.0,16.0,18.0,12.0,14.0,20.0,27.0,20.0,20.0,21.0,17.0,26.0,20.0,16.0,13.0,12.0,10.0,14.0,4.0,4.0,12.0,3.0,2.0,2.0,4.0,5.0,,2.0,1.0,,1.0 G84040,33.0,55.0,47.0,68.0,61.0,83.0,86.0,86.0,100.0,100.0,85.0,62.0,68.0,82.0,83.0,66.0,63.0,61.0,70.0,33.0,41.0,37.0,48.0,49.0,47.0,61.0,51.0,56.0,39.0,47.0,50.0,52.0,61.0,79.0,57.0,82.0,92.0,92.0,97.0,101.0,121.0,117.0,111.0,113.0,111.0,109.0,86.0,71.0,104.0,79.0,70.0,67.0,73.0,62.0,82.0,53.0,57.0,64.0,68.0,64.0,55.0,62.0,52.0,47.0,65.0,59.0,53.0,48.0,45.0,40.0,42.0,43.0,40.0,39.0,45.0,38.0,34.0,37.0,48.0,41.0,32.0,31.0,25.0,24.0,13.0,13.0,28.0,17.0,17.0,19.0,10.0,4.0,12.0,6.0,7.0,11.0 G84041,17.0,19.0,22.0,23.0,23.0,32.0,29.0,31.0,20.0,33.0,38.0,31.0,35.0,36.0,38.0,32.0,42.0,36.0,24.0,30.0,27.0,21.0,23.0,18.0,23.0,27.0,16.0,27.0,20.0,32.0,30.0,29.0,42.0,39.0,26.0,41.0,37.0,39.0,39.0,34.0,35.0,39.0,33.0,29.0,35.0,33.0,31.0,29.0,30.0,34.0,40.0,24.0,15.0,22.0,34.0,22.0,21.0,28.0,20.0,24.0,20.0,23.0,20.0,14.0,8.0,10.0,12.0,13.0,9.0,15.0,9.0,6.0,7.0,11.0,8.0,11.0,15.0,15.0,4.0,10.0,10.0,3.0,5.0,6.0,5.0,5.0,7.0,4.0,5.0,3.0,1.0,2.0,2.0,4.0,,2.0 G84604,48.0,58.0,57.0,52.0,51.0,53.0,44.0,56.0,39.0,47.0,65.0,36.0,41.0,48.0,39.0,43.0,30.0,45.0,47.0,30.0,38.0,35.0,46.0,44.0,38.0,47.0,53.0,59.0,63.0,51.0,73.0,81.0,79.0,80.0,79.0,89.0,64.0,104.0,96.0,91.0,103.0,89.0,89.0,72.0,73.0,89.0,51.0,46.0,55.0,59.0,38.0,42.0,35.0,44.0,37.0,45.0,43.0,53.0,37.0,45.0,45.0,40.0,37.0,41.0,31.0,30.0,25.0,24.0,24.0,33.0,32.0,22.0,34.0,25.0,27.0,22.0,25.0,26.0,23.0,20.0,18.0,17.0,12.0,18.0,14.0,14.0,13.0,19.0,15.0,3.0,2.0,10.0,5.0,6.0,3.0,9.0 G84607,19.0,30.0,21.0,33.0,31.0,28.0,36.0,34.0,27.0,25.0,29.0,33.0,37.0,42.0,31.0,35.0,37.0,45.0,38.0,28.0,35.0,32.0,26.0,17.0,28.0,39.0,20.0,34.0,40.0,35.0,25.0,30.0,25.0,32.0,39.0,32.0,44.0,37.0,44.0,40.0,51.0,31.0,42.0,51.0,44.0,46.0,40.0,42.0,43.0,39.0,41.0,37.0,47.0,38.0,33.0,37.0,47.0,45.0,40.0,44.0,44.0,43.0,49.0,37.0,41.0,36.0,43.0,35.0,29.0,35.0,39.0,25.0,28.0,28.0,31.0,29.0,28.0,27.0,21.0,25.0,21.0,18.0,17.0,15.0,15.0,18.0,16.0,23.0,11.0,10.0,11.0,9.0,2.0,7.0,6.0,15.0 G84609,14.0,12.0,17.0,17.0,21.0,12.0,13.0,12.0,18.0,26.0,18.0,14.0,19.0,23.0,17.0,24.0,24.0,26.0,17.0,16.0,9.0,14.0,20.0,10.0,12.0,15.0,24.0,18.0,21.0,15.0,12.0,14.0,23.0,16.0,18.0,24.0,21.0,31.0,20.0,24.0,19.0,33.0,16.0,28.0,17.0,18.0,27.0,23.0,27.0,21.0,34.0,31.0,27.0,25.0,24.0,19.0,25.0,29.0,21.0,18.0,25.0,22.0,28.0,23.0,18.0,22.0,19.0,18.0,21.0,12.0,18.0,18.0,22.0,22.0,21.0,17.0,27.0,30.0,30.0,11.0,15.0,20.0,20.0,13.0,12.0,13.0,12.0,9.0,2.0,2.0,7.0,8.0,4.0,4.0,5.0,8.0 G84621,19.0,27.0,23.0,31.0,34.0,27.0,28.0,23.0,25.0,31.0,24.0,26.0,32.0,19.0,24.0,25.0,31.0,29.0,21.0,20.0,15.0,19.0,18.0,18.0,29.0,16.0,21.0,20.0,27.0,28.0,19.0,22.0,35.0,28.0,29.0,30.0,43.0,34.0,32.0,38.0,38.0,29.0,39.0,41.0,38.0,38.0,30.0,25.0,26.0,31.0,25.0,33.0,27.0,22.0,26.0,42.0,26.0,36.0,34.0,23.0,28.0,27.0,15.0,17.0,22.0,14.0,12.0,15.0,16.0,17.0,11.0,21.0,17.0,18.0,12.0,13.0,24.0,15.0,19.0,11.0,16.0,16.0,12.0,10.0,9.0,11.0,11.0,10.0,13.0,11.0,2.0,6.0,3.0,6.0,,4.0 G84624,16.0,13.0,14.0,7.0,10.0,8.0,16.0,2.0,10.0,16.0,11.0,13.0,13.0,13.0,12.0,10.0,8.0,12.0,14.0,15.0,16.0,18.0,19.0,12.0,25.0,23.0,23.0,18.0,27.0,26.0,22.0,39.0,26.0,22.0,31.0,34.0,22.0,22.0,23.0,29.0,18.0,18.0,24.0,19.0,14.0,17.0,15.0,16.0,13.0,21.0,20.0,6.0,17.0,20.0,17.0,14.0,15.0,12.0,11.0,8.0,10.0,21.0,10.0,12.0,12.0,5.0,10.0,12.0,12.0,6.0,12.0,9.0,7.0,4.0,5.0,3.0,6.0,9.0,6.0,3.0,2.0,4.0,2.0,3.0,4.0,,6.0,3.0,2.0,4.0,1.0,,2.0,,3.0,2.0 G84625,52.0,69.0,50.0,56.0,51.0,47.0,56.0,46.0,34.0,33.0,29.0,43.0,33.0,32.0,39.0,35.0,32.0,43.0,34.0,35.0,31.0,37.0,34.0,44.0,53.0,55.0,65.0,84.0,90.0,82.0,85.0,96.0,102.0,102.0,99.0,128.0,113.0,97.0,106.0,81.0,88.0,73.0,67.0,55.0,66.0,58.0,41.0,66.0,45.0,56.0,46.0,38.0,40.0,32.0,42.0,45.0,42.0,41.0,25.0,28.0,48.0,31.0,35.0,30.0,18.0,18.0,15.0,27.0,18.0,11.0,10.0,11.0,15.0,9.0,6.0,13.0,9.0,8.0,10.0,10.0,4.0,7.0,7.0,,2.0,3.0,2.0,,1.0,,2.0,1.0,,1.0,1.0,3.0 G84627,23.0,26.0,27.0,24.0,32.0,30.0,27.0,35.0,44.0,36.0,44.0,43.0,53.0,56.0,47.0,40.0,41.0,51.0,37.0,27.0,29.0,27.0,33.0,33.0,42.0,28.0,33.0,39.0,25.0,37.0,32.0,20.0,28.0,31.0,42.0,38.0,30.0,40.0,40.0,46.0,45.0,42.0,56.0,59.0,53.0,45.0,61.0,50.0,49.0,46.0,47.0,51.0,52.0,51.0,55.0,56.0,54.0,61.0,56.0,35.0,55.0,51.0,48.0,48.0,54.0,56.0,47.0,38.0,38.0,47.0,49.0,38.0,39.0,42.0,50.0,38.0,40.0,49.0,45.0,37.0,30.0,33.0,19.0,29.0,20.0,20.0,17.0,16.0,19.0,11.0,5.0,10.0,7.0,7.0,8.0,6.0 G84629,30.0,45.0,40.0,21.0,39.0,51.0,32.0,36.0,28.0,35.0,39.0,33.0,37.0,47.0,38.0,44.0,44.0,38.0,31.0,31.0,22.0,35.0,23.0,21.0,37.0,35.0,43.0,49.0,46.0,50.0,44.0,53.0,65.0,64.0,66.0,62.0,62.0,60.0,65.0,80.0,57.0,66.0,57.0,62.0,66.0,44.0,54.0,63.0,53.0,42.0,46.0,44.0,51.0,46.0,46.0,49.0,38.0,45.0,41.0,39.0,33.0,30.0,32.0,33.0,32.0,27.0,23.0,25.0,23.0,25.0,23.0,19.0,18.0,19.0,14.0,25.0,17.0,31.0,21.0,9.0,15.0,6.0,12.0,6.0,12.0,13.0,13.0,5.0,9.0,5.0,4.0,5.0,5.0,5.0,3.0,4.0 G84630,16.0,14.0,12.0,20.0,21.0,18.0,12.0,17.0,23.0,12.0,26.0,12.0,31.0,22.0,16.0,13.0,22.0,19.0,19.0,11.0,13.0,16.0,10.0,10.0,11.0,15.0,10.0,14.0,20.0,14.0,19.0,18.0,20.0,14.0,24.0,25.0,26.0,21.0,21.0,42.0,33.0,26.0,23.0,22.0,16.0,24.0,28.0,19.0,13.0,15.0,23.0,25.0,29.0,13.0,23.0,18.0,16.0,20.0,22.0,17.0,19.0,23.0,19.0,12.0,17.0,13.0,8.0,15.0,16.0,11.0,17.0,13.0,14.0,12.0,12.0,6.0,14.0,16.0,15.0,14.0,6.0,9.0,8.0,3.0,6.0,6.0,4.0,2.0,3.0,,2.0,2.0,2.0,1.0,2.0,3.0 G85001,37.0,55.0,34.0,57.0,38.0,57.0,48.0,54.0,65.0,60.0,60.0,46.0,68.0,61.0,58.0,65.0,64.0,65.0,63.0,42.0,49.0,32.0,48.0,52.0,46.0,63.0,70.0,77.0,73.0,80.0,88.0,94.0,92.0,80.0,91.0,84.0,80.0,96.0,84.0,67.0,85.0,85.0,84.0,76.0,89.0,86.0,90.0,81.0,72.0,87.0,77.0,88.0,66.0,81.0,74.0,52.0,61.0,69.0,67.0,78.0,66.0,62.0,72.0,79.0,70.0,55.0,47.0,60.0,50.0,49.0,58.0,44.0,33.0,48.0,34.0,32.0,49.0,29.0,32.0,15.0,24.0,29.0,15.0,17.0,25.0,15.0,13.0,16.0,12.0,12.0,7.0,6.0,2.0,3.0,5.0,10.0 G85002,139.0,132.0,123.0,143.0,133.0,123.0,117.0,146.0,149.0,128.0,137.0,117.0,146.0,130.0,129.0,127.0,137.0,110.0,94.0,88.0,99.0,120.0,145.0,163.0,200.0,232.0,275.0,330.0,339.0,359.0,336.0,342.0,350.0,367.0,330.0,360.0,291.0,298.0,313.0,281.0,266.0,236.0,252.0,237.0,216.0,202.0,189.0,186.0,158.0,131.0,140.0,128.0,122.0,105.0,103.0,95.0,100.0,82.0,85.0,77.0,57.0,69.0,75.0,73.0,57.0,62.0,35.0,46.0,31.0,40.0,27.0,33.0,20.0,23.0,21.0,19.0,26.0,25.0,20.0,17.0,17.0,9.0,13.0,11.0,8.0,12.0,7.0,7.0,9.0,3.0,4.0,3.0,2.0,4.0,2.0,8.0 G85004,144.0,153.0,174.0,184.0,176.0,211.0,198.0,213.0,186.0,208.0,202.0,190.0,204.0,262.0,207.0,237.0,217.0,210.0,212.0,198.0,171.0,171.0,160.0,166.0,164.0,189.0,196.0,234.0,217.0,213.0,269.0,279.0,272.0,275.0,297.0,284.0,303.0,309.0,327.0,301.0,295.0,297.0,308.0,280.0,279.0,272.0,260.0,265.0,270.0,223.0,255.0,232.0,261.0,224.0,263.0,235.0,296.0,234.0,253.0,268.0,262.0,240.0,259.0,228.0,223.0,224.0,192.0,200.0,157.0,159.0,148.0,137.0,125.0,108.0,122.0,139.0,117.0,121.0,114.0,75.0,67.0,62.0,79.0,69.0,70.0,60.0,50.0,62.0,52.0,44.0,28.0,25.0,17.0,9.0,14.0,46.0 G85006,32.0,29.0,36.0,32.0,29.0,40.0,37.0,46.0,41.0,37.0,51.0,49.0,45.0,58.0,60.0,77.0,73.0,69.0,73.0,78.0,66.0,51.0,55.0,60.0,57.0,72.0,66.0,60.0,50.0,59.0,57.0,70.0,53.0,54.0,51.0,55.0,70.0,53.0,65.0,74.0,60.0,60.0,70.0,59.0,78.0,64.0,50.0,67.0,70.0,63.0,73.0,80.0,74.0,56.0,67.0,76.0,65.0,64.0,66.0,62.0,53.0,64.0,53.0,57.0,58.0,41.0,44.0,51.0,31.0,40.0,29.0,24.0,26.0,16.0,26.0,21.0,18.0,15.0,19.0,14.0,13.0,5.0,12.0,11.0,15.0,11.0,15.0,7.0,8.0,6.0,6.0,4.0,2.0,3.0,2.0,2.0 G85011,50.0,48.0,49.0,50.0,46.0,67.0,41.0,51.0,62.0,71.0,73.0,59.0,61.0,50.0,62.0,53.0,61.0,49.0,62.0,53.0,50.0,69.0,121.0,150.0,301.0,396.0,481.0,543.0,524.0,458.0,442.0,411.0,353.0,325.0,285.0,266.0,254.0,230.0,175.0,190.0,149.0,146.0,107.0,155.0,140.0,127.0,113.0,97.0,121.0,88.0,105.0,106.0,94.0,97.0,101.0,99.0,100.0,87.0,85.0,84.0,88.0,83.0,70.0,73.0,66.0,49.0,54.0,56.0,51.0,48.0,44.0,28.0,44.0,33.0,33.0,33.0,28.0,34.0,30.0,17.0,21.0,17.0,10.0,13.0,20.0,14.0,15.0,11.0,7.0,8.0,9.0,5.0,6.0,4.0,3.0,7.0 G85013,30.0,28.0,31.0,26.0,30.0,32.0,24.0,37.0,28.0,21.0,34.0,37.0,38.0,59.0,50.0,45.0,45.0,58.0,54.0,45.0,47.0,49.0,52.0,62.0,65.0,68.0,85.0,80.0,101.0,77.0,87.0,74.0,65.0,72.0,71.0,75.0,57.0,54.0,60.0,60.0,59.0,66.0,55.0,59.0,51.0,49.0,68.0,65.0,62.0,71.0,66.0,64.0,52.0,63.0,70.0,68.0,47.0,71.0,66.0,61.0,68.0,59.0,65.0,51.0,47.0,39.0,45.0,38.0,42.0,42.0,30.0,28.0,27.0,19.0,22.0,34.0,29.0,16.0,21.0,13.0,12.0,18.0,13.0,9.0,7.0,11.0,8.0,8.0,8.0,11.0,9.0,7.0,4.0,7.0,5.0,5.0 G85014,56.0,47.0,56.0,63.0,49.0,45.0,64.0,70.0,73.0,69.0,55.0,61.0,55.0,65.0,50.0,84.0,54.0,83.0,61.0,63.0,48.0,61.0,50.0,73.0,76.0,100.0,96.0,112.0,99.0,96.0,111.0,90.0,109.0,135.0,116.0,113.0,105.0,100.0,90.0,97.0,108.0,110.0,93.0,91.0,89.0,77.0,79.0,80.0,88.0,80.0,78.0,63.0,70.0,73.0,53.0,67.0,65.0,80.0,62.0,57.0,79.0,65.0,69.0,58.0,60.0,44.0,59.0,52.0,42.0,61.0,53.0,40.0,36.0,35.0,36.0,28.0,30.0,30.0,30.0,25.0,24.0,18.0,25.0,17.0,21.0,14.0,12.0,16.0,11.0,13.0,10.0,9.0,10.0,2.0,4.0,7.0 G85015,23.0,38.0,22.0,26.0,26.0,33.0,33.0,31.0,46.0,30.0,37.0,39.0,39.0,53.0,26.0,60.0,42.0,44.0,47.0,41.0,53.0,53.0,59.0,63.0,77.0,99.0,75.0,93.0,118.0,103.0,95.0,78.0,95.0,85.0,92.0,78.0,81.0,60.0,66.0,75.0,76.0,51.0,51.0,64.0,65.0,57.0,59.0,54.0,51.0,69.0,53.0,53.0,54.0,47.0,62.0,61.0,55.0,60.0,75.0,62.0,82.0,64.0,54.0,56.0,51.0,44.0,46.0,47.0,48.0,40.0,37.0,28.0,30.0,18.0,20.0,28.0,24.0,22.0,16.0,9.0,15.0,20.0,24.0,19.0,13.0,19.0,16.0,10.0,9.0,7.0,7.0,3.0,6.0,3.0,4.0,12.0 G85016,46.0,49.0,43.0,56.0,40.0,48.0,51.0,59.0,65.0,60.0,57.0,67.0,73.0,92.0,74.0,74.0,72.0,74.0,77.0,74.0,53.0,65.0,78.0,91.0,125.0,148.0,145.0,150.0,165.0,192.0,198.0,163.0,164.0,160.0,161.0,131.0,151.0,137.0,138.0,123.0,105.0,102.0,98.0,91.0,112.0,126.0,104.0,100.0,113.0,104.0,99.0,106.0,99.0,100.0,115.0,112.0,109.0,97.0,99.0,107.0,97.0,120.0,94.0,105.0,92.0,71.0,68.0,64.0,53.0,56.0,44.0,60.0,44.0,46.0,40.0,41.0,35.0,32.0,50.0,24.0,18.0,27.0,22.0,20.0,22.0,24.0,19.0,10.0,5.0,12.0,12.0,7.0,9.0,5.0,2.0,11.0 G85019,14.0,12.0,16.0,10.0,9.0,15.0,24.0,15.0,15.0,15.0,16.0,23.0,22.0,23.0,22.0,16.0,18.0,21.0,25.0,25.0,27.0,29.0,22.0,31.0,26.0,31.0,30.0,39.0,32.0,29.0,38.0,23.0,31.0,26.0,31.0,28.0,28.0,29.0,31.0,36.0,33.0,26.0,34.0,24.0,28.0,27.0,22.0,33.0,31.0,31.0,26.0,27.0,28.0,23.0,26.0,33.0,18.0,29.0,24.0,26.0,19.0,22.0,29.0,20.0,19.0,16.0,12.0,13.0,16.0,16.0,13.0,9.0,9.0,5.0,10.0,6.0,6.0,6.0,4.0,2.0,1.0,3.0,6.0,5.0,2.0,4.0,1.0,3.0,,2.0,1.0,,,1.0,1.0,1.0 G85020,67.0,58.0,58.0,66.0,42.0,54.0,30.0,60.0,49.0,44.0,65.0,50.0,51.0,74.0,59.0,52.0,60.0,58.0,61.0,66.0,107.0,113.0,137.0,198.0,244.0,275.0,273.0,312.0,293.0,257.0,253.0,269.0,251.0,240.0,227.0,218.0,198.0,159.0,159.0,153.0,117.0,116.0,89.0,90.0,88.0,84.0,87.0,69.0,73.0,63.0,68.0,70.0,70.0,63.0,60.0,68.0,68.0,59.0,56.0,67.0,58.0,74.0,52.0,60.0,46.0,41.0,45.0,36.0,36.0,34.0,33.0,30.0,17.0,15.0,15.0,28.0,12.0,19.0,18.0,15.0,8.0,9.0,20.0,10.0,4.0,7.0,8.0,13.0,6.0,5.0,4.0,4.0,2.0,1.0,4.0,14.0 G85021,9.0,17.0,14.0,15.0,12.0,17.0,21.0,14.0,17.0,20.0,15.0,19.0,23.0,33.0,26.0,23.0,29.0,30.0,33.0,17.0,15.0,15.0,21.0,33.0,32.0,42.0,44.0,43.0,26.0,44.0,30.0,46.0,39.0,27.0,36.0,28.0,40.0,40.0,31.0,30.0,26.0,26.0,30.0,36.0,38.0,31.0,33.0,29.0,23.0,32.0,35.0,27.0,41.0,29.0,30.0,28.0,26.0,26.0,37.0,37.0,35.0,30.0,31.0,20.0,17.0,29.0,14.0,19.0,26.0,15.0,8.0,17.0,12.0,16.0,18.0,9.0,9.0,7.0,15.0,4.0,9.0,12.0,11.0,8.0,9.0,8.0,9.0,7.0,8.0,1.0,7.0,6.0,3.0,2.0,2.0,4.0 G85022,64.0,63.0,54.0,53.0,61.0,71.0,48.0,70.0,68.0,69.0,78.0,88.0,104.0,80.0,99.0,106.0,94.0,106.0,92.0,82.0,86.0,98.0,85.0,106.0,110.0,139.0,136.0,138.0,117.0,133.0,156.0,148.0,136.0,126.0,127.0,130.0,132.0,121.0,108.0,115.0,98.0,104.0,105.0,122.0,113.0,120.0,110.0,101.0,130.0,122.0,115.0,113.0,137.0,126.0,126.0,125.0,118.0,110.0,126.0,130.0,128.0,104.0,99.0,78.0,96.0,78.0,64.0,72.0,75.0,67.0,79.0,57.0,43.0,53.0,41.0,50.0,40.0,45.0,31.0,37.0,24.0,30.0,27.0,20.0,23.0,29.0,24.0,17.0,9.0,15.0,10.0,17.0,9.0,9.0,3.0,12.0 G85023,84.0,113.0,80.0,85.0,66.0,83.0,61.0,76.0,60.0,66.0,56.0,64.0,59.0,59.0,51.0,44.0,58.0,55.0,53.0,49.0,54.0,68.0,90.0,108.0,145.0,148.0,170.0,176.0,206.0,224.0,216.0,191.0,187.0,214.0,225.0,209.0,200.0,174.0,173.0,155.0,137.0,136.0,151.0,117.0,130.0,114.0,96.0,92.0,88.0,86.0,74.0,70.0,68.0,76.0,62.0,68.0,66.0,64.0,68.0,59.0,55.0,52.0,67.0,56.0,45.0,37.0,57.0,43.0,39.0,26.0,32.0,27.0,23.0,24.0,21.0,20.0,22.0,26.0,17.0,18.0,18.0,16.0,13.0,14.0,11.0,10.0,7.0,11.0,6.0,9.0,13.0,7.0,1.0,2.0,4.0,10.0 G85024,72.0,49.0,54.0,73.0,56.0,68.0,73.0,90.0,80.0,92.0,83.0,100.0,95.0,88.0,114.0,111.0,87.0,107.0,86.0,74.0,73.0,66.0,70.0,77.0,84.0,97.0,78.0,89.0,96.0,116.0,105.0,105.0,121.0,120.0,106.0,125.0,140.0,127.0,124.0,117.0,114.0,117.0,116.0,117.0,117.0,124.0,122.0,101.0,109.0,117.0,110.0,107.0,105.0,114.0,111.0,100.0,106.0,108.0,84.0,106.0,117.0,118.0,101.0,94.0,101.0,76.0,67.0,73.0,79.0,72.0,52.0,48.0,43.0,45.0,51.0,49.0,48.0,54.0,48.0,44.0,41.0,31.0,24.0,27.0,25.0,25.0,33.0,31.0,13.0,17.0,13.0,10.0,9.0,9.0,5.0,15.0 G85025,38.0,39.0,39.0,40.0,45.0,34.0,39.0,45.0,39.0,46.0,48.0,33.0,48.0,29.0,47.0,53.0,46.0,54.0,42.0,35.0,40.0,43.0,75.0,108.0,171.0,224.0,221.0,268.0,286.0,209.0,231.0,199.0,182.0,155.0,151.0,136.0,162.0,120.0,115.0,134.0,116.0,90.0,75.0,80.0,90.0,70.0,81.0,64.0,66.0,66.0,77.0,68.0,58.0,63.0,65.0,62.0,68.0,63.0,85.0,80.0,72.0,60.0,59.0,59.0,48.0,56.0,41.0,29.0,42.0,40.0,19.0,17.0,22.0,19.0,17.0,8.0,15.0,9.0,15.0,8.0,9.0,6.0,11.0,13.0,10.0,10.0,4.0,7.0,10.0,10.0,3.0,3.0,3.0,4.0,3.0,6.0 G85026,12.0,11.0,18.0,16.0,11.0,21.0,27.0,27.0,30.0,19.0,19.0,32.0,24.0,28.0,24.0,21.0,25.0,23.0,27.0,27.0,24.0,26.0,33.0,40.0,35.0,39.0,40.0,44.0,31.0,43.0,48.0,45.0,43.0,36.0,37.0,29.0,42.0,24.0,26.0,35.0,27.0,29.0,32.0,30.0,24.0,28.0,27.0,35.0,22.0,31.0,24.0,28.0,25.0,18.0,29.0,36.0,26.0,26.0,29.0,35.0,32.0,34.0,40.0,38.0,32.0,16.0,18.0,15.0,23.0,18.0,13.0,24.0,21.0,9.0,8.0,12.0,12.0,10.0,10.0,8.0,18.0,13.0,9.0,13.0,10.0,15.0,10.0,6.0,3.0,5.0,5.0,4.0,5.0,4.0,2.0,1.0 G85028,32.0,44.0,36.0,28.0,40.0,41.0,37.0,45.0,33.0,42.0,46.0,41.0,56.0,61.0,60.0,62.0,59.0,49.0,88.0,74.0,99.0,101.0,136.0,133.0,166.0,162.0,186.0,206.0,160.0,134.0,150.0,137.0,123.0,144.0,128.0,132.0,111.0,93.0,108.0,103.0,71.0,83.0,63.0,81.0,67.0,66.0,80.0,70.0,65.0,67.0,72.0,54.0,71.0,63.0,84.0,73.0,82.0,84.0,90.0,107.0,81.0,91.0,62.0,84.0,73.0,71.0,66.0,64.0,57.0,51.0,44.0,41.0,48.0,50.0,32.0,34.0,35.0,26.0,25.0,21.0,18.0,21.0,30.0,12.0,23.0,12.0,13.0,16.0,16.0,8.0,8.0,7.0,6.0,4.0,7.0,13.0 G85029,54.0,66.0,54.0,50.0,34.0,51.0,37.0,49.0,28.0,47.0,40.0,53.0,48.0,56.0,47.0,61.0,66.0,60.0,85.0,87.0,125.0,190.0,200.0,276.0,338.0,359.0,365.0,416.0,368.0,361.0,320.0,289.0,275.0,230.0,221.0,209.0,192.0,119.0,123.0,144.0,125.0,83.0,93.0,97.0,85.0,77.0,67.0,70.0,63.0,71.0,65.0,69.0,57.0,78.0,63.0,67.0,52.0,58.0,53.0,51.0,57.0,55.0,62.0,39.0,42.0,45.0,38.0,30.0,26.0,31.0,20.0,21.0,14.0,17.0,13.0,21.0,19.0,18.0,15.0,12.0,11.0,10.0,9.0,7.0,13.0,11.0,4.0,4.0,7.0,3.0,3.0,2.0,2.0,3.0,2.0,6.0 G85030,18.0,20.0,21.0,26.0,28.0,27.0,29.0,32.0,33.0,24.0,41.0,31.0,31.0,39.0,30.0,37.0,45.0,42.0,42.0,28.0,35.0,31.0,50.0,33.0,31.0,48.0,56.0,37.0,61.0,62.0,59.0,52.0,63.0,45.0,46.0,53.0,58.0,56.0,67.0,50.0,40.0,50.0,42.0,41.0,42.0,44.0,42.0,42.0,36.0,40.0,54.0,53.0,49.0,39.0,46.0,37.0,38.0,45.0,29.0,34.0,25.0,35.0,38.0,21.0,22.0,20.0,24.0,22.0,14.0,10.0,15.0,17.0,14.0,11.0,9.0,16.0,10.0,15.0,12.0,11.0,9.0,8.0,9.0,7.0,9.0,6.0,7.0,9.0,,1.0,2.0,1.0,5.0,2.0,4.0,4.0 G85031,37.0,35.0,34.0,29.0,28.0,21.0,27.0,31.0,19.0,32.0,29.0,30.0,35.0,42.0,38.0,26.0,38.0,28.0,23.0,25.0,23.0,29.0,31.0,38.0,42.0,49.0,52.0,71.0,84.0,81.0,81.0,100.0,82.0,83.0,92.0,84.0,81.0,63.0,58.0,59.0,56.0,51.0,55.0,50.0,52.0,41.0,52.0,46.0,43.0,45.0,52.0,42.0,53.0,45.0,41.0,38.0,53.0,49.0,36.0,47.0,44.0,35.0,48.0,23.0,32.0,22.0,31.0,26.0,24.0,21.0,22.0,20.0,21.0,13.0,28.0,11.0,17.0,14.0,6.0,10.0,14.0,10.0,12.0,11.0,8.0,10.0,7.0,4.0,5.0,,5.0,4.0,4.0,5.0,1.0,5.0 G85032,43.0,55.0,42.0,59.0,55.0,68.0,72.0,79.0,47.0,62.0,82.0,73.0,74.0,68.0,74.0,82.0,68.0,88.0,73.0,63.0,62.0,60.0,81.0,67.0,57.0,88.0,94.0,86.0,87.0,94.0,76.0,75.0,89.0,85.0,84.0,92.0,83.0,86.0,100.0,86.0,96.0,83.0,96.0,80.0,90.0,83.0,93.0,87.0,87.0,74.0,62.0,66.0,68.0,84.0,90.0,77.0,86.0,74.0,85.0,89.0,88.0,112.0,78.0,80.0,70.0,80.0,60.0,76.0,55.0,33.0,46.0,39.0,37.0,42.0,29.0,36.0,30.0,40.0,29.0,34.0,18.0,29.0,24.0,15.0,20.0,13.0,18.0,14.0,18.0,9.0,15.0,8.0,11.0,3.0,7.0,7.0 G85034,204.0,221.0,275.0,269.0,256.0,334.0,303.0,320.0,346.0,346.0,366.0,334.0,418.0,370.0,394.0,345.0,383.0,386.0,341.0,410.0,442.0,447.0,543.0,573.0,658.0,672.0,674.0,750.0,752.0,731.0,752.0,730.0,725.0,775.0,734.0,753.0,725.0,702.0,680.0,657.0,634.0,648.0,582.0,593.0,529.0,529.0,495.0,472.0,483.0,471.0,479.0,470.0,442.0,436.0,504.0,424.0,502.0,456.0,485.0,469.0,417.0,413.0,405.0,396.0,377.0,356.0,308.0,304.0,251.0,234.0,206.0,215.0,186.0,172.0,144.0,119.0,171.0,173.0,158.0,122.0,103.0,105.0,77.0,73.0,82.0,88.0,71.0,52.0,60.0,48.0,29.0,29.0,24.0,24.0,14.0,48.0 G85038,203.0,244.0,252.0,290.0,254.0,253.0,274.0,314.0,303.0,316.0,317.0,339.0,300.0,294.0,299.0,314.0,326.0,292.0,288.0,229.0,253.0,240.0,318.0,325.0,357.0,377.0,341.0,444.0,412.0,463.0,456.0,464.0,559.0,499.0,496.0,525.0,511.0,492.0,494.0,496.0,472.0,478.0,455.0,462.0,453.0,450.0,422.0,424.0,419.0,390.0,357.0,378.0,343.0,368.0,400.0,299.0,350.0,362.0,368.0,314.0,326.0,293.0,295.0,286.0,274.0,222.0,205.0,191.0,198.0,162.0,162.0,156.0,155.0,117.0,133.0,110.0,114.0,128.0,118.0,113.0,110.0,95.0,68.0,78.0,77.0,58.0,63.0,50.0,37.0,39.0,33.0,30.0,18.0,16.0,11.0,32.0 G85039,93.0,77.0,97.0,97.0,85.0,87.0,122.0,87.0,125.0,134.0,138.0,124.0,142.0,134.0,134.0,125.0,109.0,136.0,102.0,90.0,91.0,89.0,97.0,98.0,121.0,126.0,111.0,136.0,98.0,119.0,139.0,144.0,161.0,177.0,178.0,170.0,169.0,181.0,178.0,162.0,183.0,171.0,174.0,176.0,176.0,175.0,181.0,136.0,148.0,169.0,160.0,125.0,152.0,129.0,144.0,118.0,134.0,132.0,150.0,112.0,101.0,125.0,113.0,109.0,109.0,100.0,89.0,75.0,93.0,66.0,68.0,73.0,67.0,67.0,59.0,64.0,61.0,58.0,53.0,57.0,54.0,39.0,33.0,20.0,24.0,22.0,30.0,22.0,16.0,12.0,7.0,5.0,9.0,10.0,8.0,15.0 G85040,55.0,83.0,60.0,78.0,59.0,57.0,55.0,59.0,56.0,47.0,41.0,44.0,53.0,53.0,50.0,50.0,42.0,62.0,53.0,71.0,83.0,114.0,95.0,147.0,181.0,189.0,219.0,241.0,271.0,256.0,281.0,271.0,251.0,272.0,250.0,210.0,214.0,173.0,148.0,133.0,129.0,94.0,94.0,102.0,105.0,82.0,62.0,81.0,59.0,63.0,59.0,53.0,48.0,51.0,56.0,49.0,53.0,53.0,60.0,56.0,61.0,63.0,51.0,32.0,32.0,39.0,37.0,27.0,30.0,30.0,21.0,21.0,29.0,12.0,27.0,12.0,13.0,14.0,21.0,14.0,9.0,10.0,13.0,9.0,9.0,6.0,9.0,7.0,6.0,3.0,7.0,8.0,2.0,1.0,2.0,5.0 G85041,29.0,29.0,36.0,25.0,32.0,35.0,34.0,38.0,41.0,40.0,35.0,42.0,54.0,50.0,53.0,51.0,38.0,55.0,38.0,46.0,39.0,43.0,53.0,55.0,56.0,54.0,58.0,75.0,76.0,66.0,70.0,77.0,75.0,75.0,90.0,80.0,78.0,61.0,50.0,58.0,58.0,64.0,52.0,70.0,66.0,52.0,65.0,52.0,51.0,49.0,61.0,60.0,47.0,54.0,40.0,43.0,55.0,65.0,69.0,49.0,49.0,66.0,53.0,38.0,47.0,51.0,37.0,34.0,34.0,21.0,30.0,25.0,20.0,22.0,20.0,32.0,16.0,19.0,20.0,16.0,20.0,13.0,14.0,8.0,10.0,12.0,6.0,7.0,10.0,7.0,4.0,4.0,2.0,5.0,2.0,7.0 G85042,35.0,48.0,32.0,25.0,30.0,27.0,28.0,37.0,32.0,30.0,25.0,34.0,30.0,28.0,28.0,27.0,34.0,33.0,39.0,54.0,65.0,64.0,72.0,69.0,73.0,103.0,93.0,101.0,102.0,106.0,114.0,98.0,113.0,87.0,77.0,84.0,78.0,76.0,61.0,64.0,41.0,44.0,57.0,53.0,40.0,44.0,32.0,57.0,35.0,34.0,36.0,27.0,39.0,43.0,42.0,44.0,52.0,22.0,31.0,40.0,38.0,35.0,32.0,26.0,36.0,27.0,30.0,39.0,20.0,13.0,23.0,17.0,16.0,17.0,13.0,12.0,10.0,13.0,5.0,8.0,8.0,11.0,7.0,2.0,9.0,12.0,5.0,2.0,5.0,2.0,3.0,1.0,1.0,,1.0,2.0 G85044,25.0,23.0,37.0,24.0,20.0,43.0,33.0,30.0,33.0,26.0,35.0,20.0,25.0,22.0,29.0,34.0,24.0,29.0,23.0,28.0,27.0,23.0,27.0,23.0,42.0,50.0,54.0,53.0,62.0,56.0,35.0,60.0,66.0,63.0,50.0,54.0,50.0,50.0,45.0,47.0,46.0,45.0,48.0,24.0,39.0,54.0,30.0,41.0,30.0,32.0,30.0,38.0,30.0,40.0,47.0,32.0,25.0,34.0,43.0,42.0,36.0,36.0,30.0,50.0,29.0,28.0,26.0,27.0,29.0,14.0,23.0,25.0,22.0,15.0,22.0,22.0,19.0,13.0,18.0,9.0,20.0,5.0,7.0,10.0,13.0,10.0,7.0,7.0,4.0,7.0,7.0,1.0,1.0,5.0,4.0,3.0 G85045,20.0,27.0,16.0,25.0,21.0,22.0,29.0,27.0,26.0,26.0,32.0,32.0,33.0,25.0,24.0,33.0,39.0,39.0,39.0,33.0,24.0,28.0,46.0,64.0,68.0,73.0,113.0,117.0,107.0,97.0,120.0,112.0,84.0,86.0,72.0,77.0,69.0,56.0,61.0,50.0,60.0,61.0,54.0,51.0,44.0,59.0,62.0,51.0,44.0,33.0,52.0,61.0,49.0,62.0,44.0,33.0,48.0,54.0,65.0,42.0,56.0,63.0,52.0,48.0,45.0,44.0,28.0,39.0,38.0,34.0,27.0,28.0,33.0,26.0,28.0,15.0,21.0,18.0,28.0,10.0,18.0,16.0,15.0,12.0,9.0,8.0,10.0,8.0,7.0,7.0,2.0,2.0,4.0,4.0,2.0,5.0 G85046,68.0,60.0,42.0,55.0,77.0,52.0,70.0,49.0,80.0,78.0,76.0,73.0,80.0,65.0,72.0,66.0,68.0,55.0,54.0,33.0,25.0,41.0,55.0,64.0,49.0,63.0,81.0,96.0,93.0,97.0,101.0,108.0,94.0,126.0,114.0,128.0,105.0,125.0,113.0,112.0,146.0,102.0,135.0,110.0,132.0,121.0,106.0,104.0,111.0,73.0,110.0,103.0,80.0,87.0,88.0,89.0,74.0,73.0,69.0,72.0,80.0,83.0,74.0,60.0,48.0,50.0,60.0,47.0,43.0,49.0,37.0,46.0,45.0,34.0,32.0,42.0,45.0,54.0,41.0,49.0,41.0,36.0,50.0,28.0,36.0,31.0,20.0,21.0,13.0,24.0,14.0,9.0,13.0,10.0,13.0,20.0 G85047,70.0,70.0,86.0,84.0,81.0,79.0,85.0,81.0,84.0,69.0,65.0,61.0,57.0,56.0,42.0,51.0,50.0,53.0,41.0,40.0,49.0,51.0,45.0,51.0,68.0,94.0,83.0,102.0,119.0,133.0,136.0,166.0,164.0,168.0,168.0,178.0,188.0,131.0,153.0,147.0,111.0,108.0,117.0,110.0,90.0,92.0,96.0,79.0,74.0,83.0,61.0,62.0,57.0,70.0,65.0,58.0,60.0,64.0,55.0,62.0,37.0,40.0,46.0,53.0,39.0,38.0,28.0,30.0,24.0,31.0,20.0,24.0,20.0,28.0,12.0,22.0,21.0,16.0,11.0,11.0,16.0,9.0,11.0,15.0,7.0,13.0,8.0,8.0,4.0,6.0,11.0,6.0,1.0,4.0,,5.0 G85051,37.0,40.0,27.0,41.0,46.0,49.0,41.0,30.0,61.0,65.0,62.0,61.0,62.0,71.0,75.0,69.0,68.0,54.0,57.0,42.0,36.0,39.0,49.0,54.0,61.0,67.0,73.0,68.0,64.0,60.0,75.0,68.0,54.0,51.0,54.0,61.0,71.0,65.0,56.0,64.0,64.0,61.0,69.0,81.0,75.0,60.0,72.0,80.0,77.0,58.0,71.0,67.0,70.0,76.0,52.0,62.0,68.0,59.0,63.0,78.0,75.0,65.0,57.0,53.0,52.0,55.0,47.0,51.0,52.0,49.0,39.0,32.0,23.0,32.0,28.0,39.0,25.0,31.0,29.0,20.0,15.0,21.0,16.0,20.0,19.0,14.0,12.0,11.0,12.0,11.0,7.0,6.0,5.0,3.0,1.0,10.0 G85052,32.0,40.0,35.0,40.0,47.0,55.0,46.0,60.0,55.0,59.0,53.0,67.0,58.0,54.0,65.0,58.0,72.0,65.0,52.0,57.0,56.0,56.0,69.0,63.0,71.0,87.0,100.0,105.0,100.0,100.0,111.0,97.0,93.0,107.0,112.0,109.0,94.0,98.0,73.0,94.0,88.0,93.0,83.0,70.0,77.0,105.0,89.0,73.0,72.0,76.0,60.0,66.0,74.0,66.0,64.0,72.0,56.0,54.0,53.0,55.0,44.0,49.0,49.0,39.0,39.0,27.0,29.0,29.0,28.0,28.0,14.0,22.0,12.0,12.0,12.0,15.0,7.0,11.0,10.0,8.0,11.0,5.0,6.0,6.0,3.0,7.0,3.0,2.0,5.0,2.0,1.0,2.0,2.0,2.0,,2.0 G85053,61.0,60.0,57.0,77.0,38.0,57.0,55.0,67.0,76.0,74.0,73.0,72.0,76.0,70.0,76.0,69.0,84.0,84.0,94.0,156.0,124.0,162.0,205.0,230.0,268.0,279.0,285.0,270.0,283.0,272.0,326.0,300.0,275.0,302.0,279.0,273.0,294.0,261.0,244.0,222.0,206.0,197.0,176.0,175.0,155.0,154.0,137.0,161.0,122.0,148.0,130.0,130.0,133.0,129.0,124.0,121.0,117.0,118.0,105.0,102.0,116.0,104.0,122.0,103.0,87.0,87.0,67.0,62.0,50.0,62.0,46.0,48.0,35.0,35.0,37.0,23.0,31.0,33.0,26.0,38.0,19.0,29.0,19.0,27.0,20.0,18.0,13.0,13.0,11.0,4.0,10.0,9.0,6.0,4.0,9.0,6.0 G85054,22.0,25.0,23.0,20.0,21.0,32.0,30.0,34.0,34.0,32.0,35.0,41.0,41.0,40.0,38.0,29.0,40.0,46.0,32.0,34.0,30.0,44.0,56.0,66.0,100.0,74.0,78.0,73.0,85.0,70.0,72.0,69.0,77.0,71.0,58.0,73.0,66.0,71.0,54.0,78.0,60.0,45.0,49.0,57.0,47.0,37.0,52.0,49.0,45.0,42.0,40.0,57.0,43.0,58.0,63.0,52.0,63.0,51.0,44.0,65.0,55.0,51.0,51.0,47.0,48.0,35.0,47.0,29.0,33.0,35.0,30.0,28.0,32.0,38.0,33.0,28.0,33.0,18.0,22.0,24.0,18.0,21.0,19.0,13.0,14.0,19.0,11.0,10.0,10.0,8.0,10.0,10.0,6.0,4.0,4.0,19.0 G85057,67.0,65.0,50.0,59.0,76.0,84.0,71.0,93.0,83.0,90.0,87.0,82.0,91.0,75.0,103.0,85.0,92.0,108.0,91.0,81.0,59.0,74.0,84.0,69.0,70.0,77.0,89.0,92.0,65.0,90.0,102.0,81.0,81.0,83.0,98.0,108.0,120.0,99.0,97.0,120.0,95.0,98.0,112.0,93.0,103.0,94.0,105.0,97.0,95.0,88.0,65.0,70.0,98.0,91.0,110.0,88.0,91.0,101.0,75.0,84.0,76.0,88.0,77.0,73.0,76.0,67.0,53.0,58.0,57.0,44.0,49.0,48.0,36.0,45.0,36.0,42.0,36.0,35.0,36.0,37.0,34.0,20.0,21.0,20.0,15.0,31.0,23.0,12.0,17.0,17.0,11.0,9.0,8.0,6.0,5.0,17.0 G85061,80.0,60.0,42.0,66.0,50.0,42.0,48.0,45.0,38.0,46.0,54.0,41.0,47.0,46.0,47.0,38.0,44.0,46.0,42.0,43.0,31.0,53.0,54.0,53.0,71.0,67.0,90.0,90.0,104.0,92.0,110.0,118.0,119.0,139.0,138.0,132.0,129.0,87.0,97.0,96.0,88.0,79.0,74.0,86.0,75.0,57.0,64.0,75.0,65.0,56.0,53.0,35.0,48.0,45.0,56.0,59.0,58.0,59.0,68.0,66.0,61.0,71.0,58.0,57.0,47.0,40.0,45.0,43.0,33.0,35.0,33.0,34.0,20.0,31.0,23.0,24.0,23.0,26.0,22.0,17.0,16.0,22.0,18.0,15.0,15.0,13.0,12.0,11.0,12.0,11.0,7.0,3.0,5.0,3.0,1.0,11.0 G85073,26.0,21.0,22.0,27.0,17.0,18.0,13.0,19.0,23.0,24.0,26.0,19.0,38.0,28.0,30.0,21.0,30.0,29.0,33.0,30.0,21.0,33.0,41.0,67.0,86.0,103.0,97.0,105.0,113.0,98.0,92.0,87.0,100.0,99.0,76.0,86.0,83.0,64.0,60.0,60.0,58.0,48.0,55.0,41.0,41.0,38.0,35.0,33.0,45.0,41.0,39.0,45.0,29.0,39.0,48.0,38.0,53.0,34.0,41.0,43.0,29.0,43.0,33.0,53.0,28.0,42.0,33.0,23.0,32.0,20.0,24.0,18.0,14.0,11.0,7.0,13.0,12.0,10.0,11.0,5.0,16.0,9.0,5.0,5.0,7.0,10.0,10.0,,9.0,2.0,4.0,4.0,2.0,5.0,2.0,4.0 G85076,24.0,23.0,31.0,22.0,26.0,35.0,33.0,53.0,50.0,38.0,63.0,63.0,63.0,60.0,58.0,58.0,43.0,48.0,67.0,61.0,70.0,58.0,64.0,70.0,81.0,66.0,87.0,84.0,88.0,84.0,95.0,96.0,94.0,118.0,94.0,119.0,102.0,81.0,100.0,75.0,87.0,84.0,77.0,60.0,72.0,98.0,80.0,75.0,73.0,69.0,88.0,61.0,61.0,55.0,69.0,58.0,60.0,53.0,60.0,58.0,52.0,66.0,37.0,45.0,53.0,33.0,31.0,30.0,31.0,22.0,19.0,21.0,28.0,15.0,11.0,16.0,19.0,11.0,11.0,9.0,10.0,7.0,13.0,6.0,7.0,6.0,5.0,9.0,,4.0,3.0,2.0,3.0,1.0,,10.0 G85083,27.0,35.0,31.0,28.0,29.0,29.0,22.0,39.0,34.0,36.0,34.0,43.0,49.0,36.0,45.0,43.0,51.0,36.0,43.0,56.0,37.0,35.0,81.0,84.0,148.0,179.0,199.0,197.0,218.0,210.0,200.0,175.0,180.0,140.0,140.0,134.0,129.0,117.0,100.0,84.0,92.0,100.0,74.0,87.0,94.0,75.0,87.0,70.0,69.0,66.0,62.0,67.0,60.0,54.0,68.0,63.0,82.0,79.0,57.0,75.0,77.0,72.0,76.0,48.0,64.0,44.0,53.0,58.0,38.0,44.0,40.0,26.0,32.0,22.0,28.0,31.0,23.0,18.0,21.0,16.0,11.0,20.0,16.0,8.0,16.0,16.0,13.0,5.0,11.0,6.0,3.0,1.0,5.0,2.0,1.0,2.0 G85084,57.0,56.0,48.0,47.0,51.0,64.0,55.0,67.0,66.0,46.0,61.0,52.0,53.0,68.0,53.0,54.0,67.0,62.0,48.0,87.0,105.0,126.0,185.0,228.0,275.0,308.0,326.0,298.0,311.0,302.0,311.0,247.0,269.0,206.0,215.0,181.0,189.0,151.0,147.0,130.0,124.0,119.0,135.0,88.0,94.0,79.0,80.0,71.0,76.0,73.0,76.0,58.0,60.0,63.0,66.0,67.0,75.0,51.0,59.0,62.0,65.0,58.0,48.0,57.0,52.0,34.0,37.0,37.0,25.0,40.0,31.0,28.0,26.0,11.0,14.0,26.0,25.0,15.0,13.0,19.0,20.0,9.0,11.0,11.0,7.0,8.0,10.0,4.0,3.0,6.0,6.0,5.0,3.0,1.0,5.0,7.0 G85085,61.0,44.0,48.0,62.0,55.0,42.0,39.0,50.0,42.0,34.0,47.0,49.0,46.0,45.0,42.0,59.0,52.0,47.0,53.0,54.0,60.0,57.0,86.0,112.0,149.0,169.0,167.0,188.0,207.0,226.0,209.0,218.0,208.0,184.0,203.0,193.0,197.0,150.0,147.0,159.0,116.0,109.0,128.0,77.0,93.0,91.0,74.0,61.0,65.0,63.0,66.0,57.0,62.0,63.0,62.0,53.0,62.0,54.0,59.0,50.0,52.0,56.0,50.0,56.0,35.0,35.0,28.0,27.0,31.0,26.0,26.0,21.0,18.0,22.0,6.0,13.0,13.0,15.0,11.0,9.0,14.0,13.0,8.0,7.0,4.0,7.0,8.0,4.0,4.0,2.0,1.0,6.0,2.0,3.0,,3.0 G85086,28.0,21.0,26.0,28.0,22.0,32.0,26.0,32.0,33.0,26.0,35.0,31.0,38.0,31.0,34.0,35.0,40.0,37.0,36.0,31.0,56.0,56.0,112.0,140.0,174.0,231.0,224.0,223.0,194.0,174.0,157.0,156.0,152.0,97.0,91.0,125.0,111.0,84.0,101.0,77.0,65.0,69.0,67.0,73.0,56.0,48.0,63.0,48.0,51.0,60.0,68.0,60.0,46.0,60.0,33.0,38.0,49.0,53.0,37.0,55.0,52.0,41.0,37.0,45.0,31.0,28.0,38.0,37.0,41.0,20.0,31.0,15.0,25.0,12.0,25.0,26.0,16.0,12.0,12.0,14.0,14.0,12.0,12.0,9.0,7.0,6.0,2.0,3.0,6.0,3.0,2.0,2.0,1.0,1.0,1.0,4.0 G85087,81.0,82.0,89.0,81.0,56.0,82.0,64.0,67.0,74.0,73.0,75.0,80.0,64.0,65.0,75.0,68.0,61.0,79.0,60.0,67.0,96.0,119.0,163.0,167.0,216.0,264.0,262.0,281.0,265.0,279.0,294.0,277.0,284.0,247.0,232.0,236.0,191.0,203.0,180.0,169.0,141.0,141.0,126.0,111.0,121.0,111.0,92.0,93.0,82.0,71.0,76.0,71.0,76.0,75.0,68.0,60.0,75.0,68.0,61.0,57.0,60.0,53.0,65.0,47.0,45.0,57.0,40.0,28.0,44.0,32.0,33.0,22.0,20.0,18.0,11.0,20.0,13.0,20.0,14.0,12.0,10.0,7.0,12.0,13.0,9.0,16.0,10.0,,5.0,7.0,3.0,5.0,2.0,2.0,2.0,3.0 G85091,65.0,46.0,49.0,60.0,50.0,52.0,56.0,58.0,45.0,49.0,38.0,33.0,31.0,30.0,41.0,32.0,24.0,25.0,18.0,23.0,18.0,15.0,23.0,16.0,44.0,53.0,48.0,57.0,62.0,85.0,88.0,104.0,96.0,129.0,102.0,113.0,95.0,103.0,84.0,89.0,83.0,84.0,75.0,83.0,48.0,71.0,55.0,47.0,45.0,51.0,32.0,31.0,31.0,26.0,33.0,32.0,22.0,23.0,27.0,19.0,21.0,20.0,22.0,17.0,15.0,23.0,16.0,13.0,21.0,11.0,20.0,20.0,19.0,13.0,10.0,10.0,7.0,10.0,8.0,5.0,7.0,6.0,10.0,5.0,9.0,10.0,8.0,1.0,2.0,1.0,1.0,1.0,4.0,1.0,1.0,1.0 G85096,40.0,59.0,53.0,51.0,45.0,48.0,57.0,44.0,57.0,70.0,51.0,64.0,43.0,61.0,65.0,66.0,51.0,53.0,63.0,45.0,58.0,58.0,62.0,67.0,72.0,82.0,74.0,86.0,83.0,88.0,83.0,91.0,90.0,83.0,111.0,102.0,96.0,95.0,107.0,68.0,92.0,81.0,86.0,85.0,87.0,76.0,51.0,72.0,72.0,74.0,67.0,74.0,53.0,42.0,58.0,65.0,45.0,50.0,49.0,52.0,58.0,46.0,53.0,40.0,35.0,39.0,40.0,41.0,32.0,21.0,26.0,26.0,19.0,20.0,23.0,27.0,13.0,21.0,17.0,25.0,13.0,11.0,13.0,16.0,8.0,10.0,13.0,6.0,6.0,8.0,13.0,4.0,7.0,5.0,4.0,6.0 G85100,14.0,24.0,20.0,27.0,21.0,25.0,22.0,27.0,30.0,19.0,26.0,13.0,25.0,34.0,25.0,33.0,34.0,37.0,34.0,34.0,53.0,52.0,66.0,128.0,127.0,184.0,178.0,170.0,171.0,147.0,142.0,164.0,116.0,108.0,125.0,90.0,73.0,70.0,73.0,54.0,53.0,51.0,55.0,56.0,58.0,44.0,50.0,48.0,48.0,48.0,46.0,51.0,41.0,47.0,49.0,57.0,44.0,42.0,45.0,57.0,44.0,40.0,49.0,44.0,28.0,33.0,27.0,20.0,22.0,30.0,26.0,13.0,12.0,12.0,10.0,7.0,12.0,9.0,6.0,2.0,9.0,9.0,3.0,5.0,5.0,10.0,7.0,7.0,5.0,4.0,1.0,1.0,1.0,,,3.0 G85102,32.0,24.0,28.0,31.0,22.0,22.0,24.0,23.0,14.0,29.0,14.0,25.0,20.0,23.0,17.0,17.0,20.0,21.0,30.0,32.0,58.0,84.0,137.0,193.0,271.0,281.0,277.0,290.0,254.0,225.0,188.0,173.0,157.0,126.0,99.0,104.0,85.0,70.0,61.0,69.0,55.0,52.0,46.0,35.0,29.0,32.0,32.0,31.0,30.0,32.0,45.0,27.0,21.0,28.0,34.0,33.0,40.0,28.0,44.0,31.0,38.0,26.0,20.0,22.0,26.0,16.0,19.0,27.0,16.0,13.0,16.0,10.0,10.0,9.0,10.0,5.0,10.0,4.0,8.0,9.0,4.0,16.0,7.0,3.0,7.0,6.0,3.0,2.0,3.0,2.0,2.0,,1.0,,3.0,1.0 G85104,42.0,43.0,40.0,40.0,48.0,57.0,55.0,58.0,53.0,57.0,55.0,59.0,51.0,64.0,65.0,54.0,64.0,57.0,69.0,58.0,58.0,58.0,55.0,60.0,57.0,62.0,59.0,62.0,61.0,71.0,72.0,75.0,67.0,74.0,65.0,65.0,64.0,81.0,80.0,89.0,77.0,70.0,77.0,79.0,66.0,78.0,92.0,68.0,77.0,67.0,55.0,48.0,72.0,67.0,72.0,66.0,70.0,76.0,71.0,75.0,74.0,72.0,79.0,71.0,62.0,58.0,63.0,58.0,44.0,40.0,39.0,27.0,23.0,27.0,36.0,38.0,32.0,30.0,25.0,26.0,25.0,26.0,27.0,20.0,22.0,26.0,16.0,9.0,12.0,13.0,7.0,9.0,8.0,3.0,4.0,24.0 G85105,35.0,29.0,30.0,39.0,31.0,23.0,44.0,42.0,40.0,39.0,39.0,32.0,38.0,37.0,35.0,27.0,29.0,25.0,25.0,16.0,24.0,28.0,29.0,47.0,48.0,45.0,78.0,79.0,71.0,90.0,91.0,82.0,107.0,94.0,84.0,93.0,70.0,78.0,69.0,68.0,52.0,60.0,54.0,67.0,54.0,57.0,39.0,43.0,52.0,47.0,34.0,43.0,30.0,37.0,30.0,40.0,35.0,41.0,43.0,32.0,33.0,31.0,38.0,20.0,19.0,20.0,14.0,14.0,23.0,16.0,21.0,18.0,9.0,13.0,11.0,10.0,9.0,9.0,8.0,8.0,8.0,11.0,3.0,8.0,11.0,6.0,5.0,3.0,2.0,2.0,3.0,1.0,2.0,1.0,2.0,4.0 G85109,82.0,99.0,79.0,84.0,64.0,62.0,60.0,63.0,53.0,66.0,84.0,71.0,82.0,67.0,71.0,63.0,69.0,74.0,80.0,79.0,73.0,73.0,119.0,211.0,334.0,466.0,554.0,594.0,550.0,513.0,433.0,385.0,339.0,299.0,269.0,266.0,213.0,186.0,172.0,166.0,136.0,145.0,134.0,128.0,94.0,101.0,113.0,102.0,100.0,100.0,102.0,97.0,97.0,96.0,95.0,83.0,93.0,74.0,78.0,96.0,82.0,73.0,75.0,73.0,59.0,57.0,69.0,56.0,49.0,50.0,41.0,44.0,29.0,34.0,26.0,23.0,35.0,48.0,31.0,26.0,19.0,18.0,17.0,18.0,14.0,17.0,14.0,7.0,4.0,8.0,8.0,4.0,6.0,5.0,2.0,7.0 G85114,65.0,76.0,78.0,72.0,71.0,76.0,68.0,72.0,68.0,82.0,80.0,90.0,70.0,74.0,82.0,85.0,64.0,67.0,80.0,76.0,69.0,64.0,67.0,61.0,82.0,98.0,89.0,84.0,93.0,100.0,108.0,117.0,116.0,141.0,160.0,147.0,138.0,137.0,140.0,111.0,112.0,118.0,105.0,122.0,130.0,92.0,107.0,102.0,94.0,99.0,97.0,103.0,87.0,96.0,86.0,87.0,94.0,70.0,80.0,82.0,86.0,93.0,57.0,70.0,66.0,61.0,48.0,48.0,40.0,44.0,35.0,37.0,48.0,26.0,31.0,23.0,30.0,21.0,23.0,26.0,22.0,22.0,20.0,20.0,10.0,25.0,12.0,14.0,15.0,13.0,8.0,7.0,7.0,4.0,7.0,3.0 G85119,47.0,27.0,35.0,32.0,21.0,32.0,29.0,25.0,36.0,32.0,24.0,27.0,36.0,31.0,26.0,33.0,18.0,34.0,21.0,27.0,23.0,20.0,38.0,32.0,45.0,68.0,74.0,65.0,88.0,75.0,73.0,79.0,81.0,103.0,75.0,67.0,61.0,71.0,55.0,56.0,65.0,49.0,44.0,62.0,42.0,39.0,38.0,46.0,25.0,45.0,41.0,28.0,27.0,28.0,30.0,31.0,27.0,31.0,27.0,29.0,28.0,33.0,25.0,25.0,28.0,28.0,21.0,27.0,23.0,11.0,11.0,18.0,17.0,15.0,11.0,9.0,12.0,11.0,8.0,2.0,8.0,7.0,12.0,13.0,9.0,13.0,6.0,3.0,4.0,8.0,2.0,2.0,4.0,4.0,1.0,3.0 G85120,25.0,30.0,36.0,30.0,24.0,26.0,28.0,42.0,39.0,33.0,39.0,36.0,28.0,34.0,46.0,46.0,36.0,36.0,45.0,26.0,27.0,26.0,44.0,29.0,46.0,56.0,49.0,52.0,52.0,59.0,54.0,47.0,69.0,52.0,57.0,51.0,55.0,58.0,60.0,57.0,47.0,52.0,49.0,50.0,45.0,48.0,48.0,49.0,46.0,53.0,38.0,38.0,33.0,41.0,35.0,48.0,49.0,49.0,40.0,47.0,58.0,48.0,58.0,50.0,45.0,50.0,25.0,35.0,39.0,30.0,28.0,26.0,25.0,28.0,18.0,16.0,13.0,20.0,20.0,15.0,9.0,13.0,16.0,8.0,10.0,6.0,15.0,3.0,4.0,7.0,1.0,4.0,3.0,6.0,2.0,7.0 G85121,81.0,91.0,74.0,66.0,76.0,73.0,65.0,54.0,41.0,46.0,54.0,32.0,43.0,35.0,40.0,38.0,32.0,44.0,52.0,45.0,46.0,68.0,48.0,75.0,98.0,93.0,121.0,115.0,103.0,119.0,137.0,156.0,138.0,127.0,140.0,133.0,138.0,129.0,119.0,107.0,95.0,79.0,98.0,72.0,83.0,84.0,62.0,66.0,51.0,53.0,49.0,53.0,39.0,46.0,51.0,54.0,38.0,38.0,39.0,40.0,35.0,55.0,36.0,23.0,31.0,27.0,23.0,21.0,22.0,34.0,22.0,17.0,26.0,17.0,12.0,18.0,12.0,10.0,12.0,15.0,10.0,18.0,12.0,10.0,5.0,7.0,9.0,9.0,9.0,6.0,10.0,7.0,5.0,4.0,3.0,7.0 G85123,33.0,29.0,45.0,30.0,25.0,36.0,26.0,27.0,32.0,30.0,34.0,46.0,36.0,39.0,35.0,41.0,54.0,52.0,39.0,48.0,45.0,73.0,80.0,96.0,142.0,182.0,196.0,205.0,173.0,154.0,164.0,153.0,136.0,116.0,132.0,117.0,98.0,89.0,104.0,85.0,80.0,68.0,54.0,60.0,65.0,66.0,58.0,54.0,52.0,60.0,59.0,39.0,60.0,42.0,47.0,59.0,48.0,62.0,52.0,45.0,43.0,43.0,46.0,44.0,48.0,39.0,34.0,44.0,24.0,20.0,28.0,27.0,16.0,13.0,24.0,7.0,16.0,15.0,17.0,12.0,8.0,8.0,14.0,12.0,12.0,7.0,2.0,2.0,4.0,5.0,1.0,5.0,5.0,,1.0,2.0 G85125,28.0,19.0,19.0,34.0,32.0,17.0,27.0,42.0,38.0,36.0,34.0,35.0,36.0,33.0,42.0,48.0,38.0,33.0,42.0,31.0,41.0,55.0,36.0,67.0,61.0,77.0,72.0,71.0,68.0,71.0,46.0,59.0,52.0,61.0,75.0,46.0,51.0,58.0,54.0,46.0,59.0,44.0,50.0,37.0,43.0,45.0,49.0,39.0,28.0,29.0,41.0,26.0,43.0,32.0,35.0,41.0,35.0,32.0,47.0,31.0,30.0,36.0,28.0,40.0,32.0,34.0,31.0,23.0,30.0,27.0,13.0,9.0,23.0,24.0,21.0,9.0,18.0,21.0,24.0,14.0,11.0,12.0,9.0,9.0,8.0,4.0,9.0,10.0,2.0,7.0,7.0,2.0,5.0,1.0,2.0,3.0 G85127,25.0,24.0,24.0,22.0,26.0,21.0,29.0,23.0,34.0,28.0,24.0,30.0,27.0,29.0,25.0,29.0,31.0,26.0,29.0,28.0,35.0,41.0,33.0,35.0,54.0,67.0,64.0,78.0,82.0,71.0,90.0,95.0,88.0,80.0,97.0,66.0,70.0,75.0,59.0,63.0,41.0,51.0,50.0,43.0,39.0,58.0,51.0,44.0,52.0,39.0,52.0,40.0,54.0,40.0,46.0,37.0,36.0,34.0,39.0,28.0,29.0,33.0,35.0,21.0,23.0,21.0,22.0,21.0,16.0,25.0,13.0,7.0,15.0,9.0,4.0,8.0,3.0,4.0,5.0,5.0,7.0,7.0,3.0,7.0,5.0,2.0,4.0,3.0,,1.0,3.0,1.0,,2.0,1.0,2.0 G85129,40.0,35.0,32.0,31.0,39.0,28.0,22.0,25.0,32.0,25.0,18.0,32.0,39.0,35.0,30.0,33.0,34.0,29.0,35.0,39.0,40.0,32.0,43.0,54.0,69.0,105.0,81.0,117.0,140.0,135.0,124.0,123.0,114.0,106.0,125.0,108.0,90.0,83.0,68.0,64.0,74.0,71.0,58.0,54.0,65.0,63.0,52.0,42.0,39.0,47.0,40.0,42.0,38.0,36.0,43.0,35.0,30.0,33.0,32.0,30.0,20.0,30.0,33.0,27.0,37.0,21.0,19.0,10.0,13.0,14.0,10.0,9.0,17.0,11.0,12.0,11.0,9.0,10.0,7.0,11.0,6.0,3.0,4.0,10.0,2.0,1.0,8.0,4.0,4.0,6.0,1.0,,2.0,1.0,3.0,2.0 G85130,33.0,52.0,30.0,44.0,39.0,33.0,38.0,45.0,50.0,46.0,41.0,50.0,40.0,38.0,53.0,48.0,45.0,40.0,32.0,50.0,67.0,68.0,97.0,123.0,141.0,131.0,177.0,147.0,143.0,137.0,133.0,110.0,106.0,86.0,98.0,106.0,64.0,79.0,99.0,73.0,76.0,79.0,62.0,71.0,59.0,57.0,62.0,65.0,59.0,57.0,53.0,61.0,73.0,67.0,63.0,48.0,61.0,73.0,49.0,60.0,51.0,49.0,59.0,54.0,40.0,44.0,34.0,41.0,23.0,33.0,32.0,22.0,23.0,28.0,21.0,14.0,14.0,24.0,16.0,12.0,9.0,16.0,16.0,12.0,14.0,7.0,7.0,10.0,6.0,12.0,4.0,2.0,4.0,3.0,2.0,9.0 G85132,106.0,102.0,100.0,99.0,88.0,74.0,83.0,80.0,82.0,79.0,73.0,77.0,72.0,82.0,88.0,74.0,78.0,86.0,91.0,47.0,68.0,68.0,51.0,80.0,92.0,133.0,143.0,174.0,175.0,215.0,213.0,244.0,229.0,226.0,212.0,237.0,205.0,192.0,176.0,166.0,156.0,152.0,128.0,132.0,111.0,114.0,103.0,118.0,94.0,103.0,107.0,87.0,90.0,92.0,85.0,93.0,84.0,81.0,77.0,87.0,101.0,77.0,82.0,68.0,57.0,58.0,36.0,37.0,37.0,55.0,42.0,41.0,32.0,34.0,23.0,23.0,23.0,18.0,17.0,20.0,21.0,17.0,22.0,13.0,14.0,10.0,11.0,12.0,10.0,12.0,8.0,10.0,4.0,4.0,2.0,10.0 G85134,46.0,33.0,31.0,36.0,33.0,39.0,34.0,33.0,49.0,30.0,42.0,39.0,51.0,53.0,49.0,57.0,57.0,58.0,70.0,63.0,59.0,56.0,70.0,75.0,103.0,82.0,84.0,75.0,68.0,73.0,58.0,74.0,73.0,80.0,79.0,78.0,79.0,51.0,65.0,61.0,63.0,61.0,61.0,52.0,61.0,68.0,51.0,72.0,57.0,60.0,44.0,59.0,57.0,47.0,61.0,56.0,56.0,68.0,61.0,56.0,36.0,56.0,45.0,27.0,46.0,37.0,42.0,26.0,23.0,16.0,25.0,18.0,21.0,29.0,16.0,12.0,15.0,15.0,6.0,10.0,13.0,9.0,6.0,6.0,9.0,8.0,5.0,7.0,10.0,2.0,5.0,3.0,1.0,2.0,1.0,2.0 G85135,50.0,52.0,45.0,46.0,47.0,54.0,47.0,59.0,61.0,50.0,60.0,62.0,49.0,64.0,70.0,75.0,65.0,67.0,52.0,66.0,77.0,89.0,86.0,108.0,117.0,116.0,136.0,141.0,116.0,136.0,118.0,108.0,115.0,114.0,129.0,94.0,97.0,103.0,99.0,80.0,91.0,87.0,77.0,75.0,72.0,86.0,76.0,67.0,76.0,62.0,62.0,76.0,69.0,65.0,90.0,70.0,69.0,88.0,86.0,84.0,88.0,85.0,74.0,75.0,77.0,67.0,78.0,64.0,53.0,45.0,30.0,37.0,25.0,25.0,30.0,16.0,23.0,14.0,17.0,16.0,12.0,14.0,12.0,10.0,11.0,12.0,6.0,14.0,5.0,8.0,7.0,1.0,4.0,1.0,1.0,8.0 G85136,31.0,34.0,26.0,27.0,31.0,27.0,27.0,38.0,32.0,33.0,30.0,33.0,34.0,34.0,44.0,45.0,69.0,89.0,126.0,122.0,174.0,193.0,226.0,285.0,325.0,235.0,280.0,282.0,235.0,205.0,220.0,197.0,216.0,170.0,190.0,180.0,162.0,147.0,144.0,129.0,129.0,103.0,92.0,107.0,79.0,89.0,67.0,76.0,62.0,61.0,63.0,53.0,57.0,60.0,60.0,66.0,51.0,65.0,49.0,42.0,68.0,62.0,43.0,36.0,28.0,37.0,38.0,40.0,37.0,24.0,39.0,22.0,25.0,25.0,29.0,27.0,20.0,19.0,13.0,11.0,19.0,15.0,8.0,14.0,8.0,13.0,9.0,2.0,7.0,8.0,1.0,2.0,4.0,1.0,1.0,2.0 G85137,72.0,49.0,41.0,64.0,55.0,42.0,61.0,48.0,62.0,55.0,43.0,51.0,52.0,39.0,36.0,34.0,39.0,26.0,30.0,34.0,24.0,25.0,41.0,45.0,53.0,73.0,80.0,98.0,119.0,174.0,122.0,149.0,123.0,138.0,139.0,124.0,124.0,111.0,107.0,112.0,116.0,109.0,96.0,86.0,69.0,68.0,85.0,63.0,73.0,58.0,36.0,48.0,44.0,36.0,46.0,49.0,39.0,43.0,38.0,50.0,39.0,32.0,41.0,34.0,39.0,35.0,27.0,27.0,25.0,21.0,22.0,24.0,21.0,21.0,16.0,19.0,17.0,16.0,17.0,8.0,13.0,6.0,10.0,12.0,6.0,6.0,10.0,3.0,2.0,1.0,4.0,3.0,,1.0,,1.0 G85138,56.0,64.0,66.0,59.0,47.0,57.0,61.0,51.0,71.0,66.0,55.0,55.0,61.0,53.0,55.0,58.0,44.0,56.0,64.0,68.0,66.0,79.0,69.0,110.0,136.0,163.0,199.0,195.0,172.0,200.0,204.0,226.0,198.0,213.0,168.0,167.0,172.0,161.0,149.0,143.0,147.0,136.0,139.0,117.0,118.0,97.0,105.0,86.0,90.0,77.0,63.0,83.0,79.0,77.0,69.0,92.0,73.0,75.0,65.0,70.0,65.0,65.0,56.0,63.0,51.0,58.0,60.0,53.0,35.0,49.0,55.0,41.0,37.0,31.0,23.0,29.0,26.0,15.0,17.0,8.0,27.0,17.0,9.0,16.0,6.0,6.0,7.0,8.0,5.0,4.0,2.0,5.0,2.0,2.0,4.0,3.0 G85623,37.0,28.0,45.0,27.0,34.0,41.0,52.0,70.0,48.0,44.0,57.0,74.0,51.0,50.0,52.0,56.0,56.0,62.0,45.0,62.0,55.0,77.0,74.0,92.0,121.0,125.0,123.0,133.0,149.0,131.0,138.0,144.0,132.0,131.0,130.0,126.0,111.0,102.0,111.0,97.0,96.0,99.0,73.0,91.0,77.0,70.0,95.0,60.0,67.0,69.0,68.0,66.0,63.0,56.0,60.0,56.0,69.0,52.0,57.0,47.0,51.0,64.0,56.0,31.0,48.0,39.0,29.0,32.0,30.0,37.0,29.0,27.0,31.0,19.0,18.0,26.0,18.0,20.0,16.0,9.0,9.0,8.0,14.0,10.0,7.0,11.0,12.0,6.0,6.0,6.0,3.0,4.0,,3.0,2.0,2.0 G85632,35.0,52.0,38.0,40.0,39.0,30.0,33.0,50.0,48.0,40.0,41.0,45.0,62.0,48.0,40.0,40.0,49.0,44.0,33.0,44.0,42.0,60.0,63.0,77.0,120.0,122.0,115.0,147.0,144.0,112.0,144.0,117.0,114.0,136.0,124.0,91.0,120.0,71.0,67.0,87.0,98.0,93.0,70.0,64.0,63.0,77.0,60.0,56.0,50.0,52.0,41.0,52.0,59.0,53.0,60.0,51.0,54.0,45.0,51.0,33.0,44.0,46.0,42.0,37.0,39.0,29.0,29.0,39.0,25.0,13.0,11.0,17.0,19.0,10.0,13.0,11.0,13.0,12.0,22.0,8.0,10.0,6.0,9.0,9.0,9.0,3.0,6.0,4.0,3.0,2.0,2.0,2.0,4.0,4.0,, G85633,105.0,116.0,123.0,129.0,101.0,115.0,140.0,156.0,136.0,124.0,133.0,137.0,147.0,111.0,121.0,127.0,129.0,130.0,126.0,123.0,90.0,98.0,88.0,108.0,135.0,138.0,128.0,167.0,164.0,170.0,171.0,176.0,200.0,206.0,190.0,207.0,173.0,207.0,192.0,193.0,201.0,200.0,186.0,159.0,181.0,164.0,196.0,151.0,150.0,138.0,133.0,134.0,139.0,126.0,131.0,123.0,120.0,129.0,139.0,130.0,133.0,110.0,123.0,104.0,102.0,122.0,83.0,84.0,74.0,80.0,60.0,46.0,60.0,55.0,49.0,30.0,37.0,45.0,41.0,32.0,26.0,25.0,27.0,30.0,18.0,24.0,28.0,25.0,22.0,11.0,10.0,15.0,11.0,9.0,6.0,17.0 G85642,19.0,22.0,22.0,22.0,21.0,24.0,24.0,26.0,22.0,19.0,18.0,30.0,21.0,24.0,23.0,15.0,30.0,40.0,79.0,124.0,123.0,98.0,129.0,145.0,193.0,162.0,150.0,166.0,127.0,150.0,130.0,109.0,109.0,109.0,102.0,107.0,95.0,86.0,74.0,80.0,58.0,69.0,50.0,57.0,47.0,40.0,38.0,51.0,52.0,46.0,48.0,43.0,32.0,53.0,33.0,49.0,35.0,38.0,43.0,39.0,45.0,26.0,37.0,34.0,27.0,24.0,23.0,19.0,21.0,28.0,22.0,14.0,17.0,25.0,16.0,21.0,19.0,22.0,14.0,8.0,7.0,9.0,2.0,9.0,6.0,6.0,6.0,11.0,5.0,8.0,1.0,4.0,2.0,5.0,1.0,6.0 G85644,22.0,39.0,23.0,24.0,23.0,28.0,24.0,31.0,35.0,34.0,39.0,39.0,41.0,32.0,34.0,34.0,27.0,30.0,34.0,19.0,23.0,21.0,23.0,35.0,29.0,29.0,46.0,67.0,65.0,65.0,72.0,101.0,88.0,81.0,71.0,83.0,62.0,65.0,45.0,58.0,50.0,45.0,45.0,46.0,68.0,62.0,63.0,50.0,41.0,54.0,64.0,33.0,47.0,46.0,62.0,35.0,47.0,33.0,50.0,54.0,45.0,46.0,44.0,48.0,44.0,31.0,39.0,31.0,26.0,22.0,26.0,22.0,18.0,19.0,16.0,19.0,29.0,12.0,14.0,11.0,11.0,7.0,11.0,5.0,11.0,4.0,8.0,10.0,5.0,3.0,4.0,2.0,5.0,1.0,,7.0 G85647,38.0,30.0,21.0,27.0,41.0,28.0,36.0,49.0,29.0,38.0,53.0,37.0,61.0,37.0,58.0,43.0,48.0,56.0,24.0,38.0,24.0,36.0,40.0,47.0,54.0,50.0,61.0,67.0,66.0,67.0,78.0,59.0,75.0,69.0,69.0,85.0,82.0,69.0,58.0,58.0,66.0,75.0,62.0,78.0,73.0,68.0,62.0,49.0,76.0,79.0,60.0,73.0,57.0,45.0,42.0,57.0,59.0,40.0,35.0,43.0,39.0,45.0,35.0,26.0,24.0,26.0,28.0,22.0,24.0,19.0,30.0,30.0,12.0,23.0,14.0,7.0,12.0,16.0,23.0,18.0,11.0,8.0,7.0,8.0,9.0,5.0,6.0,11.0,6.0,3.0,2.0,4.0,4.0,6.0,4.0,1.0 G85651,13.0,21.0,15.0,22.0,19.0,24.0,29.0,30.0,33.0,39.0,49.0,52.0,51.0,61.0,69.0,50.0,54.0,57.0,45.0,38.0,23.0,29.0,20.0,25.0,32.0,42.0,36.0,32.0,42.0,54.0,52.0,64.0,51.0,50.0,54.0,43.0,31.0,48.0,43.0,42.0,38.0,47.0,68.0,59.0,67.0,56.0,67.0,77.0,68.0,76.0,79.0,72.0,72.0,70.0,68.0,58.0,55.0,41.0,44.0,56.0,48.0,49.0,37.0,37.0,26.0,33.0,21.0,28.0,23.0,21.0,21.0,13.0,14.0,15.0,17.0,8.0,16.0,22.0,9.0,15.0,8.0,12.0,8.0,8.0,7.0,7.0,8.0,6.0,2.0,6.0,3.0,2.0,3.0,2.0,1.0,7.0 G85662,22.0,17.0,23.0,17.0,23.0,23.0,23.0,30.0,25.0,27.0,39.0,22.0,25.0,22.0,28.0,35.0,38.0,34.0,36.0,27.0,40.0,41.0,42.0,65.0,72.0,91.0,88.0,95.0,77.0,93.0,80.0,86.0,66.0,68.0,73.0,67.0,65.0,56.0,63.0,45.0,55.0,49.0,60.0,45.0,60.0,48.0,56.0,58.0,53.0,45.0,45.0,36.0,42.0,44.0,49.0,40.0,37.0,52.0,52.0,51.0,47.0,54.0,52.0,45.0,36.0,39.0,34.0,30.0,34.0,30.0,22.0,32.0,33.0,23.0,20.0,19.0,13.0,14.0,23.0,18.0,14.0,6.0,13.0,11.0,7.0,9.0,5.0,15.0,5.0,6.0,6.0,12.0,7.0,1.0,2.0,8.0 G85673,18.0,24.0,25.0,25.0,23.0,30.0,26.0,33.0,32.0,36.0,41.0,39.0,32.0,37.0,42.0,52.0,53.0,45.0,52.0,30.0,38.0,51.0,51.0,57.0,55.0,96.0,97.0,106.0,90.0,85.0,83.0,75.0,70.0,73.0,63.0,70.0,65.0,60.0,54.0,54.0,68.0,62.0,48.0,52.0,40.0,53.0,46.0,47.0,37.0,55.0,45.0,35.0,44.0,44.0,49.0,42.0,41.0,35.0,35.0,35.0,32.0,31.0,32.0,31.0,23.0,24.0,25.0,13.0,15.0,19.0,17.0,8.0,9.0,14.0,11.0,8.0,12.0,12.0,2.0,4.0,8.0,3.0,7.0,4.0,2.0,6.0,5.0,6.0,2.0,2.0,2.0,,1.0,,,3.0 G85674,46.0,24.0,31.0,30.0,27.0,25.0,20.0,23.0,28.0,22.0,25.0,31.0,22.0,16.0,17.0,19.0,18.0,15.0,15.0,13.0,18.0,20.0,34.0,55.0,75.0,114.0,126.0,134.0,165.0,160.0,135.0,121.0,106.0,105.0,124.0,103.0,86.0,87.0,82.0,65.0,62.0,44.0,43.0,57.0,47.0,41.0,45.0,38.0,33.0,24.0,21.0,34.0,22.0,23.0,25.0,20.0,21.0,25.0,23.0,19.0,18.0,14.0,21.0,19.0,19.0,13.0,17.0,19.0,14.0,16.0,11.0,9.0,8.0,17.0,7.0,7.0,6.0,4.0,5.0,2.0,7.0,4.0,7.0,2.0,7.0,3.0,,2.0,1.0,3.0,,1.0,2.0,2.0,,2.0 G85681,13.0,15.0,13.0,27.0,21.0,35.0,29.0,27.0,32.0,27.0,29.0,27.0,33.0,24.0,36.0,24.0,36.0,24.0,28.0,28.0,21.0,21.0,16.0,31.0,28.0,31.0,39.0,37.0,33.0,41.0,45.0,54.0,57.0,50.0,50.0,43.0,55.0,41.0,38.0,46.0,38.0,37.0,44.0,33.0,41.0,35.0,47.0,30.0,30.0,35.0,37.0,29.0,38.0,29.0,31.0,25.0,32.0,41.0,23.0,23.0,27.0,31.0,27.0,22.0,20.0,26.0,19.0,18.0,21.0,13.0,9.0,21.0,17.0,12.0,17.0,9.0,9.0,10.0,14.0,12.0,5.0,6.0,6.0,5.0,4.0,5.0,5.0,3.0,5.0,2.0,6.0,1.0,1.0,3.0,1.0,4.0 G85685,50.0,44.0,36.0,39.0,42.0,58.0,55.0,56.0,52.0,52.0,38.0,55.0,56.0,39.0,60.0,46.0,58.0,41.0,43.0,51.0,43.0,49.0,33.0,49.0,60.0,63.0,77.0,63.0,88.0,96.0,106.0,101.0,111.0,95.0,114.0,94.0,111.0,100.0,97.0,86.0,86.0,80.0,82.0,79.0,68.0,78.0,81.0,48.0,63.0,55.0,61.0,65.0,45.0,45.0,56.0,48.0,61.0,68.0,56.0,56.0,61.0,59.0,58.0,54.0,43.0,44.0,40.0,46.0,50.0,36.0,24.0,31.0,30.0,25.0,24.0,26.0,23.0,20.0,26.0,22.0,13.0,12.0,14.0,12.0,12.0,18.0,15.0,8.0,13.0,12.0,8.0,9.0,2.0,4.0,2.0,6.0 G85690,37.0,38.0,21.0,34.0,31.0,19.0,31.0,46.0,33.0,40.0,37.0,31.0,27.0,56.0,33.0,40.0,31.0,31.0,37.0,39.0,36.0,45.0,50.0,73.0,72.0,81.0,91.0,109.0,113.0,117.0,95.0,90.0,84.0,86.0,66.0,76.0,72.0,73.0,56.0,48.0,49.0,61.0,55.0,52.0,59.0,41.0,37.0,45.0,43.0,39.0,52.0,31.0,29.0,37.0,51.0,49.0,43.0,42.0,29.0,33.0,43.0,42.0,40.0,33.0,35.0,25.0,30.0,24.0,16.0,14.0,15.0,13.0,11.0,12.0,8.0,9.0,6.0,10.0,10.0,10.0,7.0,8.0,10.0,7.0,3.0,10.0,8.0,6.0,1.0,2.0,,1.0,2.0,1.0,1.0,2.0 G85695,21.0,25.0,24.0,25.0,12.0,20.0,22.0,24.0,21.0,24.0,37.0,19.0,26.0,28.0,27.0,27.0,25.0,29.0,27.0,33.0,38.0,46.0,59.0,68.0,80.0,91.0,76.0,97.0,116.0,112.0,106.0,100.0,103.0,75.0,97.0,83.0,79.0,66.0,62.0,61.0,60.0,54.0,39.0,55.0,39.0,48.0,33.0,43.0,42.0,40.0,37.0,40.0,30.0,24.0,29.0,43.0,37.0,29.0,39.0,33.0,24.0,26.0,28.0,25.0,20.0,21.0,20.0,13.0,16.0,16.0,11.0,10.0,9.0,10.0,12.0,8.0,2.0,10.0,5.0,6.0,2.0,6.0,4.0,2.0,3.0,1.0,1.0,1.0,3.0,,1.0,1.0,1.0,1.0,,1.0 G85696,118.0,105.0,106.0,130.0,121.0,129.0,132.0,98.0,99.0,104.0,100.0,91.0,98.0,94.0,92.0,85.0,88.0,80.0,62.0,50.0,58.0,56.0,71.0,86.0,103.0,110.0,160.0,145.0,167.0,172.0,187.0,184.0,198.0,227.0,205.0,232.0,225.0,235.0,246.0,195.0,191.0,184.0,161.0,188.0,187.0,154.0,125.0,137.0,122.0,119.0,116.0,122.0,100.0,103.0,90.0,104.0,85.0,84.0,90.0,75.0,77.0,61.0,68.0,60.0,51.0,53.0,38.0,28.0,38.0,28.0,34.0,40.0,24.0,28.0,27.0,20.0,22.0,15.0,11.0,18.0,16.0,13.0,16.0,13.0,16.0,14.0,13.0,9.0,7.0,6.0,10.0,4.0,3.0,4.0,4.0,11.0 G85698,58.0,67.0,58.0,63.0,47.0,59.0,42.0,45.0,44.0,40.0,65.0,61.0,65.0,45.0,61.0,52.0,73.0,46.0,107.0,134.0,255.0,219.0,302.0,350.0,476.0,371.0,314.0,334.0,302.0,249.0,200.0,176.0,180.0,165.0,164.0,148.0,138.0,134.0,124.0,125.0,107.0,134.0,105.0,87.0,91.0,79.0,96.0,80.0,85.0,59.0,78.0,68.0,65.0,63.0,81.0,61.0,56.0,63.0,53.0,72.0,62.0,54.0,56.0,51.0,40.0,44.0,38.0,30.0,37.0,25.0,26.0,34.0,21.0,24.0,11.0,11.0,15.0,12.0,8.0,12.0,8.0,11.0,11.0,14.0,10.0,6.0,4.0,5.0,2.0,2.0,7.0,1.0,,3.0,2.0,3.0 G85705,30.0,20.0,23.0,15.0,14.0,10.0,20.0,13.0,11.0,16.0,7.0,17.0,15.0,10.0,14.0,14.0,12.0,8.0,13.0,10.0,24.0,34.0,67.0,82.0,124.0,134.0,150.0,119.0,168.0,148.0,146.0,126.0,132.0,124.0,101.0,112.0,85.0,72.0,77.0,76.0,61.0,53.0,52.0,67.0,43.0,40.0,40.0,39.0,37.0,38.0,27.0,36.0,38.0,25.0,44.0,33.0,26.0,37.0,32.0,31.0,30.0,26.0,19.0,19.0,12.0,16.0,17.0,26.0,19.0,19.0,16.0,14.0,13.0,7.0,10.0,9.0,14.0,5.0,12.0,7.0,11.0,6.0,5.0,7.0,6.0,3.0,3.0,5.0,2.0,1.0,2.0,,,1.0,,2.0 G85706,32.0,24.0,34.0,21.0,35.0,29.0,25.0,34.0,30.0,28.0,39.0,34.0,42.0,37.0,34.0,31.0,42.0,38.0,33.0,24.0,25.0,24.0,23.0,38.0,38.0,30.0,32.0,37.0,40.0,33.0,35.0,37.0,49.0,54.0,39.0,46.0,33.0,46.0,38.0,39.0,59.0,40.0,43.0,61.0,56.0,57.0,59.0,36.0,46.0,49.0,56.0,56.0,42.0,46.0,55.0,47.0,44.0,42.0,40.0,40.0,48.0,37.0,30.0,28.0,31.0,24.0,25.0,25.0,20.0,27.0,17.0,17.0,22.0,14.0,17.0,19.0,16.0,21.0,18.0,16.0,21.0,14.0,12.0,11.0,11.0,7.0,8.0,5.0,5.0,5.0,6.0,5.0,3.0,1.0,1.0,6.0 G85708,31.0,50.0,36.0,35.0,37.0,36.0,30.0,37.0,24.0,36.0,30.0,36.0,38.0,39.0,30.0,30.0,44.0,43.0,35.0,23.0,32.0,47.0,43.0,69.0,137.0,180.0,237.0,255.0,233.0,207.0,205.0,202.0,186.0,158.0,136.0,144.0,124.0,100.0,100.0,95.0,69.0,75.0,63.0,81.0,73.0,53.0,53.0,56.0,54.0,53.0,38.0,50.0,45.0,55.0,43.0,54.0,38.0,53.0,52.0,53.0,52.0,48.0,47.0,32.0,45.0,34.0,30.0,30.0,29.0,27.0,22.0,23.0,15.0,21.0,16.0,11.0,14.0,14.0,21.0,16.0,11.0,13.0,4.0,10.0,5.0,10.0,5.0,6.0,6.0,5.0,2.0,3.0,3.0,,,4.0 G85711,64.0,60.0,70.0,58.0,49.0,54.0,48.0,43.0,33.0,36.0,34.0,28.0,45.0,35.0,28.0,34.0,34.0,29.0,26.0,45.0,46.0,64.0,78.0,138.0,169.0,207.0,259.0,265.0,278.0,285.0,248.0,272.0,250.0,245.0,227.0,227.0,200.0,155.0,153.0,144.0,132.0,118.0,102.0,70.0,77.0,68.0,72.0,53.0,56.0,53.0,42.0,44.0,38.0,34.0,32.0,48.0,25.0,24.0,28.0,34.0,27.0,27.0,22.0,27.0,26.0,29.0,14.0,20.0,16.0,13.0,5.0,16.0,7.0,13.0,3.0,9.0,10.0,8.0,9.0,2.0,4.0,3.0,5.0,5.0,2.0,2.0,3.0,2.0,1.0,,1.0,1.0,1.0,,, G85715,41.0,51.0,60.0,48.0,54.0,48.0,37.0,69.0,60.0,49.0,62.0,73.0,64.0,64.0,70.0,72.0,70.0,66.0,64.0,68.0,75.0,61.0,103.0,78.0,97.0,92.0,125.0,140.0,115.0,124.0,137.0,147.0,127.0,136.0,109.0,126.0,120.0,113.0,103.0,104.0,81.0,84.0,59.0,95.0,79.0,70.0,79.0,63.0,70.0,76.0,64.0,54.0,66.0,67.0,62.0,60.0,58.0,72.0,50.0,71.0,70.0,58.0,51.0,40.0,55.0,53.0,39.0,44.0,31.0,26.0,28.0,21.0,23.0,24.0,19.0,15.0,24.0,15.0,12.0,20.0,11.0,8.0,6.0,9.0,9.0,10.0,8.0,4.0,10.0,2.0,1.0,4.0,2.0,2.0,1.0,3.0 G85716,46.0,41.0,37.0,53.0,49.0,33.0,45.0,45.0,43.0,40.0,50.0,36.0,43.0,50.0,49.0,54.0,47.0,44.0,52.0,39.0,29.0,27.0,41.0,43.0,37.0,43.0,44.0,55.0,50.0,49.0,47.0,46.0,55.0,60.0,63.0,61.0,59.0,60.0,74.0,76.0,65.0,66.0,68.0,55.0,56.0,41.0,45.0,38.0,48.0,51.0,54.0,50.0,31.0,39.0,49.0,34.0,32.0,39.0,33.0,41.0,39.0,42.0,40.0,36.0,30.0,23.0,23.0,22.0,23.0,19.0,15.0,15.0,10.0,14.0,10.0,11.0,10.0,10.0,8.0,9.0,6.0,9.0,10.0,8.0,5.0,2.0,2.0,5.0,8.0,4.0,3.0,1.0,2.0,,2.0,2.0 G85721,17.0,21.0,25.0,19.0,20.0,31.0,31.0,29.0,34.0,35.0,29.0,48.0,39.0,36.0,35.0,34.0,35.0,36.0,31.0,33.0,32.0,45.0,37.0,33.0,53.0,39.0,38.0,53.0,59.0,36.0,50.0,46.0,57.0,61.0,56.0,65.0,52.0,54.0,64.0,54.0,45.0,48.0,52.0,45.0,34.0,59.0,44.0,57.0,46.0,53.0,52.0,59.0,46.0,47.0,59.0,60.0,50.0,31.0,34.0,51.0,44.0,45.0,37.0,37.0,28.0,38.0,18.0,15.0,26.0,19.0,27.0,17.0,16.0,11.0,13.0,16.0,8.0,10.0,9.0,13.0,5.0,8.0,7.0,7.0,6.0,9.0,6.0,1.0,5.0,2.0,2.0,3.0,1.0,1.0,1.0,2.0 G85722,86.0,83.0,72.0,83.0,67.0,77.0,78.0,69.0,54.0,69.0,64.0,58.0,56.0,47.0,63.0,52.0,42.0,56.0,46.0,47.0,38.0,46.0,65.0,55.0,80.0,72.0,93.0,100.0,123.0,147.0,132.0,130.0,148.0,160.0,177.0,168.0,149.0,128.0,141.0,126.0,100.0,114.0,98.0,103.0,88.0,93.0,94.0,63.0,70.0,83.0,91.0,61.0,64.0,58.0,58.0,60.0,40.0,50.0,47.0,51.0,51.0,47.0,54.0,28.0,35.0,32.0,40.0,30.0,26.0,19.0,20.0,14.0,20.0,16.0,16.0,13.0,12.0,17.0,12.0,8.0,15.0,9.0,18.0,3.0,8.0,5.0,4.0,6.0,4.0,3.0,3.0,5.0,3.0,2.0,2.0,3.0 G85724,90.0,86.0,101.0,97.0,75.0,87.0,85.0,89.0,80.0,84.0,103.0,98.0,105.0,91.0,104.0,92.0,86.0,95.0,93.0,98.0,103.0,102.0,93.0,128.0,157.0,177.0,248.0,232.0,263.0,279.0,290.0,266.0,321.0,314.0,300.0,287.0,293.0,283.0,254.0,262.0,225.0,213.0,203.0,192.0,182.0,197.0,163.0,154.0,143.0,139.0,116.0,100.0,118.0,115.0,94.0,101.0,84.0,83.0,92.0,111.0,85.0,67.0,78.0,71.0,59.0,68.0,57.0,44.0,38.0,46.0,35.0,29.0,36.0,19.0,22.0,28.0,24.0,16.0,15.0,17.0,10.0,7.0,13.0,7.0,13.0,14.0,16.0,8.0,7.0,8.0,6.0,3.0,3.0,2.0,2.0, G85726,36.0,36.0,35.0,35.0,25.0,29.0,46.0,36.0,38.0,28.0,42.0,37.0,42.0,36.0,27.0,43.0,33.0,33.0,43.0,58.0,61.0,74.0,78.0,73.0,86.0,75.0,81.0,79.0,77.0,89.0,96.0,80.0,86.0,74.0,70.0,91.0,72.0,80.0,76.0,79.0,54.0,67.0,44.0,47.0,48.0,61.0,40.0,46.0,47.0,40.0,37.0,32.0,38.0,38.0,49.0,41.0,48.0,45.0,38.0,50.0,64.0,51.0,57.0,43.0,42.0,45.0,37.0,45.0,34.0,21.0,20.0,25.0,20.0,21.0,23.0,18.0,13.0,15.0,13.0,8.0,11.0,12.0,9.0,12.0,11.0,4.0,4.0,4.0,7.0,8.0,4.0,3.0,1.0,1.0,2.0, G85727,41.0,32.0,55.0,34.0,46.0,59.0,52.0,52.0,55.0,52.0,45.0,55.0,49.0,45.0,33.0,50.0,60.0,49.0,37.0,35.0,33.0,28.0,28.0,32.0,41.0,46.0,37.0,38.0,45.0,56.0,57.0,57.0,52.0,58.0,71.0,74.0,76.0,87.0,76.0,71.0,72.0,81.0,70.0,69.0,61.0,84.0,67.0,59.0,43.0,51.0,54.0,53.0,26.0,43.0,46.0,39.0,31.0,36.0,32.0,38.0,42.0,21.0,35.0,29.0,34.0,23.0,30.0,33.0,27.0,18.0,24.0,12.0,13.0,19.0,15.0,8.0,7.0,14.0,12.0,9.0,11.0,11.0,6.0,8.0,14.0,8.0,4.0,7.0,3.0,5.0,3.0,2.0,4.0,,4.0,2.0 G85736,12.0,25.0,22.0,16.0,19.0,22.0,22.0,26.0,20.0,21.0,16.0,18.0,26.0,26.0,23.0,16.0,34.0,38.0,21.0,16.0,28.0,22.0,21.0,23.0,35.0,36.0,35.0,40.0,40.0,36.0,29.0,40.0,43.0,29.0,33.0,54.0,34.0,48.0,40.0,36.0,31.0,31.0,33.0,26.0,31.0,30.0,29.0,37.0,35.0,21.0,20.0,25.0,31.0,34.0,16.0,27.0,28.0,26.0,15.0,15.0,23.0,18.0,17.0,18.0,16.0,13.0,11.0,15.0,10.0,7.0,10.0,2.0,7.0,11.0,9.0,9.0,6.0,2.0,10.0,6.0,2.0,5.0,,2.0,3.0,5.0,,3.0,3.0,3.0,1.0,1.0,1.0,3.0,3.0,3.0 Y00020,21.0,31.0,17.0,24.0,23.0,22.0,30.0,24.0,27.0,24.0,18.0,22.0,26.0,24.0,27.0,30.0,24.0,30.0,23.0,35.0,35.0,29.0,43.0,59.0,58.0,97.0,125.0,144.0,147.0,167.0,158.0,143.0,153.0,129.0,126.0,134.0,110.0,110.0,81.0,67.0,63.0,57.0,67.0,53.0,47.0,51.0,48.0,46.0,44.0,39.0,35.0,41.0,35.0,45.0,47.0,44.0,28.0,44.0,33.0,36.0,45.0,43.0,37.0,22.0,27.0,31.0,30.0,29.0,30.0,16.0,22.0,12.0,15.0,28.0,14.0,15.0,17.0,16.0,14.0,9.0,8.0,11.0,13.0,6.0,8.0,9.0,10.0,5.0,5.0,4.0,5.0,,1.0,4.0,1.0,3.0 Y02811,65.0,85.0,83.0,102.0,98.0,93.0,91.0,117.0,109.0,118.0,103.0,92.0,82.0,95.0,99.0,77.0,57.0,53.0,49.0,40.0,39.0,32.0,34.0,38.0,42.0,34.0,45.0,52.0,53.0,71.0,65.0,68.0,69.0,98.0,110.0,94.0,127.0,139.0,146.0,163.0,162.0,155.0,148.0,174.0,152.0,168.0,135.0,131.0,119.0,114.0,99.0,91.0,107.0,89.0,85.0,71.0,79.0,62.0,76.0,59.0,70.0,50.0,46.0,55.0,61.0,36.0,46.0,32.0,36.0,37.0,33.0,28.0,31.0,18.0,35.0,30.0,28.0,30.0,32.0,19.0,19.0,17.0,17.0,15.0,14.0,14.0,12.0,6.0,6.0,11.0,5.0,2.0,4.0,4.0,1.0,11.0 Y02974,82.0,80.0,84.0,87.0,79.0,106.0,88.0,91.0,108.0,104.0,108.0,87.0,102.0,81.0,101.0,83.0,80.0,89.0,76.0,60.0,57.0,63.0,59.0,82.0,78.0,111.0,117.0,131.0,122.0,125.0,127.0,140.0,139.0,135.0,99.0,135.0,128.0,134.0,132.0,143.0,133.0,116.0,135.0,105.0,105.0,123.0,112.0,97.0,108.0,90.0,87.0,69.0,77.0,54.0,74.0,56.0,55.0,42.0,42.0,44.0,40.0,40.0,41.0,22.0,26.0,24.0,27.0,11.0,13.0,26.0,23.0,10.0,27.0,12.0,11.0,7.0,14.0,8.0,7.0,9.0,4.0,5.0,5.0,5.0,2.0,3.0,1.0,3.0,3.0,2.0,2.0,,1.0,,,1.0 Y03063,16.0,22.0,25.0,18.0,24.0,20.0,18.0,29.0,38.0,24.0,27.0,20.0,35.0,36.0,28.0,32.0,32.0,29.0,32.0,23.0,28.0,42.0,42.0,54.0,92.0,91.0,100.0,118.0,134.0,107.0,120.0,112.0,122.0,95.0,111.0,86.0,105.0,89.0,80.0,97.0,59.0,61.0,63.0,59.0,55.0,48.0,61.0,46.0,51.0,49.0,46.0,51.0,45.0,34.0,36.0,43.0,40.0,48.0,33.0,42.0,31.0,31.0,26.0,34.0,28.0,30.0,12.0,18.0,20.0,21.0,12.0,9.0,13.0,13.0,9.0,12.0,7.0,9.0,4.0,8.0,10.0,3.0,4.0,8.0,7.0,4.0,6.0,3.0,3.0,3.0,2.0,2.0,,,,3.0 Y03755,76.0,84.0,80.0,72.0,75.0,71.0,60.0,58.0,94.0,72.0,68.0,45.0,50.0,59.0,62.0,48.0,42.0,50.0,48.0,77.0,73.0,76.0,88.0,132.0,167.0,172.0,218.0,208.0,232.0,252.0,205.0,230.0,208.0,228.0,214.0,191.0,183.0,178.0,178.0,177.0,149.0,127.0,130.0,114.0,83.0,79.0,69.0,77.0,75.0,62.0,64.0,71.0,61.0,56.0,45.0,49.0,52.0,49.0,43.0,40.0,41.0,51.0,34.0,34.0,38.0,30.0,28.0,40.0,24.0,31.0,21.0,26.0,26.0,36.0,27.0,14.0,22.0,19.0,21.0,27.0,25.0,20.0,19.0,21.0,32.0,16.0,16.0,10.0,23.0,25.0,14.0,14.0,12.0,11.0,11.0,33.0 Y06113,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,,,,,,1.0,,,,,1.0,,,,,1.0,,1.0,,2.0,1.0,1.0,,2.0,,1.0,2.0,1.0,1.0,5.0,1.0,2.0,3.0,5.0,6.0,5.0,5.0,6.0,14.0,8.0,13.0,8.0,13.0,15.0,9.0,13.0,16.0,18.0,10.0,16.0,15.0,11.0,4.0,10.0,7.0,23.0 Y06345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,,,,,,,,,,,,1.0,2.0,,2.0,1.0,4.0,2.0,3.0,2.0,6.0,2.0,3.0,6.0,,2.0,3.0,4.0,7.0,2.0,2.0,6.0,7.0,9.0,6.0,12.0,9.0,23.0,20.0,20.0,23.0,33.0,27.0,42.0,24.0,35.0,40.0,60.0,47.0,59.0,58.0,55.0,55.0,58.0,44.0,171.0 Y06545,,,,,,,,,,,,,,1.0,,,,,,1.0,,,1.0,1.0,1.0,,,1.0,,1.0,,1.0,1.0,3.0,,2.0,1.0,1.0,3.0,,,3.0,1.0,,3.0,,2.0,1.0,1.0,2.0,,1.0,1.0,1.0,2.0,1.0,,1.0,2.0,,,,2.0,,1.0,2.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, Y07020,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,1.0,,,,,1.0,1.0,,4.0,1.0,1.0,,1.0,,1.0,,,1.0,1.0,2.0,1.0,1.0,1.0,,4.0,,3.0,1.0,,3.0,2.0,3.0,,3.0,2.0,2.0,6.0,3.0,4.0,6.0,3.0,4.0,6.0,4.0,3.0,8.0,8.0,7.0,7.0,5.0,7.0,10.0,13.0,6.0,10.0,6.0,9.0,7.0,12.0,9.0,9.0,7.0,9.0,11.0,9.0,18.0 Y08411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,1.0,,,1.0,,,1.0,,1.0,1.0,1.0,,2.0,,1.0,1.0,,3.0,4.0,2.0,1.0,3.0,2.0,4.0,6.0,3.0,4.0,3.0,4.0,1.0,7.0,4.0,6.0,6.0,11.0,5.0,6.0,7.0,16.0,7.0,8.0,7.0,8.0,8.0,4.0,1.0,17.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 G82002,56.0,48.0,62.0,61.0,55.0,42.0,45.0,53.0,38.0,64.0,48.0,56.0,77.0,88.0,79.0,100.0,72.0,74.0,64.0,56.0,47.0,48.0,45.0,41.0,50.0,61.0,70.0,72.0,62.0,66.0,56.0,78.0,70.0,63.0,84.0,75.0,60.0,67.0,69.0,63.0,54.0,57.0,56.0,58.0,50.0,56.0,52.0,42.0,44.0,52.0,44.0,61.0,62.0,59.0,72.0,45.0,52.0,63.0,63.0,50.0,62.0,55.0,56.0,71.0,60.0,61.0,59.0,45.0,45.0,48.0,44.0,39.0,40.0,35.0,37.0,38.0,32.0,52.0,49.0,29.0,30.0,33.0,21.0,18.0,10.0,23.0,17.0,18.0,14.0,12.0,12.0,6.0,7.0,8.0,3.0,8.0 G82006,68.0,69.0,84.0,88.0,68.0,88.0,71.0,95.0,104.0,104.0,116.0,127.0,125.0,109.0,133.0,109.0,102.0,98.0,101.0,77.0,75.0,88.0,75.0,62.0,70.0,74.0,79.0,93.0,97.0,101.0,109.0,118.0,96.0,110.0,127.0,134.0,114.0,139.0,130.0,148.0,112.0,134.0,120.0,129.0,135.0,130.0,134.0,119.0,119.0,99.0,115.0,125.0,107.0,105.0,81.0,111.0,112.0,108.0,116.0,84.0,94.0,88.0,79.0,73.0,77.0,68.0,66.0,54.0,48.0,71.0,51.0,51.0,54.0,52.0,35.0,72.0,43.0,46.0,59.0,28.0,33.0,32.0,35.0,20.0,32.0,27.0,25.0,25.0,16.0,22.0,14.0,13.0,7.0,10.0,4.0,12.0 G82007,10.0,23.0,21.0,23.0,20.0,25.0,19.0,26.0,13.0,32.0,25.0,29.0,36.0,29.0,30.0,34.0,32.0,28.0,30.0,20.0,21.0,30.0,30.0,32.0,23.0,29.0,40.0,22.0,20.0,31.0,27.0,43.0,20.0,37.0,27.0,31.0,27.0,31.0,28.0,30.0,25.0,22.0,28.0,22.0,33.0,18.0,25.0,25.0,39.0,31.0,40.0,42.0,40.0,32.0,64.0,47.0,42.0,59.0,58.0,64.0,67.0,63.0,66.0,55.0,67.0,58.0,64.0,59.0,50.0,49.0,55.0,60.0,37.0,48.0,48.0,43.0,54.0,58.0,57.0,34.0,57.0,38.0,38.0,25.0,22.0,21.0,17.0,31.0,21.0,18.0,10.0,10.0,6.0,6.0,4.0,10.0 G82013,60.0,72.0,60.0,67.0,92.0,97.0,83.0,90.0,95.0,97.0,89.0,81.0,103.0,87.0,134.0,137.0,146.0,136.0,129.0,55.0,49.0,66.0,52.0,67.0,74.0,79.0,71.0,79.0,72.0,81.0,71.0,83.0,83.0,101.0,101.0,87.0,88.0,115.0,115.0,105.0,100.0,117.0,83.0,109.0,111.0,96.0,103.0,88.0,95.0,109.0,97.0,109.0,95.0,84.0,106.0,102.0,106.0,106.0,110.0,112.0,95.0,93.0,93.0,94.0,92.0,89.0,88.0,96.0,80.0,85.0,80.0,65.0,74.0,69.0,83.0,85.0,76.0,83.0,69.0,66.0,79.0,58.0,47.0,35.0,41.0,55.0,38.0,39.0,42.0,29.0,21.0,21.0,20.0,21.0,13.0,36.0 G82014,86.0,110.0,123.0,101.0,129.0,113.0,117.0,148.0,125.0,142.0,154.0,119.0,153.0,142.0,168.0,141.0,154.0,138.0,128.0,119.0,111.0,127.0,113.0,102.0,118.0,126.0,114.0,118.0,119.0,116.0,122.0,139.0,133.0,177.0,165.0,158.0,195.0,148.0,157.0,162.0,180.0,145.0,150.0,158.0,144.0,144.0,130.0,141.0,164.0,112.0,145.0,138.0,135.0,144.0,132.0,126.0,139.0,118.0,144.0,136.0,126.0,116.0,111.0,119.0,115.0,118.0,117.0,91.0,92.0,81.0,69.0,79.0,80.0,84.0,82.0,70.0,89.0,57.0,82.0,46.0,52.0,45.0,47.0,37.0,19.0,27.0,30.0,28.0,11.0,15.0,12.0,5.0,6.0,10.0,7.0,18.0 G82015,41.0,49.0,52.0,73.0,44.0,62.0,48.0,83.0,81.0,78.0,82.0,68.0,80.0,78.0,79.0,79.0,65.0,58.0,64.0,55.0,68.0,62.0,63.0,64.0,76.0,84.0,86.0,88.0,105.0,93.0,76.0,86.0,90.0,84.0,78.0,80.0,73.0,70.0,72.0,70.0,72.0,73.0,76.0,79.0,73.0,64.0,87.0,69.0,67.0,75.0,64.0,86.0,82.0,81.0,80.0,68.0,69.0,77.0,62.0,68.0,68.0,66.0,74.0,71.0,78.0,54.0,49.0,73.0,61.0,47.0,58.0,63.0,48.0,62.0,41.0,41.0,41.0,52.0,59.0,49.0,45.0,33.0,42.0,30.0,16.0,33.0,19.0,24.0,18.0,14.0,11.0,9.0,7.0,10.0,9.0,11.0 G82016,43.0,46.0,54.0,50.0,60.0,62.0,57.0,57.0,87.0,71.0,88.0,63.0,78.0,66.0,70.0,69.0,70.0,70.0,77.0,46.0,39.0,47.0,53.0,55.0,46.0,41.0,44.0,46.0,52.0,47.0,56.0,67.0,73.0,76.0,72.0,82.0,81.0,93.0,72.0,64.0,66.0,76.0,100.0,88.0,89.0,97.0,82.0,73.0,74.0,88.0,79.0,92.0,88.0,87.0,81.0,87.0,93.0,76.0,92.0,80.0,82.0,82.0,69.0,43.0,72.0,57.0,62.0,57.0,50.0,46.0,59.0,45.0,54.0,49.0,57.0,59.0,55.0,59.0,57.0,44.0,49.0,47.0,43.0,49.0,47.0,39.0,24.0,21.0,33.0,27.0,21.0,25.0,11.0,12.0,18.0,25.0 G82018,19.0,8.0,8.0,18.0,19.0,17.0,19.0,26.0,12.0,19.0,14.0,25.0,17.0,21.0,26.0,21.0,33.0,22.0,22.0,24.0,22.0,20.0,18.0,16.0,17.0,21.0,28.0,30.0,21.0,23.0,28.0,22.0,25.0,27.0,28.0,22.0,18.0,37.0,21.0,25.0,25.0,16.0,33.0,27.0,28.0,28.0,27.0,27.0,25.0,25.0,19.0,27.0,30.0,45.0,34.0,43.0,33.0,33.0,40.0,46.0,52.0,41.0,46.0,41.0,45.0,56.0,40.0,40.0,49.0,30.0,37.0,42.0,43.0,46.0,36.0,32.0,44.0,50.0,41.0,39.0,34.0,44.0,38.0,28.0,20.0,38.0,21.0,27.0,28.0,18.0,12.0,12.0,15.0,16.0,11.0,29.0 G82019,68.0,64.0,78.0,79.0,73.0,72.0,72.0,83.0,84.0,87.0,71.0,75.0,79.0,81.0,81.0,88.0,67.0,79.0,65.0,43.0,59.0,51.0,57.0,46.0,69.0,68.0,59.0,68.0,73.0,82.0,63.0,89.0,83.0,86.0,105.0,66.0,108.0,119.0,102.0,77.0,92.0,88.0,92.0,93.0,97.0,116.0,73.0,92.0,76.0,90.0,80.0,90.0,76.0,86.0,92.0,95.0,90.0,100.0,123.0,114.0,79.0,97.0,94.0,87.0,97.0,79.0,67.0,89.0,74.0,71.0,62.0,61.0,56.0,66.0,61.0,64.0,70.0,58.0,83.0,54.0,53.0,54.0,47.0,37.0,43.0,38.0,46.0,28.0,26.0,18.0,18.0,23.0,16.0,9.0,8.0,35.0 G82020,49.0,62.0,58.0,58.0,60.0,62.0,73.0,67.0,60.0,69.0,80.0,74.0,64.0,71.0,71.0,71.0,80.0,86.0,78.0,64.0,56.0,72.0,62.0,77.0,51.0,73.0,79.0,74.0,86.0,70.0,73.0,82.0,78.0,92.0,91.0,103.0,82.0,85.0,92.0,94.0,82.0,86.0,81.0,79.0,78.0,90.0,84.0,83.0,72.0,77.0,66.0,71.0,91.0,83.0,84.0,86.0,100.0,90.0,104.0,95.0,81.0,87.0,72.0,86.0,93.0,85.0,69.0,68.0,70.0,52.0,58.0,60.0,48.0,75.0,79.0,65.0,76.0,79.0,73.0,48.0,50.0,39.0,43.0,41.0,34.0,41.0,32.0,24.0,29.0,21.0,13.0,16.0,6.0,8.0,11.0,20.0 G82021,64.0,84.0,96.0,103.0,89.0,100.0,118.0,123.0,129.0,124.0,128.0,126.0,124.0,116.0,107.0,114.0,128.0,106.0,113.0,104.0,106.0,96.0,75.0,95.0,103.0,88.0,95.0,118.0,99.0,87.0,112.0,106.0,119.0,114.0,134.0,109.0,139.0,126.0,110.0,128.0,114.0,120.0,126.0,120.0,120.0,107.0,114.0,88.0,84.0,102.0,96.0,99.0,110.0,116.0,109.0,116.0,117.0,107.0,108.0,112.0,114.0,103.0,106.0,125.0,94.0,91.0,87.0,83.0,78.0,62.0,82.0,67.0,73.0,78.0,70.0,64.0,67.0,90.0,110.0,57.0,55.0,51.0,62.0,46.0,43.0,43.0,49.0,47.0,46.0,35.0,23.0,19.0,17.0,17.0,8.0,21.0 G82022,40.0,56.0,59.0,53.0,57.0,59.0,66.0,64.0,64.0,78.0,65.0,78.0,52.0,59.0,61.0,77.0,66.0,58.0,53.0,40.0,36.0,45.0,36.0,45.0,45.0,44.0,57.0,62.0,53.0,71.0,62.0,81.0,67.0,67.0,70.0,72.0,77.0,78.0,70.0,70.0,76.0,76.0,81.0,79.0,69.0,69.0,60.0,64.0,76.0,53.0,55.0,58.0,61.0,61.0,62.0,50.0,71.0,57.0,59.0,52.0,53.0,59.0,60.0,59.0,43.0,54.0,51.0,56.0,40.0,33.0,36.0,38.0,42.0,48.0,40.0,54.0,49.0,43.0,39.0,29.0,31.0,30.0,24.0,23.0,16.0,24.0,24.0,5.0,7.0,17.0,17.0,5.0,8.0,9.0,9.0,14.0 G82023,38.0,44.0,46.0,43.0,40.0,47.0,57.0,44.0,41.0,56.0,49.0,44.0,31.0,45.0,51.0,41.0,37.0,35.0,37.0,40.0,23.0,44.0,24.0,40.0,49.0,50.0,50.0,54.0,57.0,67.0,54.0,54.0,64.0,54.0,47.0,59.0,61.0,49.0,65.0,42.0,39.0,42.0,40.0,46.0,35.0,43.0,28.0,50.0,40.0,28.0,28.0,31.0,23.0,53.0,38.0,55.0,61.0,59.0,37.0,45.0,41.0,43.0,46.0,44.0,29.0,39.0,35.0,34.0,27.0,30.0,29.0,27.0,16.0,28.0,25.0,27.0,23.0,16.0,36.0,25.0,24.0,16.0,28.0,21.0,12.0,10.0,12.0,10.0,19.0,4.0,9.0,5.0,7.0,4.0,10.0,8.0 G82024,111.0,117.0,140.0,136.0,159.0,142.0,171.0,160.0,149.0,141.0,169.0,165.0,164.0,136.0,150.0,141.0,132.0,152.0,132.0,98.0,85.0,98.0,100.0,129.0,129.0,132.0,140.0,134.0,155.0,155.0,168.0,148.0,175.0,157.0,198.0,193.0,180.0,169.0,170.0,196.0,187.0,158.0,186.0,167.0,175.0,141.0,137.0,121.0,139.0,179.0,147.0,145.0,170.0,178.0,166.0,180.0,199.0,193.0,180.0,175.0,176.0,184.0,165.0,170.0,164.0,170.0,147.0,145.0,122.0,129.0,123.0,143.0,119.0,125.0,128.0,143.0,133.0,174.0,169.0,123.0,97.0,120.0,99.0,74.0,92.0,79.0,67.0,55.0,51.0,47.0,27.0,34.0,31.0,18.0,19.0,41.0 G82025,86.0,105.0,79.0,87.0,87.0,86.0,93.0,118.0,96.0,129.0,113.0,131.0,117.0,137.0,133.0,123.0,132.0,128.0,114.0,94.0,66.0,72.0,93.0,100.0,116.0,100.0,106.0,109.0,117.0,146.0,110.0,122.0,146.0,169.0,148.0,145.0,151.0,161.0,169.0,156.0,157.0,156.0,158.0,154.0,141.0,151.0,153.0,128.0,143.0,130.0,146.0,147.0,147.0,157.0,144.0,116.0,128.0,128.0,139.0,129.0,133.0,127.0,101.0,95.0,100.0,97.0,97.0,92.0,95.0,71.0,71.0,74.0,74.0,85.0,60.0,75.0,82.0,82.0,69.0,55.0,45.0,60.0,52.0,34.0,45.0,40.0,36.0,29.0,30.0,18.0,28.0,21.0,9.0,13.0,14.0,19.0 G82026,42.0,50.0,56.0,31.0,41.0,50.0,46.0,27.0,43.0,32.0,42.0,44.0,41.0,57.0,46.0,48.0,35.0,57.0,43.0,40.0,38.0,34.0,39.0,35.0,41.0,38.0,53.0,53.0,66.0,66.0,58.0,76.0,68.0,56.0,78.0,59.0,60.0,55.0,56.0,63.0,54.0,46.0,47.0,54.0,61.0,58.0,44.0,50.0,48.0,43.0,56.0,46.0,55.0,60.0,62.0,65.0,52.0,54.0,65.0,69.0,52.0,63.0,54.0,57.0,40.0,55.0,38.0,46.0,31.0,41.0,37.0,34.0,39.0,41.0,40.0,34.0,28.0,42.0,42.0,30.0,35.0,26.0,26.0,18.0,15.0,22.0,21.0,10.0,13.0,15.0,4.0,6.0,3.0,3.0,5.0,7.0 G82027,66.0,66.0,73.0,65.0,61.0,58.0,72.0,71.0,86.0,79.0,59.0,61.0,81.0,72.0,84.0,79.0,71.0,90.0,79.0,65.0,49.0,56.0,60.0,66.0,56.0,85.0,90.0,76.0,88.0,72.0,65.0,82.0,85.0,92.0,102.0,95.0,83.0,95.0,97.0,81.0,89.0,96.0,89.0,78.0,88.0,84.0,80.0,74.0,70.0,82.0,84.0,96.0,87.0,101.0,96.0,96.0,100.0,89.0,117.0,111.0,122.0,110.0,102.0,111.0,73.0,95.0,86.0,88.0,81.0,88.0,85.0,88.0,70.0,88.0,78.0,75.0,83.0,87.0,102.0,58.0,71.0,69.0,48.0,42.0,47.0,35.0,31.0,31.0,22.0,17.0,20.0,11.0,10.0,18.0,8.0,22.0 G82028,111.0,131.0,130.0,145.0,129.0,150.0,157.0,178.0,147.0,151.0,159.0,144.0,155.0,168.0,166.0,131.0,168.0,148.0,143.0,116.0,123.0,123.0,122.0,127.0,115.0,135.0,137.0,142.0,135.0,154.0,150.0,166.0,173.0,185.0,158.0,182.0,194.0,186.0,169.0,193.0,180.0,164.0,184.0,165.0,176.0,174.0,149.0,149.0,122.0,133.0,138.0,154.0,136.0,137.0,173.0,147.0,152.0,169.0,162.0,194.0,179.0,161.0,160.0,144.0,138.0,137.0,148.0,129.0,129.0,120.0,137.0,126.0,108.0,130.0,116.0,127.0,127.0,147.0,150.0,95.0,89.0,78.0,108.0,63.0,68.0,66.0,65.0,66.0,71.0,49.0,37.0,45.0,25.0,28.0,21.0,41.0 G82031,41.0,46.0,49.0,49.0,45.0,37.0,53.0,63.0,61.0,71.0,56.0,62.0,58.0,51.0,54.0,65.0,69.0,67.0,50.0,45.0,35.0,43.0,42.0,46.0,52.0,54.0,46.0,52.0,80.0,63.0,64.0,63.0,68.0,61.0,49.0,74.0,71.0,92.0,72.0,60.0,75.0,62.0,83.0,81.0,92.0,85.0,88.0,70.0,72.0,87.0,82.0,83.0,86.0,80.0,65.0,75.0,71.0,75.0,56.0,79.0,73.0,80.0,66.0,68.0,68.0,44.0,50.0,66.0,42.0,46.0,53.0,41.0,39.0,45.0,55.0,58.0,70.0,69.0,69.0,57.0,50.0,42.0,38.0,35.0,28.0,29.0,38.0,33.0,28.0,25.0,13.0,12.0,18.0,10.0,7.0,25.0 G82032,75.0,81.0,87.0,88.0,82.0,85.0,81.0,81.0,99.0,88.0,91.0,100.0,97.0,103.0,107.0,108.0,86.0,109.0,84.0,93.0,89.0,84.0,94.0,86.0,106.0,125.0,93.0,126.0,119.0,99.0,126.0,117.0,122.0,112.0,131.0,116.0,105.0,103.0,118.0,140.0,108.0,109.0,103.0,104.0,85.0,115.0,82.0,102.0,91.0,93.0,87.0,79.0,80.0,84.0,92.0,95.0,92.0,96.0,82.0,90.0,71.0,91.0,95.0,98.0,87.0,70.0,52.0,68.0,46.0,58.0,61.0,59.0,54.0,69.0,55.0,45.0,58.0,61.0,76.0,49.0,35.0,41.0,42.0,40.0,35.0,34.0,27.0,39.0,25.0,25.0,19.0,21.0,20.0,6.0,10.0,21.0 G82035,47.0,56.0,47.0,59.0,51.0,72.0,75.0,63.0,58.0,65.0,63.0,61.0,72.0,54.0,61.0,79.0,50.0,57.0,51.0,42.0,32.0,37.0,47.0,51.0,47.0,47.0,46.0,52.0,52.0,60.0,49.0,54.0,73.0,63.0,75.0,84.0,61.0,84.0,62.0,62.0,71.0,49.0,57.0,68.0,76.0,76.0,64.0,50.0,70.0,58.0,57.0,54.0,71.0,44.0,58.0,51.0,62.0,56.0,54.0,66.0,52.0,68.0,47.0,49.0,53.0,70.0,66.0,53.0,64.0,55.0,54.0,66.0,53.0,51.0,36.0,65.0,53.0,62.0,53.0,51.0,51.0,40.0,34.0,29.0,22.0,23.0,33.0,24.0,23.0,24.0,11.0,17.0,14.0,8.0,8.0,17.0 G82036,38.0,33.0,38.0,36.0,36.0,56.0,49.0,50.0,47.0,58.0,57.0,61.0,71.0,73.0,66.0,71.0,68.0,80.0,65.0,41.0,45.0,49.0,42.0,56.0,43.0,47.0,70.0,50.0,46.0,38.0,53.0,51.0,65.0,62.0,71.0,60.0,60.0,85.0,62.0,68.0,76.0,61.0,56.0,64.0,65.0,75.0,56.0,64.0,74.0,61.0,54.0,66.0,77.0,86.0,72.0,84.0,86.0,73.0,93.0,109.0,106.0,103.0,88.0,111.0,84.0,89.0,97.0,91.0,87.0,104.0,100.0,77.0,83.0,78.0,84.0,69.0,87.0,80.0,77.0,60.0,67.0,78.0,61.0,41.0,35.0,34.0,41.0,33.0,33.0,23.0,16.0,16.0,11.0,10.0,7.0,17.0 G82037,60.0,51.0,55.0,66.0,72.0,80.0,83.0,72.0,93.0,95.0,103.0,96.0,111.0,114.0,119.0,103.0,115.0,106.0,109.0,78.0,87.0,89.0,73.0,90.0,72.0,65.0,56.0,69.0,82.0,75.0,69.0,65.0,72.0,100.0,76.0,73.0,89.0,102.0,100.0,99.0,109.0,102.0,102.0,106.0,114.0,117.0,103.0,107.0,114.0,112.0,138.0,118.0,117.0,137.0,137.0,121.0,129.0,145.0,120.0,126.0,138.0,122.0,113.0,130.0,117.0,93.0,77.0,100.0,108.0,78.0,94.0,86.0,77.0,80.0,84.0,107.0,86.0,106.0,110.0,72.0,96.0,85.0,90.0,60.0,58.0,46.0,54.0,52.0,34.0,44.0,37.0,31.0,21.0,14.0,14.0,32.0 G82038,35.0,37.0,43.0,50.0,48.0,51.0,52.0,43.0,53.0,43.0,51.0,59.0,67.0,60.0,59.0,58.0,51.0,71.0,44.0,46.0,39.0,40.0,35.0,41.0,52.0,42.0,58.0,59.0,72.0,62.0,64.0,71.0,73.0,69.0,61.0,61.0,88.0,68.0,50.0,58.0,67.0,51.0,61.0,72.0,61.0,58.0,49.0,48.0,45.0,60.0,55.0,42.0,59.0,69.0,69.0,67.0,78.0,78.0,90.0,88.0,88.0,81.0,96.0,88.0,76.0,62.0,87.0,70.0,71.0,78.0,66.0,67.0,62.0,70.0,59.0,56.0,66.0,72.0,86.0,45.0,72.0,53.0,41.0,37.0,33.0,26.0,26.0,29.0,23.0,25.0,15.0,21.0,16.0,12.0,6.0,35.0 G82039,82.0,90.0,86.0,86.0,105.0,94.0,91.0,86.0,98.0,115.0,112.0,93.0,112.0,106.0,115.0,120.0,109.0,109.0,104.0,74.0,58.0,70.0,81.0,92.0,98.0,98.0,86.0,106.0,96.0,119.0,103.0,110.0,128.0,128.0,139.0,117.0,132.0,131.0,130.0,171.0,148.0,126.0,117.0,142.0,140.0,131.0,112.0,116.0,114.0,118.0,121.0,125.0,145.0,111.0,142.0,141.0,128.0,141.0,133.0,119.0,144.0,135.0,136.0,135.0,120.0,130.0,112.0,81.0,94.0,109.0,94.0,75.0,97.0,94.0,86.0,96.0,93.0,107.0,103.0,85.0,67.0,75.0,68.0,48.0,49.0,47.0,44.0,48.0,34.0,22.0,29.0,21.0,15.0,13.0,8.0,40.0 G82041,47.0,54.0,65.0,50.0,68.0,72.0,72.0,74.0,84.0,89.0,82.0,85.0,81.0,94.0,86.0,76.0,81.0,102.0,69.0,44.0,55.0,50.0,44.0,68.0,62.0,71.0,81.0,78.0,85.0,106.0,90.0,109.0,100.0,115.0,104.0,100.0,98.0,123.0,107.0,119.0,119.0,118.0,115.0,120.0,113.0,116.0,128.0,117.0,88.0,93.0,113.0,104.0,107.0,125.0,102.0,86.0,92.0,101.0,103.0,80.0,104.0,81.0,66.0,73.0,71.0,69.0,61.0,62.0,64.0,43.0,54.0,57.0,47.0,58.0,51.0,52.0,54.0,47.0,59.0,40.0,53.0,42.0,51.0,48.0,39.0,41.0,26.0,35.0,27.0,29.0,19.0,13.0,14.0,13.0,5.0,40.0 G82042,77.0,88.0,105.0,106.0,97.0,102.0,98.0,119.0,92.0,113.0,116.0,99.0,128.0,117.0,108.0,99.0,108.0,119.0,102.0,70.0,69.0,59.0,69.0,86.0,97.0,92.0,110.0,100.0,103.0,108.0,122.0,139.0,138.0,135.0,146.0,150.0,163.0,154.0,149.0,161.0,133.0,158.0,137.0,134.0,145.0,137.0,117.0,126.0,110.0,128.0,122.0,104.0,127.0,98.0,102.0,114.0,97.0,100.0,121.0,116.0,111.0,99.0,110.0,115.0,86.0,83.0,87.0,85.0,70.0,71.0,64.0,74.0,63.0,65.0,63.0,70.0,65.0,72.0,83.0,71.0,60.0,49.0,57.0,39.0,42.0,43.0,36.0,40.0,38.0,27.0,33.0,20.0,18.0,15.0,12.0,32.0 G82044,116.0,140.0,141.0,163.0,167.0,184.0,149.0,170.0,182.0,183.0,173.0,196.0,155.0,156.0,164.0,177.0,152.0,158.0,120.0,110.0,95.0,101.0,89.0,107.0,123.0,125.0,134.0,125.0,142.0,150.0,170.0,190.0,214.0,209.0,221.0,211.0,220.0,200.0,243.0,224.0,218.0,201.0,196.0,169.0,170.0,167.0,163.0,126.0,134.0,139.0,138.0,134.0,140.0,141.0,131.0,112.0,134.0,108.0,119.0,116.0,101.0,101.0,103.0,83.0,89.0,86.0,79.0,71.0,80.0,81.0,64.0,77.0,64.0,49.0,47.0,62.0,39.0,61.0,57.0,32.0,36.0,40.0,30.0,20.0,22.0,26.0,24.0,18.0,17.0,21.0,15.0,12.0,12.0,4.0,3.0,12.0 G82046,24.0,26.0,20.0,32.0,33.0,26.0,34.0,27.0,32.0,23.0,33.0,26.0,37.0,33.0,39.0,31.0,32.0,36.0,42.0,32.0,28.0,26.0,29.0,36.0,36.0,29.0,26.0,39.0,38.0,37.0,41.0,38.0,41.0,42.0,33.0,38.0,36.0,44.0,37.0,33.0,35.0,34.0,45.0,38.0,36.0,28.0,31.0,19.0,25.0,38.0,31.0,30.0,24.0,38.0,45.0,28.0,48.0,44.0,47.0,34.0,38.0,51.0,38.0,35.0,37.0,33.0,42.0,38.0,34.0,39.0,32.0,38.0,28.0,28.0,28.0,25.0,38.0,42.0,39.0,30.0,20.0,30.0,22.0,25.0,14.0,16.0,14.0,12.0,16.0,9.0,16.0,8.0,9.0,3.0,9.0,12.0 G82048,47.0,33.0,51.0,41.0,35.0,49.0,47.0,53.0,53.0,54.0,57.0,68.0,66.0,49.0,50.0,74.0,71.0,69.0,62.0,48.0,60.0,50.0,58.0,45.0,51.0,56.0,58.0,47.0,57.0,73.0,51.0,74.0,56.0,59.0,57.0,77.0,79.0,69.0,72.0,78.0,66.0,79.0,75.0,85.0,76.0,82.0,59.0,50.0,61.0,56.0,65.0,66.0,55.0,68.0,58.0,49.0,60.0,79.0,61.0,51.0,62.0,50.0,58.0,52.0,47.0,50.0,52.0,54.0,51.0,30.0,45.0,41.0,26.0,36.0,28.0,26.0,44.0,42.0,46.0,26.0,34.0,26.0,29.0,17.0,28.0,22.0,18.0,24.0,14.0,11.0,9.0,6.0,3.0,7.0,5.0,11.0 G82050,100.0,125.0,123.0,145.0,146.0,144.0,144.0,152.0,152.0,170.0,177.0,164.0,182.0,160.0,149.0,159.0,162.0,171.0,130.0,103.0,108.0,129.0,132.0,115.0,147.0,127.0,167.0,162.0,176.0,167.0,210.0,190.0,186.0,205.0,208.0,207.0,247.0,203.0,195.0,198.0,206.0,180.0,173.0,186.0,178.0,153.0,173.0,146.0,143.0,151.0,135.0,139.0,119.0,172.0,160.0,159.0,155.0,153.0,143.0,159.0,115.0,128.0,146.0,137.0,120.0,92.0,92.0,86.0,99.0,97.0,104.0,83.0,97.0,80.0,88.0,69.0,103.0,103.0,98.0,85.0,61.0,63.0,65.0,54.0,37.0,41.0,32.0,33.0,31.0,17.0,20.0,22.0,18.0,13.0,12.0,18.0 G82051,56.0,59.0,75.0,69.0,69.0,64.0,97.0,66.0,81.0,83.0,63.0,87.0,69.0,79.0,86.0,95.0,74.0,87.0,86.0,60.0,64.0,61.0,69.0,68.0,73.0,84.0,65.0,83.0,83.0,85.0,95.0,106.0,91.0,107.0,101.0,101.0,119.0,101.0,109.0,110.0,91.0,90.0,108.0,106.0,69.0,91.0,97.0,74.0,103.0,95.0,72.0,87.0,79.0,104.0,84.0,102.0,77.0,78.0,77.0,84.0,73.0,78.0,75.0,69.0,54.0,55.0,61.0,73.0,60.0,41.0,49.0,53.0,48.0,44.0,48.0,45.0,48.0,42.0,57.0,42.0,44.0,37.0,33.0,22.0,22.0,24.0,24.0,23.0,15.0,14.0,15.0,12.0,8.0,7.0,11.0,17.0 G82052,90.0,92.0,90.0,88.0,107.0,103.0,101.0,101.0,90.0,100.0,100.0,104.0,116.0,98.0,114.0,101.0,98.0,96.0,106.0,99.0,70.0,74.0,73.0,77.0,98.0,104.0,95.0,139.0,105.0,136.0,143.0,157.0,175.0,163.0,160.0,166.0,163.0,168.0,171.0,114.0,156.0,144.0,111.0,116.0,113.0,118.0,123.0,104.0,105.0,103.0,97.0,88.0,104.0,103.0,114.0,112.0,123.0,100.0,102.0,108.0,99.0,95.0,103.0,81.0,94.0,91.0,69.0,86.0,80.0,78.0,68.0,79.0,62.0,75.0,60.0,52.0,74.0,56.0,75.0,39.0,46.0,43.0,47.0,36.0,33.0,32.0,20.0,24.0,13.0,17.0,17.0,8.0,7.0,4.0,12.0,23.0 G82053,14.0,23.0,21.0,27.0,20.0,37.0,34.0,35.0,35.0,25.0,16.0,19.0,30.0,17.0,29.0,35.0,34.0,30.0,24.0,26.0,25.0,19.0,21.0,29.0,28.0,20.0,30.0,28.0,17.0,28.0,26.0,30.0,28.0,30.0,45.0,35.0,29.0,35.0,30.0,31.0,33.0,35.0,27.0,29.0,32.0,35.0,23.0,36.0,33.0,26.0,48.0,24.0,32.0,47.0,46.0,33.0,50.0,42.0,58.0,48.0,61.0,44.0,43.0,42.0,43.0,39.0,45.0,35.0,23.0,37.0,42.0,35.0,43.0,36.0,34.0,37.0,45.0,42.0,62.0,34.0,34.0,38.0,25.0,26.0,24.0,22.0,17.0,18.0,15.0,12.0,11.0,5.0,12.0,8.0,11.0,26.0 G82055,27.0,37.0,54.0,34.0,46.0,55.0,41.0,55.0,48.0,54.0,59.0,58.0,62.0,58.0,43.0,69.0,52.0,56.0,43.0,36.0,36.0,43.0,41.0,38.0,43.0,43.0,36.0,42.0,42.0,40.0,47.0,48.0,47.0,37.0,62.0,64.0,65.0,58.0,48.0,47.0,45.0,58.0,64.0,62.0,50.0,62.0,54.0,54.0,64.0,50.0,69.0,60.0,69.0,75.0,89.0,52.0,71.0,90.0,112.0,79.0,92.0,80.0,81.0,72.0,61.0,74.0,73.0,67.0,72.0,62.0,66.0,61.0,50.0,53.0,77.0,53.0,56.0,71.0,72.0,49.0,63.0,47.0,36.0,35.0,33.0,26.0,22.0,35.0,23.0,22.0,23.0,8.0,14.0,5.0,1.0,8.0 G82056,39.0,40.0,52.0,48.0,40.0,53.0,59.0,57.0,64.0,53.0,74.0,64.0,77.0,72.0,79.0,82.0,57.0,91.0,58.0,66.0,59.0,61.0,43.0,63.0,51.0,56.0,54.0,65.0,96.0,65.0,58.0,72.0,61.0,71.0,77.0,79.0,80.0,78.0,82.0,78.0,84.0,86.0,86.0,82.0,105.0,83.0,77.0,81.0,83.0,75.0,76.0,74.0,84.0,83.0,60.0,90.0,82.0,73.0,67.0,77.0,80.0,84.0,64.0,76.0,68.0,57.0,49.0,56.0,52.0,30.0,43.0,42.0,37.0,41.0,65.0,59.0,45.0,53.0,45.0,38.0,40.0,46.0,30.0,21.0,19.0,30.0,30.0,31.0,32.0,20.0,13.0,17.0,17.0,10.0,8.0,21.0 G82057,40.0,37.0,55.0,53.0,51.0,65.0,57.0,74.0,52.0,55.0,61.0,58.0,74.0,63.0,71.0,55.0,77.0,53.0,67.0,53.0,58.0,42.0,48.0,42.0,58.0,36.0,51.0,49.0,49.0,54.0,73.0,66.0,64.0,53.0,71.0,75.0,85.0,76.0,68.0,71.0,68.0,72.0,63.0,63.0,65.0,65.0,48.0,46.0,60.0,53.0,49.0,63.0,57.0,66.0,68.0,71.0,69.0,67.0,82.0,83.0,82.0,86.0,68.0,93.0,82.0,70.0,68.0,73.0,79.0,55.0,63.0,66.0,69.0,52.0,66.0,78.0,79.0,71.0,72.0,43.0,35.0,40.0,36.0,19.0,33.0,26.0,18.0,28.0,7.0,12.0,15.0,10.0,7.0,7.0,4.0,16.0 G82058,22.0,40.0,31.0,42.0,35.0,40.0,43.0,37.0,40.0,39.0,45.0,44.0,43.0,39.0,42.0,37.0,43.0,42.0,36.0,29.0,34.0,37.0,41.0,39.0,45.0,50.0,34.0,51.0,33.0,38.0,53.0,57.0,45.0,41.0,43.0,56.0,45.0,51.0,41.0,35.0,49.0,41.0,44.0,45.0,50.0,43.0,37.0,36.0,42.0,53.0,41.0,54.0,48.0,56.0,54.0,56.0,41.0,46.0,59.0,57.0,57.0,44.0,33.0,44.0,40.0,43.0,47.0,31.0,40.0,30.0,27.0,40.0,31.0,33.0,26.0,41.0,32.0,42.0,43.0,27.0,38.0,32.0,27.0,20.0,17.0,29.0,20.0,15.0,14.0,6.0,13.0,12.0,9.0,5.0,3.0,15.0 G82059,49.0,62.0,63.0,83.0,74.0,97.0,89.0,100.0,125.0,115.0,116.0,104.0,117.0,118.0,150.0,114.0,124.0,125.0,108.0,92.0,62.0,86.0,76.0,83.0,81.0,88.0,81.0,90.0,78.0,84.0,104.0,98.0,89.0,120.0,112.0,116.0,90.0,109.0,111.0,131.0,131.0,150.0,134.0,128.0,139.0,138.0,128.0,119.0,132.0,129.0,137.0,125.0,143.0,140.0,119.0,143.0,147.0,142.0,124.0,143.0,128.0,121.0,132.0,112.0,105.0,107.0,80.0,110.0,93.0,79.0,75.0,68.0,94.0,90.0,87.0,83.0,99.0,119.0,99.0,58.0,70.0,77.0,59.0,49.0,50.0,43.0,43.0,48.0,42.0,34.0,34.0,23.0,19.0,13.0,14.0,37.0 G82060,89.0,85.0,92.0,101.0,111.0,91.0,99.0,107.0,116.0,112.0,108.0,110.0,118.0,132.0,133.0,136.0,136.0,135.0,145.0,164.0,173.0,207.0,160.0,165.0,168.0,153.0,163.0,157.0,143.0,158.0,130.0,144.0,180.0,172.0,129.0,170.0,153.0,141.0,132.0,169.0,143.0,154.0,141.0,130.0,156.0,138.0,131.0,122.0,124.0,119.0,121.0,113.0,107.0,118.0,109.0,116.0,110.0,95.0,98.0,112.0,97.0,95.0,119.0,96.0,93.0,112.0,108.0,85.0,93.0,96.0,70.0,81.0,74.0,88.0,79.0,79.0,80.0,101.0,100.0,64.0,75.0,67.0,57.0,55.0,54.0,44.0,51.0,27.0,37.0,23.0,26.0,17.0,18.0,20.0,13.0,37.0 G82062,18.0,15.0,15.0,8.0,16.0,14.0,11.0,19.0,12.0,13.0,15.0,17.0,18.0,19.0,8.0,8.0,16.0,13.0,16.0,12.0,20.0,15.0,12.0,13.0,17.0,12.0,18.0,15.0,17.0,16.0,22.0,18.0,18.0,17.0,19.0,25.0,24.0,22.0,21.0,16.0,26.0,29.0,18.0,14.0,16.0,25.0,14.0,15.0,17.0,16.0,14.0,16.0,21.0,11.0,19.0,14.0,17.0,13.0,17.0,6.0,10.0,9.0,10.0,10.0,15.0,16.0,10.0,13.0,11.0,8.0,10.0,12.0,13.0,11.0,9.0,6.0,11.0,7.0,5.0,11.0,11.0,7.0,6.0,9.0,5.0,1.0,6.0,4.0,5.0,2.0,2.0,2.0,5.0,1.0,2.0,3.0 G82063,34.0,39.0,36.0,49.0,42.0,52.0,40.0,65.0,60.0,58.0,64.0,56.0,64.0,79.0,52.0,73.0,74.0,93.0,61.0,55.0,61.0,45.0,51.0,65.0,59.0,55.0,50.0,51.0,53.0,55.0,53.0,64.0,62.0,75.0,87.0,66.0,61.0,67.0,66.0,66.0,74.0,63.0,66.0,63.0,78.0,67.0,57.0,61.0,69.0,56.0,82.0,77.0,94.0,108.0,97.0,87.0,102.0,99.0,115.0,119.0,122.0,123.0,95.0,125.0,123.0,127.0,118.0,110.0,74.0,102.0,98.0,100.0,107.0,81.0,115.0,80.0,97.0,105.0,95.0,75.0,82.0,55.0,62.0,59.0,49.0,49.0,31.0,33.0,30.0,20.0,20.0,15.0,12.0,17.0,7.0,24.0 G82064,48.0,54.0,57.0,61.0,55.0,73.0,68.0,79.0,68.0,80.0,84.0,70.0,74.0,81.0,78.0,73.0,80.0,66.0,63.0,63.0,53.0,61.0,58.0,68.0,71.0,70.0,74.0,81.0,92.0,83.0,78.0,61.0,77.0,91.0,93.0,92.0,90.0,69.0,93.0,112.0,90.0,75.0,84.0,89.0,75.0,66.0,78.0,66.0,89.0,76.0,69.0,65.0,71.0,62.0,74.0,73.0,78.0,54.0,76.0,62.0,63.0,56.0,80.0,68.0,59.0,65.0,41.0,39.0,57.0,52.0,49.0,57.0,58.0,42.0,52.0,42.0,45.0,56.0,47.0,41.0,35.0,32.0,28.0,23.0,16.0,21.0,16.0,13.0,13.0,10.0,6.0,8.0,10.0,6.0,2.0,5.0 G82066,78.0,80.0,84.0,87.0,74.0,75.0,70.0,84.0,87.0,88.0,77.0,87.0,78.0,80.0,84.0,65.0,72.0,80.0,93.0,52.0,63.0,57.0,72.0,70.0,82.0,79.0,93.0,107.0,99.0,113.0,120.0,109.0,119.0,130.0,122.0,111.0,124.0,95.0,100.0,99.0,94.0,106.0,82.0,92.0,71.0,82.0,58.0,71.0,70.0,75.0,58.0,84.0,72.0,81.0,69.0,76.0,76.0,69.0,69.0,70.0,73.0,61.0,70.0,56.0,81.0,49.0,56.0,52.0,58.0,52.0,69.0,48.0,58.0,56.0,42.0,57.0,53.0,64.0,78.0,47.0,50.0,43.0,49.0,36.0,42.0,41.0,33.0,34.0,32.0,35.0,35.0,26.0,23.0,19.0,22.0,63.0 G82067,45.0,43.0,40.0,46.0,42.0,46.0,37.0,43.0,49.0,54.0,54.0,60.0,58.0,78.0,52.0,59.0,55.0,71.0,45.0,56.0,47.0,47.0,51.0,60.0,62.0,53.0,52.0,65.0,56.0,41.0,70.0,59.0,79.0,63.0,72.0,63.0,74.0,61.0,70.0,62.0,62.0,62.0,69.0,74.0,65.0,65.0,68.0,67.0,54.0,52.0,57.0,56.0,58.0,67.0,73.0,77.0,82.0,74.0,60.0,66.0,64.0,62.0,65.0,62.0,56.0,43.0,57.0,49.0,49.0,49.0,49.0,43.0,47.0,54.0,38.0,46.0,51.0,37.0,41.0,37.0,32.0,24.0,28.0,22.0,21.0,23.0,18.0,21.0,15.0,15.0,14.0,12.0,12.0,8.0,9.0,14.0 G82069,49.0,70.0,54.0,57.0,54.0,74.0,56.0,64.0,59.0,65.0,74.0,85.0,69.0,66.0,71.0,59.0,62.0,66.0,64.0,70.0,44.0,45.0,52.0,62.0,78.0,76.0,79.0,85.0,95.0,82.0,101.0,103.0,103.0,82.0,100.0,117.0,77.0,86.0,108.0,81.0,79.0,84.0,77.0,90.0,80.0,89.0,62.0,64.0,65.0,70.0,62.0,77.0,85.0,86.0,73.0,69.0,84.0,64.0,81.0,70.0,80.0,96.0,73.0,74.0,60.0,60.0,46.0,57.0,60.0,45.0,48.0,51.0,59.0,46.0,65.0,60.0,66.0,67.0,63.0,51.0,52.0,33.0,35.0,27.0,28.0,34.0,26.0,32.0,18.0,14.0,11.0,10.0,9.0,5.0,8.0,23.0 G82071,158.0,167.0,167.0,185.0,168.0,193.0,199.0,198.0,206.0,228.0,211.0,208.0,216.0,247.0,247.0,242.0,261.0,223.0,201.0,191.0,201.0,174.0,195.0,215.0,204.0,202.0,205.0,238.0,198.0,192.0,250.0,202.0,231.0,221.0,248.0,234.0,208.0,276.0,258.0,259.0,258.0,236.0,275.0,256.0,291.0,288.0,271.0,249.0,262.0,251.0,305.0,303.0,321.0,317.0,338.0,356.0,376.0,365.0,347.0,424.0,376.0,377.0,353.0,395.0,336.0,329.0,339.0,325.0,300.0,335.0,297.0,317.0,276.0,301.0,296.0,292.0,322.0,301.0,329.0,238.0,250.0,233.0,203.0,202.0,140.0,132.0,135.0,108.0,103.0,87.0,66.0,58.0,60.0,38.0,43.0,93.0 G82073,45.0,39.0,50.0,45.0,42.0,52.0,38.0,50.0,57.0,60.0,53.0,55.0,55.0,53.0,64.0,60.0,68.0,87.0,62.0,65.0,44.0,55.0,51.0,63.0,50.0,48.0,50.0,38.0,37.0,44.0,46.0,55.0,53.0,63.0,51.0,80.0,54.0,55.0,55.0,53.0,71.0,68.0,57.0,67.0,59.0,60.0,63.0,50.0,57.0,57.0,71.0,78.0,52.0,75.0,89.0,73.0,84.0,87.0,67.0,77.0,94.0,82.0,88.0,70.0,71.0,66.0,74.0,67.0,79.0,68.0,55.0,53.0,52.0,52.0,47.0,62.0,55.0,73.0,76.0,43.0,41.0,40.0,46.0,36.0,27.0,29.0,26.0,24.0,27.0,24.0,21.0,15.0,4.0,8.0,13.0,23.0 G82074,67.0,58.0,73.0,71.0,58.0,75.0,79.0,90.0,87.0,95.0,91.0,87.0,96.0,93.0,101.0,106.0,101.0,99.0,69.0,70.0,69.0,67.0,74.0,70.0,64.0,74.0,72.0,65.0,70.0,63.0,58.0,91.0,84.0,59.0,73.0,95.0,90.0,94.0,91.0,105.0,111.0,122.0,97.0,96.0,106.0,129.0,110.0,118.0,112.0,112.0,113.0,120.0,117.0,115.0,102.0,106.0,110.0,97.0,125.0,98.0,104.0,100.0,112.0,95.0,98.0,107.0,117.0,105.0,107.0,91.0,89.0,104.0,84.0,92.0,92.0,100.0,115.0,128.0,116.0,80.0,80.0,76.0,70.0,55.0,58.0,56.0,49.0,46.0,39.0,34.0,15.0,25.0,27.0,13.0,10.0,27.0 G82076,43.0,58.0,56.0,61.0,58.0,70.0,66.0,64.0,91.0,72.0,76.0,51.0,73.0,73.0,49.0,56.0,70.0,73.0,56.0,59.0,52.0,50.0,39.0,47.0,54.0,48.0,50.0,63.0,69.0,56.0,69.0,76.0,65.0,65.0,78.0,90.0,79.0,74.0,87.0,80.0,81.0,80.0,73.0,61.0,78.0,50.0,68.0,60.0,59.0,62.0,57.0,58.0,63.0,61.0,66.0,67.0,80.0,53.0,74.0,63.0,70.0,72.0,52.0,50.0,67.0,51.0,64.0,44.0,40.0,46.0,44.0,35.0,41.0,43.0,39.0,44.0,46.0,52.0,46.0,32.0,26.0,31.0,18.0,36.0,21.0,20.0,17.0,9.0,10.0,10.0,10.0,8.0,10.0,2.0,9.0,8.0 G82077,58.0,69.0,77.0,77.0,70.0,71.0,74.0,87.0,79.0,73.0,90.0,64.0,77.0,85.0,67.0,93.0,55.0,81.0,69.0,56.0,63.0,45.0,51.0,43.0,64.0,62.0,58.0,59.0,77.0,72.0,100.0,97.0,87.0,85.0,77.0,97.0,97.0,94.0,92.0,104.0,75.0,77.0,78.0,74.0,80.0,78.0,73.0,77.0,85.0,66.0,72.0,65.0,57.0,73.0,65.0,84.0,66.0,70.0,78.0,80.0,84.0,77.0,89.0,95.0,88.0,73.0,77.0,75.0,66.0,81.0,76.0,79.0,48.0,69.0,83.0,85.0,81.0,75.0,95.0,67.0,56.0,47.0,43.0,38.0,37.0,30.0,40.0,27.0,23.0,13.0,15.0,4.0,7.0,9.0,4.0,17.0 G82079,29.0,40.0,50.0,31.0,31.0,46.0,46.0,50.0,51.0,60.0,50.0,57.0,46.0,56.0,66.0,47.0,65.0,45.0,48.0,50.0,30.0,33.0,35.0,43.0,51.0,52.0,37.0,60.0,59.0,58.0,54.0,57.0,75.0,62.0,70.0,73.0,60.0,62.0,52.0,61.0,59.0,59.0,62.0,57.0,63.0,60.0,47.0,56.0,50.0,46.0,47.0,71.0,60.0,70.0,67.0,80.0,73.0,77.0,76.0,81.0,89.0,89.0,87.0,76.0,66.0,81.0,79.0,87.0,74.0,63.0,76.0,71.0,55.0,81.0,77.0,68.0,79.0,80.0,71.0,64.0,55.0,55.0,51.0,33.0,26.0,38.0,36.0,25.0,28.0,17.0,9.0,13.0,8.0,5.0,9.0,11.0 G82080,211.0,222.0,226.0,237.0,244.0,249.0,239.0,266.0,285.0,270.0,253.0,250.0,298.0,263.0,268.0,284.0,265.0,232.0,246.0,175.0,202.0,166.0,172.0,213.0,189.0,242.0,215.0,287.0,293.0,285.0,303.0,338.0,329.0,338.0,343.0,366.0,352.0,368.0,361.0,325.0,310.0,320.0,308.0,279.0,273.0,231.0,225.0,237.0,253.0,202.0,242.0,223.0,229.0,225.0,205.0,226.0,198.0,224.0,211.0,192.0,195.0,188.0,187.0,160.0,164.0,161.0,154.0,128.0,128.0,125.0,134.0,113.0,102.0,128.0,111.0,110.0,98.0,126.0,120.0,88.0,95.0,65.0,77.0,55.0,49.0,50.0,55.0,47.0,27.0,34.0,32.0,30.0,20.0,13.0,10.0,38.0 G82082,74.0,63.0,77.0,83.0,83.0,92.0,77.0,101.0,99.0,85.0,99.0,84.0,103.0,103.0,98.0,84.0,94.0,94.0,94.0,96.0,107.0,128.0,112.0,129.0,155.0,125.0,138.0,164.0,129.0,155.0,165.0,155.0,148.0,136.0,135.0,150.0,134.0,139.0,146.0,117.0,124.0,108.0,122.0,119.0,105.0,105.0,108.0,87.0,102.0,99.0,79.0,95.0,77.0,89.0,103.0,89.0,100.0,86.0,99.0,84.0,78.0,85.0,107.0,78.0,72.0,68.0,83.0,65.0,70.0,84.0,63.0,59.0,67.0,59.0,71.0,50.0,66.0,73.0,73.0,54.0,62.0,46.0,30.0,36.0,25.0,25.0,27.0,21.0,13.0,24.0,16.0,10.0,12.0,4.0,8.0,14.0 G82083,58.0,62.0,88.0,80.0,78.0,85.0,88.0,103.0,99.0,104.0,89.0,90.0,106.0,91.0,80.0,95.0,111.0,84.0,77.0,61.0,65.0,55.0,65.0,75.0,76.0,72.0,74.0,66.0,68.0,98.0,81.0,101.0,119.0,125.0,117.0,97.0,104.0,99.0,105.0,104.0,111.0,111.0,96.0,110.0,102.0,95.0,88.0,92.0,78.0,91.0,90.0,82.0,88.0,94.0,105.0,85.0,99.0,118.0,89.0,118.0,95.0,87.0,86.0,91.0,82.0,103.0,94.0,75.0,76.0,76.0,88.0,61.0,79.0,61.0,63.0,69.0,71.0,94.0,95.0,65.0,57.0,73.0,59.0,44.0,43.0,51.0,28.0,43.0,27.0,26.0,19.0,17.0,8.0,8.0,4.0,6.0 G82085,70.0,64.0,58.0,67.0,76.0,77.0,67.0,70.0,84.0,66.0,87.0,70.0,65.0,87.0,78.0,70.0,70.0,58.0,58.0,59.0,63.0,57.0,56.0,63.0,55.0,89.0,68.0,99.0,73.0,74.0,87.0,74.0,83.0,85.0,92.0,91.0,86.0,96.0,89.0,91.0,100.0,72.0,80.0,86.0,97.0,77.0,74.0,66.0,73.0,65.0,80.0,57.0,74.0,83.0,75.0,77.0,69.0,82.0,93.0,75.0,73.0,91.0,81.0,61.0,71.0,64.0,54.0,72.0,66.0,56.0,47.0,58.0,54.0,44.0,60.0,58.0,49.0,53.0,71.0,49.0,55.0,42.0,48.0,32.0,35.0,28.0,26.0,19.0,21.0,21.0,9.0,11.0,7.0,8.0,6.0,11.0 G82086,42.0,53.0,45.0,55.0,65.0,62.0,43.0,52.0,67.0,61.0,54.0,76.0,68.0,61.0,83.0,77.0,81.0,73.0,78.0,55.0,58.0,49.0,49.0,41.0,53.0,69.0,45.0,61.0,62.0,57.0,75.0,68.0,71.0,71.0,62.0,74.0,77.0,78.0,65.0,67.0,70.0,69.0,67.0,87.0,73.0,74.0,56.0,66.0,60.0,65.0,66.0,53.0,55.0,72.0,66.0,71.0,81.0,79.0,68.0,72.0,61.0,68.0,69.0,68.0,60.0,60.0,63.0,63.0,57.0,57.0,58.0,49.0,48.0,48.0,52.0,51.0,43.0,55.0,64.0,29.0,24.0,26.0,26.0,24.0,18.0,19.0,14.0,17.0,22.0,16.0,7.0,4.0,8.0,5.0,7.0,11.0 G82087,74.0,70.0,75.0,82.0,82.0,103.0,103.0,88.0,82.0,120.0,109.0,107.0,103.0,127.0,128.0,138.0,97.0,134.0,114.0,108.0,95.0,96.0,100.0,80.0,97.0,94.0,104.0,117.0,104.0,105.0,122.0,122.0,123.0,131.0,137.0,118.0,132.0,120.0,137.0,133.0,132.0,132.0,132.0,129.0,121.0,128.0,136.0,111.0,109.0,115.0,121.0,124.0,123.0,128.0,131.0,143.0,91.0,135.0,107.0,124.0,125.0,109.0,88.0,95.0,94.0,83.0,99.0,81.0,89.0,103.0,94.0,96.0,82.0,83.0,99.0,83.0,83.0,87.0,115.0,81.0,86.0,71.0,75.0,55.0,43.0,47.0,43.0,32.0,32.0,36.0,33.0,25.0,17.0,14.0,13.0,25.0 G82089,35.0,27.0,39.0,38.0,45.0,48.0,43.0,50.0,39.0,58.0,44.0,42.0,54.0,52.0,55.0,53.0,36.0,39.0,37.0,52.0,33.0,38.0,33.0,40.0,38.0,45.0,55.0,58.0,60.0,64.0,67.0,59.0,67.0,60.0,62.0,63.0,83.0,79.0,65.0,72.0,58.0,68.0,67.0,66.0,77.0,77.0,49.0,51.0,63.0,68.0,50.0,67.0,65.0,65.0,68.0,61.0,58.0,62.0,57.0,59.0,69.0,58.0,71.0,57.0,53.0,36.0,46.0,61.0,45.0,53.0,52.0,59.0,51.0,40.0,47.0,43.0,53.0,48.0,65.0,40.0,31.0,26.0,26.0,21.0,26.0,28.0,23.0,16.0,17.0,17.0,14.0,12.0,9.0,4.0,3.0,9.0 G82090,50.0,61.0,59.0,70.0,57.0,70.0,81.0,82.0,65.0,83.0,90.0,79.0,70.0,115.0,82.0,92.0,100.0,99.0,90.0,94.0,68.0,71.0,87.0,77.0,84.0,85.0,82.0,96.0,84.0,88.0,98.0,82.0,80.0,106.0,90.0,95.0,136.0,98.0,93.0,89.0,103.0,117.0,82.0,107.0,84.0,83.0,93.0,89.0,84.0,101.0,98.0,119.0,118.0,122.0,121.0,119.0,123.0,128.0,138.0,147.0,153.0,119.0,152.0,130.0,126.0,106.0,132.0,127.0,127.0,118.0,131.0,116.0,127.0,130.0,117.0,150.0,140.0,157.0,167.0,127.0,116.0,79.0,99.0,75.0,61.0,67.0,52.0,56.0,50.0,40.0,41.0,38.0,25.0,21.0,12.0,47.0 G82091,52.0,49.0,50.0,61.0,56.0,58.0,53.0,52.0,59.0,58.0,64.0,56.0,55.0,71.0,73.0,61.0,52.0,57.0,50.0,50.0,45.0,55.0,45.0,63.0,85.0,69.0,101.0,88.0,68.0,75.0,72.0,74.0,85.0,78.0,87.0,71.0,67.0,75.0,75.0,72.0,67.0,82.0,66.0,70.0,72.0,74.0,59.0,52.0,62.0,64.0,48.0,65.0,54.0,54.0,56.0,57.0,64.0,62.0,47.0,63.0,56.0,58.0,53.0,56.0,64.0,44.0,43.0,55.0,44.0,54.0,38.0,36.0,34.0,36.0,34.0,35.0,29.0,40.0,34.0,34.0,21.0,19.0,17.0,20.0,26.0,19.0,17.0,9.0,15.0,8.0,8.0,5.0,6.0,7.0,3.0,15.0 G82092,23.0,42.0,31.0,32.0,45.0,47.0,51.0,41.0,43.0,43.0,45.0,39.0,47.0,50.0,42.0,55.0,45.0,52.0,46.0,41.0,40.0,31.0,30.0,35.0,42.0,40.0,36.0,44.0,45.0,35.0,43.0,56.0,46.0,46.0,42.0,50.0,44.0,43.0,56.0,54.0,41.0,42.0,56.0,46.0,43.0,67.0,54.0,58.0,47.0,62.0,61.0,63.0,57.0,56.0,67.0,68.0,74.0,80.0,62.0,72.0,77.0,76.0,64.0,59.0,69.0,60.0,53.0,49.0,46.0,56.0,52.0,49.0,58.0,35.0,51.0,43.0,41.0,55.0,41.0,45.0,38.0,35.0,38.0,34.0,32.0,20.0,24.0,18.0,22.0,17.0,13.0,11.0,6.0,10.0,8.0,17.0 G82093,50.0,38.0,60.0,55.0,57.0,61.0,68.0,62.0,58.0,52.0,65.0,53.0,56.0,63.0,62.0,47.0,61.0,47.0,44.0,43.0,45.0,41.0,38.0,36.0,42.0,43.0,48.0,46.0,47.0,28.0,45.0,49.0,75.0,71.0,48.0,66.0,65.0,71.0,65.0,61.0,68.0,57.0,54.0,57.0,65.0,65.0,48.0,60.0,58.0,51.0,55.0,52.0,56.0,60.0,84.0,77.0,82.0,69.0,87.0,77.0,93.0,85.0,77.0,79.0,95.0,53.0,73.0,75.0,68.0,75.0,68.0,50.0,59.0,62.0,53.0,63.0,71.0,81.0,75.0,45.0,53.0,54.0,35.0,34.0,29.0,26.0,29.0,24.0,22.0,16.0,9.0,11.0,10.0,6.0,7.0,19.0 G82094,36.0,50.0,45.0,43.0,44.0,48.0,45.0,64.0,60.0,64.0,61.0,53.0,65.0,71.0,49.0,58.0,71.0,66.0,64.0,51.0,51.0,45.0,60.0,67.0,66.0,52.0,55.0,55.0,56.0,45.0,54.0,71.0,83.0,62.0,77.0,52.0,72.0,53.0,68.0,67.0,56.0,57.0,56.0,76.0,74.0,81.0,69.0,66.0,79.0,80.0,68.0,73.0,93.0,86.0,85.0,91.0,96.0,92.0,97.0,102.0,107.0,75.0,86.0,80.0,81.0,89.0,67.0,78.0,74.0,64.0,59.0,64.0,66.0,60.0,57.0,58.0,66.0,64.0,69.0,44.0,55.0,46.0,35.0,31.0,31.0,23.0,21.0,20.0,25.0,12.0,9.0,10.0,5.0,10.0,6.0,17.0 G82095,38.0,48.0,54.0,40.0,60.0,54.0,60.0,52.0,67.0,80.0,56.0,57.0,79.0,75.0,68.0,96.0,96.0,120.0,102.0,91.0,78.0,70.0,65.0,64.0,74.0,76.0,69.0,54.0,67.0,64.0,73.0,74.0,76.0,64.0,83.0,70.0,91.0,90.0,90.0,85.0,93.0,97.0,86.0,67.0,89.0,91.0,92.0,83.0,93.0,74.0,81.0,88.0,80.0,83.0,100.0,79.0,79.0,87.0,94.0,95.0,92.0,84.0,90.0,80.0,67.0,69.0,63.0,63.0,61.0,64.0,62.0,60.0,33.0,53.0,39.0,50.0,56.0,55.0,69.0,49.0,48.0,41.0,35.0,34.0,25.0,23.0,25.0,28.0,25.0,21.0,12.0,16.0,13.0,6.0,10.0,17.0 G82097,74.0,65.0,57.0,66.0,79.0,81.0,85.0,90.0,81.0,94.0,91.0,81.0,98.0,89.0,92.0,93.0,88.0,88.0,86.0,71.0,60.0,66.0,66.0,60.0,65.0,77.0,62.0,80.0,72.0,67.0,82.0,64.0,72.0,100.0,78.0,102.0,91.0,89.0,98.0,118.0,109.0,92.0,102.0,114.0,103.0,88.0,86.0,76.0,76.0,87.0,75.0,88.0,93.0,105.0,101.0,86.0,86.0,104.0,112.0,122.0,117.0,103.0,120.0,120.0,102.0,107.0,103.0,93.0,97.0,89.0,102.0,113.0,99.0,103.0,100.0,104.0,117.0,119.0,114.0,103.0,92.0,87.0,89.0,64.0,45.0,45.0,45.0,70.0,55.0,32.0,27.0,36.0,23.0,19.0,16.0,37.0 G82098,35.0,39.0,37.0,36.0,43.0,35.0,54.0,49.0,55.0,50.0,45.0,44.0,64.0,63.0,48.0,59.0,49.0,55.0,57.0,42.0,40.0,40.0,36.0,39.0,49.0,40.0,43.0,39.0,58.0,58.0,66.0,55.0,56.0,61.0,56.0,61.0,74.0,67.0,62.0,66.0,56.0,57.0,61.0,71.0,55.0,58.0,51.0,54.0,45.0,70.0,64.0,62.0,77.0,68.0,62.0,50.0,58.0,53.0,60.0,66.0,56.0,46.0,50.0,30.0,55.0,37.0,41.0,40.0,29.0,43.0,44.0,40.0,49.0,36.0,37.0,43.0,35.0,37.0,50.0,31.0,32.0,29.0,21.0,23.0,35.0,27.0,15.0,15.0,22.0,17.0,7.0,7.0,2.0,8.0,7.0,15.0 G82099,180.0,196.0,175.0,207.0,195.0,183.0,210.0,211.0,192.0,198.0,208.0,219.0,205.0,212.0,235.0,198.0,200.0,191.0,157.0,151.0,129.0,151.0,145.0,175.0,196.0,244.0,252.0,282.0,294.0,282.0,275.0,295.0,308.0,267.0,269.0,328.0,320.0,289.0,294.0,290.0,264.0,230.0,279.0,228.0,248.0,246.0,208.0,228.0,211.0,177.0,162.0,217.0,207.0,182.0,187.0,163.0,161.0,175.0,144.0,160.0,172.0,155.0,174.0,167.0,133.0,124.0,128.0,118.0,115.0,99.0,106.0,118.0,96.0,122.0,111.0,108.0,116.0,115.0,133.0,75.0,79.0,74.0,78.0,53.0,52.0,61.0,60.0,53.0,52.0,46.0,39.0,33.0,21.0,24.0,17.0,37.0 G82100,67.0,53.0,67.0,76.0,64.0,85.0,120.0,78.0,92.0,107.0,93.0,93.0,90.0,98.0,98.0,78.0,101.0,70.0,82.0,63.0,73.0,69.0,68.0,66.0,78.0,57.0,73.0,74.0,76.0,76.0,84.0,75.0,76.0,85.0,98.0,101.0,110.0,117.0,117.0,95.0,97.0,103.0,117.0,99.0,108.0,116.0,111.0,85.0,98.0,103.0,82.0,90.0,89.0,129.0,129.0,94.0,128.0,107.0,81.0,102.0,94.0,125.0,108.0,117.0,102.0,94.0,98.0,80.0,75.0,80.0,87.0,100.0,108.0,66.0,71.0,70.0,93.0,100.0,117.0,65.0,64.0,56.0,44.0,50.0,37.0,36.0,30.0,32.0,22.0,25.0,9.0,13.0,14.0,6.0,9.0,14.0 G82105,66.0,72.0,78.0,94.0,121.0,102.0,104.0,103.0,113.0,116.0,108.0,113.0,105.0,118.0,126.0,120.0,107.0,111.0,112.0,84.0,85.0,76.0,88.0,78.0,88.0,84.0,101.0,102.0,115.0,118.0,114.0,112.0,139.0,132.0,152.0,132.0,156.0,144.0,167.0,133.0,145.0,135.0,146.0,132.0,114.0,123.0,110.0,92.0,104.0,104.0,104.0,101.0,103.0,112.0,123.0,108.0,130.0,131.0,102.0,108.0,127.0,129.0,119.0,121.0,115.0,121.0,99.0,115.0,105.0,108.0,108.0,111.0,106.0,92.0,82.0,109.0,92.0,119.0,110.0,72.0,70.0,82.0,72.0,55.0,40.0,38.0,57.0,35.0,46.0,38.0,31.0,23.0,15.0,18.0,7.0,35.0 G82106,38.0,58.0,33.0,37.0,41.0,64.0,50.0,53.0,48.0,52.0,59.0,53.0,52.0,44.0,34.0,46.0,31.0,34.0,35.0,34.0,23.0,32.0,27.0,34.0,26.0,32.0,44.0,39.0,42.0,40.0,44.0,61.0,40.0,54.0,58.0,66.0,62.0,71.0,57.0,53.0,63.0,53.0,43.0,55.0,53.0,56.0,50.0,45.0,46.0,51.0,51.0,43.0,55.0,46.0,50.0,67.0,45.0,37.0,62.0,51.0,43.0,55.0,57.0,42.0,43.0,34.0,30.0,30.0,36.0,33.0,22.0,30.0,25.0,30.0,38.0,26.0,26.0,40.0,38.0,25.0,22.0,19.0,17.0,20.0,10.0,16.0,8.0,14.0,4.0,4.0,6.0,,1.0,1.0,3.0,2.0 G82107,29.0,37.0,33.0,40.0,49.0,38.0,36.0,53.0,43.0,42.0,49.0,47.0,47.0,50.0,33.0,57.0,42.0,46.0,37.0,44.0,45.0,41.0,35.0,38.0,30.0,33.0,38.0,45.0,41.0,28.0,40.0,38.0,47.0,53.0,57.0,50.0,55.0,53.0,54.0,52.0,54.0,58.0,44.0,56.0,69.0,43.0,47.0,46.0,51.0,50.0,58.0,59.0,85.0,49.0,64.0,68.0,69.0,65.0,67.0,78.0,68.0,69.0,100.0,70.0,73.0,70.0,78.0,78.0,65.0,73.0,68.0,67.0,60.0,49.0,68.0,70.0,70.0,70.0,88.0,61.0,49.0,50.0,37.0,30.0,23.0,29.0,19.0,27.0,24.0,19.0,12.0,14.0,13.0,5.0,6.0,12.0 G82108,28.0,27.0,35.0,33.0,35.0,32.0,37.0,33.0,35.0,45.0,43.0,52.0,46.0,34.0,32.0,38.0,37.0,42.0,51.0,33.0,35.0,38.0,42.0,30.0,32.0,39.0,42.0,55.0,32.0,36.0,43.0,42.0,43.0,34.0,39.0,50.0,67.0,55.0,42.0,47.0,41.0,42.0,39.0,43.0,50.0,48.0,44.0,31.0,47.0,37.0,29.0,33.0,25.0,45.0,47.0,37.0,48.0,36.0,40.0,37.0,48.0,38.0,41.0,31.0,32.0,40.0,31.0,38.0,28.0,36.0,31.0,30.0,34.0,33.0,36.0,24.0,33.0,32.0,31.0,25.0,20.0,17.0,27.0,16.0,16.0,17.0,12.0,18.0,9.0,1.0,1.0,5.0,5.0,5.0,2.0,7.0 G82110,27.0,27.0,34.0,45.0,36.0,42.0,34.0,53.0,49.0,54.0,46.0,48.0,61.0,45.0,61.0,56.0,55.0,45.0,47.0,33.0,25.0,31.0,32.0,38.0,25.0,31.0,35.0,36.0,29.0,35.0,40.0,39.0,39.0,44.0,35.0,51.0,45.0,52.0,48.0,53.0,53.0,51.0,57.0,54.0,67.0,53.0,60.0,58.0,58.0,49.0,55.0,61.0,60.0,70.0,49.0,48.0,58.0,55.0,34.0,50.0,47.0,38.0,46.0,37.0,37.0,20.0,41.0,42.0,30.0,19.0,28.0,26.0,31.0,32.0,28.0,20.0,19.0,20.0,30.0,19.0,21.0,31.0,26.0,15.0,17.0,14.0,27.0,15.0,22.0,15.0,10.0,11.0,9.0,10.0,9.0,33.0 G82111,24.0,36.0,33.0,44.0,34.0,36.0,45.0,35.0,55.0,41.0,44.0,36.0,55.0,59.0,56.0,52.0,52.0,58.0,49.0,50.0,54.0,32.0,46.0,35.0,39.0,39.0,43.0,52.0,45.0,53.0,46.0,53.0,49.0,60.0,65.0,66.0,72.0,69.0,42.0,49.0,52.0,47.0,59.0,55.0,60.0,67.0,65.0,59.0,63.0,67.0,62.0,64.0,72.0,63.0,92.0,90.0,92.0,83.0,102.0,92.0,106.0,107.0,100.0,92.0,107.0,104.0,97.0,82.0,73.0,92.0,75.0,100.0,98.0,79.0,86.0,94.0,92.0,105.0,97.0,89.0,84.0,76.0,61.0,53.0,46.0,46.0,35.0,30.0,28.0,31.0,23.0,16.0,21.0,16.0,11.0,31.0 G82113,28.0,33.0,41.0,43.0,46.0,44.0,43.0,39.0,41.0,49.0,47.0,62.0,47.0,55.0,57.0,47.0,48.0,53.0,52.0,45.0,35.0,42.0,48.0,41.0,35.0,36.0,40.0,40.0,45.0,40.0,49.0,50.0,54.0,50.0,75.0,61.0,68.0,49.0,57.0,76.0,60.0,49.0,49.0,54.0,67.0,53.0,45.0,45.0,56.0,48.0,55.0,57.0,47.0,55.0,60.0,51.0,51.0,62.0,63.0,54.0,48.0,58.0,61.0,55.0,55.0,46.0,36.0,43.0,43.0,36.0,41.0,32.0,39.0,27.0,32.0,32.0,38.0,34.0,31.0,31.0,24.0,34.0,14.0,23.0,14.0,22.0,13.0,4.0,9.0,5.0,13.0,7.0,3.0,4.0,2.0,3.0 G82114,39.0,58.0,46.0,63.0,56.0,61.0,58.0,74.0,72.0,65.0,77.0,65.0,68.0,87.0,89.0,91.0,69.0,72.0,68.0,52.0,62.0,62.0,63.0,62.0,73.0,71.0,64.0,66.0,83.0,66.0,69.0,70.0,73.0,60.0,101.0,83.0,83.0,67.0,81.0,70.0,76.0,77.0,78.0,72.0,83.0,57.0,76.0,59.0,65.0,79.0,79.0,88.0,86.0,112.0,120.0,114.0,117.0,129.0,123.0,128.0,149.0,138.0,136.0,143.0,97.0,127.0,120.0,131.0,126.0,118.0,129.0,107.0,96.0,109.0,116.0,124.0,139.0,158.0,153.0,98.0,137.0,131.0,98.0,81.0,79.0,73.0,67.0,64.0,54.0,48.0,41.0,27.0,19.0,18.0,17.0,29.0 G82115,31.0,34.0,40.0,48.0,49.0,44.0,47.0,42.0,60.0,56.0,48.0,47.0,50.0,53.0,55.0,51.0,60.0,50.0,52.0,54.0,73.0,71.0,89.0,87.0,87.0,79.0,83.0,77.0,75.0,67.0,73.0,69.0,74.0,84.0,74.0,61.0,71.0,66.0,57.0,63.0,68.0,67.0,71.0,67.0,49.0,82.0,60.0,65.0,56.0,69.0,65.0,62.0,67.0,65.0,56.0,62.0,49.0,49.0,49.0,61.0,60.0,57.0,61.0,60.0,54.0,55.0,63.0,49.0,53.0,62.0,61.0,49.0,54.0,41.0,64.0,56.0,49.0,47.0,57.0,50.0,70.0,41.0,27.0,32.0,25.0,33.0,24.0,34.0,18.0,13.0,14.0,10.0,9.0,15.0,4.0,34.0 G82117,31.0,46.0,64.0,58.0,48.0,54.0,66.0,52.0,57.0,58.0,56.0,56.0,54.0,60.0,61.0,63.0,68.0,65.0,54.0,42.0,36.0,55.0,34.0,45.0,55.0,70.0,50.0,62.0,60.0,75.0,77.0,78.0,70.0,62.0,68.0,67.0,62.0,69.0,75.0,62.0,64.0,74.0,61.0,66.0,59.0,53.0,63.0,44.0,40.0,65.0,58.0,50.0,68.0,56.0,70.0,42.0,50.0,58.0,51.0,70.0,49.0,51.0,58.0,40.0,63.0,43.0,56.0,41.0,50.0,51.0,46.0,50.0,47.0,44.0,42.0,43.0,47.0,58.0,59.0,41.0,24.0,37.0,26.0,30.0,24.0,18.0,19.0,19.0,19.0,9.0,18.0,20.0,9.0,10.0,5.0,17.0 G82118,71.0,93.0,76.0,84.0,79.0,96.0,77.0,86.0,72.0,60.0,69.0,82.0,93.0,80.0,86.0,85.0,91.0,69.0,77.0,67.0,50.0,55.0,66.0,64.0,64.0,80.0,86.0,75.0,78.0,89.0,87.0,106.0,78.0,97.0,78.0,94.0,83.0,104.0,106.0,87.0,93.0,85.0,90.0,85.0,83.0,75.0,85.0,90.0,89.0,88.0,98.0,99.0,106.0,114.0,110.0,99.0,90.0,103.0,103.0,92.0,98.0,76.0,78.0,75.0,85.0,68.0,81.0,64.0,78.0,80.0,69.0,67.0,81.0,72.0,77.0,61.0,73.0,90.0,72.0,58.0,57.0,60.0,33.0,51.0,35.0,33.0,20.0,27.0,22.0,14.0,19.0,13.0,12.0,11.0,13.0,13.0 G82119,85.0,89.0,120.0,105.0,109.0,113.0,136.0,118.0,134.0,120.0,142.0,118.0,140.0,145.0,123.0,126.0,158.0,129.0,116.0,122.0,123.0,117.0,114.0,125.0,128.0,149.0,117.0,131.0,101.0,131.0,130.0,121.0,130.0,131.0,157.0,132.0,173.0,125.0,165.0,159.0,137.0,150.0,129.0,146.0,136.0,144.0,126.0,142.0,134.0,127.0,150.0,157.0,160.0,186.0,164.0,171.0,174.0,182.0,186.0,164.0,164.0,191.0,177.0,174.0,200.0,190.0,168.0,159.0,166.0,167.0,145.0,180.0,144.0,125.0,134.0,146.0,152.0,175.0,182.0,151.0,128.0,102.0,118.0,77.0,73.0,68.0,73.0,63.0,52.0,41.0,38.0,28.0,36.0,27.0,31.0,68.0 G82120,66.0,61.0,62.0,66.0,88.0,80.0,84.0,84.0,99.0,91.0,106.0,106.0,95.0,103.0,91.0,76.0,100.0,107.0,72.0,69.0,61.0,73.0,76.0,89.0,76.0,79.0,77.0,73.0,64.0,82.0,76.0,72.0,93.0,84.0,115.0,86.0,92.0,94.0,101.0,111.0,96.0,80.0,100.0,100.0,101.0,111.0,104.0,109.0,91.0,93.0,110.0,111.0,109.0,140.0,124.0,93.0,116.0,109.0,118.0,127.0,135.0,134.0,111.0,111.0,105.0,101.0,93.0,66.0,89.0,90.0,76.0,70.0,86.0,86.0,78.0,92.0,72.0,93.0,95.0,89.0,61.0,69.0,59.0,49.0,39.0,47.0,51.0,32.0,36.0,24.0,25.0,21.0,14.0,15.0,9.0,34.0 G82121,35.0,61.0,57.0,54.0,51.0,55.0,57.0,82.0,52.0,80.0,67.0,67.0,80.0,65.0,65.0,65.0,64.0,89.0,84.0,63.0,47.0,37.0,42.0,32.0,46.0,54.0,58.0,57.0,71.0,52.0,68.0,58.0,74.0,73.0,80.0,106.0,88.0,97.0,88.0,95.0,82.0,74.0,83.0,84.0,95.0,91.0,99.0,89.0,75.0,79.0,73.0,77.0,92.0,77.0,82.0,70.0,84.0,93.0,98.0,84.0,94.0,81.0,86.0,76.0,96.0,79.0,85.0,86.0,79.0,79.0,71.0,84.0,100.0,85.0,92.0,83.0,84.0,79.0,85.0,66.0,48.0,61.0,64.0,39.0,34.0,38.0,41.0,22.0,28.0,31.0,32.0,21.0,18.0,12.0,16.0,46.0 G82122,257.0,293.0,279.0,336.0,272.0,288.0,264.0,296.0,270.0,258.0,282.0,270.0,237.0,250.0,247.0,229.0,261.0,215.0,197.0,187.0,144.0,143.0,160.0,159.0,193.0,196.0,240.0,269.0,280.0,328.0,320.0,334.0,387.0,405.0,401.0,374.0,418.0,354.0,380.0,371.0,323.0,293.0,316.0,327.0,290.0,255.0,243.0,212.0,242.0,194.0,209.0,209.0,227.0,180.0,200.0,182.0,204.0,194.0,199.0,182.0,183.0,167.0,143.0,165.0,153.0,134.0,138.0,113.0,118.0,126.0,109.0,109.0,105.0,101.0,90.0,93.0,100.0,98.0,116.0,72.0,59.0,58.0,61.0,55.0,36.0,41.0,30.0,40.0,30.0,21.0,19.0,10.0,15.0,19.0,14.0,38.0 G82125,46.0,59.0,51.0,55.0,58.0,50.0,57.0,66.0,69.0,77.0,81.0,76.0,82.0,84.0,73.0,67.0,75.0,75.0,61.0,55.0,44.0,53.0,52.0,45.0,50.0,48.0,43.0,43.0,51.0,43.0,60.0,68.0,60.0,56.0,70.0,61.0,78.0,85.0,67.0,77.0,72.0,67.0,75.0,64.0,67.0,93.0,76.0,76.0,72.0,90.0,81.0,85.0,95.0,96.0,74.0,93.0,83.0,84.0,84.0,94.0,76.0,85.0,61.0,69.0,73.0,74.0,72.0,70.0,65.0,50.0,46.0,62.0,54.0,52.0,47.0,78.0,56.0,65.0,78.0,57.0,46.0,41.0,50.0,48.0,37.0,33.0,30.0,38.0,27.0,24.0,28.0,18.0,21.0,13.0,11.0,41.0 G82126,43.0,57.0,37.0,75.0,60.0,65.0,73.0,79.0,72.0,79.0,95.0,84.0,76.0,84.0,78.0,82.0,99.0,98.0,64.0,67.0,55.0,62.0,56.0,57.0,64.0,51.0,89.0,64.0,74.0,68.0,78.0,98.0,86.0,94.0,98.0,89.0,76.0,108.0,92.0,117.0,102.0,87.0,91.0,98.0,106.0,109.0,95.0,84.0,98.0,104.0,100.0,89.0,121.0,108.0,133.0,110.0,122.0,120.0,114.0,117.0,127.0,122.0,120.0,128.0,92.0,115.0,91.0,110.0,97.0,91.0,94.0,101.0,114.0,104.0,105.0,86.0,101.0,104.0,107.0,74.0,85.0,67.0,71.0,53.0,49.0,44.0,32.0,44.0,30.0,30.0,8.0,19.0,18.0,17.0,7.0,21.0 G82129,11.0,18.0,17.0,16.0,21.0,18.0,21.0,27.0,28.0,26.0,31.0,25.0,31.0,32.0,28.0,34.0,32.0,39.0,23.0,35.0,25.0,22.0,17.0,26.0,27.0,29.0,18.0,25.0,28.0,33.0,26.0,33.0,33.0,42.0,38.0,22.0,37.0,43.0,49.0,28.0,30.0,32.0,32.0,17.0,28.0,25.0,36.0,36.0,29.0,35.0,29.0,33.0,23.0,38.0,38.0,36.0,34.0,33.0,36.0,41.0,38.0,39.0,42.0,39.0,40.0,44.0,31.0,41.0,42.0,32.0,35.0,21.0,35.0,33.0,34.0,22.0,30.0,30.0,31.0,14.0,19.0,13.0,14.0,10.0,7.0,9.0,15.0,13.0,7.0,4.0,3.0,6.0,5.0,2.0,2.0,1.0 G82135,95.0,89.0,108.0,133.0,123.0,112.0,121.0,136.0,150.0,139.0,116.0,125.0,158.0,149.0,148.0,165.0,161.0,156.0,123.0,108.0,66.0,99.0,84.0,107.0,117.0,80.0,107.0,105.0,97.0,105.0,99.0,134.0,160.0,136.0,150.0,141.0,157.0,123.0,148.0,118.0,149.0,155.0,156.0,151.0,166.0,154.0,166.0,172.0,164.0,157.0,145.0,186.0,181.0,174.0,151.0,139.0,159.0,131.0,144.0,129.0,128.0,149.0,120.0,102.0,103.0,106.0,100.0,101.0,98.0,100.0,92.0,87.0,65.0,84.0,75.0,89.0,98.0,103.0,106.0,67.0,71.0,63.0,51.0,39.0,43.0,38.0,35.0,29.0,33.0,21.0,21.0,11.0,13.0,8.0,5.0,32.0 G82137,44.0,42.0,53.0,52.0,64.0,52.0,61.0,61.0,59.0,61.0,72.0,64.0,67.0,73.0,61.0,80.0,75.0,68.0,78.0,45.0,37.0,44.0,35.0,45.0,50.0,41.0,40.0,52.0,39.0,39.0,52.0,47.0,59.0,47.0,72.0,75.0,83.0,79.0,75.0,71.0,69.0,97.0,83.0,82.0,74.0,92.0,80.0,99.0,72.0,67.0,84.0,62.0,56.0,75.0,60.0,63.0,54.0,69.0,73.0,57.0,61.0,59.0,55.0,50.0,48.0,32.0,58.0,32.0,38.0,34.0,48.0,27.0,41.0,30.0,37.0,37.0,40.0,57.0,45.0,24.0,41.0,36.0,21.0,24.0,23.0,27.0,25.0,21.0,24.0,18.0,19.0,13.0,13.0,6.0,14.0,24.0 G82138,13.0,15.0,17.0,14.0,21.0,15.0,12.0,19.0,17.0,18.0,12.0,20.0,27.0,28.0,17.0,22.0,26.0,27.0,25.0,16.0,20.0,16.0,26.0,23.0,18.0,20.0,12.0,16.0,22.0,23.0,21.0,24.0,24.0,12.0,30.0,16.0,31.0,26.0,34.0,23.0,20.0,23.0,22.0,21.0,26.0,18.0,19.0,20.0,23.0,25.0,22.0,33.0,35.0,47.0,39.0,37.0,41.0,40.0,38.0,48.0,38.0,41.0,38.0,38.0,42.0,36.0,38.0,32.0,28.0,23.0,30.0,20.0,25.0,27.0,35.0,29.0,34.0,34.0,44.0,27.0,33.0,22.0,20.0,19.0,19.0,8.0,18.0,14.0,8.0,7.0,14.0,6.0,12.0,3.0,5.0,13.0 G82139,50.0,64.0,52.0,52.0,51.0,58.0,45.0,45.0,48.0,57.0,58.0,62.0,52.0,52.0,50.0,60.0,47.0,55.0,49.0,37.0,39.0,34.0,37.0,33.0,56.0,45.0,56.0,76.0,58.0,66.0,65.0,79.0,82.0,68.0,76.0,74.0,82.0,62.0,65.0,62.0,81.0,68.0,73.0,65.0,62.0,64.0,79.0,68.0,48.0,47.0,40.0,60.0,54.0,60.0,48.0,67.0,53.0,64.0,47.0,46.0,59.0,53.0,57.0,51.0,60.0,41.0,42.0,37.0,41.0,41.0,30.0,30.0,17.0,38.0,37.0,24.0,43.0,35.0,42.0,34.0,29.0,25.0,21.0,22.0,8.0,18.0,10.0,15.0,17.0,12.0,7.0,8.0,5.0,6.0,5.0,9.0 G82140,23.0,9.0,29.0,33.0,28.0,26.0,25.0,35.0,21.0,35.0,29.0,28.0,34.0,53.0,76.0,91.0,99.0,118.0,218.0,498.0,721.0,699.0,551.0,383.0,304.0,152.0,161.0,125.0,106.0,81.0,96.0,79.0,73.0,70.0,56.0,59.0,52.0,60.0,53.0,45.0,52.0,56.0,53.0,42.0,39.0,51.0,44.0,35.0,35.0,41.0,45.0,37.0,24.0,31.0,29.0,46.0,28.0,23.0,30.0,17.0,34.0,25.0,29.0,29.0,18.0,21.0,20.0,26.0,23.0,22.0,17.0,20.0,17.0,15.0,20.0,27.0,16.0,26.0,25.0,19.0,14.0,13.0,13.0,11.0,8.0,6.0,3.0,1.0,5.0,1.0,3.0,,3.0,2.0,3.0,1.0 G82141,38.0,19.0,30.0,38.0,31.0,30.0,30.0,51.0,50.0,33.0,35.0,35.0,38.0,43.0,34.0,41.0,35.0,34.0,35.0,39.0,29.0,37.0,34.0,32.0,31.0,41.0,35.0,39.0,42.0,46.0,45.0,46.0,33.0,54.0,49.0,41.0,41.0,51.0,37.0,42.0,42.0,32.0,37.0,35.0,51.0,48.0,58.0,51.0,35.0,38.0,31.0,44.0,42.0,54.0,66.0,41.0,57.0,53.0,55.0,73.0,57.0,49.0,60.0,42.0,50.0,40.0,41.0,39.0,43.0,41.0,31.0,34.0,43.0,40.0,32.0,42.0,30.0,34.0,44.0,32.0,31.0,24.0,20.0,25.0,15.0,14.0,15.0,13.0,11.0,14.0,9.0,13.0,4.0,6.0,1.0,9.0 G82142,42.0,51.0,36.0,48.0,46.0,51.0,47.0,53.0,63.0,59.0,68.0,54.0,73.0,64.0,68.0,67.0,63.0,73.0,59.0,36.0,42.0,49.0,43.0,51.0,44.0,59.0,52.0,49.0,49.0,47.0,58.0,51.0,56.0,56.0,62.0,71.0,63.0,79.0,60.0,70.0,69.0,76.0,68.0,89.0,68.0,70.0,83.0,65.0,62.0,59.0,73.0,86.0,78.0,78.0,86.0,91.0,98.0,89.0,70.0,71.0,80.0,86.0,67.0,74.0,66.0,60.0,73.0,69.0,63.0,61.0,76.0,59.0,52.0,46.0,42.0,57.0,53.0,76.0,52.0,45.0,35.0,48.0,30.0,29.0,32.0,21.0,23.0,19.0,13.0,15.0,18.0,11.0,8.0,9.0,6.0,21.0 G82143,39.0,37.0,42.0,49.0,40.0,44.0,53.0,50.0,42.0,46.0,46.0,74.0,37.0,48.0,43.0,47.0,51.0,46.0,49.0,38.0,41.0,34.0,33.0,24.0,43.0,44.0,46.0,62.0,60.0,66.0,47.0,67.0,55.0,63.0,62.0,69.0,63.0,67.0,61.0,62.0,60.0,61.0,67.0,60.0,64.0,45.0,51.0,54.0,49.0,50.0,53.0,38.0,35.0,43.0,39.0,46.0,43.0,50.0,40.0,40.0,54.0,37.0,32.0,36.0,29.0,32.0,34.0,24.0,35.0,32.0,34.0,29.0,32.0,25.0,22.0,27.0,42.0,33.0,23.0,15.0,21.0,23.0,20.0,14.0,18.0,8.0,12.0,9.0,8.0,9.0,12.0,7.0,5.0,3.0,7.0,6.0 G82147,25.0,17.0,20.0,12.0,19.0,23.0,19.0,33.0,28.0,25.0,30.0,16.0,28.0,25.0,25.0,25.0,41.0,21.0,22.0,21.0,17.0,14.0,14.0,18.0,21.0,23.0,16.0,27.0,23.0,24.0,25.0,24.0,23.0,25.0,28.0,25.0,30.0,25.0,30.0,25.0,34.0,23.0,38.0,27.0,23.0,28.0,30.0,21.0,19.0,23.0,27.0,33.0,31.0,38.0,39.0,33.0,41.0,47.0,58.0,38.0,47.0,43.0,55.0,70.0,65.0,49.0,65.0,52.0,59.0,44.0,45.0,41.0,48.0,46.0,53.0,42.0,57.0,56.0,50.0,42.0,37.0,39.0,36.0,28.0,22.0,17.0,20.0,22.0,22.0,12.0,11.0,14.0,11.0,5.0,4.0,7.0 G82150,32.0,33.0,37.0,38.0,40.0,42.0,45.0,36.0,56.0,34.0,42.0,54.0,47.0,51.0,43.0,43.0,52.0,46.0,55.0,42.0,36.0,31.0,33.0,39.0,30.0,31.0,45.0,50.0,37.0,49.0,39.0,49.0,51.0,45.0,57.0,40.0,51.0,36.0,69.0,39.0,45.0,50.0,46.0,42.0,34.0,48.0,40.0,36.0,34.0,40.0,34.0,34.0,42.0,44.0,37.0,41.0,48.0,36.0,44.0,49.0,33.0,46.0,48.0,37.0,33.0,36.0,38.0,30.0,28.0,43.0,30.0,28.0,31.0,27.0,18.0,25.0,18.0,32.0,16.0,23.0,27.0,14.0,16.0,20.0,9.0,7.0,12.0,7.0,5.0,2.0,,6.0,3.0,4.0,1.0,5.0 G82152,23.0,23.0,34.0,37.0,34.0,36.0,34.0,43.0,36.0,39.0,44.0,56.0,42.0,47.0,41.0,49.0,44.0,39.0,35.0,19.0,29.0,34.0,26.0,38.0,16.0,20.0,36.0,30.0,37.0,33.0,31.0,19.0,35.0,40.0,30.0,41.0,43.0,41.0,49.0,46.0,60.0,45.0,50.0,55.0,53.0,50.0,52.0,48.0,43.0,42.0,55.0,49.0,48.0,54.0,44.0,45.0,52.0,50.0,58.0,43.0,57.0,41.0,43.0,36.0,35.0,33.0,39.0,40.0,32.0,40.0,34.0,38.0,32.0,37.0,39.0,34.0,34.0,42.0,36.0,28.0,27.0,31.0,31.0,16.0,20.0,27.0,28.0,19.0,10.0,15.0,18.0,15.0,10.0,8.0,7.0,25.0 G82154,17.0,29.0,33.0,31.0,28.0,24.0,29.0,32.0,19.0,29.0,32.0,26.0,35.0,29.0,22.0,44.0,32.0,23.0,31.0,28.0,33.0,27.0,31.0,30.0,27.0,35.0,30.0,39.0,30.0,40.0,37.0,27.0,38.0,35.0,46.0,52.0,49.0,43.0,32.0,28.0,29.0,23.0,28.0,41.0,42.0,32.0,43.0,29.0,30.0,45.0,30.0,32.0,34.0,43.0,50.0,57.0,42.0,38.0,46.0,41.0,41.0,34.0,41.0,40.0,31.0,40.0,40.0,34.0,33.0,34.0,30.0,43.0,30.0,32.0,35.0,44.0,40.0,48.0,50.0,37.0,42.0,32.0,28.0,26.0,24.0,17.0,21.0,19.0,19.0,12.0,15.0,7.0,10.0,5.0,,10.0 G82155,14.0,22.0,17.0,35.0,22.0,35.0,23.0,27.0,36.0,36.0,38.0,47.0,53.0,39.0,43.0,40.0,53.0,46.0,43.0,25.0,33.0,26.0,25.0,23.0,30.0,28.0,32.0,34.0,23.0,36.0,29.0,34.0,27.0,33.0,48.0,35.0,31.0,59.0,36.0,34.0,36.0,51.0,37.0,37.0,59.0,56.0,49.0,48.0,38.0,41.0,45.0,51.0,33.0,54.0,52.0,51.0,47.0,40.0,39.0,42.0,38.0,53.0,47.0,40.0,44.0,47.0,44.0,34.0,38.0,28.0,44.0,32.0,36.0,37.0,44.0,37.0,46.0,38.0,45.0,26.0,23.0,39.0,24.0,18.0,18.0,18.0,14.0,14.0,19.0,14.0,7.0,8.0,9.0,6.0,4.0,16.0 G82158,14.0,12.0,18.0,28.0,17.0,23.0,29.0,25.0,34.0,30.0,34.0,27.0,38.0,47.0,41.0,41.0,29.0,33.0,33.0,25.0,16.0,30.0,25.0,31.0,32.0,30.0,22.0,21.0,19.0,25.0,28.0,31.0,15.0,24.0,24.0,23.0,24.0,29.0,19.0,44.0,26.0,36.0,33.0,48.0,45.0,34.0,28.0,24.0,40.0,39.0,31.0,40.0,38.0,49.0,53.0,31.0,35.0,38.0,48.0,41.0,54.0,37.0,45.0,42.0,38.0,33.0,35.0,39.0,33.0,33.0,24.0,22.0,29.0,28.0,21.0,26.0,32.0,39.0,33.0,32.0,32.0,21.0,8.0,15.0,10.0,14.0,16.0,12.0,9.0,9.0,6.0,6.0,3.0,1.0,4.0,7.0 G82160,26.0,38.0,36.0,39.0,32.0,37.0,49.0,46.0,60.0,49.0,56.0,53.0,46.0,54.0,52.0,52.0,63.0,67.0,69.0,48.0,54.0,43.0,34.0,36.0,44.0,36.0,52.0,49.0,47.0,51.0,45.0,42.0,48.0,51.0,58.0,53.0,68.0,66.0,53.0,68.0,58.0,62.0,61.0,51.0,78.0,67.0,69.0,58.0,63.0,54.0,62.0,66.0,97.0,84.0,87.0,94.0,92.0,101.0,90.0,122.0,105.0,96.0,99.0,103.0,107.0,102.0,94.0,102.0,98.0,114.0,108.0,104.0,103.0,113.0,98.0,105.0,122.0,117.0,125.0,101.0,98.0,95.0,60.0,71.0,70.0,64.0,44.0,53.0,44.0,37.0,23.0,19.0,23.0,22.0,18.0,45.0 G82161,129.0,148.0,143.0,155.0,157.0,139.0,158.0,180.0,200.0,205.0,199.0,177.0,199.0,209.0,217.0,202.0,223.0,227.0,183.0,171.0,160.0,176.0,123.0,156.0,153.0,161.0,147.0,193.0,174.0,184.0,207.0,202.0,207.0,227.0,221.0,243.0,236.0,239.0,220.0,222.0,249.0,221.0,206.0,203.0,227.0,204.0,205.0,199.0,188.0,205.0,174.0,172.0,191.0,217.0,219.0,200.0,227.0,207.0,205.0,206.0,204.0,224.0,205.0,204.0,190.0,210.0,179.0,182.0,167.0,125.0,163.0,138.0,143.0,129.0,126.0,136.0,136.0,159.0,157.0,94.0,121.0,82.0,89.0,74.0,53.0,54.0,61.0,39.0,39.0,37.0,29.0,22.0,14.0,14.0,10.0,23.0 G82162,14.0,22.0,15.0,19.0,25.0,27.0,20.0,21.0,30.0,38.0,33.0,34.0,39.0,30.0,39.0,30.0,26.0,19.0,20.0,29.0,24.0,27.0,32.0,22.0,20.0,28.0,24.0,28.0,30.0,30.0,28.0,25.0,27.0,33.0,30.0,25.0,33.0,31.0,40.0,36.0,27.0,30.0,43.0,42.0,29.0,28.0,34.0,34.0,32.0,34.0,30.0,30.0,34.0,28.0,54.0,43.0,39.0,40.0,45.0,53.0,45.0,31.0,26.0,47.0,45.0,35.0,35.0,34.0,38.0,27.0,26.0,47.0,39.0,38.0,35.0,39.0,36.0,43.0,41.0,36.0,37.0,33.0,31.0,26.0,29.0,25.0,21.0,19.0,14.0,9.0,10.0,6.0,8.0,4.0,3.0,13.0 G82164,68.0,64.0,57.0,71.0,75.0,62.0,86.0,74.0,95.0,93.0,82.0,85.0,93.0,81.0,68.0,99.0,67.0,68.0,63.0,54.0,64.0,60.0,61.0,75.0,85.0,85.0,101.0,96.0,89.0,106.0,123.0,139.0,104.0,115.0,141.0,117.0,147.0,124.0,109.0,113.0,105.0,115.0,107.0,112.0,110.0,107.0,76.0,96.0,83.0,86.0,98.0,92.0,71.0,75.0,69.0,87.0,83.0,78.0,69.0,84.0,83.0,75.0,69.0,68.0,64.0,67.0,49.0,51.0,54.0,56.0,50.0,46.0,44.0,38.0,38.0,50.0,50.0,50.0,58.0,32.0,39.0,39.0,32.0,23.0,20.0,39.0,25.0,22.0,17.0,24.0,11.0,11.0,9.0,11.0,12.0,18.0 G82165,33.0,38.0,47.0,37.0,40.0,35.0,43.0,59.0,58.0,51.0,67.0,53.0,56.0,70.0,71.0,74.0,71.0,72.0,51.0,71.0,44.0,48.0,46.0,46.0,58.0,46.0,51.0,51.0,54.0,49.0,59.0,62.0,52.0,48.0,70.0,79.0,84.0,62.0,65.0,48.0,63.0,63.0,57.0,70.0,82.0,64.0,74.0,56.0,55.0,67.0,79.0,71.0,79.0,60.0,78.0,78.0,78.0,65.0,88.0,95.0,72.0,52.0,66.0,64.0,71.0,45.0,53.0,72.0,48.0,45.0,50.0,60.0,56.0,49.0,48.0,55.0,69.0,78.0,73.0,56.0,44.0,36.0,36.0,33.0,26.0,22.0,31.0,27.0,18.0,18.0,12.0,12.0,11.0,10.0,4.0,17.0 G82170,15.0,15.0,15.0,20.0,13.0,12.0,13.0,16.0,30.0,13.0,19.0,22.0,20.0,23.0,18.0,21.0,20.0,17.0,19.0,13.0,15.0,18.0,10.0,14.0,13.0,28.0,13.0,11.0,7.0,13.0,17.0,16.0,16.0,19.0,22.0,23.0,18.0,15.0,20.0,14.0,18.0,23.0,17.0,20.0,22.0,18.0,22.0,24.0,23.0,25.0,25.0,22.0,33.0,34.0,31.0,38.0,31.0,32.0,36.0,38.0,36.0,31.0,30.0,38.0,33.0,31.0,25.0,26.0,27.0,29.0,26.0,20.0,24.0,17.0,28.0,20.0,24.0,12.0,32.0,14.0,22.0,14.0,13.0,13.0,8.0,11.0,9.0,8.0,5.0,3.0,11.0,3.0,2.0,2.0,2.0,2.0 G82180,16.0,22.0,27.0,30.0,21.0,16.0,24.0,26.0,30.0,23.0,28.0,19.0,28.0,24.0,32.0,21.0,32.0,26.0,21.0,21.0,20.0,22.0,17.0,22.0,29.0,22.0,26.0,28.0,27.0,18.0,19.0,16.0,27.0,17.0,33.0,28.0,30.0,32.0,23.0,27.0,34.0,37.0,25.0,28.0,25.0,27.0,32.0,33.0,26.0,28.0,27.0,23.0,30.0,18.0,28.0,35.0,36.0,34.0,42.0,36.0,30.0,31.0,23.0,37.0,40.0,34.0,28.0,35.0,42.0,42.0,26.0,36.0,31.0,30.0,29.0,37.0,41.0,34.0,26.0,16.0,21.0,15.0,21.0,20.0,18.0,9.0,11.0,11.0,14.0,9.0,7.0,5.0,12.0,3.0,3.0,6.0 G82184,4.0,6.0,6.0,9.0,6.0,8.0,8.0,9.0,3.0,7.0,5.0,9.0,7.0,7.0,7.0,5.0,8.0,5.0,2.0,3.0,5.0,7.0,6.0,7.0,2.0,6.0,3.0,6.0,6.0,7.0,9.0,5.0,7.0,7.0,11.0,11.0,7.0,10.0,6.0,7.0,5.0,8.0,9.0,7.0,6.0,10.0,6.0,6.0,6.0,7.0,6.0,4.0,12.0,5.0,9.0,6.0,9.0,9.0,14.0,17.0,8.0,14.0,14.0,10.0,15.0,18.0,13.0,15.0,10.0,11.0,8.0,11.0,10.0,12.0,9.0,10.0,7.0,9.0,4.0,9.0,7.0,11.0,5.0,3.0,3.0,4.0,2.0,6.0,2.0,9.0,4.0,2.0,1.0,,1.0,2.0 G82185,24.0,36.0,30.0,31.0,48.0,41.0,50.0,45.0,60.0,60.0,56.0,50.0,56.0,51.0,64.0,54.0,77.0,61.0,51.0,36.0,39.0,44.0,29.0,35.0,49.0,49.0,56.0,50.0,42.0,56.0,46.0,58.0,55.0,51.0,63.0,57.0,53.0,71.0,73.0,71.0,70.0,79.0,66.0,75.0,77.0,66.0,54.0,66.0,46.0,56.0,75.0,60.0,58.0,50.0,62.0,67.0,87.0,67.0,43.0,59.0,60.0,50.0,52.0,48.0,42.0,48.0,49.0,52.0,41.0,36.0,50.0,43.0,30.0,41.0,52.0,46.0,31.0,46.0,51.0,43.0,31.0,23.0,42.0,32.0,20.0,26.0,21.0,27.0,13.0,14.0,9.0,6.0,4.0,4.0,3.0,6.0 G82186,27.0,27.0,28.0,29.0,31.0,33.0,40.0,40.0,34.0,45.0,54.0,38.0,45.0,39.0,49.0,48.0,56.0,47.0,37.0,37.0,41.0,44.0,46.0,36.0,33.0,44.0,33.0,40.0,35.0,36.0,43.0,43.0,46.0,39.0,45.0,50.0,44.0,61.0,42.0,42.0,57.0,44.0,43.0,33.0,41.0,45.0,57.0,33.0,47.0,44.0,42.0,55.0,57.0,60.0,71.0,62.0,86.0,60.0,75.0,52.0,74.0,63.0,62.0,55.0,57.0,51.0,64.0,44.0,53.0,47.0,54.0,55.0,43.0,37.0,56.0,40.0,59.0,53.0,61.0,39.0,47.0,41.0,26.0,27.0,18.0,18.0,19.0,12.0,15.0,8.0,7.0,13.0,8.0,7.0,4.0,8.0 G82200,56.0,62.0,51.0,52.0,57.0,46.0,56.0,68.0,56.0,63.0,74.0,82.0,72.0,72.0,51.0,57.0,63.0,57.0,52.0,33.0,48.0,48.0,34.0,43.0,54.0,55.0,49.0,61.0,61.0,68.0,73.0,71.0,78.0,67.0,79.0,87.0,76.0,81.0,72.0,83.0,86.0,73.0,67.0,75.0,85.0,78.0,61.0,64.0,53.0,75.0,72.0,72.0,74.0,77.0,84.0,80.0,109.0,81.0,89.0,82.0,77.0,102.0,66.0,83.0,75.0,71.0,76.0,67.0,54.0,67.0,56.0,49.0,60.0,45.0,33.0,43.0,47.0,64.0,50.0,41.0,33.0,39.0,32.0,29.0,22.0,23.0,8.0,17.0,11.0,12.0,11.0,9.0,9.0,6.0,3.0,7.0 G82203,49.0,49.0,54.0,69.0,72.0,86.0,74.0,71.0,91.0,71.0,81.0,75.0,88.0,76.0,86.0,64.0,83.0,58.0,63.0,73.0,68.0,55.0,50.0,50.0,56.0,61.0,63.0,59.0,75.0,66.0,66.0,81.0,67.0,91.0,98.0,88.0,110.0,93.0,92.0,91.0,74.0,83.0,77.0,95.0,62.0,83.0,65.0,61.0,70.0,55.0,55.0,59.0,64.0,57.0,75.0,58.0,55.0,76.0,76.0,67.0,78.0,69.0,69.0,53.0,59.0,44.0,46.0,43.0,38.0,40.0,39.0,42.0,39.0,24.0,34.0,33.0,47.0,43.0,36.0,26.0,30.0,22.0,21.0,26.0,24.0,17.0,16.0,19.0,12.0,15.0,11.0,6.0,4.0,2.0,2.0,9.0 G82205,20.0,49.0,42.0,52.0,51.0,30.0,57.0,52.0,68.0,72.0,80.0,67.0,68.0,74.0,78.0,72.0,60.0,71.0,58.0,35.0,37.0,31.0,36.0,31.0,38.0,33.0,34.0,35.0,37.0,44.0,53.0,57.0,49.0,56.0,38.0,49.0,50.0,66.0,53.0,60.0,68.0,63.0,85.0,76.0,74.0,75.0,71.0,72.0,76.0,69.0,78.0,77.0,71.0,57.0,50.0,60.0,56.0,49.0,45.0,64.0,53.0,45.0,40.0,39.0,46.0,33.0,30.0,32.0,30.0,24.0,26.0,37.0,35.0,27.0,23.0,28.0,34.0,38.0,35.0,31.0,17.0,32.0,12.0,15.0,19.0,19.0,14.0,14.0,17.0,14.0,8.0,8.0,9.0,4.0,3.0,11.0 G82211,55.0,47.0,64.0,56.0,54.0,60.0,56.0,59.0,62.0,65.0,59.0,62.0,46.0,63.0,43.0,45.0,54.0,49.0,46.0,49.0,38.0,34.0,34.0,45.0,48.0,48.0,72.0,50.0,63.0,65.0,60.0,64.0,86.0,80.0,75.0,84.0,67.0,81.0,53.0,73.0,64.0,67.0,58.0,49.0,54.0,47.0,47.0,47.0,42.0,35.0,46.0,47.0,46.0,53.0,60.0,51.0,47.0,52.0,57.0,62.0,46.0,61.0,48.0,60.0,41.0,50.0,39.0,48.0,43.0,31.0,47.0,37.0,29.0,40.0,21.0,37.0,41.0,23.0,26.0,19.0,33.0,29.0,15.0,25.0,14.0,20.0,9.0,15.0,16.0,7.0,5.0,8.0,3.0,2.0,3.0,3.0 G82212,37.0,47.0,62.0,65.0,61.0,62.0,78.0,79.0,61.0,78.0,74.0,64.0,59.0,59.0,54.0,50.0,54.0,46.0,46.0,40.0,24.0,35.0,31.0,34.0,41.0,37.0,47.0,41.0,58.0,73.0,56.0,68.0,74.0,80.0,91.0,111.0,103.0,93.0,91.0,86.0,97.0,75.0,73.0,69.0,101.0,64.0,61.0,51.0,45.0,46.0,45.0,51.0,51.0,40.0,51.0,51.0,39.0,48.0,47.0,34.0,49.0,31.0,30.0,41.0,31.0,35.0,37.0,48.0,29.0,22.0,17.0,25.0,33.0,15.0,21.0,14.0,18.0,25.0,17.0,12.0,20.0,12.0,12.0,8.0,9.0,9.0,8.0,2.0,3.0,5.0,3.0,3.0,6.0,1.0,1.0,2.0 G82215,38.0,31.0,44.0,55.0,55.0,35.0,50.0,57.0,44.0,36.0,49.0,31.0,42.0,32.0,47.0,31.0,46.0,39.0,31.0,42.0,34.0,32.0,42.0,32.0,46.0,36.0,42.0,47.0,41.0,39.0,60.0,45.0,40.0,50.0,45.0,60.0,59.0,59.0,58.0,46.0,58.0,61.0,49.0,48.0,46.0,45.0,50.0,29.0,42.0,50.0,45.0,43.0,52.0,55.0,62.0,49.0,66.0,66.0,52.0,63.0,58.0,53.0,55.0,41.0,46.0,50.0,49.0,42.0,47.0,38.0,30.0,39.0,31.0,36.0,38.0,41.0,39.0,29.0,30.0,29.0,31.0,28.0,24.0,22.0,15.0,18.0,18.0,16.0,11.0,8.0,5.0,13.0,6.0,1.0,4.0,7.0 G82217,20.0,27.0,19.0,18.0,19.0,18.0,27.0,17.0,17.0,21.0,19.0,19.0,20.0,19.0,19.0,24.0,23.0,17.0,23.0,10.0,17.0,20.0,17.0,17.0,15.0,21.0,18.0,24.0,19.0,22.0,26.0,35.0,43.0,33.0,42.0,32.0,35.0,29.0,30.0,29.0,30.0,27.0,29.0,27.0,34.0,29.0,36.0,20.0,24.0,22.0,26.0,18.0,21.0,25.0,24.0,25.0,24.0,23.0,22.0,22.0,20.0,20.0,22.0,14.0,19.0,22.0,18.0,18.0,18.0,24.0,14.0,11.0,14.0,19.0,13.0,16.0,14.0,17.0,19.0,11.0,5.0,9.0,7.0,10.0,9.0,3.0,4.0,7.0,6.0,4.0,1.0,,,1.0,1.0,4.0 G82218,67.0,57.0,54.0,64.0,60.0,60.0,62.0,67.0,73.0,60.0,76.0,57.0,68.0,80.0,66.0,72.0,54.0,69.0,71.0,65.0,60.0,52.0,64.0,56.0,60.0,44.0,77.0,62.0,68.0,65.0,45.0,71.0,71.0,85.0,73.0,107.0,86.0,76.0,95.0,84.0,75.0,80.0,75.0,90.0,81.0,81.0,77.0,65.0,83.0,79.0,65.0,76.0,92.0,77.0,107.0,98.0,81.0,91.0,97.0,104.0,89.0,108.0,84.0,87.0,101.0,80.0,95.0,86.0,78.0,77.0,73.0,73.0,57.0,67.0,58.0,71.0,77.0,91.0,85.0,49.0,64.0,60.0,48.0,32.0,39.0,39.0,37.0,34.0,36.0,28.0,27.0,22.0,10.0,11.0,6.0,21.0 G82219,14.0,15.0,21.0,21.0,12.0,16.0,14.0,20.0,21.0,26.0,18.0,30.0,31.0,26.0,35.0,43.0,49.0,31.0,34.0,17.0,20.0,13.0,18.0,17.0,15.0,23.0,22.0,11.0,17.0,21.0,15.0,20.0,24.0,31.0,24.0,17.0,21.0,31.0,20.0,27.0,28.0,20.0,21.0,22.0,17.0,26.0,31.0,17.0,21.0,27.0,29.0,19.0,33.0,35.0,34.0,26.0,37.0,42.0,32.0,29.0,50.0,23.0,37.0,36.0,31.0,24.0,38.0,31.0,56.0,35.0,38.0,39.0,24.0,35.0,45.0,33.0,36.0,48.0,45.0,26.0,37.0,35.0,27.0,21.0,19.0,22.0,16.0,6.0,14.0,9.0,5.0,5.0,3.0,4.0,7.0,8.0 G82224,6.0,11.0,13.0,12.0,15.0,13.0,22.0,21.0,23.0,23.0,18.0,12.0,25.0,27.0,28.0,32.0,28.0,34.0,23.0,23.0,24.0,23.0,13.0,18.0,17.0,21.0,16.0,23.0,15.0,15.0,15.0,20.0,16.0,18.0,16.0,10.0,16.0,23.0,23.0,13.0,24.0,34.0,16.0,23.0,22.0,20.0,28.0,16.0,28.0,28.0,27.0,34.0,34.0,37.0,35.0,33.0,37.0,37.0,33.0,35.0,48.0,27.0,43.0,37.0,31.0,33.0,24.0,23.0,22.0,21.0,20.0,30.0,17.0,13.0,12.0,18.0,14.0,26.0,25.0,18.0,28.0,19.0,7.0,10.0,6.0,7.0,4.0,4.0,6.0,5.0,,2.0,3.0,1.0,1.0,2.0 G82226,21.0,19.0,27.0,31.0,19.0,25.0,35.0,19.0,25.0,24.0,29.0,16.0,28.0,23.0,25.0,31.0,31.0,28.0,20.0,24.0,21.0,23.0,25.0,22.0,23.0,26.0,32.0,26.0,29.0,26.0,21.0,28.0,25.0,43.0,27.0,33.0,30.0,36.0,39.0,36.0,28.0,28.0,33.0,36.0,24.0,40.0,18.0,35.0,37.0,31.0,25.0,28.0,30.0,41.0,40.0,29.0,44.0,31.0,29.0,32.0,38.0,33.0,34.0,33.0,33.0,32.0,32.0,44.0,31.0,33.0,34.0,37.0,27.0,32.0,29.0,37.0,44.0,41.0,47.0,25.0,29.0,19.0,21.0,23.0,13.0,19.0,19.0,10.0,11.0,15.0,10.0,5.0,5.0,4.0,3.0,8.0 G82227,17.0,18.0,18.0,25.0,26.0,28.0,19.0,34.0,34.0,34.0,31.0,25.0,30.0,25.0,25.0,33.0,23.0,23.0,26.0,23.0,17.0,25.0,32.0,28.0,22.0,23.0,23.0,26.0,25.0,30.0,25.0,35.0,33.0,31.0,38.0,41.0,28.0,13.0,38.0,32.0,36.0,31.0,34.0,35.0,49.0,29.0,33.0,30.0,29.0,44.0,42.0,32.0,41.0,52.0,45.0,43.0,44.0,52.0,51.0,58.0,52.0,65.0,46.0,61.0,46.0,46.0,56.0,46.0,43.0,49.0,42.0,36.0,45.0,49.0,33.0,41.0,37.0,47.0,38.0,28.0,26.0,21.0,30.0,16.0,20.0,21.0,14.0,11.0,14.0,10.0,9.0,8.0,1.0,9.0,7.0,7.0 G82228,88.0,97.0,98.0,108.0,88.0,122.0,130.0,112.0,105.0,119.0,127.0,135.0,126.0,141.0,157.0,180.0,198.0,239.0,208.0,164.0,156.0,175.0,167.0,167.0,159.0,115.0,157.0,125.0,140.0,131.0,148.0,151.0,160.0,162.0,159.0,153.0,164.0,176.0,142.0,150.0,132.0,145.0,160.0,165.0,163.0,168.0,134.0,116.0,116.0,128.0,128.0,148.0,153.0,144.0,149.0,171.0,152.0,142.0,138.0,157.0,158.0,161.0,148.0,127.0,134.0,139.0,147.0,130.0,119.0,123.0,122.0,122.0,100.0,113.0,105.0,89.0,109.0,143.0,126.0,84.0,81.0,84.0,78.0,61.0,72.0,73.0,73.0,63.0,49.0,42.0,27.0,35.0,40.0,25.0,17.0,57.0 G82229,26.0,34.0,34.0,30.0,42.0,41.0,40.0,40.0,33.0,48.0,41.0,43.0,39.0,43.0,50.0,47.0,44.0,52.0,45.0,37.0,31.0,33.0,31.0,42.0,43.0,29.0,39.0,44.0,42.0,42.0,38.0,47.0,49.0,50.0,51.0,62.0,47.0,51.0,51.0,48.0,44.0,51.0,46.0,39.0,52.0,39.0,47.0,33.0,39.0,42.0,57.0,50.0,62.0,52.0,49.0,60.0,64.0,55.0,55.0,52.0,49.0,57.0,57.0,35.0,44.0,56.0,39.0,47.0,40.0,43.0,38.0,34.0,35.0,41.0,31.0,29.0,37.0,37.0,28.0,32.0,29.0,31.0,20.0,24.0,22.0,11.0,8.0,14.0,9.0,10.0,10.0,6.0,7.0,5.0,3.0,13.0 G82231,31.0,25.0,26.0,39.0,34.0,29.0,32.0,32.0,26.0,26.0,31.0,38.0,39.0,46.0,51.0,41.0,49.0,36.0,27.0,31.0,43.0,35.0,41.0,38.0,37.0,39.0,31.0,37.0,47.0,36.0,47.0,38.0,48.0,49.0,44.0,36.0,44.0,46.0,31.0,40.0,31.0,44.0,51.0,44.0,40.0,41.0,44.0,39.0,51.0,40.0,33.0,51.0,40.0,49.0,47.0,57.0,52.0,50.0,45.0,56.0,52.0,54.0,35.0,42.0,45.0,46.0,26.0,53.0,37.0,29.0,29.0,30.0,42.0,29.0,43.0,37.0,42.0,53.0,62.0,47.0,33.0,27.0,28.0,29.0,32.0,23.0,21.0,16.0,10.0,19.0,13.0,8.0,7.0,6.0,5.0,8.0 G82232,33.0,46.0,39.0,46.0,41.0,51.0,59.0,40.0,51.0,61.0,67.0,42.0,70.0,49.0,73.0,56.0,55.0,52.0,50.0,43.0,35.0,39.0,42.0,29.0,32.0,51.0,59.0,54.0,60.0,63.0,81.0,60.0,64.0,100.0,91.0,74.0,72.0,60.0,70.0,58.0,53.0,62.0,66.0,63.0,61.0,67.0,70.0,56.0,59.0,72.0,54.0,65.0,69.0,71.0,76.0,73.0,71.0,61.0,64.0,64.0,60.0,64.0,70.0,60.0,58.0,36.0,48.0,53.0,39.0,41.0,41.0,35.0,59.0,50.0,43.0,36.0,54.0,40.0,63.0,31.0,27.0,34.0,35.0,26.0,25.0,23.0,24.0,15.0,17.0,12.0,12.0,9.0,13.0,6.0,5.0,9.0 G82233,43.0,43.0,47.0,37.0,50.0,59.0,58.0,52.0,66.0,70.0,70.0,61.0,76.0,59.0,52.0,67.0,69.0,66.0,50.0,45.0,54.0,49.0,63.0,50.0,51.0,49.0,38.0,50.0,57.0,66.0,59.0,59.0,61.0,72.0,70.0,74.0,71.0,57.0,85.0,77.0,76.0,55.0,54.0,67.0,57.0,59.0,76.0,43.0,64.0,65.0,66.0,58.0,54.0,57.0,64.0,65.0,54.0,72.0,53.0,72.0,88.0,59.0,72.0,72.0,62.0,57.0,44.0,48.0,34.0,36.0,40.0,35.0,37.0,37.0,27.0,25.0,33.0,33.0,38.0,19.0,24.0,18.0,20.0,14.0,13.0,15.0,11.0,6.0,6.0,13.0,7.0,5.0,2.0,2.0,4.0,10.0 G82234,37.0,43.0,43.0,59.0,42.0,41.0,36.0,47.0,33.0,32.0,34.0,34.0,33.0,29.0,30.0,28.0,20.0,35.0,38.0,15.0,23.0,13.0,30.0,24.0,28.0,42.0,38.0,49.0,44.0,51.0,44.0,59.0,61.0,60.0,57.0,69.0,56.0,45.0,44.0,35.0,40.0,49.0,41.0,36.0,30.0,42.0,37.0,32.0,30.0,40.0,32.0,45.0,30.0,33.0,50.0,35.0,34.0,39.0,59.0,40.0,48.0,45.0,38.0,36.0,31.0,34.0,23.0,31.0,16.0,31.0,33.0,18.0,25.0,20.0,23.0,20.0,22.0,24.0,27.0,22.0,15.0,12.0,20.0,13.0,7.0,12.0,11.0,7.0,6.0,4.0,3.0,2.0,2.0,2.0,,4.0 G82235,23.0,19.0,21.0,26.0,27.0,21.0,36.0,22.0,37.0,24.0,25.0,30.0,34.0,45.0,41.0,57.0,44.0,42.0,54.0,29.0,31.0,19.0,31.0,21.0,25.0,18.0,36.0,39.0,22.0,25.0,23.0,26.0,22.0,26.0,31.0,27.0,16.0,36.0,27.0,27.0,27.0,29.0,34.0,21.0,29.0,32.0,25.0,28.0,31.0,37.0,39.0,29.0,28.0,41.0,40.0,45.0,41.0,39.0,42.0,34.0,51.0,42.0,35.0,42.0,30.0,35.0,41.0,45.0,39.0,36.0,47.0,19.0,19.0,24.0,30.0,29.0,36.0,36.0,34.0,27.0,25.0,23.0,27.0,17.0,22.0,19.0,12.0,15.0,12.0,18.0,10.0,11.0,8.0,9.0,7.0,18.0 G82600,10.0,10.0,8.0,11.0,5.0,13.0,15.0,18.0,13.0,19.0,18.0,15.0,17.0,19.0,16.0,15.0,18.0,7.0,11.0,12.0,15.0,11.0,14.0,13.0,3.0,8.0,12.0,12.0,10.0,6.0,10.0,14.0,16.0,12.0,12.0,17.0,18.0,13.0,23.0,19.0,13.0,19.0,13.0,11.0,19.0,15.0,10.0,14.0,7.0,7.0,12.0,17.0,13.0,11.0,18.0,15.0,22.0,10.0,21.0,12.0,9.0,19.0,18.0,23.0,13.0,21.0,21.0,18.0,6.0,15.0,12.0,13.0,9.0,17.0,8.0,9.0,11.0,16.0,23.0,9.0,11.0,12.0,7.0,9.0,6.0,6.0,3.0,5.0,6.0,3.0,5.0,4.0,,3.0,3.0,1.0 G82604,59.0,43.0,83.0,81.0,78.0,114.0,106.0,119.0,110.0,121.0,107.0,114.0,115.0,134.0,111.0,101.0,115.0,102.0,95.0,85.0,64.0,77.0,76.0,73.0,60.0,76.0,79.0,86.0,66.0,83.0,92.0,118.0,112.0,105.0,102.0,124.0,118.0,139.0,109.0,145.0,130.0,114.0,98.0,116.0,123.0,115.0,107.0,103.0,96.0,81.0,117.0,103.0,112.0,102.0,102.0,96.0,102.0,89.0,114.0,113.0,93.0,99.0,89.0,87.0,78.0,91.0,71.0,72.0,77.0,62.0,67.0,61.0,81.0,50.0,48.0,55.0,85.0,70.0,64.0,53.0,39.0,39.0,49.0,41.0,31.0,25.0,27.0,31.0,32.0,20.0,21.0,24.0,24.0,23.0,17.0,35.0 G82631,37.0,48.0,45.0,48.0,74.0,52.0,59.0,52.0,84.0,77.0,66.0,77.0,55.0,64.0,63.0,55.0,52.0,58.0,34.0,39.0,34.0,41.0,35.0,47.0,58.0,51.0,66.0,38.0,65.0,61.0,53.0,66.0,66.0,59.0,58.0,68.0,71.0,61.0,58.0,60.0,64.0,67.0,69.0,68.0,62.0,51.0,52.0,48.0,38.0,45.0,42.0,31.0,34.0,39.0,45.0,45.0,35.0,36.0,45.0,35.0,39.0,34.0,42.0,37.0,38.0,33.0,21.0,27.0,31.0,23.0,24.0,15.0,18.0,27.0,20.0,11.0,13.0,17.0,17.0,18.0,13.0,17.0,6.0,10.0,11.0,4.0,2.0,6.0,8.0,5.0,6.0,2.0,4.0,3.0,2.0,6.0 G82634,60.0,65.0,66.0,84.0,72.0,72.0,89.0,81.0,64.0,96.0,81.0,91.0,68.0,62.0,67.0,84.0,76.0,86.0,67.0,45.0,47.0,56.0,56.0,57.0,55.0,74.0,66.0,54.0,59.0,64.0,96.0,92.0,92.0,74.0,103.0,98.0,93.0,101.0,100.0,85.0,84.0,84.0,68.0,92.0,88.0,72.0,77.0,78.0,60.0,93.0,58.0,78.0,82.0,67.0,75.0,73.0,78.0,60.0,69.0,75.0,70.0,57.0,72.0,71.0,53.0,50.0,55.0,43.0,55.0,41.0,29.0,31.0,50.0,58.0,45.0,64.0,47.0,61.0,44.0,42.0,41.0,42.0,26.0,25.0,15.0,21.0,18.0,24.0,9.0,13.0,10.0,5.0,3.0,8.0,7.0,14.0 G82635,7.0,5.0,11.0,5.0,12.0,8.0,13.0,4.0,8.0,11.0,10.0,7.0,8.0,14.0,8.0,11.0,17.0,18.0,12.0,18.0,11.0,11.0,13.0,8.0,11.0,5.0,11.0,13.0,12.0,6.0,12.0,9.0,11.0,9.0,11.0,11.0,12.0,9.0,12.0,11.0,6.0,17.0,15.0,13.0,16.0,23.0,11.0,18.0,15.0,13.0,16.0,15.0,15.0,14.0,15.0,10.0,9.0,14.0,16.0,20.0,15.0,12.0,17.0,9.0,16.0,12.0,12.0,12.0,19.0,12.0,9.0,16.0,12.0,18.0,13.0,17.0,17.0,15.0,21.0,10.0,10.0,10.0,17.0,10.0,8.0,12.0,10.0,10.0,10.0,2.0,6.0,2.0,2.0,,4.0,7.0 G82641,53.0,72.0,59.0,71.0,64.0,61.0,58.0,59.0,68.0,61.0,60.0,68.0,71.0,66.0,60.0,48.0,50.0,50.0,41.0,26.0,30.0,37.0,32.0,39.0,51.0,58.0,60.0,66.0,57.0,71.0,65.0,63.0,83.0,69.0,80.0,66.0,71.0,68.0,72.0,67.0,66.0,73.0,49.0,56.0,51.0,50.0,57.0,27.0,38.0,38.0,37.0,26.0,42.0,30.0,45.0,34.0,31.0,30.0,33.0,37.0,30.0,22.0,27.0,30.0,11.0,18.0,26.0,21.0,28.0,17.0,29.0,13.0,17.0,20.0,15.0,18.0,16.0,15.0,18.0,10.0,12.0,9.0,8.0,4.0,12.0,6.0,4.0,3.0,3.0,1.0,5.0,1.0,3.0,6.0,9.0,2.0 G82647,133.0,143.0,143.0,170.0,194.0,183.0,192.0,160.0,193.0,179.0,205.0,189.0,176.0,182.0,164.0,190.0,154.0,149.0,130.0,100.0,90.0,95.0,68.0,103.0,88.0,141.0,139.0,169.0,143.0,169.0,178.0,211.0,228.0,233.0,245.0,240.0,242.0,246.0,263.0,242.0,244.0,235.0,176.0,234.0,190.0,156.0,153.0,172.0,131.0,116.0,105.0,94.0,102.0,102.0,100.0,100.0,99.0,103.0,99.0,102.0,90.0,66.0,85.0,83.0,70.0,86.0,79.0,71.0,56.0,57.0,67.0,70.0,54.0,51.0,57.0,56.0,46.0,67.0,69.0,52.0,39.0,33.0,36.0,42.0,25.0,33.0,27.0,21.0,15.0,14.0,18.0,11.0,4.0,9.0,7.0,12.0 G82648,19.0,19.0,15.0,11.0,15.0,22.0,15.0,24.0,20.0,18.0,27.0,19.0,41.0,21.0,24.0,37.0,28.0,32.0,27.0,28.0,25.0,23.0,19.0,27.0,27.0,30.0,32.0,34.0,26.0,22.0,18.0,22.0,38.0,28.0,24.0,17.0,30.0,30.0,43.0,27.0,34.0,34.0,31.0,26.0,22.0,33.0,20.0,28.0,30.0,22.0,29.0,21.0,20.0,18.0,19.0,21.0,19.0,20.0,20.0,22.0,12.0,17.0,15.0,24.0,26.0,8.0,15.0,14.0,13.0,4.0,13.0,15.0,18.0,20.0,10.0,11.0,16.0,13.0,12.0,9.0,7.0,8.0,1.0,12.0,6.0,5.0,6.0,4.0,4.0,5.0,1.0,1.0,1.0,3.0,4.0,8.0 G82650,21.0,19.0,26.0,27.0,34.0,28.0,34.0,41.0,28.0,38.0,42.0,47.0,60.0,55.0,53.0,64.0,42.0,63.0,63.0,51.0,39.0,41.0,39.0,47.0,34.0,41.0,32.0,40.0,38.0,38.0,31.0,34.0,41.0,40.0,45.0,47.0,57.0,46.0,55.0,47.0,47.0,49.0,52.0,50.0,63.0,46.0,62.0,52.0,45.0,60.0,61.0,62.0,67.0,59.0,71.0,69.0,60.0,64.0,81.0,80.0,65.0,91.0,86.0,65.0,77.0,76.0,86.0,63.0,65.0,69.0,63.0,78.0,62.0,57.0,68.0,81.0,74.0,85.0,84.0,70.0,59.0,49.0,51.0,36.0,40.0,31.0,46.0,25.0,23.0,24.0,16.0,11.0,16.0,9.0,6.0,17.0 G82652,6.0,3.0,13.0,14.0,9.0,17.0,16.0,14.0,14.0,13.0,10.0,14.0,11.0,12.0,13.0,23.0,13.0,16.0,11.0,8.0,11.0,13.0,9.0,11.0,24.0,10.0,7.0,12.0,10.0,11.0,12.0,12.0,12.0,10.0,19.0,15.0,19.0,21.0,12.0,7.0,24.0,9.0,17.0,20.0,14.0,21.0,19.0,10.0,13.0,11.0,16.0,14.0,20.0,26.0,25.0,25.0,30.0,29.0,29.0,20.0,20.0,27.0,23.0,26.0,23.0,18.0,17.0,17.0,24.0,23.0,24.0,23.0,11.0,23.0,24.0,27.0,29.0,30.0,39.0,31.0,18.0,13.0,23.0,13.0,11.0,9.0,10.0,10.0,8.0,6.0,4.0,2.0,3.0,2.0,3.0,4.0 G82658,29.0,42.0,30.0,32.0,25.0,35.0,20.0,27.0,30.0,28.0,34.0,29.0,35.0,21.0,17.0,26.0,31.0,22.0,28.0,21.0,20.0,20.0,27.0,20.0,22.0,24.0,20.0,30.0,29.0,28.0,33.0,33.0,35.0,35.0,31.0,35.0,30.0,29.0,27.0,32.0,36.0,32.0,30.0,25.0,33.0,29.0,35.0,32.0,29.0,28.0,25.0,33.0,35.0,29.0,32.0,39.0,35.0,46.0,45.0,35.0,53.0,37.0,47.0,38.0,28.0,34.0,30.0,40.0,39.0,32.0,24.0,25.0,24.0,25.0,25.0,30.0,34.0,39.0,34.0,22.0,21.0,17.0,16.0,19.0,13.0,16.0,18.0,10.0,14.0,7.0,6.0,4.0,3.0,2.0,,9.0 G82665,16.0,10.0,11.0,24.0,14.0,15.0,11.0,13.0,18.0,27.0,21.0,20.0,27.0,33.0,26.0,33.0,26.0,17.0,17.0,24.0,20.0,14.0,16.0,18.0,24.0,15.0,17.0,29.0,28.0,21.0,17.0,14.0,22.0,22.0,20.0,20.0,29.0,21.0,24.0,26.0,20.0,27.0,19.0,26.0,25.0,24.0,21.0,15.0,28.0,21.0,24.0,29.0,27.0,36.0,39.0,46.0,51.0,38.0,39.0,48.0,51.0,54.0,61.0,54.0,55.0,51.0,47.0,46.0,48.0,38.0,44.0,47.0,55.0,57.0,53.0,38.0,62.0,65.0,55.0,43.0,52.0,37.0,31.0,35.0,25.0,17.0,29.0,13.0,15.0,17.0,18.0,12.0,6.0,1.0,5.0,18.0 G82666,27.0,45.0,28.0,43.0,31.0,47.0,57.0,54.0,49.0,47.0,67.0,51.0,56.0,51.0,67.0,74.0,58.0,50.0,59.0,49.0,39.0,37.0,36.0,40.0,52.0,40.0,37.0,48.0,50.0,55.0,48.0,62.0,48.0,57.0,63.0,68.0,62.0,72.0,71.0,52.0,53.0,59.0,70.0,62.0,84.0,68.0,60.0,53.0,55.0,74.0,63.0,74.0,75.0,80.0,78.0,64.0,89.0,104.0,97.0,101.0,102.0,102.0,111.0,113.0,105.0,103.0,111.0,111.0,108.0,125.0,96.0,107.0,120.0,111.0,114.0,101.0,108.0,127.0,123.0,100.0,101.0,96.0,74.0,92.0,58.0,65.0,44.0,65.0,48.0,35.0,37.0,22.0,24.0,22.0,13.0,45.0 G82679,30.0,39.0,34.0,37.0,44.0,47.0,37.0,39.0,53.0,42.0,34.0,45.0,43.0,43.0,52.0,56.0,32.0,51.0,58.0,35.0,34.0,43.0,36.0,47.0,42.0,46.0,48.0,52.0,44.0,48.0,50.0,58.0,53.0,51.0,40.0,56.0,45.0,48.0,52.0,50.0,70.0,57.0,43.0,50.0,59.0,57.0,65.0,42.0,40.0,50.0,43.0,41.0,45.0,48.0,33.0,54.0,46.0,38.0,42.0,41.0,53.0,37.0,37.0,32.0,34.0,26.0,39.0,37.0,40.0,41.0,33.0,21.0,31.0,27.0,24.0,23.0,25.0,26.0,23.0,13.0,21.0,20.0,16.0,11.0,7.0,13.0,9.0,9.0,4.0,7.0,8.0,7.0,4.0,5.0,3.0,3.0 G82681,38.0,46.0,42.0,55.0,48.0,37.0,41.0,44.0,42.0,47.0,38.0,46.0,42.0,54.0,33.0,35.0,37.0,30.0,40.0,27.0,18.0,34.0,34.0,29.0,40.0,28.0,38.0,43.0,49.0,37.0,44.0,58.0,49.0,62.0,57.0,57.0,64.0,59.0,56.0,42.0,49.0,49.0,41.0,56.0,42.0,38.0,38.0,31.0,35.0,51.0,41.0,30.0,46.0,53.0,55.0,44.0,54.0,45.0,45.0,44.0,60.0,32.0,32.0,36.0,39.0,36.0,55.0,43.0,35.0,32.0,31.0,39.0,29.0,30.0,33.0,33.0,39.0,27.0,36.0,28.0,29.0,24.0,29.0,12.0,13.0,20.0,19.0,7.0,14.0,6.0,12.0,8.0,11.0,7.0,11.0,9.0 G82682,36.0,39.0,32.0,42.0,35.0,44.0,40.0,47.0,49.0,57.0,37.0,36.0,48.0,45.0,49.0,56.0,45.0,39.0,34.0,40.0,37.0,44.0,43.0,40.0,38.0,31.0,30.0,38.0,48.0,39.0,43.0,56.0,48.0,52.0,50.0,59.0,55.0,47.0,44.0,50.0,52.0,43.0,42.0,48.0,39.0,42.0,38.0,31.0,40.0,27.0,32.0,43.0,39.0,32.0,40.0,42.0,50.0,49.0,48.0,52.0,50.0,57.0,51.0,41.0,56.0,41.0,45.0,47.0,30.0,31.0,30.0,21.0,22.0,17.0,28.0,31.0,28.0,31.0,21.0,17.0,18.0,22.0,15.0,13.0,13.0,14.0,15.0,14.0,11.0,5.0,9.0,1.0,3.0,2.0,4.0,2.0 G82684,14.0,24.0,14.0,19.0,14.0,12.0,19.0,24.0,22.0,21.0,20.0,25.0,25.0,31.0,19.0,16.0,22.0,20.0,18.0,9.0,20.0,18.0,14.0,17.0,23.0,16.0,15.0,23.0,18.0,28.0,19.0,20.0,25.0,23.0,25.0,16.0,20.0,20.0,31.0,36.0,27.0,23.0,24.0,25.0,29.0,25.0,25.0,35.0,27.0,21.0,28.0,31.0,29.0,26.0,36.0,30.0,40.0,35.0,44.0,51.0,40.0,38.0,46.0,41.0,28.0,29.0,42.0,40.0,32.0,37.0,26.0,31.0,46.0,34.0,21.0,35.0,35.0,31.0,40.0,25.0,25.0,21.0,23.0,18.0,10.0,16.0,20.0,12.0,14.0,8.0,10.0,3.0,6.0,,7.0,3.0 G82687,52.0,47.0,45.0,46.0,46.0,42.0,64.0,67.0,49.0,55.0,68.0,70.0,74.0,60.0,64.0,62.0,56.0,48.0,55.0,57.0,45.0,50.0,54.0,44.0,63.0,47.0,48.0,55.0,62.0,51.0,53.0,72.0,64.0,80.0,62.0,68.0,64.0,72.0,71.0,74.0,86.0,72.0,75.0,56.0,53.0,67.0,56.0,37.0,41.0,45.0,49.0,51.0,56.0,62.0,52.0,75.0,60.0,54.0,71.0,70.0,88.0,81.0,66.0,62.0,61.0,52.0,65.0,50.0,54.0,49.0,51.0,47.0,31.0,50.0,39.0,41.0,43.0,48.0,49.0,35.0,38.0,37.0,25.0,28.0,22.0,18.0,15.0,14.0,11.0,7.0,11.0,9.0,2.0,7.0,4.0,8.0 G82691,8.0,13.0,19.0,19.0,23.0,17.0,25.0,19.0,21.0,29.0,25.0,20.0,25.0,21.0,14.0,24.0,19.0,23.0,19.0,14.0,11.0,12.0,13.0,17.0,9.0,19.0,8.0,11.0,12.0,13.0,20.0,18.0,22.0,25.0,34.0,32.0,30.0,24.0,31.0,32.0,27.0,25.0,27.0,22.0,24.0,23.0,19.0,21.0,14.0,17.0,16.0,25.0,13.0,25.0,27.0,28.0,26.0,27.0,17.0,35.0,19.0,21.0,24.0,25.0,30.0,27.0,23.0,21.0,17.0,16.0,22.0,22.0,19.0,16.0,17.0,13.0,13.0,16.0,14.0,16.0,20.0,14.0,13.0,6.0,9.0,6.0,10.0,11.0,6.0,7.0,4.0,2.0,4.0,5.0,3.0,3.0 G82693,74.0,77.0,86.0,99.0,86.0,94.0,111.0,100.0,135.0,97.0,120.0,115.0,105.0,134.0,114.0,117.0,107.0,113.0,126.0,89.0,96.0,83.0,89.0,85.0,91.0,101.0,101.0,114.0,103.0,124.0,114.0,103.0,123.0,107.0,131.0,131.0,136.0,129.0,140.0,121.0,113.0,143.0,128.0,137.0,116.0,117.0,130.0,101.0,123.0,100.0,102.0,115.0,122.0,109.0,124.0,128.0,120.0,108.0,121.0,115.0,126.0,111.0,103.0,103.0,94.0,104.0,90.0,58.0,72.0,85.0,79.0,79.0,70.0,74.0,74.0,100.0,77.0,94.0,99.0,69.0,73.0,66.0,56.0,41.0,48.0,37.0,40.0,35.0,23.0,23.0,16.0,20.0,17.0,17.0,12.0,20.0 G82696,6.0,8.0,11.0,9.0,7.0,6.0,10.0,12.0,18.0,15.0,10.0,15.0,14.0,17.0,10.0,12.0,5.0,13.0,11.0,10.0,5.0,4.0,12.0,4.0,2.0,5.0,17.0,12.0,14.0,15.0,10.0,16.0,14.0,10.0,15.0,14.0,15.0,16.0,15.0,14.0,16.0,13.0,16.0,15.0,17.0,20.0,17.0,14.0,14.0,15.0,10.0,14.0,11.0,13.0,22.0,10.0,11.0,20.0,20.0,19.0,28.0,26.0,15.0,22.0,24.0,16.0,21.0,26.0,27.0,33.0,26.0,13.0,31.0,21.0,22.0,22.0,26.0,26.0,36.0,26.0,21.0,12.0,14.0,12.0,13.0,16.0,19.0,14.0,7.0,7.0,7.0,8.0,7.0,5.0,5.0,17.0 G82697,36.0,47.0,62.0,53.0,65.0,60.0,70.0,71.0,66.0,79.0,69.0,75.0,76.0,78.0,77.0,57.0,68.0,78.0,65.0,54.0,54.0,50.0,56.0,52.0,55.0,59.0,68.0,63.0,50.0,63.0,65.0,63.0,80.0,76.0,91.0,83.0,72.0,94.0,79.0,82.0,84.0,74.0,67.0,66.0,79.0,75.0,69.0,53.0,69.0,62.0,71.0,60.0,60.0,70.0,60.0,59.0,68.0,77.0,58.0,69.0,63.0,59.0,64.0,57.0,57.0,52.0,51.0,34.0,53.0,36.0,45.0,37.0,38.0,37.0,31.0,33.0,32.0,36.0,38.0,21.0,34.0,24.0,21.0,16.0,10.0,10.0,13.0,10.0,11.0,10.0,4.0,5.0,2.0,8.0,1.0,3.0 G82698,28.0,24.0,39.0,19.0,28.0,21.0,27.0,33.0,24.0,23.0,29.0,33.0,24.0,22.0,25.0,24.0,26.0,17.0,17.0,19.0,20.0,13.0,16.0,21.0,13.0,26.0,28.0,25.0,20.0,28.0,33.0,31.0,46.0,29.0,25.0,49.0,25.0,33.0,33.0,29.0,29.0,26.0,34.0,29.0,28.0,22.0,26.0,13.0,24.0,18.0,23.0,13.0,31.0,25.0,18.0,29.0,25.0,19.0,25.0,30.0,31.0,22.0,36.0,24.0,23.0,21.0,18.0,19.0,19.0,10.0,20.0,21.0,18.0,20.0,17.0,25.0,17.0,18.0,17.0,16.0,13.0,17.0,12.0,7.0,12.0,8.0,9.0,5.0,9.0,6.0,2.0,5.0,,2.0,2.0,2.0 G82700,35.0,38.0,46.0,59.0,49.0,43.0,57.0,53.0,58.0,59.0,71.0,66.0,63.0,68.0,71.0,67.0,53.0,75.0,70.0,51.0,39.0,55.0,51.0,42.0,48.0,44.0,50.0,66.0,41.0,50.0,69.0,66.0,67.0,54.0,68.0,70.0,67.0,66.0,65.0,80.0,73.0,72.0,66.0,65.0,66.0,71.0,68.0,49.0,58.0,61.0,54.0,58.0,58.0,60.0,67.0,68.0,70.0,83.0,72.0,67.0,61.0,73.0,69.0,72.0,72.0,62.0,53.0,54.0,73.0,53.0,57.0,55.0,58.0,54.0,58.0,59.0,56.0,46.0,49.0,48.0,43.0,44.0,35.0,31.0,26.0,26.0,31.0,33.0,19.0,11.0,10.0,17.0,16.0,9.0,6.0,16.0 G82702,49.0,50.0,50.0,50.0,72.0,58.0,57.0,61.0,75.0,65.0,60.0,62.0,55.0,54.0,55.0,56.0,56.0,49.0,60.0,47.0,40.0,41.0,29.0,49.0,38.0,47.0,47.0,52.0,55.0,49.0,64.0,56.0,71.0,76.0,70.0,73.0,83.0,70.0,72.0,73.0,62.0,73.0,74.0,69.0,54.0,60.0,70.0,47.0,50.0,40.0,56.0,43.0,45.0,51.0,42.0,52.0,53.0,50.0,53.0,43.0,43.0,36.0,34.0,48.0,31.0,31.0,29.0,26.0,27.0,28.0,18.0,30.0,16.0,24.0,20.0,23.0,19.0,21.0,19.0,15.0,9.0,10.0,16.0,11.0,4.0,10.0,4.0,13.0,6.0,4.0,3.0,1.0,5.0,3.0,,6.0 G82708,19.0,18.0,22.0,29.0,25.0,31.0,25.0,26.0,29.0,36.0,32.0,31.0,31.0,27.0,36.0,29.0,31.0,37.0,25.0,22.0,27.0,26.0,16.0,22.0,26.0,21.0,26.0,28.0,32.0,21.0,31.0,37.0,38.0,31.0,36.0,42.0,34.0,45.0,23.0,34.0,34.0,33.0,34.0,44.0,40.0,26.0,37.0,31.0,30.0,36.0,27.0,23.0,35.0,29.0,23.0,13.0,30.0,19.0,23.0,27.0,21.0,15.0,20.0,20.0,29.0,21.0,21.0,17.0,21.0,15.0,17.0,12.0,6.0,16.0,14.0,11.0,10.0,9.0,10.0,11.0,5.0,9.0,7.0,2.0,3.0,1.0,5.0,2.0,3.0,2.0,3.0,1.0,,,,2.0 G82711,22.0,18.0,17.0,22.0,17.0,29.0,19.0,30.0,31.0,39.0,27.0,28.0,25.0,34.0,35.0,39.0,23.0,28.0,30.0,8.0,17.0,11.0,22.0,15.0,19.0,17.0,20.0,17.0,28.0,26.0,29.0,18.0,42.0,33.0,35.0,44.0,21.0,27.0,31.0,34.0,39.0,43.0,37.0,33.0,35.0,27.0,28.0,32.0,31.0,26.0,31.0,18.0,26.0,37.0,30.0,29.0,31.0,22.0,30.0,22.0,35.0,17.0,25.0,29.0,22.0,28.0,15.0,18.0,30.0,20.0,15.0,12.0,22.0,17.0,17.0,21.0,19.0,30.0,18.0,14.0,12.0,16.0,11.0,15.0,14.0,9.0,9.0,7.0,12.0,4.0,9.0,6.0,2.0,3.0,2.0,6.0 G82719,83.0,92.0,97.0,99.0,97.0,102.0,106.0,109.0,109.0,106.0,98.0,95.0,96.0,127.0,117.0,99.0,113.0,122.0,90.0,84.0,92.0,73.0,86.0,96.0,82.0,94.0,86.0,100.0,114.0,115.0,134.0,126.0,113.0,123.0,149.0,159.0,131.0,130.0,129.0,120.0,114.0,119.0,98.0,117.0,107.0,103.0,102.0,93.0,102.0,99.0,88.0,107.0,97.0,107.0,87.0,104.0,108.0,111.0,121.0,88.0,97.0,100.0,81.0,97.0,112.0,93.0,103.0,83.0,97.0,75.0,72.0,67.0,68.0,74.0,53.0,73.0,75.0,72.0,64.0,33.0,34.0,42.0,42.0,24.0,34.0,31.0,28.0,30.0,16.0,22.0,18.0,11.0,12.0,3.0,8.0,15.0 G82721,11.0,10.0,5.0,9.0,13.0,12.0,11.0,14.0,24.0,17.0,17.0,16.0,16.0,9.0,20.0,10.0,24.0,20.0,16.0,11.0,17.0,11.0,12.0,14.0,10.0,13.0,17.0,14.0,10.0,13.0,15.0,14.0,11.0,16.0,13.0,17.0,19.0,19.0,10.0,24.0,21.0,23.0,18.0,19.0,27.0,20.0,23.0,18.0,23.0,14.0,24.0,18.0,14.0,21.0,25.0,20.0,15.0,25.0,19.0,29.0,33.0,25.0,28.0,31.0,35.0,24.0,31.0,24.0,22.0,21.0,13.0,20.0,24.0,20.0,23.0,21.0,37.0,41.0,32.0,13.0,12.0,14.0,16.0,12.0,4.0,10.0,7.0,5.0,5.0,4.0,7.0,4.0,,,1.0,6.0 G82729,37.0,39.0,38.0,49.0,53.0,50.0,53.0,44.0,58.0,52.0,66.0,57.0,53.0,47.0,57.0,62.0,58.0,62.0,56.0,53.0,66.0,64.0,59.0,54.0,61.0,57.0,66.0,60.0,68.0,59.0,79.0,70.0,78.0,94.0,62.0,86.0,75.0,58.0,66.0,66.0,68.0,58.0,66.0,59.0,53.0,65.0,59.0,41.0,54.0,58.0,55.0,59.0,54.0,65.0,63.0,59.0,73.0,77.0,50.0,64.0,67.0,61.0,70.0,59.0,66.0,62.0,63.0,62.0,60.0,50.0,53.0,49.0,51.0,39.0,40.0,40.0,49.0,58.0,44.0,30.0,31.0,34.0,26.0,23.0,20.0,20.0,21.0,17.0,22.0,14.0,11.0,10.0,7.0,4.0,3.0,14.0 G82730,72.0,63.0,62.0,86.0,53.0,66.0,80.0,82.0,90.0,82.0,77.0,83.0,88.0,90.0,88.0,96.0,85.0,97.0,75.0,57.0,56.0,65.0,59.0,68.0,71.0,80.0,86.0,98.0,90.0,86.0,81.0,98.0,98.0,85.0,82.0,117.0,114.0,95.0,118.0,116.0,81.0,85.0,81.0,89.0,72.0,79.0,91.0,96.0,69.0,66.0,91.0,83.0,89.0,101.0,111.0,104.0,95.0,114.0,83.0,94.0,82.0,76.0,89.0,70.0,67.0,59.0,76.0,60.0,56.0,43.0,53.0,46.0,51.0,49.0,45.0,51.0,45.0,40.0,37.0,26.0,27.0,26.0,31.0,28.0,18.0,19.0,20.0,16.0,15.0,9.0,7.0,11.0,1.0,3.0,2.0,6.0 G82733,9.0,13.0,14.0,17.0,20.0,13.0,20.0,28.0,19.0,36.0,24.0,35.0,47.0,83.0,103.0,93.0,123.0,112.0,99.0,43.0,20.0,18.0,21.0,19.0,16.0,14.0,16.0,12.0,12.0,19.0,11.0,17.0,20.0,15.0,20.0,13.0,27.0,24.0,15.0,25.0,20.0,17.0,31.0,34.0,33.0,19.0,28.0,22.0,16.0,22.0,24.0,26.0,41.0,23.0,36.0,41.0,26.0,33.0,39.0,33.0,23.0,30.0,23.0,25.0,21.0,25.0,22.0,24.0,23.0,19.0,23.0,18.0,24.0,13.0,13.0,21.0,20.0,27.0,13.0,16.0,13.0,16.0,20.0,6.0,5.0,7.0,5.0,6.0,6.0,5.0,6.0,5.0,5.0,2.0,3.0,13.0 G82737,38.0,44.0,59.0,53.0,58.0,73.0,87.0,67.0,81.0,91.0,67.0,90.0,93.0,87.0,86.0,109.0,89.0,74.0,73.0,49.0,39.0,54.0,52.0,56.0,55.0,49.0,50.0,62.0,66.0,58.0,72.0,72.0,73.0,95.0,85.0,89.0,93.0,92.0,88.0,101.0,88.0,75.0,85.0,76.0,100.0,99.0,97.0,55.0,69.0,77.0,84.0,90.0,77.0,70.0,73.0,74.0,57.0,72.0,60.0,63.0,49.0,71.0,55.0,57.0,54.0,49.0,59.0,45.0,52.0,53.0,42.0,43.0,44.0,43.0,52.0,54.0,50.0,66.0,56.0,46.0,47.0,30.0,32.0,34.0,17.0,26.0,20.0,22.0,15.0,17.0,2.0,5.0,7.0,10.0,4.0,6.0 G82741,177.0,202.0,210.0,212.0,191.0,221.0,228.0,229.0,265.0,239.0,241.0,223.0,222.0,212.0,237.0,201.0,189.0,199.0,177.0,178.0,175.0,184.0,179.0,216.0,232.0,213.0,258.0,273.0,253.0,271.0,267.0,269.0,287.0,295.0,312.0,308.0,279.0,274.0,244.0,273.0,247.0,224.0,260.0,250.0,238.0,235.0,219.0,180.0,197.0,151.0,183.0,150.0,150.0,138.0,133.0,146.0,142.0,158.0,125.0,128.0,139.0,148.0,118.0,121.0,103.0,106.0,104.0,97.0,70.0,85.0,80.0,69.0,65.0,59.0,55.0,58.0,51.0,64.0,58.0,47.0,45.0,31.0,35.0,37.0,32.0,33.0,32.0,24.0,26.0,37.0,27.0,22.0,24.0,23.0,16.0,54.0 G82744,193.0,224.0,224.0,218.0,231.0,223.0,252.0,264.0,264.0,267.0,237.0,266.0,273.0,251.0,244.0,227.0,236.0,220.0,188.0,166.0,200.0,192.0,218.0,225.0,230.0,262.0,290.0,304.0,300.0,324.0,353.0,349.0,330.0,318.0,338.0,346.0,343.0,331.0,309.0,306.0,275.0,294.0,300.0,286.0,267.0,268.0,220.0,251.0,193.0,196.0,263.0,199.0,202.0,187.0,207.0,179.0,187.0,230.0,190.0,201.0,213.0,206.0,183.0,174.0,156.0,174.0,167.0,150.0,133.0,137.0,129.0,133.0,128.0,103.0,103.0,110.0,115.0,124.0,115.0,95.0,97.0,65.0,79.0,68.0,48.0,76.0,69.0,54.0,53.0,50.0,38.0,32.0,29.0,24.0,24.0,69.0 G82753,39.0,58.0,43.0,49.0,66.0,63.0,58.0,60.0,64.0,44.0,52.0,67.0,78.0,70.0,71.0,65.0,79.0,70.0,91.0,79.0,65.0,68.0,61.0,62.0,79.0,57.0,64.0,60.0,65.0,65.0,81.0,72.0,65.0,55.0,70.0,60.0,49.0,58.0,67.0,59.0,77.0,63.0,73.0,76.0,61.0,64.0,58.0,53.0,50.0,63.0,53.0,46.0,64.0,42.0,37.0,54.0,47.0,41.0,40.0,37.0,33.0,39.0,43.0,27.0,31.0,33.0,28.0,19.0,18.0,28.0,22.0,19.0,24.0,17.0,17.0,15.0,14.0,16.0,12.0,13.0,12.0,11.0,5.0,8.0,8.0,5.0,7.0,3.0,3.0,5.0,3.0,2.0,1.0,1.0,,1.0 G82754,8.0,14.0,18.0,16.0,15.0,25.0,16.0,23.0,12.0,21.0,15.0,22.0,24.0,24.0,12.0,24.0,27.0,27.0,26.0,19.0,17.0,10.0,19.0,19.0,13.0,17.0,15.0,21.0,19.0,11.0,22.0,20.0,30.0,15.0,19.0,16.0,23.0,16.0,31.0,28.0,20.0,17.0,20.0,17.0,24.0,27.0,17.0,21.0,26.0,15.0,28.0,20.0,22.0,16.0,26.0,30.0,22.0,34.0,28.0,30.0,29.0,34.0,27.0,41.0,30.0,22.0,21.0,22.0,17.0,19.0,20.0,14.0,15.0,18.0,20.0,25.0,19.0,19.0,27.0,17.0,21.0,14.0,16.0,12.0,10.0,5.0,14.0,7.0,4.0,4.0,8.0,6.0,6.0,2.0,1.0,6.0 G82763,13.0,16.0,15.0,16.0,14.0,19.0,17.0,20.0,18.0,20.0,18.0,18.0,29.0,26.0,24.0,21.0,19.0,20.0,9.0,13.0,18.0,20.0,19.0,19.0,21.0,25.0,21.0,24.0,21.0,20.0,17.0,29.0,33.0,26.0,26.0,22.0,18.0,34.0,22.0,28.0,28.0,17.0,23.0,14.0,11.0,28.0,10.0,24.0,28.0,19.0,18.0,16.0,12.0,14.0,17.0,14.0,23.0,12.0,18.0,13.0,16.0,18.0,15.0,12.0,12.0,12.0,17.0,7.0,10.0,8.0,13.0,9.0,9.0,8.0,8.0,10.0,9.0,12.0,12.0,8.0,5.0,5.0,9.0,5.0,3.0,3.0,5.0,5.0,6.0,1.0,2.0,,2.0,3.0,, G82768,25.0,32.0,50.0,38.0,36.0,41.0,43.0,59.0,46.0,42.0,52.0,54.0,55.0,45.0,59.0,40.0,48.0,46.0,40.0,24.0,19.0,17.0,31.0,25.0,34.0,31.0,42.0,33.0,46.0,51.0,45.0,42.0,45.0,40.0,72.0,58.0,65.0,50.0,65.0,66.0,78.0,62.0,75.0,77.0,73.0,76.0,63.0,49.0,58.0,54.0,59.0,48.0,63.0,55.0,54.0,53.0,49.0,39.0,38.0,42.0,42.0,39.0,40.0,37.0,39.0,34.0,40.0,33.0,31.0,23.0,29.0,32.0,29.0,26.0,38.0,32.0,24.0,24.0,28.0,25.0,33.0,26.0,18.0,30.0,18.0,34.0,20.0,23.0,16.0,19.0,17.0,21.0,18.0,25.0,14.0,29.0 G82780,97.0,108.0,99.0,118.0,122.0,100.0,120.0,92.0,105.0,111.0,102.0,98.0,103.0,94.0,102.0,101.0,74.0,88.0,92.0,83.0,95.0,78.0,95.0,111.0,106.0,138.0,159.0,178.0,149.0,147.0,140.0,153.0,167.0,140.0,148.0,142.0,139.0,157.0,160.0,111.0,137.0,131.0,150.0,119.0,131.0,122.0,105.0,82.0,90.0,82.0,87.0,75.0,80.0,74.0,93.0,111.0,91.0,84.0,89.0,93.0,65.0,78.0,70.0,75.0,66.0,57.0,52.0,60.0,56.0,48.0,45.0,45.0,36.0,40.0,43.0,39.0,36.0,45.0,44.0,26.0,29.0,26.0,17.0,25.0,20.0,19.0,17.0,15.0,12.0,10.0,11.0,10.0,6.0,4.0,4.0,11.0 G82790,26.0,24.0,27.0,19.0,26.0,30.0,32.0,41.0,38.0,29.0,37.0,39.0,30.0,32.0,42.0,38.0,43.0,37.0,52.0,30.0,29.0,27.0,34.0,21.0,31.0,25.0,25.0,35.0,36.0,35.0,26.0,28.0,28.0,39.0,37.0,32.0,51.0,31.0,43.0,39.0,30.0,52.0,27.0,37.0,35.0,34.0,43.0,42.0,26.0,49.0,52.0,41.0,51.0,51.0,33.0,62.0,45.0,47.0,46.0,64.0,48.0,54.0,42.0,45.0,43.0,42.0,40.0,36.0,33.0,33.0,34.0,25.0,25.0,27.0,32.0,32.0,26.0,24.0,38.0,26.0,27.0,26.0,25.0,13.0,11.0,19.0,5.0,7.0,13.0,9.0,6.0,4.0,,9.0,2.0,8.0 G82796,34.0,27.0,25.0,32.0,23.0,21.0,27.0,39.0,38.0,45.0,35.0,38.0,38.0,37.0,42.0,49.0,41.0,36.0,33.0,28.0,30.0,30.0,18.0,32.0,35.0,24.0,27.0,31.0,31.0,39.0,29.0,39.0,39.0,40.0,33.0,46.0,50.0,46.0,45.0,51.0,56.0,39.0,46.0,57.0,54.0,60.0,51.0,40.0,49.0,46.0,60.0,52.0,56.0,58.0,48.0,58.0,46.0,66.0,55.0,52.0,56.0,57.0,53.0,65.0,58.0,59.0,45.0,41.0,43.0,54.0,68.0,50.0,68.0,55.0,44.0,50.0,48.0,55.0,54.0,44.0,47.0,29.0,33.0,20.0,22.0,18.0,17.0,19.0,14.0,10.0,9.0,3.0,8.0,11.0,4.0,10.0 G82799,68.0,68.0,69.0,75.0,54.0,99.0,62.0,88.0,102.0,82.0,66.0,95.0,96.0,97.0,89.0,110.0,93.0,85.0,74.0,68.0,63.0,69.0,57.0,67.0,53.0,64.0,85.0,99.0,99.0,65.0,74.0,101.0,102.0,90.0,100.0,95.0,97.0,103.0,94.0,85.0,87.0,88.0,89.0,97.0,77.0,83.0,73.0,66.0,64.0,89.0,79.0,84.0,73.0,84.0,121.0,89.0,113.0,97.0,106.0,115.0,106.0,108.0,108.0,98.0,109.0,83.0,96.0,81.0,84.0,93.0,100.0,54.0,71.0,82.0,62.0,61.0,72.0,81.0,89.0,44.0,66.0,52.0,49.0,32.0,30.0,37.0,34.0,18.0,22.0,10.0,9.0,12.0,11.0,4.0,6.0,14.0 G82802,42.0,27.0,27.0,24.0,35.0,34.0,43.0,29.0,34.0,26.0,26.0,43.0,39.0,33.0,41.0,57.0,103.0,135.0,121.0,130.0,108.0,104.0,110.0,108.0,79.0,65.0,64.0,71.0,57.0,59.0,48.0,61.0,72.0,60.0,51.0,58.0,60.0,43.0,46.0,50.0,53.0,33.0,47.0,49.0,30.0,53.0,51.0,35.0,37.0,29.0,23.0,39.0,21.0,36.0,28.0,27.0,26.0,29.0,28.0,23.0,25.0,24.0,26.0,24.0,24.0,18.0,22.0,22.0,18.0,15.0,11.0,20.0,18.0,23.0,6.0,14.0,12.0,19.0,5.0,12.0,9.0,9.0,14.0,8.0,6.0,6.0,3.0,5.0,7.0,4.0,6.0,3.0,1.0,3.0,1.0,4.0 G82808,64.0,50.0,58.0,74.0,69.0,72.0,74.0,74.0,88.0,75.0,68.0,75.0,76.0,81.0,77.0,69.0,73.0,64.0,56.0,57.0,49.0,60.0,48.0,48.0,49.0,57.0,72.0,45.0,60.0,71.0,81.0,93.0,77.0,80.0,95.0,84.0,74.0,82.0,88.0,78.0,67.0,87.0,70.0,67.0,72.0,64.0,54.0,50.0,47.0,63.0,46.0,62.0,65.0,64.0,71.0,59.0,53.0,57.0,80.0,59.0,70.0,69.0,58.0,52.0,58.0,52.0,49.0,48.0,42.0,44.0,37.0,29.0,21.0,23.0,35.0,28.0,34.0,26.0,40.0,33.0,34.0,25.0,29.0,11.0,13.0,22.0,21.0,20.0,10.0,10.0,16.0,14.0,4.0,5.0,6.0,18.0 G82809,49.0,65.0,72.0,82.0,77.0,55.0,82.0,88.0,68.0,87.0,102.0,85.0,96.0,85.0,102.0,108.0,88.0,77.0,99.0,73.0,64.0,79.0,62.0,79.0,75.0,69.0,85.0,81.0,66.0,69.0,62.0,84.0,81.0,89.0,84.0,108.0,114.0,105.0,91.0,94.0,97.0,84.0,89.0,97.0,104.0,104.0,97.0,103.0,95.0,93.0,108.0,104.0,96.0,116.0,127.0,127.0,121.0,128.0,151.0,119.0,131.0,101.0,123.0,100.0,113.0,90.0,113.0,107.0,89.0,92.0,91.0,90.0,100.0,93.0,77.0,91.0,90.0,135.0,128.0,71.0,100.0,83.0,86.0,58.0,46.0,63.0,59.0,40.0,42.0,36.0,38.0,25.0,16.0,13.0,8.0,24.0 G82888,13.0,24.0,27.0,29.0,36.0,31.0,44.0,36.0,32.0,38.0,42.0,48.0,54.0,48.0,40.0,70.0,38.0,61.0,54.0,34.0,26.0,22.0,42.0,31.0,29.0,23.0,24.0,24.0,34.0,32.0,23.0,28.0,22.0,32.0,28.0,35.0,33.0,22.0,30.0,36.0,48.0,51.0,43.0,54.0,39.0,60.0,62.0,56.0,53.0,51.0,55.0,56.0,58.0,61.0,54.0,54.0,55.0,48.0,46.0,44.0,38.0,27.0,26.0,32.0,26.0,27.0,33.0,26.0,20.0,18.0,10.0,15.0,25.0,21.0,21.0,21.0,17.0,27.0,28.0,18.0,25.0,24.0,20.0,10.0,14.0,17.0,20.0,12.0,10.0,10.0,8.0,9.0,8.0,6.0,7.0,26.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 D81047,27.0,28.0,29.0,37.0,43.0,33.0,39.0,63.0,46.0,51.0,40.0,51.0,43.0,52.0,46.0,47.0,52.0,54.0,40.0,32.0,37.0,42.0,38.0,36.0,32.0,30.0,33.0,22.0,34.0,34.0,31.0,27.0,47.0,47.0,60.0,37.0,49.0,55.0,42.0,44.0,49.0,42.0,41.0,51.0,52.0,51.0,56.0,66.0,50.0,45.0,54.0,69.0,54.0,51.0,74.0,65.0,52.0,69.0,86.0,75.0,76.0,68.0,72.0,46.0,66.0,49.0,48.0,49.0,55.0,52.0,45.0,47.0,57.0,45.0,45.0,35.0,41.0,43.0,72.0,39.0,40.0,45.0,31.0,26.0,20.0,22.0,18.0,15.0,14.0,7.0,10.0,9.0,4.0,9.0,4.0,9.0 E82001,172.0,199.0,185.0,217.0,197.0,237.0,230.0,230.0,239.0,246.0,242.0,300.0,272.0,243.0,288.0,304.0,336.0,337.0,267.0,217.0,175.0,203.0,174.0,187.0,190.0,174.0,209.0,199.0,192.0,185.0,227.0,242.0,247.0,247.0,269.0,293.0,259.0,297.0,270.0,284.0,269.0,278.0,335.0,308.0,302.0,314.0,278.0,315.0,278.0,327.0,304.0,337.0,326.0,367.0,344.0,355.0,323.0,327.0,312.0,340.0,308.0,288.0,326.0,311.0,270.0,255.0,305.0,248.0,265.0,234.0,215.0,181.0,216.0,223.0,209.0,225.0,228.0,251.0,254.0,166.0,196.0,125.0,146.0,102.0,97.0,109.0,116.0,89.0,85.0,70.0,54.0,55.0,36.0,32.0,26.0,57.0 E82002,48.0,48.0,41.0,57.0,52.0,62.0,56.0,70.0,69.0,72.0,55.0,50.0,69.0,70.0,68.0,79.0,79.0,58.0,66.0,57.0,49.0,52.0,72.0,62.0,75.0,69.0,79.0,69.0,88.0,88.0,91.0,86.0,83.0,91.0,71.0,90.0,91.0,94.0,90.0,88.0,81.0,82.0,73.0,91.0,88.0,73.0,67.0,64.0,77.0,66.0,66.0,59.0,59.0,59.0,69.0,49.0,57.0,56.0,62.0,53.0,62.0,51.0,52.0,54.0,52.0,50.0,43.0,49.0,36.0,35.0,39.0,30.0,28.0,29.0,33.0,32.0,27.0,30.0,49.0,29.0,21.0,36.0,26.0,19.0,15.0,20.0,15.0,19.0,14.0,18.0,8.0,8.0,9.0,3.0,4.0,14.0 E82004,26.0,32.0,32.0,28.0,32.0,36.0,27.0,46.0,32.0,29.0,36.0,21.0,34.0,35.0,29.0,22.0,25.0,27.0,19.0,26.0,21.0,21.0,20.0,20.0,36.0,28.0,43.0,46.0,44.0,47.0,40.0,54.0,61.0,51.0,45.0,56.0,43.0,37.0,49.0,48.0,41.0,46.0,50.0,46.0,37.0,32.0,29.0,28.0,31.0,37.0,29.0,26.0,23.0,25.0,25.0,16.0,23.0,15.0,24.0,16.0,13.0,12.0,8.0,16.0,9.0,11.0,9.0,15.0,10.0,11.0,9.0,13.0,9.0,16.0,12.0,17.0,11.0,7.0,9.0,6.0,9.0,3.0,9.0,5.0,4.0,5.0,4.0,3.0,3.0,4.0,2.0,3.0,2.0,2.0,1.0,1.0 E82005,221.0,225.0,266.0,265.0,254.0,275.0,293.0,292.0,289.0,300.0,325.0,325.0,322.0,328.0,335.0,320.0,264.0,296.0,265.0,227.0,205.0,210.0,245.0,210.0,251.0,297.0,288.0,309.0,288.0,343.0,375.0,318.0,389.0,383.0,410.0,412.0,423.0,415.0,416.0,389.0,364.0,400.0,336.0,352.0,377.0,329.0,315.0,258.0,284.0,306.0,291.0,303.0,322.0,347.0,300.0,306.0,344.0,328.0,313.0,335.0,329.0,334.0,335.0,288.0,232.0,253.0,270.0,236.0,211.0,183.0,177.0,152.0,155.0,165.0,158.0,155.0,161.0,185.0,170.0,154.0,128.0,117.0,122.0,110.0,106.0,87.0,83.0,95.0,67.0,55.0,55.0,53.0,30.0,20.0,29.0,62.0 E82006,22.0,34.0,30.0,29.0,20.0,24.0,23.0,33.0,26.0,40.0,42.0,38.0,38.0,37.0,43.0,35.0,43.0,32.0,30.0,37.0,34.0,39.0,27.0,34.0,30.0,33.0,39.0,25.0,41.0,44.0,43.0,44.0,51.0,44.0,51.0,46.0,54.0,41.0,48.0,45.0,43.0,63.0,43.0,49.0,44.0,45.0,42.0,35.0,53.0,49.0,52.0,52.0,64.0,60.0,63.0,38.0,49.0,55.0,63.0,57.0,68.0,50.0,67.0,55.0,45.0,46.0,51.0,45.0,38.0,50.0,37.0,42.0,41.0,43.0,40.0,34.0,43.0,58.0,68.0,43.0,41.0,31.0,32.0,28.0,18.0,31.0,27.0,16.0,11.0,19.0,20.0,12.0,3.0,12.0,11.0,13.0 E82007,53.0,86.0,67.0,83.0,64.0,58.0,67.0,69.0,70.0,93.0,76.0,68.0,81.0,97.0,73.0,69.0,84.0,60.0,54.0,45.0,33.0,42.0,44.0,62.0,50.0,43.0,62.0,54.0,61.0,77.0,71.0,81.0,100.0,87.0,108.0,115.0,104.0,98.0,90.0,85.0,98.0,96.0,91.0,96.0,93.0,98.0,87.0,73.0,78.0,88.0,94.0,109.0,98.0,86.0,98.0,68.0,96.0,98.0,81.0,77.0,79.0,74.0,85.0,79.0,72.0,63.0,70.0,73.0,61.0,65.0,73.0,65.0,52.0,52.0,60.0,52.0,54.0,50.0,67.0,35.0,47.0,31.0,35.0,27.0,30.0,28.0,37.0,15.0,18.0,21.0,13.0,13.0,9.0,11.0,6.0,16.0 E82008,58.0,60.0,62.0,63.0,80.0,69.0,68.0,69.0,62.0,64.0,65.0,51.0,59.0,62.0,69.0,77.0,72.0,64.0,61.0,43.0,39.0,33.0,47.0,50.0,55.0,55.0,59.0,56.0,66.0,69.0,83.0,69.0,91.0,102.0,85.0,92.0,106.0,104.0,109.0,98.0,101.0,96.0,74.0,92.0,98.0,86.0,74.0,64.0,61.0,71.0,89.0,53.0,64.0,74.0,64.0,75.0,76.0,73.0,68.0,81.0,67.0,82.0,66.0,65.0,56.0,62.0,40.0,54.0,48.0,42.0,54.0,50.0,54.0,45.0,40.0,58.0,58.0,68.0,55.0,35.0,50.0,40.0,36.0,30.0,36.0,49.0,31.0,19.0,21.0,21.0,21.0,14.0,13.0,12.0,9.0,13.0 E82009,132.0,136.0,158.0,158.0,154.0,146.0,155.0,151.0,161.0,157.0,144.0,138.0,133.0,148.0,129.0,134.0,131.0,103.0,116.0,78.0,89.0,99.0,89.0,116.0,133.0,148.0,155.0,169.0,162.0,211.0,211.0,206.0,207.0,216.0,236.0,220.0,214.0,229.0,257.0,237.0,184.0,194.0,178.0,177.0,188.0,172.0,175.0,136.0,130.0,102.0,119.0,121.0,137.0,113.0,102.0,147.0,123.0,114.0,117.0,127.0,132.0,117.0,132.0,104.0,111.0,113.0,79.0,73.0,103.0,96.0,70.0,82.0,74.0,78.0,73.0,72.0,78.0,62.0,73.0,63.0,50.0,51.0,46.0,46.0,41.0,31.0,39.0,34.0,36.0,29.0,22.0,19.0,16.0,13.0,8.0,31.0 E82012,56.0,83.0,79.0,87.0,102.0,92.0,85.0,72.0,91.0,94.0,93.0,90.0,82.0,96.0,85.0,82.0,95.0,110.0,91.0,61.0,75.0,76.0,74.0,73.0,92.0,99.0,80.0,78.0,97.0,88.0,97.0,101.0,102.0,95.0,133.0,101.0,107.0,110.0,132.0,115.0,119.0,115.0,137.0,111.0,123.0,121.0,114.0,107.0,98.0,91.0,93.0,93.0,90.0,103.0,96.0,83.0,109.0,112.0,81.0,94.0,95.0,77.0,81.0,73.0,80.0,69.0,72.0,58.0,49.0,54.0,47.0,51.0,42.0,49.0,35.0,55.0,59.0,39.0,59.0,28.0,44.0,42.0,22.0,29.0,19.0,28.0,28.0,21.0,14.0,21.0,13.0,15.0,6.0,9.0,11.0,17.0 E82013,174.0,186.0,197.0,213.0,207.0,205.0,212.0,206.0,240.0,231.0,242.0,241.0,222.0,252.0,244.0,231.0,227.0,220.0,189.0,170.0,174.0,200.0,214.0,200.0,216.0,225.0,252.0,249.0,277.0,270.0,304.0,309.0,294.0,319.0,326.0,306.0,324.0,350.0,280.0,305.0,277.0,314.0,307.0,297.0,337.0,290.0,293.0,281.0,272.0,248.0,221.0,224.0,209.0,231.0,252.0,201.0,200.0,185.0,190.0,217.0,193.0,167.0,176.0,144.0,147.0,141.0,137.0,128.0,132.0,130.0,132.0,122.0,124.0,83.0,108.0,98.0,105.0,115.0,115.0,74.0,84.0,78.0,69.0,46.0,49.0,37.0,59.0,41.0,42.0,41.0,30.0,29.0,26.0,30.0,24.0,46.0 E82014,71.0,69.0,74.0,88.0,88.0,103.0,114.0,132.0,123.0,151.0,141.0,148.0,136.0,156.0,128.0,141.0,165.0,147.0,122.0,86.0,84.0,88.0,92.0,110.0,103.0,111.0,90.0,120.0,89.0,86.0,109.0,102.0,114.0,105.0,101.0,117.0,116.0,108.0,108.0,151.0,141.0,148.0,148.0,151.0,167.0,162.0,155.0,155.0,165.0,179.0,166.0,168.0,163.0,169.0,171.0,146.0,132.0,144.0,157.0,139.0,135.0,110.0,96.0,101.0,106.0,97.0,91.0,102.0,84.0,81.0,78.0,78.0,69.0,75.0,83.0,92.0,69.0,104.0,100.0,61.0,63.0,56.0,48.0,46.0,47.0,56.0,43.0,35.0,33.0,31.0,28.0,27.0,23.0,8.0,11.0,35.0 E82015,33.0,33.0,37.0,40.0,41.0,32.0,37.0,38.0,47.0,34.0,42.0,56.0,51.0,51.0,58.0,57.0,42.0,39.0,47.0,36.0,31.0,37.0,36.0,30.0,51.0,47.0,39.0,50.0,56.0,60.0,62.0,74.0,56.0,65.0,61.0,59.0,73.0,65.0,67.0,72.0,69.0,66.0,55.0,65.0,70.0,78.0,63.0,61.0,56.0,59.0,56.0,48.0,55.0,52.0,77.0,58.0,72.0,71.0,52.0,69.0,41.0,47.0,43.0,41.0,58.0,45.0,47.0,30.0,32.0,42.0,54.0,50.0,37.0,38.0,39.0,33.0,22.0,30.0,36.0,30.0,29.0,29.0,36.0,18.0,22.0,20.0,17.0,20.0,20.0,16.0,13.0,6.0,7.0,3.0,4.0,13.0 E82017,79.0,72.0,92.0,65.0,71.0,69.0,77.0,79.0,74.0,82.0,79.0,71.0,84.0,93.0,83.0,84.0,89.0,88.0,72.0,62.0,56.0,59.0,55.0,62.0,75.0,76.0,92.0,94.0,81.0,86.0,97.0,101.0,106.0,103.0,113.0,102.0,106.0,98.0,105.0,122.0,98.0,100.0,127.0,118.0,101.0,108.0,88.0,92.0,96.0,105.0,84.0,73.0,86.0,84.0,63.0,90.0,67.0,72.0,58.0,78.0,68.0,74.0,64.0,59.0,51.0,56.0,63.0,54.0,43.0,49.0,41.0,50.0,38.0,37.0,39.0,34.0,28.0,30.0,38.0,39.0,28.0,27.0,30.0,26.0,21.0,18.0,20.0,21.0,10.0,20.0,10.0,10.0,7.0,4.0,6.0,14.0 E82018,72.0,74.0,67.0,76.0,82.0,86.0,83.0,88.0,93.0,96.0,82.0,104.0,99.0,103.0,103.0,99.0,95.0,92.0,71.0,71.0,69.0,72.0,77.0,74.0,107.0,100.0,123.0,115.0,104.0,113.0,113.0,111.0,117.0,127.0,120.0,125.0,139.0,134.0,129.0,122.0,124.0,127.0,113.0,133.0,119.0,92.0,119.0,80.0,93.0,96.0,89.0,62.0,93.0,95.0,87.0,84.0,60.0,80.0,77.0,82.0,64.0,75.0,97.0,52.0,53.0,55.0,54.0,56.0,47.0,57.0,60.0,42.0,36.0,52.0,48.0,41.0,43.0,55.0,64.0,28.0,30.0,43.0,34.0,24.0,22.0,27.0,18.0,28.0,15.0,12.0,16.0,12.0,12.0,5.0,3.0,23.0 E82019,46.0,50.0,54.0,64.0,54.0,59.0,66.0,83.0,76.0,78.0,74.0,104.0,74.0,91.0,89.0,87.0,103.0,83.0,80.0,53.0,55.0,86.0,79.0,62.0,66.0,67.0,61.0,67.0,69.0,89.0,74.0,74.0,70.0,79.0,78.0,65.0,87.0,89.0,78.0,75.0,89.0,82.0,69.0,92.0,125.0,102.0,89.0,108.0,97.0,95.0,111.0,99.0,117.0,123.0,122.0,110.0,122.0,141.0,136.0,143.0,140.0,131.0,126.0,140.0,117.0,112.0,116.0,91.0,89.0,89.0,80.0,86.0,89.0,85.0,96.0,109.0,92.0,116.0,131.0,83.0,89.0,81.0,68.0,61.0,50.0,56.0,50.0,44.0,40.0,32.0,38.0,28.0,16.0,16.0,16.0,40.0 E82020,23.0,28.0,22.0,24.0,30.0,24.0,42.0,28.0,39.0,47.0,45.0,44.0,44.0,33.0,46.0,37.0,41.0,32.0,41.0,40.0,36.0,41.0,25.0,37.0,40.0,30.0,42.0,40.0,32.0,41.0,33.0,43.0,49.0,60.0,47.0,35.0,50.0,39.0,52.0,61.0,61.0,55.0,56.0,52.0,60.0,42.0,42.0,37.0,45.0,39.0,47.0,43.0,48.0,49.0,48.0,38.0,48.0,32.0,38.0,30.0,42.0,44.0,34.0,36.0,35.0,34.0,34.0,32.0,38.0,37.0,26.0,27.0,19.0,25.0,25.0,24.0,21.0,19.0,10.0,23.0,26.0,18.0,12.0,11.0,11.0,17.0,14.0,17.0,10.0,4.0,3.0,6.0,4.0,4.0,2.0,9.0 E82021,23.0,22.0,19.0,32.0,27.0,37.0,34.0,24.0,29.0,35.0,40.0,45.0,39.0,33.0,53.0,38.0,43.0,39.0,43.0,29.0,28.0,31.0,29.0,23.0,34.0,29.0,28.0,24.0,31.0,21.0,26.0,33.0,29.0,35.0,25.0,31.0,40.0,43.0,47.0,34.0,40.0,48.0,48.0,43.0,37.0,42.0,51.0,44.0,43.0,36.0,46.0,43.0,39.0,52.0,54.0,52.0,65.0,49.0,52.0,50.0,60.0,68.0,45.0,65.0,49.0,44.0,50.0,40.0,55.0,41.0,41.0,30.0,33.0,33.0,34.0,39.0,33.0,48.0,37.0,16.0,38.0,27.0,17.0,16.0,12.0,19.0,11.0,18.0,12.0,16.0,3.0,5.0,11.0,5.0,3.0,13.0 E82022,101.0,100.0,100.0,89.0,76.0,111.0,119.0,117.0,98.0,96.0,122.0,109.0,100.0,103.0,111.0,106.0,98.0,99.0,87.0,77.0,65.0,88.0,81.0,106.0,101.0,122.0,115.0,151.0,161.0,134.0,190.0,153.0,185.0,141.0,157.0,144.0,156.0,165.0,150.0,140.0,149.0,133.0,151.0,134.0,137.0,167.0,121.0,107.0,128.0,135.0,111.0,99.0,120.0,119.0,122.0,115.0,112.0,110.0,90.0,111.0,96.0,95.0,114.0,111.0,85.0,66.0,84.0,85.0,79.0,76.0,60.0,55.0,59.0,72.0,66.0,64.0,62.0,69.0,73.0,51.0,51.0,44.0,53.0,36.0,28.0,26.0,33.0,43.0,28.0,26.0,23.0,18.0,20.0,19.0,11.0,31.0 E82023,49.0,61.0,61.0,60.0,58.0,69.0,74.0,74.0,72.0,78.0,86.0,88.0,97.0,70.0,91.0,69.0,71.0,87.0,69.0,53.0,38.0,53.0,63.0,85.0,105.0,80.0,90.0,120.0,109.0,95.0,103.0,108.0,103.0,111.0,91.0,101.0,122.0,107.0,118.0,103.0,99.0,117.0,93.0,106.0,95.0,85.0,73.0,61.0,78.0,60.0,78.0,68.0,66.0,70.0,60.0,67.0,75.0,49.0,47.0,60.0,51.0,47.0,57.0,64.0,45.0,54.0,47.0,48.0,51.0,42.0,34.0,37.0,31.0,26.0,29.0,24.0,27.0,28.0,37.0,21.0,19.0,19.0,12.0,16.0,20.0,9.0,9.0,14.0,11.0,12.0,10.0,6.0,11.0,7.0,5.0,16.0 E82024,88.0,102.0,82.0,113.0,84.0,69.0,86.0,83.0,81.0,98.0,78.0,67.0,101.0,77.0,93.0,98.0,84.0,98.0,91.0,77.0,83.0,84.0,92.0,107.0,116.0,108.0,112.0,130.0,142.0,139.0,141.0,158.0,154.0,157.0,141.0,148.0,122.0,132.0,129.0,105.0,134.0,122.0,95.0,105.0,105.0,128.0,109.0,106.0,114.0,110.0,118.0,110.0,136.0,94.0,118.0,121.0,137.0,113.0,130.0,129.0,136.0,119.0,134.0,95.0,95.0,84.0,71.0,82.0,70.0,77.0,58.0,64.0,65.0,57.0,64.0,59.0,68.0,57.0,73.0,58.0,73.0,55.0,52.0,42.0,30.0,36.0,43.0,38.0,38.0,28.0,30.0,33.0,26.0,14.0,10.0,47.0 E82027,39.0,39.0,48.0,50.0,51.0,54.0,56.0,58.0,73.0,75.0,76.0,61.0,72.0,82.0,83.0,68.0,58.0,74.0,69.0,65.0,68.0,79.0,87.0,92.0,94.0,123.0,88.0,88.0,91.0,82.0,66.0,70.0,71.0,77.0,79.0,68.0,71.0,57.0,69.0,72.0,91.0,81.0,83.0,80.0,94.0,79.0,86.0,86.0,82.0,77.0,86.0,87.0,79.0,74.0,90.0,74.0,97.0,97.0,91.0,93.0,73.0,83.0,75.0,70.0,71.0,55.0,75.0,65.0,66.0,61.0,70.0,61.0,68.0,48.0,55.0,55.0,79.0,71.0,73.0,51.0,74.0,51.0,43.0,40.0,52.0,37.0,44.0,40.0,34.0,36.0,28.0,26.0,20.0,24.0,14.0,38.0 E82031,97.0,85.0,75.0,86.0,81.0,81.0,80.0,87.0,101.0,114.0,111.0,118.0,112.0,105.0,120.0,119.0,106.0,98.0,102.0,63.0,60.0,71.0,83.0,108.0,107.0,110.0,135.0,149.0,160.0,179.0,182.0,200.0,173.0,189.0,175.0,180.0,179.0,169.0,146.0,151.0,166.0,132.0,145.0,171.0,153.0,170.0,146.0,152.0,125.0,153.0,135.0,138.0,134.0,133.0,116.0,117.0,122.0,128.0,109.0,125.0,116.0,113.0,107.0,104.0,84.0,77.0,79.0,85.0,70.0,67.0,63.0,48.0,47.0,40.0,46.0,43.0,48.0,48.0,35.0,34.0,38.0,34.0,29.0,24.0,30.0,32.0,32.0,27.0,34.0,23.0,19.0,14.0,14.0,14.0,12.0,34.0 E82032,64.0,59.0,72.0,86.0,74.0,88.0,81.0,90.0,86.0,111.0,99.0,96.0,120.0,109.0,107.0,105.0,95.0,104.0,109.0,81.0,93.0,91.0,63.0,69.0,76.0,62.0,72.0,65.0,86.0,91.0,85.0,91.0,87.0,105.0,103.0,104.0,92.0,109.0,105.0,101.0,115.0,111.0,128.0,117.0,129.0,114.0,114.0,116.0,91.0,79.0,103.0,91.0,88.0,113.0,109.0,104.0,110.0,103.0,96.0,110.0,85.0,94.0,98.0,105.0,99.0,78.0,89.0,82.0,81.0,73.0,93.0,76.0,73.0,49.0,56.0,64.0,66.0,76.0,60.0,44.0,46.0,49.0,35.0,30.0,27.0,33.0,22.0,19.0,21.0,15.0,16.0,12.0,9.0,13.0,9.0,20.0 E82035,50.0,56.0,73.0,90.0,74.0,75.0,73.0,80.0,88.0,79.0,55.0,62.0,70.0,71.0,71.0,89.0,72.0,72.0,62.0,49.0,50.0,69.0,50.0,56.0,77.0,74.0,78.0,68.0,75.0,73.0,82.0,77.0,90.0,95.0,100.0,104.0,93.0,87.0,94.0,109.0,107.0,101.0,78.0,83.0,100.0,77.0,68.0,88.0,71.0,68.0,88.0,58.0,87.0,80.0,88.0,78.0,86.0,86.0,93.0,81.0,73.0,87.0,97.0,83.0,72.0,80.0,71.0,63.0,72.0,59.0,61.0,58.0,56.0,53.0,58.0,71.0,59.0,61.0,60.0,46.0,70.0,37.0,43.0,27.0,32.0,27.0,32.0,36.0,30.0,24.0,21.0,23.0,20.0,19.0,9.0,38.0 E82037,50.0,61.0,74.0,72.0,74.0,82.0,80.0,80.0,99.0,114.0,85.0,124.0,131.0,125.0,129.0,142.0,133.0,129.0,104.0,66.0,54.0,54.0,71.0,87.0,61.0,59.0,44.0,52.0,45.0,55.0,50.0,55.0,65.0,66.0,63.0,72.0,83.0,91.0,79.0,83.0,112.0,92.0,106.0,102.0,118.0,153.0,132.0,125.0,122.0,122.0,113.0,125.0,137.0,123.0,111.0,120.0,127.0,116.0,109.0,106.0,102.0,82.0,89.0,93.0,90.0,112.0,84.0,84.0,94.0,81.0,85.0,80.0,81.0,75.0,72.0,84.0,91.0,100.0,111.0,91.0,59.0,62.0,66.0,48.0,43.0,52.0,49.0,38.0,50.0,35.0,28.0,18.0,18.0,15.0,11.0,17.0 E82038,73.0,95.0,108.0,106.0,110.0,106.0,119.0,113.0,132.0,124.0,133.0,129.0,86.0,137.0,128.0,120.0,135.0,130.0,101.0,94.0,88.0,88.0,89.0,94.0,87.0,96.0,101.0,66.0,76.0,92.0,97.0,109.0,122.0,132.0,157.0,125.0,155.0,139.0,129.0,125.0,107.0,111.0,121.0,118.0,133.0,120.0,130.0,103.0,125.0,119.0,133.0,117.0,161.0,153.0,147.0,153.0,156.0,160.0,185.0,178.0,154.0,138.0,151.0,135.0,143.0,142.0,136.0,124.0,107.0,130.0,99.0,105.0,103.0,95.0,113.0,108.0,118.0,121.0,123.0,81.0,93.0,82.0,73.0,60.0,49.0,39.0,43.0,41.0,39.0,38.0,31.0,30.0,16.0,12.0,10.0,29.0 E82040,82.0,117.0,105.0,109.0,102.0,109.0,114.0,124.0,111.0,118.0,109.0,126.0,132.0,140.0,128.0,143.0,141.0,145.0,120.0,90.0,86.0,91.0,113.0,111.0,96.0,111.0,121.0,140.0,135.0,135.0,155.0,131.0,165.0,170.0,164.0,183.0,159.0,161.0,168.0,165.0,159.0,160.0,151.0,166.0,172.0,149.0,151.0,134.0,121.0,147.0,114.0,115.0,131.0,131.0,157.0,133.0,133.0,134.0,116.0,148.0,138.0,124.0,135.0,112.0,129.0,135.0,106.0,104.0,113.0,109.0,105.0,91.0,76.0,78.0,78.0,71.0,67.0,56.0,86.0,58.0,59.0,56.0,40.0,47.0,35.0,50.0,38.0,32.0,49.0,34.0,25.0,34.0,15.0,14.0,12.0,33.0 E82041,53.0,79.0,63.0,75.0,75.0,84.0,88.0,80.0,70.0,76.0,71.0,73.0,81.0,77.0,76.0,78.0,75.0,74.0,94.0,56.0,41.0,67.0,69.0,81.0,83.0,66.0,61.0,84.0,103.0,102.0,97.0,119.0,122.0,114.0,104.0,123.0,110.0,119.0,116.0,107.0,114.0,78.0,99.0,99.0,93.0,106.0,80.0,88.0,97.0,92.0,84.0,68.0,83.0,96.0,65.0,78.0,59.0,77.0,73.0,96.0,89.0,70.0,68.0,79.0,54.0,62.0,43.0,51.0,40.0,62.0,35.0,39.0,32.0,44.0,32.0,29.0,40.0,38.0,45.0,33.0,27.0,38.0,36.0,24.0,20.0,26.0,21.0,25.0,18.0,24.0,15.0,17.0,6.0,13.0,5.0,11.0 E82042,48.0,49.0,50.0,45.0,42.0,53.0,59.0,57.0,45.0,48.0,66.0,58.0,71.0,46.0,74.0,58.0,61.0,68.0,60.0,59.0,49.0,42.0,56.0,52.0,66.0,71.0,59.0,71.0,73.0,69.0,56.0,82.0,64.0,65.0,86.0,91.0,64.0,70.0,71.0,84.0,81.0,68.0,62.0,66.0,72.0,76.0,53.0,65.0,73.0,49.0,72.0,65.0,61.0,74.0,59.0,56.0,81.0,78.0,66.0,68.0,59.0,56.0,66.0,38.0,53.0,33.0,42.0,34.0,42.0,41.0,41.0,31.0,32.0,28.0,33.0,29.0,23.0,36.0,43.0,24.0,31.0,20.0,19.0,22.0,24.0,15.0,18.0,16.0,10.0,10.0,10.0,4.0,9.0,6.0,5.0,13.0 E82043,61.0,71.0,78.0,91.0,84.0,93.0,88.0,95.0,74.0,89.0,76.0,69.0,85.0,98.0,89.0,114.0,88.0,83.0,69.0,72.0,63.0,69.0,55.0,72.0,61.0,99.0,77.0,84.0,82.0,69.0,84.0,85.0,87.0,96.0,107.0,104.0,105.0,118.0,105.0,122.0,137.0,113.0,114.0,110.0,118.0,126.0,96.0,113.0,98.0,108.0,119.0,89.0,99.0,89.0,105.0,74.0,92.0,81.0,83.0,115.0,98.0,89.0,84.0,95.0,87.0,89.0,95.0,73.0,75.0,82.0,89.0,74.0,74.0,75.0,64.0,71.0,84.0,83.0,80.0,63.0,63.0,63.0,53.0,41.0,36.0,36.0,42.0,33.0,36.0,33.0,23.0,29.0,28.0,24.0,16.0,52.0 E82044,52.0,61.0,56.0,55.0,70.0,65.0,80.0,79.0,64.0,84.0,78.0,91.0,91.0,91.0,77.0,96.0,87.0,94.0,89.0,67.0,47.0,55.0,65.0,77.0,69.0,79.0,79.0,89.0,80.0,89.0,82.0,91.0,96.0,92.0,100.0,106.0,92.0,97.0,78.0,106.0,108.0,103.0,91.0,104.0,134.0,108.0,100.0,89.0,94.0,94.0,126.0,98.0,95.0,114.0,121.0,97.0,99.0,99.0,105.0,109.0,110.0,70.0,102.0,93.0,100.0,79.0,85.0,73.0,94.0,81.0,73.0,51.0,64.0,70.0,80.0,62.0,72.0,78.0,89.0,45.0,56.0,46.0,49.0,53.0,34.0,45.0,31.0,40.0,33.0,28.0,25.0,22.0,13.0,12.0,13.0,39.0 E82045,98.0,104.0,92.0,113.0,100.0,87.0,114.0,102.0,96.0,108.0,115.0,109.0,94.0,122.0,98.0,108.0,109.0,83.0,98.0,71.0,82.0,89.0,105.0,136.0,157.0,168.0,213.0,192.0,173.0,233.0,184.0,194.0,195.0,190.0,203.0,204.0,198.0,190.0,171.0,171.0,147.0,139.0,139.0,154.0,130.0,137.0,114.0,114.0,112.0,86.0,98.0,101.0,93.0,91.0,106.0,88.0,87.0,87.0,90.0,77.0,68.0,68.0,62.0,66.0,57.0,68.0,57.0,62.0,48.0,42.0,53.0,44.0,40.0,42.0,40.0,45.0,29.0,35.0,33.0,29.0,24.0,33.0,34.0,33.0,29.0,25.0,21.0,17.0,15.0,10.0,7.0,13.0,9.0,9.0,9.0,21.0 E82046,34.0,42.0,38.0,46.0,52.0,48.0,67.0,47.0,51.0,55.0,66.0,53.0,63.0,73.0,70.0,73.0,60.0,63.0,59.0,47.0,43.0,63.0,50.0,50.0,48.0,60.0,58.0,57.0,48.0,44.0,40.0,48.0,74.0,56.0,60.0,62.0,50.0,71.0,70.0,63.0,55.0,60.0,67.0,69.0,66.0,82.0,84.0,77.0,57.0,89.0,75.0,69.0,68.0,86.0,66.0,84.0,84.0,88.0,96.0,82.0,76.0,75.0,89.0,68.0,88.0,62.0,70.0,73.0,60.0,53.0,48.0,56.0,55.0,58.0,58.0,56.0,52.0,64.0,56.0,34.0,58.0,38.0,43.0,30.0,35.0,25.0,23.0,20.0,32.0,10.0,17.0,9.0,13.0,10.0,11.0,19.0 E82050,30.0,25.0,24.0,32.0,25.0,34.0,32.0,29.0,45.0,43.0,35.0,39.0,25.0,33.0,31.0,34.0,30.0,34.0,26.0,33.0,22.0,18.0,18.0,24.0,23.0,33.0,29.0,24.0,32.0,28.0,43.0,39.0,35.0,46.0,40.0,45.0,39.0,52.0,45.0,40.0,46.0,39.0,43.0,49.0,47.0,35.0,34.0,27.0,29.0,31.0,25.0,28.0,31.0,28.0,31.0,22.0,40.0,28.0,36.0,25.0,30.0,20.0,34.0,30.0,27.0,23.0,22.0,29.0,35.0,37.0,23.0,34.0,32.0,20.0,19.0,21.0,23.0,25.0,24.0,17.0,13.0,14.0,10.0,11.0,7.0,6.0,6.0,1.0,4.0,2.0,,2.0,2.0,1.0,2.0,1.0 E82051,65.0,70.0,96.0,82.0,86.0,94.0,81.0,94.0,104.0,103.0,97.0,97.0,101.0,87.0,104.0,104.0,79.0,95.0,65.0,61.0,55.0,74.0,60.0,77.0,65.0,66.0,88.0,74.0,97.0,82.0,98.0,97.0,115.0,96.0,115.0,108.0,104.0,131.0,130.0,116.0,101.0,113.0,90.0,105.0,117.0,119.0,108.0,94.0,83.0,85.0,88.0,77.0,80.0,85.0,86.0,72.0,79.0,81.0,80.0,71.0,95.0,81.0,86.0,78.0,83.0,80.0,92.0,95.0,64.0,73.0,60.0,71.0,60.0,56.0,51.0,44.0,68.0,63.0,47.0,32.0,45.0,37.0,48.0,31.0,33.0,27.0,27.0,22.0,24.0,16.0,19.0,16.0,15.0,9.0,7.0,22.0 E82053,90.0,105.0,85.0,111.0,113.0,114.0,107.0,121.0,116.0,115.0,121.0,109.0,112.0,113.0,112.0,114.0,91.0,92.0,84.0,63.0,73.0,52.0,58.0,87.0,93.0,119.0,94.0,128.0,128.0,110.0,144.0,138.0,148.0,152.0,172.0,158.0,153.0,157.0,155.0,159.0,154.0,151.0,145.0,143.0,139.0,168.0,130.0,129.0,118.0,97.0,115.0,119.0,114.0,115.0,128.0,112.0,102.0,81.0,93.0,94.0,84.0,86.0,76.0,78.0,97.0,96.0,76.0,79.0,72.0,66.0,76.0,69.0,52.0,58.0,59.0,69.0,70.0,73.0,72.0,50.0,53.0,76.0,45.0,48.0,41.0,38.0,40.0,33.0,23.0,30.0,26.0,17.0,19.0,16.0,23.0,31.0 E82055,43.0,49.0,59.0,65.0,66.0,70.0,75.0,60.0,86.0,80.0,89.0,93.0,77.0,77.0,105.0,73.0,95.0,80.0,86.0,52.0,52.0,55.0,55.0,62.0,78.0,70.0,67.0,68.0,57.0,78.0,58.0,54.0,63.0,71.0,69.0,72.0,73.0,73.0,73.0,86.0,79.0,94.0,88.0,109.0,93.0,112.0,107.0,78.0,103.0,90.0,94.0,97.0,99.0,108.0,87.0,96.0,102.0,97.0,97.0,104.0,88.0,83.0,100.0,82.0,79.0,73.0,73.0,64.0,58.0,77.0,73.0,65.0,73.0,70.0,93.0,66.0,86.0,81.0,81.0,79.0,66.0,64.0,60.0,51.0,46.0,40.0,47.0,36.0,22.0,26.0,31.0,18.0,16.0,13.0,11.0,17.0 E82056,53.0,52.0,57.0,59.0,61.0,54.0,67.0,57.0,56.0,77.0,64.0,69.0,74.0,70.0,70.0,62.0,59.0,56.0,58.0,49.0,48.0,47.0,47.0,49.0,55.0,55.0,64.0,50.0,82.0,84.0,64.0,69.0,91.0,80.0,91.0,98.0,91.0,96.0,84.0,90.0,107.0,71.0,80.0,54.0,71.0,68.0,78.0,54.0,65.0,58.0,52.0,62.0,46.0,51.0,61.0,65.0,59.0,67.0,53.0,64.0,62.0,68.0,75.0,59.0,76.0,58.0,65.0,41.0,38.0,37.0,44.0,33.0,35.0,35.0,35.0,39.0,34.0,41.0,30.0,28.0,31.0,23.0,17.0,21.0,16.0,16.0,17.0,16.0,19.0,19.0,16.0,11.0,9.0,8.0,11.0,6.0 E82058,41.0,37.0,39.0,43.0,35.0,37.0,35.0,34.0,56.0,42.0,55.0,36.0,54.0,44.0,45.0,59.0,45.0,48.0,152.0,277.0,353.0,445.0,427.0,430.0,408.0,299.0,254.0,224.0,174.0,158.0,121.0,92.0,89.0,87.0,80.0,85.0,79.0,68.0,74.0,64.0,69.0,71.0,71.0,57.0,69.0,64.0,53.0,72.0,50.0,65.0,59.0,51.0,77.0,84.0,59.0,60.0,63.0,65.0,52.0,55.0,83.0,67.0,62.0,70.0,77.0,64.0,56.0,62.0,44.0,44.0,48.0,43.0,47.0,48.0,37.0,45.0,40.0,57.0,41.0,37.0,49.0,31.0,26.0,25.0,32.0,32.0,24.0,8.0,22.0,17.0,18.0,10.0,6.0,11.0,8.0,24.0 E82059,34.0,48.0,42.0,43.0,44.0,57.0,59.0,63.0,50.0,75.0,73.0,82.0,80.0,93.0,57.0,87.0,75.0,79.0,72.0,40.0,43.0,42.0,52.0,53.0,57.0,44.0,47.0,59.0,60.0,49.0,54.0,56.0,69.0,58.0,59.0,64.0,70.0,59.0,76.0,75.0,75.0,88.0,88.0,93.0,97.0,105.0,87.0,92.0,81.0,66.0,73.0,84.0,104.0,89.0,86.0,80.0,81.0,78.0,83.0,77.0,59.0,73.0,64.0,56.0,70.0,27.0,50.0,43.0,39.0,47.0,40.0,54.0,38.0,37.0,43.0,45.0,46.0,54.0,51.0,41.0,46.0,33.0,33.0,27.0,19.0,23.0,20.0,28.0,21.0,13.0,11.0,15.0,11.0,7.0,7.0,25.0 E82060,97.0,107.0,99.0,117.0,131.0,138.0,138.0,161.0,154.0,182.0,169.0,148.0,167.0,168.0,144.0,149.0,157.0,145.0,108.0,106.0,82.0,91.0,104.0,103.0,96.0,127.0,124.0,114.0,123.0,140.0,127.0,151.0,151.0,147.0,164.0,181.0,167.0,189.0,196.0,179.0,193.0,200.0,194.0,199.0,211.0,200.0,177.0,192.0,171.0,180.0,137.0,145.0,153.0,151.0,159.0,121.0,134.0,137.0,121.0,120.0,120.0,129.0,108.0,106.0,110.0,113.0,106.0,94.0,101.0,125.0,76.0,89.0,77.0,76.0,85.0,95.0,64.0,65.0,98.0,61.0,52.0,52.0,52.0,43.0,35.0,36.0,40.0,21.0,25.0,17.0,16.0,15.0,21.0,12.0,8.0,34.0 E82061,64.0,65.0,74.0,71.0,73.0,69.0,82.0,82.0,75.0,89.0,69.0,82.0,70.0,78.0,93.0,74.0,76.0,69.0,65.0,74.0,73.0,54.0,75.0,62.0,85.0,79.0,92.0,92.0,88.0,92.0,105.0,97.0,97.0,100.0,103.0,109.0,95.0,112.0,109.0,102.0,95.0,94.0,106.0,83.0,105.0,108.0,95.0,79.0,86.0,95.0,94.0,82.0,87.0,110.0,93.0,93.0,80.0,94.0,92.0,97.0,86.0,89.0,80.0,98.0,91.0,67.0,77.0,77.0,57.0,66.0,64.0,64.0,67.0,78.0,61.0,65.0,70.0,78.0,76.0,50.0,60.0,48.0,40.0,38.0,42.0,55.0,37.0,36.0,24.0,31.0,21.0,17.0,16.0,14.0,11.0,26.0 E82062,62.0,71.0,79.0,81.0,79.0,82.0,74.0,94.0,80.0,100.0,95.0,102.0,92.0,97.0,86.0,91.0,96.0,81.0,72.0,72.0,65.0,76.0,68.0,76.0,84.0,84.0,85.0,95.0,85.0,78.0,97.0,87.0,117.0,111.0,123.0,108.0,111.0,111.0,110.0,103.0,119.0,126.0,122.0,114.0,136.0,104.0,97.0,96.0,86.0,98.0,102.0,110.0,112.0,96.0,108.0,110.0,109.0,106.0,121.0,144.0,111.0,111.0,110.0,94.0,99.0,100.0,83.0,87.0,105.0,80.0,91.0,88.0,63.0,85.0,74.0,77.0,81.0,86.0,88.0,61.0,68.0,57.0,65.0,49.0,44.0,40.0,43.0,36.0,36.0,41.0,28.0,29.0,18.0,15.0,12.0,39.0 E82063,65.0,64.0,55.0,92.0,80.0,78.0,78.0,122.0,93.0,84.0,103.0,81.0,96.0,79.0,90.0,94.0,79.0,100.0,65.0,74.0,49.0,63.0,49.0,79.0,61.0,64.0,79.0,79.0,65.0,65.0,92.0,85.0,94.0,101.0,100.0,105.0,107.0,119.0,130.0,109.0,118.0,106.0,88.0,113.0,112.0,100.0,97.0,80.0,80.0,90.0,75.0,67.0,85.0,83.0,90.0,104.0,88.0,75.0,93.0,77.0,74.0,66.0,74.0,63.0,71.0,61.0,64.0,59.0,44.0,52.0,36.0,61.0,39.0,40.0,38.0,47.0,36.0,36.0,64.0,36.0,31.0,39.0,31.0,25.0,24.0,29.0,25.0,15.0,11.0,16.0,13.0,10.0,1.0,7.0,5.0,8.0 E82064,28.0,32.0,23.0,22.0,21.0,29.0,34.0,38.0,40.0,43.0,54.0,50.0,56.0,52.0,64.0,51.0,60.0,56.0,56.0,34.0,28.0,33.0,41.0,38.0,53.0,36.0,44.0,40.0,34.0,32.0,39.0,23.0,26.0,33.0,35.0,25.0,39.0,49.0,37.0,39.0,41.0,48.0,48.0,48.0,64.0,69.0,63.0,56.0,54.0,65.0,61.0,67.0,70.0,66.0,51.0,64.0,55.0,61.0,49.0,57.0,45.0,53.0,48.0,51.0,42.0,40.0,42.0,41.0,31.0,31.0,30.0,31.0,32.0,30.0,37.0,30.0,27.0,35.0,42.0,27.0,24.0,32.0,22.0,29.0,22.0,24.0,24.0,16.0,20.0,24.0,15.0,15.0,20.0,8.0,8.0,29.0 E82066,12.0,18.0,16.0,11.0,17.0,19.0,17.0,14.0,26.0,17.0,21.0,22.0,21.0,14.0,22.0,25.0,19.0,19.0,14.0,12.0,16.0,11.0,22.0,14.0,16.0,29.0,16.0,26.0,20.0,26.0,17.0,14.0,18.0,26.0,27.0,31.0,25.0,34.0,27.0,21.0,17.0,23.0,28.0,28.0,28.0,17.0,35.0,24.0,28.0,27.0,34.0,25.0,33.0,28.0,33.0,23.0,34.0,34.0,33.0,29.0,32.0,26.0,25.0,28.0,17.0,20.0,24.0,19.0,16.0,20.0,16.0,15.0,8.0,10.0,14.0,17.0,15.0,16.0,19.0,7.0,12.0,12.0,18.0,6.0,9.0,9.0,9.0,10.0,8.0,11.0,10.0,2.0,2.0,5.0,4.0,10.0 E82067,57.0,62.0,53.0,73.0,73.0,71.0,73.0,76.0,82.0,105.0,100.0,114.0,106.0,120.0,121.0,113.0,119.0,129.0,107.0,80.0,74.0,83.0,76.0,86.0,97.0,101.0,99.0,87.0,94.0,102.0,96.0,104.0,82.0,119.0,101.0,106.0,101.0,114.0,102.0,100.0,102.0,112.0,95.0,140.0,130.0,129.0,126.0,109.0,121.0,121.0,125.0,121.0,123.0,116.0,144.0,124.0,115.0,116.0,122.0,123.0,90.0,101.0,100.0,115.0,93.0,90.0,73.0,93.0,72.0,77.0,51.0,67.0,69.0,55.0,64.0,61.0,71.0,90.0,77.0,49.0,49.0,37.0,49.0,38.0,43.0,49.0,31.0,39.0,27.0,27.0,28.0,28.0,20.0,20.0,12.0,28.0 E82068,32.0,49.0,46.0,70.0,52.0,65.0,55.0,66.0,64.0,64.0,83.0,63.0,80.0,73.0,74.0,74.0,88.0,73.0,57.0,58.0,45.0,63.0,59.0,64.0,64.0,52.0,64.0,71.0,65.0,52.0,65.0,71.0,62.0,79.0,68.0,73.0,69.0,80.0,85.0,65.0,82.0,101.0,108.0,83.0,109.0,102.0,92.0,77.0,79.0,88.0,83.0,95.0,81.0,105.0,102.0,89.0,93.0,79.0,87.0,89.0,77.0,76.0,79.0,68.0,81.0,69.0,59.0,74.0,64.0,63.0,50.0,62.0,44.0,40.0,53.0,62.0,70.0,68.0,60.0,35.0,51.0,41.0,26.0,31.0,25.0,27.0,27.0,25.0,25.0,25.0,14.0,15.0,14.0,14.0,10.0,18.0 E82069,69.0,63.0,58.0,66.0,55.0,50.0,60.0,65.0,56.0,62.0,50.0,47.0,55.0,46.0,50.0,44.0,41.0,48.0,34.0,32.0,43.0,43.0,52.0,50.0,52.0,67.0,62.0,82.0,73.0,86.0,106.0,102.0,94.0,107.0,113.0,103.0,91.0,108.0,86.0,113.0,115.0,111.0,84.0,81.0,70.0,61.0,68.0,49.0,61.0,53.0,44.0,49.0,41.0,40.0,48.0,42.0,40.0,38.0,30.0,22.0,27.0,30.0,31.0,20.0,35.0,20.0,19.0,24.0,22.0,23.0,23.0,14.0,20.0,16.0,22.0,19.0,19.0,23.0,18.0,13.0,13.0,14.0,11.0,10.0,8.0,7.0,8.0,8.0,9.0,5.0,3.0,6.0,3.0,2.0,3.0,6.0 E82070,23.0,29.0,28.0,21.0,28.0,37.0,25.0,30.0,22.0,25.0,22.0,23.0,25.0,15.0,26.0,24.0,17.0,20.0,19.0,19.0,11.0,17.0,14.0,15.0,15.0,29.0,16.0,21.0,34.0,26.0,25.0,29.0,37.0,34.0,27.0,42.0,29.0,37.0,43.0,29.0,28.0,31.0,37.0,24.0,31.0,19.0,17.0,25.0,22.0,27.0,23.0,13.0,14.0,15.0,19.0,17.0,14.0,11.0,14.0,12.0,17.0,12.0,7.0,14.0,14.0,11.0,14.0,14.0,12.0,12.0,13.0,4.0,6.0,6.0,12.0,10.0,9.0,7.0,3.0,6.0,4.0,5.0,2.0,5.0,1.0,2.0,2.0,2.0,2.0,2.0,2.0,,,,, E82071,77.0,76.0,74.0,91.0,86.0,110.0,119.0,111.0,129.0,122.0,131.0,127.0,132.0,141.0,136.0,159.0,128.0,135.0,100.0,85.0,65.0,89.0,62.0,73.0,92.0,80.0,65.0,64.0,66.0,66.0,82.0,79.0,72.0,67.0,96.0,74.0,106.0,112.0,99.0,105.0,134.0,127.0,146.0,137.0,143.0,158.0,142.0,143.0,147.0,154.0,156.0,141.0,138.0,135.0,126.0,133.0,134.0,123.0,124.0,119.0,100.0,114.0,97.0,92.0,85.0,84.0,72.0,81.0,58.0,52.0,69.0,68.0,62.0,72.0,75.0,59.0,64.0,68.0,71.0,54.0,58.0,51.0,34.0,36.0,28.0,28.0,37.0,30.0,19.0,16.0,24.0,16.0,12.0,10.0,3.0,27.0 E82073,255.0,275.0,284.0,294.0,293.0,287.0,261.0,349.0,298.0,340.0,344.0,302.0,324.0,324.0,327.0,297.0,295.0,250.0,268.0,247.0,204.0,248.0,244.0,248.0,283.0,296.0,320.0,323.0,363.0,364.0,381.0,370.0,404.0,407.0,432.0,446.0,438.0,439.0,428.0,400.0,435.0,417.0,419.0,418.0,400.0,388.0,373.0,348.0,327.0,319.0,289.0,274.0,274.0,282.0,245.0,289.0,254.0,286.0,250.0,252.0,258.0,247.0,219.0,226.0,239.0,214.0,200.0,199.0,179.0,176.0,197.0,155.0,163.0,156.0,160.0,153.0,163.0,160.0,143.0,137.0,114.0,105.0,88.0,88.0,78.0,72.0,70.0,64.0,63.0,49.0,37.0,34.0,37.0,32.0,24.0,62.0 E82074,93.0,105.0,88.0,133.0,98.0,106.0,114.0,111.0,127.0,98.0,108.0,122.0,129.0,145.0,155.0,155.0,147.0,161.0,142.0,106.0,104.0,118.0,126.0,143.0,166.0,164.0,201.0,192.0,172.0,194.0,206.0,148.0,224.0,201.0,175.0,194.0,179.0,187.0,158.0,181.0,174.0,146.0,167.0,162.0,149.0,148.0,137.0,157.0,138.0,147.0,148.0,123.0,152.0,171.0,144.0,158.0,176.0,150.0,138.0,165.0,131.0,128.0,143.0,117.0,127.0,109.0,116.0,82.0,79.0,94.0,86.0,74.0,75.0,56.0,82.0,85.0,81.0,80.0,110.0,57.0,67.0,59.0,55.0,60.0,45.0,51.0,34.0,44.0,38.0,27.0,29.0,21.0,26.0,13.0,19.0,34.0 E82075,41.0,40.0,62.0,57.0,66.0,72.0,88.0,67.0,74.0,60.0,89.0,92.0,86.0,84.0,82.0,71.0,79.0,90.0,71.0,45.0,40.0,45.0,35.0,54.0,47.0,53.0,72.0,67.0,69.0,64.0,75.0,71.0,79.0,92.0,90.0,89.0,91.0,89.0,95.0,90.0,84.0,100.0,99.0,106.0,109.0,100.0,87.0,82.0,107.0,71.0,101.0,82.0,91.0,91.0,75.0,76.0,98.0,82.0,92.0,87.0,84.0,91.0,64.0,70.0,73.0,75.0,54.0,59.0,50.0,37.0,59.0,50.0,56.0,55.0,59.0,53.0,64.0,61.0,40.0,44.0,46.0,38.0,48.0,37.0,28.0,33.0,41.0,44.0,34.0,22.0,26.0,17.0,13.0,13.0,9.0,29.0 E82077,32.0,44.0,38.0,44.0,52.0,56.0,61.0,60.0,75.0,84.0,82.0,92.0,102.0,121.0,117.0,104.0,117.0,117.0,87.0,52.0,46.0,45.0,60.0,77.0,54.0,64.0,56.0,46.0,52.0,57.0,65.0,60.0,46.0,60.0,63.0,65.0,59.0,72.0,64.0,66.0,63.0,79.0,96.0,79.0,115.0,97.0,102.0,112.0,113.0,107.0,118.0,118.0,91.0,87.0,114.0,96.0,72.0,98.0,98.0,87.0,111.0,90.0,73.0,70.0,85.0,70.0,57.0,65.0,54.0,46.0,50.0,46.0,51.0,42.0,41.0,40.0,64.0,45.0,69.0,51.0,38.0,40.0,47.0,28.0,36.0,18.0,35.0,28.0,31.0,28.0,10.0,17.0,16.0,16.0,12.0,25.0 E82078,36.0,38.0,55.0,59.0,57.0,49.0,51.0,55.0,47.0,56.0,53.0,59.0,61.0,45.0,70.0,66.0,72.0,63.0,61.0,54.0,45.0,53.0,66.0,71.0,90.0,84.0,95.0,98.0,77.0,76.0,67.0,81.0,68.0,81.0,74.0,88.0,76.0,78.0,63.0,76.0,78.0,69.0,69.0,54.0,66.0,90.0,61.0,60.0,56.0,57.0,61.0,52.0,74.0,65.0,72.0,71.0,49.0,65.0,71.0,65.0,73.0,70.0,66.0,68.0,60.0,55.0,67.0,52.0,38.0,43.0,41.0,52.0,45.0,42.0,46.0,48.0,50.0,42.0,42.0,32.0,34.0,38.0,34.0,33.0,22.0,21.0,22.0,17.0,17.0,17.0,7.0,11.0,11.0,13.0,13.0,30.0 E82079,42.0,42.0,44.0,42.0,53.0,52.0,58.0,63.0,77.0,52.0,55.0,76.0,70.0,65.0,62.0,79.0,55.0,61.0,59.0,52.0,47.0,45.0,51.0,43.0,47.0,49.0,55.0,57.0,62.0,55.0,54.0,58.0,66.0,58.0,56.0,68.0,66.0,71.0,71.0,69.0,89.0,77.0,73.0,76.0,70.0,78.0,63.0,66.0,68.0,68.0,56.0,56.0,48.0,71.0,40.0,61.0,54.0,55.0,53.0,61.0,54.0,34.0,47.0,41.0,46.0,38.0,49.0,40.0,43.0,45.0,39.0,25.0,34.0,34.0,25.0,34.0,30.0,26.0,41.0,20.0,23.0,25.0,24.0,16.0,24.0,25.0,19.0,16.0,18.0,11.0,9.0,8.0,6.0,8.0,4.0,11.0 E82081,63.0,73.0,58.0,65.0,65.0,78.0,84.0,69.0,79.0,94.0,79.0,79.0,76.0,74.0,81.0,81.0,82.0,102.0,66.0,62.0,58.0,58.0,68.0,77.0,90.0,71.0,63.0,70.0,76.0,84.0,78.0,65.0,53.0,72.0,69.0,77.0,76.0,82.0,85.0,90.0,93.0,101.0,76.0,88.0,96.0,82.0,87.0,70.0,77.0,73.0,87.0,75.0,100.0,93.0,111.0,109.0,110.0,115.0,117.0,115.0,113.0,111.0,90.0,106.0,84.0,86.0,99.0,73.0,84.0,73.0,62.0,62.0,62.0,80.0,60.0,63.0,85.0,71.0,79.0,50.0,68.0,52.0,51.0,52.0,36.0,30.0,39.0,36.0,23.0,33.0,21.0,13.0,15.0,12.0,11.0,25.0 E82082,62.0,67.0,78.0,80.0,85.0,95.0,89.0,103.0,89.0,97.0,98.0,131.0,100.0,127.0,133.0,111.0,116.0,143.0,104.0,98.0,92.0,103.0,73.0,85.0,95.0,81.0,92.0,103.0,88.0,102.0,104.0,100.0,95.0,120.0,104.0,111.0,124.0,128.0,130.0,114.0,120.0,100.0,151.0,128.0,129.0,138.0,131.0,133.0,117.0,125.0,128.0,127.0,97.0,143.0,141.0,121.0,128.0,129.0,138.0,155.0,149.0,135.0,134.0,119.0,114.0,122.0,124.0,92.0,108.0,109.0,99.0,100.0,103.0,98.0,99.0,116.0,97.0,115.0,129.0,86.0,85.0,72.0,54.0,65.0,51.0,51.0,52.0,49.0,47.0,40.0,38.0,23.0,29.0,32.0,15.0,35.0 E82083,39.0,41.0,39.0,39.0,37.0,53.0,54.0,41.0,53.0,56.0,58.0,51.0,85.0,69.0,88.0,68.0,81.0,88.0,87.0,52.0,64.0,70.0,50.0,54.0,59.0,53.0,53.0,37.0,47.0,51.0,42.0,57.0,44.0,67.0,71.0,59.0,62.0,76.0,68.0,68.0,59.0,86.0,66.0,61.0,88.0,68.0,69.0,76.0,64.0,89.0,77.0,65.0,76.0,85.0,79.0,69.0,89.0,84.0,69.0,72.0,80.0,74.0,68.0,56.0,68.0,69.0,57.0,55.0,58.0,72.0,45.0,47.0,50.0,42.0,38.0,42.0,48.0,49.0,50.0,52.0,39.0,30.0,41.0,27.0,30.0,36.0,16.0,21.0,29.0,17.0,13.0,14.0,9.0,8.0,6.0,14.0 E82084,41.0,65.0,57.0,63.0,63.0,83.0,81.0,96.0,92.0,82.0,93.0,96.0,114.0,125.0,108.0,103.0,108.0,112.0,90.0,70.0,48.0,52.0,64.0,58.0,75.0,68.0,61.0,72.0,63.0,67.0,79.0,70.0,74.0,69.0,66.0,96.0,92.0,92.0,105.0,112.0,102.0,90.0,128.0,121.0,133.0,138.0,121.0,124.0,105.0,102.0,128.0,106.0,99.0,97.0,101.0,109.0,92.0,89.0,85.0,90.0,82.0,105.0,82.0,71.0,71.0,78.0,74.0,51.0,48.0,61.0,52.0,50.0,56.0,53.0,37.0,54.0,45.0,60.0,58.0,41.0,43.0,44.0,35.0,31.0,32.0,23.0,26.0,29.0,25.0,22.0,27.0,17.0,21.0,9.0,6.0,23.0 E82085,79.0,77.0,78.0,85.0,89.0,80.0,101.0,90.0,98.0,106.0,97.0,113.0,126.0,127.0,125.0,118.0,125.0,116.0,107.0,77.0,94.0,71.0,99.0,99.0,111.0,110.0,99.0,81.0,88.0,92.0,86.0,104.0,95.0,91.0,119.0,111.0,100.0,108.0,111.0,106.0,124.0,136.0,125.0,141.0,133.0,117.0,127.0,123.0,113.0,161.0,147.0,151.0,122.0,139.0,146.0,131.0,139.0,125.0,124.0,144.0,139.0,152.0,129.0,132.0,126.0,111.0,93.0,97.0,111.0,103.0,81.0,107.0,81.0,81.0,94.0,104.0,82.0,99.0,97.0,73.0,68.0,76.0,57.0,54.0,40.0,53.0,44.0,39.0,39.0,32.0,21.0,25.0,27.0,15.0,13.0,27.0 E82086,129.0,126.0,137.0,125.0,135.0,103.0,164.0,145.0,136.0,151.0,138.0,132.0,142.0,148.0,139.0,134.0,134.0,135.0,102.0,101.0,89.0,113.0,109.0,119.0,125.0,155.0,133.0,144.0,178.0,178.0,174.0,222.0,239.0,259.0,243.0,260.0,240.0,231.0,212.0,202.0,186.0,208.0,200.0,193.0,174.0,173.0,157.0,156.0,167.0,156.0,151.0,154.0,149.0,157.0,171.0,132.0,151.0,139.0,139.0,140.0,141.0,126.0,106.0,126.0,136.0,114.0,89.0,96.0,94.0,86.0,90.0,86.0,82.0,85.0,82.0,86.0,67.0,100.0,88.0,59.0,60.0,69.0,56.0,34.0,37.0,35.0,34.0,34.0,40.0,29.0,21.0,12.0,18.0,15.0,13.0,35.0 E82088,34.0,41.0,39.0,50.0,42.0,51.0,43.0,44.0,45.0,47.0,62.0,64.0,62.0,63.0,86.0,102.0,141.0,128.0,123.0,68.0,62.0,46.0,52.0,48.0,51.0,64.0,52.0,54.0,45.0,58.0,59.0,63.0,73.0,57.0,66.0,63.0,68.0,61.0,57.0,68.0,65.0,55.0,58.0,65.0,76.0,58.0,53.0,56.0,64.0,73.0,74.0,63.0,77.0,87.0,78.0,52.0,53.0,57.0,67.0,60.0,65.0,71.0,51.0,69.0,59.0,50.0,41.0,49.0,51.0,41.0,42.0,36.0,40.0,32.0,53.0,36.0,52.0,62.0,45.0,47.0,61.0,42.0,32.0,21.0,30.0,32.0,14.0,24.0,15.0,12.0,18.0,6.0,16.0,7.0,7.0,15.0 E82090,42.0,39.0,56.0,53.0,55.0,40.0,53.0,56.0,52.0,45.0,46.0,56.0,54.0,44.0,56.0,61.0,51.0,56.0,55.0,34.0,37.0,55.0,55.0,44.0,52.0,57.0,51.0,34.0,47.0,47.0,40.0,54.0,47.0,55.0,65.0,58.0,59.0,60.0,78.0,54.0,52.0,57.0,54.0,62.0,67.0,89.0,66.0,57.0,62.0,66.0,61.0,59.0,65.0,59.0,73.0,72.0,73.0,86.0,88.0,72.0,67.0,78.0,79.0,68.0,92.0,64.0,55.0,57.0,61.0,60.0,66.0,54.0,65.0,49.0,43.0,53.0,62.0,78.0,63.0,46.0,38.0,38.0,47.0,30.0,36.0,25.0,29.0,20.0,33.0,31.0,14.0,14.0,14.0,4.0,5.0,20.0 E82091,71.0,84.0,71.0,78.0,123.0,95.0,92.0,117.0,102.0,84.0,103.0,116.0,105.0,108.0,101.0,108.0,110.0,93.0,89.0,82.0,62.0,53.0,77.0,60.0,90.0,84.0,98.0,98.0,114.0,95.0,98.0,126.0,113.0,133.0,129.0,135.0,151.0,143.0,141.0,153.0,124.0,149.0,121.0,147.0,115.0,125.0,131.0,115.0,97.0,117.0,99.0,101.0,122.0,109.0,130.0,114.0,104.0,128.0,108.0,111.0,107.0,104.0,116.0,102.0,108.0,91.0,95.0,114.0,93.0,85.0,83.0,66.0,61.0,63.0,60.0,64.0,73.0,77.0,75.0,61.0,50.0,58.0,59.0,52.0,31.0,48.0,30.0,29.0,35.0,20.0,24.0,30.0,20.0,25.0,16.0,34.0 E82092,69.0,85.0,86.0,86.0,84.0,93.0,83.0,91.0,89.0,94.0,99.0,66.0,92.0,94.0,107.0,90.0,88.0,104.0,64.0,76.0,66.0,66.0,64.0,86.0,83.0,102.0,114.0,98.0,121.0,130.0,102.0,130.0,149.0,144.0,134.0,135.0,145.0,116.0,136.0,129.0,119.0,113.0,100.0,99.0,116.0,112.0,112.0,103.0,113.0,112.0,111.0,90.0,118.0,108.0,116.0,109.0,114.0,132.0,106.0,121.0,109.0,88.0,88.0,109.0,98.0,78.0,72.0,67.0,75.0,73.0,65.0,74.0,68.0,74.0,72.0,85.0,65.0,78.0,81.0,59.0,64.0,61.0,55.0,33.0,38.0,37.0,37.0,38.0,36.0,31.0,41.0,24.0,24.0,10.0,13.0,41.0 E82093,62.0,60.0,55.0,77.0,71.0,60.0,90.0,87.0,93.0,85.0,81.0,72.0,109.0,101.0,74.0,112.0,102.0,63.0,89.0,97.0,56.0,65.0,77.0,73.0,70.0,69.0,85.0,71.0,83.0,86.0,86.0,100.0,110.0,101.0,125.0,94.0,113.0,121.0,109.0,93.0,109.0,120.0,103.0,101.0,97.0,87.0,91.0,92.0,69.0,73.0,76.0,56.0,75.0,74.0,85.0,72.0,92.0,88.0,81.0,90.0,82.0,90.0,87.0,89.0,68.0,66.0,68.0,68.0,70.0,52.0,67.0,51.0,49.0,46.0,41.0,50.0,38.0,43.0,44.0,38.0,43.0,37.0,33.0,32.0,22.0,27.0,17.0,25.0,22.0,19.0,20.0,13.0,11.0,10.0,6.0,21.0 E82094,44.0,61.0,73.0,75.0,69.0,72.0,75.0,61.0,79.0,90.0,71.0,99.0,82.0,76.0,96.0,70.0,91.0,74.0,48.0,48.0,28.0,49.0,43.0,46.0,54.0,63.0,68.0,51.0,56.0,58.0,58.0,75.0,79.0,70.0,83.0,74.0,80.0,87.0,86.0,91.0,81.0,104.0,96.0,100.0,97.0,100.0,87.0,91.0,101.0,84.0,98.0,93.0,101.0,94.0,92.0,78.0,93.0,78.0,115.0,102.0,86.0,98.0,72.0,77.0,70.0,63.0,54.0,59.0,67.0,59.0,50.0,63.0,47.0,39.0,64.0,39.0,59.0,57.0,68.0,50.0,45.0,51.0,41.0,45.0,32.0,28.0,45.0,37.0,34.0,24.0,19.0,17.0,14.0,14.0,13.0,26.0 E82096,30.0,39.0,64.0,56.0,50.0,59.0,59.0,59.0,69.0,83.0,71.0,81.0,70.0,81.0,72.0,73.0,78.0,65.0,74.0,51.0,54.0,43.0,59.0,55.0,48.0,62.0,56.0,70.0,54.0,58.0,62.0,60.0,64.0,85.0,64.0,69.0,69.0,81.0,85.0,87.0,69.0,91.0,91.0,93.0,91.0,91.0,87.0,66.0,69.0,72.0,68.0,70.0,64.0,70.0,67.0,61.0,82.0,80.0,86.0,77.0,81.0,74.0,79.0,68.0,63.0,69.0,60.0,46.0,52.0,37.0,61.0,47.0,45.0,38.0,49.0,56.0,54.0,37.0,40.0,24.0,34.0,47.0,36.0,24.0,16.0,27.0,22.0,26.0,17.0,10.0,12.0,6.0,7.0,6.0,3.0,11.0 E82098,20.0,24.0,20.0,29.0,28.0,29.0,39.0,44.0,50.0,48.0,41.0,47.0,46.0,26.0,36.0,49.0,49.0,44.0,45.0,37.0,39.0,37.0,47.0,48.0,36.0,37.0,39.0,47.0,41.0,25.0,40.0,40.0,38.0,45.0,36.0,34.0,38.0,50.0,54.0,46.0,62.0,58.0,58.0,55.0,56.0,50.0,41.0,50.0,44.0,58.0,44.0,56.0,52.0,58.0,51.0,80.0,68.0,66.0,58.0,55.0,61.0,65.0,55.0,47.0,54.0,40.0,51.0,35.0,32.0,52.0,40.0,49.0,29.0,36.0,45.0,48.0,39.0,49.0,53.0,45.0,32.0,32.0,29.0,29.0,23.0,26.0,19.0,30.0,24.0,17.0,13.0,16.0,15.0,14.0,10.0,17.0 E82099,39.0,51.0,50.0,67.0,46.0,52.0,51.0,57.0,54.0,71.0,59.0,66.0,71.0,67.0,86.0,71.0,85.0,77.0,66.0,59.0,47.0,66.0,46.0,41.0,62.0,68.0,67.0,55.0,72.0,67.0,74.0,82.0,76.0,88.0,99.0,84.0,72.0,74.0,95.0,82.0,79.0,98.0,82.0,69.0,95.0,86.0,95.0,90.0,76.0,80.0,78.0,85.0,108.0,87.0,84.0,96.0,112.0,79.0,74.0,105.0,98.0,97.0,113.0,93.0,90.0,85.0,94.0,66.0,79.0,60.0,65.0,54.0,65.0,71.0,53.0,55.0,62.0,60.0,67.0,43.0,52.0,60.0,41.0,38.0,42.0,34.0,42.0,32.0,30.0,27.0,19.0,17.0,20.0,12.0,8.0,27.0 E82100,64.0,72.0,72.0,71.0,70.0,72.0,75.0,68.0,86.0,75.0,68.0,79.0,76.0,73.0,76.0,84.0,91.0,68.0,55.0,68.0,47.0,50.0,56.0,62.0,75.0,72.0,61.0,64.0,76.0,78.0,90.0,87.0,84.0,100.0,100.0,115.0,79.0,112.0,84.0,87.0,102.0,96.0,100.0,101.0,99.0,110.0,88.0,96.0,82.0,78.0,109.0,90.0,118.0,87.0,87.0,101.0,74.0,96.0,78.0,84.0,92.0,96.0,92.0,85.0,82.0,79.0,85.0,67.0,68.0,70.0,70.0,80.0,58.0,65.0,68.0,75.0,72.0,54.0,88.0,50.0,46.0,48.0,61.0,42.0,32.0,43.0,25.0,33.0,22.0,16.0,21.0,18.0,6.0,14.0,10.0,13.0 E82102,69.0,84.0,78.0,97.0,87.0,93.0,111.0,99.0,107.0,93.0,124.0,103.0,93.0,121.0,133.0,116.0,118.0,117.0,102.0,83.0,89.0,65.0,62.0,83.0,74.0,81.0,74.0,81.0,82.0,72.0,103.0,101.0,107.0,114.0,102.0,139.0,115.0,145.0,136.0,135.0,138.0,144.0,128.0,140.0,161.0,141.0,130.0,143.0,144.0,120.0,138.0,118.0,139.0,147.0,140.0,135.0,124.0,131.0,138.0,109.0,116.0,120.0,98.0,113.0,96.0,92.0,98.0,80.0,84.0,65.0,100.0,88.0,76.0,75.0,81.0,89.0,79.0,79.0,83.0,76.0,66.0,58.0,53.0,49.0,42.0,41.0,43.0,49.0,33.0,31.0,26.0,17.0,23.0,11.0,13.0,30.0 E82105,15.0,32.0,22.0,31.0,24.0,23.0,23.0,38.0,30.0,38.0,35.0,36.0,30.0,35.0,42.0,34.0,27.0,48.0,29.0,24.0,26.0,18.0,27.0,22.0,30.0,27.0,29.0,31.0,23.0,30.0,25.0,34.0,36.0,40.0,29.0,41.0,47.0,29.0,45.0,47.0,34.0,29.0,26.0,39.0,38.0,43.0,41.0,38.0,33.0,23.0,44.0,42.0,36.0,28.0,35.0,32.0,28.0,35.0,31.0,31.0,34.0,25.0,20.0,22.0,31.0,20.0,19.0,22.0,17.0,26.0,15.0,13.0,16.0,17.0,12.0,20.0,18.0,20.0,20.0,16.0,7.0,14.0,7.0,5.0,5.0,7.0,8.0,4.0,1.0,4.0,5.0,5.0,3.0,2.0,1.0,4.0 E82106,41.0,54.0,60.0,59.0,73.0,62.0,76.0,84.0,92.0,68.0,98.0,99.0,92.0,104.0,90.0,105.0,82.0,107.0,87.0,65.0,57.0,47.0,58.0,76.0,53.0,71.0,67.0,65.0,59.0,49.0,53.0,54.0,60.0,78.0,76.0,74.0,80.0,85.0,82.0,94.0,108.0,118.0,98.0,119.0,119.0,125.0,99.0,121.0,108.0,108.0,99.0,76.0,103.0,105.0,96.0,86.0,90.0,98.0,85.0,88.0,116.0,98.0,104.0,98.0,83.0,77.0,88.0,67.0,74.0,70.0,70.0,75.0,72.0,79.0,62.0,57.0,74.0,80.0,85.0,52.0,58.0,54.0,51.0,39.0,39.0,40.0,37.0,44.0,43.0,32.0,38.0,26.0,26.0,18.0,20.0,52.0 E82107,56.0,51.0,64.0,55.0,59.0,59.0,63.0,64.0,61.0,66.0,60.0,64.0,67.0,69.0,82.0,60.0,62.0,72.0,60.0,67.0,58.0,50.0,60.0,41.0,53.0,58.0,62.0,65.0,75.0,66.0,78.0,80.0,80.0,77.0,75.0,73.0,68.0,85.0,68.0,71.0,89.0,93.0,76.0,96.0,89.0,83.0,77.0,86.0,77.0,73.0,66.0,68.0,77.0,66.0,70.0,53.0,51.0,68.0,68.0,66.0,72.0,70.0,65.0,54.0,62.0,52.0,43.0,49.0,39.0,49.0,46.0,56.0,48.0,34.0,49.0,44.0,38.0,41.0,31.0,26.0,29.0,21.0,34.0,9.0,13.0,22.0,21.0,16.0,17.0,13.0,9.0,3.0,4.0,5.0,3.0,8.0 E82111,41.0,33.0,37.0,40.0,30.0,38.0,34.0,36.0,39.0,34.0,39.0,31.0,43.0,36.0,34.0,45.0,36.0,30.0,34.0,24.0,26.0,23.0,33.0,40.0,42.0,30.0,38.0,43.0,51.0,37.0,58.0,51.0,56.0,53.0,71.0,58.0,67.0,38.0,45.0,51.0,43.0,57.0,48.0,54.0,50.0,42.0,38.0,37.0,33.0,39.0,30.0,28.0,43.0,45.0,36.0,26.0,42.0,31.0,37.0,44.0,42.0,26.0,25.0,27.0,28.0,26.0,32.0,35.0,31.0,39.0,28.0,26.0,31.0,24.0,26.0,15.0,22.0,29.0,22.0,10.0,13.0,14.0,10.0,14.0,12.0,7.0,2.0,9.0,7.0,7.0,7.0,2.0,3.0,3.0,2.0,11.0 E82113,34.0,37.0,50.0,53.0,45.0,46.0,46.0,60.0,47.0,60.0,48.0,45.0,52.0,52.0,49.0,48.0,43.0,55.0,44.0,30.0,41.0,31.0,45.0,32.0,38.0,43.0,39.0,43.0,43.0,46.0,46.0,62.0,59.0,74.0,65.0,63.0,49.0,61.0,57.0,56.0,66.0,58.0,49.0,46.0,57.0,53.0,59.0,46.0,55.0,47.0,38.0,44.0,57.0,36.0,47.0,52.0,33.0,40.0,44.0,44.0,38.0,38.0,38.0,30.0,32.0,30.0,20.0,21.0,18.0,19.0,22.0,20.0,19.0,16.0,22.0,32.0,19.0,21.0,27.0,20.0,23.0,18.0,11.0,11.0,10.0,9.0,7.0,7.0,9.0,5.0,7.0,4.0,,,3.0,8.0 E82115,38.0,37.0,42.0,41.0,29.0,50.0,45.0,39.0,44.0,56.0,57.0,62.0,70.0,72.0,68.0,62.0,75.0,61.0,47.0,56.0,40.0,49.0,45.0,51.0,49.0,55.0,45.0,53.0,62.0,46.0,64.0,56.0,63.0,50.0,77.0,69.0,61.0,60.0,63.0,79.0,60.0,65.0,78.0,83.0,65.0,71.0,73.0,57.0,50.0,54.0,62.0,56.0,65.0,71.0,79.0,66.0,73.0,71.0,87.0,68.0,83.0,82.0,83.0,65.0,79.0,70.0,73.0,80.0,53.0,60.0,43.0,52.0,55.0,49.0,46.0,52.0,41.0,54.0,71.0,36.0,46.0,34.0,35.0,27.0,33.0,22.0,25.0,14.0,13.0,18.0,11.0,11.0,9.0,4.0,8.0,13.0 E82117,52.0,61.0,69.0,78.0,64.0,74.0,87.0,83.0,89.0,108.0,82.0,108.0,88.0,90.0,91.0,107.0,82.0,94.0,75.0,66.0,65.0,53.0,64.0,68.0,67.0,77.0,67.0,76.0,81.0,88.0,103.0,81.0,104.0,91.0,107.0,98.0,82.0,92.0,130.0,103.0,105.0,95.0,96.0,118.0,118.0,118.0,92.0,90.0,96.0,90.0,91.0,79.0,82.0,96.0,79.0,65.0,83.0,73.0,76.0,69.0,72.0,53.0,63.0,48.0,54.0,46.0,49.0,49.0,37.0,46.0,37.0,36.0,35.0,41.0,49.0,35.0,51.0,45.0,39.0,26.0,30.0,26.0,29.0,18.0,18.0,22.0,27.0,20.0,24.0,15.0,16.0,12.0,17.0,7.0,8.0,19.0 E82121,18.0,25.0,25.0,24.0,24.0,32.0,23.0,33.0,26.0,31.0,27.0,19.0,27.0,25.0,23.0,28.0,28.0,22.0,30.0,25.0,18.0,19.0,25.0,21.0,23.0,26.0,26.0,30.0,29.0,26.0,29.0,31.0,23.0,29.0,29.0,24.0,33.0,34.0,41.0,22.0,30.0,27.0,46.0,44.0,34.0,26.0,46.0,30.0,23.0,25.0,40.0,33.0,40.0,33.0,41.0,30.0,31.0,39.0,40.0,46.0,45.0,41.0,31.0,28.0,37.0,29.0,31.0,33.0,31.0,32.0,29.0,26.0,30.0,23.0,32.0,24.0,30.0,31.0,34.0,22.0,19.0,21.0,19.0,13.0,15.0,7.0,11.0,15.0,3.0,10.0,8.0,1.0,6.0,3.0,2.0,3.0 E82123,32.0,40.0,41.0,44.0,59.0,46.0,56.0,40.0,52.0,43.0,52.0,59.0,53.0,47.0,47.0,64.0,41.0,56.0,60.0,46.0,46.0,42.0,38.0,41.0,38.0,35.0,64.0,55.0,46.0,55.0,56.0,72.0,61.0,54.0,60.0,67.0,73.0,84.0,73.0,68.0,69.0,86.0,64.0,72.0,61.0,73.0,57.0,53.0,51.0,57.0,59.0,54.0,38.0,73.0,67.0,62.0,77.0,70.0,56.0,73.0,60.0,64.0,79.0,56.0,43.0,58.0,70.0,42.0,53.0,52.0,38.0,44.0,46.0,49.0,43.0,42.0,48.0,51.0,48.0,23.0,46.0,34.0,51.0,34.0,27.0,35.0,43.0,45.0,24.0,38.0,25.0,17.0,17.0,12.0,17.0,28.0 E82124,160.0,159.0,175.0,180.0,183.0,204.0,168.0,177.0,186.0,210.0,185.0,204.0,178.0,195.0,233.0,213.0,219.0,204.0,180.0,191.0,171.0,153.0,161.0,178.0,174.0,201.0,197.0,218.0,226.0,215.0,224.0,216.0,258.0,272.0,276.0,253.0,252.0,285.0,273.0,289.0,257.0,253.0,265.0,274.0,249.0,270.0,297.0,265.0,223.0,208.0,243.0,213.0,213.0,213.0,214.0,215.0,230.0,223.0,208.0,201.0,193.0,192.0,181.0,179.0,190.0,163.0,147.0,148.0,130.0,124.0,144.0,117.0,117.0,117.0,112.0,126.0,91.0,125.0,122.0,105.0,129.0,76.0,108.0,87.0,59.0,76.0,60.0,58.0,54.0,43.0,57.0,32.0,27.0,24.0,21.0,62.0 E82129,74.0,74.0,69.0,73.0,76.0,88.0,71.0,75.0,90.0,95.0,98.0,84.0,72.0,90.0,82.0,80.0,91.0,86.0,67.0,68.0,66.0,62.0,76.0,79.0,79.0,93.0,93.0,91.0,97.0,83.0,111.0,104.0,120.0,108.0,121.0,119.0,117.0,123.0,102.0,100.0,120.0,93.0,103.0,111.0,129.0,101.0,115.0,95.0,91.0,101.0,108.0,104.0,127.0,114.0,107.0,101.0,117.0,120.0,126.0,121.0,102.0,115.0,92.0,113.0,90.0,85.0,101.0,74.0,91.0,68.0,63.0,79.0,83.0,70.0,81.0,73.0,68.0,79.0,92.0,58.0,56.0,54.0,58.0,31.0,31.0,38.0,35.0,38.0,29.0,33.0,23.0,21.0,13.0,9.0,9.0,26.0 E82133,61.0,74.0,66.0,51.0,70.0,62.0,66.0,53.0,58.0,53.0,46.0,50.0,46.0,60.0,54.0,50.0,50.0,48.0,38.0,43.0,32.0,33.0,48.0,56.0,45.0,48.0,61.0,81.0,82.0,83.0,88.0,117.0,73.0,82.0,95.0,97.0,99.0,95.0,93.0,74.0,80.0,76.0,61.0,73.0,60.0,59.0,49.0,48.0,55.0,48.0,44.0,47.0,63.0,57.0,62.0,46.0,45.0,48.0,48.0,49.0,48.0,41.0,40.0,26.0,38.0,32.0,37.0,30.0,21.0,24.0,26.0,31.0,28.0,18.0,25.0,28.0,21.0,23.0,29.0,24.0,16.0,22.0,19.0,16.0,4.0,18.0,21.0,11.0,9.0,5.0,14.0,4.0,7.0,4.0,7.0,7.0 E82626,9.0,7.0,13.0,20.0,13.0,14.0,13.0,14.0,16.0,12.0,12.0,18.0,13.0,14.0,12.0,18.0,25.0,16.0,16.0,21.0,14.0,7.0,12.0,14.0,9.0,13.0,21.0,16.0,10.0,12.0,15.0,22.0,20.0,10.0,13.0,5.0,19.0,18.0,9.0,16.0,16.0,19.0,17.0,20.0,13.0,27.0,21.0,19.0,23.0,20.0,27.0,25.0,19.0,23.0,23.0,17.0,19.0,22.0,31.0,30.0,32.0,28.0,18.0,24.0,17.0,25.0,15.0,13.0,15.0,17.0,19.0,16.0,23.0,10.0,13.0,14.0,12.0,18.0,15.0,12.0,12.0,9.0,12.0,12.0,5.0,5.0,6.0,6.0,5.0,3.0,4.0,5.0,5.0,2.0,3.0,6.0 E82638,36.0,35.0,43.0,42.0,47.0,47.0,48.0,51.0,45.0,51.0,55.0,39.0,43.0,47.0,34.0,39.0,51.0,38.0,38.0,41.0,26.0,35.0,41.0,38.0,38.0,38.0,42.0,55.0,54.0,37.0,47.0,59.0,62.0,55.0,73.0,60.0,62.0,53.0,65.0,63.0,58.0,67.0,70.0,51.0,55.0,45.0,56.0,41.0,37.0,38.0,35.0,41.0,49.0,44.0,53.0,49.0,55.0,38.0,38.0,56.0,43.0,30.0,38.0,42.0,31.0,26.0,29.0,24.0,19.0,18.0,26.0,24.0,19.0,14.0,11.0,14.0,24.0,24.0,16.0,12.0,14.0,14.0,8.0,13.0,11.0,6.0,8.0,3.0,7.0,15.0,7.0,8.0,6.0,8.0,5.0,4.0 E82643,14.0,14.0,12.0,11.0,10.0,16.0,16.0,11.0,12.0,8.0,16.0,18.0,8.0,20.0,13.0,19.0,13.0,16.0,19.0,15.0,10.0,13.0,14.0,6.0,21.0,10.0,6.0,16.0,19.0,20.0,27.0,15.0,17.0,20.0,16.0,16.0,22.0,18.0,21.0,16.0,28.0,14.0,18.0,19.0,18.0,18.0,24.0,19.0,16.0,18.0,24.0,19.0,21.0,30.0,13.0,13.0,20.0,28.0,11.0,26.0,9.0,18.0,15.0,22.0,19.0,19.0,14.0,13.0,18.0,18.0,13.0,13.0,14.0,8.0,8.0,15.0,16.0,14.0,22.0,8.0,12.0,13.0,7.0,10.0,10.0,6.0,6.0,9.0,6.0,1.0,2.0,2.0,3.0,2.0,2.0,4.0 E82652,16.0,17.0,29.0,30.0,20.0,15.0,20.0,28.0,26.0,22.0,26.0,22.0,24.0,18.0,20.0,18.0,17.0,12.0,7.0,12.0,9.0,11.0,13.0,7.0,17.0,18.0,9.0,18.0,12.0,23.0,12.0,12.0,22.0,26.0,28.0,39.0,39.0,28.0,23.0,21.0,32.0,33.0,27.0,24.0,26.0,28.0,28.0,20.0,16.0,18.0,11.0,18.0,13.0,28.0,21.0,20.0,19.0,12.0,17.0,17.0,14.0,16.0,12.0,17.0,11.0,13.0,14.0,12.0,11.0,11.0,12.0,14.0,10.0,12.0,15.0,13.0,12.0,12.0,19.0,7.0,10.0,13.0,5.0,3.0,9.0,6.0,6.0,2.0,5.0,5.0,8.0,2.0,4.0,4.0,4.0,3.0 E82654,61.0,82.0,62.0,75.0,75.0,64.0,60.0,87.0,73.0,70.0,71.0,55.0,101.0,87.0,68.0,75.0,59.0,59.0,64.0,45.0,37.0,41.0,50.0,42.0,61.0,56.0,63.0,72.0,64.0,72.0,82.0,81.0,92.0,107.0,91.0,105.0,86.0,99.0,102.0,99.0,102.0,99.0,91.0,104.0,100.0,92.0,98.0,71.0,69.0,87.0,62.0,75.0,67.0,63.0,54.0,45.0,59.0,53.0,43.0,43.0,33.0,40.0,29.0,42.0,35.0,42.0,42.0,20.0,34.0,18.0,33.0,40.0,40.0,25.0,36.0,23.0,33.0,31.0,35.0,21.0,17.0,18.0,25.0,17.0,13.0,14.0,14.0,3.0,8.0,10.0,4.0,2.0,3.0,4.0,4.0,5.0 E82655,24.0,33.0,19.0,26.0,30.0,21.0,24.0,15.0,36.0,26.0,14.0,25.0,26.0,37.0,15.0,23.0,23.0,23.0,34.0,21.0,25.0,21.0,28.0,24.0,36.0,22.0,38.0,26.0,36.0,32.0,33.0,42.0,41.0,35.0,36.0,49.0,35.0,27.0,42.0,32.0,37.0,30.0,23.0,34.0,32.0,36.0,30.0,35.0,30.0,25.0,29.0,35.0,24.0,23.0,21.0,24.0,28.0,31.0,19.0,26.0,33.0,24.0,30.0,28.0,19.0,19.0,21.0,16.0,16.0,17.0,15.0,14.0,17.0,10.0,10.0,15.0,13.0,17.0,14.0,6.0,10.0,7.0,7.0,8.0,6.0,5.0,3.0,4.0,4.0,2.0,3.0,3.0,,1.0,3.0,3.0 E82657,21.0,17.0,24.0,23.0,20.0,41.0,31.0,46.0,32.0,22.0,30.0,38.0,46.0,54.0,39.0,40.0,52.0,36.0,33.0,27.0,23.0,29.0,33.0,38.0,36.0,36.0,35.0,24.0,35.0,28.0,37.0,37.0,47.0,37.0,45.0,42.0,30.0,35.0,39.0,33.0,56.0,41.0,37.0,32.0,54.0,58.0,42.0,43.0,45.0,44.0,54.0,51.0,50.0,45.0,47.0,39.0,33.0,45.0,69.0,38.0,42.0,57.0,30.0,34.0,41.0,37.0,35.0,27.0,27.0,27.0,36.0,27.0,23.0,29.0,44.0,43.0,31.0,33.0,43.0,51.0,33.0,34.0,31.0,23.0,26.0,22.0,23.0,37.0,20.0,13.0,10.0,9.0,6.0,10.0,6.0,7.0 E82661,47.0,49.0,41.0,45.0,41.0,52.0,47.0,48.0,48.0,62.0,38.0,64.0,50.0,55.0,55.0,54.0,49.0,47.0,43.0,43.0,44.0,34.0,36.0,54.0,57.0,45.0,44.0,71.0,43.0,51.0,65.0,55.0,88.0,71.0,66.0,74.0,81.0,65.0,72.0,64.0,62.0,70.0,55.0,65.0,74.0,52.0,63.0,44.0,57.0,60.0,55.0,58.0,71.0,57.0,49.0,47.0,45.0,45.0,49.0,47.0,50.0,40.0,41.0,45.0,35.0,29.0,38.0,37.0,29.0,29.0,30.0,23.0,25.0,31.0,23.0,28.0,24.0,26.0,33.0,24.0,25.0,30.0,27.0,14.0,12.0,17.0,13.0,15.0,7.0,10.0,12.0,7.0,7.0,3.0,5.0,8.0 F81004,29.0,28.0,20.0,40.0,39.0,37.0,54.0,41.0,57.0,60.0,44.0,66.0,56.0,72.0,55.0,63.0,54.0,60.0,67.0,47.0,43.0,45.0,46.0,50.0,38.0,51.0,53.0,37.0,33.0,34.0,33.0,38.0,40.0,35.0,46.0,43.0,54.0,66.0,57.0,62.0,49.0,65.0,56.0,65.0,55.0,62.0,63.0,51.0,75.0,56.0,59.0,73.0,46.0,77.0,90.0,91.0,83.0,70.0,87.0,78.0,94.0,73.0,78.0,77.0,58.0,68.0,61.0,77.0,57.0,58.0,45.0,42.0,37.0,35.0,43.0,45.0,60.0,65.0,57.0,29.0,38.0,48.0,28.0,23.0,19.0,27.0,27.0,24.0,12.0,18.0,14.0,7.0,15.0,3.0,10.0,15.0 F81009,39.0,45.0,46.0,68.0,50.0,62.0,52.0,55.0,62.0,65.0,66.0,67.0,75.0,67.0,66.0,88.0,60.0,43.0,47.0,42.0,41.0,40.0,37.0,42.0,52.0,54.0,60.0,45.0,66.0,51.0,56.0,46.0,48.0,80.0,59.0,73.0,90.0,82.0,85.0,68.0,87.0,77.0,78.0,77.0,93.0,77.0,78.0,76.0,62.0,50.0,79.0,83.0,79.0,78.0,74.0,68.0,70.0,80.0,84.0,66.0,72.0,77.0,92.0,66.0,81.0,71.0,65.0,68.0,70.0,57.0,57.0,59.0,53.0,68.0,59.0,55.0,62.0,66.0,57.0,46.0,45.0,44.0,41.0,35.0,32.0,37.0,25.0,22.0,37.0,33.0,18.0,23.0,15.0,15.0,15.0,32.0 F81015,41.0,63.0,59.0,58.0,67.0,70.0,78.0,59.0,50.0,73.0,90.0,85.0,73.0,83.0,90.0,89.0,77.0,82.0,87.0,55.0,50.0,41.0,56.0,50.0,64.0,60.0,50.0,50.0,55.0,60.0,82.0,74.0,65.0,86.0,75.0,94.0,93.0,85.0,97.0,88.0,81.0,89.0,97.0,84.0,76.0,83.0,91.0,89.0,89.0,84.0,88.0,101.0,108.0,105.0,84.0,111.0,92.0,84.0,96.0,92.0,96.0,89.0,89.0,85.0,78.0,75.0,80.0,64.0,72.0,64.0,46.0,63.0,76.0,53.0,50.0,58.0,59.0,67.0,50.0,50.0,53.0,54.0,47.0,39.0,35.0,34.0,31.0,28.0,17.0,15.0,16.0,11.0,10.0,7.0,13.0,32.0 F81027,121.0,109.0,136.0,144.0,116.0,137.0,129.0,131.0,155.0,146.0,146.0,138.0,138.0,153.0,137.0,148.0,135.0,151.0,115.0,105.0,95.0,103.0,91.0,119.0,111.0,118.0,134.0,127.0,148.0,128.0,149.0,145.0,135.0,179.0,158.0,187.0,155.0,200.0,199.0,164.0,139.0,182.0,166.0,148.0,154.0,145.0,142.0,128.0,106.0,134.0,121.0,95.0,117.0,116.0,119.0,122.0,105.0,108.0,126.0,109.0,114.0,97.0,101.0,104.0,100.0,94.0,63.0,80.0,78.0,71.0,71.0,60.0,75.0,71.0,74.0,58.0,86.0,96.0,86.0,60.0,78.0,53.0,55.0,40.0,35.0,43.0,41.0,36.0,29.0,21.0,23.0,19.0,14.0,16.0,8.0,20.0 F81034,30.0,32.0,41.0,47.0,42.0,42.0,45.0,45.0,56.0,54.0,52.0,56.0,54.0,51.0,51.0,56.0,65.0,56.0,57.0,38.0,32.0,30.0,52.0,42.0,36.0,34.0,40.0,35.0,39.0,49.0,49.0,39.0,42.0,47.0,42.0,60.0,45.0,57.0,64.0,51.0,47.0,46.0,51.0,58.0,56.0,73.0,79.0,57.0,47.0,61.0,63.0,74.0,67.0,75.0,64.0,75.0,75.0,74.0,80.0,93.0,90.0,76.0,78.0,78.0,68.0,67.0,58.0,83.0,55.0,51.0,53.0,55.0,65.0,64.0,44.0,64.0,66.0,66.0,75.0,52.0,43.0,47.0,33.0,30.0,27.0,30.0,28.0,23.0,20.0,16.0,14.0,18.0,11.0,10.0,10.0,28.0 F81043,53.0,88.0,90.0,79.0,95.0,85.0,122.0,89.0,106.0,91.0,124.0,79.0,99.0,114.0,95.0,107.0,85.0,76.0,96.0,93.0,69.0,92.0,94.0,105.0,98.0,82.0,76.0,100.0,79.0,71.0,87.0,97.0,92.0,96.0,122.0,107.0,95.0,128.0,101.0,133.0,101.0,126.0,123.0,108.0,117.0,111.0,112.0,120.0,98.0,117.0,130.0,119.0,144.0,157.0,148.0,140.0,156.0,134.0,127.0,151.0,149.0,124.0,117.0,137.0,120.0,113.0,106.0,107.0,111.0,87.0,120.0,107.0,114.0,89.0,112.0,118.0,108.0,121.0,124.0,103.0,102.0,70.0,81.0,68.0,59.0,61.0,66.0,55.0,49.0,41.0,32.0,46.0,27.0,25.0,26.0,53.0 F81047,48.0,53.0,67.0,58.0,59.0,60.0,70.0,63.0,78.0,72.0,79.0,63.0,65.0,78.0,68.0,77.0,78.0,74.0,58.0,64.0,52.0,49.0,44.0,63.0,62.0,51.0,65.0,62.0,51.0,63.0,65.0,92.0,81.0,90.0,95.0,83.0,97.0,94.0,97.0,68.0,99.0,82.0,77.0,79.0,76.0,77.0,68.0,75.0,65.0,53.0,61.0,59.0,61.0,64.0,62.0,72.0,71.0,73.0,73.0,75.0,77.0,80.0,83.0,75.0,85.0,60.0,74.0,63.0,56.0,50.0,50.0,43.0,46.0,54.0,40.0,43.0,33.0,30.0,38.0,31.0,34.0,33.0,36.0,21.0,25.0,25.0,39.0,25.0,22.0,24.0,12.0,15.0,13.0,7.0,9.0,12.0 F81048,31.0,33.0,36.0,43.0,41.0,41.0,45.0,43.0,46.0,44.0,52.0,54.0,63.0,60.0,64.0,55.0,69.0,60.0,48.0,47.0,45.0,51.0,55.0,41.0,65.0,54.0,58.0,59.0,46.0,60.0,62.0,50.0,57.0,58.0,65.0,64.0,64.0,65.0,62.0,59.0,53.0,54.0,60.0,74.0,73.0,70.0,49.0,62.0,74.0,58.0,65.0,70.0,78.0,83.0,75.0,80.0,96.0,82.0,80.0,75.0,87.0,84.0,70.0,74.0,71.0,67.0,60.0,58.0,53.0,54.0,47.0,54.0,34.0,51.0,39.0,31.0,60.0,50.0,52.0,29.0,44.0,36.0,42.0,37.0,28.0,30.0,35.0,25.0,20.0,15.0,20.0,9.0,14.0,13.0,9.0,20.0 F81049,56.0,59.0,72.0,67.0,55.0,66.0,59.0,75.0,86.0,71.0,66.0,65.0,67.0,82.0,79.0,77.0,79.0,79.0,63.0,65.0,74.0,49.0,71.0,60.0,62.0,59.0,76.0,64.0,59.0,69.0,79.0,86.0,66.0,78.0,89.0,88.0,66.0,79.0,77.0,99.0,84.0,68.0,80.0,85.0,64.0,68.0,84.0,81.0,70.0,62.0,64.0,75.0,98.0,85.0,79.0,94.0,105.0,100.0,97.0,92.0,133.0,110.0,91.0,96.0,88.0,71.0,84.0,70.0,96.0,75.0,74.0,67.0,72.0,69.0,74.0,62.0,74.0,86.0,78.0,54.0,57.0,49.0,52.0,38.0,45.0,34.0,34.0,38.0,38.0,30.0,18.0,11.0,17.0,18.0,18.0,39.0 F81053,104.0,106.0,101.0,117.0,108.0,107.0,129.0,157.0,129.0,126.0,147.0,117.0,131.0,120.0,127.0,128.0,125.0,112.0,104.0,81.0,89.0,99.0,92.0,99.0,97.0,111.0,106.0,123.0,108.0,124.0,125.0,133.0,163.0,157.0,197.0,156.0,163.0,161.0,144.0,183.0,146.0,136.0,154.0,165.0,155.0,157.0,141.0,139.0,139.0,112.0,133.0,137.0,153.0,140.0,146.0,139.0,139.0,136.0,131.0,121.0,149.0,132.0,112.0,126.0,99.0,109.0,109.0,117.0,93.0,91.0,87.0,94.0,77.0,89.0,91.0,77.0,90.0,94.0,92.0,66.0,63.0,70.0,53.0,49.0,47.0,46.0,31.0,29.0,26.0,24.0,27.0,20.0,13.0,19.0,7.0,38.0 F81056,72.0,90.0,81.0,78.0,71.0,83.0,77.0,77.0,79.0,56.0,83.0,48.0,66.0,58.0,66.0,57.0,47.0,38.0,54.0,42.0,39.0,47.0,53.0,38.0,41.0,51.0,57.0,77.0,103.0,97.0,116.0,103.0,101.0,120.0,116.0,136.0,109.0,78.0,96.0,81.0,89.0,84.0,94.0,96.0,74.0,69.0,78.0,61.0,71.0,62.0,62.0,58.0,61.0,75.0,77.0,63.0,75.0,84.0,70.0,91.0,67.0,68.0,72.0,77.0,78.0,65.0,69.0,63.0,56.0,64.0,53.0,56.0,55.0,49.0,48.0,57.0,54.0,59.0,49.0,45.0,42.0,42.0,36.0,38.0,21.0,22.0,20.0,21.0,20.0,14.0,15.0,10.0,11.0,7.0,7.0,15.0 F81062,52.0,36.0,48.0,55.0,51.0,51.0,55.0,64.0,52.0,62.0,52.0,65.0,50.0,54.0,61.0,60.0,67.0,62.0,40.0,37.0,32.0,46.0,39.0,49.0,48.0,68.0,62.0,52.0,60.0,59.0,66.0,41.0,59.0,63.0,73.0,65.0,86.0,84.0,81.0,72.0,68.0,76.0,63.0,54.0,74.0,71.0,60.0,60.0,58.0,52.0,50.0,65.0,71.0,55.0,49.0,45.0,56.0,39.0,75.0,62.0,47.0,34.0,44.0,46.0,47.0,47.0,47.0,34.0,44.0,51.0,49.0,35.0,47.0,39.0,35.0,37.0,29.0,43.0,37.0,26.0,28.0,35.0,24.0,21.0,20.0,23.0,23.0,27.0,16.0,16.0,20.0,19.0,20.0,12.0,7.0,27.0 F81072,46.0,48.0,42.0,52.0,46.0,52.0,51.0,51.0,57.0,62.0,43.0,45.0,41.0,44.0,53.0,24.0,38.0,32.0,40.0,22.0,31.0,28.0,23.0,38.0,33.0,45.0,45.0,43.0,46.0,40.0,57.0,49.0,56.0,69.0,74.0,68.0,86.0,66.0,51.0,72.0,68.0,61.0,63.0,73.0,77.0,56.0,50.0,48.0,51.0,42.0,57.0,70.0,46.0,48.0,51.0,47.0,45.0,53.0,58.0,45.0,63.0,63.0,40.0,56.0,50.0,41.0,47.0,52.0,39.0,34.0,40.0,45.0,40.0,49.0,29.0,41.0,29.0,41.0,56.0,35.0,36.0,26.0,22.0,21.0,17.0,21.0,23.0,12.0,10.0,16.0,8.0,12.0,5.0,7.0,4.0,19.0 F81078,68.0,82.0,76.0,81.0,79.0,76.0,62.0,76.0,74.0,79.0,80.0,83.0,69.0,79.0,88.0,85.0,70.0,78.0,79.0,49.0,66.0,64.0,63.0,62.0,67.0,67.0,55.0,71.0,71.0,81.0,77.0,77.0,90.0,105.0,116.0,83.0,96.0,103.0,101.0,105.0,111.0,97.0,79.0,86.0,97.0,82.0,93.0,104.0,78.0,80.0,99.0,65.0,78.0,83.0,96.0,72.0,80.0,72.0,81.0,58.0,72.0,72.0,60.0,57.0,44.0,54.0,48.0,43.0,47.0,40.0,51.0,42.0,36.0,56.0,40.0,34.0,31.0,37.0,37.0,27.0,31.0,34.0,18.0,20.0,20.0,14.0,13.0,14.0,10.0,11.0,6.0,5.0,2.0,5.0,3.0,5.0 F81090,59.0,69.0,59.0,71.0,75.0,66.0,55.0,59.0,71.0,82.0,77.0,67.0,72.0,66.0,63.0,71.0,64.0,58.0,67.0,52.0,42.0,59.0,40.0,45.0,71.0,60.0,48.0,66.0,41.0,74.0,75.0,66.0,75.0,99.0,71.0,93.0,85.0,78.0,79.0,89.0,87.0,71.0,86.0,92.0,88.0,76.0,60.0,82.0,69.0,69.0,79.0,71.0,78.0,74.0,88.0,76.0,87.0,68.0,86.0,89.0,62.0,86.0,63.0,72.0,83.0,66.0,62.0,72.0,65.0,58.0,64.0,57.0,51.0,48.0,66.0,54.0,61.0,63.0,68.0,59.0,47.0,53.0,42.0,24.0,34.0,35.0,32.0,29.0,13.0,24.0,18.0,19.0,12.0,8.0,7.0,25.0 F81106,42.0,67.0,56.0,56.0,73.0,72.0,60.0,74.0,83.0,81.0,61.0,81.0,67.0,75.0,71.0,76.0,76.0,70.0,62.0,72.0,55.0,53.0,58.0,61.0,56.0,54.0,65.0,77.0,68.0,75.0,72.0,90.0,75.0,85.0,88.0,73.0,103.0,92.0,77.0,83.0,87.0,104.0,77.0,87.0,85.0,77.0,76.0,59.0,58.0,68.0,54.0,60.0,54.0,62.0,76.0,81.0,60.0,86.0,74.0,54.0,75.0,63.0,59.0,62.0,62.0,66.0,71.0,68.0,60.0,43.0,50.0,41.0,29.0,33.0,40.0,28.0,23.0,29.0,34.0,22.0,21.0,27.0,34.0,18.0,21.0,20.0,27.0,16.0,15.0,12.0,16.0,9.0,11.0,16.0,9.0,12.0 F81118,43.0,71.0,58.0,68.0,60.0,74.0,81.0,83.0,90.0,108.0,103.0,76.0,96.0,83.0,95.0,108.0,78.0,125.0,83.0,66.0,70.0,70.0,68.0,84.0,64.0,72.0,77.0,80.0,75.0,83.0,58.0,75.0,92.0,95.0,99.0,90.0,107.0,95.0,83.0,89.0,92.0,103.0,89.0,111.0,87.0,88.0,87.0,105.0,96.0,91.0,105.0,91.0,113.0,95.0,104.0,117.0,112.0,108.0,113.0,115.0,104.0,108.0,101.0,79.0,101.0,84.0,74.0,82.0,64.0,67.0,67.0,75.0,60.0,68.0,72.0,59.0,71.0,77.0,63.0,64.0,60.0,50.0,41.0,36.0,31.0,42.0,37.0,27.0,29.0,29.0,14.0,15.0,15.0,20.0,16.0,22.0 F81120,63.0,69.0,64.0,68.0,66.0,80.0,62.0,89.0,87.0,92.0,85.0,109.0,93.0,89.0,107.0,117.0,93.0,120.0,72.0,66.0,70.0,57.0,56.0,79.0,67.0,72.0,63.0,72.0,71.0,77.0,80.0,107.0,81.0,105.0,102.0,111.0,86.0,111.0,110.0,101.0,123.0,106.0,101.0,119.0,96.0,78.0,76.0,63.0,82.0,74.0,68.0,75.0,79.0,71.0,75.0,67.0,82.0,67.0,65.0,82.0,93.0,75.0,64.0,71.0,67.0,70.0,70.0,69.0,54.0,57.0,64.0,62.0,64.0,39.0,54.0,48.0,37.0,52.0,34.0,41.0,37.0,24.0,32.0,20.0,17.0,25.0,21.0,21.0,18.0,17.0,12.0,12.0,8.0,15.0,10.0,14.0 F81131,54.0,39.0,39.0,35.0,46.0,59.0,45.0,42.0,55.0,40.0,45.0,53.0,57.0,62.0,49.0,59.0,47.0,45.0,52.0,48.0,28.0,41.0,39.0,33.0,32.0,59.0,43.0,40.0,49.0,49.0,52.0,56.0,46.0,57.0,54.0,48.0,65.0,60.0,63.0,65.0,65.0,51.0,69.0,58.0,63.0,46.0,56.0,63.0,45.0,65.0,58.0,61.0,64.0,62.0,75.0,66.0,78.0,67.0,86.0,75.0,65.0,85.0,69.0,71.0,54.0,68.0,51.0,71.0,65.0,51.0,51.0,43.0,49.0,47.0,56.0,45.0,52.0,51.0,48.0,36.0,45.0,31.0,36.0,39.0,29.0,22.0,23.0,17.0,17.0,10.0,14.0,10.0,5.0,5.0,12.0,21.0 F81136,81.0,111.0,93.0,95.0,89.0,104.0,85.0,89.0,103.0,88.0,85.0,68.0,83.0,79.0,86.0,71.0,83.0,89.0,73.0,65.0,57.0,73.0,77.0,85.0,94.0,78.0,97.0,123.0,96.0,121.0,120.0,117.0,149.0,134.0,138.0,146.0,134.0,135.0,127.0,130.0,139.0,118.0,156.0,122.0,119.0,102.0,103.0,127.0,100.0,93.0,98.0,94.0,68.0,90.0,109.0,92.0,82.0,101.0,74.0,96.0,90.0,86.0,72.0,67.0,76.0,53.0,56.0,52.0,48.0,46.0,50.0,41.0,45.0,42.0,41.0,36.0,52.0,43.0,53.0,40.0,36.0,33.0,28.0,32.0,22.0,21.0,29.0,18.0,23.0,22.0,8.0,11.0,8.0,11.0,6.0,33.0 F81152,47.0,61.0,63.0,74.0,65.0,68.0,65.0,70.0,83.0,82.0,69.0,74.0,72.0,67.0,70.0,75.0,63.0,63.0,60.0,86.0,57.0,54.0,56.0,70.0,64.0,62.0,76.0,70.0,79.0,74.0,78.0,89.0,81.0,94.0,93.0,100.0,100.0,107.0,88.0,107.0,113.0,107.0,101.0,94.0,101.0,108.0,86.0,76.0,86.0,80.0,66.0,75.0,58.0,81.0,91.0,75.0,69.0,84.0,80.0,66.0,85.0,74.0,76.0,81.0,71.0,71.0,59.0,65.0,62.0,56.0,48.0,54.0,57.0,48.0,58.0,34.0,40.0,41.0,48.0,34.0,37.0,40.0,38.0,21.0,24.0,31.0,15.0,29.0,19.0,19.0,11.0,11.0,7.0,10.0,5.0,15.0 F81165,20.0,19.0,24.0,24.0,31.0,31.0,30.0,40.0,28.0,34.0,24.0,21.0,26.0,21.0,13.0,19.0,19.0,22.0,16.0,19.0,16.0,14.0,18.0,14.0,22.0,21.0,25.0,36.0,23.0,22.0,24.0,31.0,34.0,42.0,40.0,29.0,37.0,41.0,39.0,44.0,41.0,26.0,38.0,44.0,26.0,37.0,37.0,24.0,26.0,15.0,29.0,27.0,33.0,25.0,30.0,35.0,24.0,26.0,37.0,41.0,27.0,46.0,26.0,31.0,31.0,24.0,20.0,28.0,31.0,21.0,31.0,23.0,22.0,35.0,12.0,14.0,20.0,32.0,41.0,13.0,16.0,20.0,10.0,16.0,13.0,9.0,8.0,11.0,4.0,6.0,1.0,5.0,3.0,3.0,5.0,4.0 F81169,25.0,31.0,37.0,29.0,50.0,41.0,38.0,31.0,42.0,49.0,35.0,46.0,40.0,48.0,36.0,34.0,42.0,62.0,37.0,33.0,32.0,33.0,44.0,40.0,41.0,36.0,56.0,48.0,55.0,46.0,53.0,39.0,47.0,54.0,49.0,53.0,58.0,66.0,59.0,60.0,71.0,71.0,41.0,53.0,63.0,56.0,64.0,53.0,68.0,46.0,59.0,51.0,54.0,68.0,61.0,62.0,58.0,66.0,37.0,69.0,63.0,57.0,53.0,42.0,51.0,36.0,41.0,41.0,33.0,35.0,31.0,43.0,33.0,50.0,25.0,41.0,40.0,44.0,38.0,33.0,32.0,40.0,37.0,31.0,25.0,25.0,21.0,9.0,17.0,15.0,12.0,6.0,14.0,8.0,2.0,21.0 F81181,131.0,136.0,136.0,161.0,150.0,151.0,144.0,157.0,153.0,113.0,149.0,190.0,160.0,140.0,150.0,142.0,139.0,143.0,130.0,107.0,111.0,99.0,112.0,108.0,135.0,188.0,196.0,184.0,193.0,234.0,222.0,224.0,227.0,242.0,244.0,249.0,242.0,239.0,199.0,187.0,174.0,167.0,179.0,149.0,183.0,175.0,172.0,138.0,144.0,127.0,131.0,104.0,129.0,124.0,114.0,118.0,129.0,93.0,131.0,109.0,102.0,97.0,94.0,109.0,96.0,102.0,91.0,87.0,88.0,91.0,76.0,95.0,74.0,58.0,53.0,56.0,41.0,68.0,55.0,35.0,37.0,32.0,40.0,17.0,35.0,18.0,19.0,29.0,22.0,15.0,23.0,17.0,12.0,8.0,10.0,35.0 F81184,14.0,19.0,18.0,22.0,20.0,12.0,13.0,30.0,26.0,14.0,20.0,19.0,15.0,27.0,22.0,25.0,25.0,27.0,24.0,23.0,15.0,10.0,20.0,23.0,19.0,22.0,19.0,15.0,22.0,22.0,23.0,19.0,25.0,25.0,23.0,25.0,26.0,28.0,23.0,19.0,25.0,19.0,29.0,24.0,28.0,31.0,27.0,18.0,24.0,32.0,16.0,15.0,27.0,22.0,28.0,26.0,33.0,28.0,39.0,43.0,43.0,33.0,33.0,31.0,27.0,31.0,40.0,29.0,25.0,16.0,30.0,33.0,21.0,23.0,28.0,15.0,24.0,32.0,30.0,15.0,15.0,14.0,12.0,17.0,7.0,8.0,8.0,8.0,8.0,7.0,6.0,7.0,1.0,5.0,3.0,4.0 F81216,20.0,28.0,18.0,15.0,28.0,28.0,17.0,27.0,27.0,29.0,18.0,31.0,26.0,28.0,24.0,31.0,25.0,27.0,35.0,23.0,22.0,22.0,27.0,29.0,21.0,23.0,27.0,31.0,23.0,30.0,29.0,24.0,18.0,24.0,25.0,28.0,32.0,32.0,34.0,26.0,25.0,35.0,41.0,25.0,36.0,34.0,27.0,31.0,34.0,33.0,33.0,45.0,33.0,33.0,34.0,43.0,37.0,43.0,25.0,37.0,27.0,26.0,33.0,23.0,32.0,25.0,23.0,17.0,19.0,19.0,22.0,21.0,23.0,11.0,23.0,12.0,18.0,20.0,21.0,22.0,19.0,15.0,16.0,13.0,15.0,20.0,14.0,18.0,10.0,7.0,12.0,10.0,7.0,7.0,5.0,12.0 F81619,14.0,27.0,22.0,23.0,24.0,32.0,29.0,23.0,24.0,26.0,25.0,26.0,36.0,23.0,24.0,24.0,24.0,25.0,19.0,18.0,22.0,14.0,17.0,12.0,18.0,15.0,22.0,16.0,35.0,30.0,28.0,22.0,29.0,30.0,33.0,24.0,38.0,36.0,44.0,40.0,43.0,38.0,36.0,28.0,34.0,35.0,19.0,24.0,25.0,13.0,25.0,22.0,11.0,20.0,26.0,19.0,20.0,19.0,15.0,24.0,18.0,19.0,21.0,27.0,19.0,15.0,30.0,13.0,22.0,20.0,17.0,21.0,16.0,8.0,10.0,11.0,7.0,12.0,11.0,7.0,6.0,6.0,11.0,6.0,6.0,5.0,4.0,5.0,7.0,1.0,7.0,3.0,8.0,3.0,3.0,10.0 F81725,41.0,43.0,47.0,63.0,42.0,52.0,57.0,59.0,47.0,49.0,56.0,51.0,56.0,53.0,53.0,64.0,56.0,63.0,54.0,52.0,60.0,62.0,51.0,44.0,66.0,49.0,64.0,67.0,67.0,42.0,67.0,54.0,70.0,64.0,59.0,74.0,67.0,86.0,68.0,69.0,58.0,62.0,74.0,61.0,68.0,64.0,66.0,68.0,50.0,76.0,63.0,55.0,55.0,65.0,87.0,70.0,58.0,53.0,75.0,64.0,80.0,52.0,65.0,51.0,61.0,42.0,39.0,25.0,53.0,34.0,37.0,40.0,37.0,27.0,42.0,33.0,46.0,43.0,54.0,34.0,30.0,22.0,29.0,10.0,19.0,17.0,18.0,18.0,17.0,15.0,13.0,9.0,12.0,12.0,8.0,25.0 F81749,67.0,75.0,61.0,93.0,100.0,106.0,86.0,93.0,93.0,103.0,94.0,85.0,87.0,86.0,82.0,89.0,82.0,88.0,77.0,64.0,67.0,60.0,65.0,75.0,63.0,79.0,73.0,90.0,83.0,92.0,102.0,103.0,120.0,123.0,129.0,122.0,120.0,134.0,119.0,99.0,141.0,105.0,104.0,97.0,94.0,99.0,106.0,96.0,89.0,89.0,94.0,88.0,92.0,84.0,98.0,88.0,95.0,98.0,90.0,84.0,98.0,87.0,94.0,90.0,82.0,61.0,76.0,77.0,67.0,71.0,71.0,57.0,69.0,61.0,56.0,55.0,53.0,66.0,74.0,50.0,50.0,29.0,45.0,40.0,35.0,33.0,31.0,28.0,13.0,26.0,14.0,16.0,12.0,9.0,12.0,20.0 Y01924,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,,,,,1.0,2.0,,,1.0,,,,1.0,,,,,,1.0,,1.0,,1.0,,,2.0,,1.0,,,1.0,1.0,1.0,,,1.0,,1.0,,1.0,1.0,,,2.0,1.0,2.0,2.0,2.0,,,,,1.0,,,,,,,,,,,, Y02639,48.0,46.0,56.0,74.0,69.0,68.0,76.0,67.0,79.0,101.0,97.0,77.0,92.0,91.0,82.0,89.0,72.0,65.0,49.0,34.0,40.0,40.0,37.0,47.0,39.0,41.0,47.0,52.0,44.0,51.0,78.0,64.0,88.0,95.0,88.0,110.0,106.0,104.0,117.0,112.0,105.0,113.0,120.0,108.0,105.0,89.0,91.0,87.0,77.0,60.0,52.0,57.0,61.0,58.0,51.0,35.0,40.0,50.0,41.0,44.0,42.0,38.0,37.0,34.0,33.0,41.0,32.0,29.0,24.0,24.0,22.0,17.0,20.0,22.0,15.0,12.0,15.0,15.0,14.0,13.0,8.0,12.0,14.0,10.0,3.0,11.0,4.0,7.0,3.0,3.0,5.0,5.0,8.0,5.0,1.0,15.0 Y06095,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,1.0,,,1.0,,,,1.0,,,,,1.0,,,,1.0,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,, Y07016,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 F82001,28.0,26.0,24.0,25.0,22.0,43.0,25.0,39.0,38.0,47.0,49.0,40.0,48.0,56.0,37.0,69.0,43.0,48.0,50.0,39.0,44.0,34.0,44.0,41.0,45.0,31.0,29.0,46.0,42.0,37.0,43.0,34.0,42.0,45.0,43.0,42.0,34.0,47.0,38.0,43.0,61.0,44.0,56.0,49.0,42.0,43.0,44.0,35.0,40.0,39.0,37.0,43.0,35.0,38.0,50.0,39.0,38.0,37.0,32.0,30.0,33.0,30.0,27.0,10.0,30.0,22.0,14.0,20.0,19.0,14.0,13.0,12.0,14.0,7.0,6.0,11.0,13.0,10.0,10.0,13.0,3.0,3.0,7.0,5.0,4.0,14.0,7.0,4.0,5.0,4.0,1.0,1.0,1.0,1.0,3.0,4.0 F82002,24.0,35.0,34.0,31.0,37.0,39.0,40.0,36.0,44.0,43.0,36.0,51.0,26.0,48.0,35.0,42.0,41.0,43.0,30.0,33.0,19.0,22.0,36.0,31.0,35.0,36.0,35.0,52.0,39.0,44.0,34.0,38.0,38.0,46.0,40.0,45.0,50.0,51.0,45.0,37.0,55.0,52.0,48.0,47.0,54.0,52.0,42.0,44.0,34.0,40.0,53.0,41.0,45.0,41.0,25.0,44.0,45.0,52.0,54.0,44.0,56.0,52.0,59.0,57.0,65.0,43.0,40.0,46.0,39.0,43.0,42.0,45.0,39.0,42.0,43.0,39.0,40.0,60.0,37.0,37.0,27.0,29.0,30.0,18.0,31.0,18.0,16.0,11.0,14.0,16.0,13.0,10.0,9.0,9.0,7.0,11.0 F82003,26.0,22.0,32.0,42.0,38.0,29.0,38.0,51.0,32.0,53.0,39.0,34.0,30.0,33.0,47.0,47.0,50.0,39.0,45.0,28.0,34.0,25.0,42.0,35.0,30.0,22.0,34.0,41.0,36.0,42.0,45.0,43.0,29.0,46.0,31.0,51.0,43.0,46.0,43.0,41.0,41.0,35.0,31.0,45.0,42.0,43.0,44.0,40.0,44.0,32.0,31.0,27.0,38.0,30.0,28.0,33.0,30.0,20.0,34.0,36.0,31.0,26.0,30.0,19.0,16.0,16.0,19.0,15.0,25.0,14.0,16.0,17.0,15.0,9.0,5.0,13.0,10.0,16.0,12.0,7.0,11.0,9.0,18.0,10.0,5.0,8.0,6.0,2.0,8.0,2.0,4.0,4.0,,2.0,,4.0 F82005,54.0,58.0,47.0,49.0,47.0,68.0,54.0,62.0,80.0,56.0,62.0,49.0,56.0,57.0,54.0,55.0,49.0,39.0,48.0,46.0,37.0,46.0,34.0,52.0,47.0,52.0,67.0,70.0,47.0,49.0,45.0,58.0,70.0,75.0,54.0,75.0,71.0,52.0,63.0,66.0,56.0,60.0,60.0,53.0,58.0,70.0,58.0,48.0,55.0,38.0,44.0,35.0,38.0,39.0,50.0,38.0,37.0,29.0,28.0,29.0,40.0,25.0,33.0,25.0,15.0,21.0,19.0,26.0,22.0,12.0,11.0,16.0,24.0,20.0,16.0,19.0,14.0,20.0,19.0,14.0,10.0,5.0,10.0,11.0,13.0,6.0,8.0,8.0,8.0,6.0,4.0,3.0,2.0,3.0,4.0,6.0 F82006,41.0,46.0,46.0,50.0,58.0,54.0,59.0,74.0,71.0,65.0,73.0,81.0,71.0,71.0,72.0,77.0,64.0,83.0,79.0,61.0,59.0,55.0,79.0,76.0,79.0,66.0,73.0,72.0,59.0,61.0,72.0,59.0,62.0,63.0,61.0,71.0,67.0,89.0,76.0,71.0,75.0,85.0,90.0,94.0,77.0,83.0,86.0,79.0,93.0,94.0,75.0,111.0,79.0,77.0,99.0,84.0,92.0,92.0,124.0,93.0,101.0,90.0,85.0,78.0,78.0,80.0,74.0,86.0,95.0,70.0,73.0,72.0,73.0,84.0,84.0,79.0,84.0,100.0,102.0,62.0,76.0,68.0,60.0,48.0,55.0,54.0,42.0,46.0,44.0,41.0,37.0,32.0,34.0,23.0,19.0,58.0 F82007,29.0,45.0,52.0,45.0,45.0,49.0,45.0,53.0,51.0,49.0,51.0,59.0,58.0,63.0,57.0,51.0,56.0,52.0,45.0,48.0,41.0,34.0,44.0,47.0,55.0,73.0,52.0,44.0,61.0,42.0,65.0,62.0,65.0,73.0,75.0,71.0,64.0,71.0,66.0,58.0,66.0,71.0,79.0,76.0,62.0,60.0,66.0,45.0,58.0,67.0,58.0,74.0,56.0,80.0,77.0,81.0,78.0,54.0,71.0,69.0,84.0,65.0,75.0,81.0,76.0,71.0,64.0,69.0,50.0,57.0,61.0,59.0,62.0,73.0,62.0,72.0,64.0,84.0,71.0,57.0,45.0,43.0,41.0,37.0,34.0,42.0,34.0,42.0,24.0,22.0,19.0,18.0,16.0,14.0,8.0,23.0 F82008,29.0,50.0,44.0,52.0,41.0,52.0,69.0,54.0,61.0,89.0,72.0,65.0,70.0,79.0,66.0,60.0,72.0,76.0,68.0,58.0,56.0,55.0,62.0,62.0,58.0,64.0,66.0,65.0,66.0,64.0,74.0,58.0,75.0,79.0,76.0,70.0,69.0,85.0,88.0,101.0,80.0,87.0,77.0,73.0,59.0,102.0,80.0,76.0,75.0,88.0,69.0,75.0,68.0,84.0,84.0,90.0,85.0,66.0,111.0,113.0,91.0,122.0,108.0,109.0,109.0,100.0,99.0,82.0,93.0,70.0,72.0,62.0,68.0,71.0,69.0,64.0,69.0,72.0,78.0,77.0,60.0,68.0,68.0,41.0,42.0,36.0,45.0,24.0,33.0,26.0,19.0,13.0,25.0,25.0,10.0,26.0 F82009,129.0,124.0,132.0,104.0,113.0,119.0,128.0,136.0,130.0,118.0,138.0,137.0,129.0,118.0,119.0,129.0,142.0,110.0,111.0,124.0,119.0,100.0,92.0,116.0,135.0,157.0,164.0,145.0,156.0,155.0,170.0,162.0,179.0,176.0,212.0,180.0,192.0,165.0,190.0,176.0,164.0,146.0,132.0,171.0,159.0,168.0,145.0,143.0,123.0,109.0,106.0,128.0,95.0,117.0,119.0,97.0,126.0,134.0,104.0,107.0,118.0,133.0,109.0,116.0,99.0,111.0,98.0,103.0,96.0,97.0,94.0,92.0,77.0,77.0,92.0,86.0,73.0,106.0,82.0,82.0,67.0,59.0,73.0,42.0,53.0,51.0,35.0,47.0,33.0,37.0,17.0,20.0,20.0,25.0,16.0,40.0 F82010,36.0,49.0,42.0,57.0,53.0,51.0,53.0,59.0,78.0,59.0,59.0,63.0,60.0,51.0,48.0,54.0,51.0,48.0,34.0,52.0,43.0,50.0,36.0,51.0,51.0,54.0,56.0,44.0,53.0,51.0,57.0,65.0,68.0,53.0,86.0,61.0,78.0,72.0,75.0,70.0,77.0,89.0,74.0,79.0,63.0,65.0,63.0,67.0,52.0,59.0,52.0,52.0,48.0,39.0,57.0,48.0,53.0,46.0,60.0,48.0,59.0,44.0,50.0,39.0,57.0,46.0,44.0,47.0,36.0,27.0,38.0,26.0,34.0,29.0,26.0,24.0,35.0,28.0,28.0,24.0,16.0,10.0,18.0,9.0,7.0,12.0,10.0,11.0,9.0,6.0,8.0,5.0,1.0,6.0,3.0,8.0 F82011,40.0,41.0,56.0,46.0,53.0,59.0,60.0,70.0,55.0,62.0,51.0,64.0,69.0,59.0,66.0,54.0,64.0,57.0,60.0,53.0,46.0,43.0,46.0,46.0,45.0,78.0,60.0,66.0,61.0,71.0,73.0,72.0,76.0,73.0,75.0,70.0,94.0,101.0,78.0,74.0,81.0,59.0,70.0,79.0,71.0,64.0,58.0,62.0,57.0,66.0,69.0,63.0,70.0,54.0,62.0,61.0,62.0,59.0,59.0,66.0,63.0,59.0,44.0,53.0,55.0,38.0,56.0,46.0,45.0,35.0,47.0,41.0,30.0,37.0,31.0,42.0,37.0,39.0,46.0,34.0,29.0,32.0,22.0,25.0,26.0,33.0,24.0,21.0,21.0,12.0,17.0,12.0,9.0,6.0,4.0,10.0 F82013,92.0,118.0,110.0,115.0,89.0,108.0,91.0,119.0,122.0,98.0,105.0,114.0,94.0,104.0,80.0,81.0,82.0,92.0,89.0,64.0,53.0,72.0,67.0,80.0,107.0,115.0,116.0,144.0,129.0,144.0,151.0,141.0,161.0,135.0,165.0,167.0,183.0,173.0,158.0,183.0,155.0,122.0,136.0,125.0,147.0,142.0,104.0,96.0,125.0,97.0,106.0,103.0,104.0,120.0,89.0,102.0,134.0,98.0,106.0,99.0,116.0,133.0,89.0,87.0,83.0,102.0,99.0,93.0,92.0,77.0,77.0,80.0,64.0,66.0,71.0,59.0,78.0,79.0,82.0,72.0,54.0,62.0,47.0,49.0,45.0,43.0,54.0,42.0,44.0,34.0,38.0,27.0,23.0,20.0,14.0,40.0 F82014,27.0,46.0,44.0,38.0,53.0,38.0,48.0,52.0,49.0,64.0,66.0,59.0,56.0,65.0,63.0,55.0,58.0,62.0,42.0,55.0,53.0,52.0,46.0,42.0,28.0,53.0,57.0,28.0,58.0,40.0,54.0,54.0,50.0,68.0,51.0,57.0,68.0,66.0,63.0,51.0,52.0,65.0,66.0,64.0,51.0,60.0,47.0,56.0,45.0,48.0,48.0,48.0,44.0,47.0,46.0,50.0,47.0,39.0,47.0,47.0,39.0,42.0,35.0,27.0,56.0,37.0,49.0,31.0,29.0,36.0,24.0,30.0,29.0,24.0,36.0,26.0,32.0,25.0,24.0,27.0,23.0,22.0,15.0,11.0,17.0,15.0,10.0,17.0,9.0,6.0,9.0,4.0,2.0,3.0,7.0,8.0 F82015,17.0,21.0,19.0,15.0,26.0,29.0,27.0,28.0,30.0,47.0,39.0,31.0,42.0,29.0,39.0,43.0,37.0,35.0,34.0,33.0,33.0,37.0,31.0,37.0,29.0,31.0,36.0,35.0,30.0,29.0,34.0,37.0,56.0,34.0,46.0,32.0,53.0,41.0,44.0,44.0,34.0,40.0,38.0,37.0,43.0,38.0,35.0,41.0,31.0,33.0,39.0,36.0,35.0,35.0,33.0,33.0,32.0,33.0,29.0,31.0,28.0,27.0,21.0,19.0,24.0,29.0,20.0,23.0,17.0,14.0,15.0,15.0,17.0,14.0,9.0,13.0,16.0,7.0,15.0,4.0,7.0,5.0,6.0,7.0,4.0,2.0,5.0,4.0,5.0,4.0,6.0,3.0,2.0,,,2.0 F82016,20.0,18.0,32.0,32.0,29.0,33.0,39.0,40.0,30.0,47.0,38.0,37.0,42.0,46.0,35.0,68.0,50.0,59.0,53.0,50.0,35.0,35.0,49.0,37.0,38.0,41.0,29.0,35.0,42.0,39.0,42.0,42.0,43.0,37.0,45.0,48.0,56.0,42.0,53.0,38.0,43.0,60.0,50.0,62.0,45.0,45.0,54.0,45.0,54.0,39.0,54.0,38.0,39.0,54.0,42.0,43.0,48.0,46.0,39.0,31.0,40.0,41.0,32.0,29.0,34.0,35.0,22.0,23.0,33.0,24.0,26.0,17.0,18.0,23.0,25.0,21.0,21.0,21.0,15.0,20.0,11.0,14.0,11.0,9.0,9.0,10.0,7.0,5.0,5.0,4.0,4.0,8.0,3.0,7.0,1.0,6.0 F82017,40.0,46.0,50.0,51.0,48.0,58.0,56.0,60.0,55.0,58.0,69.0,67.0,65.0,59.0,59.0,73.0,71.0,71.0,56.0,48.0,58.0,47.0,47.0,58.0,50.0,65.0,58.0,58.0,63.0,68.0,54.0,62.0,71.0,63.0,67.0,64.0,61.0,76.0,61.0,66.0,74.0,63.0,51.0,81.0,66.0,72.0,56.0,57.0,54.0,54.0,65.0,48.0,45.0,54.0,48.0,58.0,59.0,70.0,49.0,39.0,51.0,45.0,34.0,33.0,40.0,46.0,40.0,26.0,28.0,32.0,19.0,24.0,26.0,24.0,32.0,23.0,23.0,25.0,25.0,15.0,18.0,16.0,12.0,8.0,3.0,6.0,9.0,8.0,6.0,5.0,1.0,2.0,5.0,3.0,4.0,8.0 F82018,68.0,89.0,63.0,60.0,85.0,85.0,74.0,66.0,59.0,83.0,83.0,83.0,108.0,82.0,86.0,85.0,96.0,94.0,80.0,74.0,90.0,78.0,88.0,93.0,126.0,104.0,102.0,125.0,118.0,119.0,96.0,115.0,79.0,96.0,105.0,79.0,98.0,99.0,97.0,85.0,94.0,91.0,88.0,91.0,85.0,78.0,89.0,79.0,73.0,72.0,73.0,62.0,59.0,63.0,73.0,75.0,63.0,55.0,55.0,59.0,51.0,60.0,51.0,36.0,52.0,39.0,46.0,28.0,44.0,32.0,37.0,16.0,28.0,30.0,29.0,30.0,28.0,30.0,21.0,21.0,21.0,14.0,15.0,17.0,13.0,17.0,16.0,9.0,7.0,12.0,4.0,8.0,1.0,5.0,5.0,12.0 F82019,25.0,24.0,22.0,40.0,35.0,37.0,27.0,42.0,49.0,49.0,52.0,30.0,42.0,40.0,43.0,31.0,50.0,36.0,29.0,28.0,45.0,35.0,28.0,40.0,46.0,45.0,46.0,64.0,51.0,47.0,51.0,54.0,41.0,38.0,34.0,45.0,46.0,51.0,53.0,53.0,52.0,46.0,47.0,43.0,48.0,44.0,32.0,46.0,41.0,44.0,42.0,50.0,48.0,39.0,44.0,46.0,46.0,52.0,33.0,49.0,45.0,34.0,31.0,44.0,26.0,35.0,32.0,25.0,24.0,24.0,19.0,26.0,30.0,16.0,28.0,16.0,22.0,20.0,23.0,23.0,12.0,22.0,19.0,17.0,12.0,16.0,8.0,13.0,9.0,17.0,10.0,4.0,3.0,7.0,4.0,7.0 F82021,55.0,48.0,49.0,52.0,55.0,49.0,47.0,54.0,51.0,60.0,53.0,54.0,57.0,52.0,46.0,52.0,60.0,49.0,50.0,56.0,49.0,58.0,59.0,62.0,58.0,82.0,67.0,49.0,66.0,70.0,77.0,69.0,68.0,66.0,75.0,75.0,73.0,65.0,63.0,70.0,59.0,63.0,56.0,52.0,75.0,74.0,62.0,51.0,52.0,58.0,72.0,64.0,60.0,75.0,61.0,69.0,68.0,68.0,81.0,82.0,60.0,46.0,45.0,54.0,66.0,49.0,56.0,53.0,40.0,50.0,41.0,31.0,42.0,45.0,38.0,51.0,54.0,40.0,55.0,37.0,37.0,30.0,34.0,29.0,25.0,30.0,16.0,23.0,14.0,10.0,12.0,7.0,11.0,4.0,7.0,11.0 F82022,51.0,52.0,52.0,57.0,62.0,62.0,70.0,62.0,72.0,77.0,65.0,76.0,60.0,75.0,82.0,64.0,75.0,65.0,69.0,79.0,56.0,66.0,70.0,73.0,72.0,68.0,82.0,68.0,91.0,88.0,74.0,79.0,122.0,101.0,92.0,99.0,86.0,96.0,104.0,116.0,89.0,70.0,74.0,78.0,77.0,87.0,69.0,76.0,77.0,71.0,92.0,69.0,90.0,90.0,97.0,97.0,73.0,91.0,118.0,104.0,100.0,119.0,100.0,76.0,97.0,79.0,83.0,69.0,84.0,67.0,52.0,75.0,64.0,71.0,71.0,68.0,90.0,80.0,74.0,62.0,50.0,63.0,42.0,41.0,42.0,40.0,39.0,23.0,23.0,25.0,18.0,20.0,14.0,14.0,3.0,18.0 F82023,14.0,19.0,19.0,27.0,13.0,15.0,17.0,15.0,23.0,12.0,19.0,19.0,12.0,19.0,15.0,15.0,21.0,23.0,14.0,23.0,22.0,12.0,21.0,23.0,16.0,25.0,17.0,22.0,23.0,23.0,25.0,26.0,22.0,30.0,32.0,25.0,30.0,29.0,20.0,27.0,27.0,23.0,20.0,26.0,23.0,17.0,23.0,25.0,18.0,13.0,11.0,24.0,23.0,20.0,22.0,14.0,22.0,15.0,21.0,34.0,20.0,25.0,16.0,20.0,16.0,23.0,28.0,20.0,17.0,17.0,18.0,16.0,9.0,14.0,10.0,24.0,16.0,15.0,23.0,19.0,15.0,14.0,10.0,10.0,9.0,8.0,11.0,10.0,7.0,10.0,7.0,6.0,3.0,2.0,4.0,4.0 F82025,28.0,37.0,23.0,38.0,35.0,46.0,46.0,54.0,48.0,40.0,53.0,50.0,60.0,49.0,45.0,45.0,59.0,52.0,49.0,44.0,40.0,31.0,38.0,33.0,34.0,39.0,35.0,53.0,31.0,41.0,44.0,40.0,49.0,59.0,49.0,46.0,57.0,54.0,53.0,60.0,49.0,55.0,40.0,49.0,45.0,36.0,52.0,43.0,53.0,49.0,60.0,38.0,42.0,30.0,29.0,35.0,33.0,32.0,31.0,37.0,13.0,35.0,25.0,24.0,12.0,26.0,25.0,15.0,16.0,18.0,31.0,18.0,17.0,14.0,13.0,14.0,4.0,13.0,8.0,12.0,6.0,11.0,10.0,6.0,4.0,4.0,4.0,4.0,3.0,1.0,1.0,3.0,7.0,,1.0,6.0 F82027,9.0,9.0,8.0,11.0,10.0,6.0,11.0,9.0,13.0,12.0,11.0,16.0,19.0,9.0,10.0,12.0,13.0,12.0,10.0,7.0,10.0,10.0,10.0,17.0,26.0,16.0,20.0,19.0,15.0,17.0,22.0,15.0,17.0,9.0,14.0,12.0,15.0,14.0,20.0,18.0,12.0,17.0,23.0,12.0,9.0,17.0,15.0,12.0,10.0,21.0,8.0,10.0,12.0,7.0,13.0,20.0,8.0,13.0,12.0,15.0,9.0,6.0,13.0,14.0,10.0,14.0,9.0,15.0,10.0,11.0,12.0,8.0,12.0,7.0,8.0,6.0,5.0,9.0,10.0,3.0,6.0,4.0,4.0,7.0,1.0,2.0,6.0,8.0,4.0,3.0,5.0,4.0,1.0,4.0,1.0,4.0 F82028,43.0,65.0,34.0,64.0,74.0,62.0,64.0,76.0,81.0,63.0,70.0,73.0,64.0,66.0,49.0,63.0,58.0,65.0,60.0,67.0,52.0,58.0,69.0,58.0,70.0,63.0,83.0,50.0,63.0,56.0,69.0,72.0,86.0,84.0,76.0,86.0,84.0,82.0,87.0,92.0,83.0,83.0,77.0,92.0,71.0,80.0,68.0,55.0,65.0,73.0,57.0,46.0,46.0,70.0,57.0,55.0,78.0,66.0,73.0,61.0,69.0,57.0,59.0,63.0,67.0,49.0,53.0,56.0,49.0,43.0,32.0,39.0,37.0,47.0,39.0,37.0,36.0,38.0,46.0,35.0,18.0,24.0,27.0,26.0,17.0,22.0,29.0,12.0,15.0,22.0,7.0,13.0,6.0,6.0,6.0,12.0 F82030,47.0,75.0,78.0,81.0,99.0,94.0,94.0,105.0,104.0,112.0,93.0,109.0,79.0,104.0,97.0,94.0,97.0,105.0,88.0,97.0,73.0,80.0,74.0,87.0,115.0,91.0,107.0,95.0,113.0,112.0,103.0,100.0,119.0,104.0,122.0,118.0,107.0,137.0,96.0,139.0,126.0,112.0,115.0,98.0,114.0,102.0,103.0,79.0,84.0,83.0,92.0,89.0,76.0,79.0,87.0,96.0,86.0,97.0,103.0,96.0,73.0,107.0,84.0,59.0,77.0,70.0,62.0,69.0,61.0,58.0,61.0,67.0,46.0,57.0,59.0,75.0,62.0,67.0,61.0,38.0,50.0,40.0,50.0,29.0,34.0,33.0,27.0,32.0,18.0,20.0,21.0,21.0,17.0,6.0,11.0,32.0 F82031,17.0,23.0,18.0,25.0,29.0,16.0,22.0,21.0,24.0,30.0,34.0,30.0,23.0,26.0,30.0,30.0,40.0,42.0,25.0,25.0,30.0,22.0,27.0,16.0,28.0,28.0,32.0,37.0,33.0,26.0,26.0,24.0,33.0,35.0,28.0,25.0,31.0,36.0,36.0,26.0,23.0,32.0,27.0,30.0,30.0,32.0,15.0,17.0,34.0,36.0,29.0,19.0,26.0,26.0,29.0,28.0,38.0,28.0,23.0,22.0,25.0,29.0,29.0,15.0,29.0,24.0,15.0,18.0,24.0,22.0,22.0,19.0,22.0,15.0,15.0,17.0,23.0,19.0,19.0,15.0,11.0,15.0,11.0,10.0,7.0,10.0,7.0,8.0,10.0,7.0,6.0,3.0,2.0,5.0,3.0,7.0 F82033,9.0,15.0,12.0,18.0,14.0,12.0,19.0,20.0,15.0,22.0,17.0,24.0,13.0,16.0,13.0,18.0,23.0,21.0,15.0,16.0,18.0,10.0,13.0,19.0,23.0,23.0,20.0,13.0,14.0,23.0,14.0,15.0,15.0,30.0,23.0,22.0,20.0,23.0,16.0,33.0,18.0,29.0,25.0,31.0,26.0,17.0,26.0,19.0,19.0,19.0,21.0,15.0,14.0,15.0,24.0,25.0,19.0,15.0,26.0,23.0,23.0,23.0,23.0,34.0,24.0,23.0,26.0,23.0,18.0,30.0,18.0,30.0,25.0,24.0,21.0,26.0,21.0,25.0,27.0,25.0,21.0,22.0,13.0,7.0,6.0,11.0,12.0,7.0,12.0,4.0,8.0,7.0,1.0,4.0,2.0,9.0 F82034,73.0,83.0,67.0,76.0,78.0,76.0,74.0,83.0,79.0,77.0,80.0,86.0,72.0,66.0,81.0,62.0,89.0,72.0,68.0,63.0,70.0,53.0,82.0,84.0,92.0,95.0,104.0,114.0,116.0,104.0,114.0,128.0,121.0,89.0,80.0,99.0,93.0,90.0,83.0,93.0,80.0,70.0,83.0,77.0,77.0,79.0,56.0,65.0,45.0,59.0,71.0,55.0,58.0,62.0,55.0,49.0,54.0,43.0,39.0,41.0,35.0,38.0,47.0,45.0,31.0,28.0,38.0,30.0,28.0,24.0,21.0,15.0,23.0,22.0,15.0,20.0,19.0,22.0,14.0,7.0,19.0,13.0,9.0,9.0,13.0,4.0,10.0,12.0,4.0,7.0,9.0,5.0,2.0,3.0,3.0,9.0 F82038,26.0,19.0,18.0,39.0,28.0,37.0,37.0,41.0,45.0,35.0,35.0,40.0,44.0,38.0,43.0,42.0,40.0,45.0,45.0,30.0,27.0,17.0,17.0,30.0,26.0,29.0,30.0,33.0,24.0,30.0,26.0,29.0,48.0,30.0,31.0,38.0,44.0,51.0,38.0,37.0,37.0,39.0,44.0,37.0,37.0,36.0,26.0,35.0,32.0,37.0,21.0,27.0,29.0,34.0,35.0,29.0,36.0,35.0,47.0,34.0,21.0,30.0,28.0,16.0,21.0,19.0,24.0,12.0,19.0,14.0,18.0,18.0,20.0,14.0,19.0,17.0,10.0,11.0,11.0,7.0,9.0,11.0,11.0,14.0,8.0,3.0,9.0,5.0,3.0,5.0,3.0,2.0,3.0,,6.0,3.0 F82039,17.0,35.0,28.0,29.0,33.0,28.0,34.0,29.0,36.0,35.0,30.0,33.0,24.0,32.0,28.0,28.0,31.0,25.0,24.0,26.0,24.0,29.0,24.0,22.0,24.0,36.0,36.0,39.0,34.0,39.0,35.0,30.0,51.0,43.0,42.0,45.0,29.0,51.0,31.0,27.0,38.0,41.0,40.0,32.0,40.0,20.0,28.0,36.0,24.0,20.0,30.0,21.0,28.0,27.0,37.0,24.0,32.0,27.0,33.0,26.0,23.0,17.0,26.0,22.0,20.0,20.0,18.0,24.0,24.0,11.0,11.0,13.0,12.0,12.0,12.0,7.0,11.0,13.0,17.0,7.0,6.0,6.0,7.0,7.0,6.0,9.0,6.0,8.0,2.0,1.0,6.0,,4.0,1.0,2.0,2.0 F82040,43.0,31.0,25.0,21.0,33.0,37.0,27.0,17.0,37.0,26.0,30.0,18.0,27.0,20.0,27.0,29.0,15.0,26.0,24.0,25.0,24.0,33.0,42.0,41.0,56.0,40.0,54.0,46.0,67.0,66.0,47.0,60.0,49.0,37.0,43.0,36.0,43.0,39.0,30.0,37.0,29.0,33.0,30.0,24.0,30.0,27.0,28.0,16.0,22.0,17.0,19.0,24.0,22.0,17.0,19.0,20.0,13.0,19.0,28.0,13.0,17.0,12.0,17.0,8.0,12.0,10.0,9.0,5.0,12.0,7.0,8.0,4.0,7.0,7.0,6.0,2.0,6.0,5.0,1.0,4.0,6.0,4.0,1.0,1.0,3.0,5.0,6.0,4.0,3.0,3.0,,1.0,3.0,,1.0,4.0 F82042,160.0,135.0,122.0,143.0,152.0,140.0,150.0,155.0,182.0,156.0,179.0,138.0,157.0,143.0,157.0,171.0,142.0,154.0,157.0,137.0,128.0,144.0,145.0,132.0,153.0,154.0,185.0,172.0,174.0,203.0,186.0,208.0,185.0,181.0,191.0,214.0,203.0,205.0,224.0,200.0,194.0,189.0,185.0,178.0,158.0,159.0,140.0,169.0,139.0,125.0,110.0,115.0,111.0,110.0,134.0,102.0,122.0,107.0,85.0,78.0,82.0,73.0,81.0,69.0,57.0,54.0,41.0,54.0,36.0,33.0,40.0,36.0,34.0,29.0,27.0,21.0,29.0,19.0,29.0,18.0,14.0,12.0,12.0,9.0,7.0,5.0,12.0,9.0,6.0,8.0,4.0,4.0,4.0,4.0,4.0,10.0 F82045,24.0,18.0,18.0,16.0,18.0,18.0,15.0,19.0,17.0,15.0,27.0,18.0,13.0,11.0,14.0,17.0,20.0,14.0,14.0,17.0,24.0,13.0,9.0,13.0,14.0,22.0,20.0,15.0,19.0,26.0,26.0,28.0,24.0,22.0,33.0,28.0,26.0,26.0,24.0,22.0,29.0,20.0,24.0,26.0,27.0,23.0,24.0,14.0,22.0,16.0,20.0,23.0,24.0,23.0,26.0,19.0,16.0,22.0,23.0,22.0,22.0,21.0,19.0,13.0,10.0,21.0,19.0,17.0,14.0,15.0,15.0,15.0,20.0,16.0,7.0,17.0,23.0,16.0,20.0,12.0,22.0,9.0,21.0,10.0,9.0,10.0,8.0,6.0,6.0,7.0,5.0,8.0,3.0,8.0,3.0,11.0 F82051,46.0,70.0,69.0,70.0,70.0,67.0,75.0,95.0,83.0,75.0,74.0,79.0,75.0,86.0,74.0,84.0,98.0,79.0,94.0,75.0,61.0,80.0,69.0,75.0,66.0,83.0,65.0,77.0,71.0,76.0,84.0,85.0,85.0,90.0,99.0,79.0,73.0,102.0,94.0,87.0,94.0,79.0,86.0,70.0,78.0,84.0,67.0,73.0,91.0,57.0,79.0,54.0,75.0,72.0,58.0,57.0,73.0,64.0,62.0,61.0,60.0,46.0,56.0,58.0,42.0,43.0,38.0,37.0,45.0,31.0,36.0,32.0,25.0,22.0,36.0,23.0,30.0,20.0,31.0,23.0,17.0,21.0,21.0,6.0,12.0,10.0,11.0,13.0,9.0,6.0,7.0,8.0,8.0,3.0,2.0,9.0 F82055,78.0,100.0,73.0,85.0,103.0,80.0,106.0,95.0,76.0,94.0,78.0,92.0,88.0,71.0,74.0,58.0,52.0,66.0,67.0,42.0,49.0,54.0,56.0,66.0,71.0,80.0,76.0,97.0,86.0,108.0,110.0,122.0,109.0,131.0,137.0,119.0,148.0,141.0,112.0,148.0,119.0,111.0,103.0,111.0,72.0,89.0,76.0,83.0,82.0,67.0,69.0,53.0,77.0,62.0,67.0,67.0,72.0,61.0,87.0,63.0,62.0,67.0,76.0,58.0,73.0,66.0,58.0,76.0,52.0,48.0,48.0,51.0,46.0,51.0,57.0,52.0,37.0,47.0,48.0,38.0,19.0,42.0,35.0,28.0,19.0,29.0,22.0,25.0,24.0,17.0,19.0,10.0,8.0,7.0,5.0,9.0 F82604,36.0,31.0,35.0,44.0,54.0,41.0,59.0,56.0,54.0,49.0,61.0,58.0,58.0,55.0,52.0,49.0,40.0,56.0,36.0,44.0,39.0,50.0,40.0,33.0,31.0,36.0,42.0,42.0,40.0,32.0,37.0,40.0,47.0,54.0,48.0,59.0,44.0,57.0,45.0,47.0,60.0,51.0,44.0,66.0,38.0,44.0,47.0,51.0,45.0,32.0,28.0,36.0,22.0,35.0,36.0,32.0,27.0,37.0,23.0,29.0,35.0,33.0,20.0,23.0,21.0,15.0,20.0,14.0,16.0,17.0,14.0,11.0,21.0,14.0,12.0,8.0,14.0,10.0,17.0,10.0,12.0,5.0,7.0,6.0,3.0,2.0,8.0,3.0,6.0,2.0,6.0,6.0,3.0,1.0,1.0,4.0 F82607,31.0,42.0,48.0,44.0,40.0,39.0,37.0,38.0,40.0,37.0,48.0,38.0,50.0,42.0,43.0,37.0,29.0,44.0,40.0,35.0,43.0,40.0,29.0,38.0,33.0,36.0,35.0,47.0,40.0,34.0,45.0,51.0,74.0,46.0,48.0,58.0,49.0,54.0,56.0,59.0,46.0,48.0,50.0,41.0,48.0,36.0,42.0,39.0,46.0,31.0,41.0,33.0,28.0,33.0,34.0,39.0,34.0,38.0,32.0,31.0,35.0,32.0,26.0,37.0,38.0,28.0,22.0,26.0,25.0,19.0,14.0,22.0,21.0,28.0,14.0,18.0,23.0,22.0,28.0,14.0,19.0,27.0,23.0,14.0,12.0,15.0,20.0,9.0,19.0,12.0,10.0,6.0,2.0,7.0,2.0,9.0 F82609,17.0,22.0,26.0,27.0,19.0,28.0,18.0,17.0,26.0,25.0,21.0,26.0,11.0,20.0,17.0,19.0,21.0,18.0,22.0,21.0,19.0,21.0,17.0,16.0,32.0,28.0,23.0,22.0,22.0,44.0,23.0,34.0,21.0,23.0,30.0,29.0,23.0,44.0,24.0,28.0,41.0,34.0,31.0,23.0,26.0,30.0,23.0,15.0,31.0,28.0,33.0,25.0,23.0,34.0,41.0,32.0,27.0,28.0,34.0,38.0,35.0,36.0,32.0,22.0,29.0,22.0,25.0,23.0,25.0,23.0,27.0,31.0,25.0,24.0,30.0,31.0,23.0,29.0,31.0,32.0,22.0,19.0,33.0,15.0,13.0,20.0,16.0,18.0,22.0,9.0,12.0,6.0,6.0,3.0,8.0,13.0 F82610,20.0,16.0,16.0,13.0,19.0,18.0,15.0,18.0,11.0,28.0,13.0,24.0,15.0,15.0,20.0,15.0,18.0,15.0,19.0,21.0,14.0,17.0,12.0,12.0,24.0,22.0,11.0,23.0,15.0,15.0,20.0,27.0,12.0,29.0,11.0,22.0,21.0,24.0,21.0,15.0,24.0,21.0,23.0,25.0,20.0,15.0,19.0,17.0,26.0,24.0,21.0,18.0,18.0,17.0,14.0,14.0,21.0,23.0,22.0,13.0,7.0,19.0,24.0,13.0,17.0,16.0,17.0,14.0,19.0,13.0,10.0,12.0,12.0,14.0,7.0,17.0,15.0,17.0,16.0,12.0,11.0,11.0,11.0,8.0,8.0,4.0,3.0,4.0,2.0,7.0,5.0,3.0,,2.0,,3.0 F82612,63.0,58.0,70.0,70.0,83.0,75.0,75.0,91.0,86.0,92.0,79.0,61.0,64.0,88.0,58.0,63.0,80.0,66.0,64.0,72.0,78.0,68.0,69.0,101.0,102.0,92.0,116.0,88.0,101.0,97.0,93.0,101.0,109.0,95.0,85.0,95.0,111.0,103.0,100.0,109.0,95.0,95.0,98.0,77.0,82.0,79.0,79.0,81.0,67.0,54.0,69.0,67.0,55.0,55.0,53.0,62.0,50.0,49.0,44.0,40.0,53.0,40.0,46.0,36.0,30.0,46.0,45.0,41.0,29.0,33.0,37.0,29.0,38.0,21.0,31.0,19.0,22.0,25.0,17.0,13.0,11.0,18.0,13.0,9.0,18.0,12.0,7.0,10.0,10.0,5.0,5.0,5.0,6.0,4.0,3.0,8.0 F82619,22.0,36.0,30.0,29.0,39.0,35.0,29.0,32.0,27.0,40.0,21.0,19.0,22.0,25.0,18.0,20.0,23.0,23.0,21.0,19.0,25.0,29.0,17.0,27.0,30.0,31.0,34.0,30.0,46.0,36.0,32.0,33.0,33.0,40.0,34.0,39.0,46.0,48.0,34.0,29.0,35.0,29.0,25.0,23.0,29.0,20.0,27.0,21.0,23.0,26.0,21.0,21.0,26.0,25.0,18.0,18.0,23.0,24.0,15.0,30.0,21.0,18.0,16.0,19.0,14.0,20.0,18.0,12.0,10.0,12.0,14.0,12.0,13.0,16.0,11.0,7.0,10.0,14.0,23.0,16.0,7.0,9.0,19.0,8.0,8.0,11.0,10.0,9.0,11.0,11.0,6.0,,7.0,2.0,4.0,13.0 F82624,25.0,24.0,30.0,19.0,24.0,20.0,31.0,23.0,30.0,38.0,27.0,32.0,31.0,31.0,30.0,24.0,37.0,26.0,35.0,16.0,26.0,29.0,24.0,26.0,27.0,39.0,33.0,28.0,36.0,45.0,29.0,32.0,38.0,35.0,60.0,41.0,32.0,50.0,43.0,42.0,45.0,33.0,39.0,30.0,46.0,37.0,30.0,28.0,34.0,33.0,29.0,32.0,40.0,46.0,24.0,33.0,42.0,32.0,33.0,37.0,33.0,30.0,32.0,35.0,35.0,35.0,42.0,39.0,30.0,32.0,39.0,38.0,27.0,32.0,30.0,31.0,34.0,32.0,45.0,22.0,24.0,19.0,14.0,19.0,15.0,16.0,13.0,13.0,16.0,11.0,6.0,8.0,6.0,3.0,5.0,6.0 F82625,46.0,46.0,30.0,51.0,46.0,43.0,52.0,51.0,52.0,41.0,59.0,49.0,43.0,62.0,52.0,50.0,61.0,65.0,50.0,73.0,54.0,68.0,56.0,61.0,64.0,77.0,71.0,84.0,69.0,77.0,76.0,65.0,78.0,67.0,79.0,79.0,58.0,61.0,51.0,67.0,70.0,56.0,54.0,63.0,66.0,52.0,53.0,37.0,36.0,44.0,57.0,44.0,46.0,38.0,35.0,44.0,42.0,48.0,37.0,29.0,33.0,22.0,23.0,28.0,24.0,20.0,14.0,19.0,18.0,16.0,15.0,22.0,8.0,15.0,9.0,12.0,18.0,10.0,11.0,3.0,10.0,7.0,10.0,10.0,7.0,2.0,6.0,,3.0,6.0,2.0,2.0,1.0,,, F82627,56.0,46.0,77.0,64.0,43.0,51.0,63.0,55.0,78.0,51.0,62.0,57.0,55.0,61.0,63.0,58.0,55.0,43.0,47.0,46.0,55.0,54.0,42.0,40.0,60.0,54.0,66.0,74.0,82.0,72.0,65.0,68.0,61.0,80.0,83.0,76.0,74.0,75.0,61.0,74.0,78.0,51.0,67.0,70.0,65.0,64.0,69.0,40.0,37.0,43.0,57.0,42.0,49.0,31.0,51.0,49.0,39.0,45.0,37.0,47.0,42.0,36.0,42.0,35.0,35.0,22.0,28.0,27.0,19.0,21.0,22.0,34.0,27.0,27.0,17.0,20.0,8.0,17.0,17.0,17.0,18.0,9.0,10.0,19.0,13.0,7.0,17.0,13.0,9.0,6.0,8.0,7.0,2.0,7.0,3.0,7.0 F82630,30.0,43.0,45.0,50.0,45.0,50.0,59.0,42.0,62.0,54.0,54.0,60.0,51.0,48.0,61.0,53.0,37.0,56.0,41.0,44.0,32.0,43.0,43.0,44.0,46.0,40.0,47.0,58.0,49.0,47.0,41.0,48.0,59.0,59.0,55.0,56.0,62.0,58.0,61.0,72.0,42.0,68.0,63.0,56.0,55.0,65.0,64.0,46.0,52.0,51.0,49.0,48.0,41.0,44.0,55.0,52.0,40.0,45.0,43.0,41.0,48.0,53.0,50.0,40.0,48.0,36.0,39.0,37.0,31.0,30.0,38.0,29.0,19.0,29.0,34.0,37.0,29.0,33.0,36.0,23.0,23.0,26.0,21.0,12.0,18.0,13.0,10.0,17.0,15.0,10.0,10.0,8.0,3.0,5.0,3.0,9.0 F82634,43.0,38.0,42.0,44.0,36.0,42.0,57.0,41.0,45.0,41.0,34.0,44.0,44.0,47.0,41.0,42.0,38.0,46.0,44.0,43.0,30.0,47.0,42.0,48.0,55.0,51.0,46.0,64.0,57.0,46.0,52.0,57.0,55.0,50.0,66.0,55.0,63.0,58.0,45.0,53.0,56.0,48.0,44.0,63.0,46.0,52.0,36.0,39.0,33.0,50.0,41.0,39.0,43.0,34.0,33.0,38.0,32.0,40.0,24.0,34.0,26.0,33.0,24.0,18.0,23.0,22.0,21.0,17.0,16.0,20.0,15.0,13.0,10.0,12.0,10.0,9.0,12.0,7.0,14.0,10.0,8.0,6.0,6.0,4.0,1.0,3.0,6.0,,6.0,2.0,2.0,5.0,1.0,,1.0,2.0 F82638,49.0,53.0,40.0,60.0,51.0,59.0,59.0,62.0,56.0,51.0,53.0,54.0,49.0,44.0,55.0,43.0,45.0,43.0,42.0,43.0,43.0,30.0,26.0,37.0,50.0,63.0,83.0,57.0,68.0,64.0,81.0,78.0,99.0,66.0,88.0,91.0,85.0,93.0,70.0,68.0,68.0,61.0,50.0,58.0,54.0,51.0,39.0,50.0,42.0,38.0,42.0,36.0,35.0,49.0,31.0,41.0,45.0,39.0,32.0,32.0,47.0,33.0,33.0,24.0,26.0,32.0,26.0,28.0,20.0,18.0,24.0,18.0,13.0,22.0,11.0,11.0,22.0,13.0,14.0,17.0,7.0,14.0,13.0,7.0,14.0,4.0,10.0,10.0,9.0,10.0,7.0,8.0,1.0,7.0,1.0,5.0 F82642,36.0,55.0,50.0,48.0,55.0,51.0,53.0,50.0,69.0,50.0,57.0,50.0,45.0,48.0,58.0,51.0,45.0,60.0,44.0,41.0,37.0,33.0,33.0,44.0,33.0,44.0,46.0,48.0,49.0,54.0,59.0,53.0,59.0,64.0,71.0,69.0,58.0,73.0,67.0,54.0,60.0,56.0,66.0,51.0,46.0,48.0,47.0,46.0,43.0,50.0,22.0,61.0,41.0,46.0,42.0,46.0,45.0,43.0,33.0,51.0,29.0,43.0,48.0,34.0,29.0,38.0,23.0,25.0,20.0,17.0,33.0,18.0,28.0,15.0,21.0,13.0,25.0,13.0,10.0,10.0,6.0,9.0,6.0,11.0,6.0,9.0,7.0,8.0,4.0,6.0,1.0,2.0,,1.0,1.0,6.0 F82647,24.0,24.0,29.0,20.0,32.0,21.0,30.0,30.0,20.0,30.0,21.0,26.0,25.0,28.0,17.0,27.0,27.0,34.0,16.0,28.0,24.0,25.0,26.0,32.0,47.0,54.0,33.0,54.0,61.0,43.0,46.0,42.0,31.0,37.0,59.0,35.0,32.0,35.0,37.0,37.0,41.0,30.0,38.0,27.0,26.0,33.0,35.0,31.0,27.0,22.0,26.0,18.0,25.0,15.0,20.0,26.0,23.0,25.0,24.0,21.0,24.0,20.0,16.0,23.0,18.0,16.0,11.0,16.0,10.0,9.0,17.0,12.0,6.0,18.0,11.0,15.0,6.0,5.0,8.0,6.0,5.0,7.0,7.0,3.0,6.0,4.0,6.0,3.0,2.0,1.0,3.0,1.0,2.0,3.0,,5.0 F82648,16.0,17.0,28.0,33.0,22.0,26.0,34.0,33.0,23.0,29.0,24.0,30.0,28.0,37.0,17.0,29.0,27.0,30.0,19.0,27.0,21.0,21.0,22.0,14.0,21.0,26.0,10.0,18.0,24.0,27.0,31.0,31.0,26.0,25.0,32.0,28.0,35.0,33.0,40.0,38.0,47.0,33.0,30.0,29.0,31.0,26.0,21.0,17.0,17.0,20.0,29.0,17.0,31.0,19.0,19.0,17.0,21.0,23.0,22.0,20.0,26.0,26.0,15.0,17.0,24.0,23.0,14.0,14.0,17.0,12.0,13.0,14.0,12.0,11.0,6.0,12.0,11.0,16.0,16.0,7.0,5.0,5.0,3.0,6.0,,8.0,4.0,6.0,2.0,1.0,1.0,1.0,,,2.0,2.0 F82649,25.0,28.0,27.0,24.0,28.0,21.0,27.0,23.0,32.0,20.0,18.0,30.0,24.0,28.0,25.0,19.0,23.0,25.0,27.0,28.0,29.0,18.0,24.0,23.0,29.0,20.0,26.0,38.0,31.0,36.0,43.0,30.0,25.0,36.0,33.0,37.0,31.0,37.0,31.0,34.0,26.0,43.0,18.0,31.0,25.0,26.0,21.0,31.0,20.0,23.0,22.0,26.0,20.0,31.0,36.0,39.0,32.0,30.0,31.0,35.0,32.0,44.0,34.0,32.0,22.0,36.0,28.0,35.0,16.0,19.0,30.0,23.0,20.0,31.0,26.0,16.0,19.0,19.0,20.0,17.0,18.0,18.0,15.0,19.0,18.0,7.0,12.0,13.0,7.0,7.0,5.0,4.0,3.0,2.0,4.0,2.0 F82650,56.0,67.0,84.0,73.0,72.0,69.0,68.0,69.0,71.0,83.0,78.0,70.0,63.0,83.0,74.0,66.0,52.0,70.0,81.0,58.0,56.0,57.0,65.0,77.0,72.0,89.0,85.0,97.0,85.0,79.0,70.0,78.0,87.0,88.0,97.0,87.0,101.0,85.0,92.0,80.0,73.0,83.0,66.0,66.0,75.0,85.0,64.0,66.0,55.0,60.0,56.0,47.0,53.0,55.0,46.0,48.0,49.0,34.0,37.0,43.0,39.0,39.0,41.0,36.0,34.0,29.0,28.0,18.0,18.0,30.0,20.0,18.0,20.0,17.0,13.0,8.0,17.0,13.0,10.0,16.0,9.0,4.0,12.0,8.0,4.0,9.0,4.0,5.0,4.0,1.0,4.0,2.0,2.0,1.0,1.0,3.0 F82660,88.0,91.0,91.0,117.0,89.0,111.0,145.0,130.0,164.0,153.0,154.0,161.0,155.0,150.0,161.0,179.0,176.0,153.0,155.0,129.0,129.0,131.0,154.0,125.0,140.0,121.0,138.0,129.0,148.0,153.0,165.0,123.0,135.0,138.0,126.0,146.0,152.0,163.0,169.0,165.0,162.0,174.0,153.0,138.0,166.0,174.0,178.0,150.0,135.0,133.0,136.0,145.0,145.0,126.0,127.0,118.0,123.0,98.0,119.0,111.0,106.0,99.0,100.0,85.0,84.0,86.0,79.0,65.0,66.0,65.0,59.0,52.0,51.0,39.0,37.0,34.0,36.0,49.0,35.0,33.0,22.0,26.0,36.0,13.0,21.0,35.0,25.0,19.0,10.0,10.0,10.0,16.0,13.0,10.0,6.0,17.0 F82661,18.0,26.0,24.0,32.0,20.0,28.0,25.0,24.0,26.0,32.0,33.0,29.0,28.0,34.0,22.0,20.0,25.0,28.0,21.0,24.0,15.0,23.0,14.0,27.0,26.0,31.0,30.0,33.0,43.0,28.0,30.0,34.0,33.0,31.0,40.0,36.0,38.0,41.0,18.0,42.0,30.0,33.0,41.0,35.0,31.0,31.0,26.0,23.0,26.0,22.0,23.0,16.0,18.0,18.0,18.0,12.0,21.0,14.0,14.0,26.0,18.0,25.0,23.0,23.0,12.0,15.0,16.0,13.0,12.0,14.0,13.0,5.0,12.0,10.0,7.0,3.0,4.0,2.0,3.0,5.0,4.0,6.0,,5.0,3.0,2.0,2.0,5.0,2.0,,,,2.0,1.0,1.0, F82663,23.0,23.0,26.0,29.0,24.0,21.0,39.0,23.0,31.0,29.0,25.0,25.0,23.0,23.0,28.0,26.0,23.0,18.0,17.0,14.0,15.0,16.0,16.0,19.0,24.0,30.0,33.0,34.0,32.0,44.0,41.0,32.0,45.0,36.0,39.0,50.0,41.0,36.0,34.0,38.0,32.0,24.0,35.0,25.0,31.0,29.0,15.0,27.0,23.0,20.0,21.0,20.0,22.0,19.0,28.0,15.0,15.0,26.0,16.0,13.0,24.0,17.0,20.0,14.0,27.0,21.0,18.0,17.0,9.0,13.0,11.0,16.0,16.0,7.0,18.0,11.0,10.0,9.0,15.0,3.0,11.0,5.0,11.0,10.0,5.0,9.0,8.0,1.0,3.0,5.0,3.0,2.0,3.0,1.0,,1.0 F82670,39.0,32.0,34.0,30.0,37.0,43.0,52.0,48.0,48.0,44.0,40.0,34.0,49.0,39.0,32.0,34.0,35.0,40.0,18.0,25.0,33.0,20.0,29.0,27.0,35.0,36.0,37.0,48.0,39.0,49.0,51.0,55.0,65.0,59.0,55.0,58.0,54.0,47.0,48.0,39.0,45.0,44.0,42.0,42.0,51.0,33.0,27.0,31.0,31.0,28.0,20.0,21.0,24.0,30.0,29.0,27.0,22.0,28.0,21.0,24.0,23.0,25.0,21.0,16.0,31.0,13.0,12.0,18.0,8.0,17.0,12.0,9.0,8.0,5.0,10.0,7.0,8.0,6.0,4.0,1.0,5.0,6.0,3.0,4.0,2.0,2.0,5.0,2.0,1.0,1.0,2.0,2.0,,,,1.0 F82671,16.0,20.0,14.0,21.0,24.0,17.0,19.0,21.0,20.0,26.0,23.0,23.0,30.0,32.0,20.0,32.0,20.0,23.0,26.0,19.0,17.0,23.0,22.0,28.0,26.0,26.0,21.0,23.0,30.0,20.0,22.0,25.0,19.0,26.0,21.0,18.0,32.0,22.0,24.0,32.0,19.0,26.0,30.0,22.0,19.0,24.0,27.0,25.0,19.0,17.0,18.0,12.0,19.0,25.0,22.0,18.0,18.0,9.0,17.0,22.0,22.0,16.0,16.0,14.0,14.0,12.0,7.0,15.0,13.0,21.0,5.0,12.0,5.0,8.0,11.0,9.0,11.0,18.0,9.0,6.0,11.0,15.0,6.0,10.0,3.0,14.0,3.0,8.0,7.0,6.0,8.0,3.0,7.0,3.0,,14.0 F82674,28.0,31.0,21.0,23.0,28.0,32.0,35.0,32.0,38.0,41.0,48.0,39.0,55.0,36.0,42.0,29.0,39.0,33.0,41.0,40.0,27.0,31.0,26.0,25.0,33.0,42.0,32.0,39.0,47.0,37.0,28.0,37.0,46.0,37.0,45.0,39.0,33.0,49.0,33.0,49.0,46.0,52.0,60.0,34.0,60.0,38.0,41.0,47.0,40.0,35.0,28.0,44.0,32.0,33.0,49.0,39.0,44.0,36.0,36.0,31.0,38.0,35.0,28.0,35.0,25.0,28.0,16.0,30.0,24.0,20.0,26.0,15.0,19.0,17.0,26.0,25.0,16.0,24.0,24.0,23.0,27.0,19.0,16.0,17.0,10.0,10.0,20.0,17.0,14.0,12.0,15.0,10.0,16.0,17.0,14.0,17.0 F82675,15.0,14.0,14.0,15.0,16.0,17.0,11.0,18.0,24.0,23.0,25.0,21.0,16.0,24.0,13.0,21.0,24.0,11.0,21.0,17.0,15.0,23.0,18.0,15.0,18.0,15.0,38.0,17.0,24.0,20.0,22.0,21.0,29.0,23.0,23.0,15.0,26.0,25.0,22.0,22.0,23.0,30.0,15.0,24.0,17.0,19.0,20.0,17.0,17.0,20.0,19.0,21.0,31.0,23.0,25.0,31.0,23.0,25.0,27.0,17.0,27.0,33.0,18.0,23.0,22.0,25.0,21.0,29.0,23.0,30.0,12.0,26.0,24.0,26.0,13.0,10.0,14.0,24.0,14.0,19.0,18.0,14.0,15.0,10.0,8.0,11.0,11.0,8.0,10.0,9.0,8.0,4.0,8.0,6.0,2.0,13.0 F82677,53.0,64.0,68.0,70.0,76.0,79.0,64.0,73.0,63.0,83.0,72.0,70.0,66.0,59.0,66.0,66.0,73.0,70.0,56.0,74.0,49.0,59.0,61.0,49.0,64.0,64.0,64.0,64.0,92.0,62.0,68.0,65.0,59.0,68.0,72.0,60.0,70.0,75.0,84.0,90.0,91.0,57.0,76.0,65.0,66.0,74.0,65.0,46.0,54.0,56.0,60.0,41.0,53.0,53.0,49.0,49.0,47.0,46.0,50.0,38.0,36.0,46.0,39.0,34.0,30.0,25.0,21.0,35.0,28.0,18.0,19.0,22.0,12.0,12.0,20.0,9.0,16.0,12.0,9.0,9.0,11.0,9.0,8.0,11.0,7.0,8.0,8.0,4.0,5.0,5.0,3.0,5.0,2.0,3.0,,2.0 F82678,27.0,14.0,25.0,21.0,28.0,35.0,21.0,26.0,36.0,29.0,33.0,32.0,29.0,41.0,32.0,37.0,44.0,39.0,41.0,33.0,30.0,27.0,28.0,20.0,26.0,24.0,35.0,31.0,35.0,31.0,32.0,35.0,26.0,37.0,31.0,30.0,28.0,35.0,29.0,29.0,31.0,29.0,32.0,36.0,42.0,35.0,32.0,42.0,31.0,38.0,22.0,35.0,33.0,31.0,40.0,24.0,16.0,34.0,27.0,32.0,25.0,20.0,22.0,19.0,30.0,25.0,20.0,19.0,19.0,14.0,15.0,13.0,12.0,11.0,14.0,15.0,11.0,16.0,15.0,14.0,8.0,16.0,14.0,14.0,9.0,7.0,14.0,14.0,12.0,5.0,10.0,12.0,7.0,8.0,6.0,19.0 F82679,27.0,32.0,40.0,33.0,32.0,31.0,27.0,27.0,29.0,44.0,32.0,45.0,39.0,46.0,46.0,41.0,39.0,39.0,51.0,32.0,44.0,31.0,36.0,42.0,45.0,40.0,44.0,53.0,46.0,46.0,43.0,33.0,41.0,42.0,40.0,53.0,43.0,51.0,33.0,40.0,36.0,37.0,45.0,35.0,46.0,43.0,44.0,40.0,34.0,45.0,36.0,41.0,30.0,33.0,36.0,44.0,42.0,41.0,38.0,27.0,25.0,20.0,25.0,31.0,32.0,18.0,16.0,20.0,11.0,16.0,19.0,19.0,12.0,11.0,12.0,11.0,9.0,13.0,13.0,11.0,11.0,1.0,6.0,3.0,7.0,6.0,10.0,7.0,5.0,5.0,2.0,,1.0,2.0,1.0,3.0 F82680,75.0,57.0,66.0,71.0,82.0,76.0,79.0,66.0,84.0,71.0,70.0,64.0,61.0,79.0,62.0,59.0,67.0,51.0,59.0,43.0,64.0,64.0,65.0,78.0,85.0,86.0,78.0,103.0,83.0,95.0,92.0,93.0,83.0,102.0,90.0,103.0,96.0,88.0,103.0,87.0,84.0,95.0,91.0,73.0,57.0,78.0,61.0,63.0,71.0,73.0,59.0,52.0,68.0,63.0,62.0,48.0,52.0,39.0,43.0,46.0,52.0,50.0,60.0,52.0,45.0,37.0,36.0,37.0,37.0,37.0,39.0,30.0,31.0,25.0,25.0,22.0,22.0,24.0,29.0,17.0,15.0,13.0,6.0,15.0,13.0,18.0,9.0,8.0,12.0,7.0,4.0,1.0,3.0,2.0,2.0,7.0 F82686,31.0,35.0,39.0,32.0,33.0,33.0,32.0,30.0,38.0,26.0,33.0,25.0,31.0,30.0,27.0,37.0,40.0,28.0,31.0,25.0,40.0,32.0,29.0,36.0,46.0,48.0,44.0,55.0,45.0,46.0,54.0,46.0,40.0,40.0,45.0,42.0,41.0,44.0,40.0,37.0,41.0,34.0,31.0,32.0,42.0,33.0,41.0,26.0,28.0,24.0,27.0,23.0,23.0,26.0,30.0,24.0,31.0,28.0,14.0,19.0,25.0,23.0,26.0,25.0,17.0,19.0,16.0,18.0,15.0,13.0,7.0,11.0,11.0,9.0,6.0,9.0,3.0,9.0,5.0,7.0,5.0,5.0,5.0,3.0,4.0,2.0,3.0,2.0,3.0,2.0,,,,1.0,,3.0 F84003,54.0,66.0,53.0,73.0,63.0,65.0,78.0,73.0,74.0,92.0,77.0,71.0,88.0,84.0,83.0,84.0,93.0,83.0,84.0,78.0,73.0,84.0,76.0,84.0,110.0,139.0,152.0,162.0,192.0,191.0,171.0,156.0,185.0,136.0,159.0,137.0,121.0,121.0,130.0,122.0,133.0,114.0,113.0,123.0,111.0,142.0,113.0,106.0,102.0,81.0,94.0,95.0,102.0,97.0,105.0,102.0,96.0,87.0,88.0,88.0,90.0,78.0,82.0,68.0,91.0,78.0,79.0,75.0,68.0,50.0,54.0,59.0,40.0,47.0,36.0,41.0,35.0,36.0,29.0,32.0,21.0,16.0,25.0,22.0,14.0,16.0,15.0,15.0,15.0,7.0,5.0,7.0,8.0,2.0,3.0,6.0 F84004,67.0,78.0,66.0,82.0,69.0,75.0,65.0,96.0,91.0,82.0,83.0,81.0,104.0,85.0,106.0,105.0,100.0,105.0,105.0,88.0,99.0,96.0,112.0,104.0,128.0,115.0,107.0,110.0,109.0,112.0,98.0,84.0,96.0,81.0,91.0,85.0,97.0,103.0,101.0,111.0,97.0,95.0,112.0,87.0,106.0,107.0,90.0,76.0,81.0,85.0,75.0,82.0,66.0,77.0,87.0,60.0,84.0,83.0,73.0,64.0,59.0,69.0,92.0,63.0,64.0,60.0,49.0,46.0,29.0,42.0,35.0,41.0,41.0,39.0,37.0,32.0,22.0,30.0,28.0,31.0,15.0,21.0,18.0,23.0,19.0,18.0,19.0,10.0,12.0,15.0,13.0,6.0,4.0,3.0,6.0,15.0 F84006,117.0,107.0,110.0,121.0,107.0,110.0,95.0,106.0,91.0,106.0,105.0,97.0,100.0,104.0,74.0,111.0,93.0,103.0,84.0,109.0,97.0,108.0,144.0,148.0,182.0,195.0,187.0,203.0,199.0,182.0,152.0,157.0,143.0,143.0,135.0,123.0,154.0,117.0,122.0,142.0,116.0,104.0,114.0,102.0,93.0,106.0,93.0,75.0,82.0,79.0,71.0,94.0,72.0,76.0,72.0,60.0,61.0,82.0,93.0,81.0,52.0,84.0,56.0,67.0,60.0,63.0,53.0,53.0,35.0,35.0,47.0,36.0,47.0,38.0,29.0,36.0,35.0,33.0,28.0,24.0,21.0,20.0,12.0,17.0,11.0,18.0,15.0,11.0,12.0,7.0,3.0,5.0,4.0,4.0,4.0,4.0 F84008,41.0,37.0,55.0,40.0,57.0,52.0,49.0,52.0,51.0,75.0,64.0,71.0,61.0,55.0,74.0,74.0,64.0,44.0,54.0,45.0,39.0,40.0,61.0,62.0,59.0,92.0,111.0,97.0,117.0,118.0,115.0,109.0,99.0,105.0,99.0,101.0,113.0,114.0,110.0,116.0,114.0,114.0,114.0,116.0,122.0,96.0,85.0,91.0,93.0,93.0,90.0,93.0,84.0,91.0,95.0,73.0,88.0,81.0,82.0,86.0,92.0,87.0,65.0,84.0,67.0,67.0,60.0,54.0,48.0,58.0,53.0,50.0,45.0,38.0,44.0,37.0,30.0,33.0,42.0,24.0,16.0,30.0,20.0,22.0,14.0,7.0,18.0,10.0,12.0,9.0,7.0,9.0,12.0,3.0,2.0,15.0 F84009,56.0,74.0,49.0,63.0,46.0,44.0,49.0,65.0,48.0,47.0,54.0,56.0,51.0,50.0,55.0,51.0,55.0,63.0,60.0,90.0,73.0,93.0,129.0,190.0,211.0,248.0,222.0,246.0,213.0,215.0,203.0,186.0,170.0,145.0,122.0,162.0,124.0,129.0,89.0,121.0,106.0,97.0,112.0,74.0,86.0,93.0,82.0,65.0,68.0,57.0,60.0,55.0,66.0,61.0,78.0,43.0,62.0,43.0,50.0,57.0,48.0,44.0,44.0,42.0,32.0,20.0,25.0,34.0,24.0,31.0,18.0,31.0,27.0,17.0,15.0,14.0,14.0,18.0,17.0,15.0,11.0,8.0,13.0,9.0,11.0,7.0,14.0,6.0,7.0,6.0,4.0,3.0,5.0,2.0,,4.0 F84010,36.0,55.0,45.0,58.0,50.0,63.0,55.0,61.0,66.0,67.0,68.0,67.0,66.0,63.0,60.0,91.0,60.0,60.0,51.0,58.0,72.0,78.0,85.0,76.0,82.0,98.0,93.0,101.0,87.0,88.0,83.0,81.0,81.0,69.0,73.0,78.0,82.0,98.0,74.0,70.0,83.0,78.0,78.0,73.0,76.0,69.0,65.0,62.0,67.0,43.0,40.0,58.0,61.0,46.0,52.0,56.0,61.0,47.0,55.0,56.0,51.0,45.0,36.0,39.0,52.0,37.0,44.0,31.0,39.0,28.0,24.0,25.0,16.0,25.0,17.0,20.0,21.0,24.0,19.0,11.0,11.0,18.0,12.0,17.0,12.0,15.0,11.0,5.0,11.0,7.0,6.0,2.0,5.0,2.0,6.0,6.0 F84012,47.0,55.0,47.0,48.0,47.0,57.0,39.0,56.0,45.0,48.0,50.0,58.0,50.0,54.0,54.0,51.0,36.0,63.0,48.0,51.0,58.0,70.0,72.0,91.0,102.0,112.0,101.0,107.0,106.0,121.0,96.0,81.0,97.0,99.0,96.0,89.0,84.0,81.0,83.0,68.0,59.0,65.0,64.0,63.0,67.0,54.0,44.0,57.0,45.0,32.0,31.0,30.0,31.0,24.0,37.0,34.0,23.0,29.0,22.0,40.0,21.0,37.0,26.0,20.0,16.0,25.0,15.0,22.0,21.0,15.0,11.0,22.0,21.0,20.0,14.0,17.0,10.0,4.0,4.0,11.0,9.0,11.0,11.0,7.0,10.0,9.0,10.0,5.0,3.0,5.0,4.0,6.0,2.0,,2.0,4.0 F84013,213.0,253.0,253.0,238.0,248.0,256.0,238.0,224.0,222.0,212.0,208.0,189.0,193.0,213.0,179.0,187.0,205.0,159.0,156.0,142.0,142.0,143.0,161.0,139.0,144.0,134.0,147.0,145.0,154.0,128.0,124.0,112.0,113.0,97.0,96.0,102.0,96.0,98.0,91.0,101.0,94.0,78.0,103.0,80.0,84.0,94.0,73.0,86.0,68.0,66.0,72.0,59.0,66.0,56.0,59.0,55.0,50.0,49.0,47.0,55.0,44.0,42.0,56.0,46.0,42.0,37.0,45.0,34.0,46.0,32.0,40.0,29.0,31.0,29.0,33.0,33.0,33.0,21.0,30.0,14.0,11.0,19.0,12.0,14.0,19.0,7.0,14.0,13.0,8.0,1.0,6.0,2.0,4.0,2.0,1.0,3.0 F84014,50.0,42.0,43.0,33.0,36.0,37.0,41.0,41.0,48.0,42.0,36.0,47.0,39.0,50.0,31.0,42.0,41.0,50.0,54.0,44.0,47.0,44.0,58.0,71.0,74.0,54.0,50.0,56.0,88.0,53.0,59.0,61.0,57.0,58.0,42.0,48.0,48.0,48.0,43.0,46.0,50.0,42.0,46.0,38.0,36.0,46.0,45.0,31.0,29.0,35.0,31.0,31.0,36.0,32.0,41.0,36.0,22.0,31.0,31.0,35.0,21.0,38.0,39.0,22.0,31.0,24.0,23.0,25.0,28.0,27.0,20.0,26.0,28.0,22.0,15.0,20.0,18.0,8.0,19.0,10.0,12.0,9.0,7.0,18.0,10.0,6.0,7.0,3.0,5.0,5.0,7.0,2.0,7.0,3.0,1.0,5.0 F84015,18.0,17.0,15.0,24.0,19.0,22.0,29.0,26.0,38.0,28.0,30.0,37.0,39.0,38.0,45.0,31.0,47.0,37.0,42.0,36.0,28.0,25.0,33.0,36.0,36.0,40.0,38.0,44.0,39.0,38.0,34.0,55.0,39.0,50.0,37.0,49.0,40.0,58.0,39.0,30.0,40.0,51.0,37.0,34.0,35.0,50.0,27.0,29.0,40.0,32.0,31.0,30.0,39.0,42.0,35.0,43.0,27.0,38.0,45.0,35.0,42.0,28.0,34.0,24.0,20.0,35.0,27.0,20.0,24.0,22.0,16.0,18.0,23.0,16.0,15.0,9.0,23.0,11.0,11.0,3.0,11.0,8.0,12.0,4.0,3.0,5.0,5.0,2.0,3.0,1.0,1.0,1.0,,2.0,2.0,5.0 F84016,49.0,53.0,55.0,48.0,41.0,65.0,50.0,60.0,63.0,52.0,50.0,84.0,70.0,58.0,71.0,80.0,71.0,71.0,62.0,72.0,56.0,79.0,72.0,87.0,102.0,122.0,123.0,142.0,146.0,156.0,140.0,127.0,135.0,148.0,160.0,131.0,116.0,115.0,114.0,112.0,118.0,88.0,107.0,101.0,88.0,90.0,66.0,71.0,81.0,61.0,80.0,46.0,54.0,70.0,56.0,42.0,43.0,42.0,44.0,42.0,40.0,46.0,42.0,46.0,35.0,35.0,37.0,30.0,34.0,29.0,36.0,36.0,30.0,22.0,34.0,19.0,22.0,21.0,30.0,11.0,14.0,15.0,14.0,13.0,9.0,13.0,13.0,4.0,8.0,8.0,2.0,7.0,2.0,3.0,1.0,8.0 F84017,85.0,81.0,87.0,121.0,83.0,101.0,118.0,116.0,116.0,113.0,101.0,104.0,118.0,132.0,127.0,129.0,121.0,106.0,109.0,119.0,117.0,130.0,154.0,162.0,179.0,200.0,206.0,212.0,253.0,244.0,251.0,189.0,240.0,230.0,216.0,242.0,186.0,197.0,197.0,175.0,196.0,174.0,153.0,154.0,149.0,153.0,131.0,108.0,122.0,112.0,100.0,114.0,123.0,142.0,104.0,118.0,113.0,101.0,88.0,108.0,92.0,87.0,91.0,90.0,86.0,85.0,84.0,69.0,56.0,64.0,46.0,30.0,53.0,47.0,32.0,42.0,22.0,32.0,36.0,18.0,22.0,20.0,23.0,17.0,17.0,12.0,22.0,11.0,17.0,9.0,9.0,6.0,5.0,1.0,2.0,13.0 F84018,65.0,66.0,63.0,55.0,64.0,62.0,66.0,65.0,74.0,84.0,64.0,53.0,84.0,76.0,71.0,76.0,57.0,74.0,76.0,63.0,58.0,48.0,81.0,72.0,84.0,98.0,135.0,142.0,144.0,132.0,165.0,155.0,157.0,178.0,149.0,157.0,161.0,158.0,147.0,137.0,139.0,145.0,122.0,111.0,102.0,99.0,106.0,73.0,74.0,71.0,72.0,75.0,82.0,70.0,71.0,72.0,77.0,61.0,62.0,68.0,65.0,61.0,58.0,54.0,47.0,46.0,32.0,42.0,32.0,23.0,36.0,24.0,18.0,19.0,20.0,15.0,20.0,15.0,23.0,8.0,10.0,16.0,17.0,15.0,8.0,9.0,10.0,6.0,10.0,7.0,4.0,3.0,1.0,6.0,3.0,7.0 F84021,36.0,41.0,31.0,40.0,38.0,39.0,46.0,51.0,55.0,44.0,53.0,42.0,49.0,61.0,43.0,56.0,49.0,56.0,53.0,47.0,39.0,50.0,42.0,65.0,80.0,102.0,103.0,145.0,187.0,191.0,161.0,150.0,159.0,149.0,142.0,151.0,162.0,132.0,134.0,105.0,121.0,81.0,108.0,87.0,93.0,77.0,84.0,99.0,57.0,72.0,55.0,59.0,78.0,54.0,76.0,68.0,62.0,63.0,57.0,55.0,63.0,52.0,49.0,32.0,35.0,42.0,32.0,30.0,36.0,29.0,28.0,27.0,24.0,13.0,18.0,25.0,15.0,13.0,19.0,11.0,18.0,12.0,9.0,14.0,5.0,5.0,9.0,10.0,8.0,8.0,5.0,,3.0,1.0,3.0,5.0 F84022,38.0,35.0,43.0,30.0,43.0,30.0,28.0,42.0,34.0,38.0,39.0,37.0,43.0,37.0,42.0,52.0,37.0,47.0,47.0,36.0,37.0,46.0,71.0,85.0,99.0,101.0,147.0,139.0,114.0,111.0,119.0,125.0,98.0,112.0,96.0,71.0,104.0,88.0,90.0,91.0,82.0,75.0,62.0,45.0,56.0,58.0,65.0,42.0,39.0,51.0,55.0,33.0,28.0,45.0,51.0,37.0,42.0,37.0,45.0,29.0,33.0,37.0,31.0,26.0,32.0,21.0,36.0,21.0,19.0,19.0,24.0,23.0,21.0,14.0,16.0,13.0,14.0,16.0,13.0,10.0,8.0,8.0,1.0,4.0,8.0,6.0,6.0,1.0,5.0,3.0,3.0,3.0,6.0,,2.0,8.0 F84025,65.0,60.0,53.0,59.0,62.0,77.0,63.0,71.0,70.0,75.0,76.0,71.0,80.0,82.0,63.0,70.0,77.0,73.0,61.0,79.0,69.0,89.0,89.0,115.0,117.0,103.0,139.0,133.0,121.0,141.0,123.0,131.0,112.0,122.0,122.0,125.0,110.0,131.0,112.0,105.0,112.0,112.0,97.0,89.0,84.0,76.0,75.0,69.0,58.0,63.0,57.0,52.0,39.0,54.0,55.0,38.0,46.0,37.0,34.0,25.0,29.0,30.0,43.0,23.0,40.0,26.0,22.0,30.0,19.0,25.0,29.0,19.0,18.0,23.0,22.0,16.0,25.0,13.0,8.0,12.0,11.0,14.0,16.0,6.0,8.0,7.0,4.0,4.0,4.0,9.0,6.0,4.0,2.0,5.0,4.0,10.0 F84030,25.0,23.0,19.0,23.0,28.0,18.0,20.0,16.0,20.0,11.0,14.0,16.0,18.0,14.0,12.0,12.0,11.0,18.0,22.0,19.0,21.0,29.0,29.0,33.0,34.0,30.0,36.0,50.0,44.0,56.0,59.0,60.0,52.0,39.0,46.0,63.0,49.0,38.0,39.0,42.0,37.0,32.0,31.0,28.0,32.0,21.0,19.0,23.0,19.0,23.0,15.0,14.0,13.0,15.0,16.0,16.0,15.0,24.0,13.0,17.0,10.0,14.0,14.0,15.0,8.0,7.0,16.0,9.0,7.0,12.0,3.0,4.0,7.0,6.0,7.0,12.0,4.0,4.0,5.0,4.0,7.0,,10.0,6.0,2.0,2.0,3.0,1.0,2.0,4.0,5.0,4.0,,1.0,2.0,2.0 F84031,102.0,121.0,88.0,97.0,74.0,82.0,86.0,85.0,88.0,76.0,90.0,98.0,86.0,73.0,76.0,89.0,84.0,93.0,85.0,88.0,97.0,102.0,131.0,192.0,184.0,208.0,193.0,276.0,213.0,221.0,196.0,196.0,189.0,187.0,149.0,154.0,178.0,138.0,126.0,129.0,125.0,121.0,97.0,129.0,115.0,111.0,80.0,76.0,80.0,85.0,75.0,78.0,61.0,83.0,52.0,58.0,62.0,65.0,47.0,52.0,59.0,56.0,57.0,52.0,30.0,47.0,40.0,45.0,41.0,42.0,23.0,28.0,44.0,33.0,41.0,30.0,28.0,25.0,15.0,26.0,13.0,23.0,26.0,19.0,18.0,15.0,14.0,15.0,15.0,12.0,6.0,9.0,7.0,10.0,4.0,16.0 F84033,32.0,44.0,29.0,41.0,47.0,37.0,52.0,48.0,65.0,64.0,49.0,53.0,69.0,62.0,57.0,71.0,63.0,55.0,79.0,65.0,49.0,58.0,60.0,66.0,74.0,85.0,100.0,124.0,105.0,106.0,131.0,127.0,125.0,132.0,136.0,145.0,119.0,119.0,114.0,109.0,89.0,116.0,104.0,90.0,87.0,105.0,90.0,97.0,101.0,83.0,52.0,72.0,80.0,91.0,72.0,78.0,64.0,78.0,72.0,75.0,66.0,61.0,70.0,67.0,57.0,45.0,44.0,33.0,54.0,34.0,27.0,34.0,45.0,25.0,23.0,27.0,15.0,34.0,25.0,18.0,12.0,10.0,15.0,8.0,12.0,7.0,8.0,7.0,5.0,4.0,6.0,2.0,5.0,2.0,1.0,5.0 F84034,56.0,71.0,59.0,61.0,68.0,63.0,56.0,65.0,66.0,82.0,76.0,80.0,81.0,67.0,88.0,81.0,78.0,87.0,89.0,75.0,87.0,77.0,88.0,108.0,118.0,134.0,130.0,130.0,154.0,118.0,121.0,121.0,128.0,134.0,125.0,124.0,127.0,109.0,110.0,114.0,112.0,112.0,101.0,108.0,89.0,105.0,78.0,109.0,82.0,61.0,67.0,71.0,81.0,76.0,67.0,73.0,76.0,60.0,65.0,75.0,70.0,61.0,50.0,60.0,52.0,49.0,45.0,39.0,46.0,43.0,53.0,46.0,45.0,31.0,36.0,26.0,35.0,21.0,29.0,19.0,24.0,16.0,16.0,13.0,9.0,7.0,17.0,13.0,6.0,9.0,3.0,10.0,4.0,5.0,,8.0 F84035,141.0,117.0,112.0,111.0,75.0,73.0,78.0,52.0,60.0,42.0,50.0,36.0,37.0,34.0,45.0,42.0,34.0,33.0,29.0,35.0,46.0,58.0,69.0,158.0,238.0,326.0,447.0,588.0,709.0,738.0,747.0,752.0,776.0,713.0,660.0,571.0,462.0,454.0,364.0,319.0,266.0,208.0,188.0,178.0,120.0,125.0,98.0,94.0,78.0,83.0,68.0,56.0,42.0,45.0,42.0,56.0,49.0,52.0,35.0,44.0,43.0,48.0,48.0,41.0,40.0,36.0,39.0,29.0,22.0,26.0,24.0,23.0,15.0,19.0,15.0,18.0,9.0,12.0,17.0,15.0,8.0,10.0,7.0,10.0,10.0,9.0,2.0,4.0,5.0,,3.0,3.0,1.0,1.0,1.0,5.0 F84036,37.0,31.0,31.0,40.0,27.0,38.0,38.0,39.0,42.0,33.0,30.0,29.0,38.0,34.0,38.0,27.0,32.0,24.0,43.0,32.0,59.0,39.0,56.0,68.0,106.0,120.0,131.0,145.0,158.0,148.0,152.0,140.0,117.0,130.0,103.0,102.0,114.0,88.0,78.0,73.0,79.0,58.0,79.0,69.0,59.0,54.0,52.0,52.0,57.0,42.0,43.0,39.0,32.0,35.0,37.0,40.0,44.0,43.0,33.0,33.0,40.0,44.0,40.0,43.0,37.0,30.0,22.0,29.0,27.0,26.0,31.0,27.0,14.0,19.0,26.0,15.0,18.0,19.0,12.0,11.0,11.0,12.0,7.0,4.0,2.0,6.0,7.0,4.0,6.0,3.0,,2.0,5.0,1.0,2.0,4.0 F84038,11.0,8.0,7.0,9.0,10.0,9.0,6.0,16.0,15.0,14.0,19.0,16.0,16.0,16.0,22.0,17.0,22.0,16.0,20.0,16.0,20.0,15.0,13.0,20.0,30.0,38.0,33.0,36.0,39.0,38.0,51.0,49.0,39.0,40.0,31.0,35.0,38.0,31.0,32.0,28.0,26.0,26.0,28.0,27.0,19.0,27.0,21.0,18.0,23.0,29.0,25.0,27.0,21.0,18.0,19.0,23.0,16.0,14.0,18.0,26.0,18.0,20.0,16.0,8.0,22.0,17.0,10.0,16.0,11.0,10.0,17.0,8.0,14.0,7.0,12.0,7.0,8.0,4.0,2.0,2.0,3.0,9.0,1.0,4.0,3.0,2.0,1.0,4.0,6.0,3.0,,,2.0,,,2.0 F84039,169.0,171.0,165.0,154.0,160.0,146.0,163.0,160.0,144.0,133.0,142.0,153.0,169.0,123.0,128.0,152.0,172.0,166.0,244.0,330.0,402.0,361.0,507.0,684.0,710.0,763.0,751.0,772.0,767.0,659.0,584.0,533.0,500.0,425.0,419.0,439.0,339.0,353.0,295.0,291.0,248.0,227.0,222.0,195.0,178.0,175.0,155.0,144.0,152.0,130.0,122.0,118.0,111.0,82.0,90.0,107.0,89.0,85.0,76.0,72.0,57.0,59.0,58.0,46.0,59.0,58.0,29.0,38.0,44.0,31.0,39.0,33.0,34.0,25.0,22.0,28.0,19.0,16.0,14.0,13.0,20.0,16.0,16.0,14.0,14.0,12.0,8.0,8.0,11.0,8.0,6.0,1.0,1.0,2.0,4.0,8.0 F84044,40.0,38.0,35.0,54.0,44.0,35.0,33.0,44.0,38.0,55.0,43.0,44.0,36.0,38.0,37.0,46.0,58.0,39.0,44.0,32.0,46.0,45.0,60.0,59.0,81.0,89.0,102.0,134.0,124.0,104.0,110.0,102.0,111.0,99.0,91.0,92.0,76.0,101.0,69.0,75.0,56.0,65.0,79.0,65.0,59.0,51.0,40.0,55.0,56.0,51.0,40.0,41.0,27.0,43.0,36.0,33.0,32.0,22.0,26.0,23.0,24.0,19.0,22.0,13.0,20.0,24.0,17.0,27.0,16.0,15.0,19.0,12.0,23.0,11.0,8.0,9.0,9.0,11.0,7.0,10.0,6.0,4.0,9.0,6.0,9.0,6.0,6.0,4.0,5.0,3.0,5.0,3.0,1.0,,1.0,1.0 F84047,52.0,47.0,51.0,52.0,51.0,52.0,62.0,44.0,60.0,61.0,57.0,61.0,56.0,81.0,60.0,66.0,71.0,64.0,81.0,73.0,64.0,63.0,81.0,97.0,94.0,121.0,114.0,114.0,128.0,134.0,124.0,101.0,92.0,99.0,91.0,81.0,90.0,89.0,85.0,81.0,97.0,64.0,77.0,73.0,65.0,74.0,78.0,52.0,60.0,56.0,66.0,51.0,48.0,70.0,75.0,72.0,77.0,64.0,66.0,61.0,53.0,51.0,53.0,38.0,40.0,39.0,30.0,26.0,22.0,30.0,19.0,23.0,25.0,21.0,25.0,24.0,19.0,26.0,18.0,9.0,13.0,14.0,14.0,4.0,7.0,9.0,3.0,6.0,4.0,4.0,5.0,2.0,2.0,1.0,,5.0 F84050,76.0,98.0,89.0,82.0,79.0,104.0,87.0,101.0,77.0,97.0,89.0,79.0,87.0,79.0,86.0,94.0,102.0,81.0,84.0,83.0,105.0,119.0,100.0,116.0,142.0,141.0,145.0,130.0,136.0,115.0,120.0,109.0,96.0,117.0,76.0,99.0,95.0,102.0,105.0,100.0,93.0,93.0,100.0,107.0,109.0,103.0,90.0,63.0,86.0,58.0,78.0,75.0,58.0,53.0,61.0,66.0,52.0,52.0,43.0,51.0,35.0,39.0,38.0,36.0,30.0,29.0,30.0,30.0,36.0,21.0,25.0,12.0,28.0,20.0,15.0,22.0,15.0,21.0,12.0,10.0,6.0,10.0,9.0,3.0,8.0,7.0,6.0,10.0,3.0,3.0,2.0,3.0,4.0,2.0,,4.0 F84051,43.0,43.0,33.0,30.0,21.0,30.0,24.0,24.0,30.0,26.0,29.0,27.0,32.0,31.0,22.0,31.0,19.0,34.0,34.0,32.0,48.0,70.0,86.0,117.0,169.0,184.0,210.0,222.0,247.0,210.0,207.0,204.0,177.0,146.0,146.0,156.0,98.0,111.0,105.0,90.0,81.0,60.0,61.0,53.0,56.0,44.0,31.0,39.0,33.0,34.0,32.0,23.0,19.0,35.0,19.0,20.0,24.0,19.0,19.0,17.0,16.0,16.0,14.0,13.0,14.0,11.0,10.0,11.0,12.0,14.0,8.0,10.0,8.0,10.0,11.0,6.0,10.0,3.0,6.0,5.0,9.0,7.0,2.0,5.0,2.0,2.0,4.0,5.0,1.0,2.0,3.0,1.0,1.0,2.0,,7.0 F84052,95.0,99.0,99.0,96.0,79.0,100.0,95.0,106.0,99.0,114.0,90.0,96.0,120.0,118.0,100.0,108.0,109.0,109.0,105.0,87.0,97.0,119.0,124.0,151.0,127.0,151.0,158.0,189.0,171.0,177.0,173.0,168.0,172.0,148.0,129.0,159.0,154.0,169.0,146.0,158.0,140.0,130.0,151.0,126.0,128.0,128.0,92.0,95.0,124.0,114.0,88.0,97.0,97.0,95.0,90.0,82.0,87.0,108.0,82.0,95.0,82.0,73.0,80.0,64.0,70.0,64.0,56.0,66.0,60.0,49.0,37.0,54.0,28.0,40.0,33.0,25.0,31.0,34.0,22.0,14.0,14.0,14.0,23.0,16.0,13.0,10.0,12.0,9.0,13.0,5.0,3.0,3.0,2.0,2.0,1.0,6.0 F84053,20.0,24.0,31.0,30.0,28.0,36.0,33.0,35.0,39.0,31.0,51.0,50.0,33.0,35.0,56.0,37.0,47.0,41.0,45.0,50.0,60.0,51.0,43.0,57.0,45.0,57.0,42.0,54.0,46.0,53.0,68.0,49.0,47.0,57.0,54.0,52.0,61.0,61.0,54.0,47.0,47.0,74.0,50.0,47.0,56.0,62.0,51.0,46.0,42.0,52.0,49.0,42.0,46.0,64.0,37.0,44.0,44.0,54.0,47.0,36.0,38.0,31.0,39.0,27.0,35.0,22.0,21.0,32.0,26.0,20.0,22.0,18.0,18.0,19.0,18.0,18.0,16.0,11.0,15.0,11.0,10.0,10.0,7.0,6.0,5.0,2.0,6.0,6.0,3.0,5.0,5.0,1.0,2.0,3.0,2.0,1.0 F84054,75.0,72.0,63.0,60.0,56.0,59.0,69.0,69.0,77.0,70.0,53.0,74.0,63.0,59.0,64.0,54.0,62.0,67.0,57.0,53.0,73.0,92.0,95.0,123.0,137.0,132.0,148.0,156.0,161.0,157.0,140.0,146.0,128.0,139.0,127.0,128.0,124.0,125.0,87.0,125.0,99.0,105.0,82.0,83.0,75.0,82.0,83.0,75.0,76.0,74.0,69.0,69.0,64.0,50.0,47.0,49.0,46.0,41.0,49.0,65.0,48.0,38.0,59.0,44.0,35.0,44.0,35.0,25.0,28.0,30.0,30.0,29.0,28.0,33.0,19.0,15.0,21.0,20.0,13.0,13.0,13.0,3.0,13.0,5.0,10.0,6.0,4.0,3.0,4.0,,6.0,3.0,1.0,1.0,3.0,2.0 F84055,19.0,14.0,15.0,12.0,20.0,7.0,19.0,11.0,24.0,19.0,15.0,13.0,18.0,8.0,20.0,14.0,9.0,16.0,14.0,17.0,13.0,19.0,23.0,29.0,25.0,50.0,43.0,61.0,43.0,57.0,51.0,48.0,44.0,51.0,49.0,46.0,54.0,46.0,50.0,33.0,46.0,39.0,44.0,35.0,36.0,24.0,13.0,18.0,22.0,13.0,20.0,18.0,15.0,15.0,10.0,13.0,11.0,10.0,13.0,14.0,12.0,13.0,10.0,7.0,8.0,10.0,10.0,8.0,8.0,8.0,10.0,3.0,7.0,5.0,7.0,4.0,5.0,8.0,6.0,4.0,8.0,7.0,2.0,5.0,4.0,5.0,2.0,2.0,4.0,2.0,4.0,1.0,3.0,,2.0,3.0 F84060,18.0,14.0,12.0,19.0,22.0,23.0,18.0,20.0,19.0,18.0,21.0,20.0,23.0,27.0,15.0,22.0,21.0,33.0,24.0,29.0,24.0,27.0,32.0,28.0,46.0,43.0,66.0,63.0,63.0,76.0,58.0,62.0,61.0,62.0,64.0,44.0,54.0,37.0,27.0,50.0,39.0,21.0,41.0,23.0,35.0,24.0,22.0,23.0,27.0,44.0,19.0,30.0,25.0,34.0,25.0,26.0,25.0,24.0,34.0,27.0,30.0,34.0,28.0,18.0,21.0,24.0,14.0,20.0,21.0,18.0,16.0,24.0,14.0,9.0,12.0,9.0,11.0,14.0,6.0,8.0,10.0,11.0,10.0,9.0,14.0,9.0,9.0,4.0,3.0,5.0,3.0,4.0,5.0,2.0,2.0,3.0 F84062,64.0,72.0,72.0,83.0,71.0,92.0,76.0,111.0,81.0,89.0,97.0,103.0,107.0,92.0,111.0,88.0,88.0,82.0,97.0,98.0,96.0,131.0,117.0,131.0,117.0,164.0,160.0,165.0,167.0,163.0,165.0,154.0,136.0,159.0,139.0,152.0,158.0,146.0,139.0,137.0,139.0,149.0,105.0,111.0,111.0,123.0,92.0,80.0,87.0,77.0,67.0,73.0,75.0,67.0,69.0,54.0,54.0,58.0,46.0,58.0,63.0,51.0,44.0,36.0,49.0,49.0,48.0,46.0,39.0,47.0,33.0,42.0,29.0,31.0,28.0,33.0,27.0,15.0,21.0,13.0,15.0,22.0,8.0,10.0,10.0,10.0,9.0,6.0,10.0,3.0,3.0,6.0,3.0,4.0,6.0,8.0 F84063,21.0,20.0,16.0,15.0,17.0,30.0,12.0,28.0,23.0,21.0,24.0,30.0,20.0,22.0,33.0,37.0,37.0,25.0,30.0,27.0,30.0,33.0,33.0,39.0,71.0,73.0,85.0,99.0,113.0,102.0,116.0,106.0,96.0,81.0,80.0,86.0,62.0,79.0,58.0,62.0,51.0,42.0,43.0,53.0,38.0,45.0,47.0,33.0,34.0,44.0,35.0,35.0,25.0,32.0,30.0,40.0,22.0,35.0,23.0,35.0,34.0,24.0,28.0,24.0,25.0,29.0,23.0,16.0,24.0,17.0,16.0,9.0,17.0,11.0,14.0,11.0,14.0,8.0,11.0,10.0,5.0,5.0,5.0,7.0,2.0,4.0,5.0,6.0,5.0,5.0,3.0,4.0,4.0,,1.0, F84069,61.0,46.0,50.0,52.0,51.0,58.0,62.0,75.0,68.0,61.0,62.0,65.0,68.0,91.0,86.0,71.0,88.0,81.0,70.0,75.0,89.0,71.0,61.0,67.0,106.0,97.0,129.0,153.0,174.0,163.0,143.0,133.0,155.0,156.0,158.0,156.0,173.0,148.0,154.0,132.0,150.0,122.0,144.0,100.0,116.0,117.0,134.0,96.0,114.0,95.0,82.0,84.0,71.0,79.0,86.0,79.0,92.0,64.0,78.0,74.0,93.0,85.0,68.0,72.0,52.0,66.0,50.0,52.0,54.0,51.0,39.0,44.0,34.0,29.0,35.0,37.0,36.0,29.0,26.0,21.0,20.0,22.0,15.0,17.0,9.0,11.0,11.0,4.0,16.0,5.0,7.0,4.0,3.0,3.0,2.0,8.0 F84070,61.0,53.0,66.0,45.0,51.0,46.0,63.0,56.0,53.0,40.0,60.0,66.0,50.0,48.0,63.0,64.0,59.0,48.0,41.0,67.0,45.0,69.0,90.0,87.0,100.0,126.0,139.0,110.0,113.0,99.0,83.0,81.0,90.0,89.0,86.0,104.0,86.0,77.0,75.0,80.0,58.0,77.0,64.0,49.0,60.0,50.0,50.0,44.0,47.0,55.0,46.0,43.0,39.0,38.0,36.0,41.0,55.0,37.0,29.0,38.0,28.0,18.0,27.0,30.0,19.0,20.0,19.0,27.0,18.0,22.0,18.0,21.0,16.0,23.0,15.0,13.0,17.0,7.0,16.0,11.0,9.0,7.0,6.0,9.0,7.0,12.0,5.0,6.0,3.0,2.0,1.0,2.0,,2.0,1.0,1.0 F84072,52.0,58.0,49.0,67.0,59.0,59.0,52.0,66.0,80.0,60.0,55.0,51.0,49.0,39.0,69.0,51.0,44.0,36.0,54.0,31.0,44.0,35.0,42.0,57.0,84.0,109.0,142.0,182.0,206.0,222.0,240.0,271.0,249.0,237.0,234.0,262.0,232.0,255.0,214.0,197.0,187.0,143.0,153.0,121.0,133.0,115.0,91.0,99.0,80.0,65.0,76.0,47.0,57.0,52.0,38.0,42.0,38.0,43.0,39.0,48.0,44.0,35.0,36.0,46.0,16.0,22.0,23.0,19.0,22.0,13.0,10.0,9.0,16.0,20.0,5.0,15.0,19.0,10.0,11.0,9.0,9.0,7.0,7.0,4.0,6.0,7.0,2.0,9.0,2.0,9.0,3.0,5.0,,2.0,2.0,3.0 F84074,44.0,45.0,65.0,54.0,42.0,55.0,70.0,51.0,61.0,59.0,55.0,50.0,70.0,69.0,74.0,79.0,69.0,74.0,59.0,52.0,50.0,60.0,63.0,66.0,56.0,77.0,88.0,78.0,98.0,83.0,76.0,74.0,59.0,71.0,78.0,84.0,62.0,70.0,80.0,83.0,86.0,85.0,67.0,78.0,76.0,67.0,64.0,51.0,56.0,57.0,45.0,57.0,54.0,52.0,63.0,49.0,51.0,50.0,46.0,58.0,46.0,48.0,47.0,29.0,32.0,59.0,51.0,57.0,46.0,36.0,41.0,33.0,37.0,45.0,28.0,19.0,30.0,29.0,18.0,19.0,17.0,17.0,15.0,10.0,15.0,12.0,8.0,13.0,7.0,4.0,8.0,8.0,1.0,4.0,,4.0 F84077,53.0,44.0,57.0,55.0,59.0,53.0,56.0,44.0,61.0,50.0,54.0,50.0,48.0,50.0,54.0,39.0,39.0,54.0,43.0,40.0,47.0,48.0,70.0,93.0,109.0,112.0,107.0,122.0,135.0,95.0,108.0,97.0,112.0,114.0,108.0,101.0,113.0,112.0,102.0,103.0,99.0,97.0,70.0,64.0,62.0,61.0,72.0,59.0,51.0,48.0,51.0,40.0,39.0,54.0,54.0,64.0,51.0,40.0,38.0,45.0,51.0,46.0,55.0,34.0,25.0,35.0,29.0,34.0,31.0,23.0,26.0,15.0,31.0,23.0,21.0,14.0,21.0,19.0,17.0,7.0,12.0,12.0,11.0,11.0,8.0,6.0,11.0,9.0,3.0,2.0,3.0,1.0,2.0,2.0,,3.0 F84079,50.0,48.0,52.0,37.0,38.0,45.0,36.0,37.0,42.0,38.0,47.0,42.0,49.0,27.0,53.0,37.0,35.0,40.0,35.0,47.0,39.0,51.0,69.0,72.0,118.0,131.0,142.0,150.0,154.0,184.0,165.0,123.0,155.0,144.0,135.0,132.0,123.0,153.0,107.0,101.0,91.0,110.0,79.0,82.0,88.0,88.0,70.0,81.0,68.0,56.0,76.0,49.0,63.0,60.0,59.0,40.0,43.0,43.0,45.0,36.0,52.0,44.0,46.0,45.0,38.0,47.0,25.0,27.0,30.0,33.0,28.0,30.0,27.0,24.0,28.0,17.0,21.0,17.0,22.0,11.0,12.0,10.0,7.0,4.0,6.0,5.0,8.0,4.0,,3.0,4.0,5.0,3.0,2.0,1.0,2.0 F84080,41.0,62.0,48.0,70.0,67.0,65.0,64.0,74.0,65.0,76.0,63.0,67.0,58.0,64.0,59.0,56.0,51.0,62.0,72.0,62.0,65.0,68.0,72.0,66.0,67.0,61.0,71.0,89.0,78.0,77.0,68.0,66.0,63.0,61.0,79.0,71.0,64.0,71.0,65.0,63.0,67.0,65.0,75.0,69.0,63.0,61.0,63.0,54.0,55.0,52.0,60.0,51.0,60.0,39.0,41.0,58.0,63.0,76.0,57.0,52.0,78.0,62.0,60.0,81.0,54.0,57.0,50.0,42.0,48.0,39.0,32.0,25.0,40.0,31.0,24.0,23.0,31.0,19.0,11.0,15.0,18.0,22.0,16.0,11.0,9.0,15.0,7.0,8.0,9.0,8.0,6.0,4.0,5.0,6.0,5.0,7.0 F84081,39.0,44.0,57.0,61.0,55.0,52.0,55.0,45.0,62.0,39.0,49.0,41.0,63.0,60.0,51.0,42.0,51.0,59.0,95.0,128.0,114.0,130.0,145.0,169.0,234.0,207.0,203.0,186.0,163.0,173.0,160.0,134.0,150.0,119.0,93.0,117.0,119.0,99.0,111.0,102.0,99.0,92.0,77.0,81.0,63.0,73.0,59.0,57.0,45.0,49.0,45.0,49.0,40.0,52.0,31.0,35.0,43.0,40.0,29.0,37.0,35.0,31.0,29.0,31.0,44.0,34.0,34.0,28.0,37.0,31.0,23.0,19.0,23.0,28.0,16.0,20.0,12.0,17.0,13.0,13.0,15.0,14.0,10.0,9.0,11.0,12.0,8.0,3.0,4.0,6.0,8.0,4.0,3.0,2.0,2.0,4.0 F84083,37.0,50.0,33.0,41.0,36.0,44.0,47.0,55.0,56.0,53.0,40.0,55.0,53.0,44.0,61.0,53.0,54.0,48.0,54.0,40.0,46.0,71.0,91.0,85.0,119.0,129.0,164.0,167.0,145.0,160.0,128.0,107.0,111.0,110.0,93.0,107.0,97.0,98.0,73.0,81.0,83.0,84.0,57.0,52.0,71.0,64.0,60.0,56.0,54.0,52.0,39.0,42.0,37.0,55.0,52.0,43.0,44.0,33.0,41.0,44.0,36.0,38.0,43.0,34.0,34.0,38.0,32.0,23.0,24.0,34.0,18.0,20.0,9.0,22.0,15.0,23.0,16.0,20.0,19.0,15.0,9.0,9.0,18.0,9.0,16.0,14.0,8.0,10.0,4.0,5.0,4.0,5.0,8.0,6.0,5.0,9.0 F84086,25.0,21.0,22.0,33.0,33.0,31.0,33.0,35.0,31.0,42.0,33.0,31.0,42.0,28.0,34.0,35.0,32.0,40.0,35.0,31.0,30.0,30.0,24.0,43.0,43.0,48.0,55.0,48.0,40.0,51.0,51.0,45.0,40.0,61.0,49.0,48.0,56.0,45.0,66.0,63.0,44.0,51.0,51.0,37.0,37.0,37.0,45.0,33.0,37.0,43.0,36.0,27.0,49.0,25.0,43.0,27.0,47.0,39.0,46.0,47.0,38.0,31.0,36.0,37.0,53.0,36.0,35.0,28.0,38.0,31.0,22.0,13.0,24.0,18.0,9.0,16.0,11.0,19.0,22.0,8.0,12.0,14.0,17.0,6.0,9.0,8.0,7.0,12.0,6.0,5.0,4.0,5.0,2.0,2.0,3.0,5.0 F84087,39.0,55.0,53.0,49.0,54.0,56.0,52.0,55.0,54.0,56.0,48.0,69.0,54.0,57.0,70.0,68.0,58.0,72.0,66.0,68.0,58.0,65.0,77.0,87.0,70.0,117.0,94.0,81.0,98.0,111.0,113.0,92.0,79.0,74.0,78.0,90.0,103.0,102.0,102.0,85.0,68.0,60.0,80.0,78.0,68.0,81.0,59.0,43.0,59.0,74.0,53.0,57.0,51.0,38.0,50.0,42.0,35.0,34.0,48.0,37.0,33.0,31.0,28.0,28.0,26.0,19.0,21.0,23.0,25.0,23.0,28.0,20.0,25.0,22.0,18.0,23.0,18.0,14.0,9.0,8.0,11.0,3.0,8.0,8.0,11.0,14.0,12.0,3.0,5.0,5.0,4.0,8.0,3.0,4.0,6.0,7.0 F84088,54.0,42.0,56.0,50.0,56.0,32.0,48.0,41.0,33.0,34.0,35.0,30.0,39.0,28.0,42.0,38.0,44.0,41.0,41.0,43.0,35.0,47.0,50.0,58.0,69.0,80.0,92.0,103.0,97.0,79.0,86.0,70.0,56.0,56.0,52.0,61.0,45.0,58.0,51.0,40.0,49.0,38.0,54.0,43.0,34.0,43.0,35.0,39.0,29.0,34.0,31.0,24.0,28.0,35.0,29.0,23.0,29.0,28.0,26.0,25.0,20.0,25.0,27.0,22.0,21.0,17.0,15.0,17.0,19.0,13.0,20.0,14.0,8.0,12.0,11.0,20.0,9.0,5.0,7.0,6.0,7.0,10.0,6.0,14.0,2.0,6.0,11.0,9.0,4.0,1.0,3.0,4.0,3.0,2.0,,5.0 F84092,67.0,70.0,71.0,84.0,69.0,59.0,83.0,86.0,76.0,72.0,85.0,78.0,86.0,94.0,110.0,87.0,105.0,105.0,87.0,69.0,87.0,82.0,81.0,111.0,116.0,110.0,113.0,112.0,114.0,124.0,126.0,127.0,94.0,137.0,111.0,131.0,145.0,132.0,120.0,104.0,118.0,97.0,122.0,88.0,89.0,104.0,81.0,93.0,94.0,87.0,96.0,63.0,80.0,84.0,83.0,85.0,74.0,75.0,72.0,68.0,63.0,54.0,66.0,56.0,58.0,48.0,52.0,40.0,38.0,43.0,40.0,26.0,29.0,29.0,25.0,26.0,20.0,23.0,28.0,12.0,18.0,12.0,17.0,12.0,8.0,8.0,14.0,9.0,5.0,2.0,4.0,1.0,2.0,2.0,,5.0 F84093,84.0,76.0,105.0,101.0,80.0,75.0,124.0,114.0,120.0,118.0,97.0,103.0,130.0,121.0,111.0,127.0,115.0,122.0,108.0,97.0,85.0,108.0,106.0,112.0,101.0,148.0,150.0,150.0,169.0,157.0,165.0,174.0,146.0,172.0,188.0,171.0,185.0,190.0,174.0,168.0,153.0,180.0,149.0,183.0,166.0,158.0,133.0,158.0,147.0,124.0,140.0,123.0,98.0,116.0,108.0,109.0,101.0,93.0,103.0,101.0,93.0,121.0,81.0,81.0,83.0,79.0,82.0,62.0,83.0,58.0,50.0,58.0,41.0,50.0,39.0,43.0,29.0,28.0,29.0,9.0,20.0,14.0,13.0,7.0,10.0,8.0,7.0,9.0,4.0,9.0,4.0,4.0,2.0,5.0,3.0,3.0 F84096,48.0,50.0,45.0,47.0,63.0,57.0,68.0,68.0,71.0,63.0,70.0,67.0,83.0,73.0,81.0,84.0,93.0,74.0,100.0,104.0,118.0,135.0,148.0,207.0,233.0,216.0,277.0,255.0,246.0,238.0,224.0,214.0,198.0,207.0,184.0,177.0,165.0,158.0,185.0,182.0,146.0,141.0,129.0,131.0,120.0,124.0,91.0,91.0,111.0,79.0,100.0,74.0,94.0,81.0,77.0,77.0,94.0,84.0,71.0,78.0,89.0,75.0,65.0,80.0,80.0,67.0,53.0,51.0,69.0,56.0,35.0,50.0,39.0,33.0,35.0,31.0,30.0,26.0,17.0,23.0,24.0,15.0,18.0,12.0,21.0,16.0,17.0,13.0,5.0,10.0,11.0,4.0,1.0,3.0,4.0,10.0 F84097,72.0,66.0,75.0,90.0,90.0,88.0,71.0,86.0,66.0,83.0,91.0,73.0,66.0,96.0,73.0,80.0,68.0,67.0,89.0,70.0,82.0,88.0,76.0,84.0,90.0,107.0,115.0,111.0,100.0,102.0,96.0,104.0,93.0,86.0,104.0,102.0,112.0,107.0,106.0,101.0,119.0,89.0,90.0,99.0,98.0,90.0,72.0,76.0,65.0,79.0,67.0,63.0,51.0,67.0,47.0,51.0,52.0,57.0,46.0,62.0,56.0,56.0,53.0,64.0,43.0,54.0,46.0,43.0,31.0,50.0,26.0,33.0,37.0,39.0,36.0,24.0,29.0,22.0,13.0,17.0,12.0,19.0,18.0,15.0,18.0,9.0,9.0,9.0,7.0,7.0,7.0,10.0,3.0,3.0,1.0,6.0 F84105,33.0,36.0,46.0,38.0,41.0,60.0,55.0,65.0,57.0,68.0,64.0,59.0,73.0,66.0,58.0,67.0,69.0,74.0,61.0,75.0,56.0,51.0,61.0,65.0,82.0,87.0,131.0,142.0,109.0,147.0,117.0,141.0,143.0,132.0,147.0,123.0,125.0,148.0,135.0,118.0,122.0,102.0,119.0,110.0,112.0,98.0,89.0,74.0,72.0,63.0,93.0,84.0,70.0,55.0,66.0,59.0,69.0,63.0,65.0,59.0,48.0,44.0,51.0,41.0,48.0,37.0,27.0,29.0,31.0,31.0,18.0,20.0,25.0,20.0,23.0,20.0,17.0,13.0,10.0,11.0,12.0,14.0,2.0,11.0,9.0,12.0,6.0,7.0,6.0,6.0,8.0,4.0,2.0,2.0,4.0,5.0 F84111,36.0,37.0,50.0,31.0,47.0,40.0,52.0,42.0,47.0,58.0,42.0,54.0,58.0,57.0,52.0,51.0,54.0,58.0,58.0,67.0,50.0,54.0,87.0,87.0,93.0,123.0,124.0,108.0,133.0,127.0,99.0,96.0,109.0,88.0,78.0,74.0,82.0,70.0,79.0,67.0,75.0,61.0,59.0,71.0,65.0,78.0,65.0,64.0,63.0,71.0,55.0,53.0,46.0,53.0,67.0,43.0,70.0,59.0,66.0,54.0,65.0,47.0,40.0,40.0,42.0,32.0,41.0,25.0,24.0,22.0,23.0,19.0,20.0,27.0,21.0,24.0,18.0,16.0,18.0,10.0,9.0,13.0,6.0,6.0,6.0,9.0,6.0,8.0,4.0,4.0,4.0,2.0,,1.0,2.0,4.0 F84114,75.0,73.0,65.0,78.0,64.0,55.0,60.0,57.0,65.0,65.0,69.0,62.0,67.0,55.0,51.0,66.0,73.0,57.0,64.0,70.0,77.0,83.0,77.0,75.0,124.0,112.0,134.0,131.0,144.0,110.0,123.0,105.0,117.0,99.0,94.0,126.0,117.0,113.0,85.0,85.0,100.0,100.0,69.0,93.0,81.0,67.0,61.0,55.0,60.0,45.0,53.0,60.0,34.0,48.0,37.0,34.0,45.0,33.0,36.0,31.0,27.0,43.0,34.0,23.0,16.0,30.0,30.0,36.0,29.0,32.0,28.0,20.0,14.0,19.0,15.0,14.0,18.0,18.0,22.0,9.0,14.0,10.0,10.0,12.0,20.0,22.0,10.0,7.0,5.0,10.0,9.0,5.0,4.0,6.0,,5.0 F84115,46.0,45.0,35.0,54.0,41.0,38.0,36.0,36.0,26.0,31.0,42.0,39.0,34.0,41.0,36.0,38.0,35.0,33.0,39.0,33.0,20.0,44.0,46.0,45.0,65.0,59.0,99.0,115.0,136.0,136.0,140.0,135.0,136.0,130.0,139.0,126.0,111.0,108.0,107.0,95.0,95.0,77.0,75.0,68.0,74.0,70.0,74.0,72.0,57.0,62.0,62.0,50.0,47.0,60.0,59.0,53.0,45.0,40.0,53.0,46.0,47.0,51.0,61.0,51.0,39.0,40.0,39.0,23.0,27.0,38.0,23.0,24.0,19.0,22.0,16.0,26.0,18.0,18.0,14.0,10.0,11.0,9.0,5.0,5.0,8.0,6.0,5.0,6.0,4.0,2.0,7.0,1.0,2.0,1.0,1.0,4.0 F84117,37.0,27.0,35.0,44.0,30.0,36.0,43.0,33.0,45.0,55.0,49.0,35.0,46.0,50.0,52.0,40.0,40.0,40.0,40.0,38.0,30.0,39.0,33.0,64.0,68.0,68.0,90.0,107.0,115.0,123.0,103.0,129.0,125.0,123.0,133.0,105.0,122.0,132.0,120.0,110.0,122.0,92.0,75.0,90.0,72.0,90.0,78.0,74.0,72.0,74.0,57.0,59.0,72.0,62.0,59.0,51.0,73.0,53.0,59.0,65.0,63.0,48.0,47.0,42.0,41.0,45.0,35.0,42.0,26.0,29.0,36.0,34.0,24.0,23.0,31.0,23.0,16.0,28.0,24.0,15.0,22.0,14.0,8.0,11.0,9.0,18.0,6.0,5.0,9.0,5.0,8.0,2.0,3.0,2.0,6.0,2.0 F84118,59.0,77.0,44.0,49.0,40.0,48.0,41.0,50.0,44.0,44.0,46.0,47.0,60.0,43.0,51.0,40.0,32.0,43.0,42.0,50.0,56.0,73.0,103.0,117.0,157.0,170.0,219.0,218.0,208.0,215.0,225.0,204.0,212.0,177.0,176.0,149.0,149.0,113.0,112.0,101.0,91.0,92.0,89.0,87.0,76.0,67.0,59.0,65.0,49.0,57.0,40.0,36.0,41.0,44.0,39.0,38.0,32.0,30.0,44.0,36.0,27.0,24.0,29.0,15.0,24.0,20.0,20.0,14.0,16.0,25.0,22.0,12.0,14.0,11.0,10.0,8.0,8.0,12.0,13.0,7.0,6.0,9.0,7.0,6.0,5.0,7.0,3.0,5.0,3.0,3.0,2.0,3.0,1.0,2.0,2.0,4.0 F84119,66.0,46.0,51.0,60.0,68.0,67.0,59.0,66.0,68.0,69.0,47.0,75.0,60.0,73.0,52.0,60.0,58.0,68.0,64.0,37.0,39.0,52.0,59.0,77.0,84.0,112.0,119.0,136.0,162.0,161.0,170.0,169.0,171.0,185.0,151.0,187.0,174.0,158.0,161.0,136.0,123.0,147.0,125.0,113.0,98.0,103.0,110.0,82.0,98.0,78.0,68.0,63.0,75.0,67.0,68.0,66.0,63.0,65.0,61.0,75.0,62.0,69.0,49.0,60.0,62.0,49.0,56.0,46.0,51.0,46.0,33.0,27.0,38.0,21.0,17.0,20.0,24.0,32.0,14.0,24.0,11.0,16.0,14.0,6.0,9.0,9.0,12.0,3.0,7.0,5.0,4.0,2.0,4.0,1.0,1.0,3.0 F84121,108.0,99.0,107.0,90.0,91.0,112.0,110.0,99.0,104.0,116.0,101.0,122.0,121.0,99.0,101.0,117.0,128.0,141.0,115.0,87.0,105.0,103.0,146.0,121.0,154.0,162.0,156.0,135.0,158.0,154.0,129.0,126.0,123.0,121.0,110.0,110.0,108.0,112.0,140.0,102.0,114.0,130.0,93.0,108.0,94.0,100.0,100.0,95.0,77.0,103.0,76.0,90.0,71.0,74.0,75.0,82.0,73.0,55.0,60.0,57.0,50.0,43.0,55.0,46.0,53.0,45.0,31.0,33.0,42.0,31.0,39.0,26.0,38.0,38.0,24.0,20.0,18.0,23.0,19.0,14.0,20.0,16.0,21.0,18.0,21.0,10.0,8.0,12.0,18.0,13.0,10.0,10.0,3.0,5.0,6.0,7.0 F84122,74.0,105.0,84.0,98.0,71.0,88.0,70.0,75.0,96.0,84.0,90.0,105.0,104.0,103.0,87.0,107.0,96.0,113.0,100.0,150.0,176.0,156.0,179.0,191.0,231.0,218.0,230.0,217.0,232.0,203.0,215.0,165.0,162.0,164.0,152.0,141.0,131.0,143.0,136.0,139.0,132.0,133.0,106.0,131.0,125.0,102.0,110.0,108.0,94.0,92.0,85.0,91.0,70.0,66.0,70.0,58.0,72.0,65.0,71.0,64.0,65.0,56.0,58.0,52.0,46.0,36.0,47.0,56.0,36.0,41.0,36.0,30.0,34.0,41.0,26.0,28.0,30.0,25.0,20.0,23.0,20.0,25.0,15.0,21.0,16.0,10.0,11.0,11.0,11.0,13.0,6.0,6.0,5.0,7.0,7.0,13.0 F84123,56.0,56.0,52.0,59.0,69.0,61.0,50.0,64.0,54.0,51.0,55.0,69.0,57.0,70.0,48.0,59.0,57.0,54.0,129.0,243.0,298.0,376.0,386.0,378.0,459.0,466.0,527.0,554.0,451.0,505.0,281.0,233.0,219.0,179.0,133.0,144.0,143.0,151.0,110.0,115.0,96.0,81.0,93.0,104.0,103.0,75.0,61.0,70.0,55.0,46.0,53.0,54.0,50.0,38.0,37.0,34.0,24.0,39.0,35.0,37.0,34.0,27.0,28.0,19.0,28.0,41.0,26.0,25.0,24.0,16.0,26.0,17.0,11.0,14.0,18.0,16.0,8.0,18.0,14.0,6.0,7.0,2.0,3.0,4.0,8.0,5.0,7.0,4.0,3.0,5.0,5.0,3.0,1.0,1.0,,8.0 F84124,21.0,20.0,26.0,20.0,31.0,28.0,27.0,29.0,32.0,32.0,30.0,34.0,35.0,35.0,32.0,32.0,21.0,30.0,33.0,23.0,35.0,30.0,35.0,38.0,43.0,35.0,58.0,50.0,72.0,61.0,36.0,51.0,52.0,45.0,55.0,52.0,46.0,41.0,40.0,48.0,39.0,48.0,33.0,55.0,43.0,31.0,35.0,37.0,36.0,39.0,30.0,21.0,28.0,19.0,35.0,31.0,23.0,21.0,21.0,24.0,18.0,19.0,19.0,11.0,17.0,15.0,14.0,10.0,7.0,6.0,13.0,6.0,6.0,4.0,4.0,5.0,7.0,8.0,2.0,4.0,2.0,4.0,3.0,5.0,4.0,2.0,3.0,,1.0,,,,,,,2.0 F84601,23.0,41.0,33.0,41.0,40.0,37.0,51.0,30.0,36.0,33.0,42.0,41.0,36.0,41.0,45.0,42.0,57.0,41.0,62.0,51.0,39.0,38.0,48.0,41.0,73.0,70.0,71.0,99.0,95.0,101.0,96.0,98.0,93.0,91.0,83.0,76.0,86.0,91.0,77.0,77.0,63.0,50.0,74.0,60.0,45.0,53.0,53.0,68.0,51.0,40.0,36.0,49.0,50.0,50.0,65.0,52.0,32.0,38.0,47.0,44.0,47.0,37.0,42.0,33.0,26.0,27.0,28.0,20.0,25.0,24.0,19.0,14.0,15.0,8.0,11.0,12.0,11.0,6.0,14.0,14.0,12.0,9.0,8.0,4.0,4.0,9.0,5.0,4.0,6.0,1.0,2.0,1.0,5.0,,,2.0 F84619,14.0,24.0,26.0,29.0,18.0,23.0,31.0,25.0,31.0,36.0,23.0,38.0,23.0,36.0,25.0,34.0,29.0,29.0,27.0,31.0,29.0,18.0,24.0,33.0,46.0,39.0,49.0,51.0,53.0,57.0,65.0,86.0,66.0,65.0,53.0,60.0,59.0,52.0,50.0,64.0,56.0,61.0,63.0,57.0,57.0,50.0,34.0,34.0,33.0,27.0,26.0,24.0,23.0,22.0,22.0,23.0,24.0,31.0,22.0,14.0,24.0,25.0,30.0,17.0,17.0,12.0,13.0,10.0,11.0,13.0,12.0,9.0,8.0,4.0,3.0,8.0,4.0,5.0,6.0,6.0,9.0,3.0,6.0,7.0,5.0,2.0,7.0,2.0,2.0,4.0,4.0,1.0,,2.0,2.0, F84620,43.0,38.0,32.0,42.0,25.0,33.0,32.0,34.0,40.0,48.0,41.0,55.0,47.0,42.0,35.0,42.0,44.0,47.0,44.0,46.0,54.0,45.0,48.0,52.0,60.0,83.0,100.0,115.0,120.0,130.0,93.0,103.0,110.0,86.0,100.0,80.0,70.0,84.0,81.0,79.0,69.0,53.0,63.0,51.0,52.0,62.0,44.0,39.0,47.0,51.0,51.0,40.0,47.0,46.0,47.0,47.0,39.0,49.0,40.0,45.0,46.0,38.0,36.0,40.0,35.0,31.0,38.0,24.0,26.0,19.0,27.0,27.0,25.0,18.0,26.0,19.0,16.0,10.0,17.0,9.0,16.0,7.0,7.0,11.0,12.0,6.0,2.0,8.0,16.0,2.0,,4.0,3.0,3.0,2.0,9.0 F84621,15.0,18.0,13.0,7.0,22.0,11.0,23.0,25.0,20.0,16.0,16.0,21.0,20.0,18.0,27.0,24.0,27.0,28.0,28.0,17.0,18.0,22.0,22.0,30.0,43.0,47.0,54.0,78.0,67.0,75.0,78.0,56.0,79.0,64.0,59.0,58.0,47.0,44.0,36.0,43.0,40.0,33.0,27.0,28.0,32.0,21.0,27.0,32.0,37.0,22.0,20.0,27.0,29.0,25.0,25.0,25.0,23.0,31.0,21.0,21.0,31.0,19.0,21.0,26.0,14.0,18.0,20.0,17.0,18.0,18.0,13.0,8.0,12.0,11.0,9.0,8.0,7.0,16.0,6.0,7.0,9.0,7.0,7.0,3.0,6.0,6.0,4.0,4.0,4.0,3.0,1.0,3.0,3.0,,2.0,2.0 F84632,,,,,,,,,,,,,,,,,,,,1.0,1.0,4.0,4.0,4.0,4.0,7.0,8.0,6.0,4.0,5.0,7.0,3.0,6.0,6.0,6.0,7.0,9.0,8.0,4.0,10.0,3.0,9.0,8.0,7.0,4.0,8.0,7.0,6.0,2.0,5.0,7.0,4.0,4.0,10.0,10.0,7.0,6.0,6.0,6.0,5.0,5.0,1.0,2.0,3.0,3.0,3.0,2.0,1.0,2.0,,2.0,,1.0,1.0,1.0,1.0,,,,1.0,,,,,,,,,,,,,,,, F84635,28.0,32.0,21.0,31.0,30.0,24.0,33.0,46.0,45.0,40.0,33.0,36.0,41.0,34.0,48.0,37.0,43.0,63.0,59.0,73.0,73.0,57.0,81.0,105.0,130.0,114.0,148.0,153.0,127.0,132.0,142.0,134.0,119.0,118.0,128.0,109.0,102.0,109.0,94.0,86.0,75.0,63.0,84.0,63.0,55.0,58.0,44.0,67.0,49.0,65.0,63.0,51.0,52.0,58.0,52.0,43.0,40.0,42.0,34.0,40.0,32.0,29.0,36.0,34.0,27.0,27.0,18.0,23.0,18.0,25.0,16.0,15.0,13.0,15.0,14.0,16.0,14.0,8.0,10.0,8.0,7.0,6.0,10.0,7.0,4.0,7.0,5.0,5.0,4.0,3.0,5.0,1.0,2.0,,,3.0 F84636,34.0,23.0,29.0,28.0,23.0,18.0,16.0,24.0,17.0,21.0,26.0,21.0,26.0,26.0,22.0,19.0,20.0,25.0,23.0,16.0,20.0,23.0,33.0,44.0,59.0,74.0,98.0,128.0,133.0,116.0,146.0,169.0,137.0,138.0,127.0,123.0,96.0,90.0,98.0,69.0,76.0,54.0,68.0,54.0,41.0,60.0,45.0,41.0,33.0,28.0,18.0,22.0,16.0,28.0,25.0,19.0,22.0,22.0,25.0,24.0,25.0,22.0,27.0,15.0,17.0,19.0,11.0,7.0,11.0,9.0,8.0,8.0,6.0,1.0,2.0,13.0,7.0,12.0,6.0,10.0,3.0,6.0,7.0,5.0,4.0,5.0,3.0,4.0,2.0,1.0,1.0,1.0,,,1.0,2.0 F84640,11.0,16.0,23.0,20.0,25.0,21.0,16.0,28.0,25.0,23.0,24.0,23.0,19.0,17.0,28.0,23.0,24.0,19.0,40.0,68.0,68.0,57.0,89.0,108.0,113.0,99.0,88.0,131.0,111.0,88.0,97.0,101.0,90.0,81.0,100.0,93.0,78.0,60.0,52.0,71.0,60.0,43.0,57.0,38.0,57.0,58.0,38.0,47.0,48.0,58.0,48.0,43.0,44.0,41.0,57.0,39.0,45.0,45.0,43.0,47.0,58.0,47.0,46.0,49.0,48.0,35.0,46.0,37.0,30.0,47.0,33.0,35.0,33.0,34.0,33.0,34.0,39.0,39.0,33.0,22.0,18.0,17.0,17.0,17.0,28.0,18.0,15.0,13.0,8.0,5.0,9.0,6.0,2.0,3.0,,10.0 F84641,19.0,17.0,18.0,22.0,18.0,17.0,15.0,22.0,26.0,12.0,16.0,18.0,9.0,22.0,18.0,18.0,21.0,15.0,16.0,11.0,15.0,26.0,26.0,26.0,19.0,32.0,29.0,23.0,28.0,34.0,38.0,32.0,27.0,20.0,20.0,20.0,15.0,19.0,15.0,11.0,21.0,33.0,20.0,19.0,17.0,15.0,19.0,20.0,20.0,12.0,17.0,18.0,20.0,17.0,10.0,12.0,11.0,10.0,10.0,10.0,11.0,12.0,16.0,12.0,5.0,11.0,11.0,12.0,9.0,11.0,12.0,13.0,12.0,8.0,11.0,5.0,3.0,5.0,3.0,3.0,4.0,5.0,1.0,2.0,4.0,1.0,3.0,4.0,6.0,1.0,1.0,4.0,1.0,,1.0,3.0 F84642,93.0,90.0,94.0,72.0,82.0,89.0,70.0,77.0,59.0,65.0,69.0,67.0,50.0,65.0,49.0,58.0,57.0,44.0,48.0,45.0,64.0,80.0,95.0,139.0,163.0,190.0,196.0,192.0,195.0,204.0,184.0,159.0,169.0,125.0,164.0,134.0,144.0,127.0,119.0,102.0,104.0,94.0,88.0,69.0,66.0,68.0,68.0,54.0,48.0,48.0,54.0,52.0,43.0,43.0,31.0,34.0,29.0,35.0,32.0,32.0,30.0,28.0,41.0,34.0,20.0,36.0,33.0,31.0,16.0,22.0,14.0,21.0,18.0,14.0,15.0,12.0,11.0,10.0,6.0,8.0,8.0,5.0,3.0,3.0,5.0,7.0,4.0,5.0,4.0,3.0,3.0,,,2.0,2.0,2.0 F84647,89.0,62.0,61.0,59.0,63.0,49.0,59.0,54.0,53.0,64.0,44.0,45.0,54.0,54.0,46.0,51.0,47.0,45.0,51.0,69.0,99.0,111.0,155.0,225.0,271.0,281.0,272.0,283.0,289.0,276.0,234.0,233.0,268.0,241.0,223.0,218.0,235.0,184.0,165.0,157.0,155.0,108.0,108.0,124.0,98.0,83.0,67.0,64.0,73.0,65.0,60.0,56.0,61.0,48.0,34.0,43.0,35.0,40.0,29.0,25.0,44.0,34.0,29.0,29.0,28.0,28.0,14.0,20.0,20.0,16.0,19.0,15.0,14.0,13.0,12.0,10.0,8.0,9.0,7.0,6.0,14.0,8.0,6.0,1.0,6.0,5.0,6.0,4.0,3.0,3.0,2.0,2.0,3.0,1.0,, F84656,43.0,37.0,43.0,46.0,33.0,28.0,45.0,40.0,46.0,43.0,51.0,44.0,59.0,40.0,41.0,40.0,39.0,33.0,33.0,44.0,50.0,69.0,84.0,97.0,121.0,150.0,126.0,185.0,175.0,164.0,153.0,155.0,145.0,132.0,145.0,136.0,150.0,131.0,125.0,98.0,114.0,76.0,97.0,95.0,78.0,70.0,69.0,64.0,52.0,48.0,44.0,42.0,41.0,38.0,39.0,34.0,30.0,28.0,26.0,34.0,31.0,24.0,39.0,27.0,23.0,28.0,28.0,29.0,20.0,23.0,23.0,24.0,20.0,12.0,13.0,11.0,13.0,11.0,12.0,16.0,8.0,3.0,9.0,9.0,3.0,6.0,6.0,,3.0,3.0,1.0,2.0,3.0,3.0,, F84658,43.0,58.0,50.0,50.0,50.0,49.0,55.0,53.0,62.0,65.0,51.0,48.0,76.0,61.0,60.0,53.0,82.0,63.0,73.0,60.0,62.0,52.0,63.0,64.0,73.0,70.0,73.0,80.0,82.0,65.0,82.0,52.0,67.0,66.0,56.0,83.0,62.0,72.0,62.0,64.0,88.0,58.0,61.0,76.0,70.0,66.0,70.0,44.0,53.0,65.0,52.0,62.0,59.0,57.0,45.0,46.0,38.0,55.0,49.0,46.0,46.0,41.0,51.0,39.0,41.0,45.0,40.0,31.0,33.0,31.0,25.0,25.0,34.0,16.0,13.0,17.0,27.0,16.0,22.0,11.0,14.0,12.0,8.0,14.0,10.0,7.0,5.0,9.0,5.0,9.0,3.0,7.0,6.0,2.0,,4.0 F84660,15.0,18.0,20.0,16.0,14.0,15.0,19.0,12.0,12.0,9.0,7.0,9.0,7.0,10.0,12.0,11.0,9.0,7.0,3.0,10.0,10.0,16.0,19.0,27.0,34.0,44.0,55.0,40.0,54.0,43.0,30.0,35.0,30.0,29.0,19.0,23.0,18.0,27.0,24.0,20.0,27.0,16.0,15.0,15.0,15.0,14.0,17.0,15.0,9.0,13.0,8.0,8.0,6.0,6.0,5.0,4.0,4.0,5.0,8.0,3.0,5.0,6.0,7.0,7.0,5.0,6.0,2.0,6.0,7.0,3.0,5.0,3.0,5.0,5.0,1.0,1.0,1.0,2.0,1.0,,,,1.0,,1.0,1.0,2.0,,2.0,1.0,,,,,, F84666,23.0,20.0,26.0,38.0,38.0,41.0,20.0,39.0,43.0,39.0,33.0,37.0,36.0,35.0,34.0,32.0,32.0,38.0,30.0,27.0,22.0,42.0,42.0,41.0,57.0,67.0,81.0,78.0,73.0,90.0,70.0,64.0,76.0,76.0,65.0,60.0,77.0,90.0,61.0,62.0,50.0,52.0,39.0,44.0,47.0,29.0,40.0,28.0,30.0,34.0,35.0,26.0,28.0,40.0,30.0,24.0,20.0,30.0,28.0,36.0,24.0,30.0,24.0,21.0,19.0,24.0,12.0,11.0,22.0,19.0,12.0,10.0,10.0,10.0,8.0,8.0,5.0,6.0,3.0,5.0,3.0,3.0,6.0,3.0,3.0,2.0,2.0,1.0,2.0,,,1.0,,1.0,,1.0 F84668,45.0,50.0,45.0,46.0,69.0,57.0,65.0,66.0,70.0,56.0,59.0,51.0,56.0,54.0,64.0,55.0,47.0,66.0,57.0,62.0,38.0,46.0,47.0,47.0,47.0,50.0,39.0,42.0,37.0,44.0,40.0,37.0,26.0,41.0,24.0,45.0,32.0,35.0,49.0,44.0,31.0,41.0,44.0,33.0,39.0,35.0,31.0,31.0,25.0,32.0,28.0,27.0,27.0,14.0,18.0,33.0,21.0,27.0,21.0,16.0,21.0,12.0,23.0,18.0,19.0,19.0,24.0,16.0,15.0,8.0,19.0,6.0,9.0,5.0,7.0,10.0,8.0,7.0,5.0,2.0,3.0,4.0,4.0,2.0,3.0,5.0,2.0,2.0,2.0,2.0,3.0,,3.0,2.0,,2.0 F84669,56.0,56.0,64.0,60.0,66.0,79.0,61.0,74.0,66.0,62.0,58.0,61.0,73.0,87.0,56.0,67.0,70.0,62.0,61.0,55.0,65.0,62.0,75.0,76.0,93.0,116.0,104.0,101.0,81.0,103.0,88.0,86.0,86.0,78.0,89.0,71.0,78.0,80.0,92.0,88.0,68.0,86.0,63.0,84.0,75.0,57.0,60.0,66.0,50.0,50.0,52.0,61.0,51.0,44.0,61.0,45.0,47.0,39.0,42.0,26.0,47.0,20.0,38.0,35.0,32.0,32.0,26.0,22.0,31.0,31.0,32.0,20.0,22.0,14.0,19.0,15.0,17.0,15.0,16.0,12.0,9.0,9.0,11.0,7.0,5.0,10.0,3.0,7.0,6.0,5.0,1.0,4.0,2.0,1.0,,3.0 F84670,58.0,52.0,45.0,41.0,38.0,45.0,33.0,52.0,45.0,33.0,43.0,43.0,36.0,37.0,43.0,25.0,37.0,40.0,35.0,46.0,43.0,46.0,56.0,70.0,56.0,81.0,82.0,85.0,68.0,71.0,65.0,66.0,56.0,29.0,46.0,51.0,47.0,39.0,44.0,41.0,46.0,39.0,45.0,41.0,44.0,23.0,33.0,41.0,41.0,30.0,37.0,37.0,23.0,20.0,26.0,21.0,26.0,20.0,21.0,23.0,19.0,17.0,24.0,17.0,13.0,13.0,14.0,19.0,17.0,13.0,5.0,6.0,12.0,12.0,12.0,4.0,7.0,8.0,9.0,3.0,2.0,4.0,7.0,3.0,6.0,3.0,3.0,4.0,2.0,4.0,1.0,3.0,2.0,,1.0,2.0 F84672,49.0,63.0,46.0,46.0,32.0,48.0,33.0,35.0,40.0,36.0,31.0,40.0,43.0,38.0,37.0,44.0,36.0,44.0,39.0,42.0,44.0,58.0,54.0,66.0,84.0,74.0,81.0,85.0,83.0,91.0,94.0,103.0,88.0,91.0,81.0,80.0,80.0,70.0,88.0,69.0,63.0,67.0,48.0,49.0,37.0,35.0,39.0,43.0,45.0,38.0,27.0,43.0,41.0,39.0,32.0,45.0,37.0,37.0,39.0,32.0,38.0,31.0,40.0,28.0,32.0,34.0,22.0,29.0,18.0,18.0,16.0,9.0,22.0,14.0,17.0,11.0,7.0,6.0,10.0,9.0,9.0,7.0,9.0,7.0,6.0,6.0,5.0,5.0,9.0,2.0,3.0,4.0,2.0,1.0,1.0,6.0 F84677,41.0,41.0,51.0,36.0,46.0,39.0,44.0,45.0,42.0,48.0,54.0,47.0,46.0,53.0,40.0,47.0,46.0,44.0,42.0,34.0,52.0,42.0,64.0,59.0,67.0,76.0,84.0,59.0,61.0,64.0,64.0,53.0,52.0,56.0,56.0,52.0,63.0,55.0,53.0,52.0,61.0,54.0,55.0,52.0,46.0,55.0,41.0,41.0,39.0,46.0,41.0,40.0,40.0,40.0,37.0,29.0,31.0,34.0,40.0,30.0,36.0,33.0,38.0,26.0,37.0,39.0,32.0,39.0,27.0,29.0,23.0,24.0,23.0,19.0,20.0,19.0,9.0,19.0,10.0,10.0,8.0,7.0,6.0,6.0,10.0,6.0,8.0,9.0,8.0,5.0,5.0,4.0,4.0,1.0,3.0,5.0 F84681,58.0,57.0,65.0,53.0,54.0,51.0,50.0,58.0,34.0,50.0,47.0,52.0,57.0,44.0,57.0,51.0,46.0,63.0,60.0,48.0,66.0,69.0,78.0,96.0,120.0,129.0,130.0,139.0,144.0,126.0,105.0,105.0,108.0,78.0,91.0,84.0,78.0,94.0,78.0,75.0,61.0,49.0,52.0,61.0,52.0,49.0,48.0,59.0,63.0,45.0,56.0,51.0,50.0,39.0,56.0,46.0,54.0,53.0,38.0,35.0,38.0,43.0,37.0,26.0,34.0,27.0,27.0,22.0,21.0,23.0,20.0,15.0,12.0,13.0,19.0,10.0,11.0,10.0,5.0,6.0,8.0,9.0,4.0,6.0,10.0,10.0,3.0,5.0,3.0,,6.0,3.0,2.0,1.0,1.0,5.0 F84686,137.0,147.0,141.0,145.0,144.0,120.0,143.0,125.0,132.0,148.0,118.0,112.0,102.0,113.0,106.0,103.0,95.0,90.0,77.0,86.0,77.0,85.0,76.0,78.0,61.0,71.0,68.0,66.0,69.0,66.0,58.0,64.0,69.0,49.0,44.0,49.0,49.0,46.0,46.0,39.0,44.0,37.0,27.0,30.0,38.0,20.0,25.0,26.0,28.0,17.0,38.0,22.0,12.0,24.0,18.0,17.0,19.0,21.0,15.0,21.0,12.0,12.0,19.0,9.0,12.0,19.0,12.0,11.0,11.0,14.0,13.0,16.0,9.0,10.0,7.0,11.0,10.0,6.0,6.0,7.0,2.0,3.0,3.0,1.0,4.0,2.0,4.0,4.0,1.0,1.0,3.0,,1.0,1.0,,3.0 F84692,25.0,25.0,28.0,15.0,27.0,23.0,30.0,31.0,28.0,36.0,23.0,31.0,31.0,33.0,22.0,46.0,37.0,34.0,50.0,66.0,70.0,76.0,101.0,123.0,186.0,202.0,235.0,188.0,157.0,172.0,153.0,143.0,126.0,121.0,120.0,110.0,61.0,88.0,78.0,55.0,63.0,59.0,63.0,46.0,46.0,52.0,46.0,28.0,38.0,40.0,35.0,48.0,46.0,40.0,32.0,37.0,28.0,40.0,29.0,24.0,33.0,31.0,28.0,20.0,25.0,27.0,17.0,24.0,19.0,20.0,18.0,12.0,6.0,6.0,6.0,16.0,11.0,12.0,6.0,11.0,8.0,6.0,7.0,7.0,1.0,5.0,4.0,5.0,2.0,3.0,2.0,2.0,1.0,1.0,,1.0 F84694,26.0,18.0,30.0,24.0,22.0,20.0,22.0,11.0,22.0,12.0,16.0,18.0,16.0,13.0,14.0,10.0,9.0,5.0,16.0,13.0,17.0,11.0,15.0,31.0,45.0,39.0,66.0,80.0,110.0,98.0,91.0,96.0,109.0,97.0,93.0,103.0,100.0,69.0,70.0,59.0,56.0,46.0,48.0,41.0,26.0,28.0,29.0,21.0,18.0,20.0,16.0,19.0,13.0,14.0,14.0,21.0,17.0,16.0,12.0,17.0,9.0,9.0,15.0,14.0,8.0,10.0,9.0,8.0,14.0,3.0,8.0,3.0,7.0,9.0,10.0,5.0,4.0,2.0,2.0,3.0,2.0,7.0,,2.0,1.0,5.0,4.0,1.0,2.0,1.0,1.0,,,,, F84696,33.0,34.0,23.0,33.0,21.0,23.0,33.0,20.0,33.0,21.0,21.0,14.0,22.0,19.0,20.0,11.0,20.0,18.0,28.0,16.0,12.0,20.0,42.0,41.0,45.0,54.0,89.0,90.0,78.0,90.0,104.0,98.0,117.0,97.0,107.0,84.0,98.0,84.0,81.0,79.0,67.0,58.0,64.0,55.0,47.0,47.0,31.0,39.0,34.0,29.0,27.0,28.0,33.0,30.0,23.0,19.0,21.0,31.0,20.0,22.0,23.0,24.0,8.0,27.0,18.0,19.0,14.0,16.0,17.0,24.0,16.0,13.0,15.0,12.0,10.0,14.0,13.0,7.0,5.0,11.0,12.0,7.0,5.0,2.0,9.0,4.0,2.0,2.0,3.0,2.0,2.0,2.0,2.0,1.0,,2.0 F84698,92.0,67.0,67.0,67.0,65.0,72.0,60.0,62.0,86.0,68.0,62.0,52.0,54.0,65.0,71.0,61.0,61.0,49.0,62.0,76.0,93.0,90.0,140.0,169.0,228.0,273.0,219.0,263.0,282.0,268.0,226.0,234.0,245.0,221.0,193.0,176.0,141.0,147.0,127.0,122.0,100.0,81.0,88.0,74.0,75.0,77.0,46.0,61.0,61.0,51.0,46.0,51.0,47.0,38.0,39.0,33.0,29.0,42.0,37.0,29.0,36.0,31.0,29.0,23.0,25.0,18.0,14.0,8.0,20.0,14.0,15.0,10.0,13.0,7.0,12.0,5.0,3.0,7.0,6.0,5.0,4.0,4.0,3.0,4.0,5.0,1.0,3.0,2.0,3.0,2.0,1.0,2.0,1.0,,1.0,1.0 F84710,40.0,46.0,36.0,61.0,58.0,48.0,56.0,54.0,68.0,51.0,61.0,56.0,67.0,49.0,65.0,65.0,78.0,64.0,62.0,74.0,85.0,105.0,119.0,134.0,197.0,177.0,219.0,222.0,202.0,210.0,178.0,155.0,156.0,163.0,164.0,139.0,144.0,122.0,99.0,110.0,103.0,94.0,94.0,91.0,93.0,91.0,77.0,82.0,76.0,67.0,71.0,67.0,52.0,60.0,62.0,58.0,67.0,65.0,60.0,43.0,62.0,53.0,44.0,44.0,44.0,32.0,33.0,41.0,30.0,34.0,32.0,24.0,27.0,27.0,20.0,29.0,20.0,23.0,16.0,23.0,11.0,12.0,7.0,8.0,18.0,11.0,9.0,10.0,5.0,4.0,5.0,2.0,4.0,2.0,,4.0 F84716,34.0,49.0,43.0,51.0,43.0,38.0,39.0,32.0,38.0,42.0,44.0,35.0,53.0,36.0,38.0,35.0,31.0,36.0,39.0,41.0,28.0,34.0,24.0,34.0,44.0,55.0,57.0,53.0,64.0,71.0,60.0,66.0,58.0,73.0,81.0,64.0,71.0,47.0,42.0,46.0,42.0,53.0,42.0,30.0,26.0,29.0,28.0,31.0,35.0,27.0,17.0,16.0,19.0,27.0,22.0,18.0,29.0,14.0,23.0,25.0,15.0,13.0,14.0,16.0,9.0,15.0,8.0,9.0,15.0,11.0,8.0,14.0,13.0,12.0,9.0,9.0,9.0,13.0,7.0,5.0,6.0,10.0,7.0,7.0,3.0,3.0,6.0,,4.0,5.0,3.0,3.0,2.0,4.0,1.0,7.0 F84717,35.0,63.0,64.0,69.0,73.0,61.0,66.0,65.0,74.0,77.0,61.0,66.0,69.0,62.0,54.0,58.0,60.0,66.0,75.0,76.0,100.0,122.0,120.0,139.0,102.0,130.0,132.0,136.0,158.0,138.0,151.0,150.0,147.0,151.0,158.0,136.0,154.0,138.0,112.0,149.0,110.0,93.0,89.0,104.0,91.0,82.0,82.0,70.0,68.0,56.0,53.0,42.0,47.0,42.0,61.0,54.0,54.0,52.0,59.0,50.0,65.0,37.0,42.0,41.0,42.0,36.0,32.0,34.0,35.0,31.0,25.0,21.0,20.0,28.0,13.0,23.0,12.0,14.0,19.0,9.0,9.0,11.0,7.0,3.0,4.0,6.0,2.0,7.0,2.0,2.0,5.0,2.0,3.0,,,1.0 F84718,65.0,69.0,53.0,67.0,72.0,72.0,61.0,67.0,70.0,62.0,58.0,58.0,84.0,75.0,64.0,51.0,66.0,62.0,68.0,50.0,71.0,79.0,96.0,121.0,141.0,165.0,179.0,200.0,192.0,180.0,179.0,183.0,147.0,168.0,133.0,153.0,143.0,119.0,102.0,106.0,110.0,106.0,93.0,89.0,91.0,73.0,54.0,70.0,76.0,58.0,63.0,53.0,44.0,55.0,53.0,47.0,49.0,48.0,40.0,37.0,39.0,38.0,28.0,26.0,28.0,28.0,25.0,34.0,31.0,17.0,20.0,20.0,31.0,20.0,11.0,27.0,6.0,10.0,11.0,11.0,10.0,7.0,8.0,6.0,4.0,6.0,7.0,2.0,1.0,5.0,4.0,,2.0,2.0,1.0,4.0 F84719,17.0,16.0,19.0,18.0,19.0,13.0,20.0,30.0,18.0,24.0,23.0,28.0,20.0,18.0,31.0,31.0,25.0,24.0,26.0,29.0,28.0,31.0,32.0,40.0,41.0,55.0,51.0,50.0,74.0,61.0,66.0,68.0,76.0,49.0,54.0,60.0,70.0,49.0,51.0,47.0,35.0,35.0,38.0,40.0,39.0,33.0,35.0,26.0,40.0,24.0,27.0,28.0,25.0,18.0,24.0,21.0,24.0,32.0,21.0,36.0,28.0,17.0,24.0,19.0,27.0,23.0,23.0,15.0,18.0,13.0,11.0,14.0,17.0,11.0,12.0,8.0,9.0,4.0,6.0,12.0,6.0,10.0,2.0,7.0,7.0,4.0,3.0,5.0,7.0,5.0,3.0,4.0,1.0,2.0,2.0,7.0 F84720,21.0,24.0,31.0,33.0,27.0,27.0,29.0,35.0,46.0,36.0,39.0,41.0,46.0,30.0,48.0,38.0,38.0,39.0,35.0,35.0,31.0,26.0,30.0,27.0,24.0,36.0,35.0,40.0,37.0,58.0,35.0,33.0,43.0,45.0,37.0,49.0,36.0,38.0,28.0,43.0,48.0,41.0,37.0,31.0,29.0,26.0,40.0,31.0,27.0,34.0,30.0,29.0,25.0,31.0,26.0,31.0,22.0,29.0,32.0,34.0,40.0,33.0,33.0,26.0,27.0,30.0,25.0,22.0,24.0,19.0,12.0,19.0,16.0,10.0,14.0,15.0,18.0,13.0,18.0,13.0,9.0,7.0,11.0,6.0,9.0,6.0,6.0,7.0,4.0,3.0,3.0,1.0,2.0,,,3.0 F84724,113.0,117.0,114.0,111.0,115.0,125.0,109.0,124.0,110.0,104.0,90.0,106.0,108.0,110.0,96.0,91.0,100.0,105.0,98.0,93.0,90.0,99.0,98.0,146.0,146.0,158.0,161.0,156.0,160.0,146.0,148.0,152.0,152.0,142.0,166.0,170.0,166.0,165.0,179.0,160.0,164.0,173.0,141.0,141.0,142.0,127.0,114.0,94.0,106.0,93.0,102.0,88.0,74.0,82.0,73.0,80.0,72.0,61.0,73.0,69.0,63.0,63.0,62.0,58.0,51.0,46.0,44.0,49.0,42.0,52.0,31.0,38.0,23.0,29.0,11.0,26.0,22.0,28.0,15.0,12.0,12.0,10.0,10.0,10.0,5.0,7.0,10.0,3.0,5.0,5.0,4.0,4.0,3.0,,2.0,3.0 F84729,29.0,27.0,33.0,23.0,30.0,28.0,32.0,30.0,25.0,35.0,34.0,35.0,32.0,35.0,34.0,46.0,39.0,38.0,47.0,36.0,40.0,45.0,34.0,49.0,41.0,43.0,33.0,38.0,41.0,31.0,35.0,31.0,32.0,27.0,29.0,27.0,40.0,34.0,29.0,22.0,42.0,48.0,35.0,39.0,37.0,34.0,29.0,34.0,37.0,26.0,27.0,13.0,24.0,21.0,20.0,20.0,22.0,23.0,13.0,13.0,22.0,14.0,12.0,13.0,14.0,12.0,7.0,10.0,9.0,7.0,8.0,9.0,7.0,7.0,11.0,8.0,9.0,4.0,7.0,5.0,5.0,4.0,4.0,1.0,6.0,1.0,4.0,2.0,1.0,3.0,,,1.0,,2.0,1.0 F84730,39.0,46.0,39.0,57.0,36.0,24.0,50.0,45.0,29.0,51.0,52.0,59.0,64.0,61.0,48.0,56.0,46.0,41.0,52.0,49.0,57.0,46.0,72.0,58.0,84.0,78.0,92.0,92.0,96.0,97.0,81.0,83.0,94.0,102.0,102.0,99.0,91.0,80.0,113.0,92.0,76.0,66.0,60.0,75.0,78.0,72.0,54.0,71.0,55.0,84.0,68.0,67.0,53.0,56.0,42.0,44.0,53.0,49.0,54.0,55.0,43.0,45.0,53.0,34.0,34.0,31.0,31.0,17.0,25.0,29.0,27.0,21.0,14.0,16.0,15.0,15.0,8.0,11.0,12.0,13.0,4.0,5.0,6.0,7.0,4.0,6.0,,5.0,4.0,3.0,1.0,1.0,,2.0,1.0,3.0 F84731,9.0,6.0,5.0,6.0,5.0,9.0,7.0,7.0,5.0,4.0,5.0,9.0,3.0,4.0,3.0,5.0,3.0,4.0,6.0,9.0,4.0,12.0,11.0,13.0,13.0,20.0,21.0,23.0,22.0,28.0,27.0,33.0,30.0,33.0,32.0,29.0,26.0,20.0,25.0,18.0,26.0,24.0,20.0,13.0,14.0,19.0,16.0,14.0,15.0,19.0,18.0,14.0,8.0,7.0,10.0,8.0,12.0,10.0,8.0,9.0,11.0,10.0,8.0,6.0,9.0,13.0,14.0,10.0,15.0,12.0,5.0,11.0,10.0,4.0,8.0,15.0,1.0,7.0,4.0,,7.0,3.0,1.0,3.0,2.0,2.0,3.0,3.0,1.0,2.0,,1.0,3.0,1.0,, F84733,,,,,,,,,,,,,,,,,,,,,2.0,2.0,,3.0,1.0,5.0,3.0,3.0,4.0,5.0,3.0,5.0,1.0,3.0,4.0,6.0,2.0,2.0,1.0,4.0,8.0,4.0,7.0,3.0,6.0,9.0,6.0,8.0,3.0,3.0,3.0,4.0,1.0,2.0,3.0,3.0,2.0,2.0,1.0,3.0,2.0,,,2.0,3.0,1.0,,3.0,,,,,1.0,,,,1.0,,,,,,,,,,,,,,,,,,, F84735,31.0,37.0,31.0,57.0,41.0,50.0,58.0,64.0,52.0,53.0,66.0,74.0,59.0,67.0,60.0,73.0,54.0,75.0,61.0,69.0,63.0,44.0,65.0,64.0,74.0,49.0,64.0,67.0,61.0,69.0,56.0,70.0,55.0,65.0,50.0,71.0,68.0,61.0,74.0,70.0,65.0,76.0,69.0,73.0,65.0,62.0,70.0,58.0,62.0,76.0,60.0,54.0,58.0,51.0,43.0,63.0,39.0,47.0,23.0,30.0,37.0,31.0,27.0,35.0,24.0,29.0,32.0,20.0,15.0,18.0,25.0,13.0,19.0,20.0,14.0,19.0,14.0,15.0,14.0,11.0,10.0,14.0,9.0,11.0,6.0,9.0,6.0,2.0,4.0,1.0,3.0,4.0,2.0,2.0,2.0, F84739,26.0,26.0,27.0,25.0,26.0,27.0,22.0,29.0,34.0,23.0,32.0,38.0,42.0,34.0,32.0,44.0,29.0,43.0,39.0,37.0,28.0,38.0,43.0,53.0,42.0,41.0,40.0,46.0,47.0,50.0,31.0,35.0,33.0,29.0,38.0,33.0,39.0,19.0,35.0,32.0,41.0,33.0,31.0,39.0,46.0,37.0,43.0,29.0,43.0,37.0,33.0,26.0,23.0,27.0,28.0,23.0,23.0,23.0,18.0,16.0,14.0,21.0,15.0,11.0,14.0,8.0,3.0,8.0,7.0,4.0,7.0,3.0,6.0,3.0,9.0,2.0,2.0,6.0,2.0,1.0,,,3.0,,,,,3.0,3.0,2.0,1.0,,,,2.0,2.0 F84740,10.0,17.0,10.0,16.0,15.0,16.0,17.0,22.0,19.0,17.0,22.0,28.0,24.0,27.0,22.0,21.0,21.0,16.0,25.0,11.0,22.0,16.0,26.0,21.0,34.0,22.0,36.0,38.0,33.0,35.0,24.0,31.0,23.0,34.0,33.0,28.0,27.0,19.0,31.0,27.0,29.0,24.0,28.0,26.0,26.0,25.0,33.0,27.0,21.0,28.0,25.0,18.0,24.0,27.0,20.0,22.0,18.0,17.0,16.0,12.0,18.0,20.0,9.0,9.0,19.0,16.0,11.0,9.0,11.0,11.0,10.0,5.0,6.0,6.0,3.0,4.0,6.0,2.0,2.0,2.0,4.0,1.0,1.0,1.0,2.0,,1.0,4.0,1.0,1.0,,,1.0,,, F84741,9.0,6.0,18.0,14.0,12.0,8.0,7.0,10.0,10.0,10.0,8.0,9.0,8.0,10.0,15.0,16.0,7.0,12.0,11.0,11.0,9.0,13.0,15.0,14.0,18.0,27.0,19.0,18.0,24.0,15.0,19.0,13.0,15.0,17.0,19.0,16.0,10.0,17.0,18.0,11.0,14.0,14.0,18.0,15.0,17.0,16.0,10.0,11.0,7.0,8.0,12.0,9.0,10.0,11.0,13.0,6.0,14.0,7.0,11.0,12.0,6.0,13.0,10.0,7.0,13.0,7.0,6.0,7.0,11.0,5.0,7.0,5.0,5.0,3.0,8.0,4.0,3.0,4.0,4.0,4.0,2.0,2.0,10.0,5.0,3.0,5.0,5.0,1.0,1.0,2.0,1.0,1.0,1.0,2.0,,4.0 F84747,141.0,146.0,144.0,150.0,128.0,125.0,115.0,131.0,135.0,124.0,137.0,125.0,149.0,145.0,132.0,138.0,132.0,124.0,125.0,138.0,134.0,158.0,204.0,246.0,302.0,367.0,408.0,365.0,382.0,379.0,346.0,334.0,365.0,368.0,331.0,317.0,323.0,294.0,272.0,260.0,257.0,234.0,231.0,221.0,222.0,195.0,171.0,160.0,149.0,122.0,129.0,143.0,92.0,108.0,95.0,105.0,109.0,76.0,89.0,73.0,91.0,73.0,63.0,57.0,69.0,60.0,61.0,48.0,49.0,46.0,38.0,34.0,25.0,33.0,28.0,31.0,18.0,25.0,20.0,8.0,12.0,13.0,11.0,12.0,12.0,10.0,6.0,5.0,4.0,5.0,5.0,1.0,2.0,,2.0,3.0 F84749,133.0,113.0,139.0,138.0,115.0,122.0,122.0,129.0,119.0,118.0,116.0,105.0,99.0,119.0,105.0,127.0,100.0,101.0,110.0,111.0,120.0,149.0,265.0,289.0,439.0,439.0,433.0,454.0,438.0,399.0,376.0,358.0,316.0,311.0,291.0,257.0,248.0,251.0,167.0,188.0,207.0,164.0,148.0,155.0,152.0,135.0,124.0,115.0,113.0,82.0,81.0,109.0,74.0,79.0,83.0,81.0,80.0,55.0,59.0,56.0,68.0,61.0,43.0,57.0,42.0,49.0,32.0,37.0,39.0,21.0,29.0,26.0,21.0,24.0,9.0,23.0,15.0,17.0,5.0,8.0,15.0,15.0,10.0,7.0,6.0,11.0,2.0,4.0,4.0,4.0,5.0,4.0,,,2.0,1.0 F86001,84.0,76.0,52.0,41.0,44.0,49.0,27.0,57.0,61.0,63.0,57.0,53.0,46.0,57.0,46.0,54.0,44.0,45.0,49.0,58.0,58.0,63.0,85.0,108.0,98.0,123.0,129.0,137.0,148.0,177.0,171.0,156.0,186.0,166.0,160.0,162.0,140.0,121.0,132.0,122.0,99.0,114.0,91.0,96.0,94.0,77.0,77.0,74.0,60.0,55.0,74.0,65.0,65.0,62.0,53.0,48.0,63.0,58.0,65.0,57.0,70.0,76.0,45.0,45.0,44.0,34.0,48.0,40.0,43.0,36.0,34.0,33.0,24.0,28.0,26.0,18.0,24.0,31.0,27.0,19.0,12.0,17.0,15.0,14.0,9.0,9.0,7.0,11.0,5.0,3.0,4.0,2.0,3.0,7.0,1.0,3.0 F86004,92.0,86.0,74.0,84.0,122.0,92.0,117.0,87.0,114.0,89.0,108.0,91.0,88.0,104.0,83.0,91.0,94.0,86.0,74.0,64.0,62.0,70.0,72.0,85.0,87.0,81.0,70.0,76.0,93.0,103.0,108.0,98.0,111.0,117.0,133.0,106.0,119.0,132.0,151.0,123.0,138.0,128.0,150.0,146.0,146.0,118.0,101.0,113.0,98.0,110.0,102.0,112.0,112.0,113.0,114.0,107.0,130.0,124.0,127.0,109.0,110.0,95.0,107.0,96.0,90.0,81.0,101.0,75.0,71.0,61.0,55.0,62.0,60.0,55.0,62.0,52.0,64.0,57.0,55.0,45.0,54.0,49.0,49.0,31.0,22.0,27.0,26.0,21.0,22.0,15.0,13.0,10.0,11.0,9.0,5.0,16.0 F86005,39.0,47.0,63.0,56.0,55.0,61.0,78.0,80.0,58.0,56.0,44.0,56.0,44.0,52.0,50.0,52.0,40.0,42.0,48.0,35.0,32.0,36.0,40.0,30.0,44.0,54.0,51.0,63.0,73.0,61.0,73.0,81.0,102.0,101.0,91.0,74.0,102.0,95.0,120.0,82.0,102.0,88.0,92.0,98.0,85.0,75.0,73.0,67.0,67.0,42.0,62.0,52.0,46.0,51.0,39.0,52.0,44.0,39.0,36.0,39.0,42.0,35.0,41.0,36.0,27.0,34.0,36.0,25.0,21.0,16.0,34.0,18.0,18.0,14.0,11.0,13.0,18.0,13.0,21.0,18.0,13.0,19.0,13.0,14.0,7.0,8.0,7.0,2.0,4.0,5.0,3.0,2.0,1.0,1.0,3.0,4.0 F86006,19.0,28.0,35.0,35.0,38.0,37.0,24.0,35.0,23.0,42.0,43.0,48.0,43.0,36.0,49.0,38.0,45.0,47.0,39.0,34.0,39.0,25.0,31.0,39.0,36.0,46.0,43.0,64.0,52.0,57.0,61.0,72.0,71.0,59.0,56.0,64.0,69.0,62.0,75.0,76.0,58.0,51.0,63.0,57.0,42.0,44.0,65.0,49.0,48.0,46.0,49.0,47.0,54.0,51.0,47.0,51.0,53.0,41.0,48.0,43.0,36.0,33.0,32.0,34.0,21.0,28.0,31.0,25.0,24.0,13.0,21.0,18.0,18.0,14.0,14.0,18.0,9.0,11.0,13.0,16.0,10.0,15.0,8.0,12.0,9.0,7.0,10.0,6.0,7.0,4.0,4.0,2.0,5.0,1.0,1.0,4.0 F86007,54.0,70.0,79.0,97.0,80.0,101.0,87.0,102.0,81.0,87.0,108.0,83.0,97.0,90.0,85.0,98.0,91.0,78.0,84.0,62.0,67.0,57.0,58.0,71.0,57.0,78.0,84.0,95.0,121.0,107.0,109.0,116.0,100.0,116.0,111.0,121.0,132.0,109.0,125.0,135.0,137.0,138.0,126.0,93.0,119.0,127.0,105.0,85.0,96.0,76.0,99.0,78.0,81.0,74.0,77.0,98.0,74.0,92.0,66.0,73.0,90.0,70.0,77.0,70.0,77.0,63.0,56.0,68.0,57.0,62.0,64.0,36.0,58.0,38.0,45.0,52.0,42.0,44.0,42.0,40.0,23.0,31.0,30.0,29.0,19.0,23.0,21.0,12.0,14.0,11.0,11.0,11.0,5.0,9.0,4.0,24.0 F86008,87.0,93.0,83.0,69.0,87.0,76.0,94.0,89.0,89.0,87.0,99.0,97.0,93.0,101.0,99.0,77.0,103.0,98.0,99.0,91.0,77.0,101.0,105.0,132.0,138.0,139.0,148.0,157.0,158.0,155.0,146.0,136.0,136.0,143.0,126.0,165.0,118.0,147.0,123.0,129.0,128.0,109.0,99.0,114.0,114.0,114.0,109.0,118.0,87.0,83.0,88.0,85.0,76.0,78.0,74.0,63.0,89.0,60.0,57.0,59.0,64.0,58.0,47.0,54.0,51.0,49.0,45.0,58.0,52.0,47.0,44.0,43.0,51.0,33.0,42.0,52.0,40.0,39.0,39.0,29.0,28.0,19.0,26.0,19.0,26.0,22.0,16.0,18.0,16.0,18.0,19.0,20.0,8.0,12.0,10.0,22.0 F86009,33.0,21.0,19.0,19.0,26.0,28.0,32.0,27.0,42.0,30.0,32.0,40.0,36.0,27.0,52.0,43.0,44.0,38.0,29.0,45.0,41.0,46.0,58.0,36.0,57.0,48.0,61.0,70.0,64.0,37.0,48.0,52.0,47.0,49.0,41.0,53.0,47.0,45.0,43.0,59.0,56.0,36.0,42.0,40.0,49.0,50.0,57.0,50.0,46.0,35.0,52.0,40.0,41.0,51.0,52.0,47.0,52.0,40.0,54.0,38.0,54.0,47.0,37.0,50.0,39.0,35.0,40.0,41.0,33.0,34.0,35.0,42.0,30.0,39.0,25.0,26.0,29.0,37.0,33.0,17.0,18.0,28.0,13.0,13.0,17.0,15.0,16.0,7.0,7.0,10.0,8.0,4.0,8.0,7.0,3.0,9.0 F86010,85.0,71.0,78.0,80.0,87.0,85.0,88.0,95.0,86.0,86.0,97.0,114.0,105.0,97.0,99.0,101.0,95.0,105.0,93.0,93.0,94.0,84.0,85.0,91.0,121.0,137.0,128.0,151.0,155.0,151.0,134.0,119.0,125.0,149.0,143.0,135.0,144.0,143.0,135.0,129.0,136.0,145.0,126.0,105.0,132.0,90.0,111.0,99.0,108.0,91.0,92.0,97.0,93.0,96.0,93.0,108.0,94.0,91.0,101.0,77.0,77.0,73.0,89.0,88.0,74.0,68.0,55.0,67.0,61.0,62.0,56.0,56.0,51.0,55.0,62.0,40.0,52.0,54.0,58.0,28.0,48.0,34.0,30.0,26.0,25.0,36.0,23.0,36.0,23.0,13.0,15.0,14.0,14.0,9.0,5.0,21.0 F86011,37.0,44.0,39.0,35.0,39.0,37.0,34.0,60.0,43.0,51.0,46.0,74.0,55.0,59.0,47.0,50.0,62.0,51.0,57.0,55.0,56.0,56.0,48.0,68.0,55.0,68.0,71.0,71.0,64.0,70.0,69.0,72.0,63.0,72.0,62.0,61.0,67.0,76.0,64.0,69.0,58.0,56.0,66.0,59.0,46.0,63.0,62.0,70.0,47.0,58.0,66.0,57.0,54.0,48.0,62.0,55.0,52.0,63.0,62.0,43.0,39.0,56.0,47.0,40.0,42.0,36.0,40.0,31.0,35.0,33.0,27.0,21.0,29.0,17.0,23.0,19.0,16.0,16.0,16.0,16.0,14.0,20.0,20.0,12.0,12.0,15.0,12.0,17.0,6.0,9.0,6.0,5.0,6.0,4.0,6.0,11.0 F86012,36.0,27.0,37.0,36.0,42.0,27.0,34.0,32.0,34.0,56.0,50.0,41.0,58.0,52.0,71.0,46.0,56.0,63.0,48.0,40.0,41.0,47.0,44.0,50.0,63.0,58.0,59.0,69.0,50.0,62.0,47.0,65.0,46.0,51.0,56.0,58.0,51.0,43.0,51.0,51.0,48.0,49.0,65.0,71.0,67.0,69.0,62.0,61.0,55.0,76.0,61.0,74.0,55.0,74.0,73.0,62.0,88.0,86.0,83.0,80.0,91.0,64.0,62.0,53.0,78.0,50.0,76.0,47.0,51.0,36.0,46.0,60.0,48.0,60.0,55.0,45.0,59.0,68.0,59.0,31.0,40.0,43.0,43.0,29.0,28.0,20.0,36.0,24.0,27.0,27.0,14.0,15.0,10.0,8.0,7.0,25.0 F86013,26.0,23.0,29.0,33.0,34.0,30.0,43.0,34.0,36.0,30.0,37.0,38.0,49.0,48.0,33.0,39.0,34.0,36.0,43.0,31.0,36.0,22.0,30.0,28.0,40.0,36.0,31.0,48.0,36.0,40.0,38.0,35.0,39.0,36.0,36.0,51.0,39.0,39.0,48.0,56.0,43.0,47.0,65.0,49.0,52.0,66.0,56.0,58.0,46.0,47.0,43.0,40.0,52.0,44.0,36.0,53.0,35.0,44.0,38.0,43.0,32.0,31.0,32.0,27.0,34.0,25.0,27.0,25.0,30.0,26.0,24.0,21.0,20.0,20.0,25.0,24.0,21.0,20.0,20.0,14.0,17.0,20.0,15.0,12.0,5.0,6.0,6.0,13.0,10.0,8.0,4.0,5.0,4.0,5.0,3.0,10.0 F86018,47.0,36.0,48.0,54.0,38.0,59.0,49.0,57.0,63.0,57.0,56.0,64.0,67.0,72.0,71.0,73.0,74.0,71.0,56.0,61.0,54.0,62.0,64.0,50.0,55.0,58.0,85.0,73.0,69.0,67.0,86.0,76.0,80.0,74.0,75.0,103.0,75.0,91.0,74.0,79.0,85.0,74.0,74.0,77.0,91.0,76.0,72.0,84.0,74.0,61.0,73.0,71.0,73.0,70.0,62.0,71.0,56.0,63.0,56.0,80.0,73.0,59.0,50.0,54.0,47.0,36.0,37.0,41.0,50.0,27.0,49.0,32.0,40.0,28.0,25.0,40.0,27.0,33.0,33.0,20.0,26.0,19.0,16.0,14.0,23.0,19.0,13.0,17.0,8.0,12.0,15.0,9.0,3.0,,1.0,12.0 F86020,36.0,47.0,40.0,35.0,24.0,37.0,32.0,37.0,33.0,31.0,35.0,43.0,27.0,35.0,24.0,31.0,24.0,30.0,19.0,28.0,32.0,29.0,19.0,28.0,33.0,40.0,49.0,44.0,54.0,50.0,64.0,64.0,40.0,66.0,65.0,71.0,68.0,61.0,53.0,52.0,55.0,61.0,72.0,54.0,62.0,59.0,43.0,49.0,40.0,31.0,42.0,32.0,32.0,28.0,39.0,33.0,30.0,44.0,45.0,31.0,39.0,34.0,35.0,31.0,44.0,30.0,31.0,32.0,35.0,26.0,32.0,29.0,23.0,25.0,27.0,27.0,28.0,23.0,27.0,26.0,20.0,26.0,15.0,11.0,11.0,14.0,20.0,12.0,10.0,10.0,5.0,11.0,6.0,3.0,7.0,17.0 F86022,83.0,87.0,68.0,89.0,73.0,82.0,82.0,99.0,95.0,91.0,104.0,100.0,110.0,108.0,86.0,103.0,114.0,84.0,89.0,111.0,100.0,95.0,116.0,123.0,134.0,128.0,149.0,134.0,144.0,127.0,114.0,108.0,134.0,118.0,128.0,137.0,125.0,115.0,135.0,136.0,121.0,121.0,123.0,114.0,111.0,100.0,97.0,81.0,79.0,74.0,63.0,73.0,70.0,77.0,64.0,76.0,55.0,61.0,49.0,39.0,65.0,66.0,49.0,42.0,56.0,49.0,52.0,61.0,57.0,42.0,41.0,41.0,33.0,27.0,43.0,39.0,31.0,33.0,37.0,30.0,16.0,26.0,22.0,11.0,17.0,14.0,10.0,19.0,8.0,5.0,6.0,9.0,8.0,2.0,4.0,3.0 F86023,52.0,63.0,68.0,51.0,55.0,58.0,64.0,46.0,43.0,59.0,52.0,50.0,41.0,45.0,58.0,51.0,59.0,50.0,64.0,31.0,32.0,32.0,43.0,59.0,54.0,67.0,87.0,87.0,91.0,98.0,96.0,97.0,117.0,88.0,94.0,92.0,105.0,97.0,92.0,101.0,83.0,80.0,100.0,99.0,82.0,81.0,74.0,92.0,43.0,77.0,72.0,70.0,52.0,61.0,65.0,61.0,61.0,66.0,71.0,54.0,65.0,62.0,47.0,46.0,50.0,45.0,34.0,51.0,45.0,28.0,44.0,39.0,33.0,37.0,33.0,35.0,47.0,44.0,43.0,30.0,35.0,26.0,25.0,22.0,26.0,24.0,27.0,19.0,23.0,24.0,13.0,14.0,11.0,7.0,9.0,27.0 F86025,105.0,101.0,123.0,125.0,124.0,109.0,124.0,129.0,132.0,126.0,119.0,141.0,149.0,131.0,130.0,129.0,123.0,119.0,121.0,109.0,112.0,134.0,128.0,145.0,183.0,194.0,178.0,202.0,183.0,191.0,176.0,172.0,161.0,151.0,144.0,163.0,186.0,120.0,133.0,161.0,139.0,142.0,125.0,142.0,149.0,131.0,121.0,114.0,93.0,93.0,102.0,73.0,84.0,68.0,70.0,82.0,66.0,84.0,75.0,71.0,72.0,71.0,58.0,56.0,48.0,51.0,50.0,61.0,53.0,53.0,35.0,39.0,39.0,39.0,42.0,37.0,33.0,35.0,31.0,21.0,25.0,21.0,19.0,16.0,13.0,12.0,17.0,14.0,6.0,8.0,6.0,10.0,5.0,8.0,6.0,13.0 F86026,23.0,33.0,31.0,45.0,33.0,33.0,46.0,45.0,39.0,40.0,34.0,39.0,48.0,48.0,41.0,54.0,44.0,36.0,45.0,43.0,39.0,53.0,39.0,49.0,37.0,43.0,34.0,43.0,54.0,36.0,41.0,41.0,45.0,48.0,67.0,63.0,72.0,67.0,64.0,60.0,57.0,52.0,58.0,43.0,69.0,51.0,47.0,58.0,37.0,53.0,32.0,39.0,36.0,39.0,41.0,45.0,51.0,42.0,20.0,44.0,45.0,39.0,47.0,50.0,36.0,41.0,22.0,34.0,26.0,24.0,24.0,23.0,19.0,19.0,21.0,21.0,19.0,21.0,17.0,18.0,8.0,10.0,11.0,11.0,13.0,6.0,6.0,5.0,6.0,7.0,3.0,4.0,2.0,4.0,1.0,5.0 F86028,55.0,71.0,72.0,72.0,69.0,77.0,79.0,88.0,78.0,91.0,71.0,95.0,88.0,97.0,104.0,82.0,89.0,74.0,83.0,48.0,81.0,71.0,68.0,91.0,89.0,70.0,88.0,94.0,88.0,84.0,85.0,83.0,93.0,79.0,80.0,86.0,106.0,77.0,82.0,99.0,93.0,99.0,104.0,104.0,89.0,91.0,95.0,70.0,85.0,86.0,57.0,79.0,69.0,50.0,66.0,54.0,68.0,62.0,45.0,64.0,53.0,40.0,46.0,55.0,36.0,41.0,34.0,30.0,30.0,33.0,39.0,40.0,33.0,33.0,16.0,18.0,23.0,22.0,15.0,13.0,22.0,25.0,17.0,15.0,10.0,15.0,17.0,13.0,10.0,14.0,9.0,12.0,12.0,8.0,6.0,15.0 F86030,59.0,54.0,49.0,46.0,54.0,53.0,43.0,49.0,49.0,51.0,46.0,49.0,40.0,52.0,45.0,46.0,49.0,52.0,49.0,49.0,54.0,55.0,49.0,44.0,54.0,63.0,50.0,75.0,50.0,59.0,85.0,71.0,72.0,72.0,65.0,91.0,68.0,88.0,92.0,76.0,58.0,70.0,65.0,56.0,65.0,70.0,50.0,47.0,54.0,55.0,55.0,36.0,47.0,43.0,39.0,41.0,24.0,31.0,38.0,26.0,23.0,28.0,29.0,28.0,15.0,22.0,19.0,15.0,19.0,19.0,17.0,16.0,18.0,20.0,14.0,12.0,12.0,11.0,12.0,9.0,5.0,11.0,12.0,6.0,8.0,5.0,3.0,2.0,2.0,2.0,5.0,2.0,4.0,,1.0,1.0 F86032,38.0,49.0,60.0,45.0,67.0,49.0,53.0,64.0,52.0,43.0,64.0,56.0,60.0,46.0,52.0,57.0,47.0,45.0,42.0,30.0,26.0,34.0,34.0,39.0,31.0,49.0,47.0,75.0,58.0,69.0,54.0,71.0,54.0,74.0,80.0,61.0,81.0,82.0,80.0,79.0,81.0,98.0,73.0,69.0,75.0,84.0,90.0,70.0,64.0,54.0,58.0,61.0,59.0,64.0,51.0,47.0,67.0,52.0,43.0,73.0,51.0,58.0,62.0,54.0,56.0,62.0,51.0,47.0,39.0,37.0,45.0,42.0,48.0,38.0,48.0,45.0,35.0,35.0,38.0,25.0,24.0,30.0,26.0,21.0,22.0,18.0,23.0,11.0,21.0,9.0,12.0,13.0,5.0,7.0,6.0,11.0 F86034,32.0,44.0,63.0,54.0,61.0,43.0,68.0,54.0,40.0,48.0,44.0,42.0,41.0,59.0,29.0,40.0,43.0,44.0,47.0,46.0,43.0,50.0,62.0,52.0,74.0,72.0,90.0,75.0,75.0,72.0,78.0,77.0,61.0,55.0,57.0,62.0,61.0,61.0,69.0,49.0,60.0,66.0,45.0,46.0,47.0,49.0,43.0,53.0,36.0,47.0,25.0,35.0,40.0,36.0,43.0,36.0,31.0,32.0,22.0,36.0,29.0,43.0,34.0,26.0,18.0,26.0,27.0,16.0,26.0,25.0,30.0,21.0,18.0,15.0,14.0,15.0,13.0,23.0,10.0,14.0,12.0,13.0,6.0,7.0,3.0,9.0,5.0,6.0,6.0,2.0,1.0,4.0,,2.0,3.0,3.0 F86036,64.0,64.0,66.0,82.0,85.0,79.0,98.0,90.0,95.0,86.0,90.0,89.0,80.0,81.0,85.0,91.0,79.0,69.0,88.0,75.0,47.0,67.0,56.0,92.0,105.0,86.0,92.0,88.0,108.0,108.0,106.0,105.0,122.0,119.0,137.0,136.0,126.0,131.0,144.0,133.0,120.0,137.0,144.0,117.0,155.0,120.0,106.0,111.0,131.0,73.0,85.0,111.0,94.0,76.0,83.0,86.0,81.0,71.0,73.0,92.0,85.0,86.0,86.0,90.0,76.0,61.0,55.0,68.0,49.0,47.0,47.0,57.0,64.0,44.0,44.0,39.0,40.0,27.0,32.0,28.0,17.0,24.0,19.0,22.0,13.0,18.0,13.0,11.0,13.0,9.0,7.0,7.0,9.0,1.0,1.0,10.0 F86038,63.0,61.0,60.0,81.0,66.0,66.0,72.0,74.0,75.0,73.0,94.0,68.0,87.0,80.0,83.0,84.0,91.0,72.0,84.0,82.0,62.0,67.0,74.0,88.0,84.0,94.0,75.0,91.0,79.0,92.0,95.0,102.0,99.0,84.0,86.0,101.0,99.0,86.0,97.0,91.0,91.0,75.0,97.0,89.0,96.0,80.0,86.0,66.0,60.0,55.0,82.0,67.0,57.0,63.0,52.0,86.0,80.0,53.0,40.0,52.0,37.0,38.0,38.0,40.0,37.0,41.0,37.0,41.0,36.0,25.0,25.0,31.0,29.0,22.0,20.0,22.0,16.0,17.0,20.0,16.0,12.0,9.0,10.0,10.0,5.0,9.0,5.0,7.0,8.0,3.0,1.0,5.0,5.0,1.0,1.0,3.0 F86040,23.0,32.0,25.0,36.0,30.0,36.0,41.0,39.0,22.0,38.0,39.0,35.0,48.0,54.0,41.0,35.0,39.0,38.0,33.0,31.0,39.0,38.0,33.0,30.0,36.0,40.0,36.0,33.0,41.0,50.0,39.0,42.0,45.0,46.0,51.0,43.0,48.0,39.0,38.0,38.0,50.0,43.0,43.0,50.0,45.0,43.0,50.0,35.0,35.0,34.0,34.0,26.0,37.0,37.0,28.0,21.0,21.0,24.0,20.0,29.0,18.0,14.0,25.0,12.0,22.0,21.0,15.0,8.0,17.0,19.0,15.0,13.0,11.0,10.0,10.0,12.0,10.0,5.0,12.0,7.0,6.0,2.0,11.0,5.0,2.0,4.0,2.0,1.0,3.0,2.0,5.0,3.0,,1.0,,7.0 F86042,30.0,30.0,40.0,24.0,44.0,41.0,49.0,44.0,55.0,53.0,41.0,48.0,54.0,58.0,48.0,33.0,50.0,48.0,42.0,39.0,33.0,38.0,39.0,32.0,35.0,35.0,33.0,41.0,46.0,40.0,40.0,50.0,54.0,48.0,51.0,51.0,66.0,69.0,55.0,50.0,62.0,47.0,62.0,48.0,46.0,45.0,25.0,36.0,47.0,29.0,28.0,30.0,26.0,24.0,26.0,25.0,25.0,32.0,33.0,30.0,27.0,18.0,20.0,17.0,19.0,19.0,21.0,20.0,20.0,12.0,20.0,21.0,24.0,11.0,17.0,11.0,13.0,12.0,6.0,3.0,8.0,6.0,6.0,6.0,6.0,9.0,7.0,4.0,4.0,1.0,4.0,1.0,3.0,4.0,2.0,5.0 F86044,39.0,66.0,57.0,73.0,71.0,57.0,69.0,60.0,59.0,57.0,52.0,42.0,44.0,33.0,44.0,49.0,38.0,45.0,40.0,36.0,37.0,51.0,50.0,59.0,52.0,70.0,85.0,93.0,104.0,105.0,120.0,109.0,142.0,118.0,143.0,125.0,128.0,109.0,125.0,102.0,101.0,101.0,93.0,96.0,84.0,92.0,80.0,69.0,60.0,51.0,54.0,50.0,46.0,52.0,38.0,40.0,44.0,46.0,33.0,42.0,39.0,34.0,38.0,34.0,36.0,26.0,27.0,26.0,29.0,26.0,24.0,22.0,20.0,12.0,18.0,21.0,12.0,17.0,8.0,16.0,9.0,8.0,14.0,4.0,5.0,9.0,5.0,2.0,5.0,9.0,6.0,4.0,4.0,2.0,,11.0 F86045,6.0,12.0,7.0,3.0,7.0,3.0,8.0,4.0,7.0,9.0,7.0,9.0,8.0,8.0,9.0,10.0,16.0,8.0,11.0,14.0,10.0,20.0,15.0,14.0,21.0,12.0,15.0,13.0,13.0,13.0,12.0,12.0,10.0,6.0,18.0,14.0,12.0,11.0,7.0,15.0,11.0,7.0,11.0,12.0,12.0,15.0,10.0,13.0,11.0,10.0,15.0,7.0,10.0,12.0,9.0,11.0,8.0,11.0,6.0,10.0,10.0,8.0,8.0,8.0,6.0,9.0,3.0,7.0,8.0,6.0,5.0,4.0,6.0,5.0,4.0,2.0,3.0,4.0,4.0,3.0,2.0,4.0,3.0,2.0,1.0,2.0,,1.0,1.0,2.0,,,2.0,,,1.0 F86057,49.0,59.0,43.0,46.0,44.0,52.0,45.0,51.0,40.0,47.0,46.0,60.0,45.0,46.0,43.0,35.0,56.0,44.0,48.0,46.0,36.0,57.0,35.0,47.0,47.0,62.0,47.0,63.0,61.0,66.0,61.0,71.0,73.0,68.0,75.0,68.0,70.0,72.0,81.0,73.0,69.0,58.0,65.0,61.0,66.0,50.0,54.0,56.0,42.0,57.0,44.0,43.0,57.0,48.0,50.0,44.0,52.0,54.0,46.0,41.0,54.0,50.0,48.0,42.0,49.0,46.0,30.0,28.0,39.0,24.0,24.0,30.0,29.0,18.0,19.0,25.0,25.0,28.0,22.0,15.0,24.0,22.0,18.0,14.0,8.0,17.0,11.0,15.0,6.0,8.0,6.0,6.0,7.0,5.0,4.0,10.0 F86058,69.0,94.0,94.0,81.0,88.0,89.0,102.0,90.0,102.0,97.0,89.0,78.0,90.0,67.0,99.0,92.0,110.0,96.0,76.0,72.0,85.0,86.0,74.0,76.0,81.0,101.0,86.0,112.0,112.0,113.0,147.0,155.0,136.0,152.0,159.0,164.0,169.0,172.0,150.0,171.0,161.0,173.0,147.0,128.0,124.0,120.0,138.0,100.0,100.0,106.0,92.0,83.0,105.0,73.0,88.0,71.0,77.0,79.0,70.0,69.0,76.0,58.0,57.0,46.0,63.0,57.0,57.0,38.0,35.0,27.0,36.0,33.0,36.0,29.0,28.0,22.0,21.0,22.0,16.0,17.0,18.0,14.0,10.0,9.0,10.0,4.0,11.0,7.0,9.0,4.0,6.0,8.0,5.0,3.0,1.0,5.0 F86060,61.0,98.0,85.0,82.0,90.0,112.0,80.0,86.0,100.0,130.0,103.0,105.0,114.0,116.0,110.0,128.0,100.0,108.0,100.0,89.0,87.0,88.0,96.0,114.0,103.0,126.0,118.0,130.0,145.0,125.0,106.0,113.0,107.0,111.0,101.0,117.0,124.0,130.0,106.0,110.0,108.0,128.0,131.0,122.0,112.0,116.0,110.0,99.0,80.0,106.0,98.0,63.0,94.0,91.0,109.0,69.0,70.0,73.0,77.0,55.0,56.0,61.0,61.0,46.0,51.0,61.0,47.0,54.0,49.0,50.0,60.0,34.0,47.0,37.0,49.0,42.0,32.0,32.0,29.0,32.0,22.0,26.0,28.0,21.0,15.0,21.0,26.0,13.0,16.0,8.0,6.0,8.0,3.0,4.0,4.0,14.0 F86062,23.0,28.0,30.0,42.0,35.0,19.0,29.0,37.0,32.0,32.0,26.0,40.0,34.0,36.0,49.0,36.0,34.0,37.0,46.0,35.0,25.0,40.0,36.0,37.0,40.0,37.0,31.0,45.0,55.0,47.0,45.0,47.0,55.0,68.0,42.0,48.0,49.0,70.0,59.0,47.0,53.0,52.0,66.0,36.0,62.0,48.0,40.0,44.0,38.0,26.0,37.0,39.0,40.0,41.0,36.0,37.0,42.0,35.0,28.0,43.0,37.0,39.0,26.0,26.0,23.0,22.0,30.0,17.0,21.0,24.0,27.0,16.0,23.0,19.0,22.0,9.0,14.0,12.0,13.0,12.0,5.0,12.0,10.0,6.0,7.0,2.0,11.0,3.0,6.0,3.0,4.0,4.0,1.0,2.0,1.0,1.0 F86064,19.0,14.0,20.0,21.0,21.0,18.0,21.0,24.0,25.0,22.0,26.0,25.0,28.0,32.0,29.0,36.0,31.0,36.0,28.0,18.0,30.0,29.0,29.0,19.0,15.0,26.0,46.0,33.0,35.0,32.0,31.0,29.0,29.0,21.0,41.0,39.0,24.0,28.0,29.0,32.0,46.0,32.0,32.0,31.0,36.0,38.0,39.0,30.0,35.0,54.0,35.0,41.0,35.0,45.0,54.0,35.0,31.0,35.0,33.0,34.0,45.0,38.0,34.0,32.0,27.0,28.0,29.0,21.0,19.0,20.0,14.0,18.0,12.0,19.0,12.0,23.0,16.0,20.0,17.0,12.0,10.0,14.0,14.0,6.0,8.0,7.0,10.0,11.0,4.0,10.0,4.0,8.0,5.0,4.0,5.0,5.0 F86066,29.0,32.0,25.0,38.0,39.0,49.0,53.0,44.0,56.0,50.0,55.0,38.0,45.0,47.0,40.0,39.0,39.0,40.0,46.0,28.0,35.0,35.0,35.0,42.0,37.0,37.0,54.0,48.0,46.0,51.0,62.0,46.0,53.0,58.0,55.0,49.0,57.0,59.0,61.0,60.0,78.0,73.0,49.0,60.0,74.0,70.0,70.0,54.0,67.0,51.0,60.0,54.0,54.0,57.0,47.0,62.0,61.0,52.0,46.0,50.0,43.0,40.0,40.0,51.0,45.0,31.0,38.0,40.0,38.0,30.0,25.0,34.0,33.0,33.0,30.0,32.0,30.0,35.0,24.0,17.0,20.0,20.0,25.0,18.0,14.0,7.0,11.0,23.0,14.0,15.0,5.0,10.0,1.0,3.0,3.0,16.0 F86074,55.0,74.0,77.0,62.0,81.0,90.0,66.0,74.0,90.0,102.0,66.0,80.0,80.0,99.0,75.0,69.0,82.0,99.0,77.0,97.0,81.0,80.0,76.0,97.0,94.0,118.0,87.0,96.0,103.0,95.0,122.0,113.0,129.0,122.0,131.0,121.0,123.0,142.0,126.0,132.0,104.0,117.0,125.0,94.0,117.0,120.0,117.0,103.0,92.0,88.0,99.0,83.0,72.0,86.0,88.0,75.0,80.0,74.0,74.0,68.0,50.0,72.0,55.0,49.0,60.0,52.0,66.0,49.0,52.0,45.0,47.0,32.0,25.0,39.0,35.0,20.0,21.0,18.0,28.0,22.0,16.0,23.0,17.0,9.0,16.0,14.0,11.0,10.0,5.0,7.0,5.0,2.0,3.0,1.0,2.0,4.0 F86078,26.0,20.0,30.0,20.0,13.0,22.0,27.0,20.0,27.0,38.0,23.0,29.0,37.0,36.0,36.0,47.0,35.0,43.0,43.0,25.0,31.0,24.0,32.0,45.0,29.0,32.0,35.0,44.0,45.0,32.0,44.0,39.0,36.0,37.0,50.0,32.0,40.0,41.0,26.0,38.0,43.0,29.0,35.0,31.0,38.0,46.0,42.0,48.0,41.0,44.0,47.0,41.0,51.0,44.0,52.0,49.0,47.0,59.0,55.0,56.0,51.0,56.0,45.0,51.0,48.0,36.0,45.0,49.0,30.0,52.0,34.0,44.0,36.0,30.0,37.0,29.0,40.0,41.0,32.0,30.0,36.0,33.0,19.0,15.0,15.0,20.0,26.0,25.0,20.0,10.0,12.0,9.0,9.0,7.0,5.0,14.0 F86081,24.0,34.0,34.0,35.0,24.0,38.0,45.0,40.0,36.0,45.0,36.0,43.0,36.0,39.0,51.0,44.0,47.0,39.0,48.0,47.0,38.0,41.0,43.0,48.0,49.0,47.0,50.0,47.0,38.0,33.0,63.0,59.0,44.0,61.0,40.0,62.0,49.0,59.0,55.0,52.0,52.0,72.0,44.0,53.0,53.0,47.0,48.0,48.0,51.0,64.0,44.0,30.0,46.0,47.0,27.0,41.0,50.0,49.0,40.0,26.0,32.0,39.0,31.0,36.0,31.0,32.0,33.0,23.0,22.0,17.0,30.0,32.0,25.0,19.0,20.0,13.0,23.0,25.0,25.0,13.0,17.0,19.0,23.0,10.0,11.0,10.0,11.0,15.0,5.0,6.0,9.0,9.0,7.0,2.0,3.0,6.0 F86082,32.0,42.0,33.0,43.0,38.0,31.0,24.0,33.0,37.0,54.0,42.0,35.0,36.0,48.0,39.0,41.0,42.0,34.0,38.0,45.0,41.0,47.0,49.0,49.0,60.0,58.0,58.0,57.0,50.0,67.0,56.0,44.0,42.0,58.0,55.0,45.0,79.0,51.0,35.0,42.0,49.0,47.0,60.0,48.0,48.0,45.0,38.0,43.0,49.0,36.0,30.0,35.0,40.0,30.0,37.0,32.0,32.0,27.0,32.0,16.0,19.0,23.0,19.0,23.0,27.0,20.0,30.0,18.0,24.0,24.0,16.0,21.0,12.0,9.0,8.0,11.0,14.0,9.0,9.0,12.0,8.0,4.0,6.0,5.0,7.0,9.0,7.0,6.0,4.0,4.0,2.0,1.0,1.0,1.0,,1.0 F86083,24.0,31.0,28.0,24.0,27.0,32.0,30.0,32.0,29.0,30.0,28.0,29.0,32.0,28.0,30.0,31.0,22.0,26.0,34.0,30.0,33.0,33.0,40.0,36.0,44.0,35.0,49.0,45.0,44.0,54.0,40.0,48.0,42.0,46.0,35.0,35.0,46.0,40.0,55.0,60.0,38.0,53.0,34.0,47.0,39.0,40.0,35.0,28.0,42.0,40.0,32.0,34.0,35.0,47.0,36.0,44.0,43.0,28.0,34.0,31.0,34.0,41.0,36.0,35.0,35.0,45.0,31.0,38.0,26.0,27.0,38.0,43.0,23.0,33.0,29.0,36.0,23.0,26.0,24.0,17.0,12.0,12.0,19.0,11.0,9.0,12.0,8.0,9.0,9.0,3.0,4.0,2.0,6.0,1.0,1.0,6.0 F86085,25.0,15.0,13.0,25.0,16.0,26.0,18.0,15.0,18.0,19.0,7.0,24.0,20.0,14.0,23.0,22.0,17.0,17.0,13.0,19.0,20.0,23.0,20.0,26.0,24.0,24.0,39.0,33.0,22.0,20.0,30.0,18.0,31.0,31.0,27.0,34.0,39.0,30.0,30.0,26.0,28.0,36.0,21.0,32.0,33.0,29.0,24.0,16.0,17.0,25.0,25.0,16.0,24.0,20.0,16.0,17.0,19.0,20.0,20.0,30.0,18.0,17.0,14.0,11.0,20.0,21.0,15.0,20.0,16.0,14.0,9.0,12.0,10.0,13.0,10.0,4.0,11.0,10.0,5.0,7.0,8.0,5.0,4.0,5.0,5.0,4.0,5.0,,3.0,5.0,3.0,3.0,3.0,3.0,1.0,4.0 F86086,23.0,41.0,42.0,38.0,41.0,43.0,41.0,48.0,50.0,49.0,50.0,53.0,45.0,44.0,51.0,34.0,51.0,45.0,35.0,37.0,38.0,34.0,37.0,26.0,31.0,26.0,43.0,31.0,30.0,50.0,45.0,51.0,43.0,48.0,67.0,62.0,47.0,55.0,76.0,66.0,56.0,62.0,62.0,52.0,59.0,63.0,45.0,44.0,33.0,40.0,49.0,35.0,41.0,40.0,29.0,42.0,28.0,20.0,38.0,28.0,30.0,34.0,27.0,21.0,20.0,15.0,14.0,19.0,21.0,15.0,17.0,14.0,10.0,10.0,9.0,7.0,12.0,9.0,6.0,6.0,10.0,8.0,9.0,4.0,9.0,2.0,3.0,6.0,1.0,2.0,6.0,6.0,,,,1.0 F86087,36.0,46.0,30.0,59.0,42.0,52.0,32.0,38.0,52.0,41.0,56.0,42.0,51.0,60.0,38.0,51.0,51.0,52.0,46.0,42.0,37.0,49.0,45.0,48.0,52.0,43.0,46.0,71.0,73.0,49.0,56.0,68.0,53.0,71.0,50.0,72.0,63.0,61.0,64.0,82.0,56.0,58.0,50.0,52.0,73.0,62.0,49.0,51.0,48.0,51.0,49.0,29.0,40.0,38.0,42.0,39.0,30.0,25.0,29.0,24.0,26.0,29.0,25.0,30.0,24.0,33.0,22.0,24.0,26.0,28.0,18.0,25.0,29.0,23.0,12.0,24.0,16.0,12.0,16.0,11.0,13.0,4.0,5.0,14.0,5.0,14.0,7.0,7.0,4.0,2.0,2.0,5.0,2.0,3.0,4.0,4.0 F86088,21.0,29.0,38.0,20.0,22.0,24.0,21.0,15.0,30.0,21.0,17.0,18.0,26.0,23.0,26.0,25.0,15.0,32.0,28.0,18.0,21.0,25.0,16.0,23.0,31.0,44.0,42.0,45.0,53.0,32.0,41.0,46.0,53.0,50.0,48.0,46.0,53.0,40.0,46.0,50.0,43.0,41.0,38.0,40.0,36.0,27.0,33.0,25.0,18.0,31.0,25.0,29.0,23.0,41.0,27.0,22.0,26.0,21.0,30.0,32.0,17.0,26.0,20.0,28.0,18.0,27.0,28.0,12.0,20.0,16.0,16.0,11.0,20.0,14.0,14.0,14.0,10.0,16.0,9.0,7.0,9.0,10.0,9.0,9.0,14.0,9.0,10.0,5.0,7.0,,2.0,2.0,3.0,2.0,3.0,4.0 F86607,121.0,140.0,125.0,128.0,96.0,96.0,111.0,99.0,99.0,97.0,105.0,98.0,110.0,115.0,124.0,106.0,115.0,94.0,104.0,87.0,59.0,71.0,74.0,107.0,108.0,109.0,137.0,142.0,178.0,207.0,218.0,228.0,255.0,240.0,249.0,233.0,210.0,226.0,208.0,190.0,192.0,190.0,154.0,149.0,165.0,161.0,158.0,128.0,131.0,120.0,123.0,112.0,131.0,124.0,109.0,85.0,114.0,76.0,92.0,82.0,78.0,88.0,66.0,53.0,51.0,48.0,48.0,51.0,42.0,28.0,45.0,40.0,28.0,36.0,43.0,31.0,35.0,16.0,29.0,10.0,25.0,22.0,19.0,14.0,17.0,9.0,12.0,9.0,4.0,4.0,5.0,4.0,5.0,3.0,3.0,7.0 F86612,6.0,13.0,11.0,15.0,9.0,18.0,12.0,21.0,25.0,21.0,23.0,21.0,27.0,23.0,21.0,25.0,17.0,19.0,26.0,19.0,18.0,12.0,18.0,16.0,17.0,14.0,23.0,17.0,24.0,17.0,22.0,19.0,24.0,23.0,20.0,27.0,28.0,30.0,15.0,22.0,23.0,20.0,24.0,19.0,26.0,35.0,25.0,29.0,10.0,14.0,10.0,19.0,15.0,19.0,26.0,17.0,29.0,18.0,16.0,24.0,23.0,22.0,19.0,12.0,17.0,15.0,23.0,15.0,11.0,11.0,8.0,12.0,18.0,9.0,8.0,10.0,10.0,13.0,19.0,7.0,16.0,6.0,13.0,10.0,7.0,2.0,7.0,10.0,2.0,4.0,5.0,2.0,5.0,1.0,4.0,2.0 F86616,70.0,54.0,64.0,69.0,66.0,82.0,59.0,73.0,51.0,71.0,64.0,48.0,70.0,41.0,57.0,46.0,58.0,39.0,43.0,38.0,29.0,43.0,37.0,50.0,41.0,50.0,53.0,50.0,54.0,57.0,66.0,65.0,67.0,73.0,98.0,91.0,95.0,103.0,90.0,103.0,83.0,95.0,77.0,95.0,71.0,67.0,65.0,51.0,51.0,54.0,60.0,54.0,52.0,51.0,45.0,44.0,54.0,45.0,51.0,40.0,39.0,47.0,46.0,42.0,45.0,27.0,41.0,33.0,32.0,23.0,26.0,34.0,29.0,37.0,30.0,26.0,31.0,28.0,37.0,24.0,21.0,16.0,19.0,12.0,19.0,19.0,19.0,17.0,15.0,18.0,11.0,8.0,5.0,7.0,6.0,17.0 F86621,48.0,38.0,44.0,59.0,47.0,38.0,40.0,35.0,38.0,22.0,30.0,33.0,24.0,34.0,34.0,33.0,27.0,24.0,24.0,18.0,24.0,26.0,26.0,38.0,49.0,52.0,65.0,55.0,69.0,65.0,77.0,81.0,76.0,73.0,84.0,69.0,100.0,94.0,76.0,63.0,89.0,42.0,66.0,59.0,47.0,39.0,37.0,46.0,38.0,32.0,25.0,33.0,42.0,32.0,35.0,27.0,32.0,28.0,27.0,27.0,24.0,31.0,31.0,16.0,23.0,27.0,16.0,23.0,26.0,26.0,21.0,18.0,29.0,18.0,23.0,14.0,20.0,25.0,12.0,16.0,15.0,14.0,11.0,1.0,7.0,5.0,4.0,3.0,4.0,3.0,4.0,3.0,1.0,3.0,,3.0 F86624,10.0,9.0,10.0,10.0,18.0,14.0,22.0,18.0,24.0,16.0,22.0,21.0,17.0,22.0,24.0,20.0,26.0,22.0,20.0,20.0,14.0,11.0,23.0,14.0,22.0,22.0,24.0,25.0,24.0,35.0,20.0,30.0,19.0,25.0,26.0,27.0,23.0,18.0,25.0,16.0,23.0,23.0,29.0,23.0,25.0,31.0,25.0,18.0,29.0,23.0,19.0,25.0,26.0,21.0,20.0,24.0,29.0,14.0,15.0,22.0,17.0,18.0,22.0,19.0,25.0,17.0,16.0,19.0,17.0,24.0,9.0,19.0,15.0,12.0,11.0,15.0,10.0,13.0,14.0,8.0,17.0,11.0,6.0,11.0,9.0,6.0,5.0,5.0,7.0,1.0,3.0,2.0,3.0,1.0,3.0,2.0 F86625,27.0,19.0,19.0,19.0,15.0,25.0,22.0,31.0,19.0,26.0,33.0,35.0,39.0,40.0,33.0,47.0,31.0,32.0,39.0,43.0,34.0,42.0,47.0,48.0,55.0,39.0,42.0,35.0,51.0,44.0,35.0,55.0,45.0,41.0,42.0,47.0,57.0,43.0,42.0,43.0,35.0,50.0,58.0,45.0,45.0,39.0,43.0,33.0,44.0,27.0,35.0,23.0,29.0,32.0,39.0,41.0,34.0,38.0,32.0,46.0,32.0,36.0,38.0,26.0,37.0,31.0,23.0,25.0,27.0,30.0,24.0,13.0,20.0,14.0,19.0,14.0,11.0,15.0,14.0,2.0,9.0,8.0,14.0,7.0,7.0,5.0,5.0,9.0,5.0,3.0,7.0,2.0,4.0,1.0,1.0,2.0 F86626,54.0,53.0,58.0,56.0,57.0,50.0,38.0,45.0,50.0,54.0,53.0,51.0,61.0,48.0,53.0,46.0,51.0,47.0,42.0,37.0,36.0,38.0,50.0,49.0,57.0,52.0,66.0,89.0,74.0,81.0,91.0,85.0,66.0,66.0,73.0,100.0,69.0,92.0,77.0,76.0,80.0,80.0,66.0,86.0,81.0,60.0,52.0,56.0,58.0,58.0,50.0,42.0,42.0,50.0,38.0,30.0,44.0,35.0,24.0,33.0,39.0,32.0,21.0,28.0,26.0,21.0,13.0,22.0,15.0,16.0,17.0,13.0,17.0,18.0,13.0,6.0,13.0,15.0,11.0,4.0,10.0,10.0,7.0,7.0,2.0,12.0,2.0,6.0,2.0,2.0,2.0,2.0,1.0,2.0,,3.0 F86627,65.0,62.0,51.0,64.0,62.0,71.0,69.0,67.0,70.0,84.0,68.0,77.0,77.0,81.0,95.0,80.0,96.0,83.0,81.0,54.0,62.0,72.0,95.0,89.0,106.0,96.0,97.0,109.0,107.0,86.0,110.0,85.0,102.0,132.0,115.0,99.0,121.0,95.0,95.0,97.0,91.0,91.0,110.0,88.0,93.0,73.0,80.0,92.0,96.0,89.0,77.0,76.0,94.0,92.0,92.0,105.0,110.0,100.0,113.0,96.0,106.0,77.0,75.0,80.0,68.0,84.0,75.0,72.0,64.0,62.0,66.0,54.0,56.0,58.0,42.0,41.0,35.0,57.0,45.0,45.0,45.0,33.0,45.0,22.0,20.0,24.0,27.0,27.0,29.0,12.0,12.0,10.0,14.0,16.0,4.0,21.0 F86637,22.0,21.0,22.0,23.0,32.0,26.0,27.0,26.0,29.0,32.0,12.0,27.0,37.0,32.0,23.0,19.0,42.0,31.0,37.0,24.0,23.0,21.0,39.0,27.0,36.0,33.0,47.0,54.0,26.0,30.0,39.0,32.0,39.0,37.0,32.0,40.0,43.0,42.0,25.0,38.0,36.0,33.0,42.0,33.0,34.0,29.0,20.0,25.0,27.0,40.0,21.0,27.0,31.0,23.0,22.0,31.0,37.0,34.0,20.0,34.0,20.0,22.0,37.0,18.0,26.0,33.0,20.0,26.0,25.0,23.0,26.0,23.0,33.0,19.0,14.0,20.0,18.0,15.0,21.0,14.0,13.0,9.0,6.0,11.0,10.0,11.0,6.0,4.0,4.0,3.0,8.0,1.0,4.0,2.0,1.0,6.0 F86638,14.0,20.0,20.0,21.0,31.0,23.0,28.0,29.0,32.0,29.0,30.0,29.0,18.0,31.0,27.0,21.0,22.0,28.0,22.0,19.0,18.0,19.0,27.0,25.0,25.0,26.0,27.0,28.0,32.0,15.0,27.0,24.0,22.0,32.0,32.0,23.0,31.0,32.0,48.0,34.0,42.0,37.0,36.0,38.0,35.0,33.0,41.0,34.0,31.0,32.0,26.0,28.0,35.0,27.0,30.0,31.0,31.0,30.0,19.0,21.0,37.0,29.0,29.0,25.0,22.0,23.0,17.0,13.0,25.0,22.0,20.0,21.0,19.0,17.0,22.0,16.0,12.0,16.0,11.0,16.0,6.0,11.0,7.0,9.0,9.0,13.0,13.0,4.0,4.0,7.0,5.0,8.0,2.0,4.0,,8.0 F86641,49.0,67.0,52.0,68.0,50.0,61.0,60.0,54.0,68.0,69.0,59.0,63.0,56.0,53.0,50.0,37.0,36.0,37.0,28.0,17.0,28.0,39.0,38.0,35.0,38.0,40.0,39.0,34.0,54.0,50.0,76.0,73.0,66.0,64.0,78.0,97.0,100.0,91.0,103.0,82.0,99.0,82.0,98.0,113.0,102.0,83.0,80.0,76.0,73.0,53.0,48.0,45.0,42.0,60.0,44.0,51.0,36.0,48.0,44.0,42.0,40.0,52.0,51.0,48.0,45.0,28.0,43.0,35.0,32.0,30.0,28.0,38.0,21.0,28.0,21.0,22.0,24.0,26.0,18.0,12.0,17.0,20.0,17.0,4.0,7.0,7.0,12.0,13.0,6.0,5.0,5.0,3.0,2.0,2.0,3.0,12.0 F86642,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, F86644,33.0,35.0,35.0,29.0,36.0,36.0,43.0,38.0,52.0,59.0,46.0,55.0,56.0,59.0,61.0,72.0,66.0,49.0,65.0,53.0,45.0,60.0,53.0,43.0,51.0,52.0,54.0,49.0,42.0,62.0,63.0,65.0,52.0,60.0,65.0,84.0,77.0,82.0,74.0,72.0,74.0,71.0,68.0,68.0,70.0,89.0,64.0,78.0,74.0,52.0,71.0,61.0,59.0,64.0,59.0,59.0,60.0,57.0,49.0,51.0,45.0,37.0,31.0,37.0,31.0,39.0,32.0,35.0,27.0,18.0,28.0,21.0,25.0,18.0,20.0,27.0,21.0,17.0,29.0,12.0,13.0,13.0,8.0,10.0,10.0,10.0,18.0,11.0,14.0,6.0,7.0,11.0,5.0,5.0,4.0,14.0 F86650,56.0,49.0,54.0,43.0,51.0,41.0,45.0,54.0,52.0,49.0,52.0,42.0,44.0,52.0,43.0,45.0,41.0,42.0,42.0,45.0,44.0,45.0,56.0,67.0,68.0,87.0,83.0,90.0,91.0,105.0,86.0,92.0,89.0,90.0,99.0,99.0,108.0,104.0,82.0,83.0,96.0,82.0,73.0,70.0,75.0,70.0,59.0,55.0,64.0,58.0,40.0,58.0,44.0,59.0,45.0,39.0,47.0,46.0,42.0,48.0,39.0,40.0,36.0,43.0,38.0,38.0,32.0,27.0,18.0,25.0,24.0,28.0,19.0,20.0,22.0,22.0,16.0,19.0,18.0,12.0,12.0,9.0,9.0,8.0,8.0,6.0,5.0,3.0,9.0,2.0,6.0,3.0,1.0,2.0,2.0,3.0 F86652,43.0,41.0,45.0,37.0,44.0,43.0,35.0,41.0,39.0,55.0,48.0,45.0,53.0,54.0,41.0,55.0,41.0,51.0,50.0,39.0,56.0,43.0,41.0,47.0,54.0,47.0,59.0,53.0,55.0,57.0,64.0,65.0,58.0,43.0,58.0,43.0,51.0,47.0,67.0,67.0,63.0,56.0,47.0,59.0,50.0,56.0,44.0,42.0,42.0,40.0,47.0,29.0,27.0,38.0,32.0,37.0,30.0,34.0,22.0,30.0,27.0,27.0,23.0,21.0,24.0,31.0,37.0,25.0,28.0,22.0,35.0,19.0,25.0,19.0,18.0,16.0,15.0,18.0,11.0,14.0,13.0,11.0,9.0,8.0,7.0,11.0,11.0,5.0,15.0,6.0,2.0,1.0,4.0,4.0,,3.0 F86657,34.0,49.0,36.0,54.0,33.0,60.0,43.0,54.0,51.0,58.0,68.0,63.0,48.0,58.0,49.0,50.0,59.0,46.0,49.0,40.0,42.0,38.0,34.0,59.0,51.0,47.0,65.0,62.0,74.0,70.0,81.0,76.0,84.0,87.0,92.0,81.0,87.0,86.0,75.0,82.0,90.0,82.0,85.0,73.0,53.0,67.0,57.0,66.0,50.0,52.0,45.0,36.0,47.0,40.0,38.0,38.0,36.0,32.0,39.0,25.0,37.0,33.0,33.0,26.0,26.0,32.0,24.0,22.0,23.0,16.0,20.0,19.0,26.0,23.0,18.0,15.0,12.0,14.0,8.0,12.0,9.0,4.0,7.0,9.0,6.0,4.0,6.0,3.0,1.0,3.0,4.0,1.0,5.0,1.0,,5.0 F86658,52.0,42.0,42.0,28.0,36.0,59.0,42.0,44.0,38.0,44.0,41.0,46.0,40.0,38.0,32.0,48.0,38.0,38.0,27.0,28.0,21.0,27.0,33.0,31.0,39.0,44.0,58.0,47.0,60.0,60.0,51.0,60.0,58.0,74.0,77.0,82.0,81.0,69.0,68.0,73.0,49.0,76.0,68.0,45.0,53.0,43.0,57.0,41.0,50.0,37.0,31.0,28.0,25.0,29.0,28.0,33.0,34.0,27.0,25.0,36.0,28.0,30.0,31.0,27.0,36.0,24.0,19.0,28.0,24.0,28.0,24.0,21.0,23.0,23.0,14.0,19.0,12.0,10.0,15.0,13.0,7.0,7.0,16.0,10.0,10.0,3.0,14.0,8.0,8.0,3.0,3.0,4.0,,2.0,,3.0 F86664,28.0,31.0,38.0,46.0,38.0,46.0,56.0,51.0,46.0,67.0,60.0,56.0,49.0,50.0,69.0,38.0,66.0,76.0,57.0,59.0,38.0,44.0,31.0,44.0,41.0,41.0,46.0,43.0,64.0,48.0,50.0,38.0,58.0,54.0,72.0,56.0,70.0,78.0,58.0,62.0,80.0,70.0,73.0,59.0,61.0,45.0,56.0,53.0,59.0,69.0,67.0,53.0,62.0,66.0,50.0,59.0,52.0,58.0,58.0,59.0,49.0,59.0,48.0,46.0,44.0,41.0,40.0,42.0,33.0,26.0,37.0,19.0,37.0,27.0,24.0,16.0,24.0,19.0,32.0,28.0,35.0,21.0,29.0,24.0,15.0,16.0,13.0,22.0,6.0,11.0,4.0,3.0,5.0,4.0,5.0,10.0 F86666,70.0,92.0,80.0,77.0,87.0,82.0,74.0,83.0,93.0,99.0,92.0,93.0,96.0,83.0,81.0,81.0,98.0,87.0,84.0,71.0,70.0,82.0,93.0,102.0,122.0,119.0,134.0,139.0,139.0,145.0,153.0,156.0,150.0,140.0,163.0,157.0,122.0,154.0,155.0,134.0,103.0,137.0,140.0,106.0,116.0,117.0,102.0,90.0,86.0,94.0,87.0,85.0,89.0,84.0,79.0,89.0,76.0,89.0,76.0,76.0,81.0,74.0,73.0,58.0,57.0,51.0,44.0,36.0,41.0,40.0,38.0,28.0,35.0,26.0,34.0,23.0,32.0,17.0,25.0,17.0,14.0,11.0,15.0,15.0,11.0,14.0,10.0,3.0,7.0,4.0,5.0,7.0,2.0,2.0,1.0,9.0 F86679,38.0,42.0,51.0,44.0,41.0,50.0,56.0,49.0,48.0,48.0,37.0,25.0,44.0,48.0,42.0,42.0,47.0,29.0,29.0,38.0,31.0,35.0,36.0,25.0,39.0,44.0,44.0,40.0,66.0,43.0,58.0,68.0,71.0,85.0,70.0,69.0,79.0,84.0,66.0,70.0,85.0,60.0,77.0,73.0,66.0,49.0,60.0,41.0,46.0,40.0,49.0,48.0,40.0,35.0,44.0,45.0,44.0,25.0,23.0,21.0,23.0,16.0,23.0,17.0,22.0,12.0,14.0,20.0,16.0,11.0,10.0,11.0,10.0,8.0,7.0,12.0,6.0,9.0,8.0,7.0,4.0,6.0,3.0,8.0,2.0,1.0,1.0,6.0,1.0,3.0,1.0,,,,1.0,1.0 F86689,31.0,45.0,27.0,49.0,39.0,47.0,42.0,44.0,41.0,49.0,29.0,20.0,34.0,29.0,17.0,25.0,20.0,14.0,17.0,16.0,12.0,12.0,9.0,11.0,15.0,20.0,15.0,17.0,17.0,18.0,23.0,37.0,38.0,39.0,47.0,48.0,59.0,72.0,84.0,68.0,80.0,69.0,55.0,60.0,60.0,61.0,48.0,56.0,37.0,24.0,41.0,37.0,32.0,18.0,19.0,16.0,20.0,25.0,31.0,25.0,16.0,23.0,15.0,23.0,13.0,17.0,18.0,16.0,9.0,15.0,9.0,10.0,18.0,11.0,10.0,7.0,7.0,5.0,6.0,3.0,6.0,7.0,1.0,2.0,4.0,3.0,3.0,3.0,3.0,1.0,3.0,,2.0,1.0,, F86691,52.0,45.0,66.0,63.0,69.0,61.0,63.0,72.0,79.0,69.0,76.0,54.0,84.0,67.0,66.0,89.0,96.0,70.0,76.0,66.0,56.0,67.0,66.0,68.0,81.0,75.0,80.0,81.0,60.0,70.0,83.0,91.0,67.0,74.0,71.0,65.0,89.0,83.0,87.0,74.0,94.0,90.0,85.0,65.0,85.0,100.0,92.0,71.0,81.0,65.0,64.0,88.0,62.0,70.0,69.0,66.0,65.0,75.0,54.0,67.0,61.0,63.0,63.0,54.0,57.0,41.0,53.0,56.0,42.0,47.0,47.0,31.0,45.0,32.0,45.0,33.0,44.0,36.0,41.0,31.0,29.0,33.0,23.0,24.0,20.0,16.0,19.0,8.0,16.0,6.0,13.0,10.0,14.0,6.0,6.0,9.0 F86692,58.0,46.0,58.0,65.0,72.0,67.0,90.0,91.0,96.0,75.0,72.0,97.0,79.0,97.0,84.0,86.0,67.0,76.0,87.0,76.0,79.0,74.0,77.0,86.0,85.0,98.0,100.0,102.0,91.0,84.0,82.0,72.0,75.0,66.0,82.0,72.0,89.0,84.0,91.0,86.0,88.0,72.0,65.0,89.0,79.0,76.0,71.0,57.0,75.0,67.0,50.0,58.0,47.0,46.0,55.0,55.0,68.0,54.0,39.0,41.0,50.0,46.0,37.0,30.0,45.0,38.0,41.0,43.0,30.0,29.0,29.0,22.0,22.0,33.0,24.0,17.0,12.0,24.0,8.0,16.0,8.0,4.0,7.0,10.0,10.0,12.0,5.0,8.0,5.0,5.0,5.0,1.0,,4.0,2.0,3.0 F86696,43.0,50.0,50.0,49.0,52.0,36.0,33.0,31.0,44.0,42.0,28.0,43.0,27.0,36.0,32.0,37.0,25.0,31.0,35.0,30.0,26.0,32.0,38.0,46.0,69.0,79.0,90.0,79.0,95.0,91.0,99.0,131.0,110.0,84.0,128.0,111.0,112.0,92.0,93.0,91.0,76.0,80.0,69.0,65.0,45.0,51.0,50.0,46.0,27.0,37.0,36.0,39.0,36.0,39.0,30.0,26.0,30.0,31.0,19.0,27.0,25.0,26.0,27.0,26.0,19.0,21.0,17.0,16.0,11.0,15.0,15.0,18.0,8.0,11.0,11.0,8.0,10.0,9.0,4.0,4.0,6.0,5.0,4.0,6.0,6.0,3.0,2.0,3.0,6.0,2.0,2.0,,1.0,2.0,2.0,1.0 F86698,30.0,35.0,32.0,33.0,50.0,31.0,36.0,42.0,37.0,45.0,29.0,26.0,42.0,37.0,30.0,47.0,33.0,39.0,38.0,36.0,37.0,26.0,54.0,58.0,60.0,52.0,58.0,64.0,53.0,56.0,64.0,56.0,56.0,55.0,49.0,50.0,56.0,54.0,45.0,47.0,54.0,46.0,47.0,54.0,37.0,37.0,49.0,38.0,42.0,28.0,49.0,29.0,44.0,33.0,27.0,40.0,23.0,40.0,30.0,30.0,25.0,35.0,23.0,26.0,13.0,29.0,22.0,25.0,20.0,21.0,13.0,12.0,13.0,15.0,8.0,9.0,19.0,10.0,16.0,7.0,13.0,12.0,8.0,7.0,6.0,3.0,10.0,4.0,5.0,5.0,7.0,7.0,5.0,3.0,1.0,11.0 F86700,15.0,14.0,22.0,17.0,25.0,28.0,21.0,18.0,26.0,24.0,22.0,15.0,12.0,24.0,20.0,21.0,25.0,24.0,19.0,21.0,18.0,12.0,15.0,21.0,22.0,16.0,13.0,19.0,20.0,20.0,23.0,25.0,17.0,23.0,26.0,20.0,35.0,28.0,23.0,33.0,32.0,24.0,24.0,28.0,28.0,30.0,24.0,32.0,21.0,25.0,22.0,22.0,20.0,23.0,19.0,37.0,18.0,18.0,16.0,26.0,17.0,20.0,21.0,17.0,26.0,12.0,19.0,12.0,17.0,21.0,16.0,10.0,23.0,9.0,17.0,17.0,23.0,12.0,22.0,21.0,12.0,12.0,14.0,5.0,8.0,8.0,12.0,18.0,9.0,9.0,5.0,3.0,3.0,1.0,2.0,3.0 F86701,12.0,13.0,21.0,23.0,23.0,16.0,29.0,12.0,14.0,18.0,23.0,23.0,30.0,24.0,22.0,24.0,37.0,17.0,27.0,15.0,21.0,16.0,26.0,21.0,18.0,23.0,25.0,32.0,37.0,34.0,37.0,47.0,42.0,33.0,31.0,38.0,32.0,40.0,35.0,40.0,44.0,26.0,26.0,29.0,30.0,30.0,24.0,27.0,22.0,26.0,19.0,22.0,22.0,12.0,15.0,19.0,26.0,16.0,18.0,23.0,19.0,14.0,19.0,17.0,9.0,12.0,19.0,11.0,15.0,12.0,10.0,10.0,6.0,5.0,10.0,9.0,4.0,7.0,9.0,9.0,7.0,7.0,8.0,6.0,2.0,4.0,2.0,2.0,3.0,,,1.0,,2.0,,1.0 F86702,11.0,19.0,21.0,23.0,29.0,20.0,37.0,24.0,26.0,31.0,34.0,47.0,45.0,45.0,35.0,41.0,27.0,34.0,20.0,22.0,24.0,24.0,29.0,20.0,28.0,35.0,27.0,30.0,31.0,29.0,20.0,17.0,44.0,30.0,38.0,38.0,51.0,46.0,36.0,46.0,44.0,37.0,53.0,51.0,32.0,41.0,40.0,28.0,30.0,28.0,28.0,22.0,22.0,26.0,26.0,20.0,26.0,22.0,26.0,22.0,24.0,25.0,32.0,16.0,20.0,20.0,20.0,14.0,23.0,23.0,15.0,24.0,25.0,15.0,13.0,12.0,15.0,16.0,10.0,17.0,16.0,9.0,11.0,11.0,11.0,12.0,7.0,9.0,12.0,4.0,12.0,5.0,5.0,1.0,3.0,7.0 F86705,11.0,18.0,18.0,24.0,11.0,10.0,16.0,13.0,6.0,15.0,9.0,16.0,15.0,10.0,27.0,13.0,17.0,16.0,17.0,14.0,10.0,17.0,21.0,17.0,17.0,23.0,36.0,28.0,31.0,26.0,22.0,26.0,41.0,46.0,40.0,42.0,36.0,35.0,42.0,29.0,29.0,33.0,41.0,22.0,39.0,22.0,20.0,20.0,21.0,26.0,19.0,13.0,13.0,22.0,24.0,15.0,20.0,17.0,23.0,16.0,22.0,10.0,22.0,13.0,10.0,16.0,14.0,12.0,16.0,6.0,5.0,10.0,8.0,5.0,7.0,5.0,5.0,9.0,5.0,7.0,4.0,1.0,8.0,5.0,3.0,3.0,1.0,2.0,1.0,1.0,2.0,2.0,,1.0,,1.0 F86707,28.0,24.0,34.0,45.0,42.0,41.0,40.0,41.0,54.0,41.0,45.0,45.0,49.0,36.0,41.0,51.0,36.0,44.0,42.0,40.0,33.0,39.0,28.0,39.0,34.0,57.0,47.0,47.0,52.0,52.0,49.0,50.0,55.0,45.0,66.0,50.0,46.0,43.0,65.0,56.0,60.0,54.0,57.0,43.0,64.0,57.0,56.0,41.0,41.0,37.0,47.0,45.0,40.0,44.0,44.0,48.0,47.0,34.0,42.0,39.0,38.0,34.0,27.0,35.0,28.0,29.0,24.0,26.0,39.0,20.0,24.0,16.0,28.0,19.0,17.0,20.0,22.0,24.0,18.0,13.0,12.0,17.0,9.0,15.0,6.0,5.0,8.0,5.0,5.0,3.0,3.0,2.0,1.0,2.0,1.0,5.0 F86708,14.0,18.0,11.0,7.0,14.0,13.0,19.0,13.0,18.0,14.0,18.0,18.0,10.0,26.0,25.0,12.0,22.0,19.0,14.0,18.0,13.0,15.0,25.0,24.0,18.0,20.0,15.0,19.0,27.0,20.0,22.0,26.0,27.0,19.0,22.0,26.0,18.0,22.0,19.0,23.0,14.0,15.0,22.0,20.0,18.0,19.0,24.0,22.0,16.0,20.0,18.0,23.0,31.0,22.0,16.0,22.0,17.0,19.0,20.0,24.0,24.0,16.0,23.0,15.0,14.0,12.0,22.0,13.0,6.0,11.0,11.0,13.0,6.0,8.0,6.0,9.0,9.0,10.0,5.0,5.0,6.0,2.0,7.0,2.0,2.0,3.0,2.0,1.0,3.0,1.0,,3.0,1.0,1.0,1.0,2.0 F86712,21.0,26.0,22.0,25.0,18.0,19.0,14.0,13.0,19.0,15.0,20.0,11.0,14.0,18.0,19.0,10.0,14.0,17.0,13.0,10.0,13.0,8.0,17.0,12.0,19.0,24.0,29.0,32.0,36.0,16.0,26.0,35.0,42.0,45.0,50.0,42.0,32.0,46.0,57.0,35.0,28.0,46.0,36.0,23.0,31.0,22.0,23.0,19.0,30.0,23.0,13.0,13.0,27.0,15.0,19.0,14.0,13.0,20.0,15.0,15.0,14.0,17.0,11.0,19.0,13.0,7.0,9.0,10.0,8.0,5.0,11.0,6.0,10.0,7.0,8.0,15.0,8.0,8.0,7.0,7.0,2.0,4.0,14.0,4.0,1.0,2.0,2.0,3.0,1.0,1.0,5.0,5.0,2.0,1.0,,3.0 F86731,31.0,23.0,28.0,42.0,38.0,31.0,40.0,45.0,35.0,22.0,36.0,26.0,39.0,16.0,21.0,27.0,29.0,33.0,20.0,19.0,24.0,20.0,25.0,25.0,31.0,36.0,25.0,39.0,39.0,28.0,40.0,34.0,47.0,30.0,51.0,50.0,41.0,47.0,53.0,40.0,44.0,41.0,38.0,42.0,34.0,39.0,43.0,27.0,44.0,24.0,38.0,30.0,25.0,35.0,32.0,26.0,25.0,21.0,35.0,24.0,28.0,24.0,28.0,25.0,19.0,24.0,25.0,23.0,27.0,31.0,20.0,15.0,9.0,11.0,20.0,18.0,14.0,18.0,18.0,14.0,6.0,3.0,12.0,5.0,3.0,2.0,7.0,4.0,3.0,8.0,3.0,4.0,2.0,,1.0,5.0 Y00090,35.0,43.0,38.0,43.0,36.0,37.0,50.0,48.0,67.0,57.0,52.0,50.0,42.0,54.0,61.0,64.0,53.0,54.0,43.0,40.0,47.0,60.0,75.0,46.0,56.0,55.0,70.0,74.0,69.0,53.0,58.0,52.0,52.0,77.0,55.0,64.0,56.0,73.0,66.0,68.0,64.0,71.0,67.0,62.0,58.0,79.0,49.0,51.0,38.0,58.0,42.0,45.0,38.0,38.0,47.0,48.0,51.0,42.0,43.0,40.0,46.0,42.0,36.0,33.0,39.0,26.0,36.0,28.0,24.0,29.0,31.0,26.0,14.0,14.0,31.0,25.0,16.0,7.0,18.0,17.0,14.0,11.0,8.0,8.0,11.0,10.0,15.0,9.0,12.0,6.0,4.0,5.0,3.0,2.0,2.0,7.0 Y00155,60.0,73.0,76.0,67.0,76.0,76.0,70.0,81.0,78.0,75.0,67.0,79.0,79.0,92.0,65.0,76.0,84.0,73.0,73.0,50.0,61.0,70.0,68.0,89.0,97.0,91.0,102.0,111.0,97.0,109.0,102.0,100.0,93.0,87.0,99.0,94.0,96.0,92.0,76.0,81.0,87.0,96.0,71.0,72.0,96.0,77.0,80.0,63.0,75.0,54.0,45.0,53.0,57.0,59.0,57.0,49.0,48.0,40.0,47.0,31.0,42.0,31.0,36.0,31.0,27.0,28.0,25.0,20.0,27.0,28.0,20.0,17.0,13.0,19.0,16.0,7.0,11.0,14.0,21.0,14.0,11.0,15.0,9.0,8.0,6.0,8.0,10.0,5.0,5.0,4.0,7.0,5.0,5.0,2.0,4.0,8.0 Y00312,12.0,19.0,30.0,25.0,32.0,32.0,37.0,33.0,35.0,37.0,30.0,47.0,25.0,45.0,37.0,42.0,34.0,39.0,35.0,39.0,39.0,28.0,23.0,26.0,27.0,32.0,35.0,25.0,22.0,26.0,32.0,31.0,33.0,39.0,35.0,38.0,33.0,41.0,41.0,41.0,39.0,36.0,37.0,41.0,50.0,42.0,33.0,28.0,34.0,32.0,33.0,42.0,33.0,33.0,30.0,25.0,37.0,34.0,28.0,34.0,24.0,18.0,30.0,19.0,32.0,19.0,21.0,13.0,13.0,16.0,10.0,15.0,12.0,7.0,8.0,13.0,11.0,20.0,13.0,11.0,4.0,5.0,6.0,10.0,4.0,3.0,7.0,3.0,4.0,4.0,2.0,1.0,2.0,,1.0,2.0 Y00403,51.0,46.0,42.0,36.0,34.0,42.0,26.0,18.0,35.0,24.0,30.0,23.0,31.0,25.0,29.0,28.0,18.0,25.0,34.0,32.0,19.0,32.0,48.0,40.0,56.0,68.0,92.0,114.0,137.0,151.0,147.0,158.0,171.0,152.0,156.0,155.0,132.0,113.0,115.0,102.0,110.0,77.0,75.0,78.0,52.0,50.0,56.0,51.0,31.0,35.0,29.0,32.0,33.0,29.0,27.0,19.0,25.0,29.0,26.0,28.0,24.0,25.0,21.0,18.0,15.0,16.0,18.0,14.0,11.0,9.0,8.0,8.0,10.0,7.0,3.0,6.0,2.0,4.0,5.0,,3.0,4.0,4.0,3.0,,1.0,,3.0,1.0,1.0,,,,,, Y00918,34.0,36.0,48.0,38.0,37.0,37.0,41.0,42.0,44.0,45.0,46.0,48.0,36.0,44.0,32.0,36.0,49.0,39.0,31.0,22.0,45.0,34.0,44.0,48.0,39.0,52.0,46.0,53.0,41.0,54.0,47.0,55.0,42.0,40.0,64.0,67.0,66.0,50.0,54.0,54.0,65.0,46.0,52.0,57.0,54.0,45.0,36.0,50.0,44.0,40.0,36.0,36.0,49.0,44.0,37.0,34.0,37.0,33.0,32.0,26.0,38.0,29.0,31.0,44.0,26.0,29.0,35.0,29.0,26.0,25.0,30.0,32.0,22.0,23.0,20.0,19.0,15.0,18.0,11.0,18.0,8.0,10.0,13.0,8.0,6.0,8.0,7.0,12.0,5.0,8.0,3.0,4.0,3.0,3.0,4.0,7.0 Y01280,10.0,8.0,10.0,13.0,14.0,14.0,18.0,13.0,23.0,21.0,18.0,15.0,15.0,13.0,14.0,19.0,17.0,21.0,20.0,19.0,16.0,9.0,18.0,26.0,18.0,12.0,23.0,13.0,10.0,13.0,21.0,16.0,24.0,15.0,16.0,19.0,21.0,14.0,24.0,23.0,14.0,15.0,18.0,14.0,16.0,10.0,13.0,17.0,14.0,14.0,17.0,15.0,18.0,18.0,10.0,11.0,10.0,12.0,16.0,7.0,6.0,7.0,9.0,3.0,6.0,6.0,4.0,14.0,6.0,2.0,3.0,5.0,3.0,,2.0,1.0,1.0,3.0,3.0,1.0,1.0,2.0,3.0,2.0,1.0,,2.0,1.0,1.0,3.0,,1.0,1.0,,, Y01291,65.0,60.0,63.0,65.0,58.0,76.0,75.0,72.0,63.0,69.0,70.0,63.0,59.0,65.0,59.0,56.0,64.0,60.0,50.0,61.0,51.0,51.0,53.0,58.0,57.0,86.0,70.0,94.0,75.0,80.0,84.0,85.0,89.0,73.0,79.0,90.0,91.0,80.0,79.0,81.0,75.0,87.0,85.0,73.0,54.0,72.0,61.0,67.0,56.0,54.0,75.0,56.0,75.0,55.0,58.0,75.0,65.0,90.0,61.0,66.0,78.0,61.0,53.0,61.0,53.0,53.0,51.0,40.0,33.0,33.0,39.0,35.0,31.0,27.0,36.0,39.0,25.0,34.0,36.0,25.0,28.0,24.0,35.0,15.0,17.0,18.0,25.0,20.0,18.0,14.0,14.0,13.0,10.0,9.0,1.0,28.0 Y01719,54.0,67.0,65.0,56.0,74.0,70.0,70.0,95.0,76.0,88.0,73.0,88.0,76.0,86.0,77.0,66.0,69.0,68.0,66.0,57.0,63.0,59.0,65.0,72.0,70.0,62.0,78.0,75.0,77.0,78.0,89.0,81.0,79.0,86.0,89.0,97.0,91.0,89.0,94.0,102.0,91.0,85.0,71.0,85.0,83.0,60.0,61.0,69.0,71.0,56.0,62.0,48.0,56.0,42.0,46.0,47.0,34.0,36.0,33.0,37.0,38.0,29.0,28.0,26.0,28.0,23.0,22.0,20.0,14.0,23.0,7.0,16.0,15.0,16.0,18.0,19.0,10.0,12.0,11.0,12.0,5.0,10.0,10.0,9.0,6.0,7.0,2.0,2.0,4.0,7.0,4.0,3.0,3.0,1.0,2.0,7.0 Y01795,47.0,51.0,69.0,62.0,67.0,66.0,67.0,64.0,66.0,50.0,76.0,67.0,55.0,51.0,63.0,57.0,66.0,54.0,52.0,41.0,50.0,49.0,46.0,57.0,57.0,71.0,66.0,83.0,72.0,69.0,80.0,62.0,59.0,80.0,82.0,91.0,74.0,74.0,75.0,76.0,58.0,58.0,65.0,67.0,69.0,55.0,48.0,49.0,65.0,37.0,52.0,46.0,35.0,36.0,38.0,48.0,39.0,26.0,39.0,40.0,34.0,42.0,33.0,28.0,22.0,22.0,22.0,12.0,28.0,21.0,14.0,19.0,17.0,13.0,12.0,16.0,17.0,11.0,7.0,6.0,10.0,7.0,11.0,7.0,6.0,2.0,7.0,8.0,2.0,2.0,3.0,2.0,2.0,,2.0,2.0 Y01839,59.0,56.0,49.0,47.0,32.0,35.0,59.0,38.0,46.0,38.0,43.0,41.0,43.0,39.0,40.0,48.0,39.0,39.0,33.0,36.0,40.0,35.0,37.0,43.0,48.0,58.0,36.0,56.0,55.0,60.0,60.0,65.0,67.0,80.0,99.0,91.0,92.0,79.0,92.0,82.0,101.0,67.0,82.0,65.0,59.0,67.0,54.0,44.0,64.0,53.0,52.0,34.0,43.0,40.0,42.0,36.0,52.0,41.0,37.0,33.0,47.0,35.0,31.0,29.0,27.0,35.0,24.0,24.0,30.0,23.0,27.0,28.0,16.0,17.0,23.0,12.0,15.0,17.0,15.0,7.0,6.0,6.0,8.0,11.0,13.0,3.0,5.0,3.0,4.0,2.0,4.0,7.0,4.0,2.0,,5.0 Y02575,133.0,143.0,147.0,172.0,169.0,191.0,187.0,186.0,195.0,211.0,203.0,199.0,201.0,180.0,189.0,175.0,177.0,160.0,138.0,108.0,132.0,129.0,114.0,138.0,133.0,151.0,131.0,180.0,145.0,150.0,182.0,202.0,191.0,218.0,200.0,242.0,234.0,222.0,258.0,231.0,202.0,203.0,195.0,214.0,213.0,173.0,177.0,152.0,154.0,135.0,139.0,122.0,104.0,127.0,95.0,99.0,88.0,105.0,62.0,85.0,70.0,77.0,52.0,57.0,62.0,46.0,42.0,33.0,34.0,34.0,31.0,26.0,23.0,15.0,19.0,29.0,14.0,23.0,10.0,16.0,8.0,13.0,12.0,7.0,12.0,11.0,8.0,8.0,7.0,3.0,10.0,1.0,3.0,5.0,2.0,13.0 Y02928,168.0,163.0,157.0,161.0,140.0,144.0,119.0,157.0,113.0,109.0,107.0,96.0,90.0,106.0,106.0,94.0,96.0,91.0,75.0,94.0,94.0,101.0,125.0,198.0,234.0,296.0,329.0,398.0,420.0,434.0,433.0,412.0,397.0,405.0,398.0,382.0,360.0,288.0,305.0,247.0,237.0,204.0,178.0,157.0,144.0,149.0,134.0,122.0,94.0,119.0,89.0,80.0,85.0,72.0,82.0,80.0,90.0,73.0,60.0,72.0,67.0,55.0,70.0,39.0,52.0,48.0,49.0,44.0,32.0,37.0,28.0,21.0,24.0,20.0,15.0,8.0,12.0,13.0,13.0,8.0,4.0,10.0,5.0,6.0,5.0,4.0,1.0,2.0,3.0,1.0,2.0,,,4.0,1.0,2.0 Y02973,59.0,79.0,71.0,65.0,75.0,60.0,82.0,87.0,56.0,81.0,74.0,52.0,60.0,68.0,65.0,56.0,46.0,43.0,36.0,35.0,44.0,36.0,33.0,46.0,58.0,47.0,59.0,68.0,60.0,86.0,93.0,77.0,96.0,96.0,116.0,119.0,113.0,106.0,114.0,115.0,107.0,83.0,94.0,95.0,88.0,66.0,71.0,59.0,69.0,55.0,42.0,57.0,41.0,43.0,60.0,30.0,45.0,36.0,38.0,35.0,37.0,44.0,34.0,25.0,38.0,26.0,15.0,21.0,25.0,17.0,17.0,23.0,17.0,16.0,11.0,6.0,8.0,9.0,9.0,10.0,11.0,12.0,6.0,5.0,3.0,5.0,1.0,,4.0,3.0,2.0,,,,,1.0 Y02987,289.0,276.0,306.0,289.0,223.0,206.0,224.0,210.0,205.0,185.0,185.0,179.0,185.0,143.0,170.0,194.0,158.0,151.0,166.0,169.0,179.0,206.0,266.0,290.0,365.0,425.0,427.0,499.0,443.0,410.0,424.0,421.0,367.0,368.0,317.0,288.0,263.0,303.0,282.0,268.0,255.0,229.0,221.0,198.0,211.0,164.0,159.0,137.0,141.0,146.0,141.0,149.0,120.0,103.0,104.0,117.0,112.0,80.0,90.0,87.0,84.0,66.0,76.0,71.0,75.0,48.0,49.0,36.0,55.0,54.0,46.0,47.0,37.0,26.0,38.0,41.0,29.0,21.0,17.0,14.0,19.0,22.0,19.0,22.0,6.0,18.0,11.0,8.0,11.0,13.0,5.0,3.0,6.0,3.0,4.0,13.0 Y03023,208.0,209.0,174.0,187.0,209.0,218.0,190.0,200.0,195.0,164.0,185.0,200.0,193.0,198.0,188.0,185.0,186.0,177.0,189.0,190.0,192.0,204.0,259.0,265.0,330.0,399.0,396.0,443.0,420.0,501.0,475.0,460.0,501.0,437.0,455.0,444.0,412.0,377.0,363.0,365.0,329.0,294.0,284.0,255.0,240.0,204.0,198.0,174.0,155.0,144.0,141.0,139.0,126.0,107.0,109.0,84.0,110.0,93.0,83.0,84.0,65.0,71.0,66.0,58.0,70.0,57.0,55.0,54.0,50.0,60.0,39.0,48.0,47.0,36.0,31.0,35.0,20.0,28.0,20.0,26.0,21.0,13.0,22.0,18.0,17.0,13.0,11.0,15.0,11.0,9.0,5.0,4.0,5.0,3.0,,3.0 Y03049,110.0,133.0,127.0,117.0,149.0,130.0,131.0,146.0,143.0,144.0,121.0,119.0,134.0,102.0,120.0,115.0,126.0,116.0,109.0,106.0,88.0,90.0,93.0,114.0,154.0,162.0,178.0,201.0,194.0,238.0,200.0,186.0,171.0,167.0,175.0,166.0,161.0,155.0,149.0,148.0,139.0,125.0,121.0,129.0,134.0,120.0,80.0,87.0,109.0,86.0,80.0,80.0,92.0,80.0,77.0,81.0,80.0,81.0,61.0,70.0,63.0,61.0,59.0,43.0,46.0,50.0,49.0,36.0,44.0,28.0,33.0,22.0,21.0,28.0,17.0,16.0,18.0,13.0,14.0,17.0,11.0,10.0,12.0,7.0,10.0,6.0,9.0,8.0,11.0,3.0,7.0,2.0,4.0,2.0,1.0,5.0 Y04273,96.0,119.0,121.0,125.0,87.0,89.0,98.0,91.0,87.0,90.0,73.0,87.0,94.0,73.0,73.0,84.0,68.0,75.0,97.0,124.0,153.0,147.0,188.0,281.0,377.0,418.0,376.0,300.0,343.0,347.0,352.0,323.0,306.0,312.0,290.0,304.0,254.0,237.0,208.0,207.0,187.0,161.0,164.0,136.0,124.0,120.0,114.0,98.0,98.0,81.0,85.0,64.0,67.0,57.0,70.0,62.0,58.0,44.0,43.0,45.0,41.0,37.0,42.0,42.0,33.0,36.0,27.0,35.0,25.0,27.0,27.0,12.0,18.0,7.0,8.0,10.0,4.0,9.0,7.0,8.0,4.0,5.0,2.0,4.0,3.0,1.0,3.0,2.0,,2.0,1.0,,2.0,,,1.0 Y06592,,,,,,,,,,,,,,,,,,,,,,,1.0,2.0,1.0,2.0,1.0,,,,2.0,,4.0,3.0,1.0,,3.0,1.0,,3.0,1.0,1.0,1.0,3.0,1.0,2.0,,1.0,,,2.0,2.0,1.0,2.0,3.0,2.0,,,1.0,1.0,,1.0,,,2.0,1.0,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,, Y08371,39.0,37.0,32.0,38.0,22.0,26.0,21.0,22.0,16.0,17.0,22.0,15.0,22.0,16.0,16.0,15.0,13.0,13.0,18.0,23.0,12.0,32.0,23.0,30.0,42.0,35.0,50.0,51.0,56.0,46.0,58.0,61.0,48.0,44.0,51.0,33.0,26.0,27.0,37.0,32.0,17.0,21.0,22.0,25.0,13.0,17.0,9.0,14.0,17.0,17.0,16.0,6.0,14.0,7.0,10.0,12.0,15.0,11.0,9.0,2.0,2.0,9.0,4.0,2.0,2.0,4.0,2.0,4.0,2.0,7.0,2.0,1.0,1.0,,2.0,2.0,2.0,,2.0,1.0,1.0,1.0,1.0,2.0,1.0,1.0,,,1.0,,,,,,,1.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 E83003,44.0,52.0,49.0,60.0,42.0,47.0,49.0,61.0,43.0,61.0,48.0,67.0,48.0,76.0,62.0,65.0,58.0,64.0,68.0,53.0,31.0,57.0,43.0,58.0,59.0,64.0,56.0,63.0,77.0,84.0,80.0,85.0,93.0,88.0,75.0,80.0,86.0,102.0,91.0,80.0,76.0,72.0,81.0,79.0,88.0,88.0,86.0,98.0,85.0,65.0,73.0,66.0,67.0,70.0,62.0,69.0,81.0,72.0,70.0,60.0,51.0,65.0,75.0,60.0,55.0,56.0,69.0,57.0,52.0,51.0,44.0,48.0,48.0,45.0,45.0,44.0,36.0,48.0,42.0,34.0,29.0,31.0,32.0,29.0,15.0,22.0,13.0,18.0,12.0,12.0,17.0,10.0,11.0,4.0,3.0,13.0 E83005,22.0,23.0,35.0,42.0,36.0,26.0,36.0,41.0,34.0,32.0,37.0,53.0,42.0,34.0,27.0,34.0,24.0,24.0,29.0,16.0,24.0,22.0,34.0,33.0,36.0,33.0,37.0,53.0,54.0,59.0,64.0,54.0,44.0,75.0,64.0,60.0,55.0,60.0,69.0,58.0,61.0,58.0,65.0,62.0,71.0,56.0,50.0,55.0,48.0,52.0,48.0,27.0,42.0,36.0,30.0,33.0,32.0,33.0,35.0,28.0,33.0,32.0,32.0,32.0,23.0,18.0,19.0,25.0,18.0,19.0,17.0,21.0,19.0,15.0,13.0,21.0,14.0,13.0,21.0,20.0,9.0,19.0,11.0,13.0,15.0,10.0,7.0,4.0,10.0,5.0,6.0,7.0,3.0,2.0,1.0,11.0 E83006,29.0,24.0,35.0,25.0,31.0,31.0,39.0,30.0,45.0,36.0,32.0,39.0,34.0,36.0,43.0,36.0,34.0,44.0,41.0,44.0,28.0,46.0,37.0,49.0,51.0,38.0,48.0,43.0,57.0,45.0,65.0,52.0,54.0,60.0,46.0,45.0,48.0,48.0,55.0,64.0,50.0,61.0,38.0,55.0,52.0,66.0,59.0,53.0,63.0,56.0,57.0,49.0,46.0,39.0,40.0,51.0,55.0,46.0,31.0,48.0,48.0,40.0,44.0,45.0,32.0,30.0,45.0,34.0,24.0,23.0,27.0,30.0,26.0,23.0,18.0,26.0,29.0,11.0,18.0,8.0,14.0,13.0,16.0,16.0,11.0,6.0,11.0,16.0,18.0,13.0,12.0,10.0,4.0,6.0,11.0,26.0 E83007,11.0,11.0,15.0,23.0,17.0,26.0,19.0,27.0,29.0,25.0,32.0,24.0,40.0,32.0,35.0,30.0,29.0,37.0,31.0,29.0,15.0,25.0,26.0,22.0,37.0,24.0,40.0,28.0,28.0,37.0,48.0,42.0,42.0,43.0,34.0,40.0,39.0,37.0,46.0,40.0,43.0,37.0,33.0,36.0,47.0,45.0,32.0,32.0,32.0,44.0,36.0,28.0,30.0,28.0,29.0,37.0,34.0,37.0,33.0,28.0,35.0,31.0,28.0,30.0,29.0,36.0,26.0,17.0,22.0,24.0,29.0,17.0,13.0,13.0,19.0,25.0,16.0,12.0,15.0,16.0,17.0,12.0,16.0,10.0,13.0,16.0,6.0,7.0,6.0,4.0,6.0,5.0,1.0,7.0,1.0,6.0 E83008,24.0,24.0,31.0,38.0,40.0,58.0,60.0,58.0,48.0,56.0,65.0,53.0,68.0,67.0,67.0,62.0,61.0,68.0,61.0,44.0,30.0,26.0,33.0,37.0,41.0,38.0,45.0,45.0,52.0,38.0,47.0,53.0,61.0,50.0,52.0,65.0,43.0,70.0,49.0,62.0,67.0,68.0,75.0,63.0,65.0,88.0,78.0,79.0,65.0,63.0,75.0,57.0,59.0,72.0,73.0,55.0,50.0,56.0,52.0,58.0,55.0,58.0,45.0,40.0,48.0,42.0,39.0,39.0,42.0,42.0,36.0,39.0,42.0,24.0,35.0,48.0,35.0,34.0,40.0,34.0,28.0,19.0,25.0,18.0,22.0,14.0,19.0,9.0,13.0,13.0,10.0,6.0,10.0,8.0,7.0,23.0 E83009,57.0,63.0,69.0,59.0,54.0,75.0,78.0,88.0,89.0,96.0,69.0,96.0,98.0,83.0,82.0,85.0,99.0,97.0,89.0,79.0,65.0,62.0,87.0,71.0,93.0,87.0,84.0,71.0,91.0,86.0,77.0,85.0,103.0,77.0,86.0,108.0,86.0,99.0,100.0,96.0,97.0,93.0,106.0,89.0,113.0,99.0,107.0,87.0,88.0,77.0,87.0,87.0,103.0,96.0,92.0,77.0,101.0,80.0,73.0,64.0,76.0,67.0,42.0,78.0,68.0,60.0,52.0,56.0,55.0,53.0,60.0,60.0,51.0,58.0,58.0,65.0,67.0,62.0,55.0,53.0,53.0,44.0,41.0,31.0,37.0,36.0,25.0,24.0,22.0,21.0,22.0,12.0,19.0,7.0,7.0,21.0 E83010,55.0,46.0,53.0,59.0,56.0,54.0,60.0,62.0,61.0,62.0,78.0,76.0,89.0,90.0,74.0,76.0,62.0,60.0,78.0,57.0,47.0,46.0,44.0,74.0,81.0,72.0,81.0,78.0,102.0,99.0,114.0,83.0,102.0,98.0,109.0,96.0,99.0,97.0,104.0,92.0,125.0,89.0,118.0,127.0,115.0,96.0,110.0,92.0,93.0,96.0,86.0,68.0,79.0,68.0,71.0,64.0,62.0,64.0,58.0,65.0,63.0,51.0,70.0,58.0,68.0,54.0,77.0,73.0,61.0,59.0,69.0,48.0,58.0,62.0,55.0,54.0,43.0,48.0,56.0,44.0,31.0,30.0,33.0,23.0,19.0,26.0,16.0,19.0,18.0,20.0,9.0,9.0,9.0,9.0,7.0,14.0 E83011,50.0,51.0,65.0,49.0,64.0,58.0,53.0,65.0,73.0,70.0,62.0,60.0,85.0,76.0,61.0,80.0,88.0,75.0,79.0,72.0,74.0,69.0,88.0,71.0,116.0,102.0,81.0,94.0,106.0,104.0,105.0,127.0,134.0,126.0,103.0,126.0,113.0,109.0,87.0,131.0,93.0,84.0,94.0,73.0,90.0,93.0,85.0,72.0,69.0,77.0,65.0,72.0,84.0,53.0,77.0,67.0,48.0,55.0,52.0,57.0,52.0,49.0,31.0,51.0,35.0,41.0,34.0,35.0,28.0,26.0,33.0,29.0,23.0,31.0,20.0,25.0,26.0,20.0,17.0,16.0,13.0,10.0,5.0,10.0,8.0,10.0,7.0,4.0,6.0,4.0,2.0,4.0,4.0,1.0,3.0,1.0 E83012,51.0,44.0,60.0,61.0,48.0,40.0,43.0,55.0,51.0,64.0,47.0,53.0,58.0,58.0,45.0,48.0,42.0,48.0,44.0,37.0,32.0,38.0,49.0,48.0,62.0,70.0,48.0,71.0,76.0,82.0,75.0,84.0,74.0,88.0,76.0,81.0,82.0,82.0,99.0,97.0,83.0,86.0,96.0,103.0,76.0,76.0,67.0,78.0,69.0,66.0,72.0,68.0,73.0,85.0,73.0,64.0,61.0,66.0,79.0,57.0,59.0,52.0,65.0,67.0,55.0,63.0,48.0,42.0,61.0,55.0,41.0,53.0,67.0,42.0,49.0,45.0,62.0,48.0,60.0,39.0,32.0,34.0,41.0,20.0,26.0,22.0,26.0,26.0,20.0,19.0,15.0,14.0,10.0,6.0,7.0,10.0 E83013,30.0,24.0,16.0,23.0,18.0,26.0,27.0,28.0,24.0,27.0,28.0,30.0,34.0,29.0,37.0,31.0,27.0,19.0,21.0,15.0,26.0,22.0,29.0,39.0,50.0,66.0,53.0,54.0,49.0,54.0,50.0,48.0,46.0,46.0,42.0,45.0,34.0,45.0,38.0,45.0,47.0,45.0,48.0,53.0,38.0,48.0,46.0,37.0,33.0,42.0,46.0,34.0,34.0,42.0,32.0,32.0,44.0,34.0,35.0,28.0,41.0,31.0,28.0,24.0,31.0,32.0,33.0,33.0,22.0,16.0,28.0,23.0,30.0,24.0,35.0,20.0,20.0,23.0,21.0,18.0,24.0,22.0,17.0,18.0,13.0,12.0,12.0,10.0,10.0,6.0,10.0,9.0,4.0,4.0,6.0,5.0 E83016,144.0,130.0,139.0,121.0,129.0,141.0,137.0,139.0,169.0,148.0,145.0,154.0,162.0,131.0,144.0,179.0,166.0,191.0,159.0,126.0,108.0,144.0,136.0,149.0,148.0,194.0,157.0,192.0,160.0,185.0,193.0,193.0,197.0,211.0,187.0,216.0,209.0,217.0,204.0,173.0,206.0,218.0,203.0,176.0,220.0,182.0,174.0,176.0,174.0,170.0,157.0,160.0,145.0,155.0,151.0,136.0,129.0,132.0,110.0,150.0,123.0,121.0,134.0,118.0,116.0,143.0,102.0,98.0,97.0,81.0,93.0,84.0,84.0,76.0,83.0,102.0,82.0,90.0,112.0,79.0,74.0,77.0,52.0,56.0,43.0,24.0,54.0,38.0,29.0,25.0,15.0,14.0,16.0,14.0,11.0,21.0 E83017,64.0,55.0,75.0,70.0,88.0,81.0,89.0,99.0,109.0,92.0,105.0,81.0,136.0,96.0,94.0,120.0,133.0,94.0,98.0,77.0,73.0,78.0,80.0,89.0,94.0,99.0,96.0,111.0,104.0,119.0,100.0,99.0,112.0,114.0,98.0,118.0,137.0,124.0,124.0,123.0,116.0,116.0,141.0,151.0,143.0,155.0,125.0,128.0,124.0,140.0,118.0,126.0,138.0,127.0,130.0,148.0,124.0,115.0,107.0,152.0,126.0,120.0,109.0,127.0,104.0,94.0,105.0,105.0,83.0,79.0,78.0,78.0,77.0,75.0,77.0,86.0,77.0,77.0,87.0,63.0,72.0,61.0,41.0,52.0,29.0,29.0,53.0,34.0,24.0,22.0,27.0,22.0,23.0,16.0,11.0,34.0 E83018,69.0,67.0,82.0,85.0,87.0,103.0,102.0,98.0,109.0,111.0,97.0,103.0,101.0,99.0,125.0,122.0,94.0,111.0,100.0,75.0,88.0,93.0,83.0,103.0,108.0,128.0,148.0,117.0,127.0,137.0,143.0,144.0,146.0,144.0,170.0,155.0,171.0,159.0,162.0,166.0,159.0,165.0,144.0,146.0,157.0,132.0,121.0,146.0,114.0,115.0,125.0,100.0,123.0,132.0,120.0,98.0,124.0,111.0,89.0,115.0,98.0,109.0,113.0,112.0,107.0,95.0,104.0,103.0,84.0,92.0,74.0,82.0,71.0,66.0,65.0,76.0,67.0,59.0,60.0,42.0,40.0,45.0,37.0,30.0,38.0,35.0,36.0,31.0,31.0,22.0,24.0,15.0,14.0,11.0,12.0,28.0 E83020,50.0,69.0,58.0,53.0,53.0,58.0,74.0,72.0,68.0,59.0,71.0,99.0,71.0,82.0,72.0,83.0,78.0,79.0,76.0,71.0,56.0,58.0,77.0,92.0,106.0,110.0,107.0,110.0,112.0,112.0,96.0,93.0,103.0,111.0,104.0,98.0,100.0,124.0,116.0,101.0,102.0,84.0,122.0,96.0,109.0,97.0,92.0,85.0,63.0,94.0,73.0,66.0,71.0,65.0,63.0,69.0,78.0,81.0,49.0,68.0,47.0,52.0,55.0,56.0,41.0,48.0,52.0,39.0,47.0,49.0,40.0,29.0,38.0,41.0,51.0,42.0,30.0,35.0,38.0,26.0,35.0,29.0,33.0,15.0,15.0,21.0,13.0,13.0,16.0,17.0,18.0,10.0,8.0,7.0,4.0,24.0 E83021,37.0,42.0,41.0,53.0,52.0,58.0,59.0,73.0,73.0,77.0,69.0,76.0,81.0,90.0,93.0,75.0,75.0,79.0,61.0,56.0,56.0,53.0,61.0,70.0,72.0,76.0,70.0,80.0,77.0,99.0,106.0,85.0,92.0,95.0,85.0,106.0,85.0,90.0,108.0,104.0,99.0,114.0,104.0,106.0,100.0,96.0,92.0,99.0,76.0,102.0,102.0,84.0,91.0,84.0,89.0,83.0,95.0,83.0,75.0,89.0,76.0,82.0,66.0,67.0,51.0,68.0,70.0,63.0,60.0,55.0,52.0,52.0,53.0,68.0,45.0,55.0,51.0,58.0,33.0,39.0,48.0,45.0,45.0,26.0,29.0,29.0,30.0,24.0,19.0,16.0,20.0,14.0,9.0,9.0,10.0,26.0 E83024,53.0,49.0,55.0,65.0,65.0,58.0,51.0,60.0,65.0,70.0,63.0,73.0,70.0,76.0,69.0,72.0,70.0,75.0,56.0,51.0,50.0,51.0,55.0,60.0,52.0,63.0,60.0,54.0,61.0,79.0,84.0,86.0,75.0,77.0,86.0,84.0,81.0,96.0,94.0,104.0,77.0,91.0,87.0,82.0,92.0,81.0,96.0,99.0,91.0,97.0,88.0,93.0,81.0,68.0,77.0,86.0,81.0,83.0,92.0,82.0,75.0,78.0,57.0,68.0,51.0,65.0,63.0,67.0,49.0,47.0,53.0,53.0,48.0,45.0,60.0,43.0,56.0,44.0,50.0,36.0,52.0,40.0,35.0,24.0,39.0,35.0,22.0,24.0,20.0,22.0,18.0,19.0,11.0,16.0,16.0,25.0 E83025,18.0,30.0,34.0,41.0,31.0,33.0,46.0,37.0,48.0,44.0,59.0,54.0,52.0,65.0,59.0,62.0,51.0,56.0,52.0,52.0,48.0,50.0,48.0,44.0,57.0,42.0,58.0,46.0,45.0,48.0,46.0,63.0,43.0,50.0,53.0,45.0,47.0,61.0,48.0,54.0,56.0,46.0,61.0,47.0,63.0,63.0,55.0,64.0,32.0,56.0,63.0,42.0,52.0,41.0,42.0,48.0,54.0,47.0,47.0,50.0,45.0,52.0,35.0,38.0,41.0,33.0,36.0,33.0,42.0,49.0,32.0,42.0,29.0,36.0,36.0,31.0,29.0,31.0,26.0,31.0,15.0,17.0,13.0,13.0,16.0,15.0,14.0,6.0,8.0,10.0,6.0,8.0,9.0,4.0,11.0,12.0 E83026,6.0,7.0,18.0,13.0,11.0,14.0,23.0,19.0,22.0,21.0,24.0,17.0,18.0,30.0,11.0,28.0,33.0,16.0,21.0,13.0,14.0,21.0,18.0,16.0,23.0,22.0,18.0,22.0,20.0,24.0,28.0,26.0,22.0,28.0,30.0,30.0,22.0,24.0,27.0,30.0,30.0,43.0,47.0,38.0,24.0,31.0,31.0,31.0,23.0,26.0,23.0,25.0,26.0,27.0,27.0,25.0,22.0,19.0,23.0,29.0,31.0,21.0,31.0,38.0,24.0,26.0,18.0,27.0,24.0,31.0,22.0,17.0,28.0,22.0,31.0,21.0,20.0,22.0,17.0,22.0,16.0,10.0,10.0,12.0,11.0,19.0,4.0,12.0,3.0,6.0,9.0,3.0,6.0,5.0,3.0,8.0 E83027,37.0,33.0,38.0,42.0,41.0,37.0,36.0,46.0,44.0,36.0,40.0,35.0,33.0,37.0,59.0,37.0,59.0,50.0,51.0,62.0,48.0,69.0,62.0,72.0,85.0,108.0,93.0,106.0,93.0,114.0,90.0,100.0,94.0,103.0,78.0,95.0,82.0,69.0,77.0,86.0,92.0,59.0,67.0,85.0,64.0,86.0,65.0,57.0,54.0,59.0,56.0,53.0,67.0,59.0,49.0,48.0,50.0,41.0,38.0,46.0,45.0,36.0,36.0,42.0,37.0,37.0,28.0,25.0,29.0,27.0,22.0,21.0,26.0,30.0,26.0,23.0,24.0,15.0,24.0,22.0,29.0,27.0,23.0,15.0,10.0,21.0,26.0,28.0,22.0,19.0,10.0,20.0,19.0,13.0,9.0,45.0 E83028,17.0,29.0,29.0,26.0,27.0,37.0,39.0,34.0,38.0,50.0,41.0,46.0,52.0,45.0,52.0,44.0,55.0,44.0,49.0,39.0,41.0,40.0,35.0,37.0,44.0,53.0,42.0,59.0,42.0,55.0,60.0,50.0,45.0,45.0,43.0,49.0,54.0,45.0,46.0,58.0,57.0,50.0,56.0,50.0,54.0,52.0,48.0,50.0,50.0,43.0,37.0,35.0,45.0,45.0,25.0,42.0,30.0,43.0,39.0,31.0,39.0,39.0,46.0,31.0,26.0,21.0,26.0,21.0,23.0,18.0,35.0,20.0,17.0,11.0,21.0,20.0,9.0,8.0,15.0,13.0,7.0,7.0,11.0,8.0,6.0,5.0,2.0,4.0,3.0,3.0,2.0,4.0,,3.0,1.0,2.0 E83030,31.0,39.0,29.0,31.0,39.0,41.0,39.0,44.0,45.0,37.0,37.0,38.0,40.0,38.0,41.0,55.0,26.0,54.0,37.0,34.0,38.0,38.0,55.0,45.0,55.0,58.0,56.0,71.0,65.0,65.0,65.0,58.0,62.0,58.0,57.0,63.0,58.0,73.0,55.0,53.0,54.0,41.0,48.0,51.0,41.0,48.0,41.0,39.0,38.0,36.0,52.0,38.0,28.0,35.0,53.0,43.0,43.0,43.0,40.0,38.0,34.0,44.0,26.0,42.0,44.0,32.0,50.0,40.0,35.0,31.0,29.0,35.0,20.0,22.0,32.0,33.0,24.0,29.0,29.0,25.0,21.0,28.0,21.0,12.0,16.0,15.0,12.0,19.0,11.0,20.0,12.0,9.0,11.0,9.0,7.0,25.0 E83031,32.0,38.0,32.0,41.0,30.0,47.0,34.0,39.0,27.0,45.0,36.0,35.0,36.0,34.0,36.0,50.0,31.0,29.0,25.0,31.0,23.0,30.0,25.0,35.0,36.0,45.0,51.0,36.0,37.0,49.0,33.0,47.0,40.0,46.0,42.0,51.0,53.0,54.0,57.0,60.0,64.0,42.0,39.0,56.0,60.0,49.0,55.0,43.0,48.0,45.0,37.0,40.0,25.0,37.0,41.0,49.0,41.0,40.0,28.0,38.0,38.0,38.0,46.0,31.0,28.0,33.0,24.0,20.0,38.0,21.0,19.0,15.0,18.0,16.0,26.0,17.0,25.0,26.0,26.0,20.0,23.0,19.0,16.0,17.0,13.0,15.0,12.0,12.0,9.0,5.0,10.0,10.0,6.0,2.0,3.0,12.0 E83032,73.0,74.0,91.0,90.0,106.0,116.0,111.0,124.0,117.0,122.0,107.0,98.0,124.0,105.0,112.0,104.0,113.0,128.0,94.0,95.0,117.0,110.0,119.0,97.0,116.0,115.0,121.0,133.0,124.0,159.0,120.0,137.0,126.0,132.0,131.0,147.0,152.0,161.0,125.0,156.0,152.0,138.0,131.0,157.0,154.0,151.0,129.0,113.0,119.0,110.0,112.0,121.0,110.0,119.0,106.0,101.0,124.0,105.0,101.0,89.0,92.0,83.0,75.0,79.0,76.0,71.0,83.0,68.0,47.0,58.0,54.0,51.0,52.0,43.0,44.0,52.0,41.0,38.0,37.0,24.0,43.0,31.0,24.0,29.0,21.0,21.0,21.0,14.0,14.0,8.0,17.0,7.0,8.0,3.0,8.0,11.0 E83034,13.0,18.0,16.0,23.0,27.0,23.0,19.0,21.0,20.0,21.0,22.0,23.0,39.0,40.0,33.0,40.0,40.0,39.0,33.0,22.0,25.0,17.0,24.0,21.0,32.0,27.0,31.0,38.0,29.0,34.0,33.0,35.0,33.0,36.0,36.0,35.0,26.0,29.0,27.0,31.0,45.0,33.0,38.0,37.0,36.0,39.0,46.0,33.0,36.0,30.0,32.0,35.0,33.0,49.0,37.0,37.0,33.0,35.0,34.0,30.0,42.0,29.0,28.0,33.0,30.0,36.0,26.0,26.0,28.0,19.0,20.0,14.0,25.0,27.0,19.0,26.0,18.0,23.0,19.0,11.0,13.0,15.0,11.0,7.0,14.0,16.0,12.0,3.0,8.0,10.0,3.0,5.0,6.0,5.0,3.0,3.0 E83035,53.0,69.0,85.0,79.0,80.0,83.0,84.0,101.0,130.0,91.0,137.0,122.0,118.0,144.0,107.0,131.0,128.0,122.0,109.0,79.0,81.0,73.0,92.0,82.0,94.0,99.0,105.0,102.0,114.0,111.0,108.0,104.0,120.0,111.0,118.0,140.0,149.0,162.0,146.0,150.0,153.0,140.0,142.0,151.0,169.0,163.0,200.0,141.0,153.0,134.0,131.0,121.0,141.0,134.0,138.0,111.0,127.0,104.0,105.0,109.0,81.0,87.0,78.0,95.0,74.0,86.0,90.0,81.0,68.0,68.0,69.0,59.0,55.0,72.0,66.0,62.0,76.0,60.0,59.0,62.0,41.0,46.0,53.0,29.0,34.0,48.0,45.0,30.0,33.0,44.0,16.0,36.0,27.0,25.0,20.0,81.0 E83038,43.0,40.0,38.0,43.0,56.0,39.0,41.0,52.0,43.0,49.0,52.0,36.0,52.0,41.0,61.0,47.0,59.0,57.0,60.0,41.0,41.0,41.0,39.0,51.0,63.0,69.0,65.0,61.0,83.0,99.0,78.0,89.0,92.0,79.0,85.0,74.0,75.0,69.0,76.0,64.0,57.0,65.0,70.0,70.0,73.0,74.0,69.0,48.0,57.0,49.0,42.0,51.0,62.0,36.0,51.0,41.0,54.0,56.0,43.0,52.0,41.0,52.0,37.0,44.0,41.0,46.0,39.0,41.0,28.0,37.0,39.0,38.0,24.0,33.0,27.0,29.0,34.0,28.0,30.0,31.0,28.0,24.0,28.0,16.0,20.0,15.0,9.0,20.0,13.0,23.0,13.0,7.0,5.0,13.0,4.0,22.0 E83039,28.0,24.0,27.0,31.0,30.0,27.0,25.0,31.0,16.0,27.0,29.0,27.0,24.0,32.0,22.0,38.0,33.0,23.0,19.0,17.0,14.0,24.0,30.0,43.0,45.0,70.0,67.0,73.0,76.0,71.0,64.0,54.0,62.0,63.0,39.0,38.0,54.0,48.0,41.0,41.0,38.0,30.0,41.0,48.0,38.0,32.0,43.0,37.0,38.0,27.0,23.0,25.0,33.0,26.0,29.0,23.0,21.0,20.0,33.0,18.0,26.0,18.0,23.0,16.0,19.0,26.0,23.0,24.0,22.0,19.0,12.0,23.0,14.0,15.0,17.0,22.0,11.0,13.0,12.0,15.0,9.0,8.0,8.0,14.0,7.0,7.0,4.0,7.0,9.0,5.0,4.0,9.0,5.0,2.0,5.0,5.0 E83041,19.0,22.0,28.0,21.0,34.0,17.0,27.0,23.0,24.0,22.0,16.0,20.0,26.0,23.0,21.0,23.0,30.0,18.0,24.0,25.0,27.0,17.0,24.0,31.0,28.0,35.0,31.0,35.0,29.0,47.0,33.0,29.0,24.0,35.0,37.0,48.0,44.0,32.0,38.0,14.0,25.0,24.0,25.0,25.0,28.0,27.0,29.0,28.0,27.0,17.0,18.0,29.0,27.0,26.0,25.0,33.0,16.0,25.0,11.0,14.0,13.0,22.0,24.0,18.0,19.0,13.0,18.0,10.0,12.0,12.0,14.0,21.0,15.0,23.0,2.0,8.0,8.0,9.0,11.0,7.0,5.0,12.0,6.0,5.0,6.0,7.0,7.0,3.0,4.0,2.0,5.0,5.0,5.0,1.0,2.0,2.0 E83044,26.0,25.0,39.0,51.0,44.0,49.0,54.0,61.0,61.0,59.0,59.0,63.0,60.0,64.0,60.0,47.0,63.0,56.0,42.0,43.0,35.0,47.0,52.0,36.0,52.0,40.0,66.0,62.0,54.0,71.0,75.0,61.0,77.0,74.0,59.0,76.0,89.0,75.0,75.0,78.0,85.0,80.0,84.0,79.0,88.0,78.0,95.0,70.0,79.0,71.0,86.0,76.0,63.0,63.0,56.0,76.0,62.0,55.0,72.0,72.0,62.0,71.0,55.0,73.0,50.0,57.0,65.0,49.0,47.0,38.0,49.0,45.0,38.0,52.0,50.0,39.0,43.0,49.0,52.0,37.0,37.0,27.0,26.0,18.0,20.0,19.0,19.0,23.0,18.0,12.0,14.0,18.0,11.0,8.0,11.0,13.0 E83045,31.0,56.0,39.0,47.0,34.0,44.0,69.0,51.0,74.0,83.0,73.0,71.0,67.0,62.0,54.0,63.0,63.0,56.0,53.0,47.0,47.0,56.0,44.0,55.0,61.0,62.0,55.0,53.0,62.0,59.0,46.0,63.0,63.0,59.0,80.0,60.0,72.0,89.0,79.0,78.0,88.0,88.0,81.0,95.0,100.0,85.0,98.0,84.0,82.0,72.0,76.0,63.0,70.0,62.0,80.0,66.0,75.0,65.0,62.0,51.0,60.0,58.0,43.0,51.0,62.0,51.0,39.0,42.0,36.0,38.0,36.0,34.0,45.0,46.0,30.0,22.0,36.0,34.0,26.0,25.0,26.0,29.0,25.0,18.0,17.0,19.0,20.0,12.0,12.0,12.0,11.0,5.0,6.0,5.0,4.0,5.0 E83046,32.0,30.0,32.0,34.0,48.0,35.0,44.0,50.0,41.0,40.0,51.0,46.0,67.0,69.0,51.0,50.0,52.0,45.0,43.0,44.0,36.0,48.0,34.0,53.0,50.0,63.0,61.0,65.0,58.0,60.0,51.0,57.0,56.0,59.0,67.0,64.0,53.0,89.0,55.0,74.0,62.0,70.0,68.0,57.0,63.0,60.0,59.0,71.0,50.0,61.0,52.0,53.0,54.0,52.0,67.0,55.0,59.0,54.0,54.0,54.0,51.0,49.0,39.0,32.0,39.0,45.0,31.0,40.0,34.0,32.0,29.0,34.0,31.0,22.0,21.0,21.0,22.0,18.0,16.0,20.0,17.0,17.0,16.0,12.0,13.0,19.0,13.0,11.0,13.0,6.0,6.0,8.0,4.0,2.0,3.0,12.0 E83049,25.0,36.0,35.0,40.0,47.0,50.0,45.0,53.0,51.0,53.0,54.0,46.0,57.0,51.0,45.0,50.0,56.0,68.0,47.0,35.0,26.0,34.0,44.0,34.0,48.0,42.0,47.0,48.0,51.0,47.0,60.0,55.0,54.0,66.0,69.0,50.0,69.0,67.0,64.0,72.0,81.0,78.0,89.0,72.0,65.0,57.0,55.0,52.0,51.0,45.0,44.0,40.0,43.0,48.0,39.0,44.0,34.0,36.0,30.0,49.0,47.0,32.0,31.0,42.0,21.0,24.0,40.0,25.0,36.0,25.0,25.0,25.0,30.0,24.0,26.0,19.0,23.0,21.0,19.0,19.0,18.0,20.0,6.0,17.0,11.0,9.0,5.0,16.0,7.0,6.0,8.0,2.0,6.0,7.0,4.0,22.0 E83050,13.0,29.0,24.0,22.0,18.0,36.0,30.0,30.0,41.0,38.0,40.0,49.0,43.0,53.0,46.0,46.0,46.0,47.0,44.0,33.0,20.0,36.0,34.0,44.0,45.0,56.0,54.0,55.0,49.0,48.0,53.0,36.0,61.0,71.0,52.0,55.0,56.0,64.0,40.0,60.0,66.0,43.0,50.0,62.0,65.0,75.0,58.0,54.0,62.0,50.0,61.0,53.0,55.0,54.0,62.0,48.0,59.0,52.0,38.0,63.0,52.0,40.0,49.0,45.0,52.0,31.0,36.0,40.0,39.0,33.0,29.0,29.0,21.0,26.0,24.0,26.0,31.0,15.0,29.0,21.0,27.0,26.0,18.0,12.0,13.0,15.0,11.0,7.0,14.0,9.0,9.0,6.0,2.0,6.0,2.0,14.0 E83053,80.0,70.0,87.0,93.0,90.0,88.0,90.0,101.0,92.0,127.0,87.0,97.0,100.0,107.0,108.0,108.0,97.0,99.0,70.0,79.0,72.0,72.0,69.0,77.0,85.0,82.0,86.0,78.0,97.0,101.0,101.0,93.0,107.0,107.0,102.0,113.0,111.0,139.0,133.0,99.0,107.0,106.0,112.0,105.0,107.0,100.0,96.0,84.0,93.0,77.0,71.0,67.0,78.0,68.0,75.0,80.0,69.0,70.0,63.0,67.0,75.0,68.0,56.0,70.0,56.0,61.0,65.0,71.0,61.0,81.0,67.0,64.0,47.0,68.0,65.0,57.0,56.0,56.0,60.0,47.0,42.0,49.0,42.0,35.0,30.0,30.0,29.0,28.0,17.0,28.0,29.0,18.0,14.0,10.0,6.0,19.0 E83600,87.0,90.0,86.0,85.0,80.0,79.0,119.0,92.0,87.0,64.0,109.0,78.0,78.0,86.0,71.0,93.0,55.0,66.0,53.0,55.0,62.0,63.0,70.0,65.0,60.0,63.0,54.0,58.0,62.0,53.0,60.0,69.0,59.0,38.0,65.0,57.0,45.0,46.0,44.0,37.0,45.0,31.0,30.0,36.0,25.0,24.0,29.0,21.0,30.0,28.0,16.0,18.0,23.0,23.0,17.0,18.0,22.0,18.0,22.0,21.0,16.0,17.0,23.0,15.0,25.0,21.0,25.0,20.0,15.0,14.0,15.0,9.0,15.0,17.0,7.0,18.0,14.0,12.0,16.0,15.0,3.0,9.0,8.0,2.0,5.0,3.0,9.0,4.0,8.0,6.0,8.0,5.0,12.0,5.0,6.0,11.0 E83613,47.0,51.0,48.0,72.0,59.0,76.0,68.0,61.0,66.0,78.0,60.0,57.0,74.0,66.0,81.0,56.0,76.0,76.0,63.0,62.0,52.0,44.0,53.0,59.0,81.0,84.0,64.0,52.0,79.0,83.0,73.0,76.0,82.0,92.0,95.0,86.0,68.0,79.0,82.0,97.0,87.0,80.0,90.0,93.0,97.0,80.0,88.0,79.0,67.0,77.0,82.0,63.0,78.0,76.0,84.0,79.0,73.0,89.0,84.0,79.0,92.0,71.0,80.0,75.0,62.0,62.0,56.0,52.0,59.0,52.0,50.0,48.0,43.0,43.0,40.0,41.0,42.0,46.0,41.0,48.0,31.0,34.0,35.0,32.0,21.0,20.0,23.0,22.0,19.0,10.0,14.0,13.0,14.0,11.0,8.0,14.0 E83621,34.0,28.0,32.0,39.0,41.0,39.0,53.0,39.0,43.0,48.0,43.0,36.0,59.0,58.0,46.0,48.0,56.0,77.0,58.0,49.0,33.0,51.0,37.0,54.0,54.0,63.0,43.0,66.0,51.0,52.0,42.0,49.0,57.0,57.0,54.0,63.0,61.0,57.0,67.0,74.0,68.0,69.0,70.0,69.0,87.0,72.0,74.0,66.0,70.0,63.0,73.0,77.0,67.0,65.0,58.0,60.0,64.0,62.0,67.0,64.0,56.0,69.0,64.0,57.0,47.0,44.0,60.0,50.0,45.0,42.0,45.0,43.0,33.0,41.0,36.0,41.0,32.0,48.0,43.0,36.0,25.0,37.0,29.0,21.0,22.0,25.0,30.0,15.0,20.0,15.0,12.0,12.0,9.0,5.0,7.0,11.0 E83622,44.0,60.0,59.0,77.0,61.0,63.0,58.0,50.0,57.0,71.0,74.0,58.0,73.0,64.0,53.0,77.0,68.0,50.0,60.0,62.0,44.0,59.0,61.0,64.0,51.0,63.0,72.0,90.0,70.0,85.0,61.0,75.0,64.0,72.0,86.0,70.0,71.0,61.0,64.0,69.0,74.0,66.0,78.0,83.0,71.0,62.0,65.0,64.0,77.0,83.0,63.0,53.0,46.0,56.0,40.0,54.0,52.0,45.0,31.0,30.0,42.0,45.0,49.0,38.0,45.0,33.0,40.0,27.0,35.0,46.0,39.0,33.0,30.0,29.0,26.0,39.0,34.0,41.0,32.0,31.0,22.0,32.0,28.0,24.0,16.0,21.0,21.0,17.0,18.0,12.0,8.0,17.0,14.0,13.0,11.0,29.0 E83637,69.0,75.0,67.0,74.0,67.0,67.0,76.0,65.0,71.0,70.0,50.0,69.0,69.0,80.0,57.0,62.0,51.0,64.0,53.0,54.0,55.0,60.0,84.0,89.0,131.0,114.0,124.0,148.0,158.0,160.0,140.0,166.0,174.0,162.0,168.0,150.0,170.0,129.0,127.0,121.0,138.0,124.0,93.0,115.0,96.0,76.0,81.0,65.0,58.0,56.0,53.0,45.0,52.0,52.0,46.0,51.0,55.0,55.0,41.0,41.0,29.0,52.0,34.0,32.0,38.0,28.0,25.0,34.0,32.0,34.0,22.0,23.0,9.0,24.0,18.0,17.0,19.0,15.0,16.0,14.0,7.0,13.0,7.0,10.0,10.0,4.0,6.0,5.0,5.0,7.0,4.0,3.0,6.0,4.0,3.0,1.0 E83638,17.0,16.0,19.0,20.0,28.0,21.0,36.0,22.0,31.0,21.0,28.0,26.0,36.0,28.0,35.0,25.0,31.0,32.0,29.0,21.0,19.0,23.0,23.0,26.0,33.0,24.0,37.0,26.0,31.0,34.0,30.0,33.0,33.0,32.0,31.0,35.0,46.0,44.0,34.0,42.0,42.0,40.0,38.0,37.0,44.0,45.0,31.0,50.0,35.0,25.0,33.0,25.0,34.0,39.0,25.0,33.0,34.0,32.0,35.0,41.0,28.0,32.0,30.0,25.0,35.0,29.0,30.0,22.0,20.0,30.0,17.0,15.0,21.0,24.0,22.0,23.0,24.0,25.0,20.0,27.0,22.0,17.0,15.0,10.0,9.0,5.0,9.0,6.0,11.0,4.0,4.0,4.0,5.0,8.0,2.0,11.0 E83639,43.0,45.0,20.0,38.0,39.0,51.0,30.0,51.0,36.0,43.0,40.0,34.0,41.0,34.0,38.0,35.0,29.0,34.0,23.0,29.0,24.0,25.0,35.0,39.0,33.0,36.0,41.0,58.0,55.0,57.0,48.0,54.0,73.0,86.0,78.0,71.0,90.0,73.0,92.0,70.0,92.0,72.0,78.0,54.0,62.0,67.0,50.0,41.0,44.0,37.0,35.0,38.0,33.0,19.0,28.0,28.0,24.0,29.0,23.0,23.0,24.0,19.0,17.0,24.0,17.0,31.0,29.0,21.0,28.0,15.0,20.0,23.0,14.0,15.0,10.0,11.0,11.0,9.0,14.0,10.0,14.0,15.0,8.0,9.0,7.0,5.0,4.0,1.0,2.0,4.0,7.0,4.0,,2.0,1.0,2.0 E83649,22.0,20.0,21.0,37.0,25.0,21.0,25.0,21.0,24.0,20.0,21.0,16.0,25.0,16.0,31.0,29.0,14.0,18.0,17.0,22.0,16.0,15.0,37.0,33.0,53.0,48.0,36.0,42.0,42.0,48.0,42.0,59.0,38.0,46.0,45.0,43.0,47.0,42.0,48.0,39.0,40.0,47.0,33.0,34.0,32.0,33.0,36.0,37.0,29.0,34.0,26.0,30.0,30.0,22.0,23.0,26.0,26.0,25.0,22.0,25.0,19.0,18.0,23.0,12.0,24.0,11.0,19.0,12.0,10.0,19.0,18.0,10.0,15.0,12.0,9.0,12.0,14.0,15.0,15.0,14.0,12.0,7.0,7.0,6.0,12.0,5.0,6.0,8.0,7.0,3.0,3.0,5.0,3.0,1.0,2.0,4.0 E83653,69.0,49.0,60.0,51.0,58.0,59.0,61.0,64.0,75.0,83.0,70.0,72.0,84.0,90.0,105.0,103.0,75.0,84.0,77.0,71.0,94.0,84.0,91.0,83.0,104.0,98.0,109.0,104.0,110.0,108.0,92.0,104.0,116.0,114.0,91.0,106.0,89.0,108.0,89.0,104.0,98.0,111.0,113.0,90.0,82.0,74.0,99.0,61.0,75.0,89.0,72.0,82.0,87.0,63.0,52.0,61.0,72.0,57.0,61.0,60.0,59.0,40.0,69.0,47.0,42.0,46.0,49.0,40.0,33.0,41.0,45.0,35.0,36.0,38.0,33.0,34.0,35.0,28.0,35.0,23.0,33.0,25.0,29.0,23.0,13.0,23.0,17.0,19.0,19.0,14.0,15.0,14.0,11.0,7.0,7.0,25.0 E83668,18.0,12.0,11.0,11.0,22.0,13.0,20.0,23.0,18.0,23.0,16.0,31.0,27.0,17.0,25.0,17.0,30.0,29.0,20.0,18.0,18.0,26.0,23.0,21.0,26.0,27.0,25.0,26.0,26.0,25.0,23.0,20.0,24.0,21.0,19.0,32.0,26.0,34.0,26.0,24.0,21.0,24.0,32.0,29.0,27.0,30.0,22.0,27.0,28.0,34.0,20.0,19.0,29.0,26.0,30.0,26.0,19.0,31.0,33.0,21.0,27.0,29.0,22.0,21.0,26.0,18.0,22.0,20.0,10.0,17.0,10.0,11.0,18.0,11.0,13.0,15.0,6.0,7.0,7.0,6.0,7.0,4.0,6.0,5.0,6.0,6.0,1.0,3.0,4.0,4.0,1.0,,,1.0,4.0,1.0 F83002,40.0,40.0,36.0,52.0,50.0,43.0,41.0,62.0,37.0,58.0,47.0,41.0,51.0,40.0,51.0,46.0,45.0,45.0,43.0,50.0,39.0,31.0,59.0,58.0,90.0,76.0,107.0,149.0,148.0,154.0,164.0,170.0,158.0,169.0,146.0,141.0,135.0,133.0,109.0,105.0,94.0,74.0,81.0,83.0,97.0,70.0,69.0,52.0,61.0,51.0,48.0,70.0,59.0,54.0,72.0,69.0,58.0,61.0,67.0,60.0,67.0,66.0,54.0,49.0,55.0,35.0,32.0,43.0,34.0,35.0,31.0,24.0,30.0,29.0,36.0,26.0,29.0,25.0,27.0,11.0,19.0,16.0,9.0,11.0,11.0,8.0,19.0,13.0,7.0,11.0,4.0,5.0,3.0,1.0,3.0,9.0 F83003,29.0,28.0,25.0,36.0,30.0,26.0,33.0,25.0,32.0,26.0,33.0,38.0,38.0,32.0,39.0,45.0,31.0,42.0,33.0,29.0,28.0,20.0,50.0,42.0,58.0,53.0,66.0,76.0,87.0,87.0,83.0,94.0,68.0,72.0,68.0,86.0,87.0,75.0,76.0,62.0,66.0,69.0,58.0,76.0,50.0,51.0,68.0,62.0,56.0,43.0,59.0,46.0,63.0,51.0,60.0,52.0,60.0,54.0,48.0,51.0,54.0,60.0,38.0,58.0,46.0,40.0,47.0,39.0,36.0,31.0,32.0,30.0,30.0,39.0,36.0,44.0,32.0,36.0,44.0,32.0,38.0,27.0,22.0,25.0,22.0,19.0,12.0,15.0,6.0,16.0,12.0,9.0,9.0,4.0,3.0,17.0 F83004,18.0,22.0,14.0,10.0,11.0,16.0,17.0,15.0,29.0,16.0,20.0,20.0,28.0,22.0,26.0,45.0,77.0,102.0,210.0,344.0,436.0,586.0,664.0,819.0,942.0,956.0,987.0,882.0,879.0,791.0,707.0,641.0,554.0,480.0,407.0,390.0,319.0,278.0,249.0,219.0,227.0,200.0,188.0,145.0,131.0,124.0,93.0,104.0,99.0,96.0,88.0,83.0,93.0,88.0,68.0,67.0,76.0,75.0,58.0,55.0,48.0,45.0,64.0,47.0,36.0,42.0,41.0,32.0,23.0,34.0,32.0,22.0,16.0,14.0,11.0,14.0,20.0,12.0,21.0,8.0,8.0,11.0,12.0,7.0,10.0,7.0,8.0,3.0,9.0,2.0,4.0,7.0,2.0,2.0,2.0,5.0 F83005,9.0,12.0,7.0,7.0,2.0,9.0,6.0,4.0,2.0,3.0,7.0,9.0,10.0,4.0,4.0,6.0,7.0,12.0,340.0,770.0,984.0,972.0,1111.0,1103.0,1110.0,743.0,604.0,517.0,359.0,306.0,231.0,164.0,175.0,143.0,130.0,113.0,91.0,67.0,63.0,52.0,44.0,40.0,33.0,25.0,26.0,33.0,23.0,25.0,20.0,21.0,10.0,15.0,17.0,14.0,11.0,12.0,19.0,12.0,15.0,10.0,15.0,17.0,17.0,15.0,16.0,14.0,10.0,13.0,12.0,6.0,11.0,8.0,6.0,7.0,6.0,7.0,7.0,5.0,10.0,6.0,5.0,7.0,10.0,2.0,2.0,2.0,,5.0,,1.0,2.0,2.0,2.0,,,4.0 F83006,48.0,56.0,49.0,60.0,48.0,66.0,74.0,59.0,72.0,75.0,72.0,64.0,89.0,94.0,81.0,91.0,81.0,93.0,105.0,151.0,190.0,149.0,206.0,229.0,257.0,191.0,181.0,194.0,191.0,192.0,147.0,141.0,136.0,119.0,113.0,133.0,113.0,130.0,108.0,124.0,130.0,89.0,107.0,98.0,95.0,107.0,87.0,88.0,101.0,97.0,94.0,84.0,78.0,74.0,102.0,99.0,92.0,80.0,95.0,83.0,88.0,70.0,66.0,75.0,78.0,66.0,60.0,64.0,57.0,52.0,37.0,47.0,59.0,43.0,37.0,44.0,34.0,32.0,25.0,25.0,25.0,22.0,20.0,24.0,15.0,16.0,12.0,14.0,10.0,8.0,9.0,9.0,12.0,9.0,10.0,15.0 F83007,13.0,9.0,8.0,6.0,13.0,11.0,16.0,9.0,12.0,17.0,12.0,12.0,13.0,11.0,7.0,15.0,15.0,10.0,14.0,15.0,18.0,22.0,24.0,15.0,32.0,27.0,30.0,39.0,40.0,43.0,52.0,42.0,35.0,45.0,42.0,30.0,34.0,22.0,35.0,21.0,21.0,21.0,16.0,25.0,31.0,21.0,19.0,20.0,26.0,25.0,17.0,27.0,18.0,19.0,36.0,23.0,19.0,22.0,33.0,28.0,22.0,23.0,24.0,15.0,16.0,16.0,12.0,10.0,15.0,13.0,12.0,19.0,12.0,9.0,11.0,10.0,14.0,11.0,16.0,13.0,13.0,12.0,8.0,4.0,3.0,4.0,5.0,5.0,2.0,5.0,6.0,,2.0,2.0,1.0,2.0 F83008,56.0,49.0,51.0,56.0,31.0,40.0,48.0,51.0,43.0,61.0,46.0,49.0,62.0,75.0,67.0,52.0,59.0,52.0,69.0,93.0,86.0,91.0,103.0,140.0,149.0,151.0,172.0,158.0,141.0,143.0,150.0,128.0,134.0,128.0,140.0,128.0,98.0,98.0,92.0,103.0,87.0,90.0,102.0,73.0,93.0,84.0,83.0,51.0,64.0,72.0,52.0,65.0,63.0,63.0,64.0,66.0,76.0,65.0,74.0,64.0,73.0,70.0,64.0,55.0,72.0,53.0,47.0,53.0,54.0,55.0,44.0,35.0,54.0,39.0,30.0,27.0,45.0,39.0,25.0,26.0,23.0,22.0,28.0,20.0,20.0,7.0,11.0,13.0,13.0,11.0,11.0,9.0,3.0,4.0,6.0,7.0 F83010,110.0,94.0,82.0,98.0,80.0,87.0,97.0,99.0,100.0,104.0,102.0,96.0,105.0,80.0,100.0,82.0,84.0,84.0,87.0,65.0,82.0,79.0,87.0,124.0,178.0,205.0,218.0,299.0,347.0,356.0,353.0,355.0,298.0,362.0,338.0,340.0,319.0,314.0,289.0,254.0,216.0,222.0,215.0,196.0,184.0,183.0,165.0,152.0,129.0,145.0,119.0,110.0,139.0,98.0,110.0,105.0,112.0,98.0,105.0,107.0,102.0,93.0,87.0,95.0,81.0,74.0,81.0,64.0,52.0,50.0,67.0,58.0,47.0,58.0,39.0,43.0,42.0,53.0,36.0,38.0,37.0,29.0,28.0,22.0,14.0,26.0,14.0,11.0,12.0,13.0,10.0,4.0,2.0,3.0,7.0,7.0 F83011,29.0,31.0,27.0,41.0,31.0,27.0,34.0,45.0,42.0,33.0,32.0,46.0,45.0,35.0,46.0,34.0,38.0,38.0,21.0,34.0,50.0,41.0,34.0,69.0,77.0,104.0,113.0,106.0,98.0,122.0,102.0,102.0,96.0,103.0,91.0,95.0,92.0,116.0,89.0,83.0,72.0,69.0,61.0,70.0,59.0,80.0,68.0,68.0,64.0,64.0,67.0,44.0,67.0,55.0,52.0,57.0,58.0,64.0,47.0,55.0,44.0,43.0,44.0,42.0,50.0,36.0,41.0,29.0,35.0,36.0,41.0,25.0,23.0,31.0,22.0,26.0,21.0,19.0,41.0,23.0,18.0,24.0,17.0,22.0,11.0,12.0,10.0,21.0,10.0,13.0,6.0,3.0,7.0,4.0,1.0,5.0 F83012,26.0,27.0,22.0,19.0,33.0,20.0,32.0,24.0,24.0,33.0,24.0,24.0,30.0,24.0,25.0,26.0,27.0,22.0,33.0,26.0,24.0,30.0,34.0,46.0,45.0,52.0,66.0,96.0,92.0,100.0,109.0,96.0,94.0,101.0,90.0,86.0,86.0,86.0,64.0,73.0,67.0,59.0,63.0,48.0,58.0,64.0,53.0,50.0,60.0,32.0,41.0,45.0,29.0,33.0,42.0,35.0,38.0,40.0,45.0,52.0,38.0,45.0,46.0,23.0,36.0,35.0,37.0,39.0,44.0,44.0,42.0,35.0,39.0,20.0,25.0,29.0,27.0,29.0,26.0,14.0,18.0,16.0,19.0,16.0,8.0,10.0,10.0,9.0,5.0,8.0,3.0,3.0,8.0,6.0,4.0,9.0 F83015,61.0,41.0,47.0,75.0,49.0,54.0,53.0,78.0,64.0,57.0,61.0,63.0,62.0,63.0,72.0,63.0,62.0,60.0,59.0,51.0,51.0,66.0,74.0,117.0,117.0,122.0,143.0,147.0,138.0,127.0,121.0,130.0,127.0,146.0,139.0,127.0,121.0,100.0,112.0,121.0,116.0,96.0,114.0,85.0,113.0,85.0,88.0,78.0,91.0,87.0,102.0,87.0,78.0,78.0,91.0,79.0,85.0,88.0,89.0,71.0,78.0,76.0,76.0,59.0,63.0,61.0,51.0,48.0,60.0,55.0,46.0,46.0,42.0,44.0,43.0,44.0,44.0,43.0,33.0,27.0,42.0,30.0,31.0,29.0,18.0,19.0,13.0,11.0,14.0,12.0,8.0,10.0,8.0,6.0,2.0,8.0 F83017,60.0,75.0,53.0,64.0,55.0,60.0,58.0,60.0,84.0,56.0,73.0,81.0,107.0,85.0,90.0,78.0,91.0,72.0,80.0,65.0,69.0,84.0,72.0,132.0,137.0,176.0,179.0,180.0,195.0,187.0,248.0,237.0,211.0,219.0,224.0,218.0,227.0,186.0,209.0,204.0,174.0,165.0,183.0,165.0,139.0,162.0,141.0,137.0,128.0,140.0,124.0,120.0,103.0,143.0,102.0,117.0,100.0,129.0,98.0,91.0,96.0,99.0,96.0,73.0,62.0,69.0,71.0,64.0,63.0,61.0,67.0,54.0,49.0,50.0,52.0,49.0,46.0,47.0,59.0,41.0,30.0,37.0,38.0,21.0,39.0,28.0,25.0,19.0,31.0,19.0,11.0,18.0,10.0,16.0,3.0,31.0 F83018,30.0,19.0,27.0,31.0,35.0,25.0,35.0,49.0,39.0,41.0,37.0,36.0,27.0,37.0,46.0,29.0,46.0,77.0,57.0,53.0,58.0,54.0,66.0,87.0,78.0,91.0,93.0,97.0,84.0,83.0,73.0,80.0,77.0,66.0,72.0,74.0,82.0,77.0,69.0,57.0,67.0,53.0,59.0,41.0,47.0,66.0,64.0,45.0,52.0,63.0,49.0,49.0,46.0,44.0,47.0,49.0,50.0,42.0,49.0,46.0,49.0,49.0,36.0,36.0,35.0,33.0,23.0,40.0,32.0,32.0,23.0,25.0,16.0,19.0,24.0,18.0,18.0,15.0,15.0,15.0,21.0,8.0,14.0,16.0,19.0,16.0,14.0,6.0,12.0,11.0,4.0,5.0,3.0,4.0,3.0,8.0 F83019,41.0,46.0,43.0,50.0,49.0,60.0,46.0,54.0,64.0,64.0,61.0,54.0,79.0,85.0,76.0,62.0,85.0,71.0,71.0,55.0,80.0,78.0,78.0,75.0,115.0,96.0,118.0,149.0,126.0,105.0,133.0,120.0,122.0,137.0,136.0,134.0,133.0,120.0,115.0,131.0,133.0,116.0,116.0,115.0,130.0,90.0,98.0,96.0,84.0,97.0,85.0,81.0,90.0,89.0,90.0,75.0,70.0,83.0,57.0,80.0,62.0,54.0,64.0,64.0,67.0,56.0,50.0,47.0,50.0,38.0,49.0,46.0,44.0,46.0,41.0,50.0,45.0,37.0,57.0,45.0,38.0,20.0,28.0,19.0,17.0,21.0,32.0,20.0,8.0,10.0,16.0,7.0,12.0,6.0,3.0,20.0 F83020,41.0,35.0,40.0,36.0,47.0,45.0,40.0,42.0,53.0,60.0,50.0,46.0,58.0,59.0,42.0,65.0,54.0,50.0,46.0,43.0,55.0,52.0,58.0,54.0,68.0,94.0,96.0,97.0,109.0,121.0,113.0,116.0,106.0,96.0,115.0,122.0,124.0,103.0,121.0,128.0,95.0,113.0,93.0,96.0,105.0,93.0,101.0,77.0,100.0,85.0,78.0,85.0,73.0,73.0,76.0,80.0,65.0,58.0,65.0,61.0,57.0,53.0,53.0,68.0,55.0,55.0,70.0,57.0,34.0,50.0,27.0,32.0,49.0,35.0,39.0,45.0,37.0,38.0,57.0,46.0,34.0,36.0,30.0,32.0,25.0,24.0,21.0,19.0,17.0,11.0,18.0,6.0,9.0,12.0,8.0,23.0 F83021,63.0,52.0,50.0,49.0,50.0,45.0,56.0,58.0,46.0,47.0,48.0,57.0,57.0,44.0,56.0,69.0,65.0,49.0,67.0,61.0,51.0,66.0,81.0,98.0,108.0,148.0,134.0,174.0,207.0,262.0,238.0,302.0,315.0,299.0,308.0,295.0,262.0,234.0,229.0,204.0,165.0,171.0,154.0,139.0,140.0,124.0,106.0,96.0,93.0,85.0,99.0,83.0,78.0,62.0,94.0,87.0,84.0,74.0,83.0,98.0,85.0,69.0,47.0,81.0,75.0,64.0,48.0,48.0,56.0,40.0,37.0,47.0,44.0,46.0,34.0,42.0,35.0,38.0,36.0,27.0,28.0,22.0,20.0,16.0,15.0,18.0,11.0,14.0,12.0,4.0,6.0,8.0,8.0,5.0,3.0,4.0 F83022,60.0,68.0,54.0,55.0,60.0,58.0,54.0,58.0,76.0,63.0,73.0,71.0,76.0,87.0,70.0,82.0,84.0,83.0,72.0,95.0,101.0,110.0,115.0,164.0,179.0,203.0,223.0,213.0,232.0,204.0,246.0,206.0,162.0,188.0,166.0,174.0,163.0,149.0,128.0,133.0,126.0,130.0,114.0,119.0,126.0,112.0,111.0,90.0,98.0,93.0,72.0,97.0,106.0,99.0,91.0,85.0,104.0,87.0,132.0,88.0,96.0,85.0,86.0,74.0,75.0,73.0,73.0,63.0,78.0,64.0,68.0,47.0,58.0,59.0,41.0,57.0,70.0,42.0,44.0,56.0,55.0,44.0,37.0,24.0,24.0,25.0,27.0,16.0,15.0,16.0,14.0,7.0,8.0,7.0,7.0,6.0 F83023,73.0,69.0,76.0,75.0,87.0,85.0,90.0,95.0,84.0,96.0,102.0,112.0,103.0,94.0,127.0,128.0,132.0,119.0,165.0,164.0,163.0,191.0,217.0,257.0,245.0,272.0,258.0,240.0,267.0,289.0,243.0,269.0,245.0,233.0,200.0,234.0,234.0,209.0,202.0,191.0,171.0,211.0,204.0,184.0,198.0,166.0,159.0,145.0,130.0,143.0,142.0,127.0,148.0,138.0,139.0,141.0,148.0,148.0,139.0,122.0,121.0,114.0,99.0,125.0,109.0,116.0,88.0,84.0,80.0,82.0,77.0,63.0,71.0,70.0,57.0,60.0,60.0,65.0,45.0,48.0,43.0,46.0,43.0,22.0,20.0,26.0,37.0,23.0,19.0,17.0,8.0,16.0,8.0,4.0,10.0,10.0 F83032,51.0,43.0,43.0,44.0,43.0,43.0,49.0,35.0,47.0,39.0,46.0,28.0,46.0,45.0,42.0,44.0,59.0,42.0,38.0,51.0,50.0,39.0,62.0,71.0,86.0,89.0,109.0,138.0,154.0,179.0,167.0,192.0,197.0,163.0,168.0,175.0,154.0,181.0,160.0,151.0,118.0,105.0,95.0,103.0,87.0,95.0,68.0,83.0,59.0,49.0,61.0,75.0,53.0,69.0,60.0,52.0,62.0,68.0,75.0,65.0,61.0,50.0,62.0,62.0,52.0,42.0,44.0,40.0,45.0,32.0,39.0,31.0,30.0,25.0,23.0,27.0,29.0,26.0,25.0,24.0,19.0,10.0,13.0,5.0,12.0,6.0,7.0,8.0,8.0,8.0,4.0,4.0,4.0,2.0,2.0,6.0 F83033,24.0,22.0,26.0,27.0,29.0,22.0,17.0,23.0,20.0,19.0,23.0,24.0,22.0,17.0,18.0,27.0,19.0,26.0,30.0,29.0,50.0,74.0,109.0,158.0,172.0,143.0,154.0,167.0,144.0,124.0,110.0,97.0,102.0,75.0,71.0,94.0,72.0,63.0,45.0,56.0,34.0,38.0,31.0,23.0,26.0,23.0,17.0,18.0,16.0,22.0,10.0,21.0,22.0,14.0,12.0,16.0,12.0,16.0,15.0,23.0,19.0,14.0,14.0,17.0,21.0,13.0,15.0,11.0,7.0,9.0,14.0,13.0,5.0,8.0,11.0,9.0,9.0,10.0,6.0,5.0,4.0,3.0,5.0,5.0,9.0,4.0,6.0,7.0,3.0,5.0,5.0,4.0,4.0,,3.0,3.0 F83034,2.0,3.0,,1.0,3.0,3.0,4.0,2.0,,3.0,2.0,2.0,,1.0,,2.0,1.0,4.0,6.0,4.0,1.0,4.0,5.0,4.0,3.0,7.0,10.0,10.0,10.0,18.0,19.0,12.0,16.0,15.0,17.0,15.0,19.0,14.0,14.0,12.0,10.0,12.0,10.0,8.0,9.0,7.0,5.0,6.0,6.0,8.0,4.0,5.0,3.0,6.0,3.0,11.0,8.0,10.0,7.0,4.0,5.0,8.0,6.0,9.0,8.0,9.0,9.0,4.0,6.0,3.0,5.0,3.0,4.0,4.0,5.0,4.0,6.0,7.0,12.0,4.0,5.0,5.0,5.0,5.0,5.0,1.0,6.0,,4.0,2.0,2.0,4.0,1.0,,,2.0 F83039,30.0,12.0,16.0,17.0,24.0,27.0,20.0,18.0,22.0,28.0,23.0,18.0,20.0,20.0,35.0,27.0,29.0,27.0,26.0,21.0,14.0,20.0,21.0,23.0,32.0,38.0,21.0,30.0,45.0,48.0,27.0,35.0,40.0,39.0,39.0,42.0,49.0,38.0,38.0,43.0,33.0,32.0,36.0,31.0,42.0,34.0,43.0,23.0,25.0,38.0,27.0,32.0,29.0,39.0,36.0,36.0,40.0,39.0,34.0,37.0,38.0,35.0,48.0,40.0,37.0,46.0,30.0,30.0,29.0,21.0,18.0,32.0,31.0,21.0,20.0,19.0,22.0,13.0,19.0,15.0,13.0,16.0,10.0,10.0,8.0,7.0,7.0,5.0,5.0,3.0,5.0,1.0,4.0,1.0,1.0,6.0 F83042,18.0,18.0,12.0,16.0,13.0,4.0,22.0,20.0,11.0,19.0,21.0,21.0,15.0,15.0,16.0,18.0,15.0,26.0,40.0,62.0,91.0,67.0,98.0,167.0,199.0,176.0,204.0,184.0,239.0,208.0,201.0,157.0,122.0,128.0,109.0,107.0,96.0,97.0,84.0,61.0,58.0,44.0,50.0,44.0,33.0,40.0,40.0,24.0,30.0,35.0,20.0,24.0,28.0,19.0,28.0,31.0,31.0,28.0,16.0,32.0,20.0,20.0,20.0,13.0,20.0,17.0,12.0,15.0,13.0,16.0,11.0,13.0,8.0,15.0,14.0,18.0,11.0,9.0,8.0,5.0,5.0,7.0,5.0,2.0,4.0,1.0,6.0,5.0,4.0,3.0,5.0,2.0,,1.0,,4.0 F83043,2.0,4.0,1.0,4.0,,1.0,4.0,,3.0,3.0,1.0,3.0,1.0,1.0,1.0,1.0,1.0,3.0,167.0,407.0,685.0,873.0,1274.0,1247.0,1356.0,272.0,144.0,139.0,131.0,109.0,80.0,58.0,63.0,45.0,35.0,39.0,33.0,24.0,23.0,15.0,14.0,14.0,11.0,10.0,8.0,8.0,5.0,7.0,6.0,9.0,11.0,8.0,9.0,7.0,7.0,8.0,4.0,10.0,8.0,5.0,8.0,3.0,10.0,5.0,6.0,11.0,5.0,6.0,5.0,7.0,5.0,7.0,7.0,2.0,2.0,2.0,11.0,6.0,4.0,8.0,4.0,5.0,6.0,1.0,2.0,4.0,3.0,1.0,2.0,,1.0,,,,,2.0 F83044,10.0,18.0,20.0,16.0,16.0,19.0,15.0,18.0,15.0,21.0,19.0,15.0,12.0,17.0,21.0,15.0,17.0,8.0,56.0,163.0,230.0,200.0,196.0,307.0,363.0,288.0,245.0,203.0,157.0,142.0,144.0,110.0,120.0,104.0,86.0,85.0,84.0,82.0,67.0,57.0,55.0,51.0,39.0,38.0,42.0,40.0,29.0,26.0,20.0,30.0,24.0,22.0,32.0,28.0,22.0,29.0,15.0,25.0,21.0,20.0,21.0,31.0,19.0,19.0,21.0,18.0,14.0,17.0,13.0,12.0,16.0,20.0,11.0,19.0,10.0,19.0,9.0,12.0,13.0,7.0,7.0,3.0,4.0,5.0,3.0,5.0,7.0,7.0,1.0,3.0,3.0,3.0,1.0,2.0,1.0,1.0 F83045,45.0,34.0,51.0,42.0,26.0,28.0,20.0,37.0,36.0,36.0,33.0,25.0,37.0,38.0,32.0,41.0,47.0,45.0,33.0,39.0,33.0,32.0,40.0,57.0,54.0,55.0,78.0,95.0,98.0,117.0,110.0,109.0,108.0,102.0,119.0,131.0,95.0,107.0,89.0,84.0,88.0,70.0,69.0,73.0,66.0,63.0,60.0,55.0,74.0,60.0,45.0,58.0,63.0,51.0,61.0,51.0,66.0,53.0,58.0,55.0,76.0,63.0,67.0,54.0,48.0,64.0,49.0,53.0,55.0,47.0,27.0,32.0,49.0,34.0,34.0,37.0,35.0,35.0,27.0,35.0,24.0,20.0,13.0,16.0,12.0,19.0,11.0,9.0,9.0,7.0,4.0,1.0,2.0,8.0,2.0,3.0 F83048,17.0,26.0,21.0,20.0,21.0,21.0,14.0,28.0,21.0,32.0,24.0,19.0,30.0,18.0,23.0,31.0,25.0,22.0,98.0,155.0,189.0,128.0,218.0,202.0,259.0,206.0,216.0,184.0,145.0,124.0,131.0,118.0,105.0,118.0,98.0,99.0,86.0,80.0,71.0,58.0,59.0,53.0,52.0,52.0,37.0,48.0,32.0,34.0,30.0,29.0,29.0,44.0,40.0,40.0,26.0,25.0,32.0,21.0,23.0,32.0,19.0,39.0,23.0,24.0,19.0,20.0,15.0,26.0,15.0,20.0,17.0,13.0,13.0,17.0,26.0,12.0,10.0,14.0,15.0,14.0,8.0,8.0,11.0,12.0,4.0,6.0,8.0,5.0,2.0,1.0,4.0,3.0,3.0,,2.0,10.0 F83050,13.0,9.0,12.0,10.0,10.0,12.0,16.0,14.0,18.0,13.0,14.0,14.0,16.0,12.0,13.0,11.0,12.0,12.0,9.0,10.0,15.0,18.0,22.0,29.0,30.0,25.0,35.0,43.0,39.0,48.0,24.0,44.0,28.0,41.0,24.0,34.0,30.0,35.0,38.0,34.0,30.0,30.0,31.0,28.0,21.0,27.0,23.0,24.0,21.0,25.0,22.0,23.0,19.0,12.0,20.0,18.0,17.0,16.0,19.0,21.0,11.0,16.0,29.0,23.0,13.0,16.0,22.0,7.0,9.0,9.0,14.0,7.0,9.0,19.0,19.0,14.0,14.0,8.0,8.0,12.0,7.0,7.0,6.0,6.0,6.0,7.0,3.0,2.0,3.0,1.0,,,2.0,,,2.0 F83052,19.0,11.0,15.0,16.0,13.0,12.0,21.0,19.0,14.0,9.0,17.0,21.0,21.0,21.0,26.0,17.0,28.0,27.0,27.0,11.0,30.0,31.0,28.0,19.0,45.0,28.0,43.0,43.0,32.0,37.0,30.0,39.0,34.0,31.0,29.0,35.0,26.0,24.0,31.0,30.0,31.0,27.0,20.0,31.0,21.0,19.0,30.0,35.0,21.0,18.0,27.0,29.0,31.0,30.0,24.0,19.0,25.0,29.0,23.0,32.0,32.0,22.0,20.0,25.0,23.0,26.0,24.0,18.0,18.0,16.0,21.0,20.0,14.0,17.0,18.0,14.0,14.0,11.0,10.0,9.0,15.0,12.0,8.0,8.0,2.0,9.0,7.0,5.0,2.0,3.0,2.0,5.0,3.0,1.0,2.0,4.0 F83053,24.0,27.0,25.0,31.0,26.0,32.0,25.0,39.0,37.0,32.0,33.0,32.0,38.0,29.0,36.0,38.0,37.0,33.0,34.0,38.0,37.0,56.0,40.0,40.0,72.0,85.0,101.0,116.0,113.0,142.0,147.0,112.0,128.0,110.0,98.0,116.0,98.0,81.0,75.0,83.0,96.0,73.0,50.0,65.0,52.0,42.0,51.0,54.0,50.0,43.0,55.0,50.0,43.0,34.0,46.0,38.0,42.0,58.0,39.0,45.0,51.0,23.0,44.0,32.0,35.0,29.0,27.0,22.0,16.0,20.0,22.0,13.0,25.0,16.0,12.0,19.0,17.0,14.0,9.0,14.0,15.0,7.0,12.0,7.0,7.0,5.0,9.0,4.0,3.0,5.0,2.0,4.0,4.0,5.0,2.0,8.0 F83055,128.0,126.0,113.0,89.0,85.0,98.0,75.0,89.0,81.0,79.0,62.0,77.0,61.0,66.0,69.0,72.0,85.0,74.0,73.0,80.0,99.0,110.0,134.0,191.0,282.0,347.0,416.0,484.0,465.0,472.0,437.0,435.0,412.0,377.0,397.0,387.0,350.0,332.0,331.0,278.0,261.0,241.0,194.0,192.0,176.0,166.0,169.0,150.0,131.0,116.0,133.0,110.0,115.0,97.0,105.0,91.0,94.0,91.0,81.0,83.0,71.0,64.0,79.0,61.0,53.0,43.0,56.0,53.0,73.0,42.0,50.0,44.0,44.0,41.0,47.0,44.0,39.0,35.0,27.0,25.0,40.0,29.0,29.0,18.0,14.0,16.0,19.0,14.0,11.0,10.0,7.0,3.0,4.0,2.0,3.0,7.0 F83056,35.0,34.0,31.0,38.0,45.0,42.0,31.0,33.0,32.0,20.0,28.0,23.0,20.0,23.0,29.0,33.0,24.0,27.0,32.0,33.0,43.0,52.0,52.0,91.0,116.0,143.0,167.0,220.0,246.0,213.0,267.0,256.0,224.0,239.0,205.0,178.0,138.0,135.0,121.0,112.0,104.0,72.0,63.0,71.0,51.0,50.0,52.0,45.0,44.0,30.0,28.0,41.0,36.0,30.0,42.0,27.0,29.0,42.0,29.0,38.0,24.0,28.0,27.0,28.0,13.0,22.0,24.0,18.0,28.0,13.0,17.0,12.0,6.0,10.0,14.0,12.0,8.0,16.0,14.0,6.0,7.0,3.0,7.0,7.0,5.0,3.0,3.0,2.0,6.0,,3.0,2.0,4.0,2.0,2.0,2.0 F83057,22.0,35.0,31.0,42.0,27.0,32.0,31.0,28.0,33.0,27.0,27.0,46.0,32.0,49.0,23.0,42.0,31.0,31.0,43.0,22.0,26.0,40.0,48.0,54.0,86.0,77.0,110.0,106.0,112.0,124.0,112.0,97.0,91.0,105.0,98.0,111.0,74.0,99.0,76.0,75.0,74.0,60.0,56.0,64.0,67.0,55.0,71.0,52.0,48.0,59.0,64.0,53.0,60.0,61.0,64.0,62.0,37.0,47.0,53.0,43.0,49.0,44.0,62.0,40.0,43.0,43.0,32.0,30.0,31.0,32.0,31.0,33.0,16.0,21.0,19.0,21.0,35.0,34.0,21.0,20.0,18.0,15.0,19.0,14.0,10.0,8.0,7.0,12.0,8.0,8.0,3.0,3.0,,2.0,1.0,13.0 F83058,8.0,15.0,19.0,19.0,12.0,21.0,18.0,18.0,19.0,24.0,16.0,31.0,23.0,26.0,24.0,22.0,26.0,25.0,41.0,71.0,125.0,116.0,183.0,239.0,305.0,242.0,242.0,246.0,197.0,216.0,247.0,172.0,175.0,166.0,125.0,132.0,122.0,78.0,74.0,75.0,83.0,67.0,41.0,47.0,47.0,36.0,30.0,41.0,39.0,26.0,33.0,26.0,30.0,27.0,35.0,25.0,39.0,34.0,33.0,38.0,39.0,20.0,24.0,19.0,25.0,24.0,29.0,31.0,20.0,23.0,25.0,19.0,19.0,17.0,16.0,19.0,19.0,10.0,14.0,11.0,12.0,13.0,7.0,8.0,6.0,8.0,7.0,3.0,2.0,8.0,7.0,2.0,1.0,5.0,1.0,5.0 F83059,86.0,95.0,105.0,92.0,110.0,92.0,94.0,86.0,76.0,91.0,79.0,82.0,103.0,78.0,90.0,94.0,102.0,102.0,80.0,92.0,92.0,105.0,131.0,159.0,206.0,224.0,261.0,272.0,267.0,310.0,267.0,257.0,249.0,259.0,248.0,239.0,245.0,217.0,236.0,197.0,201.0,176.0,198.0,164.0,156.0,167.0,159.0,130.0,135.0,136.0,125.0,111.0,148.0,125.0,112.0,95.0,103.0,107.0,106.0,85.0,88.0,91.0,92.0,78.0,84.0,92.0,82.0,59.0,64.0,48.0,53.0,58.0,40.0,51.0,43.0,44.0,50.0,40.0,38.0,27.0,29.0,20.0,38.0,20.0,15.0,14.0,24.0,9.0,6.0,15.0,19.0,8.0,3.0,2.0,4.0,7.0 F83060,20.0,22.0,24.0,26.0,24.0,26.0,43.0,39.0,48.0,33.0,37.0,44.0,35.0,38.0,40.0,32.0,34.0,27.0,42.0,32.0,42.0,35.0,43.0,36.0,50.0,57.0,66.0,73.0,79.0,64.0,89.0,87.0,80.0,85.0,88.0,93.0,86.0,77.0,77.0,100.0,60.0,70.0,66.0,63.0,56.0,58.0,59.0,53.0,62.0,59.0,58.0,44.0,53.0,44.0,34.0,41.0,36.0,39.0,42.0,34.0,43.0,41.0,38.0,33.0,33.0,32.0,33.0,26.0,30.0,29.0,19.0,14.0,23.0,21.0,15.0,13.0,15.0,12.0,10.0,10.0,7.0,11.0,8.0,3.0,5.0,5.0,13.0,6.0,5.0,4.0,6.0,4.0,4.0,5.0,5.0,14.0 F83061,9.0,6.0,8.0,19.0,11.0,12.0,12.0,14.0,15.0,15.0,13.0,15.0,12.0,16.0,21.0,15.0,14.0,6.0,27.0,51.0,61.0,59.0,102.0,101.0,125.0,104.0,96.0,85.0,81.0,84.0,69.0,66.0,70.0,62.0,74.0,81.0,49.0,47.0,37.0,39.0,42.0,39.0,46.0,39.0,36.0,27.0,31.0,32.0,24.0,33.0,30.0,34.0,32.0,29.0,32.0,24.0,29.0,31.0,31.0,23.0,25.0,24.0,20.0,23.0,30.0,18.0,21.0,17.0,21.0,18.0,21.0,17.0,11.0,17.0,15.0,15.0,14.0,17.0,14.0,5.0,13.0,9.0,10.0,5.0,7.0,5.0,5.0,8.0,5.0,4.0,5.0,3.0,1.0,,2.0,6.0 F83063,65.0,69.0,60.0,56.0,46.0,54.0,44.0,53.0,66.0,51.0,42.0,45.0,44.0,52.0,56.0,49.0,41.0,71.0,98.0,106.0,104.0,124.0,144.0,190.0,221.0,192.0,200.0,206.0,210.0,224.0,205.0,173.0,185.0,167.0,162.0,160.0,163.0,139.0,118.0,125.0,113.0,97.0,90.0,85.0,90.0,85.0,79.0,71.0,68.0,61.0,73.0,52.0,66.0,75.0,76.0,72.0,70.0,65.0,59.0,59.0,44.0,46.0,51.0,42.0,46.0,35.0,53.0,36.0,33.0,22.0,28.0,33.0,34.0,22.0,31.0,29.0,17.0,23.0,22.0,13.0,14.0,11.0,14.0,14.0,15.0,11.0,8.0,13.0,12.0,5.0,3.0,7.0,7.0,2.0,5.0,8.0 F83064,27.0,32.0,33.0,27.0,31.0,40.0,33.0,38.0,39.0,32.0,40.0,47.0,49.0,30.0,48.0,35.0,35.0,43.0,43.0,65.0,57.0,69.0,104.0,134.0,148.0,154.0,148.0,166.0,183.0,144.0,112.0,111.0,120.0,111.0,127.0,109.0,92.0,97.0,87.0,72.0,66.0,62.0,58.0,71.0,34.0,54.0,52.0,44.0,56.0,62.0,46.0,40.0,55.0,42.0,38.0,33.0,47.0,37.0,42.0,38.0,28.0,48.0,41.0,33.0,35.0,20.0,25.0,22.0,24.0,22.0,18.0,19.0,14.0,9.0,8.0,12.0,15.0,13.0,16.0,9.0,15.0,8.0,9.0,13.0,6.0,9.0,9.0,5.0,6.0,6.0,6.0,7.0,3.0,2.0,3.0,6.0 F83615,29.0,32.0,30.0,38.0,21.0,39.0,45.0,50.0,44.0,51.0,46.0,53.0,56.0,52.0,48.0,45.0,57.0,47.0,42.0,34.0,40.0,52.0,50.0,40.0,57.0,57.0,66.0,49.0,55.0,55.0,53.0,51.0,64.0,77.0,83.0,71.0,70.0,76.0,73.0,88.0,68.0,73.0,70.0,73.0,79.0,77.0,63.0,68.0,77.0,66.0,72.0,56.0,50.0,49.0,56.0,56.0,43.0,44.0,39.0,48.0,55.0,39.0,27.0,25.0,33.0,23.0,27.0,35.0,28.0,23.0,36.0,36.0,24.0,31.0,27.0,32.0,25.0,31.0,26.0,21.0,24.0,24.0,12.0,14.0,12.0,21.0,8.0,12.0,7.0,5.0,5.0,4.0,9.0,2.0,6.0,8.0 F83623,35.0,42.0,43.0,71.0,65.0,76.0,74.0,79.0,78.0,94.0,90.0,93.0,103.0,103.0,104.0,105.0,96.0,100.0,71.0,79.0,47.0,60.0,56.0,66.0,77.0,80.0,79.0,80.0,71.0,80.0,81.0,76.0,75.0,78.0,87.0,112.0,93.0,121.0,98.0,101.0,118.0,115.0,119.0,97.0,126.0,101.0,116.0,130.0,114.0,113.0,133.0,116.0,95.0,91.0,105.0,102.0,83.0,100.0,86.0,71.0,73.0,67.0,84.0,53.0,61.0,61.0,57.0,52.0,50.0,48.0,49.0,37.0,43.0,49.0,53.0,45.0,56.0,48.0,46.0,48.0,44.0,38.0,34.0,22.0,21.0,20.0,21.0,23.0,14.0,17.0,13.0,8.0,9.0,7.0,6.0,12.0 F83624,40.0,54.0,42.0,54.0,37.0,28.0,33.0,42.0,40.0,46.0,46.0,46.0,51.0,40.0,49.0,40.0,40.0,39.0,84.0,150.0,177.0,207.0,269.0,323.0,393.0,397.0,354.0,385.0,343.0,285.0,290.0,252.0,246.0,258.0,216.0,204.0,160.0,178.0,131.0,121.0,113.0,107.0,94.0,82.0,95.0,80.0,71.0,67.0,60.0,74.0,63.0,73.0,64.0,60.0,66.0,48.0,52.0,48.0,50.0,52.0,62.0,53.0,45.0,47.0,38.0,28.0,37.0,30.0,23.0,26.0,20.0,28.0,22.0,15.0,14.0,21.0,11.0,13.0,8.0,8.0,11.0,5.0,8.0,6.0,,5.0,9.0,7.0,2.0,5.0,,,2.0,1.0,,2.0 F83632,26.0,19.0,21.0,29.0,17.0,28.0,29.0,21.0,29.0,26.0,31.0,28.0,33.0,30.0,45.0,28.0,43.0,39.0,38.0,37.0,56.0,38.0,65.0,82.0,75.0,100.0,82.0,87.0,77.0,78.0,89.0,89.0,64.0,71.0,69.0,71.0,65.0,59.0,52.0,47.0,51.0,39.0,48.0,40.0,52.0,44.0,44.0,34.0,41.0,34.0,30.0,26.0,32.0,28.0,34.0,40.0,26.0,31.0,32.0,32.0,30.0,23.0,30.0,18.0,14.0,25.0,22.0,16.0,13.0,36.0,19.0,22.0,22.0,7.0,17.0,18.0,13.0,14.0,20.0,9.0,8.0,10.0,8.0,5.0,4.0,9.0,7.0,3.0,5.0,4.0,4.0,2.0,2.0,,2.0,3.0 F83633,21.0,17.0,11.0,18.0,25.0,14.0,23.0,23.0,16.0,26.0,24.0,19.0,22.0,13.0,30.0,20.0,26.0,25.0,23.0,13.0,21.0,22.0,29.0,37.0,45.0,46.0,59.0,66.0,52.0,76.0,67.0,63.0,57.0,58.0,68.0,79.0,60.0,53.0,54.0,41.0,48.0,50.0,35.0,41.0,50.0,38.0,36.0,31.0,33.0,32.0,36.0,36.0,21.0,29.0,27.0,26.0,26.0,27.0,28.0,21.0,27.0,14.0,19.0,19.0,22.0,17.0,13.0,12.0,20.0,16.0,10.0,12.0,10.0,13.0,16.0,9.0,15.0,14.0,15.0,9.0,9.0,4.0,9.0,6.0,4.0,4.0,3.0,2.0,2.0,,3.0,2.0,1.0,1.0,2.0,4.0 F83635,16.0,28.0,17.0,20.0,20.0,24.0,29.0,22.0,27.0,10.0,15.0,17.0,18.0,16.0,16.0,14.0,10.0,17.0,57.0,90.0,102.0,98.0,148.0,187.0,234.0,195.0,224.0,236.0,193.0,208.0,179.0,140.0,152.0,168.0,122.0,100.0,102.0,86.0,85.0,71.0,59.0,54.0,37.0,47.0,31.0,38.0,26.0,26.0,23.0,22.0,23.0,21.0,14.0,17.0,23.0,20.0,15.0,17.0,17.0,16.0,15.0,15.0,10.0,10.0,7.0,11.0,7.0,10.0,13.0,8.0,10.0,6.0,6.0,7.0,6.0,7.0,3.0,7.0,2.0,3.0,8.0,5.0,2.0,2.0,3.0,,1.0,,,1.0,,1.0,2.0,,1.0,1.0 F83652,34.0,45.0,43.0,40.0,39.0,39.0,34.0,37.0,40.0,48.0,34.0,49.0,46.0,42.0,38.0,39.0,43.0,35.0,87.0,162.0,163.0,151.0,198.0,181.0,205.0,147.0,131.0,152.0,158.0,169.0,152.0,123.0,137.0,120.0,110.0,120.0,103.0,94.0,69.0,75.0,83.0,61.0,61.0,63.0,76.0,53.0,51.0,53.0,55.0,46.0,49.0,64.0,53.0,54.0,54.0,66.0,52.0,53.0,49.0,46.0,52.0,45.0,54.0,43.0,39.0,40.0,32.0,44.0,32.0,29.0,26.0,20.0,17.0,27.0,16.0,26.0,25.0,22.0,19.0,14.0,10.0,5.0,9.0,6.0,4.0,6.0,6.0,6.0,6.0,5.0,3.0,1.0,3.0,2.0,4.0,2.0 F83658,27.0,38.0,35.0,23.0,34.0,23.0,38.0,28.0,28.0,38.0,29.0,24.0,32.0,29.0,34.0,40.0,39.0,34.0,32.0,28.0,29.0,35.0,52.0,48.0,70.0,70.0,82.0,78.0,82.0,94.0,84.0,62.0,65.0,72.0,63.0,68.0,60.0,64.0,57.0,55.0,59.0,49.0,37.0,40.0,54.0,54.0,42.0,40.0,45.0,26.0,34.0,30.0,27.0,35.0,40.0,32.0,27.0,28.0,35.0,27.0,38.0,25.0,25.0,17.0,27.0,21.0,19.0,22.0,15.0,15.0,19.0,12.0,18.0,7.0,20.0,20.0,10.0,13.0,14.0,11.0,16.0,10.0,9.0,11.0,11.0,8.0,6.0,6.0,10.0,3.0,3.0,3.0,1.0,1.0,3.0,5.0 F83660,34.0,40.0,39.0,64.0,51.0,42.0,54.0,65.0,58.0,48.0,40.0,55.0,53.0,78.0,54.0,65.0,58.0,46.0,52.0,36.0,47.0,38.0,47.0,44.0,53.0,76.0,77.0,88.0,94.0,95.0,100.0,98.0,75.0,101.0,102.0,101.0,92.0,93.0,90.0,82.0,87.0,76.0,74.0,79.0,54.0,81.0,70.0,47.0,63.0,60.0,72.0,54.0,77.0,58.0,59.0,52.0,58.0,55.0,43.0,50.0,57.0,49.0,35.0,39.0,36.0,28.0,39.0,22.0,22.0,24.0,21.0,20.0,26.0,19.0,23.0,16.0,20.0,22.0,10.0,18.0,13.0,13.0,11.0,7.0,9.0,6.0,9.0,4.0,4.0,5.0,6.0,6.0,1.0,3.0,2.0,5.0 F83664,57.0,61.0,54.0,47.0,48.0,57.0,40.0,41.0,36.0,42.0,48.0,54.0,47.0,48.0,42.0,47.0,48.0,46.0,41.0,54.0,61.0,63.0,90.0,112.0,188.0,189.0,228.0,203.0,238.0,270.0,218.0,204.0,219.0,175.0,166.0,151.0,146.0,132.0,134.0,119.0,100.0,93.0,62.0,80.0,78.0,75.0,61.0,69.0,56.0,57.0,46.0,58.0,64.0,47.0,44.0,53.0,38.0,50.0,35.0,51.0,42.0,32.0,46.0,38.0,42.0,22.0,30.0,17.0,22.0,19.0,22.0,18.0,16.0,10.0,18.0,13.0,21.0,18.0,15.0,15.0,6.0,9.0,9.0,3.0,9.0,6.0,10.0,2.0,,2.0,1.0,,1.0,1.0,,3.0 F83665,60.0,64.0,56.0,74.0,74.0,65.0,71.0,85.0,97.0,97.0,84.0,101.0,73.0,105.0,84.0,80.0,77.0,90.0,66.0,83.0,105.0,125.0,100.0,138.0,153.0,158.0,209.0,206.0,213.0,226.0,207.0,191.0,227.0,217.0,233.0,214.0,212.0,211.0,205.0,205.0,201.0,188.0,188.0,188.0,166.0,152.0,152.0,135.0,118.0,116.0,103.0,119.0,110.0,92.0,89.0,91.0,69.0,80.0,58.0,74.0,57.0,78.0,53.0,50.0,44.0,44.0,65.0,42.0,40.0,34.0,30.0,39.0,36.0,25.0,28.0,23.0,28.0,29.0,23.0,13.0,19.0,17.0,18.0,13.0,19.0,13.0,9.0,6.0,4.0,9.0,14.0,7.0,6.0,6.0,1.0,10.0 F83666,23.0,31.0,30.0,34.0,20.0,18.0,34.0,27.0,34.0,35.0,42.0,37.0,33.0,23.0,37.0,31.0,36.0,27.0,29.0,26.0,25.0,44.0,46.0,65.0,70.0,113.0,104.0,112.0,120.0,112.0,106.0,107.0,84.0,82.0,84.0,71.0,85.0,72.0,88.0,51.0,57.0,67.0,43.0,51.0,35.0,37.0,48.0,32.0,30.0,39.0,39.0,33.0,36.0,31.0,34.0,36.0,31.0,25.0,36.0,23.0,30.0,32.0,26.0,24.0,18.0,18.0,17.0,18.0,14.0,16.0,17.0,18.0,23.0,12.0,19.0,16.0,23.0,13.0,21.0,18.0,14.0,6.0,9.0,7.0,10.0,11.0,17.0,7.0,5.0,4.0,6.0,6.0,6.0,1.0,1.0,8.0 F83671,16.0,12.0,20.0,14.0,16.0,17.0,22.0,21.0,17.0,17.0,9.0,22.0,15.0,18.0,17.0,22.0,23.0,20.0,12.0,20.0,14.0,14.0,20.0,24.0,29.0,21.0,43.0,42.0,34.0,37.0,33.0,49.0,34.0,25.0,36.0,34.0,41.0,37.0,29.0,28.0,30.0,28.0,26.0,19.0,21.0,32.0,19.0,22.0,25.0,21.0,16.0,16.0,19.0,16.0,16.0,22.0,16.0,25.0,8.0,24.0,18.0,20.0,16.0,16.0,11.0,11.0,13.0,10.0,12.0,8.0,5.0,7.0,4.0,6.0,3.0,4.0,5.0,5.0,2.0,,2.0,7.0,4.0,6.0,4.0,6.0,4.0,3.0,2.0,,1.0,,1.0,1.0,, F83672,7.0,4.0,3.0,4.0,3.0,2.0,6.0,2.0,2.0,,2.0,2.0,2.0,,2.0,3.0,2.0,5.0,56.0,155.0,296.0,390.0,564.0,726.0,882.0,662.0,697.0,617.0,465.0,452.0,363.0,290.0,267.0,266.0,205.0,191.0,176.0,109.0,108.0,87.0,74.0,63.0,51.0,38.0,20.0,31.0,33.0,16.0,14.0,25.0,12.0,12.0,10.0,18.0,10.0,18.0,15.0,15.0,10.0,9.0,8.0,14.0,11.0,10.0,11.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,5.0,5.0,3.0,6.0,1.0,1.0,2.0,4.0,2.0,,3.0,,,1.0,2.0,,,1.0,,1.0,,,,1.0 F83673,23.0,26.0,31.0,29.0,25.0,20.0,26.0,22.0,25.0,22.0,21.0,26.0,18.0,31.0,21.0,25.0,33.0,20.0,31.0,25.0,27.0,38.0,43.0,40.0,69.0,59.0,89.0,97.0,99.0,88.0,111.0,99.0,83.0,77.0,95.0,77.0,58.0,50.0,62.0,54.0,33.0,41.0,33.0,36.0,38.0,39.0,27.0,28.0,39.0,41.0,25.0,41.0,39.0,31.0,24.0,23.0,30.0,37.0,41.0,48.0,34.0,34.0,31.0,26.0,27.0,29.0,20.0,29.0,19.0,15.0,20.0,15.0,12.0,11.0,10.0,8.0,7.0,16.0,10.0,5.0,12.0,7.0,4.0,7.0,7.0,7.0,10.0,3.0,6.0,1.0,3.0,2.0,2.0,2.0,2.0, F83674,27.0,28.0,26.0,29.0,25.0,21.0,31.0,30.0,39.0,37.0,35.0,41.0,41.0,39.0,45.0,33.0,49.0,37.0,48.0,34.0,55.0,45.0,74.0,92.0,105.0,79.0,82.0,107.0,110.0,108.0,94.0,82.0,81.0,88.0,82.0,102.0,97.0,80.0,75.0,68.0,79.0,57.0,79.0,72.0,60.0,76.0,58.0,66.0,53.0,64.0,43.0,60.0,60.0,61.0,69.0,50.0,71.0,44.0,50.0,78.0,45.0,52.0,42.0,63.0,46.0,46.0,41.0,34.0,24.0,24.0,27.0,39.0,35.0,13.0,18.0,22.0,24.0,29.0,25.0,21.0,18.0,18.0,15.0,17.0,15.0,13.0,9.0,8.0,6.0,11.0,10.0,1.0,5.0,8.0,4.0,6.0 F83678,5.0,7.0,7.0,4.0,10.0,8.0,14.0,13.0,8.0,5.0,13.0,11.0,14.0,8.0,10.0,9.0,17.0,7.0,7.0,3.0,8.0,4.0,12.0,5.0,4.0,12.0,14.0,15.0,14.0,15.0,8.0,17.0,13.0,16.0,7.0,20.0,16.0,15.0,18.0,13.0,13.0,22.0,19.0,13.0,14.0,13.0,18.0,19.0,20.0,7.0,16.0,10.0,12.0,11.0,14.0,18.0,15.0,14.0,10.0,15.0,11.0,19.0,13.0,23.0,19.0,19.0,10.0,16.0,12.0,13.0,7.0,13.0,13.0,13.0,3.0,11.0,11.0,7.0,8.0,8.0,3.0,2.0,3.0,,5.0,4.0,3.0,4.0,4.0,4.0,,4.0,2.0,,,4.0 F83680,23.0,18.0,12.0,17.0,10.0,11.0,9.0,9.0,12.0,14.0,17.0,9.0,20.0,18.0,17.0,14.0,15.0,15.0,17.0,15.0,19.0,23.0,50.0,102.0,130.0,88.0,71.0,72.0,78.0,84.0,89.0,63.0,63.0,73.0,65.0,60.0,40.0,57.0,41.0,39.0,23.0,32.0,42.0,30.0,24.0,21.0,19.0,25.0,25.0,27.0,22.0,15.0,12.0,16.0,19.0,23.0,24.0,17.0,15.0,20.0,20.0,26.0,23.0,21.0,18.0,13.0,8.0,15.0,9.0,14.0,7.0,5.0,14.0,8.0,9.0,9.0,4.0,5.0,12.0,7.0,8.0,6.0,7.0,7.0,7.0,6.0,3.0,1.0,4.0,2.0,2.0,2.0,2.0,1.0,, F83681,20.0,23.0,31.0,32.0,35.0,22.0,33.0,41.0,40.0,43.0,34.0,40.0,45.0,43.0,35.0,29.0,42.0,26.0,37.0,47.0,45.0,57.0,59.0,86.0,82.0,95.0,120.0,108.0,87.0,96.0,105.0,105.0,104.0,113.0,101.0,94.0,100.0,101.0,85.0,86.0,63.0,72.0,56.0,58.0,63.0,58.0,50.0,46.0,39.0,42.0,33.0,49.0,54.0,43.0,37.0,54.0,36.0,44.0,41.0,47.0,59.0,44.0,35.0,32.0,33.0,32.0,28.0,39.0,24.0,23.0,28.0,21.0,21.0,22.0,17.0,23.0,23.0,13.0,18.0,23.0,10.0,16.0,17.0,14.0,14.0,10.0,15.0,6.0,3.0,13.0,5.0,6.0,6.0,,2.0,9.0 F83683,18.0,17.0,30.0,27.0,23.0,29.0,22.0,28.0,19.0,19.0,24.0,28.0,22.0,28.0,33.0,25.0,27.0,31.0,29.0,36.0,50.0,62.0,71.0,104.0,104.0,113.0,98.0,106.0,102.0,94.0,79.0,84.0,77.0,62.0,79.0,61.0,71.0,65.0,53.0,38.0,48.0,45.0,37.0,29.0,31.0,34.0,30.0,33.0,27.0,24.0,28.0,29.0,18.0,31.0,26.0,17.0,24.0,27.0,27.0,26.0,16.0,17.0,22.0,20.0,18.0,5.0,14.0,8.0,18.0,8.0,11.0,8.0,12.0,13.0,5.0,8.0,6.0,6.0,11.0,10.0,6.0,3.0,6.0,4.0,1.0,4.0,1.0,2.0,1.0,5.0,3.0,1.0,1.0,1.0,1.0, F83686,61.0,56.0,42.0,30.0,35.0,26.0,38.0,29.0,35.0,28.0,38.0,24.0,19.0,18.0,27.0,33.0,30.0,26.0,45.0,65.0,56.0,60.0,85.0,112.0,145.0,190.0,196.0,223.0,238.0,195.0,197.0,185.0,171.0,183.0,147.0,142.0,151.0,121.0,120.0,123.0,87.0,79.0,70.0,70.0,79.0,48.0,56.0,52.0,47.0,47.0,33.0,41.0,32.0,45.0,35.0,31.0,41.0,35.0,28.0,34.0,34.0,28.0,22.0,23.0,23.0,24.0,19.0,17.0,16.0,20.0,14.0,18.0,11.0,9.0,15.0,17.0,7.0,12.0,7.0,6.0,10.0,13.0,3.0,4.0,5.0,5.0,4.0,10.0,1.0,4.0,1.0,4.0,2.0,,,4.0 F85002,402.0,449.0,463.0,482.0,512.0,525.0,560.0,601.0,599.0,617.0,605.0,643.0,649.0,682.0,729.0,683.0,661.0,709.0,677.0,647.0,596.0,615.0,641.0,576.0,625.0,630.0,637.0,670.0,672.0,639.0,656.0,624.0,690.0,675.0,666.0,661.0,748.0,723.0,709.0,724.0,749.0,660.0,697.0,694.0,732.0,697.0,666.0,676.0,656.0,600.0,631.0,609.0,612.0,625.0,624.0,605.0,615.0,559.0,605.0,606.0,609.0,525.0,566.0,464.0,490.0,414.0,381.0,402.0,377.0,347.0,353.0,305.0,275.0,286.0,263.0,281.0,258.0,286.0,237.0,222.0,216.0,186.0,170.0,182.0,160.0,162.0,151.0,128.0,105.0,115.0,88.0,68.0,59.0,51.0,29.0,90.0 F85004,37.0,47.0,44.0,53.0,53.0,65.0,86.0,66.0,70.0,92.0,64.0,83.0,85.0,81.0,105.0,88.0,117.0,111.0,80.0,74.0,81.0,73.0,68.0,84.0,70.0,84.0,69.0,82.0,96.0,79.0,60.0,77.0,83.0,105.0,79.0,99.0,94.0,87.0,69.0,108.0,109.0,86.0,103.0,89.0,88.0,95.0,89.0,108.0,80.0,70.0,81.0,78.0,83.0,90.0,98.0,82.0,84.0,87.0,74.0,85.0,91.0,91.0,66.0,71.0,68.0,64.0,73.0,70.0,64.0,55.0,50.0,53.0,35.0,48.0,40.0,43.0,37.0,48.0,37.0,27.0,32.0,41.0,25.0,28.0,27.0,31.0,22.0,20.0,14.0,10.0,9.0,5.0,5.0,6.0,1.0,8.0 F85007,62.0,68.0,68.0,75.0,73.0,65.0,91.0,83.0,72.0,84.0,93.0,79.0,76.0,82.0,72.0,92.0,93.0,93.0,88.0,84.0,71.0,99.0,87.0,82.0,92.0,105.0,104.0,125.0,119.0,115.0,119.0,131.0,111.0,126.0,130.0,131.0,129.0,137.0,140.0,136.0,150.0,156.0,122.0,115.0,118.0,118.0,121.0,133.0,110.0,116.0,122.0,113.0,108.0,127.0,111.0,114.0,126.0,98.0,119.0,101.0,102.0,82.0,112.0,94.0,96.0,86.0,88.0,58.0,65.0,60.0,56.0,52.0,60.0,52.0,37.0,39.0,42.0,30.0,51.0,35.0,34.0,30.0,18.0,19.0,28.0,23.0,15.0,11.0,18.0,15.0,17.0,4.0,7.0,6.0,5.0,2.0 F85008,24.0,28.0,36.0,33.0,44.0,62.0,47.0,42.0,51.0,68.0,64.0,66.0,65.0,51.0,67.0,68.0,63.0,75.0,82.0,69.0,79.0,56.0,59.0,93.0,80.0,88.0,66.0,77.0,92.0,100.0,108.0,90.0,97.0,68.0,92.0,82.0,83.0,93.0,98.0,78.0,85.0,83.0,94.0,90.0,83.0,103.0,74.0,83.0,67.0,78.0,89.0,73.0,89.0,93.0,85.0,73.0,89.0,93.0,66.0,76.0,92.0,77.0,68.0,76.0,69.0,84.0,57.0,63.0,47.0,46.0,38.0,35.0,46.0,32.0,42.0,37.0,25.0,37.0,30.0,23.0,29.0,26.0,19.0,17.0,18.0,15.0,19.0,12.0,9.0,17.0,12.0,7.0,2.0,3.0,5.0,4.0 F85010,6.0,20.0,15.0,23.0,21.0,34.0,22.0,33.0,32.0,16.0,22.0,21.0,26.0,19.0,29.0,25.0,31.0,23.0,33.0,23.0,23.0,29.0,30.0,24.0,23.0,24.0,24.0,23.0,30.0,28.0,25.0,20.0,26.0,31.0,27.0,23.0,28.0,37.0,39.0,37.0,37.0,25.0,29.0,27.0,29.0,27.0,30.0,37.0,25.0,26.0,23.0,32.0,22.0,35.0,24.0,27.0,27.0,32.0,37.0,36.0,34.0,22.0,28.0,25.0,30.0,33.0,28.0,20.0,19.0,25.0,21.0,22.0,24.0,19.0,16.0,15.0,21.0,12.0,22.0,13.0,11.0,12.0,12.0,7.0,6.0,12.0,5.0,9.0,7.0,8.0,11.0,5.0,2.0,2.0,4.0,11.0 F85013,35.0,41.0,57.0,50.0,39.0,41.0,48.0,47.0,37.0,58.0,45.0,70.0,46.0,55.0,52.0,61.0,65.0,50.0,53.0,49.0,48.0,63.0,59.0,60.0,78.0,95.0,91.0,84.0,92.0,83.0,76.0,78.0,99.0,66.0,78.0,76.0,89.0,91.0,95.0,74.0,86.0,78.0,77.0,78.0,72.0,59.0,71.0,68.0,58.0,67.0,68.0,55.0,62.0,54.0,69.0,54.0,72.0,68.0,60.0,57.0,67.0,61.0,54.0,49.0,50.0,41.0,42.0,45.0,30.0,26.0,27.0,21.0,19.0,18.0,20.0,20.0,19.0,13.0,15.0,11.0,16.0,12.0,7.0,10.0,9.0,10.0,9.0,13.0,5.0,4.0,7.0,4.0,7.0,6.0,2.0,11.0 F85014,71.0,49.0,62.0,59.0,70.0,54.0,56.0,88.0,67.0,89.0,68.0,70.0,95.0,97.0,83.0,89.0,90.0,80.0,79.0,54.0,66.0,67.0,80.0,86.0,127.0,150.0,153.0,173.0,177.0,171.0,181.0,155.0,154.0,155.0,136.0,145.0,144.0,133.0,141.0,127.0,133.0,119.0,141.0,126.0,142.0,121.0,117.0,127.0,125.0,127.0,128.0,115.0,129.0,98.0,121.0,118.0,132.0,119.0,109.0,102.0,82.0,100.0,80.0,87.0,72.0,83.0,91.0,67.0,59.0,71.0,69.0,66.0,64.0,70.0,59.0,71.0,76.0,72.0,82.0,57.0,47.0,58.0,61.0,35.0,45.0,39.0,33.0,28.0,32.0,23.0,22.0,10.0,11.0,8.0,11.0,29.0 F85016,30.0,28.0,24.0,26.0,36.0,41.0,36.0,29.0,35.0,35.0,36.0,49.0,34.0,44.0,42.0,35.0,43.0,32.0,32.0,29.0,16.0,34.0,29.0,37.0,41.0,32.0,38.0,40.0,37.0,34.0,47.0,46.0,32.0,45.0,43.0,40.0,43.0,65.0,63.0,62.0,62.0,48.0,51.0,46.0,60.0,46.0,53.0,47.0,46.0,45.0,36.0,50.0,51.0,41.0,44.0,36.0,39.0,56.0,52.0,40.0,43.0,48.0,45.0,39.0,43.0,51.0,41.0,45.0,52.0,42.0,40.0,31.0,37.0,49.0,31.0,41.0,36.0,43.0,35.0,28.0,37.0,35.0,24.0,21.0,17.0,29.0,13.0,16.0,12.0,19.0,11.0,12.0,13.0,13.0,10.0,19.0 F85017,21.0,24.0,22.0,27.0,20.0,22.0,23.0,24.0,34.0,24.0,33.0,35.0,31.0,33.0,42.0,37.0,50.0,46.0,45.0,36.0,35.0,45.0,40.0,55.0,30.0,49.0,50.0,40.0,43.0,60.0,39.0,59.0,45.0,37.0,41.0,52.0,53.0,59.0,39.0,41.0,32.0,43.0,45.0,48.0,32.0,53.0,37.0,36.0,43.0,45.0,39.0,47.0,53.0,36.0,38.0,50.0,38.0,41.0,37.0,55.0,48.0,53.0,49.0,35.0,51.0,26.0,40.0,38.0,30.0,26.0,22.0,22.0,21.0,17.0,23.0,12.0,11.0,15.0,13.0,15.0,14.0,10.0,7.0,7.0,12.0,14.0,12.0,4.0,7.0,4.0,2.0,2.0,11.0,2.0,,8.0 F85019,68.0,81.0,68.0,84.0,63.0,63.0,89.0,78.0,70.0,76.0,88.0,79.0,67.0,86.0,86.0,94.0,92.0,80.0,83.0,106.0,93.0,93.0,114.0,101.0,112.0,123.0,129.0,132.0,116.0,134.0,97.0,107.0,100.0,119.0,149.0,100.0,124.0,128.0,113.0,126.0,109.0,128.0,89.0,127.0,121.0,102.0,103.0,98.0,104.0,96.0,105.0,102.0,110.0,117.0,116.0,114.0,99.0,106.0,112.0,121.0,106.0,94.0,110.0,91.0,77.0,94.0,62.0,63.0,64.0,62.0,36.0,49.0,42.0,44.0,54.0,48.0,32.0,36.0,28.0,26.0,32.0,19.0,25.0,21.0,21.0,18.0,8.0,14.0,16.0,9.0,9.0,3.0,6.0,4.0,1.0,4.0 F85020,46.0,65.0,42.0,56.0,63.0,72.0,66.0,54.0,61.0,60.0,53.0,56.0,58.0,50.0,52.0,56.0,58.0,77.0,43.0,47.0,45.0,38.0,46.0,37.0,60.0,65.0,60.0,60.0,57.0,61.0,64.0,61.0,60.0,67.0,75.0,89.0,98.0,74.0,83.0,67.0,86.0,75.0,74.0,76.0,70.0,88.0,83.0,63.0,67.0,72.0,69.0,80.0,66.0,68.0,60.0,63.0,64.0,57.0,72.0,66.0,57.0,66.0,66.0,54.0,47.0,81.0,61.0,49.0,45.0,43.0,51.0,39.0,54.0,51.0,40.0,48.0,35.0,30.0,34.0,39.0,36.0,17.0,35.0,29.0,25.0,18.0,20.0,17.0,13.0,14.0,9.0,12.0,6.0,2.0,5.0,14.0 F85023,72.0,84.0,95.0,105.0,97.0,114.0,97.0,102.0,118.0,104.0,118.0,114.0,114.0,113.0,124.0,98.0,105.0,116.0,92.0,91.0,88.0,84.0,96.0,99.0,94.0,95.0,91.0,122.0,130.0,104.0,123.0,132.0,123.0,112.0,105.0,139.0,122.0,129.0,104.0,113.0,128.0,113.0,123.0,115.0,107.0,130.0,109.0,88.0,72.0,81.0,82.0,69.0,82.0,59.0,50.0,58.0,63.0,48.0,60.0,56.0,63.0,56.0,39.0,41.0,43.0,36.0,34.0,25.0,23.0,27.0,23.0,20.0,21.0,21.0,18.0,16.0,15.0,17.0,16.0,15.0,7.0,13.0,13.0,13.0,10.0,10.0,6.0,7.0,8.0,10.0,4.0,3.0,2.0,4.0,1.0,3.0 F85025,87.0,113.0,106.0,80.0,79.0,80.0,80.0,82.0,99.0,79.0,93.0,77.0,81.0,97.0,82.0,81.0,87.0,76.0,75.0,66.0,54.0,60.0,77.0,56.0,92.0,100.0,91.0,118.0,112.0,119.0,111.0,138.0,118.0,146.0,122.0,118.0,131.0,145.0,148.0,131.0,126.0,101.0,100.0,125.0,125.0,116.0,116.0,106.0,111.0,105.0,92.0,92.0,109.0,93.0,95.0,93.0,95.0,96.0,85.0,99.0,103.0,94.0,77.0,81.0,73.0,73.0,68.0,68.0,69.0,61.0,51.0,72.0,47.0,72.0,53.0,58.0,43.0,49.0,79.0,61.0,33.0,38.0,34.0,36.0,23.0,25.0,24.0,21.0,27.0,17.0,18.0,13.0,10.0,5.0,5.0,23.0 F85028,26.0,18.0,25.0,20.0,24.0,27.0,38.0,36.0,20.0,35.0,23.0,34.0,31.0,26.0,45.0,40.0,48.0,44.0,50.0,44.0,42.0,41.0,35.0,58.0,39.0,52.0,44.0,43.0,42.0,35.0,46.0,46.0,33.0,32.0,39.0,54.0,45.0,42.0,38.0,25.0,39.0,44.0,46.0,45.0,42.0,38.0,36.0,52.0,46.0,46.0,53.0,50.0,42.0,50.0,47.0,47.0,37.0,44.0,50.0,45.0,54.0,44.0,38.0,30.0,32.0,50.0,34.0,29.0,43.0,30.0,19.0,13.0,14.0,17.0,27.0,18.0,11.0,17.0,23.0,9.0,14.0,13.0,7.0,13.0,11.0,12.0,8.0,11.0,3.0,8.0,4.0,5.0,2.0,3.0,2.0,8.0 F85029,33.0,58.0,50.0,52.0,56.0,71.0,65.0,64.0,70.0,62.0,61.0,73.0,71.0,77.0,87.0,66.0,58.0,51.0,63.0,53.0,44.0,47.0,44.0,59.0,53.0,56.0,80.0,60.0,69.0,63.0,63.0,59.0,83.0,70.0,72.0,70.0,68.0,74.0,111.0,80.0,106.0,105.0,90.0,102.0,97.0,88.0,102.0,105.0,101.0,81.0,77.0,83.0,81.0,87.0,82.0,97.0,90.0,94.0,60.0,81.0,92.0,96.0,63.0,84.0,65.0,70.0,67.0,70.0,67.0,66.0,82.0,82.0,76.0,65.0,63.0,68.0,70.0,63.0,61.0,61.0,53.0,45.0,48.0,48.0,25.0,44.0,31.0,42.0,35.0,22.0,29.0,18.0,24.0,17.0,15.0,28.0 F85030,56.0,55.0,80.0,60.0,81.0,65.0,67.0,78.0,79.0,80.0,81.0,105.0,100.0,94.0,91.0,96.0,98.0,91.0,91.0,87.0,99.0,86.0,83.0,90.0,109.0,96.0,117.0,93.0,111.0,99.0,98.0,109.0,102.0,91.0,82.0,98.0,97.0,101.0,100.0,80.0,91.0,103.0,82.0,84.0,90.0,95.0,88.0,80.0,95.0,92.0,87.0,77.0,85.0,90.0,97.0,84.0,93.0,84.0,83.0,87.0,84.0,83.0,83.0,69.0,60.0,64.0,49.0,50.0,43.0,45.0,38.0,35.0,31.0,34.0,42.0,25.0,28.0,28.0,26.0,24.0,21.0,26.0,21.0,20.0,24.0,19.0,22.0,23.0,25.0,9.0,3.0,11.0,6.0,7.0,8.0,15.0 F85031,52.0,72.0,51.0,55.0,66.0,62.0,58.0,54.0,65.0,53.0,53.0,51.0,56.0,56.0,70.0,50.0,57.0,60.0,74.0,66.0,70.0,70.0,74.0,89.0,124.0,104.0,119.0,144.0,120.0,130.0,113.0,101.0,152.0,127.0,134.0,111.0,130.0,139.0,119.0,117.0,114.0,126.0,91.0,96.0,94.0,94.0,93.0,72.0,80.0,71.0,97.0,86.0,65.0,81.0,81.0,61.0,73.0,64.0,69.0,78.0,64.0,57.0,56.0,62.0,54.0,46.0,35.0,51.0,37.0,56.0,40.0,25.0,30.0,29.0,42.0,29.0,25.0,26.0,25.0,20.0,18.0,21.0,17.0,9.0,14.0,22.0,13.0,17.0,10.0,9.0,7.0,6.0,5.0,3.0,3.0,2.0 F85032,49.0,46.0,42.0,55.0,57.0,47.0,44.0,69.0,51.0,62.0,70.0,69.0,62.0,46.0,60.0,63.0,66.0,55.0,55.0,39.0,42.0,37.0,40.0,52.0,43.0,36.0,50.0,62.0,53.0,58.0,69.0,66.0,82.0,61.0,81.0,73.0,79.0,71.0,92.0,67.0,82.0,72.0,73.0,96.0,86.0,77.0,84.0,67.0,90.0,68.0,62.0,64.0,71.0,67.0,48.0,70.0,61.0,56.0,62.0,46.0,53.0,52.0,47.0,47.0,62.0,44.0,43.0,50.0,44.0,36.0,43.0,39.0,32.0,32.0,40.0,40.0,34.0,27.0,41.0,31.0,36.0,36.0,29.0,25.0,23.0,23.0,18.0,22.0,22.0,18.0,13.0,15.0,8.0,9.0,4.0,20.0 F85033,67.0,61.0,82.0,92.0,88.0,74.0,101.0,96.0,112.0,123.0,125.0,127.0,117.0,131.0,127.0,118.0,118.0,118.0,118.0,110.0,65.0,73.0,89.0,105.0,107.0,105.0,123.0,117.0,130.0,112.0,118.0,109.0,112.0,129.0,107.0,146.0,145.0,135.0,116.0,151.0,156.0,138.0,152.0,160.0,181.0,133.0,173.0,146.0,138.0,159.0,156.0,122.0,142.0,152.0,148.0,166.0,146.0,156.0,139.0,151.0,164.0,152.0,142.0,152.0,171.0,170.0,136.0,125.0,120.0,136.0,111.0,116.0,97.0,116.0,96.0,88.0,98.0,119.0,129.0,91.0,73.0,72.0,66.0,58.0,58.0,56.0,56.0,56.0,47.0,47.0,34.0,20.0,19.0,17.0,18.0,30.0 F85034,55.0,55.0,47.0,57.0,46.0,39.0,35.0,39.0,40.0,29.0,30.0,37.0,34.0,30.0,32.0,38.0,35.0,29.0,26.0,30.0,37.0,42.0,44.0,78.0,85.0,92.0,87.0,98.0,100.0,108.0,94.0,109.0,101.0,102.0,82.0,81.0,86.0,79.0,87.0,80.0,57.0,90.0,65.0,62.0,60.0,66.0,49.0,45.0,56.0,35.0,49.0,33.0,31.0,43.0,47.0,36.0,49.0,36.0,47.0,34.0,31.0,36.0,36.0,30.0,36.0,34.0,28.0,39.0,31.0,27.0,27.0,21.0,20.0,21.0,23.0,27.0,16.0,15.0,10.0,19.0,16.0,13.0,7.0,9.0,10.0,9.0,4.0,15.0,7.0,9.0,7.0,4.0,6.0,1.0,3.0,12.0 F85035,48.0,43.0,40.0,37.0,50.0,60.0,64.0,62.0,69.0,83.0,72.0,71.0,81.0,67.0,86.0,98.0,95.0,77.0,65.0,59.0,55.0,61.0,49.0,62.0,52.0,62.0,59.0,60.0,66.0,52.0,63.0,53.0,63.0,65.0,71.0,72.0,88.0,89.0,73.0,93.0,97.0,89.0,85.0,90.0,102.0,106.0,99.0,90.0,94.0,92.0,62.0,82.0,77.0,86.0,76.0,85.0,81.0,112.0,73.0,94.0,80.0,71.0,80.0,71.0,70.0,57.0,66.0,67.0,65.0,56.0,53.0,49.0,38.0,41.0,53.0,50.0,56.0,44.0,63.0,42.0,36.0,30.0,46.0,31.0,43.0,40.0,35.0,33.0,28.0,19.0,18.0,20.0,16.0,17.0,11.0,24.0 F85039,37.0,46.0,41.0,64.0,55.0,49.0,59.0,65.0,53.0,70.0,68.0,57.0,61.0,62.0,53.0,62.0,57.0,50.0,62.0,51.0,48.0,49.0,50.0,49.0,38.0,54.0,73.0,69.0,77.0,53.0,87.0,44.0,48.0,69.0,60.0,72.0,65.0,67.0,69.0,49.0,69.0,65.0,58.0,56.0,57.0,59.0,47.0,47.0,49.0,44.0,37.0,49.0,44.0,43.0,36.0,31.0,42.0,37.0,42.0,32.0,34.0,38.0,26.0,25.0,32.0,30.0,38.0,30.0,26.0,17.0,25.0,13.0,11.0,17.0,20.0,11.0,17.0,11.0,17.0,12.0,13.0,11.0,11.0,10.0,10.0,6.0,6.0,10.0,6.0,5.0,3.0,1.0,,1.0,2.0,4.0 F85044,28.0,38.0,46.0,44.0,41.0,53.0,45.0,59.0,49.0,33.0,46.0,35.0,38.0,45.0,48.0,48.0,49.0,61.0,65.0,51.0,49.0,48.0,50.0,52.0,56.0,70.0,51.0,64.0,62.0,45.0,51.0,66.0,68.0,55.0,64.0,55.0,42.0,63.0,66.0,52.0,66.0,42.0,45.0,64.0,33.0,41.0,45.0,61.0,53.0,42.0,47.0,39.0,41.0,38.0,43.0,35.0,41.0,43.0,25.0,33.0,39.0,36.0,30.0,36.0,32.0,29.0,29.0,25.0,30.0,19.0,16.0,18.0,21.0,15.0,15.0,22.0,11.0,7.0,14.0,15.0,8.0,3.0,7.0,11.0,9.0,14.0,11.0,6.0,5.0,7.0,6.0,3.0,2.0,,1.0,3.0 F85046,54.0,43.0,35.0,52.0,44.0,25.0,31.0,29.0,29.0,33.0,34.0,39.0,27.0,29.0,42.0,34.0,25.0,30.0,40.0,31.0,46.0,54.0,77.0,108.0,139.0,162.0,191.0,215.0,203.0,194.0,218.0,215.0,196.0,190.0,192.0,158.0,137.0,132.0,107.0,97.0,84.0,78.0,73.0,69.0,58.0,83.0,65.0,38.0,50.0,48.0,55.0,48.0,48.0,39.0,45.0,40.0,42.0,43.0,44.0,34.0,24.0,30.0,27.0,22.0,24.0,22.0,28.0,23.0,21.0,15.0,17.0,15.0,10.0,10.0,17.0,12.0,9.0,9.0,4.0,11.0,11.0,7.0,3.0,5.0,6.0,5.0,2.0,3.0,4.0,2.0,1.0,1.0,2.0,1.0,2.0, F85058,18.0,27.0,24.0,28.0,38.0,39.0,31.0,36.0,46.0,43.0,48.0,29.0,37.0,49.0,46.0,41.0,49.0,34.0,56.0,40.0,50.0,30.0,52.0,31.0,53.0,40.0,43.0,50.0,40.0,41.0,49.0,42.0,43.0,44.0,35.0,63.0,40.0,35.0,35.0,54.0,44.0,42.0,36.0,37.0,50.0,40.0,39.0,55.0,44.0,47.0,40.0,31.0,42.0,33.0,42.0,47.0,30.0,44.0,31.0,37.0,51.0,46.0,46.0,29.0,41.0,42.0,37.0,32.0,33.0,25.0,25.0,28.0,25.0,14.0,17.0,20.0,23.0,21.0,16.0,20.0,13.0,10.0,10.0,10.0,12.0,17.0,7.0,12.0,8.0,4.0,6.0,6.0,1.0,4.0,2.0,1.0 F85060,24.0,23.0,19.0,15.0,20.0,29.0,17.0,26.0,24.0,22.0,27.0,27.0,23.0,31.0,21.0,26.0,34.0,30.0,19.0,21.0,29.0,30.0,42.0,45.0,35.0,27.0,47.0,53.0,36.0,48.0,47.0,49.0,49.0,52.0,56.0,40.0,68.0,59.0,42.0,43.0,34.0,37.0,58.0,55.0,38.0,38.0,36.0,31.0,33.0,34.0,42.0,34.0,42.0,29.0,43.0,21.0,24.0,32.0,31.0,23.0,35.0,39.0,21.0,27.0,21.0,23.0,25.0,23.0,23.0,15.0,12.0,14.0,21.0,15.0,19.0,9.0,10.0,18.0,11.0,8.0,19.0,5.0,11.0,7.0,11.0,12.0,14.0,5.0,,7.0,3.0,2.0,6.0,4.0,,4.0 F85061,7.0,7.0,14.0,2.0,8.0,6.0,10.0,10.0,9.0,17.0,21.0,19.0,12.0,11.0,14.0,10.0,18.0,23.0,22.0,14.0,9.0,10.0,10.0,14.0,10.0,11.0,11.0,18.0,10.0,15.0,13.0,19.0,17.0,16.0,20.0,25.0,18.0,33.0,19.0,26.0,23.0,24.0,12.0,23.0,34.0,24.0,19.0,24.0,19.0,26.0,24.0,20.0,23.0,24.0,32.0,22.0,24.0,33.0,23.0,27.0,23.0,30.0,23.0,21.0,22.0,15.0,18.0,22.0,17.0,20.0,12.0,20.0,15.0,9.0,14.0,15.0,15.0,13.0,10.0,8.0,12.0,5.0,8.0,5.0,4.0,5.0,4.0,3.0,5.0,5.0,1.0,,1.0,1.0,,1.0 F85063,64.0,89.0,84.0,90.0,91.0,77.0,101.0,98.0,92.0,103.0,122.0,90.0,97.0,103.0,87.0,110.0,110.0,124.0,102.0,63.0,84.0,80.0,88.0,105.0,123.0,114.0,148.0,126.0,138.0,148.0,158.0,175.0,143.0,137.0,145.0,151.0,132.0,137.0,149.0,150.0,148.0,153.0,159.0,137.0,178.0,167.0,142.0,147.0,144.0,130.0,131.0,126.0,138.0,133.0,124.0,100.0,109.0,92.0,121.0,107.0,114.0,110.0,101.0,99.0,87.0,64.0,95.0,85.0,93.0,65.0,70.0,70.0,88.0,73.0,74.0,84.0,76.0,67.0,56.0,43.0,47.0,40.0,40.0,34.0,21.0,31.0,28.0,19.0,13.0,19.0,12.0,4.0,8.0,3.0,7.0,16.0 F85064,34.0,40.0,47.0,43.0,44.0,30.0,39.0,31.0,32.0,33.0,29.0,22.0,25.0,23.0,30.0,32.0,18.0,34.0,26.0,27.0,23.0,34.0,37.0,41.0,52.0,61.0,76.0,86.0,88.0,82.0,93.0,91.0,84.0,82.0,79.0,78.0,78.0,79.0,59.0,78.0,79.0,54.0,58.0,52.0,52.0,43.0,41.0,50.0,50.0,42.0,41.0,29.0,35.0,41.0,22.0,39.0,48.0,31.0,48.0,35.0,36.0,40.0,29.0,29.0,35.0,33.0,20.0,31.0,25.0,26.0,25.0,33.0,24.0,13.0,16.0,14.0,13.0,18.0,15.0,11.0,13.0,10.0,5.0,14.0,7.0,11.0,5.0,8.0,8.0,8.0,6.0,6.0,2.0,3.0,2.0,2.0 F85065,11.0,19.0,14.0,11.0,14.0,14.0,15.0,11.0,18.0,20.0,19.0,18.0,16.0,13.0,9.0,17.0,14.0,16.0,16.0,17.0,14.0,19.0,17.0,17.0,16.0,17.0,20.0,20.0,22.0,31.0,19.0,44.0,39.0,38.0,33.0,32.0,32.0,36.0,27.0,23.0,18.0,25.0,35.0,27.0,19.0,24.0,26.0,22.0,20.0,17.0,17.0,14.0,19.0,24.0,10.0,18.0,17.0,23.0,14.0,15.0,29.0,25.0,25.0,25.0,16.0,12.0,18.0,13.0,9.0,21.0,12.0,9.0,11.0,10.0,13.0,16.0,8.0,6.0,6.0,5.0,5.0,7.0,7.0,6.0,6.0,5.0,1.0,3.0,5.0,,4.0,2.0,,1.0,,1.0 F85066,58.0,69.0,68.0,100.0,74.0,97.0,90.0,103.0,93.0,105.0,92.0,85.0,117.0,103.0,114.0,105.0,115.0,112.0,87.0,78.0,83.0,90.0,91.0,105.0,105.0,140.0,136.0,135.0,134.0,126.0,119.0,140.0,154.0,145.0,172.0,177.0,166.0,157.0,156.0,151.0,162.0,167.0,163.0,200.0,169.0,158.0,170.0,149.0,116.0,149.0,150.0,116.0,128.0,122.0,145.0,114.0,119.0,141.0,137.0,136.0,138.0,124.0,98.0,116.0,101.0,103.0,80.0,90.0,87.0,70.0,71.0,75.0,62.0,62.0,69.0,48.0,54.0,48.0,60.0,48.0,42.0,38.0,32.0,31.0,17.0,22.0,27.0,18.0,13.0,20.0,10.0,14.0,11.0,5.0,7.0,12.0 F85067,12.0,11.0,22.0,14.0,13.0,10.0,7.0,4.0,20.0,15.0,8.0,7.0,17.0,20.0,17.0,9.0,15.0,15.0,27.0,25.0,34.0,29.0,33.0,34.0,34.0,51.0,53.0,54.0,49.0,50.0,69.0,54.0,45.0,43.0,62.0,38.0,40.0,43.0,43.0,26.0,23.0,22.0,24.0,17.0,25.0,22.0,20.0,32.0,22.0,36.0,27.0,24.0,25.0,24.0,26.0,32.0,37.0,21.0,25.0,24.0,33.0,31.0,24.0,24.0,18.0,20.0,21.0,15.0,18.0,11.0,17.0,18.0,15.0,8.0,10.0,16.0,12.0,14.0,5.0,14.0,10.0,10.0,9.0,10.0,4.0,9.0,9.0,9.0,6.0,5.0,6.0,4.0,5.0,1.0,,8.0 F85069,23.0,28.0,28.0,36.0,24.0,38.0,36.0,33.0,38.0,44.0,32.0,31.0,45.0,41.0,48.0,54.0,50.0,46.0,38.0,32.0,32.0,45.0,35.0,48.0,45.0,61.0,60.0,93.0,96.0,68.0,92.0,72.0,72.0,81.0,76.0,80.0,72.0,94.0,80.0,70.0,63.0,66.0,55.0,67.0,74.0,71.0,75.0,68.0,67.0,50.0,64.0,71.0,59.0,62.0,78.0,62.0,55.0,76.0,61.0,64.0,52.0,62.0,64.0,47.0,64.0,49.0,43.0,50.0,40.0,44.0,41.0,30.0,44.0,28.0,32.0,32.0,28.0,35.0,33.0,21.0,19.0,13.0,19.0,20.0,10.0,8.0,6.0,11.0,7.0,6.0,10.0,5.0,2.0,2.0,2.0,4.0 F85071,69.0,73.0,79.0,64.0,76.0,75.0,83.0,82.0,80.0,81.0,91.0,81.0,84.0,77.0,87.0,68.0,88.0,75.0,77.0,65.0,72.0,79.0,99.0,94.0,127.0,130.0,121.0,110.0,102.0,122.0,117.0,119.0,124.0,94.0,91.0,88.0,92.0,117.0,93.0,95.0,94.0,89.0,89.0,77.0,61.0,95.0,75.0,80.0,96.0,100.0,66.0,59.0,59.0,62.0,71.0,76.0,73.0,59.0,60.0,58.0,45.0,66.0,47.0,35.0,52.0,51.0,42.0,21.0,32.0,30.0,30.0,28.0,33.0,19.0,14.0,18.0,18.0,10.0,14.0,16.0,14.0,9.0,8.0,11.0,11.0,11.0,9.0,12.0,4.0,7.0,4.0,6.0,4.0,3.0,2.0,1.0 F85072,41.0,42.0,45.0,53.0,51.0,52.0,42.0,52.0,60.0,61.0,43.0,56.0,63.0,52.0,49.0,75.0,63.0,52.0,51.0,50.0,46.0,47.0,52.0,51.0,64.0,63.0,68.0,57.0,71.0,74.0,50.0,71.0,73.0,66.0,54.0,71.0,65.0,75.0,86.0,69.0,75.0,78.0,64.0,69.0,81.0,71.0,74.0,61.0,79.0,56.0,63.0,75.0,79.0,65.0,57.0,60.0,55.0,68.0,62.0,61.0,58.0,65.0,53.0,58.0,44.0,55.0,51.0,45.0,42.0,46.0,49.0,38.0,43.0,44.0,37.0,29.0,38.0,37.0,28.0,37.0,27.0,32.0,17.0,27.0,22.0,22.0,19.0,15.0,15.0,20.0,10.0,9.0,12.0,10.0,5.0,5.0 F85615,16.0,31.0,23.0,24.0,36.0,32.0,40.0,33.0,32.0,34.0,29.0,39.0,31.0,33.0,32.0,40.0,42.0,29.0,37.0,41.0,32.0,33.0,40.0,36.0,38.0,47.0,57.0,53.0,47.0,66.0,59.0,45.0,50.0,47.0,53.0,43.0,61.0,52.0,48.0,44.0,51.0,31.0,50.0,51.0,49.0,46.0,37.0,40.0,40.0,44.0,44.0,32.0,49.0,50.0,43.0,42.0,39.0,30.0,35.0,26.0,34.0,39.0,25.0,30.0,31.0,20.0,23.0,26.0,23.0,13.0,9.0,16.0,12.0,10.0,6.0,5.0,5.0,10.0,3.0,4.0,5.0,11.0,10.0,6.0,1.0,6.0,4.0,8.0,5.0,4.0,6.0,4.0,4.0,3.0,1.0,3.0 F85623,9.0,17.0,12.0,13.0,22.0,22.0,24.0,15.0,19.0,23.0,38.0,27.0,24.0,16.0,22.0,32.0,26.0,16.0,24.0,37.0,24.0,35.0,29.0,32.0,42.0,48.0,51.0,40.0,32.0,47.0,42.0,50.0,39.0,45.0,36.0,36.0,39.0,31.0,32.0,39.0,41.0,34.0,33.0,37.0,10.0,17.0,31.0,24.0,46.0,30.0,35.0,29.0,29.0,27.0,26.0,36.0,39.0,32.0,32.0,25.0,33.0,28.0,41.0,21.0,23.0,18.0,11.0,15.0,12.0,14.0,23.0,8.0,14.0,8.0,8.0,12.0,12.0,10.0,9.0,6.0,7.0,3.0,7.0,4.0,5.0,2.0,8.0,9.0,4.0,4.0,2.0,3.0,3.0,1.0,2.0,3.0 F85625,24.0,22.0,26.0,25.0,30.0,35.0,30.0,44.0,43.0,36.0,34.0,46.0,48.0,48.0,32.0,44.0,41.0,32.0,35.0,32.0,29.0,19.0,29.0,26.0,40.0,41.0,39.0,40.0,39.0,32.0,45.0,53.0,43.0,46.0,37.0,45.0,44.0,52.0,49.0,57.0,48.0,50.0,72.0,69.0,52.0,54.0,45.0,44.0,57.0,53.0,43.0,53.0,47.0,44.0,43.0,51.0,53.0,62.0,60.0,52.0,59.0,50.0,51.0,42.0,62.0,34.0,37.0,27.0,36.0,23.0,37.0,36.0,30.0,21.0,34.0,23.0,30.0,29.0,19.0,22.0,20.0,22.0,20.0,12.0,23.0,21.0,17.0,12.0,8.0,11.0,9.0,13.0,4.0,3.0,1.0,17.0 F85628,57.0,32.0,25.0,42.0,34.0,25.0,28.0,42.0,42.0,42.0,28.0,38.0,38.0,31.0,37.0,43.0,35.0,30.0,56.0,71.0,70.0,68.0,143.0,139.0,113.0,118.0,107.0,98.0,100.0,121.0,94.0,112.0,120.0,109.0,95.0,80.0,79.0,85.0,59.0,65.0,64.0,57.0,66.0,65.0,54.0,41.0,45.0,49.0,43.0,33.0,40.0,43.0,31.0,38.0,39.0,34.0,35.0,46.0,32.0,32.0,31.0,28.0,32.0,23.0,22.0,34.0,26.0,23.0,17.0,18.0,19.0,22.0,14.0,8.0,8.0,13.0,19.0,21.0,15.0,10.0,15.0,6.0,8.0,7.0,10.0,8.0,10.0,2.0,6.0,6.0,3.0,2.0,4.0,4.0,2.0,3.0 F85634,50.0,48.0,47.0,49.0,57.0,49.0,64.0,47.0,65.0,51.0,45.0,60.0,70.0,63.0,72.0,81.0,69.0,64.0,74.0,73.0,79.0,69.0,63.0,78.0,80.0,77.0,70.0,89.0,89.0,88.0,71.0,70.0,80.0,72.0,85.0,60.0,85.0,87.0,75.0,83.0,79.0,76.0,75.0,60.0,56.0,62.0,76.0,60.0,53.0,58.0,56.0,54.0,49.0,59.0,62.0,63.0,56.0,41.0,54.0,43.0,47.0,52.0,43.0,37.0,37.0,37.0,26.0,29.0,26.0,22.0,25.0,27.0,27.0,23.0,17.0,15.0,18.0,18.0,12.0,14.0,22.0,14.0,11.0,11.0,12.0,12.0,16.0,8.0,4.0,6.0,6.0,5.0,2.0,3.0,1.0,2.0 F85640,27.0,21.0,29.0,27.0,27.0,29.0,23.0,44.0,39.0,41.0,25.0,42.0,37.0,46.0,39.0,26.0,31.0,21.0,28.0,25.0,28.0,28.0,27.0,42.0,50.0,59.0,44.0,42.0,44.0,37.0,31.0,37.0,50.0,58.0,60.0,56.0,70.0,80.0,66.0,61.0,62.0,60.0,69.0,62.0,83.0,78.0,69.0,56.0,57.0,51.0,49.0,39.0,51.0,44.0,34.0,39.0,49.0,41.0,34.0,39.0,37.0,30.0,33.0,28.0,24.0,24.0,30.0,22.0,18.0,19.0,20.0,8.0,16.0,21.0,24.0,28.0,15.0,18.0,21.0,18.0,13.0,11.0,14.0,8.0,11.0,9.0,4.0,9.0,8.0,3.0,3.0,3.0,2.0,,,2.0 F85642,22.0,28.0,34.0,28.0,30.0,39.0,42.0,53.0,52.0,62.0,54.0,56.0,49.0,54.0,44.0,49.0,52.0,56.0,54.0,29.0,37.0,36.0,50.0,54.0,52.0,55.0,54.0,56.0,46.0,59.0,47.0,67.0,53.0,68.0,66.0,69.0,54.0,83.0,75.0,86.0,79.0,76.0,74.0,80.0,82.0,82.0,85.0,75.0,67.0,80.0,61.0,66.0,64.0,74.0,52.0,72.0,59.0,68.0,53.0,50.0,58.0,52.0,58.0,58.0,56.0,48.0,47.0,56.0,45.0,39.0,36.0,30.0,38.0,39.0,38.0,32.0,31.0,34.0,22.0,28.0,28.0,33.0,28.0,19.0,21.0,12.0,23.0,17.0,16.0,20.0,20.0,12.0,13.0,11.0,7.0,22.0 F85650,34.0,27.0,34.0,33.0,21.0,30.0,30.0,33.0,34.0,34.0,35.0,31.0,44.0,48.0,35.0,42.0,36.0,33.0,38.0,31.0,34.0,48.0,41.0,49.0,40.0,46.0,37.0,57.0,50.0,47.0,51.0,59.0,41.0,54.0,39.0,51.0,66.0,45.0,51.0,47.0,43.0,47.0,33.0,38.0,40.0,36.0,47.0,42.0,28.0,36.0,40.0,47.0,37.0,35.0,29.0,29.0,37.0,34.0,26.0,37.0,33.0,29.0,31.0,33.0,29.0,23.0,26.0,28.0,21.0,24.0,20.0,28.0,17.0,24.0,21.0,28.0,18.0,18.0,16.0,11.0,17.0,17.0,11.0,7.0,12.0,10.0,8.0,6.0,9.0,4.0,5.0,2.0,,1.0,3.0,4.0 F85663,16.0,17.0,21.0,24.0,34.0,29.0,27.0,22.0,31.0,35.0,35.0,30.0,28.0,32.0,42.0,23.0,23.0,37.0,36.0,23.0,24.0,38.0,32.0,28.0,38.0,26.0,42.0,34.0,48.0,33.0,35.0,38.0,46.0,33.0,36.0,32.0,38.0,49.0,38.0,41.0,32.0,35.0,34.0,37.0,27.0,31.0,24.0,22.0,31.0,37.0,29.0,27.0,21.0,25.0,22.0,37.0,32.0,23.0,37.0,28.0,36.0,27.0,43.0,26.0,26.0,20.0,26.0,22.0,16.0,26.0,21.0,15.0,11.0,17.0,18.0,11.0,15.0,10.0,14.0,12.0,13.0,15.0,10.0,12.0,10.0,10.0,10.0,9.0,11.0,4.0,4.0,,4.0,,,4.0 F85666,11.0,12.0,22.0,21.0,21.0,15.0,23.0,23.0,17.0,18.0,23.0,12.0,23.0,26.0,29.0,24.0,33.0,33.0,31.0,22.0,26.0,25.0,27.0,27.0,38.0,27.0,21.0,28.0,26.0,27.0,28.0,33.0,19.0,25.0,35.0,17.0,25.0,32.0,31.0,32.0,21.0,30.0,22.0,37.0,17.0,30.0,30.0,19.0,38.0,29.0,29.0,21.0,24.0,26.0,32.0,29.0,24.0,35.0,34.0,29.0,28.0,31.0,31.0,16.0,22.0,18.0,15.0,16.0,17.0,20.0,15.0,18.0,11.0,12.0,10.0,8.0,13.0,7.0,13.0,8.0,3.0,9.0,9.0,7.0,6.0,3.0,7.0,3.0,1.0,3.0,4.0,6.0,1.0,2.0,1.0,4.0 F85669,132.0,125.0,114.0,124.0,124.0,109.0,96.0,96.0,121.0,92.0,86.0,75.0,91.0,82.0,75.0,91.0,90.0,108.0,82.0,79.0,108.0,114.0,112.0,169.0,217.0,282.0,301.0,309.0,347.0,356.0,371.0,357.0,387.0,355.0,378.0,373.0,359.0,350.0,339.0,273.0,237.0,240.0,193.0,207.0,195.0,159.0,145.0,176.0,126.0,132.0,126.0,142.0,125.0,88.0,99.0,97.0,90.0,73.0,75.0,80.0,80.0,64.0,75.0,51.0,65.0,34.0,42.0,29.0,35.0,42.0,38.0,31.0,30.0,20.0,24.0,17.0,17.0,16.0,24.0,13.0,9.0,6.0,12.0,9.0,8.0,9.0,10.0,4.0,3.0,6.0,4.0,3.0,2.0,1.0,1.0,5.0 F85675,11.0,13.0,20.0,26.0,10.0,20.0,22.0,27.0,22.0,23.0,25.0,38.0,38.0,39.0,33.0,47.0,40.0,47.0,38.0,20.0,33.0,30.0,19.0,33.0,31.0,39.0,31.0,31.0,31.0,37.0,35.0,42.0,41.0,36.0,27.0,38.0,24.0,40.0,32.0,33.0,41.0,32.0,33.0,48.0,38.0,52.0,50.0,39.0,36.0,60.0,49.0,30.0,48.0,52.0,29.0,44.0,47.0,34.0,42.0,42.0,35.0,31.0,30.0,35.0,31.0,29.0,16.0,22.0,23.0,19.0,25.0,22.0,17.0,16.0,24.0,26.0,18.0,27.0,19.0,17.0,15.0,17.0,15.0,11.0,11.0,5.0,8.0,14.0,6.0,9.0,4.0,8.0,8.0,6.0,4.0,15.0 F85676,16.0,30.0,34.0,36.0,36.0,33.0,28.0,29.0,46.0,44.0,43.0,31.0,55.0,39.0,53.0,45.0,34.0,54.0,44.0,44.0,44.0,31.0,34.0,35.0,48.0,52.0,43.0,48.0,44.0,30.0,45.0,35.0,40.0,43.0,36.0,37.0,41.0,42.0,54.0,34.0,42.0,37.0,41.0,53.0,40.0,39.0,41.0,29.0,48.0,39.0,52.0,38.0,39.0,32.0,38.0,29.0,33.0,32.0,33.0,34.0,35.0,22.0,28.0,24.0,35.0,13.0,24.0,17.0,24.0,28.0,17.0,21.0,19.0,17.0,13.0,20.0,13.0,11.0,11.0,15.0,11.0,8.0,10.0,7.0,6.0,8.0,5.0,14.0,2.0,9.0,6.0,1.0,1.0,2.0,3.0,4.0 F85678,20.0,26.0,20.0,36.0,30.0,29.0,25.0,32.0,27.0,33.0,19.0,29.0,24.0,16.0,30.0,24.0,29.0,28.0,21.0,28.0,14.0,15.0,21.0,22.0,20.0,20.0,36.0,31.0,32.0,28.0,36.0,43.0,36.0,36.0,43.0,40.0,36.0,43.0,39.0,43.0,41.0,41.0,34.0,34.0,37.0,33.0,32.0,36.0,22.0,31.0,30.0,25.0,33.0,34.0,26.0,25.0,31.0,35.0,18.0,27.0,22.0,21.0,28.0,15.0,18.0,20.0,16.0,6.0,12.0,15.0,11.0,10.0,8.0,10.0,4.0,8.0,14.0,4.0,9.0,5.0,5.0,1.0,7.0,2.0,4.0,3.0,3.0,5.0,1.0,1.0,,2.0,2.0,2.0,2.0,1.0 F85682,19.0,22.0,27.0,33.0,25.0,31.0,38.0,41.0,38.0,34.0,33.0,46.0,42.0,47.0,35.0,48.0,56.0,65.0,58.0,55.0,45.0,49.0,44.0,43.0,52.0,37.0,40.0,35.0,62.0,36.0,52.0,40.0,39.0,40.0,41.0,38.0,40.0,48.0,33.0,50.0,49.0,41.0,46.0,33.0,46.0,38.0,39.0,36.0,53.0,43.0,44.0,57.0,35.0,45.0,40.0,48.0,35.0,41.0,50.0,36.0,44.0,43.0,40.0,33.0,35.0,23.0,40.0,33.0,25.0,19.0,18.0,23.0,19.0,19.0,11.0,20.0,17.0,14.0,16.0,9.0,6.0,10.0,8.0,8.0,9.0,2.0,7.0,6.0,4.0,7.0,6.0,3.0,1.0,2.0,3.0,1.0 F85687,32.0,28.0,40.0,39.0,31.0,40.0,27.0,44.0,63.0,44.0,54.0,63.0,46.0,49.0,60.0,52.0,49.0,66.0,42.0,52.0,44.0,40.0,54.0,54.0,56.0,56.0,52.0,64.0,55.0,68.0,63.0,53.0,52.0,63.0,58.0,46.0,62.0,68.0,43.0,64.0,60.0,66.0,58.0,66.0,71.0,64.0,60.0,75.0,79.0,59.0,63.0,59.0,57.0,62.0,70.0,56.0,58.0,47.0,64.0,45.0,54.0,44.0,42.0,34.0,37.0,44.0,34.0,32.0,31.0,26.0,31.0,29.0,35.0,28.0,34.0,31.0,27.0,31.0,33.0,17.0,31.0,18.0,25.0,15.0,17.0,11.0,19.0,18.0,7.0,6.0,11.0,6.0,8.0,8.0,3.0,14.0 F85688,30.0,39.0,35.0,50.0,34.0,45.0,58.0,72.0,60.0,71.0,53.0,61.0,85.0,82.0,98.0,78.0,73.0,85.0,72.0,75.0,62.0,52.0,61.0,49.0,70.0,47.0,70.0,55.0,49.0,63.0,65.0,70.0,50.0,71.0,69.0,58.0,68.0,63.0,60.0,63.0,76.0,95.0,90.0,98.0,92.0,93.0,90.0,101.0,80.0,94.0,74.0,72.0,86.0,87.0,94.0,88.0,83.0,77.0,75.0,77.0,80.0,63.0,55.0,58.0,47.0,45.0,47.0,44.0,40.0,51.0,34.0,37.0,40.0,29.0,30.0,29.0,28.0,32.0,46.0,34.0,31.0,14.0,25.0,23.0,21.0,17.0,14.0,12.0,11.0,12.0,10.0,7.0,2.0,7.0,5.0,15.0 F85697,1.0,2.0,4.0,4.0,6.0,5.0,2.0,9.0,2.0,11.0,5.0,7.0,4.0,3.0,9.0,7.0,6.0,10.0,6.0,12.0,7.0,6.0,15.0,10.0,7.0,13.0,9.0,16.0,9.0,12.0,11.0,4.0,13.0,9.0,16.0,18.0,15.0,10.0,11.0,18.0,14.0,8.0,16.0,11.0,11.0,16.0,11.0,14.0,12.0,10.0,9.0,8.0,14.0,14.0,11.0,7.0,12.0,11.0,9.0,11.0,7.0,7.0,7.0,3.0,8.0,5.0,8.0,5.0,7.0,7.0,9.0,8.0,1.0,7.0,9.0,4.0,1.0,6.0,6.0,2.0,6.0,3.0,3.0,1.0,4.0,2.0,8.0,5.0,3.0,3.0,4.0,2.0,,,3.0,6.0 F85700,42.0,54.0,40.0,48.0,49.0,39.0,44.0,52.0,54.0,51.0,50.0,38.0,42.0,50.0,50.0,49.0,48.0,53.0,45.0,37.0,51.0,38.0,41.0,40.0,63.0,75.0,65.0,75.0,45.0,79.0,75.0,91.0,76.0,96.0,89.0,99.0,96.0,85.0,82.0,91.0,76.0,62.0,72.0,65.0,74.0,59.0,57.0,48.0,51.0,48.0,49.0,39.0,56.0,47.0,39.0,30.0,34.0,52.0,44.0,36.0,28.0,36.0,40.0,20.0,26.0,29.0,25.0,20.0,28.0,21.0,14.0,22.0,11.0,9.0,12.0,15.0,13.0,15.0,14.0,14.0,11.0,9.0,9.0,9.0,6.0,7.0,7.0,,9.0,10.0,4.0,3.0,2.0,3.0,3.0,3.0 F85701,74.0,83.0,89.0,83.0,91.0,97.0,79.0,75.0,69.0,79.0,67.0,80.0,83.0,49.0,64.0,65.0,65.0,81.0,68.0,45.0,54.0,65.0,69.0,74.0,73.0,81.0,70.0,101.0,116.0,109.0,118.0,95.0,102.0,125.0,109.0,127.0,135.0,134.0,128.0,114.0,129.0,116.0,114.0,120.0,137.0,106.0,120.0,91.0,102.0,75.0,66.0,79.0,90.0,67.0,83.0,69.0,71.0,76.0,60.0,55.0,58.0,54.0,61.0,44.0,57.0,53.0,34.0,46.0,38.0,45.0,32.0,33.0,42.0,27.0,32.0,25.0,22.0,33.0,24.0,18.0,23.0,27.0,18.0,18.0,14.0,21.0,14.0,13.0,10.0,9.0,14.0,11.0,7.0,8.0,7.0,18.0 F85705,65.0,61.0,58.0,80.0,63.0,60.0,65.0,76.0,71.0,83.0,70.0,62.0,65.0,71.0,61.0,59.0,56.0,68.0,79.0,46.0,76.0,55.0,65.0,78.0,78.0,92.0,106.0,97.0,105.0,100.0,110.0,105.0,125.0,108.0,97.0,112.0,110.0,122.0,114.0,115.0,129.0,125.0,97.0,95.0,86.0,107.0,86.0,76.0,91.0,73.0,66.0,78.0,67.0,78.0,62.0,78.0,77.0,68.0,62.0,68.0,55.0,57.0,48.0,58.0,58.0,46.0,47.0,39.0,33.0,32.0,46.0,32.0,32.0,35.0,30.0,28.0,22.0,24.0,23.0,24.0,17.0,14.0,15.0,9.0,14.0,8.0,12.0,10.0,5.0,5.0,9.0,4.0,4.0,5.0,3.0,7.0 Y00057,70.0,87.0,77.0,88.0,96.0,97.0,92.0,102.0,114.0,112.0,108.0,96.0,126.0,118.0,103.0,126.0,105.0,146.0,136.0,119.0,99.0,104.0,100.0,106.0,118.0,147.0,127.0,140.0,126.0,131.0,111.0,141.0,139.0,114.0,127.0,132.0,119.0,154.0,129.0,141.0,99.0,126.0,107.0,115.0,116.0,98.0,97.0,102.0,83.0,91.0,97.0,95.0,109.0,99.0,123.0,85.0,82.0,75.0,81.0,74.0,80.0,74.0,58.0,53.0,60.0,46.0,47.0,44.0,41.0,35.0,35.0,27.0,28.0,31.0,23.0,30.0,30.0,25.0,17.0,15.0,13.0,17.0,16.0,11.0,14.0,6.0,10.0,8.0,10.0,5.0,5.0,5.0,3.0,1.0,4.0,3.0 Y00316,24.0,28.0,30.0,20.0,23.0,26.0,16.0,31.0,32.0,32.0,33.0,29.0,36.0,39.0,45.0,44.0,36.0,45.0,24.0,30.0,29.0,24.0,28.0,32.0,32.0,36.0,48.0,46.0,48.0,50.0,39.0,52.0,59.0,53.0,52.0,40.0,53.0,46.0,51.0,43.0,42.0,40.0,51.0,53.0,53.0,43.0,54.0,47.0,40.0,45.0,45.0,41.0,51.0,32.0,34.0,45.0,38.0,41.0,31.0,23.0,35.0,27.0,27.0,29.0,19.0,22.0,22.0,20.0,20.0,12.0,14.0,17.0,16.0,17.0,17.0,17.0,18.0,17.0,19.0,11.0,11.0,10.0,13.0,9.0,5.0,10.0,13.0,4.0,6.0,13.0,6.0,3.0,,2.0,3.0,3.0 Y00612,17.0,18.0,21.0,27.0,18.0,24.0,36.0,34.0,33.0,35.0,24.0,32.0,27.0,44.0,44.0,37.0,38.0,52.0,30.0,49.0,26.0,27.0,43.0,24.0,27.0,30.0,34.0,34.0,25.0,35.0,44.0,32.0,39.0,27.0,33.0,34.0,32.0,41.0,34.0,30.0,38.0,33.0,44.0,42.0,39.0,41.0,31.0,33.0,31.0,24.0,24.0,29.0,33.0,28.0,36.0,37.0,28.0,22.0,30.0,26.0,31.0,27.0,27.0,23.0,32.0,29.0,21.0,26.0,18.0,17.0,18.0,17.0,11.0,9.0,16.0,12.0,8.0,5.0,7.0,3.0,9.0,9.0,7.0,6.0,8.0,5.0,2.0,5.0,6.0,1.0,1.0,,2.0,1.0,2.0,2.0 Y01066,35.0,41.0,41.0,42.0,53.0,55.0,50.0,49.0,46.0,43.0,36.0,38.0,39.0,40.0,36.0,51.0,36.0,43.0,43.0,48.0,43.0,33.0,46.0,61.0,67.0,77.0,123.0,136.0,152.0,172.0,146.0,181.0,143.0,141.0,158.0,140.0,133.0,133.0,97.0,106.0,106.0,89.0,66.0,79.0,68.0,51.0,51.0,46.0,62.0,47.0,50.0,44.0,33.0,34.0,40.0,36.0,45.0,31.0,40.0,35.0,30.0,26.0,26.0,15.0,25.0,20.0,17.0,18.0,18.0,17.0,16.0,16.0,12.0,15.0,7.0,16.0,9.0,13.0,7.0,6.0,10.0,12.0,3.0,4.0,,4.0,7.0,7.0,8.0,,2.0,1.0,2.0,,3.0,4.0 Y01655,46.0,55.0,41.0,54.0,49.0,50.0,56.0,56.0,46.0,44.0,59.0,50.0,46.0,43.0,47.0,40.0,42.0,44.0,45.0,35.0,29.0,28.0,48.0,42.0,42.0,64.0,79.0,63.0,87.0,95.0,97.0,109.0,115.0,119.0,143.0,128.0,128.0,133.0,135.0,156.0,132.0,107.0,111.0,106.0,102.0,90.0,78.0,76.0,82.0,80.0,77.0,71.0,63.0,77.0,57.0,60.0,62.0,56.0,64.0,57.0,48.0,52.0,41.0,36.0,34.0,40.0,29.0,35.0,14.0,37.0,25.0,24.0,29.0,27.0,20.0,22.0,18.0,19.0,17.0,14.0,7.0,7.0,12.0,11.0,11.0,4.0,4.0,7.0,8.0,7.0,1.0,2.0,,,,2.0 Y02117,63.0,58.0,62.0,69.0,72.0,74.0,52.0,61.0,73.0,68.0,56.0,69.0,62.0,80.0,78.0,75.0,95.0,85.0,80.0,88.0,86.0,94.0,96.0,127.0,156.0,174.0,194.0,226.0,213.0,224.0,199.0,203.0,217.0,170.0,199.0,176.0,160.0,147.0,138.0,125.0,122.0,138.0,122.0,100.0,109.0,114.0,100.0,90.0,102.0,96.0,93.0,85.0,87.0,83.0,99.0,103.0,90.0,81.0,81.0,74.0,79.0,81.0,76.0,65.0,72.0,61.0,55.0,55.0,50.0,47.0,44.0,31.0,33.0,34.0,27.0,42.0,21.0,17.0,15.0,16.0,20.0,18.0,18.0,11.0,14.0,11.0,11.0,12.0,11.0,11.0,7.0,8.0,7.0,4.0,6.0,6.0 Y02674,,,,,,,,,,,,,,,,,,,,,1.0,2.0,1.0,3.0,4.0,3.0,,5.0,4.0,,2.0,2.0,1.0,2.0,8.0,3.0,2.0,5.0,3.0,1.0,4.0,1.0,4.0,6.0,3.0,,3.0,2.0,2.0,3.0,3.0,3.0,2.0,1.0,,2.0,3.0,3.0,3.0,3.0,3.0,2.0,,1.0,,1.0,,1.0,1.0,,,,,,1.0,,,,,,,,,,,,,,,,,,,,, Y02986,21.0,34.0,28.0,20.0,22.0,37.0,16.0,35.0,34.0,32.0,26.0,21.0,15.0,24.0,32.0,25.0,14.0,18.0,16.0,26.0,44.0,42.0,43.0,53.0,48.0,55.0,58.0,80.0,67.0,65.0,75.0,67.0,59.0,73.0,68.0,58.0,43.0,65.0,48.0,60.0,47.0,51.0,45.0,48.0,41.0,37.0,36.0,34.0,32.0,39.0,44.0,29.0,27.0,21.0,27.0,23.0,28.0,30.0,24.0,23.0,19.0,21.0,16.0,12.0,8.0,20.0,7.0,10.0,5.0,5.0,8.0,14.0,5.0,3.0,3.0,4.0,4.0,6.0,5.0,3.0,1.0,1.0,,1.0,1.0,2.0,1.0,1.0,,,,,,,, Y03035,81.0,95.0,98.0,106.0,82.0,94.0,105.0,103.0,121.0,123.0,106.0,135.0,109.0,118.0,150.0,125.0,122.0,146.0,98.0,77.0,73.0,102.0,100.0,126.0,135.0,139.0,130.0,169.0,167.0,177.0,181.0,169.0,194.0,189.0,185.0,180.0,199.0,184.0,185.0,193.0,171.0,140.0,184.0,185.0,197.0,194.0,171.0,185.0,177.0,172.0,141.0,174.0,155.0,160.0,155.0,162.0,136.0,177.0,151.0,146.0,160.0,152.0,125.0,139.0,134.0,95.0,106.0,102.0,97.0,92.0,88.0,93.0,86.0,81.0,73.0,77.0,76.0,60.0,78.0,57.0,56.0,40.0,43.0,50.0,26.0,23.0,28.0,19.0,18.0,14.0,18.0,9.0,9.0,6.0,10.0,17.0 Y03103,,,,,,,,,,,,,,,,,,,,,,,,2.0,,,2.0,,2.0,,3.0,2.0,2.0,2.0,1.0,2.0,,3.0,1.0,,1.0,2.0,,2.0,1.0,2.0,1.0,2.0,2.0,,2.0,2.0,,,2.0,,2.0,1.0,1.0,1.0,,,,,,,,,,1.0,1.0,,,1.0,,,,1.0,,,,,,,,,,,,,,,,,, Y03135,20.0,19.0,29.0,25.0,25.0,22.0,23.0,27.0,17.0,30.0,28.0,32.0,34.0,38.0,33.0,33.0,48.0,32.0,34.0,30.0,21.0,38.0,51.0,61.0,78.0,110.0,95.0,80.0,98.0,97.0,111.0,104.0,100.0,82.0,97.0,117.0,130.0,100.0,87.0,82.0,85.0,72.0,56.0,64.0,65.0,75.0,57.0,59.0,57.0,70.0,43.0,53.0,57.0,56.0,44.0,56.0,50.0,53.0,42.0,45.0,42.0,45.0,45.0,36.0,37.0,28.0,41.0,29.0,22.0,27.0,27.0,20.0,19.0,21.0,16.0,15.0,22.0,11.0,14.0,9.0,17.0,15.0,9.0,9.0,12.0,11.0,16.0,8.0,4.0,5.0,3.0,8.0,3.0,5.0,2.0,4.0 Y03402,90.0,94.0,105.0,87.0,98.0,109.0,125.0,133.0,145.0,138.0,148.0,139.0,132.0,154.0,149.0,145.0,126.0,147.0,144.0,163.0,136.0,150.0,132.0,153.0,141.0,153.0,164.0,170.0,155.0,145.0,149.0,130.0,156.0,130.0,149.0,166.0,161.0,141.0,130.0,146.0,160.0,136.0,151.0,137.0,138.0,158.0,131.0,134.0,146.0,141.0,130.0,114.0,107.0,123.0,117.0,112.0,111.0,127.0,111.0,91.0,89.0,88.0,88.0,86.0,85.0,81.0,78.0,71.0,65.0,57.0,43.0,53.0,39.0,43.0,33.0,38.0,31.0,25.0,36.0,20.0,23.0,18.0,12.0,20.0,18.0,17.0,9.0,14.0,12.0,4.0,8.0,9.0,8.0,3.0,10.0,8.0 Y03663,54.0,56.0,52.0,53.0,51.0,45.0,53.0,54.0,55.0,62.0,56.0,67.0,50.0,50.0,65.0,73.0,67.0,68.0,56.0,56.0,64.0,49.0,81.0,84.0,95.0,104.0,96.0,93.0,99.0,82.0,95.0,95.0,107.0,82.0,92.0,106.0,91.0,104.0,84.0,75.0,78.0,63.0,86.0,93.0,69.0,88.0,78.0,67.0,68.0,67.0,59.0,72.0,53.0,54.0,59.0,67.0,51.0,52.0,36.0,44.0,46.0,24.0,29.0,30.0,31.0,27.0,28.0,34.0,22.0,21.0,20.0,31.0,26.0,24.0,19.0,26.0,14.0,11.0,19.0,20.0,10.0,9.0,7.0,13.0,7.0,5.0,13.0,13.0,7.0,2.0,5.0,3.0,6.0,8.0,1.0,4.0 Y03664,18.0,28.0,48.0,44.0,47.0,46.0,46.0,52.0,52.0,52.0,40.0,47.0,37.0,39.0,34.0,49.0,52.0,48.0,47.0,40.0,38.0,44.0,29.0,63.0,58.0,71.0,49.0,76.0,66.0,63.0,75.0,69.0,81.0,85.0,70.0,75.0,77.0,74.0,81.0,70.0,72.0,86.0,82.0,58.0,65.0,58.0,59.0,58.0,55.0,57.0,51.0,48.0,46.0,45.0,51.0,41.0,51.0,36.0,34.0,46.0,31.0,56.0,33.0,46.0,40.0,35.0,30.0,27.0,28.0,17.0,26.0,24.0,18.0,25.0,20.0,17.0,22.0,27.0,16.0,20.0,8.0,15.0,12.0,9.0,13.0,13.0,11.0,8.0,10.0,6.0,9.0,4.0,4.0,5.0,2.0,13.0 Y05330,32.0,30.0,32.0,27.0,23.0,17.0,24.0,17.0,11.0,18.0,16.0,11.0,22.0,15.0,18.0,16.0,12.0,16.0,16.0,21.0,44.0,48.0,49.0,48.0,78.0,72.0,77.0,85.0,95.0,93.0,85.0,78.0,100.0,87.0,74.0,62.0,62.0,64.0,56.0,45.0,58.0,43.0,47.0,35.0,20.0,25.0,34.0,27.0,29.0,19.0,20.0,15.0,15.0,15.0,14.0,21.0,14.0,9.0,17.0,20.0,11.0,14.0,15.0,9.0,14.0,5.0,11.0,6.0,14.0,3.0,3.0,5.0,3.0,2.0,3.0,6.0,3.0,3.0,3.0,5.0,2.0,2.0,,1.0,5.0,2.0,,,,,,,,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 D82001,30.0,34.0,47.0,40.0,48.0,51.0,51.0,60.0,57.0,59.0,74.0,53.0,67.0,70.0,79.0,58.0,58.0,60.0,63.0,46.0,54.0,28.0,45.0,45.0,41.0,54.0,55.0,45.0,55.0,59.0,63.0,53.0,57.0,57.0,63.0,47.0,60.0,56.0,69.0,58.0,67.0,61.0,62.0,66.0,59.0,63.0,67.0,70.0,72.0,62.0,77.0,96.0,83.0,73.0,107.0,107.0,95.0,118.0,104.0,111.0,124.0,153.0,111.0,140.0,143.0,144.0,141.0,124.0,119.0,130.0,119.0,126.0,136.0,139.0,118.0,144.0,137.0,146.0,151.0,98.0,87.0,119.0,81.0,83.0,66.0,67.0,64.0,63.0,50.0,52.0,48.0,38.0,34.0,20.0,21.0,54.0 D82002,48.0,44.0,69.0,48.0,56.0,64.0,83.0,70.0,57.0,73.0,60.0,78.0,87.0,76.0,83.0,79.0,91.0,59.0,61.0,64.0,60.0,71.0,57.0,58.0,70.0,61.0,65.0,79.0,89.0,83.0,82.0,78.0,89.0,97.0,108.0,117.0,102.0,83.0,89.0,81.0,85.0,77.0,89.0,77.0,74.0,70.0,99.0,60.0,59.0,64.0,75.0,93.0,82.0,83.0,77.0,68.0,84.0,85.0,92.0,91.0,81.0,79.0,99.0,91.0,80.0,75.0,63.0,63.0,62.0,57.0,63.0,49.0,58.0,57.0,44.0,56.0,44.0,48.0,62.0,38.0,42.0,29.0,28.0,31.0,27.0,23.0,28.0,25.0,16.0,13.0,10.0,22.0,14.0,8.0,7.0,19.0 D82003,78.0,104.0,130.0,100.0,107.0,116.0,133.0,141.0,152.0,164.0,150.0,146.0,155.0,150.0,136.0,157.0,151.0,137.0,135.0,109.0,112.0,127.0,106.0,110.0,132.0,103.0,151.0,155.0,148.0,152.0,147.0,151.0,182.0,183.0,173.0,185.0,166.0,198.0,163.0,147.0,149.0,145.0,121.0,147.0,146.0,149.0,132.0,125.0,140.0,130.0,140.0,140.0,173.0,161.0,154.0,173.0,177.0,167.0,192.0,153.0,197.0,187.0,168.0,181.0,151.0,148.0,158.0,144.0,144.0,133.0,132.0,138.0,104.0,144.0,117.0,137.0,139.0,133.0,176.0,111.0,127.0,125.0,101.0,73.0,70.0,63.0,67.0,55.0,56.0,58.0,45.0,28.0,30.0,22.0,15.0,51.0 D82004,27.0,22.0,22.0,28.0,27.0,23.0,39.0,42.0,48.0,41.0,47.0,44.0,47.0,58.0,53.0,63.0,58.0,71.0,51.0,43.0,42.0,65.0,43.0,46.0,36.0,38.0,34.0,50.0,48.0,48.0,51.0,40.0,42.0,46.0,50.0,44.0,75.0,57.0,65.0,62.0,66.0,60.0,51.0,50.0,65.0,65.0,68.0,52.0,58.0,55.0,61.0,68.0,63.0,97.0,70.0,91.0,78.0,106.0,95.0,98.0,108.0,105.0,92.0,131.0,106.0,136.0,101.0,113.0,114.0,97.0,106.0,99.0,120.0,98.0,96.0,97.0,127.0,127.0,135.0,108.0,91.0,87.0,94.0,60.0,54.0,46.0,54.0,56.0,37.0,44.0,22.0,22.0,23.0,17.0,15.0,42.0 D82005,10.0,17.0,26.0,25.0,21.0,21.0,26.0,33.0,30.0,32.0,30.0,28.0,40.0,38.0,45.0,38.0,39.0,39.0,48.0,33.0,34.0,33.0,41.0,16.0,29.0,27.0,30.0,22.0,35.0,30.0,20.0,26.0,36.0,31.0,34.0,22.0,29.0,36.0,39.0,37.0,42.0,43.0,33.0,47.0,51.0,49.0,44.0,34.0,39.0,51.0,54.0,55.0,64.0,50.0,60.0,50.0,69.0,66.0,64.0,79.0,83.0,76.0,79.0,82.0,95.0,82.0,110.0,89.0,93.0,86.0,98.0,87.0,91.0,99.0,97.0,103.0,89.0,97.0,112.0,69.0,80.0,75.0,64.0,54.0,70.0,52.0,47.0,51.0,44.0,39.0,29.0,27.0,28.0,22.0,15.0,33.0 D82006,34.0,26.0,40.0,30.0,44.0,28.0,39.0,35.0,49.0,41.0,63.0,44.0,55.0,47.0,43.0,45.0,42.0,60.0,45.0,47.0,42.0,36.0,29.0,32.0,39.0,50.0,49.0,42.0,32.0,41.0,38.0,44.0,50.0,57.0,45.0,44.0,54.0,43.0,49.0,53.0,51.0,42.0,42.0,46.0,41.0,59.0,57.0,43.0,49.0,44.0,59.0,57.0,56.0,75.0,66.0,75.0,71.0,65.0,63.0,73.0,93.0,78.0,71.0,74.0,71.0,65.0,70.0,67.0,70.0,59.0,66.0,61.0,73.0,56.0,54.0,55.0,53.0,64.0,65.0,50.0,64.0,52.0,40.0,34.0,32.0,28.0,28.0,20.0,14.0,26.0,15.0,6.0,17.0,10.0,10.0,17.0 D82007,85.0,103.0,106.0,127.0,108.0,111.0,112.0,144.0,142.0,152.0,144.0,128.0,149.0,138.0,148.0,178.0,170.0,158.0,148.0,126.0,140.0,136.0,140.0,128.0,143.0,133.0,166.0,132.0,145.0,169.0,175.0,162.0,179.0,179.0,160.0,173.0,162.0,161.0,146.0,164.0,151.0,134.0,172.0,143.0,144.0,152.0,141.0,112.0,121.0,138.0,131.0,168.0,160.0,142.0,159.0,151.0,187.0,182.0,165.0,174.0,164.0,180.0,166.0,173.0,145.0,136.0,148.0,131.0,139.0,109.0,126.0,114.0,129.0,94.0,110.0,96.0,106.0,106.0,136.0,95.0,95.0,80.0,75.0,75.0,69.0,55.0,57.0,38.0,48.0,24.0,26.0,23.0,18.0,16.0,11.0,26.0 D82008,69.0,55.0,57.0,85.0,66.0,71.0,66.0,61.0,87.0,78.0,83.0,76.0,89.0,96.0,79.0,75.0,84.0,101.0,96.0,114.0,128.0,149.0,123.0,145.0,151.0,162.0,156.0,144.0,168.0,131.0,147.0,130.0,151.0,160.0,122.0,145.0,133.0,141.0,141.0,123.0,132.0,162.0,119.0,136.0,132.0,137.0,121.0,130.0,112.0,116.0,106.0,135.0,132.0,122.0,126.0,114.0,141.0,122.0,125.0,137.0,122.0,101.0,136.0,119.0,115.0,107.0,94.0,95.0,117.0,94.0,93.0,108.0,124.0,101.0,108.0,99.0,112.0,123.0,100.0,72.0,93.0,94.0,61.0,54.0,57.0,59.0,45.0,42.0,48.0,27.0,40.0,23.0,28.0,18.0,16.0,44.0 D82009,10.0,15.0,18.0,20.0,24.0,23.0,22.0,32.0,32.0,20.0,26.0,30.0,30.0,36.0,35.0,35.0,27.0,31.0,30.0,36.0,22.0,29.0,23.0,21.0,29.0,28.0,25.0,22.0,22.0,38.0,28.0,21.0,28.0,20.0,27.0,36.0,32.0,30.0,42.0,28.0,32.0,27.0,35.0,25.0,34.0,41.0,41.0,42.0,34.0,47.0,31.0,35.0,54.0,57.0,54.0,59.0,62.0,50.0,60.0,71.0,65.0,79.0,65.0,73.0,74.0,80.0,68.0,61.0,66.0,71.0,55.0,65.0,80.0,65.0,68.0,43.0,52.0,67.0,66.0,54.0,38.0,40.0,35.0,36.0,31.0,32.0,22.0,31.0,19.0,8.0,13.0,10.0,15.0,4.0,6.0,14.0 D82010,12.0,19.0,15.0,17.0,23.0,19.0,17.0,15.0,22.0,29.0,33.0,27.0,35.0,26.0,34.0,22.0,18.0,33.0,27.0,19.0,11.0,18.0,17.0,16.0,27.0,25.0,11.0,15.0,19.0,27.0,21.0,15.0,15.0,25.0,32.0,23.0,32.0,28.0,22.0,24.0,27.0,32.0,35.0,26.0,19.0,29.0,24.0,29.0,23.0,31.0,28.0,29.0,38.0,42.0,37.0,40.0,42.0,49.0,50.0,66.0,58.0,51.0,46.0,52.0,52.0,35.0,51.0,34.0,32.0,44.0,49.0,35.0,41.0,40.0,36.0,38.0,42.0,41.0,39.0,35.0,27.0,25.0,36.0,27.0,15.0,14.0,29.0,8.0,12.0,3.0,7.0,4.0,6.0,3.0,4.0,11.0 D82011,64.0,61.0,70.0,71.0,75.0,65.0,91.0,81.0,84.0,92.0,96.0,103.0,119.0,95.0,115.0,109.0,112.0,109.0,98.0,92.0,75.0,72.0,81.0,102.0,114.0,115.0,122.0,121.0,137.0,133.0,136.0,118.0,131.0,139.0,138.0,146.0,137.0,124.0,126.0,129.0,110.0,125.0,102.0,115.0,121.0,113.0,121.0,130.0,103.0,105.0,120.0,136.0,98.0,96.0,109.0,123.0,111.0,96.0,97.0,103.0,101.0,112.0,127.0,89.0,119.0,95.0,86.0,91.0,85.0,105.0,101.0,78.0,93.0,93.0,82.0,81.0,85.0,94.0,101.0,71.0,66.0,72.0,75.0,68.0,46.0,55.0,49.0,40.0,41.0,31.0,27.0,26.0,25.0,24.0,15.0,60.0 D82012,57.0,46.0,69.0,66.0,48.0,59.0,59.0,96.0,84.0,71.0,73.0,84.0,90.0,100.0,81.0,79.0,63.0,77.0,51.0,62.0,62.0,68.0,61.0,85.0,87.0,69.0,104.0,97.0,100.0,100.0,132.0,120.0,125.0,122.0,148.0,148.0,125.0,118.0,97.0,121.0,121.0,118.0,118.0,104.0,113.0,118.0,109.0,88.0,82.0,88.0,93.0,111.0,87.0,81.0,71.0,72.0,90.0,98.0,88.0,88.0,87.0,82.0,89.0,85.0,86.0,73.0,73.0,67.0,64.0,77.0,70.0,71.0,69.0,79.0,71.0,63.0,86.0,68.0,83.0,53.0,57.0,45.0,48.0,33.0,46.0,34.0,36.0,28.0,30.0,28.0,23.0,24.0,16.0,8.0,5.0,24.0 D82013,33.0,45.0,46.0,46.0,53.0,44.0,43.0,38.0,47.0,49.0,45.0,49.0,55.0,51.0,53.0,47.0,55.0,39.0,52.0,17.0,36.0,41.0,36.0,35.0,50.0,45.0,57.0,52.0,65.0,72.0,64.0,71.0,62.0,82.0,63.0,75.0,61.0,74.0,62.0,60.0,55.0,66.0,70.0,79.0,53.0,64.0,54.0,54.0,40.0,57.0,46.0,57.0,54.0,32.0,59.0,42.0,49.0,53.0,51.0,42.0,47.0,36.0,54.0,56.0,45.0,45.0,64.0,58.0,54.0,30.0,51.0,51.0,31.0,33.0,42.0,23.0,47.0,38.0,40.0,22.0,39.0,25.0,19.0,24.0,24.0,17.0,16.0,13.0,10.0,10.0,11.0,8.0,4.0,4.0,6.0,9.0 D82015,26.0,20.0,28.0,42.0,41.0,34.0,22.0,31.0,27.0,31.0,42.0,30.0,51.0,30.0,47.0,40.0,38.0,23.0,32.0,29.0,34.0,39.0,37.0,32.0,23.0,32.0,34.0,44.0,51.0,51.0,52.0,46.0,52.0,45.0,49.0,50.0,40.0,54.0,49.0,41.0,48.0,31.0,42.0,40.0,48.0,51.0,34.0,36.0,47.0,40.0,41.0,64.0,56.0,70.0,62.0,63.0,75.0,56.0,67.0,77.0,60.0,66.0,66.0,63.0,61.0,40.0,71.0,69.0,51.0,50.0,61.0,59.0,64.0,72.0,57.0,74.0,64.0,71.0,85.0,59.0,55.0,60.0,51.0,47.0,51.0,46.0,31.0,44.0,32.0,29.0,28.0,16.0,16.0,12.0,16.0,27.0 D82016,24.0,40.0,37.0,41.0,30.0,37.0,57.0,55.0,47.0,57.0,44.0,56.0,66.0,51.0,63.0,61.0,51.0,49.0,49.0,38.0,31.0,51.0,43.0,41.0,32.0,34.0,46.0,38.0,42.0,42.0,44.0,46.0,51.0,50.0,64.0,51.0,57.0,46.0,69.0,68.0,65.0,68.0,62.0,55.0,72.0,65.0,59.0,56.0,50.0,56.0,53.0,56.0,80.0,59.0,71.0,73.0,82.0,71.0,82.0,91.0,90.0,61.0,76.0,97.0,76.0,86.0,76.0,77.0,58.0,86.0,68.0,71.0,73.0,85.0,68.0,78.0,98.0,95.0,75.0,50.0,74.0,41.0,57.0,47.0,34.0,26.0,36.0,30.0,30.0,23.0,17.0,19.0,15.0,9.0,10.0,28.0 D82017,45.0,51.0,62.0,61.0,54.0,49.0,69.0,61.0,73.0,66.0,67.0,83.0,69.0,67.0,51.0,93.0,58.0,82.0,67.0,57.0,60.0,46.0,64.0,54.0,54.0,86.0,81.0,77.0,93.0,84.0,76.0,83.0,112.0,87.0,90.0,94.0,99.0,104.0,86.0,88.0,97.0,100.0,77.0,87.0,72.0,71.0,81.0,74.0,47.0,60.0,50.0,63.0,62.0,61.0,76.0,63.0,62.0,51.0,51.0,47.0,64.0,66.0,52.0,54.0,67.0,58.0,52.0,51.0,71.0,65.0,51.0,50.0,56.0,48.0,54.0,52.0,38.0,52.0,43.0,35.0,32.0,30.0,27.0,20.0,20.0,17.0,14.0,23.0,10.0,12.0,10.0,7.0,11.0,7.0,4.0,10.0 D82018,35.0,42.0,40.0,50.0,36.0,37.0,56.0,54.0,66.0,60.0,64.0,63.0,45.0,46.0,61.0,67.0,59.0,49.0,49.0,51.0,45.0,52.0,53.0,50.0,37.0,52.0,48.0,55.0,64.0,66.0,59.0,81.0,68.0,80.0,52.0,71.0,81.0,63.0,64.0,55.0,73.0,72.0,72.0,75.0,68.0,69.0,64.0,58.0,57.0,66.0,76.0,67.0,67.0,69.0,78.0,73.0,86.0,96.0,78.0,85.0,69.0,79.0,95.0,71.0,67.0,73.0,64.0,74.0,66.0,75.0,67.0,57.0,68.0,60.0,60.0,65.0,49.0,79.0,73.0,51.0,66.0,53.0,57.0,39.0,42.0,45.0,29.0,38.0,13.0,33.0,24.0,23.0,19.0,16.0,11.0,29.0 D82019,51.0,64.0,91.0,76.0,81.0,86.0,73.0,87.0,110.0,90.0,92.0,98.0,107.0,92.0,101.0,116.0,86.0,98.0,104.0,105.0,80.0,79.0,80.0,88.0,70.0,95.0,102.0,90.0,110.0,122.0,112.0,96.0,115.0,107.0,138.0,119.0,104.0,104.0,121.0,121.0,129.0,100.0,122.0,125.0,109.0,114.0,96.0,127.0,127.0,112.0,101.0,119.0,137.0,141.0,149.0,131.0,153.0,139.0,133.0,159.0,156.0,148.0,163.0,155.0,132.0,143.0,137.0,145.0,149.0,120.0,114.0,132.0,145.0,121.0,121.0,117.0,122.0,147.0,151.0,105.0,95.0,80.0,95.0,70.0,71.0,55.0,49.0,53.0,41.0,37.0,34.0,27.0,23.0,18.0,13.0,41.0 D82020,43.0,54.0,70.0,61.0,50.0,77.0,67.0,68.0,72.0,81.0,76.0,103.0,81.0,81.0,89.0,72.0,84.0,80.0,66.0,65.0,62.0,56.0,71.0,62.0,63.0,77.0,74.0,90.0,70.0,89.0,97.0,89.0,91.0,106.0,72.0,76.0,99.0,73.0,97.0,80.0,75.0,66.0,75.0,75.0,94.0,85.0,84.0,64.0,82.0,70.0,79.0,81.0,79.0,104.0,91.0,81.0,72.0,92.0,89.0,99.0,87.0,83.0,78.0,88.0,65.0,78.0,75.0,72.0,69.0,76.0,64.0,75.0,76.0,74.0,70.0,76.0,88.0,82.0,92.0,69.0,68.0,54.0,53.0,40.0,51.0,33.0,31.0,39.0,40.0,27.0,18.0,19.0,16.0,17.0,11.0,31.0 D82022,16.0,24.0,29.0,29.0,22.0,29.0,28.0,37.0,26.0,36.0,43.0,31.0,45.0,38.0,43.0,37.0,30.0,30.0,40.0,18.0,22.0,23.0,30.0,21.0,36.0,34.0,39.0,51.0,36.0,37.0,40.0,41.0,41.0,35.0,53.0,39.0,45.0,46.0,54.0,51.0,54.0,46.0,42.0,37.0,47.0,40.0,29.0,55.0,36.0,41.0,27.0,43.0,42.0,58.0,49.0,47.0,47.0,51.0,44.0,57.0,47.0,58.0,52.0,40.0,57.0,57.0,51.0,54.0,52.0,45.0,35.0,44.0,56.0,35.0,49.0,44.0,49.0,48.0,63.0,29.0,46.0,35.0,38.0,21.0,30.0,16.0,36.0,27.0,16.0,17.0,13.0,15.0,10.0,17.0,6.0,27.0 D82023,83.0,103.0,75.0,88.0,76.0,86.0,87.0,81.0,93.0,106.0,97.0,111.0,98.0,103.0,87.0,94.0,107.0,98.0,79.0,74.0,66.0,74.0,55.0,82.0,79.0,81.0,96.0,126.0,112.0,101.0,107.0,100.0,121.0,114.0,145.0,131.0,133.0,136.0,158.0,138.0,103.0,128.0,118.0,119.0,112.0,105.0,107.0,84.0,98.0,74.0,87.0,86.0,96.0,101.0,84.0,85.0,73.0,91.0,86.0,72.0,82.0,74.0,71.0,63.0,68.0,74.0,69.0,61.0,63.0,51.0,64.0,59.0,53.0,56.0,59.0,56.0,55.0,49.0,74.0,42.0,47.0,43.0,50.0,28.0,32.0,33.0,22.0,27.0,20.0,7.0,9.0,19.0,9.0,9.0,13.0,14.0 D82024,23.0,19.0,31.0,36.0,29.0,26.0,38.0,36.0,36.0,54.0,56.0,41.0,45.0,49.0,41.0,35.0,54.0,44.0,32.0,40.0,30.0,40.0,28.0,39.0,48.0,38.0,30.0,39.0,38.0,36.0,33.0,56.0,41.0,40.0,39.0,52.0,60.0,52.0,54.0,53.0,52.0,47.0,48.0,56.0,59.0,58.0,50.0,59.0,49.0,49.0,56.0,61.0,57.0,75.0,66.0,77.0,71.0,61.0,60.0,62.0,71.0,60.0,56.0,47.0,46.0,48.0,57.0,45.0,56.0,50.0,43.0,45.0,33.0,39.0,37.0,47.0,39.0,40.0,43.0,38.0,35.0,35.0,38.0,22.0,35.0,29.0,23.0,20.0,17.0,15.0,6.0,7.0,9.0,5.0,9.0,19.0 D82025,30.0,37.0,32.0,39.0,34.0,33.0,46.0,37.0,33.0,55.0,37.0,54.0,47.0,42.0,38.0,42.0,49.0,36.0,39.0,28.0,37.0,31.0,33.0,38.0,41.0,36.0,41.0,46.0,48.0,46.0,46.0,52.0,56.0,62.0,63.0,54.0,39.0,46.0,58.0,53.0,50.0,54.0,53.0,68.0,52.0,69.0,48.0,51.0,49.0,59.0,54.0,63.0,57.0,80.0,71.0,63.0,76.0,64.0,75.0,94.0,64.0,63.0,77.0,93.0,79.0,83.0,74.0,88.0,79.0,82.0,94.0,79.0,62.0,89.0,93.0,72.0,81.0,83.0,92.0,61.0,70.0,57.0,57.0,34.0,32.0,32.0,45.0,33.0,37.0,39.0,27.0,13.0,18.0,12.0,12.0,33.0 D82026,31.0,42.0,33.0,32.0,32.0,41.0,44.0,32.0,47.0,43.0,46.0,33.0,30.0,55.0,53.0,32.0,39.0,37.0,46.0,46.0,34.0,36.0,56.0,49.0,63.0,53.0,75.0,83.0,75.0,86.0,64.0,73.0,91.0,67.0,65.0,77.0,67.0,65.0,66.0,60.0,65.0,64.0,54.0,38.0,57.0,57.0,52.0,52.0,52.0,54.0,54.0,41.0,66.0,44.0,62.0,42.0,59.0,36.0,63.0,63.0,59.0,43.0,40.0,46.0,36.0,44.0,47.0,32.0,45.0,42.0,54.0,40.0,52.0,44.0,36.0,46.0,38.0,43.0,72.0,38.0,26.0,34.0,20.0,31.0,12.0,23.0,19.0,23.0,14.0,11.0,11.0,11.0,7.0,8.0,7.0,18.0 D82027,16.0,14.0,28.0,17.0,20.0,20.0,18.0,26.0,22.0,27.0,24.0,26.0,31.0,31.0,40.0,30.0,40.0,33.0,31.0,27.0,16.0,21.0,21.0,25.0,26.0,20.0,17.0,33.0,26.0,25.0,28.0,35.0,21.0,27.0,23.0,27.0,23.0,27.0,25.0,31.0,24.0,33.0,24.0,30.0,38.0,33.0,37.0,28.0,33.0,39.0,42.0,41.0,34.0,62.0,59.0,48.0,50.0,84.0,66.0,76.0,72.0,76.0,76.0,74.0,79.0,61.0,66.0,77.0,80.0,93.0,72.0,61.0,67.0,72.0,79.0,77.0,94.0,103.0,108.0,64.0,70.0,64.0,60.0,52.0,40.0,39.0,44.0,37.0,32.0,21.0,16.0,13.0,15.0,13.0,11.0,36.0 D82028,13.0,18.0,18.0,13.0,15.0,16.0,18.0,24.0,24.0,23.0,27.0,23.0,25.0,27.0,22.0,21.0,29.0,32.0,11.0,24.0,17.0,17.0,24.0,22.0,14.0,16.0,22.0,15.0,33.0,22.0,25.0,35.0,24.0,23.0,23.0,22.0,29.0,25.0,26.0,33.0,28.0,25.0,18.0,28.0,21.0,29.0,21.0,24.0,30.0,35.0,22.0,28.0,49.0,37.0,41.0,50.0,33.0,50.0,54.0,53.0,62.0,42.0,55.0,62.0,61.0,41.0,57.0,53.0,66.0,39.0,51.0,58.0,40.0,50.0,43.0,39.0,57.0,63.0,48.0,48.0,57.0,45.0,43.0,33.0,24.0,25.0,18.0,19.0,18.0,27.0,12.0,11.0,12.0,11.0,10.0,20.0 D82029,68.0,75.0,106.0,84.0,91.0,109.0,85.0,90.0,99.0,101.0,85.0,97.0,96.0,112.0,126.0,95.0,102.0,91.0,89.0,79.0,74.0,82.0,85.0,92.0,83.0,105.0,111.0,103.0,105.0,114.0,118.0,109.0,124.0,115.0,125.0,129.0,122.0,131.0,119.0,130.0,113.0,104.0,110.0,95.0,131.0,121.0,117.0,101.0,104.0,104.0,116.0,140.0,126.0,138.0,154.0,142.0,175.0,137.0,134.0,150.0,157.0,136.0,138.0,133.0,131.0,118.0,131.0,112.0,113.0,124.0,120.0,99.0,109.0,109.0,117.0,122.0,119.0,135.0,136.0,105.0,96.0,78.0,78.0,38.0,59.0,60.0,63.0,54.0,53.0,39.0,30.0,11.0,17.0,21.0,15.0,30.0 D82030,22.0,27.0,29.0,29.0,25.0,27.0,37.0,29.0,36.0,39.0,54.0,38.0,59.0,44.0,50.0,59.0,50.0,62.0,58.0,37.0,47.0,35.0,40.0,43.0,30.0,32.0,25.0,35.0,31.0,29.0,27.0,41.0,21.0,40.0,41.0,48.0,33.0,45.0,43.0,39.0,44.0,44.0,30.0,51.0,59.0,56.0,47.0,44.0,55.0,68.0,74.0,53.0,58.0,81.0,60.0,70.0,79.0,82.0,56.0,73.0,73.0,75.0,84.0,64.0,70.0,75.0,68.0,66.0,72.0,74.0,65.0,70.0,63.0,80.0,68.0,64.0,73.0,79.0,72.0,53.0,57.0,38.0,39.0,28.0,32.0,26.0,22.0,21.0,22.0,16.0,19.0,7.0,12.0,4.0,4.0,17.0 D82031,28.0,33.0,27.0,35.0,28.0,25.0,31.0,31.0,37.0,34.0,38.0,28.0,41.0,55.0,40.0,36.0,34.0,39.0,37.0,31.0,35.0,30.0,33.0,37.0,44.0,41.0,47.0,46.0,51.0,54.0,51.0,41.0,56.0,44.0,44.0,53.0,51.0,52.0,47.0,43.0,37.0,47.0,40.0,44.0,66.0,53.0,41.0,34.0,35.0,45.0,50.0,56.0,53.0,80.0,66.0,48.0,60.0,68.0,50.0,50.0,65.0,64.0,79.0,56.0,64.0,49.0,46.0,57.0,41.0,61.0,53.0,55.0,52.0,53.0,55.0,55.0,59.0,67.0,68.0,54.0,49.0,39.0,40.0,37.0,27.0,31.0,24.0,25.0,19.0,14.0,23.0,17.0,14.0,12.0,10.0,22.0 D82032,18.0,29.0,26.0,29.0,24.0,32.0,46.0,32.0,39.0,41.0,43.0,58.0,44.0,44.0,37.0,38.0,34.0,26.0,41.0,23.0,18.0,33.0,29.0,33.0,33.0,32.0,46.0,36.0,41.0,35.0,31.0,46.0,38.0,42.0,64.0,42.0,54.0,45.0,35.0,60.0,51.0,50.0,42.0,54.0,52.0,43.0,48.0,45.0,47.0,45.0,54.0,44.0,50.0,58.0,58.0,68.0,66.0,72.0,51.0,64.0,64.0,76.0,72.0,70.0,67.0,48.0,52.0,65.0,69.0,58.0,50.0,60.0,65.0,67.0,57.0,50.0,45.0,72.0,74.0,47.0,48.0,41.0,47.0,33.0,28.0,35.0,27.0,29.0,15.0,15.0,7.0,12.0,10.0,11.0,5.0,17.0 D82034,77.0,68.0,83.0,89.0,62.0,94.0,88.0,79.0,100.0,100.0,110.0,97.0,118.0,111.0,110.0,127.0,125.0,131.0,113.0,78.0,69.0,66.0,71.0,109.0,106.0,91.0,109.0,90.0,121.0,136.0,117.0,123.0,103.0,120.0,121.0,119.0,115.0,114.0,104.0,113.0,116.0,118.0,97.0,113.0,104.0,117.0,112.0,94.0,93.0,90.0,115.0,104.0,117.0,124.0,129.0,123.0,143.0,107.0,131.0,138.0,108.0,142.0,127.0,140.0,114.0,118.0,122.0,102.0,110.0,83.0,98.0,110.0,107.0,97.0,92.0,112.0,109.0,119.0,107.0,79.0,111.0,80.0,81.0,66.0,59.0,59.0,56.0,55.0,34.0,31.0,24.0,30.0,23.0,17.0,11.0,25.0 D82035,44.0,39.0,43.0,43.0,42.0,57.0,51.0,45.0,56.0,52.0,69.0,62.0,67.0,54.0,55.0,85.0,63.0,60.0,50.0,47.0,29.0,44.0,32.0,37.0,38.0,55.0,51.0,55.0,52.0,58.0,68.0,62.0,63.0,61.0,48.0,73.0,63.0,61.0,70.0,57.0,51.0,61.0,73.0,71.0,67.0,55.0,67.0,51.0,59.0,54.0,62.0,69.0,66.0,83.0,102.0,94.0,94.0,90.0,95.0,82.0,94.0,106.0,84.0,92.0,91.0,68.0,102.0,78.0,85.0,68.0,71.0,76.0,76.0,76.0,66.0,60.0,80.0,68.0,79.0,57.0,62.0,45.0,47.0,37.0,44.0,39.0,23.0,18.0,25.0,18.0,17.0,19.0,6.0,3.0,8.0,14.0 D82036,30.0,39.0,38.0,42.0,37.0,40.0,47.0,58.0,49.0,42.0,47.0,48.0,56.0,55.0,31.0,36.0,54.0,46.0,39.0,27.0,35.0,30.0,38.0,37.0,43.0,40.0,37.0,40.0,36.0,36.0,50.0,60.0,50.0,45.0,47.0,41.0,53.0,43.0,66.0,53.0,48.0,55.0,59.0,69.0,56.0,65.0,47.0,49.0,45.0,57.0,50.0,62.0,79.0,73.0,64.0,67.0,52.0,67.0,67.0,69.0,91.0,59.0,68.0,86.0,73.0,69.0,57.0,56.0,73.0,66.0,66.0,48.0,65.0,50.0,46.0,66.0,62.0,63.0,79.0,45.0,47.0,38.0,37.0,33.0,25.0,25.0,29.0,30.0,26.0,20.0,14.0,13.0,10.0,13.0,8.0,16.0 D82037,40.0,42.0,47.0,40.0,47.0,39.0,47.0,56.0,55.0,54.0,71.0,69.0,61.0,59.0,64.0,77.0,60.0,54.0,61.0,56.0,42.0,38.0,34.0,47.0,51.0,53.0,50.0,51.0,53.0,61.0,66.0,66.0,51.0,51.0,53.0,53.0,85.0,72.0,59.0,76.0,59.0,74.0,60.0,85.0,77.0,63.0,72.0,57.0,52.0,68.0,74.0,96.0,91.0,92.0,85.0,71.0,102.0,89.0,90.0,86.0,103.0,94.0,89.0,79.0,89.0,88.0,86.0,87.0,58.0,68.0,64.0,69.0,72.0,76.0,64.0,56.0,73.0,66.0,73.0,67.0,54.0,47.0,37.0,39.0,38.0,32.0,34.0,30.0,21.0,22.0,21.0,12.0,10.0,14.0,4.0,33.0 D82038,3.0,6.0,13.0,13.0,11.0,12.0,14.0,16.0,9.0,19.0,20.0,13.0,11.0,11.0,23.0,12.0,17.0,18.0,14.0,11.0,11.0,8.0,9.0,6.0,12.0,7.0,13.0,21.0,15.0,13.0,10.0,15.0,12.0,19.0,12.0,13.0,15.0,13.0,17.0,18.0,15.0,17.0,7.0,18.0,14.0,17.0,16.0,19.0,16.0,20.0,22.0,23.0,21.0,24.0,28.0,18.0,29.0,26.0,33.0,21.0,30.0,28.0,28.0,30.0,26.0,40.0,22.0,25.0,24.0,33.0,27.0,38.0,29.0,14.0,22.0,25.0,28.0,21.0,28.0,28.0,34.0,20.0,15.0,14.0,22.0,14.0,25.0,14.0,17.0,9.0,12.0,3.0,5.0,6.0,3.0,13.0 D82039,27.0,47.0,32.0,27.0,41.0,28.0,32.0,26.0,43.0,42.0,41.0,44.0,55.0,47.0,38.0,47.0,47.0,37.0,46.0,27.0,22.0,29.0,28.0,33.0,33.0,27.0,43.0,40.0,50.0,48.0,40.0,35.0,38.0,50.0,46.0,35.0,50.0,53.0,49.0,42.0,43.0,42.0,41.0,47.0,48.0,55.0,41.0,51.0,53.0,48.0,54.0,43.0,57.0,65.0,67.0,73.0,72.0,64.0,60.0,87.0,73.0,87.0,79.0,79.0,53.0,63.0,68.0,62.0,77.0,63.0,72.0,77.0,44.0,61.0,61.0,69.0,73.0,71.0,71.0,53.0,59.0,52.0,38.0,34.0,25.0,22.0,19.0,22.0,19.0,14.0,17.0,15.0,9.0,8.0,7.0,16.0 D82040,51.0,49.0,63.0,50.0,63.0,80.0,67.0,80.0,100.0,89.0,89.0,87.0,103.0,108.0,84.0,86.0,105.0,100.0,89.0,84.0,77.0,63.0,68.0,51.0,85.0,97.0,75.0,90.0,94.0,81.0,103.0,83.0,102.0,115.0,86.0,103.0,83.0,113.0,86.0,107.0,92.0,106.0,99.0,113.0,95.0,94.0,77.0,59.0,78.0,72.0,67.0,62.0,69.0,73.0,69.0,67.0,83.0,68.0,78.0,55.0,67.0,59.0,59.0,55.0,54.0,43.0,57.0,46.0,40.0,44.0,46.0,25.0,39.0,40.0,52.0,34.0,47.0,35.0,32.0,36.0,26.0,20.0,31.0,15.0,21.0,11.0,12.0,12.0,12.0,9.0,12.0,2.0,3.0,3.0,5.0,8.0 D82041,30.0,51.0,41.0,44.0,44.0,48.0,56.0,46.0,41.0,62.0,57.0,62.0,87.0,78.0,76.0,83.0,76.0,65.0,68.0,64.0,53.0,36.0,47.0,47.0,59.0,41.0,43.0,58.0,48.0,61.0,57.0,54.0,60.0,87.0,73.0,65.0,68.0,75.0,83.0,80.0,66.0,89.0,93.0,71.0,73.0,66.0,67.0,44.0,57.0,68.0,63.0,65.0,68.0,73.0,78.0,82.0,69.0,67.0,77.0,89.0,60.0,79.0,84.0,65.0,58.0,61.0,50.0,46.0,60.0,49.0,54.0,43.0,53.0,35.0,53.0,51.0,53.0,59.0,50.0,31.0,40.0,37.0,34.0,34.0,34.0,26.0,24.0,17.0,16.0,14.0,9.0,6.0,3.0,5.0,5.0,10.0 D82042,27.0,31.0,27.0,29.0,37.0,31.0,42.0,36.0,39.0,51.0,40.0,44.0,41.0,54.0,42.0,52.0,49.0,42.0,36.0,31.0,38.0,27.0,31.0,32.0,28.0,37.0,28.0,25.0,34.0,44.0,46.0,43.0,36.0,46.0,34.0,52.0,45.0,52.0,52.0,55.0,46.0,42.0,53.0,45.0,51.0,52.0,57.0,58.0,43.0,51.0,51.0,64.0,51.0,61.0,85.0,67.0,76.0,67.0,72.0,91.0,92.0,79.0,77.0,74.0,76.0,55.0,48.0,73.0,65.0,56.0,49.0,71.0,54.0,64.0,61.0,56.0,52.0,53.0,53.0,47.0,47.0,32.0,39.0,35.0,33.0,26.0,22.0,11.0,18.0,18.0,8.0,14.0,6.0,6.0,9.0,19.0 D82043,26.0,20.0,24.0,44.0,31.0,29.0,35.0,29.0,31.0,34.0,37.0,36.0,41.0,31.0,27.0,34.0,32.0,38.0,32.0,29.0,26.0,22.0,30.0,27.0,23.0,17.0,37.0,35.0,38.0,34.0,30.0,39.0,28.0,39.0,32.0,38.0,44.0,41.0,36.0,36.0,42.0,34.0,30.0,30.0,37.0,39.0,27.0,35.0,41.0,51.0,40.0,41.0,52.0,61.0,50.0,58.0,62.0,56.0,65.0,46.0,78.0,47.0,72.0,60.0,55.0,34.0,41.0,66.0,59.0,43.0,43.0,61.0,46.0,38.0,34.0,41.0,29.0,47.0,60.0,41.0,37.0,30.0,35.0,24.0,19.0,15.0,16.0,13.0,15.0,10.0,14.0,6.0,12.0,8.0,4.0,2.0 D82044,118.0,122.0,143.0,120.0,123.0,145.0,139.0,164.0,166.0,171.0,187.0,158.0,168.0,180.0,199.0,185.0,159.0,159.0,135.0,139.0,98.0,121.0,120.0,113.0,126.0,144.0,138.0,172.0,142.0,162.0,167.0,182.0,196.0,221.0,201.0,222.0,213.0,202.0,185.0,173.0,201.0,188.0,150.0,176.0,174.0,161.0,157.0,177.0,149.0,138.0,163.0,172.0,168.0,185.0,192.0,194.0,190.0,218.0,181.0,203.0,227.0,223.0,188.0,207.0,233.0,217.0,212.0,188.0,170.0,214.0,180.0,225.0,193.0,186.0,212.0,215.0,208.0,232.0,225.0,174.0,202.0,153.0,150.0,148.0,123.0,116.0,109.0,108.0,85.0,80.0,64.0,59.0,39.0,52.0,28.0,85.0 D82045,67.0,69.0,75.0,93.0,89.0,106.0,89.0,100.0,115.0,101.0,106.0,114.0,140.0,156.0,133.0,151.0,151.0,148.0,111.0,84.0,85.0,81.0,77.0,98.0,98.0,99.0,89.0,77.0,91.0,117.0,107.0,116.0,117.0,125.0,128.0,129.0,116.0,126.0,133.0,122.0,136.0,129.0,128.0,109.0,141.0,127.0,114.0,114.0,81.0,123.0,132.0,129.0,142.0,137.0,149.0,146.0,162.0,128.0,118.0,147.0,151.0,138.0,127.0,140.0,120.0,109.0,116.0,108.0,87.0,107.0,105.0,108.0,95.0,104.0,108.0,109.0,124.0,134.0,123.0,102.0,95.0,93.0,89.0,66.0,70.0,64.0,51.0,45.0,32.0,39.0,32.0,32.0,17.0,16.0,13.0,33.0 D82046,15.0,14.0,13.0,17.0,19.0,18.0,22.0,14.0,20.0,19.0,24.0,28.0,25.0,25.0,25.0,24.0,27.0,26.0,18.0,19.0,11.0,20.0,17.0,12.0,15.0,21.0,12.0,18.0,18.0,18.0,27.0,17.0,24.0,30.0,17.0,27.0,18.0,22.0,26.0,26.0,25.0,17.0,25.0,27.0,22.0,17.0,31.0,32.0,36.0,26.0,24.0,34.0,29.0,39.0,34.0,38.0,30.0,35.0,44.0,46.0,42.0,34.0,35.0,44.0,23.0,37.0,36.0,45.0,35.0,44.0,32.0,20.0,49.0,25.0,20.0,49.0,38.0,41.0,35.0,19.0,37.0,18.0,20.0,14.0,16.0,10.0,11.0,13.0,13.0,13.0,6.0,8.0,5.0,1.0,4.0,9.0 D82047,16.0,18.0,21.0,17.0,21.0,19.0,11.0,16.0,23.0,21.0,17.0,21.0,22.0,24.0,16.0,29.0,12.0,27.0,32.0,73.0,77.0,108.0,93.0,110.0,64.0,68.0,75.0,65.0,73.0,59.0,57.0,52.0,50.0,45.0,46.0,37.0,49.0,52.0,39.0,36.0,43.0,30.0,30.0,44.0,32.0,39.0,30.0,25.0,34.0,29.0,34.0,38.0,35.0,36.0,50.0,37.0,39.0,44.0,30.0,36.0,58.0,41.0,28.0,31.0,25.0,28.0,37.0,40.0,34.0,46.0,31.0,28.0,39.0,28.0,28.0,30.0,28.0,26.0,47.0,27.0,24.0,21.0,18.0,12.0,6.0,17.0,8.0,14.0,11.0,7.0,4.0,10.0,8.0,5.0,1.0,7.0 D82048,53.0,51.0,44.0,57.0,58.0,57.0,71.0,58.0,59.0,75.0,74.0,70.0,81.0,65.0,68.0,85.0,81.0,64.0,65.0,51.0,59.0,59.0,51.0,52.0,53.0,82.0,77.0,73.0,88.0,83.0,79.0,67.0,99.0,80.0,77.0,85.0,90.0,99.0,77.0,85.0,65.0,87.0,74.0,87.0,93.0,74.0,85.0,74.0,78.0,69.0,82.0,68.0,84.0,79.0,87.0,95.0,67.0,78.0,82.0,103.0,80.0,77.0,82.0,84.0,76.0,72.0,64.0,68.0,54.0,65.0,61.0,65.0,62.0,43.0,49.0,56.0,67.0,65.0,65.0,55.0,48.0,46.0,42.0,33.0,44.0,40.0,35.0,37.0,31.0,28.0,20.0,20.0,17.0,13.0,11.0,23.0 D82049,8.0,5.0,10.0,21.0,12.0,14.0,15.0,23.0,17.0,20.0,18.0,17.0,21.0,18.0,29.0,13.0,16.0,21.0,23.0,14.0,9.0,9.0,12.0,10.0,12.0,11.0,13.0,12.0,13.0,9.0,10.0,18.0,16.0,19.0,18.0,17.0,17.0,27.0,19.0,22.0,15.0,16.0,20.0,25.0,17.0,13.0,20.0,11.0,9.0,26.0,20.0,24.0,29.0,36.0,27.0,39.0,33.0,25.0,33.0,30.0,34.0,43.0,30.0,27.0,30.0,33.0,29.0,22.0,29.0,17.0,24.0,28.0,20.0,23.0,24.0,30.0,22.0,24.0,33.0,18.0,23.0,18.0,16.0,10.0,9.0,12.0,7.0,2.0,7.0,6.0,6.0,4.0,3.0,6.0,2.0,3.0 D82050,38.0,45.0,42.0,39.0,41.0,44.0,41.0,43.0,43.0,47.0,59.0,46.0,70.0,47.0,65.0,54.0,59.0,61.0,62.0,57.0,37.0,66.0,53.0,48.0,65.0,51.0,72.0,51.0,51.0,63.0,69.0,67.0,59.0,72.0,69.0,60.0,52.0,61.0,56.0,59.0,72.0,58.0,56.0,60.0,61.0,66.0,57.0,56.0,70.0,67.0,70.0,71.0,97.0,88.0,67.0,91.0,80.0,76.0,100.0,76.0,76.0,65.0,78.0,68.0,74.0,67.0,60.0,66.0,72.0,67.0,72.0,69.0,68.0,72.0,65.0,67.0,82.0,86.0,78.0,67.0,61.0,63.0,36.0,58.0,38.0,39.0,32.0,32.0,32.0,33.0,22.0,16.0,10.0,7.0,5.0,22.0 D82051,70.0,84.0,66.0,89.0,96.0,83.0,102.0,101.0,89.0,113.0,106.0,89.0,98.0,85.0,103.0,89.0,96.0,91.0,93.0,75.0,66.0,103.0,81.0,91.0,107.0,107.0,109.0,110.0,117.0,115.0,137.0,132.0,118.0,129.0,137.0,128.0,156.0,155.0,126.0,130.0,130.0,123.0,137.0,122.0,115.0,96.0,113.0,99.0,88.0,113.0,94.0,101.0,98.0,108.0,133.0,109.0,122.0,97.0,96.0,107.0,120.0,124.0,107.0,114.0,115.0,102.0,119.0,98.0,108.0,82.0,104.0,100.0,88.0,87.0,78.0,92.0,81.0,98.0,96.0,55.0,67.0,68.0,68.0,49.0,39.0,44.0,43.0,46.0,40.0,40.0,28.0,28.0,16.0,20.0,13.0,44.0 D82053,11.0,11.0,19.0,8.0,15.0,17.0,20.0,20.0,26.0,20.0,30.0,23.0,18.0,26.0,26.0,32.0,29.0,18.0,27.0,19.0,22.0,10.0,20.0,20.0,22.0,17.0,17.0,25.0,23.0,27.0,24.0,23.0,23.0,22.0,31.0,26.0,30.0,31.0,32.0,23.0,22.0,23.0,23.0,30.0,16.0,17.0,19.0,12.0,18.0,36.0,22.0,25.0,30.0,43.0,47.0,44.0,33.0,39.0,52.0,61.0,62.0,70.0,63.0,60.0,65.0,58.0,61.0,56.0,49.0,61.0,48.0,50.0,47.0,52.0,46.0,49.0,56.0,57.0,63.0,53.0,37.0,38.0,34.0,26.0,22.0,27.0,25.0,22.0,16.0,16.0,14.0,12.0,6.0,10.0,2.0,15.0 D82054,54.0,48.0,51.0,55.0,59.0,53.0,60.0,68.0,68.0,62.0,80.0,68.0,77.0,77.0,84.0,80.0,79.0,79.0,64.0,54.0,60.0,66.0,57.0,55.0,57.0,69.0,88.0,80.0,87.0,73.0,87.0,68.0,94.0,88.0,74.0,87.0,102.0,89.0,72.0,87.0,92.0,89.0,73.0,86.0,77.0,80.0,68.0,75.0,73.0,76.0,69.0,76.0,117.0,96.0,100.0,121.0,125.0,117.0,143.0,112.0,125.0,138.0,145.0,94.0,149.0,98.0,134.0,124.0,119.0,101.0,115.0,117.0,115.0,89.0,116.0,107.0,108.0,146.0,136.0,103.0,94.0,87.0,98.0,73.0,59.0,63.0,54.0,44.0,46.0,46.0,33.0,37.0,25.0,18.0,17.0,48.0 D82056,33.0,30.0,34.0,38.0,33.0,42.0,46.0,38.0,50.0,44.0,46.0,53.0,56.0,42.0,47.0,49.0,37.0,54.0,53.0,27.0,39.0,28.0,45.0,29.0,42.0,36.0,42.0,30.0,34.0,46.0,46.0,45.0,53.0,50.0,51.0,59.0,32.0,54.0,53.0,41.0,46.0,41.0,45.0,51.0,76.0,55.0,43.0,35.0,54.0,61.0,57.0,68.0,62.0,75.0,73.0,82.0,78.0,90.0,59.0,86.0,94.0,97.0,86.0,72.0,86.0,91.0,81.0,79.0,70.0,92.0,67.0,56.0,72.0,75.0,54.0,83.0,77.0,72.0,97.0,66.0,49.0,46.0,47.0,55.0,23.0,29.0,35.0,34.0,34.0,30.0,25.0,17.0,8.0,16.0,8.0,28.0 D82057,25.0,19.0,27.0,32.0,27.0,40.0,31.0,31.0,21.0,37.0,34.0,29.0,29.0,32.0,35.0,53.0,21.0,29.0,33.0,27.0,24.0,28.0,24.0,24.0,35.0,35.0,31.0,42.0,43.0,30.0,41.0,35.0,26.0,51.0,30.0,46.0,32.0,38.0,52.0,29.0,34.0,32.0,39.0,39.0,34.0,39.0,28.0,33.0,24.0,39.0,49.0,29.0,44.0,48.0,56.0,45.0,47.0,52.0,57.0,64.0,54.0,57.0,63.0,61.0,59.0,57.0,55.0,59.0,55.0,62.0,58.0,60.0,66.0,49.0,64.0,45.0,67.0,65.0,71.0,52.0,66.0,53.0,43.0,31.0,35.0,32.0,24.0,24.0,28.0,25.0,27.0,18.0,11.0,12.0,9.0,20.0 D82058,36.0,45.0,43.0,57.0,58.0,59.0,58.0,59.0,61.0,59.0,64.0,81.0,72.0,81.0,81.0,83.0,84.0,76.0,75.0,85.0,69.0,62.0,83.0,72.0,77.0,67.0,73.0,70.0,67.0,65.0,70.0,70.0,81.0,94.0,66.0,77.0,93.0,97.0,89.0,84.0,67.0,78.0,81.0,77.0,88.0,89.0,90.0,68.0,82.0,77.0,104.0,110.0,110.0,129.0,140.0,135.0,148.0,130.0,160.0,180.0,160.0,176.0,164.0,152.0,142.0,165.0,160.0,153.0,175.0,146.0,148.0,135.0,151.0,128.0,152.0,139.0,158.0,146.0,170.0,117.0,131.0,109.0,97.0,94.0,65.0,60.0,73.0,56.0,44.0,30.0,30.0,33.0,29.0,19.0,11.0,48.0 D82059,39.0,43.0,52.0,53.0,39.0,53.0,48.0,47.0,59.0,50.0,75.0,80.0,52.0,71.0,58.0,49.0,51.0,49.0,55.0,66.0,56.0,50.0,48.0,57.0,43.0,53.0,61.0,52.0,59.0,58.0,61.0,78.0,53.0,65.0,66.0,83.0,72.0,73.0,64.0,67.0,68.0,73.0,61.0,47.0,62.0,68.0,60.0,51.0,55.0,52.0,61.0,78.0,73.0,90.0,76.0,83.0,88.0,92.0,104.0,109.0,93.0,94.0,110.0,87.0,106.0,90.0,94.0,98.0,99.0,84.0,75.0,95.0,95.0,73.0,73.0,83.0,83.0,114.0,124.0,67.0,88.0,56.0,57.0,51.0,38.0,57.0,47.0,37.0,37.0,32.0,26.0,24.0,17.0,18.0,16.0,20.0 D82060,21.0,20.0,23.0,26.0,26.0,25.0,32.0,26.0,32.0,38.0,48.0,37.0,34.0,41.0,40.0,49.0,32.0,39.0,48.0,39.0,25.0,20.0,24.0,16.0,29.0,37.0,34.0,29.0,38.0,36.0,24.0,38.0,34.0,37.0,30.0,32.0,39.0,44.0,35.0,44.0,28.0,33.0,37.0,33.0,31.0,42.0,30.0,25.0,31.0,28.0,31.0,33.0,30.0,36.0,26.0,27.0,41.0,30.0,29.0,16.0,29.0,30.0,28.0,19.0,27.0,29.0,26.0,17.0,27.0,30.0,22.0,21.0,17.0,23.0,14.0,27.0,22.0,30.0,28.0,15.0,16.0,18.0,24.0,12.0,14.0,10.0,13.0,14.0,8.0,11.0,6.0,7.0,3.0,7.0,3.0,16.0 D82062,25.0,27.0,28.0,36.0,28.0,40.0,45.0,56.0,43.0,43.0,42.0,45.0,60.0,56.0,49.0,46.0,48.0,49.0,42.0,34.0,33.0,29.0,18.0,34.0,36.0,30.0,41.0,30.0,41.0,46.0,40.0,58.0,36.0,50.0,50.0,55.0,47.0,50.0,57.0,70.0,69.0,54.0,60.0,51.0,51.0,57.0,55.0,45.0,43.0,44.0,48.0,61.0,51.0,75.0,63.0,50.0,65.0,83.0,65.0,67.0,76.0,79.0,62.0,69.0,82.0,59.0,72.0,55.0,51.0,59.0,65.0,57.0,49.0,57.0,70.0,63.0,59.0,50.0,80.0,56.0,57.0,50.0,37.0,36.0,44.0,26.0,31.0,17.0,21.0,15.0,21.0,13.0,12.0,7.0,4.0,12.0 D82063,57.0,59.0,61.0,76.0,64.0,76.0,74.0,71.0,74.0,74.0,58.0,78.0,61.0,80.0,72.0,58.0,76.0,73.0,69.0,44.0,52.0,51.0,50.0,57.0,73.0,78.0,76.0,91.0,92.0,108.0,99.0,109.0,98.0,97.0,97.0,107.0,107.0,92.0,113.0,85.0,91.0,76.0,79.0,71.0,77.0,72.0,76.0,73.0,67.0,58.0,76.0,85.0,83.0,81.0,85.0,95.0,93.0,120.0,91.0,105.0,94.0,94.0,90.0,99.0,74.0,73.0,81.0,86.0,76.0,98.0,68.0,78.0,92.0,60.0,88.0,79.0,99.0,98.0,123.0,67.0,87.0,62.0,71.0,57.0,41.0,38.0,36.0,45.0,42.0,27.0,24.0,23.0,23.0,10.0,13.0,27.0 D82064,87.0,106.0,105.0,115.0,141.0,115.0,141.0,135.0,168.0,143.0,137.0,165.0,148.0,176.0,142.0,131.0,145.0,141.0,116.0,82.0,83.0,69.0,63.0,89.0,78.0,103.0,86.0,97.0,96.0,109.0,142.0,159.0,148.0,147.0,157.0,168.0,176.0,163.0,178.0,177.0,149.0,174.0,151.0,161.0,161.0,161.0,165.0,117.0,180.0,167.0,148.0,138.0,153.0,154.0,152.0,131.0,127.0,144.0,130.0,143.0,136.0,125.0,140.0,139.0,130.0,123.0,130.0,138.0,127.0,112.0,128.0,122.0,150.0,108.0,117.0,109.0,112.0,126.0,131.0,91.0,118.0,98.0,82.0,72.0,83.0,39.0,48.0,46.0,47.0,42.0,31.0,33.0,37.0,18.0,22.0,43.0 D82065,23.0,33.0,27.0,35.0,34.0,27.0,41.0,40.0,41.0,41.0,41.0,42.0,35.0,44.0,42.0,39.0,31.0,36.0,29.0,24.0,33.0,19.0,27.0,38.0,31.0,34.0,34.0,35.0,40.0,40.0,40.0,47.0,32.0,56.0,57.0,50.0,46.0,56.0,48.0,26.0,55.0,33.0,39.0,36.0,43.0,40.0,44.0,33.0,40.0,33.0,33.0,41.0,43.0,52.0,44.0,47.0,54.0,60.0,62.0,65.0,67.0,68.0,70.0,59.0,64.0,59.0,76.0,55.0,71.0,66.0,53.0,51.0,66.0,72.0,66.0,56.0,44.0,57.0,79.0,32.0,48.0,46.0,47.0,33.0,31.0,26.0,23.0,19.0,27.0,14.0,13.0,12.0,13.0,8.0,7.0,17.0 D82066,22.0,23.0,27.0,22.0,28.0,19.0,25.0,28.0,26.0,33.0,31.0,19.0,25.0,32.0,29.0,31.0,34.0,20.0,31.0,29.0,28.0,24.0,34.0,16.0,29.0,24.0,24.0,41.0,30.0,36.0,49.0,32.0,24.0,35.0,44.0,34.0,21.0,35.0,37.0,34.0,36.0,33.0,29.0,21.0,36.0,30.0,34.0,38.0,37.0,30.0,39.0,34.0,35.0,48.0,54.0,34.0,62.0,73.0,63.0,40.0,50.0,58.0,64.0,51.0,60.0,56.0,60.0,52.0,49.0,55.0,41.0,38.0,45.0,57.0,56.0,47.0,51.0,56.0,62.0,51.0,33.0,40.0,39.0,29.0,25.0,23.0,28.0,32.0,24.0,12.0,20.0,15.0,17.0,12.0,11.0,22.0 D82067,65.0,74.0,72.0,84.0,74.0,73.0,86.0,87.0,80.0,93.0,90.0,73.0,95.0,91.0,81.0,82.0,88.0,93.0,97.0,94.0,88.0,95.0,102.0,81.0,98.0,96.0,115.0,97.0,106.0,113.0,113.0,117.0,114.0,110.0,119.0,102.0,112.0,109.0,99.0,107.0,72.0,91.0,99.0,97.0,79.0,73.0,78.0,84.0,89.0,103.0,87.0,85.0,88.0,98.0,88.0,95.0,98.0,106.0,90.0,99.0,102.0,82.0,86.0,94.0,94.0,75.0,69.0,57.0,69.0,67.0,52.0,73.0,66.0,58.0,64.0,62.0,53.0,69.0,75.0,51.0,62.0,52.0,46.0,32.0,38.0,25.0,29.0,24.0,19.0,16.0,9.0,8.0,10.0,9.0,8.0,15.0 D82068,37.0,34.0,27.0,35.0,31.0,35.0,44.0,39.0,37.0,50.0,44.0,42.0,44.0,49.0,33.0,52.0,24.0,30.0,37.0,27.0,30.0,31.0,38.0,33.0,45.0,46.0,38.0,41.0,50.0,43.0,41.0,54.0,48.0,47.0,52.0,46.0,53.0,49.0,52.0,50.0,48.0,37.0,58.0,52.0,53.0,33.0,29.0,43.0,32.0,38.0,38.0,47.0,45.0,62.0,55.0,65.0,59.0,50.0,47.0,49.0,55.0,46.0,77.0,57.0,60.0,59.0,50.0,68.0,51.0,54.0,53.0,53.0,59.0,57.0,46.0,59.0,62.0,41.0,56.0,48.0,44.0,33.0,40.0,34.0,31.0,36.0,21.0,26.0,16.0,19.0,14.0,20.0,11.0,9.0,10.0,13.0 D82070,19.0,24.0,17.0,22.0,19.0,19.0,30.0,21.0,28.0,31.0,24.0,49.0,36.0,29.0,31.0,31.0,26.0,29.0,29.0,21.0,23.0,21.0,24.0,24.0,28.0,28.0,28.0,34.0,33.0,28.0,24.0,22.0,30.0,28.0,35.0,39.0,40.0,27.0,28.0,31.0,30.0,37.0,29.0,29.0,32.0,44.0,30.0,22.0,31.0,34.0,40.0,43.0,40.0,55.0,47.0,46.0,62.0,62.0,50.0,55.0,64.0,64.0,81.0,49.0,59.0,59.0,53.0,41.0,54.0,46.0,42.0,39.0,47.0,51.0,49.0,44.0,35.0,46.0,43.0,41.0,37.0,29.0,20.0,25.0,24.0,20.0,13.0,18.0,13.0,13.0,8.0,5.0,2.0,5.0,4.0,4.0 D82071,32.0,45.0,62.0,61.0,54.0,82.0,72.0,69.0,66.0,76.0,52.0,64.0,72.0,92.0,83.0,81.0,72.0,76.0,62.0,68.0,65.0,55.0,74.0,57.0,58.0,53.0,62.0,58.0,73.0,68.0,83.0,89.0,81.0,100.0,101.0,101.0,104.0,97.0,63.0,82.0,78.0,81.0,87.0,91.0,84.0,100.0,82.0,101.0,70.0,73.0,79.0,96.0,95.0,86.0,97.0,93.0,111.0,97.0,104.0,119.0,96.0,92.0,89.0,89.0,84.0,99.0,96.0,78.0,96.0,80.0,76.0,84.0,74.0,72.0,69.0,86.0,73.0,106.0,89.0,78.0,72.0,43.0,61.0,49.0,58.0,53.0,46.0,47.0,43.0,35.0,30.0,22.0,21.0,20.0,19.0,39.0 D82072,7.0,5.0,8.0,10.0,11.0,11.0,13.0,17.0,12.0,16.0,16.0,14.0,11.0,20.0,16.0,16.0,15.0,15.0,20.0,18.0,17.0,19.0,11.0,12.0,12.0,7.0,8.0,11.0,18.0,10.0,20.0,15.0,11.0,18.0,7.0,19.0,10.0,18.0,17.0,22.0,19.0,19.0,17.0,27.0,18.0,18.0,10.0,22.0,23.0,27.0,26.0,25.0,20.0,28.0,28.0,24.0,32.0,31.0,27.0,31.0,41.0,35.0,36.0,34.0,35.0,31.0,30.0,41.0,32.0,38.0,30.0,41.0,43.0,33.0,32.0,43.0,34.0,42.0,55.0,16.0,39.0,39.0,23.0,15.0,14.0,23.0,20.0,19.0,13.0,13.0,8.0,9.0,4.0,2.0,6.0,13.0 D82073,60.0,57.0,75.0,71.0,60.0,71.0,70.0,65.0,65.0,75.0,73.0,86.0,100.0,87.0,78.0,90.0,101.0,88.0,78.0,58.0,55.0,64.0,54.0,83.0,94.0,81.0,100.0,114.0,110.0,113.0,124.0,136.0,130.0,131.0,126.0,107.0,141.0,134.0,117.0,134.0,105.0,124.0,109.0,110.0,93.0,121.0,104.0,89.0,87.0,95.0,89.0,109.0,90.0,102.0,95.0,89.0,95.0,104.0,103.0,89.0,85.0,85.0,82.0,74.0,84.0,81.0,74.0,77.0,64.0,62.0,63.0,58.0,63.0,49.0,67.0,51.0,51.0,64.0,75.0,40.0,57.0,38.0,29.0,31.0,31.0,31.0,25.0,31.0,28.0,30.0,17.0,17.0,14.0,14.0,10.0,17.0 D82076,34.0,36.0,41.0,55.0,46.0,41.0,50.0,46.0,38.0,41.0,38.0,46.0,42.0,48.0,39.0,45.0,49.0,29.0,47.0,36.0,31.0,28.0,35.0,34.0,43.0,55.0,68.0,56.0,87.0,57.0,85.0,77.0,78.0,87.0,72.0,63.0,84.0,67.0,75.0,87.0,67.0,69.0,80.0,48.0,57.0,54.0,60.0,53.0,49.0,50.0,62.0,51.0,57.0,54.0,65.0,59.0,64.0,64.0,54.0,59.0,56.0,55.0,49.0,57.0,37.0,46.0,52.0,34.0,40.0,43.0,42.0,42.0,40.0,30.0,30.0,36.0,37.0,53.0,44.0,29.0,41.0,27.0,26.0,13.0,23.0,25.0,24.0,20.0,23.0,14.0,15.0,12.0,7.0,8.0,5.0,18.0 D82078,27.0,42.0,45.0,44.0,41.0,49.0,46.0,56.0,47.0,62.0,61.0,44.0,50.0,59.0,58.0,49.0,53.0,47.0,33.0,43.0,31.0,41.0,31.0,27.0,38.0,48.0,50.0,44.0,44.0,51.0,44.0,51.0,54.0,60.0,63.0,55.0,50.0,63.0,75.0,68.0,63.0,66.0,47.0,69.0,89.0,56.0,49.0,53.0,60.0,62.0,65.0,68.0,75.0,76.0,68.0,82.0,88.0,78.0,98.0,88.0,73.0,81.0,82.0,74.0,76.0,76.0,70.0,61.0,70.0,69.0,66.0,52.0,78.0,47.0,47.0,52.0,59.0,84.0,65.0,46.0,55.0,55.0,42.0,42.0,33.0,23.0,31.0,27.0,16.0,13.0,22.0,11.0,10.0,7.0,2.0,17.0 D82079,10.0,16.0,20.0,20.0,28.0,27.0,17.0,20.0,29.0,27.0,32.0,41.0,25.0,32.0,26.0,33.0,30.0,26.0,27.0,24.0,22.0,25.0,20.0,22.0,16.0,11.0,32.0,19.0,16.0,26.0,26.0,24.0,34.0,37.0,30.0,23.0,32.0,37.0,27.0,31.0,36.0,28.0,32.0,40.0,35.0,28.0,36.0,27.0,28.0,31.0,41.0,52.0,47.0,40.0,44.0,49.0,40.0,57.0,38.0,56.0,46.0,34.0,50.0,36.0,47.0,47.0,45.0,50.0,40.0,46.0,31.0,34.0,36.0,33.0,41.0,33.0,46.0,33.0,34.0,31.0,26.0,21.0,18.0,16.0,15.0,13.0,16.0,14.0,5.0,15.0,10.0,9.0,8.0,3.0,3.0,7.0 D82080,32.0,31.0,43.0,44.0,35.0,38.0,51.0,57.0,34.0,53.0,43.0,36.0,44.0,38.0,46.0,38.0,49.0,60.0,47.0,44.0,36.0,27.0,34.0,44.0,33.0,35.0,58.0,46.0,47.0,56.0,49.0,51.0,66.0,63.0,54.0,53.0,64.0,49.0,57.0,44.0,60.0,64.0,54.0,58.0,56.0,53.0,58.0,50.0,49.0,44.0,73.0,72.0,64.0,68.0,74.0,68.0,63.0,64.0,69.0,71.0,63.0,74.0,60.0,61.0,58.0,40.0,61.0,54.0,53.0,46.0,49.0,48.0,54.0,50.0,59.0,47.0,37.0,63.0,66.0,47.0,47.0,44.0,43.0,29.0,35.0,32.0,18.0,22.0,15.0,14.0,19.0,14.0,13.0,8.0,6.0,13.0 D82084,21.0,22.0,26.0,28.0,19.0,28.0,29.0,31.0,28.0,29.0,49.0,33.0,39.0,40.0,44.0,26.0,44.0,41.0,53.0,30.0,31.0,24.0,28.0,31.0,24.0,26.0,31.0,38.0,45.0,28.0,42.0,38.0,37.0,37.0,37.0,42.0,37.0,47.0,31.0,47.0,45.0,39.0,49.0,44.0,39.0,36.0,42.0,39.0,47.0,34.0,62.0,45.0,46.0,61.0,58.0,51.0,60.0,63.0,66.0,55.0,61.0,56.0,65.0,53.0,82.0,64.0,70.0,57.0,51.0,71.0,68.0,47.0,60.0,56.0,58.0,61.0,75.0,80.0,77.0,56.0,48.0,41.0,38.0,28.0,23.0,43.0,27.0,24.0,30.0,17.0,13.0,17.0,13.0,11.0,9.0,13.0 D82085,17.0,39.0,34.0,29.0,35.0,39.0,35.0,36.0,43.0,36.0,47.0,35.0,41.0,42.0,45.0,33.0,40.0,45.0,32.0,24.0,30.0,36.0,33.0,35.0,40.0,35.0,36.0,40.0,38.0,31.0,46.0,49.0,49.0,51.0,39.0,40.0,41.0,26.0,43.0,33.0,44.0,40.0,43.0,55.0,33.0,33.0,40.0,45.0,49.0,44.0,42.0,66.0,59.0,56.0,64.0,66.0,64.0,74.0,71.0,68.0,90.0,66.0,78.0,60.0,66.0,80.0,70.0,56.0,59.0,63.0,47.0,47.0,54.0,56.0,46.0,46.0,53.0,68.0,57.0,48.0,33.0,38.0,21.0,30.0,16.0,22.0,25.0,11.0,14.0,19.0,12.0,12.0,5.0,7.0,6.0,9.0 D82087,21.0,33.0,34.0,41.0,32.0,36.0,32.0,34.0,32.0,43.0,39.0,34.0,43.0,44.0,46.0,54.0,48.0,29.0,43.0,42.0,32.0,38.0,36.0,36.0,40.0,42.0,55.0,63.0,65.0,55.0,60.0,52.0,55.0,42.0,62.0,55.0,76.0,66.0,57.0,53.0,58.0,66.0,49.0,49.0,55.0,43.0,44.0,46.0,36.0,37.0,39.0,38.0,40.0,41.0,37.0,45.0,44.0,39.0,43.0,38.0,29.0,32.0,30.0,34.0,29.0,28.0,21.0,21.0,28.0,25.0,16.0,19.0,29.0,13.0,17.0,11.0,24.0,14.0,19.0,12.0,19.0,14.0,12.0,10.0,11.0,6.0,7.0,5.0,1.0,6.0,4.0,3.0,1.0,3.0,,2.0 D82088,32.0,39.0,36.0,37.0,25.0,22.0,27.0,35.0,36.0,27.0,37.0,29.0,31.0,17.0,22.0,15.0,20.0,42.0,297.0,713.0,965.0,1043.0,870.0,794.0,742.0,342.0,371.0,346.0,292.0,232.0,205.0,172.0,161.0,110.0,113.0,104.0,104.0,89.0,79.0,70.0,60.0,70.0,44.0,46.0,53.0,42.0,45.0,32.0,32.0,25.0,19.0,26.0,28.0,15.0,18.0,21.0,21.0,18.0,23.0,18.0,16.0,14.0,15.0,15.0,8.0,11.0,9.0,8.0,10.0,11.0,4.0,9.0,6.0,2.0,5.0,5.0,4.0,3.0,1.0,1.0,,3.0,1.0,1.0,2.0,,,,,,,,,,, D82096,39.0,34.0,43.0,52.0,52.0,46.0,57.0,55.0,61.0,70.0,68.0,53.0,60.0,72.0,59.0,63.0,56.0,64.0,56.0,47.0,41.0,37.0,49.0,38.0,59.0,53.0,63.0,58.0,60.0,64.0,70.0,66.0,77.0,64.0,74.0,74.0,81.0,85.0,62.0,65.0,64.0,75.0,52.0,78.0,48.0,51.0,59.0,52.0,56.0,42.0,55.0,45.0,46.0,35.0,50.0,51.0,49.0,36.0,43.0,42.0,50.0,42.0,38.0,31.0,36.0,31.0,34.0,31.0,32.0,27.0,29.0,22.0,24.0,23.0,18.0,24.0,22.0,33.0,16.0,21.0,27.0,17.0,21.0,14.0,10.0,12.0,14.0,7.0,9.0,2.0,8.0,4.0,7.0,3.0,5.0,7.0 D82099,58.0,77.0,71.0,83.0,75.0,72.0,77.0,88.0,90.0,97.0,98.0,115.0,103.0,101.0,112.0,112.0,127.0,116.0,120.0,87.0,84.0,78.0,79.0,93.0,115.0,103.0,114.0,121.0,104.0,106.0,104.0,133.0,115.0,123.0,144.0,172.0,155.0,163.0,163.0,139.0,142.0,145.0,111.0,110.0,108.0,118.0,93.0,94.0,114.0,115.0,101.0,125.0,134.0,150.0,120.0,139.0,132.0,113.0,91.0,114.0,108.0,120.0,101.0,115.0,122.0,78.0,94.0,79.0,70.0,75.0,58.0,45.0,47.0,66.0,61.0,61.0,61.0,55.0,50.0,41.0,49.0,33.0,47.0,38.0,24.0,24.0,35.0,19.0,18.0,17.0,12.0,17.0,4.0,8.0,10.0,16.0 D82100,18.0,20.0,17.0,20.0,15.0,20.0,15.0,8.0,19.0,20.0,23.0,24.0,20.0,26.0,28.0,19.0,33.0,22.0,24.0,19.0,18.0,8.0,12.0,16.0,22.0,22.0,18.0,15.0,28.0,15.0,18.0,23.0,22.0,26.0,23.0,25.0,30.0,29.0,19.0,25.0,18.0,18.0,26.0,26.0,22.0,31.0,23.0,21.0,25.0,26.0,15.0,32.0,15.0,36.0,35.0,32.0,37.0,46.0,42.0,45.0,34.0,40.0,39.0,46.0,36.0,37.0,32.0,36.0,32.0,34.0,32.0,33.0,26.0,28.0,32.0,21.0,32.0,27.0,47.0,24.0,30.0,27.0,15.0,15.0,8.0,13.0,14.0,11.0,9.0,12.0,9.0,5.0,3.0,4.0,5.0,8.0 D82104,31.0,31.0,30.0,40.0,32.0,28.0,49.0,49.0,39.0,49.0,48.0,50.0,45.0,38.0,38.0,34.0,45.0,44.0,47.0,37.0,36.0,43.0,34.0,31.0,51.0,51.0,35.0,60.0,53.0,44.0,45.0,47.0,41.0,52.0,47.0,48.0,43.0,54.0,54.0,49.0,45.0,63.0,44.0,61.0,61.0,44.0,55.0,45.0,48.0,47.0,59.0,69.0,60.0,74.0,79.0,71.0,74.0,74.0,79.0,99.0,103.0,74.0,85.0,70.0,88.0,89.0,74.0,73.0,63.0,54.0,80.0,60.0,56.0,60.0,67.0,51.0,72.0,85.0,73.0,55.0,57.0,52.0,47.0,26.0,27.0,43.0,27.0,23.0,27.0,25.0,19.0,18.0,17.0,11.0,8.0,28.0 D82105,27.0,29.0,41.0,43.0,32.0,47.0,61.0,39.0,53.0,51.0,38.0,42.0,55.0,43.0,35.0,50.0,54.0,38.0,34.0,31.0,28.0,41.0,24.0,37.0,38.0,42.0,39.0,31.0,58.0,48.0,57.0,44.0,68.0,47.0,48.0,48.0,54.0,53.0,41.0,38.0,52.0,37.0,45.0,37.0,42.0,41.0,40.0,46.0,32.0,46.0,41.0,50.0,49.0,46.0,47.0,47.0,78.0,62.0,53.0,53.0,57.0,53.0,68.0,68.0,54.0,45.0,64.0,50.0,51.0,57.0,52.0,44.0,42.0,54.0,33.0,44.0,55.0,55.0,57.0,30.0,33.0,26.0,34.0,25.0,25.0,16.0,16.0,15.0,11.0,12.0,12.0,9.0,8.0,9.0,2.0,7.0 D82106,36.0,28.0,32.0,28.0,30.0,32.0,23.0,23.0,25.0,25.0,29.0,21.0,35.0,21.0,25.0,35.0,15.0,19.0,20.0,23.0,23.0,40.0,42.0,52.0,69.0,76.0,59.0,66.0,61.0,66.0,55.0,67.0,64.0,62.0,62.0,66.0,46.0,62.0,49.0,45.0,41.0,52.0,47.0,43.0,45.0,39.0,41.0,35.0,33.0,35.0,31.0,21.0,25.0,28.0,25.0,29.0,30.0,29.0,38.0,33.0,32.0,28.0,36.0,26.0,27.0,19.0,27.0,21.0,27.0,12.0,33.0,22.0,25.0,22.0,19.0,22.0,22.0,28.0,26.0,21.0,12.0,15.0,17.0,12.0,10.0,10.0,10.0,8.0,7.0,6.0,5.0,12.0,5.0,4.0,6.0,13.0 D82600,5.0,3.0,4.0,5.0,4.0,4.0,7.0,5.0,5.0,11.0,6.0,8.0,9.0,6.0,15.0,11.0,10.0,13.0,4.0,4.0,11.0,5.0,4.0,8.0,5.0,6.0,3.0,3.0,10.0,6.0,10.0,7.0,4.0,9.0,12.0,9.0,6.0,12.0,7.0,6.0,10.0,18.0,9.0,12.0,9.0,10.0,9.0,7.0,7.0,9.0,9.0,13.0,6.0,15.0,12.0,17.0,12.0,22.0,21.0,19.0,20.0,22.0,16.0,13.0,14.0,12.0,24.0,23.0,16.0,14.0,24.0,20.0,17.0,8.0,17.0,18.0,13.0,21.0,24.0,10.0,14.0,11.0,11.0,8.0,2.0,2.0,4.0,4.0,5.0,3.0,2.0,2.0,1.0,1.0,,4.0 D82604,13.0,15.0,21.0,10.0,22.0,10.0,12.0,7.0,17.0,17.0,13.0,9.0,11.0,16.0,12.0,12.0,16.0,18.0,13.0,10.0,15.0,11.0,13.0,22.0,21.0,10.0,16.0,23.0,18.0,13.0,15.0,18.0,18.0,19.0,19.0,21.0,19.0,18.0,15.0,14.0,22.0,18.0,16.0,12.0,19.0,19.0,16.0,17.0,13.0,19.0,22.0,34.0,27.0,24.0,35.0,24.0,26.0,20.0,33.0,33.0,36.0,41.0,39.0,44.0,28.0,28.0,23.0,32.0,20.0,23.0,10.0,21.0,25.0,20.0,23.0,20.0,20.0,32.0,33.0,13.0,23.0,24.0,15.0,13.0,11.0,8.0,9.0,10.0,5.0,9.0,2.0,4.0,3.0,5.0,1.0,6.0 D82618,18.0,20.0,28.0,31.0,20.0,29.0,27.0,29.0,34.0,32.0,30.0,28.0,33.0,39.0,37.0,32.0,33.0,35.0,35.0,21.0,28.0,23.0,23.0,32.0,27.0,23.0,27.0,23.0,36.0,27.0,30.0,31.0,40.0,29.0,29.0,37.0,36.0,44.0,30.0,40.0,31.0,38.0,42.0,40.0,46.0,41.0,28.0,33.0,45.0,31.0,55.0,50.0,36.0,37.0,44.0,41.0,39.0,28.0,49.0,35.0,51.0,53.0,44.0,34.0,39.0,36.0,41.0,52.0,35.0,46.0,31.0,45.0,36.0,39.0,29.0,44.0,29.0,36.0,39.0,36.0,30.0,29.0,27.0,20.0,19.0,15.0,16.0,15.0,10.0,12.0,5.0,5.0,6.0,11.0,5.0,8.0 D82621,18.0,17.0,25.0,29.0,30.0,40.0,26.0,38.0,37.0,25.0,24.0,33.0,23.0,29.0,37.0,24.0,34.0,26.0,26.0,24.0,15.0,22.0,20.0,39.0,26.0,21.0,25.0,30.0,34.0,33.0,34.0,28.0,34.0,35.0,45.0,32.0,38.0,32.0,43.0,46.0,27.0,39.0,41.0,32.0,29.0,33.0,34.0,24.0,40.0,38.0,35.0,41.0,39.0,44.0,41.0,57.0,57.0,59.0,42.0,59.0,55.0,86.0,64.0,55.0,50.0,51.0,61.0,61.0,49.0,50.0,55.0,49.0,51.0,50.0,53.0,54.0,59.0,68.0,55.0,51.0,42.0,38.0,33.0,27.0,26.0,28.0,26.0,19.0,20.0,6.0,9.0,7.0,11.0,13.0,6.0,15.0 D82624,30.0,50.0,47.0,59.0,47.0,46.0,52.0,58.0,55.0,69.0,52.0,48.0,52.0,57.0,58.0,60.0,61.0,41.0,45.0,31.0,22.0,32.0,33.0,31.0,41.0,42.0,55.0,55.0,58.0,50.0,53.0,72.0,55.0,58.0,81.0,67.0,73.0,68.0,56.0,76.0,61.0,59.0,59.0,64.0,66.0,74.0,56.0,53.0,56.0,52.0,43.0,61.0,48.0,81.0,53.0,59.0,67.0,56.0,54.0,64.0,57.0,61.0,44.0,54.0,52.0,49.0,41.0,51.0,45.0,27.0,29.0,47.0,43.0,38.0,37.0,31.0,35.0,42.0,46.0,27.0,25.0,26.0,25.0,22.0,17.0,17.0,13.0,16.0,15.0,8.0,4.0,10.0,4.0,2.0,3.0,14.0 D82628,12.0,8.0,10.0,8.0,10.0,15.0,15.0,13.0,15.0,25.0,14.0,17.0,14.0,18.0,17.0,20.0,15.0,16.0,14.0,13.0,10.0,12.0,13.0,10.0,13.0,13.0,12.0,13.0,12.0,15.0,16.0,19.0,14.0,13.0,18.0,20.0,13.0,25.0,19.0,16.0,17.0,22.0,19.0,24.0,26.0,17.0,19.0,22.0,21.0,20.0,18.0,27.0,30.0,28.0,23.0,33.0,29.0,43.0,44.0,45.0,40.0,47.0,33.0,52.0,44.0,48.0,31.0,37.0,28.0,34.0,33.0,29.0,31.0,39.0,27.0,45.0,31.0,34.0,32.0,22.0,19.0,27.0,16.0,17.0,12.0,16.0,7.0,4.0,11.0,7.0,7.0,2.0,2.0,1.0,2.0,6.0 D83002,49.0,69.0,58.0,64.0,65.0,83.0,79.0,74.0,91.0,92.0,92.0,103.0,103.0,94.0,103.0,98.0,122.0,107.0,98.0,84.0,73.0,86.0,81.0,74.0,99.0,70.0,86.0,88.0,93.0,91.0,78.0,89.0,99.0,115.0,107.0,93.0,102.0,123.0,102.0,105.0,99.0,103.0,91.0,85.0,103.0,102.0,65.0,84.0,82.0,84.0,75.0,85.0,95.0,87.0,97.0,87.0,106.0,102.0,86.0,109.0,117.0,99.0,100.0,103.0,96.0,91.0,82.0,76.0,78.0,69.0,71.0,92.0,75.0,78.0,63.0,72.0,81.0,106.0,108.0,73.0,62.0,59.0,80.0,57.0,45.0,30.0,35.0,32.0,25.0,13.0,27.0,12.0,12.0,17.0,10.0,25.0 D83009,51.0,65.0,61.0,67.0,75.0,65.0,79.0,91.0,60.0,81.0,85.0,99.0,102.0,106.0,113.0,77.0,104.0,91.0,100.0,77.0,60.0,95.0,65.0,101.0,81.0,75.0,80.0,82.0,92.0,92.0,87.0,102.0,100.0,95.0,106.0,92.0,94.0,79.0,88.0,92.0,105.0,94.0,93.0,86.0,88.0,110.0,96.0,106.0,108.0,114.0,135.0,114.0,129.0,127.0,175.0,131.0,139.0,154.0,152.0,153.0,160.0,148.0,148.0,152.0,139.0,141.0,119.0,151.0,144.0,145.0,125.0,141.0,126.0,142.0,129.0,145.0,148.0,167.0,175.0,105.0,140.0,124.0,96.0,83.0,79.0,96.0,72.0,52.0,64.0,58.0,53.0,33.0,27.0,25.0,22.0,63.0 D83010,10.0,21.0,14.0,18.0,15.0,15.0,29.0,27.0,33.0,29.0,28.0,27.0,29.0,31.0,18.0,27.0,32.0,18.0,27.0,15.0,27.0,29.0,21.0,30.0,19.0,20.0,25.0,27.0,19.0,31.0,17.0,22.0,35.0,29.0,28.0,23.0,35.0,31.0,36.0,40.0,23.0,29.0,27.0,33.0,30.0,27.0,32.0,34.0,35.0,29.0,38.0,26.0,50.0,46.0,54.0,46.0,54.0,49.0,57.0,52.0,62.0,57.0,58.0,73.0,58.0,49.0,56.0,56.0,69.0,52.0,50.0,66.0,45.0,46.0,60.0,59.0,63.0,64.0,57.0,54.0,48.0,40.0,31.0,26.0,22.0,24.0,22.0,21.0,15.0,18.0,11.0,14.0,5.0,13.0,7.0,10.0 D83011,40.0,35.0,45.0,41.0,53.0,53.0,48.0,44.0,58.0,64.0,46.0,40.0,75.0,61.0,66.0,56.0,57.0,52.0,60.0,47.0,45.0,53.0,53.0,38.0,47.0,56.0,53.0,54.0,57.0,71.0,58.0,60.0,65.0,69.0,71.0,57.0,54.0,72.0,55.0,85.0,60.0,66.0,59.0,65.0,62.0,71.0,57.0,59.0,69.0,59.0,63.0,87.0,71.0,80.0,73.0,85.0,95.0,85.0,115.0,95.0,85.0,102.0,90.0,93.0,97.0,91.0,89.0,89.0,84.0,72.0,93.0,97.0,76.0,67.0,96.0,100.0,96.0,95.0,106.0,68.0,67.0,71.0,59.0,50.0,42.0,44.0,38.0,46.0,32.0,32.0,28.0,21.0,24.0,19.0,20.0,42.0 D83016,36.0,45.0,40.0,34.0,40.0,38.0,35.0,42.0,40.0,55.0,49.0,50.0,64.0,72.0,55.0,62.0,67.0,66.0,52.0,55.0,44.0,48.0,42.0,52.0,51.0,58.0,54.0,55.0,41.0,53.0,61.0,44.0,49.0,71.0,59.0,62.0,61.0,67.0,63.0,64.0,63.0,69.0,71.0,60.0,63.0,62.0,54.0,49.0,50.0,52.0,69.0,69.0,67.0,67.0,70.0,92.0,65.0,86.0,76.0,98.0,70.0,78.0,57.0,79.0,95.0,66.0,51.0,82.0,67.0,71.0,63.0,48.0,74.0,70.0,60.0,50.0,76.0,69.0,82.0,75.0,54.0,58.0,48.0,45.0,45.0,30.0,47.0,29.0,39.0,13.0,26.0,13.0,11.0,13.0,6.0,29.0 D83022,14.0,17.0,16.0,15.0,21.0,18.0,19.0,24.0,19.0,21.0,24.0,23.0,26.0,17.0,23.0,17.0,30.0,20.0,23.0,26.0,20.0,22.0,22.0,34.0,20.0,24.0,21.0,18.0,22.0,12.0,26.0,18.0,24.0,14.0,20.0,18.0,25.0,20.0,20.0,27.0,25.0,31.0,24.0,28.0,16.0,13.0,26.0,24.0,23.0,23.0,25.0,40.0,28.0,17.0,31.0,33.0,42.0,40.0,44.0,43.0,53.0,62.0,60.0,50.0,78.0,47.0,58.0,59.0,47.0,45.0,51.0,56.0,54.0,58.0,47.0,39.0,43.0,45.0,42.0,34.0,49.0,41.0,27.0,30.0,29.0,19.0,26.0,18.0,18.0,22.0,19.0,18.0,7.0,12.0,15.0,26.0 D83023,30.0,43.0,48.0,44.0,60.0,49.0,55.0,69.0,77.0,57.0,58.0,72.0,70.0,73.0,69.0,73.0,77.0,69.0,66.0,54.0,58.0,62.0,46.0,62.0,55.0,59.0,54.0,62.0,69.0,78.0,72.0,75.0,81.0,68.0,83.0,81.0,74.0,70.0,72.0,75.0,68.0,47.0,68.0,69.0,65.0,63.0,51.0,55.0,53.0,64.0,71.0,58.0,84.0,71.0,72.0,71.0,81.0,82.0,96.0,88.0,66.0,79.0,59.0,65.0,64.0,65.0,67.0,76.0,79.0,74.0,55.0,59.0,56.0,81.0,60.0,68.0,73.0,77.0,74.0,60.0,48.0,65.0,43.0,43.0,42.0,33.0,34.0,24.0,22.0,17.0,9.0,12.0,16.0,12.0,10.0,26.0 D83030,36.0,33.0,40.0,43.0,40.0,30.0,39.0,35.0,49.0,36.0,36.0,32.0,40.0,50.0,36.0,38.0,46.0,33.0,35.0,39.0,29.0,35.0,31.0,43.0,44.0,31.0,44.0,49.0,62.0,52.0,55.0,46.0,59.0,51.0,55.0,42.0,53.0,42.0,48.0,33.0,47.0,39.0,38.0,49.0,37.0,38.0,33.0,42.0,25.0,44.0,39.0,49.0,36.0,47.0,29.0,47.0,58.0,54.0,43.0,48.0,47.0,53.0,40.0,52.0,38.0,35.0,50.0,40.0,22.0,53.0,32.0,38.0,34.0,27.0,24.0,27.0,36.0,35.0,36.0,28.0,26.0,14.0,23.0,19.0,10.0,11.0,8.0,10.0,14.0,11.0,7.0,4.0,4.0,2.0,2.0,7.0 D83034,34.0,47.0,42.0,44.0,54.0,51.0,53.0,48.0,50.0,50.0,51.0,57.0,60.0,59.0,72.0,50.0,55.0,51.0,57.0,48.0,25.0,40.0,40.0,48.0,52.0,52.0,53.0,77.0,46.0,54.0,50.0,59.0,61.0,66.0,64.0,71.0,59.0,73.0,52.0,65.0,65.0,66.0,66.0,73.0,59.0,72.0,74.0,63.0,48.0,63.0,70.0,85.0,70.0,84.0,96.0,78.0,98.0,107.0,100.0,90.0,101.0,84.0,96.0,101.0,85.0,85.0,95.0,85.0,87.0,85.0,82.0,80.0,85.0,97.0,75.0,77.0,85.0,95.0,91.0,59.0,60.0,64.0,58.0,44.0,48.0,34.0,35.0,32.0,24.0,36.0,30.0,23.0,21.0,11.0,14.0,26.0 D83035,29.0,33.0,37.0,26.0,33.0,38.0,38.0,59.0,47.0,51.0,56.0,45.0,44.0,56.0,51.0,50.0,39.0,64.0,35.0,22.0,31.0,39.0,40.0,28.0,38.0,43.0,43.0,32.0,44.0,51.0,54.0,48.0,50.0,51.0,55.0,59.0,48.0,54.0,56.0,41.0,54.0,52.0,40.0,44.0,40.0,35.0,48.0,46.0,43.0,44.0,46.0,48.0,58.0,64.0,77.0,60.0,65.0,83.0,80.0,86.0,95.0,104.0,101.0,88.0,97.0,91.0,97.0,97.0,86.0,104.0,107.0,84.0,87.0,90.0,90.0,95.0,95.0,97.0,116.0,71.0,63.0,74.0,65.0,56.0,47.0,43.0,44.0,35.0,34.0,30.0,28.0,19.0,23.0,15.0,12.0,31.0 D83047,82.0,69.0,76.0,63.0,72.0,70.0,86.0,85.0,89.0,82.0,85.0,86.0,97.0,102.0,89.0,93.0,80.0,87.0,82.0,79.0,74.0,60.0,65.0,77.0,73.0,89.0,87.0,86.0,95.0,97.0,89.0,101.0,112.0,110.0,104.0,117.0,103.0,103.0,111.0,92.0,87.0,96.0,99.0,107.0,97.0,96.0,85.0,79.0,91.0,81.0,85.0,80.0,97.0,106.0,104.0,116.0,118.0,96.0,133.0,121.0,117.0,110.0,134.0,108.0,103.0,105.0,112.0,115.0,81.0,90.0,105.0,102.0,106.0,84.0,96.0,92.0,96.0,116.0,97.0,90.0,80.0,65.0,80.0,68.0,43.0,54.0,57.0,46.0,34.0,32.0,29.0,30.0,14.0,18.0,15.0,33.0 D83608,22.0,15.0,24.0,17.0,24.0,29.0,24.0,28.0,33.0,43.0,41.0,27.0,52.0,42.0,39.0,34.0,34.0,36.0,43.0,33.0,31.0,30.0,22.0,27.0,17.0,37.0,26.0,29.0,29.0,29.0,29.0,23.0,31.0,29.0,28.0,43.0,41.0,39.0,41.0,28.0,46.0,42.0,33.0,36.0,51.0,33.0,35.0,18.0,29.0,42.0,30.0,49.0,48.0,51.0,58.0,40.0,48.0,53.0,49.0,75.0,54.0,51.0,49.0,53.0,54.0,51.0,44.0,36.0,45.0,42.0,45.0,46.0,41.0,40.0,38.0,44.0,67.0,56.0,57.0,35.0,35.0,32.0,29.0,32.0,24.0,23.0,14.0,20.0,21.0,17.0,8.0,16.0,13.0,6.0,7.0,20.0 Y00297,25.0,18.0,19.0,17.0,18.0,26.0,23.0,35.0,30.0,31.0,36.0,34.0,36.0,36.0,35.0,39.0,36.0,30.0,28.0,26.0,16.0,26.0,24.0,24.0,18.0,13.0,22.0,29.0,33.0,30.0,23.0,18.0,35.0,27.0,30.0,45.0,39.0,50.0,27.0,35.0,39.0,33.0,31.0,29.0,28.0,28.0,34.0,33.0,32.0,27.0,29.0,30.0,35.0,29.0,43.0,26.0,37.0,27.0,34.0,39.0,34.0,39.0,32.0,33.0,33.0,23.0,33.0,27.0,22.0,33.0,19.0,24.0,25.0,20.0,19.0,25.0,30.0,25.0,29.0,27.0,27.0,16.0,19.0,13.0,13.0,14.0,13.0,15.0,11.0,5.0,10.0,2.0,5.0,5.0,1.0,6.0 Y01690,32.0,38.0,40.0,47.0,25.0,30.0,48.0,31.0,78.0,37.0,50.0,51.0,53.0,51.0,40.0,25.0,50.0,50.0,29.0,33.0,40.0,40.0,25.0,41.0,64.0,65.0,58.0,61.0,51.0,82.0,51.0,68.0,78.0,72.0,56.0,61.0,63.0,65.0,68.0,69.0,57.0,49.0,56.0,52.0,42.0,50.0,33.0,39.0,43.0,40.0,42.0,37.0,36.0,40.0,50.0,37.0,38.0,35.0,36.0,30.0,38.0,41.0,29.0,31.0,36.0,25.0,20.0,30.0,23.0,10.0,13.0,20.0,13.0,9.0,11.0,15.0,18.0,19.0,15.0,14.0,9.0,10.0,9.0,4.0,7.0,7.0,13.0,9.0,10.0,6.0,6.0,8.0,4.0,4.0,2.0,10.0 Y02751,45.0,70.0,58.0,52.0,61.0,48.0,59.0,49.0,57.0,53.0,50.0,45.0,48.0,40.0,43.0,29.0,26.0,33.0,41.0,47.0,39.0,53.0,73.0,92.0,90.0,99.0,115.0,130.0,150.0,135.0,136.0,133.0,172.0,143.0,165.0,160.0,153.0,140.0,138.0,114.0,89.0,97.0,84.0,94.0,65.0,52.0,69.0,52.0,51.0,48.0,35.0,47.0,45.0,36.0,41.0,37.0,40.0,40.0,40.0,30.0,34.0,40.0,34.0,24.0,25.0,29.0,23.0,28.0,21.0,20.0,24.0,17.0,14.0,21.0,20.0,18.0,16.0,20.0,24.0,14.0,19.0,19.0,8.0,8.0,13.0,15.0,17.0,16.0,18.0,14.0,13.0,11.0,10.0,13.0,9.0,15.0 Y03222,21.0,21.0,28.0,38.0,27.0,26.0,23.0,39.0,35.0,27.0,29.0,39.0,40.0,32.0,29.0,44.0,46.0,30.0,22.0,33.0,29.0,25.0,26.0,28.0,29.0,29.0,34.0,44.0,30.0,41.0,34.0,40.0,37.0,30.0,39.0,51.0,43.0,42.0,43.0,45.0,42.0,20.0,37.0,32.0,30.0,36.0,35.0,38.0,25.0,45.0,31.0,41.0,43.0,44.0,41.0,47.0,58.0,53.0,57.0,49.0,62.0,53.0,48.0,47.0,44.0,48.0,53.0,35.0,54.0,46.0,49.0,49.0,47.0,40.0,43.0,32.0,41.0,47.0,42.0,23.0,32.0,33.0,20.0,25.0,22.0,19.0,18.0,13.0,18.0,10.0,11.0,7.0,8.0,2.0,5.0,10.0 Y03595,29.0,41.0,29.0,41.0,22.0,43.0,26.0,40.0,35.0,40.0,42.0,48.0,46.0,37.0,36.0,47.0,39.0,51.0,30.0,29.0,28.0,21.0,23.0,22.0,23.0,36.0,33.0,47.0,31.0,48.0,40.0,45.0,32.0,47.0,49.0,57.0,58.0,63.0,56.0,51.0,52.0,51.0,49.0,55.0,44.0,49.0,40.0,41.0,39.0,47.0,44.0,45.0,36.0,35.0,47.0,43.0,38.0,37.0,44.0,52.0,43.0,45.0,40.0,33.0,49.0,34.0,35.0,51.0,50.0,32.0,30.0,36.0,42.0,28.0,35.0,31.0,39.0,45.0,38.0,32.0,30.0,27.0,28.0,16.0,13.0,10.0,19.0,19.0,14.0,11.0,15.0,4.0,6.0,6.0,5.0,8.0 Y05291,,2.0,,,,,,,,,,,,,,,,1.0,,,,,,1.0,,,,,1.0,,,,,,,,,,,1.0,,,1.0,1.0,1.0,,,,,,,,,,,,,,,1.0,1.0,2.0,,,,,,,1.0,1.0,,,,,,,,,,,,1.0,,,,,,,,,,,,,, Y06275,21.0,25.0,29.0,29.0,27.0,41.0,37.0,48.0,30.0,41.0,39.0,49.0,36.0,43.0,36.0,45.0,60.0,36.0,43.0,39.0,46.0,29.0,33.0,43.0,40.0,42.0,39.0,43.0,44.0,42.0,47.0,33.0,63.0,43.0,43.0,32.0,41.0,44.0,43.0,59.0,43.0,43.0,35.0,43.0,48.0,36.0,29.0,33.0,21.0,37.0,39.0,24.0,30.0,28.0,41.0,36.0,47.0,29.0,27.0,26.0,27.0,34.0,28.0,23.0,33.0,22.0,21.0,30.0,19.0,29.0,23.0,20.0,33.0,23.0,15.0,26.0,17.0,13.0,20.0,16.0,13.0,10.0,13.0,15.0,8.0,7.0,5.0,7.0,4.0,2.0,3.0,,3.0,1.0,1.0,2.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 C81018,26.0,29.0,32.0,30.0,47.0,38.0,44.0,33.0,47.0,42.0,40.0,52.0,57.0,45.0,41.0,57.0,41.0,52.0,42.0,38.0,38.0,34.0,41.0,47.0,38.0,33.0,33.0,34.0,40.0,41.0,44.0,40.0,48.0,43.0,44.0,44.0,44.0,45.0,40.0,45.0,50.0,51.0,51.0,56.0,63.0,46.0,51.0,69.0,53.0,74.0,55.0,62.0,45.0,66.0,87.0,52.0,69.0,83.0,80.0,96.0,73.0,90.0,84.0,69.0,69.0,76.0,69.0,56.0,73.0,61.0,56.0,57.0,61.0,57.0,57.0,56.0,62.0,58.0,61.0,63.0,52.0,43.0,36.0,35.0,34.0,25.0,26.0,21.0,21.0,19.0,16.0,15.0,13.0,8.0,9.0,22.0 M83001,47.0,49.0,56.0,65.0,82.0,72.0,64.0,80.0,78.0,75.0,76.0,94.0,96.0,66.0,78.0,63.0,71.0,58.0,63.0,65.0,59.0,49.0,49.0,59.0,53.0,55.0,57.0,63.0,72.0,67.0,74.0,83.0,94.0,105.0,66.0,91.0,94.0,87.0,89.0,114.0,75.0,78.0,75.0,74.0,67.0,75.0,62.0,57.0,57.0,56.0,62.0,86.0,73.0,91.0,70.0,91.0,91.0,81.0,89.0,87.0,98.0,87.0,61.0,85.0,86.0,82.0,70.0,60.0,84.0,71.0,48.0,50.0,63.0,69.0,59.0,58.0,62.0,59.0,62.0,44.0,51.0,44.0,37.0,36.0,39.0,25.0,20.0,28.0,16.0,15.0,11.0,19.0,7.0,6.0,9.0,17.0 M83004,30.0,27.0,35.0,29.0,28.0,30.0,30.0,29.0,37.0,35.0,42.0,44.0,44.0,38.0,46.0,39.0,55.0,46.0,44.0,38.0,37.0,33.0,30.0,39.0,34.0,41.0,45.0,35.0,44.0,45.0,37.0,45.0,45.0,44.0,43.0,58.0,55.0,37.0,49.0,45.0,56.0,46.0,56.0,54.0,57.0,51.0,56.0,46.0,41.0,57.0,40.0,58.0,62.0,67.0,49.0,72.0,62.0,80.0,60.0,93.0,95.0,70.0,83.0,82.0,98.0,69.0,85.0,74.0,81.0,83.0,74.0,85.0,58.0,67.0,72.0,52.0,73.0,60.0,71.0,45.0,71.0,41.0,39.0,31.0,41.0,39.0,37.0,27.0,32.0,26.0,15.0,21.0,11.0,9.0,11.0,18.0 M83005,17.0,25.0,24.0,23.0,24.0,35.0,22.0,26.0,27.0,21.0,16.0,23.0,31.0,23.0,22.0,27.0,29.0,29.0,31.0,15.0,27.0,27.0,27.0,23.0,28.0,28.0,29.0,31.0,36.0,32.0,24.0,33.0,30.0,30.0,28.0,20.0,33.0,45.0,47.0,26.0,37.0,27.0,36.0,23.0,30.0,23.0,26.0,26.0,22.0,22.0,29.0,36.0,29.0,22.0,29.0,41.0,21.0,37.0,34.0,29.0,27.0,38.0,41.0,44.0,42.0,39.0,30.0,31.0,46.0,23.0,27.0,27.0,27.0,32.0,24.0,28.0,23.0,29.0,24.0,23.0,29.0,25.0,10.0,15.0,16.0,11.0,11.0,11.0,5.0,16.0,7.0,4.0,6.0,3.0,6.0,13.0 M83006,143.0,148.0,151.0,146.0,153.0,147.0,157.0,168.0,157.0,179.0,161.0,171.0,162.0,190.0,178.0,156.0,158.0,161.0,146.0,122.0,114.0,120.0,112.0,133.0,119.0,148.0,144.0,150.0,164.0,170.0,178.0,243.0,203.0,213.0,196.0,199.0,208.0,199.0,195.0,194.0,184.0,206.0,195.0,191.0,216.0,201.0,206.0,203.0,165.0,215.0,195.0,193.0,203.0,206.0,223.0,200.0,217.0,210.0,210.0,196.0,226.0,212.0,201.0,225.0,195.0,182.0,201.0,194.0,175.0,184.0,175.0,175.0,164.0,173.0,187.0,186.0,179.0,215.0,204.0,175.0,192.0,148.0,151.0,143.0,113.0,114.0,122.0,97.0,72.0,63.0,54.0,44.0,42.0,36.0,37.0,62.0 M83007,38.0,39.0,48.0,37.0,33.0,40.0,41.0,38.0,35.0,52.0,41.0,50.0,53.0,54.0,41.0,36.0,43.0,47.0,39.0,33.0,39.0,40.0,48.0,43.0,49.0,38.0,53.0,52.0,55.0,57.0,41.0,56.0,59.0,67.0,46.0,74.0,50.0,66.0,65.0,55.0,54.0,63.0,56.0,41.0,55.0,49.0,40.0,49.0,43.0,46.0,53.0,49.0,52.0,68.0,60.0,52.0,50.0,47.0,58.0,48.0,48.0,51.0,49.0,41.0,48.0,48.0,38.0,28.0,30.0,24.0,32.0,30.0,26.0,20.0,45.0,33.0,23.0,36.0,22.0,24.0,31.0,26.0,23.0,15.0,16.0,18.0,10.0,13.0,13.0,5.0,9.0,7.0,3.0,4.0,3.0,6.0 M83009,34.0,28.0,33.0,32.0,44.0,47.0,47.0,56.0,46.0,50.0,55.0,51.0,52.0,68.0,61.0,51.0,70.0,55.0,35.0,40.0,33.0,38.0,33.0,46.0,33.0,54.0,64.0,45.0,46.0,45.0,42.0,59.0,59.0,51.0,59.0,47.0,60.0,69.0,61.0,48.0,52.0,65.0,54.0,51.0,55.0,73.0,63.0,54.0,47.0,52.0,66.0,56.0,71.0,93.0,76.0,78.0,101.0,86.0,94.0,98.0,106.0,83.0,98.0,91.0,90.0,77.0,90.0,80.0,72.0,63.0,90.0,67.0,68.0,62.0,60.0,82.0,83.0,89.0,80.0,69.0,85.0,66.0,74.0,49.0,39.0,43.0,30.0,32.0,35.0,32.0,27.0,11.0,18.0,9.0,8.0,12.0 M83010,58.0,65.0,71.0,70.0,64.0,68.0,67.0,58.0,80.0,68.0,66.0,91.0,89.0,93.0,85.0,64.0,83.0,71.0,71.0,48.0,54.0,46.0,42.0,62.0,55.0,69.0,74.0,73.0,78.0,73.0,77.0,94.0,86.0,84.0,91.0,100.0,100.0,88.0,106.0,87.0,87.0,83.0,82.0,74.0,76.0,62.0,49.0,63.0,55.0,46.0,61.0,51.0,56.0,58.0,57.0,49.0,50.0,47.0,51.0,48.0,56.0,45.0,49.0,34.0,46.0,42.0,42.0,32.0,38.0,31.0,46.0,23.0,22.0,19.0,28.0,20.0,23.0,25.0,26.0,14.0,20.0,19.0,19.0,11.0,15.0,17.0,13.0,14.0,11.0,5.0,5.0,9.0,7.0,9.0,4.0,11.0 M83011,28.0,25.0,23.0,37.0,51.0,38.0,29.0,43.0,32.0,42.0,34.0,34.0,42.0,46.0,40.0,42.0,40.0,41.0,33.0,28.0,42.0,41.0,29.0,31.0,27.0,38.0,40.0,43.0,44.0,35.0,40.0,33.0,40.0,60.0,47.0,42.0,47.0,50.0,51.0,41.0,40.0,45.0,48.0,41.0,47.0,46.0,33.0,34.0,46.0,39.0,56.0,40.0,49.0,47.0,83.0,52.0,68.0,65.0,64.0,68.0,61.0,68.0,68.0,47.0,57.0,49.0,48.0,61.0,64.0,67.0,49.0,60.0,49.0,58.0,54.0,53.0,58.0,65.0,56.0,41.0,41.0,42.0,31.0,36.0,34.0,36.0,27.0,32.0,17.0,20.0,20.0,8.0,10.0,11.0,5.0,17.0 M83012,24.0,51.0,20.0,24.0,32.0,35.0,32.0,44.0,41.0,42.0,26.0,40.0,46.0,53.0,49.0,50.0,46.0,40.0,30.0,43.0,40.0,37.0,43.0,25.0,44.0,41.0,39.0,46.0,40.0,38.0,53.0,43.0,48.0,55.0,40.0,45.0,54.0,46.0,52.0,54.0,47.0,39.0,39.0,37.0,48.0,42.0,41.0,43.0,48.0,45.0,57.0,58.0,57.0,64.0,60.0,65.0,60.0,57.0,59.0,57.0,60.0,60.0,57.0,54.0,63.0,49.0,58.0,51.0,64.0,58.0,52.0,54.0,41.0,40.0,61.0,54.0,54.0,59.0,61.0,43.0,40.0,44.0,36.0,37.0,22.0,25.0,22.0,19.0,18.0,29.0,10.0,16.0,15.0,8.0,6.0,23.0 M83013,10.0,9.0,14.0,14.0,7.0,10.0,20.0,18.0,20.0,15.0,27.0,27.0,23.0,21.0,26.0,19.0,20.0,25.0,22.0,20.0,17.0,23.0,12.0,19.0,16.0,18.0,19.0,23.0,13.0,20.0,16.0,13.0,7.0,15.0,23.0,25.0,19.0,13.0,11.0,20.0,20.0,21.0,26.0,17.0,28.0,26.0,19.0,28.0,22.0,28.0,34.0,34.0,27.0,40.0,51.0,36.0,53.0,51.0,43.0,40.0,50.0,49.0,33.0,46.0,44.0,41.0,33.0,29.0,31.0,31.0,36.0,39.0,27.0,38.0,31.0,29.0,42.0,48.0,47.0,31.0,33.0,29.0,23.0,24.0,19.0,9.0,16.0,11.0,14.0,10.0,15.0,5.0,2.0,9.0,9.0,15.0 M83014,45.0,53.0,38.0,47.0,52.0,57.0,58.0,62.0,46.0,75.0,77.0,79.0,80.0,68.0,65.0,67.0,73.0,68.0,67.0,65.0,64.0,55.0,53.0,66.0,56.0,68.0,68.0,76.0,61.0,59.0,80.0,68.0,99.0,75.0,89.0,92.0,87.0,72.0,68.0,77.0,79.0,53.0,83.0,60.0,79.0,74.0,77.0,71.0,53.0,62.0,56.0,78.0,63.0,67.0,76.0,68.0,57.0,58.0,63.0,64.0,52.0,41.0,41.0,47.0,50.0,36.0,46.0,39.0,40.0,38.0,42.0,41.0,47.0,35.0,39.0,30.0,29.0,50.0,43.0,24.0,26.0,22.0,27.0,22.0,24.0,23.0,23.0,16.0,16.0,11.0,10.0,10.0,12.0,10.0,6.0,18.0 M83015,18.0,29.0,36.0,27.0,28.0,42.0,35.0,34.0,36.0,36.0,32.0,36.0,41.0,43.0,53.0,32.0,47.0,42.0,40.0,37.0,43.0,29.0,31.0,37.0,31.0,40.0,23.0,38.0,43.0,46.0,37.0,50.0,35.0,36.0,42.0,40.0,50.0,46.0,47.0,53.0,34.0,34.0,49.0,46.0,40.0,46.0,40.0,27.0,45.0,57.0,51.0,58.0,55.0,66.0,70.0,64.0,76.0,53.0,62.0,60.0,56.0,77.0,66.0,59.0,48.0,57.0,67.0,50.0,61.0,49.0,45.0,51.0,45.0,37.0,44.0,52.0,63.0,63.0,46.0,49.0,47.0,28.0,30.0,30.0,29.0,20.0,23.0,17.0,25.0,21.0,16.0,13.0,10.0,4.0,4.0,10.0 M83016,28.0,22.0,33.0,33.0,29.0,38.0,30.0,36.0,39.0,40.0,43.0,34.0,37.0,33.0,31.0,30.0,35.0,37.0,38.0,18.0,34.0,30.0,27.0,26.0,41.0,29.0,21.0,36.0,34.0,42.0,37.0,42.0,47.0,49.0,49.0,49.0,48.0,42.0,42.0,56.0,52.0,43.0,47.0,33.0,43.0,42.0,30.0,26.0,22.0,34.0,34.0,51.0,50.0,50.0,51.0,39.0,44.0,49.0,56.0,55.0,49.0,64.0,59.0,67.0,67.0,60.0,47.0,64.0,59.0,67.0,51.0,63.0,43.0,47.0,49.0,64.0,43.0,52.0,44.0,41.0,41.0,37.0,36.0,38.0,25.0,23.0,21.0,18.0,17.0,20.0,13.0,8.0,7.0,8.0,1.0,10.0 M83017,14.0,20.0,23.0,21.0,26.0,19.0,16.0,14.0,25.0,12.0,21.0,25.0,15.0,22.0,25.0,14.0,24.0,30.0,21.0,18.0,17.0,20.0,22.0,16.0,26.0,18.0,26.0,23.0,9.0,22.0,30.0,23.0,25.0,33.0,23.0,38.0,28.0,22.0,36.0,24.0,27.0,34.0,30.0,24.0,32.0,26.0,21.0,23.0,18.0,32.0,28.0,24.0,32.0,34.0,34.0,44.0,32.0,42.0,48.0,58.0,47.0,54.0,34.0,48.0,31.0,44.0,37.0,40.0,34.0,47.0,36.0,37.0,43.0,35.0,41.0,34.0,39.0,47.0,38.0,22.0,30.0,26.0,15.0,15.0,10.0,12.0,14.0,11.0,9.0,6.0,7.0,7.0,9.0,,3.0,7.0 M83018,37.0,31.0,35.0,39.0,39.0,38.0,43.0,47.0,32.0,39.0,46.0,53.0,45.0,49.0,43.0,41.0,56.0,40.0,49.0,41.0,39.0,30.0,36.0,35.0,55.0,34.0,43.0,41.0,40.0,45.0,44.0,35.0,47.0,51.0,48.0,50.0,42.0,67.0,65.0,43.0,55.0,44.0,57.0,48.0,58.0,56.0,53.0,29.0,41.0,46.0,50.0,50.0,59.0,60.0,61.0,61.0,73.0,64.0,86.0,65.0,77.0,65.0,68.0,73.0,71.0,85.0,54.0,66.0,69.0,58.0,56.0,65.0,56.0,52.0,45.0,50.0,53.0,62.0,50.0,37.0,49.0,41.0,59.0,38.0,32.0,34.0,26.0,34.0,26.0,24.0,17.0,19.0,19.0,13.0,7.0,15.0 M83020,23.0,29.0,32.0,38.0,34.0,48.0,35.0,35.0,48.0,62.0,41.0,61.0,65.0,67.0,43.0,58.0,63.0,69.0,61.0,44.0,55.0,41.0,52.0,38.0,38.0,37.0,37.0,44.0,46.0,44.0,44.0,47.0,55.0,56.0,48.0,56.0,55.0,61.0,52.0,51.0,51.0,52.0,52.0,52.0,70.0,45.0,56.0,50.0,50.0,65.0,58.0,55.0,84.0,76.0,80.0,89.0,75.0,83.0,97.0,58.0,69.0,80.0,72.0,74.0,81.0,61.0,53.0,61.0,60.0,57.0,61.0,62.0,47.0,58.0,62.0,59.0,58.0,75.0,69.0,50.0,51.0,48.0,42.0,30.0,30.0,33.0,28.0,21.0,25.0,20.0,18.0,11.0,17.0,7.0,5.0,37.0 M83021,49.0,52.0,46.0,39.0,55.0,48.0,67.0,56.0,66.0,83.0,59.0,61.0,68.0,70.0,68.0,61.0,76.0,83.0,61.0,68.0,54.0,55.0,43.0,55.0,57.0,63.0,54.0,65.0,70.0,82.0,57.0,67.0,74.0,78.0,53.0,69.0,76.0,71.0,62.0,78.0,76.0,67.0,65.0,70.0,76.0,58.0,61.0,56.0,52.0,51.0,61.0,62.0,79.0,77.0,73.0,75.0,61.0,57.0,52.0,57.0,56.0,66.0,58.0,54.0,65.0,58.0,45.0,48.0,50.0,47.0,46.0,42.0,35.0,34.0,40.0,42.0,47.0,55.0,49.0,34.0,36.0,29.0,32.0,22.0,19.0,17.0,17.0,16.0,17.0,14.0,14.0,5.0,8.0,4.0,5.0,13.0 M83022,22.0,29.0,30.0,33.0,31.0,37.0,32.0,31.0,33.0,45.0,36.0,39.0,41.0,42.0,29.0,43.0,38.0,34.0,31.0,37.0,29.0,30.0,27.0,33.0,23.0,29.0,25.0,23.0,29.0,26.0,28.0,27.0,41.0,37.0,46.0,41.0,29.0,45.0,50.0,47.0,47.0,44.0,41.0,24.0,52.0,35.0,32.0,43.0,42.0,47.0,35.0,55.0,65.0,67.0,58.0,67.0,67.0,55.0,64.0,57.0,77.0,73.0,71.0,79.0,66.0,66.0,70.0,64.0,64.0,51.0,59.0,61.0,56.0,70.0,62.0,59.0,70.0,81.0,75.0,54.0,54.0,46.0,50.0,41.0,26.0,29.0,26.0,23.0,19.0,21.0,17.0,13.0,7.0,11.0,12.0,16.0 M83023,34.0,33.0,39.0,44.0,45.0,47.0,32.0,43.0,40.0,49.0,58.0,39.0,41.0,43.0,35.0,49.0,42.0,43.0,48.0,39.0,35.0,45.0,51.0,45.0,36.0,42.0,52.0,50.0,75.0,57.0,58.0,48.0,59.0,50.0,56.0,54.0,58.0,72.0,52.0,52.0,47.0,48.0,55.0,39.0,44.0,59.0,48.0,51.0,52.0,42.0,69.0,68.0,54.0,67.0,67.0,71.0,58.0,65.0,83.0,79.0,76.0,84.0,64.0,69.0,67.0,61.0,69.0,59.0,48.0,65.0,64.0,52.0,67.0,54.0,57.0,67.0,57.0,50.0,54.0,40.0,54.0,39.0,40.0,29.0,33.0,24.0,25.0,19.0,13.0,19.0,14.0,9.0,8.0,8.0,5.0,6.0 M83024,59.0,58.0,64.0,55.0,61.0,56.0,64.0,60.0,65.0,39.0,37.0,47.0,42.0,43.0,58.0,36.0,63.0,48.0,52.0,51.0,40.0,57.0,53.0,59.0,71.0,77.0,73.0,91.0,75.0,85.0,80.0,93.0,81.0,87.0,95.0,95.0,71.0,65.0,69.0,76.0,65.0,76.0,64.0,61.0,62.0,58.0,73.0,56.0,59.0,52.0,62.0,68.0,70.0,62.0,73.0,74.0,75.0,67.0,81.0,60.0,64.0,76.0,54.0,58.0,83.0,70.0,51.0,44.0,45.0,47.0,36.0,39.0,32.0,49.0,31.0,55.0,38.0,40.0,50.0,31.0,35.0,34.0,36.0,37.0,18.0,17.0,21.0,21.0,19.0,17.0,13.0,4.0,6.0,7.0,,10.0 M83025,17.0,13.0,16.0,29.0,16.0,27.0,24.0,19.0,20.0,27.0,24.0,21.0,30.0,33.0,22.0,18.0,22.0,21.0,21.0,29.0,34.0,31.0,22.0,23.0,42.0,22.0,29.0,35.0,41.0,35.0,44.0,54.0,31.0,43.0,36.0,43.0,35.0,25.0,41.0,45.0,27.0,37.0,31.0,30.0,31.0,27.0,38.0,20.0,20.0,24.0,37.0,29.0,37.0,39.0,41.0,36.0,54.0,57.0,61.0,42.0,50.0,43.0,55.0,44.0,30.0,39.0,51.0,35.0,42.0,34.0,34.0,42.0,37.0,31.0,33.0,29.0,41.0,36.0,40.0,28.0,34.0,23.0,31.0,19.0,22.0,28.0,19.0,21.0,17.0,16.0,13.0,4.0,8.0,8.0,5.0,11.0 M83026,100.0,131.0,124.0,153.0,119.0,125.0,157.0,152.0,150.0,133.0,139.0,137.0,129.0,119.0,130.0,118.0,103.0,130.0,103.0,96.0,117.0,100.0,101.0,96.0,99.0,116.0,126.0,135.0,174.0,147.0,152.0,150.0,158.0,190.0,194.0,180.0,184.0,169.0,148.0,171.0,135.0,128.0,119.0,111.0,132.0,133.0,105.0,98.0,97.0,101.0,90.0,82.0,100.0,75.0,89.0,79.0,86.0,89.0,82.0,88.0,82.0,84.0,69.0,70.0,70.0,74.0,70.0,59.0,65.0,39.0,49.0,49.0,45.0,35.0,49.0,49.0,46.0,47.0,46.0,42.0,37.0,26.0,36.0,29.0,21.0,31.0,19.0,23.0,11.0,12.0,9.0,18.0,7.0,7.0,10.0,23.0 M83027,39.0,51.0,45.0,62.0,39.0,68.0,47.0,44.0,56.0,54.0,52.0,65.0,59.0,58.0,67.0,70.0,60.0,66.0,60.0,46.0,48.0,47.0,45.0,40.0,52.0,63.0,61.0,56.0,62.0,45.0,60.0,82.0,65.0,88.0,75.0,70.0,90.0,78.0,80.0,76.0,71.0,70.0,70.0,75.0,76.0,79.0,80.0,68.0,65.0,67.0,70.0,55.0,70.0,97.0,85.0,85.0,89.0,78.0,86.0,90.0,77.0,89.0,88.0,66.0,67.0,57.0,57.0,79.0,63.0,54.0,59.0,61.0,47.0,41.0,48.0,50.0,45.0,58.0,56.0,39.0,38.0,37.0,37.0,27.0,20.0,20.0,23.0,17.0,16.0,11.0,6.0,11.0,12.0,6.0,8.0,10.0 M83028,56.0,60.0,58.0,76.0,56.0,63.0,72.0,63.0,65.0,72.0,75.0,81.0,73.0,77.0,84.0,66.0,60.0,75.0,71.0,65.0,63.0,57.0,49.0,44.0,53.0,54.0,64.0,56.0,88.0,69.0,81.0,88.0,85.0,79.0,83.0,103.0,101.0,94.0,94.0,93.0,80.0,78.0,61.0,75.0,77.0,61.0,88.0,55.0,61.0,53.0,48.0,70.0,64.0,87.0,67.0,74.0,60.0,73.0,71.0,61.0,73.0,67.0,79.0,61.0,69.0,58.0,46.0,55.0,61.0,44.0,51.0,57.0,40.0,37.0,46.0,55.0,46.0,52.0,52.0,44.0,31.0,35.0,27.0,27.0,26.0,18.0,21.0,19.0,17.0,11.0,14.0,6.0,10.0,8.0,3.0,9.0 M83030,39.0,50.0,55.0,50.0,61.0,53.0,62.0,61.0,70.0,64.0,77.0,57.0,77.0,87.0,71.0,77.0,61.0,74.0,71.0,68.0,55.0,65.0,58.0,70.0,76.0,72.0,53.0,62.0,73.0,76.0,66.0,91.0,75.0,80.0,93.0,89.0,82.0,83.0,92.0,75.0,91.0,92.0,77.0,84.0,80.0,90.0,88.0,84.0,78.0,110.0,85.0,94.0,108.0,108.0,108.0,101.0,87.0,95.0,111.0,102.0,93.0,83.0,85.0,85.0,70.0,110.0,69.0,67.0,85.0,83.0,68.0,73.0,69.0,65.0,58.0,72.0,69.0,79.0,93.0,59.0,75.0,61.0,68.0,60.0,45.0,38.0,42.0,31.0,29.0,22.0,19.0,17.0,16.0,13.0,6.0,20.0 M83031,20.0,22.0,29.0,29.0,30.0,29.0,31.0,29.0,31.0,37.0,40.0,30.0,35.0,44.0,30.0,42.0,29.0,24.0,32.0,21.0,22.0,18.0,28.0,26.0,22.0,26.0,23.0,31.0,24.0,23.0,23.0,30.0,34.0,33.0,35.0,28.0,33.0,34.0,40.0,29.0,38.0,30.0,41.0,46.0,38.0,42.0,34.0,33.0,26.0,38.0,35.0,32.0,44.0,52.0,47.0,47.0,40.0,45.0,51.0,54.0,39.0,40.0,53.0,54.0,55.0,35.0,43.0,47.0,54.0,45.0,47.0,42.0,45.0,38.0,41.0,47.0,52.0,47.0,55.0,45.0,37.0,54.0,40.0,29.0,27.0,31.0,29.0,24.0,33.0,21.0,20.0,6.0,9.0,14.0,11.0,14.0 M83032,57.0,70.0,67.0,78.0,72.0,76.0,79.0,60.0,73.0,75.0,77.0,66.0,79.0,85.0,73.0,76.0,93.0,70.0,71.0,56.0,73.0,52.0,70.0,72.0,82.0,86.0,87.0,88.0,94.0,86.0,101.0,96.0,98.0,116.0,111.0,98.0,96.0,96.0,94.0,70.0,84.0,84.0,89.0,81.0,102.0,74.0,79.0,84.0,65.0,86.0,97.0,114.0,110.0,110.0,104.0,106.0,106.0,86.0,106.0,109.0,112.0,106.0,112.0,72.0,92.0,87.0,69.0,86.0,78.0,76.0,83.0,66.0,65.0,61.0,59.0,64.0,70.0,67.0,90.0,65.0,49.0,53.0,49.0,38.0,34.0,35.0,20.0,28.0,20.0,20.0,10.0,11.0,16.0,6.0,8.0,11.0 M83033,20.0,34.0,47.0,43.0,42.0,37.0,48.0,29.0,25.0,43.0,34.0,44.0,41.0,39.0,38.0,22.0,34.0,29.0,34.0,21.0,29.0,27.0,31.0,27.0,33.0,38.0,46.0,56.0,63.0,68.0,55.0,79.0,62.0,48.0,58.0,60.0,62.0,51.0,50.0,48.0,51.0,43.0,45.0,44.0,53.0,49.0,46.0,29.0,35.0,29.0,29.0,46.0,47.0,43.0,41.0,40.0,49.0,40.0,49.0,39.0,46.0,50.0,31.0,42.0,41.0,28.0,37.0,29.0,36.0,22.0,38.0,33.0,41.0,32.0,25.0,28.0,36.0,36.0,29.0,32.0,23.0,23.0,22.0,27.0,14.0,8.0,14.0,16.0,13.0,6.0,9.0,8.0,8.0,5.0,5.0,15.0 M83034,39.0,52.0,54.0,61.0,64.0,55.0,57.0,69.0,76.0,58.0,64.0,77.0,85.0,49.0,71.0,67.0,82.0,72.0,58.0,66.0,75.0,67.0,65.0,62.0,56.0,54.0,55.0,74.0,66.0,78.0,63.0,81.0,66.0,71.0,77.0,99.0,69.0,89.0,88.0,94.0,84.0,71.0,94.0,72.0,85.0,80.0,60.0,57.0,68.0,57.0,70.0,81.0,87.0,86.0,86.0,78.0,80.0,72.0,85.0,75.0,67.0,61.0,74.0,87.0,74.0,79.0,75.0,58.0,71.0,82.0,57.0,69.0,59.0,51.0,74.0,53.0,60.0,68.0,69.0,57.0,50.0,45.0,54.0,36.0,37.0,33.0,32.0,31.0,41.0,21.0,18.0,18.0,22.0,14.0,5.0,25.0 M83035,36.0,33.0,34.0,38.0,46.0,45.0,37.0,33.0,40.0,42.0,36.0,32.0,37.0,46.0,46.0,50.0,40.0,40.0,42.0,29.0,33.0,30.0,28.0,37.0,26.0,36.0,31.0,35.0,44.0,40.0,38.0,57.0,53.0,67.0,47.0,52.0,54.0,45.0,37.0,47.0,43.0,41.0,43.0,32.0,52.0,52.0,36.0,38.0,50.0,49.0,46.0,42.0,40.0,64.0,49.0,59.0,47.0,66.0,62.0,72.0,61.0,53.0,66.0,68.0,56.0,46.0,59.0,42.0,53.0,46.0,38.0,46.0,56.0,40.0,34.0,48.0,43.0,39.0,36.0,37.0,50.0,33.0,29.0,18.0,33.0,33.0,18.0,16.0,14.0,19.0,6.0,7.0,7.0,5.0,7.0,11.0 M83036,34.0,22.0,43.0,40.0,53.0,40.0,50.0,47.0,61.0,54.0,62.0,61.0,65.0,70.0,57.0,65.0,63.0,57.0,41.0,50.0,45.0,41.0,36.0,41.0,45.0,56.0,44.0,49.0,60.0,50.0,74.0,64.0,74.0,54.0,66.0,59.0,71.0,65.0,62.0,61.0,74.0,39.0,51.0,59.0,60.0,57.0,55.0,50.0,54.0,43.0,61.0,47.0,49.0,44.0,75.0,57.0,67.0,65.0,69.0,67.0,60.0,60.0,63.0,53.0,59.0,40.0,41.0,52.0,58.0,45.0,46.0,38.0,36.0,46.0,45.0,40.0,51.0,61.0,38.0,35.0,43.0,41.0,34.0,18.0,20.0,17.0,22.0,17.0,15.0,10.0,13.0,10.0,6.0,5.0,9.0,11.0 M83037,28.0,30.0,30.0,41.0,32.0,41.0,49.0,36.0,42.0,35.0,50.0,48.0,51.0,47.0,60.0,52.0,57.0,41.0,43.0,37.0,51.0,30.0,25.0,36.0,47.0,33.0,29.0,30.0,32.0,50.0,61.0,47.0,52.0,53.0,45.0,56.0,49.0,45.0,52.0,51.0,58.0,42.0,56.0,40.0,58.0,56.0,59.0,43.0,59.0,75.0,53.0,65.0,58.0,70.0,75.0,62.0,77.0,63.0,65.0,61.0,66.0,74.0,64.0,69.0,63.0,63.0,64.0,56.0,49.0,50.0,52.0,56.0,61.0,33.0,42.0,47.0,48.0,54.0,70.0,42.0,25.0,40.0,41.0,20.0,29.0,31.0,29.0,24.0,14.0,19.0,10.0,9.0,9.0,7.0,1.0,19.0 M83038,36.0,38.0,43.0,50.0,43.0,57.0,64.0,40.0,55.0,67.0,56.0,66.0,62.0,63.0,67.0,60.0,72.0,61.0,60.0,46.0,57.0,54.0,34.0,44.0,48.0,40.0,61.0,36.0,61.0,53.0,55.0,54.0,72.0,61.0,63.0,64.0,64.0,72.0,72.0,66.0,64.0,49.0,59.0,58.0,67.0,57.0,50.0,48.0,48.0,53.0,61.0,72.0,49.0,58.0,73.0,74.0,90.0,84.0,74.0,94.0,69.0,70.0,72.0,81.0,81.0,66.0,78.0,63.0,58.0,56.0,62.0,44.0,58.0,60.0,54.0,72.0,47.0,56.0,71.0,43.0,44.0,37.0,51.0,34.0,30.0,38.0,38.0,30.0,26.0,27.0,24.0,16.0,12.0,18.0,11.0,31.0 M83042,34.0,31.0,42.0,39.0,46.0,42.0,39.0,44.0,49.0,36.0,49.0,60.0,60.0,45.0,65.0,55.0,45.0,53.0,51.0,54.0,38.0,36.0,30.0,44.0,52.0,44.0,51.0,52.0,55.0,42.0,55.0,70.0,52.0,72.0,68.0,70.0,55.0,51.0,52.0,59.0,51.0,60.0,50.0,63.0,53.0,51.0,41.0,50.0,47.0,51.0,50.0,55.0,66.0,69.0,62.0,60.0,94.0,77.0,101.0,105.0,94.0,76.0,91.0,70.0,85.0,76.0,64.0,92.0,68.0,64.0,72.0,62.0,68.0,59.0,72.0,58.0,56.0,60.0,69.0,47.0,56.0,45.0,46.0,38.0,35.0,44.0,33.0,25.0,24.0,21.0,15.0,13.0,16.0,12.0,9.0,18.0 M83044,53.0,76.0,78.0,65.0,82.0,63.0,89.0,71.0,71.0,70.0,70.0,59.0,74.0,64.0,72.0,78.0,74.0,78.0,61.0,45.0,62.0,61.0,57.0,71.0,68.0,79.0,92.0,95.0,99.0,105.0,121.0,125.0,146.0,128.0,115.0,135.0,100.0,130.0,100.0,106.0,92.0,84.0,91.0,84.0,91.0,74.0,74.0,83.0,73.0,71.0,61.0,66.0,69.0,72.0,88.0,93.0,71.0,82.0,88.0,93.0,80.0,81.0,68.0,83.0,67.0,84.0,69.0,71.0,69.0,55.0,53.0,51.0,60.0,40.0,55.0,51.0,73.0,56.0,54.0,48.0,41.0,45.0,57.0,47.0,27.0,35.0,35.0,37.0,20.0,19.0,7.0,9.0,13.0,7.0,8.0,20.0 M83045,34.0,29.0,45.0,51.0,44.0,56.0,60.0,52.0,43.0,46.0,52.0,64.0,46.0,62.0,44.0,53.0,53.0,49.0,57.0,50.0,45.0,48.0,43.0,51.0,45.0,46.0,64.0,47.0,61.0,59.0,61.0,51.0,60.0,59.0,68.0,56.0,66.0,67.0,54.0,65.0,50.0,70.0,62.0,54.0,64.0,53.0,66.0,68.0,64.0,62.0,84.0,62.0,81.0,85.0,91.0,60.0,65.0,76.0,86.0,84.0,84.0,81.0,81.0,77.0,72.0,67.0,90.0,70.0,62.0,62.0,59.0,75.0,66.0,83.0,68.0,86.0,91.0,76.0,73.0,65.0,60.0,67.0,59.0,35.0,42.0,32.0,31.0,18.0,25.0,17.0,22.0,8.0,9.0,3.0,7.0,15.0 M83046,34.0,37.0,42.0,38.0,45.0,32.0,28.0,55.0,48.0,41.0,46.0,55.0,48.0,64.0,53.0,49.0,47.0,53.0,43.0,33.0,46.0,32.0,43.0,35.0,41.0,51.0,35.0,49.0,50.0,49.0,45.0,51.0,55.0,69.0,64.0,63.0,55.0,61.0,54.0,63.0,59.0,47.0,42.0,66.0,49.0,53.0,47.0,52.0,58.0,47.0,58.0,67.0,76.0,77.0,72.0,75.0,78.0,83.0,76.0,80.0,91.0,67.0,63.0,89.0,79.0,71.0,59.0,73.0,70.0,65.0,55.0,73.0,66.0,65.0,58.0,69.0,64.0,80.0,86.0,47.0,57.0,53.0,36.0,42.0,28.0,22.0,34.0,27.0,27.0,25.0,16.0,11.0,9.0,8.0,6.0,15.0 M83047,22.0,36.0,32.0,30.0,27.0,41.0,37.0,45.0,39.0,45.0,39.0,35.0,43.0,49.0,31.0,36.0,41.0,27.0,38.0,31.0,25.0,24.0,37.0,31.0,25.0,33.0,38.0,46.0,31.0,48.0,38.0,53.0,54.0,43.0,46.0,31.0,52.0,48.0,53.0,40.0,37.0,56.0,28.0,44.0,33.0,34.0,30.0,34.0,36.0,35.0,41.0,28.0,57.0,49.0,46.0,39.0,37.0,46.0,46.0,51.0,44.0,52.0,47.0,49.0,31.0,39.0,42.0,42.0,35.0,35.0,34.0,37.0,29.0,33.0,32.0,37.0,33.0,34.0,37.0,19.0,28.0,26.0,24.0,19.0,17.0,15.0,14.0,10.0,12.0,10.0,9.0,5.0,2.0,4.0,1.0,6.0 M83048,35.0,39.0,41.0,54.0,45.0,61.0,51.0,58.0,59.0,59.0,65.0,52.0,73.0,49.0,48.0,45.0,62.0,50.0,56.0,50.0,39.0,42.0,43.0,45.0,51.0,54.0,53.0,53.0,63.0,48.0,43.0,51.0,77.0,79.0,79.0,67.0,74.0,57.0,77.0,67.0,77.0,74.0,66.0,70.0,65.0,60.0,55.0,54.0,41.0,61.0,60.0,61.0,70.0,79.0,84.0,63.0,74.0,61.0,70.0,50.0,68.0,70.0,80.0,67.0,65.0,42.0,55.0,56.0,41.0,65.0,51.0,51.0,56.0,47.0,50.0,61.0,50.0,50.0,55.0,46.0,38.0,39.0,35.0,29.0,28.0,14.0,21.0,15.0,18.0,10.0,11.0,7.0,6.0,10.0,1.0,14.0 M83049,34.0,44.0,40.0,37.0,48.0,59.0,49.0,59.0,55.0,47.0,50.0,52.0,53.0,48.0,55.0,46.0,69.0,65.0,52.0,57.0,44.0,47.0,39.0,41.0,35.0,48.0,51.0,55.0,23.0,51.0,66.0,41.0,70.0,54.0,82.0,62.0,60.0,62.0,62.0,53.0,59.0,60.0,75.0,56.0,76.0,65.0,66.0,43.0,50.0,49.0,52.0,59.0,66.0,51.0,59.0,73.0,61.0,60.0,72.0,49.0,72.0,60.0,67.0,55.0,53.0,64.0,56.0,48.0,45.0,43.0,52.0,52.0,29.0,54.0,39.0,50.0,51.0,44.0,66.0,46.0,46.0,40.0,50.0,37.0,35.0,19.0,32.0,25.0,14.0,12.0,11.0,16.0,10.0,7.0,6.0,21.0 M83050,45.0,43.0,35.0,37.0,40.0,50.0,54.0,43.0,53.0,53.0,42.0,48.0,60.0,54.0,56.0,65.0,47.0,56.0,44.0,39.0,45.0,39.0,40.0,59.0,46.0,45.0,80.0,56.0,67.0,82.0,63.0,75.0,71.0,65.0,62.0,74.0,77.0,80.0,67.0,64.0,63.0,57.0,68.0,60.0,70.0,51.0,61.0,50.0,51.0,52.0,59.0,61.0,59.0,60.0,58.0,52.0,72.0,60.0,55.0,70.0,68.0,61.0,69.0,79.0,55.0,52.0,60.0,52.0,59.0,61.0,51.0,57.0,56.0,39.0,47.0,44.0,45.0,55.0,55.0,38.0,53.0,47.0,40.0,30.0,37.0,20.0,34.0,24.0,17.0,23.0,17.0,11.0,9.0,6.0,6.0,21.0 M83051,59.0,50.0,61.0,62.0,71.0,61.0,59.0,71.0,70.0,67.0,69.0,70.0,65.0,67.0,60.0,58.0,81.0,61.0,50.0,54.0,56.0,55.0,52.0,56.0,68.0,71.0,74.0,71.0,105.0,84.0,100.0,92.0,113.0,107.0,100.0,101.0,103.0,93.0,79.0,91.0,87.0,79.0,81.0,65.0,72.0,76.0,84.0,66.0,56.0,58.0,76.0,71.0,67.0,84.0,82.0,76.0,96.0,98.0,88.0,88.0,90.0,66.0,91.0,90.0,80.0,65.0,80.0,60.0,54.0,73.0,50.0,55.0,49.0,51.0,57.0,41.0,52.0,66.0,61.0,48.0,53.0,43.0,42.0,47.0,30.0,26.0,27.0,18.0,22.0,16.0,12.0,14.0,14.0,6.0,8.0,10.0 M83052,87.0,98.0,113.0,108.0,113.0,119.0,119.0,119.0,139.0,140.0,147.0,135.0,146.0,123.0,151.0,139.0,130.0,132.0,118.0,115.0,105.0,79.0,90.0,96.0,107.0,127.0,103.0,99.0,125.0,114.0,129.0,147.0,146.0,161.0,160.0,133.0,158.0,183.0,154.0,148.0,163.0,175.0,166.0,168.0,168.0,165.0,130.0,122.0,134.0,133.0,112.0,135.0,123.0,142.0,151.0,138.0,148.0,143.0,139.0,126.0,128.0,144.0,133.0,118.0,113.0,133.0,112.0,96.0,108.0,100.0,88.0,110.0,105.0,101.0,91.0,98.0,124.0,116.0,95.0,66.0,65.0,78.0,74.0,59.0,53.0,77.0,47.0,46.0,41.0,42.0,28.0,19.0,12.0,14.0,11.0,25.0 M83054,45.0,32.0,54.0,38.0,49.0,44.0,41.0,59.0,49.0,51.0,58.0,46.0,53.0,47.0,53.0,48.0,56.0,56.0,53.0,54.0,32.0,41.0,39.0,45.0,54.0,58.0,67.0,64.0,67.0,71.0,55.0,60.0,62.0,58.0,67.0,66.0,59.0,59.0,74.0,72.0,62.0,62.0,73.0,62.0,63.0,75.0,72.0,52.0,69.0,64.0,53.0,70.0,66.0,94.0,74.0,86.0,82.0,67.0,89.0,84.0,81.0,80.0,74.0,88.0,70.0,74.0,79.0,67.0,58.0,54.0,56.0,62.0,68.0,55.0,53.0,63.0,51.0,66.0,51.0,37.0,34.0,42.0,34.0,30.0,25.0,20.0,29.0,13.0,21.0,19.0,18.0,11.0,17.0,11.0,6.0,8.0 M83056,44.0,38.0,52.0,42.0,43.0,43.0,57.0,43.0,42.0,68.0,47.0,67.0,53.0,74.0,55.0,61.0,65.0,49.0,49.0,63.0,45.0,42.0,50.0,42.0,37.0,55.0,58.0,65.0,59.0,44.0,62.0,63.0,83.0,75.0,75.0,74.0,77.0,64.0,75.0,65.0,87.0,54.0,75.0,69.0,80.0,82.0,72.0,79.0,66.0,78.0,79.0,73.0,77.0,83.0,83.0,62.0,89.0,81.0,78.0,77.0,78.0,66.0,71.0,68.0,77.0,82.0,65.0,64.0,59.0,65.0,76.0,53.0,64.0,56.0,67.0,72.0,68.0,80.0,79.0,41.0,53.0,55.0,41.0,40.0,36.0,35.0,35.0,39.0,27.0,22.0,16.0,17.0,18.0,6.0,6.0,16.0 M83057,36.0,33.0,53.0,60.0,50.0,61.0,69.0,57.0,62.0,50.0,63.0,64.0,49.0,42.0,56.0,52.0,60.0,68.0,63.0,44.0,49.0,39.0,53.0,50.0,53.0,58.0,63.0,61.0,72.0,68.0,86.0,75.0,68.0,77.0,74.0,71.0,74.0,79.0,70.0,74.0,64.0,74.0,67.0,84.0,68.0,69.0,62.0,66.0,67.0,58.0,59.0,71.0,59.0,80.0,76.0,67.0,79.0,66.0,90.0,61.0,73.0,75.0,62.0,61.0,63.0,50.0,60.0,62.0,50.0,39.0,44.0,51.0,62.0,60.0,54.0,56.0,53.0,47.0,44.0,48.0,56.0,46.0,38.0,35.0,31.0,32.0,26.0,19.0,25.0,17.0,17.0,12.0,12.0,7.0,10.0,22.0 M83059,8.0,11.0,11.0,14.0,12.0,18.0,9.0,9.0,24.0,12.0,11.0,23.0,16.0,20.0,18.0,18.0,28.0,22.0,16.0,10.0,12.0,14.0,22.0,17.0,16.0,15.0,15.0,13.0,11.0,15.0,15.0,14.0,12.0,16.0,19.0,21.0,21.0,17.0,19.0,20.0,22.0,18.0,15.0,20.0,16.0,20.0,15.0,16.0,20.0,19.0,32.0,31.0,25.0,33.0,42.0,40.0,47.0,45.0,27.0,34.0,25.0,34.0,25.0,32.0,25.0,31.0,25.0,31.0,21.0,24.0,33.0,27.0,22.0,35.0,26.0,31.0,28.0,27.0,33.0,20.0,23.0,28.0,20.0,18.0,12.0,12.0,7.0,12.0,3.0,3.0,4.0,7.0,4.0,2.0,5.0,5.0 M83061,21.0,27.0,28.0,41.0,28.0,40.0,36.0,40.0,30.0,39.0,40.0,40.0,60.0,47.0,51.0,42.0,51.0,47.0,54.0,37.0,30.0,37.0,33.0,32.0,41.0,44.0,37.0,38.0,36.0,35.0,48.0,37.0,45.0,48.0,52.0,55.0,48.0,50.0,39.0,49.0,56.0,43.0,34.0,43.0,49.0,45.0,49.0,40.0,44.0,52.0,45.0,48.0,46.0,60.0,64.0,49.0,57.0,61.0,49.0,68.0,69.0,56.0,65.0,56.0,51.0,54.0,56.0,53.0,48.0,38.0,39.0,51.0,37.0,35.0,43.0,58.0,69.0,56.0,54.0,31.0,51.0,53.0,41.0,36.0,28.0,31.0,25.0,25.0,23.0,18.0,15.0,10.0,6.0,4.0,6.0,14.0 M83062,53.0,39.0,58.0,50.0,67.0,50.0,59.0,50.0,73.0,75.0,61.0,64.0,70.0,54.0,72.0,68.0,65.0,62.0,72.0,55.0,55.0,50.0,61.0,65.0,75.0,77.0,67.0,95.0,74.0,77.0,69.0,76.0,83.0,85.0,87.0,84.0,96.0,86.0,93.0,69.0,75.0,73.0,79.0,84.0,78.0,85.0,76.0,69.0,52.0,68.0,63.0,71.0,74.0,82.0,106.0,106.0,99.0,92.0,95.0,91.0,87.0,87.0,95.0,92.0,74.0,57.0,74.0,79.0,71.0,77.0,71.0,62.0,81.0,70.0,57.0,75.0,76.0,81.0,81.0,66.0,66.0,63.0,59.0,39.0,51.0,54.0,27.0,28.0,20.0,23.0,25.0,18.0,12.0,15.0,5.0,20.0 M83063,21.0,17.0,20.0,15.0,18.0,20.0,28.0,24.0,18.0,22.0,22.0,31.0,29.0,22.0,31.0,28.0,17.0,34.0,21.0,21.0,17.0,22.0,13.0,10.0,20.0,22.0,21.0,24.0,24.0,29.0,25.0,31.0,28.0,34.0,30.0,26.0,28.0,31.0,26.0,32.0,27.0,27.0,32.0,36.0,26.0,32.0,23.0,24.0,20.0,19.0,23.0,34.0,33.0,25.0,30.0,24.0,25.0,21.0,19.0,27.0,30.0,33.0,27.0,26.0,26.0,19.0,26.0,30.0,18.0,16.0,18.0,18.0,13.0,16.0,18.0,15.0,11.0,16.0,14.0,12.0,7.0,11.0,15.0,8.0,8.0,4.0,6.0,5.0,2.0,,3.0,3.0,7.0,,,2.0 M83065,27.0,17.0,27.0,33.0,33.0,30.0,31.0,33.0,32.0,39.0,41.0,34.0,45.0,40.0,41.0,56.0,57.0,37.0,41.0,30.0,28.0,27.0,34.0,28.0,30.0,29.0,19.0,31.0,34.0,24.0,25.0,33.0,21.0,32.0,34.0,37.0,23.0,40.0,39.0,37.0,42.0,50.0,42.0,48.0,42.0,55.0,43.0,45.0,50.0,53.0,60.0,57.0,59.0,60.0,55.0,61.0,61.0,52.0,82.0,59.0,72.0,54.0,60.0,57.0,58.0,44.0,49.0,41.0,52.0,48.0,47.0,47.0,52.0,43.0,45.0,62.0,45.0,46.0,58.0,41.0,46.0,47.0,36.0,27.0,23.0,18.0,24.0,12.0,18.0,16.0,9.0,7.0,4.0,7.0,5.0,12.0 M83066,41.0,43.0,33.0,44.0,32.0,42.0,64.0,44.0,44.0,46.0,47.0,43.0,42.0,44.0,49.0,44.0,44.0,44.0,34.0,37.0,28.0,36.0,37.0,32.0,44.0,44.0,51.0,71.0,68.0,75.0,57.0,80.0,73.0,76.0,77.0,73.0,71.0,67.0,63.0,75.0,63.0,55.0,55.0,43.0,51.0,49.0,62.0,47.0,40.0,51.0,46.0,56.0,48.0,50.0,42.0,47.0,44.0,67.0,38.0,43.0,58.0,42.0,56.0,40.0,55.0,48.0,30.0,32.0,44.0,35.0,31.0,37.0,33.0,29.0,38.0,34.0,41.0,33.0,30.0,29.0,35.0,28.0,18.0,17.0,12.0,23.0,10.0,23.0,12.0,8.0,5.0,5.0,3.0,2.0,2.0,9.0 M83067,43.0,46.0,31.0,44.0,32.0,40.0,27.0,51.0,43.0,35.0,31.0,33.0,43.0,39.0,45.0,31.0,35.0,49.0,52.0,56.0,65.0,55.0,47.0,51.0,45.0,47.0,54.0,58.0,48.0,49.0,56.0,61.0,71.0,50.0,57.0,56.0,78.0,48.0,65.0,57.0,54.0,62.0,45.0,43.0,41.0,52.0,32.0,49.0,63.0,45.0,50.0,46.0,40.0,39.0,54.0,45.0,61.0,45.0,49.0,45.0,46.0,46.0,40.0,58.0,41.0,53.0,45.0,38.0,28.0,44.0,39.0,31.0,36.0,30.0,26.0,27.0,28.0,37.0,16.0,15.0,29.0,15.0,24.0,18.0,19.0,13.0,16.0,12.0,28.0,9.0,13.0,16.0,10.0,5.0,7.0,13.0 M83068,75.0,84.0,80.0,94.0,79.0,94.0,104.0,90.0,90.0,84.0,121.0,121.0,100.0,101.0,97.0,104.0,105.0,101.0,92.0,89.0,86.0,94.0,87.0,73.0,100.0,91.0,95.0,83.0,95.0,97.0,100.0,93.0,97.0,97.0,104.0,115.0,106.0,106.0,102.0,96.0,100.0,88.0,82.0,91.0,94.0,98.0,86.0,82.0,89.0,84.0,75.0,86.0,91.0,105.0,113.0,109.0,115.0,99.0,88.0,117.0,115.0,78.0,80.0,78.0,78.0,73.0,74.0,73.0,73.0,52.0,65.0,63.0,62.0,50.0,49.0,70.0,65.0,61.0,89.0,44.0,54.0,56.0,45.0,36.0,24.0,15.0,24.0,24.0,22.0,14.0,15.0,5.0,6.0,2.0,5.0,8.0 M83069,58.0,77.0,69.0,68.0,68.0,87.0,69.0,96.0,90.0,66.0,81.0,81.0,86.0,84.0,96.0,70.0,99.0,96.0,70.0,53.0,70.0,58.0,58.0,66.0,76.0,64.0,79.0,84.0,85.0,97.0,82.0,110.0,104.0,111.0,88.0,113.0,115.0,109.0,97.0,116.0,101.0,85.0,105.0,78.0,103.0,96.0,87.0,83.0,85.0,89.0,103.0,98.0,117.0,112.0,120.0,108.0,111.0,113.0,136.0,127.0,133.0,122.0,123.0,90.0,103.0,110.0,116.0,107.0,99.0,88.0,99.0,75.0,83.0,95.0,78.0,96.0,85.0,78.0,105.0,85.0,104.0,90.0,59.0,50.0,55.0,51.0,43.0,34.0,28.0,40.0,15.0,26.0,16.0,18.0,15.0,28.0 M83070,29.0,17.0,20.0,40.0,25.0,26.0,32.0,30.0,29.0,40.0,34.0,26.0,37.0,34.0,29.0,46.0,40.0,41.0,35.0,31.0,33.0,32.0,27.0,40.0,38.0,35.0,40.0,40.0,38.0,26.0,37.0,42.0,45.0,46.0,44.0,54.0,45.0,33.0,52.0,48.0,32.0,47.0,53.0,40.0,43.0,51.0,39.0,31.0,38.0,47.0,45.0,48.0,53.0,77.0,78.0,53.0,60.0,76.0,70.0,74.0,73.0,76.0,69.0,58.0,62.0,59.0,58.0,66.0,48.0,51.0,43.0,59.0,55.0,52.0,49.0,53.0,58.0,67.0,53.0,41.0,52.0,41.0,36.0,43.0,25.0,29.0,13.0,17.0,9.0,9.0,19.0,8.0,7.0,5.0,4.0,15.0 M83071,30.0,32.0,40.0,31.0,48.0,56.0,67.0,53.0,74.0,66.0,45.0,56.0,63.0,63.0,69.0,57.0,51.0,66.0,56.0,62.0,48.0,65.0,47.0,54.0,44.0,55.0,45.0,54.0,56.0,64.0,60.0,66.0,62.0,56.0,81.0,65.0,60.0,80.0,66.0,66.0,72.0,66.0,69.0,61.0,76.0,63.0,77.0,55.0,61.0,69.0,75.0,58.0,75.0,84.0,85.0,89.0,101.0,82.0,92.0,83.0,87.0,99.0,69.0,80.0,100.0,85.0,87.0,64.0,85.0,76.0,64.0,70.0,61.0,71.0,54.0,82.0,82.0,81.0,69.0,74.0,55.0,43.0,53.0,41.0,41.0,27.0,38.0,26.0,33.0,23.0,24.0,24.0,14.0,11.0,11.0,23.0 M83072,39.0,39.0,42.0,47.0,44.0,46.0,47.0,60.0,59.0,54.0,47.0,49.0,61.0,64.0,67.0,39.0,59.0,49.0,54.0,46.0,41.0,41.0,51.0,47.0,56.0,46.0,59.0,65.0,64.0,64.0,74.0,52.0,57.0,79.0,56.0,58.0,70.0,61.0,60.0,67.0,69.0,66.0,77.0,62.0,57.0,72.0,63.0,55.0,68.0,49.0,66.0,61.0,72.0,71.0,83.0,88.0,79.0,97.0,106.0,105.0,87.0,85.0,73.0,78.0,82.0,71.0,70.0,88.0,73.0,84.0,85.0,98.0,76.0,90.0,73.0,74.0,67.0,97.0,83.0,70.0,82.0,60.0,77.0,58.0,50.0,31.0,31.0,35.0,33.0,21.0,21.0,15.0,13.0,7.0,4.0,23.0 M83073,40.0,49.0,42.0,47.0,45.0,57.0,64.0,42.0,47.0,60.0,49.0,60.0,47.0,54.0,53.0,56.0,57.0,54.0,42.0,40.0,50.0,53.0,42.0,54.0,44.0,39.0,46.0,46.0,59.0,49.0,59.0,65.0,61.0,66.0,69.0,63.0,67.0,54.0,60.0,62.0,67.0,61.0,52.0,54.0,48.0,54.0,48.0,46.0,43.0,66.0,48.0,55.0,66.0,66.0,65.0,55.0,68.0,84.0,69.0,67.0,59.0,58.0,56.0,68.0,56.0,43.0,53.0,48.0,55.0,41.0,45.0,43.0,48.0,44.0,45.0,52.0,44.0,36.0,49.0,39.0,30.0,44.0,27.0,29.0,30.0,21.0,27.0,15.0,18.0,14.0,13.0,6.0,13.0,7.0,7.0,7.0 M83074,39.0,49.0,58.0,66.0,60.0,78.0,68.0,74.0,71.0,70.0,56.0,72.0,71.0,84.0,83.0,77.0,76.0,85.0,92.0,73.0,70.0,62.0,69.0,80.0,84.0,57.0,67.0,84.0,85.0,87.0,98.0,91.0,84.0,101.0,86.0,85.0,107.0,89.0,90.0,70.0,81.0,67.0,77.0,81.0,82.0,74.0,76.0,81.0,84.0,66.0,95.0,92.0,105.0,102.0,102.0,103.0,107.0,125.0,106.0,131.0,118.0,130.0,120.0,107.0,97.0,91.0,90.0,92.0,81.0,70.0,75.0,88.0,72.0,54.0,56.0,81.0,66.0,77.0,94.0,58.0,73.0,54.0,50.0,46.0,42.0,31.0,24.0,23.0,30.0,29.0,20.0,15.0,17.0,10.0,10.0,20.0 M83075,134.0,130.0,112.0,130.0,128.0,120.0,133.0,135.0,133.0,139.0,140.0,124.0,119.0,140.0,140.0,107.0,141.0,127.0,139.0,174.0,196.0,157.0,175.0,153.0,181.0,178.0,180.0,188.0,189.0,239.0,184.0,187.0,161.0,152.0,162.0,141.0,144.0,164.0,143.0,141.0,150.0,122.0,134.0,127.0,135.0,107.0,98.0,94.0,96.0,81.0,70.0,82.0,79.0,82.0,77.0,74.0,70.0,60.0,73.0,59.0,71.0,58.0,56.0,53.0,50.0,58.0,50.0,37.0,48.0,39.0,52.0,48.0,39.0,26.0,36.0,25.0,45.0,41.0,31.0,26.0,22.0,24.0,31.0,18.0,26.0,16.0,15.0,23.0,17.0,4.0,10.0,5.0,4.0,7.0,2.0,7.0 M83076,27.0,34.0,33.0,44.0,36.0,22.0,24.0,28.0,26.0,22.0,34.0,29.0,33.0,36.0,32.0,33.0,42.0,36.0,43.0,67.0,91.0,97.0,95.0,98.0,100.0,73.0,91.0,89.0,95.0,96.0,99.0,64.0,64.0,72.0,54.0,57.0,56.0,58.0,47.0,48.0,42.0,43.0,39.0,42.0,44.0,35.0,23.0,36.0,24.0,28.0,32.0,35.0,30.0,39.0,41.0,32.0,31.0,27.0,38.0,39.0,40.0,28.0,37.0,31.0,35.0,32.0,29.0,26.0,28.0,22.0,29.0,25.0,24.0,20.0,30.0,16.0,16.0,26.0,19.0,18.0,22.0,16.0,14.0,16.0,15.0,14.0,15.0,8.0,7.0,8.0,5.0,5.0,8.0,6.0,6.0,11.0 M83079,32.0,44.0,32.0,39.0,51.0,48.0,56.0,37.0,39.0,44.0,51.0,46.0,46.0,46.0,51.0,44.0,39.0,56.0,48.0,52.0,53.0,56.0,49.0,36.0,36.0,49.0,47.0,51.0,49.0,56.0,67.0,53.0,48.0,58.0,63.0,49.0,58.0,48.0,63.0,57.0,57.0,57.0,55.0,58.0,56.0,54.0,62.0,55.0,46.0,65.0,59.0,51.0,64.0,66.0,94.0,69.0,72.0,105.0,74.0,83.0,89.0,60.0,53.0,67.0,60.0,49.0,56.0,61.0,64.0,54.0,42.0,59.0,53.0,48.0,60.0,68.0,62.0,64.0,57.0,44.0,39.0,50.0,34.0,40.0,26.0,31.0,27.0,24.0,14.0,15.0,21.0,15.0,8.0,15.0,13.0,29.0 M83084,20.0,24.0,29.0,35.0,35.0,25.0,32.0,29.0,19.0,26.0,25.0,34.0,26.0,39.0,31.0,40.0,38.0,43.0,35.0,21.0,40.0,38.0,17.0,38.0,28.0,22.0,45.0,40.0,40.0,35.0,39.0,23.0,35.0,47.0,56.0,51.0,39.0,29.0,31.0,36.0,41.0,34.0,34.0,40.0,46.0,33.0,37.0,40.0,35.0,39.0,40.0,43.0,55.0,49.0,43.0,53.0,43.0,42.0,64.0,44.0,54.0,45.0,47.0,36.0,52.0,37.0,41.0,43.0,48.0,49.0,41.0,39.0,36.0,40.0,43.0,37.0,50.0,47.0,45.0,37.0,53.0,34.0,32.0,29.0,22.0,22.0,16.0,12.0,17.0,11.0,12.0,10.0,7.0,8.0,5.0,3.0 M83088,63.0,60.0,68.0,68.0,68.0,65.0,65.0,71.0,76.0,57.0,59.0,80.0,71.0,80.0,59.0,68.0,83.0,55.0,68.0,61.0,53.0,72.0,66.0,67.0,84.0,77.0,72.0,85.0,92.0,94.0,93.0,107.0,116.0,115.0,106.0,96.0,103.0,112.0,92.0,89.0,93.0,96.0,62.0,100.0,88.0,85.0,66.0,71.0,88.0,98.0,89.0,88.0,97.0,110.0,122.0,116.0,124.0,113.0,103.0,123.0,122.0,108.0,110.0,87.0,116.0,119.0,98.0,91.0,93.0,97.0,76.0,110.0,84.0,79.0,81.0,97.0,81.0,92.0,108.0,78.0,84.0,69.0,66.0,44.0,45.0,47.0,55.0,45.0,29.0,24.0,25.0,21.0,13.0,4.0,8.0,24.0 M83089,36.0,42.0,34.0,33.0,45.0,54.0,55.0,55.0,52.0,45.0,50.0,60.0,58.0,55.0,49.0,78.0,66.0,60.0,63.0,61.0,47.0,37.0,59.0,49.0,46.0,50.0,39.0,43.0,53.0,46.0,51.0,52.0,55.0,65.0,61.0,51.0,68.0,66.0,67.0,57.0,52.0,65.0,74.0,46.0,65.0,66.0,44.0,53.0,60.0,59.0,74.0,65.0,68.0,76.0,68.0,85.0,85.0,81.0,81.0,93.0,79.0,81.0,81.0,65.0,65.0,74.0,67.0,83.0,68.0,81.0,64.0,78.0,64.0,71.0,81.0,88.0,75.0,65.0,82.0,67.0,66.0,53.0,51.0,41.0,45.0,35.0,36.0,32.0,28.0,25.0,14.0,7.0,17.0,10.0,7.0,16.0 M83090,21.0,25.0,28.0,21.0,27.0,36.0,19.0,24.0,22.0,19.0,25.0,29.0,25.0,21.0,24.0,26.0,26.0,23.0,23.0,25.0,24.0,27.0,27.0,22.0,29.0,29.0,43.0,23.0,33.0,37.0,34.0,25.0,32.0,32.0,40.0,33.0,22.0,37.0,31.0,29.0,20.0,21.0,24.0,31.0,24.0,28.0,24.0,20.0,20.0,30.0,27.0,27.0,27.0,25.0,36.0,36.0,34.0,32.0,28.0,33.0,44.0,38.0,31.0,39.0,27.0,22.0,29.0,36.0,33.0,34.0,27.0,33.0,30.0,25.0,28.0,22.0,35.0,37.0,49.0,26.0,24.0,25.0,24.0,19.0,18.0,13.0,14.0,17.0,12.0,2.0,2.0,4.0,5.0,3.0,5.0,10.0 M83092,32.0,25.0,39.0,37.0,39.0,28.0,48.0,47.0,31.0,48.0,44.0,35.0,42.0,26.0,42.0,43.0,47.0,35.0,36.0,32.0,27.0,26.0,29.0,46.0,31.0,28.0,35.0,32.0,30.0,25.0,37.0,40.0,55.0,48.0,57.0,54.0,47.0,55.0,46.0,34.0,47.0,62.0,35.0,42.0,51.0,60.0,45.0,44.0,40.0,49.0,72.0,54.0,58.0,46.0,74.0,72.0,74.0,77.0,90.0,84.0,87.0,82.0,61.0,71.0,78.0,63.0,55.0,72.0,61.0,52.0,71.0,63.0,59.0,52.0,56.0,46.0,55.0,64.0,66.0,44.0,63.0,54.0,40.0,33.0,39.0,26.0,29.0,15.0,26.0,11.0,9.0,11.0,4.0,4.0,5.0,15.0 M83093,22.0,18.0,30.0,29.0,26.0,28.0,39.0,40.0,36.0,31.0,41.0,38.0,40.0,37.0,27.0,32.0,34.0,33.0,30.0,33.0,26.0,18.0,22.0,23.0,39.0,35.0,26.0,37.0,28.0,36.0,32.0,30.0,39.0,30.0,43.0,42.0,30.0,43.0,38.0,28.0,33.0,44.0,32.0,39.0,31.0,29.0,27.0,32.0,31.0,25.0,34.0,47.0,31.0,45.0,45.0,52.0,53.0,53.0,60.0,52.0,59.0,50.0,55.0,54.0,40.0,53.0,49.0,46.0,50.0,32.0,37.0,39.0,31.0,38.0,26.0,30.0,34.0,44.0,34.0,23.0,34.0,44.0,31.0,27.0,35.0,24.0,31.0,28.0,24.0,24.0,14.0,13.0,9.0,6.0,3.0,20.0 M83094,63.0,65.0,82.0,69.0,73.0,69.0,87.0,77.0,97.0,90.0,83.0,90.0,107.0,101.0,105.0,94.0,108.0,85.0,90.0,76.0,69.0,80.0,72.0,59.0,75.0,80.0,73.0,83.0,81.0,101.0,88.0,93.0,77.0,98.0,99.0,106.0,106.0,118.0,104.0,102.0,111.0,94.0,102.0,105.0,93.0,96.0,76.0,72.0,65.0,76.0,82.0,77.0,90.0,106.0,102.0,94.0,116.0,96.0,125.0,97.0,104.0,85.0,96.0,81.0,81.0,72.0,81.0,84.0,93.0,72.0,67.0,62.0,66.0,64.0,52.0,74.0,76.0,75.0,68.0,69.0,51.0,44.0,57.0,39.0,36.0,28.0,35.0,30.0,25.0,16.0,16.0,13.0,9.0,10.0,10.0,20.0 M83096,19.0,24.0,22.0,13.0,18.0,10.0,21.0,20.0,17.0,20.0,18.0,25.0,29.0,16.0,27.0,22.0,26.0,31.0,22.0,20.0,34.0,26.0,31.0,21.0,20.0,31.0,20.0,18.0,37.0,27.0,35.0,22.0,28.0,35.0,35.0,19.0,40.0,27.0,32.0,22.0,23.0,31.0,33.0,29.0,24.0,15.0,32.0,29.0,28.0,27.0,33.0,33.0,35.0,52.0,49.0,49.0,48.0,39.0,36.0,44.0,49.0,48.0,40.0,43.0,33.0,36.0,29.0,48.0,42.0,29.0,24.0,30.0,29.0,32.0,29.0,42.0,31.0,31.0,47.0,27.0,30.0,23.0,22.0,26.0,19.0,27.0,20.0,15.0,16.0,8.0,10.0,2.0,7.0,4.0,6.0,8.0 M83097,36.0,32.0,46.0,41.0,47.0,40.0,59.0,45.0,57.0,58.0,44.0,46.0,49.0,44.0,58.0,46.0,63.0,52.0,45.0,40.0,35.0,35.0,47.0,57.0,37.0,43.0,43.0,40.0,59.0,56.0,61.0,70.0,73.0,66.0,69.0,64.0,44.0,77.0,59.0,57.0,52.0,66.0,67.0,64.0,60.0,77.0,43.0,45.0,65.0,62.0,52.0,58.0,53.0,69.0,67.0,71.0,68.0,68.0,67.0,75.0,73.0,70.0,66.0,77.0,66.0,61.0,62.0,38.0,78.0,49.0,38.0,42.0,45.0,46.0,43.0,50.0,47.0,63.0,42.0,30.0,58.0,34.0,39.0,35.0,19.0,26.0,21.0,23.0,22.0,17.0,16.0,19.0,5.0,10.0,7.0,19.0 M83100,15.0,16.0,19.0,13.0,22.0,16.0,21.0,13.0,25.0,17.0,22.0,15.0,25.0,37.0,28.0,28.0,25.0,26.0,24.0,24.0,28.0,16.0,15.0,22.0,25.0,17.0,25.0,22.0,25.0,24.0,20.0,20.0,20.0,21.0,29.0,21.0,32.0,28.0,27.0,38.0,19.0,21.0,29.0,25.0,31.0,24.0,26.0,26.0,27.0,16.0,26.0,22.0,19.0,27.0,25.0,32.0,27.0,31.0,32.0,28.0,31.0,29.0,22.0,24.0,33.0,24.0,21.0,19.0,31.0,26.0,27.0,36.0,21.0,24.0,24.0,24.0,21.0,24.0,25.0,21.0,24.0,23.0,30.0,12.0,16.0,17.0,18.0,8.0,6.0,10.0,9.0,4.0,5.0,4.0,4.0,5.0 M83102,33.0,45.0,43.0,49.0,57.0,50.0,50.0,56.0,51.0,44.0,58.0,59.0,56.0,56.0,64.0,48.0,51.0,53.0,50.0,48.0,42.0,41.0,47.0,37.0,46.0,41.0,44.0,59.0,47.0,61.0,48.0,53.0,63.0,58.0,67.0,70.0,62.0,83.0,43.0,50.0,47.0,56.0,52.0,33.0,48.0,48.0,45.0,32.0,35.0,40.0,38.0,36.0,47.0,42.0,51.0,40.0,51.0,50.0,30.0,38.0,52.0,49.0,35.0,42.0,45.0,34.0,37.0,37.0,34.0,35.0,32.0,35.0,20.0,25.0,21.0,32.0,26.0,29.0,27.0,19.0,26.0,15.0,13.0,9.0,15.0,12.0,15.0,13.0,8.0,11.0,6.0,6.0,1.0,5.0,1.0,8.0 M83103,23.0,25.0,18.0,18.0,24.0,21.0,16.0,21.0,19.0,18.0,24.0,22.0,25.0,22.0,32.0,24.0,26.0,25.0,18.0,13.0,22.0,21.0,12.0,24.0,22.0,27.0,21.0,28.0,31.0,22.0,27.0,41.0,19.0,26.0,18.0,19.0,31.0,30.0,32.0,29.0,25.0,21.0,22.0,31.0,36.0,30.0,28.0,20.0,22.0,19.0,29.0,28.0,25.0,35.0,33.0,33.0,46.0,39.0,40.0,37.0,43.0,30.0,37.0,46.0,42.0,25.0,25.0,28.0,31.0,24.0,21.0,43.0,49.0,30.0,29.0,35.0,29.0,46.0,34.0,33.0,32.0,22.0,24.0,20.0,20.0,16.0,18.0,8.0,7.0,4.0,3.0,7.0,6.0,3.0,1.0,5.0 M83107,30.0,24.0,32.0,34.0,38.0,39.0,47.0,35.0,30.0,25.0,26.0,35.0,52.0,47.0,41.0,41.0,36.0,30.0,44.0,36.0,34.0,26.0,45.0,42.0,33.0,42.0,31.0,46.0,49.0,46.0,54.0,54.0,55.0,41.0,55.0,56.0,55.0,48.0,41.0,37.0,36.0,47.0,32.0,29.0,40.0,34.0,32.0,31.0,31.0,33.0,32.0,53.0,35.0,52.0,39.0,59.0,40.0,33.0,38.0,55.0,48.0,46.0,46.0,36.0,43.0,37.0,34.0,42.0,41.0,36.0,30.0,32.0,28.0,33.0,26.0,24.0,32.0,32.0,36.0,33.0,22.0,27.0,28.0,19.0,9.0,31.0,20.0,13.0,11.0,12.0,2.0,5.0,6.0,6.0,3.0,9.0 M83108,46.0,28.0,34.0,39.0,32.0,36.0,53.0,31.0,39.0,40.0,45.0,36.0,37.0,37.0,45.0,53.0,32.0,52.0,42.0,34.0,40.0,40.0,27.0,45.0,41.0,41.0,42.0,34.0,41.0,39.0,39.0,53.0,42.0,46.0,57.0,46.0,52.0,49.0,53.0,46.0,48.0,49.0,40.0,37.0,63.0,52.0,41.0,39.0,39.0,46.0,50.0,53.0,53.0,60.0,74.0,54.0,53.0,67.0,54.0,55.0,64.0,53.0,62.0,56.0,41.0,54.0,50.0,48.0,47.0,48.0,50.0,43.0,51.0,43.0,36.0,46.0,47.0,51.0,54.0,40.0,45.0,29.0,27.0,23.0,28.0,23.0,18.0,14.0,16.0,6.0,9.0,6.0,4.0,5.0,1.0,8.0 M83109,23.0,21.0,23.0,28.0,18.0,24.0,16.0,24.0,18.0,26.0,17.0,11.0,21.0,23.0,23.0,21.0,21.0,22.0,16.0,15.0,13.0,13.0,20.0,15.0,9.0,26.0,30.0,34.0,26.0,26.0,30.0,29.0,32.0,36.0,38.0,31.0,25.0,32.0,32.0,23.0,30.0,27.0,31.0,17.0,35.0,15.0,16.0,21.0,28.0,20.0,19.0,30.0,14.0,24.0,24.0,23.0,35.0,24.0,23.0,30.0,26.0,24.0,25.0,29.0,19.0,22.0,26.0,20.0,23.0,22.0,22.0,30.0,15.0,20.0,30.0,16.0,12.0,27.0,27.0,20.0,14.0,17.0,10.0,13.0,12.0,12.0,12.0,14.0,4.0,8.0,6.0,7.0,3.0,4.0,6.0,9.0 M83110,84.0,81.0,86.0,111.0,108.0,113.0,115.0,98.0,107.0,108.0,103.0,93.0,107.0,93.0,113.0,100.0,96.0,101.0,89.0,64.0,62.0,68.0,72.0,89.0,79.0,91.0,101.0,106.0,139.0,128.0,130.0,133.0,128.0,136.0,134.0,123.0,137.0,130.0,126.0,123.0,117.0,115.0,124.0,94.0,110.0,95.0,96.0,101.0,81.0,72.0,75.0,95.0,102.0,106.0,97.0,95.0,106.0,86.0,81.0,88.0,99.0,88.0,73.0,96.0,73.0,97.0,94.0,87.0,77.0,68.0,77.0,79.0,81.0,84.0,78.0,85.0,66.0,68.0,70.0,56.0,45.0,47.0,52.0,31.0,27.0,22.0,26.0,12.0,19.0,16.0,7.0,7.0,6.0,5.0,6.0,14.0 M83111,11.0,9.0,25.0,8.0,5.0,5.0,9.0,13.0,12.0,8.0,11.0,14.0,13.0,12.0,10.0,9.0,9.0,7.0,10.0,5.0,15.0,15.0,11.0,13.0,11.0,26.0,21.0,24.0,19.0,16.0,26.0,17.0,25.0,24.0,19.0,22.0,22.0,22.0,13.0,16.0,15.0,12.0,13.0,10.0,6.0,13.0,13.0,22.0,11.0,11.0,6.0,9.0,16.0,11.0,10.0,12.0,18.0,9.0,13.0,15.0,11.0,14.0,15.0,17.0,13.0,13.0,12.0,16.0,10.0,13.0,11.0,11.0,9.0,12.0,11.0,14.0,18.0,13.0,13.0,12.0,10.0,5.0,9.0,4.0,6.0,5.0,5.0,3.0,2.0,4.0,4.0,1.0,1.0,4.0,2.0, M83113,14.0,8.0,9.0,14.0,12.0,13.0,13.0,19.0,16.0,23.0,14.0,19.0,13.0,11.0,22.0,24.0,18.0,18.0,14.0,11.0,12.0,14.0,12.0,8.0,7.0,17.0,14.0,13.0,14.0,19.0,13.0,21.0,16.0,20.0,13.0,19.0,16.0,15.0,16.0,23.0,17.0,19.0,15.0,18.0,23.0,19.0,22.0,10.0,24.0,18.0,18.0,20.0,17.0,17.0,14.0,17.0,11.0,21.0,14.0,9.0,13.0,12.0,13.0,10.0,22.0,17.0,10.0,16.0,17.0,18.0,17.0,11.0,11.0,7.0,8.0,10.0,11.0,5.0,6.0,9.0,4.0,8.0,4.0,1.0,,3.0,3.0,3.0,2.0,1.0,1.0,2.0,1.0,2.0,,2.0 M83117,29.0,37.0,31.0,45.0,38.0,49.0,27.0,41.0,45.0,44.0,58.0,48.0,44.0,56.0,60.0,56.0,46.0,61.0,50.0,43.0,41.0,47.0,39.0,34.0,41.0,30.0,37.0,60.0,42.0,42.0,48.0,52.0,50.0,66.0,55.0,69.0,69.0,62.0,59.0,68.0,68.0,60.0,60.0,60.0,51.0,40.0,54.0,49.0,43.0,42.0,55.0,61.0,54.0,63.0,62.0,58.0,55.0,45.0,54.0,47.0,62.0,53.0,59.0,53.0,56.0,51.0,50.0,58.0,58.0,58.0,50.0,46.0,50.0,40.0,40.0,38.0,43.0,27.0,30.0,30.0,18.0,16.0,22.0,14.0,19.0,19.0,11.0,5.0,7.0,12.0,7.0,11.0,3.0,4.0,2.0,8.0 M83121,18.0,15.0,16.0,17.0,19.0,24.0,18.0,20.0,19.0,27.0,35.0,29.0,29.0,25.0,26.0,30.0,39.0,29.0,23.0,25.0,16.0,17.0,22.0,14.0,28.0,17.0,25.0,25.0,20.0,33.0,33.0,34.0,35.0,34.0,26.0,36.0,20.0,31.0,29.0,33.0,32.0,22.0,26.0,33.0,26.0,46.0,23.0,29.0,37.0,28.0,27.0,34.0,33.0,45.0,47.0,63.0,43.0,54.0,35.0,39.0,56.0,56.0,43.0,36.0,54.0,48.0,46.0,45.0,46.0,38.0,36.0,50.0,59.0,47.0,38.0,47.0,53.0,60.0,54.0,30.0,29.0,39.0,35.0,26.0,27.0,24.0,18.0,16.0,18.0,11.0,12.0,8.0,6.0,3.0,9.0,4.0 M83122,8.0,8.0,19.0,14.0,19.0,10.0,11.0,15.0,16.0,15.0,12.0,18.0,16.0,22.0,16.0,16.0,13.0,20.0,9.0,7.0,12.0,9.0,9.0,10.0,9.0,18.0,26.0,5.0,17.0,12.0,10.0,12.0,14.0,6.0,15.0,17.0,18.0,15.0,16.0,18.0,13.0,16.0,12.0,11.0,22.0,15.0,12.0,11.0,14.0,24.0,11.0,17.0,22.0,18.0,22.0,23.0,36.0,28.0,23.0,29.0,37.0,27.0,35.0,23.0,40.0,27.0,26.0,30.0,21.0,20.0,18.0,15.0,18.0,18.0,25.0,15.0,11.0,10.0,20.0,16.0,14.0,20.0,16.0,14.0,11.0,1.0,7.0,5.0,5.0,4.0,3.0,3.0,1.0,1.0,1.0,3.0 M83123,44.0,63.0,53.0,44.0,58.0,65.0,67.0,49.0,70.0,56.0,70.0,67.0,52.0,61.0,68.0,74.0,61.0,52.0,47.0,52.0,43.0,58.0,51.0,45.0,75.0,75.0,74.0,72.0,85.0,71.0,83.0,91.0,82.0,86.0,80.0,98.0,81.0,76.0,85.0,76.0,69.0,70.0,70.0,76.0,65.0,50.0,55.0,66.0,47.0,40.0,46.0,58.0,47.0,65.0,59.0,56.0,72.0,66.0,61.0,68.0,58.0,56.0,61.0,68.0,57.0,58.0,42.0,62.0,52.0,42.0,40.0,43.0,37.0,35.0,40.0,34.0,39.0,39.0,39.0,29.0,22.0,16.0,21.0,24.0,14.0,17.0,16.0,8.0,19.0,8.0,15.0,7.0,9.0,8.0,2.0,11.0 M83125,4.0,13.0,15.0,15.0,15.0,15.0,10.0,8.0,18.0,18.0,14.0,16.0,15.0,22.0,27.0,18.0,22.0,12.0,15.0,16.0,11.0,10.0,17.0,14.0,9.0,15.0,14.0,19.0,10.0,17.0,14.0,18.0,13.0,23.0,14.0,12.0,10.0,11.0,16.0,7.0,21.0,19.0,13.0,20.0,17.0,26.0,15.0,16.0,15.0,18.0,23.0,24.0,30.0,33.0,22.0,34.0,37.0,33.0,36.0,30.0,35.0,41.0,37.0,24.0,31.0,26.0,25.0,23.0,23.0,31.0,17.0,22.0,19.0,20.0,16.0,21.0,21.0,21.0,27.0,13.0,16.0,14.0,13.0,13.0,10.0,9.0,10.0,13.0,9.0,4.0,5.0,9.0,2.0,3.0,1.0,6.0 M83126,52.0,46.0,63.0,49.0,48.0,59.0,50.0,49.0,60.0,57.0,50.0,45.0,37.0,64.0,48.0,76.0,50.0,56.0,58.0,46.0,47.0,43.0,56.0,35.0,60.0,51.0,59.0,46.0,52.0,58.0,64.0,74.0,69.0,71.0,68.0,88.0,70.0,58.0,65.0,57.0,61.0,45.0,40.0,53.0,61.0,46.0,54.0,50.0,51.0,50.0,64.0,41.0,57.0,52.0,69.0,40.0,59.0,42.0,67.0,57.0,57.0,63.0,57.0,60.0,62.0,55.0,41.0,49.0,58.0,42.0,37.0,47.0,37.0,56.0,42.0,34.0,40.0,43.0,42.0,27.0,37.0,23.0,22.0,18.0,25.0,26.0,10.0,17.0,15.0,16.0,14.0,10.0,9.0,7.0,2.0,8.0 M83127,60.0,49.0,65.0,51.0,51.0,55.0,45.0,57.0,52.0,54.0,43.0,67.0,50.0,61.0,50.0,46.0,52.0,49.0,44.0,47.0,37.0,43.0,53.0,44.0,55.0,56.0,54.0,50.0,65.0,57.0,65.0,62.0,67.0,68.0,67.0,76.0,64.0,62.0,53.0,68.0,50.0,55.0,38.0,53.0,56.0,43.0,36.0,40.0,39.0,33.0,35.0,32.0,36.0,33.0,34.0,34.0,40.0,28.0,23.0,34.0,27.0,24.0,25.0,21.0,18.0,17.0,17.0,20.0,15.0,16.0,12.0,25.0,18.0,19.0,15.0,14.0,24.0,11.0,10.0,7.0,9.0,10.0,5.0,6.0,10.0,5.0,7.0,10.0,3.0,4.0,,5.0,,1.0,,1.0 M83129,47.0,61.0,65.0,55.0,70.0,61.0,71.0,68.0,68.0,62.0,64.0,62.0,62.0,79.0,53.0,56.0,64.0,72.0,55.0,60.0,54.0,50.0,39.0,51.0,44.0,56.0,59.0,61.0,73.0,57.0,73.0,80.0,82.0,91.0,77.0,67.0,77.0,89.0,70.0,98.0,74.0,85.0,76.0,63.0,75.0,64.0,62.0,56.0,63.0,62.0,59.0,59.0,78.0,74.0,82.0,77.0,81.0,90.0,60.0,84.0,82.0,75.0,74.0,65.0,71.0,74.0,74.0,67.0,68.0,65.0,46.0,48.0,55.0,42.0,46.0,46.0,55.0,30.0,37.0,36.0,32.0,44.0,39.0,29.0,25.0,25.0,28.0,25.0,20.0,16.0,16.0,12.0,3.0,2.0,8.0,15.0 M83130,17.0,18.0,15.0,16.0,18.0,16.0,19.0,15.0,13.0,17.0,17.0,22.0,16.0,16.0,18.0,20.0,13.0,30.0,23.0,7.0,15.0,16.0,20.0,16.0,23.0,29.0,30.0,36.0,27.0,22.0,30.0,34.0,27.0,23.0,35.0,25.0,23.0,22.0,19.0,22.0,17.0,18.0,17.0,31.0,16.0,20.0,13.0,16.0,20.0,18.0,31.0,23.0,38.0,27.0,29.0,33.0,44.0,18.0,39.0,34.0,33.0,20.0,35.0,32.0,21.0,17.0,27.0,21.0,19.0,23.0,20.0,17.0,18.0,21.0,26.0,20.0,24.0,25.0,29.0,19.0,18.0,20.0,20.0,18.0,14.0,13.0,19.0,10.0,7.0,7.0,4.0,5.0,4.0,4.0,1.0,1.0 M83132,20.0,19.0,25.0,21.0,29.0,27.0,33.0,27.0,22.0,30.0,31.0,36.0,30.0,33.0,33.0,33.0,27.0,30.0,32.0,21.0,20.0,22.0,21.0,24.0,21.0,24.0,23.0,29.0,33.0,21.0,29.0,40.0,47.0,39.0,52.0,41.0,31.0,44.0,40.0,44.0,37.0,40.0,37.0,30.0,31.0,45.0,33.0,29.0,30.0,27.0,33.0,30.0,30.0,41.0,43.0,44.0,31.0,30.0,39.0,44.0,41.0,35.0,42.0,43.0,42.0,40.0,51.0,49.0,50.0,53.0,33.0,59.0,42.0,39.0,34.0,25.0,35.0,22.0,20.0,21.0,19.0,19.0,16.0,11.0,13.0,10.0,11.0,11.0,10.0,6.0,5.0,5.0,4.0,3.0,3.0,5.0 M83138,20.0,24.0,29.0,26.0,28.0,38.0,37.0,38.0,24.0,36.0,40.0,51.0,27.0,47.0,45.0,40.0,44.0,48.0,29.0,32.0,35.0,34.0,22.0,34.0,28.0,24.0,28.0,24.0,33.0,37.0,27.0,45.0,40.0,36.0,45.0,26.0,52.0,56.0,50.0,54.0,44.0,55.0,48.0,54.0,44.0,43.0,44.0,35.0,30.0,39.0,46.0,36.0,38.0,35.0,45.0,51.0,43.0,34.0,49.0,49.0,45.0,50.0,39.0,48.0,47.0,56.0,59.0,54.0,44.0,59.0,38.0,54.0,40.0,46.0,39.0,32.0,35.0,32.0,33.0,23.0,37.0,23.0,24.0,15.0,16.0,21.0,10.0,11.0,20.0,12.0,11.0,14.0,10.0,8.0,7.0,18.0 M83139,30.0,17.0,24.0,22.0,21.0,27.0,20.0,27.0,26.0,30.0,23.0,28.0,33.0,18.0,28.0,51.0,20.0,23.0,36.0,20.0,24.0,26.0,25.0,27.0,28.0,34.0,29.0,38.0,33.0,46.0,46.0,21.0,50.0,44.0,28.0,43.0,41.0,29.0,32.0,30.0,24.0,25.0,34.0,31.0,28.0,29.0,16.0,17.0,30.0,28.0,26.0,38.0,33.0,47.0,45.0,49.0,44.0,38.0,52.0,32.0,37.0,47.0,37.0,40.0,33.0,33.0,28.0,23.0,27.0,26.0,23.0,22.0,20.0,23.0,21.0,23.0,27.0,31.0,38.0,24.0,21.0,16.0,15.0,17.0,6.0,9.0,8.0,8.0,11.0,4.0,6.0,3.0,5.0,2.0,2.0,5.0 M83140,22.0,17.0,16.0,21.0,19.0,27.0,25.0,28.0,28.0,35.0,28.0,27.0,39.0,33.0,19.0,32.0,33.0,25.0,18.0,22.0,33.0,22.0,22.0,42.0,44.0,29.0,34.0,33.0,28.0,28.0,30.0,26.0,31.0,38.0,49.0,46.0,28.0,35.0,23.0,24.0,29.0,36.0,29.0,28.0,21.0,26.0,38.0,38.0,22.0,22.0,34.0,22.0,25.0,23.0,41.0,29.0,37.0,31.0,32.0,27.0,37.0,29.0,30.0,33.0,43.0,25.0,30.0,32.0,33.0,14.0,25.0,27.0,23.0,21.0,29.0,21.0,20.0,23.0,27.0,20.0,21.0,13.0,12.0,13.0,20.0,21.0,6.0,13.0,12.0,12.0,3.0,5.0,7.0,4.0,2.0,11.0 M83141,49.0,25.0,43.0,39.0,46.0,34.0,52.0,57.0,53.0,71.0,60.0,42.0,57.0,46.0,54.0,44.0,58.0,55.0,61.0,48.0,31.0,36.0,31.0,42.0,30.0,40.0,49.0,37.0,41.0,42.0,49.0,33.0,48.0,60.0,57.0,46.0,53.0,61.0,65.0,61.0,74.0,59.0,72.0,66.0,65.0,59.0,68.0,51.0,44.0,62.0,61.0,58.0,61.0,59.0,64.0,60.0,67.0,60.0,64.0,75.0,59.0,64.0,55.0,80.0,58.0,50.0,60.0,56.0,53.0,53.0,54.0,59.0,61.0,50.0,43.0,56.0,51.0,63.0,55.0,38.0,47.0,45.0,45.0,38.0,19.0,36.0,34.0,27.0,22.0,18.0,15.0,12.0,9.0,8.0,6.0,19.0 M83143,26.0,27.0,34.0,23.0,31.0,36.0,36.0,26.0,36.0,38.0,28.0,49.0,29.0,26.0,45.0,37.0,30.0,40.0,34.0,39.0,22.0,33.0,33.0,26.0,26.0,37.0,37.0,35.0,40.0,39.0,27.0,35.0,40.0,37.0,51.0,42.0,41.0,52.0,39.0,46.0,40.0,36.0,41.0,41.0,33.0,22.0,29.0,29.0,26.0,33.0,24.0,35.0,31.0,30.0,46.0,40.0,30.0,27.0,38.0,40.0,24.0,27.0,25.0,31.0,30.0,26.0,26.0,40.0,35.0,34.0,22.0,25.0,14.0,19.0,17.0,17.0,27.0,17.0,21.0,16.0,11.0,10.0,23.0,16.0,14.0,8.0,11.0,8.0,8.0,4.0,6.0,3.0,2.0,3.0,,6.0 M83146,73.0,74.0,79.0,91.0,70.0,93.0,86.0,83.0,100.0,89.0,89.0,99.0,113.0,105.0,114.0,94.0,107.0,111.0,84.0,81.0,70.0,69.0,74.0,59.0,74.0,83.0,77.0,85.0,86.0,82.0,91.0,100.0,112.0,106.0,115.0,114.0,122.0,109.0,109.0,119.0,91.0,96.0,119.0,103.0,98.0,88.0,92.0,77.0,63.0,57.0,67.0,75.0,65.0,84.0,77.0,77.0,80.0,78.0,85.0,77.0,90.0,76.0,54.0,66.0,70.0,63.0,56.0,58.0,58.0,51.0,44.0,52.0,47.0,48.0,38.0,58.0,37.0,49.0,42.0,39.0,34.0,26.0,39.0,25.0,27.0,24.0,23.0,25.0,34.0,21.0,15.0,8.0,14.0,15.0,7.0,17.0 M83148,61.0,59.0,64.0,78.0,64.0,75.0,62.0,92.0,87.0,106.0,94.0,97.0,86.0,90.0,96.0,95.0,89.0,79.0,100.0,69.0,66.0,60.0,70.0,85.0,60.0,63.0,84.0,81.0,106.0,74.0,83.0,113.0,104.0,104.0,116.0,102.0,112.0,122.0,108.0,114.0,108.0,102.0,100.0,102.0,110.0,103.0,81.0,85.0,79.0,92.0,115.0,85.0,104.0,120.0,106.0,112.0,94.0,74.0,113.0,99.0,84.0,111.0,84.0,73.0,77.0,76.0,85.0,86.0,71.0,78.0,75.0,70.0,60.0,71.0,52.0,64.0,45.0,72.0,71.0,40.0,42.0,53.0,38.0,32.0,24.0,36.0,36.0,33.0,19.0,18.0,12.0,20.0,11.0,7.0,6.0,16.0 M83601,15.0,20.0,9.0,28.0,31.0,20.0,26.0,31.0,30.0,23.0,36.0,30.0,32.0,31.0,23.0,27.0,40.0,32.0,29.0,23.0,25.0,24.0,18.0,21.0,20.0,29.0,16.0,25.0,16.0,22.0,24.0,30.0,26.0,21.0,22.0,24.0,39.0,42.0,44.0,32.0,33.0,27.0,37.0,48.0,33.0,39.0,35.0,33.0,30.0,34.0,38.0,38.0,37.0,43.0,38.0,39.0,36.0,39.0,60.0,39.0,44.0,36.0,48.0,40.0,52.0,35.0,28.0,32.0,30.0,58.0,44.0,38.0,40.0,53.0,42.0,48.0,55.0,46.0,43.0,51.0,43.0,34.0,52.0,45.0,24.0,25.0,27.0,25.0,29.0,23.0,15.0,19.0,12.0,12.0,8.0,32.0 M83608,20.0,25.0,27.0,29.0,27.0,25.0,30.0,36.0,19.0,30.0,28.0,25.0,21.0,38.0,23.0,24.0,27.0,28.0,21.0,23.0,14.0,30.0,21.0,25.0,21.0,23.0,27.0,34.0,49.0,36.0,35.0,36.0,44.0,43.0,31.0,26.0,39.0,26.0,23.0,31.0,34.0,31.0,29.0,31.0,24.0,39.0,37.0,27.0,18.0,20.0,32.0,40.0,36.0,36.0,35.0,48.0,48.0,48.0,46.0,41.0,43.0,34.0,28.0,36.0,44.0,25.0,30.0,33.0,31.0,30.0,20.0,18.0,22.0,25.0,32.0,33.0,27.0,46.0,43.0,32.0,41.0,38.0,23.0,21.0,20.0,17.0,21.0,20.0,4.0,12.0,8.0,1.0,8.0,5.0,2.0,6.0 M83616,24.0,20.0,23.0,22.0,38.0,24.0,26.0,29.0,24.0,14.0,17.0,25.0,24.0,34.0,25.0,29.0,28.0,34.0,27.0,26.0,23.0,19.0,26.0,36.0,24.0,29.0,38.0,38.0,41.0,31.0,30.0,42.0,36.0,34.0,41.0,31.0,35.0,31.0,35.0,39.0,37.0,38.0,38.0,26.0,32.0,33.0,29.0,17.0,29.0,36.0,30.0,38.0,44.0,31.0,27.0,39.0,32.0,53.0,45.0,50.0,29.0,28.0,29.0,33.0,28.0,25.0,24.0,25.0,23.0,20.0,20.0,23.0,19.0,20.0,17.0,19.0,19.0,20.0,18.0,18.0,12.0,23.0,14.0,10.0,13.0,12.0,8.0,5.0,8.0,2.0,1.0,5.0,2.0,2.0,, M83617,95.0,108.0,117.0,114.0,121.0,125.0,133.0,133.0,129.0,130.0,134.0,124.0,147.0,132.0,135.0,143.0,138.0,131.0,116.0,117.0,105.0,118.0,126.0,122.0,114.0,106.0,137.0,152.0,135.0,162.0,163.0,172.0,158.0,169.0,166.0,171.0,163.0,158.0,161.0,149.0,158.0,146.0,139.0,130.0,163.0,158.0,168.0,136.0,137.0,132.0,143.0,157.0,149.0,183.0,181.0,168.0,198.0,182.0,185.0,199.0,187.0,149.0,171.0,148.0,126.0,129.0,132.0,123.0,117.0,107.0,106.0,132.0,107.0,109.0,131.0,104.0,130.0,177.0,170.0,121.0,139.0,128.0,106.0,75.0,72.0,50.0,56.0,52.0,49.0,36.0,28.0,22.0,23.0,14.0,8.0,22.0 M83619,18.0,18.0,17.0,22.0,16.0,23.0,21.0,18.0,17.0,19.0,13.0,23.0,16.0,13.0,19.0,12.0,11.0,20.0,16.0,22.0,27.0,20.0,26.0,18.0,13.0,26.0,28.0,40.0,24.0,28.0,29.0,35.0,36.0,31.0,35.0,31.0,17.0,20.0,30.0,25.0,23.0,24.0,25.0,30.0,27.0,16.0,16.0,23.0,15.0,19.0,13.0,22.0,23.0,19.0,23.0,28.0,23.0,24.0,26.0,22.0,27.0,16.0,17.0,19.0,19.0,14.0,17.0,14.0,13.0,16.0,16.0,15.0,20.0,14.0,15.0,13.0,14.0,12.0,12.0,6.0,9.0,13.0,8.0,15.0,9.0,10.0,9.0,3.0,7.0,5.0,8.0,2.0,3.0,2.0,,4.0 M83624,28.0,19.0,17.0,12.0,26.0,17.0,19.0,20.0,17.0,21.0,30.0,23.0,23.0,21.0,26.0,23.0,16.0,26.0,18.0,19.0,13.0,31.0,17.0,20.0,22.0,18.0,19.0,22.0,27.0,11.0,31.0,27.0,21.0,35.0,29.0,30.0,27.0,31.0,35.0,28.0,30.0,33.0,24.0,20.0,25.0,27.0,24.0,17.0,17.0,21.0,18.0,16.0,22.0,22.0,31.0,22.0,31.0,29.0,16.0,19.0,27.0,23.0,33.0,29.0,15.0,15.0,23.0,26.0,16.0,17.0,18.0,23.0,20.0,9.0,12.0,21.0,17.0,24.0,15.0,13.0,11.0,15.0,13.0,6.0,8.0,11.0,9.0,3.0,5.0,3.0,3.0,,4.0,1.0,,4.0 M83625,52.0,50.0,59.0,53.0,71.0,69.0,74.0,69.0,67.0,71.0,51.0,72.0,69.0,65.0,62.0,50.0,65.0,65.0,52.0,56.0,51.0,53.0,51.0,50.0,64.0,69.0,69.0,91.0,77.0,96.0,87.0,96.0,99.0,106.0,102.0,107.0,109.0,96.0,75.0,77.0,80.0,82.0,90.0,73.0,71.0,60.0,76.0,46.0,54.0,62.0,38.0,57.0,59.0,55.0,58.0,66.0,56.0,62.0,58.0,66.0,48.0,57.0,59.0,69.0,66.0,60.0,59.0,45.0,46.0,49.0,51.0,58.0,43.0,36.0,45.0,37.0,37.0,34.0,37.0,31.0,21.0,21.0,19.0,24.0,18.0,11.0,15.0,19.0,16.0,11.0,14.0,7.0,7.0,7.0,2.0,5.0 M83627,57.0,40.0,49.0,49.0,58.0,45.0,59.0,70.0,58.0,62.0,57.0,86.0,53.0,68.0,54.0,69.0,63.0,50.0,44.0,45.0,41.0,36.0,41.0,55.0,58.0,65.0,58.0,53.0,66.0,69.0,78.0,66.0,70.0,48.0,88.0,65.0,67.0,76.0,71.0,59.0,52.0,63.0,69.0,48.0,46.0,59.0,39.0,48.0,44.0,37.0,46.0,35.0,39.0,43.0,34.0,29.0,28.0,32.0,30.0,36.0,33.0,21.0,29.0,31.0,34.0,23.0,25.0,19.0,15.0,23.0,23.0,16.0,16.0,21.0,14.0,23.0,17.0,27.0,17.0,15.0,19.0,16.0,13.0,15.0,15.0,8.0,18.0,13.0,13.0,15.0,7.0,10.0,4.0,3.0,4.0,15.0 M83632,24.0,27.0,22.0,26.0,24.0,28.0,28.0,34.0,33.0,21.0,31.0,27.0,30.0,38.0,32.0,21.0,41.0,46.0,35.0,31.0,23.0,18.0,18.0,20.0,27.0,19.0,22.0,24.0,33.0,25.0,30.0,32.0,30.0,35.0,36.0,32.0,37.0,39.0,50.0,35.0,35.0,33.0,32.0,38.0,34.0,32.0,35.0,33.0,32.0,30.0,31.0,26.0,37.0,31.0,36.0,41.0,48.0,43.0,34.0,33.0,42.0,40.0,40.0,24.0,27.0,30.0,42.0,24.0,33.0,23.0,29.0,19.0,23.0,35.0,41.0,29.0,18.0,26.0,23.0,30.0,26.0,21.0,21.0,16.0,12.0,19.0,14.0,13.0,16.0,9.0,10.0,8.0,5.0,5.0,8.0,7.0 M83637,25.0,22.0,19.0,17.0,26.0,34.0,26.0,27.0,34.0,25.0,21.0,27.0,31.0,30.0,36.0,36.0,35.0,37.0,32.0,30.0,27.0,36.0,26.0,31.0,16.0,24.0,33.0,37.0,39.0,36.0,37.0,33.0,39.0,37.0,34.0,37.0,30.0,33.0,27.0,47.0,30.0,25.0,44.0,39.0,45.0,34.0,29.0,28.0,26.0,30.0,37.0,33.0,25.0,22.0,27.0,36.0,32.0,37.0,33.0,29.0,27.0,33.0,29.0,25.0,31.0,18.0,22.0,18.0,21.0,12.0,18.0,13.0,25.0,20.0,26.0,17.0,16.0,19.0,24.0,15.0,21.0,9.0,6.0,12.0,5.0,10.0,5.0,9.0,8.0,2.0,3.0,3.0,5.0,3.0,1.0,12.0 M83638,52.0,82.0,77.0,75.0,88.0,84.0,85.0,78.0,80.0,89.0,78.0,87.0,86.0,66.0,81.0,90.0,86.0,87.0,103.0,77.0,63.0,61.0,67.0,61.0,68.0,93.0,75.0,101.0,95.0,97.0,95.0,95.0,107.0,100.0,103.0,99.0,102.0,102.0,87.0,90.0,99.0,91.0,95.0,95.0,96.0,84.0,93.0,74.0,66.0,85.0,88.0,98.0,92.0,100.0,127.0,131.0,123.0,115.0,97.0,118.0,109.0,108.0,103.0,101.0,99.0,100.0,86.0,92.0,85.0,79.0,83.0,64.0,68.0,71.0,79.0,73.0,76.0,80.0,81.0,57.0,61.0,57.0,49.0,32.0,32.0,39.0,27.0,33.0,15.0,18.0,18.0,10.0,15.0,8.0,6.0,4.0 M83640,4.0,3.0,11.0,4.0,12.0,6.0,11.0,4.0,14.0,12.0,6.0,14.0,11.0,14.0,14.0,18.0,15.0,14.0,15.0,13.0,10.0,9.0,14.0,16.0,9.0,9.0,11.0,9.0,11.0,10.0,12.0,12.0,9.0,11.0,17.0,13.0,14.0,9.0,9.0,11.0,14.0,11.0,12.0,13.0,16.0,16.0,10.0,17.0,14.0,15.0,13.0,19.0,29.0,23.0,20.0,21.0,26.0,25.0,33.0,36.0,24.0,23.0,16.0,20.0,24.0,19.0,17.0,28.0,15.0,19.0,23.0,19.0,18.0,21.0,17.0,18.0,24.0,22.0,17.0,13.0,21.0,13.0,18.0,7.0,9.0,11.0,9.0,11.0,2.0,5.0,3.0,5.0,3.0,2.0,,3.0 M83641,4.0,4.0,4.0,10.0,7.0,5.0,7.0,12.0,9.0,14.0,12.0,11.0,13.0,14.0,12.0,13.0,22.0,17.0,21.0,12.0,11.0,12.0,13.0,8.0,7.0,11.0,6.0,5.0,9.0,15.0,12.0,13.0,9.0,16.0,19.0,17.0,15.0,7.0,13.0,12.0,6.0,16.0,9.0,6.0,12.0,12.0,12.0,7.0,3.0,9.0,10.0,8.0,20.0,10.0,11.0,16.0,14.0,22.0,9.0,13.0,13.0,14.0,13.0,10.0,7.0,17.0,12.0,9.0,10.0,16.0,11.0,10.0,4.0,5.0,10.0,4.0,8.0,12.0,19.0,5.0,11.0,7.0,12.0,12.0,7.0,4.0,4.0,5.0,5.0,4.0,2.0,,5.0,2.0,2.0,3.0 M83650,79.0,82.0,91.0,105.0,93.0,103.0,98.0,94.0,96.0,113.0,112.0,95.0,118.0,114.0,99.0,120.0,116.0,93.0,79.0,72.0,70.0,78.0,82.0,87.0,94.0,104.0,99.0,89.0,93.0,95.0,111.0,109.0,127.0,106.0,139.0,111.0,139.0,135.0,127.0,92.0,109.0,107.0,100.0,91.0,85.0,102.0,83.0,66.0,71.0,84.0,79.0,68.0,92.0,67.0,63.0,73.0,62.0,73.0,60.0,79.0,55.0,65.0,55.0,71.0,47.0,50.0,49.0,57.0,57.0,36.0,38.0,44.0,42.0,45.0,37.0,42.0,32.0,40.0,32.0,26.0,19.0,28.0,23.0,18.0,14.0,27.0,19.0,10.0,11.0,12.0,16.0,8.0,7.0,4.0,3.0,8.0 M83661,34.0,53.0,40.0,52.0,48.0,54.0,49.0,55.0,34.0,43.0,52.0,46.0,45.0,34.0,44.0,29.0,38.0,50.0,31.0,31.0,34.0,27.0,28.0,49.0,49.0,46.0,47.0,51.0,60.0,53.0,48.0,61.0,57.0,56.0,64.0,71.0,40.0,43.0,53.0,51.0,56.0,55.0,39.0,40.0,45.0,45.0,37.0,32.0,38.0,21.0,43.0,29.0,37.0,58.0,39.0,34.0,44.0,44.0,37.0,39.0,49.0,44.0,48.0,38.0,37.0,42.0,29.0,31.0,24.0,30.0,28.0,22.0,25.0,22.0,18.0,21.0,25.0,17.0,21.0,11.0,19.0,12.0,12.0,14.0,18.0,8.0,6.0,5.0,7.0,7.0,4.0,6.0,,2.0,4.0,5.0 M83668,17.0,27.0,32.0,25.0,30.0,35.0,31.0,30.0,25.0,39.0,27.0,28.0,29.0,22.0,22.0,26.0,26.0,20.0,25.0,16.0,38.0,18.0,25.0,18.0,15.0,22.0,45.0,24.0,41.0,38.0,26.0,34.0,41.0,57.0,53.0,37.0,37.0,48.0,40.0,48.0,39.0,36.0,37.0,40.0,34.0,32.0,21.0,26.0,24.0,34.0,18.0,30.0,18.0,42.0,35.0,38.0,38.0,36.0,32.0,36.0,34.0,46.0,43.0,43.0,54.0,41.0,37.0,35.0,38.0,22.0,25.0,41.0,27.0,29.0,20.0,32.0,25.0,33.0,22.0,16.0,27.0,18.0,11.0,13.0,13.0,20.0,10.0,11.0,7.0,10.0,7.0,8.0,4.0,1.0,7.0,4.0 M83670,11.0,17.0,14.0,22.0,17.0,18.0,15.0,11.0,13.0,9.0,9.0,13.0,7.0,6.0,13.0,7.0,9.0,9.0,189.0,479.0,590.0,543.0,385.0,269.0,182.0,119.0,80.0,58.0,56.0,44.0,32.0,29.0,26.0,34.0,22.0,26.0,20.0,21.0,20.0,25.0,26.0,16.0,17.0,20.0,12.0,15.0,21.0,20.0,9.0,15.0,18.0,14.0,14.0,23.0,14.0,14.0,18.0,22.0,14.0,22.0,13.0,15.0,12.0,12.0,22.0,19.0,11.0,14.0,9.0,16.0,12.0,10.0,11.0,9.0,11.0,7.0,7.0,11.0,13.0,7.0,11.0,8.0,6.0,2.0,5.0,3.0,4.0,3.0,2.0,3.0,2.0,2.0,1.0,1.0,3.0,2.0 M83680,37.0,39.0,37.0,36.0,36.0,42.0,36.0,32.0,46.0,35.0,42.0,38.0,44.0,37.0,38.0,41.0,40.0,35.0,35.0,33.0,39.0,45.0,32.0,48.0,36.0,41.0,59.0,60.0,53.0,51.0,50.0,49.0,53.0,55.0,61.0,45.0,46.0,41.0,54.0,35.0,49.0,48.0,59.0,39.0,44.0,38.0,44.0,32.0,38.0,39.0,48.0,46.0,43.0,61.0,45.0,51.0,49.0,59.0,58.0,47.0,55.0,58.0,62.0,48.0,45.0,38.0,46.0,48.0,36.0,30.0,34.0,39.0,40.0,43.0,25.0,36.0,35.0,32.0,27.0,16.0,22.0,24.0,27.0,16.0,13.0,12.0,16.0,8.0,18.0,13.0,10.0,8.0,8.0,8.0,4.0,13.0 M83681,69.0,70.0,53.0,70.0,74.0,55.0,54.0,70.0,73.0,85.0,74.0,72.0,69.0,80.0,70.0,66.0,73.0,84.0,68.0,86.0,63.0,61.0,66.0,70.0,71.0,90.0,85.0,85.0,87.0,74.0,91.0,90.0,93.0,88.0,108.0,101.0,95.0,86.0,80.0,89.0,92.0,83.0,94.0,68.0,74.0,76.0,75.0,63.0,65.0,50.0,44.0,51.0,47.0,47.0,42.0,45.0,45.0,42.0,43.0,27.0,31.0,34.0,48.0,30.0,28.0,41.0,32.0,21.0,18.0,17.0,14.0,30.0,22.0,15.0,19.0,19.0,14.0,28.0,15.0,15.0,17.0,14.0,14.0,9.0,15.0,12.0,5.0,8.0,11.0,12.0,7.0,10.0,4.0,4.0,4.0,19.0 M83682,25.0,27.0,37.0,35.0,32.0,32.0,31.0,33.0,37.0,34.0,41.0,37.0,37.0,31.0,42.0,44.0,38.0,27.0,37.0,20.0,36.0,35.0,29.0,36.0,27.0,30.0,29.0,33.0,38.0,35.0,54.0,49.0,35.0,35.0,43.0,56.0,32.0,33.0,43.0,47.0,42.0,50.0,39.0,34.0,45.0,29.0,32.0,32.0,29.0,31.0,33.0,40.0,34.0,41.0,30.0,44.0,44.0,45.0,42.0,30.0,29.0,30.0,31.0,37.0,29.0,30.0,34.0,32.0,17.0,16.0,27.0,18.0,14.0,22.0,19.0,17.0,22.0,22.0,24.0,13.0,23.0,17.0,17.0,7.0,7.0,10.0,7.0,4.0,14.0,4.0,6.0,2.0,2.0,1.0,1.0,5.0 M83691,4.0,6.0,3.0,6.0,8.0,7.0,5.0,3.0,7.0,8.0,9.0,5.0,9.0,9.0,2.0,7.0,5.0,10.0,10.0,6.0,8.0,6.0,8.0,5.0,2.0,8.0,6.0,7.0,5.0,9.0,9.0,6.0,5.0,7.0,8.0,9.0,8.0,9.0,11.0,7.0,6.0,11.0,4.0,10.0,6.0,10.0,11.0,11.0,9.0,12.0,12.0,13.0,7.0,13.0,12.0,15.0,18.0,16.0,16.0,9.0,19.0,23.0,18.0,20.0,20.0,15.0,13.0,23.0,6.0,13.0,9.0,11.0,12.0,10.0,18.0,18.0,13.0,15.0,18.0,10.0,16.0,13.0,6.0,4.0,3.0,9.0,7.0,6.0,6.0,8.0,2.0,2.0,4.0,3.0,1.0,3.0 M83693,32.0,38.0,48.0,57.0,41.0,58.0,51.0,51.0,52.0,43.0,42.0,42.0,50.0,59.0,54.0,51.0,54.0,57.0,44.0,37.0,31.0,47.0,37.0,36.0,37.0,39.0,33.0,40.0,48.0,48.0,65.0,57.0,64.0,54.0,70.0,57.0,60.0,61.0,64.0,61.0,66.0,65.0,42.0,49.0,49.0,43.0,43.0,38.0,49.0,39.0,43.0,53.0,51.0,47.0,44.0,44.0,42.0,44.0,53.0,45.0,40.0,28.0,35.0,48.0,41.0,25.0,39.0,31.0,34.0,31.0,22.0,29.0,20.0,25.0,23.0,32.0,21.0,18.0,14.0,15.0,16.0,9.0,6.0,7.0,3.0,4.0,4.0,4.0,6.0,2.0,2.0,2.0,2.0,2.0,,1.0 M83697,19.0,17.0,19.0,26.0,19.0,23.0,19.0,21.0,18.0,27.0,23.0,22.0,22.0,23.0,19.0,21.0,12.0,19.0,19.0,17.0,13.0,23.0,20.0,17.0,17.0,32.0,37.0,17.0,25.0,31.0,22.0,29.0,25.0,32.0,31.0,19.0,28.0,28.0,19.0,20.0,27.0,20.0,34.0,25.0,17.0,19.0,18.0,16.0,20.0,21.0,10.0,20.0,16.0,27.0,16.0,21.0,23.0,19.0,14.0,19.0,17.0,17.0,14.0,17.0,10.0,18.0,19.0,21.0,8.0,15.0,12.0,8.0,14.0,12.0,15.0,7.0,14.0,14.0,9.0,6.0,10.0,13.0,7.0,4.0,8.0,5.0,12.0,13.0,10.0,10.0,6.0,8.0,5.0,3.0,3.0,13.0 M83698,5.0,9.0,12.0,22.0,11.0,15.0,15.0,16.0,17.0,14.0,15.0,15.0,22.0,13.0,18.0,11.0,19.0,19.0,16.0,8.0,12.0,10.0,14.0,8.0,14.0,14.0,16.0,17.0,15.0,14.0,21.0,26.0,11.0,25.0,21.0,22.0,12.0,21.0,17.0,33.0,16.0,10.0,15.0,26.0,19.0,11.0,13.0,13.0,12.0,17.0,26.0,31.0,19.0,18.0,20.0,32.0,23.0,36.0,30.0,29.0,18.0,29.0,26.0,18.0,23.0,18.0,15.0,13.0,13.0,13.0,16.0,18.0,14.0,19.0,14.0,16.0,19.0,31.0,22.0,14.0,18.0,14.0,13.0,12.0,12.0,18.0,16.0,22.0,6.0,10.0,8.0,4.0,8.0,4.0,10.0,8.0 M83701,21.0,26.0,30.0,24.0,22.0,16.0,38.0,31.0,25.0,28.0,18.0,39.0,15.0,30.0,23.0,23.0,20.0,21.0,20.0,18.0,19.0,28.0,11.0,15.0,21.0,19.0,31.0,36.0,41.0,42.0,37.0,27.0,36.0,31.0,36.0,45.0,34.0,30.0,34.0,32.0,30.0,29.0,25.0,30.0,27.0,26.0,14.0,22.0,23.0,27.0,25.0,32.0,25.0,29.0,25.0,33.0,23.0,33.0,34.0,30.0,34.0,40.0,31.0,27.0,34.0,20.0,29.0,27.0,23.0,25.0,19.0,24.0,22.0,26.0,23.0,22.0,23.0,25.0,30.0,13.0,14.0,15.0,22.0,11.0,23.0,20.0,14.0,12.0,5.0,10.0,8.0,9.0,4.0,2.0,4.0,13.0 M83703,17.0,27.0,24.0,19.0,31.0,24.0,31.0,32.0,28.0,44.0,39.0,37.0,37.0,26.0,35.0,35.0,28.0,33.0,26.0,33.0,32.0,32.0,24.0,33.0,30.0,36.0,32.0,30.0,43.0,29.0,39.0,24.0,39.0,39.0,55.0,33.0,39.0,37.0,49.0,36.0,39.0,41.0,37.0,36.0,31.0,31.0,28.0,22.0,38.0,29.0,25.0,37.0,42.0,43.0,42.0,45.0,51.0,40.0,45.0,48.0,31.0,45.0,46.0,40.0,37.0,32.0,31.0,32.0,30.0,30.0,23.0,39.0,19.0,23.0,26.0,31.0,28.0,32.0,39.0,17.0,23.0,28.0,19.0,14.0,13.0,11.0,14.0,6.0,5.0,4.0,7.0,7.0,3.0,6.0,1.0,8.0 M83709,22.0,24.0,20.0,21.0,31.0,26.0,24.0,27.0,44.0,35.0,37.0,21.0,33.0,31.0,33.0,31.0,23.0,28.0,30.0,20.0,24.0,26.0,22.0,30.0,25.0,35.0,27.0,33.0,29.0,26.0,33.0,22.0,37.0,29.0,41.0,45.0,49.0,39.0,37.0,41.0,36.0,47.0,53.0,36.0,38.0,33.0,27.0,35.0,42.0,29.0,32.0,44.0,49.0,71.0,43.0,53.0,44.0,43.0,45.0,35.0,51.0,51.0,42.0,61.0,40.0,40.0,49.0,37.0,41.0,33.0,37.0,28.0,33.0,21.0,29.0,32.0,36.0,29.0,27.0,27.0,25.0,15.0,34.0,16.0,16.0,18.0,6.0,7.0,13.0,10.0,7.0,4.0,8.0,5.0,2.0,3.0 M83711,19.0,19.0,25.0,25.0,14.0,21.0,14.0,27.0,22.0,21.0,26.0,22.0,21.0,30.0,17.0,22.0,23.0,23.0,14.0,17.0,9.0,15.0,11.0,14.0,13.0,18.0,16.0,24.0,25.0,16.0,26.0,27.0,30.0,32.0,31.0,34.0,30.0,32.0,28.0,33.0,23.0,27.0,26.0,29.0,26.0,37.0,20.0,23.0,22.0,21.0,31.0,23.0,28.0,21.0,35.0,36.0,32.0,28.0,25.0,32.0,41.0,41.0,32.0,30.0,15.0,30.0,25.0,35.0,33.0,17.0,34.0,26.0,26.0,26.0,27.0,28.0,27.0,25.0,30.0,16.0,27.0,21.0,20.0,17.0,15.0,14.0,20.0,10.0,17.0,4.0,4.0,9.0,5.0,4.0,2.0,2.0 M83713,32.0,25.0,22.0,31.0,29.0,35.0,32.0,28.0,34.0,31.0,26.0,39.0,35.0,36.0,42.0,34.0,42.0,41.0,37.0,23.0,33.0,30.0,30.0,44.0,34.0,29.0,32.0,37.0,33.0,34.0,34.0,38.0,38.0,42.0,28.0,32.0,42.0,34.0,30.0,29.0,31.0,32.0,42.0,35.0,38.0,33.0,37.0,18.0,20.0,17.0,31.0,30.0,27.0,30.0,27.0,34.0,40.0,24.0,41.0,29.0,39.0,32.0,26.0,33.0,32.0,25.0,36.0,27.0,26.0,19.0,25.0,35.0,19.0,23.0,21.0,28.0,21.0,18.0,32.0,21.0,34.0,11.0,16.0,13.0,11.0,9.0,14.0,9.0,7.0,5.0,3.0,1.0,1.0,3.0,6.0,7.0 M83715,15.0,21.0,26.0,25.0,25.0,22.0,29.0,20.0,26.0,29.0,45.0,36.0,16.0,30.0,25.0,31.0,36.0,30.0,33.0,29.0,19.0,23.0,26.0,23.0,21.0,32.0,23.0,28.0,33.0,28.0,31.0,27.0,27.0,49.0,38.0,36.0,35.0,46.0,42.0,29.0,38.0,27.0,26.0,30.0,30.0,30.0,26.0,23.0,30.0,24.0,34.0,24.0,27.0,36.0,47.0,38.0,33.0,42.0,39.0,33.0,39.0,43.0,47.0,45.0,32.0,28.0,38.0,36.0,32.0,38.0,29.0,18.0,28.0,21.0,26.0,11.0,13.0,24.0,23.0,14.0,18.0,17.0,19.0,9.0,13.0,9.0,9.0,7.0,4.0,7.0,5.0,5.0,4.0,4.0,3.0,4.0 M83717,17.0,17.0,21.0,15.0,19.0,26.0,22.0,24.0,17.0,17.0,22.0,20.0,23.0,26.0,18.0,21.0,24.0,11.0,12.0,23.0,11.0,22.0,16.0,20.0,20.0,24.0,23.0,23.0,22.0,29.0,33.0,19.0,37.0,30.0,26.0,28.0,37.0,29.0,32.0,28.0,22.0,19.0,25.0,16.0,21.0,29.0,11.0,14.0,15.0,20.0,29.0,18.0,19.0,30.0,24.0,26.0,32.0,31.0,28.0,27.0,23.0,34.0,30.0,27.0,12.0,20.0,16.0,19.0,19.0,12.0,15.0,15.0,15.0,13.0,11.0,26.0,14.0,23.0,14.0,12.0,14.0,9.0,9.0,11.0,6.0,7.0,2.0,3.0,6.0,5.0,3.0,3.0,2.0,1.0,1.0,1.0 M83718,18.0,31.0,23.0,28.0,20.0,27.0,21.0,21.0,27.0,22.0,28.0,24.0,16.0,22.0,25.0,22.0,22.0,19.0,24.0,13.0,18.0,21.0,14.0,26.0,29.0,20.0,21.0,32.0,26.0,38.0,30.0,29.0,52.0,28.0,40.0,35.0,34.0,52.0,32.0,31.0,35.0,32.0,40.0,32.0,23.0,23.0,23.0,22.0,32.0,17.0,11.0,19.0,23.0,19.0,22.0,22.0,27.0,12.0,31.0,21.0,22.0,23.0,26.0,13.0,24.0,21.0,11.0,19.0,16.0,23.0,6.0,13.0,11.0,11.0,16.0,12.0,9.0,20.0,12.0,6.0,4.0,10.0,6.0,9.0,8.0,5.0,5.0,7.0,7.0,4.0,7.0,1.0,3.0,2.0,3.0,1.0 M83719,20.0,17.0,15.0,18.0,27.0,18.0,16.0,28.0,30.0,21.0,25.0,22.0,25.0,31.0,25.0,27.0,26.0,17.0,16.0,20.0,19.0,15.0,11.0,13.0,17.0,24.0,23.0,21.0,23.0,36.0,22.0,25.0,25.0,45.0,33.0,19.0,33.0,33.0,38.0,36.0,26.0,31.0,28.0,26.0,31.0,19.0,28.0,27.0,21.0,26.0,26.0,33.0,20.0,25.0,20.0,28.0,34.0,26.0,33.0,34.0,38.0,33.0,37.0,41.0,32.0,22.0,35.0,25.0,24.0,25.0,35.0,25.0,29.0,19.0,13.0,17.0,20.0,14.0,17.0,9.0,11.0,11.0,12.0,16.0,5.0,10.0,10.0,8.0,9.0,4.0,3.0,3.0,8.0,1.0,4.0,9.0 M83723,96.0,109.0,118.0,127.0,111.0,142.0,147.0,152.0,149.0,138.0,164.0,158.0,176.0,162.0,162.0,137.0,153.0,153.0,146.0,145.0,133.0,126.0,126.0,120.0,121.0,126.0,143.0,133.0,149.0,147.0,185.0,159.0,160.0,188.0,170.0,192.0,184.0,164.0,190.0,171.0,179.0,164.0,163.0,166.0,162.0,152.0,146.0,112.0,130.0,118.0,116.0,104.0,138.0,147.0,151.0,166.0,162.0,145.0,146.0,169.0,145.0,146.0,147.0,134.0,130.0,131.0,124.0,106.0,104.0,103.0,99.0,105.0,91.0,89.0,98.0,87.0,86.0,99.0,101.0,70.0,74.0,83.0,54.0,50.0,46.0,41.0,39.0,45.0,36.0,21.0,36.0,26.0,23.0,15.0,13.0,43.0 M83725,28.0,26.0,22.0,25.0,26.0,35.0,28.0,30.0,31.0,34.0,50.0,28.0,29.0,31.0,42.0,24.0,45.0,24.0,43.0,24.0,23.0,25.0,24.0,20.0,17.0,21.0,26.0,28.0,29.0,25.0,31.0,37.0,30.0,40.0,39.0,31.0,52.0,31.0,28.0,30.0,37.0,32.0,24.0,31.0,22.0,37.0,15.0,24.0,10.0,17.0,19.0,20.0,18.0,19.0,28.0,23.0,24.0,16.0,9.0,13.0,20.0,24.0,17.0,14.0,15.0,17.0,14.0,14.0,17.0,21.0,14.0,12.0,18.0,8.0,16.0,12.0,11.0,15.0,11.0,5.0,5.0,6.0,4.0,3.0,6.0,5.0,3.0,7.0,2.0,3.0,2.0,2.0,1.0,4.0,,2.0 M83727,16.0,24.0,14.0,25.0,23.0,20.0,20.0,21.0,19.0,26.0,24.0,20.0,30.0,25.0,26.0,19.0,25.0,23.0,21.0,16.0,18.0,14.0,17.0,16.0,20.0,24.0,30.0,26.0,25.0,33.0,30.0,26.0,27.0,22.0,31.0,35.0,34.0,26.0,32.0,25.0,15.0,30.0,24.0,30.0,23.0,23.0,12.0,19.0,23.0,20.0,21.0,22.0,30.0,25.0,30.0,22.0,19.0,28.0,20.0,33.0,32.0,31.0,35.0,39.0,24.0,27.0,23.0,21.0,25.0,28.0,29.0,33.0,22.0,28.0,23.0,21.0,25.0,25.0,14.0,24.0,27.0,13.0,20.0,17.0,9.0,18.0,10.0,13.0,10.0,8.0,4.0,3.0,1.0,5.0,1.0,3.0 M83738,21.0,33.0,26.0,29.0,26.0,37.0,33.0,31.0,39.0,24.0,35.0,35.0,33.0,24.0,38.0,24.0,38.0,38.0,33.0,38.0,36.0,34.0,35.0,26.0,36.0,50.0,48.0,46.0,46.0,50.0,39.0,48.0,51.0,57.0,46.0,50.0,33.0,45.0,52.0,53.0,33.0,38.0,48.0,44.0,45.0,46.0,43.0,22.0,27.0,30.0,28.0,47.0,40.0,47.0,48.0,48.0,53.0,58.0,60.0,61.0,47.0,42.0,56.0,56.0,50.0,34.0,54.0,50.0,33.0,44.0,42.0,49.0,26.0,45.0,31.0,51.0,41.0,44.0,49.0,34.0,33.0,47.0,32.0,23.0,17.0,23.0,24.0,30.0,27.0,12.0,10.0,8.0,7.0,9.0,2.0,12.0 Y00078,19.0,30.0,28.0,24.0,24.0,27.0,27.0,31.0,35.0,44.0,36.0,34.0,29.0,42.0,33.0,38.0,33.0,43.0,28.0,37.0,22.0,26.0,23.0,38.0,39.0,39.0,29.0,31.0,39.0,32.0,31.0,41.0,38.0,47.0,41.0,40.0,48.0,41.0,39.0,45.0,37.0,44.0,51.0,44.0,36.0,32.0,44.0,36.0,26.0,31.0,29.0,24.0,35.0,41.0,24.0,35.0,32.0,25.0,24.0,30.0,31.0,30.0,23.0,30.0,31.0,28.0,32.0,19.0,26.0,21.0,19.0,23.0,20.0,17.0,20.0,24.0,19.0,26.0,20.0,18.0,15.0,15.0,13.0,9.0,8.0,9.0,12.0,7.0,10.0,6.0,11.0,5.0,3.0,5.0,4.0,7.0 Y02354,32.0,27.0,23.0,36.0,44.0,32.0,32.0,53.0,45.0,38.0,49.0,58.0,55.0,60.0,50.0,62.0,47.0,57.0,59.0,37.0,38.0,37.0,42.0,45.0,46.0,40.0,49.0,58.0,48.0,50.0,32.0,51.0,57.0,66.0,57.0,59.0,75.0,62.0,58.0,65.0,55.0,60.0,49.0,50.0,63.0,54.0,62.0,42.0,51.0,47.0,60.0,59.0,53.0,70.0,55.0,61.0,62.0,65.0,70.0,66.0,69.0,66.0,63.0,75.0,50.0,47.0,45.0,50.0,43.0,43.0,47.0,55.0,51.0,48.0,43.0,52.0,43.0,53.0,45.0,51.0,41.0,40.0,44.0,35.0,22.0,27.0,28.0,22.0,19.0,21.0,16.0,16.0,14.0,8.0,5.0,27.0 Y02521,53.0,48.0,68.0,50.0,59.0,82.0,82.0,75.0,96.0,90.0,98.0,87.0,97.0,93.0,107.0,84.0,97.0,80.0,65.0,67.0,67.0,66.0,42.0,58.0,62.0,56.0,62.0,54.0,83.0,81.0,75.0,74.0,96.0,87.0,87.0,99.0,92.0,86.0,96.0,87.0,81.0,83.0,85.0,82.0,81.0,64.0,68.0,69.0,58.0,58.0,49.0,63.0,48.0,51.0,43.0,57.0,41.0,48.0,59.0,46.0,50.0,51.0,51.0,50.0,55.0,34.0,37.0,40.0,42.0,40.0,33.0,30.0,26.0,34.0,21.0,21.0,33.0,22.0,25.0,20.0,14.0,12.0,18.0,18.0,17.0,13.0,10.0,12.0,5.0,11.0,11.0,7.0,5.0,4.0,5.0,10.0 Y02594,21.0,18.0,16.0,20.0,12.0,16.0,22.0,19.0,26.0,23.0,22.0,15.0,17.0,19.0,21.0,26.0,18.0,20.0,20.0,16.0,20.0,14.0,12.0,24.0,13.0,14.0,20.0,21.0,13.0,20.0,24.0,21.0,15.0,27.0,21.0,23.0,29.0,32.0,23.0,24.0,15.0,22.0,24.0,18.0,20.0,18.0,14.0,21.0,15.0,14.0,19.0,19.0,15.0,25.0,18.0,22.0,19.0,22.0,13.0,13.0,15.0,12.0,14.0,17.0,16.0,21.0,14.0,11.0,23.0,23.0,8.0,14.0,14.0,13.0,12.0,11.0,14.0,9.0,13.0,16.0,14.0,14.0,8.0,9.0,15.0,9.0,7.0,5.0,5.0,7.0,2.0,4.0,3.0,3.0,4.0,10.0 Y02867,29.0,24.0,21.0,28.0,32.0,28.0,32.0,37.0,30.0,25.0,32.0,41.0,37.0,39.0,30.0,35.0,31.0,23.0,33.0,17.0,28.0,18.0,21.0,26.0,22.0,29.0,43.0,39.0,52.0,47.0,30.0,46.0,45.0,38.0,47.0,51.0,56.0,48.0,54.0,34.0,37.0,36.0,26.0,33.0,28.0,30.0,23.0,28.0,32.0,35.0,22.0,19.0,21.0,17.0,17.0,22.0,14.0,18.0,20.0,16.0,17.0,23.0,16.0,15.0,16.0,12.0,16.0,15.0,10.0,15.0,12.0,10.0,11.0,17.0,11.0,10.0,21.0,12.0,3.0,6.0,4.0,7.0,4.0,11.0,3.0,8.0,5.0,3.0,6.0,7.0,3.0,3.0,5.0,3.0,4.0,8.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 H81013,147.0,147.0,137.0,176.0,145.0,144.0,150.0,149.0,179.0,179.0,146.0,170.0,162.0,175.0,151.0,139.0,147.0,161.0,140.0,114.0,111.0,117.0,104.0,127.0,122.0,135.0,161.0,155.0,170.0,163.0,175.0,166.0,198.0,205.0,222.0,232.0,239.0,222.0,217.0,203.0,196.0,214.0,221.0,200.0,208.0,211.0,194.0,216.0,192.0,185.0,191.0,188.0,196.0,212.0,195.0,186.0,194.0,204.0,228.0,184.0,189.0,188.0,156.0,160.0,165.0,165.0,167.0,153.0,148.0,134.0,136.0,140.0,123.0,153.0,107.0,135.0,154.0,169.0,146.0,118.0,137.0,110.0,87.0,84.0,73.0,73.0,70.0,48.0,48.0,47.0,38.0,31.0,30.0,24.0,18.0,41.0 H81027,55.0,64.0,73.0,74.0,74.0,77.0,92.0,85.0,91.0,87.0,94.0,87.0,103.0,99.0,129.0,83.0,95.0,98.0,89.0,67.0,84.0,87.0,79.0,104.0,106.0,90.0,100.0,121.0,86.0,86.0,70.0,79.0,81.0,80.0,91.0,89.0,107.0,113.0,102.0,105.0,108.0,119.0,113.0,108.0,105.0,121.0,100.0,107.0,96.0,109.0,108.0,123.0,108.0,112.0,119.0,116.0,108.0,112.0,109.0,124.0,102.0,104.0,108.0,85.0,83.0,75.0,60.0,64.0,66.0,84.0,63.0,75.0,61.0,72.0,85.0,82.0,95.0,90.0,81.0,68.0,75.0,66.0,74.0,40.0,47.0,40.0,24.0,40.0,35.0,27.0,28.0,15.0,15.0,11.0,15.0,37.0 H81039,19.0,33.0,28.0,42.0,36.0,20.0,35.0,29.0,32.0,36.0,30.0,31.0,37.0,38.0,43.0,35.0,28.0,35.0,26.0,25.0,20.0,20.0,22.0,21.0,30.0,22.0,43.0,29.0,25.0,39.0,30.0,39.0,42.0,44.0,33.0,40.0,54.0,49.0,59.0,53.0,49.0,50.0,43.0,40.0,59.0,42.0,51.0,35.0,33.0,51.0,47.0,37.0,46.0,48.0,50.0,40.0,43.0,43.0,43.0,40.0,57.0,53.0,42.0,38.0,36.0,25.0,37.0,33.0,40.0,41.0,27.0,28.0,32.0,18.0,28.0,26.0,37.0,40.0,40.0,29.0,26.0,26.0,17.0,17.0,15.0,21.0,18.0,16.0,14.0,9.0,9.0,8.0,11.0,10.0,8.0,13.0 H81040,26.0,34.0,35.0,45.0,49.0,45.0,39.0,40.0,43.0,37.0,48.0,53.0,60.0,70.0,58.0,64.0,62.0,59.0,48.0,40.0,50.0,35.0,42.0,41.0,50.0,54.0,56.0,77.0,60.0,55.0,62.0,57.0,81.0,92.0,82.0,74.0,59.0,69.0,69.0,74.0,66.0,63.0,81.0,75.0,58.0,53.0,70.0,68.0,60.0,66.0,51.0,62.0,79.0,70.0,70.0,76.0,50.0,64.0,60.0,61.0,50.0,55.0,42.0,52.0,44.0,53.0,43.0,39.0,29.0,39.0,40.0,39.0,29.0,35.0,44.0,38.0,42.0,39.0,37.0,24.0,31.0,39.0,36.0,32.0,13.0,32.0,25.0,19.0,19.0,15.0,16.0,12.0,14.0,10.0,2.0,9.0 H81047,33.0,44.0,33.0,40.0,39.0,46.0,42.0,51.0,62.0,53.0,69.0,72.0,65.0,67.0,73.0,87.0,84.0,70.0,76.0,92.0,88.0,96.0,85.0,74.0,68.0,79.0,60.0,74.0,59.0,65.0,69.0,78.0,59.0,54.0,63.0,83.0,50.0,74.0,66.0,75.0,80.0,79.0,78.0,67.0,77.0,89.0,82.0,76.0,81.0,79.0,81.0,87.0,85.0,94.0,71.0,86.0,77.0,92.0,70.0,81.0,78.0,70.0,103.0,74.0,74.0,64.0,62.0,57.0,60.0,46.0,52.0,57.0,56.0,54.0,64.0,55.0,59.0,57.0,64.0,41.0,51.0,44.0,28.0,37.0,37.0,34.0,31.0,21.0,27.0,23.0,27.0,20.0,17.0,6.0,10.0,28.0 H81069,97.0,94.0,95.0,122.0,106.0,111.0,120.0,120.0,123.0,138.0,121.0,116.0,149.0,144.0,151.0,157.0,156.0,159.0,130.0,106.0,93.0,124.0,130.0,124.0,107.0,132.0,133.0,139.0,144.0,131.0,104.0,136.0,123.0,133.0,155.0,152.0,129.0,169.0,156.0,148.0,161.0,166.0,170.0,183.0,179.0,192.0,181.0,123.0,146.0,164.0,158.0,149.0,177.0,147.0,169.0,153.0,140.0,131.0,133.0,157.0,130.0,121.0,133.0,129.0,123.0,101.0,91.0,103.0,91.0,87.0,96.0,87.0,101.0,94.0,100.0,97.0,84.0,128.0,121.0,98.0,88.0,79.0,77.0,66.0,67.0,57.0,63.0,58.0,59.0,49.0,37.0,47.0,32.0,24.0,25.0,61.0 H81075,34.0,44.0,41.0,45.0,45.0,52.0,52.0,51.0,48.0,73.0,62.0,45.0,63.0,65.0,64.0,79.0,66.0,72.0,63.0,59.0,55.0,67.0,54.0,64.0,71.0,62.0,68.0,68.0,71.0,85.0,72.0,75.0,77.0,71.0,72.0,83.0,81.0,75.0,75.0,78.0,69.0,61.0,86.0,85.0,77.0,99.0,74.0,73.0,70.0,66.0,90.0,78.0,93.0,88.0,84.0,77.0,82.0,79.0,68.0,88.0,87.0,86.0,79.0,74.0,71.0,62.0,62.0,65.0,46.0,64.0,58.0,63.0,47.0,52.0,36.0,46.0,38.0,53.0,57.0,58.0,28.0,44.0,32.0,27.0,21.0,40.0,23.0,31.0,31.0,24.0,16.0,19.0,15.0,13.0,7.0,19.0 H81082,50.0,36.0,49.0,39.0,33.0,44.0,54.0,44.0,48.0,42.0,54.0,59.0,44.0,55.0,62.0,61.0,59.0,40.0,72.0,44.0,52.0,48.0,50.0,59.0,54.0,63.0,78.0,71.0,82.0,73.0,75.0,78.0,83.0,82.0,89.0,83.0,75.0,73.0,65.0,71.0,76.0,64.0,64.0,65.0,57.0,60.0,53.0,57.0,64.0,54.0,72.0,56.0,73.0,65.0,71.0,60.0,65.0,57.0,76.0,72.0,54.0,65.0,57.0,53.0,47.0,47.0,54.0,56.0,63.0,51.0,41.0,50.0,37.0,35.0,42.0,37.0,48.0,35.0,37.0,37.0,24.0,34.0,28.0,19.0,15.0,20.0,19.0,20.0,14.0,12.0,15.0,11.0,7.0,7.0,4.0,15.0 H81088,50.0,53.0,50.0,64.0,62.0,74.0,63.0,91.0,70.0,101.0,69.0,80.0,86.0,85.0,62.0,69.0,83.0,86.0,107.0,175.0,168.0,134.0,121.0,119.0,124.0,86.0,86.0,88.0,84.0,64.0,77.0,78.0,88.0,83.0,91.0,88.0,77.0,98.0,85.0,98.0,89.0,80.0,101.0,92.0,96.0,101.0,75.0,89.0,96.0,102.0,94.0,90.0,90.0,95.0,107.0,90.0,89.0,97.0,79.0,84.0,72.0,82.0,66.0,86.0,78.0,68.0,76.0,87.0,80.0,58.0,66.0,77.0,73.0,73.0,73.0,79.0,71.0,70.0,75.0,52.0,59.0,67.0,48.0,42.0,57.0,30.0,35.0,47.0,25.0,21.0,16.0,17.0,17.0,18.0,8.0,17.0 H81110,17.0,22.0,19.0,25.0,35.0,30.0,34.0,41.0,40.0,41.0,30.0,52.0,43.0,43.0,57.0,46.0,45.0,51.0,42.0,28.0,25.0,34.0,29.0,25.0,31.0,37.0,36.0,41.0,21.0,20.0,16.0,15.0,20.0,15.0,23.0,39.0,27.0,48.0,37.0,44.0,36.0,42.0,27.0,35.0,57.0,41.0,52.0,43.0,42.0,36.0,40.0,60.0,57.0,53.0,51.0,60.0,52.0,66.0,38.0,37.0,44.0,42.0,42.0,35.0,39.0,38.0,46.0,28.0,38.0,30.0,29.0,37.0,36.0,34.0,26.0,22.0,25.0,46.0,36.0,31.0,30.0,24.0,31.0,18.0,17.0,20.0,16.0,23.0,13.0,15.0,13.0,12.0,8.0,5.0,7.0,25.0 H81130,57.0,72.0,93.0,77.0,70.0,86.0,67.0,78.0,75.0,92.0,97.0,84.0,94.0,94.0,91.0,93.0,101.0,92.0,90.0,57.0,56.0,72.0,74.0,68.0,86.0,74.0,96.0,82.0,76.0,91.0,85.0,88.0,89.0,97.0,104.0,94.0,106.0,84.0,99.0,107.0,84.0,107.0,103.0,125.0,119.0,122.0,105.0,95.0,97.0,111.0,114.0,111.0,118.0,112.0,121.0,127.0,120.0,130.0,124.0,135.0,126.0,129.0,129.0,112.0,112.0,128.0,84.0,91.0,82.0,77.0,80.0,78.0,79.0,93.0,82.0,83.0,67.0,84.0,79.0,66.0,63.0,73.0,49.0,42.0,53.0,40.0,40.0,32.0,23.0,35.0,25.0,18.0,14.0,16.0,8.0,22.0 H81615,60.0,67.0,52.0,71.0,70.0,80.0,72.0,86.0,88.0,119.0,112.0,116.0,110.0,115.0,100.0,125.0,104.0,120.0,109.0,77.0,77.0,68.0,59.0,75.0,62.0,57.0,57.0,66.0,74.0,60.0,61.0,82.0,83.0,60.0,99.0,103.0,79.0,88.0,111.0,104.0,94.0,108.0,107.0,96.0,131.0,125.0,118.0,129.0,129.0,129.0,142.0,118.0,106.0,143.0,126.0,101.0,96.0,111.0,92.0,104.0,107.0,98.0,94.0,86.0,98.0,93.0,82.0,74.0,72.0,74.0,68.0,61.0,65.0,65.0,65.0,75.0,67.0,58.0,58.0,64.0,44.0,50.0,39.0,24.0,24.0,34.0,32.0,21.0,31.0,24.0,23.0,15.0,15.0,13.0,19.0,31.0 J82015,56.0,45.0,48.0,48.0,53.0,45.0,57.0,53.0,68.0,50.0,58.0,59.0,62.0,66.0,50.0,45.0,48.0,52.0,55.0,40.0,54.0,45.0,43.0,44.0,52.0,55.0,52.0,61.0,84.0,56.0,67.0,63.0,76.0,72.0,87.0,76.0,88.0,94.0,87.0,83.0,68.0,88.0,78.0,76.0,63.0,55.0,76.0,88.0,56.0,58.0,62.0,54.0,56.0,71.0,64.0,54.0,64.0,57.0,65.0,79.0,65.0,65.0,55.0,55.0,46.0,38.0,47.0,43.0,46.0,41.0,43.0,47.0,42.0,32.0,38.0,45.0,32.0,46.0,47.0,40.0,32.0,33.0,29.0,37.0,23.0,13.0,22.0,15.0,13.0,15.0,8.0,6.0,7.0,4.0,2.0,8.0 J82049,130.0,132.0,134.0,144.0,146.0,134.0,165.0,146.0,147.0,168.0,155.0,144.0,193.0,154.0,172.0,173.0,173.0,161.0,140.0,112.0,125.0,146.0,139.0,150.0,124.0,134.0,161.0,169.0,162.0,157.0,175.0,168.0,189.0,198.0,222.0,205.0,212.0,205.0,186.0,197.0,199.0,191.0,189.0,201.0,206.0,193.0,176.0,209.0,173.0,197.0,192.0,192.0,189.0,228.0,214.0,202.0,206.0,205.0,222.0,199.0,209.0,214.0,216.0,171.0,196.0,185.0,192.0,189.0,157.0,151.0,156.0,174.0,159.0,155.0,179.0,161.0,180.0,156.0,196.0,144.0,158.0,148.0,110.0,112.0,86.0,85.0,80.0,57.0,58.0,44.0,38.0,36.0,20.0,12.0,12.0,43.0 J82066,125.0,121.0,126.0,135.0,139.0,122.0,140.0,139.0,152.0,137.0,138.0,137.0,127.0,135.0,113.0,111.0,119.0,102.0,120.0,110.0,90.0,121.0,107.0,108.0,134.0,146.0,171.0,194.0,178.0,164.0,202.0,209.0,217.0,177.0,219.0,183.0,200.0,165.0,205.0,164.0,172.0,164.0,161.0,155.0,166.0,174.0,154.0,130.0,134.0,134.0,135.0,128.0,153.0,137.0,140.0,137.0,161.0,147.0,149.0,155.0,156.0,143.0,122.0,119.0,126.0,95.0,102.0,97.0,103.0,95.0,85.0,73.0,98.0,95.0,79.0,81.0,76.0,75.0,81.0,59.0,68.0,57.0,40.0,34.0,25.0,28.0,31.0,38.0,25.0,20.0,25.0,13.0,12.0,6.0,9.0,23.0 J82067,105.0,107.0,113.0,110.0,101.0,104.0,104.0,104.0,123.0,123.0,119.0,104.0,109.0,108.0,115.0,114.0,91.0,118.0,100.0,111.0,90.0,74.0,70.0,95.0,93.0,97.0,144.0,114.0,111.0,133.0,152.0,131.0,166.0,189.0,189.0,173.0,170.0,194.0,171.0,144.0,136.0,136.0,132.0,130.0,125.0,152.0,129.0,135.0,136.0,135.0,132.0,135.0,151.0,133.0,142.0,133.0,150.0,155.0,146.0,134.0,154.0,131.0,128.0,100.0,111.0,104.0,114.0,81.0,61.0,80.0,73.0,85.0,70.0,63.0,64.0,70.0,79.0,72.0,68.0,50.0,54.0,49.0,43.0,46.0,36.0,28.0,31.0,28.0,19.0,18.0,30.0,16.0,13.0,10.0,7.0,14.0 J82099,59.0,57.0,61.0,79.0,74.0,85.0,92.0,100.0,103.0,116.0,96.0,108.0,95.0,106.0,113.0,124.0,87.0,113.0,95.0,78.0,63.0,79.0,52.0,49.0,77.0,65.0,55.0,71.0,62.0,67.0,59.0,81.0,84.0,79.0,97.0,118.0,106.0,135.0,100.0,115.0,114.0,125.0,132.0,124.0,113.0,134.0,110.0,106.0,102.0,118.0,113.0,120.0,118.0,133.0,123.0,97.0,86.0,131.0,95.0,76.0,97.0,114.0,75.0,66.0,75.0,69.0,76.0,74.0,45.0,64.0,57.0,67.0,54.0,71.0,62.0,72.0,59.0,69.0,83.0,75.0,56.0,79.0,51.0,49.0,43.0,38.0,35.0,37.0,30.0,24.0,24.0,24.0,22.0,9.0,9.0,37.0 J82110,87.0,99.0,121.0,116.0,141.0,131.0,131.0,160.0,157.0,161.0,189.0,179.0,179.0,200.0,207.0,195.0,184.0,176.0,159.0,131.0,135.0,115.0,133.0,153.0,138.0,131.0,153.0,146.0,154.0,139.0,133.0,142.0,161.0,153.0,173.0,174.0,147.0,163.0,189.0,173.0,184.0,183.0,226.0,214.0,234.0,216.0,216.0,215.0,185.0,220.0,190.0,230.0,246.0,232.0,254.0,199.0,198.0,206.0,192.0,208.0,216.0,192.0,171.0,149.0,144.0,157.0,142.0,131.0,143.0,103.0,134.0,124.0,125.0,122.0,111.0,127.0,128.0,153.0,153.0,117.0,135.0,107.0,103.0,89.0,96.0,95.0,89.0,77.0,58.0,54.0,51.0,40.0,35.0,29.0,23.0,56.0 J82120,40.0,42.0,41.0,48.0,43.0,46.0,46.0,50.0,41.0,49.0,37.0,45.0,41.0,38.0,52.0,57.0,51.0,62.0,69.0,45.0,49.0,53.0,45.0,55.0,44.0,65.0,53.0,69.0,70.0,62.0,55.0,60.0,88.0,70.0,67.0,82.0,81.0,74.0,83.0,73.0,90.0,74.0,79.0,67.0,72.0,68.0,62.0,56.0,58.0,57.0,81.0,65.0,76.0,75.0,68.0,67.0,61.0,81.0,56.0,70.0,65.0,53.0,65.0,52.0,60.0,57.0,44.0,44.0,49.0,47.0,54.0,53.0,54.0,51.0,56.0,41.0,55.0,57.0,67.0,38.0,37.0,44.0,50.0,26.0,36.0,38.0,35.0,23.0,22.0,14.0,14.0,12.0,14.0,8.0,12.0,31.0 J82125,26.0,25.0,39.0,26.0,40.0,46.0,48.0,36.0,38.0,48.0,48.0,51.0,41.0,40.0,50.0,54.0,44.0,37.0,52.0,43.0,28.0,42.0,33.0,34.0,38.0,51.0,53.0,41.0,37.0,50.0,42.0,56.0,56.0,63.0,58.0,60.0,60.0,52.0,65.0,54.0,53.0,57.0,53.0,51.0,69.0,50.0,47.0,44.0,56.0,48.0,44.0,49.0,49.0,34.0,56.0,52.0,58.0,62.0,62.0,76.0,50.0,65.0,68.0,44.0,52.0,55.0,41.0,37.0,44.0,48.0,39.0,38.0,34.0,40.0,31.0,39.0,28.0,35.0,44.0,36.0,24.0,33.0,17.0,21.0,19.0,22.0,18.0,14.0,9.0,10.0,9.0,4.0,3.0,3.0,4.0,9.0 J82142,69.0,70.0,63.0,76.0,94.0,83.0,68.0,96.0,59.0,59.0,69.0,72.0,57.0,64.0,70.0,59.0,54.0,68.0,56.0,43.0,54.0,46.0,45.0,62.0,61.0,59.0,78.0,74.0,83.0,96.0,91.0,98.0,118.0,117.0,117.0,97.0,109.0,97.0,103.0,102.0,86.0,80.0,100.0,87.0,80.0,100.0,79.0,65.0,79.0,59.0,73.0,75.0,70.0,59.0,67.0,69.0,72.0,63.0,54.0,61.0,70.0,70.0,73.0,68.0,60.0,46.0,52.0,61.0,67.0,52.0,44.0,42.0,45.0,52.0,45.0,42.0,43.0,54.0,38.0,21.0,29.0,21.0,22.0,31.0,20.0,16.0,11.0,11.0,10.0,7.0,9.0,8.0,2.0,4.0,2.0,9.0 J82178,66.0,77.0,65.0,79.0,79.0,63.0,63.0,70.0,63.0,84.0,71.0,79.0,58.0,67.0,51.0,55.0,55.0,48.0,67.0,54.0,61.0,69.0,77.0,91.0,90.0,119.0,101.0,117.0,121.0,119.0,120.0,120.0,109.0,113.0,111.0,119.0,119.0,124.0,142.0,122.0,94.0,93.0,101.0,103.0,92.0,101.0,75.0,64.0,82.0,55.0,82.0,68.0,71.0,70.0,72.0,70.0,68.0,65.0,73.0,72.0,69.0,60.0,62.0,53.0,62.0,60.0,55.0,47.0,49.0,61.0,53.0,56.0,54.0,57.0,55.0,48.0,53.0,60.0,52.0,38.0,32.0,32.0,21.0,27.0,20.0,16.0,26.0,26.0,11.0,11.0,6.0,8.0,7.0,6.0,3.0,8.0 J82181,33.0,45.0,49.0,41.0,50.0,51.0,42.0,39.0,39.0,63.0,66.0,54.0,71.0,43.0,64.0,63.0,45.0,48.0,46.0,45.0,51.0,45.0,36.0,44.0,51.0,59.0,71.0,51.0,72.0,71.0,67.0,79.0,85.0,87.0,86.0,70.0,79.0,88.0,75.0,86.0,75.0,76.0,65.0,82.0,53.0,72.0,49.0,66.0,61.0,57.0,55.0,48.0,60.0,74.0,73.0,64.0,73.0,52.0,69.0,55.0,53.0,48.0,58.0,61.0,46.0,51.0,43.0,44.0,29.0,39.0,37.0,43.0,45.0,47.0,42.0,32.0,47.0,43.0,34.0,25.0,28.0,21.0,32.0,12.0,15.0,13.0,13.0,9.0,4.0,11.0,9.0,5.0,12.0,3.0,4.0,13.0 J82198,64.0,61.0,59.0,45.0,46.0,40.0,46.0,54.0,39.0,40.0,42.0,25.0,33.0,39.0,35.0,32.0,27.0,33.0,24.0,32.0,18.0,34.0,41.0,52.0,58.0,60.0,62.0,65.0,87.0,91.0,72.0,73.0,79.0,78.0,69.0,88.0,71.0,62.0,82.0,46.0,42.0,44.0,50.0,30.0,44.0,34.0,33.0,25.0,23.0,38.0,24.0,39.0,37.0,32.0,31.0,43.0,38.0,31.0,28.0,22.0,22.0,21.0,18.0,19.0,22.0,18.0,16.0,11.0,14.0,6.0,17.0,15.0,16.0,16.0,17.0,13.0,27.0,13.0,18.0,14.0,12.0,10.0,10.0,6.0,11.0,13.0,10.0,6.0,13.0,13.0,9.0,2.0,4.0,4.0,3.0,12.0 J82628,27.0,32.0,31.0,35.0,30.0,36.0,39.0,39.0,34.0,50.0,38.0,39.0,52.0,46.0,29.0,43.0,33.0,40.0,34.0,35.0,21.0,19.0,21.0,32.0,21.0,29.0,20.0,22.0,38.0,22.0,20.0,33.0,45.0,37.0,36.0,48.0,37.0,45.0,39.0,47.0,48.0,48.0,41.0,40.0,49.0,41.0,43.0,52.0,53.0,43.0,44.0,39.0,41.0,37.0,42.0,39.0,45.0,46.0,37.0,42.0,47.0,36.0,35.0,43.0,45.0,36.0,33.0,28.0,26.0,24.0,15.0,31.0,30.0,25.0,21.0,23.0,23.0,30.0,23.0,17.0,12.0,30.0,20.0,16.0,16.0,18.0,17.0,21.0,17.0,14.0,13.0,15.0,12.0,17.0,11.0,33.0 J82630,25.0,33.0,49.0,45.0,46.0,55.0,38.0,54.0,43.0,49.0,50.0,41.0,44.0,35.0,32.0,32.0,33.0,35.0,43.0,22.0,30.0,30.0,26.0,22.0,25.0,37.0,48.0,55.0,55.0,62.0,67.0,67.0,65.0,74.0,68.0,78.0,84.0,69.0,60.0,59.0,63.0,72.0,54.0,56.0,61.0,59.0,50.0,41.0,37.0,44.0,43.0,45.0,43.0,36.0,49.0,46.0,51.0,38.0,21.0,32.0,17.0,26.0,27.0,31.0,22.0,19.0,30.0,25.0,17.0,22.0,27.0,14.0,15.0,12.0,9.0,12.0,11.0,15.0,11.0,9.0,6.0,9.0,11.0,7.0,12.0,7.0,4.0,6.0,5.0,4.0,3.0,3.0,3.0,2.0,,1.0 K81001,95.0,102.0,100.0,105.0,108.0,102.0,90.0,92.0,70.0,92.0,86.0,103.0,91.0,89.0,79.0,90.0,100.0,101.0,89.0,66.0,65.0,64.0,69.0,72.0,66.0,87.0,79.0,105.0,104.0,120.0,110.0,118.0,136.0,151.0,135.0,122.0,144.0,151.0,138.0,137.0,118.0,149.0,114.0,111.0,122.0,133.0,106.0,113.0,93.0,89.0,101.0,104.0,112.0,117.0,91.0,96.0,95.0,85.0,100.0,100.0,88.0,99.0,87.0,100.0,84.0,91.0,76.0,74.0,63.0,74.0,62.0,60.0,49.0,45.0,53.0,43.0,54.0,45.0,44.0,38.0,44.0,27.0,45.0,28.0,36.0,26.0,33.0,41.0,22.0,26.0,24.0,10.0,10.0,8.0,8.0,27.0 K81005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, K81010,24.0,16.0,13.0,16.0,21.0,29.0,20.0,36.0,35.0,34.0,36.0,36.0,47.0,52.0,37.0,50.0,50.0,65.0,48.0,52.0,43.0,31.0,51.0,62.0,54.0,42.0,36.0,35.0,38.0,25.0,32.0,28.0,24.0,30.0,38.0,24.0,21.0,38.0,31.0,36.0,41.0,34.0,43.0,38.0,62.0,60.0,43.0,51.0,51.0,60.0,62.0,64.0,70.0,67.0,75.0,77.0,58.0,60.0,65.0,77.0,60.0,44.0,63.0,51.0,55.0,53.0,40.0,35.0,51.0,34.0,35.0,39.0,28.0,40.0,26.0,48.0,34.0,43.0,42.0,28.0,28.0,23.0,23.0,27.0,28.0,23.0,16.0,22.0,20.0,14.0,20.0,9.0,5.0,7.0,7.0,13.0 K81015,13.0,11.0,21.0,18.0,17.0,28.0,26.0,26.0,20.0,17.0,23.0,26.0,22.0,27.0,19.0,25.0,19.0,15.0,12.0,11.0,13.0,15.0,20.0,13.0,12.0,16.0,13.0,12.0,17.0,21.0,13.0,15.0,20.0,23.0,25.0,25.0,35.0,29.0,43.0,21.0,17.0,33.0,36.0,24.0,36.0,33.0,28.0,22.0,18.0,31.0,29.0,18.0,21.0,16.0,26.0,23.0,27.0,29.0,26.0,23.0,19.0,25.0,14.0,23.0,28.0,26.0,16.0,22.0,23.0,23.0,22.0,27.0,27.0,18.0,12.0,20.0,17.0,23.0,26.0,13.0,12.0,8.0,9.0,5.0,5.0,6.0,4.0,5.0,4.0,5.0,5.0,,4.0,2.0,2.0,1.0 K81018,43.0,43.0,58.0,64.0,46.0,62.0,45.0,65.0,63.0,60.0,57.0,71.0,66.0,53.0,70.0,73.0,64.0,57.0,69.0,40.0,45.0,42.0,33.0,42.0,61.0,43.0,61.0,44.0,55.0,52.0,54.0,67.0,63.0,47.0,68.0,61.0,72.0,68.0,59.0,77.0,83.0,63.0,83.0,100.0,71.0,65.0,66.0,74.0,77.0,76.0,84.0,87.0,80.0,77.0,77.0,64.0,64.0,63.0,69.0,72.0,70.0,53.0,64.0,64.0,59.0,68.0,51.0,58.0,59.0,42.0,67.0,52.0,43.0,38.0,60.0,53.0,69.0,66.0,62.0,36.0,45.0,43.0,37.0,29.0,20.0,28.0,25.0,18.0,18.0,21.0,14.0,13.0,11.0,9.0,7.0,7.0 K81019,44.0,39.0,30.0,42.0,37.0,30.0,31.0,43.0,47.0,44.0,35.0,28.0,29.0,29.0,42.0,38.0,29.0,31.0,25.0,26.0,23.0,28.0,19.0,32.0,32.0,44.0,44.0,48.0,46.0,46.0,65.0,55.0,63.0,53.0,62.0,54.0,57.0,56.0,58.0,57.0,30.0,53.0,59.0,38.0,51.0,42.0,46.0,48.0,47.0,37.0,23.0,21.0,43.0,16.0,29.0,19.0,16.0,21.0,13.0,25.0,16.0,24.0,15.0,23.0,13.0,17.0,26.0,13.0,7.0,25.0,14.0,10.0,12.0,20.0,13.0,12.0,8.0,12.0,5.0,3.0,12.0,6.0,4.0,8.0,7.0,5.0,7.0,5.0,6.0,4.0,5.0,4.0,1.0,2.0,,5.0 K81020,56.0,92.0,85.0,100.0,91.0,97.0,87.0,100.0,100.0,111.0,104.0,96.0,127.0,139.0,117.0,94.0,135.0,127.0,115.0,74.0,72.0,76.0,75.0,101.0,121.0,86.0,99.0,88.0,118.0,93.0,110.0,91.0,124.0,139.0,148.0,151.0,156.0,145.0,133.0,177.0,144.0,150.0,146.0,149.0,149.0,154.0,142.0,130.0,119.0,142.0,135.0,97.0,129.0,116.0,131.0,129.0,133.0,108.0,112.0,122.0,108.0,113.0,86.0,81.0,101.0,117.0,123.0,83.0,81.0,88.0,86.0,95.0,86.0,78.0,77.0,90.0,88.0,102.0,95.0,65.0,75.0,66.0,69.0,56.0,38.0,48.0,45.0,48.0,38.0,31.0,23.0,22.0,18.0,12.0,10.0,29.0 K81021,36.0,37.0,45.0,52.0,47.0,39.0,46.0,55.0,54.0,54.0,53.0,58.0,67.0,66.0,65.0,66.0,45.0,62.0,57.0,41.0,36.0,49.0,44.0,46.0,58.0,49.0,46.0,62.0,51.0,58.0,51.0,58.0,64.0,60.0,67.0,60.0,60.0,71.0,67.0,77.0,65.0,67.0,77.0,61.0,73.0,78.0,84.0,64.0,60.0,77.0,77.0,59.0,52.0,79.0,73.0,70.0,64.0,64.0,81.0,83.0,72.0,58.0,75.0,78.0,63.0,52.0,47.0,61.0,45.0,43.0,50.0,51.0,49.0,52.0,43.0,41.0,48.0,49.0,42.0,48.0,33.0,43.0,37.0,26.0,26.0,21.0,30.0,20.0,23.0,17.0,13.0,14.0,14.0,9.0,7.0,18.0 K81024,121.0,117.0,127.0,133.0,142.0,147.0,161.0,168.0,157.0,173.0,186.0,177.0,178.0,206.0,187.0,180.0,184.0,160.0,133.0,114.0,122.0,149.0,136.0,147.0,142.0,131.0,134.0,145.0,166.0,139.0,154.0,155.0,167.0,153.0,185.0,176.0,208.0,189.0,211.0,198.0,231.0,209.0,231.0,206.0,209.0,202.0,177.0,154.0,157.0,173.0,135.0,121.0,115.0,142.0,101.0,114.0,108.0,109.0,123.0,124.0,83.0,104.0,104.0,82.0,89.0,82.0,111.0,66.0,79.0,74.0,90.0,60.0,56.0,77.0,47.0,55.0,45.0,61.0,50.0,40.0,43.0,37.0,40.0,32.0,25.0,30.0,18.0,26.0,27.0,29.0,13.0,11.0,8.0,7.0,5.0,15.0 K81028,25.0,22.0,23.0,30.0,27.0,28.0,32.0,35.0,43.0,23.0,39.0,58.0,71.0,88.0,109.0,124.0,127.0,137.0,99.0,73.0,64.0,43.0,56.0,44.0,57.0,35.0,33.0,44.0,37.0,34.0,46.0,43.0,33.0,42.0,40.0,47.0,33.0,46.0,33.0,45.0,41.0,50.0,56.0,50.0,60.0,58.0,58.0,63.0,42.0,60.0,66.0,69.0,68.0,84.0,56.0,62.0,70.0,74.0,74.0,68.0,83.0,67.0,64.0,60.0,70.0,83.0,67.0,52.0,63.0,44.0,53.0,44.0,40.0,37.0,35.0,41.0,54.0,43.0,44.0,37.0,46.0,38.0,29.0,29.0,30.0,26.0,26.0,20.0,16.0,18.0,17.0,16.0,16.0,14.0,8.0,24.0 K81030,150.0,171.0,163.0,201.0,192.0,207.0,204.0,195.0,212.0,218.0,205.0,251.0,243.0,275.0,242.0,250.0,257.0,228.0,218.0,189.0,167.0,202.0,189.0,207.0,220.0,210.0,218.0,239.0,225.0,221.0,215.0,254.0,271.0,294.0,253.0,284.0,303.0,292.0,289.0,280.0,291.0,281.0,285.0,299.0,326.0,298.0,308.0,278.0,255.0,292.0,276.0,292.0,286.0,269.0,303.0,255.0,278.0,273.0,269.0,279.0,270.0,265.0,248.0,249.0,221.0,256.0,243.0,223.0,215.0,211.0,216.0,203.0,222.0,198.0,187.0,185.0,217.0,219.0,246.0,172.0,160.0,137.0,108.0,84.0,91.0,90.0,86.0,72.0,63.0,66.0,42.0,34.0,32.0,29.0,29.0,69.0 K81034,70.0,67.0,71.0,62.0,62.0,65.0,69.0,72.0,82.0,64.0,68.0,75.0,78.0,84.0,83.0,70.0,88.0,84.0,53.0,66.0,75.0,63.0,69.0,82.0,83.0,74.0,75.0,80.0,98.0,79.0,102.0,84.0,94.0,86.0,98.0,83.0,93.0,70.0,80.0,95.0,103.0,100.0,82.0,59.0,84.0,86.0,70.0,63.0,70.0,62.0,59.0,58.0,57.0,63.0,43.0,55.0,58.0,61.0,49.0,50.0,51.0,41.0,37.0,41.0,46.0,44.0,43.0,49.0,38.0,30.0,26.0,25.0,22.0,27.0,20.0,25.0,23.0,19.0,19.0,17.0,17.0,16.0,13.0,14.0,18.0,16.0,12.0,7.0,4.0,9.0,7.0,9.0,5.0,5.0,1.0,10.0 K81036,71.0,67.0,55.0,67.0,50.0,82.0,69.0,75.0,68.0,74.0,77.0,74.0,69.0,63.0,87.0,76.0,73.0,70.0,53.0,43.0,44.0,39.0,56.0,52.0,86.0,75.0,68.0,97.0,93.0,92.0,113.0,99.0,103.0,107.0,123.0,128.0,113.0,115.0,106.0,119.0,124.0,108.0,97.0,91.0,88.0,89.0,89.0,96.0,72.0,78.0,68.0,77.0,68.0,73.0,79.0,71.0,74.0,75.0,70.0,64.0,63.0,76.0,57.0,61.0,60.0,54.0,48.0,56.0,56.0,50.0,45.0,50.0,44.0,30.0,40.0,27.0,46.0,50.0,52.0,40.0,40.0,29.0,41.0,26.0,20.0,34.0,18.0,21.0,11.0,14.0,13.0,17.0,6.0,7.0,5.0,10.0 K81042,20.0,39.0,26.0,40.0,43.0,38.0,44.0,43.0,46.0,44.0,40.0,52.0,60.0,40.0,40.0,49.0,51.0,39.0,50.0,34.0,30.0,27.0,28.0,31.0,48.0,39.0,39.0,33.0,36.0,39.0,39.0,34.0,29.0,46.0,34.0,38.0,42.0,42.0,52.0,44.0,55.0,44.0,54.0,54.0,62.0,48.0,61.0,62.0,57.0,54.0,60.0,73.0,54.0,72.0,54.0,74.0,62.0,71.0,68.0,67.0,77.0,61.0,71.0,47.0,78.0,47.0,41.0,42.0,43.0,42.0,40.0,39.0,43.0,47.0,45.0,50.0,32.0,47.0,54.0,34.0,43.0,44.0,29.0,27.0,30.0,21.0,13.0,18.0,24.0,15.0,24.0,15.0,6.0,8.0,6.0,13.0 K81043,127.0,117.0,96.0,134.0,116.0,137.0,129.0,136.0,137.0,116.0,104.0,129.0,127.0,119.0,108.0,106.0,110.0,115.0,105.0,95.0,100.0,105.0,105.0,126.0,123.0,127.0,153.0,151.0,156.0,174.0,164.0,169.0,168.0,162.0,183.0,173.0,164.0,193.0,194.0,183.0,166.0,160.0,146.0,156.0,161.0,137.0,123.0,119.0,114.0,109.0,102.0,105.0,109.0,102.0,96.0,105.0,92.0,74.0,88.0,76.0,92.0,74.0,65.0,63.0,69.0,51.0,66.0,47.0,58.0,48.0,54.0,45.0,46.0,42.0,32.0,33.0,34.0,45.0,53.0,28.0,24.0,27.0,21.0,22.0,19.0,23.0,18.0,12.0,12.0,10.0,8.0,10.0,11.0,5.0,4.0,13.0 K81046,43.0,58.0,43.0,34.0,41.0,39.0,32.0,53.0,36.0,48.0,36.0,35.0,45.0,47.0,42.0,50.0,46.0,47.0,36.0,42.0,35.0,40.0,28.0,45.0,53.0,44.0,65.0,76.0,65.0,64.0,84.0,71.0,79.0,70.0,83.0,72.0,56.0,57.0,59.0,64.0,67.0,49.0,65.0,73.0,57.0,59.0,50.0,59.0,73.0,63.0,65.0,51.0,62.0,60.0,74.0,60.0,58.0,69.0,58.0,42.0,51.0,51.0,50.0,48.0,56.0,34.0,33.0,27.0,45.0,30.0,34.0,29.0,35.0,29.0,30.0,28.0,27.0,42.0,24.0,26.0,33.0,21.0,23.0,19.0,14.0,16.0,22.0,16.0,8.0,8.0,7.0,6.0,4.0,9.0,2.0,15.0 K81060,67.0,82.0,74.0,77.0,73.0,76.0,107.0,70.0,79.0,76.0,83.0,96.0,81.0,83.0,71.0,76.0,77.0,76.0,84.0,49.0,63.0,47.0,51.0,52.0,52.0,63.0,60.0,62.0,57.0,75.0,84.0,91.0,89.0,108.0,100.0,99.0,100.0,109.0,102.0,99.0,103.0,114.0,106.0,103.0,106.0,106.0,110.0,94.0,91.0,89.0,93.0,79.0,87.0,73.0,104.0,71.0,76.0,85.0,79.0,89.0,83.0,81.0,83.0,82.0,70.0,68.0,69.0,62.0,63.0,49.0,56.0,35.0,40.0,49.0,47.0,34.0,45.0,56.0,48.0,44.0,37.0,33.0,13.0,22.0,15.0,18.0,19.0,11.0,6.0,15.0,12.0,15.0,7.0,9.0,3.0,15.0 K81066,51.0,52.0,48.0,39.0,48.0,59.0,64.0,58.0,60.0,62.0,71.0,69.0,71.0,94.0,78.0,70.0,78.0,86.0,66.0,54.0,49.0,46.0,50.0,54.0,58.0,48.0,54.0,69.0,61.0,74.0,71.0,69.0,68.0,88.0,72.0,84.0,78.0,61.0,73.0,77.0,78.0,71.0,90.0,77.0,82.0,87.0,89.0,84.0,93.0,80.0,80.0,91.0,94.0,89.0,77.0,98.0,76.0,101.0,84.0,67.0,93.0,78.0,74.0,63.0,68.0,51.0,63.0,49.0,65.0,37.0,38.0,41.0,41.0,47.0,34.0,37.0,51.0,46.0,40.0,36.0,41.0,37.0,24.0,31.0,24.0,25.0,31.0,23.0,32.0,20.0,21.0,14.0,17.0,18.0,8.0,32.0 K81068,27.0,33.0,36.0,41.0,32.0,50.0,42.0,36.0,31.0,46.0,47.0,46.0,37.0,45.0,54.0,42.0,51.0,39.0,40.0,29.0,28.0,30.0,37.0,41.0,44.0,42.0,43.0,38.0,53.0,48.0,48.0,43.0,57.0,52.0,67.0,62.0,47.0,56.0,60.0,60.0,70.0,80.0,70.0,74.0,61.0,69.0,67.0,67.0,71.0,77.0,67.0,70.0,65.0,73.0,82.0,82.0,75.0,78.0,83.0,92.0,69.0,73.0,64.0,78.0,67.0,53.0,76.0,59.0,41.0,57.0,53.0,49.0,42.0,49.0,33.0,44.0,43.0,50.0,42.0,34.0,31.0,40.0,23.0,27.0,22.0,24.0,14.0,25.0,22.0,9.0,13.0,14.0,13.0,12.0,8.0,12.0 K81074,50.0,47.0,48.0,51.0,55.0,47.0,51.0,48.0,51.0,62.0,66.0,57.0,72.0,60.0,58.0,58.0,62.0,71.0,193.0,470.0,627.0,546.0,370.0,307.0,235.0,112.0,118.0,117.0,98.0,110.0,114.0,76.0,90.0,76.0,76.0,82.0,76.0,95.0,89.0,73.0,72.0,89.0,86.0,81.0,98.0,80.0,83.0,94.0,74.0,101.0,101.0,68.0,93.0,76.0,74.0,79.0,80.0,85.0,76.0,58.0,85.0,60.0,63.0,57.0,54.0,43.0,41.0,54.0,31.0,33.0,38.0,45.0,46.0,42.0,35.0,35.0,46.0,48.0,41.0,45.0,31.0,39.0,37.0,25.0,19.0,22.0,24.0,17.0,18.0,15.0,15.0,9.0,12.0,6.0,8.0,16.0 K81075,171.0,216.0,212.0,200.0,223.0,222.0,245.0,270.0,272.0,253.0,273.0,282.0,305.0,298.0,285.0,347.0,298.0,302.0,278.0,254.0,240.0,198.0,219.0,232.0,217.0,256.0,265.0,255.0,273.0,273.0,264.0,293.0,275.0,305.0,289.0,277.0,311.0,335.0,309.0,361.0,365.0,352.0,360.0,321.0,337.0,327.0,297.0,277.0,258.0,259.0,260.0,215.0,227.0,231.0,212.0,204.0,201.0,243.0,194.0,181.0,194.0,182.0,175.0,162.0,160.0,150.0,129.0,123.0,118.0,121.0,95.0,101.0,118.0,70.0,74.0,89.0,71.0,90.0,65.0,68.0,57.0,52.0,57.0,41.0,45.0,45.0,36.0,34.0,34.0,34.0,22.0,24.0,14.0,15.0,15.0,30.0 K81076,19.0,16.0,21.0,28.0,27.0,33.0,28.0,41.0,32.0,50.0,41.0,38.0,48.0,47.0,59.0,50.0,66.0,74.0,53.0,50.0,53.0,47.0,40.0,48.0,36.0,48.0,42.0,35.0,48.0,38.0,46.0,30.0,36.0,38.0,36.0,34.0,36.0,38.0,45.0,44.0,33.0,54.0,47.0,52.0,68.0,54.0,49.0,61.0,66.0,66.0,59.0,72.0,70.0,90.0,84.0,87.0,76.0,80.0,78.0,74.0,101.0,82.0,76.0,69.0,61.0,68.0,62.0,70.0,62.0,57.0,49.0,58.0,47.0,48.0,42.0,51.0,59.0,78.0,64.0,61.0,57.0,59.0,50.0,35.0,20.0,38.0,38.0,31.0,18.0,18.0,21.0,16.0,17.0,8.0,8.0,20.0 K81082,55.0,58.0,47.0,69.0,59.0,70.0,68.0,50.0,85.0,73.0,91.0,91.0,100.0,96.0,114.0,86.0,100.0,89.0,78.0,78.0,39.0,47.0,49.0,53.0,58.0,66.0,62.0,69.0,64.0,61.0,61.0,49.0,63.0,84.0,81.0,76.0,84.0,79.0,87.0,96.0,113.0,99.0,106.0,94.0,108.0,87.0,97.0,80.0,80.0,75.0,76.0,76.0,75.0,74.0,59.0,60.0,69.0,59.0,62.0,55.0,60.0,51.0,55.0,36.0,47.0,51.0,31.0,37.0,28.0,30.0,30.0,32.0,28.0,19.0,25.0,28.0,34.0,28.0,16.0,19.0,15.0,11.0,15.0,13.0,11.0,11.0,8.0,6.0,8.0,3.0,5.0,3.0,5.0,5.0,1.0,6.0 K81083,103.0,118.0,120.0,123.0,111.0,135.0,128.0,128.0,156.0,119.0,125.0,134.0,143.0,131.0,153.0,148.0,135.0,140.0,123.0,104.0,88.0,106.0,112.0,93.0,121.0,123.0,120.0,134.0,131.0,133.0,144.0,135.0,152.0,131.0,142.0,138.0,123.0,149.0,153.0,148.0,138.0,147.0,141.0,141.0,132.0,126.0,113.0,134.0,105.0,120.0,90.0,105.0,94.0,92.0,97.0,86.0,94.0,79.0,73.0,84.0,49.0,58.0,44.0,75.0,73.0,55.0,59.0,57.0,57.0,55.0,45.0,51.0,47.0,46.0,47.0,26.0,34.0,26.0,39.0,24.0,21.0,22.0,22.0,18.0,19.0,25.0,17.0,27.0,12.0,18.0,7.0,9.0,7.0,8.0,10.0,14.0 K81084,39.0,34.0,53.0,50.0,49.0,33.0,49.0,40.0,53.0,42.0,43.0,30.0,41.0,40.0,42.0,30.0,36.0,35.0,31.0,24.0,24.0,29.0,23.0,46.0,31.0,30.0,42.0,34.0,50.0,44.0,42.0,54.0,53.0,48.0,72.0,58.0,65.0,74.0,70.0,72.0,64.0,69.0,69.0,63.0,64.0,63.0,60.0,56.0,65.0,50.0,48.0,43.0,45.0,48.0,48.0,53.0,59.0,47.0,40.0,48.0,43.0,55.0,56.0,54.0,46.0,39.0,31.0,47.0,35.0,38.0,45.0,41.0,34.0,27.0,40.0,30.0,30.0,42.0,43.0,30.0,37.0,29.0,17.0,18.0,20.0,22.0,25.0,18.0,16.0,15.0,12.0,8.0,11.0,5.0,2.0,13.0 K81085,90.0,75.0,81.0,64.0,55.0,47.0,58.0,60.0,53.0,52.0,51.0,53.0,52.0,65.0,50.0,46.0,62.0,52.0,56.0,68.0,56.0,62.0,82.0,92.0,93.0,93.0,106.0,107.0,99.0,97.0,84.0,104.0,92.0,83.0,84.0,78.0,92.0,87.0,96.0,74.0,83.0,72.0,82.0,68.0,66.0,58.0,54.0,58.0,56.0,48.0,49.0,45.0,37.0,38.0,40.0,33.0,29.0,40.0,32.0,38.0,44.0,29.0,40.0,40.0,23.0,46.0,38.0,41.0,36.0,46.0,31.0,39.0,28.0,30.0,19.0,20.0,16.0,14.0,19.0,12.0,12.0,9.0,7.0,10.0,9.0,17.0,10.0,4.0,4.0,8.0,5.0,5.0,2.0,3.0,2.0,4.0 K81086,59.0,78.0,58.0,81.0,76.0,75.0,83.0,69.0,86.0,79.0,71.0,83.0,78.0,84.0,89.0,91.0,95.0,82.0,87.0,73.0,71.0,70.0,78.0,87.0,88.0,100.0,99.0,113.0,101.0,94.0,89.0,83.0,103.0,103.0,85.0,92.0,86.0,93.0,105.0,100.0,87.0,88.0,80.0,99.0,93.0,83.0,78.0,80.0,69.0,52.0,61.0,47.0,58.0,54.0,50.0,65.0,60.0,58.0,55.0,53.0,55.0,39.0,52.0,50.0,53.0,49.0,55.0,63.0,54.0,53.0,43.0,50.0,35.0,35.0,38.0,38.0,33.0,27.0,16.0,23.0,12.0,20.0,19.0,9.0,13.0,17.0,13.0,18.0,9.0,8.0,7.0,9.0,8.0,5.0,1.0,6.0 K81087,41.0,36.0,39.0,54.0,50.0,47.0,51.0,43.0,31.0,31.0,45.0,47.0,46.0,42.0,44.0,54.0,54.0,44.0,34.0,41.0,32.0,29.0,27.0,41.0,42.0,33.0,36.0,34.0,58.0,47.0,47.0,81.0,60.0,60.0,61.0,56.0,63.0,66.0,58.0,61.0,59.0,67.0,60.0,62.0,60.0,65.0,54.0,47.0,45.0,36.0,43.0,45.0,39.0,44.0,45.0,52.0,35.0,49.0,38.0,35.0,33.0,31.0,31.0,32.0,41.0,30.0,31.0,32.0,26.0,21.0,30.0,17.0,18.0,20.0,16.0,14.0,19.0,25.0,11.0,20.0,11.0,9.0,12.0,5.0,5.0,9.0,14.0,4.0,4.0,5.0,6.0,3.0,4.0,2.0,2.0,7.0 K81094,21.0,26.0,26.0,26.0,23.0,23.0,18.0,23.0,27.0,34.0,26.0,31.0,34.0,23.0,37.0,27.0,33.0,36.0,24.0,22.0,23.0,23.0,25.0,17.0,28.0,17.0,38.0,24.0,35.0,33.0,38.0,41.0,24.0,32.0,40.0,45.0,41.0,35.0,45.0,43.0,44.0,44.0,36.0,29.0,45.0,44.0,32.0,21.0,23.0,23.0,30.0,35.0,29.0,21.0,20.0,24.0,26.0,22.0,26.0,14.0,18.0,20.0,19.0,13.0,20.0,19.0,16.0,16.0,13.0,18.0,9.0,15.0,16.0,13.0,5.0,8.0,12.0,17.0,18.0,10.0,11.0,10.0,6.0,11.0,5.0,5.0,6.0,1.0,3.0,5.0,1.0,4.0,1.0,1.0,1.0,2.0 K81097,13.0,21.0,29.0,16.0,22.0,31.0,29.0,34.0,37.0,33.0,40.0,36.0,53.0,59.0,39.0,33.0,53.0,36.0,34.0,41.0,19.0,29.0,32.0,25.0,29.0,35.0,18.0,31.0,18.0,24.0,18.0,32.0,31.0,23.0,35.0,36.0,40.0,37.0,36.0,40.0,35.0,55.0,54.0,47.0,56.0,54.0,46.0,44.0,42.0,34.0,56.0,53.0,39.0,44.0,45.0,44.0,41.0,29.0,44.0,39.0,27.0,36.0,31.0,32.0,23.0,27.0,23.0,26.0,19.0,26.0,27.0,27.0,25.0,28.0,21.0,27.0,21.0,26.0,26.0,29.0,29.0,23.0,32.0,15.0,20.0,10.0,7.0,8.0,8.0,9.0,4.0,5.0,2.0,1.0,5.0,8.0 K81607,11.0,14.0,14.0,21.0,23.0,15.0,18.0,18.0,29.0,16.0,24.0,28.0,28.0,30.0,37.0,27.0,22.0,28.0,20.0,23.0,16.0,25.0,31.0,26.0,26.0,20.0,19.0,32.0,21.0,22.0,26.0,25.0,20.0,22.0,29.0,19.0,32.0,21.0,19.0,29.0,30.0,22.0,21.0,25.0,29.0,22.0,19.0,29.0,14.0,16.0,19.0,16.0,16.0,17.0,15.0,16.0,12.0,13.0,8.0,15.0,14.0,13.0,7.0,8.0,11.0,10.0,14.0,8.0,6.0,14.0,15.0,7.0,5.0,18.0,10.0,8.0,2.0,7.0,5.0,3.0,3.0,2.0,6.0,6.0,3.0,5.0,8.0,6.0,4.0,3.0,4.0,1.0,,,1.0,5.0 K81608,22.0,30.0,29.0,18.0,30.0,28.0,34.0,36.0,38.0,37.0,41.0,33.0,58.0,40.0,35.0,35.0,52.0,37.0,41.0,46.0,36.0,38.0,36.0,44.0,36.0,32.0,38.0,20.0,40.0,30.0,36.0,37.0,25.0,27.0,28.0,35.0,37.0,37.0,37.0,47.0,48.0,53.0,43.0,40.0,46.0,36.0,32.0,37.0,41.0,33.0,24.0,20.0,32.0,26.0,31.0,25.0,16.0,17.0,27.0,18.0,16.0,15.0,12.0,19.0,13.0,20.0,15.0,13.0,13.0,14.0,9.0,12.0,9.0,15.0,5.0,11.0,5.0,6.0,4.0,11.0,3.0,2.0,2.0,6.0,9.0,7.0,2.0,1.0,1.0,1.0,1.0,,,,1.0,3.0 K81610,119.0,140.0,161.0,170.0,153.0,147.0,160.0,148.0,170.0,192.0,185.0,156.0,207.0,207.0,213.0,202.0,216.0,212.0,168.0,162.0,134.0,147.0,124.0,141.0,147.0,195.0,173.0,193.0,180.0,257.0,243.0,243.0,213.0,244.0,251.0,255.0,243.0,248.0,267.0,248.0,238.0,227.0,250.0,238.0,244.0,263.0,221.0,232.0,208.0,208.0,205.0,241.0,225.0,215.0,250.0,192.0,223.0,234.0,259.0,195.0,195.0,209.0,180.0,194.0,213.0,172.0,153.0,158.0,152.0,133.0,116.0,120.0,102.0,105.0,108.0,90.0,86.0,102.0,104.0,83.0,83.0,69.0,67.0,65.0,52.0,47.0,42.0,52.0,37.0,32.0,29.0,23.0,22.0,8.0,10.0,34.0 K81616,34.0,33.0,38.0,32.0,36.0,29.0,36.0,31.0,38.0,31.0,45.0,34.0,46.0,31.0,41.0,40.0,39.0,41.0,40.0,25.0,41.0,33.0,32.0,40.0,53.0,44.0,46.0,40.0,42.0,36.0,44.0,35.0,48.0,27.0,39.0,34.0,52.0,44.0,55.0,50.0,55.0,43.0,46.0,43.0,44.0,34.0,42.0,39.0,35.0,28.0,29.0,24.0,22.0,24.0,17.0,32.0,23.0,26.0,22.0,19.0,19.0,15.0,20.0,32.0,33.0,28.0,26.0,24.0,12.0,15.0,18.0,19.0,13.0,17.0,9.0,16.0,16.0,21.0,7.0,4.0,9.0,9.0,6.0,5.0,7.0,10.0,5.0,8.0,4.0,2.0,6.0,4.0,2.0,,1.0,9.0 K81630,55.0,58.0,68.0,80.0,61.0,68.0,76.0,80.0,80.0,79.0,78.0,86.0,94.0,83.0,93.0,95.0,90.0,78.0,62.0,60.0,54.0,65.0,48.0,56.0,63.0,69.0,70.0,80.0,68.0,73.0,75.0,88.0,84.0,84.0,81.0,105.0,90.0,112.0,118.0,116.0,92.0,100.0,121.0,110.0,117.0,106.0,88.0,75.0,98.0,90.0,90.0,84.0,87.0,81.0,94.0,88.0,103.0,74.0,81.0,71.0,74.0,79.0,96.0,57.0,58.0,67.0,58.0,71.0,59.0,75.0,57.0,61.0,58.0,51.0,55.0,50.0,46.0,43.0,64.0,41.0,47.0,42.0,35.0,35.0,28.0,34.0,32.0,34.0,35.0,22.0,18.0,14.0,14.0,11.0,14.0,47.0 K81645,63.0,53.0,64.0,58.0,55.0,41.0,53.0,56.0,56.0,73.0,66.0,49.0,41.0,50.0,51.0,58.0,55.0,57.0,55.0,43.0,50.0,37.0,59.0,53.0,48.0,68.0,59.0,83.0,86.0,70.0,75.0,74.0,62.0,67.0,70.0,60.0,68.0,65.0,73.0,85.0,71.0,65.0,64.0,53.0,60.0,51.0,52.0,37.0,36.0,39.0,39.0,34.0,38.0,30.0,25.0,45.0,23.0,24.0,28.0,33.0,25.0,25.0,26.0,28.0,23.0,21.0,20.0,24.0,19.0,22.0,24.0,16.0,14.0,8.0,10.0,15.0,11.0,10.0,9.0,11.0,6.0,10.0,11.0,6.0,5.0,9.0,5.0,3.0,1.0,1.0,3.0,2.0,4.0,1.0,1.0,4.0 K81655,44.0,35.0,39.0,45.0,35.0,35.0,40.0,46.0,39.0,41.0,45.0,44.0,39.0,50.0,49.0,47.0,57.0,53.0,30.0,32.0,29.0,34.0,33.0,47.0,25.0,37.0,22.0,36.0,42.0,32.0,39.0,55.0,42.0,50.0,37.0,48.0,54.0,55.0,53.0,63.0,54.0,55.0,69.0,67.0,67.0,63.0,63.0,58.0,58.0,35.0,59.0,45.0,61.0,46.0,49.0,42.0,51.0,43.0,38.0,54.0,32.0,44.0,45.0,45.0,39.0,42.0,36.0,26.0,22.0,33.0,31.0,19.0,23.0,23.0,30.0,24.0,19.0,25.0,33.0,23.0,21.0,14.0,14.0,17.0,7.0,15.0,13.0,21.0,12.0,12.0,10.0,13.0,10.0,3.0,9.0,18.0 K81656,38.0,29.0,41.0,48.0,41.0,38.0,55.0,45.0,44.0,49.0,42.0,29.0,49.0,47.0,38.0,49.0,45.0,33.0,42.0,32.0,28.0,30.0,26.0,20.0,31.0,27.0,52.0,49.0,42.0,53.0,63.0,71.0,58.0,55.0,73.0,60.0,69.0,68.0,63.0,61.0,80.0,58.0,52.0,84.0,67.0,49.0,56.0,58.0,52.0,47.0,46.0,47.0,33.0,40.0,35.0,35.0,37.0,30.0,35.0,42.0,46.0,41.0,28.0,49.0,42.0,41.0,35.0,21.0,17.0,20.0,33.0,19.0,15.0,24.0,16.0,17.0,15.0,21.0,20.0,11.0,16.0,12.0,5.0,7.0,6.0,7.0,7.0,7.0,4.0,4.0,3.0,1.0,1.0,2.0,3.0,3.0 K81657,40.0,31.0,46.0,41.0,25.0,43.0,44.0,34.0,32.0,46.0,37.0,36.0,40.0,34.0,45.0,44.0,36.0,27.0,25.0,19.0,31.0,21.0,36.0,32.0,37.0,28.0,50.0,61.0,46.0,59.0,59.0,74.0,67.0,68.0,62.0,68.0,78.0,74.0,77.0,78.0,61.0,57.0,50.0,47.0,56.0,47.0,51.0,39.0,38.0,33.0,39.0,33.0,34.0,33.0,21.0,39.0,25.0,28.0,26.0,22.0,31.0,28.0,24.0,21.0,23.0,19.0,20.0,21.0,8.0,15.0,9.0,10.0,14.0,10.0,11.0,8.0,7.0,4.0,7.0,6.0,1.0,5.0,4.0,2.0,6.0,1.0,2.0,2.0,4.0,4.0,,2.0,,1.0,,2.0 Y00265,128.0,130.0,147.0,115.0,132.0,133.0,109.0,121.0,130.0,105.0,102.0,114.0,107.0,100.0,104.0,103.0,90.0,76.0,87.0,70.0,80.0,67.0,84.0,102.0,118.0,133.0,152.0,176.0,165.0,177.0,190.0,169.0,179.0,175.0,211.0,197.0,162.0,175.0,145.0,173.0,175.0,154.0,160.0,136.0,145.0,119.0,120.0,98.0,80.0,73.0,81.0,60.0,65.0,72.0,60.0,32.0,56.0,48.0,34.0,34.0,36.0,39.0,37.0,32.0,32.0,39.0,22.0,24.0,24.0,28.0,15.0,12.0,10.0,11.0,16.0,9.0,10.0,4.0,8.0,8.0,3.0,5.0,6.0,5.0,5.0,1.0,1.0,4.0,3.0,3.0,1.0,1.0,1.0,1.0,1.0,4.0 Y00437,51.0,45.0,57.0,49.0,72.0,74.0,67.0,83.0,89.0,103.0,78.0,88.0,87.0,79.0,88.0,98.0,91.0,83.0,79.0,52.0,47.0,45.0,62.0,67.0,56.0,71.0,59.0,82.0,90.0,63.0,59.0,63.0,80.0,84.0,66.0,90.0,76.0,102.0,100.0,101.0,106.0,96.0,113.0,112.0,131.0,98.0,74.0,89.0,84.0,78.0,68.0,73.0,58.0,66.0,65.0,69.0,51.0,67.0,44.0,47.0,42.0,36.0,45.0,40.0,41.0,47.0,34.0,33.0,34.0,25.0,32.0,28.0,24.0,26.0,25.0,29.0,23.0,15.0,19.0,20.0,14.0,10.0,15.0,11.0,14.0,19.0,8.0,4.0,8.0,4.0,4.0,2.0,5.0,1.0,1.0,4.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 G81001,30.0,42.0,29.0,33.0,39.0,48.0,50.0,55.0,46.0,46.0,50.0,58.0,51.0,61.0,64.0,66.0,60.0,69.0,57.0,52.0,36.0,47.0,37.0,45.0,38.0,50.0,40.0,60.0,47.0,42.0,51.0,50.0,55.0,64.0,43.0,64.0,54.0,62.0,75.0,49.0,56.0,74.0,58.0,68.0,77.0,60.0,64.0,59.0,56.0,58.0,62.0,74.0,70.0,67.0,74.0,61.0,68.0,52.0,58.0,62.0,59.0,59.0,61.0,41.0,51.0,50.0,46.0,39.0,55.0,33.0,51.0,49.0,31.0,42.0,30.0,47.0,51.0,47.0,46.0,33.0,29.0,25.0,25.0,18.0,25.0,34.0,21.0,26.0,26.0,13.0,16.0,9.0,19.0,7.0,11.0,23.0 G81002,21.0,27.0,26.0,19.0,18.0,20.0,20.0,26.0,25.0,45.0,29.0,24.0,38.0,27.0,36.0,30.0,28.0,29.0,24.0,28.0,30.0,21.0,20.0,30.0,31.0,51.0,54.0,53.0,38.0,39.0,38.0,42.0,37.0,40.0,39.0,36.0,32.0,32.0,47.0,44.0,37.0,51.0,42.0,38.0,40.0,33.0,36.0,37.0,35.0,34.0,37.0,37.0,42.0,45.0,41.0,42.0,34.0,45.0,36.0,38.0,49.0,45.0,39.0,31.0,31.0,37.0,39.0,29.0,20.0,40.0,32.0,40.0,18.0,21.0,30.0,30.0,33.0,32.0,34.0,26.0,40.0,25.0,16.0,23.0,22.0,19.0,14.0,16.0,18.0,11.0,13.0,5.0,8.0,7.0,6.0,22.0 G81003,76.0,59.0,66.0,85.0,75.0,96.0,93.0,78.0,89.0,112.0,98.0,95.0,95.0,99.0,116.0,108.0,117.0,114.0,98.0,94.0,80.0,103.0,101.0,115.0,97.0,77.0,83.0,119.0,110.0,117.0,122.0,107.0,141.0,138.0,120.0,148.0,134.0,123.0,128.0,125.0,117.0,114.0,109.0,115.0,110.0,94.0,94.0,107.0,89.0,100.0,80.0,96.0,88.0,112.0,119.0,120.0,94.0,116.0,121.0,109.0,105.0,116.0,120.0,129.0,128.0,129.0,100.0,108.0,104.0,107.0,117.0,100.0,98.0,102.0,96.0,88.0,112.0,123.0,141.0,101.0,107.0,82.0,84.0,61.0,56.0,58.0,57.0,59.0,46.0,55.0,35.0,35.0,35.0,28.0,21.0,58.0 G81004,22.0,30.0,35.0,41.0,42.0,37.0,39.0,33.0,58.0,38.0,53.0,48.0,49.0,48.0,40.0,45.0,48.0,47.0,36.0,32.0,28.0,31.0,36.0,34.0,48.0,33.0,45.0,43.0,34.0,32.0,45.0,48.0,49.0,53.0,53.0,49.0,51.0,63.0,65.0,68.0,48.0,51.0,68.0,54.0,63.0,55.0,52.0,62.0,50.0,40.0,50.0,60.0,50.0,62.0,77.0,65.0,71.0,75.0,75.0,77.0,75.0,83.0,71.0,81.0,81.0,74.0,82.0,74.0,67.0,75.0,83.0,75.0,73.0,82.0,61.0,96.0,83.0,105.0,104.0,60.0,68.0,83.0,60.0,66.0,54.0,47.0,56.0,42.0,45.0,37.0,30.0,28.0,16.0,23.0,24.0,40.0 G81006,22.0,19.0,21.0,16.0,15.0,18.0,15.0,20.0,15.0,12.0,19.0,10.0,26.0,10.0,23.0,21.0,22.0,28.0,31.0,33.0,35.0,33.0,46.0,43.0,70.0,64.0,65.0,76.0,55.0,71.0,55.0,59.0,58.0,63.0,52.0,57.0,77.0,52.0,49.0,48.0,41.0,48.0,35.0,44.0,36.0,42.0,38.0,37.0,31.0,38.0,49.0,47.0,45.0,33.0,32.0,43.0,32.0,42.0,32.0,42.0,40.0,43.0,34.0,34.0,31.0,30.0,15.0,31.0,20.0,24.0,17.0,31.0,22.0,27.0,23.0,13.0,18.0,23.0,25.0,14.0,13.0,15.0,10.0,10.0,5.0,13.0,7.0,10.0,6.0,9.0,5.0,5.0,4.0,1.0,,4.0 G81008,55.0,85.0,65.0,80.0,63.0,88.0,64.0,71.0,84.0,93.0,84.0,83.0,82.0,91.0,85.0,70.0,85.0,63.0,69.0,70.0,55.0,75.0,67.0,57.0,82.0,53.0,79.0,71.0,82.0,94.0,90.0,103.0,69.0,100.0,100.0,83.0,97.0,110.0,87.0,89.0,94.0,97.0,102.0,88.0,77.0,72.0,84.0,81.0,61.0,88.0,91.0,79.0,97.0,98.0,91.0,100.0,113.0,109.0,124.0,134.0,97.0,96.0,119.0,97.0,91.0,106.0,108.0,116.0,88.0,80.0,92.0,97.0,89.0,82.0,91.0,88.0,92.0,99.0,96.0,90.0,90.0,78.0,59.0,50.0,31.0,38.0,51.0,32.0,42.0,24.0,16.0,22.0,10.0,8.0,11.0,16.0 G81011,46.0,58.0,55.0,64.0,80.0,62.0,65.0,67.0,65.0,86.0,68.0,65.0,66.0,78.0,89.0,97.0,79.0,103.0,112.0,182.0,197.0,206.0,208.0,174.0,168.0,174.0,162.0,168.0,168.0,146.0,150.0,153.0,164.0,138.0,158.0,147.0,187.0,118.0,129.0,151.0,136.0,130.0,133.0,118.0,149.0,107.0,113.0,105.0,121.0,107.0,97.0,118.0,112.0,128.0,115.0,131.0,135.0,121.0,130.0,138.0,123.0,119.0,103.0,95.0,97.0,87.0,80.0,74.0,74.0,85.0,92.0,54.0,56.0,66.0,62.0,50.0,42.0,58.0,41.0,39.0,37.0,35.0,36.0,29.0,18.0,18.0,21.0,18.0,19.0,14.0,12.0,9.0,12.0,6.0,6.0,8.0 G81012,29.0,35.0,35.0,27.0,31.0,38.0,32.0,48.0,36.0,35.0,38.0,35.0,43.0,44.0,43.0,43.0,44.0,26.0,39.0,27.0,15.0,27.0,33.0,26.0,29.0,20.0,37.0,31.0,47.0,36.0,40.0,31.0,44.0,52.0,54.0,49.0,48.0,43.0,44.0,44.0,43.0,47.0,49.0,38.0,31.0,34.0,34.0,47.0,39.0,28.0,39.0,39.0,39.0,43.0,46.0,34.0,39.0,44.0,47.0,50.0,53.0,37.0,50.0,50.0,37.0,42.0,51.0,44.0,34.0,32.0,50.0,51.0,38.0,38.0,39.0,46.0,57.0,63.0,41.0,33.0,41.0,36.0,43.0,28.0,22.0,19.0,21.0,20.0,18.0,15.0,10.0,14.0,8.0,8.0,5.0,13.0 G81014,33.0,32.0,27.0,39.0,39.0,50.0,53.0,60.0,41.0,48.0,51.0,50.0,50.0,57.0,46.0,55.0,69.0,44.0,79.0,123.0,141.0,142.0,111.0,81.0,69.0,48.0,53.0,53.0,50.0,45.0,40.0,56.0,54.0,56.0,62.0,54.0,60.0,52.0,64.0,53.0,63.0,58.0,57.0,52.0,56.0,49.0,53.0,55.0,49.0,40.0,50.0,54.0,67.0,60.0,58.0,60.0,54.0,56.0,54.0,56.0,50.0,43.0,37.0,44.0,35.0,54.0,41.0,31.0,30.0,38.0,26.0,21.0,33.0,39.0,28.0,34.0,30.0,23.0,30.0,31.0,24.0,25.0,25.0,15.0,16.0,16.0,17.0,19.0,11.0,14.0,11.0,7.0,6.0,9.0,5.0,21.0 G81016,61.0,77.0,62.0,77.0,59.0,67.0,54.0,75.0,66.0,64.0,65.0,64.0,63.0,91.0,73.0,74.0,74.0,68.0,53.0,44.0,64.0,54.0,56.0,57.0,74.0,82.0,90.0,69.0,68.0,71.0,77.0,69.0,91.0,83.0,109.0,88.0,95.0,104.0,118.0,88.0,85.0,84.0,76.0,91.0,76.0,79.0,62.0,64.0,59.0,67.0,67.0,71.0,76.0,82.0,87.0,74.0,81.0,81.0,69.0,75.0,83.0,74.0,76.0,68.0,76.0,71.0,62.0,50.0,59.0,55.0,76.0,65.0,53.0,62.0,52.0,45.0,50.0,61.0,61.0,53.0,43.0,38.0,35.0,27.0,26.0,27.0,29.0,27.0,12.0,17.0,14.0,13.0,6.0,10.0,4.0,15.0 G81017,43.0,51.0,41.0,50.0,54.0,53.0,46.0,45.0,44.0,53.0,73.0,78.0,70.0,60.0,73.0,71.0,60.0,66.0,71.0,57.0,47.0,59.0,50.0,66.0,74.0,79.0,89.0,107.0,103.0,81.0,89.0,65.0,81.0,76.0,89.0,72.0,61.0,82.0,97.0,72.0,64.0,82.0,72.0,77.0,82.0,74.0,79.0,63.0,75.0,62.0,94.0,66.0,72.0,92.0,82.0,72.0,85.0,72.0,85.0,85.0,85.0,86.0,95.0,92.0,60.0,70.0,62.0,61.0,75.0,58.0,44.0,55.0,50.0,50.0,62.0,60.0,50.0,51.0,49.0,28.0,40.0,40.0,28.0,26.0,31.0,22.0,31.0,22.0,31.0,17.0,21.0,13.0,12.0,16.0,4.0,17.0 G81018,33.0,46.0,38.0,47.0,39.0,51.0,44.0,56.0,53.0,55.0,57.0,63.0,76.0,84.0,70.0,96.0,68.0,93.0,86.0,83.0,91.0,104.0,108.0,78.0,101.0,86.0,102.0,100.0,93.0,106.0,105.0,113.0,107.0,98.0,96.0,96.0,96.0,91.0,96.0,78.0,68.0,83.0,91.0,99.0,108.0,107.0,100.0,102.0,98.0,96.0,87.0,104.0,117.0,102.0,107.0,90.0,108.0,88.0,83.0,88.0,93.0,72.0,60.0,66.0,58.0,42.0,46.0,46.0,47.0,49.0,45.0,36.0,39.0,31.0,50.0,37.0,47.0,26.0,30.0,26.0,28.0,27.0,19.0,18.0,12.0,15.0,14.0,16.0,17.0,12.0,9.0,8.0,3.0,7.0,4.0,11.0 G81019,39.0,42.0,50.0,58.0,46.0,40.0,52.0,45.0,55.0,57.0,59.0,53.0,61.0,63.0,67.0,63.0,51.0,70.0,57.0,40.0,46.0,46.0,42.0,49.0,47.0,40.0,41.0,61.0,39.0,58.0,48.0,44.0,57.0,77.0,81.0,66.0,57.0,63.0,60.0,73.0,66.0,44.0,60.0,69.0,55.0,75.0,68.0,71.0,56.0,54.0,67.0,73.0,87.0,78.0,72.0,72.0,78.0,78.0,89.0,114.0,96.0,87.0,72.0,93.0,78.0,86.0,87.0,69.0,78.0,64.0,72.0,61.0,70.0,50.0,59.0,86.0,78.0,63.0,104.0,70.0,64.0,55.0,46.0,51.0,27.0,37.0,37.0,39.0,28.0,25.0,22.0,20.0,15.0,16.0,14.0,35.0 G81021,100.0,81.0,86.0,113.0,106.0,106.0,121.0,131.0,143.0,132.0,150.0,163.0,132.0,171.0,161.0,195.0,175.0,169.0,170.0,169.0,118.0,105.0,122.0,117.0,142.0,121.0,137.0,136.0,120.0,129.0,132.0,128.0,150.0,172.0,174.0,161.0,164.0,165.0,152.0,156.0,167.0,202.0,161.0,182.0,177.0,186.0,207.0,189.0,184.0,201.0,245.0,204.0,233.0,236.0,239.0,223.0,235.0,220.0,250.0,230.0,262.0,243.0,226.0,225.0,194.0,202.0,189.0,173.0,197.0,171.0,160.0,174.0,170.0,160.0,169.0,186.0,183.0,194.0,182.0,144.0,140.0,161.0,112.0,86.0,98.0,86.0,84.0,76.0,76.0,55.0,64.0,45.0,35.0,22.0,25.0,52.0 G81022,36.0,40.0,60.0,49.0,67.0,64.0,66.0,74.0,67.0,78.0,97.0,68.0,85.0,88.0,75.0,88.0,83.0,71.0,77.0,76.0,64.0,73.0,54.0,60.0,69.0,57.0,64.0,71.0,68.0,62.0,70.0,70.0,90.0,91.0,80.0,86.0,87.0,92.0,103.0,84.0,71.0,102.0,74.0,82.0,97.0,96.0,88.0,86.0,71.0,78.0,84.0,73.0,99.0,109.0,108.0,102.0,94.0,95.0,113.0,107.0,93.0,107.0,107.0,93.0,115.0,98.0,101.0,87.0,94.0,97.0,105.0,119.0,80.0,94.0,96.0,101.0,103.0,113.0,116.0,91.0,85.0,55.0,79.0,52.0,57.0,51.0,46.0,39.0,39.0,35.0,25.0,19.0,21.0,15.0,16.0,37.0 G81023,21.0,24.0,27.0,28.0,35.0,32.0,40.0,33.0,47.0,35.0,46.0,33.0,38.0,49.0,49.0,73.0,53.0,52.0,59.0,35.0,34.0,40.0,40.0,33.0,31.0,36.0,43.0,40.0,42.0,33.0,32.0,39.0,34.0,30.0,37.0,40.0,41.0,47.0,34.0,37.0,49.0,40.0,39.0,58.0,55.0,60.0,44.0,46.0,45.0,47.0,46.0,48.0,57.0,64.0,57.0,70.0,55.0,65.0,69.0,66.0,78.0,86.0,82.0,72.0,62.0,61.0,80.0,57.0,61.0,60.0,67.0,64.0,49.0,56.0,48.0,62.0,63.0,72.0,74.0,44.0,48.0,49.0,46.0,36.0,26.0,34.0,39.0,27.0,20.0,24.0,21.0,10.0,10.0,18.0,14.0,26.0 G81024,26.0,23.0,41.0,44.0,34.0,35.0,57.0,45.0,64.0,44.0,52.0,61.0,72.0,65.0,69.0,57.0,66.0,69.0,59.0,64.0,54.0,56.0,50.0,65.0,61.0,40.0,62.0,42.0,35.0,38.0,50.0,43.0,51.0,34.0,52.0,53.0,48.0,47.0,56.0,50.0,71.0,63.0,69.0,70.0,66.0,82.0,71.0,88.0,71.0,71.0,84.0,82.0,81.0,70.0,84.0,97.0,101.0,75.0,98.0,98.0,120.0,104.0,75.0,84.0,81.0,65.0,80.0,80.0,69.0,85.0,74.0,82.0,67.0,60.0,64.0,62.0,76.0,76.0,68.0,51.0,56.0,47.0,58.0,33.0,33.0,30.0,29.0,33.0,13.0,22.0,14.0,11.0,11.0,9.0,9.0,11.0 G81028,42.0,50.0,50.0,50.0,47.0,58.0,57.0,52.0,62.0,61.0,59.0,52.0,68.0,66.0,59.0,59.0,49.0,77.0,69.0,101.0,147.0,209.0,150.0,143.0,124.0,105.0,104.0,104.0,105.0,99.0,110.0,90.0,102.0,98.0,109.0,83.0,110.0,87.0,69.0,95.0,79.0,87.0,75.0,74.0,75.0,91.0,80.0,77.0,70.0,73.0,78.0,104.0,91.0,105.0,104.0,90.0,102.0,91.0,107.0,83.0,87.0,62.0,74.0,67.0,45.0,50.0,37.0,45.0,34.0,42.0,36.0,33.0,33.0,30.0,36.0,32.0,21.0,31.0,24.0,19.0,14.0,15.0,19.0,18.0,15.0,12.0,12.0,11.0,12.0,9.0,11.0,10.0,6.0,4.0,4.0,5.0 G81029,49.0,45.0,57.0,61.0,73.0,82.0,83.0,77.0,80.0,79.0,94.0,86.0,92.0,67.0,95.0,90.0,84.0,62.0,80.0,58.0,58.0,54.0,70.0,49.0,61.0,62.0,72.0,75.0,84.0,77.0,72.0,104.0,82.0,92.0,103.0,92.0,107.0,111.0,115.0,104.0,93.0,100.0,111.0,96.0,112.0,94.0,75.0,82.0,86.0,93.0,91.0,105.0,107.0,124.0,118.0,121.0,118.0,145.0,129.0,115.0,162.0,137.0,152.0,149.0,136.0,147.0,139.0,131.0,139.0,148.0,147.0,140.0,156.0,154.0,126.0,164.0,143.0,169.0,213.0,151.0,125.0,130.0,113.0,98.0,85.0,78.0,66.0,74.0,71.0,64.0,54.0,45.0,38.0,32.0,32.0,81.0 G81030,23.0,33.0,28.0,42.0,34.0,49.0,40.0,35.0,37.0,36.0,39.0,38.0,43.0,54.0,50.0,53.0,44.0,45.0,51.0,27.0,30.0,31.0,39.0,35.0,23.0,26.0,36.0,32.0,35.0,21.0,38.0,42.0,31.0,50.0,36.0,43.0,43.0,46.0,48.0,36.0,40.0,39.0,56.0,42.0,39.0,60.0,62.0,48.0,38.0,43.0,61.0,58.0,58.0,70.0,49.0,49.0,60.0,79.0,76.0,63.0,57.0,48.0,67.0,61.0,54.0,62.0,58.0,57.0,54.0,44.0,55.0,56.0,42.0,40.0,32.0,37.0,48.0,67.0,49.0,39.0,46.0,34.0,36.0,35.0,28.0,27.0,31.0,20.0,25.0,19.0,21.0,13.0,10.0,8.0,9.0,20.0 G81031,49.0,60.0,74.0,73.0,60.0,86.0,110.0,104.0,92.0,101.0,105.0,112.0,139.0,120.0,123.0,137.0,131.0,138.0,104.0,97.0,80.0,70.0,66.0,80.0,67.0,68.0,89.0,89.0,74.0,115.0,87.0,88.0,99.0,120.0,107.0,99.0,125.0,120.0,122.0,132.0,109.0,127.0,108.0,129.0,120.0,128.0,107.0,105.0,120.0,118.0,122.0,127.0,124.0,157.0,139.0,158.0,158.0,174.0,146.0,165.0,173.0,174.0,161.0,130.0,145.0,152.0,137.0,141.0,146.0,124.0,101.0,132.0,139.0,116.0,136.0,121.0,145.0,154.0,147.0,119.0,115.0,106.0,105.0,79.0,63.0,63.0,69.0,39.0,43.0,41.0,49.0,34.0,20.0,28.0,26.0,40.0 G81032,89.0,85.0,88.0,108.0,105.0,121.0,100.0,142.0,144.0,134.0,154.0,147.0,151.0,148.0,146.0,156.0,137.0,133.0,121.0,120.0,115.0,149.0,119.0,147.0,138.0,164.0,175.0,187.0,172.0,194.0,164.0,160.0,161.0,148.0,158.0,184.0,183.0,177.0,164.0,209.0,167.0,158.0,178.0,188.0,182.0,169.0,189.0,171.0,156.0,176.0,189.0,161.0,175.0,191.0,181.0,164.0,168.0,179.0,181.0,176.0,194.0,205.0,185.0,186.0,165.0,152.0,173.0,166.0,161.0,132.0,148.0,151.0,150.0,144.0,148.0,149.0,131.0,174.0,218.0,125.0,120.0,120.0,111.0,88.0,83.0,72.0,92.0,88.0,77.0,59.0,67.0,56.0,45.0,28.0,30.0,89.0 G81034,86.0,120.0,107.0,121.0,105.0,121.0,124.0,119.0,128.0,127.0,146.0,129.0,153.0,158.0,191.0,232.0,236.0,289.0,232.0,179.0,164.0,177.0,190.0,198.0,241.0,218.0,243.0,272.0,285.0,255.0,282.0,304.0,272.0,298.0,290.0,288.0,272.0,280.0,265.0,226.0,238.0,256.0,254.0,260.0,239.0,265.0,263.0,229.0,259.0,260.0,254.0,240.0,252.0,243.0,209.0,237.0,215.0,208.0,202.0,210.0,202.0,164.0,166.0,160.0,139.0,136.0,119.0,127.0,100.0,102.0,94.0,105.0,99.0,94.0,96.0,95.0,94.0,83.0,103.0,73.0,78.0,71.0,66.0,41.0,41.0,45.0,55.0,36.0,32.0,39.0,20.0,20.0,29.0,19.0,17.0,50.0 G81036,35.0,37.0,33.0,47.0,37.0,35.0,34.0,37.0,48.0,53.0,66.0,57.0,53.0,51.0,53.0,67.0,53.0,57.0,60.0,47.0,49.0,49.0,54.0,51.0,46.0,46.0,47.0,49.0,27.0,40.0,49.0,32.0,59.0,54.0,56.0,46.0,42.0,65.0,60.0,60.0,59.0,61.0,56.0,76.0,77.0,56.0,64.0,54.0,70.0,67.0,73.0,70.0,53.0,75.0,75.0,79.0,79.0,97.0,70.0,75.0,64.0,56.0,53.0,56.0,45.0,54.0,49.0,63.0,53.0,38.0,50.0,59.0,43.0,47.0,45.0,41.0,62.0,58.0,47.0,38.0,40.0,31.0,23.0,28.0,32.0,32.0,23.0,25.0,19.0,18.0,28.0,20.0,9.0,10.0,15.0,37.0 G81037,41.0,53.0,42.0,49.0,57.0,51.0,39.0,50.0,48.0,67.0,51.0,58.0,42.0,48.0,62.0,45.0,54.0,56.0,55.0,58.0,30.0,33.0,39.0,34.0,52.0,60.0,44.0,56.0,48.0,60.0,65.0,57.0,55.0,72.0,64.0,70.0,76.0,76.0,68.0,64.0,63.0,70.0,62.0,67.0,52.0,59.0,57.0,50.0,62.0,55.0,58.0,57.0,56.0,65.0,60.0,61.0,69.0,65.0,74.0,60.0,69.0,67.0,62.0,59.0,69.0,81.0,72.0,70.0,61.0,67.0,62.0,65.0,62.0,52.0,65.0,63.0,64.0,65.0,79.0,48.0,52.0,48.0,32.0,32.0,23.0,22.0,15.0,25.0,17.0,12.0,13.0,12.0,7.0,13.0,5.0,14.0 G81038,46.0,58.0,58.0,58.0,79.0,66.0,70.0,86.0,70.0,73.0,76.0,80.0,78.0,84.0,77.0,78.0,84.0,83.0,153.0,322.0,397.0,404.0,285.0,245.0,239.0,204.0,186.0,172.0,135.0,130.0,125.0,113.0,121.0,100.0,133.0,136.0,135.0,135.0,107.0,100.0,141.0,111.0,105.0,137.0,121.0,126.0,93.0,108.0,80.0,92.0,90.0,103.0,95.0,110.0,85.0,110.0,108.0,81.0,107.0,97.0,90.0,94.0,78.0,76.0,78.0,73.0,65.0,51.0,46.0,49.0,53.0,55.0,46.0,58.0,41.0,46.0,56.0,53.0,54.0,35.0,45.0,33.0,41.0,28.0,30.0,28.0,26.0,29.0,17.0,13.0,17.0,10.0,12.0,10.0,3.0,15.0 G81039,59.0,57.0,64.0,69.0,52.0,75.0,69.0,75.0,66.0,65.0,70.0,76.0,89.0,68.0,66.0,68.0,75.0,84.0,76.0,73.0,51.0,55.0,69.0,65.0,73.0,79.0,80.0,91.0,76.0,97.0,91.0,103.0,77.0,112.0,99.0,92.0,96.0,79.0,100.0,80.0,96.0,76.0,85.0,83.0,80.0,78.0,103.0,80.0,70.0,99.0,80.0,94.0,95.0,113.0,116.0,128.0,115.0,128.0,148.0,135.0,162.0,164.0,163.0,151.0,160.0,148.0,152.0,172.0,167.0,169.0,164.0,145.0,152.0,161.0,173.0,206.0,196.0,207.0,235.0,166.0,177.0,159.0,163.0,125.0,84.0,111.0,92.0,90.0,101.0,72.0,70.0,54.0,57.0,38.0,29.0,86.0 G81040,7.0,15.0,14.0,11.0,18.0,13.0,18.0,10.0,21.0,24.0,19.0,31.0,39.0,47.0,60.0,50.0,57.0,52.0,30.0,27.0,18.0,19.0,18.0,16.0,12.0,13.0,15.0,12.0,14.0,12.0,8.0,20.0,14.0,15.0,19.0,19.0,20.0,15.0,29.0,21.0,12.0,20.0,21.0,23.0,16.0,23.0,20.0,12.0,20.0,19.0,26.0,31.0,23.0,31.0,34.0,29.0,29.0,33.0,32.0,28.0,34.0,30.0,35.0,36.0,39.0,26.0,28.0,28.0,21.0,26.0,19.0,27.0,32.0,20.0,24.0,28.0,18.0,17.0,28.0,28.0,26.0,17.0,20.0,18.0,13.0,11.0,9.0,7.0,8.0,10.0,11.0,9.0,4.0,5.0,5.0,2.0 G81041,47.0,51.0,54.0,41.0,46.0,64.0,59.0,57.0,77.0,50.0,69.0,65.0,86.0,76.0,100.0,101.0,81.0,79.0,74.0,78.0,56.0,45.0,67.0,63.0,73.0,83.0,86.0,97.0,82.0,84.0,72.0,64.0,75.0,76.0,73.0,101.0,80.0,64.0,99.0,71.0,76.0,75.0,80.0,68.0,80.0,89.0,61.0,67.0,64.0,71.0,70.0,77.0,74.0,85.0,94.0,93.0,101.0,105.0,99.0,105.0,99.0,96.0,112.0,100.0,82.0,84.0,86.0,93.0,97.0,104.0,98.0,83.0,97.0,100.0,82.0,96.0,111.0,121.0,130.0,66.0,84.0,84.0,91.0,62.0,58.0,50.0,54.0,45.0,46.0,36.0,47.0,22.0,20.0,27.0,18.0,44.0 G81042,43.0,52.0,58.0,54.0,41.0,39.0,51.0,37.0,57.0,77.0,69.0,77.0,87.0,86.0,88.0,92.0,80.0,89.0,86.0,83.0,78.0,63.0,65.0,80.0,88.0,78.0,98.0,101.0,73.0,90.0,82.0,76.0,102.0,85.0,81.0,96.0,90.0,90.0,89.0,89.0,81.0,101.0,90.0,96.0,104.0,96.0,96.0,110.0,109.0,107.0,99.0,110.0,125.0,121.0,117.0,121.0,119.0,124.0,100.0,125.0,102.0,113.0,113.0,87.0,94.0,84.0,65.0,84.0,70.0,69.0,65.0,58.0,61.0,62.0,52.0,61.0,51.0,58.0,61.0,40.0,40.0,38.0,36.0,32.0,24.0,27.0,20.0,23.0,18.0,20.0,13.0,16.0,10.0,10.0,6.0,23.0 G81043,28.0,28.0,20.0,28.0,39.0,35.0,52.0,37.0,42.0,39.0,46.0,39.0,43.0,49.0,50.0,47.0,44.0,43.0,37.0,28.0,26.0,20.0,38.0,28.0,38.0,34.0,28.0,33.0,37.0,25.0,36.0,51.0,45.0,61.0,47.0,53.0,43.0,39.0,46.0,30.0,51.0,40.0,35.0,52.0,54.0,49.0,49.0,48.0,56.0,54.0,40.0,49.0,56.0,53.0,61.0,67.0,59.0,51.0,52.0,65.0,76.0,66.0,44.0,66.0,38.0,55.0,58.0,44.0,49.0,34.0,40.0,44.0,45.0,50.0,44.0,41.0,37.0,59.0,52.0,19.0,32.0,25.0,20.0,22.0,21.0,22.0,13.0,20.0,14.0,9.0,8.0,2.0,9.0,8.0,,13.0 G81044,10.0,27.0,16.0,16.0,18.0,16.0,17.0,18.0,14.0,27.0,25.0,21.0,20.0,14.0,20.0,24.0,29.0,28.0,29.0,32.0,41.0,58.0,56.0,62.0,78.0,92.0,76.0,79.0,93.0,85.0,83.0,76.0,77.0,62.0,88.0,54.0,58.0,60.0,52.0,53.0,68.0,46.0,48.0,57.0,53.0,55.0,38.0,44.0,44.0,55.0,46.0,42.0,47.0,43.0,42.0,48.0,32.0,46.0,58.0,31.0,41.0,40.0,44.0,37.0,43.0,33.0,30.0,34.0,23.0,24.0,30.0,29.0,21.0,23.0,25.0,19.0,25.0,23.0,20.0,10.0,14.0,9.0,16.0,5.0,6.0,4.0,3.0,5.0,5.0,4.0,3.0,1.0,3.0,2.0,,1.0 G81046,54.0,42.0,41.0,44.0,49.0,59.0,54.0,60.0,64.0,52.0,71.0,42.0,68.0,73.0,68.0,66.0,66.0,68.0,63.0,45.0,63.0,56.0,50.0,54.0,61.0,50.0,52.0,81.0,74.0,68.0,52.0,64.0,71.0,87.0,84.0,76.0,75.0,83.0,73.0,74.0,76.0,87.0,94.0,75.0,74.0,92.0,91.0,79.0,101.0,85.0,92.0,80.0,82.0,100.0,104.0,83.0,123.0,102.0,87.0,110.0,91.0,80.0,75.0,82.0,69.0,70.0,71.0,50.0,63.0,46.0,56.0,55.0,36.0,51.0,42.0,58.0,60.0,47.0,66.0,48.0,46.0,27.0,31.0,29.0,27.0,35.0,16.0,29.0,18.0,16.0,15.0,10.0,10.0,11.0,6.0,7.0 G81047,25.0,21.0,17.0,22.0,15.0,15.0,20.0,21.0,15.0,30.0,24.0,21.0,25.0,16.0,27.0,28.0,18.0,27.0,17.0,25.0,22.0,22.0,34.0,44.0,72.0,69.0,55.0,91.0,76.0,71.0,81.0,64.0,61.0,71.0,58.0,73.0,49.0,59.0,56.0,51.0,40.0,37.0,44.0,38.0,44.0,55.0,50.0,39.0,42.0,27.0,51.0,38.0,54.0,44.0,39.0,42.0,55.0,30.0,33.0,38.0,42.0,40.0,36.0,24.0,29.0,27.0,31.0,23.0,20.0,25.0,24.0,19.0,18.0,19.0,25.0,17.0,18.0,22.0,16.0,8.0,17.0,16.0,14.0,10.0,9.0,11.0,9.0,5.0,6.0,8.0,4.0,7.0,5.0,2.0,,11.0 G81048,25.0,26.0,22.0,30.0,32.0,33.0,36.0,34.0,26.0,38.0,35.0,39.0,35.0,33.0,35.0,40.0,31.0,40.0,30.0,32.0,35.0,34.0,24.0,29.0,34.0,35.0,42.0,40.0,27.0,41.0,35.0,46.0,52.0,52.0,69.0,56.0,49.0,61.0,48.0,59.0,48.0,53.0,58.0,48.0,60.0,46.0,56.0,48.0,59.0,51.0,69.0,62.0,60.0,57.0,87.0,63.0,62.0,77.0,76.0,93.0,82.0,99.0,85.0,72.0,68.0,75.0,66.0,72.0,78.0,70.0,63.0,59.0,53.0,53.0,52.0,48.0,49.0,61.0,49.0,37.0,34.0,26.0,25.0,25.0,24.0,20.0,27.0,13.0,18.0,11.0,11.0,11.0,8.0,7.0,7.0,24.0 G81049,31.0,27.0,24.0,26.0,36.0,32.0,38.0,43.0,36.0,45.0,24.0,33.0,31.0,28.0,35.0,27.0,29.0,31.0,25.0,33.0,27.0,26.0,39.0,23.0,27.0,33.0,33.0,38.0,34.0,29.0,48.0,39.0,39.0,60.0,46.0,52.0,51.0,48.0,54.0,39.0,30.0,37.0,49.0,38.0,38.0,50.0,42.0,38.0,42.0,57.0,41.0,45.0,53.0,47.0,51.0,37.0,39.0,51.0,60.0,47.0,53.0,50.0,42.0,49.0,48.0,62.0,51.0,53.0,46.0,43.0,32.0,41.0,39.0,44.0,54.0,45.0,32.0,41.0,46.0,32.0,28.0,30.0,23.0,37.0,19.0,25.0,21.0,13.0,19.0,12.0,10.0,8.0,9.0,5.0,7.0,9.0 G81050,27.0,31.0,24.0,30.0,29.0,29.0,40.0,38.0,43.0,48.0,52.0,46.0,52.0,58.0,59.0,49.0,50.0,69.0,48.0,51.0,54.0,40.0,55.0,44.0,48.0,49.0,59.0,56.0,67.0,64.0,68.0,65.0,64.0,71.0,59.0,66.0,54.0,48.0,70.0,74.0,54.0,62.0,67.0,64.0,72.0,78.0,45.0,74.0,74.0,61.0,69.0,83.0,83.0,100.0,91.0,81.0,101.0,89.0,77.0,123.0,113.0,95.0,87.0,96.0,92.0,69.0,92.0,83.0,76.0,90.0,92.0,63.0,99.0,94.0,87.0,98.0,91.0,108.0,106.0,99.0,99.0,86.0,75.0,63.0,66.0,59.0,53.0,42.0,61.0,38.0,33.0,34.0,26.0,23.0,20.0,54.0 G81051,12.0,19.0,18.0,16.0,13.0,21.0,29.0,23.0,31.0,35.0,22.0,25.0,40.0,27.0,32.0,26.0,40.0,38.0,21.0,26.0,25.0,26.0,25.0,23.0,35.0,19.0,18.0,25.0,23.0,29.0,32.0,28.0,37.0,32.0,31.0,29.0,32.0,30.0,25.0,39.0,33.0,28.0,49.0,38.0,36.0,32.0,35.0,32.0,38.0,36.0,39.0,50.0,38.0,42.0,54.0,65.0,56.0,58.0,70.0,62.0,73.0,60.0,59.0,77.0,83.0,72.0,70.0,59.0,66.0,76.0,53.0,69.0,56.0,48.0,56.0,61.0,65.0,76.0,84.0,44.0,52.0,37.0,41.0,41.0,36.0,28.0,31.0,14.0,21.0,24.0,16.0,8.0,13.0,7.0,4.0,17.0 G81052,8.0,11.0,6.0,16.0,14.0,14.0,11.0,21.0,29.0,19.0,16.0,20.0,23.0,25.0,32.0,16.0,26.0,29.0,12.0,18.0,17.0,14.0,15.0,17.0,16.0,18.0,14.0,14.0,8.0,9.0,16.0,21.0,18.0,27.0,28.0,19.0,24.0,12.0,23.0,16.0,22.0,16.0,21.0,14.0,17.0,26.0,22.0,19.0,19.0,23.0,20.0,24.0,30.0,34.0,41.0,30.0,48.0,39.0,36.0,40.0,44.0,37.0,43.0,31.0,39.0,26.0,35.0,32.0,28.0,30.0,27.0,30.0,27.0,27.0,25.0,35.0,42.0,33.0,29.0,29.0,28.0,14.0,26.0,21.0,13.0,22.0,11.0,5.0,13.0,7.0,6.0,9.0,7.0,5.0,6.0,19.0 G81054,28.0,30.0,24.0,29.0,24.0,28.0,21.0,20.0,23.0,38.0,24.0,26.0,17.0,31.0,38.0,36.0,32.0,29.0,44.0,46.0,35.0,47.0,66.0,62.0,77.0,86.0,104.0,115.0,86.0,97.0,85.0,81.0,122.0,93.0,96.0,98.0,101.0,87.0,65.0,65.0,64.0,56.0,75.0,53.0,75.0,70.0,57.0,68.0,62.0,59.0,55.0,56.0,66.0,91.0,83.0,73.0,64.0,70.0,82.0,44.0,74.0,61.0,75.0,51.0,54.0,56.0,50.0,50.0,36.0,31.0,49.0,36.0,45.0,32.0,24.0,44.0,42.0,38.0,35.0,39.0,28.0,27.0,27.0,19.0,23.0,16.0,12.0,11.0,18.0,12.0,10.0,15.0,6.0,4.0,6.0,12.0 G81055,37.0,37.0,32.0,39.0,38.0,32.0,34.0,52.0,42.0,56.0,37.0,55.0,55.0,60.0,56.0,63.0,52.0,56.0,33.0,44.0,46.0,34.0,47.0,38.0,39.0,47.0,44.0,50.0,40.0,38.0,50.0,30.0,45.0,53.0,52.0,54.0,67.0,50.0,58.0,57.0,45.0,53.0,60.0,49.0,55.0,52.0,54.0,63.0,60.0,59.0,60.0,60.0,75.0,64.0,64.0,56.0,74.0,80.0,75.0,62.0,70.0,62.0,70.0,67.0,67.0,80.0,63.0,76.0,49.0,59.0,63.0,75.0,61.0,64.0,69.0,72.0,75.0,94.0,91.0,60.0,63.0,42.0,49.0,37.0,30.0,50.0,26.0,34.0,18.0,23.0,19.0,17.0,17.0,9.0,7.0,26.0 G81057,17.0,18.0,24.0,18.0,29.0,22.0,20.0,30.0,20.0,32.0,30.0,34.0,40.0,29.0,29.0,32.0,31.0,28.0,28.0,21.0,21.0,33.0,26.0,31.0,17.0,37.0,16.0,27.0,20.0,22.0,21.0,24.0,26.0,32.0,24.0,36.0,39.0,26.0,27.0,33.0,35.0,25.0,31.0,31.0,29.0,31.0,31.0,22.0,22.0,37.0,32.0,37.0,48.0,45.0,51.0,40.0,53.0,49.0,56.0,62.0,58.0,50.0,71.0,53.0,48.0,56.0,58.0,45.0,55.0,65.0,52.0,50.0,47.0,60.0,42.0,45.0,54.0,57.0,52.0,37.0,35.0,32.0,32.0,33.0,21.0,36.0,22.0,19.0,18.0,9.0,13.0,5.0,8.0,11.0,5.0,13.0 G81059,43.0,61.0,51.0,51.0,62.0,55.0,61.0,53.0,57.0,64.0,56.0,62.0,57.0,55.0,85.0,77.0,66.0,57.0,61.0,55.0,52.0,48.0,48.0,47.0,66.0,56.0,78.0,64.0,61.0,63.0,80.0,83.0,67.0,64.0,78.0,73.0,88.0,80.0,76.0,74.0,61.0,44.0,64.0,63.0,68.0,61.0,65.0,51.0,56.0,67.0,56.0,64.0,74.0,68.0,68.0,73.0,75.0,63.0,86.0,83.0,96.0,69.0,86.0,76.0,70.0,74.0,65.0,68.0,69.0,57.0,57.0,67.0,49.0,68.0,62.0,62.0,66.0,87.0,78.0,60.0,62.0,68.0,37.0,50.0,50.0,42.0,48.0,28.0,25.0,25.0,21.0,28.0,19.0,22.0,12.0,32.0 G81061,13.0,24.0,27.0,20.0,28.0,22.0,35.0,26.0,31.0,30.0,29.0,30.0,33.0,34.0,35.0,26.0,40.0,36.0,38.0,34.0,28.0,24.0,29.0,35.0,34.0,31.0,30.0,23.0,28.0,26.0,28.0,33.0,24.0,33.0,33.0,33.0,42.0,33.0,39.0,37.0,37.0,31.0,30.0,33.0,34.0,38.0,38.0,24.0,29.0,28.0,34.0,30.0,34.0,39.0,49.0,28.0,34.0,39.0,41.0,31.0,45.0,36.0,24.0,34.0,36.0,33.0,35.0,27.0,23.0,28.0,36.0,27.0,25.0,17.0,22.0,24.0,32.0,25.0,22.0,18.0,18.0,18.0,19.0,20.0,11.0,9.0,5.0,7.0,11.0,8.0,6.0,5.0,1.0,,3.0,8.0 G81065,35.0,37.0,35.0,39.0,34.0,37.0,46.0,57.0,41.0,47.0,43.0,55.0,41.0,51.0,56.0,55.0,47.0,61.0,54.0,51.0,44.0,31.0,38.0,43.0,43.0,40.0,38.0,49.0,33.0,38.0,42.0,45.0,38.0,50.0,59.0,45.0,46.0,57.0,44.0,60.0,71.0,57.0,50.0,82.0,63.0,54.0,53.0,63.0,68.0,65.0,53.0,65.0,57.0,58.0,65.0,63.0,74.0,66.0,69.0,61.0,67.0,78.0,64.0,50.0,55.0,37.0,69.0,42.0,55.0,54.0,55.0,65.0,52.0,41.0,46.0,43.0,48.0,58.0,51.0,40.0,46.0,43.0,39.0,27.0,30.0,33.0,30.0,21.0,26.0,14.0,20.0,7.0,20.0,10.0,15.0,25.0 G81070,77.0,82.0,75.0,93.0,92.0,89.0,80.0,111.0,104.0,105.0,113.0,117.0,120.0,151.0,127.0,122.0,113.0,126.0,115.0,97.0,81.0,97.0,110.0,141.0,174.0,166.0,193.0,221.0,236.0,253.0,236.0,221.0,240.0,230.0,222.0,224.0,200.0,210.0,195.0,190.0,193.0,205.0,192.0,208.0,208.0,201.0,191.0,221.0,165.0,211.0,151.0,194.0,206.0,192.0,199.0,155.0,167.0,162.0,180.0,164.0,138.0,154.0,156.0,139.0,134.0,106.0,126.0,103.0,92.0,86.0,92.0,85.0,81.0,86.0,91.0,83.0,86.0,93.0,78.0,67.0,63.0,69.0,50.0,47.0,49.0,38.0,41.0,37.0,39.0,40.0,28.0,32.0,19.0,16.0,19.0,46.0 G81071,7.0,6.0,5.0,7.0,6.0,6.0,4.0,6.0,6.0,8.0,9.0,6.0,11.0,6.0,9.0,7.0,2.0,10.0,260.0,792.0,1035.0,1100.0,852.0,749.0,741.0,476.0,500.0,388.0,347.0,234.0,256.0,164.0,128.0,54.0,68.0,102.0,79.0,68.0,45.0,43.0,38.0,26.0,25.0,21.0,16.0,15.0,14.0,13.0,5.0,8.0,9.0,13.0,7.0,11.0,9.0,5.0,10.0,4.0,7.0,10.0,9.0,7.0,6.0,4.0,7.0,5.0,5.0,4.0,3.0,1.0,2.0,4.0,2.0,1.0,1.0,3.0,,2.0,1.0,2.0,,1.0,,1.0,,1.0,1.0,,,,,,,,, G81073,26.0,50.0,35.0,49.0,48.0,55.0,54.0,50.0,47.0,70.0,77.0,49.0,62.0,63.0,61.0,67.0,52.0,40.0,58.0,32.0,37.0,40.0,47.0,47.0,46.0,43.0,31.0,46.0,44.0,44.0,74.0,70.0,58.0,55.0,78.0,64.0,59.0,72.0,72.0,66.0,86.0,67.0,58.0,84.0,76.0,86.0,79.0,47.0,64.0,51.0,58.0,72.0,63.0,73.0,67.0,71.0,62.0,66.0,53.0,56.0,75.0,53.0,56.0,47.0,43.0,49.0,41.0,48.0,29.0,23.0,37.0,31.0,34.0,31.0,27.0,42.0,38.0,48.0,40.0,40.0,33.0,26.0,26.0,24.0,24.0,25.0,16.0,16.0,16.0,9.0,7.0,7.0,3.0,4.0,3.0,4.0 G81074,54.0,68.0,79.0,103.0,89.0,85.0,100.0,92.0,108.0,117.0,101.0,112.0,103.0,123.0,103.0,110.0,117.0,121.0,104.0,92.0,81.0,96.0,98.0,70.0,103.0,93.0,92.0,115.0,107.0,100.0,101.0,126.0,110.0,103.0,108.0,127.0,150.0,122.0,116.0,118.0,118.0,126.0,128.0,126.0,132.0,129.0,122.0,101.0,105.0,104.0,147.0,102.0,140.0,111.0,161.0,129.0,130.0,121.0,142.0,131.0,134.0,135.0,121.0,118.0,101.0,107.0,124.0,95.0,89.0,85.0,103.0,125.0,111.0,107.0,89.0,80.0,113.0,101.0,109.0,82.0,83.0,70.0,59.0,46.0,48.0,44.0,42.0,33.0,33.0,33.0,25.0,25.0,17.0,21.0,10.0,35.0 G81075,24.0,20.0,12.0,31.0,26.0,25.0,23.0,31.0,41.0,42.0,34.0,39.0,30.0,40.0,42.0,42.0,43.0,59.0,79.0,98.0,109.0,76.0,58.0,52.0,54.0,44.0,42.0,35.0,40.0,31.0,27.0,40.0,43.0,45.0,31.0,39.0,45.0,40.0,40.0,53.0,53.0,45.0,43.0,40.0,54.0,41.0,34.0,29.0,33.0,45.0,31.0,42.0,31.0,43.0,38.0,38.0,35.0,38.0,40.0,39.0,26.0,33.0,34.0,29.0,31.0,31.0,28.0,18.0,22.0,35.0,18.0,11.0,15.0,9.0,15.0,12.0,17.0,11.0,12.0,14.0,13.0,12.0,13.0,8.0,11.0,5.0,6.0,7.0,9.0,4.0,4.0,2.0,3.0,3.0,1.0,4.0 G81076,19.0,29.0,38.0,44.0,30.0,43.0,51.0,50.0,53.0,59.0,66.0,55.0,72.0,56.0,73.0,64.0,63.0,62.0,51.0,55.0,54.0,38.0,45.0,45.0,53.0,39.0,44.0,40.0,56.0,44.0,53.0,60.0,57.0,53.0,57.0,66.0,59.0,87.0,66.0,75.0,61.0,66.0,78.0,84.0,59.0,85.0,75.0,87.0,76.0,98.0,84.0,93.0,103.0,108.0,99.0,96.0,113.0,103.0,115.0,108.0,120.0,99.0,101.0,97.0,100.0,93.0,94.0,88.0,71.0,83.0,100.0,95.0,80.0,89.0,93.0,82.0,95.0,100.0,96.0,75.0,91.0,80.0,72.0,56.0,46.0,56.0,50.0,45.0,33.0,37.0,22.0,32.0,27.0,19.0,20.0,46.0 G81077,54.0,56.0,61.0,66.0,54.0,84.0,68.0,85.0,98.0,75.0,88.0,84.0,78.0,92.0,79.0,77.0,92.0,93.0,70.0,86.0,66.0,51.0,79.0,65.0,74.0,83.0,81.0,96.0,95.0,92.0,90.0,105.0,92.0,112.0,93.0,116.0,126.0,95.0,102.0,97.0,83.0,75.0,70.0,95.0,77.0,107.0,82.0,81.0,70.0,90.0,87.0,97.0,108.0,121.0,113.0,127.0,115.0,128.0,119.0,151.0,134.0,125.0,127.0,122.0,130.0,130.0,134.0,126.0,126.0,133.0,131.0,120.0,108.0,140.0,149.0,141.0,121.0,147.0,171.0,100.0,112.0,101.0,92.0,70.0,83.0,83.0,71.0,60.0,51.0,56.0,45.0,27.0,39.0,36.0,24.0,65.0 G81082,22.0,18.0,29.0,24.0,34.0,46.0,29.0,37.0,38.0,40.0,28.0,30.0,40.0,57.0,52.0,47.0,40.0,46.0,36.0,34.0,28.0,19.0,36.0,28.0,17.0,17.0,22.0,29.0,25.0,29.0,23.0,24.0,38.0,31.0,34.0,26.0,40.0,41.0,38.0,31.0,35.0,39.0,40.0,34.0,52.0,36.0,47.0,54.0,38.0,36.0,42.0,41.0,52.0,44.0,39.0,51.0,60.0,44.0,46.0,59.0,56.0,59.0,47.0,59.0,37.0,43.0,34.0,38.0,35.0,30.0,26.0,35.0,29.0,28.0,33.0,29.0,33.0,42.0,25.0,21.0,25.0,31.0,22.0,15.0,17.0,18.0,10.0,13.0,10.0,12.0,14.0,7.0,3.0,3.0,6.0,15.0 G81083,38.0,28.0,36.0,34.0,38.0,32.0,41.0,31.0,51.0,58.0,52.0,58.0,53.0,48.0,46.0,57.0,46.0,39.0,36.0,38.0,27.0,29.0,23.0,34.0,42.0,48.0,39.0,41.0,58.0,40.0,51.0,54.0,56.0,55.0,52.0,46.0,51.0,52.0,61.0,42.0,58.0,51.0,64.0,68.0,64.0,57.0,64.0,64.0,55.0,63.0,59.0,68.0,58.0,62.0,61.0,53.0,51.0,49.0,50.0,48.0,45.0,47.0,36.0,45.0,37.0,26.0,31.0,30.0,28.0,31.0,29.0,32.0,26.0,26.0,25.0,13.0,26.0,31.0,21.0,26.0,19.0,12.0,35.0,18.0,32.0,16.0,16.0,11.0,15.0,12.0,13.0,13.0,6.0,5.0,5.0,24.0 G81085,12.0,9.0,17.0,13.0,18.0,16.0,13.0,9.0,17.0,22.0,13.0,22.0,18.0,10.0,23.0,21.0,17.0,22.0,25.0,18.0,18.0,18.0,16.0,10.0,13.0,13.0,19.0,21.0,16.0,13.0,13.0,20.0,15.0,16.0,28.0,27.0,14.0,24.0,21.0,21.0,23.0,12.0,23.0,21.0,15.0,20.0,19.0,34.0,24.0,22.0,20.0,25.0,27.0,24.0,32.0,24.0,27.0,31.0,34.0,38.0,26.0,31.0,35.0,32.0,28.0,24.0,23.0,27.0,17.0,17.0,23.0,31.0,31.0,25.0,33.0,30.0,28.0,26.0,36.0,20.0,19.0,24.0,18.0,17.0,16.0,12.0,18.0,13.0,12.0,9.0,10.0,5.0,5.0,2.0,2.0,7.0 G81086,12.0,31.0,30.0,37.0,32.0,33.0,38.0,45.0,53.0,53.0,49.0,43.0,45.0,50.0,48.0,37.0,47.0,49.0,29.0,29.0,41.0,28.0,35.0,40.0,35.0,33.0,29.0,44.0,47.0,41.0,31.0,39.0,37.0,43.0,48.0,33.0,49.0,50.0,45.0,47.0,49.0,55.0,52.0,58.0,46.0,57.0,37.0,49.0,37.0,62.0,46.0,56.0,69.0,56.0,68.0,80.0,64.0,72.0,72.0,62.0,79.0,83.0,68.0,68.0,60.0,61.0,48.0,57.0,44.0,48.0,34.0,42.0,53.0,47.0,37.0,40.0,36.0,34.0,38.0,38.0,35.0,25.0,19.0,31.0,18.0,26.0,11.0,16.0,11.0,9.0,12.0,7.0,6.0,3.0,2.0,11.0 G81087,18.0,17.0,27.0,19.0,29.0,28.0,23.0,23.0,24.0,24.0,19.0,37.0,37.0,32.0,34.0,29.0,29.0,26.0,38.0,26.0,29.0,23.0,25.0,20.0,29.0,30.0,27.0,22.0,28.0,18.0,24.0,29.0,31.0,35.0,30.0,31.0,26.0,36.0,31.0,23.0,22.0,29.0,23.0,30.0,33.0,33.0,25.0,27.0,41.0,39.0,48.0,40.0,41.0,51.0,58.0,57.0,65.0,65.0,56.0,68.0,49.0,82.0,57.0,67.0,82.0,59.0,52.0,72.0,63.0,63.0,58.0,65.0,63.0,54.0,47.0,60.0,60.0,62.0,68.0,49.0,40.0,50.0,29.0,25.0,30.0,35.0,27.0,17.0,27.0,18.0,14.0,6.0,11.0,11.0,3.0,12.0 G81088,66.0,81.0,83.0,101.0,71.0,99.0,94.0,100.0,104.0,103.0,125.0,112.0,133.0,136.0,129.0,132.0,119.0,128.0,116.0,95.0,90.0,76.0,104.0,92.0,82.0,74.0,73.0,91.0,79.0,105.0,96.0,97.0,112.0,103.0,105.0,112.0,118.0,123.0,128.0,117.0,134.0,119.0,121.0,127.0,119.0,130.0,117.0,111.0,149.0,150.0,164.0,142.0,175.0,188.0,200.0,175.0,162.0,161.0,174.0,175.0,193.0,180.0,176.0,189.0,169.0,120.0,171.0,137.0,142.0,153.0,138.0,137.0,148.0,135.0,128.0,139.0,150.0,161.0,201.0,124.0,148.0,132.0,103.0,92.0,75.0,78.0,82.0,58.0,48.0,56.0,35.0,42.0,24.0,35.0,17.0,60.0 G81089,14.0,15.0,19.0,14.0,22.0,19.0,27.0,18.0,28.0,26.0,17.0,26.0,32.0,24.0,31.0,27.0,21.0,27.0,14.0,27.0,16.0,20.0,13.0,15.0,16.0,16.0,18.0,25.0,10.0,21.0,28.0,25.0,29.0,21.0,28.0,39.0,30.0,28.0,17.0,36.0,22.0,22.0,26.0,24.0,27.0,24.0,17.0,21.0,22.0,19.0,19.0,24.0,25.0,18.0,24.0,16.0,26.0,20.0,31.0,21.0,27.0,18.0,29.0,19.0,32.0,14.0,18.0,18.0,13.0,18.0,19.0,7.0,17.0,21.0,9.0,10.0,10.0,16.0,8.0,12.0,9.0,5.0,6.0,2.0,2.0,2.0,2.0,3.0,5.0,2.0,2.0,6.0,2.0,1.0,,3.0 G81095,95.0,113.0,133.0,123.0,127.0,113.0,138.0,122.0,148.0,129.0,124.0,119.0,141.0,127.0,147.0,135.0,132.0,134.0,139.0,125.0,99.0,104.0,113.0,110.0,163.0,130.0,150.0,161.0,165.0,149.0,159.0,171.0,201.0,215.0,186.0,226.0,198.0,214.0,210.0,201.0,186.0,179.0,169.0,196.0,152.0,162.0,157.0,138.0,143.0,145.0,155.0,156.0,174.0,168.0,188.0,173.0,185.0,207.0,177.0,189.0,181.0,195.0,171.0,166.0,176.0,159.0,136.0,154.0,146.0,150.0,131.0,165.0,115.0,146.0,118.0,129.0,119.0,120.0,140.0,101.0,98.0,70.0,80.0,56.0,60.0,54.0,53.0,38.0,42.0,44.0,22.0,15.0,15.0,15.0,9.0,31.0 G81096,7.0,16.0,6.0,8.0,8.0,14.0,11.0,14.0,15.0,16.0,13.0,14.0,11.0,12.0,15.0,16.0,21.0,18.0,9.0,11.0,15.0,9.0,5.0,13.0,9.0,10.0,10.0,19.0,12.0,17.0,13.0,20.0,14.0,22.0,11.0,22.0,19.0,18.0,15.0,16.0,20.0,14.0,16.0,20.0,20.0,11.0,14.0,21.0,13.0,21.0,19.0,21.0,15.0,22.0,19.0,28.0,25.0,19.0,31.0,22.0,29.0,14.0,23.0,18.0,17.0,19.0,18.0,8.0,17.0,25.0,16.0,17.0,12.0,18.0,12.0,14.0,23.0,14.0,17.0,14.0,17.0,12.0,11.0,9.0,10.0,5.0,7.0,10.0,6.0,3.0,4.0,2.0,4.0,,2.0,6.0 G81098,70.0,60.0,66.0,64.0,54.0,60.0,68.0,56.0,67.0,68.0,56.0,63.0,65.0,78.0,63.0,97.0,96.0,120.0,91.0,111.0,152.0,130.0,69.0,60.0,68.0,60.0,61.0,78.0,79.0,75.0,89.0,88.0,80.0,85.0,96.0,79.0,87.0,92.0,61.0,86.0,81.0,64.0,59.0,58.0,61.0,74.0,63.0,69.0,40.0,62.0,56.0,68.0,71.0,58.0,68.0,73.0,75.0,109.0,89.0,64.0,100.0,99.0,80.0,99.0,81.0,78.0,87.0,69.0,78.0,74.0,67.0,74.0,69.0,79.0,59.0,74.0,81.0,68.0,91.0,54.0,66.0,63.0,58.0,48.0,42.0,41.0,46.0,34.0,34.0,29.0,21.0,16.0,21.0,13.0,13.0,38.0 G81099,13.0,18.0,12.0,25.0,28.0,30.0,34.0,34.0,33.0,39.0,36.0,48.0,43.0,57.0,41.0,45.0,48.0,40.0,31.0,36.0,38.0,31.0,36.0,41.0,21.0,37.0,19.0,31.0,29.0,30.0,26.0,23.0,37.0,37.0,35.0,33.0,46.0,41.0,43.0,46.0,42.0,42.0,44.0,57.0,50.0,61.0,49.0,47.0,66.0,52.0,47.0,56.0,73.0,68.0,65.0,76.0,75.0,76.0,85.0,70.0,84.0,80.0,95.0,73.0,80.0,75.0,89.0,80.0,56.0,80.0,67.0,73.0,88.0,92.0,90.0,79.0,89.0,83.0,103.0,79.0,82.0,68.0,58.0,55.0,38.0,46.0,54.0,36.0,34.0,25.0,20.0,23.0,20.0,27.0,18.0,39.0 G81100,76.0,98.0,75.0,99.0,71.0,79.0,108.0,95.0,94.0,92.0,119.0,124.0,95.0,132.0,96.0,113.0,119.0,114.0,88.0,82.0,91.0,82.0,95.0,76.0,105.0,94.0,91.0,97.0,99.0,101.0,95.0,104.0,130.0,138.0,135.0,130.0,121.0,137.0,132.0,147.0,135.0,129.0,111.0,139.0,135.0,131.0,113.0,108.0,100.0,118.0,114.0,125.0,122.0,128.0,137.0,152.0,137.0,138.0,138.0,133.0,139.0,131.0,134.0,111.0,117.0,108.0,122.0,127.0,127.0,112.0,127.0,108.0,132.0,114.0,84.0,126.0,104.0,126.0,133.0,103.0,82.0,97.0,89.0,66.0,66.0,45.0,72.0,53.0,39.0,34.0,31.0,28.0,22.0,21.0,17.0,31.0 G81102,66.0,69.0,59.0,68.0,63.0,80.0,76.0,71.0,87.0,91.0,82.0,90.0,62.0,85.0,68.0,94.0,79.0,80.0,78.0,72.0,57.0,73.0,53.0,68.0,65.0,45.0,61.0,82.0,70.0,77.0,87.0,79.0,91.0,89.0,99.0,86.0,102.0,96.0,92.0,74.0,88.0,73.0,83.0,65.0,99.0,88.0,82.0,97.0,87.0,68.0,103.0,111.0,105.0,119.0,129.0,117.0,138.0,131.0,143.0,115.0,143.0,163.0,145.0,127.0,96.0,115.0,100.0,97.0,104.0,116.0,100.0,92.0,99.0,102.0,98.0,96.0,115.0,117.0,115.0,78.0,80.0,79.0,60.0,48.0,45.0,54.0,59.0,40.0,34.0,26.0,22.0,29.0,28.0,18.0,18.0,51.0 G81104,47.0,50.0,56.0,56.0,63.0,74.0,72.0,77.0,85.0,76.0,85.0,91.0,103.0,107.0,93.0,92.0,79.0,73.0,67.0,70.0,59.0,81.0,59.0,59.0,69.0,50.0,71.0,61.0,83.0,89.0,67.0,89.0,102.0,98.0,86.0,80.0,81.0,110.0,95.0,93.0,95.0,86.0,90.0,97.0,94.0,84.0,74.0,85.0,75.0,87.0,86.0,75.0,72.0,103.0,78.0,72.0,87.0,107.0,99.0,94.0,110.0,80.0,72.0,89.0,91.0,89.0,68.0,67.0,72.0,78.0,77.0,64.0,75.0,66.0,64.0,73.0,75.0,77.0,82.0,52.0,60.0,48.0,53.0,36.0,30.0,26.0,37.0,37.0,26.0,20.0,11.0,17.0,18.0,15.0,13.0,23.0 G81613,16.0,15.0,21.0,20.0,19.0,16.0,29.0,27.0,32.0,26.0,26.0,28.0,29.0,26.0,23.0,31.0,22.0,29.0,33.0,56.0,50.0,57.0,44.0,45.0,42.0,34.0,36.0,30.0,38.0,34.0,33.0,26.0,38.0,26.0,36.0,45.0,33.0,33.0,51.0,42.0,35.0,32.0,34.0,31.0,38.0,27.0,28.0,35.0,32.0,38.0,20.0,24.0,31.0,31.0,30.0,27.0,36.0,27.0,29.0,27.0,28.0,20.0,23.0,22.0,30.0,24.0,26.0,20.0,14.0,10.0,17.0,13.0,13.0,6.0,11.0,10.0,12.0,15.0,10.0,11.0,5.0,14.0,12.0,9.0,7.0,3.0,9.0,5.0,3.0,4.0,2.0,2.0,3.0,4.0,1.0,7.0 G81614,14.0,13.0,13.0,17.0,16.0,26.0,18.0,25.0,29.0,26.0,24.0,18.0,34.0,37.0,36.0,36.0,33.0,36.0,41.0,25.0,26.0,28.0,27.0,24.0,25.0,30.0,24.0,18.0,18.0,30.0,18.0,25.0,21.0,24.0,24.0,29.0,19.0,22.0,24.0,25.0,36.0,22.0,34.0,38.0,36.0,40.0,44.0,35.0,34.0,38.0,33.0,34.0,34.0,51.0,56.0,47.0,49.0,49.0,59.0,44.0,38.0,57.0,44.0,46.0,35.0,35.0,40.0,26.0,43.0,37.0,43.0,34.0,31.0,23.0,34.0,30.0,34.0,32.0,32.0,17.0,22.0,17.0,29.0,13.0,7.0,15.0,22.0,22.0,12.0,21.0,7.0,5.0,4.0,3.0,1.0,5.0 G81634,25.0,32.0,43.0,26.0,36.0,29.0,26.0,28.0,24.0,26.0,27.0,25.0,27.0,19.0,31.0,26.0,34.0,32.0,27.0,82.0,32.0,23.0,24.0,24.0,27.0,19.0,23.0,33.0,38.0,35.0,37.0,36.0,26.0,38.0,39.0,42.0,35.0,48.0,25.0,35.0,40.0,36.0,35.0,32.0,42.0,31.0,21.0,28.0,27.0,36.0,33.0,37.0,36.0,34.0,37.0,48.0,49.0,51.0,50.0,51.0,68.0,48.0,50.0,46.0,61.0,50.0,49.0,43.0,44.0,37.0,29.0,41.0,37.0,42.0,44.0,33.0,33.0,40.0,39.0,31.0,22.0,21.0,31.0,15.0,23.0,21.0,18.0,11.0,8.0,13.0,6.0,2.0,3.0,2.0,3.0,8.0 G81638,84.0,72.0,65.0,91.0,61.0,80.0,75.0,92.0,87.0,105.0,96.0,105.0,138.0,114.0,102.0,110.0,120.0,94.0,112.0,134.0,161.0,193.0,184.0,229.0,270.0,340.0,332.0,352.0,341.0,348.0,308.0,324.0,297.0,335.0,321.0,321.0,289.0,280.0,238.0,245.0,247.0,208.0,243.0,214.0,210.0,207.0,201.0,207.0,184.0,191.0,175.0,182.0,179.0,141.0,164.0,140.0,129.0,156.0,157.0,138.0,98.0,109.0,111.0,103.0,77.0,71.0,67.0,84.0,68.0,49.0,70.0,58.0,50.0,58.0,47.0,41.0,52.0,48.0,52.0,33.0,38.0,42.0,28.0,20.0,17.0,24.0,17.0,21.0,18.0,7.0,15.0,7.0,10.0,4.0,8.0,18.0 G81641,26.0,20.0,19.0,31.0,25.0,15.0,35.0,30.0,22.0,21.0,16.0,27.0,23.0,33.0,21.0,22.0,22.0,16.0,28.0,15.0,21.0,19.0,17.0,14.0,25.0,19.0,27.0,32.0,22.0,25.0,23.0,31.0,26.0,29.0,37.0,31.0,27.0,46.0,35.0,25.0,27.0,26.0,24.0,28.0,25.0,27.0,21.0,32.0,28.0,18.0,18.0,19.0,21.0,27.0,25.0,20.0,28.0,25.0,35.0,34.0,31.0,26.0,27.0,21.0,24.0,23.0,19.0,21.0,25.0,25.0,14.0,21.0,11.0,12.0,12.0,14.0,10.0,16.0,12.0,7.0,14.0,11.0,6.0,5.0,8.0,2.0,5.0,3.0,4.0,5.0,3.0,1.0,,2.0,1.0,4.0 G81646,6.0,12.0,11.0,11.0,7.0,20.0,15.0,16.0,19.0,18.0,18.0,19.0,22.0,22.0,16.0,18.0,18.0,23.0,11.0,12.0,17.0,15.0,13.0,8.0,21.0,12.0,14.0,12.0,15.0,15.0,15.0,14.0,10.0,15.0,22.0,15.0,12.0,15.0,14.0,33.0,20.0,22.0,16.0,20.0,24.0,23.0,27.0,20.0,15.0,14.0,17.0,23.0,22.0,20.0,21.0,14.0,27.0,18.0,22.0,19.0,15.0,15.0,15.0,16.0,19.0,17.0,11.0,9.0,11.0,9.0,14.0,12.0,14.0,11.0,8.0,7.0,7.0,4.0,3.0,4.0,2.0,2.0,1.0,4.0,1.0,,1.0,3.0,,,1.0,1.0,1.0,1.0,1.0,1.0 G81656,13.0,13.0,16.0,13.0,11.0,14.0,15.0,12.0,19.0,13.0,19.0,10.0,16.0,16.0,40.0,41.0,57.0,67.0,54.0,34.0,31.0,23.0,32.0,31.0,50.0,57.0,52.0,47.0,50.0,55.0,40.0,58.0,65.0,55.0,60.0,52.0,54.0,47.0,48.0,36.0,34.0,27.0,35.0,25.0,24.0,31.0,31.0,22.0,27.0,28.0,21.0,34.0,26.0,29.0,25.0,41.0,35.0,35.0,27.0,27.0,39.0,35.0,28.0,27.0,30.0,21.0,18.0,27.0,17.0,14.0,16.0,21.0,13.0,13.0,16.0,12.0,10.0,19.0,15.0,14.0,13.0,10.0,8.0,6.0,6.0,9.0,3.0,3.0,3.0,3.0,,1.0,1.0,2.0,3.0,2.0 G81658,95.0,82.0,92.0,96.0,98.0,119.0,96.0,89.0,99.0,112.0,111.0,97.0,126.0,103.0,104.0,90.0,97.0,121.0,102.0,78.0,91.0,76.0,83.0,95.0,97.0,113.0,110.0,126.0,112.0,125.0,124.0,171.0,182.0,155.0,156.0,151.0,159.0,161.0,139.0,164.0,116.0,151.0,129.0,137.0,118.0,108.0,96.0,111.0,115.0,107.0,97.0,103.0,103.0,116.0,122.0,100.0,126.0,117.0,123.0,114.0,96.0,109.0,94.0,96.0,98.0,93.0,92.0,92.0,96.0,66.0,78.0,70.0,69.0,60.0,60.0,69.0,71.0,85.0,66.0,47.0,48.0,35.0,34.0,34.0,35.0,37.0,30.0,33.0,14.0,16.0,18.0,18.0,11.0,9.0,11.0,30.0 G81663,17.0,15.0,21.0,16.0,20.0,21.0,31.0,17.0,24.0,21.0,38.0,16.0,32.0,19.0,23.0,27.0,26.0,25.0,31.0,18.0,26.0,26.0,21.0,20.0,24.0,20.0,23.0,20.0,28.0,30.0,39.0,27.0,27.0,30.0,38.0,39.0,38.0,26.0,38.0,28.0,35.0,28.0,27.0,37.0,40.0,31.0,33.0,36.0,29.0,33.0,35.0,33.0,35.0,35.0,40.0,36.0,47.0,40.0,43.0,39.0,34.0,48.0,39.0,41.0,40.0,24.0,33.0,37.0,28.0,21.0,32.0,23.0,23.0,28.0,29.0,17.0,25.0,27.0,36.0,15.0,13.0,21.0,19.0,13.0,17.0,9.0,13.0,10.0,7.0,5.0,2.0,3.0,1.0,4.0,1.0,6.0 G81669,5.0,11.0,4.0,8.0,8.0,10.0,9.0,14.0,14.0,16.0,18.0,12.0,19.0,14.0,15.0,19.0,18.0,20.0,16.0,14.0,9.0,19.0,7.0,4.0,9.0,12.0,10.0,13.0,13.0,6.0,7.0,10.0,7.0,17.0,9.0,23.0,18.0,17.0,20.0,23.0,14.0,21.0,17.0,17.0,20.0,10.0,21.0,16.0,17.0,10.0,9.0,14.0,21.0,15.0,14.0,16.0,19.0,16.0,13.0,13.0,7.0,18.0,18.0,15.0,11.0,9.0,13.0,12.0,12.0,8.0,10.0,8.0,7.0,11.0,9.0,12.0,6.0,7.0,8.0,6.0,2.0,9.0,5.0,3.0,,4.0,2.0,5.0,2.0,3.0,1.0,3.0,1.0,1.0,, G81689,1.0,2.0,,1.0,2.0,,,1.0,2.0,1.0,2.0,2.0,,2.0,1.0,1.0,,1.0,3.0,2.0,5.0,5.0,8.0,11.0,6.0,4.0,2.0,9.0,6.0,7.0,6.0,6.0,9.0,8.0,6.0,13.0,12.0,11.0,12.0,7.0,10.0,9.0,11.0,5.0,5.0,10.0,7.0,6.0,5.0,5.0,5.0,5.0,5.0,3.0,1.0,7.0,3.0,5.0,1.0,4.0,2.0,2.0,1.0,1.0,1.0,2.0,1.0,2.0,1.0,1.0,1.0,,,,1.0,,,,,,1.0,,,,,,,,,,,,,,, G81694,8.0,4.0,2.0,5.0,5.0,6.0,10.0,12.0,8.0,5.0,8.0,9.0,6.0,7.0,6.0,6.0,9.0,7.0,4.0,9.0,23.0,16.0,19.0,23.0,23.0,25.0,35.0,48.0,32.0,37.0,29.0,44.0,32.0,40.0,34.0,36.0,44.0,33.0,26.0,30.0,24.0,31.0,24.0,27.0,28.0,17.0,25.0,23.0,19.0,18.0,14.0,14.0,15.0,10.0,18.0,17.0,20.0,12.0,8.0,16.0,8.0,9.0,9.0,8.0,8.0,11.0,6.0,3.0,5.0,4.0,9.0,2.0,2.0,6.0,3.0,1.0,5.0,6.0,6.0,5.0,4.0,6.0,3.0,1.0,1.0,3.0,3.0,6.0,1.0,2.0,2.0,,2.0,1.0,, H82003,46.0,70.0,53.0,66.0,61.0,64.0,45.0,48.0,59.0,62.0,47.0,61.0,58.0,50.0,61.0,63.0,59.0,54.0,48.0,58.0,47.0,50.0,63.0,46.0,53.0,78.0,70.0,96.0,69.0,73.0,70.0,68.0,83.0,82.0,72.0,96.0,77.0,80.0,78.0,64.0,57.0,64.0,59.0,68.0,70.0,74.0,64.0,39.0,57.0,59.0,53.0,69.0,85.0,86.0,89.0,87.0,88.0,95.0,73.0,66.0,67.0,74.0,65.0,67.0,65.0,70.0,68.0,67.0,71.0,36.0,48.0,54.0,45.0,48.0,47.0,39.0,44.0,63.0,59.0,40.0,41.0,37.0,33.0,27.0,18.0,25.0,24.0,16.0,18.0,14.0,17.0,12.0,14.0,6.0,10.0,28.0 H82004,17.0,12.0,20.0,17.0,22.0,25.0,18.0,22.0,30.0,19.0,18.0,36.0,31.0,27.0,19.0,41.0,21.0,27.0,24.0,29.0,16.0,20.0,17.0,20.0,24.0,20.0,18.0,20.0,24.0,22.0,28.0,34.0,24.0,17.0,25.0,40.0,30.0,29.0,22.0,31.0,30.0,25.0,25.0,37.0,27.0,31.0,39.0,36.0,33.0,29.0,27.0,29.0,43.0,49.0,39.0,31.0,28.0,44.0,58.0,48.0,39.0,42.0,39.0,40.0,36.0,45.0,37.0,42.0,38.0,42.0,35.0,26.0,28.0,30.0,19.0,29.0,30.0,27.0,28.0,15.0,22.0,31.0,18.0,16.0,11.0,21.0,17.0,17.0,7.0,9.0,14.0,3.0,5.0,7.0,4.0,4.0 H82005,78.0,63.0,83.0,77.0,84.0,76.0,79.0,82.0,88.0,80.0,72.0,79.0,92.0,76.0,90.0,97.0,94.0,86.0,88.0,58.0,50.0,53.0,54.0,51.0,54.0,67.0,68.0,66.0,68.0,78.0,70.0,79.0,81.0,110.0,88.0,129.0,114.0,120.0,112.0,115.0,122.0,115.0,104.0,93.0,86.0,100.0,85.0,85.0,69.0,82.0,87.0,94.0,86.0,82.0,72.0,92.0,102.0,88.0,71.0,76.0,85.0,76.0,74.0,59.0,60.0,69.0,56.0,59.0,47.0,50.0,49.0,48.0,55.0,43.0,43.0,50.0,38.0,43.0,46.0,32.0,34.0,42.0,33.0,26.0,19.0,18.0,13.0,18.0,15.0,21.0,12.0,11.0,13.0,7.0,3.0,11.0 H82006,13.0,12.0,32.0,29.0,24.0,32.0,27.0,26.0,22.0,29.0,22.0,29.0,20.0,30.0,20.0,26.0,29.0,25.0,24.0,21.0,21.0,21.0,16.0,30.0,22.0,22.0,28.0,20.0,33.0,25.0,24.0,33.0,29.0,25.0,46.0,25.0,38.0,28.0,33.0,29.0,34.0,23.0,34.0,35.0,44.0,41.0,32.0,29.0,34.0,36.0,31.0,38.0,47.0,27.0,46.0,29.0,44.0,47.0,48.0,48.0,58.0,62.0,56.0,43.0,49.0,34.0,45.0,35.0,41.0,51.0,45.0,46.0,31.0,31.0,43.0,37.0,33.0,51.0,56.0,35.0,52.0,39.0,30.0,36.0,24.0,28.0,20.0,26.0,21.0,16.0,17.0,10.0,13.0,13.0,9.0,26.0 H82007,35.0,29.0,44.0,60.0,51.0,49.0,64.0,54.0,60.0,63.0,58.0,67.0,61.0,71.0,56.0,50.0,68.0,52.0,64.0,50.0,44.0,53.0,47.0,52.0,36.0,63.0,60.0,56.0,56.0,57.0,58.0,59.0,71.0,84.0,79.0,64.0,85.0,67.0,63.0,65.0,85.0,81.0,65.0,63.0,72.0,75.0,76.0,75.0,59.0,67.0,59.0,70.0,64.0,84.0,90.0,89.0,90.0,96.0,81.0,99.0,125.0,95.0,91.0,114.0,94.0,109.0,98.0,123.0,82.0,122.0,95.0,111.0,112.0,110.0,97.0,107.0,135.0,124.0,141.0,106.0,106.0,87.0,72.0,55.0,68.0,57.0,62.0,56.0,56.0,35.0,32.0,19.0,20.0,21.0,15.0,35.0 H82009,60.0,68.0,66.0,85.0,70.0,94.0,96.0,86.0,68.0,107.0,84.0,94.0,82.0,106.0,106.0,92.0,82.0,95.0,100.0,78.0,76.0,77.0,71.0,77.0,93.0,71.0,83.0,96.0,94.0,94.0,89.0,89.0,87.0,113.0,118.0,126.0,111.0,113.0,108.0,112.0,127.0,102.0,120.0,145.0,117.0,153.0,107.0,90.0,96.0,116.0,115.0,144.0,129.0,103.0,124.0,127.0,141.0,111.0,121.0,122.0,133.0,137.0,134.0,95.0,104.0,91.0,98.0,80.0,97.0,82.0,84.0,76.0,81.0,77.0,82.0,104.0,90.0,107.0,112.0,63.0,75.0,69.0,66.0,39.0,46.0,49.0,60.0,38.0,33.0,18.0,24.0,24.0,16.0,12.0,16.0,31.0 H82011,59.0,49.0,60.0,81.0,64.0,71.0,81.0,97.0,103.0,86.0,106.0,108.0,85.0,91.0,86.0,82.0,89.0,80.0,92.0,67.0,53.0,70.0,74.0,71.0,83.0,91.0,78.0,91.0,87.0,107.0,103.0,101.0,109.0,106.0,133.0,106.0,118.0,109.0,95.0,103.0,106.0,101.0,87.0,109.0,110.0,104.0,101.0,87.0,84.0,82.0,85.0,91.0,116.0,95.0,92.0,96.0,112.0,100.0,101.0,117.0,111.0,105.0,99.0,113.0,99.0,115.0,109.0,95.0,111.0,88.0,76.0,90.0,91.0,74.0,83.0,87.0,103.0,96.0,93.0,83.0,62.0,55.0,41.0,50.0,40.0,32.0,36.0,29.0,40.0,25.0,26.0,15.0,14.0,12.0,12.0,22.0 H82012,69.0,87.0,112.0,87.0,110.0,87.0,94.0,100.0,85.0,95.0,84.0,89.0,99.0,93.0,115.0,112.0,72.0,90.0,71.0,89.0,76.0,81.0,89.0,82.0,106.0,113.0,120.0,127.0,120.0,133.0,150.0,139.0,134.0,119.0,161.0,153.0,109.0,127.0,133.0,129.0,145.0,109.0,114.0,125.0,98.0,117.0,102.0,83.0,81.0,69.0,76.0,86.0,78.0,63.0,67.0,63.0,70.0,69.0,74.0,68.0,65.0,61.0,61.0,47.0,56.0,72.0,70.0,49.0,41.0,44.0,53.0,43.0,36.0,46.0,49.0,42.0,30.0,36.0,29.0,25.0,28.0,15.0,15.0,16.0,17.0,18.0,16.0,19.0,10.0,5.0,7.0,5.0,9.0,10.0,9.0,11.0 H82013,48.0,52.0,58.0,68.0,68.0,67.0,66.0,65.0,55.0,52.0,64.0,61.0,65.0,66.0,72.0,63.0,79.0,58.0,77.0,62.0,42.0,68.0,44.0,61.0,43.0,66.0,76.0,87.0,65.0,68.0,74.0,75.0,92.0,86.0,93.0,94.0,84.0,93.0,72.0,81.0,101.0,92.0,72.0,85.0,93.0,100.0,74.0,72.0,76.0,67.0,67.0,85.0,74.0,71.0,83.0,79.0,90.0,92.0,93.0,97.0,95.0,105.0,118.0,117.0,121.0,115.0,117.0,97.0,88.0,87.0,96.0,76.0,87.0,93.0,85.0,78.0,100.0,110.0,109.0,76.0,86.0,76.0,74.0,53.0,52.0,63.0,71.0,40.0,48.0,38.0,49.0,38.0,25.0,22.0,18.0,43.0 H82014,48.0,59.0,61.0,57.0,54.0,53.0,63.0,66.0,65.0,61.0,68.0,62.0,75.0,70.0,67.0,54.0,71.0,58.0,62.0,51.0,51.0,57.0,64.0,69.0,59.0,58.0,71.0,56.0,58.0,73.0,78.0,78.0,76.0,65.0,96.0,83.0,65.0,89.0,90.0,69.0,61.0,79.0,64.0,75.0,92.0,91.0,83.0,78.0,81.0,82.0,82.0,91.0,81.0,103.0,94.0,103.0,106.0,95.0,87.0,96.0,96.0,95.0,92.0,92.0,94.0,87.0,90.0,88.0,85.0,86.0,99.0,84.0,82.0,86.0,96.0,96.0,98.0,100.0,121.0,93.0,91.0,80.0,97.0,56.0,63.0,67.0,61.0,44.0,43.0,19.0,34.0,24.0,27.0,19.0,20.0,50.0 H82016,41.0,54.0,46.0,65.0,61.0,58.0,58.0,65.0,91.0,73.0,78.0,69.0,78.0,79.0,72.0,69.0,54.0,62.0,63.0,59.0,47.0,29.0,50.0,46.0,60.0,66.0,59.0,71.0,81.0,76.0,74.0,85.0,96.0,95.0,102.0,114.0,109.0,112.0,83.0,103.0,91.0,102.0,94.0,104.0,92.0,79.0,66.0,65.0,59.0,64.0,75.0,62.0,62.0,63.0,74.0,80.0,91.0,91.0,79.0,80.0,84.0,75.0,72.0,99.0,92.0,82.0,77.0,82.0,73.0,72.0,83.0,64.0,73.0,70.0,73.0,65.0,66.0,51.0,66.0,52.0,45.0,40.0,35.0,35.0,30.0,36.0,34.0,24.0,39.0,19.0,18.0,19.0,21.0,17.0,10.0,19.0 H82017,57.0,70.0,78.0,97.0,79.0,106.0,95.0,104.0,97.0,118.0,113.0,113.0,98.0,126.0,141.0,135.0,129.0,104.0,118.0,78.0,83.0,56.0,61.0,67.0,61.0,83.0,96.0,73.0,88.0,80.0,94.0,108.0,83.0,102.0,127.0,127.0,154.0,124.0,137.0,137.0,127.0,124.0,127.0,129.0,147.0,156.0,161.0,117.0,120.0,132.0,127.0,143.0,146.0,142.0,146.0,139.0,139.0,148.0,142.0,123.0,140.0,139.0,131.0,124.0,124.0,114.0,115.0,96.0,106.0,88.0,92.0,95.0,87.0,99.0,83.0,105.0,102.0,115.0,122.0,91.0,109.0,85.0,91.0,81.0,68.0,74.0,64.0,70.0,60.0,76.0,44.0,48.0,30.0,35.0,34.0,92.0 H82020,33.0,37.0,39.0,35.0,37.0,32.0,37.0,33.0,32.0,43.0,34.0,39.0,38.0,42.0,32.0,36.0,48.0,30.0,49.0,41.0,40.0,47.0,51.0,45.0,60.0,54.0,59.0,76.0,64.0,77.0,54.0,69.0,80.0,79.0,84.0,78.0,81.0,78.0,74.0,74.0,66.0,76.0,66.0,57.0,64.0,69.0,38.0,65.0,51.0,48.0,65.0,57.0,53.0,59.0,80.0,47.0,72.0,52.0,54.0,59.0,54.0,72.0,72.0,51.0,43.0,50.0,57.0,52.0,52.0,56.0,46.0,31.0,30.0,38.0,42.0,33.0,36.0,36.0,41.0,21.0,39.0,33.0,19.0,16.0,28.0,28.0,20.0,21.0,16.0,7.0,16.0,7.0,7.0,7.0,4.0,13.0 H82021,19.0,33.0,22.0,24.0,25.0,22.0,23.0,20.0,19.0,32.0,23.0,34.0,30.0,30.0,24.0,28.0,29.0,23.0,31.0,21.0,25.0,29.0,18.0,27.0,26.0,25.0,15.0,19.0,29.0,25.0,26.0,28.0,33.0,37.0,27.0,36.0,31.0,33.0,26.0,31.0,27.0,31.0,33.0,37.0,37.0,41.0,39.0,32.0,31.0,30.0,32.0,35.0,44.0,60.0,50.0,34.0,58.0,63.0,54.0,67.0,68.0,72.0,59.0,48.0,51.0,62.0,63.0,53.0,59.0,43.0,45.0,61.0,61.0,47.0,45.0,50.0,48.0,61.0,64.0,60.0,41.0,40.0,41.0,37.0,19.0,33.0,24.0,16.0,23.0,16.0,9.0,10.0,5.0,5.0,9.0,20.0 H82022,25.0,30.0,41.0,44.0,46.0,42.0,50.0,48.0,52.0,49.0,65.0,77.0,77.0,82.0,72.0,94.0,80.0,80.0,81.0,58.0,41.0,46.0,52.0,41.0,43.0,39.0,41.0,46.0,51.0,41.0,34.0,41.0,42.0,49.0,53.0,40.0,49.0,48.0,65.0,71.0,57.0,58.0,52.0,55.0,71.0,78.0,65.0,68.0,60.0,66.0,72.0,67.0,94.0,105.0,87.0,94.0,95.0,95.0,89.0,101.0,105.0,94.0,102.0,96.0,88.0,72.0,96.0,95.0,99.0,68.0,83.0,74.0,83.0,73.0,93.0,76.0,103.0,95.0,109.0,79.0,85.0,61.0,63.0,57.0,62.0,52.0,53.0,49.0,25.0,27.0,24.0,18.0,22.0,11.0,5.0,33.0 H82023,114.0,136.0,140.0,150.0,147.0,180.0,201.0,207.0,210.0,224.0,221.0,204.0,240.0,221.0,256.0,251.0,217.0,251.0,185.0,160.0,143.0,139.0,133.0,128.0,144.0,141.0,173.0,155.0,139.0,162.0,198.0,168.0,197.0,206.0,188.0,228.0,249.0,261.0,257.0,240.0,243.0,261.0,250.0,263.0,264.0,267.0,245.0,264.0,249.0,269.0,264.0,237.0,258.0,276.0,280.0,264.0,247.0,246.0,239.0,258.0,270.0,233.0,242.0,210.0,221.0,228.0,187.0,216.0,204.0,200.0,191.0,181.0,203.0,213.0,213.0,214.0,238.0,252.0,259.0,160.0,181.0,152.0,150.0,133.0,117.0,120.0,120.0,91.0,82.0,57.0,73.0,60.0,48.0,26.0,32.0,89.0 H82025,102.0,99.0,124.0,130.0,101.0,122.0,114.0,114.0,104.0,120.0,117.0,123.0,110.0,98.0,129.0,101.0,119.0,115.0,105.0,100.0,81.0,85.0,88.0,90.0,99.0,94.0,111.0,113.0,118.0,112.0,111.0,128.0,167.0,136.0,126.0,139.0,139.0,130.0,148.0,136.0,128.0,136.0,113.0,141.0,132.0,123.0,124.0,121.0,94.0,128.0,98.0,107.0,124.0,104.0,122.0,108.0,100.0,120.0,126.0,103.0,126.0,115.0,109.0,100.0,89.0,80.0,116.0,87.0,66.0,70.0,58.0,63.0,52.0,53.0,48.0,59.0,58.0,61.0,53.0,36.0,45.0,39.0,42.0,39.0,23.0,34.0,23.0,22.0,23.0,20.0,33.0,15.0,22.0,10.0,10.0,37.0 H82026,102.0,116.0,114.0,114.0,124.0,121.0,94.0,113.0,122.0,142.0,129.0,113.0,124.0,145.0,127.0,143.0,125.0,135.0,117.0,94.0,93.0,91.0,91.0,91.0,113.0,115.0,111.0,109.0,121.0,130.0,140.0,155.0,173.0,166.0,214.0,174.0,207.0,188.0,183.0,195.0,185.0,177.0,159.0,176.0,160.0,169.0,177.0,145.0,154.0,136.0,136.0,111.0,137.0,142.0,127.0,135.0,115.0,126.0,109.0,99.0,95.0,101.0,91.0,80.0,82.0,76.0,85.0,62.0,65.0,43.0,61.0,56.0,43.0,42.0,45.0,52.0,51.0,51.0,61.0,38.0,20.0,23.0,16.0,19.0,11.0,22.0,8.0,13.0,13.0,11.0,10.0,9.0,11.0,13.0,2.0,17.0 H82027,11.0,10.0,15.0,19.0,18.0,21.0,20.0,15.0,26.0,15.0,25.0,19.0,22.0,21.0,27.0,36.0,43.0,42.0,44.0,42.0,41.0,7.0,11.0,13.0,9.0,23.0,15.0,14.0,18.0,12.0,19.0,25.0,21.0,22.0,22.0,18.0,19.0,21.0,26.0,12.0,21.0,19.0,30.0,18.0,25.0,20.0,12.0,23.0,18.0,26.0,28.0,20.0,33.0,34.0,33.0,37.0,27.0,31.0,22.0,33.0,28.0,32.0,42.0,26.0,33.0,34.0,25.0,27.0,30.0,20.0,18.0,20.0,27.0,18.0,31.0,18.0,21.0,21.0,26.0,15.0,16.0,20.0,18.0,16.0,8.0,15.0,6.0,9.0,7.0,6.0,1.0,4.0,2.0,3.0,1.0,7.0 H82028,73.0,94.0,81.0,97.0,89.0,104.0,107.0,101.0,95.0,90.0,81.0,99.0,114.0,129.0,142.0,129.0,143.0,161.0,112.0,80.0,77.0,59.0,68.0,72.0,67.0,90.0,93.0,96.0,101.0,101.0,132.0,123.0,127.0,127.0,133.0,134.0,118.0,149.0,134.0,152.0,141.0,131.0,124.0,110.0,103.0,114.0,112.0,93.0,110.0,97.0,90.0,79.0,93.0,97.0,80.0,88.0,71.0,92.0,74.0,92.0,73.0,76.0,80.0,67.0,78.0,72.0,68.0,76.0,52.0,69.0,58.0,62.0,52.0,60.0,45.0,67.0,65.0,67.0,50.0,48.0,43.0,36.0,31.0,25.0,25.0,23.0,23.0,23.0,15.0,25.0,20.0,19.0,16.0,11.0,12.0,23.0 H82030,44.0,45.0,38.0,47.0,46.0,49.0,62.0,67.0,60.0,57.0,71.0,63.0,58.0,68.0,61.0,59.0,62.0,67.0,65.0,58.0,55.0,39.0,47.0,46.0,45.0,51.0,36.0,55.0,63.0,67.0,48.0,67.0,82.0,65.0,72.0,82.0,73.0,70.0,64.0,67.0,60.0,81.0,78.0,73.0,90.0,77.0,73.0,60.0,58.0,68.0,91.0,72.0,89.0,104.0,86.0,90.0,102.0,99.0,106.0,124.0,135.0,127.0,132.0,108.0,101.0,106.0,111.0,103.0,98.0,102.0,116.0,111.0,111.0,114.0,86.0,104.0,87.0,116.0,120.0,86.0,86.0,69.0,80.0,51.0,47.0,57.0,50.0,36.0,33.0,31.0,22.0,21.0,24.0,17.0,16.0,54.0 H82031,18.0,19.0,26.0,30.0,25.0,42.0,40.0,29.0,43.0,33.0,35.0,34.0,41.0,37.0,45.0,36.0,36.0,44.0,38.0,36.0,38.0,20.0,26.0,36.0,24.0,26.0,34.0,23.0,32.0,29.0,31.0,33.0,30.0,31.0,41.0,34.0,33.0,38.0,35.0,34.0,45.0,36.0,31.0,35.0,39.0,47.0,40.0,39.0,45.0,35.0,44.0,43.0,53.0,44.0,50.0,54.0,56.0,63.0,68.0,56.0,57.0,69.0,65.0,54.0,52.0,52.0,53.0,67.0,39.0,44.0,29.0,32.0,46.0,37.0,39.0,37.0,39.0,44.0,47.0,27.0,35.0,42.0,27.0,26.0,25.0,17.0,14.0,13.0,11.0,6.0,9.0,4.0,6.0,5.0,2.0,6.0 H82032,26.0,42.0,37.0,47.0,33.0,56.0,47.0,56.0,40.0,58.0,69.0,67.0,72.0,64.0,70.0,84.0,63.0,67.0,60.0,47.0,44.0,52.0,58.0,53.0,45.0,39.0,61.0,60.0,68.0,56.0,59.0,62.0,70.0,67.0,73.0,66.0,68.0,84.0,70.0,69.0,72.0,59.0,62.0,61.0,82.0,84.0,75.0,72.0,73.0,78.0,95.0,77.0,107.0,97.0,93.0,83.0,100.0,100.0,119.0,118.0,103.0,116.0,106.0,110.0,93.0,95.0,101.0,103.0,101.0,94.0,99.0,93.0,83.0,85.0,93.0,112.0,101.0,107.0,97.0,74.0,80.0,71.0,78.0,60.0,56.0,48.0,49.0,43.0,45.0,30.0,26.0,24.0,23.0,19.0,13.0,36.0 H82033,24.0,38.0,29.0,38.0,38.0,55.0,57.0,38.0,51.0,42.0,45.0,42.0,38.0,37.0,56.0,48.0,43.0,53.0,56.0,33.0,36.0,28.0,23.0,31.0,37.0,31.0,41.0,45.0,45.0,40.0,45.0,53.0,50.0,48.0,50.0,52.0,61.0,65.0,50.0,70.0,65.0,57.0,70.0,67.0,60.0,56.0,48.0,49.0,45.0,43.0,47.0,43.0,37.0,41.0,46.0,39.0,37.0,52.0,48.0,41.0,43.0,42.0,28.0,52.0,34.0,39.0,48.0,43.0,42.0,40.0,36.0,32.0,24.0,21.0,24.0,17.0,16.0,18.0,30.0,13.0,22.0,14.0,18.0,17.0,14.0,13.0,11.0,6.0,12.0,9.0,9.0,7.0,6.0,2.0,5.0,12.0 H82034,80.0,93.0,103.0,114.0,107.0,130.0,118.0,115.0,131.0,161.0,136.0,138.0,156.0,136.0,155.0,150.0,161.0,179.0,158.0,118.0,113.0,98.0,100.0,128.0,117.0,122.0,118.0,126.0,120.0,129.0,150.0,121.0,163.0,159.0,152.0,168.0,153.0,181.0,173.0,147.0,141.0,174.0,187.0,182.0,157.0,191.0,173.0,159.0,166.0,176.0,158.0,169.0,163.0,191.0,219.0,197.0,214.0,229.0,203.0,197.0,218.0,244.0,193.0,204.0,175.0,181.0,173.0,198.0,172.0,196.0,197.0,193.0,164.0,203.0,191.0,187.0,187.0,214.0,240.0,157.0,182.0,145.0,146.0,99.0,114.0,103.0,75.0,90.0,84.0,67.0,64.0,56.0,37.0,29.0,22.0,64.0 H82035,35.0,46.0,58.0,54.0,42.0,50.0,57.0,63.0,68.0,68.0,63.0,66.0,60.0,63.0,66.0,38.0,65.0,67.0,52.0,50.0,36.0,37.0,35.0,40.0,34.0,43.0,39.0,35.0,54.0,33.0,53.0,39.0,46.0,44.0,55.0,58.0,62.0,58.0,60.0,72.0,58.0,65.0,69.0,78.0,77.0,83.0,78.0,72.0,69.0,81.0,66.0,79.0,84.0,91.0,93.0,72.0,74.0,83.0,91.0,78.0,77.0,82.0,81.0,87.0,76.0,49.0,67.0,63.0,67.0,67.0,72.0,69.0,67.0,74.0,77.0,58.0,72.0,91.0,80.0,61.0,80.0,74.0,62.0,43.0,40.0,46.0,41.0,27.0,32.0,19.0,28.0,25.0,24.0,20.0,17.0,43.0 H82036,22.0,30.0,24.0,38.0,35.0,28.0,29.0,52.0,31.0,42.0,44.0,49.0,50.0,59.0,35.0,48.0,45.0,44.0,39.0,40.0,40.0,33.0,43.0,37.0,48.0,37.0,36.0,47.0,35.0,55.0,60.0,38.0,47.0,39.0,38.0,60.0,42.0,64.0,54.0,45.0,54.0,50.0,45.0,44.0,62.0,49.0,48.0,50.0,55.0,62.0,58.0,64.0,65.0,61.0,79.0,60.0,73.0,62.0,67.0,75.0,59.0,61.0,51.0,56.0,56.0,51.0,51.0,54.0,48.0,61.0,57.0,53.0,62.0,42.0,67.0,56.0,73.0,88.0,81.0,53.0,70.0,49.0,48.0,41.0,40.0,41.0,33.0,36.0,27.0,28.0,22.0,20.0,10.0,12.0,9.0,28.0 H82037,28.0,27.0,38.0,46.0,34.0,43.0,39.0,56.0,59.0,43.0,60.0,53.0,55.0,41.0,67.0,53.0,54.0,69.0,46.0,66.0,51.0,53.0,52.0,53.0,49.0,48.0,35.0,39.0,51.0,54.0,51.0,51.0,54.0,54.0,67.0,60.0,74.0,75.0,47.0,54.0,58.0,59.0,60.0,57.0,70.0,63.0,43.0,47.0,70.0,60.0,76.0,86.0,65.0,83.0,82.0,73.0,99.0,104.0,102.0,98.0,99.0,94.0,113.0,106.0,125.0,112.0,107.0,141.0,104.0,107.0,122.0,117.0,102.0,100.0,108.0,118.0,104.0,113.0,130.0,96.0,93.0,82.0,74.0,61.0,44.0,72.0,57.0,54.0,45.0,33.0,38.0,29.0,19.0,16.0,16.0,30.0 H82038,36.0,39.0,38.0,31.0,51.0,40.0,55.0,62.0,54.0,50.0,78.0,71.0,76.0,83.0,82.0,78.0,78.0,66.0,71.0,59.0,55.0,54.0,55.0,57.0,52.0,51.0,39.0,53.0,59.0,43.0,61.0,62.0,57.0,71.0,68.0,70.0,51.0,71.0,67.0,59.0,77.0,62.0,58.0,88.0,66.0,70.0,76.0,81.0,75.0,60.0,83.0,88.0,86.0,86.0,89.0,95.0,111.0,90.0,85.0,115.0,92.0,104.0,112.0,100.0,108.0,67.0,103.0,101.0,90.0,113.0,113.0,94.0,86.0,107.0,81.0,102.0,119.0,150.0,114.0,104.0,114.0,84.0,75.0,52.0,39.0,61.0,31.0,52.0,37.0,39.0,39.0,26.0,22.0,25.0,20.0,46.0 H82039,42.0,33.0,45.0,56.0,61.0,55.0,55.0,57.0,50.0,75.0,71.0,55.0,58.0,66.0,59.0,62.0,63.0,53.0,52.0,61.0,47.0,44.0,47.0,51.0,51.0,43.0,81.0,45.0,56.0,76.0,54.0,70.0,81.0,74.0,70.0,87.0,74.0,75.0,82.0,76.0,73.0,66.0,72.0,67.0,65.0,77.0,60.0,61.0,57.0,57.0,78.0,69.0,71.0,69.0,87.0,69.0,101.0,83.0,78.0,74.0,70.0,80.0,83.0,91.0,65.0,87.0,77.0,70.0,76.0,66.0,67.0,71.0,67.0,67.0,54.0,72.0,73.0,72.0,72.0,50.0,43.0,49.0,38.0,39.0,37.0,38.0,43.0,32.0,25.0,24.0,17.0,16.0,8.0,10.0,11.0,28.0 H82040,77.0,83.0,108.0,140.0,113.0,150.0,128.0,159.0,160.0,164.0,170.0,168.0,176.0,190.0,195.0,182.0,176.0,202.0,142.0,130.0,111.0,100.0,97.0,99.0,109.0,108.0,108.0,104.0,113.0,129.0,130.0,106.0,122.0,145.0,142.0,196.0,188.0,156.0,184.0,210.0,183.0,178.0,186.0,229.0,218.0,222.0,198.0,184.0,173.0,193.0,225.0,215.0,241.0,194.0,213.0,211.0,193.0,184.0,216.0,174.0,200.0,223.0,210.0,190.0,214.0,198.0,219.0,185.0,188.0,183.0,171.0,186.0,165.0,172.0,180.0,174.0,192.0,183.0,182.0,150.0,153.0,133.0,116.0,101.0,85.0,92.0,73.0,84.0,54.0,64.0,58.0,51.0,40.0,37.0,24.0,59.0 H82041,63.0,63.0,61.0,70.0,66.0,77.0,81.0,72.0,62.0,70.0,72.0,81.0,68.0,71.0,77.0,85.0,81.0,75.0,63.0,65.0,50.0,72.0,61.0,58.0,84.0,92.0,75.0,100.0,99.0,112.0,89.0,109.0,125.0,121.0,114.0,125.0,119.0,126.0,115.0,126.0,96.0,102.0,108.0,101.0,104.0,112.0,103.0,94.0,97.0,93.0,97.0,92.0,105.0,92.0,104.0,97.0,99.0,104.0,95.0,95.0,89.0,89.0,87.0,72.0,84.0,68.0,79.0,67.0,67.0,73.0,61.0,65.0,57.0,60.0,51.0,49.0,58.0,58.0,62.0,42.0,46.0,48.0,45.0,37.0,31.0,36.0,37.0,33.0,27.0,28.0,20.0,18.0,13.0,13.0,10.0,28.0 H82042,47.0,51.0,65.0,52.0,62.0,55.0,61.0,60.0,59.0,53.0,71.0,64.0,66.0,70.0,71.0,75.0,77.0,64.0,69.0,120.0,193.0,142.0,119.0,96.0,101.0,96.0,112.0,84.0,96.0,90.0,84.0,86.0,102.0,103.0,109.0,108.0,83.0,97.0,85.0,81.0,84.0,63.0,70.0,95.0,87.0,74.0,76.0,74.0,85.0,73.0,71.0,87.0,93.0,77.0,100.0,71.0,73.0,100.0,100.0,96.0,93.0,104.0,74.0,69.0,88.0,68.0,88.0,98.0,93.0,75.0,74.0,76.0,66.0,61.0,71.0,75.0,82.0,88.0,81.0,65.0,53.0,64.0,53.0,60.0,55.0,47.0,51.0,32.0,32.0,31.0,28.0,16.0,17.0,15.0,9.0,34.0 H82043,18.0,30.0,31.0,45.0,28.0,28.0,38.0,31.0,36.0,39.0,33.0,40.0,55.0,55.0,46.0,48.0,45.0,49.0,41.0,27.0,25.0,42.0,31.0,38.0,43.0,36.0,40.0,35.0,45.0,35.0,48.0,37.0,41.0,50.0,42.0,37.0,62.0,43.0,43.0,48.0,41.0,45.0,45.0,37.0,56.0,39.0,45.0,55.0,39.0,54.0,59.0,53.0,65.0,56.0,66.0,57.0,66.0,79.0,97.0,93.0,95.0,89.0,97.0,113.0,86.0,98.0,112.0,96.0,109.0,79.0,89.0,98.0,101.0,85.0,120.0,139.0,117.0,121.0,148.0,101.0,100.0,104.0,90.0,61.0,70.0,62.0,60.0,60.0,40.0,44.0,32.0,30.0,22.0,18.0,16.0,41.0 H82044,26.0,26.0,38.0,38.0,49.0,55.0,51.0,60.0,65.0,64.0,64.0,71.0,63.0,66.0,69.0,82.0,78.0,56.0,65.0,34.0,50.0,31.0,43.0,38.0,50.0,46.0,35.0,39.0,43.0,45.0,46.0,50.0,45.0,52.0,63.0,54.0,74.0,65.0,74.0,68.0,70.0,75.0,83.0,71.0,92.0,103.0,83.0,77.0,95.0,89.0,74.0,70.0,78.0,75.0,78.0,94.0,89.0,67.0,76.0,80.0,82.0,72.0,71.0,76.0,52.0,76.0,64.0,56.0,52.0,65.0,52.0,43.0,42.0,53.0,59.0,51.0,59.0,64.0,55.0,42.0,45.0,39.0,38.0,37.0,24.0,44.0,34.0,35.0,15.0,22.0,12.0,15.0,19.0,23.0,11.0,37.0 H82045,71.0,62.0,78.0,76.0,77.0,87.0,99.0,70.0,92.0,109.0,102.0,105.0,99.0,128.0,95.0,114.0,86.0,101.0,95.0,84.0,101.0,74.0,73.0,89.0,93.0,105.0,136.0,129.0,140.0,157.0,152.0,144.0,148.0,150.0,173.0,150.0,155.0,156.0,164.0,129.0,158.0,134.0,166.0,132.0,131.0,138.0,126.0,134.0,122.0,120.0,128.0,129.0,145.0,128.0,155.0,139.0,140.0,133.0,124.0,142.0,118.0,148.0,130.0,120.0,124.0,107.0,108.0,89.0,91.0,82.0,84.0,92.0,79.0,94.0,82.0,100.0,128.0,108.0,127.0,93.0,111.0,88.0,114.0,75.0,85.0,86.0,74.0,63.0,73.0,75.0,69.0,63.0,48.0,50.0,37.0,114.0 H82046,46.0,44.0,43.0,42.0,53.0,65.0,55.0,62.0,56.0,66.0,69.0,58.0,85.0,74.0,59.0,77.0,84.0,64.0,79.0,55.0,51.0,45.0,61.0,57.0,44.0,48.0,63.0,60.0,60.0,67.0,75.0,54.0,62.0,83.0,71.0,72.0,70.0,90.0,84.0,79.0,96.0,86.0,86.0,81.0,83.0,106.0,92.0,78.0,74.0,84.0,78.0,79.0,96.0,97.0,90.0,74.0,102.0,91.0,84.0,81.0,90.0,81.0,88.0,82.0,85.0,86.0,68.0,65.0,51.0,50.0,50.0,69.0,53.0,66.0,65.0,54.0,51.0,60.0,56.0,45.0,50.0,49.0,56.0,31.0,27.0,37.0,31.0,27.0,35.0,13.0,17.0,20.0,13.0,7.0,4.0,20.0 H82047,72.0,59.0,67.0,84.0,82.0,76.0,65.0,72.0,89.0,84.0,80.0,74.0,64.0,78.0,64.0,66.0,60.0,70.0,63.0,40.0,43.0,50.0,56.0,48.0,58.0,62.0,75.0,74.0,89.0,106.0,100.0,95.0,88.0,128.0,127.0,103.0,126.0,97.0,110.0,94.0,111.0,90.0,109.0,97.0,85.0,79.0,86.0,80.0,68.0,66.0,61.0,72.0,70.0,49.0,55.0,67.0,76.0,67.0,79.0,69.0,55.0,67.0,57.0,53.0,68.0,55.0,55.0,62.0,48.0,61.0,47.0,49.0,36.0,45.0,40.0,32.0,31.0,43.0,53.0,28.0,43.0,23.0,24.0,23.0,25.0,17.0,24.0,17.0,11.0,10.0,12.0,11.0,6.0,8.0,10.0,20.0 H82048,42.0,30.0,44.0,54.0,58.0,62.0,51.0,44.0,58.0,54.0,49.0,55.0,42.0,62.0,64.0,69.0,42.0,51.0,41.0,41.0,47.0,41.0,34.0,59.0,50.0,47.0,55.0,62.0,71.0,46.0,64.0,78.0,59.0,71.0,81.0,78.0,88.0,66.0,63.0,53.0,58.0,60.0,56.0,70.0,61.0,68.0,61.0,44.0,59.0,56.0,65.0,79.0,65.0,94.0,83.0,68.0,105.0,85.0,98.0,100.0,106.0,119.0,109.0,112.0,114.0,110.0,102.0,104.0,102.0,89.0,106.0,85.0,93.0,83.0,102.0,97.0,101.0,88.0,111.0,79.0,76.0,54.0,59.0,50.0,47.0,52.0,34.0,31.0,32.0,34.0,17.0,18.0,20.0,18.0,11.0,36.0 H82049,50.0,46.0,34.0,44.0,53.0,53.0,47.0,59.0,52.0,66.0,51.0,66.0,44.0,58.0,50.0,43.0,49.0,72.0,51.0,73.0,75.0,81.0,56.0,70.0,74.0,63.0,63.0,54.0,65.0,65.0,62.0,76.0,80.0,66.0,83.0,66.0,75.0,79.0,66.0,52.0,64.0,67.0,61.0,57.0,58.0,65.0,71.0,47.0,46.0,54.0,62.0,53.0,59.0,67.0,76.0,64.0,64.0,72.0,68.0,73.0,84.0,89.0,65.0,93.0,61.0,69.0,57.0,61.0,75.0,65.0,58.0,53.0,67.0,58.0,53.0,61.0,51.0,74.0,70.0,54.0,51.0,51.0,40.0,49.0,35.0,34.0,44.0,33.0,29.0,20.0,21.0,23.0,12.0,10.0,15.0,41.0 H82050,56.0,52.0,63.0,65.0,64.0,66.0,65.0,67.0,88.0,54.0,76.0,72.0,68.0,83.0,74.0,71.0,76.0,71.0,57.0,47.0,57.0,42.0,52.0,51.0,59.0,69.0,68.0,77.0,77.0,78.0,75.0,106.0,80.0,92.0,95.0,107.0,95.0,104.0,102.0,85.0,63.0,93.0,91.0,82.0,72.0,81.0,83.0,53.0,74.0,74.0,57.0,55.0,46.0,62.0,56.0,52.0,67.0,61.0,52.0,61.0,56.0,60.0,53.0,46.0,56.0,42.0,50.0,49.0,44.0,36.0,47.0,42.0,39.0,41.0,48.0,37.0,42.0,44.0,36.0,23.0,27.0,16.0,18.0,14.0,18.0,23.0,21.0,10.0,17.0,9.0,8.0,6.0,9.0,4.0,7.0,19.0 H82051,65.0,52.0,37.0,52.0,43.0,62.0,65.0,56.0,62.0,63.0,66.0,59.0,58.0,58.0,61.0,58.0,59.0,42.0,68.0,96.0,137.0,122.0,114.0,87.0,83.0,59.0,77.0,70.0,71.0,70.0,55.0,76.0,68.0,56.0,86.0,76.0,65.0,74.0,96.0,68.0,81.0,68.0,68.0,75.0,88.0,72.0,68.0,62.0,66.0,58.0,72.0,85.0,66.0,74.0,70.0,79.0,90.0,86.0,91.0,102.0,86.0,91.0,87.0,79.0,85.0,91.0,109.0,79.0,73.0,73.0,83.0,76.0,80.0,62.0,73.0,72.0,106.0,93.0,104.0,68.0,71.0,63.0,57.0,47.0,52.0,55.0,40.0,38.0,30.0,20.0,25.0,27.0,21.0,18.0,14.0,31.0 H82052,80.0,84.0,84.0,100.0,80.0,89.0,97.0,102.0,101.0,121.0,106.0,106.0,108.0,104.0,109.0,108.0,100.0,78.0,87.0,71.0,69.0,75.0,64.0,70.0,63.0,96.0,79.0,104.0,104.0,114.0,109.0,113.0,113.0,138.0,118.0,139.0,124.0,141.0,132.0,123.0,139.0,128.0,134.0,121.0,139.0,122.0,125.0,137.0,111.0,114.0,108.0,90.0,110.0,111.0,125.0,118.0,131.0,114.0,110.0,111.0,99.0,97.0,92.0,126.0,90.0,113.0,105.0,100.0,85.0,96.0,71.0,82.0,75.0,72.0,77.0,75.0,67.0,97.0,105.0,60.0,52.0,60.0,59.0,27.0,44.0,33.0,30.0,28.0,30.0,23.0,19.0,17.0,11.0,6.0,10.0,19.0 H82053,38.0,30.0,32.0,31.0,34.0,44.0,35.0,28.0,43.0,45.0,37.0,45.0,37.0,39.0,35.0,36.0,40.0,30.0,26.0,30.0,26.0,33.0,35.0,29.0,45.0,49.0,51.0,47.0,45.0,52.0,48.0,62.0,53.0,56.0,63.0,59.0,58.0,60.0,68.0,52.0,63.0,57.0,54.0,45.0,60.0,50.0,44.0,28.0,46.0,34.0,36.0,31.0,43.0,34.0,50.0,45.0,49.0,46.0,34.0,48.0,35.0,41.0,57.0,52.0,35.0,43.0,42.0,41.0,45.0,52.0,30.0,39.0,39.0,31.0,39.0,28.0,47.0,41.0,40.0,32.0,31.0,20.0,30.0,27.0,21.0,15.0,16.0,28.0,17.0,15.0,13.0,13.0,13.0,7.0,13.0,8.0 H82055,41.0,65.0,75.0,80.0,58.0,72.0,72.0,97.0,84.0,74.0,78.0,73.0,82.0,103.0,77.0,98.0,80.0,90.0,65.0,49.0,57.0,68.0,45.0,63.0,68.0,72.0,72.0,77.0,73.0,66.0,79.0,64.0,102.0,83.0,72.0,79.0,89.0,96.0,81.0,97.0,86.0,78.0,95.0,106.0,102.0,98.0,93.0,90.0,92.0,86.0,81.0,96.0,102.0,93.0,107.0,95.0,103.0,128.0,112.0,96.0,103.0,92.0,103.0,92.0,90.0,89.0,81.0,88.0,54.0,88.0,64.0,78.0,60.0,62.0,73.0,59.0,68.0,77.0,70.0,64.0,51.0,63.0,61.0,49.0,35.0,40.0,34.0,35.0,23.0,20.0,17.0,21.0,11.0,12.0,5.0,18.0 H82056,57.0,59.0,65.0,68.0,83.0,74.0,76.0,77.0,87.0,82.0,75.0,95.0,94.0,87.0,97.0,103.0,112.0,121.0,89.0,58.0,53.0,47.0,63.0,66.0,63.0,60.0,83.0,78.0,84.0,73.0,91.0,105.0,88.0,112.0,115.0,114.0,116.0,107.0,106.0,107.0,121.0,107.0,104.0,109.0,107.0,108.0,99.0,84.0,103.0,88.0,119.0,107.0,79.0,99.0,104.0,95.0,95.0,77.0,70.0,76.0,83.0,86.0,82.0,72.0,66.0,63.0,74.0,58.0,57.0,52.0,52.0,57.0,74.0,62.0,51.0,68.0,82.0,84.0,82.0,65.0,75.0,53.0,49.0,54.0,55.0,52.0,24.0,32.0,42.0,31.0,33.0,21.0,23.0,24.0,15.0,51.0 H82057,88.0,97.0,85.0,91.0,122.0,119.0,114.0,113.0,129.0,124.0,136.0,159.0,128.0,169.0,186.0,164.0,153.0,149.0,126.0,92.0,93.0,81.0,91.0,80.0,97.0,90.0,93.0,82.0,73.0,79.0,91.0,116.0,91.0,114.0,95.0,126.0,155.0,125.0,114.0,126.0,129.0,137.0,180.0,158.0,154.0,172.0,190.0,153.0,141.0,150.0,173.0,166.0,187.0,175.0,176.0,173.0,151.0,160.0,157.0,169.0,161.0,148.0,165.0,160.0,123.0,117.0,133.0,123.0,99.0,126.0,133.0,109.0,116.0,106.0,109.0,121.0,112.0,151.0,127.0,100.0,115.0,89.0,89.0,69.0,64.0,90.0,71.0,50.0,50.0,42.0,32.0,49.0,37.0,24.0,28.0,36.0 H82058,50.0,61.0,72.0,83.0,80.0,83.0,91.0,97.0,94.0,104.0,84.0,99.0,113.0,88.0,102.0,105.0,109.0,93.0,93.0,100.0,114.0,112.0,85.0,103.0,110.0,105.0,95.0,106.0,109.0,111.0,109.0,134.0,134.0,127.0,128.0,105.0,132.0,135.0,111.0,106.0,110.0,127.0,110.0,129.0,129.0,120.0,87.0,114.0,104.0,96.0,107.0,123.0,112.0,132.0,110.0,103.0,128.0,134.0,121.0,131.0,143.0,122.0,123.0,116.0,125.0,93.0,97.0,110.0,100.0,85.0,68.0,76.0,88.0,86.0,77.0,89.0,86.0,98.0,110.0,65.0,80.0,66.0,71.0,71.0,40.0,43.0,42.0,41.0,39.0,30.0,33.0,23.0,22.0,14.0,12.0,40.0 H82059,35.0,40.0,55.0,49.0,39.0,39.0,62.0,53.0,41.0,58.0,51.0,45.0,40.0,59.0,41.0,42.0,50.0,49.0,43.0,35.0,46.0,38.0,40.0,39.0,46.0,46.0,38.0,41.0,60.0,60.0,39.0,51.0,63.0,56.0,61.0,85.0,65.0,57.0,55.0,47.0,76.0,61.0,43.0,54.0,54.0,48.0,56.0,59.0,60.0,51.0,62.0,64.0,67.0,76.0,82.0,76.0,73.0,93.0,97.0,97.0,97.0,84.0,102.0,95.0,100.0,105.0,92.0,86.0,96.0,82.0,114.0,87.0,93.0,100.0,105.0,101.0,102.0,127.0,145.0,84.0,96.0,94.0,67.0,64.0,66.0,53.0,74.0,54.0,34.0,34.0,39.0,27.0,26.0,25.0,17.0,56.0 H82060,26.0,50.0,35.0,43.0,40.0,49.0,41.0,39.0,48.0,44.0,49.0,54.0,55.0,53.0,54.0,46.0,43.0,50.0,42.0,59.0,42.0,43.0,52.0,48.0,40.0,48.0,36.0,40.0,42.0,46.0,58.0,46.0,63.0,59.0,50.0,53.0,57.0,36.0,57.0,69.0,52.0,56.0,39.0,51.0,55.0,57.0,54.0,50.0,36.0,55.0,70.0,68.0,79.0,74.0,82.0,85.0,78.0,80.0,69.0,108.0,90.0,78.0,92.0,86.0,99.0,75.0,91.0,65.0,70.0,75.0,62.0,58.0,69.0,79.0,60.0,61.0,68.0,83.0,62.0,61.0,60.0,67.0,50.0,47.0,38.0,40.0,30.0,33.0,33.0,32.0,20.0,19.0,22.0,16.0,15.0,36.0 H82061,25.0,40.0,38.0,34.0,35.0,40.0,30.0,54.0,36.0,42.0,36.0,38.0,43.0,42.0,55.0,46.0,52.0,40.0,49.0,38.0,40.0,34.0,38.0,39.0,54.0,48.0,61.0,65.0,55.0,63.0,43.0,53.0,63.0,66.0,94.0,71.0,74.0,68.0,66.0,72.0,68.0,47.0,68.0,53.0,59.0,56.0,67.0,67.0,45.0,69.0,55.0,86.0,70.0,86.0,71.0,56.0,66.0,67.0,68.0,59.0,66.0,65.0,71.0,45.0,61.0,48.0,47.0,50.0,55.0,32.0,48.0,32.0,47.0,48.0,41.0,45.0,48.0,42.0,40.0,38.0,27.0,29.0,19.0,31.0,22.0,20.0,14.0,23.0,19.0,18.0,13.0,12.0,5.0,4.0,4.0,11.0 H82063,88.0,61.0,80.0,84.0,66.0,88.0,93.0,82.0,107.0,102.0,114.0,107.0,108.0,112.0,108.0,107.0,106.0,73.0,97.0,74.0,68.0,81.0,71.0,79.0,76.0,75.0,93.0,97.0,96.0,93.0,115.0,108.0,115.0,131.0,123.0,118.0,119.0,124.0,111.0,129.0,119.0,105.0,123.0,134.0,125.0,114.0,109.0,107.0,100.0,114.0,145.0,113.0,131.0,112.0,128.0,126.0,98.0,112.0,96.0,100.0,103.0,125.0,106.0,106.0,101.0,103.0,108.0,94.0,81.0,92.0,97.0,102.0,70.0,78.0,77.0,88.0,90.0,118.0,96.0,82.0,92.0,90.0,61.0,47.0,48.0,45.0,38.0,38.0,35.0,34.0,25.0,21.0,26.0,19.0,16.0,34.0 H82064,48.0,68.0,70.0,74.0,74.0,77.0,80.0,72.0,68.0,88.0,71.0,88.0,66.0,76.0,65.0,70.0,74.0,76.0,71.0,55.0,70.0,70.0,72.0,71.0,63.0,83.0,81.0,86.0,86.0,88.0,85.0,81.0,105.0,115.0,120.0,115.0,113.0,102.0,103.0,93.0,127.0,91.0,112.0,107.0,82.0,99.0,72.0,95.0,65.0,58.0,67.0,54.0,63.0,52.0,62.0,70.0,62.0,65.0,53.0,49.0,53.0,52.0,41.0,44.0,48.0,55.0,32.0,40.0,25.0,30.0,43.0,35.0,39.0,34.0,26.0,29.0,30.0,34.0,32.0,17.0,26.0,31.0,10.0,11.0,12.0,15.0,20.0,20.0,14.0,8.0,5.0,8.0,11.0,10.0,10.0,19.0 H82065,56.0,59.0,49.0,66.0,69.0,75.0,75.0,76.0,86.0,78.0,81.0,87.0,95.0,88.0,78.0,84.0,75.0,71.0,71.0,48.0,76.0,51.0,49.0,65.0,68.0,80.0,58.0,76.0,72.0,61.0,85.0,100.0,87.0,87.0,99.0,86.0,102.0,128.0,86.0,100.0,96.0,91.0,98.0,91.0,97.0,94.0,113.0,80.0,77.0,86.0,92.0,93.0,91.0,100.0,95.0,81.0,113.0,103.0,116.0,93.0,96.0,101.0,97.0,124.0,100.0,100.0,73.0,114.0,95.0,98.0,103.0,93.0,83.0,89.0,78.0,100.0,92.0,120.0,119.0,87.0,94.0,79.0,74.0,59.0,45.0,63.0,50.0,47.0,42.0,30.0,27.0,20.0,18.0,18.0,15.0,45.0 H82066,50.0,68.0,67.0,75.0,75.0,80.0,89.0,99.0,98.0,106.0,75.0,96.0,99.0,112.0,94.0,89.0,101.0,100.0,81.0,71.0,80.0,64.0,73.0,81.0,82.0,93.0,95.0,95.0,93.0,100.0,98.0,108.0,110.0,123.0,122.0,137.0,125.0,129.0,108.0,96.0,106.0,107.0,101.0,107.0,83.0,98.0,100.0,97.0,84.0,82.0,92.0,92.0,102.0,96.0,93.0,104.0,111.0,106.0,97.0,127.0,108.0,90.0,110.0,112.0,109.0,93.0,86.0,82.0,81.0,73.0,75.0,89.0,75.0,90.0,75.0,68.0,79.0,92.0,88.0,64.0,59.0,58.0,52.0,48.0,45.0,47.0,34.0,32.0,34.0,43.0,27.0,23.0,13.0,15.0,7.0,25.0 H82067,43.0,42.0,53.0,59.0,66.0,53.0,54.0,55.0,50.0,60.0,56.0,50.0,50.0,64.0,47.0,51.0,51.0,42.0,51.0,39.0,31.0,34.0,39.0,41.0,33.0,37.0,46.0,55.0,57.0,53.0,65.0,66.0,67.0,71.0,72.0,68.0,82.0,87.0,71.0,63.0,59.0,82.0,41.0,55.0,58.0,62.0,48.0,48.0,40.0,46.0,44.0,46.0,42.0,49.0,67.0,48.0,54.0,40.0,56.0,46.0,45.0,50.0,54.0,53.0,49.0,53.0,42.0,57.0,33.0,43.0,36.0,51.0,45.0,50.0,55.0,35.0,27.0,26.0,36.0,22.0,22.0,17.0,19.0,9.0,17.0,15.0,7.0,8.0,12.0,12.0,8.0,13.0,10.0,5.0,4.0,7.0 H82070,31.0,41.0,42.0,52.0,47.0,45.0,52.0,58.0,44.0,61.0,67.0,65.0,52.0,70.0,61.0,66.0,63.0,67.0,64.0,51.0,50.0,44.0,44.0,52.0,41.0,62.0,50.0,53.0,51.0,52.0,48.0,52.0,53.0,58.0,59.0,59.0,69.0,60.0,62.0,62.0,62.0,73.0,65.0,77.0,77.0,68.0,86.0,58.0,84.0,72.0,87.0,88.0,77.0,98.0,87.0,93.0,118.0,96.0,105.0,128.0,125.0,122.0,105.0,127.0,97.0,113.0,97.0,97.0,96.0,96.0,107.0,106.0,96.0,103.0,123.0,107.0,107.0,119.0,132.0,89.0,98.0,85.0,101.0,66.0,46.0,51.0,48.0,40.0,42.0,30.0,39.0,17.0,16.0,22.0,20.0,39.0 H82072,68.0,74.0,72.0,90.0,90.0,75.0,97.0,79.0,81.0,76.0,74.0,76.0,75.0,68.0,76.0,68.0,84.0,60.0,65.0,50.0,51.0,48.0,47.0,56.0,55.0,72.0,84.0,78.0,76.0,96.0,90.0,100.0,110.0,103.0,112.0,98.0,124.0,122.0,99.0,113.0,98.0,89.0,88.0,93.0,94.0,81.0,88.0,81.0,76.0,93.0,97.0,96.0,83.0,79.0,90.0,97.0,99.0,102.0,112.0,77.0,97.0,93.0,79.0,87.0,75.0,69.0,69.0,80.0,70.0,71.0,62.0,50.0,62.0,66.0,55.0,67.0,45.0,65.0,87.0,61.0,54.0,65.0,48.0,30.0,38.0,40.0,39.0,26.0,26.0,21.0,15.0,9.0,6.0,9.0,8.0,12.0 H82076,6.0,9.0,13.0,15.0,20.0,15.0,18.0,19.0,16.0,30.0,15.0,16.0,16.0,24.0,16.0,20.0,18.0,23.0,18.0,19.0,11.0,9.0,9.0,15.0,16.0,15.0,19.0,34.0,19.0,20.0,18.0,16.0,20.0,30.0,25.0,20.0,29.0,17.0,24.0,27.0,26.0,18.0,26.0,14.0,29.0,20.0,23.0,30.0,18.0,18.0,19.0,36.0,21.0,40.0,32.0,27.0,32.0,29.0,40.0,33.0,34.0,29.0,30.0,35.0,29.0,26.0,33.0,30.0,28.0,20.0,34.0,33.0,28.0,22.0,26.0,40.0,37.0,29.0,33.0,32.0,20.0,24.0,18.0,24.0,15.0,14.0,19.0,12.0,20.0,10.0,6.0,12.0,5.0,5.0,5.0,17.0 H82077,58.0,75.0,73.0,57.0,78.0,68.0,60.0,65.0,70.0,63.0,60.0,58.0,83.0,66.0,62.0,62.0,88.0,57.0,66.0,55.0,63.0,62.0,68.0,79.0,84.0,72.0,62.0,79.0,80.0,87.0,68.0,83.0,73.0,94.0,96.0,81.0,82.0,83.0,84.0,94.0,86.0,68.0,64.0,73.0,86.0,69.0,69.0,79.0,73.0,90.0,72.0,96.0,90.0,96.0,111.0,94.0,100.0,121.0,105.0,91.0,110.0,93.0,103.0,90.0,92.0,87.0,82.0,82.0,74.0,76.0,81.0,70.0,72.0,73.0,70.0,65.0,75.0,76.0,81.0,62.0,48.0,52.0,41.0,43.0,34.0,24.0,25.0,33.0,27.0,22.0,30.0,15.0,16.0,15.0,10.0,40.0 H82078,32.0,37.0,35.0,43.0,46.0,51.0,62.0,70.0,73.0,63.0,61.0,72.0,65.0,64.0,58.0,50.0,65.0,63.0,55.0,44.0,43.0,35.0,45.0,38.0,42.0,38.0,40.0,55.0,45.0,53.0,45.0,53.0,54.0,71.0,71.0,60.0,58.0,61.0,58.0,77.0,69.0,64.0,79.0,85.0,61.0,57.0,59.0,73.0,55.0,57.0,66.0,70.0,55.0,66.0,67.0,66.0,74.0,78.0,57.0,80.0,79.0,91.0,82.0,77.0,76.0,70.0,78.0,79.0,76.0,67.0,63.0,64.0,62.0,61.0,66.0,61.0,66.0,86.0,55.0,53.0,52.0,40.0,41.0,30.0,31.0,52.0,29.0,26.0,15.0,24.0,15.0,15.0,26.0,16.0,11.0,30.0 H82084,31.0,24.0,33.0,31.0,41.0,36.0,37.0,47.0,44.0,37.0,47.0,42.0,33.0,44.0,55.0,58.0,52.0,50.0,48.0,32.0,33.0,30.0,36.0,34.0,37.0,39.0,38.0,45.0,54.0,50.0,62.0,65.0,47.0,62.0,70.0,62.0,59.0,55.0,59.0,48.0,60.0,45.0,54.0,45.0,41.0,45.0,46.0,49.0,37.0,43.0,47.0,49.0,39.0,48.0,56.0,50.0,55.0,59.0,52.0,49.0,50.0,59.0,48.0,58.0,38.0,40.0,43.0,41.0,49.0,34.0,32.0,32.0,37.0,36.0,35.0,37.0,42.0,46.0,47.0,33.0,47.0,34.0,38.0,24.0,31.0,33.0,34.0,20.0,22.0,25.0,27.0,16.0,16.0,14.0,8.0,30.0 H82087,7.0,5.0,7.0,9.0,4.0,13.0,12.0,5.0,8.0,14.0,9.0,14.0,3.0,15.0,11.0,12.0,14.0,6.0,10.0,7.0,3.0,8.0,9.0,4.0,13.0,16.0,6.0,8.0,11.0,5.0,11.0,11.0,8.0,10.0,6.0,10.0,13.0,13.0,10.0,13.0,7.0,10.0,17.0,12.0,14.0,15.0,11.0,13.0,10.0,13.0,17.0,15.0,21.0,21.0,21.0,27.0,37.0,31.0,40.0,31.0,33.0,49.0,45.0,37.0,51.0,26.0,35.0,35.0,35.0,47.0,42.0,54.0,49.0,34.0,45.0,58.0,63.0,64.0,66.0,59.0,44.0,43.0,50.0,28.0,31.0,25.0,25.0,33.0,20.0,21.0,17.0,20.0,11.0,13.0,7.0,23.0 H82088,25.0,34.0,22.0,30.0,29.0,40.0,30.0,49.0,42.0,44.0,38.0,51.0,60.0,46.0,56.0,46.0,46.0,53.0,45.0,43.0,35.0,36.0,26.0,19.0,46.0,34.0,28.0,37.0,34.0,31.0,33.0,45.0,36.0,53.0,52.0,41.0,75.0,55.0,64.0,61.0,64.0,51.0,50.0,54.0,63.0,43.0,55.0,43.0,47.0,36.0,39.0,38.0,35.0,46.0,29.0,27.0,39.0,36.0,23.0,38.0,50.0,47.0,33.0,46.0,34.0,37.0,41.0,28.0,38.0,28.0,19.0,26.0,17.0,17.0,20.0,10.0,15.0,9.0,10.0,6.0,6.0,6.0,4.0,3.0,7.0,4.0,4.0,6.0,6.0,2.0,2.0,5.0,3.0,,1.0,3.0 H82089,57.0,64.0,60.0,56.0,64.0,59.0,69.0,71.0,65.0,66.0,63.0,55.0,68.0,55.0,67.0,61.0,61.0,72.0,59.0,52.0,41.0,49.0,55.0,61.0,72.0,96.0,89.0,94.0,110.0,95.0,95.0,99.0,106.0,106.0,123.0,93.0,92.0,91.0,75.0,74.0,86.0,90.0,88.0,76.0,79.0,86.0,84.0,69.0,86.0,68.0,79.0,58.0,65.0,79.0,67.0,67.0,75.0,66.0,87.0,69.0,85.0,76.0,77.0,78.0,82.0,49.0,74.0,59.0,53.0,52.0,50.0,56.0,46.0,52.0,52.0,33.0,47.0,39.0,45.0,37.0,34.0,36.0,21.0,23.0,17.0,8.0,16.0,14.0,15.0,12.0,9.0,9.0,2.0,5.0,4.0,7.0 H82091,41.0,38.0,39.0,52.0,52.0,35.0,45.0,55.0,36.0,33.0,42.0,43.0,56.0,48.0,38.0,44.0,45.0,41.0,28.0,27.0,27.0,30.0,28.0,42.0,34.0,48.0,37.0,47.0,50.0,47.0,58.0,47.0,65.0,85.0,77.0,69.0,62.0,75.0,61.0,70.0,57.0,55.0,60.0,58.0,63.0,52.0,46.0,45.0,40.0,54.0,46.0,56.0,58.0,61.0,67.0,51.0,58.0,72.0,63.0,62.0,60.0,61.0,62.0,56.0,67.0,58.0,51.0,68.0,39.0,51.0,43.0,41.0,61.0,39.0,49.0,44.0,45.0,63.0,48.0,43.0,42.0,33.0,36.0,28.0,26.0,38.0,25.0,27.0,15.0,19.0,15.0,7.0,9.0,7.0,5.0,17.0 H82092,39.0,57.0,58.0,60.0,59.0,57.0,60.0,60.0,70.0,60.0,65.0,59.0,74.0,71.0,88.0,72.0,68.0,75.0,74.0,50.0,44.0,49.0,58.0,46.0,50.0,51.0,54.0,54.0,64.0,71.0,72.0,62.0,81.0,92.0,72.0,78.0,87.0,94.0,92.0,83.0,76.0,89.0,65.0,69.0,77.0,77.0,87.0,58.0,81.0,56.0,84.0,80.0,64.0,74.0,92.0,75.0,81.0,76.0,91.0,82.0,78.0,81.0,74.0,75.0,64.0,58.0,66.0,68.0,57.0,46.0,51.0,44.0,59.0,57.0,49.0,56.0,48.0,50.0,47.0,34.0,42.0,33.0,34.0,17.0,17.0,30.0,17.0,14.0,8.0,11.0,9.0,7.0,3.0,6.0,7.0,17.0 H82095,25.0,28.0,39.0,29.0,43.0,42.0,50.0,46.0,42.0,48.0,63.0,58.0,45.0,45.0,51.0,39.0,55.0,58.0,45.0,42.0,37.0,23.0,43.0,45.0,29.0,42.0,43.0,36.0,40.0,44.0,41.0,43.0,43.0,52.0,47.0,41.0,47.0,66.0,38.0,53.0,57.0,48.0,52.0,62.0,57.0,56.0,63.0,45.0,64.0,61.0,49.0,67.0,74.0,65.0,88.0,67.0,68.0,88.0,64.0,89.0,95.0,86.0,84.0,108.0,87.0,84.0,72.0,94.0,99.0,80.0,73.0,90.0,77.0,62.0,89.0,85.0,75.0,121.0,91.0,84.0,92.0,74.0,74.0,53.0,40.0,58.0,38.0,43.0,31.0,26.0,28.0,23.0,23.0,20.0,22.0,37.0 H82096,18.0,13.0,15.0,22.0,14.0,20.0,32.0,22.0,34.0,36.0,30.0,31.0,34.0,30.0,36.0,34.0,38.0,23.0,28.0,17.0,22.0,14.0,18.0,26.0,20.0,20.0,22.0,24.0,24.0,31.0,23.0,28.0,26.0,39.0,30.0,27.0,40.0,22.0,34.0,28.0,35.0,36.0,34.0,45.0,40.0,38.0,41.0,35.0,33.0,35.0,29.0,27.0,36.0,34.0,26.0,32.0,40.0,37.0,36.0,30.0,35.0,29.0,33.0,46.0,39.0,24.0,38.0,45.0,36.0,32.0,27.0,27.0,33.0,33.0,32.0,46.0,31.0,35.0,39.0,24.0,26.0,23.0,13.0,27.0,27.0,20.0,15.0,16.0,18.0,9.0,7.0,8.0,7.0,4.0,3.0,7.0 H82098,51.0,64.0,43.0,64.0,57.0,57.0,72.0,67.0,62.0,60.0,59.0,73.0,69.0,74.0,64.0,67.0,53.0,81.0,60.0,55.0,61.0,66.0,47.0,49.0,79.0,67.0,64.0,84.0,71.0,69.0,101.0,97.0,93.0,108.0,76.0,83.0,98.0,83.0,74.0,72.0,100.0,63.0,77.0,94.0,79.0,69.0,81.0,57.0,72.0,70.0,54.0,72.0,54.0,66.0,72.0,69.0,52.0,60.0,56.0,62.0,54.0,46.0,63.0,53.0,51.0,41.0,44.0,43.0,40.0,39.0,42.0,35.0,42.0,40.0,34.0,35.0,36.0,27.0,35.0,26.0,22.0,17.0,11.0,16.0,6.0,7.0,5.0,6.0,4.0,3.0,3.0,3.0,1.0,1.0,3.0,1.0 H82099,25.0,26.0,24.0,30.0,20.0,34.0,38.0,25.0,24.0,44.0,29.0,46.0,32.0,39.0,28.0,41.0,34.0,34.0,43.0,38.0,49.0,31.0,27.0,37.0,24.0,39.0,35.0,45.0,42.0,43.0,43.0,38.0,35.0,37.0,39.0,47.0,49.0,49.0,44.0,41.0,62.0,42.0,39.0,44.0,32.0,50.0,40.0,37.0,45.0,47.0,49.0,51.0,44.0,57.0,55.0,56.0,61.0,62.0,59.0,61.0,62.0,63.0,51.0,64.0,64.0,55.0,64.0,58.0,52.0,50.0,60.0,54.0,52.0,47.0,53.0,50.0,64.0,78.0,65.0,47.0,51.0,46.0,66.0,36.0,28.0,45.0,31.0,31.0,21.0,25.0,18.0,11.0,15.0,14.0,9.0,48.0 H82100,40.0,54.0,58.0,55.0,54.0,66.0,64.0,73.0,55.0,60.0,61.0,57.0,60.0,58.0,72.0,43.0,58.0,49.0,45.0,37.0,29.0,26.0,20.0,31.0,37.0,46.0,45.0,50.0,65.0,55.0,63.0,70.0,57.0,77.0,88.0,87.0,89.0,82.0,72.0,74.0,76.0,59.0,66.0,74.0,68.0,74.0,69.0,59.0,65.0,51.0,62.0,62.0,61.0,57.0,70.0,43.0,41.0,52.0,50.0,54.0,61.0,48.0,45.0,28.0,37.0,41.0,38.0,39.0,36.0,35.0,50.0,42.0,42.0,46.0,50.0,40.0,41.0,44.0,43.0,30.0,41.0,25.0,19.0,18.0,15.0,14.0,17.0,19.0,12.0,16.0,10.0,9.0,6.0,8.0,4.0,13.0 H82615,53.0,56.0,76.0,74.0,66.0,56.0,66.0,65.0,41.0,59.0,75.0,60.0,97.0,86.0,74.0,54.0,56.0,63.0,56.0,53.0,38.0,45.0,51.0,41.0,42.0,39.0,52.0,62.0,66.0,77.0,81.0,81.0,68.0,76.0,91.0,93.0,79.0,94.0,76.0,54.0,75.0,66.0,71.0,74.0,80.0,82.0,69.0,63.0,55.0,61.0,69.0,61.0,66.0,60.0,71.0,54.0,58.0,71.0,68.0,69.0,56.0,58.0,59.0,43.0,48.0,61.0,54.0,37.0,42.0,41.0,39.0,21.0,38.0,32.0,33.0,27.0,44.0,40.0,36.0,36.0,25.0,39.0,27.0,25.0,9.0,18.0,20.0,11.0,14.0,11.0,14.0,12.0,7.0,7.0,7.0,19.0 H82640,52.0,60.0,69.0,72.0,80.0,82.0,91.0,86.0,101.0,103.0,93.0,87.0,107.0,101.0,105.0,109.0,84.0,112.0,104.0,101.0,69.0,83.0,100.0,75.0,91.0,68.0,83.0,75.0,79.0,78.0,83.0,86.0,93.0,96.0,84.0,97.0,113.0,106.0,103.0,114.0,107.0,105.0,94.0,126.0,120.0,118.0,141.0,96.0,105.0,115.0,108.0,122.0,109.0,108.0,127.0,128.0,146.0,139.0,135.0,148.0,143.0,138.0,129.0,118.0,115.0,99.0,102.0,88.0,98.0,86.0,81.0,62.0,58.0,84.0,95.0,74.0,74.0,83.0,86.0,44.0,72.0,47.0,51.0,33.0,31.0,49.0,33.0,23.0,31.0,22.0,23.0,15.0,21.0,9.0,7.0,11.0 Y00080,23.0,25.0,34.0,25.0,25.0,33.0,38.0,36.0,32.0,45.0,31.0,39.0,51.0,34.0,45.0,43.0,40.0,32.0,40.0,31.0,29.0,27.0,22.0,26.0,32.0,21.0,22.0,30.0,36.0,36.0,36.0,29.0,44.0,30.0,39.0,31.0,41.0,44.0,41.0,62.0,44.0,56.0,54.0,41.0,45.0,44.0,45.0,36.0,30.0,33.0,49.0,38.0,51.0,33.0,47.0,43.0,50.0,59.0,49.0,52.0,61.0,56.0,56.0,55.0,52.0,37.0,59.0,67.0,40.0,50.0,51.0,61.0,60.0,46.0,51.0,37.0,59.0,64.0,66.0,39.0,45.0,32.0,23.0,19.0,26.0,18.0,16.0,19.0,15.0,6.0,8.0,12.0,6.0,5.0,8.0,14.0 Y00351,57.0,69.0,54.0,59.0,68.0,60.0,67.0,78.0,73.0,59.0,73.0,77.0,62.0,77.0,79.0,62.0,70.0,50.0,63.0,63.0,63.0,66.0,59.0,71.0,81.0,73.0,87.0,65.0,96.0,82.0,82.0,110.0,97.0,101.0,95.0,90.0,95.0,89.0,103.0,109.0,85.0,77.0,80.0,106.0,78.0,86.0,66.0,72.0,75.0,82.0,75.0,67.0,75.0,64.0,67.0,80.0,69.0,62.0,76.0,77.0,67.0,66.0,64.0,56.0,73.0,70.0,61.0,59.0,62.0,50.0,51.0,47.0,40.0,36.0,38.0,42.0,41.0,41.0,38.0,29.0,26.0,29.0,28.0,18.0,17.0,22.0,15.0,10.0,12.0,14.0,12.0,18.0,8.0,10.0,7.0,27.0 Y02676,22.0,32.0,19.0,17.0,21.0,18.0,12.0,21.0,11.0,19.0,18.0,15.0,10.0,16.0,29.0,9.0,19.0,14.0,43.0,73.0,109.0,138.0,148.0,165.0,205.0,215.0,224.0,194.0,167.0,164.0,172.0,154.0,146.0,142.0,131.0,133.0,106.0,113.0,84.0,85.0,51.0,69.0,65.0,56.0,61.0,42.0,44.0,34.0,37.0,28.0,38.0,30.0,34.0,22.0,24.0,22.0,22.0,24.0,17.0,19.0,11.0,15.0,14.0,13.0,21.0,15.0,7.0,9.0,6.0,11.0,11.0,7.0,9.0,4.0,5.0,6.0,7.0,5.0,3.0,4.0,4.0,2.0,3.0,1.0,1.0,,,3.0,4.0,,,2.0,,,1.0, Y06007,42.0,41.0,58.0,49.0,49.0,49.0,54.0,47.0,59.0,55.0,52.0,42.0,40.0,50.0,43.0,52.0,50.0,44.0,40.0,50.0,39.0,57.0,70.0,67.0,70.0,80.0,80.0,99.0,81.0,85.0,57.0,70.0,77.0,86.0,83.0,82.0,93.0,90.0,86.0,91.0,59.0,61.0,62.0,69.0,52.0,50.0,51.0,44.0,52.0,41.0,58.0,58.0,69.0,64.0,47.0,59.0,53.0,50.0,61.0,60.0,49.0,48.0,45.0,43.0,42.0,37.0,27.0,40.0,37.0,32.0,28.0,26.0,19.0,20.0,20.0,24.0,23.0,22.0,21.0,22.0,18.0,14.0,18.0,14.0,8.0,8.0,8.0,16.0,3.0,9.0,2.0,2.0,2.0,1.0,2.0,8.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 M82002,33.0,34.0,30.0,52.0,49.0,45.0,51.0,52.0,59.0,57.0,51.0,63.0,52.0,58.0,61.0,55.0,50.0,65.0,66.0,53.0,36.0,44.0,66.0,49.0,38.0,49.0,52.0,50.0,59.0,47.0,66.0,67.0,58.0,49.0,62.0,84.0,60.0,62.0,70.0,71.0,57.0,49.0,57.0,62.0,63.0,51.0,73.0,58.0,58.0,72.0,64.0,60.0,63.0,89.0,70.0,64.0,85.0,67.0,69.0,80.0,69.0,66.0,63.0,64.0,65.0,77.0,65.0,89.0,59.0,61.0,44.0,60.0,49.0,53.0,55.0,71.0,66.0,59.0,57.0,45.0,41.0,55.0,51.0,25.0,29.0,32.0,34.0,24.0,27.0,19.0,12.0,9.0,12.0,12.0,7.0,14.0 M82003,101.0,116.0,139.0,120.0,113.0,137.0,159.0,133.0,149.0,157.0,173.0,175.0,175.0,191.0,176.0,168.0,184.0,177.0,144.0,135.0,125.0,141.0,125.0,134.0,130.0,138.0,140.0,161.0,162.0,151.0,175.0,130.0,191.0,182.0,171.0,195.0,160.0,219.0,186.0,180.0,165.0,184.0,175.0,154.0,161.0,162.0,152.0,154.0,117.0,148.0,137.0,128.0,144.0,143.0,149.0,163.0,168.0,162.0,130.0,179.0,143.0,151.0,152.0,129.0,129.0,125.0,111.0,118.0,93.0,125.0,131.0,110.0,115.0,107.0,100.0,109.0,103.0,107.0,120.0,86.0,78.0,78.0,73.0,47.0,47.0,39.0,39.0,36.0,19.0,36.0,19.0,10.0,14.0,14.0,7.0,24.0 M82004,58.0,65.0,55.0,75.0,78.0,65.0,83.0,78.0,100.0,86.0,87.0,94.0,93.0,82.0,91.0,83.0,92.0,114.0,83.0,81.0,67.0,80.0,74.0,75.0,88.0,88.0,65.0,73.0,91.0,88.0,95.0,93.0,104.0,98.0,76.0,88.0,101.0,99.0,134.0,99.0,112.0,79.0,84.0,96.0,103.0,119.0,97.0,107.0,88.0,101.0,122.0,120.0,133.0,142.0,156.0,153.0,166.0,181.0,150.0,156.0,136.0,147.0,173.0,148.0,156.0,142.0,136.0,140.0,132.0,127.0,137.0,128.0,141.0,134.0,137.0,137.0,123.0,174.0,152.0,121.0,136.0,110.0,91.0,90.0,84.0,77.0,63.0,66.0,57.0,49.0,40.0,25.0,32.0,27.0,18.0,47.0 M82005,38.0,38.0,41.0,47.0,41.0,45.0,43.0,46.0,52.0,50.0,44.0,36.0,52.0,47.0,49.0,52.0,53.0,54.0,56.0,37.0,48.0,49.0,34.0,47.0,44.0,48.0,41.0,37.0,51.0,51.0,46.0,49.0,64.0,54.0,60.0,38.0,61.0,43.0,54.0,56.0,56.0,51.0,51.0,55.0,52.0,59.0,53.0,50.0,52.0,48.0,51.0,61.0,52.0,52.0,81.0,65.0,78.0,80.0,61.0,81.0,68.0,98.0,80.0,74.0,76.0,73.0,72.0,47.0,59.0,60.0,64.0,87.0,60.0,70.0,57.0,62.0,53.0,64.0,69.0,58.0,47.0,38.0,36.0,49.0,39.0,31.0,33.0,21.0,29.0,21.0,22.0,12.0,13.0,11.0,12.0,31.0 M82006,45.0,51.0,54.0,61.0,55.0,57.0,47.0,44.0,69.0,53.0,53.0,59.0,44.0,66.0,52.0,49.0,40.0,51.0,41.0,49.0,49.0,53.0,44.0,70.0,63.0,94.0,110.0,94.0,84.0,107.0,95.0,91.0,98.0,94.0,105.0,120.0,108.0,87.0,93.0,101.0,81.0,65.0,75.0,83.0,69.0,53.0,54.0,55.0,71.0,47.0,70.0,76.0,70.0,69.0,62.0,63.0,69.0,79.0,72.0,75.0,76.0,66.0,67.0,60.0,69.0,64.0,72.0,69.0,63.0,54.0,47.0,58.0,46.0,60.0,62.0,70.0,77.0,63.0,49.0,56.0,62.0,62.0,52.0,46.0,29.0,35.0,34.0,37.0,24.0,14.0,17.0,16.0,11.0,9.0,7.0,25.0 M82007,61.0,71.0,64.0,84.0,87.0,91.0,84.0,82.0,94.0,96.0,74.0,89.0,101.0,98.0,98.0,94.0,106.0,77.0,73.0,63.0,74.0,65.0,63.0,71.0,68.0,74.0,90.0,78.0,113.0,91.0,105.0,115.0,114.0,106.0,122.0,111.0,131.0,112.0,92.0,104.0,108.0,106.0,124.0,107.0,100.0,98.0,91.0,85.0,89.0,87.0,92.0,110.0,84.0,107.0,127.0,121.0,119.0,111.0,100.0,102.0,105.0,118.0,100.0,98.0,108.0,88.0,90.0,80.0,78.0,86.0,85.0,70.0,76.0,67.0,74.0,71.0,95.0,76.0,69.0,63.0,72.0,51.0,48.0,42.0,37.0,41.0,33.0,37.0,20.0,22.0,14.0,18.0,5.0,8.0,7.0,10.0 M82008,6.0,18.0,14.0,17.0,12.0,13.0,22.0,16.0,15.0,21.0,14.0,24.0,19.0,29.0,31.0,29.0,39.0,28.0,33.0,20.0,28.0,28.0,27.0,19.0,32.0,21.0,27.0,25.0,29.0,30.0,14.0,19.0,26.0,29.0,22.0,28.0,11.0,33.0,23.0,23.0,26.0,27.0,28.0,31.0,33.0,30.0,21.0,26.0,33.0,42.0,28.0,39.0,47.0,40.0,35.0,54.0,73.0,59.0,66.0,73.0,81.0,70.0,75.0,69.0,87.0,54.0,74.0,57.0,78.0,62.0,69.0,67.0,55.0,51.0,59.0,68.0,66.0,91.0,66.0,59.0,53.0,63.0,54.0,46.0,55.0,45.0,37.0,33.0,26.0,24.0,20.0,20.0,24.0,15.0,16.0,24.0 M82009,51.0,52.0,72.0,35.0,71.0,60.0,48.0,68.0,55.0,52.0,60.0,77.0,81.0,54.0,75.0,75.0,52.0,61.0,67.0,48.0,39.0,41.0,46.0,47.0,58.0,60.0,74.0,79.0,67.0,61.0,83.0,87.0,85.0,74.0,92.0,75.0,110.0,60.0,73.0,76.0,73.0,81.0,65.0,67.0,63.0,75.0,60.0,49.0,55.0,48.0,59.0,64.0,67.0,60.0,81.0,71.0,84.0,90.0,61.0,76.0,77.0,72.0,75.0,97.0,57.0,69.0,60.0,61.0,68.0,54.0,55.0,67.0,47.0,54.0,55.0,50.0,43.0,46.0,55.0,41.0,47.0,30.0,33.0,34.0,23.0,25.0,32.0,24.0,22.0,19.0,14.0,10.0,5.0,8.0,7.0,12.0 M82010,76.0,83.0,66.0,78.0,85.0,73.0,72.0,95.0,98.0,100.0,97.0,112.0,94.0,77.0,94.0,99.0,105.0,114.0,101.0,81.0,79.0,79.0,92.0,80.0,91.0,85.0,80.0,89.0,96.0,91.0,88.0,115.0,126.0,92.0,104.0,111.0,94.0,98.0,89.0,104.0,123.0,109.0,98.0,115.0,109.0,103.0,97.0,86.0,101.0,104.0,137.0,95.0,110.0,112.0,145.0,129.0,120.0,127.0,136.0,140.0,135.0,145.0,140.0,104.0,107.0,116.0,126.0,113.0,95.0,109.0,92.0,96.0,110.0,121.0,97.0,102.0,108.0,128.0,130.0,96.0,93.0,86.0,72.0,65.0,53.0,61.0,61.0,42.0,32.0,35.0,20.0,19.0,16.0,17.0,10.0,26.0 M82011,11.0,26.0,22.0,23.0,22.0,22.0,14.0,26.0,22.0,29.0,21.0,27.0,20.0,20.0,17.0,20.0,16.0,18.0,23.0,19.0,17.0,19.0,28.0,14.0,18.0,13.0,23.0,27.0,29.0,25.0,28.0,14.0,35.0,19.0,36.0,31.0,30.0,26.0,31.0,28.0,16.0,28.0,28.0,33.0,27.0,33.0,26.0,21.0,20.0,20.0,29.0,35.0,31.0,31.0,32.0,33.0,36.0,31.0,41.0,26.0,43.0,39.0,44.0,37.0,33.0,32.0,24.0,32.0,30.0,24.0,34.0,18.0,36.0,23.0,22.0,25.0,29.0,23.0,28.0,27.0,22.0,35.0,28.0,14.0,12.0,8.0,12.0,14.0,9.0,9.0,4.0,8.0,1.0,5.0,5.0,16.0 M82012,74.0,58.0,70.0,74.0,73.0,89.0,96.0,94.0,91.0,97.0,99.0,115.0,97.0,116.0,107.0,108.0,72.0,97.0,104.0,67.0,69.0,58.0,54.0,67.0,72.0,89.0,77.0,87.0,126.0,110.0,109.0,94.0,99.0,105.0,127.0,121.0,138.0,120.0,105.0,101.0,116.0,113.0,107.0,102.0,101.0,89.0,84.0,86.0,85.0,75.0,74.0,74.0,108.0,97.0,90.0,117.0,95.0,91.0,100.0,94.0,74.0,92.0,77.0,82.0,73.0,87.0,69.0,62.0,63.0,52.0,59.0,53.0,61.0,57.0,64.0,46.0,53.0,66.0,63.0,48.0,38.0,48.0,41.0,33.0,34.0,34.0,19.0,18.0,15.0,15.0,14.0,12.0,8.0,6.0,2.0,9.0 M82013,6.0,10.0,4.0,12.0,6.0,11.0,7.0,10.0,7.0,6.0,10.0,8.0,9.0,14.0,7.0,8.0,9.0,14.0,11.0,8.0,13.0,7.0,17.0,6.0,4.0,17.0,13.0,14.0,12.0,19.0,16.0,12.0,15.0,13.0,17.0,10.0,7.0,6.0,14.0,10.0,9.0,13.0,15.0,13.0,13.0,13.0,10.0,8.0,13.0,9.0,13.0,17.0,25.0,18.0,17.0,27.0,15.0,23.0,20.0,20.0,28.0,36.0,28.0,22.0,25.0,19.0,29.0,23.0,17.0,16.0,16.0,18.0,27.0,22.0,16.0,21.0,16.0,16.0,20.0,16.0,14.0,18.0,7.0,21.0,9.0,11.0,10.0,7.0,6.0,5.0,2.0,3.0,2.0,2.0,1.0,4.0 M82014,32.0,33.0,33.0,31.0,35.0,38.0,37.0,46.0,34.0,44.0,37.0,39.0,50.0,47.0,47.0,48.0,45.0,54.0,32.0,51.0,43.0,49.0,45.0,42.0,47.0,39.0,56.0,49.0,50.0,36.0,43.0,51.0,57.0,50.0,51.0,55.0,48.0,47.0,46.0,48.0,68.0,51.0,42.0,37.0,47.0,50.0,38.0,39.0,38.0,56.0,54.0,58.0,62.0,76.0,64.0,76.0,74.0,79.0,86.0,90.0,99.0,87.0,69.0,69.0,78.0,72.0,77.0,80.0,58.0,67.0,67.0,56.0,74.0,59.0,70.0,77.0,83.0,78.0,85.0,66.0,59.0,54.0,57.0,45.0,45.0,38.0,42.0,36.0,34.0,24.0,19.0,10.0,22.0,13.0,12.0,36.0 M82016,33.0,34.0,48.0,34.0,57.0,42.0,39.0,48.0,45.0,41.0,51.0,39.0,48.0,81.0,96.0,82.0,118.0,106.0,82.0,41.0,40.0,28.0,48.0,42.0,46.0,44.0,38.0,38.0,29.0,36.0,44.0,53.0,49.0,60.0,62.0,70.0,71.0,82.0,54.0,72.0,58.0,57.0,57.0,64.0,58.0,78.0,63.0,62.0,54.0,53.0,57.0,65.0,79.0,72.0,74.0,84.0,64.0,63.0,77.0,67.0,72.0,89.0,78.0,80.0,74.0,87.0,74.0,78.0,65.0,77.0,69.0,77.0,60.0,62.0,75.0,60.0,87.0,70.0,73.0,53.0,59.0,57.0,51.0,54.0,42.0,41.0,34.0,35.0,28.0,24.0,22.0,20.0,21.0,6.0,15.0,40.0 M82017,10.0,11.0,15.0,21.0,19.0,15.0,26.0,24.0,18.0,28.0,24.0,17.0,21.0,31.0,30.0,26.0,15.0,28.0,25.0,19.0,14.0,17.0,20.0,15.0,18.0,17.0,21.0,13.0,23.0,8.0,11.0,18.0,21.0,24.0,30.0,31.0,18.0,27.0,27.0,24.0,19.0,28.0,24.0,30.0,21.0,23.0,31.0,18.0,30.0,26.0,22.0,35.0,28.0,41.0,33.0,33.0,40.0,46.0,35.0,44.0,40.0,45.0,36.0,32.0,43.0,45.0,36.0,52.0,35.0,28.0,45.0,42.0,32.0,29.0,28.0,35.0,31.0,34.0,27.0,32.0,33.0,30.0,29.0,17.0,22.0,17.0,11.0,13.0,15.0,7.0,7.0,3.0,10.0,4.0,5.0,8.0 M82018,31.0,24.0,34.0,35.0,27.0,37.0,32.0,39.0,38.0,41.0,39.0,28.0,57.0,44.0,33.0,37.0,41.0,46.0,30.0,27.0,25.0,28.0,34.0,26.0,32.0,30.0,33.0,34.0,31.0,25.0,37.0,32.0,35.0,54.0,49.0,35.0,49.0,46.0,42.0,45.0,64.0,44.0,39.0,45.0,48.0,30.0,39.0,29.0,46.0,41.0,46.0,45.0,54.0,40.0,54.0,51.0,44.0,49.0,40.0,52.0,49.0,62.0,50.0,58.0,56.0,46.0,51.0,46.0,40.0,37.0,53.0,49.0,47.0,35.0,48.0,42.0,49.0,51.0,48.0,38.0,48.0,44.0,41.0,26.0,19.0,30.0,15.0,18.0,12.0,14.0,11.0,15.0,12.0,6.0,7.0,12.0 M82019,27.0,16.0,19.0,25.0,18.0,26.0,29.0,31.0,30.0,30.0,40.0,37.0,33.0,44.0,56.0,73.0,93.0,133.0,100.0,76.0,74.0,53.0,47.0,28.0,31.0,22.0,20.0,26.0,27.0,31.0,28.0,34.0,31.0,28.0,30.0,40.0,33.0,34.0,33.0,27.0,38.0,31.0,38.0,42.0,36.0,43.0,47.0,59.0,40.0,73.0,45.0,44.0,43.0,62.0,58.0,50.0,72.0,71.0,63.0,83.0,77.0,88.0,76.0,71.0,68.0,53.0,85.0,84.0,62.0,64.0,57.0,62.0,61.0,65.0,57.0,70.0,72.0,69.0,67.0,52.0,48.0,51.0,33.0,27.0,39.0,32.0,19.0,19.0,18.0,18.0,21.0,13.0,13.0,13.0,10.0,20.0 M82020,22.0,15.0,19.0,17.0,15.0,15.0,8.0,16.0,13.0,14.0,21.0,19.0,16.0,19.0,16.0,24.0,16.0,26.0,20.0,17.0,17.0,18.0,15.0,18.0,20.0,17.0,22.0,15.0,21.0,25.0,28.0,14.0,28.0,20.0,22.0,15.0,24.0,24.0,13.0,20.0,13.0,19.0,18.0,18.0,20.0,21.0,20.0,22.0,19.0,26.0,25.0,27.0,34.0,27.0,32.0,42.0,39.0,33.0,39.0,44.0,42.0,37.0,41.0,37.0,40.0,35.0,38.0,36.0,31.0,34.0,32.0,25.0,33.0,36.0,26.0,32.0,31.0,28.0,26.0,18.0,15.0,23.0,19.0,18.0,15.0,10.0,16.0,10.0,9.0,7.0,3.0,6.0,2.0,2.0,2.0,7.0 M82021,24.0,21.0,27.0,29.0,36.0,28.0,43.0,39.0,42.0,28.0,49.0,40.0,30.0,32.0,42.0,47.0,29.0,44.0,46.0,29.0,36.0,36.0,33.0,34.0,34.0,40.0,32.0,44.0,31.0,39.0,42.0,45.0,36.0,53.0,35.0,42.0,36.0,42.0,42.0,45.0,53.0,38.0,43.0,39.0,38.0,45.0,47.0,33.0,40.0,45.0,46.0,54.0,60.0,53.0,69.0,60.0,62.0,66.0,70.0,94.0,78.0,77.0,79.0,80.0,68.0,63.0,67.0,66.0,60.0,68.0,63.0,68.0,60.0,48.0,54.0,76.0,72.0,58.0,71.0,53.0,74.0,60.0,49.0,41.0,42.0,39.0,28.0,44.0,35.0,23.0,28.0,15.0,13.0,20.0,14.0,34.0 M82022,47.0,53.0,62.0,54.0,71.0,58.0,79.0,75.0,68.0,75.0,68.0,78.0,78.0,90.0,74.0,108.0,94.0,112.0,113.0,85.0,65.0,91.0,74.0,54.0,74.0,101.0,73.0,65.0,79.0,74.0,81.0,75.0,84.0,81.0,96.0,95.0,77.0,91.0,115.0,95.0,89.0,76.0,69.0,91.0,84.0,83.0,90.0,60.0,96.0,88.0,100.0,86.0,103.0,131.0,124.0,121.0,111.0,78.0,104.0,101.0,105.0,114.0,97.0,121.0,107.0,82.0,88.0,79.0,98.0,81.0,70.0,76.0,88.0,70.0,83.0,87.0,87.0,94.0,77.0,71.0,69.0,58.0,47.0,62.0,38.0,32.0,39.0,23.0,38.0,24.0,20.0,20.0,14.0,21.0,6.0,26.0 M82023,29.0,22.0,29.0,36.0,39.0,25.0,41.0,46.0,38.0,41.0,29.0,56.0,46.0,65.0,36.0,60.0,54.0,62.0,75.0,57.0,58.0,63.0,52.0,51.0,40.0,35.0,46.0,28.0,41.0,38.0,40.0,35.0,43.0,41.0,44.0,57.0,43.0,28.0,45.0,42.0,49.0,43.0,43.0,43.0,47.0,37.0,46.0,32.0,40.0,31.0,44.0,62.0,57.0,55.0,67.0,84.0,61.0,66.0,66.0,62.0,62.0,51.0,64.0,56.0,62.0,68.0,48.0,56.0,62.0,52.0,47.0,42.0,42.0,43.0,44.0,46.0,37.0,45.0,34.0,32.0,32.0,27.0,37.0,21.0,23.0,13.0,15.0,17.0,20.0,20.0,8.0,4.0,8.0,1.0,4.0,8.0 M82024,6.0,11.0,8.0,13.0,13.0,8.0,12.0,25.0,20.0,18.0,18.0,18.0,21.0,25.0,16.0,11.0,19.0,13.0,13.0,19.0,14.0,23.0,17.0,22.0,11.0,17.0,13.0,10.0,23.0,15.0,12.0,14.0,17.0,25.0,23.0,14.0,25.0,15.0,13.0,16.0,15.0,21.0,17.0,19.0,18.0,13.0,16.0,22.0,12.0,21.0,32.0,19.0,26.0,35.0,32.0,26.0,37.0,32.0,39.0,39.0,46.0,37.0,36.0,45.0,36.0,50.0,26.0,29.0,32.0,33.0,33.0,22.0,21.0,25.0,23.0,26.0,31.0,30.0,38.0,24.0,24.0,31.0,19.0,13.0,14.0,6.0,8.0,12.0,12.0,11.0,10.0,8.0,5.0,3.0,4.0,12.0 M82025,55.0,74.0,58.0,70.0,77.0,87.0,80.0,78.0,91.0,107.0,90.0,90.0,94.0,125.0,120.0,114.0,116.0,135.0,139.0,94.0,72.0,78.0,95.0,84.0,93.0,80.0,89.0,91.0,116.0,111.0,102.0,115.0,96.0,121.0,117.0,125.0,127.0,113.0,122.0,90.0,98.0,120.0,114.0,119.0,117.0,132.0,116.0,110.0,100.0,119.0,134.0,125.0,127.0,162.0,149.0,146.0,157.0,171.0,196.0,174.0,167.0,175.0,164.0,172.0,162.0,123.0,167.0,149.0,164.0,139.0,133.0,134.0,141.0,136.0,112.0,121.0,144.0,150.0,139.0,99.0,103.0,105.0,92.0,73.0,68.0,79.0,64.0,59.0,50.0,36.0,30.0,30.0,34.0,25.0,15.0,41.0 M82026,53.0,51.0,43.0,62.0,62.0,53.0,56.0,60.0,62.0,75.0,68.0,80.0,73.0,68.0,92.0,81.0,99.0,113.0,85.0,73.0,84.0,73.0,65.0,56.0,52.0,38.0,61.0,55.0,67.0,71.0,82.0,69.0,86.0,79.0,71.0,76.0,72.0,83.0,89.0,75.0,74.0,85.0,65.0,79.0,93.0,68.0,66.0,55.0,61.0,62.0,88.0,58.0,87.0,118.0,90.0,98.0,99.0,116.0,113.0,101.0,103.0,97.0,99.0,105.0,99.0,75.0,93.0,98.0,72.0,73.0,64.0,78.0,75.0,74.0,73.0,72.0,58.0,83.0,97.0,78.0,65.0,63.0,53.0,50.0,39.0,60.0,35.0,34.0,35.0,33.0,20.0,24.0,14.0,13.0,14.0,27.0 M82028,41.0,39.0,41.0,60.0,48.0,63.0,68.0,63.0,62.0,66.0,82.0,78.0,90.0,88.0,83.0,112.0,93.0,90.0,85.0,70.0,70.0,55.0,65.0,67.0,70.0,65.0,59.0,70.0,49.0,67.0,62.0,74.0,62.0,78.0,82.0,73.0,72.0,92.0,91.0,85.0,94.0,90.0,74.0,91.0,95.0,87.0,78.0,84.0,97.0,74.0,108.0,108.0,106.0,120.0,103.0,140.0,127.0,130.0,126.0,125.0,140.0,126.0,114.0,106.0,102.0,90.0,96.0,94.0,77.0,76.0,97.0,95.0,96.0,86.0,102.0,107.0,116.0,102.0,125.0,91.0,73.0,74.0,74.0,64.0,53.0,43.0,44.0,51.0,30.0,35.0,34.0,23.0,24.0,13.0,11.0,38.0 M82030,40.0,33.0,41.0,51.0,44.0,58.0,58.0,40.0,47.0,55.0,48.0,45.0,48.0,52.0,52.0,66.0,57.0,51.0,45.0,48.0,48.0,56.0,40.0,37.0,36.0,41.0,56.0,49.0,51.0,50.0,48.0,72.0,62.0,46.0,58.0,58.0,63.0,50.0,56.0,59.0,67.0,59.0,47.0,53.0,52.0,52.0,52.0,57.0,54.0,58.0,48.0,59.0,61.0,70.0,78.0,70.0,76.0,89.0,94.0,87.0,90.0,102.0,80.0,90.0,84.0,80.0,83.0,70.0,84.0,75.0,89.0,64.0,59.0,68.0,83.0,72.0,63.0,65.0,89.0,53.0,52.0,53.0,50.0,47.0,29.0,37.0,20.0,37.0,22.0,23.0,16.0,6.0,15.0,15.0,3.0,17.0 M82032,58.0,78.0,69.0,99.0,95.0,95.0,103.0,109.0,111.0,116.0,94.0,96.0,117.0,131.0,121.0,105.0,88.0,108.0,91.0,90.0,98.0,78.0,70.0,96.0,84.0,85.0,96.0,85.0,105.0,108.0,128.0,104.0,129.0,136.0,152.0,138.0,131.0,126.0,108.0,116.0,130.0,110.0,104.0,124.0,114.0,107.0,112.0,89.0,89.0,97.0,95.0,101.0,110.0,87.0,101.0,105.0,122.0,117.0,99.0,107.0,100.0,104.0,86.0,107.0,98.0,109.0,88.0,91.0,74.0,75.0,76.0,92.0,79.0,65.0,66.0,58.0,77.0,59.0,58.0,41.0,42.0,49.0,54.0,43.0,41.0,33.0,35.0,28.0,19.0,16.0,18.0,11.0,17.0,11.0,9.0,22.0 M82033,18.0,16.0,27.0,20.0,22.0,26.0,13.0,32.0,24.0,30.0,20.0,23.0,27.0,23.0,28.0,23.0,37.0,22.0,28.0,22.0,20.0,23.0,22.0,30.0,16.0,24.0,23.0,22.0,28.0,21.0,21.0,21.0,15.0,25.0,23.0,29.0,22.0,27.0,27.0,18.0,25.0,21.0,29.0,15.0,16.0,30.0,19.0,19.0,26.0,27.0,29.0,32.0,48.0,45.0,47.0,38.0,40.0,50.0,39.0,51.0,52.0,47.0,49.0,46.0,48.0,37.0,64.0,36.0,47.0,44.0,51.0,43.0,44.0,52.0,45.0,34.0,47.0,56.0,51.0,32.0,36.0,34.0,30.0,19.0,27.0,24.0,23.0,14.0,15.0,13.0,8.0,4.0,9.0,6.0,3.0,13.0 M82034,27.0,23.0,20.0,30.0,21.0,35.0,24.0,34.0,30.0,31.0,37.0,42.0,33.0,38.0,27.0,33.0,37.0,37.0,32.0,33.0,28.0,30.0,34.0,30.0,46.0,49.0,52.0,51.0,54.0,41.0,44.0,54.0,44.0,35.0,55.0,63.0,51.0,40.0,44.0,41.0,50.0,36.0,44.0,44.0,46.0,45.0,42.0,37.0,38.0,41.0,50.0,42.0,57.0,61.0,51.0,53.0,55.0,78.0,82.0,77.0,79.0,65.0,62.0,72.0,53.0,64.0,58.0,69.0,58.0,54.0,53.0,54.0,47.0,60.0,49.0,38.0,47.0,67.0,59.0,43.0,53.0,34.0,21.0,37.0,25.0,16.0,26.0,21.0,16.0,15.0,10.0,13.0,8.0,8.0,2.0,16.0 M82035,30.0,39.0,47.0,46.0,48.0,41.0,50.0,63.0,49.0,48.0,68.0,61.0,56.0,63.0,78.0,73.0,73.0,67.0,68.0,61.0,45.0,56.0,54.0,65.0,47.0,67.0,50.0,63.0,76.0,59.0,53.0,65.0,57.0,60.0,55.0,65.0,59.0,66.0,66.0,76.0,66.0,63.0,62.0,62.0,67.0,71.0,52.0,59.0,64.0,55.0,72.0,85.0,68.0,95.0,114.0,107.0,113.0,68.0,98.0,106.0,102.0,107.0,112.0,108.0,92.0,90.0,90.0,76.0,66.0,78.0,93.0,84.0,80.0,78.0,83.0,79.0,76.0,74.0,69.0,74.0,81.0,60.0,50.0,45.0,41.0,44.0,34.0,24.0,26.0,28.0,27.0,14.0,11.0,12.0,7.0,25.0 M82038,74.0,82.0,75.0,86.0,81.0,67.0,93.0,68.0,78.0,84.0,61.0,65.0,87.0,105.0,86.0,75.0,80.0,76.0,77.0,53.0,53.0,61.0,56.0,52.0,60.0,69.0,59.0,74.0,80.0,100.0,96.0,93.0,91.0,102.0,103.0,91.0,118.0,116.0,86.0,92.0,98.0,119.0,97.0,70.0,90.0,89.0,93.0,77.0,86.0,77.0,111.0,84.0,98.0,107.0,106.0,97.0,94.0,103.0,92.0,80.0,101.0,91.0,77.0,81.0,79.0,77.0,81.0,66.0,59.0,54.0,67.0,83.0,56.0,53.0,58.0,70.0,68.0,70.0,59.0,48.0,49.0,37.0,47.0,36.0,38.0,31.0,33.0,30.0,22.0,25.0,14.0,13.0,11.0,16.0,8.0,26.0 M82039,57.0,55.0,62.0,73.0,65.0,77.0,78.0,78.0,72.0,81.0,88.0,88.0,98.0,102.0,73.0,90.0,87.0,86.0,77.0,87.0,74.0,93.0,61.0,84.0,90.0,83.0,90.0,98.0,110.0,90.0,114.0,98.0,111.0,99.0,97.0,103.0,108.0,102.0,107.0,115.0,95.0,103.0,82.0,109.0,92.0,84.0,91.0,76.0,95.0,72.0,68.0,98.0,95.0,85.0,78.0,92.0,99.0,84.0,78.0,90.0,69.0,75.0,99.0,78.0,80.0,98.0,77.0,75.0,70.0,62.0,59.0,71.0,72.0,72.0,61.0,73.0,59.0,75.0,83.0,56.0,44.0,65.0,43.0,37.0,43.0,46.0,40.0,20.0,26.0,33.0,17.0,24.0,12.0,7.0,12.0,22.0 M82040,22.0,23.0,24.0,21.0,33.0,38.0,23.0,25.0,28.0,28.0,32.0,32.0,34.0,44.0,47.0,45.0,30.0,44.0,25.0,26.0,33.0,42.0,31.0,33.0,29.0,32.0,34.0,39.0,43.0,50.0,44.0,55.0,36.0,41.0,36.0,37.0,40.0,41.0,38.0,45.0,36.0,45.0,48.0,56.0,43.0,44.0,34.0,32.0,33.0,38.0,39.0,56.0,37.0,59.0,52.0,40.0,52.0,57.0,67.0,43.0,37.0,49.0,54.0,49.0,40.0,40.0,30.0,27.0,27.0,30.0,25.0,32.0,31.0,27.0,31.0,17.0,24.0,31.0,24.0,20.0,18.0,16.0,17.0,13.0,21.0,6.0,5.0,14.0,9.0,5.0,7.0,6.0,3.0,4.0,3.0,6.0 M82041,26.0,18.0,19.0,30.0,18.0,24.0,23.0,30.0,27.0,27.0,27.0,46.0,34.0,33.0,29.0,31.0,31.0,45.0,30.0,30.0,42.0,25.0,30.0,29.0,34.0,23.0,40.0,31.0,21.0,30.0,26.0,25.0,28.0,28.0,35.0,31.0,33.0,34.0,41.0,34.0,33.0,37.0,31.0,32.0,35.0,35.0,36.0,47.0,34.0,44.0,50.0,46.0,43.0,48.0,55.0,46.0,71.0,60.0,66.0,71.0,75.0,76.0,73.0,68.0,73.0,59.0,46.0,63.0,61.0,62.0,44.0,50.0,50.0,41.0,48.0,43.0,44.0,53.0,38.0,39.0,57.0,47.0,36.0,29.0,22.0,35.0,21.0,18.0,11.0,7.0,7.0,6.0,6.0,7.0,6.0,9.0 M82042,29.0,36.0,42.0,47.0,43.0,45.0,54.0,50.0,61.0,57.0,44.0,63.0,42.0,57.0,63.0,45.0,50.0,48.0,46.0,53.0,40.0,36.0,35.0,37.0,33.0,36.0,40.0,46.0,34.0,50.0,38.0,39.0,41.0,54.0,51.0,56.0,36.0,45.0,53.0,56.0,52.0,50.0,42.0,36.0,38.0,32.0,40.0,39.0,24.0,26.0,34.0,30.0,44.0,46.0,34.0,46.0,38.0,29.0,39.0,28.0,24.0,21.0,37.0,34.0,24.0,33.0,28.0,25.0,27.0,15.0,18.0,24.0,24.0,26.0,25.0,23.0,29.0,24.0,30.0,19.0,16.0,22.0,19.0,15.0,7.0,11.0,11.0,12.0,13.0,5.0,8.0,2.0,3.0,2.0,1.0,8.0 M82043,20.0,27.0,25.0,19.0,26.0,22.0,29.0,29.0,37.0,28.0,45.0,34.0,34.0,38.0,42.0,33.0,40.0,41.0,37.0,33.0,37.0,24.0,24.0,31.0,32.0,32.0,31.0,41.0,30.0,20.0,33.0,29.0,35.0,44.0,33.0,50.0,46.0,39.0,52.0,35.0,38.0,45.0,33.0,44.0,41.0,42.0,34.0,34.0,33.0,42.0,31.0,44.0,45.0,45.0,54.0,45.0,61.0,56.0,59.0,54.0,61.0,56.0,54.0,76.0,66.0,65.0,69.0,63.0,58.0,63.0,65.0,51.0,48.0,62.0,49.0,49.0,37.0,59.0,52.0,46.0,57.0,51.0,34.0,33.0,27.0,21.0,25.0,21.0,20.0,18.0,17.0,20.0,12.0,8.0,11.0,24.0 M82046,13.0,18.0,13.0,24.0,18.0,18.0,11.0,22.0,28.0,22.0,22.0,25.0,31.0,21.0,18.0,18.0,13.0,18.0,13.0,17.0,17.0,16.0,13.0,19.0,9.0,19.0,12.0,27.0,22.0,28.0,28.0,17.0,10.0,27.0,28.0,18.0,33.0,17.0,24.0,16.0,23.0,17.0,21.0,20.0,18.0,19.0,15.0,19.0,14.0,14.0,19.0,19.0,21.0,23.0,23.0,27.0,23.0,30.0,47.0,35.0,31.0,36.0,23.0,31.0,26.0,26.0,31.0,30.0,25.0,26.0,33.0,22.0,34.0,32.0,36.0,18.0,29.0,34.0,34.0,26.0,21.0,32.0,17.0,16.0,13.0,12.0,11.0,17.0,8.0,6.0,8.0,4.0,5.0,2.0,2.0,4.0 M82047,48.0,53.0,40.0,73.0,47.0,49.0,55.0,52.0,71.0,68.0,60.0,51.0,54.0,62.0,44.0,37.0,50.0,65.0,48.0,44.0,36.0,48.0,40.0,52.0,53.0,39.0,73.0,78.0,56.0,77.0,75.0,73.0,77.0,88.0,90.0,82.0,79.0,77.0,86.0,67.0,71.0,59.0,69.0,75.0,90.0,73.0,54.0,56.0,61.0,74.0,63.0,63.0,62.0,78.0,70.0,82.0,98.0,82.0,81.0,96.0,75.0,97.0,81.0,92.0,84.0,91.0,70.0,49.0,62.0,73.0,47.0,71.0,54.0,62.0,65.0,60.0,65.0,61.0,58.0,61.0,59.0,55.0,52.0,45.0,43.0,38.0,28.0,28.0,28.0,26.0,19.0,25.0,15.0,18.0,7.0,33.0 M82048,23.0,29.0,26.0,29.0,34.0,35.0,37.0,40.0,33.0,43.0,38.0,45.0,51.0,57.0,44.0,47.0,52.0,42.0,24.0,30.0,26.0,29.0,34.0,31.0,36.0,32.0,38.0,37.0,37.0,38.0,41.0,32.0,46.0,53.0,55.0,48.0,59.0,46.0,55.0,50.0,35.0,48.0,39.0,46.0,45.0,45.0,40.0,39.0,36.0,33.0,43.0,37.0,41.0,48.0,43.0,38.0,47.0,41.0,56.0,36.0,50.0,59.0,61.0,42.0,41.0,48.0,45.0,45.0,27.0,52.0,35.0,40.0,33.0,34.0,30.0,29.0,34.0,40.0,36.0,25.0,36.0,31.0,21.0,22.0,15.0,23.0,14.0,22.0,14.0,20.0,12.0,9.0,11.0,9.0,3.0,10.0 M82051,13.0,17.0,15.0,15.0,15.0,14.0,22.0,17.0,27.0,14.0,36.0,29.0,26.0,25.0,27.0,29.0,31.0,20.0,15.0,19.0,20.0,21.0,21.0,13.0,17.0,16.0,19.0,17.0,18.0,19.0,27.0,28.0,20.0,17.0,27.0,29.0,28.0,24.0,28.0,29.0,23.0,26.0,31.0,29.0,26.0,26.0,27.0,30.0,24.0,25.0,32.0,34.0,23.0,37.0,36.0,39.0,43.0,35.0,32.0,50.0,41.0,35.0,32.0,35.0,31.0,42.0,31.0,51.0,39.0,33.0,29.0,39.0,38.0,28.0,41.0,34.0,22.0,53.0,33.0,25.0,32.0,33.0,17.0,10.0,16.0,12.0,17.0,16.0,10.0,9.0,5.0,4.0,2.0,2.0,3.0,11.0 M82056,53.0,57.0,53.0,56.0,64.0,64.0,60.0,67.0,76.0,67.0,82.0,70.0,75.0,80.0,83.0,106.0,90.0,91.0,125.0,255.0,275.0,200.0,183.0,142.0,119.0,97.0,85.0,72.0,70.0,79.0,75.0,78.0,90.0,86.0,79.0,81.0,98.0,89.0,102.0,82.0,86.0,107.0,94.0,84.0,80.0,98.0,78.0,81.0,89.0,98.0,79.0,113.0,112.0,110.0,121.0,129.0,124.0,134.0,101.0,109.0,119.0,116.0,100.0,87.0,112.0,113.0,93.0,71.0,86.0,69.0,80.0,84.0,86.0,74.0,77.0,78.0,88.0,73.0,93.0,59.0,71.0,44.0,47.0,53.0,31.0,44.0,29.0,18.0,18.0,27.0,13.0,11.0,9.0,4.0,7.0,23.0 M82057,32.0,36.0,35.0,37.0,32.0,37.0,36.0,33.0,49.0,54.0,57.0,53.0,48.0,61.0,67.0,54.0,52.0,62.0,42.0,43.0,34.0,31.0,36.0,33.0,44.0,41.0,41.0,45.0,61.0,53.0,57.0,57.0,49.0,58.0,54.0,54.0,70.0,78.0,69.0,60.0,61.0,50.0,48.0,58.0,54.0,63.0,59.0,46.0,43.0,38.0,49.0,38.0,40.0,52.0,46.0,44.0,36.0,40.0,44.0,41.0,29.0,48.0,31.0,32.0,34.0,51.0,25.0,47.0,22.0,26.0,42.0,29.0,32.0,32.0,27.0,25.0,25.0,19.0,20.0,16.0,15.0,13.0,12.0,4.0,8.0,5.0,6.0,5.0,1.0,3.0,3.0,1.0,1.0,1.0,1.0,3.0 M82058,11.0,9.0,9.0,12.0,13.0,12.0,19.0,15.0,20.0,15.0,22.0,11.0,17.0,23.0,25.0,14.0,15.0,21.0,11.0,19.0,16.0,18.0,14.0,15.0,15.0,21.0,17.0,28.0,17.0,12.0,17.0,14.0,16.0,12.0,19.0,18.0,24.0,14.0,17.0,25.0,23.0,16.0,19.0,22.0,13.0,20.0,19.0,22.0,19.0,24.0,17.0,29.0,27.0,35.0,31.0,31.0,33.0,32.0,35.0,42.0,49.0,36.0,43.0,39.0,41.0,30.0,35.0,21.0,27.0,32.0,31.0,30.0,27.0,25.0,24.0,22.0,22.0,26.0,26.0,23.0,10.0,22.0,13.0,11.0,17.0,12.0,12.0,6.0,12.0,12.0,8.0,7.0,8.0,6.0,7.0,20.0 M82059,79.0,80.0,82.0,94.0,73.0,77.0,90.0,80.0,94.0,83.0,65.0,85.0,82.0,95.0,74.0,104.0,95.0,81.0,99.0,67.0,73.0,78.0,66.0,91.0,93.0,100.0,99.0,83.0,123.0,106.0,118.0,126.0,110.0,121.0,110.0,120.0,114.0,99.0,91.0,99.0,85.0,78.0,100.0,92.0,87.0,90.0,120.0,84.0,74.0,106.0,92.0,96.0,107.0,146.0,155.0,143.0,136.0,144.0,146.0,159.0,161.0,133.0,130.0,131.0,129.0,102.0,120.0,97.0,105.0,90.0,94.0,85.0,79.0,80.0,71.0,77.0,89.0,87.0,92.0,61.0,66.0,72.0,57.0,50.0,46.0,31.0,33.0,37.0,34.0,23.0,13.0,11.0,13.0,9.0,9.0,11.0 M82060,25.0,46.0,33.0,35.0,36.0,31.0,50.0,41.0,44.0,43.0,47.0,40.0,37.0,50.0,57.0,53.0,44.0,52.0,39.0,36.0,32.0,41.0,40.0,57.0,50.0,41.0,47.0,48.0,46.0,52.0,55.0,49.0,58.0,59.0,51.0,55.0,53.0,61.0,56.0,55.0,54.0,48.0,62.0,58.0,64.0,69.0,48.0,40.0,50.0,45.0,67.0,59.0,65.0,75.0,87.0,68.0,84.0,71.0,78.0,73.0,70.0,76.0,55.0,68.0,56.0,58.0,52.0,59.0,52.0,44.0,46.0,50.0,58.0,55.0,47.0,51.0,45.0,57.0,46.0,47.0,46.0,49.0,46.0,28.0,24.0,30.0,32.0,33.0,28.0,30.0,18.0,13.0,15.0,5.0,6.0,14.0 M82601,4.0,6.0,9.0,4.0,14.0,9.0,7.0,5.0,9.0,7.0,13.0,9.0,14.0,12.0,5.0,10.0,10.0,7.0,9.0,10.0,9.0,5.0,10.0,9.0,6.0,10.0,8.0,11.0,11.0,12.0,10.0,11.0,12.0,12.0,4.0,6.0,6.0,13.0,11.0,9.0,9.0,11.0,13.0,10.0,18.0,15.0,11.0,12.0,5.0,5.0,12.0,13.0,19.0,24.0,16.0,16.0,20.0,14.0,12.0,20.0,21.0,21.0,15.0,26.0,24.0,14.0,18.0,21.0,17.0,17.0,19.0,19.0,21.0,19.0,19.0,23.0,22.0,22.0,30.0,20.0,19.0,14.0,17.0,21.0,12.0,13.0,5.0,4.0,8.0,4.0,5.0,5.0,1.0,6.0,2.0,4.0 M82606,17.0,17.0,31.0,25.0,38.0,14.0,22.0,27.0,28.0,27.0,29.0,34.0,27.0,27.0,29.0,38.0,16.0,25.0,39.0,20.0,25.0,16.0,21.0,19.0,16.0,33.0,31.0,34.0,28.0,31.0,25.0,47.0,36.0,42.0,33.0,47.0,37.0,43.0,37.0,33.0,40.0,28.0,36.0,38.0,36.0,39.0,32.0,36.0,31.0,39.0,47.0,49.0,64.0,60.0,50.0,58.0,59.0,47.0,57.0,53.0,57.0,52.0,56.0,38.0,51.0,51.0,44.0,36.0,27.0,27.0,36.0,25.0,31.0,27.0,23.0,32.0,20.0,21.0,20.0,14.0,17.0,12.0,9.0,7.0,8.0,9.0,4.0,6.0,4.0,4.0,,4.0,1.0,,1.0,2.0 M82616,42.0,44.0,44.0,35.0,42.0,44.0,54.0,58.0,45.0,37.0,60.0,51.0,46.0,57.0,63.0,50.0,43.0,67.0,62.0,43.0,32.0,45.0,41.0,35.0,44.0,46.0,55.0,38.0,48.0,53.0,50.0,63.0,61.0,53.0,64.0,57.0,67.0,57.0,52.0,63.0,48.0,59.0,59.0,59.0,51.0,46.0,50.0,49.0,42.0,46.0,50.0,47.0,55.0,55.0,53.0,74.0,50.0,55.0,52.0,59.0,57.0,50.0,51.0,65.0,50.0,61.0,40.0,47.0,35.0,46.0,37.0,37.0,34.0,35.0,46.0,45.0,44.0,38.0,44.0,32.0,22.0,28.0,20.0,17.0,18.0,16.0,18.0,16.0,13.0,7.0,10.0,8.0,3.0,3.0,2.0,2.0 M82620,3.0,4.0,6.0,3.0,7.0,14.0,7.0,9.0,12.0,11.0,12.0,10.0,12.0,16.0,15.0,13.0,18.0,5.0,10.0,5.0,9.0,7.0,14.0,11.0,10.0,4.0,9.0,3.0,6.0,9.0,9.0,9.0,11.0,11.0,5.0,12.0,8.0,15.0,12.0,12.0,12.0,9.0,6.0,14.0,12.0,14.0,10.0,11.0,15.0,9.0,16.0,23.0,20.0,21.0,33.0,24.0,21.0,23.0,25.0,33.0,29.0,26.0,46.0,26.0,25.0,35.0,27.0,28.0,29.0,28.0,28.0,37.0,20.0,19.0,28.0,28.0,43.0,25.0,26.0,28.0,26.0,27.0,12.0,9.0,12.0,10.0,8.0,12.0,14.0,10.0,4.0,8.0,3.0,1.0,4.0,1.0 Y01929,246.0,286.0,306.0,313.0,312.0,336.0,339.0,371.0,377.0,375.0,355.0,378.0,353.0,381.0,394.0,345.0,371.0,333.0,319.0,286.0,279.0,280.0,270.0,280.0,285.0,307.0,344.0,366.0,384.0,396.0,432.0,480.0,394.0,450.0,447.0,404.0,484.0,467.0,444.0,420.0,443.0,401.0,394.0,350.0,401.0,392.0,354.0,294.0,304.0,295.0,333.0,316.0,312.0,362.0,312.0,299.0,299.0,305.0,279.0,312.0,321.0,267.0,255.0,249.0,261.0,225.0,246.0,217.0,195.0,187.0,186.0,175.0,161.0,164.0,154.0,155.0,163.0,155.0,141.0,99.0,102.0,88.0,85.0,90.0,65.0,61.0,72.0,59.0,47.0,48.0,30.0,29.0,16.0,14.0,18.0,36.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 P82001,43.0,53.0,46.0,46.0,43.0,56.0,56.0,73.0,65.0,69.0,68.0,75.0,73.0,73.0,62.0,83.0,80.0,65.0,77.0,64.0,80.0,48.0,36.0,57.0,46.0,49.0,53.0,62.0,50.0,53.0,58.0,66.0,66.0,69.0,89.0,81.0,72.0,69.0,95.0,66.0,71.0,62.0,76.0,77.0,75.0,70.0,56.0,50.0,53.0,57.0,62.0,53.0,63.0,71.0,67.0,57.0,66.0,68.0,70.0,76.0,81.0,53.0,66.0,77.0,69.0,57.0,62.0,40.0,53.0,51.0,49.0,48.0,46.0,48.0,47.0,52.0,50.0,53.0,72.0,42.0,37.0,33.0,40.0,31.0,29.0,40.0,30.0,13.0,14.0,19.0,16.0,14.0,12.0,13.0,4.0,5.0 P82002,20.0,37.0,26.0,36.0,30.0,34.0,36.0,45.0,46.0,44.0,46.0,40.0,55.0,44.0,67.0,51.0,57.0,47.0,47.0,49.0,43.0,39.0,41.0,39.0,33.0,38.0,40.0,47.0,35.0,33.0,36.0,29.0,41.0,50.0,43.0,44.0,62.0,52.0,33.0,52.0,55.0,59.0,45.0,59.0,49.0,44.0,49.0,41.0,35.0,51.0,49.0,40.0,55.0,46.0,46.0,44.0,41.0,50.0,37.0,48.0,42.0,54.0,39.0,31.0,38.0,27.0,48.0,37.0,30.0,28.0,26.0,22.0,28.0,19.0,27.0,43.0,30.0,29.0,24.0,19.0,23.0,18.0,22.0,18.0,16.0,29.0,16.0,12.0,18.0,13.0,7.0,8.0,8.0,3.0,2.0,5.0 P82003,47.0,53.0,76.0,59.0,72.0,63.0,75.0,75.0,90.0,96.0,95.0,92.0,93.0,90.0,95.0,88.0,98.0,85.0,79.0,79.0,67.0,61.0,68.0,59.0,69.0,75.0,91.0,58.0,83.0,75.0,104.0,97.0,93.0,113.0,116.0,115.0,103.0,124.0,113.0,114.0,111.0,122.0,116.0,118.0,100.0,107.0,90.0,95.0,85.0,84.0,91.0,89.0,90.0,117.0,117.0,112.0,104.0,108.0,126.0,101.0,105.0,118.0,94.0,92.0,98.0,81.0,82.0,88.0,87.0,71.0,70.0,87.0,59.0,78.0,76.0,71.0,86.0,83.0,71.0,56.0,60.0,54.0,48.0,45.0,30.0,30.0,25.0,22.0,24.0,16.0,6.0,7.0,8.0,6.0,4.0,15.0 P82004,57.0,63.0,63.0,63.0,68.0,70.0,68.0,56.0,66.0,79.0,78.0,68.0,85.0,72.0,83.0,91.0,75.0,89.0,78.0,61.0,47.0,64.0,72.0,68.0,61.0,63.0,68.0,82.0,70.0,61.0,63.0,64.0,74.0,74.0,69.0,83.0,78.0,84.0,64.0,67.0,78.0,76.0,94.0,69.0,66.0,67.0,70.0,57.0,51.0,46.0,63.0,50.0,46.0,54.0,51.0,51.0,37.0,54.0,53.0,53.0,35.0,49.0,40.0,61.0,52.0,42.0,39.0,35.0,41.0,26.0,35.0,26.0,30.0,29.0,27.0,19.0,25.0,23.0,22.0,21.0,20.0,21.0,17.0,15.0,20.0,20.0,12.0,12.0,11.0,8.0,10.0,5.0,3.0,3.0,5.0,12.0 P82005,21.0,36.0,32.0,28.0,33.0,44.0,25.0,41.0,38.0,59.0,40.0,31.0,37.0,45.0,44.0,25.0,46.0,33.0,30.0,33.0,31.0,38.0,31.0,30.0,31.0,43.0,49.0,38.0,40.0,51.0,39.0,43.0,44.0,46.0,52.0,59.0,58.0,45.0,55.0,56.0,41.0,54.0,36.0,47.0,47.0,47.0,44.0,43.0,29.0,39.0,44.0,40.0,36.0,40.0,52.0,72.0,51.0,54.0,52.0,52.0,47.0,49.0,48.0,52.0,56.0,45.0,49.0,52.0,50.0,40.0,40.0,40.0,40.0,34.0,33.0,48.0,29.0,40.0,41.0,32.0,42.0,36.0,23.0,19.0,19.0,19.0,7.0,22.0,14.0,3.0,6.0,8.0,11.0,4.0,4.0,6.0 P82006,42.0,48.0,48.0,55.0,58.0,51.0,58.0,59.0,42.0,43.0,64.0,54.0,53.0,56.0,64.0,52.0,57.0,51.0,53.0,49.0,51.0,48.0,48.0,52.0,55.0,57.0,61.0,74.0,74.0,80.0,73.0,70.0,71.0,83.0,91.0,91.0,68.0,66.0,76.0,68.0,69.0,77.0,62.0,72.0,66.0,63.0,58.0,70.0,62.0,71.0,72.0,45.0,73.0,82.0,66.0,71.0,78.0,83.0,80.0,81.0,71.0,79.0,75.0,57.0,51.0,60.0,59.0,51.0,56.0,44.0,47.0,47.0,42.0,39.0,44.0,47.0,45.0,61.0,61.0,42.0,40.0,24.0,47.0,27.0,18.0,25.0,16.0,15.0,13.0,15.0,12.0,6.0,6.0,7.0,7.0,13.0 P82007,47.0,48.0,77.0,57.0,66.0,72.0,74.0,76.0,85.0,89.0,79.0,80.0,92.0,84.0,88.0,72.0,68.0,60.0,71.0,70.0,67.0,69.0,52.0,75.0,71.0,81.0,91.0,79.0,90.0,85.0,90.0,77.0,84.0,110.0,107.0,95.0,102.0,110.0,99.0,105.0,69.0,107.0,77.0,93.0,95.0,75.0,76.0,81.0,71.0,91.0,69.0,90.0,96.0,88.0,106.0,97.0,86.0,100.0,93.0,101.0,99.0,94.0,87.0,82.0,78.0,96.0,70.0,67.0,65.0,69.0,61.0,61.0,53.0,54.0,56.0,66.0,60.0,56.0,87.0,44.0,53.0,58.0,45.0,33.0,35.0,23.0,27.0,27.0,21.0,15.0,15.0,20.0,12.0,5.0,2.0,17.0 P82008,83.0,81.0,66.0,84.0,75.0,101.0,105.0,111.0,82.0,110.0,105.0,113.0,118.0,118.0,127.0,110.0,103.0,109.0,117.0,82.0,92.0,91.0,78.0,102.0,92.0,89.0,91.0,87.0,110.0,122.0,107.0,93.0,99.0,111.0,125.0,114.0,119.0,145.0,119.0,85.0,126.0,102.0,99.0,97.0,121.0,110.0,84.0,90.0,80.0,81.0,81.0,87.0,108.0,104.0,102.0,80.0,78.0,103.0,91.0,86.0,81.0,84.0,74.0,80.0,57.0,78.0,69.0,76.0,49.0,49.0,57.0,57.0,65.0,58.0,52.0,68.0,38.0,52.0,59.0,34.0,29.0,31.0,26.0,22.0,25.0,19.0,29.0,11.0,15.0,12.0,12.0,16.0,9.0,11.0,3.0,15.0 P82009,27.0,50.0,37.0,55.0,47.0,51.0,51.0,54.0,48.0,45.0,55.0,57.0,53.0,47.0,54.0,59.0,44.0,49.0,42.0,43.0,39.0,40.0,41.0,38.0,39.0,38.0,51.0,48.0,49.0,51.0,54.0,56.0,31.0,57.0,62.0,48.0,54.0,67.0,60.0,61.0,41.0,58.0,54.0,56.0,50.0,47.0,45.0,46.0,43.0,29.0,32.0,36.0,46.0,41.0,42.0,33.0,41.0,38.0,41.0,48.0,46.0,47.0,45.0,45.0,48.0,36.0,52.0,34.0,46.0,34.0,28.0,29.0,39.0,35.0,26.0,34.0,33.0,27.0,55.0,30.0,30.0,21.0,29.0,27.0,13.0,20.0,21.0,19.0,13.0,18.0,11.0,5.0,6.0,7.0,1.0,5.0 P82010,52.0,54.0,61.0,65.0,59.0,55.0,49.0,61.0,53.0,62.0,48.0,61.0,62.0,55.0,49.0,60.0,69.0,49.0,52.0,46.0,40.0,51.0,36.0,45.0,44.0,49.0,49.0,63.0,54.0,60.0,54.0,84.0,68.0,55.0,66.0,67.0,72.0,62.0,65.0,56.0,52.0,37.0,57.0,50.0,45.0,59.0,46.0,48.0,43.0,36.0,26.0,42.0,42.0,42.0,48.0,43.0,43.0,37.0,55.0,51.0,39.0,25.0,52.0,40.0,32.0,27.0,30.0,32.0,40.0,26.0,33.0,26.0,25.0,33.0,20.0,34.0,33.0,32.0,32.0,26.0,18.0,24.0,16.0,15.0,8.0,10.0,19.0,17.0,7.0,4.0,12.0,8.0,2.0,3.0,4.0,8.0 P82011,28.0,32.0,29.0,35.0,33.0,35.0,52.0,37.0,38.0,40.0,48.0,31.0,44.0,38.0,42.0,39.0,38.0,43.0,35.0,21.0,39.0,44.0,26.0,33.0,40.0,33.0,39.0,39.0,60.0,37.0,52.0,40.0,45.0,57.0,54.0,49.0,49.0,50.0,44.0,54.0,33.0,52.0,42.0,47.0,35.0,36.0,39.0,42.0,35.0,29.0,24.0,47.0,42.0,30.0,50.0,53.0,53.0,44.0,44.0,33.0,50.0,49.0,59.0,55.0,55.0,45.0,37.0,48.0,32.0,30.0,39.0,28.0,34.0,35.0,35.0,40.0,35.0,40.0,31.0,21.0,29.0,25.0,28.0,16.0,16.0,10.0,23.0,14.0,10.0,8.0,9.0,9.0,2.0,6.0,,7.0 P82012,31.0,18.0,22.0,18.0,24.0,19.0,34.0,25.0,25.0,22.0,20.0,35.0,27.0,21.0,30.0,33.0,31.0,37.0,22.0,25.0,41.0,40.0,38.0,38.0,47.0,37.0,44.0,52.0,77.0,46.0,64.0,57.0,51.0,55.0,38.0,41.0,35.0,44.0,37.0,37.0,35.0,30.0,33.0,38.0,38.0,25.0,32.0,36.0,42.0,29.0,31.0,20.0,40.0,40.0,48.0,26.0,34.0,35.0,33.0,38.0,46.0,37.0,42.0,25.0,22.0,29.0,23.0,29.0,25.0,16.0,26.0,19.0,28.0,18.0,23.0,27.0,26.0,28.0,34.0,19.0,24.0,18.0,12.0,13.0,11.0,10.0,13.0,10.0,6.0,9.0,10.0,1.0,3.0,2.0,,2.0 P82013,26.0,20.0,18.0,27.0,21.0,24.0,28.0,28.0,30.0,28.0,39.0,30.0,27.0,24.0,31.0,42.0,20.0,21.0,23.0,27.0,31.0,29.0,25.0,29.0,29.0,31.0,18.0,28.0,25.0,27.0,28.0,20.0,24.0,27.0,32.0,25.0,21.0,26.0,33.0,19.0,24.0,31.0,20.0,23.0,20.0,20.0,23.0,22.0,21.0,21.0,22.0,19.0,23.0,18.0,22.0,23.0,17.0,20.0,18.0,12.0,16.0,14.0,19.0,19.0,19.0,14.0,20.0,21.0,14.0,20.0,17.0,17.0,12.0,17.0,8.0,18.0,10.0,7.0,11.0,7.0,6.0,7.0,7.0,3.0,5.0,4.0,4.0,3.0,5.0,3.0,6.0,3.0,1.0,1.0,,1.0 P82014,27.0,13.0,30.0,21.0,34.0,25.0,29.0,39.0,29.0,27.0,37.0,37.0,26.0,52.0,21.0,41.0,41.0,31.0,38.0,45.0,38.0,25.0,24.0,31.0,28.0,24.0,24.0,36.0,33.0,31.0,44.0,40.0,36.0,30.0,33.0,36.0,52.0,35.0,53.0,51.0,50.0,35.0,35.0,28.0,37.0,29.0,34.0,38.0,32.0,31.0,39.0,40.0,39.0,41.0,51.0,35.0,55.0,35.0,57.0,37.0,47.0,47.0,44.0,48.0,49.0,32.0,48.0,31.0,42.0,32.0,37.0,34.0,32.0,36.0,45.0,28.0,27.0,44.0,52.0,35.0,41.0,40.0,21.0,32.0,22.0,24.0,21.0,10.0,10.0,11.0,11.0,13.0,8.0,7.0,1.0,11.0 P82015,75.0,90.0,82.0,103.0,103.0,96.0,114.0,119.0,102.0,109.0,106.0,124.0,123.0,118.0,107.0,113.0,116.0,97.0,108.0,83.0,88.0,72.0,97.0,86.0,94.0,110.0,103.0,109.0,106.0,105.0,131.0,119.0,135.0,140.0,127.0,145.0,159.0,132.0,137.0,137.0,125.0,143.0,141.0,123.0,136.0,115.0,114.0,128.0,110.0,132.0,111.0,156.0,146.0,153.0,140.0,160.0,150.0,158.0,143.0,171.0,153.0,152.0,153.0,140.0,105.0,124.0,145.0,128.0,115.0,108.0,132.0,128.0,112.0,112.0,107.0,119.0,111.0,135.0,126.0,91.0,86.0,69.0,68.0,58.0,67.0,56.0,36.0,36.0,28.0,32.0,24.0,17.0,17.0,10.0,11.0,23.0 P82016,44.0,40.0,72.0,56.0,67.0,54.0,65.0,58.0,62.0,63.0,63.0,66.0,81.0,65.0,70.0,63.0,70.0,67.0,77.0,55.0,56.0,63.0,42.0,60.0,59.0,49.0,64.0,76.0,57.0,83.0,44.0,65.0,74.0,65.0,62.0,87.0,78.0,101.0,69.0,71.0,70.0,83.0,82.0,66.0,71.0,87.0,52.0,66.0,70.0,74.0,59.0,67.0,65.0,74.0,96.0,80.0,74.0,70.0,70.0,85.0,80.0,73.0,91.0,85.0,88.0,70.0,79.0,60.0,69.0,57.0,65.0,81.0,74.0,64.0,66.0,59.0,76.0,80.0,87.0,67.0,59.0,45.0,51.0,45.0,39.0,36.0,43.0,42.0,29.0,30.0,29.0,11.0,15.0,7.0,13.0,10.0 P82018,36.0,37.0,38.0,41.0,44.0,43.0,50.0,49.0,58.0,52.0,64.0,72.0,56.0,60.0,49.0,63.0,59.0,48.0,56.0,50.0,44.0,45.0,41.0,48.0,53.0,34.0,51.0,46.0,53.0,49.0,48.0,59.0,60.0,58.0,55.0,58.0,60.0,60.0,69.0,58.0,58.0,62.0,57.0,49.0,60.0,44.0,38.0,37.0,40.0,40.0,42.0,44.0,55.0,45.0,43.0,42.0,40.0,39.0,40.0,49.0,49.0,49.0,40.0,37.0,28.0,36.0,27.0,24.0,37.0,34.0,28.0,30.0,22.0,32.0,30.0,34.0,15.0,27.0,20.0,22.0,13.0,14.0,9.0,12.0,13.0,8.0,13.0,10.0,3.0,7.0,4.0,,2.0,2.0,3.0,2.0 P82020,31.0,34.0,41.0,17.0,39.0,40.0,29.0,34.0,23.0,31.0,36.0,33.0,29.0,31.0,32.0,24.0,34.0,29.0,21.0,26.0,28.0,31.0,33.0,30.0,33.0,45.0,36.0,32.0,40.0,24.0,31.0,39.0,29.0,34.0,40.0,32.0,27.0,36.0,44.0,21.0,33.0,22.0,30.0,22.0,31.0,29.0,27.0,34.0,23.0,29.0,21.0,27.0,38.0,22.0,26.0,27.0,20.0,23.0,14.0,18.0,23.0,17.0,21.0,12.0,21.0,18.0,15.0,25.0,24.0,20.0,26.0,15.0,14.0,16.0,13.0,24.0,27.0,29.0,22.0,15.0,9.0,13.0,9.0,8.0,12.0,12.0,4.0,8.0,7.0,4.0,5.0,1.0,,2.0,2.0,3.0 P82021,21.0,26.0,25.0,33.0,33.0,39.0,44.0,49.0,46.0,51.0,55.0,47.0,56.0,61.0,45.0,65.0,40.0,42.0,32.0,40.0,31.0,42.0,44.0,35.0,28.0,35.0,38.0,36.0,38.0,36.0,55.0,42.0,36.0,41.0,54.0,43.0,50.0,56.0,40.0,53.0,48.0,52.0,49.0,55.0,42.0,53.0,42.0,35.0,38.0,49.0,50.0,44.0,50.0,54.0,53.0,48.0,45.0,45.0,41.0,58.0,35.0,42.0,47.0,46.0,33.0,38.0,32.0,24.0,45.0,34.0,37.0,37.0,34.0,35.0,37.0,27.0,35.0,42.0,43.0,28.0,30.0,25.0,21.0,26.0,23.0,17.0,17.0,12.0,13.0,12.0,6.0,7.0,5.0,5.0,4.0,11.0 P82022,47.0,33.0,37.0,24.0,42.0,40.0,34.0,35.0,29.0,32.0,38.0,51.0,36.0,35.0,39.0,37.0,45.0,46.0,35.0,36.0,34.0,42.0,45.0,43.0,40.0,36.0,51.0,51.0,35.0,40.0,28.0,37.0,33.0,32.0,35.0,36.0,33.0,46.0,57.0,41.0,37.0,43.0,36.0,38.0,38.0,37.0,38.0,37.0,35.0,31.0,37.0,21.0,34.0,39.0,15.0,25.0,31.0,27.0,27.0,19.0,20.0,22.0,22.0,17.0,33.0,27.0,24.0,20.0,19.0,18.0,18.0,21.0,13.0,20.0,13.0,18.0,13.0,22.0,14.0,11.0,14.0,11.0,15.0,4.0,4.0,3.0,7.0,8.0,6.0,2.0,2.0,3.0,2.0,1.0,1.0, P82023,40.0,31.0,33.0,41.0,46.0,38.0,42.0,55.0,41.0,49.0,38.0,44.0,51.0,48.0,40.0,46.0,39.0,42.0,40.0,34.0,34.0,19.0,39.0,43.0,45.0,46.0,56.0,52.0,56.0,42.0,56.0,37.0,49.0,63.0,53.0,56.0,71.0,57.0,57.0,50.0,45.0,53.0,43.0,42.0,49.0,44.0,51.0,50.0,42.0,50.0,56.0,55.0,60.0,59.0,60.0,69.0,59.0,64.0,57.0,79.0,91.0,87.0,74.0,73.0,50.0,68.0,59.0,54.0,52.0,44.0,55.0,48.0,55.0,45.0,39.0,63.0,58.0,63.0,59.0,45.0,37.0,41.0,39.0,25.0,33.0,26.0,26.0,16.0,21.0,15.0,10.0,15.0,4.0,9.0,10.0,13.0 P82025,17.0,16.0,28.0,27.0,27.0,31.0,24.0,27.0,30.0,24.0,36.0,24.0,32.0,42.0,44.0,35.0,32.0,23.0,33.0,28.0,25.0,18.0,29.0,29.0,22.0,26.0,27.0,18.0,22.0,26.0,24.0,18.0,21.0,26.0,29.0,32.0,26.0,34.0,39.0,37.0,41.0,31.0,34.0,32.0,41.0,31.0,21.0,23.0,35.0,22.0,34.0,22.0,29.0,32.0,35.0,26.0,34.0,22.0,29.0,34.0,22.0,19.0,29.0,30.0,22.0,21.0,27.0,11.0,28.0,16.0,26.0,23.0,26.0,15.0,20.0,14.0,22.0,22.0,19.0,12.0,17.0,18.0,17.0,10.0,5.0,11.0,8.0,9.0,6.0,3.0,5.0,3.0,2.0,1.0,1.0,3.0 P82029,18.0,17.0,19.0,36.0,23.0,24.0,23.0,19.0,36.0,19.0,21.0,27.0,28.0,30.0,25.0,28.0,22.0,30.0,28.0,19.0,20.0,18.0,21.0,26.0,12.0,17.0,29.0,34.0,20.0,28.0,19.0,32.0,25.0,25.0,27.0,26.0,23.0,28.0,23.0,19.0,23.0,27.0,27.0,17.0,21.0,30.0,23.0,20.0,21.0,18.0,19.0,26.0,24.0,18.0,20.0,18.0,27.0,18.0,26.0,30.0,18.0,17.0,22.0,19.0,21.0,13.0,17.0,10.0,14.0,14.0,13.0,13.0,11.0,7.0,9.0,12.0,11.0,9.0,15.0,10.0,9.0,10.0,6.0,6.0,6.0,4.0,5.0,7.0,7.0,4.0,1.0,4.0,3.0,2.0,1.0,3.0 P82030,16.0,26.0,19.0,27.0,22.0,19.0,30.0,27.0,21.0,35.0,41.0,30.0,34.0,34.0,40.0,33.0,29.0,22.0,21.0,28.0,25.0,28.0,20.0,30.0,23.0,16.0,36.0,27.0,32.0,30.0,28.0,23.0,34.0,26.0,24.0,26.0,32.0,35.0,31.0,35.0,25.0,35.0,26.0,32.0,21.0,28.0,29.0,17.0,18.0,22.0,24.0,11.0,14.0,18.0,14.0,11.0,12.0,14.0,11.0,14.0,16.0,10.0,12.0,11.0,11.0,13.0,13.0,13.0,8.0,5.0,10.0,6.0,9.0,9.0,5.0,11.0,8.0,6.0,7.0,8.0,13.0,10.0,7.0,6.0,4.0,7.0,7.0,2.0,6.0,3.0,5.0,4.0,2.0,1.0,4.0,8.0 P82031,42.0,35.0,40.0,56.0,61.0,56.0,70.0,65.0,60.0,75.0,55.0,64.0,62.0,76.0,75.0,74.0,62.0,84.0,67.0,58.0,42.0,54.0,47.0,55.0,59.0,61.0,56.0,42.0,46.0,46.0,56.0,60.0,64.0,62.0,78.0,55.0,75.0,76.0,71.0,65.0,79.0,74.0,64.0,81.0,72.0,78.0,69.0,71.0,74.0,61.0,74.0,84.0,92.0,81.0,87.0,61.0,80.0,91.0,85.0,87.0,86.0,72.0,76.0,69.0,64.0,62.0,60.0,63.0,55.0,61.0,51.0,40.0,42.0,50.0,46.0,47.0,61.0,64.0,52.0,21.0,43.0,44.0,30.0,42.0,25.0,33.0,24.0,34.0,18.0,17.0,9.0,6.0,7.0,13.0,9.0,23.0 P82033,9.0,9.0,16.0,11.0,9.0,6.0,12.0,6.0,8.0,9.0,11.0,9.0,15.0,8.0,9.0,13.0,9.0,7.0,8.0,2.0,10.0,3.0,5.0,12.0,7.0,15.0,14.0,16.0,18.0,16.0,20.0,11.0,13.0,11.0,17.0,11.0,15.0,16.0,13.0,10.0,9.0,7.0,12.0,10.0,10.0,7.0,7.0,5.0,9.0,10.0,7.0,10.0,10.0,6.0,9.0,6.0,16.0,11.0,10.0,8.0,7.0,10.0,11.0,10.0,12.0,4.0,5.0,9.0,6.0,5.0,8.0,8.0,3.0,3.0,3.0,11.0,10.0,3.0,6.0,4.0,5.0,9.0,6.0,6.0,5.0,3.0,6.0,5.0,4.0,1.0,3.0,1.0,1.0,1.0,1.0,4.0 P82034,16.0,17.0,17.0,14.0,17.0,16.0,25.0,24.0,15.0,21.0,21.0,22.0,9.0,25.0,15.0,14.0,23.0,22.0,15.0,15.0,14.0,13.0,15.0,14.0,10.0,17.0,23.0,15.0,21.0,15.0,23.0,25.0,17.0,27.0,31.0,21.0,20.0,36.0,26.0,31.0,19.0,37.0,20.0,29.0,23.0,17.0,27.0,20.0,25.0,26.0,19.0,17.0,34.0,33.0,37.0,33.0,34.0,36.0,35.0,33.0,27.0,32.0,33.0,29.0,37.0,28.0,27.0,26.0,27.0,12.0,16.0,16.0,27.0,15.0,21.0,28.0,23.0,26.0,33.0,13.0,20.0,20.0,16.0,13.0,6.0,13.0,14.0,11.0,5.0,2.0,1.0,6.0,4.0,7.0,4.0,8.0 P82036,6.0,11.0,14.0,17.0,14.0,8.0,8.0,6.0,19.0,16.0,15.0,10.0,14.0,12.0,12.0,21.0,21.0,12.0,20.0,16.0,18.0,20.0,11.0,17.0,9.0,24.0,18.0,18.0,20.0,17.0,19.0,15.0,11.0,10.0,19.0,11.0,13.0,19.0,7.0,12.0,21.0,20.0,16.0,19.0,14.0,21.0,27.0,21.0,16.0,16.0,19.0,21.0,21.0,22.0,25.0,21.0,16.0,17.0,24.0,11.0,26.0,14.0,20.0,14.0,10.0,19.0,17.0,18.0,17.0,13.0,15.0,19.0,20.0,26.0,22.0,20.0,20.0,25.0,28.0,27.0,15.0,12.0,8.0,6.0,3.0,6.0,6.0,2.0,3.0,1.0,1.0,3.0,,,1.0,2.0 P82037,15.0,19.0,19.0,14.0,26.0,28.0,19.0,24.0,26.0,23.0,27.0,38.0,28.0,27.0,25.0,36.0,34.0,36.0,35.0,30.0,27.0,23.0,21.0,32.0,18.0,26.0,31.0,34.0,34.0,19.0,28.0,28.0,37.0,33.0,31.0,33.0,38.0,36.0,37.0,31.0,37.0,23.0,26.0,30.0,29.0,40.0,28.0,24.0,25.0,24.0,24.0,28.0,24.0,34.0,38.0,33.0,49.0,34.0,25.0,24.0,38.0,23.0,31.0,39.0,28.0,22.0,12.0,16.0,27.0,23.0,24.0,19.0,17.0,14.0,13.0,20.0,14.0,25.0,20.0,6.0,10.0,14.0,6.0,6.0,8.0,12.0,7.0,3.0,5.0,3.0,3.0,,5.0,1.0,4.0,2.0 P82607,37.0,26.0,34.0,23.0,40.0,38.0,27.0,42.0,38.0,35.0,47.0,47.0,36.0,35.0,39.0,39.0,36.0,37.0,32.0,31.0,35.0,29.0,31.0,31.0,25.0,47.0,36.0,43.0,40.0,48.0,49.0,60.0,49.0,62.0,54.0,56.0,48.0,35.0,50.0,48.0,47.0,24.0,34.0,40.0,37.0,35.0,39.0,37.0,28.0,36.0,37.0,39.0,50.0,28.0,45.0,45.0,36.0,29.0,40.0,30.0,35.0,24.0,35.0,34.0,22.0,26.0,22.0,24.0,24.0,21.0,22.0,39.0,30.0,18.0,25.0,32.0,27.0,36.0,39.0,15.0,20.0,16.0,17.0,5.0,8.0,10.0,6.0,14.0,10.0,12.0,9.0,5.0,4.0,2.0,3.0,5.0 P82609,42.0,44.0,46.0,49.0,50.0,50.0,46.0,50.0,75.0,63.0,65.0,55.0,52.0,70.0,52.0,54.0,59.0,56.0,35.0,57.0,49.0,43.0,42.0,53.0,42.0,49.0,49.0,45.0,53.0,50.0,44.0,51.0,55.0,61.0,58.0,53.0,49.0,60.0,54.0,59.0,41.0,45.0,42.0,41.0,38.0,41.0,50.0,37.0,30.0,21.0,33.0,23.0,37.0,25.0,31.0,26.0,22.0,26.0,22.0,22.0,20.0,21.0,21.0,16.0,10.0,19.0,17.0,12.0,12.0,14.0,13.0,16.0,6.0,9.0,11.0,13.0,8.0,9.0,7.0,6.0,5.0,2.0,4.0,2.0,2.0,1.0,2.0,3.0,1.0,2.0,2.0,2.0,3.0,,,2.0 P82613,17.0,28.0,23.0,17.0,28.0,24.0,31.0,28.0,29.0,35.0,31.0,31.0,39.0,18.0,29.0,37.0,29.0,39.0,28.0,29.0,29.0,17.0,21.0,14.0,29.0,23.0,26.0,26.0,25.0,38.0,34.0,38.0,36.0,55.0,34.0,30.0,39.0,31.0,31.0,32.0,40.0,36.0,42.0,22.0,38.0,26.0,35.0,32.0,23.0,21.0,31.0,32.0,42.0,42.0,32.0,33.0,39.0,44.0,41.0,27.0,28.0,41.0,26.0,27.0,19.0,23.0,26.0,26.0,34.0,31.0,33.0,30.0,33.0,15.0,33.0,17.0,26.0,30.0,34.0,28.0,32.0,14.0,28.0,6.0,11.0,8.0,4.0,11.0,8.0,5.0,3.0,3.0,3.0,1.0,1.0,5.0 P82616,34.0,30.0,38.0,30.0,28.0,37.0,35.0,37.0,29.0,38.0,34.0,45.0,40.0,38.0,41.0,39.0,40.0,30.0,36.0,29.0,30.0,34.0,20.0,25.0,16.0,22.0,28.0,25.0,27.0,32.0,25.0,29.0,32.0,26.0,27.0,31.0,33.0,34.0,26.0,30.0,34.0,23.0,32.0,34.0,33.0,25.0,22.0,20.0,23.0,24.0,17.0,14.0,14.0,11.0,16.0,15.0,10.0,15.0,10.0,10.0,8.0,9.0,8.0,9.0,5.0,9.0,9.0,10.0,12.0,13.0,10.0,1.0,3.0,12.0,5.0,13.0,5.0,7.0,7.0,4.0,4.0,2.0,,2.0,1.0,2.0,1.0,4.0,1.0,2.0,2.0,,,,,2.0 P82624,23.0,19.0,13.0,26.0,25.0,26.0,34.0,23.0,30.0,30.0,25.0,21.0,32.0,31.0,28.0,26.0,27.0,23.0,24.0,23.0,21.0,24.0,20.0,21.0,20.0,22.0,17.0,26.0,33.0,26.0,19.0,27.0,27.0,27.0,23.0,28.0,24.0,24.0,25.0,17.0,25.0,28.0,25.0,21.0,21.0,22.0,21.0,18.0,24.0,19.0,21.0,23.0,15.0,18.0,17.0,19.0,20.0,21.0,20.0,16.0,18.0,10.0,13.0,19.0,15.0,12.0,9.0,11.0,8.0,8.0,6.0,8.0,3.0,8.0,3.0,5.0,5.0,6.0,11.0,10.0,5.0,4.0,9.0,7.0,7.0,5.0,2.0,1.0,3.0,4.0,4.0,3.0,2.0,,1.0,1.0 P82625,18.0,19.0,23.0,17.0,19.0,22.0,20.0,19.0,28.0,17.0,18.0,23.0,14.0,26.0,20.0,22.0,28.0,15.0,26.0,9.0,22.0,10.0,19.0,19.0,17.0,20.0,16.0,12.0,16.0,21.0,22.0,10.0,24.0,15.0,16.0,17.0,16.0,19.0,24.0,26.0,10.0,15.0,15.0,15.0,18.0,11.0,12.0,12.0,10.0,12.0,19.0,11.0,11.0,13.0,2.0,16.0,6.0,11.0,12.0,8.0,6.0,7.0,11.0,8.0,6.0,5.0,4.0,5.0,8.0,3.0,8.0,8.0,6.0,7.0,6.0,9.0,4.0,3.0,,2.0,2.0,1.0,3.0,2.0,1.0,,1.0,2.0,3.0,1.0,,,,,2.0, P82626,34.0,28.0,27.0,35.0,47.0,35.0,35.0,33.0,26.0,41.0,32.0,30.0,50.0,42.0,48.0,35.0,42.0,47.0,32.0,44.0,35.0,28.0,36.0,39.0,49.0,36.0,33.0,33.0,46.0,32.0,32.0,32.0,39.0,31.0,38.0,27.0,38.0,52.0,34.0,48.0,47.0,43.0,33.0,32.0,43.0,28.0,24.0,22.0,26.0,32.0,22.0,23.0,18.0,29.0,38.0,34.0,29.0,22.0,19.0,28.0,24.0,28.0,15.0,24.0,29.0,25.0,15.0,17.0,16.0,19.0,28.0,15.0,14.0,15.0,9.0,6.0,11.0,12.0,8.0,13.0,13.0,12.0,3.0,5.0,7.0,4.0,5.0,8.0,5.0,3.0,7.0,3.0,2.0,1.0,1.0,4.0 P82627,25.0,15.0,21.0,21.0,24.0,28.0,30.0,30.0,25.0,35.0,28.0,30.0,20.0,35.0,24.0,22.0,19.0,11.0,20.0,22.0,15.0,15.0,17.0,22.0,21.0,14.0,20.0,22.0,27.0,28.0,27.0,35.0,30.0,25.0,28.0,31.0,35.0,30.0,39.0,44.0,27.0,39.0,37.0,22.0,37.0,29.0,28.0,27.0,10.0,24.0,23.0,20.0,15.0,25.0,15.0,26.0,29.0,34.0,26.0,31.0,35.0,35.0,32.0,33.0,16.0,30.0,27.0,29.0,29.0,17.0,16.0,23.0,21.0,14.0,13.0,13.0,8.0,19.0,13.0,6.0,7.0,8.0,10.0,3.0,3.0,6.0,4.0,1.0,1.0,1.0,5.0,1.0,1.0,3.0,1.0,2.0 P82629,10.0,14.0,14.0,9.0,11.0,14.0,12.0,14.0,17.0,11.0,7.0,18.0,17.0,14.0,12.0,14.0,15.0,20.0,11.0,15.0,15.0,9.0,15.0,17.0,18.0,13.0,17.0,13.0,21.0,17.0,13.0,8.0,14.0,11.0,15.0,11.0,11.0,11.0,13.0,11.0,16.0,10.0,16.0,13.0,11.0,13.0,14.0,9.0,18.0,9.0,7.0,11.0,13.0,16.0,16.0,13.0,16.0,17.0,12.0,13.0,14.0,9.0,12.0,7.0,9.0,12.0,11.0,6.0,11.0,6.0,4.0,6.0,8.0,2.0,5.0,3.0,3.0,8.0,4.0,2.0,6.0,3.0,3.0,2.0,4.0,4.0,3.0,4.0,1.0,2.0,,1.0,1.0,,, P82633,20.0,13.0,11.0,19.0,24.0,23.0,15.0,20.0,18.0,18.0,19.0,19.0,19.0,24.0,17.0,14.0,27.0,17.0,23.0,8.0,24.0,15.0,13.0,10.0,14.0,21.0,14.0,14.0,26.0,16.0,26.0,23.0,14.0,23.0,27.0,13.0,17.0,19.0,16.0,21.0,11.0,23.0,18.0,25.0,26.0,19.0,7.0,9.0,10.0,15.0,12.0,11.0,12.0,12.0,12.0,13.0,8.0,12.0,15.0,11.0,14.0,12.0,11.0,8.0,10.0,17.0,18.0,6.0,10.0,4.0,5.0,12.0,10.0,7.0,5.0,8.0,4.0,7.0,3.0,5.0,3.0,8.0,,8.0,7.0,1.0,3.0,,3.0,1.0,2.0,1.0,1.0,3.0,1.0,5.0 P82634,22.0,33.0,26.0,28.0,24.0,31.0,25.0,28.0,35.0,23.0,35.0,31.0,28.0,26.0,35.0,33.0,27.0,36.0,31.0,29.0,23.0,29.0,27.0,27.0,29.0,29.0,32.0,30.0,18.0,26.0,28.0,26.0,26.0,29.0,26.0,24.0,28.0,28.0,28.0,27.0,31.0,46.0,20.0,26.0,23.0,37.0,21.0,26.0,22.0,24.0,19.0,18.0,22.0,20.0,20.0,20.0,21.0,25.0,23.0,25.0,26.0,23.0,13.0,14.0,20.0,25.0,13.0,13.0,14.0,15.0,14.0,14.0,7.0,16.0,10.0,18.0,14.0,13.0,15.0,10.0,10.0,9.0,8.0,10.0,7.0,9.0,7.0,3.0,5.0,1.0,3.0,3.0,,2.0,1.0,2.0 P82640,24.0,32.0,28.0,36.0,33.0,31.0,42.0,34.0,45.0,40.0,52.0,46.0,39.0,42.0,52.0,48.0,36.0,51.0,40.0,35.0,43.0,42.0,35.0,44.0,35.0,32.0,31.0,42.0,34.0,46.0,29.0,35.0,43.0,23.0,35.0,32.0,35.0,46.0,38.0,39.0,44.0,48.0,41.0,34.0,33.0,25.0,30.0,33.0,31.0,22.0,31.0,26.0,28.0,23.0,23.0,23.0,17.0,23.0,20.0,11.0,22.0,19.0,12.0,19.0,9.0,16.0,23.0,21.0,12.0,15.0,10.0,20.0,12.0,11.0,3.0,9.0,4.0,7.0,5.0,6.0,1.0,2.0,6.0,2.0,7.0,2.0,3.0,3.0,2.0,1.0,2.0,1.0,2.0,1.0,1.0, P82643,33.0,40.0,30.0,28.0,35.0,37.0,48.0,43.0,47.0,48.0,54.0,38.0,51.0,48.0,58.0,49.0,57.0,47.0,35.0,43.0,33.0,21.0,43.0,29.0,36.0,31.0,40.0,46.0,53.0,41.0,45.0,45.0,43.0,54.0,50.0,44.0,44.0,63.0,55.0,46.0,61.0,61.0,55.0,43.0,43.0,52.0,43.0,58.0,51.0,50.0,53.0,47.0,50.0,51.0,80.0,52.0,63.0,47.0,73.0,59.0,62.0,49.0,49.0,61.0,53.0,33.0,45.0,43.0,41.0,34.0,37.0,31.0,40.0,27.0,37.0,40.0,24.0,41.0,40.0,31.0,33.0,28.0,27.0,19.0,13.0,17.0,11.0,12.0,7.0,9.0,8.0,4.0,6.0,5.0,3.0,4.0 P82652,27.0,28.0,30.0,39.0,30.0,33.0,27.0,37.0,40.0,25.0,28.0,22.0,29.0,25.0,24.0,39.0,24.0,31.0,34.0,18.0,33.0,19.0,26.0,12.0,17.0,30.0,31.0,23.0,30.0,32.0,40.0,29.0,49.0,36.0,51.0,41.0,41.0,48.0,28.0,25.0,22.0,31.0,27.0,27.0,21.0,20.0,23.0,20.0,26.0,29.0,27.0,18.0,26.0,20.0,23.0,24.0,21.0,29.0,32.0,30.0,21.0,23.0,20.0,21.0,22.0,26.0,14.0,13.0,20.0,12.0,13.0,21.0,7.0,19.0,10.0,12.0,11.0,15.0,16.0,12.0,10.0,12.0,11.0,13.0,4.0,5.0,7.0,4.0,,3.0,5.0,1.0,1.0,3.0,1.0,2.0 P82660,22.0,24.0,26.0,19.0,23.0,16.0,31.0,29.0,32.0,44.0,38.0,33.0,34.0,34.0,35.0,26.0,18.0,30.0,39.0,25.0,22.0,15.0,19.0,32.0,25.0,24.0,32.0,14.0,20.0,25.0,20.0,25.0,24.0,24.0,23.0,32.0,26.0,25.0,28.0,31.0,22.0,31.0,29.0,34.0,31.0,18.0,23.0,17.0,14.0,25.0,29.0,15.0,23.0,21.0,17.0,18.0,20.0,15.0,10.0,15.0,16.0,15.0,9.0,15.0,11.0,12.0,10.0,6.0,11.0,9.0,12.0,16.0,15.0,8.0,11.0,8.0,7.0,6.0,5.0,5.0,3.0,3.0,7.0,1.0,1.0,4.0,2.0,3.0,1.0,,1.0,1.0,1.0,,2.0,1.0 P83001,78.0,69.0,81.0,89.0,93.0,79.0,81.0,82.0,95.0,88.0,67.0,81.0,78.0,77.0,89.0,78.0,72.0,71.0,71.0,63.0,50.0,61.0,65.0,65.0,80.0,73.0,99.0,87.0,80.0,101.0,106.0,122.0,148.0,129.0,126.0,142.0,150.0,147.0,143.0,138.0,141.0,122.0,133.0,130.0,121.0,108.0,97.0,90.0,84.0,83.0,81.0,74.0,69.0,87.0,85.0,90.0,85.0,86.0,59.0,91.0,75.0,73.0,86.0,77.0,67.0,70.0,60.0,68.0,57.0,64.0,57.0,53.0,78.0,59.0,54.0,41.0,61.0,56.0,46.0,36.0,49.0,37.0,43.0,20.0,33.0,21.0,23.0,20.0,16.0,21.0,12.0,11.0,17.0,14.0,8.0,18.0 P83004,35.0,32.0,35.0,33.0,36.0,33.0,44.0,50.0,56.0,41.0,56.0,49.0,46.0,61.0,51.0,59.0,49.0,51.0,48.0,43.0,37.0,32.0,31.0,36.0,41.0,40.0,41.0,46.0,46.0,68.0,54.0,60.0,53.0,48.0,64.0,55.0,66.0,65.0,73.0,47.0,58.0,67.0,65.0,70.0,56.0,50.0,69.0,59.0,45.0,51.0,49.0,53.0,56.0,50.0,53.0,64.0,50.0,38.0,60.0,52.0,47.0,40.0,36.0,44.0,42.0,47.0,43.0,26.0,25.0,37.0,28.0,27.0,19.0,19.0,21.0,27.0,34.0,28.0,25.0,20.0,26.0,24.0,22.0,24.0,22.0,17.0,8.0,16.0,7.0,20.0,12.0,9.0,3.0,5.0,3.0,10.0 P83005,18.0,21.0,25.0,18.0,18.0,18.0,16.0,26.0,13.0,15.0,24.0,19.0,27.0,29.0,25.0,19.0,27.0,26.0,22.0,17.0,16.0,18.0,14.0,27.0,28.0,34.0,28.0,25.0,27.0,24.0,36.0,35.0,34.0,30.0,25.0,30.0,27.0,30.0,29.0,39.0,24.0,30.0,25.0,23.0,32.0,29.0,29.0,16.0,28.0,28.0,21.0,24.0,25.0,34.0,33.0,28.0,32.0,28.0,27.0,38.0,24.0,34.0,26.0,40.0,28.0,22.0,32.0,38.0,31.0,24.0,22.0,32.0,30.0,16.0,20.0,23.0,25.0,33.0,22.0,28.0,23.0,23.0,26.0,16.0,22.0,14.0,15.0,11.0,11.0,9.0,7.0,9.0,7.0,8.0,3.0,10.0 P83006,29.0,37.0,34.0,38.0,28.0,32.0,46.0,46.0,39.0,48.0,45.0,50.0,54.0,58.0,45.0,47.0,44.0,62.0,42.0,34.0,39.0,32.0,38.0,28.0,32.0,35.0,37.0,33.0,50.0,38.0,57.0,55.0,48.0,59.0,52.0,46.0,56.0,53.0,46.0,61.0,67.0,65.0,53.0,67.0,39.0,59.0,78.0,51.0,52.0,61.0,65.0,71.0,69.0,63.0,74.0,74.0,55.0,72.0,60.0,53.0,49.0,49.0,64.0,58.0,54.0,44.0,38.0,38.0,34.0,31.0,40.0,44.0,50.0,33.0,35.0,30.0,36.0,46.0,40.0,30.0,37.0,26.0,29.0,16.0,18.0,26.0,14.0,9.0,20.0,15.0,15.0,10.0,11.0,3.0,4.0,8.0 P83007,54.0,61.0,65.0,80.0,67.0,70.0,72.0,66.0,69.0,72.0,74.0,63.0,69.0,63.0,78.0,67.0,69.0,57.0,66.0,48.0,47.0,51.0,45.0,57.0,64.0,65.0,75.0,101.0,96.0,102.0,93.0,108.0,103.0,107.0,114.0,93.0,83.0,106.0,96.0,89.0,92.0,59.0,82.0,67.0,83.0,59.0,56.0,63.0,56.0,57.0,72.0,51.0,73.0,63.0,61.0,62.0,72.0,63.0,61.0,72.0,76.0,71.0,57.0,59.0,57.0,45.0,38.0,50.0,44.0,35.0,40.0,38.0,32.0,43.0,33.0,41.0,36.0,55.0,56.0,31.0,32.0,24.0,25.0,22.0,22.0,14.0,12.0,11.0,9.0,12.0,6.0,3.0,4.0,5.0,2.0,1.0 P83009,28.0,33.0,21.0,27.0,31.0,35.0,25.0,27.0,43.0,29.0,43.0,47.0,33.0,43.0,51.0,55.0,36.0,36.0,40.0,43.0,38.0,35.0,29.0,40.0,22.0,28.0,31.0,41.0,37.0,40.0,40.0,35.0,34.0,64.0,38.0,56.0,40.0,50.0,43.0,50.0,55.0,47.0,40.0,75.0,54.0,49.0,48.0,49.0,47.0,41.0,44.0,63.0,46.0,47.0,48.0,43.0,61.0,57.0,47.0,53.0,43.0,67.0,55.0,69.0,52.0,54.0,54.0,45.0,43.0,51.0,53.0,43.0,48.0,57.0,39.0,57.0,59.0,44.0,54.0,36.0,48.0,46.0,31.0,19.0,24.0,28.0,26.0,26.0,15.0,12.0,9.0,12.0,10.0,6.0,4.0,5.0 P83010,13.0,12.0,19.0,19.0,21.0,17.0,12.0,24.0,15.0,16.0,20.0,20.0,25.0,16.0,29.0,25.0,31.0,27.0,18.0,18.0,18.0,19.0,22.0,19.0,23.0,23.0,22.0,27.0,24.0,19.0,19.0,28.0,26.0,23.0,20.0,28.0,33.0,19.0,26.0,29.0,35.0,23.0,27.0,29.0,28.0,25.0,19.0,17.0,14.0,13.0,17.0,22.0,18.0,24.0,23.0,24.0,32.0,20.0,22.0,15.0,33.0,29.0,30.0,25.0,22.0,20.0,22.0,24.0,24.0,21.0,14.0,19.0,15.0,11.0,7.0,14.0,9.0,10.0,17.0,6.0,10.0,15.0,7.0,1.0,7.0,5.0,5.0,3.0,6.0,2.0,2.0,5.0,1.0,,1.0,1.0 P83011,26.0,30.0,24.0,37.0,32.0,40.0,39.0,45.0,44.0,52.0,39.0,38.0,56.0,34.0,49.0,49.0,50.0,42.0,53.0,38.0,38.0,43.0,33.0,29.0,38.0,42.0,35.0,39.0,36.0,34.0,38.0,41.0,56.0,40.0,56.0,42.0,48.0,54.0,48.0,50.0,52.0,44.0,54.0,41.0,52.0,33.0,44.0,40.0,42.0,35.0,39.0,36.0,54.0,41.0,47.0,49.0,54.0,40.0,51.0,61.0,48.0,56.0,53.0,55.0,42.0,50.0,54.0,48.0,31.0,39.0,35.0,42.0,32.0,28.0,34.0,34.0,38.0,47.0,55.0,24.0,40.0,39.0,28.0,30.0,14.0,26.0,19.0,13.0,16.0,16.0,13.0,12.0,6.0,3.0,4.0,11.0 P83012,184.0,204.0,196.0,220.0,247.0,205.0,251.0,294.0,239.0,283.0,288.0,305.0,302.0,333.0,291.0,301.0,310.0,328.0,290.0,245.0,265.0,262.0,254.0,251.0,260.0,260.0,279.0,265.0,298.0,285.0,276.0,292.0,290.0,360.0,313.0,328.0,317.0,341.0,371.0,324.0,329.0,339.0,315.0,339.0,316.0,327.0,275.0,263.0,289.0,307.0,338.0,273.0,349.0,340.0,369.0,374.0,330.0,345.0,373.0,360.0,351.0,359.0,354.0,305.0,326.0,313.0,282.0,272.0,220.0,239.0,226.0,240.0,220.0,232.0,205.0,252.0,251.0,251.0,302.0,185.0,176.0,181.0,135.0,134.0,110.0,129.0,101.0,89.0,81.0,75.0,43.0,48.0,42.0,29.0,26.0,62.0 P83015,26.0,25.0,33.0,31.0,34.0,29.0,39.0,32.0,34.0,37.0,37.0,35.0,39.0,42.0,42.0,38.0,41.0,40.0,44.0,30.0,35.0,32.0,34.0,36.0,38.0,48.0,57.0,48.0,56.0,33.0,48.0,37.0,47.0,55.0,45.0,44.0,46.0,33.0,47.0,56.0,52.0,55.0,45.0,50.0,42.0,49.0,42.0,44.0,28.0,47.0,42.0,40.0,41.0,56.0,40.0,44.0,37.0,58.0,49.0,70.0,58.0,54.0,58.0,52.0,40.0,40.0,48.0,34.0,34.0,35.0,51.0,44.0,36.0,42.0,41.0,32.0,46.0,55.0,49.0,29.0,36.0,40.0,26.0,37.0,19.0,25.0,23.0,17.0,22.0,20.0,13.0,9.0,8.0,3.0,4.0,12.0 P83017,35.0,54.0,26.0,36.0,44.0,38.0,38.0,37.0,41.0,32.0,40.0,48.0,43.0,38.0,39.0,45.0,38.0,34.0,30.0,30.0,24.0,37.0,34.0,38.0,44.0,50.0,62.0,60.0,68.0,62.0,53.0,59.0,72.0,57.0,59.0,54.0,64.0,40.0,52.0,48.0,25.0,48.0,52.0,44.0,41.0,52.0,43.0,49.0,38.0,30.0,47.0,34.0,36.0,47.0,39.0,46.0,37.0,39.0,49.0,31.0,57.0,38.0,41.0,38.0,35.0,34.0,43.0,21.0,42.0,28.0,26.0,29.0,25.0,29.0,30.0,31.0,31.0,39.0,28.0,31.0,19.0,16.0,10.0,13.0,10.0,15.0,10.0,9.0,13.0,9.0,6.0,6.0,2.0,4.0,4.0,12.0 P83021,40.0,68.0,46.0,48.0,60.0,54.0,57.0,54.0,65.0,72.0,61.0,67.0,65.0,66.0,61.0,62.0,72.0,72.0,65.0,64.0,45.0,52.0,59.0,53.0,58.0,67.0,71.0,67.0,83.0,73.0,60.0,65.0,86.0,67.0,75.0,73.0,63.0,67.0,78.0,75.0,68.0,66.0,71.0,87.0,64.0,69.0,57.0,53.0,51.0,63.0,60.0,45.0,54.0,69.0,69.0,53.0,53.0,77.0,56.0,60.0,75.0,67.0,48.0,63.0,53.0,54.0,48.0,40.0,54.0,49.0,34.0,58.0,44.0,37.0,34.0,22.0,39.0,34.0,53.0,18.0,20.0,23.0,19.0,26.0,20.0,12.0,17.0,14.0,12.0,10.0,7.0,4.0,4.0,1.0,6.0,11.0 P83024,25.0,28.0,26.0,25.0,20.0,17.0,31.0,25.0,15.0,26.0,27.0,26.0,23.0,28.0,30.0,32.0,33.0,28.0,24.0,21.0,28.0,33.0,40.0,43.0,20.0,43.0,31.0,33.0,33.0,33.0,37.0,34.0,28.0,25.0,36.0,28.0,20.0,29.0,28.0,34.0,36.0,27.0,34.0,28.0,30.0,24.0,34.0,24.0,20.0,24.0,20.0,36.0,25.0,27.0,20.0,25.0,23.0,21.0,17.0,35.0,17.0,25.0,28.0,20.0,23.0,23.0,21.0,15.0,21.0,21.0,18.0,17.0,22.0,15.0,18.0,14.0,20.0,24.0,18.0,10.0,19.0,11.0,9.0,6.0,11.0,4.0,8.0,4.0,1.0,6.0,6.0,3.0,3.0,6.0,2.0,4.0 P83025,60.0,72.0,72.0,89.0,74.0,84.0,94.0,80.0,84.0,81.0,101.0,76.0,90.0,91.0,100.0,84.0,79.0,57.0,58.0,55.0,62.0,64.0,57.0,69.0,42.0,56.0,58.0,58.0,48.0,57.0,59.0,64.0,63.0,71.0,67.0,63.0,73.0,63.0,52.0,38.0,54.0,37.0,38.0,37.0,43.0,51.0,51.0,40.0,35.0,26.0,48.0,43.0,33.0,38.0,44.0,40.0,46.0,40.0,40.0,36.0,26.0,37.0,40.0,31.0,44.0,35.0,35.0,24.0,32.0,35.0,26.0,30.0,39.0,23.0,28.0,26.0,28.0,23.0,22.0,15.0,19.0,20.0,18.0,10.0,20.0,14.0,7.0,6.0,6.0,10.0,4.0,12.0,3.0,2.0,2.0,7.0 P83027,9.0,7.0,8.0,10.0,7.0,12.0,7.0,5.0,5.0,8.0,6.0,10.0,8.0,6.0,10.0,10.0,6.0,7.0,9.0,11.0,9.0,8.0,5.0,9.0,7.0,14.0,9.0,9.0,7.0,12.0,7.0,11.0,11.0,8.0,15.0,17.0,16.0,11.0,16.0,14.0,8.0,15.0,8.0,17.0,12.0,9.0,12.0,4.0,8.0,12.0,8.0,11.0,9.0,9.0,5.0,9.0,10.0,20.0,11.0,10.0,17.0,17.0,11.0,16.0,14.0,7.0,13.0,16.0,8.0,11.0,6.0,8.0,14.0,11.0,12.0,8.0,4.0,5.0,11.0,8.0,8.0,9.0,2.0,5.0,3.0,6.0,3.0,5.0,1.0,2.0,,1.0,,1.0,1.0,10.0 P83603,31.0,40.0,33.0,44.0,33.0,37.0,34.0,44.0,54.0,56.0,41.0,43.0,59.0,66.0,52.0,46.0,43.0,56.0,52.0,52.0,59.0,49.0,52.0,44.0,62.0,38.0,44.0,43.0,37.0,48.0,48.0,63.0,55.0,44.0,57.0,50.0,55.0,74.0,56.0,52.0,62.0,65.0,55.0,70.0,53.0,57.0,62.0,55.0,60.0,56.0,58.0,50.0,60.0,73.0,64.0,82.0,70.0,63.0,72.0,71.0,55.0,53.0,69.0,62.0,61.0,49.0,50.0,49.0,52.0,50.0,46.0,57.0,47.0,42.0,60.0,55.0,64.0,62.0,62.0,59.0,48.0,49.0,44.0,30.0,24.0,22.0,26.0,29.0,16.0,20.0,12.0,20.0,7.0,12.0,5.0,17.0 P83605,34.0,37.0,42.0,36.0,51.0,37.0,33.0,49.0,45.0,52.0,49.0,39.0,45.0,48.0,66.0,53.0,50.0,42.0,49.0,42.0,39.0,41.0,28.0,40.0,39.0,49.0,51.0,32.0,48.0,55.0,62.0,67.0,56.0,63.0,59.0,59.0,63.0,63.0,54.0,80.0,62.0,41.0,50.0,57.0,57.0,60.0,55.0,44.0,45.0,34.0,43.0,47.0,49.0,54.0,34.0,40.0,46.0,36.0,65.0,38.0,49.0,57.0,37.0,35.0,34.0,26.0,34.0,32.0,31.0,27.0,26.0,27.0,27.0,32.0,36.0,33.0,35.0,39.0,28.0,21.0,30.0,18.0,15.0,16.0,16.0,14.0,17.0,9.0,15.0,12.0,6.0,9.0,15.0,3.0,8.0,14.0 P83608,27.0,26.0,30.0,34.0,33.0,25.0,18.0,22.0,28.0,28.0,34.0,43.0,27.0,35.0,46.0,33.0,42.0,42.0,44.0,38.0,24.0,24.0,26.0,27.0,44.0,39.0,36.0,41.0,37.0,46.0,49.0,58.0,49.0,44.0,52.0,56.0,50.0,57.0,46.0,46.0,51.0,45.0,45.0,40.0,45.0,38.0,48.0,38.0,35.0,39.0,43.0,39.0,35.0,41.0,46.0,40.0,39.0,46.0,52.0,37.0,52.0,32.0,50.0,28.0,39.0,33.0,31.0,34.0,36.0,28.0,27.0,23.0,33.0,20.0,26.0,19.0,42.0,39.0,33.0,20.0,27.0,25.0,25.0,23.0,27.0,15.0,19.0,21.0,16.0,6.0,6.0,11.0,6.0,6.0,8.0,6.0 P83609,19.0,13.0,25.0,14.0,13.0,13.0,21.0,18.0,30.0,20.0,25.0,31.0,33.0,23.0,18.0,26.0,20.0,28.0,19.0,29.0,23.0,22.0,19.0,27.0,12.0,19.0,23.0,23.0,17.0,28.0,25.0,21.0,29.0,28.0,34.0,27.0,27.0,29.0,30.0,30.0,25.0,24.0,37.0,28.0,24.0,34.0,26.0,28.0,22.0,23.0,28.0,30.0,26.0,22.0,19.0,25.0,22.0,22.0,34.0,27.0,35.0,31.0,40.0,36.0,23.0,19.0,26.0,18.0,16.0,12.0,16.0,17.0,19.0,15.0,16.0,20.0,19.0,20.0,11.0,11.0,8.0,8.0,8.0,6.0,8.0,5.0,8.0,4.0,7.0,8.0,3.0,4.0,1.0,2.0,2.0,4.0 P83611,27.0,38.0,29.0,36.0,37.0,36.0,25.0,39.0,46.0,32.0,34.0,38.0,34.0,39.0,31.0,41.0,27.0,40.0,26.0,25.0,20.0,36.0,25.0,35.0,25.0,38.0,22.0,39.0,39.0,32.0,37.0,31.0,36.0,27.0,33.0,33.0,29.0,43.0,40.0,35.0,32.0,32.0,31.0,17.0,27.0,26.0,33.0,25.0,24.0,16.0,25.0,26.0,16.0,16.0,14.0,19.0,12.0,11.0,20.0,10.0,13.0,22.0,20.0,17.0,15.0,8.0,17.0,14.0,9.0,6.0,12.0,8.0,14.0,10.0,7.0,10.0,3.0,7.0,6.0,4.0,4.0,5.0,5.0,6.0,4.0,5.0,1.0,6.0,,,1.0,3.0,2.0,,1.0,3.0 P83612,25.0,26.0,20.0,16.0,29.0,19.0,35.0,31.0,33.0,37.0,25.0,26.0,37.0,34.0,31.0,32.0,23.0,34.0,30.0,35.0,24.0,24.0,24.0,26.0,16.0,22.0,20.0,24.0,19.0,24.0,27.0,30.0,33.0,31.0,34.0,23.0,30.0,34.0,27.0,29.0,35.0,43.0,47.0,32.0,37.0,33.0,36.0,37.0,28.0,30.0,37.0,30.0,34.0,33.0,33.0,47.0,38.0,41.0,46.0,40.0,40.0,35.0,31.0,38.0,47.0,31.0,27.0,42.0,25.0,32.0,29.0,35.0,35.0,31.0,34.0,31.0,36.0,36.0,31.0,22.0,35.0,24.0,29.0,22.0,23.0,19.0,22.0,12.0,12.0,18.0,9.0,7.0,9.0,6.0,2.0,5.0 P83620,15.0,18.0,21.0,21.0,17.0,19.0,18.0,16.0,13.0,24.0,16.0,20.0,29.0,19.0,27.0,25.0,29.0,30.0,23.0,32.0,13.0,23.0,21.0,26.0,24.0,23.0,30.0,21.0,26.0,27.0,26.0,32.0,38.0,37.0,29.0,24.0,28.0,33.0,28.0,35.0,31.0,30.0,36.0,38.0,29.0,30.0,32.0,24.0,35.0,34.0,34.0,29.0,40.0,35.0,40.0,36.0,58.0,35.0,38.0,38.0,42.0,45.0,35.0,40.0,34.0,36.0,37.0,31.0,38.0,31.0,33.0,32.0,46.0,42.0,35.0,33.0,38.0,48.0,40.0,29.0,28.0,38.0,21.0,17.0,16.0,14.0,13.0,12.0,6.0,6.0,8.0,8.0,5.0,4.0,2.0,14.0 P83621,13.0,8.0,17.0,22.0,20.0,15.0,21.0,17.0,19.0,28.0,15.0,28.0,26.0,25.0,24.0,18.0,27.0,15.0,27.0,18.0,13.0,14.0,9.0,19.0,12.0,15.0,11.0,13.0,21.0,14.0,20.0,23.0,13.0,24.0,35.0,32.0,20.0,23.0,27.0,21.0,16.0,20.0,16.0,12.0,24.0,21.0,15.0,16.0,21.0,18.0,17.0,15.0,13.0,27.0,22.0,20.0,20.0,17.0,23.0,20.0,23.0,20.0,17.0,17.0,18.0,24.0,10.0,16.0,17.0,12.0,8.0,9.0,9.0,9.0,13.0,15.0,6.0,6.0,9.0,10.0,11.0,8.0,8.0,9.0,6.0,2.0,1.0,5.0,5.0,4.0,2.0,2.0,1.0,,1.0,3.0 P83623,26.0,16.0,29.0,19.0,17.0,22.0,20.0,20.0,36.0,28.0,38.0,31.0,39.0,36.0,44.0,45.0,35.0,47.0,31.0,31.0,44.0,34.0,28.0,16.0,22.0,26.0,16.0,18.0,26.0,22.0,23.0,34.0,26.0,26.0,25.0,39.0,26.0,26.0,31.0,19.0,34.0,33.0,37.0,26.0,31.0,27.0,35.0,33.0,27.0,26.0,23.0,29.0,33.0,47.0,47.0,35.0,30.0,32.0,35.0,41.0,33.0,31.0,29.0,30.0,19.0,25.0,21.0,23.0,20.0,28.0,17.0,23.0,17.0,24.0,21.0,16.0,13.0,22.0,16.0,16.0,19.0,17.0,9.0,8.0,12.0,11.0,10.0,6.0,7.0,8.0,4.0,6.0,7.0,3.0,2.0,6.0 P84004,30.0,60.0,36.0,51.0,41.0,51.0,51.0,54.0,54.0,80.0,63.0,46.0,68.0,41.0,66.0,59.0,67.0,75.0,53.0,55.0,53.0,58.0,59.0,43.0,50.0,50.0,44.0,66.0,56.0,76.0,61.0,58.0,61.0,60.0,73.0,66.0,76.0,65.0,64.0,70.0,67.0,59.0,73.0,75.0,69.0,61.0,62.0,65.0,61.0,43.0,52.0,45.0,55.0,55.0,48.0,39.0,51.0,44.0,44.0,47.0,51.0,48.0,50.0,41.0,47.0,46.0,29.0,35.0,36.0,26.0,31.0,26.0,32.0,24.0,30.0,23.0,36.0,20.0,17.0,18.0,22.0,9.0,11.0,15.0,11.0,9.0,5.0,7.0,7.0,2.0,7.0,5.0,2.0,3.0,2.0,2.0 P84005,11.0,16.0,13.0,21.0,11.0,23.0,23.0,25.0,21.0,15.0,22.0,24.0,17.0,21.0,18.0,17.0,21.0,23.0,120.0,254.0,413.0,415.0,711.0,853.0,956.0,733.0,563.0,327.0,217.0,175.0,124.0,102.0,56.0,66.0,53.0,51.0,55.0,37.0,40.0,27.0,25.0,30.0,22.0,18.0,16.0,25.0,25.0,22.0,13.0,19.0,16.0,22.0,14.0,19.0,15.0,17.0,27.0,20.0,22.0,18.0,21.0,20.0,27.0,18.0,16.0,20.0,10.0,14.0,13.0,10.0,7.0,12.0,7.0,5.0,7.0,8.0,6.0,4.0,8.0,6.0,3.0,7.0,8.0,8.0,3.0,9.0,7.0,2.0,3.0,3.0,3.0,2.0,1.0,1.0,1.0,4.0 P84009,45.0,65.0,53.0,63.0,61.0,58.0,59.0,71.0,66.0,65.0,60.0,81.0,61.0,70.0,79.0,76.0,64.0,62.0,59.0,107.0,113.0,147.0,113.0,160.0,125.0,117.0,118.0,107.0,117.0,96.0,100.0,106.0,99.0,88.0,75.0,80.0,76.0,77.0,82.0,76.0,68.0,73.0,74.0,58.0,56.0,60.0,71.0,61.0,52.0,46.0,44.0,45.0,38.0,50.0,41.0,50.0,48.0,46.0,53.0,42.0,30.0,34.0,44.0,40.0,30.0,37.0,29.0,19.0,34.0,30.0,25.0,16.0,22.0,13.0,20.0,23.0,16.0,12.0,15.0,8.0,8.0,14.0,6.0,9.0,8.0,12.0,4.0,4.0,3.0,,3.0,7.0,3.0,1.0,,2.0 P84010,48.0,30.0,43.0,49.0,38.0,53.0,57.0,46.0,67.0,46.0,55.0,63.0,76.0,68.0,60.0,66.0,76.0,54.0,60.0,66.0,46.0,70.0,65.0,71.0,98.0,109.0,102.0,121.0,92.0,93.0,90.0,89.0,84.0,93.0,71.0,81.0,86.0,90.0,79.0,87.0,87.0,71.0,70.0,82.0,75.0,68.0,72.0,59.0,60.0,67.0,68.0,57.0,48.0,57.0,49.0,55.0,51.0,45.0,60.0,52.0,48.0,57.0,64.0,45.0,42.0,36.0,35.0,43.0,37.0,30.0,32.0,36.0,27.0,25.0,22.0,20.0,26.0,20.0,17.0,18.0,21.0,17.0,16.0,8.0,10.0,10.0,11.0,9.0,9.0,6.0,6.0,11.0,6.0,6.0,5.0,15.0 P84012,32.0,33.0,35.0,26.0,26.0,36.0,33.0,37.0,52.0,34.0,43.0,55.0,45.0,42.0,72.0,42.0,39.0,53.0,47.0,43.0,36.0,29.0,41.0,37.0,52.0,43.0,42.0,43.0,49.0,52.0,54.0,57.0,49.0,70.0,66.0,56.0,69.0,67.0,69.0,47.0,63.0,71.0,69.0,49.0,57.0,67.0,61.0,48.0,54.0,68.0,58.0,41.0,45.0,60.0,58.0,58.0,57.0,71.0,57.0,65.0,76.0,52.0,58.0,66.0,58.0,49.0,55.0,58.0,51.0,38.0,50.0,44.0,40.0,51.0,39.0,31.0,44.0,47.0,39.0,33.0,27.0,33.0,23.0,15.0,19.0,14.0,21.0,18.0,13.0,15.0,8.0,9.0,5.0,6.0,6.0,10.0 P84014,31.0,22.0,49.0,33.0,44.0,38.0,56.0,39.0,37.0,37.0,62.0,35.0,47.0,39.0,50.0,40.0,25.0,31.0,27.0,27.0,29.0,30.0,35.0,19.0,38.0,33.0,28.0,36.0,27.0,35.0,37.0,50.0,48.0,40.0,47.0,60.0,39.0,47.0,52.0,45.0,52.0,41.0,39.0,44.0,40.0,32.0,34.0,26.0,26.0,21.0,31.0,36.0,15.0,36.0,36.0,21.0,23.0,28.0,30.0,16.0,29.0,34.0,27.0,20.0,28.0,25.0,29.0,14.0,22.0,15.0,20.0,23.0,23.0,21.0,17.0,16.0,16.0,13.0,14.0,7.0,8.0,8.0,9.0,10.0,9.0,8.0,8.0,5.0,9.0,9.0,4.0,3.0,3.0,6.0,1.0,8.0 P84016,53.0,52.0,55.0,57.0,65.0,58.0,51.0,60.0,57.0,66.0,79.0,67.0,72.0,72.0,79.0,64.0,73.0,92.0,64.0,62.0,59.0,59.0,58.0,51.0,81.0,81.0,73.0,84.0,75.0,66.0,81.0,78.0,71.0,91.0,70.0,87.0,82.0,69.0,76.0,85.0,74.0,64.0,66.0,64.0,64.0,82.0,51.0,49.0,47.0,55.0,51.0,51.0,45.0,32.0,29.0,43.0,45.0,32.0,42.0,39.0,27.0,39.0,25.0,37.0,19.0,28.0,28.0,27.0,31.0,27.0,29.0,21.0,20.0,21.0,20.0,23.0,14.0,16.0,13.0,14.0,12.0,16.0,5.0,12.0,10.0,6.0,9.0,9.0,8.0,6.0,2.0,4.0,8.0,2.0,1.0,2.0 P84017,58.0,59.0,57.0,71.0,78.0,71.0,75.0,78.0,92.0,105.0,86.0,79.0,95.0,110.0,89.0,90.0,85.0,87.0,92.0,96.0,90.0,102.0,102.0,117.0,96.0,118.0,102.0,100.0,125.0,93.0,90.0,103.0,104.0,95.0,91.0,115.0,93.0,88.0,110.0,88.0,97.0,100.0,92.0,97.0,84.0,104.0,105.0,60.0,62.0,84.0,54.0,68.0,67.0,73.0,77.0,78.0,68.0,67.0,81.0,66.0,68.0,63.0,64.0,66.0,61.0,62.0,47.0,52.0,47.0,41.0,44.0,31.0,43.0,41.0,35.0,25.0,27.0,29.0,33.0,27.0,25.0,31.0,19.0,17.0,17.0,19.0,14.0,14.0,10.0,13.0,17.0,6.0,10.0,2.0,4.0,7.0 P84018,5.0,6.0,4.0,8.0,6.0,9.0,8.0,8.0,4.0,12.0,9.0,9.0,16.0,22.0,14.0,10.0,14.0,12.0,24.0,79.0,175.0,210.0,146.0,87.0,98.0,64.0,37.0,46.0,46.0,36.0,32.0,24.0,24.0,29.0,17.0,17.0,16.0,21.0,17.0,18.0,19.0,16.0,12.0,19.0,19.0,20.0,8.0,12.0,11.0,13.0,8.0,11.0,5.0,11.0,5.0,7.0,7.0,9.0,11.0,8.0,7.0,9.0,4.0,8.0,8.0,8.0,5.0,8.0,7.0,12.0,6.0,6.0,5.0,11.0,6.0,8.0,5.0,6.0,8.0,7.0,6.0,4.0,8.0,2.0,1.0,4.0,6.0,6.0,1.0,3.0,4.0,3.0,1.0,1.0,,1.0 P84019,33.0,33.0,62.0,64.0,65.0,49.0,82.0,75.0,80.0,94.0,84.0,87.0,98.0,84.0,98.0,65.0,87.0,79.0,68.0,68.0,59.0,65.0,49.0,62.0,63.0,56.0,57.0,65.0,65.0,83.0,59.0,78.0,80.0,70.0,77.0,88.0,90.0,84.0,71.0,91.0,98.0,84.0,89.0,109.0,81.0,76.0,81.0,76.0,59.0,78.0,66.0,70.0,58.0,79.0,66.0,54.0,64.0,65.0,67.0,64.0,58.0,68.0,54.0,57.0,62.0,52.0,53.0,52.0,55.0,45.0,36.0,32.0,49.0,45.0,25.0,30.0,33.0,31.0,39.0,28.0,17.0,25.0,27.0,15.0,8.0,18.0,12.0,12.0,8.0,13.0,12.0,4.0,3.0,4.0,5.0,10.0 P84020,46.0,56.0,58.0,63.0,48.0,67.0,78.0,73.0,82.0,73.0,64.0,63.0,70.0,88.0,68.0,76.0,60.0,81.0,66.0,65.0,50.0,55.0,47.0,58.0,51.0,64.0,61.0,52.0,82.0,60.0,67.0,76.0,88.0,101.0,91.0,105.0,93.0,102.0,79.0,79.0,67.0,76.0,87.0,60.0,75.0,51.0,61.0,64.0,66.0,58.0,49.0,44.0,47.0,63.0,55.0,50.0,42.0,51.0,47.0,41.0,47.0,53.0,54.0,39.0,43.0,42.0,39.0,37.0,25.0,29.0,24.0,27.0,35.0,32.0,16.0,21.0,22.0,22.0,23.0,13.0,19.0,10.0,12.0,13.0,12.0,12.0,9.0,9.0,11.0,6.0,2.0,3.0,2.0,2.0,3.0,7.0 P84021,35.0,39.0,56.0,59.0,58.0,54.0,55.0,81.0,85.0,69.0,78.0,83.0,80.0,76.0,75.0,69.0,78.0,72.0,68.0,60.0,54.0,41.0,53.0,45.0,39.0,52.0,48.0,64.0,78.0,66.0,68.0,77.0,82.0,84.0,69.0,81.0,95.0,81.0,89.0,73.0,78.0,82.0,84.0,77.0,68.0,64.0,64.0,59.0,69.0,57.0,75.0,46.0,55.0,58.0,53.0,52.0,55.0,50.0,54.0,54.0,47.0,58.0,53.0,49.0,52.0,42.0,33.0,34.0,36.0,48.0,35.0,31.0,31.0,31.0,30.0,36.0,21.0,33.0,26.0,20.0,15.0,14.0,17.0,10.0,11.0,11.0,7.0,8.0,7.0,8.0,5.0,4.0,,5.0,2.0,5.0 P84022,36.0,40.0,36.0,36.0,28.0,28.0,37.0,38.0,49.0,46.0,31.0,46.0,42.0,45.0,36.0,40.0,32.0,35.0,47.0,40.0,31.0,45.0,43.0,39.0,51.0,37.0,59.0,46.0,49.0,38.0,51.0,49.0,57.0,58.0,44.0,48.0,40.0,46.0,51.0,45.0,41.0,46.0,43.0,46.0,40.0,48.0,46.0,34.0,26.0,28.0,28.0,37.0,41.0,27.0,38.0,31.0,32.0,32.0,47.0,34.0,39.0,44.0,33.0,35.0,25.0,40.0,23.0,36.0,31.0,28.0,26.0,22.0,32.0,27.0,26.0,24.0,23.0,21.0,23.0,19.0,27.0,18.0,15.0,16.0,19.0,8.0,9.0,8.0,11.0,8.0,8.0,8.0,7.0,5.0,2.0,12.0 P84023,14.0,28.0,22.0,16.0,18.0,18.0,21.0,18.0,33.0,23.0,24.0,25.0,30.0,30.0,31.0,26.0,27.0,35.0,151.0,254.0,260.0,255.0,252.0,264.0,214.0,173.0,150.0,122.0,93.0,100.0,81.0,78.0,76.0,63.0,64.0,50.0,47.0,52.0,47.0,42.0,42.0,46.0,32.0,25.0,30.0,29.0,35.0,34.0,24.0,25.0,24.0,27.0,20.0,28.0,30.0,21.0,32.0,39.0,33.0,25.0,33.0,34.0,26.0,41.0,24.0,23.0,23.0,24.0,20.0,21.0,15.0,17.0,7.0,17.0,18.0,12.0,13.0,7.0,8.0,11.0,10.0,5.0,11.0,5.0,11.0,3.0,7.0,7.0,3.0,7.0,5.0,4.0,2.0,1.0,,2.0 P84024,37.0,48.0,35.0,54.0,34.0,47.0,45.0,45.0,53.0,55.0,54.0,58.0,59.0,51.0,60.0,50.0,50.0,54.0,55.0,55.0,53.0,26.0,36.0,34.0,31.0,58.0,48.0,62.0,49.0,62.0,65.0,82.0,62.0,67.0,85.0,76.0,67.0,71.0,68.0,61.0,79.0,56.0,66.0,61.0,64.0,53.0,55.0,40.0,44.0,47.0,40.0,49.0,50.0,49.0,44.0,58.0,62.0,42.0,49.0,51.0,37.0,47.0,50.0,51.0,45.0,44.0,38.0,45.0,31.0,24.0,34.0,24.0,25.0,26.0,36.0,21.0,21.0,31.0,28.0,21.0,27.0,12.0,13.0,15.0,13.0,7.0,14.0,5.0,10.0,7.0,4.0,1.0,3.0,1.0,3.0,7.0 P84025,39.0,41.0,47.0,40.0,46.0,46.0,50.0,57.0,57.0,49.0,56.0,60.0,59.0,52.0,54.0,61.0,63.0,65.0,60.0,58.0,47.0,50.0,47.0,39.0,41.0,38.0,32.0,45.0,46.0,56.0,57.0,50.0,65.0,58.0,59.0,58.0,74.0,48.0,68.0,61.0,69.0,65.0,69.0,51.0,58.0,50.0,46.0,40.0,38.0,65.0,41.0,50.0,49.0,28.0,40.0,38.0,51.0,38.0,48.0,38.0,28.0,24.0,31.0,40.0,51.0,36.0,33.0,35.0,47.0,32.0,17.0,17.0,22.0,21.0,27.0,24.0,23.0,16.0,21.0,21.0,20.0,25.0,10.0,6.0,14.0,11.0,7.0,8.0,9.0,7.0,4.0,3.0,2.0,1.0,1.0,2.0 P84026,53.0,57.0,52.0,54.0,49.0,59.0,59.0,52.0,59.0,59.0,57.0,57.0,68.0,78.0,65.0,71.0,55.0,64.0,78.0,80.0,59.0,81.0,56.0,85.0,73.0,63.0,74.0,71.0,78.0,76.0,70.0,57.0,73.0,64.0,66.0,64.0,76.0,71.0,69.0,57.0,42.0,55.0,47.0,55.0,53.0,57.0,56.0,52.0,56.0,44.0,37.0,50.0,37.0,40.0,30.0,45.0,35.0,24.0,34.0,32.0,31.0,30.0,35.0,30.0,20.0,24.0,24.0,23.0,18.0,21.0,21.0,21.0,18.0,9.0,11.0,10.0,10.0,12.0,8.0,9.0,8.0,8.0,6.0,6.0,4.0,7.0,4.0,5.0,3.0,5.0,3.0,1.0,,4.0,1.0,5.0 P84027,62.0,49.0,53.0,47.0,36.0,50.0,45.0,59.0,48.0,59.0,49.0,62.0,52.0,52.0,68.0,57.0,53.0,59.0,59.0,58.0,73.0,67.0,63.0,66.0,85.0,71.0,53.0,80.0,82.0,71.0,49.0,61.0,52.0,61.0,63.0,70.0,54.0,53.0,60.0,54.0,68.0,54.0,53.0,56.0,62.0,57.0,51.0,56.0,47.0,45.0,35.0,49.0,45.0,34.0,40.0,44.0,35.0,34.0,35.0,46.0,31.0,39.0,29.0,40.0,23.0,26.0,19.0,25.0,23.0,20.0,23.0,25.0,21.0,21.0,20.0,22.0,15.0,21.0,23.0,12.0,14.0,13.0,8.0,12.0,12.0,4.0,8.0,9.0,5.0,10.0,7.0,5.0,1.0,2.0,2.0,3.0 P84028,67.0,56.0,75.0,79.0,82.0,73.0,88.0,80.0,72.0,85.0,98.0,87.0,75.0,74.0,82.0,91.0,84.0,86.0,77.0,59.0,66.0,67.0,58.0,55.0,51.0,58.0,66.0,71.0,77.0,77.0,78.0,72.0,97.0,74.0,56.0,93.0,100.0,118.0,77.0,85.0,93.0,74.0,71.0,85.0,66.0,65.0,72.0,56.0,58.0,62.0,48.0,49.0,51.0,49.0,49.0,48.0,49.0,46.0,57.0,50.0,49.0,47.0,53.0,44.0,44.0,46.0,21.0,28.0,34.0,32.0,28.0,35.0,21.0,23.0,21.0,19.0,28.0,26.0,24.0,17.0,17.0,18.0,15.0,16.0,15.0,16.0,20.0,17.0,11.0,10.0,5.0,4.0,6.0,7.0,3.0,6.0 P84029,59.0,61.0,66.0,53.0,61.0,79.0,81.0,80.0,76.0,66.0,78.0,79.0,93.0,71.0,88.0,78.0,76.0,64.0,67.0,61.0,72.0,62.0,65.0,64.0,64.0,58.0,68.0,91.0,73.0,78.0,86.0,104.0,109.0,100.0,88.0,87.0,84.0,92.0,88.0,94.0,92.0,82.0,82.0,96.0,58.0,72.0,58.0,63.0,61.0,55.0,64.0,52.0,66.0,65.0,82.0,62.0,60.0,61.0,49.0,51.0,62.0,49.0,54.0,54.0,65.0,64.0,35.0,51.0,50.0,32.0,29.0,26.0,34.0,31.0,37.0,28.0,38.0,46.0,29.0,30.0,20.0,21.0,16.0,16.0,17.0,14.0,11.0,9.0,8.0,12.0,7.0,4.0,6.0,4.0,2.0,10.0 P84030,73.0,78.0,77.0,68.0,94.0,93.0,83.0,87.0,98.0,82.0,114.0,99.0,111.0,113.0,113.0,119.0,114.0,121.0,118.0,92.0,100.0,102.0,112.0,89.0,140.0,118.0,101.0,109.0,115.0,114.0,98.0,84.0,103.0,84.0,88.0,98.0,119.0,93.0,106.0,112.0,94.0,85.0,91.0,94.0,88.0,97.0,84.0,81.0,77.0,64.0,89.0,67.0,71.0,73.0,67.0,74.0,51.0,62.0,62.0,64.0,47.0,47.0,48.0,42.0,48.0,39.0,38.0,39.0,36.0,32.0,30.0,35.0,28.0,23.0,36.0,27.0,29.0,35.0,23.0,23.0,17.0,20.0,19.0,14.0,11.0,20.0,16.0,13.0,11.0,5.0,11.0,6.0,7.0,9.0,5.0,7.0 P84032,20.0,28.0,29.0,36.0,34.0,27.0,42.0,43.0,50.0,45.0,45.0,54.0,48.0,52.0,35.0,40.0,43.0,48.0,54.0,54.0,51.0,39.0,36.0,42.0,45.0,42.0,42.0,46.0,41.0,33.0,36.0,29.0,40.0,48.0,43.0,46.0,41.0,43.0,38.0,36.0,34.0,37.0,36.0,52.0,39.0,47.0,34.0,39.0,39.0,32.0,35.0,38.0,37.0,36.0,49.0,43.0,34.0,38.0,25.0,30.0,40.0,40.0,33.0,31.0,24.0,32.0,25.0,27.0,28.0,15.0,23.0,20.0,18.0,15.0,15.0,17.0,14.0,19.0,12.0,11.0,8.0,10.0,2.0,6.0,5.0,8.0,3.0,6.0,4.0,1.0,6.0,,3.0,3.0,3.0,2.0 P84033,19.0,14.0,18.0,32.0,25.0,25.0,22.0,31.0,38.0,28.0,34.0,25.0,49.0,39.0,24.0,37.0,31.0,25.0,28.0,24.0,27.0,21.0,26.0,22.0,27.0,29.0,25.0,29.0,34.0,34.0,30.0,35.0,28.0,47.0,28.0,33.0,32.0,38.0,50.0,38.0,29.0,33.0,40.0,38.0,22.0,36.0,22.0,23.0,25.0,23.0,15.0,28.0,27.0,29.0,25.0,28.0,30.0,24.0,18.0,15.0,22.0,18.0,27.0,25.0,19.0,25.0,25.0,18.0,17.0,13.0,23.0,16.0,12.0,13.0,13.0,17.0,10.0,15.0,13.0,5.0,8.0,7.0,8.0,5.0,2.0,4.0,5.0,4.0,5.0,5.0,2.0,1.0,2.0,1.0,1.0,1.0 P84034,75.0,68.0,71.0,72.0,75.0,81.0,73.0,85.0,81.0,83.0,88.0,96.0,68.0,100.0,88.0,68.0,75.0,82.0,80.0,53.0,69.0,66.0,60.0,83.0,103.0,108.0,120.0,140.0,171.0,149.0,162.0,141.0,141.0,145.0,167.0,149.0,152.0,133.0,131.0,150.0,145.0,141.0,138.0,136.0,146.0,130.0,121.0,122.0,94.0,112.0,107.0,85.0,100.0,88.0,86.0,97.0,103.0,73.0,73.0,88.0,94.0,77.0,81.0,78.0,55.0,79.0,75.0,55.0,74.0,71.0,63.0,54.0,58.0,69.0,62.0,58.0,46.0,51.0,53.0,59.0,39.0,45.0,36.0,25.0,25.0,20.0,31.0,18.0,15.0,20.0,13.0,14.0,10.0,9.0,3.0,19.0 P84035,38.0,36.0,28.0,38.0,52.0,44.0,39.0,42.0,38.0,49.0,60.0,45.0,57.0,50.0,44.0,58.0,41.0,66.0,229.0,522.0,484.0,606.0,495.0,386.0,279.0,195.0,152.0,153.0,129.0,120.0,126.0,123.0,128.0,131.0,121.0,109.0,111.0,104.0,109.0,92.0,103.0,91.0,117.0,70.0,72.0,77.0,79.0,67.0,70.0,56.0,54.0,44.0,46.0,41.0,45.0,54.0,42.0,53.0,41.0,63.0,47.0,45.0,39.0,51.0,44.0,52.0,36.0,42.0,46.0,43.0,41.0,37.0,39.0,54.0,39.0,36.0,34.0,40.0,21.0,25.0,32.0,30.0,19.0,21.0,15.0,16.0,16.0,8.0,8.0,13.0,8.0,2.0,6.0,5.0,5.0,13.0 P84037,28.0,21.0,19.0,26.0,31.0,42.0,43.0,48.0,37.0,36.0,39.0,41.0,43.0,39.0,37.0,47.0,59.0,45.0,45.0,43.0,53.0,42.0,41.0,46.0,52.0,49.0,53.0,60.0,45.0,57.0,55.0,43.0,54.0,52.0,57.0,41.0,50.0,44.0,39.0,47.0,41.0,48.0,30.0,53.0,32.0,39.0,43.0,36.0,35.0,44.0,39.0,35.0,30.0,23.0,39.0,31.0,34.0,33.0,46.0,32.0,29.0,20.0,22.0,21.0,23.0,11.0,17.0,17.0,12.0,9.0,8.0,10.0,14.0,6.0,13.0,6.0,7.0,11.0,13.0,9.0,8.0,4.0,6.0,5.0,6.0,9.0,5.0,6.0,8.0,6.0,6.0,1.0,5.0,4.0,2.0,12.0 P84038,69.0,94.0,61.0,63.0,72.0,67.0,69.0,82.0,78.0,79.0,86.0,90.0,85.0,74.0,80.0,80.0,63.0,68.0,71.0,51.0,64.0,71.0,74.0,78.0,97.0,126.0,149.0,150.0,144.0,147.0,145.0,141.0,127.0,143.0,138.0,144.0,135.0,121.0,117.0,133.0,131.0,121.0,141.0,138.0,146.0,93.0,123.0,91.0,87.0,82.0,72.0,79.0,82.0,75.0,77.0,82.0,80.0,57.0,66.0,62.0,71.0,63.0,55.0,57.0,38.0,56.0,51.0,38.0,42.0,34.0,44.0,27.0,39.0,29.0,32.0,27.0,19.0,19.0,15.0,16.0,22.0,10.0,12.0,17.0,17.0,12.0,7.0,14.0,13.0,9.0,5.0,3.0,5.0,4.0,3.0,9.0 P84039,50.0,59.0,39.0,41.0,39.0,44.0,45.0,37.0,49.0,39.0,36.0,56.0,51.0,49.0,53.0,51.0,66.0,47.0,108.0,165.0,164.0,161.0,178.0,199.0,222.0,225.0,216.0,186.0,171.0,152.0,135.0,126.0,122.0,119.0,112.0,93.0,88.0,85.0,79.0,69.0,73.0,70.0,79.0,68.0,74.0,69.0,50.0,57.0,49.0,45.0,50.0,59.0,43.0,39.0,45.0,61.0,49.0,55.0,51.0,50.0,53.0,46.0,49.0,35.0,43.0,34.0,25.0,36.0,24.0,35.0,23.0,20.0,19.0,24.0,18.0,17.0,11.0,18.0,12.0,14.0,10.0,13.0,12.0,5.0,10.0,11.0,9.0,11.0,11.0,10.0,2.0,3.0,5.0,5.0,,9.0 P84040,49.0,44.0,40.0,48.0,46.0,47.0,59.0,55.0,70.0,65.0,73.0,71.0,69.0,66.0,46.0,59.0,64.0,68.0,57.0,54.0,51.0,42.0,43.0,48.0,53.0,52.0,49.0,66.0,42.0,46.0,61.0,69.0,61.0,45.0,63.0,49.0,58.0,48.0,56.0,47.0,57.0,51.0,54.0,47.0,62.0,42.0,53.0,52.0,45.0,59.0,50.0,42.0,41.0,39.0,35.0,47.0,38.0,48.0,43.0,34.0,35.0,34.0,33.0,35.0,26.0,28.0,18.0,25.0,28.0,21.0,14.0,21.0,22.0,19.0,19.0,17.0,17.0,18.0,18.0,12.0,14.0,15.0,10.0,5.0,5.0,5.0,4.0,7.0,10.0,4.0,2.0,4.0,2.0,,2.0,5.0 P84041,27.0,41.0,33.0,26.0,50.0,47.0,58.0,50.0,69.0,62.0,75.0,61.0,58.0,67.0,52.0,69.0,49.0,69.0,58.0,43.0,40.0,41.0,36.0,44.0,44.0,44.0,32.0,51.0,61.0,54.0,58.0,60.0,65.0,67.0,64.0,65.0,62.0,67.0,73.0,68.0,55.0,68.0,56.0,65.0,56.0,65.0,58.0,43.0,40.0,41.0,41.0,35.0,43.0,36.0,42.0,50.0,50.0,42.0,47.0,38.0,34.0,25.0,25.0,38.0,37.0,34.0,27.0,31.0,38.0,22.0,21.0,19.0,14.0,21.0,11.0,23.0,19.0,17.0,19.0,16.0,10.0,15.0,11.0,14.0,5.0,8.0,9.0,8.0,5.0,2.0,3.0,1.0,3.0,2.0,1.0,3.0 P84042,60.0,70.0,83.0,62.0,62.0,93.0,96.0,78.0,86.0,98.0,86.0,100.0,98.0,101.0,84.0,93.0,84.0,83.0,73.0,66.0,61.0,59.0,61.0,60.0,71.0,72.0,78.0,78.0,82.0,89.0,93.0,97.0,128.0,99.0,96.0,89.0,90.0,98.0,91.0,106.0,102.0,77.0,108.0,74.0,104.0,83.0,89.0,72.0,65.0,51.0,57.0,65.0,49.0,48.0,56.0,58.0,70.0,56.0,42.0,67.0,45.0,52.0,49.0,45.0,50.0,39.0,45.0,47.0,29.0,23.0,35.0,24.0,33.0,32.0,26.0,26.0,20.0,27.0,21.0,20.0,20.0,19.0,17.0,14.0,15.0,8.0,12.0,7.0,,10.0,8.0,4.0,6.0,4.0,2.0,3.0 P84043,25.0,41.0,57.0,63.0,60.0,55.0,79.0,66.0,70.0,73.0,61.0,86.0,81.0,86.0,90.0,74.0,71.0,76.0,63.0,58.0,71.0,62.0,50.0,51.0,51.0,48.0,63.0,68.0,66.0,55.0,69.0,65.0,64.0,91.0,77.0,95.0,90.0,97.0,104.0,96.0,86.0,117.0,76.0,89.0,69.0,77.0,79.0,77.0,46.0,56.0,63.0,51.0,65.0,56.0,51.0,55.0,49.0,49.0,48.0,61.0,36.0,43.0,51.0,43.0,52.0,35.0,24.0,29.0,36.0,36.0,35.0,33.0,34.0,27.0,29.0,30.0,23.0,21.0,13.0,10.0,11.0,19.0,11.0,8.0,5.0,10.0,5.0,9.0,9.0,6.0,1.0,6.0,1.0,4.0,2.0,7.0 P84045,27.0,23.0,20.0,34.0,31.0,33.0,30.0,27.0,37.0,35.0,19.0,43.0,36.0,41.0,32.0,32.0,39.0,33.0,33.0,24.0,23.0,14.0,27.0,25.0,27.0,40.0,26.0,34.0,32.0,36.0,43.0,41.0,39.0,46.0,39.0,52.0,56.0,36.0,53.0,38.0,47.0,34.0,39.0,36.0,30.0,32.0,38.0,35.0,34.0,31.0,23.0,27.0,44.0,17.0,32.0,36.0,40.0,29.0,38.0,26.0,26.0,37.0,35.0,34.0,29.0,21.0,27.0,24.0,18.0,19.0,17.0,21.0,18.0,11.0,21.0,11.0,15.0,14.0,12.0,6.0,8.0,14.0,8.0,10.0,14.0,3.0,2.0,9.0,2.0,12.0,2.0,3.0,4.0,1.0,, P84046,106.0,115.0,109.0,143.0,112.0,110.0,117.0,137.0,141.0,153.0,147.0,153.0,163.0,146.0,148.0,170.0,154.0,140.0,151.0,151.0,131.0,128.0,148.0,163.0,177.0,192.0,195.0,185.0,190.0,177.0,181.0,155.0,146.0,166.0,158.0,179.0,153.0,137.0,157.0,136.0,174.0,139.0,138.0,116.0,124.0,120.0,103.0,95.0,94.0,102.0,74.0,86.0,75.0,84.0,94.0,91.0,84.0,53.0,68.0,65.0,71.0,51.0,46.0,45.0,50.0,41.0,55.0,54.0,50.0,45.0,43.0,30.0,35.0,21.0,30.0,30.0,18.0,22.0,20.0,15.0,15.0,14.0,17.0,17.0,14.0,11.0,5.0,9.0,5.0,5.0,6.0,,3.0,,1.0,6.0 P84047,27.0,25.0,20.0,38.0,43.0,35.0,37.0,33.0,33.0,43.0,39.0,42.0,36.0,46.0,50.0,50.0,47.0,55.0,30.0,26.0,31.0,27.0,24.0,20.0,40.0,38.0,32.0,29.0,35.0,33.0,41.0,46.0,34.0,45.0,29.0,53.0,34.0,43.0,43.0,50.0,49.0,39.0,43.0,35.0,36.0,45.0,43.0,34.0,35.0,38.0,33.0,16.0,36.0,37.0,32.0,36.0,38.0,38.0,31.0,36.0,37.0,38.0,29.0,32.0,42.0,28.0,31.0,22.0,27.0,26.0,33.0,14.0,19.0,16.0,14.0,25.0,17.0,23.0,16.0,14.0,16.0,11.0,18.0,10.0,4.0,6.0,10.0,6.0,9.0,4.0,5.0,3.0,5.0,1.0,,4.0 P84048,23.0,29.0,39.0,32.0,32.0,36.0,44.0,36.0,37.0,49.0,55.0,41.0,47.0,47.0,56.0,44.0,35.0,41.0,50.0,52.0,38.0,34.0,46.0,39.0,49.0,39.0,48.0,46.0,39.0,48.0,49.0,46.0,47.0,53.0,63.0,53.0,56.0,55.0,53.0,79.0,47.0,71.0,48.0,52.0,50.0,45.0,45.0,41.0,39.0,36.0,39.0,28.0,33.0,48.0,38.0,38.0,55.0,41.0,52.0,55.0,54.0,39.0,41.0,44.0,38.0,37.0,25.0,34.0,37.0,32.0,37.0,29.0,24.0,29.0,34.0,26.0,28.0,21.0,34.0,18.0,12.0,14.0,10.0,9.0,11.0,3.0,5.0,8.0,4.0,6.0,2.0,2.0,1.0,1.0,1.0,1.0 P84049,53.0,48.0,71.0,59.0,62.0,75.0,82.0,75.0,87.0,77.0,78.0,82.0,80.0,89.0,85.0,91.0,97.0,96.0,86.0,74.0,80.0,68.0,63.0,73.0,76.0,71.0,69.0,72.0,68.0,84.0,83.0,93.0,92.0,75.0,81.0,75.0,92.0,88.0,84.0,78.0,79.0,92.0,107.0,85.0,83.0,82.0,65.0,74.0,73.0,76.0,50.0,63.0,72.0,57.0,88.0,68.0,74.0,74.0,76.0,81.0,70.0,67.0,64.0,68.0,69.0,70.0,67.0,58.0,52.0,39.0,49.0,44.0,46.0,40.0,47.0,42.0,52.0,50.0,37.0,31.0,26.0,29.0,33.0,25.0,20.0,23.0,19.0,15.0,17.0,12.0,7.0,12.0,5.0,8.0,4.0,3.0 P84050,41.0,54.0,44.0,56.0,55.0,58.0,50.0,54.0,50.0,75.0,63.0,60.0,66.0,66.0,61.0,63.0,82.0,70.0,63.0,60.0,65.0,69.0,41.0,59.0,55.0,54.0,60.0,63.0,74.0,43.0,54.0,50.0,65.0,62.0,50.0,65.0,79.0,79.0,52.0,60.0,59.0,50.0,68.0,53.0,69.0,61.0,61.0,46.0,53.0,54.0,63.0,47.0,39.0,46.0,59.0,50.0,45.0,42.0,47.0,39.0,41.0,37.0,33.0,30.0,37.0,25.0,20.0,22.0,15.0,20.0,13.0,19.0,14.0,16.0,12.0,10.0,17.0,11.0,8.0,13.0,8.0,10.0,8.0,3.0,6.0,3.0,6.0,1.0,5.0,3.0,3.0,2.0,2.0,3.0,,3.0 P84051,29.0,28.0,29.0,31.0,27.0,26.0,35.0,31.0,43.0,32.0,46.0,37.0,32.0,49.0,40.0,36.0,44.0,38.0,37.0,37.0,38.0,34.0,24.0,36.0,28.0,32.0,42.0,45.0,35.0,31.0,54.0,57.0,47.0,47.0,48.0,45.0,49.0,45.0,47.0,45.0,43.0,43.0,47.0,31.0,42.0,39.0,38.0,37.0,32.0,39.0,27.0,31.0,30.0,32.0,37.0,26.0,32.0,32.0,37.0,32.0,35.0,33.0,25.0,36.0,29.0,23.0,22.0,27.0,31.0,28.0,19.0,18.0,23.0,17.0,15.0,11.0,13.0,10.0,22.0,14.0,13.0,11.0,14.0,6.0,12.0,6.0,4.0,2.0,1.0,4.0,4.0,,3.0,1.0,1.0,1.0 P84052,48.0,37.0,52.0,51.0,56.0,49.0,48.0,51.0,48.0,74.0,49.0,45.0,61.0,44.0,61.0,40.0,55.0,56.0,40.0,52.0,37.0,52.0,51.0,37.0,49.0,51.0,56.0,50.0,48.0,62.0,58.0,68.0,75.0,50.0,57.0,61.0,72.0,62.0,57.0,66.0,62.0,61.0,52.0,55.0,55.0,53.0,45.0,54.0,43.0,50.0,42.0,37.0,39.0,47.0,42.0,49.0,37.0,42.0,45.0,40.0,42.0,43.0,44.0,44.0,39.0,30.0,23.0,27.0,35.0,16.0,21.0,18.0,11.0,12.0,22.0,18.0,16.0,9.0,12.0,24.0,16.0,17.0,11.0,11.0,9.0,5.0,2.0,5.0,5.0,2.0,3.0,3.0,1.0,,1.0,5.0 P84053,38.0,38.0,44.0,48.0,56.0,38.0,43.0,47.0,42.0,51.0,38.0,53.0,52.0,56.0,64.0,49.0,50.0,49.0,43.0,41.0,47.0,36.0,45.0,42.0,52.0,55.0,57.0,62.0,64.0,70.0,63.0,63.0,53.0,60.0,67.0,75.0,63.0,80.0,66.0,61.0,67.0,69.0,59.0,65.0,54.0,51.0,49.0,54.0,45.0,48.0,40.0,39.0,40.0,51.0,40.0,41.0,30.0,38.0,32.0,36.0,33.0,26.0,30.0,21.0,33.0,37.0,26.0,23.0,28.0,17.0,13.0,19.0,19.0,26.0,15.0,17.0,14.0,21.0,17.0,13.0,16.0,7.0,8.0,1.0,15.0,11.0,10.0,5.0,3.0,7.0,2.0,4.0,2.0,2.0,,6.0 P84054,28.0,24.0,37.0,25.0,30.0,28.0,31.0,29.0,42.0,43.0,32.0,44.0,46.0,56.0,43.0,45.0,49.0,46.0,44.0,36.0,40.0,36.0,44.0,40.0,34.0,40.0,42.0,47.0,50.0,44.0,55.0,37.0,39.0,56.0,36.0,42.0,50.0,46.0,49.0,43.0,40.0,42.0,38.0,47.0,43.0,49.0,39.0,42.0,34.0,38.0,38.0,30.0,34.0,23.0,40.0,34.0,39.0,32.0,35.0,36.0,39.0,44.0,42.0,38.0,40.0,36.0,35.0,26.0,33.0,31.0,37.0,20.0,17.0,19.0,23.0,24.0,16.0,16.0,21.0,13.0,19.0,9.0,11.0,8.0,15.0,10.0,9.0,3.0,4.0,10.0,4.0,3.0,1.0,1.0,,2.0 P84056,20.0,22.0,24.0,16.0,13.0,22.0,24.0,34.0,30.0,30.0,29.0,29.0,35.0,30.0,24.0,34.0,37.0,43.0,35.0,29.0,21.0,29.0,36.0,30.0,36.0,30.0,36.0,36.0,31.0,37.0,25.0,33.0,37.0,37.0,31.0,30.0,32.0,36.0,40.0,29.0,35.0,37.0,34.0,34.0,33.0,29.0,23.0,21.0,33.0,20.0,22.0,29.0,30.0,25.0,31.0,21.0,15.0,23.0,21.0,23.0,32.0,19.0,28.0,18.0,20.0,21.0,21.0,22.0,20.0,20.0,14.0,17.0,15.0,7.0,16.0,7.0,9.0,6.0,8.0,8.0,9.0,7.0,3.0,5.0,7.0,8.0,7.0,4.0,2.0,8.0,5.0,4.0,3.0,2.0,3.0,3.0 P84059,58.0,36.0,49.0,59.0,66.0,67.0,66.0,71.0,51.0,76.0,54.0,70.0,77.0,65.0,73.0,74.0,48.0,72.0,74.0,62.0,60.0,64.0,56.0,57.0,72.0,62.0,57.0,78.0,65.0,66.0,66.0,85.0,73.0,79.0,99.0,77.0,72.0,79.0,74.0,75.0,75.0,64.0,66.0,71.0,58.0,84.0,49.0,46.0,50.0,65.0,59.0,66.0,38.0,48.0,46.0,42.0,43.0,40.0,39.0,42.0,48.0,37.0,36.0,22.0,34.0,45.0,28.0,34.0,31.0,23.0,27.0,28.0,23.0,17.0,29.0,22.0,10.0,10.0,20.0,19.0,8.0,16.0,14.0,14.0,8.0,4.0,3.0,8.0,4.0,4.0,5.0,3.0,5.0,5.0,2.0,4.0 P84061,31.0,32.0,25.0,30.0,32.0,30.0,28.0,33.0,44.0,53.0,34.0,33.0,33.0,46.0,46.0,37.0,40.0,36.0,38.0,43.0,33.0,29.0,16.0,30.0,33.0,24.0,32.0,32.0,38.0,41.0,57.0,52.0,55.0,53.0,55.0,42.0,47.0,46.0,49.0,62.0,43.0,60.0,40.0,59.0,44.0,48.0,57.0,34.0,43.0,40.0,37.0,47.0,40.0,44.0,33.0,32.0,41.0,41.0,44.0,40.0,43.0,45.0,38.0,39.0,33.0,34.0,51.0,37.0,42.0,33.0,29.0,28.0,31.0,26.0,25.0,32.0,22.0,24.0,27.0,34.0,16.0,12.0,11.0,9.0,10.0,7.0,11.0,10.0,8.0,5.0,3.0,2.0,2.0,1.0,2.0,2.0 P84064,28.0,21.0,20.0,28.0,27.0,23.0,22.0,28.0,27.0,44.0,30.0,30.0,20.0,28.0,22.0,19.0,25.0,14.0,26.0,35.0,68.0,78.0,138.0,244.0,323.0,433.0,436.0,409.0,330.0,314.0,266.0,207.0,216.0,177.0,155.0,136.0,123.0,92.0,76.0,83.0,55.0,53.0,53.0,47.0,40.0,43.0,27.0,30.0,31.0,29.0,35.0,24.0,27.0,26.0,24.0,29.0,31.0,24.0,27.0,33.0,28.0,28.0,28.0,30.0,18.0,22.0,19.0,20.0,20.0,18.0,16.0,11.0,16.0,10.0,10.0,10.0,12.0,8.0,4.0,5.0,9.0,4.0,2.0,7.0,2.0,6.0,3.0,6.0,5.0,2.0,2.0,2.0,,1.0,, P84065,31.0,22.0,22.0,34.0,26.0,34.0,38.0,36.0,39.0,36.0,43.0,35.0,39.0,35.0,33.0,40.0,34.0,33.0,27.0,39.0,29.0,21.0,37.0,27.0,20.0,36.0,25.0,35.0,38.0,41.0,44.0,41.0,37.0,25.0,38.0,43.0,42.0,23.0,46.0,31.0,32.0,27.0,44.0,23.0,34.0,29.0,40.0,41.0,26.0,25.0,16.0,24.0,19.0,16.0,23.0,21.0,28.0,24.0,27.0,21.0,27.0,26.0,27.0,16.0,13.0,12.0,23.0,15.0,6.0,12.0,15.0,19.0,9.0,10.0,9.0,9.0,11.0,14.0,10.0,7.0,5.0,5.0,4.0,2.0,4.0,4.0,5.0,4.0,1.0,4.0,3.0,3.0,,4.0,1.0,2.0 P84066,28.0,30.0,32.0,35.0,27.0,36.0,37.0,37.0,41.0,46.0,42.0,63.0,55.0,58.0,59.0,53.0,52.0,54.0,41.0,39.0,35.0,35.0,43.0,46.0,53.0,64.0,64.0,53.0,66.0,62.0,72.0,60.0,54.0,53.0,59.0,75.0,62.0,57.0,63.0,75.0,68.0,51.0,53.0,48.0,64.0,51.0,59.0,43.0,46.0,49.0,66.0,41.0,44.0,46.0,46.0,52.0,52.0,43.0,46.0,48.0,43.0,43.0,39.0,38.0,30.0,30.0,38.0,32.0,29.0,32.0,22.0,24.0,21.0,30.0,15.0,22.0,27.0,22.0,23.0,18.0,14.0,14.0,12.0,4.0,9.0,6.0,13.0,11.0,8.0,7.0,7.0,6.0,7.0,5.0,2.0,12.0 P84067,41.0,40.0,42.0,36.0,45.0,33.0,46.0,59.0,47.0,45.0,51.0,49.0,43.0,39.0,55.0,51.0,49.0,42.0,53.0,54.0,45.0,42.0,56.0,53.0,59.0,52.0,48.0,58.0,64.0,72.0,82.0,70.0,61.0,68.0,67.0,74.0,63.0,74.0,58.0,56.0,56.0,62.0,52.0,55.0,46.0,59.0,63.0,39.0,45.0,37.0,50.0,39.0,54.0,59.0,58.0,54.0,71.0,56.0,54.0,45.0,76.0,61.0,51.0,56.0,45.0,53.0,40.0,45.0,39.0,38.0,30.0,39.0,29.0,35.0,44.0,34.0,29.0,38.0,49.0,32.0,24.0,30.0,28.0,22.0,31.0,27.0,18.0,19.0,26.0,19.0,14.0,11.0,9.0,9.0,7.0,29.0 P84068,78.0,83.0,85.0,100.0,104.0,131.0,122.0,108.0,127.0,120.0,112.0,121.0,120.0,120.0,114.0,122.0,114.0,123.0,84.0,85.0,87.0,65.0,117.0,101.0,129.0,185.0,176.0,192.0,206.0,208.0,201.0,197.0,205.0,189.0,207.0,204.0,190.0,205.0,185.0,201.0,193.0,183.0,214.0,197.0,197.0,193.0,174.0,173.0,157.0,172.0,129.0,133.0,145.0,168.0,169.0,140.0,161.0,134.0,165.0,130.0,148.0,123.0,97.0,139.0,117.0,91.0,75.0,95.0,92.0,69.0,71.0,68.0,78.0,57.0,64.0,55.0,59.0,57.0,55.0,49.0,44.0,38.0,31.0,37.0,31.0,36.0,22.0,18.0,15.0,14.0,16.0,11.0,8.0,8.0,5.0,18.0 P84070,44.0,42.0,45.0,50.0,50.0,67.0,85.0,70.0,75.0,71.0,74.0,86.0,65.0,58.0,69.0,76.0,53.0,53.0,43.0,41.0,43.0,52.0,54.0,39.0,61.0,50.0,59.0,61.0,56.0,65.0,72.0,77.0,81.0,79.0,70.0,92.0,84.0,66.0,83.0,67.0,61.0,71.0,85.0,69.0,60.0,53.0,60.0,55.0,41.0,38.0,47.0,45.0,40.0,54.0,59.0,47.0,40.0,39.0,45.0,43.0,48.0,39.0,42.0,35.0,38.0,33.0,31.0,33.0,28.0,23.0,37.0,33.0,18.0,22.0,20.0,24.0,18.0,14.0,23.0,16.0,20.0,10.0,11.0,5.0,5.0,4.0,12.0,4.0,6.0,4.0,2.0,2.0,5.0,3.0,,4.0 P84071,10.0,23.0,15.0,13.0,26.0,22.0,20.0,25.0,14.0,18.0,22.0,15.0,21.0,25.0,19.0,21.0,15.0,22.0,32.0,22.0,15.0,10.0,22.0,32.0,34.0,38.0,68.0,49.0,69.0,55.0,53.0,52.0,54.0,40.0,42.0,46.0,36.0,29.0,46.0,36.0,42.0,37.0,36.0,34.0,51.0,22.0,29.0,33.0,29.0,31.0,26.0,26.0,28.0,29.0,40.0,21.0,34.0,40.0,48.0,34.0,44.0,34.0,32.0,20.0,24.0,29.0,24.0,24.0,25.0,24.0,17.0,14.0,24.0,15.0,15.0,18.0,17.0,15.0,21.0,11.0,12.0,5.0,8.0,7.0,6.0,7.0,7.0,3.0,3.0,11.0,2.0,2.0,,3.0,4.0,4.0 P84072,86.0,105.0,112.0,94.0,90.0,109.0,113.0,128.0,123.0,125.0,120.0,119.0,139.0,114.0,119.0,123.0,139.0,129.0,359.0,883.0,1210.0,1190.0,1058.0,1092.0,1172.0,878.0,663.0,512.0,462.0,349.0,272.0,279.0,256.0,219.0,198.0,191.0,181.0,194.0,157.0,188.0,160.0,143.0,124.0,114.0,115.0,111.0,91.0,85.0,90.0,76.0,84.0,71.0,65.0,50.0,50.0,55.0,53.0,55.0,49.0,48.0,42.0,55.0,55.0,39.0,41.0,43.0,42.0,38.0,28.0,27.0,22.0,30.0,27.0,24.0,20.0,24.0,15.0,13.0,19.0,9.0,18.0,9.0,12.0,15.0,11.0,12.0,7.0,5.0,5.0,6.0,1.0,4.0,4.0,,2.0,9.0 P84074,56.0,51.0,65.0,73.0,74.0,66.0,66.0,80.0,81.0,84.0,75.0,100.0,101.0,96.0,85.0,90.0,97.0,85.0,78.0,74.0,72.0,58.0,70.0,85.0,70.0,80.0,78.0,60.0,83.0,72.0,82.0,87.0,64.0,71.0,69.0,81.0,86.0,90.0,94.0,98.0,92.0,88.0,74.0,89.0,74.0,71.0,66.0,65.0,61.0,67.0,61.0,51.0,51.0,63.0,49.0,55.0,39.0,44.0,44.0,56.0,51.0,34.0,29.0,29.0,40.0,32.0,40.0,38.0,33.0,30.0,19.0,18.0,29.0,16.0,22.0,23.0,22.0,18.0,14.0,10.0,14.0,10.0,10.0,9.0,6.0,7.0,7.0,9.0,6.0,4.0,3.0,2.0,6.0,1.0,,3.0 P84605,9.0,9.0,11.0,12.0,7.0,20.0,16.0,17.0,17.0,12.0,17.0,12.0,14.0,20.0,22.0,12.0,13.0,18.0,19.0,11.0,11.0,13.0,11.0,8.0,10.0,18.0,11.0,20.0,8.0,15.0,13.0,21.0,11.0,16.0,20.0,14.0,15.0,15.0,27.0,15.0,13.0,11.0,17.0,11.0,13.0,19.0,11.0,13.0,13.0,13.0,13.0,11.0,12.0,7.0,7.0,13.0,12.0,6.0,6.0,3.0,8.0,10.0,6.0,9.0,3.0,7.0,4.0,4.0,6.0,6.0,3.0,3.0,7.0,1.0,4.0,4.0,3.0,2.0,2.0,3.0,2.0,3.0,2.0,2.0,1.0,1.0,2.0,4.0,3.0,3.0,1.0,1.0,1.0,,1.0, P84611,21.0,16.0,34.0,28.0,22.0,30.0,25.0,28.0,35.0,43.0,28.0,31.0,29.0,32.0,28.0,38.0,37.0,31.0,43.0,64.0,93.0,97.0,166.0,175.0,203.0,263.0,175.0,82.0,82.0,75.0,67.0,58.0,46.0,56.0,53.0,51.0,55.0,39.0,53.0,50.0,24.0,32.0,35.0,33.0,36.0,26.0,38.0,24.0,41.0,42.0,34.0,29.0,43.0,37.0,35.0,41.0,29.0,39.0,32.0,31.0,36.0,36.0,33.0,31.0,35.0,47.0,29.0,22.0,26.0,18.0,14.0,24.0,20.0,13.0,19.0,15.0,15.0,14.0,7.0,10.0,11.0,15.0,7.0,5.0,6.0,7.0,5.0,6.0,5.0,2.0,4.0,,1.0,1.0,2.0,4.0 P84626,19.0,20.0,31.0,26.0,28.0,20.0,25.0,17.0,36.0,25.0,25.0,27.0,24.0,35.0,29.0,33.0,22.0,23.0,35.0,59.0,78.0,74.0,68.0,75.0,98.0,61.0,68.0,90.0,92.0,65.0,83.0,59.0,49.0,53.0,46.0,39.0,41.0,40.0,43.0,28.0,36.0,31.0,37.0,29.0,17.0,26.0,22.0,33.0,24.0,19.0,26.0,17.0,17.0,21.0,21.0,18.0,17.0,15.0,15.0,10.0,14.0,17.0,19.0,12.0,11.0,9.0,8.0,8.0,8.0,7.0,11.0,5.0,9.0,12.0,7.0,6.0,8.0,8.0,4.0,2.0,7.0,5.0,3.0,1.0,5.0,3.0,1.0,5.0,2.0,1.0,3.0,,,1.0,1.0,3.0 P84630,40.0,51.0,56.0,43.0,55.0,39.0,60.0,59.0,56.0,53.0,62.0,52.0,60.0,67.0,64.0,76.0,57.0,78.0,322.0,738.0,840.0,539.0,527.0,603.0,686.0,589.0,535.0,437.0,340.0,327.0,262.0,223.0,223.0,186.0,195.0,156.0,118.0,126.0,110.0,120.0,99.0,104.0,118.0,92.0,73.0,85.0,64.0,65.0,56.0,53.0,65.0,47.0,45.0,45.0,44.0,56.0,43.0,46.0,57.0,49.0,55.0,49.0,40.0,30.0,35.0,37.0,27.0,25.0,27.0,19.0,21.0,18.0,18.0,19.0,13.0,15.0,12.0,6.0,11.0,7.0,14.0,12.0,11.0,15.0,8.0,2.0,6.0,11.0,7.0,7.0,5.0,3.0,2.0,3.0,4.0,3.0 P84635,37.0,28.0,35.0,35.0,35.0,36.0,34.0,32.0,52.0,50.0,44.0,40.0,35.0,46.0,42.0,33.0,37.0,31.0,39.0,29.0,36.0,32.0,40.0,41.0,43.0,53.0,47.0,52.0,62.0,49.0,59.0,49.0,59.0,48.0,62.0,57.0,43.0,46.0,60.0,49.0,36.0,51.0,24.0,49.0,39.0,31.0,19.0,24.0,11.0,30.0,24.0,26.0,29.0,18.0,21.0,19.0,19.0,20.0,13.0,23.0,29.0,20.0,25.0,13.0,12.0,17.0,20.0,16.0,13.0,8.0,9.0,12.0,9.0,3.0,3.0,6.0,6.0,6.0,1.0,2.0,6.0,6.0,5.0,4.0,6.0,6.0,3.0,2.0,2.0,4.0,4.0,6.0,,2.0,,5.0 P84637,12.0,15.0,15.0,11.0,10.0,23.0,23.0,19.0,14.0,24.0,20.0,25.0,22.0,25.0,21.0,22.0,19.0,20.0,15.0,18.0,18.0,25.0,16.0,18.0,17.0,22.0,20.0,22.0,13.0,17.0,19.0,17.0,20.0,25.0,25.0,18.0,21.0,24.0,14.0,29.0,27.0,28.0,20.0,26.0,18.0,21.0,12.0,15.0,16.0,22.0,19.0,19.0,15.0,10.0,12.0,16.0,14.0,22.0,10.0,13.0,6.0,23.0,16.0,16.0,13.0,16.0,13.0,13.0,10.0,15.0,11.0,7.0,9.0,5.0,11.0,9.0,6.0,9.0,7.0,1.0,7.0,2.0,5.0,1.0,3.0,3.0,2.0,2.0,,3.0,1.0,1.0,,1.0,, P84639,15.0,12.0,20.0,14.0,13.0,10.0,15.0,11.0,7.0,13.0,12.0,11.0,16.0,16.0,13.0,22.0,11.0,22.0,21.0,58.0,78.0,110.0,124.0,93.0,71.0,38.0,45.0,49.0,42.0,26.0,37.0,40.0,22.0,29.0,26.0,24.0,23.0,28.0,28.0,19.0,16.0,10.0,13.0,17.0,16.0,14.0,16.0,18.0,20.0,15.0,8.0,14.0,12.0,14.0,20.0,13.0,15.0,5.0,10.0,11.0,11.0,7.0,14.0,5.0,6.0,8.0,9.0,12.0,8.0,6.0,8.0,11.0,4.0,4.0,2.0,7.0,4.0,2.0,4.0,2.0,1.0,8.0,4.0,2.0,1.0,3.0,,2.0,1.0,,,,,1.0,,1.0 P84644,47.0,49.0,63.0,57.0,52.0,79.0,55.0,54.0,66.0,57.0,67.0,52.0,74.0,63.0,74.0,63.0,79.0,68.0,75.0,60.0,65.0,53.0,56.0,51.0,52.0,60.0,69.0,47.0,58.0,53.0,51.0,44.0,45.0,46.0,47.0,35.0,52.0,50.0,57.0,39.0,51.0,39.0,43.0,48.0,51.0,56.0,50.0,62.0,41.0,38.0,40.0,35.0,32.0,34.0,30.0,32.0,26.0,24.0,16.0,22.0,23.0,13.0,23.0,18.0,15.0,8.0,16.0,15.0,15.0,13.0,17.0,8.0,11.0,7.0,8.0,5.0,3.0,9.0,3.0,5.0,6.0,6.0,1.0,6.0,4.0,6.0,4.0,2.0,,5.0,1.0,2.0,1.0,1.0,,1.0 P84645,35.0,32.0,35.0,38.0,36.0,39.0,41.0,44.0,40.0,40.0,50.0,39.0,45.0,56.0,54.0,54.0,55.0,47.0,50.0,40.0,45.0,35.0,54.0,45.0,41.0,46.0,60.0,65.0,61.0,48.0,59.0,63.0,48.0,50.0,46.0,42.0,51.0,60.0,55.0,41.0,50.0,39.0,39.0,37.0,40.0,39.0,33.0,39.0,37.0,42.0,30.0,35.0,43.0,41.0,27.0,32.0,32.0,34.0,27.0,22.0,35.0,39.0,34.0,30.0,31.0,36.0,29.0,22.0,29.0,13.0,13.0,14.0,17.0,17.0,13.0,15.0,15.0,13.0,10.0,11.0,14.0,7.0,8.0,6.0,9.0,4.0,8.0,6.0,10.0,12.0,6.0,4.0,6.0,4.0,2.0,5.0 P84650,27.0,36.0,37.0,31.0,29.0,39.0,26.0,36.0,38.0,27.0,30.0,37.0,28.0,42.0,43.0,51.0,39.0,44.0,47.0,41.0,38.0,39.0,41.0,36.0,53.0,52.0,56.0,56.0,38.0,62.0,57.0,56.0,61.0,50.0,65.0,65.0,40.0,52.0,45.0,43.0,56.0,29.0,41.0,51.0,34.0,44.0,41.0,40.0,33.0,33.0,31.0,27.0,41.0,46.0,33.0,43.0,42.0,38.0,42.0,52.0,45.0,45.0,36.0,29.0,22.0,35.0,38.0,18.0,25.0,26.0,14.0,18.0,18.0,17.0,21.0,14.0,12.0,15.0,13.0,10.0,7.0,12.0,9.0,16.0,15.0,5.0,7.0,7.0,6.0,7.0,6.0,6.0,2.0,2.0,3.0,8.0 P84651,33.0,50.0,51.0,50.0,57.0,55.0,51.0,41.0,56.0,51.0,46.0,33.0,41.0,46.0,42.0,33.0,39.0,35.0,36.0,23.0,25.0,21.0,16.0,20.0,33.0,29.0,47.0,39.0,58.0,51.0,55.0,62.0,46.0,56.0,75.0,74.0,69.0,74.0,65.0,62.0,70.0,57.0,60.0,50.0,40.0,58.0,43.0,38.0,26.0,36.0,34.0,25.0,22.0,20.0,28.0,24.0,23.0,32.0,27.0,20.0,33.0,20.0,26.0,22.0,24.0,22.0,18.0,18.0,17.0,19.0,11.0,12.0,17.0,26.0,14.0,12.0,9.0,12.0,8.0,8.0,7.0,5.0,6.0,8.0,3.0,6.0,4.0,5.0,2.0,1.0,1.0,3.0,1.0,,,5.0 P84663,40.0,36.0,33.0,31.0,41.0,55.0,43.0,45.0,35.0,42.0,46.0,44.0,29.0,40.0,41.0,34.0,35.0,23.0,28.0,45.0,23.0,23.0,28.0,33.0,34.0,53.0,33.0,45.0,62.0,49.0,48.0,42.0,72.0,54.0,33.0,41.0,58.0,67.0,56.0,54.0,62.0,45.0,32.0,48.0,41.0,53.0,35.0,35.0,37.0,37.0,21.0,27.0,28.0,29.0,34.0,29.0,33.0,28.0,30.0,33.0,29.0,26.0,31.0,29.0,31.0,20.0,17.0,27.0,20.0,14.0,14.0,6.0,9.0,16.0,9.0,5.0,12.0,11.0,13.0,11.0,5.0,11.0,10.0,12.0,1.0,4.0,3.0,9.0,1.0,3.0,3.0,4.0,4.0,,3.0,3.0 P84665,30.0,15.0,15.0,17.0,9.0,14.0,16.0,20.0,13.0,18.0,21.0,26.0,19.0,21.0,22.0,21.0,23.0,18.0,22.0,42.0,87.0,130.0,139.0,101.0,86.0,84.0,76.0,67.0,55.0,61.0,59.0,59.0,39.0,51.0,47.0,40.0,29.0,40.0,31.0,25.0,28.0,19.0,31.0,20.0,36.0,22.0,18.0,14.0,16.0,19.0,20.0,16.0,7.0,16.0,12.0,16.0,19.0,10.0,19.0,12.0,7.0,13.0,9.0,10.0,12.0,9.0,13.0,8.0,11.0,9.0,7.0,13.0,5.0,7.0,4.0,7.0,5.0,3.0,2.0,6.0,,5.0,4.0,1.0,7.0,1.0,2.0,4.0,4.0,3.0,,2.0,1.0,2.0,1.0,2.0 P84669,57.0,51.0,56.0,62.0,53.0,56.0,57.0,55.0,70.0,65.0,64.0,62.0,63.0,57.0,49.0,65.0,69.0,61.0,209.0,368.0,337.0,308.0,360.0,390.0,355.0,351.0,342.0,394.0,313.0,288.0,287.0,234.0,210.0,176.0,166.0,172.0,163.0,147.0,143.0,126.0,81.0,115.0,90.0,72.0,70.0,69.0,48.0,51.0,47.0,50.0,61.0,46.0,61.0,56.0,52.0,41.0,64.0,52.0,33.0,38.0,38.0,43.0,35.0,29.0,31.0,33.0,24.0,22.0,28.0,19.0,20.0,11.0,14.0,16.0,7.0,7.0,7.0,9.0,10.0,3.0,5.0,5.0,7.0,6.0,8.0,6.0,2.0,7.0,5.0,4.0,2.0,3.0,1.0,,1.0,3.0 P84672,10.0,14.0,21.0,17.0,24.0,19.0,24.0,21.0,30.0,16.0,24.0,21.0,28.0,33.0,29.0,26.0,33.0,31.0,18.0,19.0,12.0,16.0,20.0,15.0,6.0,15.0,17.0,13.0,19.0,24.0,35.0,20.0,26.0,22.0,30.0,28.0,31.0,34.0,30.0,28.0,39.0,36.0,39.0,32.0,29.0,30.0,41.0,33.0,36.0,18.0,30.0,23.0,16.0,26.0,25.0,15.0,17.0,24.0,23.0,16.0,11.0,23.0,19.0,22.0,17.0,13.0,20.0,17.0,21.0,14.0,11.0,15.0,17.0,15.0,14.0,13.0,10.0,15.0,15.0,8.0,10.0,14.0,4.0,5.0,11.0,3.0,2.0,2.0,5.0,4.0,3.0,3.0,2.0,1.0,,4.0 P84673,50.0,40.0,31.0,29.0,27.0,37.0,19.0,32.0,30.0,24.0,31.0,34.0,21.0,30.0,33.0,35.0,29.0,32.0,40.0,47.0,52.0,70.0,130.0,195.0,278.0,314.0,312.0,327.0,362.0,279.0,271.0,228.0,214.0,178.0,165.0,132.0,118.0,113.0,100.0,94.0,78.0,76.0,85.0,68.0,82.0,40.0,37.0,39.0,52.0,42.0,36.0,42.0,45.0,52.0,35.0,37.0,39.0,37.0,29.0,29.0,31.0,39.0,30.0,32.0,28.0,21.0,26.0,16.0,24.0,27.0,17.0,20.0,19.0,18.0,21.0,16.0,9.0,20.0,12.0,14.0,9.0,17.0,10.0,8.0,7.0,5.0,6.0,7.0,6.0,2.0,1.0,2.0,3.0,,1.0,2.0 P84678,56.0,50.0,66.0,71.0,50.0,54.0,75.0,82.0,65.0,71.0,85.0,77.0,82.0,73.0,81.0,71.0,64.0,72.0,55.0,58.0,32.0,60.0,96.0,109.0,168.0,240.0,260.0,284.0,280.0,255.0,209.0,236.0,196.0,182.0,162.0,147.0,168.0,132.0,126.0,131.0,149.0,151.0,124.0,130.0,111.0,112.0,100.0,88.0,103.0,80.0,102.0,95.0,101.0,77.0,99.0,81.0,67.0,82.0,72.0,80.0,69.0,69.0,64.0,56.0,45.0,48.0,43.0,45.0,41.0,46.0,38.0,35.0,38.0,36.0,40.0,31.0,34.0,30.0,41.0,22.0,25.0,20.0,23.0,23.0,27.0,20.0,16.0,12.0,11.0,14.0,7.0,9.0,1.0,3.0,5.0,7.0 P84679,10.0,10.0,13.0,17.0,19.0,14.0,17.0,14.0,20.0,8.0,19.0,20.0,24.0,13.0,19.0,14.0,21.0,10.0,22.0,14.0,23.0,17.0,21.0,13.0,9.0,21.0,22.0,17.0,12.0,21.0,20.0,13.0,11.0,18.0,21.0,15.0,15.0,16.0,14.0,19.0,18.0,12.0,17.0,15.0,16.0,21.0,10.0,16.0,10.0,4.0,12.0,19.0,21.0,13.0,8.0,14.0,11.0,10.0,10.0,5.0,6.0,7.0,9.0,8.0,9.0,6.0,6.0,8.0,10.0,6.0,5.0,6.0,5.0,5.0,6.0,4.0,4.0,3.0,3.0,,3.0,3.0,1.0,1.0,2.0,2.0,4.0,1.0,,,,,,1.0,, P84683,12.0,14.0,12.0,6.0,6.0,6.0,8.0,6.0,5.0,10.0,10.0,7.0,3.0,6.0,6.0,2.0,5.0,5.0,69.0,167.0,174.0,165.0,305.0,495.0,509.0,457.0,453.0,422.0,329.0,290.0,231.0,190.0,167.0,160.0,127.0,120.0,92.0,75.0,61.0,67.0,59.0,32.0,45.0,41.0,42.0,37.0,32.0,33.0,19.0,30.0,34.0,25.0,37.0,36.0,21.0,17.0,26.0,27.0,35.0,22.0,20.0,20.0,18.0,13.0,11.0,12.0,14.0,8.0,13.0,9.0,10.0,6.0,6.0,9.0,8.0,10.0,1.0,7.0,3.0,3.0,3.0,5.0,4.0,,4.0,,2.0,6.0,3.0,1.0,1.0,,1.0,2.0,,4.0 P84684,41.0,53.0,22.0,34.0,38.0,44.0,45.0,39.0,40.0,36.0,41.0,44.0,37.0,52.0,45.0,49.0,43.0,55.0,47.0,49.0,53.0,57.0,53.0,52.0,44.0,59.0,42.0,46.0,52.0,54.0,54.0,57.0,46.0,56.0,45.0,43.0,54.0,49.0,32.0,49.0,44.0,40.0,58.0,47.0,55.0,47.0,39.0,37.0,37.0,34.0,33.0,20.0,32.0,25.0,30.0,30.0,20.0,28.0,23.0,20.0,28.0,16.0,21.0,26.0,23.0,18.0,23.0,20.0,24.0,18.0,13.0,24.0,17.0,21.0,14.0,5.0,9.0,12.0,6.0,7.0,6.0,7.0,6.0,10.0,2.0,4.0,4.0,1.0,3.0,2.0,3.0,2.0,5.0,2.0,,4.0 P84689,69.0,58.0,61.0,66.0,69.0,81.0,69.0,98.0,109.0,103.0,78.0,96.0,94.0,109.0,109.0,124.0,100.0,87.0,141.0,168.0,132.0,118.0,148.0,142.0,137.0,140.0,143.0,114.0,118.0,109.0,124.0,116.0,84.0,81.0,96.0,103.0,101.0,100.0,97.0,87.0,99.0,79.0,82.0,91.0,76.0,84.0,90.0,69.0,63.0,63.0,71.0,47.0,56.0,56.0,55.0,53.0,50.0,43.0,48.0,42.0,59.0,39.0,34.0,39.0,34.0,42.0,30.0,30.0,26.0,15.0,18.0,15.0,25.0,16.0,12.0,18.0,6.0,9.0,11.0,12.0,12.0,12.0,11.0,3.0,10.0,8.0,7.0,6.0,5.0,4.0,5.0,2.0,3.0,5.0,3.0,4.0 P84690,12.0,13.0,18.0,13.0,14.0,21.0,19.0,19.0,20.0,20.0,29.0,30.0,13.0,25.0,21.0,19.0,24.0,18.0,20.0,21.0,18.0,11.0,24.0,19.0,17.0,21.0,14.0,18.0,8.0,24.0,24.0,13.0,26.0,28.0,30.0,22.0,25.0,14.0,17.0,19.0,17.0,22.0,19.0,18.0,16.0,15.0,24.0,18.0,21.0,18.0,22.0,15.0,16.0,16.0,19.0,13.0,16.0,13.0,11.0,13.0,16.0,16.0,12.0,17.0,10.0,7.0,13.0,7.0,9.0,3.0,4.0,8.0,7.0,7.0,4.0,8.0,8.0,10.0,5.0,9.0,8.0,4.0,2.0,2.0,6.0,1.0,2.0,5.0,4.0,,7.0,,2.0,1.0,,1.0 P85002,38.0,33.0,41.0,37.0,35.0,48.0,46.0,44.0,35.0,49.0,36.0,40.0,39.0,41.0,45.0,52.0,34.0,33.0,36.0,35.0,33.0,34.0,30.0,40.0,39.0,51.0,45.0,48.0,57.0,62.0,62.0,61.0,63.0,49.0,56.0,56.0,48.0,58.0,52.0,61.0,50.0,60.0,44.0,34.0,37.0,26.0,36.0,36.0,31.0,32.0,34.0,25.0,39.0,44.0,42.0,45.0,37.0,42.0,51.0,40.0,45.0,45.0,35.0,47.0,37.0,29.0,40.0,40.0,25.0,19.0,33.0,25.0,29.0,19.0,22.0,15.0,27.0,18.0,19.0,14.0,12.0,9.0,15.0,12.0,15.0,8.0,8.0,11.0,11.0,12.0,4.0,9.0,4.0,2.0,4.0,7.0 P85003,46.0,39.0,34.0,49.0,42.0,47.0,58.0,54.0,45.0,55.0,57.0,54.0,67.0,69.0,61.0,56.0,52.0,68.0,82.0,59.0,52.0,60.0,49.0,74.0,54.0,60.0,49.0,44.0,61.0,43.0,51.0,42.0,30.0,22.0,34.0,39.0,61.0,50.0,40.0,54.0,46.0,51.0,54.0,42.0,42.0,42.0,42.0,38.0,41.0,26.0,29.0,35.0,31.0,26.0,29.0,14.0,12.0,21.0,26.0,22.0,17.0,10.0,6.0,11.0,13.0,10.0,16.0,16.0,12.0,8.0,16.0,9.0,15.0,9.0,4.0,8.0,2.0,5.0,7.0,5.0,7.0,6.0,3.0,7.0,8.0,4.0,6.0,1.0,1.0,,2.0,2.0,1.0,2.0,,2.0 P85004,45.0,38.0,33.0,36.0,35.0,32.0,45.0,46.0,38.0,48.0,48.0,45.0,59.0,38.0,51.0,50.0,48.0,58.0,50.0,36.0,50.0,58.0,59.0,48.0,33.0,47.0,50.0,58.0,44.0,39.0,46.0,48.0,36.0,45.0,40.0,41.0,41.0,49.0,36.0,35.0,42.0,47.0,36.0,38.0,38.0,43.0,32.0,36.0,34.0,37.0,44.0,44.0,33.0,30.0,28.0,36.0,30.0,27.0,23.0,18.0,34.0,26.0,25.0,27.0,25.0,28.0,17.0,26.0,25.0,27.0,20.0,26.0,24.0,21.0,19.0,22.0,15.0,21.0,30.0,16.0,19.0,12.0,7.0,9.0,9.0,6.0,7.0,6.0,6.0,10.0,4.0,7.0,3.0,1.0,3.0,1.0 P85005,37.0,43.0,47.0,47.0,36.0,38.0,40.0,43.0,45.0,39.0,45.0,50.0,54.0,44.0,49.0,44.0,54.0,45.0,38.0,54.0,36.0,47.0,49.0,35.0,55.0,45.0,61.0,49.0,45.0,56.0,57.0,60.0,44.0,70.0,62.0,55.0,68.0,56.0,52.0,54.0,66.0,57.0,59.0,56.0,57.0,64.0,48.0,46.0,53.0,45.0,65.0,57.0,56.0,67.0,66.0,81.0,82.0,73.0,77.0,83.0,84.0,76.0,72.0,75.0,64.0,76.0,62.0,63.0,61.0,56.0,58.0,53.0,52.0,69.0,49.0,47.0,67.0,79.0,59.0,42.0,47.0,52.0,37.0,38.0,37.0,29.0,29.0,30.0,25.0,23.0,20.0,16.0,17.0,15.0,8.0,18.0 P85007,24.0,20.0,32.0,26.0,21.0,31.0,22.0,27.0,33.0,29.0,30.0,35.0,33.0,26.0,33.0,35.0,22.0,35.0,26.0,21.0,35.0,22.0,29.0,28.0,24.0,33.0,24.0,27.0,37.0,34.0,32.0,36.0,37.0,26.0,35.0,31.0,28.0,36.0,25.0,35.0,33.0,19.0,33.0,19.0,26.0,23.0,25.0,24.0,15.0,15.0,19.0,20.0,26.0,20.0,17.0,18.0,13.0,21.0,19.0,15.0,19.0,17.0,11.0,22.0,24.0,25.0,16.0,21.0,18.0,11.0,12.0,14.0,13.0,18.0,7.0,10.0,12.0,8.0,15.0,6.0,8.0,6.0,5.0,10.0,8.0,6.0,7.0,6.0,6.0,4.0,4.0,4.0,6.0,,2.0,2.0 P85010,70.0,53.0,79.0,84.0,70.0,81.0,81.0,74.0,73.0,77.0,105.0,93.0,83.0,106.0,94.0,89.0,82.0,83.0,81.0,79.0,67.0,70.0,69.0,60.0,73.0,72.0,89.0,74.0,87.0,80.0,76.0,100.0,84.0,92.0,101.0,94.0,101.0,120.0,112.0,108.0,79.0,100.0,96.0,94.0,105.0,101.0,102.0,92.0,87.0,76.0,79.0,73.0,65.0,74.0,104.0,96.0,99.0,96.0,86.0,83.0,102.0,97.0,98.0,94.0,76.0,96.0,80.0,76.0,74.0,71.0,65.0,70.0,62.0,71.0,68.0,62.0,85.0,69.0,82.0,40.0,59.0,52.0,46.0,34.0,23.0,23.0,30.0,32.0,22.0,19.0,7.0,20.0,10.0,7.0,6.0,17.0 P85011,65.0,72.0,71.0,74.0,67.0,88.0,79.0,66.0,90.0,82.0,92.0,96.0,83.0,95.0,90.0,83.0,76.0,86.0,90.0,93.0,66.0,81.0,68.0,73.0,71.0,79.0,98.0,90.0,81.0,97.0,89.0,85.0,85.0,94.0,110.0,85.0,103.0,99.0,85.0,95.0,103.0,81.0,97.0,74.0,96.0,104.0,73.0,76.0,77.0,80.0,59.0,71.0,67.0,73.0,88.0,83.0,90.0,60.0,90.0,69.0,69.0,73.0,66.0,83.0,77.0,51.0,70.0,48.0,53.0,53.0,53.0,65.0,68.0,46.0,36.0,50.0,61.0,38.0,47.0,45.0,42.0,44.0,34.0,36.0,24.0,21.0,28.0,19.0,13.0,17.0,9.0,13.0,7.0,12.0,8.0,20.0 P85012,35.0,29.0,44.0,57.0,40.0,38.0,38.0,34.0,48.0,51.0,51.0,57.0,49.0,48.0,53.0,53.0,54.0,48.0,55.0,48.0,37.0,42.0,41.0,38.0,36.0,43.0,48.0,42.0,51.0,65.0,45.0,38.0,36.0,40.0,50.0,41.0,47.0,44.0,41.0,47.0,37.0,40.0,39.0,47.0,49.0,45.0,51.0,26.0,26.0,28.0,29.0,24.0,29.0,21.0,34.0,31.0,19.0,30.0,29.0,20.0,24.0,24.0,21.0,20.0,24.0,18.0,9.0,17.0,19.0,10.0,12.0,25.0,6.0,8.0,11.0,14.0,12.0,11.0,10.0,9.0,6.0,8.0,6.0,8.0,4.0,6.0,6.0,8.0,5.0,2.0,2.0,1.0,1.0,3.0,2.0,2.0 P85013,89.0,68.0,96.0,90.0,85.0,97.0,104.0,107.0,120.0,134.0,110.0,111.0,105.0,125.0,127.0,132.0,129.0,131.0,88.0,111.0,95.0,104.0,88.0,97.0,99.0,93.0,90.0,107.0,110.0,130.0,124.0,103.0,129.0,140.0,128.0,142.0,137.0,152.0,146.0,132.0,130.0,120.0,120.0,123.0,159.0,121.0,147.0,111.0,107.0,119.0,139.0,129.0,141.0,147.0,173.0,166.0,150.0,153.0,158.0,149.0,196.0,150.0,150.0,176.0,157.0,144.0,113.0,108.0,114.0,116.0,118.0,112.0,123.0,96.0,126.0,140.0,121.0,152.0,162.0,111.0,99.0,80.0,96.0,65.0,58.0,61.0,58.0,55.0,41.0,33.0,17.0,32.0,9.0,16.0,9.0,32.0 P85014,38.0,42.0,55.0,54.0,45.0,33.0,47.0,39.0,47.0,46.0,51.0,49.0,50.0,48.0,56.0,44.0,48.0,53.0,44.0,61.0,55.0,46.0,45.0,46.0,54.0,50.0,60.0,46.0,54.0,59.0,54.0,51.0,51.0,53.0,53.0,49.0,53.0,58.0,50.0,45.0,45.0,43.0,48.0,31.0,39.0,53.0,35.0,37.0,34.0,39.0,38.0,38.0,41.0,33.0,51.0,39.0,27.0,32.0,33.0,37.0,39.0,47.0,20.0,30.0,27.0,30.0,21.0,22.0,19.0,32.0,12.0,22.0,20.0,23.0,13.0,18.0,19.0,16.0,23.0,14.0,9.0,12.0,9.0,8.0,6.0,11.0,4.0,6.0,8.0,1.0,8.0,6.0,1.0,,2.0,3.0 P85015,49.0,50.0,46.0,64.0,36.0,61.0,61.0,44.0,59.0,56.0,73.0,69.0,62.0,59.0,69.0,63.0,70.0,65.0,54.0,59.0,65.0,48.0,46.0,53.0,47.0,56.0,55.0,56.0,62.0,60.0,72.0,54.0,43.0,57.0,52.0,62.0,51.0,54.0,45.0,60.0,49.0,53.0,63.0,56.0,49.0,53.0,55.0,47.0,36.0,40.0,41.0,44.0,35.0,47.0,48.0,46.0,41.0,34.0,30.0,40.0,43.0,41.0,34.0,42.0,28.0,31.0,30.0,31.0,31.0,29.0,27.0,22.0,34.0,14.0,14.0,25.0,17.0,19.0,20.0,9.0,14.0,15.0,14.0,15.0,11.0,14.0,11.0,5.0,11.0,7.0,7.0,8.0,4.0,6.0,2.0,5.0 P85016,44.0,54.0,53.0,51.0,54.0,53.0,59.0,57.0,50.0,62.0,91.0,68.0,80.0,75.0,72.0,91.0,81.0,95.0,56.0,56.0,54.0,55.0,47.0,62.0,72.0,54.0,53.0,52.0,49.0,59.0,47.0,45.0,69.0,65.0,88.0,68.0,76.0,68.0,73.0,71.0,79.0,88.0,96.0,80.0,88.0,94.0,89.0,76.0,85.0,94.0,91.0,102.0,108.0,124.0,110.0,115.0,112.0,115.0,107.0,139.0,142.0,121.0,125.0,105.0,105.0,112.0,94.0,106.0,106.0,93.0,87.0,88.0,93.0,93.0,82.0,96.0,102.0,116.0,103.0,80.0,77.0,80.0,58.0,41.0,41.0,39.0,51.0,48.0,29.0,29.0,21.0,13.0,14.0,7.0,14.0,15.0 P85017,22.0,35.0,40.0,29.0,31.0,35.0,37.0,40.0,43.0,45.0,34.0,44.0,40.0,60.0,42.0,63.0,52.0,50.0,44.0,41.0,47.0,38.0,45.0,36.0,48.0,38.0,39.0,46.0,52.0,48.0,47.0,48.0,45.0,50.0,51.0,37.0,62.0,44.0,54.0,54.0,52.0,62.0,53.0,59.0,49.0,47.0,56.0,54.0,49.0,51.0,50.0,55.0,60.0,71.0,57.0,69.0,75.0,63.0,60.0,78.0,67.0,48.0,80.0,72.0,58.0,81.0,61.0,57.0,59.0,75.0,50.0,54.0,58.0,73.0,47.0,71.0,63.0,80.0,80.0,68.0,70.0,61.0,62.0,65.0,37.0,43.0,39.0,15.0,22.0,15.0,16.0,9.0,4.0,6.0,9.0,12.0 P85018,30.0,25.0,24.0,15.0,30.0,28.0,32.0,28.0,23.0,24.0,24.0,30.0,28.0,31.0,34.0,31.0,23.0,29.0,35.0,31.0,24.0,26.0,24.0,23.0,31.0,35.0,24.0,20.0,22.0,32.0,30.0,32.0,27.0,31.0,26.0,34.0,37.0,36.0,21.0,27.0,20.0,36.0,24.0,31.0,29.0,33.0,20.0,20.0,18.0,25.0,21.0,25.0,36.0,28.0,26.0,26.0,22.0,24.0,15.0,20.0,16.0,18.0,20.0,23.0,18.0,11.0,15.0,19.0,18.0,16.0,15.0,21.0,17.0,19.0,13.0,11.0,12.0,19.0,12.0,13.0,9.0,13.0,6.0,9.0,4.0,9.0,5.0,3.0,3.0,3.0,2.0,4.0,1.0,1.0,,1.0 P85019,38.0,32.0,32.0,43.0,37.0,52.0,34.0,37.0,33.0,47.0,27.0,43.0,43.0,40.0,37.0,39.0,44.0,29.0,39.0,35.0,29.0,28.0,34.0,33.0,42.0,34.0,58.0,46.0,64.0,53.0,44.0,59.0,56.0,66.0,61.0,52.0,49.0,65.0,38.0,58.0,32.0,53.0,43.0,42.0,30.0,47.0,33.0,36.0,57.0,34.0,29.0,42.0,40.0,47.0,45.0,37.0,45.0,64.0,45.0,50.0,38.0,44.0,46.0,37.0,40.0,40.0,29.0,36.0,30.0,41.0,24.0,32.0,20.0,32.0,25.0,25.0,16.0,30.0,37.0,19.0,21.0,21.0,14.0,20.0,18.0,14.0,14.0,12.0,14.0,9.0,3.0,6.0,4.0,2.0,1.0,8.0 P85020,25.0,41.0,40.0,45.0,41.0,58.0,55.0,52.0,39.0,66.0,46.0,42.0,53.0,42.0,39.0,36.0,48.0,33.0,52.0,42.0,32.0,39.0,36.0,33.0,45.0,35.0,47.0,43.0,44.0,43.0,43.0,49.0,45.0,53.0,62.0,73.0,51.0,43.0,62.0,54.0,53.0,46.0,51.0,54.0,50.0,37.0,35.0,28.0,50.0,44.0,51.0,47.0,51.0,47.0,45.0,44.0,46.0,50.0,54.0,45.0,55.0,50.0,54.0,37.0,40.0,40.0,34.0,35.0,29.0,33.0,32.0,38.0,32.0,33.0,30.0,35.0,33.0,45.0,35.0,18.0,28.0,16.0,18.0,27.0,19.0,23.0,16.0,13.0,9.0,9.0,12.0,5.0,3.0,5.0,5.0,14.0 P85021,76.0,60.0,82.0,91.0,64.0,78.0,86.0,80.0,85.0,78.0,69.0,93.0,81.0,84.0,90.0,76.0,70.0,106.0,86.0,88.0,88.0,76.0,72.0,90.0,72.0,54.0,71.0,71.0,77.0,58.0,70.0,65.0,80.0,88.0,76.0,86.0,77.0,97.0,91.0,70.0,77.0,71.0,79.0,70.0,73.0,73.0,81.0,65.0,59.0,37.0,52.0,77.0,45.0,60.0,63.0,69.0,44.0,59.0,49.0,48.0,35.0,44.0,23.0,38.0,46.0,41.0,36.0,32.0,33.0,35.0,32.0,32.0,34.0,26.0,29.0,26.0,21.0,28.0,13.0,16.0,15.0,19.0,15.0,11.0,9.0,13.0,9.0,4.0,9.0,7.0,4.0,4.0,5.0,3.0,4.0,5.0 P85022,25.0,26.0,36.0,26.0,33.0,28.0,29.0,35.0,40.0,36.0,30.0,35.0,43.0,43.0,35.0,37.0,32.0,40.0,39.0,23.0,26.0,26.0,28.0,31.0,31.0,30.0,36.0,34.0,35.0,41.0,40.0,50.0,38.0,43.0,46.0,38.0,44.0,46.0,37.0,46.0,44.0,40.0,42.0,26.0,24.0,42.0,29.0,26.0,24.0,21.0,22.0,26.0,23.0,19.0,29.0,32.0,23.0,22.0,29.0,25.0,28.0,29.0,33.0,20.0,25.0,26.0,18.0,21.0,25.0,18.0,12.0,20.0,6.0,18.0,25.0,10.0,15.0,17.0,9.0,13.0,15.0,11.0,5.0,7.0,6.0,10.0,5.0,8.0,4.0,4.0,9.0,,,1.0,1.0,7.0 P85026,71.0,82.0,82.0,88.0,90.0,95.0,88.0,87.0,102.0,84.0,90.0,93.0,96.0,92.0,93.0,87.0,99.0,83.0,75.0,78.0,89.0,85.0,69.0,95.0,97.0,88.0,96.0,104.0,123.0,109.0,136.0,118.0,116.0,141.0,129.0,119.0,122.0,119.0,116.0,108.0,110.0,113.0,99.0,110.0,110.0,114.0,88.0,88.0,88.0,104.0,88.0,97.0,107.0,121.0,121.0,118.0,113.0,136.0,115.0,124.0,131.0,123.0,114.0,123.0,115.0,112.0,88.0,66.0,79.0,75.0,76.0,70.0,77.0,78.0,80.0,63.0,74.0,64.0,81.0,48.0,65.0,62.0,67.0,51.0,45.0,41.0,33.0,35.0,30.0,14.0,18.0,18.0,14.0,12.0,5.0,8.0 P85601,15.0,24.0,21.0,21.0,14.0,24.0,20.0,18.0,15.0,19.0,29.0,23.0,28.0,26.0,19.0,24.0,30.0,27.0,22.0,22.0,30.0,27.0,35.0,22.0,26.0,39.0,29.0,29.0,29.0,18.0,20.0,22.0,27.0,26.0,26.0,17.0,21.0,22.0,24.0,20.0,19.0,18.0,22.0,20.0,28.0,18.0,9.0,19.0,20.0,15.0,15.0,18.0,28.0,15.0,14.0,16.0,18.0,18.0,15.0,10.0,14.0,12.0,16.0,9.0,13.0,6.0,12.0,5.0,11.0,17.0,20.0,5.0,8.0,9.0,10.0,11.0,4.0,7.0,9.0,5.0,6.0,6.0,4.0,7.0,4.0,5.0,4.0,1.0,1.0,2.0,4.0,1.0,3.0,2.0,2.0,4.0 P85605,54.0,57.0,58.0,64.0,54.0,56.0,44.0,65.0,66.0,58.0,55.0,64.0,60.0,59.0,59.0,68.0,66.0,74.0,58.0,59.0,52.0,51.0,48.0,57.0,59.0,50.0,53.0,59.0,64.0,49.0,54.0,73.0,59.0,44.0,72.0,69.0,58.0,52.0,68.0,51.0,60.0,48.0,64.0,56.0,66.0,69.0,50.0,45.0,38.0,51.0,44.0,24.0,36.0,49.0,48.0,43.0,34.0,35.0,19.0,34.0,26.0,29.0,21.0,29.0,34.0,36.0,29.0,31.0,21.0,29.0,21.0,25.0,17.0,23.0,18.0,13.0,11.0,21.0,10.0,11.0,6.0,11.0,13.0,3.0,6.0,6.0,3.0,6.0,3.0,5.0,1.0,1.0,4.0,,1.0,3.0 P85606,42.0,43.0,42.0,44.0,41.0,49.0,46.0,59.0,63.0,53.0,60.0,38.0,55.0,53.0,48.0,46.0,51.0,37.0,43.0,36.0,37.0,31.0,27.0,42.0,37.0,40.0,41.0,36.0,50.0,52.0,60.0,44.0,55.0,70.0,66.0,61.0,56.0,69.0,61.0,39.0,47.0,54.0,46.0,51.0,48.0,45.0,37.0,48.0,36.0,39.0,38.0,38.0,39.0,38.0,48.0,43.0,52.0,47.0,41.0,49.0,38.0,46.0,34.0,33.0,23.0,36.0,29.0,23.0,24.0,20.0,22.0,7.0,17.0,25.0,25.0,22.0,20.0,20.0,26.0,19.0,15.0,18.0,14.0,6.0,6.0,15.0,7.0,9.0,6.0,2.0,4.0,6.0,1.0,2.0,2.0,1.0 P85608,16.0,12.0,11.0,8.0,13.0,11.0,13.0,19.0,13.0,22.0,19.0,15.0,15.0,20.0,13.0,20.0,16.0,22.0,16.0,28.0,11.0,16.0,15.0,15.0,17.0,17.0,15.0,15.0,11.0,16.0,17.0,19.0,17.0,23.0,14.0,20.0,18.0,19.0,16.0,22.0,16.0,19.0,19.0,27.0,24.0,17.0,13.0,17.0,10.0,18.0,19.0,14.0,15.0,10.0,19.0,16.0,20.0,14.0,16.0,20.0,17.0,14.0,16.0,20.0,19.0,12.0,13.0,17.0,12.0,11.0,14.0,9.0,9.0,13.0,8.0,11.0,13.0,10.0,8.0,3.0,4.0,5.0,7.0,5.0,4.0,1.0,4.0,4.0,3.0,2.0,1.0,2.0,1.0,1.0,1.0, P85610,35.0,42.0,27.0,46.0,47.0,36.0,27.0,49.0,39.0,43.0,38.0,45.0,41.0,41.0,42.0,53.0,28.0,41.0,42.0,26.0,39.0,40.0,43.0,29.0,40.0,50.0,42.0,65.0,50.0,58.0,51.0,54.0,66.0,59.0,63.0,57.0,57.0,71.0,54.0,39.0,55.0,40.0,39.0,44.0,30.0,41.0,30.0,33.0,29.0,43.0,37.0,32.0,23.0,35.0,47.0,33.0,30.0,56.0,58.0,39.0,45.0,38.0,42.0,32.0,40.0,37.0,28.0,28.0,28.0,25.0,33.0,12.0,21.0,13.0,14.0,27.0,15.0,28.0,13.0,14.0,24.0,23.0,19.0,11.0,12.0,15.0,12.0,8.0,12.0,9.0,3.0,6.0,5.0,7.0,3.0,6.0 P85612,26.0,36.0,22.0,28.0,21.0,21.0,25.0,25.0,34.0,31.0,37.0,24.0,28.0,29.0,38.0,37.0,36.0,37.0,26.0,24.0,41.0,37.0,41.0,34.0,28.0,39.0,18.0,37.0,31.0,41.0,30.0,26.0,33.0,31.0,31.0,23.0,33.0,32.0,38.0,34.0,30.0,33.0,26.0,25.0,27.0,33.0,21.0,23.0,28.0,19.0,15.0,21.0,16.0,8.0,18.0,16.0,10.0,9.0,13.0,8.0,5.0,10.0,13.0,4.0,10.0,10.0,7.0,11.0,8.0,17.0,9.0,4.0,5.0,6.0,6.0,5.0,4.0,5.0,1.0,3.0,4.0,2.0,2.0,3.0,3.0,2.0,4.0,2.0,3.0,1.0,2.0,3.0,1.0,2.0,3.0,4.0 P85614,23.0,24.0,23.0,27.0,25.0,24.0,28.0,31.0,31.0,25.0,43.0,32.0,35.0,24.0,32.0,30.0,28.0,33.0,22.0,24.0,16.0,16.0,23.0,28.0,27.0,35.0,26.0,40.0,38.0,43.0,39.0,38.0,28.0,41.0,36.0,29.0,40.0,36.0,45.0,47.0,29.0,49.0,34.0,21.0,32.0,30.0,24.0,17.0,19.0,30.0,23.0,25.0,22.0,26.0,28.0,34.0,29.0,28.0,18.0,26.0,29.0,29.0,37.0,28.0,29.0,31.0,28.0,16.0,17.0,20.0,22.0,21.0,23.0,24.0,16.0,21.0,6.0,27.0,23.0,21.0,12.0,21.0,11.0,8.0,9.0,8.0,7.0,6.0,5.0,4.0,,5.0,1.0,,2.0, P85615,82.0,75.0,76.0,82.0,67.0,94.0,98.0,101.0,99.0,99.0,114.0,101.0,84.0,118.0,108.0,112.0,117.0,124.0,118.0,115.0,116.0,113.0,104.0,111.0,110.0,110.0,87.0,86.0,90.0,80.0,87.0,95.0,85.0,87.0,85.0,100.0,91.0,93.0,99.0,99.0,94.0,93.0,87.0,83.0,104.0,77.0,97.0,76.0,71.0,59.0,55.0,61.0,61.0,67.0,48.0,37.0,40.0,44.0,37.0,44.0,35.0,35.0,26.0,29.0,23.0,35.0,32.0,26.0,30.0,26.0,35.0,25.0,26.0,19.0,20.0,23.0,17.0,18.0,13.0,10.0,7.0,14.0,9.0,11.0,9.0,7.0,12.0,6.0,5.0,8.0,7.0,3.0,3.0,4.0,5.0,8.0 P85622,86.0,90.0,88.0,107.0,94.0,76.0,117.0,110.0,103.0,101.0,118.0,122.0,110.0,106.0,123.0,127.0,116.0,95.0,117.0,95.0,95.0,94.0,84.0,94.0,92.0,82.0,113.0,85.0,71.0,92.0,89.0,62.0,73.0,65.0,76.0,93.0,97.0,75.0,100.0,79.0,85.0,73.0,80.0,61.0,62.0,86.0,79.0,70.0,55.0,45.0,57.0,40.0,39.0,56.0,43.0,45.0,30.0,32.0,39.0,20.0,33.0,24.0,30.0,25.0,25.0,24.0,34.0,23.0,24.0,27.0,20.0,23.0,16.0,17.0,10.0,13.0,10.0,12.0,9.0,6.0,11.0,11.0,6.0,18.0,6.0,7.0,12.0,4.0,8.0,5.0,3.0,4.0,8.0,2.0,2.0,12.0 P86001,34.0,34.0,41.0,42.0,41.0,40.0,42.0,52.0,44.0,43.0,36.0,32.0,56.0,42.0,47.0,54.0,48.0,48.0,28.0,41.0,41.0,35.0,37.0,43.0,41.0,47.0,52.0,49.0,58.0,52.0,61.0,80.0,64.0,50.0,70.0,70.0,51.0,57.0,54.0,52.0,67.0,50.0,63.0,40.0,49.0,54.0,51.0,54.0,49.0,39.0,60.0,49.0,66.0,82.0,63.0,56.0,44.0,59.0,54.0,63.0,59.0,58.0,47.0,50.0,45.0,42.0,36.0,48.0,30.0,38.0,36.0,51.0,46.0,35.0,45.0,46.0,47.0,35.0,40.0,30.0,41.0,26.0,27.0,20.0,15.0,20.0,10.0,11.0,8.0,6.0,7.0,6.0,5.0,4.0,3.0,2.0 P86002,9.0,15.0,6.0,11.0,10.0,13.0,4.0,7.0,5.0,10.0,10.0,13.0,14.0,9.0,15.0,12.0,11.0,14.0,9.0,10.0,10.0,17.0,12.0,9.0,15.0,12.0,14.0,10.0,11.0,12.0,12.0,7.0,11.0,9.0,18.0,13.0,16.0,9.0,8.0,10.0,13.0,12.0,20.0,10.0,11.0,12.0,14.0,10.0,10.0,12.0,7.0,12.0,10.0,9.0,6.0,6.0,7.0,8.0,7.0,9.0,9.0,6.0,12.0,9.0,7.0,7.0,10.0,4.0,5.0,7.0,8.0,5.0,9.0,6.0,3.0,4.0,6.0,4.0,1.0,4.0,4.0,4.0,7.0,5.0,1.0,1.0,4.0,2.0,1.0,1.0,5.0,3.0,1.0,,,1.0 P86003,36.0,35.0,50.0,41.0,45.0,49.0,51.0,39.0,53.0,69.0,62.0,56.0,56.0,62.0,66.0,64.0,61.0,70.0,53.0,63.0,47.0,40.0,46.0,43.0,53.0,53.0,62.0,50.0,49.0,58.0,54.0,58.0,58.0,58.0,66.0,55.0,68.0,60.0,65.0,82.0,62.0,51.0,72.0,56.0,54.0,69.0,65.0,56.0,63.0,66.0,60.0,59.0,83.0,77.0,82.0,80.0,90.0,86.0,85.0,86.0,74.0,94.0,79.0,70.0,69.0,81.0,72.0,73.0,72.0,61.0,62.0,61.0,59.0,55.0,60.0,63.0,60.0,63.0,73.0,51.0,56.0,51.0,48.0,33.0,41.0,32.0,41.0,32.0,17.0,19.0,26.0,14.0,10.0,12.0,7.0,25.0 P86004,36.0,43.0,49.0,49.0,43.0,47.0,45.0,60.0,60.0,46.0,56.0,67.0,48.0,60.0,49.0,51.0,41.0,53.0,47.0,41.0,43.0,39.0,42.0,37.0,46.0,43.0,48.0,61.0,42.0,70.0,60.0,68.0,58.0,61.0,54.0,70.0,68.0,73.0,60.0,78.0,64.0,61.0,65.0,50.0,58.0,50.0,54.0,54.0,59.0,46.0,46.0,59.0,45.0,68.0,57.0,67.0,66.0,73.0,73.0,63.0,46.0,54.0,51.0,65.0,56.0,61.0,54.0,64.0,66.0,50.0,41.0,26.0,50.0,41.0,41.0,54.0,39.0,33.0,30.0,33.0,29.0,25.0,32.0,17.0,15.0,22.0,19.0,23.0,20.0,17.0,9.0,4.0,10.0,2.0,2.0,6.0 P86005,31.0,39.0,35.0,30.0,43.0,32.0,35.0,34.0,44.0,48.0,31.0,28.0,36.0,43.0,39.0,43.0,45.0,46.0,37.0,31.0,37.0,43.0,25.0,20.0,37.0,36.0,41.0,38.0,39.0,53.0,40.0,52.0,41.0,39.0,38.0,54.0,53.0,49.0,57.0,37.0,34.0,43.0,52.0,42.0,32.0,46.0,39.0,32.0,43.0,30.0,34.0,33.0,36.0,42.0,40.0,37.0,39.0,34.0,39.0,28.0,43.0,37.0,39.0,34.0,35.0,27.0,30.0,32.0,35.0,28.0,27.0,26.0,20.0,26.0,20.0,28.0,37.0,19.0,21.0,10.0,16.0,13.0,15.0,10.0,11.0,4.0,2.0,10.0,8.0,6.0,5.0,3.0,2.0,3.0,,3.0 P86006,95.0,123.0,112.0,135.0,99.0,103.0,107.0,123.0,108.0,103.0,107.0,110.0,105.0,97.0,103.0,115.0,106.0,105.0,96.0,99.0,103.0,94.0,93.0,118.0,90.0,118.0,130.0,132.0,145.0,98.0,134.0,134.0,138.0,128.0,129.0,141.0,132.0,142.0,108.0,122.0,128.0,128.0,131.0,114.0,106.0,111.0,99.0,81.0,121.0,96.0,104.0,86.0,109.0,93.0,101.0,96.0,110.0,84.0,105.0,69.0,85.0,95.0,104.0,97.0,72.0,82.0,65.0,69.0,59.0,81.0,73.0,59.0,64.0,64.0,57.0,66.0,58.0,67.0,68.0,54.0,57.0,40.0,47.0,39.0,31.0,24.0,36.0,22.0,19.0,28.0,27.0,18.0,14.0,9.0,8.0,16.0 P86007,80.0,69.0,100.0,103.0,88.0,83.0,86.0,86.0,101.0,105.0,77.0,85.0,88.0,68.0,86.0,89.0,91.0,79.0,75.0,73.0,81.0,92.0,78.0,83.0,88.0,96.0,89.0,97.0,101.0,101.0,115.0,100.0,101.0,108.0,108.0,122.0,99.0,96.0,105.0,84.0,84.0,85.0,82.0,104.0,76.0,92.0,69.0,58.0,62.0,84.0,76.0,78.0,68.0,85.0,77.0,81.0,92.0,93.0,83.0,93.0,75.0,83.0,69.0,71.0,81.0,64.0,79.0,58.0,65.0,62.0,40.0,51.0,59.0,56.0,43.0,51.0,51.0,49.0,56.0,43.0,39.0,37.0,37.0,22.0,17.0,22.0,21.0,19.0,22.0,10.0,16.0,6.0,11.0,3.0,4.0,13.0 P86008,70.0,78.0,84.0,66.0,73.0,80.0,63.0,83.0,65.0,73.0,58.0,91.0,69.0,76.0,75.0,56.0,86.0,72.0,68.0,62.0,59.0,48.0,46.0,70.0,60.0,63.0,73.0,75.0,81.0,67.0,72.0,75.0,78.0,93.0,86.0,75.0,85.0,94.0,80.0,88.0,78.0,74.0,65.0,68.0,80.0,73.0,56.0,58.0,47.0,49.0,49.0,51.0,58.0,59.0,65.0,70.0,60.0,48.0,62.0,48.0,55.0,48.0,51.0,46.0,51.0,42.0,45.0,44.0,52.0,39.0,44.0,42.0,34.0,29.0,29.0,34.0,29.0,36.0,40.0,31.0,33.0,21.0,30.0,18.0,19.0,22.0,13.0,13.0,16.0,11.0,5.0,16.0,3.0,4.0,1.0,8.0 P86009,42.0,49.0,49.0,64.0,56.0,61.0,59.0,62.0,54.0,64.0,60.0,68.0,59.0,61.0,62.0,55.0,69.0,68.0,50.0,51.0,51.0,64.0,63.0,44.0,52.0,58.0,58.0,68.0,62.0,70.0,79.0,62.0,83.0,71.0,72.0,94.0,83.0,83.0,79.0,74.0,67.0,65.0,67.0,77.0,82.0,74.0,53.0,64.0,57.0,47.0,75.0,60.0,53.0,69.0,55.0,59.0,52.0,77.0,58.0,61.0,67.0,63.0,63.0,68.0,51.0,63.0,66.0,65.0,67.0,46.0,52.0,55.0,48.0,52.0,47.0,53.0,65.0,53.0,65.0,43.0,26.0,39.0,27.0,32.0,33.0,24.0,24.0,21.0,9.0,20.0,14.0,10.0,6.0,9.0,9.0,14.0 P86010,45.0,28.0,44.0,49.0,47.0,48.0,58.0,68.0,58.0,54.0,52.0,67.0,53.0,57.0,59.0,63.0,60.0,71.0,46.0,58.0,28.0,48.0,43.0,41.0,42.0,50.0,46.0,53.0,50.0,44.0,43.0,59.0,60.0,48.0,63.0,68.0,48.0,71.0,64.0,67.0,76.0,64.0,66.0,59.0,72.0,53.0,58.0,48.0,66.0,67.0,53.0,49.0,34.0,59.0,56.0,52.0,59.0,56.0,50.0,55.0,53.0,62.0,60.0,38.0,36.0,57.0,56.0,42.0,47.0,49.0,50.0,37.0,39.0,32.0,29.0,40.0,46.0,44.0,31.0,22.0,30.0,27.0,13.0,15.0,17.0,20.0,20.0,10.0,12.0,15.0,10.0,11.0,7.0,3.0,4.0,8.0 P86011,30.0,39.0,29.0,36.0,35.0,48.0,44.0,36.0,61.0,56.0,58.0,43.0,61.0,53.0,43.0,50.0,54.0,48.0,36.0,54.0,39.0,45.0,39.0,28.0,43.0,53.0,48.0,46.0,44.0,39.0,54.0,55.0,59.0,61.0,69.0,56.0,51.0,59.0,48.0,59.0,44.0,57.0,55.0,53.0,47.0,56.0,48.0,55.0,34.0,49.0,40.0,54.0,49.0,58.0,52.0,58.0,48.0,54.0,61.0,67.0,62.0,58.0,78.0,49.0,52.0,49.0,48.0,56.0,47.0,54.0,49.0,47.0,48.0,54.0,60.0,46.0,41.0,56.0,50.0,33.0,28.0,22.0,36.0,19.0,22.0,17.0,23.0,19.0,13.0,8.0,9.0,6.0,5.0,3.0,1.0,12.0 P86012,45.0,61.0,52.0,64.0,53.0,54.0,59.0,58.0,74.0,54.0,68.0,67.0,78.0,74.0,76.0,75.0,58.0,71.0,71.0,39.0,44.0,53.0,38.0,38.0,35.0,34.0,47.0,53.0,62.0,56.0,53.0,55.0,74.0,75.0,81.0,78.0,79.0,71.0,71.0,75.0,87.0,86.0,81.0,75.0,82.0,64.0,65.0,50.0,33.0,50.0,56.0,44.0,53.0,50.0,54.0,47.0,47.0,48.0,48.0,54.0,59.0,37.0,46.0,45.0,60.0,35.0,45.0,47.0,41.0,32.0,39.0,45.0,33.0,34.0,23.0,28.0,25.0,21.0,29.0,21.0,22.0,12.0,18.0,14.0,12.0,20.0,17.0,4.0,6.0,6.0,4.0,3.0,3.0,4.0,2.0,7.0 P86013,27.0,20.0,18.0,26.0,26.0,40.0,36.0,36.0,28.0,37.0,32.0,51.0,40.0,48.0,44.0,43.0,51.0,50.0,36.0,33.0,31.0,34.0,36.0,23.0,28.0,33.0,33.0,32.0,41.0,32.0,23.0,29.0,37.0,36.0,37.0,46.0,39.0,47.0,41.0,48.0,40.0,41.0,37.0,36.0,50.0,43.0,51.0,42.0,34.0,38.0,29.0,38.0,45.0,47.0,52.0,41.0,40.0,44.0,36.0,28.0,30.0,33.0,38.0,28.0,36.0,38.0,27.0,31.0,35.0,39.0,22.0,28.0,27.0,28.0,25.0,27.0,26.0,21.0,29.0,26.0,19.0,23.0,14.0,12.0,9.0,13.0,10.0,6.0,8.0,5.0,2.0,2.0,1.0,4.0,5.0,6.0 P86014,46.0,48.0,54.0,50.0,54.0,58.0,45.0,56.0,57.0,71.0,67.0,73.0,55.0,65.0,64.0,56.0,65.0,56.0,61.0,65.0,61.0,70.0,61.0,58.0,63.0,67.0,59.0,67.0,56.0,61.0,48.0,54.0,48.0,53.0,53.0,49.0,62.0,63.0,62.0,68.0,52.0,56.0,68.0,53.0,66.0,57.0,50.0,40.0,49.0,42.0,35.0,33.0,44.0,37.0,29.0,34.0,40.0,28.0,30.0,26.0,24.0,19.0,23.0,22.0,24.0,27.0,30.0,33.0,23.0,22.0,24.0,17.0,22.0,15.0,13.0,17.0,19.0,6.0,9.0,11.0,8.0,11.0,4.0,7.0,8.0,3.0,5.0,3.0,,9.0,3.0,1.0,2.0,2.0,,2.0 P86015,33.0,43.0,26.0,30.0,48.0,42.0,40.0,43.0,41.0,38.0,25.0,29.0,36.0,30.0,38.0,38.0,34.0,33.0,37.0,37.0,33.0,31.0,37.0,36.0,42.0,39.0,43.0,61.0,45.0,39.0,46.0,61.0,62.0,34.0,46.0,53.0,48.0,47.0,43.0,40.0,37.0,56.0,56.0,37.0,35.0,43.0,32.0,40.0,32.0,29.0,35.0,27.0,27.0,25.0,27.0,27.0,23.0,35.0,34.0,31.0,36.0,25.0,24.0,34.0,27.0,34.0,33.0,24.0,25.0,24.0,31.0,26.0,20.0,17.0,21.0,13.0,23.0,19.0,15.0,12.0,9.0,10.0,13.0,8.0,7.0,5.0,10.0,6.0,7.0,9.0,4.0,4.0,3.0,3.0,1.0,3.0 P86016,30.0,34.0,38.0,46.0,48.0,44.0,60.0,45.0,49.0,68.0,66.0,60.0,61.0,52.0,51.0,60.0,51.0,47.0,55.0,47.0,33.0,50.0,36.0,37.0,45.0,57.0,47.0,41.0,54.0,51.0,56.0,68.0,53.0,69.0,83.0,69.0,58.0,80.0,71.0,59.0,68.0,57.0,69.0,50.0,62.0,64.0,47.0,48.0,42.0,52.0,46.0,51.0,49.0,51.0,51.0,46.0,63.0,49.0,60.0,69.0,55.0,45.0,68.0,59.0,49.0,52.0,51.0,52.0,38.0,47.0,37.0,44.0,25.0,34.0,38.0,29.0,31.0,38.0,27.0,17.0,23.0,18.0,11.0,17.0,15.0,12.0,12.0,17.0,9.0,14.0,9.0,11.0,8.0,4.0,3.0,11.0 P86017,34.0,34.0,23.0,39.0,32.0,36.0,35.0,42.0,29.0,40.0,38.0,28.0,44.0,36.0,29.0,43.0,43.0,45.0,47.0,41.0,41.0,45.0,40.0,40.0,39.0,37.0,35.0,44.0,57.0,36.0,38.0,29.0,41.0,21.0,21.0,46.0,38.0,41.0,41.0,31.0,44.0,26.0,26.0,38.0,40.0,36.0,34.0,22.0,32.0,24.0,23.0,19.0,25.0,18.0,21.0,18.0,15.0,16.0,13.0,12.0,10.0,14.0,15.0,15.0,19.0,9.0,10.0,17.0,21.0,9.0,8.0,8.0,14.0,8.0,8.0,7.0,4.0,3.0,5.0,8.0,2.0,6.0,6.0,6.0,7.0,4.0,3.0,5.0,1.0,3.0,2.0,2.0,,,,2.0 P86018,34.0,33.0,31.0,38.0,36.0,50.0,54.0,49.0,52.0,47.0,46.0,58.0,60.0,62.0,52.0,54.0,53.0,50.0,43.0,39.0,39.0,32.0,28.0,36.0,34.0,47.0,49.0,61.0,46.0,59.0,52.0,47.0,41.0,54.0,49.0,51.0,53.0,62.0,53.0,55.0,72.0,64.0,46.0,54.0,72.0,54.0,64.0,47.0,47.0,56.0,55.0,58.0,54.0,73.0,57.0,59.0,66.0,49.0,57.0,83.0,71.0,65.0,51.0,58.0,53.0,41.0,51.0,59.0,46.0,39.0,40.0,51.0,59.0,45.0,55.0,50.0,58.0,48.0,58.0,43.0,40.0,42.0,43.0,31.0,25.0,26.0,20.0,14.0,15.0,4.0,4.0,10.0,10.0,6.0,1.0,25.0 P86019,45.0,42.0,50.0,60.0,54.0,52.0,56.0,36.0,71.0,39.0,60.0,60.0,39.0,64.0,67.0,58.0,58.0,47.0,60.0,50.0,50.0,45.0,37.0,45.0,51.0,65.0,76.0,63.0,67.0,46.0,59.0,56.0,70.0,75.0,79.0,65.0,57.0,73.0,72.0,67.0,73.0,64.0,50.0,65.0,71.0,78.0,70.0,48.0,56.0,52.0,58.0,59.0,60.0,59.0,69.0,74.0,69.0,53.0,70.0,73.0,63.0,78.0,57.0,69.0,54.0,60.0,58.0,76.0,49.0,55.0,48.0,64.0,60.0,47.0,54.0,55.0,37.0,53.0,40.0,36.0,39.0,24.0,31.0,18.0,27.0,19.0,17.0,25.0,18.0,11.0,19.0,9.0,5.0,8.0,6.0,20.0 P86021,25.0,11.0,24.0,13.0,13.0,23.0,20.0,15.0,28.0,25.0,22.0,21.0,10.0,20.0,16.0,21.0,29.0,15.0,16.0,24.0,17.0,14.0,16.0,12.0,15.0,15.0,22.0,16.0,15.0,20.0,19.0,26.0,22.0,26.0,29.0,29.0,29.0,36.0,22.0,19.0,30.0,19.0,24.0,25.0,25.0,25.0,16.0,22.0,18.0,17.0,19.0,19.0,19.0,28.0,27.0,28.0,17.0,31.0,34.0,23.0,27.0,29.0,26.0,25.0,22.0,19.0,16.0,28.0,21.0,20.0,17.0,17.0,23.0,22.0,28.0,23.0,21.0,26.0,26.0,25.0,21.0,22.0,12.0,10.0,7.0,6.0,15.0,4.0,5.0,6.0,5.0,2.0,2.0,2.0,3.0,5.0 P86022,40.0,32.0,37.0,38.0,43.0,30.0,38.0,51.0,50.0,70.0,40.0,41.0,50.0,58.0,59.0,55.0,61.0,56.0,49.0,42.0,36.0,49.0,49.0,33.0,37.0,37.0,52.0,60.0,52.0,38.0,61.0,68.0,60.0,54.0,61.0,51.0,66.0,56.0,73.0,57.0,45.0,68.0,53.0,42.0,54.0,52.0,45.0,55.0,44.0,42.0,42.0,48.0,67.0,72.0,73.0,79.0,78.0,80.0,64.0,85.0,54.0,77.0,72.0,74.0,74.0,59.0,42.0,61.0,30.0,49.0,43.0,34.0,44.0,41.0,46.0,39.0,41.0,50.0,50.0,37.0,36.0,24.0,27.0,22.0,21.0,13.0,12.0,11.0,12.0,5.0,12.0,7.0,4.0,1.0,4.0,5.0 P86023,44.0,56.0,52.0,55.0,64.0,62.0,69.0,53.0,62.0,54.0,59.0,65.0,71.0,71.0,58.0,45.0,52.0,66.0,49.0,46.0,42.0,48.0,57.0,47.0,61.0,61.0,67.0,66.0,65.0,84.0,64.0,76.0,73.0,84.0,89.0,89.0,79.0,85.0,76.0,85.0,72.0,74.0,68.0,55.0,67.0,72.0,50.0,46.0,59.0,70.0,48.0,45.0,59.0,61.0,65.0,57.0,57.0,61.0,57.0,58.0,53.0,46.0,40.0,52.0,53.0,49.0,41.0,44.0,42.0,43.0,44.0,41.0,44.0,44.0,31.0,44.0,29.0,43.0,44.0,24.0,27.0,22.0,25.0,18.0,17.0,19.0,9.0,15.0,11.0,9.0,9.0,5.0,3.0,4.0,4.0,3.0 P86026,30.0,49.0,34.0,43.0,53.0,47.0,44.0,48.0,49.0,37.0,45.0,53.0,53.0,41.0,60.0,60.0,58.0,40.0,50.0,41.0,47.0,36.0,33.0,44.0,43.0,46.0,39.0,54.0,39.0,42.0,58.0,40.0,53.0,56.0,52.0,46.0,51.0,42.0,68.0,55.0,52.0,50.0,45.0,62.0,48.0,60.0,48.0,47.0,42.0,46.0,48.0,57.0,52.0,47.0,46.0,52.0,49.0,45.0,47.0,50.0,41.0,44.0,40.0,38.0,38.0,36.0,44.0,43.0,35.0,33.0,31.0,39.0,26.0,33.0,33.0,39.0,36.0,41.0,32.0,34.0,29.0,26.0,20.0,29.0,16.0,21.0,13.0,12.0,9.0,10.0,10.0,3.0,8.0,6.0,3.0,7.0 P86602,11.0,13.0,19.0,13.0,18.0,17.0,24.0,17.0,28.0,22.0,25.0,16.0,21.0,31.0,15.0,22.0,20.0,16.0,19.0,19.0,23.0,21.0,15.0,19.0,26.0,17.0,28.0,22.0,13.0,22.0,24.0,21.0,18.0,17.0,31.0,21.0,27.0,19.0,28.0,37.0,27.0,25.0,32.0,17.0,17.0,27.0,17.0,31.0,16.0,13.0,30.0,20.0,26.0,19.0,24.0,29.0,16.0,26.0,35.0,27.0,18.0,20.0,16.0,23.0,31.0,16.0,23.0,22.0,24.0,11.0,19.0,18.0,9.0,11.0,15.0,9.0,13.0,16.0,14.0,7.0,8.0,5.0,6.0,13.0,9.0,9.0,3.0,5.0,5.0,3.0,4.0,2.0,,1.0,1.0,2.0 P86606,24.0,27.0,24.0,22.0,21.0,39.0,25.0,28.0,32.0,35.0,39.0,33.0,38.0,44.0,30.0,29.0,27.0,33.0,44.0,29.0,19.0,24.0,17.0,24.0,20.0,15.0,26.0,31.0,30.0,19.0,33.0,26.0,36.0,30.0,43.0,39.0,26.0,47.0,33.0,39.0,33.0,39.0,36.0,33.0,22.0,26.0,31.0,25.0,19.0,22.0,26.0,17.0,27.0,26.0,31.0,20.0,32.0,20.0,30.0,17.0,24.0,23.0,19.0,23.0,23.0,20.0,23.0,21.0,17.0,15.0,27.0,18.0,18.0,12.0,12.0,15.0,15.0,11.0,16.0,2.0,7.0,4.0,6.0,2.0,3.0,3.0,2.0,1.0,3.0,2.0,,2.0,2.0,1.0,2.0,5.0 P86608,15.0,22.0,13.0,28.0,24.0,18.0,20.0,17.0,20.0,25.0,23.0,31.0,26.0,25.0,20.0,19.0,31.0,25.0,20.0,12.0,15.0,14.0,14.0,17.0,14.0,22.0,22.0,22.0,23.0,19.0,25.0,35.0,41.0,41.0,38.0,33.0,23.0,32.0,30.0,26.0,37.0,26.0,33.0,25.0,32.0,19.0,27.0,22.0,23.0,26.0,24.0,33.0,25.0,24.0,39.0,35.0,47.0,33.0,25.0,33.0,25.0,28.0,34.0,38.0,44.0,31.0,27.0,29.0,21.0,35.0,18.0,25.0,15.0,23.0,17.0,14.0,13.0,23.0,16.0,8.0,18.0,10.0,10.0,11.0,8.0,6.0,4.0,4.0,12.0,4.0,6.0,4.0,1.0,2.0,2.0,7.0 P86609,11.0,18.0,21.0,15.0,15.0,19.0,17.0,17.0,16.0,22.0,17.0,19.0,16.0,24.0,14.0,24.0,28.0,21.0,22.0,20.0,22.0,20.0,11.0,30.0,22.0,25.0,20.0,11.0,26.0,21.0,16.0,20.0,17.0,10.0,17.0,19.0,16.0,18.0,10.0,20.0,16.0,14.0,17.0,20.0,22.0,31.0,21.0,13.0,14.0,9.0,12.0,18.0,17.0,16.0,16.0,7.0,12.0,12.0,11.0,11.0,6.0,6.0,7.0,8.0,10.0,5.0,8.0,3.0,6.0,9.0,9.0,10.0,12.0,5.0,2.0,2.0,6.0,4.0,2.0,1.0,3.0,2.0,4.0,1.0,1.0,1.0,3.0,3.0,2.0,3.0,3.0,,,1.0,,2.0 P86614,24.0,33.0,29.0,31.0,29.0,32.0,34.0,30.0,40.0,35.0,42.0,48.0,50.0,30.0,37.0,53.0,50.0,45.0,44.0,41.0,44.0,33.0,34.0,37.0,43.0,45.0,33.0,28.0,29.0,40.0,34.0,27.0,21.0,29.0,30.0,30.0,35.0,39.0,24.0,41.0,25.0,30.0,42.0,39.0,39.0,41.0,42.0,36.0,31.0,23.0,26.0,20.0,27.0,23.0,19.0,17.0,22.0,19.0,16.0,13.0,21.0,15.0,14.0,11.0,18.0,10.0,15.0,9.0,7.0,10.0,10.0,9.0,12.0,6.0,10.0,6.0,11.0,6.0,6.0,2.0,3.0,1.0,1.0,3.0,2.0,2.0,4.0,2.0,3.0,2.0,1.0,,1.0,1.0,2.0,1.0 P86619,33.0,40.0,41.0,41.0,44.0,49.0,49.0,51.0,50.0,63.0,54.0,62.0,74.0,54.0,64.0,68.0,63.0,54.0,57.0,60.0,52.0,47.0,43.0,45.0,46.0,48.0,45.0,49.0,34.0,32.0,37.0,30.0,26.0,43.0,35.0,38.0,44.0,40.0,48.0,46.0,41.0,46.0,44.0,43.0,61.0,54.0,37.0,52.0,36.0,31.0,31.0,28.0,27.0,28.0,25.0,26.0,27.0,24.0,33.0,20.0,16.0,28.0,16.0,20.0,29.0,21.0,28.0,16.0,19.0,26.0,15.0,13.0,11.0,7.0,6.0,6.0,9.0,7.0,9.0,7.0,6.0,2.0,3.0,4.0,5.0,6.0,2.0,2.0,2.0,1.0,1.0,5.0,1.0,,,2.0 P86620,15.0,20.0,18.0,25.0,24.0,26.0,20.0,20.0,12.0,27.0,30.0,17.0,21.0,28.0,29.0,21.0,24.0,32.0,19.0,23.0,21.0,21.0,10.0,13.0,17.0,19.0,15.0,13.0,23.0,14.0,22.0,21.0,28.0,35.0,22.0,20.0,26.0,25.0,30.0,26.0,20.0,25.0,17.0,22.0,21.0,21.0,14.0,24.0,16.0,14.0,21.0,18.0,14.0,11.0,20.0,15.0,18.0,12.0,17.0,13.0,11.0,12.0,14.0,16.0,11.0,13.0,12.0,12.0,11.0,14.0,10.0,11.0,9.0,7.0,6.0,8.0,12.0,9.0,4.0,6.0,2.0,6.0,7.0,5.0,2.0,1.0,2.0,4.0,2.0,1.0,2.0,,2.0,,,1.0 P86624,15.0,14.0,14.0,15.0,19.0,15.0,19.0,24.0,20.0,20.0,19.0,23.0,16.0,24.0,26.0,33.0,29.0,32.0,20.0,18.0,24.0,25.0,23.0,14.0,19.0,18.0,22.0,15.0,27.0,23.0,21.0,27.0,19.0,24.0,32.0,23.0,28.0,27.0,18.0,33.0,28.0,22.0,31.0,25.0,19.0,30.0,21.0,20.0,31.0,32.0,28.0,29.0,35.0,34.0,41.0,22.0,42.0,36.0,32.0,33.0,30.0,29.0,36.0,23.0,25.0,28.0,27.0,18.0,31.0,25.0,19.0,21.0,25.0,35.0,25.0,23.0,25.0,35.0,38.0,19.0,19.0,15.0,16.0,20.0,10.0,10.0,8.0,8.0,5.0,2.0,3.0,3.0,3.0,1.0,3.0,9.0 P87002,48.0,53.0,47.0,66.0,44.0,53.0,37.0,53.0,50.0,73.0,55.0,66.0,78.0,70.0,73.0,68.0,56.0,59.0,59.0,58.0,61.0,50.0,57.0,63.0,61.0,66.0,56.0,64.0,57.0,67.0,68.0,80.0,75.0,89.0,83.0,90.0,102.0,95.0,77.0,77.0,93.0,75.0,85.0,98.0,89.0,68.0,80.0,79.0,62.0,79.0,72.0,65.0,72.0,75.0,81.0,89.0,100.0,76.0,83.0,78.0,68.0,78.0,77.0,76.0,69.0,63.0,75.0,72.0,59.0,51.0,59.0,47.0,51.0,48.0,54.0,50.0,50.0,59.0,52.0,36.0,35.0,40.0,35.0,34.0,30.0,29.0,27.0,19.0,20.0,14.0,15.0,9.0,8.0,9.0,3.0,5.0 P87004,70.0,68.0,65.0,45.0,46.0,49.0,36.0,53.0,52.0,40.0,36.0,37.0,38.0,35.0,44.0,32.0,36.0,38.0,37.0,62.0,108.0,171.0,229.0,316.0,449.0,462.0,482.0,457.0,365.0,334.0,287.0,252.0,216.0,204.0,170.0,147.0,147.0,98.0,95.0,78.0,79.0,91.0,59.0,55.0,49.0,54.0,57.0,34.0,47.0,33.0,42.0,47.0,46.0,49.0,33.0,38.0,33.0,28.0,34.0,40.0,35.0,41.0,39.0,30.0,28.0,27.0,19.0,28.0,26.0,15.0,7.0,23.0,13.0,14.0,21.0,12.0,11.0,15.0,19.0,8.0,15.0,8.0,8.0,5.0,10.0,6.0,3.0,6.0,7.0,5.0,1.0,,2.0,,1.0,1.0 P87008,48.0,48.0,51.0,58.0,52.0,61.0,52.0,55.0,36.0,41.0,44.0,49.0,53.0,46.0,57.0,43.0,33.0,50.0,40.0,34.0,41.0,47.0,39.0,53.0,48.0,52.0,72.0,61.0,74.0,69.0,80.0,77.0,88.0,81.0,76.0,96.0,87.0,91.0,71.0,63.0,67.0,61.0,53.0,52.0,57.0,51.0,45.0,45.0,45.0,52.0,46.0,47.0,48.0,54.0,48.0,52.0,47.0,60.0,59.0,46.0,46.0,60.0,60.0,50.0,43.0,55.0,43.0,47.0,51.0,37.0,21.0,49.0,37.0,40.0,44.0,33.0,29.0,51.0,46.0,28.0,29.0,36.0,29.0,19.0,16.0,20.0,19.0,8.0,11.0,11.0,15.0,8.0,9.0,4.0,4.0,12.0 P87015,37.0,34.0,37.0,30.0,37.0,32.0,28.0,32.0,44.0,23.0,42.0,31.0,33.0,22.0,37.0,21.0,28.0,24.0,40.0,70.0,73.0,98.0,106.0,125.0,141.0,142.0,129.0,143.0,114.0,126.0,130.0,96.0,117.0,85.0,65.0,71.0,60.0,56.0,48.0,38.0,39.0,41.0,37.0,30.0,33.0,33.0,37.0,29.0,18.0,23.0,27.0,34.0,38.0,33.0,29.0,27.0,34.0,29.0,23.0,27.0,40.0,29.0,20.0,25.0,30.0,20.0,31.0,20.0,18.0,17.0,22.0,15.0,10.0,17.0,18.0,12.0,15.0,19.0,15.0,5.0,14.0,8.0,21.0,13.0,6.0,7.0,5.0,6.0,3.0,6.0,3.0,4.0,3.0,1.0,,3.0 P87016,63.0,55.0,64.0,66.0,69.0,74.0,79.0,72.0,78.0,88.0,69.0,78.0,81.0,75.0,80.0,61.0,77.0,66.0,72.0,53.0,49.0,55.0,52.0,57.0,50.0,62.0,63.0,69.0,68.0,73.0,69.0,85.0,72.0,96.0,97.0,96.0,97.0,113.0,89.0,94.0,114.0,99.0,104.0,94.0,93.0,85.0,103.0,79.0,80.0,79.0,78.0,92.0,106.0,91.0,96.0,98.0,105.0,108.0,98.0,88.0,95.0,85.0,94.0,75.0,94.0,81.0,105.0,81.0,59.0,86.0,68.0,68.0,57.0,48.0,73.0,80.0,80.0,81.0,90.0,51.0,64.0,48.0,61.0,52.0,39.0,41.0,34.0,38.0,33.0,23.0,26.0,14.0,7.0,12.0,7.0,18.0 P87017,20.0,21.0,19.0,18.0,28.0,14.0,26.0,22.0,25.0,34.0,27.0,37.0,29.0,33.0,32.0,26.0,31.0,24.0,21.0,30.0,27.0,26.0,26.0,25.0,22.0,24.0,27.0,29.0,32.0,20.0,32.0,29.0,35.0,39.0,36.0,45.0,43.0,38.0,31.0,34.0,37.0,39.0,33.0,32.0,31.0,20.0,26.0,25.0,24.0,35.0,35.0,30.0,34.0,38.0,35.0,43.0,41.0,39.0,39.0,38.0,34.0,40.0,33.0,35.0,38.0,33.0,35.0,31.0,29.0,24.0,23.0,36.0,30.0,21.0,21.0,32.0,19.0,35.0,28.0,26.0,28.0,7.0,13.0,13.0,18.0,9.0,15.0,7.0,4.0,7.0,5.0,2.0,6.0,5.0,3.0,2.0 P87019,46.0,62.0,59.0,73.0,61.0,73.0,72.0,77.0,94.0,80.0,67.0,80.0,87.0,75.0,70.0,84.0,67.0,64.0,82.0,58.0,57.0,67.0,61.0,56.0,61.0,72.0,86.0,83.0,98.0,104.0,112.0,99.0,106.0,92.0,104.0,113.0,107.0,107.0,89.0,105.0,98.0,103.0,97.0,94.0,92.0,71.0,69.0,64.0,60.0,67.0,72.0,61.0,74.0,83.0,85.0,63.0,73.0,93.0,69.0,86.0,82.0,72.0,68.0,75.0,55.0,67.0,70.0,51.0,55.0,47.0,56.0,54.0,41.0,59.0,68.0,57.0,60.0,67.0,50.0,47.0,29.0,50.0,48.0,32.0,34.0,37.0,25.0,19.0,25.0,20.0,14.0,14.0,7.0,4.0,6.0,10.0 P87020,87.0,78.0,94.0,77.0,85.0,73.0,86.0,96.0,93.0,76.0,86.0,85.0,84.0,90.0,93.0,75.0,71.0,77.0,73.0,78.0,84.0,76.0,79.0,93.0,111.0,99.0,131.0,116.0,123.0,126.0,142.0,141.0,151.0,149.0,151.0,131.0,150.0,125.0,119.0,156.0,117.0,124.0,124.0,92.0,97.0,85.0,83.0,91.0,76.0,95.0,91.0,79.0,92.0,78.0,104.0,100.0,105.0,101.0,83.0,102.0,92.0,95.0,80.0,97.0,82.0,91.0,90.0,74.0,73.0,50.0,66.0,62.0,71.0,58.0,52.0,66.0,56.0,58.0,66.0,45.0,43.0,38.0,24.0,35.0,22.0,33.0,25.0,19.0,16.0,17.0,13.0,10.0,10.0,11.0,9.0,12.0 P87022,7.0,8.0,7.0,4.0,8.0,4.0,7.0,6.0,12.0,9.0,14.0,13.0,17.0,7.0,8.0,13.0,11.0,14.0,13.0,15.0,16.0,10.0,11.0,13.0,12.0,22.0,20.0,15.0,17.0,21.0,18.0,15.0,11.0,12.0,13.0,12.0,21.0,9.0,10.0,24.0,13.0,13.0,8.0,18.0,10.0,13.0,11.0,10.0,6.0,13.0,16.0,12.0,11.0,14.0,14.0,16.0,13.0,17.0,11.0,11.0,9.0,8.0,3.0,16.0,18.0,17.0,5.0,9.0,13.0,11.0,9.0,9.0,10.0,16.0,4.0,4.0,10.0,9.0,11.0,5.0,2.0,7.0,4.0,7.0,2.0,2.0,4.0,4.0,3.0,2.0,1.0,2.0,2.0,2.0,1.0,1.0 P87024,55.0,76.0,72.0,61.0,56.0,75.0,65.0,88.0,76.0,73.0,89.0,71.0,73.0,63.0,80.0,78.0,65.0,69.0,50.0,51.0,72.0,52.0,58.0,83.0,87.0,84.0,106.0,117.0,97.0,138.0,96.0,111.0,121.0,117.0,120.0,107.0,115.0,89.0,91.0,91.0,106.0,101.0,79.0,83.0,71.0,82.0,74.0,65.0,71.0,55.0,54.0,64.0,58.0,61.0,62.0,61.0,61.0,68.0,72.0,54.0,57.0,55.0,47.0,52.0,62.0,59.0,58.0,47.0,40.0,47.0,32.0,32.0,34.0,40.0,24.0,42.0,39.0,36.0,25.0,31.0,25.0,22.0,20.0,17.0,15.0,23.0,15.0,16.0,14.0,8.0,4.0,5.0,2.0,4.0,1.0,10.0 P87025,48.0,56.0,61.0,49.0,59.0,44.0,71.0,58.0,48.0,91.0,64.0,69.0,61.0,75.0,64.0,59.0,67.0,61.0,55.0,59.0,47.0,49.0,51.0,49.0,65.0,54.0,80.0,72.0,88.0,83.0,93.0,73.0,97.0,114.0,97.0,96.0,89.0,86.0,89.0,81.0,102.0,77.0,78.0,72.0,76.0,78.0,69.0,59.0,65.0,62.0,52.0,68.0,57.0,76.0,66.0,58.0,56.0,63.0,61.0,60.0,63.0,54.0,57.0,60.0,42.0,49.0,43.0,40.0,45.0,49.0,40.0,36.0,36.0,33.0,28.0,36.0,32.0,47.0,40.0,23.0,30.0,14.0,23.0,13.0,17.0,17.0,7.0,12.0,5.0,11.0,8.0,5.0,9.0,2.0,3.0,5.0 P87026,74.0,98.0,92.0,100.0,98.0,95.0,99.0,83.0,94.0,116.0,114.0,95.0,110.0,89.0,102.0,94.0,93.0,76.0,82.0,73.0,82.0,95.0,89.0,86.0,96.0,84.0,117.0,109.0,125.0,115.0,114.0,110.0,104.0,109.0,103.0,96.0,100.0,109.0,105.0,85.0,104.0,107.0,94.0,90.0,104.0,85.0,79.0,65.0,69.0,66.0,80.0,63.0,72.0,65.0,63.0,60.0,59.0,71.0,56.0,57.0,76.0,50.0,69.0,62.0,60.0,56.0,38.0,49.0,33.0,41.0,42.0,39.0,38.0,40.0,48.0,38.0,31.0,45.0,40.0,27.0,16.0,17.0,30.0,16.0,13.0,14.0,10.0,12.0,10.0,10.0,6.0,8.0,7.0,1.0,4.0,8.0 P87027,53.0,57.0,53.0,59.0,47.0,61.0,53.0,44.0,61.0,54.0,49.0,70.0,53.0,50.0,56.0,52.0,54.0,66.0,194.0,420.0,500.0,439.0,340.0,320.0,268.0,267.0,257.0,240.0,211.0,215.0,215.0,161.0,181.0,170.0,135.0,123.0,126.0,145.0,120.0,120.0,107.0,128.0,91.0,89.0,88.0,69.0,81.0,52.0,71.0,45.0,53.0,58.0,64.0,57.0,39.0,59.0,55.0,48.0,55.0,41.0,56.0,47.0,64.0,46.0,56.0,47.0,39.0,34.0,44.0,30.0,34.0,30.0,34.0,42.0,25.0,32.0,31.0,37.0,28.0,12.0,19.0,15.0,13.0,12.0,17.0,19.0,9.0,11.0,4.0,8.0,4.0,1.0,2.0,4.0,3.0,8.0 P87028,41.0,53.0,47.0,50.0,73.0,66.0,77.0,75.0,62.0,77.0,51.0,53.0,67.0,67.0,53.0,55.0,67.0,52.0,46.0,52.0,50.0,34.0,30.0,46.0,43.0,51.0,59.0,58.0,74.0,65.0,72.0,84.0,82.0,98.0,98.0,98.0,100.0,93.0,97.0,76.0,90.0,79.0,86.0,89.0,83.0,79.0,64.0,60.0,44.0,61.0,54.0,56.0,58.0,49.0,55.0,63.0,68.0,59.0,54.0,56.0,54.0,68.0,54.0,53.0,43.0,43.0,37.0,37.0,37.0,41.0,50.0,34.0,41.0,25.0,36.0,29.0,32.0,60.0,43.0,33.0,27.0,27.0,31.0,28.0,27.0,11.0,17.0,13.0,16.0,12.0,10.0,8.0,12.0,7.0,3.0,10.0 P87032,41.0,35.0,34.0,32.0,42.0,34.0,35.0,33.0,33.0,42.0,36.0,29.0,32.0,30.0,35.0,29.0,21.0,29.0,36.0,30.0,42.0,25.0,27.0,33.0,44.0,33.0,43.0,48.0,41.0,51.0,71.0,60.0,50.0,54.0,63.0,61.0,49.0,62.0,49.0,45.0,42.0,49.0,47.0,51.0,48.0,42.0,32.0,33.0,24.0,32.0,36.0,23.0,41.0,42.0,44.0,41.0,39.0,35.0,35.0,37.0,37.0,44.0,49.0,37.0,39.0,39.0,40.0,42.0,26.0,26.0,44.0,21.0,24.0,37.0,21.0,15.0,18.0,17.0,23.0,20.0,15.0,17.0,24.0,9.0,14.0,10.0,14.0,9.0,8.0,11.0,8.0,7.0,3.0,7.0,3.0,9.0 P87035,49.0,41.0,52.0,38.0,36.0,52.0,47.0,42.0,47.0,40.0,48.0,45.0,45.0,52.0,39.0,35.0,47.0,33.0,41.0,66.0,73.0,74.0,151.0,208.0,242.0,229.0,211.0,223.0,207.0,161.0,168.0,167.0,155.0,138.0,107.0,117.0,100.0,95.0,93.0,72.0,75.0,59.0,70.0,60.0,59.0,58.0,51.0,62.0,40.0,51.0,41.0,56.0,55.0,49.0,44.0,54.0,47.0,47.0,39.0,36.0,49.0,42.0,33.0,42.0,38.0,25.0,24.0,26.0,27.0,29.0,19.0,23.0,16.0,26.0,21.0,27.0,19.0,15.0,22.0,8.0,14.0,16.0,11.0,10.0,8.0,6.0,7.0,6.0,9.0,6.0,2.0,,1.0,1.0,, P87040,29.0,41.0,40.0,41.0,31.0,41.0,38.0,45.0,45.0,39.0,54.0,53.0,50.0,44.0,53.0,50.0,53.0,51.0,53.0,48.0,55.0,56.0,45.0,41.0,57.0,58.0,46.0,55.0,61.0,59.0,51.0,59.0,61.0,65.0,71.0,67.0,72.0,51.0,75.0,58.0,60.0,60.0,55.0,45.0,65.0,48.0,46.0,59.0,43.0,52.0,39.0,51.0,54.0,59.0,61.0,48.0,66.0,57.0,76.0,50.0,62.0,78.0,54.0,50.0,45.0,53.0,61.0,47.0,42.0,36.0,41.0,44.0,33.0,34.0,32.0,23.0,23.0,46.0,31.0,19.0,21.0,22.0,15.0,18.0,11.0,12.0,20.0,15.0,13.0,7.0,7.0,6.0,5.0,4.0,5.0,5.0 P87610,59.0,57.0,72.0,66.0,57.0,73.0,76.0,79.0,79.0,84.0,83.0,103.0,70.0,82.0,84.0,95.0,70.0,88.0,82.0,86.0,80.0,58.0,67.0,57.0,74.0,81.0,68.0,70.0,71.0,66.0,108.0,91.0,88.0,106.0,112.0,81.0,109.0,104.0,104.0,89.0,102.0,85.0,84.0,91.0,90.0,82.0,86.0,70.0,72.0,72.0,57.0,72.0,75.0,93.0,73.0,92.0,105.0,89.0,83.0,93.0,89.0,103.0,84.0,80.0,74.0,67.0,48.0,62.0,55.0,57.0,49.0,45.0,44.0,57.0,44.0,55.0,47.0,58.0,56.0,40.0,40.0,40.0,35.0,33.0,36.0,27.0,22.0,19.0,14.0,11.0,11.0,8.0,7.0,1.0,2.0,6.0 P87613,20.0,31.0,34.0,32.0,47.0,37.0,35.0,39.0,42.0,36.0,46.0,43.0,38.0,37.0,45.0,39.0,51.0,41.0,28.0,26.0,19.0,30.0,21.0,19.0,28.0,24.0,35.0,41.0,28.0,34.0,39.0,38.0,49.0,51.0,36.0,42.0,48.0,50.0,34.0,45.0,36.0,46.0,47.0,29.0,37.0,24.0,22.0,23.0,33.0,18.0,25.0,19.0,27.0,18.0,22.0,11.0,17.0,15.0,28.0,17.0,23.0,25.0,16.0,9.0,25.0,19.0,14.0,17.0,23.0,4.0,7.0,12.0,16.0,11.0,11.0,19.0,14.0,13.0,15.0,11.0,10.0,8.0,6.0,1.0,3.0,7.0,5.0,5.0,3.0,2.0,3.0,5.0,2.0,,1.0, P87620,52.0,53.0,47.0,63.0,41.0,46.0,51.0,42.0,52.0,63.0,49.0,57.0,58.0,55.0,60.0,68.0,55.0,44.0,35.0,47.0,42.0,27.0,43.0,45.0,45.0,50.0,47.0,80.0,64.0,69.0,80.0,101.0,93.0,92.0,80.0,86.0,75.0,75.0,94.0,88.0,84.0,81.0,67.0,76.0,80.0,77.0,67.0,47.0,59.0,71.0,62.0,62.0,54.0,73.0,60.0,46.0,62.0,54.0,43.0,62.0,59.0,44.0,46.0,36.0,51.0,49.0,40.0,25.0,29.0,24.0,26.0,29.0,28.0,25.0,20.0,31.0,39.0,24.0,34.0,15.0,25.0,27.0,15.0,17.0,12.0,18.0,12.0,7.0,13.0,11.0,12.0,7.0,7.0,1.0,2.0,6.0 P87624,26.0,27.0,29.0,25.0,42.0,29.0,33.0,33.0,32.0,36.0,31.0,34.0,32.0,24.0,37.0,28.0,23.0,30.0,18.0,23.0,19.0,14.0,17.0,18.0,15.0,20.0,23.0,23.0,23.0,20.0,31.0,36.0,39.0,46.0,42.0,41.0,50.0,42.0,51.0,49.0,49.0,40.0,40.0,48.0,26.0,43.0,24.0,39.0,25.0,31.0,32.0,33.0,28.0,35.0,32.0,36.0,38.0,33.0,37.0,29.0,41.0,30.0,38.0,40.0,39.0,41.0,38.0,42.0,41.0,24.0,22.0,25.0,23.0,20.0,32.0,21.0,25.0,36.0,30.0,26.0,18.0,17.0,15.0,6.0,9.0,8.0,14.0,5.0,7.0,10.0,3.0,3.0,3.0,1.0,1.0,3.0 P87625,11.0,14.0,14.0,13.0,17.0,17.0,18.0,22.0,17.0,16.0,26.0,22.0,17.0,35.0,16.0,17.0,18.0,18.0,18.0,13.0,13.0,20.0,16.0,15.0,20.0,10.0,18.0,25.0,14.0,22.0,23.0,17.0,20.0,29.0,28.0,15.0,21.0,24.0,18.0,23.0,22.0,23.0,23.0,21.0,23.0,11.0,14.0,12.0,12.0,17.0,13.0,12.0,16.0,15.0,17.0,17.0,21.0,14.0,20.0,15.0,18.0,25.0,20.0,11.0,8.0,12.0,10.0,11.0,11.0,10.0,14.0,5.0,7.0,4.0,12.0,8.0,6.0,9.0,9.0,5.0,5.0,1.0,3.0,4.0,3.0,2.0,2.0,1.0,1.0,4.0,,,,,1.0,1.0 P87627,9.0,16.0,21.0,18.0,28.0,22.0,24.0,19.0,25.0,19.0,21.0,17.0,15.0,12.0,18.0,17.0,20.0,24.0,20.0,9.0,11.0,14.0,22.0,16.0,16.0,18.0,23.0,21.0,12.0,25.0,19.0,15.0,31.0,28.0,39.0,25.0,21.0,32.0,37.0,37.0,21.0,15.0,21.0,23.0,30.0,28.0,18.0,23.0,29.0,19.0,23.0,25.0,21.0,29.0,19.0,22.0,22.0,25.0,26.0,24.0,19.0,20.0,22.0,23.0,20.0,22.0,19.0,19.0,22.0,21.0,14.0,8.0,17.0,19.0,21.0,18.0,16.0,17.0,20.0,11.0,11.0,11.0,13.0,5.0,10.0,4.0,4.0,5.0,7.0,2.0,1.0,3.0,2.0,2.0,, P87630,28.0,17.0,24.0,27.0,19.0,17.0,13.0,24.0,26.0,36.0,26.0,20.0,21.0,20.0,38.0,18.0,24.0,19.0,23.0,18.0,21.0,16.0,21.0,22.0,31.0,21.0,18.0,20.0,19.0,25.0,34.0,23.0,29.0,42.0,24.0,32.0,39.0,27.0,28.0,22.0,21.0,30.0,20.0,24.0,15.0,20.0,14.0,19.0,11.0,13.0,15.0,18.0,15.0,16.0,21.0,18.0,17.0,19.0,20.0,17.0,18.0,27.0,14.0,24.0,16.0,16.0,17.0,15.0,28.0,8.0,9.0,12.0,9.0,7.0,5.0,11.0,9.0,9.0,6.0,2.0,4.0,2.0,5.0,1.0,4.0,2.0,2.0,2.0,,1.0,2.0,1.0,2.0,,2.0, P87634,41.0,47.0,46.0,46.0,48.0,55.0,54.0,44.0,44.0,61.0,34.0,60.0,51.0,52.0,51.0,57.0,44.0,45.0,47.0,55.0,53.0,76.0,94.0,98.0,100.0,155.0,129.0,146.0,139.0,132.0,122.0,116.0,118.0,95.0,93.0,106.0,98.0,81.0,61.0,63.0,71.0,85.0,75.0,60.0,68.0,56.0,62.0,51.0,52.0,46.0,52.0,48.0,53.0,46.0,39.0,48.0,45.0,46.0,46.0,54.0,47.0,44.0,55.0,29.0,43.0,38.0,38.0,34.0,34.0,28.0,31.0,32.0,38.0,31.0,23.0,33.0,30.0,19.0,21.0,16.0,21.0,10.0,14.0,6.0,16.0,7.0,9.0,4.0,9.0,7.0,5.0,3.0,2.0,2.0,3.0,4.0 P87639,23.0,20.0,16.0,18.0,15.0,16.0,29.0,22.0,22.0,27.0,17.0,23.0,14.0,21.0,17.0,24.0,20.0,33.0,21.0,16.0,25.0,22.0,44.0,38.0,49.0,53.0,53.0,67.0,52.0,55.0,72.0,57.0,50.0,51.0,35.0,45.0,32.0,40.0,36.0,31.0,23.0,30.0,30.0,34.0,26.0,25.0,23.0,24.0,26.0,18.0,19.0,9.0,20.0,15.0,14.0,10.0,10.0,18.0,17.0,14.0,18.0,13.0,18.0,13.0,14.0,19.0,12.0,15.0,13.0,10.0,13.0,9.0,12.0,5.0,12.0,6.0,4.0,4.0,2.0,2.0,6.0,1.0,5.0,1.0,3.0,1.0,2.0,,,,2.0,,1.0,,, P87648,93.0,98.0,115.0,113.0,100.0,101.0,102.0,87.0,95.0,108.0,90.0,98.0,76.0,89.0,89.0,70.0,82.0,87.0,92.0,117.0,74.0,114.0,100.0,86.0,92.0,105.0,77.0,60.0,54.0,56.0,42.0,46.0,44.0,42.0,37.0,30.0,29.0,33.0,36.0,29.0,31.0,34.0,34.0,32.0,21.0,19.0,16.0,22.0,16.0,12.0,18.0,15.0,10.0,20.0,17.0,13.0,9.0,9.0,8.0,13.0,5.0,11.0,10.0,5.0,11.0,6.0,12.0,5.0,8.0,6.0,4.0,9.0,5.0,9.0,6.0,4.0,4.0,9.0,8.0,8.0,5.0,5.0,2.0,2.0,2.0,1.0,4.0,,2.0,,,2.0,1.0,,,2.0 P87649,34.0,23.0,28.0,28.0,34.0,42.0,40.0,35.0,41.0,31.0,37.0,37.0,35.0,20.0,44.0,31.0,36.0,29.0,34.0,32.0,26.0,32.0,23.0,24.0,39.0,37.0,35.0,49.0,43.0,44.0,43.0,42.0,54.0,51.0,50.0,42.0,58.0,43.0,38.0,42.0,41.0,46.0,45.0,38.0,27.0,44.0,35.0,48.0,17.0,30.0,34.0,37.0,26.0,44.0,48.0,48.0,44.0,39.0,56.0,42.0,41.0,31.0,47.0,36.0,26.0,24.0,43.0,40.0,27.0,22.0,31.0,29.0,27.0,21.0,20.0,25.0,22.0,28.0,27.0,22.0,28.0,21.0,19.0,22.0,15.0,13.0,4.0,9.0,9.0,11.0,4.0,3.0,2.0,9.0,3.0,2.0 P87651,39.0,56.0,78.0,63.0,75.0,61.0,75.0,79.0,85.0,94.0,71.0,79.0,60.0,78.0,76.0,64.0,62.0,52.0,51.0,51.0,42.0,40.0,32.0,41.0,42.0,37.0,27.0,31.0,24.0,16.0,24.0,13.0,31.0,25.0,21.0,25.0,21.0,20.0,28.0,16.0,32.0,26.0,18.0,28.0,25.0,19.0,17.0,17.0,9.0,18.0,17.0,10.0,21.0,13.0,15.0,6.0,12.0,7.0,6.0,3.0,3.0,8.0,7.0,6.0,10.0,8.0,8.0,5.0,6.0,6.0,7.0,5.0,5.0,5.0,6.0,4.0,4.0,7.0,8.0,5.0,1.0,2.0,,2.0,1.0,4.0,,2.0,4.0,,3.0,,2.0,,2.0,2.0 P87654,65.0,59.0,76.0,70.0,59.0,62.0,66.0,56.0,55.0,65.0,66.0,76.0,81.0,75.0,61.0,72.0,75.0,64.0,61.0,61.0,69.0,66.0,64.0,86.0,99.0,96.0,103.0,103.0,97.0,97.0,115.0,113.0,130.0,130.0,90.0,106.0,89.0,112.0,88.0,100.0,95.0,92.0,94.0,65.0,94.0,80.0,76.0,64.0,54.0,53.0,58.0,44.0,67.0,53.0,41.0,43.0,58.0,52.0,59.0,51.0,48.0,48.0,41.0,55.0,54.0,53.0,56.0,42.0,39.0,31.0,27.0,29.0,22.0,34.0,27.0,30.0,17.0,28.0,26.0,14.0,9.0,14.0,8.0,13.0,14.0,7.0,8.0,5.0,7.0,6.0,8.0,11.0,3.0,,2.0,1.0 P87657,11.0,24.0,21.0,24.0,25.0,17.0,18.0,24.0,19.0,22.0,26.0,28.0,33.0,22.0,29.0,23.0,31.0,20.0,23.0,24.0,20.0,21.0,15.0,25.0,19.0,31.0,29.0,35.0,28.0,37.0,35.0,34.0,33.0,32.0,36.0,28.0,35.0,34.0,32.0,30.0,36.0,29.0,29.0,28.0,29.0,37.0,27.0,17.0,26.0,18.0,24.0,24.0,27.0,27.0,40.0,27.0,31.0,28.0,27.0,33.0,33.0,33.0,29.0,26.0,19.0,16.0,19.0,32.0,18.0,17.0,21.0,19.0,17.0,16.0,9.0,17.0,15.0,26.0,23.0,13.0,17.0,14.0,9.0,11.0,14.0,8.0,5.0,14.0,7.0,3.0,3.0,1.0,2.0,2.0,1.0,1.0 P87658,16.0,13.0,21.0,23.0,24.0,23.0,17.0,23.0,13.0,29.0,19.0,26.0,31.0,19.0,22.0,27.0,16.0,17.0,30.0,24.0,33.0,16.0,23.0,22.0,24.0,30.0,37.0,45.0,39.0,29.0,42.0,47.0,52.0,34.0,35.0,47.0,41.0,29.0,28.0,43.0,33.0,27.0,20.0,26.0,31.0,25.0,17.0,25.0,22.0,16.0,13.0,10.0,11.0,14.0,14.0,17.0,25.0,10.0,16.0,15.0,11.0,7.0,13.0,13.0,15.0,13.0,7.0,17.0,10.0,11.0,15.0,14.0,11.0,9.0,8.0,11.0,7.0,8.0,8.0,5.0,9.0,5.0,5.0,3.0,6.0,1.0,3.0,3.0,5.0,,5.0,,1.0,2.0,1.0,3.0 P87661,10.0,13.0,15.0,19.0,6.0,20.0,20.0,18.0,20.0,24.0,19.0,23.0,32.0,11.0,18.0,23.0,33.0,20.0,19.0,17.0,16.0,14.0,15.0,16.0,16.0,16.0,17.0,15.0,16.0,13.0,16.0,21.0,15.0,18.0,22.0,25.0,15.0,19.0,22.0,13.0,24.0,17.0,24.0,12.0,16.0,16.0,8.0,14.0,21.0,13.0,11.0,12.0,19.0,12.0,17.0,12.0,11.0,11.0,17.0,7.0,13.0,8.0,10.0,7.0,11.0,8.0,10.0,9.0,8.0,5.0,9.0,4.0,5.0,4.0,8.0,2.0,5.0,3.0,6.0,1.0,1.0,3.0,2.0,2.0,,2.0,3.0,1.0,2.0,1.0,3.0,1.0,,,1.0, P88002,21.0,25.0,22.0,23.0,31.0,27.0,41.0,24.0,26.0,28.0,37.0,28.0,33.0,34.0,40.0,43.0,30.0,41.0,31.0,23.0,24.0,23.0,26.0,37.0,20.0,21.0,24.0,21.0,19.0,27.0,23.0,31.0,27.0,34.0,18.0,32.0,32.0,33.0,31.0,39.0,45.0,48.0,53.0,28.0,33.0,43.0,29.0,34.0,36.0,41.0,44.0,41.0,43.0,38.0,42.0,56.0,50.0,43.0,46.0,42.0,59.0,52.0,53.0,50.0,55.0,60.0,41.0,54.0,47.0,51.0,48.0,46.0,37.0,30.0,40.0,53.0,38.0,50.0,44.0,29.0,33.0,37.0,34.0,31.0,19.0,22.0,23.0,18.0,15.0,13.0,15.0,5.0,9.0,6.0,5.0,11.0 P88003,45.0,46.0,45.0,50.0,38.0,44.0,50.0,47.0,57.0,51.0,52.0,53.0,54.0,56.0,50.0,51.0,46.0,55.0,41.0,40.0,28.0,33.0,45.0,52.0,58.0,57.0,75.0,73.0,100.0,96.0,63.0,91.0,97.0,94.0,117.0,93.0,87.0,74.0,55.0,71.0,82.0,71.0,61.0,50.0,66.0,54.0,51.0,47.0,52.0,59.0,52.0,55.0,37.0,49.0,43.0,58.0,63.0,66.0,75.0,75.0,64.0,62.0,61.0,49.0,58.0,41.0,56.0,56.0,41.0,42.0,48.0,48.0,54.0,38.0,35.0,45.0,30.0,42.0,47.0,17.0,32.0,29.0,31.0,36.0,25.0,31.0,22.0,21.0,14.0,9.0,6.0,19.0,9.0,7.0,4.0,12.0 P88005,57.0,45.0,59.0,54.0,46.0,70.0,70.0,52.0,59.0,74.0,63.0,79.0,77.0,60.0,80.0,57.0,69.0,74.0,62.0,50.0,61.0,54.0,61.0,60.0,54.0,75.0,77.0,81.0,78.0,89.0,90.0,94.0,92.0,100.0,109.0,94.0,108.0,87.0,87.0,109.0,70.0,78.0,74.0,64.0,62.0,68.0,78.0,68.0,62.0,63.0,79.0,84.0,66.0,77.0,71.0,84.0,63.0,76.0,83.0,89.0,69.0,73.0,80.0,89.0,56.0,66.0,58.0,54.0,59.0,63.0,45.0,52.0,52.0,31.0,52.0,40.0,47.0,51.0,33.0,37.0,39.0,37.0,32.0,31.0,35.0,21.0,17.0,25.0,22.0,10.0,9.0,11.0,6.0,10.0,3.0,12.0 P88006,49.0,51.0,72.0,47.0,56.0,68.0,50.0,65.0,65.0,59.0,71.0,68.0,82.0,51.0,65.0,52.0,70.0,66.0,49.0,43.0,41.0,50.0,42.0,44.0,51.0,60.0,57.0,51.0,51.0,59.0,64.0,64.0,81.0,84.0,82.0,87.0,75.0,78.0,83.0,77.0,90.0,74.0,72.0,79.0,91.0,68.0,68.0,85.0,72.0,66.0,66.0,51.0,86.0,77.0,80.0,70.0,63.0,85.0,84.0,77.0,96.0,68.0,72.0,87.0,78.0,76.0,69.0,80.0,59.0,70.0,72.0,73.0,72.0,64.0,65.0,66.0,65.0,74.0,76.0,52.0,64.0,47.0,60.0,45.0,41.0,48.0,21.0,35.0,21.0,32.0,11.0,8.0,9.0,14.0,17.0,28.0 P88007,58.0,58.0,61.0,76.0,80.0,73.0,83.0,77.0,81.0,102.0,114.0,107.0,136.0,78.0,100.0,102.0,74.0,83.0,54.0,48.0,47.0,57.0,60.0,50.0,66.0,59.0,65.0,65.0,63.0,52.0,68.0,71.0,68.0,96.0,104.0,92.0,104.0,102.0,93.0,87.0,119.0,122.0,124.0,140.0,125.0,131.0,113.0,124.0,103.0,88.0,89.0,95.0,99.0,95.0,80.0,91.0,95.0,94.0,100.0,97.0,106.0,81.0,95.0,88.0,89.0,85.0,101.0,87.0,68.0,69.0,77.0,69.0,76.0,74.0,62.0,81.0,83.0,74.0,93.0,65.0,48.0,58.0,55.0,48.0,47.0,40.0,38.0,38.0,41.0,28.0,28.0,18.0,25.0,9.0,9.0,25.0 P88008,33.0,39.0,44.0,48.0,38.0,54.0,50.0,41.0,54.0,55.0,44.0,50.0,54.0,46.0,39.0,47.0,47.0,49.0,41.0,26.0,35.0,40.0,33.0,33.0,39.0,45.0,57.0,44.0,56.0,43.0,61.0,61.0,64.0,63.0,61.0,59.0,56.0,69.0,72.0,59.0,70.0,74.0,66.0,70.0,72.0,65.0,60.0,57.0,43.0,53.0,42.0,53.0,63.0,40.0,58.0,61.0,57.0,55.0,70.0,55.0,58.0,62.0,51.0,48.0,55.0,49.0,47.0,53.0,42.0,42.0,44.0,45.0,55.0,44.0,44.0,42.0,49.0,41.0,38.0,30.0,38.0,23.0,26.0,19.0,22.0,23.0,27.0,18.0,22.0,18.0,6.0,8.0,8.0,9.0,4.0,12.0 P88009,16.0,9.0,14.0,13.0,15.0,19.0,17.0,15.0,18.0,14.0,12.0,13.0,14.0,18.0,16.0,13.0,16.0,16.0,17.0,9.0,9.0,8.0,8.0,14.0,12.0,7.0,18.0,12.0,18.0,20.0,23.0,24.0,29.0,31.0,28.0,21.0,23.0,27.0,20.0,17.0,27.0,22.0,18.0,26.0,13.0,17.0,16.0,23.0,14.0,10.0,16.0,18.0,23.0,20.0,14.0,18.0,20.0,20.0,16.0,18.0,21.0,15.0,19.0,30.0,21.0,16.0,11.0,14.0,20.0,11.0,14.0,14.0,12.0,14.0,18.0,11.0,13.0,12.0,18.0,10.0,16.0,12.0,6.0,16.0,8.0,7.0,7.0,4.0,9.0,1.0,2.0,2.0,4.0,3.0,4.0,6.0 P88011,43.0,40.0,53.0,54.0,50.0,58.0,50.0,64.0,80.0,60.0,51.0,58.0,54.0,78.0,48.0,46.0,73.0,53.0,58.0,42.0,52.0,33.0,66.0,68.0,49.0,57.0,55.0,57.0,75.0,81.0,79.0,99.0,96.0,99.0,91.0,69.0,93.0,85.0,78.0,92.0,77.0,73.0,70.0,60.0,53.0,68.0,49.0,56.0,55.0,62.0,65.0,56.0,73.0,74.0,64.0,41.0,64.0,64.0,70.0,74.0,83.0,66.0,69.0,66.0,72.0,74.0,44.0,43.0,58.0,56.0,44.0,35.0,40.0,44.0,47.0,41.0,46.0,49.0,53.0,32.0,35.0,27.0,24.0,22.0,19.0,22.0,21.0,14.0,9.0,15.0,7.0,10.0,9.0,3.0,1.0,6.0 P88012,26.0,37.0,31.0,34.0,45.0,26.0,38.0,37.0,34.0,36.0,34.0,41.0,35.0,40.0,49.0,41.0,38.0,44.0,46.0,39.0,25.0,39.0,34.0,35.0,36.0,39.0,43.0,42.0,46.0,46.0,44.0,41.0,61.0,56.0,59.0,53.0,49.0,49.0,41.0,51.0,55.0,39.0,50.0,45.0,46.0,39.0,43.0,35.0,44.0,42.0,54.0,51.0,46.0,57.0,50.0,51.0,64.0,51.0,58.0,47.0,63.0,61.0,43.0,50.0,71.0,46.0,50.0,52.0,46.0,48.0,35.0,62.0,38.0,37.0,54.0,42.0,42.0,46.0,51.0,42.0,46.0,44.0,34.0,34.0,26.0,34.0,23.0,22.0,34.0,12.0,16.0,10.0,13.0,14.0,13.0,17.0 P88013,37.0,50.0,60.0,67.0,47.0,60.0,54.0,68.0,52.0,66.0,76.0,72.0,75.0,89.0,62.0,78.0,63.0,80.0,74.0,77.0,60.0,50.0,47.0,45.0,55.0,53.0,59.0,59.0,52.0,69.0,79.0,70.0,66.0,96.0,101.0,91.0,85.0,95.0,85.0,83.0,85.0,88.0,102.0,89.0,89.0,81.0,83.0,78.0,73.0,74.0,78.0,82.0,67.0,83.0,91.0,89.0,93.0,83.0,104.0,75.0,91.0,103.0,108.0,106.0,108.0,87.0,69.0,69.0,76.0,65.0,60.0,65.0,72.0,63.0,58.0,57.0,56.0,51.0,64.0,42.0,52.0,38.0,48.0,32.0,31.0,22.0,28.0,27.0,22.0,18.0,14.0,21.0,8.0,14.0,10.0,13.0 P88014,17.0,22.0,25.0,27.0,25.0,22.0,32.0,23.0,31.0,33.0,24.0,41.0,32.0,22.0,31.0,25.0,29.0,20.0,27.0,30.0,21.0,18.0,27.0,19.0,22.0,21.0,25.0,33.0,25.0,27.0,30.0,27.0,35.0,33.0,36.0,35.0,46.0,42.0,55.0,44.0,24.0,39.0,31.0,34.0,34.0,41.0,27.0,27.0,29.0,26.0,24.0,35.0,37.0,30.0,41.0,33.0,36.0,34.0,34.0,36.0,30.0,42.0,40.0,35.0,40.0,31.0,32.0,17.0,28.0,12.0,20.0,23.0,22.0,32.0,17.0,19.0,21.0,24.0,31.0,22.0,19.0,12.0,11.0,22.0,16.0,11.0,16.0,9.0,7.0,2.0,9.0,5.0,4.0,1.0,3.0,3.0 P88015,37.0,42.0,31.0,43.0,38.0,48.0,59.0,46.0,62.0,81.0,62.0,84.0,75.0,76.0,77.0,74.0,74.0,71.0,67.0,60.0,44.0,52.0,48.0,37.0,48.0,56.0,59.0,51.0,60.0,54.0,61.0,65.0,70.0,50.0,60.0,63.0,51.0,61.0,62.0,67.0,61.0,62.0,76.0,80.0,87.0,87.0,95.0,74.0,73.0,62.0,80.0,87.0,88.0,86.0,75.0,89.0,94.0,91.0,64.0,91.0,91.0,88.0,74.0,81.0,87.0,79.0,72.0,75.0,76.0,67.0,71.0,83.0,71.0,63.0,66.0,70.0,66.0,94.0,103.0,73.0,70.0,77.0,66.0,56.0,50.0,48.0,51.0,52.0,46.0,33.0,37.0,22.0,17.0,12.0,7.0,36.0 P88016,61.0,46.0,41.0,52.0,57.0,74.0,73.0,55.0,100.0,97.0,104.0,88.0,91.0,78.0,95.0,72.0,94.0,82.0,76.0,72.0,54.0,63.0,61.0,58.0,58.0,91.0,62.0,63.0,67.0,72.0,85.0,92.0,88.0,95.0,103.0,115.0,94.0,101.0,107.0,103.0,98.0,90.0,98.0,102.0,114.0,92.0,103.0,97.0,86.0,98.0,95.0,76.0,98.0,116.0,114.0,97.0,100.0,95.0,82.0,100.0,88.0,79.0,99.0,75.0,74.0,95.0,62.0,69.0,64.0,66.0,64.0,62.0,37.0,72.0,42.0,64.0,51.0,72.0,56.0,54.0,48.0,60.0,31.0,39.0,30.0,35.0,33.0,24.0,28.0,23.0,19.0,19.0,13.0,17.0,8.0,27.0 P88017,28.0,17.0,34.0,29.0,24.0,29.0,34.0,32.0,31.0,40.0,33.0,25.0,30.0,38.0,32.0,31.0,37.0,31.0,33.0,30.0,22.0,22.0,24.0,18.0,23.0,30.0,29.0,32.0,33.0,30.0,45.0,24.0,19.0,38.0,40.0,36.0,36.0,36.0,27.0,43.0,57.0,41.0,46.0,47.0,44.0,48.0,41.0,35.0,27.0,31.0,34.0,46.0,30.0,59.0,57.0,30.0,55.0,40.0,51.0,58.0,62.0,41.0,42.0,51.0,46.0,39.0,32.0,44.0,35.0,46.0,52.0,49.0,37.0,42.0,39.0,42.0,50.0,66.0,55.0,37.0,53.0,43.0,26.0,23.0,25.0,29.0,22.0,23.0,25.0,24.0,18.0,11.0,10.0,7.0,3.0,18.0 P88018,49.0,44.0,55.0,59.0,67.0,54.0,59.0,61.0,61.0,75.0,76.0,58.0,67.0,71.0,87.0,72.0,60.0,65.0,51.0,51.0,51.0,42.0,53.0,52.0,62.0,64.0,64.0,79.0,78.0,73.0,70.0,90.0,85.0,97.0,113.0,93.0,111.0,95.0,87.0,83.0,80.0,103.0,72.0,65.0,76.0,69.0,57.0,72.0,58.0,65.0,60.0,53.0,51.0,64.0,66.0,71.0,52.0,57.0,72.0,55.0,47.0,70.0,63.0,66.0,55.0,54.0,57.0,44.0,58.0,49.0,54.0,35.0,41.0,28.0,29.0,39.0,40.0,35.0,45.0,34.0,37.0,28.0,23.0,14.0,25.0,21.0,13.0,16.0,13.0,11.0,5.0,7.0,2.0,5.0,4.0,7.0 P88019,27.0,17.0,27.0,31.0,39.0,32.0,32.0,27.0,42.0,36.0,43.0,31.0,39.0,43.0,27.0,32.0,35.0,30.0,30.0,26.0,27.0,28.0,22.0,18.0,31.0,28.0,25.0,28.0,33.0,22.0,36.0,34.0,39.0,45.0,53.0,43.0,49.0,42.0,37.0,40.0,27.0,51.0,34.0,55.0,41.0,38.0,37.0,38.0,41.0,39.0,23.0,47.0,32.0,42.0,46.0,38.0,34.0,40.0,39.0,30.0,31.0,24.0,23.0,22.0,26.0,29.0,15.0,30.0,33.0,14.0,24.0,35.0,31.0,31.0,24.0,28.0,27.0,39.0,36.0,23.0,21.0,20.0,25.0,24.0,20.0,15.0,12.0,16.0,9.0,7.0,5.0,5.0,2.0,8.0,4.0,9.0 P88020,52.0,49.0,60.0,44.0,68.0,54.0,64.0,73.0,54.0,69.0,70.0,63.0,76.0,73.0,78.0,70.0,80.0,58.0,66.0,50.0,50.0,40.0,53.0,60.0,54.0,72.0,65.0,66.0,71.0,92.0,84.0,89.0,88.0,101.0,98.0,75.0,84.0,74.0,88.0,91.0,68.0,106.0,109.0,77.0,94.0,86.0,69.0,77.0,81.0,75.0,75.0,72.0,77.0,91.0,80.0,70.0,81.0,71.0,63.0,64.0,76.0,69.0,58.0,60.0,63.0,60.0,67.0,72.0,59.0,59.0,55.0,67.0,53.0,49.0,53.0,74.0,46.0,66.0,57.0,43.0,44.0,42.0,38.0,35.0,31.0,34.0,34.0,34.0,26.0,23.0,30.0,20.0,13.0,7.0,6.0,18.0 P88021,16.0,21.0,28.0,29.0,28.0,41.0,43.0,40.0,28.0,36.0,38.0,41.0,37.0,32.0,37.0,38.0,39.0,27.0,35.0,27.0,18.0,24.0,24.0,30.0,23.0,26.0,36.0,29.0,26.0,26.0,30.0,31.0,41.0,44.0,45.0,42.0,43.0,39.0,40.0,56.0,55.0,45.0,47.0,51.0,36.0,34.0,37.0,45.0,38.0,41.0,43.0,44.0,35.0,50.0,36.0,44.0,47.0,55.0,55.0,48.0,54.0,44.0,50.0,55.0,31.0,41.0,52.0,31.0,48.0,48.0,33.0,33.0,46.0,50.0,56.0,46.0,42.0,54.0,48.0,38.0,48.0,36.0,32.0,27.0,22.0,27.0,23.0,22.0,26.0,14.0,14.0,12.0,8.0,8.0,7.0,25.0 P88023,38.0,43.0,48.0,41.0,48.0,47.0,46.0,60.0,53.0,55.0,51.0,54.0,41.0,52.0,57.0,58.0,55.0,57.0,30.0,48.0,35.0,33.0,36.0,49.0,44.0,37.0,29.0,36.0,38.0,36.0,55.0,47.0,48.0,52.0,52.0,59.0,50.0,66.0,58.0,61.0,65.0,63.0,54.0,68.0,54.0,67.0,58.0,55.0,42.0,31.0,29.0,32.0,48.0,43.0,27.0,38.0,44.0,39.0,31.0,45.0,39.0,34.0,32.0,41.0,41.0,32.0,26.0,30.0,32.0,19.0,40.0,40.0,38.0,45.0,41.0,31.0,50.0,36.0,35.0,24.0,24.0,22.0,23.0,17.0,19.0,17.0,22.0,25.0,17.0,17.0,7.0,11.0,7.0,8.0,1.0,14.0 P88024,46.0,54.0,44.0,58.0,71.0,55.0,66.0,51.0,70.0,47.0,67.0,67.0,71.0,63.0,67.0,66.0,61.0,75.0,54.0,41.0,55.0,26.0,35.0,54.0,38.0,55.0,43.0,49.0,58.0,59.0,63.0,54.0,55.0,65.0,67.0,76.0,61.0,68.0,64.0,85.0,93.0,73.0,87.0,71.0,81.0,61.0,80.0,71.0,64.0,67.0,64.0,69.0,50.0,65.0,83.0,63.0,55.0,65.0,64.0,64.0,54.0,65.0,64.0,66.0,59.0,55.0,67.0,58.0,64.0,52.0,49.0,46.0,45.0,56.0,59.0,45.0,51.0,56.0,45.0,47.0,46.0,55.0,44.0,35.0,23.0,26.0,27.0,21.0,18.0,12.0,22.0,13.0,9.0,12.0,12.0,22.0 P88025,21.0,23.0,28.0,37.0,43.0,38.0,49.0,57.0,57.0,62.0,75.0,77.0,84.0,72.0,70.0,62.0,67.0,53.0,54.0,43.0,53.0,47.0,36.0,42.0,38.0,47.0,40.0,34.0,41.0,41.0,41.0,35.0,48.0,53.0,44.0,59.0,60.0,71.0,69.0,58.0,82.0,86.0,79.0,69.0,68.0,89.0,79.0,87.0,72.0,77.0,73.0,65.0,78.0,65.0,57.0,69.0,93.0,87.0,69.0,75.0,69.0,70.0,71.0,65.0,75.0,71.0,69.0,57.0,61.0,55.0,60.0,59.0,71.0,51.0,55.0,60.0,58.0,73.0,79.0,45.0,57.0,50.0,44.0,32.0,36.0,27.0,23.0,19.0,23.0,18.0,17.0,14.0,16.0,11.0,6.0,19.0 P88026,227.0,299.0,304.0,323.0,323.0,297.0,313.0,318.0,328.0,319.0,325.0,317.0,344.0,336.0,328.0,325.0,332.0,317.0,252.0,228.0,252.0,225.0,223.0,236.0,283.0,295.0,309.0,317.0,382.0,370.0,344.0,372.0,454.0,427.0,478.0,468.0,478.0,546.0,443.0,424.0,432.0,409.0,410.0,425.0,425.0,448.0,381.0,336.0,348.0,342.0,325.0,324.0,378.0,364.0,327.0,318.0,360.0,309.0,352.0,350.0,328.0,332.0,310.0,314.0,317.0,272.0,273.0,257.0,248.0,232.0,212.0,207.0,234.0,199.0,200.0,185.0,179.0,201.0,204.0,139.0,125.0,149.0,121.0,90.0,86.0,84.0,98.0,87.0,66.0,71.0,53.0,40.0,38.0,25.0,27.0,57.0 P88031,25.0,31.0,36.0,29.0,29.0,23.0,34.0,29.0,27.0,32.0,31.0,28.0,21.0,36.0,25.0,29.0,30.0,32.0,28.0,29.0,20.0,29.0,22.0,32.0,36.0,34.0,26.0,37.0,40.0,37.0,43.0,45.0,45.0,67.0,54.0,52.0,51.0,54.0,59.0,46.0,60.0,40.0,52.0,34.0,36.0,36.0,40.0,35.0,41.0,40.0,38.0,35.0,36.0,35.0,42.0,56.0,37.0,46.0,45.0,49.0,41.0,35.0,43.0,38.0,29.0,32.0,39.0,42.0,23.0,31.0,25.0,20.0,19.0,17.0,29.0,23.0,28.0,19.0,25.0,24.0,18.0,20.0,23.0,11.0,15.0,16.0,12.0,10.0,5.0,6.0,12.0,3.0,3.0,3.0,1.0,10.0 P88041,39.0,53.0,46.0,52.0,57.0,64.0,54.0,57.0,60.0,53.0,56.0,59.0,43.0,49.0,45.0,44.0,47.0,42.0,47.0,22.0,30.0,39.0,44.0,39.0,29.0,30.0,38.0,28.0,32.0,39.0,37.0,42.0,52.0,55.0,63.0,67.0,64.0,75.0,67.0,71.0,72.0,75.0,72.0,75.0,60.0,73.0,55.0,45.0,59.0,48.0,58.0,64.0,58.0,66.0,46.0,44.0,48.0,53.0,67.0,55.0,40.0,50.0,57.0,56.0,50.0,43.0,62.0,44.0,41.0,43.0,46.0,52.0,49.0,27.0,46.0,34.0,45.0,40.0,50.0,29.0,53.0,28.0,30.0,27.0,22.0,25.0,17.0,22.0,24.0,25.0,16.0,4.0,14.0,4.0,12.0,15.0 P88042,30.0,32.0,38.0,42.0,39.0,50.0,40.0,35.0,58.0,45.0,50.0,54.0,52.0,45.0,36.0,49.0,42.0,48.0,42.0,27.0,32.0,32.0,44.0,28.0,33.0,35.0,33.0,43.0,44.0,39.0,39.0,38.0,43.0,51.0,44.0,49.0,54.0,61.0,45.0,62.0,63.0,41.0,51.0,51.0,51.0,43.0,40.0,51.0,34.0,33.0,35.0,28.0,36.0,48.0,34.0,42.0,47.0,39.0,37.0,29.0,39.0,41.0,41.0,36.0,36.0,36.0,32.0,41.0,25.0,43.0,40.0,35.0,30.0,29.0,31.0,29.0,33.0,49.0,42.0,24.0,20.0,31.0,25.0,14.0,24.0,23.0,21.0,20.0,19.0,23.0,15.0,13.0,9.0,8.0,7.0,9.0 P88043,59.0,59.0,64.0,66.0,74.0,49.0,79.0,77.0,68.0,86.0,67.0,78.0,81.0,73.0,55.0,79.0,53.0,53.0,62.0,54.0,51.0,68.0,60.0,44.0,56.0,53.0,74.0,69.0,78.0,60.0,64.0,88.0,89.0,91.0,91.0,91.0,85.0,101.0,80.0,83.0,81.0,50.0,69.0,80.0,64.0,62.0,64.0,33.0,49.0,40.0,45.0,41.0,61.0,68.0,41.0,54.0,53.0,58.0,42.0,59.0,58.0,52.0,48.0,55.0,36.0,44.0,33.0,35.0,30.0,29.0,29.0,22.0,23.0,25.0,21.0,22.0,29.0,26.0,22.0,18.0,19.0,14.0,18.0,21.0,11.0,12.0,15.0,15.0,16.0,11.0,10.0,13.0,11.0,9.0,16.0,15.0 P88044,24.0,33.0,23.0,28.0,25.0,21.0,27.0,20.0,28.0,23.0,31.0,26.0,31.0,33.0,30.0,32.0,34.0,37.0,24.0,25.0,28.0,18.0,18.0,26.0,35.0,45.0,38.0,43.0,62.0,48.0,45.0,38.0,52.0,48.0,44.0,48.0,44.0,32.0,42.0,35.0,31.0,30.0,26.0,38.0,29.0,29.0,38.0,28.0,23.0,28.0,25.0,30.0,42.0,32.0,33.0,26.0,27.0,30.0,37.0,39.0,37.0,36.0,26.0,20.0,22.0,29.0,22.0,24.0,21.0,21.0,27.0,23.0,19.0,23.0,25.0,19.0,23.0,31.0,25.0,17.0,22.0,16.0,20.0,13.0,13.0,14.0,14.0,6.0,5.0,10.0,8.0,3.0,1.0,7.0,2.0,5.0 P88606,20.0,25.0,20.0,35.0,28.0,41.0,32.0,41.0,32.0,46.0,37.0,46.0,43.0,37.0,32.0,33.0,39.0,24.0,18.0,27.0,20.0,13.0,27.0,20.0,37.0,35.0,23.0,33.0,36.0,35.0,51.0,44.0,47.0,44.0,69.0,57.0,51.0,69.0,64.0,45.0,42.0,56.0,41.0,28.0,46.0,28.0,42.0,27.0,34.0,25.0,34.0,28.0,44.0,30.0,46.0,33.0,30.0,30.0,35.0,19.0,33.0,32.0,29.0,29.0,38.0,33.0,25.0,24.0,20.0,27.0,25.0,29.0,34.0,21.0,22.0,27.0,26.0,41.0,41.0,34.0,23.0,23.0,19.0,17.0,12.0,13.0,18.0,21.0,19.0,12.0,11.0,10.0,7.0,10.0,4.0,17.0 P88615,17.0,13.0,9.0,19.0,12.0,13.0,12.0,14.0,19.0,18.0,12.0,27.0,13.0,20.0,22.0,14.0,24.0,27.0,18.0,14.0,16.0,20.0,16.0,25.0,22.0,22.0,23.0,26.0,27.0,42.0,26.0,28.0,33.0,21.0,20.0,21.0,19.0,27.0,20.0,20.0,21.0,22.0,25.0,27.0,14.0,17.0,16.0,20.0,22.0,19.0,22.0,12.0,18.0,19.0,23.0,27.0,17.0,19.0,18.0,27.0,22.0,21.0,16.0,11.0,20.0,19.0,14.0,12.0,13.0,12.0,9.0,22.0,14.0,9.0,13.0,13.0,10.0,21.0,7.0,3.0,5.0,6.0,6.0,6.0,3.0,4.0,2.0,1.0,2.0,3.0,2.0,,4.0,1.0,,2.0 P88623,26.0,35.0,33.0,31.0,27.0,23.0,40.0,33.0,26.0,33.0,30.0,37.0,29.0,37.0,38.0,40.0,40.0,38.0,34.0,44.0,32.0,30.0,25.0,38.0,25.0,34.0,39.0,34.0,43.0,38.0,36.0,38.0,47.0,39.0,42.0,34.0,37.0,43.0,40.0,48.0,44.0,51.0,36.0,30.0,47.0,38.0,48.0,39.0,52.0,42.0,44.0,38.0,38.0,72.0,59.0,47.0,56.0,58.0,50.0,65.0,63.0,50.0,78.0,58.0,67.0,57.0,55.0,51.0,48.0,38.0,39.0,42.0,45.0,54.0,53.0,38.0,51.0,55.0,59.0,45.0,41.0,37.0,34.0,25.0,37.0,25.0,27.0,29.0,18.0,16.0,5.0,12.0,14.0,7.0,6.0,14.0 P88625,18.0,32.0,23.0,31.0,36.0,28.0,31.0,35.0,43.0,44.0,55.0,47.0,32.0,48.0,35.0,43.0,53.0,36.0,39.0,36.0,36.0,38.0,39.0,35.0,31.0,37.0,39.0,39.0,35.0,37.0,57.0,43.0,45.0,47.0,53.0,47.0,63.0,60.0,48.0,58.0,60.0,55.0,57.0,46.0,28.0,39.0,46.0,35.0,51.0,36.0,48.0,45.0,57.0,60.0,63.0,58.0,73.0,51.0,57.0,44.0,73.0,62.0,59.0,54.0,49.0,56.0,53.0,53.0,55.0,45.0,37.0,42.0,48.0,34.0,43.0,41.0,49.0,37.0,49.0,28.0,34.0,30.0,30.0,29.0,24.0,27.0,19.0,25.0,13.0,18.0,10.0,10.0,18.0,6.0,5.0,27.0 P88632,78.0,89.0,107.0,121.0,111.0,107.0,107.0,112.0,130.0,113.0,98.0,116.0,124.0,113.0,114.0,97.0,112.0,96.0,96.0,89.0,81.0,81.0,83.0,89.0,111.0,110.0,121.0,136.0,162.0,142.0,172.0,212.0,215.0,197.0,179.0,198.0,203.0,190.0,181.0,185.0,157.0,155.0,181.0,126.0,144.0,138.0,119.0,123.0,114.0,101.0,108.0,123.0,107.0,134.0,105.0,103.0,125.0,99.0,101.0,106.0,101.0,90.0,97.0,76.0,85.0,71.0,77.0,65.0,62.0,61.0,54.0,49.0,54.0,42.0,38.0,39.0,44.0,55.0,46.0,37.0,41.0,35.0,25.0,17.0,24.0,24.0,29.0,14.0,18.0,15.0,14.0,10.0,7.0,8.0,11.0,19.0 P89002,134.0,142.0,132.0,122.0,123.0,106.0,99.0,108.0,96.0,106.0,117.0,127.0,119.0,110.0,119.0,103.0,122.0,114.0,108.0,133.0,116.0,115.0,127.0,137.0,165.0,189.0,183.0,201.0,240.0,217.0,210.0,216.0,194.0,208.0,228.0,208.0,173.0,168.0,161.0,157.0,146.0,145.0,149.0,135.0,131.0,130.0,112.0,128.0,117.0,115.0,103.0,116.0,125.0,146.0,128.0,126.0,123.0,134.0,116.0,144.0,125.0,118.0,108.0,111.0,110.0,84.0,97.0,96.0,84.0,64.0,88.0,65.0,52.0,52.0,76.0,66.0,61.0,77.0,66.0,35.0,60.0,40.0,41.0,26.0,33.0,21.0,23.0,19.0,17.0,12.0,10.0,8.0,8.0,8.0,4.0,14.0 P89003,37.0,55.0,50.0,52.0,49.0,44.0,56.0,56.0,55.0,67.0,62.0,57.0,56.0,64.0,75.0,61.0,50.0,51.0,45.0,52.0,45.0,38.0,50.0,47.0,54.0,48.0,50.0,71.0,68.0,70.0,60.0,62.0,75.0,74.0,74.0,73.0,72.0,79.0,75.0,74.0,68.0,65.0,72.0,62.0,64.0,63.0,58.0,51.0,43.0,60.0,55.0,52.0,52.0,65.0,63.0,61.0,63.0,56.0,75.0,62.0,74.0,54.0,68.0,71.0,69.0,59.0,62.0,66.0,67.0,64.0,42.0,55.0,50.0,48.0,52.0,44.0,55.0,56.0,65.0,36.0,52.0,33.0,32.0,25.0,21.0,15.0,14.0,19.0,15.0,12.0,12.0,7.0,9.0,3.0,2.0,8.0 P89004,24.0,16.0,18.0,23.0,29.0,21.0,21.0,25.0,30.0,30.0,28.0,25.0,31.0,34.0,38.0,35.0,38.0,29.0,29.0,29.0,34.0,26.0,18.0,26.0,36.0,26.0,22.0,23.0,23.0,27.0,28.0,29.0,26.0,35.0,42.0,36.0,46.0,33.0,39.0,50.0,41.0,40.0,42.0,44.0,31.0,35.0,15.0,34.0,28.0,29.0,28.0,41.0,46.0,42.0,45.0,54.0,49.0,55.0,42.0,45.0,62.0,54.0,66.0,57.0,53.0,36.0,44.0,48.0,44.0,58.0,36.0,52.0,43.0,36.0,44.0,40.0,35.0,41.0,43.0,21.0,27.0,28.0,28.0,24.0,16.0,20.0,18.0,10.0,15.0,16.0,7.0,2.0,8.0,5.0,6.0,12.0 P89005,42.0,42.0,37.0,51.0,49.0,41.0,49.0,48.0,51.0,67.0,58.0,59.0,50.0,53.0,65.0,67.0,52.0,54.0,42.0,43.0,31.0,42.0,31.0,30.0,47.0,35.0,50.0,48.0,49.0,45.0,51.0,67.0,43.0,62.0,76.0,58.0,64.0,67.0,62.0,70.0,54.0,67.0,57.0,57.0,75.0,67.0,58.0,64.0,52.0,52.0,64.0,68.0,80.0,56.0,51.0,53.0,54.0,74.0,82.0,60.0,48.0,49.0,51.0,39.0,42.0,44.0,42.0,41.0,36.0,35.0,43.0,37.0,44.0,28.0,37.0,37.0,32.0,39.0,41.0,30.0,24.0,27.0,26.0,19.0,13.0,17.0,13.0,12.0,12.0,7.0,13.0,2.0,5.0,4.0,2.0,6.0 P89006,41.0,59.0,41.0,45.0,51.0,48.0,45.0,65.0,73.0,65.0,74.0,68.0,62.0,65.0,76.0,62.0,71.0,73.0,53.0,57.0,48.0,57.0,51.0,54.0,50.0,47.0,45.0,44.0,42.0,46.0,69.0,47.0,69.0,62.0,77.0,69.0,84.0,99.0,70.0,83.0,75.0,79.0,92.0,70.0,82.0,88.0,70.0,78.0,72.0,82.0,67.0,71.0,93.0,104.0,92.0,78.0,95.0,69.0,81.0,81.0,86.0,85.0,72.0,73.0,87.0,80.0,64.0,72.0,71.0,77.0,69.0,71.0,63.0,51.0,68.0,53.0,65.0,88.0,88.0,46.0,47.0,53.0,31.0,27.0,26.0,22.0,24.0,19.0,20.0,16.0,9.0,6.0,8.0,7.0,6.0,11.0 P89007,37.0,44.0,39.0,31.0,18.0,39.0,46.0,47.0,44.0,44.0,41.0,40.0,45.0,49.0,55.0,44.0,48.0,43.0,43.0,37.0,42.0,35.0,41.0,41.0,42.0,42.0,55.0,60.0,65.0,69.0,63.0,56.0,80.0,65.0,67.0,64.0,75.0,51.0,51.0,45.0,52.0,45.0,48.0,44.0,55.0,53.0,43.0,40.0,32.0,32.0,51.0,46.0,52.0,53.0,52.0,41.0,39.0,40.0,48.0,51.0,43.0,47.0,39.0,49.0,50.0,48.0,35.0,40.0,35.0,28.0,38.0,31.0,49.0,31.0,42.0,48.0,36.0,44.0,37.0,30.0,33.0,35.0,21.0,27.0,20.0,17.0,13.0,11.0,19.0,14.0,5.0,8.0,4.0,4.0,8.0,15.0 P89008,65.0,61.0,82.0,80.0,74.0,73.0,82.0,90.0,99.0,95.0,83.0,102.0,108.0,107.0,119.0,110.0,101.0,102.0,99.0,107.0,96.0,99.0,106.0,95.0,101.0,87.0,119.0,104.0,123.0,92.0,117.0,89.0,109.0,117.0,136.0,92.0,105.0,118.0,129.0,114.0,129.0,115.0,133.0,102.0,121.0,88.0,122.0,88.0,110.0,83.0,101.0,101.0,122.0,115.0,100.0,125.0,120.0,126.0,136.0,98.0,119.0,100.0,101.0,115.0,98.0,80.0,88.0,91.0,89.0,73.0,67.0,75.0,65.0,79.0,77.0,72.0,73.0,81.0,109.0,58.0,62.0,53.0,62.0,36.0,46.0,36.0,28.0,34.0,26.0,22.0,18.0,18.0,10.0,10.0,12.0,10.0 P89010,23.0,28.0,28.0,31.0,30.0,30.0,40.0,39.0,28.0,40.0,31.0,37.0,46.0,48.0,43.0,46.0,42.0,48.0,45.0,41.0,38.0,41.0,21.0,39.0,29.0,39.0,35.0,59.0,37.0,48.0,50.0,45.0,56.0,60.0,54.0,44.0,50.0,54.0,51.0,42.0,44.0,30.0,46.0,38.0,49.0,36.0,37.0,46.0,36.0,52.0,48.0,43.0,48.0,60.0,56.0,49.0,57.0,63.0,61.0,69.0,62.0,66.0,79.0,47.0,63.0,62.0,52.0,46.0,46.0,37.0,41.0,33.0,39.0,30.0,41.0,41.0,33.0,51.0,45.0,34.0,32.0,35.0,22.0,21.0,24.0,21.0,13.0,23.0,9.0,12.0,5.0,9.0,7.0,8.0,4.0,12.0 P89011,35.0,26.0,28.0,34.0,40.0,34.0,34.0,36.0,24.0,38.0,37.0,47.0,38.0,41.0,42.0,43.0,39.0,36.0,34.0,27.0,30.0,17.0,23.0,37.0,35.0,43.0,39.0,43.0,46.0,49.0,40.0,45.0,50.0,50.0,45.0,35.0,46.0,40.0,35.0,35.0,40.0,31.0,41.0,45.0,41.0,33.0,22.0,25.0,33.0,31.0,30.0,27.0,36.0,26.0,36.0,31.0,27.0,28.0,21.0,32.0,22.0,29.0,36.0,27.0,22.0,26.0,16.0,21.0,20.0,17.0,15.0,15.0,17.0,17.0,9.0,16.0,15.0,13.0,14.0,7.0,15.0,12.0,9.0,8.0,5.0,9.0,12.0,7.0,5.0,4.0,4.0,3.0,4.0,2.0,1.0, P89012,23.0,33.0,31.0,25.0,30.0,42.0,29.0,35.0,39.0,49.0,34.0,46.0,46.0,39.0,44.0,44.0,35.0,45.0,52.0,37.0,38.0,27.0,33.0,31.0,31.0,36.0,36.0,40.0,30.0,39.0,30.0,40.0,43.0,51.0,37.0,57.0,46.0,54.0,62.0,38.0,55.0,38.0,37.0,31.0,42.0,38.0,36.0,42.0,40.0,45.0,33.0,46.0,40.0,63.0,40.0,49.0,56.0,40.0,47.0,32.0,45.0,51.0,45.0,52.0,42.0,52.0,47.0,31.0,37.0,32.0,40.0,33.0,31.0,40.0,27.0,34.0,29.0,37.0,47.0,31.0,32.0,29.0,24.0,22.0,12.0,21.0,9.0,17.0,5.0,10.0,11.0,7.0,7.0,6.0,6.0,7.0 P89013,12.0,37.0,18.0,31.0,31.0,28.0,33.0,28.0,57.0,41.0,45.0,43.0,46.0,35.0,45.0,35.0,36.0,27.0,29.0,23.0,24.0,28.0,20.0,13.0,24.0,27.0,23.0,29.0,30.0,34.0,36.0,36.0,38.0,38.0,39.0,39.0,46.0,40.0,33.0,32.0,38.0,41.0,31.0,34.0,28.0,34.0,28.0,22.0,21.0,18.0,23.0,19.0,23.0,37.0,26.0,21.0,27.0,26.0,34.0,33.0,25.0,43.0,36.0,34.0,34.0,21.0,18.0,32.0,16.0,17.0,19.0,20.0,13.0,14.0,14.0,10.0,18.0,13.0,16.0,11.0,9.0,11.0,19.0,9.0,8.0,6.0,6.0,6.0,4.0,6.0,4.0,2.0,,1.0,1.0,3.0 P89014,63.0,57.0,72.0,74.0,70.0,91.0,65.0,67.0,69.0,61.0,60.0,76.0,96.0,78.0,90.0,111.0,78.0,81.0,83.0,69.0,71.0,75.0,71.0,60.0,62.0,65.0,87.0,102.0,86.0,86.0,81.0,101.0,81.0,76.0,98.0,95.0,94.0,112.0,118.0,98.0,101.0,73.0,90.0,96.0,98.0,77.0,69.0,80.0,65.0,75.0,73.0,72.0,77.0,74.0,81.0,81.0,94.0,86.0,75.0,67.0,78.0,64.0,72.0,64.0,85.0,69.0,67.0,60.0,50.0,53.0,49.0,60.0,50.0,53.0,60.0,57.0,46.0,53.0,50.0,34.0,45.0,34.0,30.0,36.0,23.0,19.0,25.0,22.0,23.0,19.0,14.0,14.0,12.0,9.0,6.0,11.0 P89015,72.0,95.0,89.0,93.0,90.0,98.0,94.0,107.0,87.0,112.0,114.0,131.0,137.0,121.0,125.0,129.0,125.0,114.0,131.0,115.0,97.0,116.0,114.0,105.0,122.0,127.0,120.0,136.0,122.0,129.0,149.0,155.0,161.0,154.0,142.0,148.0,151.0,161.0,148.0,148.0,133.0,134.0,135.0,121.0,120.0,113.0,116.0,107.0,124.0,138.0,128.0,127.0,138.0,165.0,141.0,138.0,147.0,155.0,156.0,187.0,171.0,146.0,147.0,161.0,145.0,137.0,109.0,120.0,97.0,105.0,83.0,95.0,104.0,108.0,90.0,87.0,102.0,121.0,109.0,88.0,76.0,73.0,78.0,69.0,61.0,58.0,46.0,46.0,42.0,24.0,25.0,25.0,22.0,16.0,11.0,17.0 P89016,24.0,32.0,25.0,41.0,42.0,40.0,39.0,56.0,38.0,53.0,48.0,62.0,34.0,48.0,46.0,59.0,55.0,49.0,42.0,60.0,53.0,29.0,42.0,54.0,28.0,42.0,50.0,47.0,56.0,56.0,49.0,36.0,49.0,43.0,48.0,45.0,57.0,52.0,45.0,48.0,49.0,45.0,60.0,65.0,60.0,51.0,50.0,55.0,48.0,50.0,53.0,48.0,31.0,54.0,53.0,47.0,40.0,52.0,47.0,56.0,58.0,43.0,56.0,56.0,49.0,28.0,36.0,61.0,28.0,35.0,33.0,47.0,43.0,42.0,54.0,47.0,40.0,42.0,43.0,34.0,26.0,38.0,33.0,27.0,21.0,19.0,19.0,27.0,8.0,17.0,7.0,11.0,5.0,5.0,9.0,13.0 P89018,38.0,43.0,36.0,43.0,45.0,42.0,52.0,43.0,53.0,50.0,67.0,47.0,48.0,45.0,43.0,60.0,52.0,62.0,49.0,40.0,41.0,43.0,39.0,43.0,55.0,31.0,54.0,63.0,66.0,61.0,71.0,63.0,82.0,85.0,74.0,62.0,62.0,92.0,69.0,71.0,68.0,59.0,69.0,71.0,45.0,49.0,43.0,55.0,40.0,54.0,50.0,50.0,51.0,53.0,50.0,44.0,62.0,51.0,50.0,57.0,50.0,47.0,53.0,56.0,43.0,44.0,41.0,46.0,38.0,24.0,30.0,37.0,42.0,35.0,40.0,31.0,30.0,38.0,47.0,31.0,35.0,21.0,20.0,25.0,26.0,27.0,30.0,16.0,16.0,11.0,15.0,5.0,7.0,1.0,4.0,9.0 P89020,40.0,49.0,43.0,51.0,48.0,53.0,44.0,50.0,43.0,44.0,43.0,50.0,48.0,56.0,55.0,49.0,39.0,51.0,53.0,53.0,36.0,50.0,47.0,41.0,44.0,47.0,41.0,50.0,40.0,56.0,32.0,47.0,51.0,50.0,50.0,43.0,57.0,58.0,54.0,62.0,49.0,46.0,63.0,40.0,52.0,50.0,45.0,37.0,48.0,37.0,44.0,39.0,38.0,55.0,58.0,34.0,42.0,37.0,42.0,57.0,40.0,41.0,37.0,37.0,43.0,45.0,26.0,40.0,40.0,39.0,26.0,34.0,20.0,37.0,37.0,31.0,21.0,20.0,25.0,24.0,14.0,13.0,18.0,12.0,3.0,11.0,7.0,10.0,6.0,4.0,6.0,3.0,4.0,4.0,2.0,4.0 P89021,54.0,43.0,48.0,56.0,64.0,70.0,57.0,69.0,57.0,69.0,81.0,67.0,71.0,75.0,76.0,79.0,66.0,71.0,68.0,64.0,55.0,68.0,59.0,48.0,56.0,63.0,79.0,72.0,68.0,73.0,67.0,77.0,71.0,79.0,81.0,90.0,79.0,69.0,90.0,102.0,86.0,74.0,78.0,79.0,85.0,84.0,67.0,55.0,60.0,72.0,53.0,73.0,52.0,76.0,75.0,61.0,66.0,69.0,86.0,77.0,77.0,74.0,82.0,67.0,65.0,57.0,66.0,59.0,59.0,50.0,50.0,45.0,61.0,55.0,74.0,50.0,58.0,74.0,54.0,28.0,38.0,40.0,31.0,31.0,26.0,21.0,21.0,28.0,20.0,14.0,11.0,10.0,7.0,8.0,2.0,13.0 P89022,9.0,9.0,17.0,18.0,16.0,13.0,29.0,17.0,25.0,17.0,12.0,20.0,15.0,15.0,28.0,22.0,23.0,24.0,24.0,13.0,10.0,20.0,11.0,21.0,25.0,25.0,19.0,21.0,24.0,18.0,20.0,23.0,17.0,32.0,30.0,17.0,24.0,20.0,29.0,24.0,24.0,24.0,22.0,32.0,21.0,22.0,19.0,18.0,23.0,18.0,18.0,21.0,27.0,22.0,23.0,19.0,30.0,15.0,20.0,30.0,17.0,14.0,16.0,17.0,16.0,15.0,21.0,12.0,17.0,18.0,15.0,11.0,10.0,15.0,9.0,15.0,18.0,15.0,10.0,10.0,4.0,5.0,8.0,5.0,6.0,1.0,4.0,3.0,1.0,4.0,2.0,,2.0,,1.0,1.0 P89023,23.0,23.0,19.0,28.0,23.0,20.0,20.0,19.0,28.0,33.0,24.0,34.0,30.0,32.0,31.0,38.0,32.0,39.0,24.0,30.0,32.0,25.0,18.0,31.0,35.0,28.0,32.0,28.0,50.0,40.0,35.0,34.0,43.0,39.0,39.0,54.0,48.0,43.0,30.0,41.0,43.0,42.0,28.0,36.0,40.0,36.0,32.0,28.0,34.0,30.0,29.0,43.0,46.0,41.0,45.0,45.0,35.0,49.0,42.0,48.0,41.0,49.0,38.0,34.0,33.0,30.0,27.0,34.0,33.0,33.0,30.0,37.0,26.0,19.0,31.0,26.0,38.0,18.0,31.0,24.0,21.0,23.0,13.0,13.0,9.0,13.0,13.0,7.0,6.0,5.0,2.0,3.0,5.0,2.0,2.0,7.0 P89025,12.0,9.0,6.0,21.0,15.0,9.0,17.0,13.0,11.0,14.0,17.0,15.0,25.0,18.0,15.0,18.0,13.0,12.0,16.0,7.0,18.0,18.0,9.0,14.0,17.0,20.0,17.0,16.0,12.0,8.0,23.0,19.0,29.0,25.0,25.0,22.0,27.0,18.0,14.0,16.0,21.0,12.0,14.0,21.0,18.0,15.0,18.0,24.0,12.0,15.0,20.0,20.0,19.0,26.0,24.0,27.0,15.0,21.0,29.0,34.0,19.0,23.0,14.0,18.0,21.0,13.0,17.0,17.0,15.0,13.0,12.0,11.0,16.0,11.0,11.0,13.0,8.0,14.0,11.0,7.0,12.0,13.0,9.0,6.0,8.0,6.0,7.0,6.0,3.0,2.0,,2.0,1.0,3.0,2.0,3.0 P89026,22.0,28.0,25.0,37.0,30.0,21.0,36.0,39.0,40.0,49.0,34.0,34.0,34.0,24.0,34.0,34.0,34.0,42.0,30.0,26.0,22.0,24.0,24.0,24.0,46.0,36.0,33.0,35.0,47.0,33.0,63.0,57.0,46.0,50.0,69.0,42.0,37.0,44.0,49.0,49.0,47.0,45.0,38.0,42.0,45.0,42.0,39.0,31.0,26.0,31.0,32.0,38.0,49.0,49.0,48.0,39.0,41.0,52.0,43.0,39.0,49.0,57.0,42.0,45.0,46.0,39.0,32.0,40.0,29.0,40.0,33.0,35.0,29.0,36.0,37.0,25.0,34.0,38.0,36.0,26.0,26.0,15.0,14.0,10.0,13.0,7.0,5.0,14.0,6.0,16.0,12.0,7.0,8.0,3.0,3.0,4.0 P89029,37.0,34.0,33.0,36.0,36.0,40.0,39.0,35.0,35.0,36.0,49.0,43.0,45.0,34.0,45.0,41.0,41.0,44.0,36.0,34.0,38.0,36.0,31.0,48.0,44.0,58.0,52.0,76.0,64.0,54.0,59.0,64.0,63.0,63.0,79.0,62.0,58.0,58.0,61.0,72.0,50.0,46.0,48.0,44.0,46.0,40.0,48.0,42.0,37.0,50.0,42.0,50.0,48.0,47.0,41.0,47.0,52.0,49.0,45.0,44.0,58.0,55.0,37.0,42.0,49.0,39.0,38.0,38.0,40.0,27.0,26.0,35.0,42.0,32.0,29.0,32.0,28.0,32.0,20.0,12.0,32.0,21.0,10.0,15.0,13.0,12.0,15.0,7.0,11.0,6.0,2.0,10.0,6.0,4.0,2.0,8.0 P89030,10.0,21.0,17.0,14.0,18.0,29.0,15.0,19.0,15.0,26.0,18.0,28.0,21.0,22.0,22.0,26.0,22.0,18.0,17.0,18.0,24.0,20.0,16.0,18.0,20.0,24.0,25.0,31.0,21.0,25.0,18.0,16.0,19.0,23.0,23.0,21.0,33.0,28.0,21.0,31.0,17.0,27.0,22.0,29.0,25.0,25.0,24.0,13.0,22.0,25.0,17.0,23.0,15.0,24.0,22.0,24.0,22.0,28.0,34.0,19.0,17.0,26.0,26.0,14.0,25.0,20.0,20.0,19.0,16.0,17.0,14.0,16.0,14.0,20.0,16.0,22.0,20.0,14.0,21.0,21.0,12.0,12.0,11.0,6.0,6.0,12.0,5.0,5.0,4.0,7.0,,3.0,,,1.0, P89602,7.0,9.0,16.0,11.0,16.0,17.0,19.0,25.0,19.0,19.0,16.0,21.0,23.0,23.0,21.0,18.0,23.0,24.0,26.0,16.0,20.0,24.0,13.0,15.0,14.0,17.0,20.0,14.0,18.0,18.0,17.0,23.0,19.0,30.0,25.0,28.0,23.0,32.0,21.0,26.0,23.0,23.0,20.0,20.0,27.0,25.0,23.0,19.0,18.0,18.0,32.0,18.0,28.0,30.0,45.0,25.0,34.0,33.0,31.0,31.0,37.0,41.0,26.0,25.0,36.0,30.0,32.0,30.0,21.0,15.0,21.0,20.0,24.0,30.0,18.0,25.0,19.0,19.0,24.0,11.0,14.0,20.0,12.0,14.0,8.0,7.0,7.0,5.0,5.0,8.0,3.0,2.0,1.0,1.0,2.0,1.0 P89609,22.0,28.0,33.0,29.0,30.0,34.0,26.0,35.0,31.0,21.0,29.0,49.0,37.0,37.0,39.0,36.0,33.0,30.0,26.0,17.0,22.0,34.0,14.0,27.0,19.0,18.0,24.0,29.0,31.0,41.0,31.0,49.0,39.0,36.0,44.0,50.0,48.0,39.0,37.0,38.0,38.0,29.0,35.0,41.0,36.0,36.0,37.0,30.0,36.0,23.0,25.0,28.0,33.0,30.0,30.0,23.0,28.0,26.0,39.0,31.0,28.0,38.0,31.0,25.0,29.0,22.0,25.0,21.0,24.0,16.0,18.0,23.0,14.0,11.0,9.0,10.0,17.0,17.0,10.0,11.0,15.0,8.0,11.0,6.0,9.0,6.0,6.0,4.0,9.0,3.0,3.0,3.0,,1.0,1.0, P89612,5.0,7.0,7.0,13.0,10.0,7.0,9.0,17.0,10.0,10.0,10.0,8.0,18.0,17.0,19.0,11.0,17.0,13.0,19.0,8.0,9.0,10.0,11.0,13.0,13.0,14.0,9.0,9.0,17.0,10.0,19.0,18.0,14.0,15.0,20.0,10.0,26.0,18.0,15.0,18.0,9.0,22.0,15.0,13.0,21.0,15.0,22.0,20.0,15.0,8.0,15.0,20.0,15.0,28.0,16.0,20.0,18.0,20.0,12.0,19.0,18.0,14.0,15.0,10.0,13.0,13.0,10.0,9.0,10.0,16.0,8.0,9.0,12.0,7.0,8.0,13.0,8.0,13.0,7.0,10.0,4.0,5.0,4.0,3.0,3.0,3.0,3.0,,4.0,2.0,,,2.0,1.0,,3.0 P89613,14.0,20.0,19.0,30.0,25.0,23.0,28.0,22.0,28.0,21.0,28.0,12.0,21.0,33.0,22.0,38.0,26.0,22.0,20.0,21.0,12.0,20.0,12.0,16.0,24.0,14.0,19.0,23.0,18.0,29.0,29.0,25.0,38.0,30.0,30.0,27.0,22.0,22.0,30.0,25.0,28.0,26.0,30.0,21.0,23.0,16.0,20.0,16.0,13.0,17.0,22.0,17.0,18.0,24.0,14.0,19.0,18.0,17.0,22.0,23.0,24.0,16.0,13.0,29.0,24.0,11.0,16.0,21.0,17.0,17.0,17.0,16.0,18.0,11.0,12.0,13.0,7.0,14.0,15.0,6.0,7.0,9.0,8.0,5.0,5.0,4.0,8.0,7.0,2.0,3.0,1.0,2.0,3.0,2.0,1.0,2.0 P89618,20.0,23.0,18.0,16.0,19.0,29.0,19.0,11.0,15.0,12.0,20.0,17.0,18.0,13.0,19.0,22.0,12.0,12.0,8.0,17.0,14.0,17.0,11.0,11.0,20.0,24.0,23.0,29.0,23.0,21.0,27.0,34.0,24.0,39.0,32.0,40.0,26.0,27.0,34.0,22.0,24.0,23.0,15.0,15.0,22.0,21.0,18.0,13.0,7.0,11.0,23.0,15.0,14.0,24.0,18.0,18.0,17.0,22.0,24.0,20.0,19.0,21.0,24.0,20.0,17.0,12.0,18.0,18.0,14.0,15.0,15.0,9.0,7.0,13.0,16.0,7.0,10.0,7.0,9.0,6.0,4.0,11.0,4.0,3.0,8.0,4.0,4.0,6.0,3.0,,2.0,2.0,,1.0,1.0,1.0 P91003,21.0,26.0,25.0,31.0,37.0,21.0,47.0,36.0,43.0,44.0,43.0,70.0,55.0,64.0,60.0,70.0,58.0,60.0,49.0,33.0,23.0,47.0,37.0,37.0,33.0,34.0,34.0,31.0,42.0,42.0,30.0,40.0,43.0,41.0,48.0,42.0,48.0,43.0,47.0,52.0,60.0,56.0,65.0,70.0,62.0,64.0,66.0,75.0,60.0,56.0,59.0,59.0,64.0,76.0,60.0,67.0,57.0,51.0,51.0,63.0,53.0,44.0,55.0,38.0,38.0,40.0,44.0,36.0,42.0,39.0,38.0,43.0,38.0,35.0,37.0,34.0,38.0,44.0,36.0,31.0,37.0,27.0,29.0,23.0,21.0,26.0,16.0,16.0,14.0,12.0,8.0,10.0,5.0,5.0,3.0,12.0 P91004,35.0,46.0,43.0,40.0,45.0,55.0,52.0,50.0,64.0,65.0,62.0,61.0,76.0,60.0,62.0,53.0,60.0,52.0,42.0,43.0,38.0,35.0,33.0,40.0,31.0,49.0,57.0,60.0,66.0,50.0,61.0,79.0,56.0,62.0,73.0,58.0,73.0,69.0,77.0,69.0,65.0,78.0,71.0,72.0,75.0,84.0,80.0,73.0,53.0,62.0,57.0,47.0,61.0,68.0,56.0,56.0,50.0,52.0,48.0,58.0,29.0,45.0,32.0,27.0,33.0,22.0,52.0,45.0,34.0,29.0,34.0,20.0,25.0,20.0,42.0,27.0,23.0,23.0,30.0,23.0,32.0,23.0,19.0,18.0,18.0,18.0,17.0,16.0,14.0,11.0,12.0,6.0,3.0,8.0,3.0,12.0 P91006,40.0,65.0,57.0,65.0,72.0,65.0,60.0,85.0,101.0,72.0,70.0,79.0,82.0,77.0,63.0,64.0,72.0,80.0,73.0,63.0,59.0,56.0,54.0,73.0,69.0,70.0,63.0,62.0,61.0,67.0,66.0,77.0,80.0,80.0,105.0,102.0,99.0,95.0,100.0,108.0,108.0,98.0,82.0,95.0,72.0,99.0,100.0,93.0,73.0,100.0,66.0,88.0,102.0,108.0,92.0,82.0,93.0,93.0,85.0,91.0,105.0,96.0,92.0,90.0,83.0,85.0,74.0,76.0,68.0,75.0,80.0,77.0,61.0,86.0,67.0,66.0,73.0,61.0,67.0,52.0,67.0,57.0,43.0,27.0,37.0,38.0,36.0,25.0,32.0,25.0,18.0,11.0,17.0,1.0,12.0,19.0 P91007,14.0,26.0,23.0,26.0,32.0,37.0,39.0,40.0,41.0,39.0,51.0,53.0,54.0,37.0,42.0,38.0,48.0,45.0,33.0,33.0,33.0,24.0,21.0,30.0,21.0,27.0,26.0,30.0,31.0,17.0,21.0,36.0,40.0,40.0,29.0,44.0,43.0,36.0,42.0,48.0,48.0,65.0,40.0,43.0,56.0,50.0,44.0,53.0,40.0,52.0,42.0,47.0,49.0,42.0,47.0,34.0,46.0,38.0,49.0,49.0,47.0,39.0,42.0,33.0,43.0,41.0,26.0,25.0,21.0,23.0,34.0,25.0,21.0,25.0,24.0,30.0,28.0,30.0,28.0,26.0,27.0,20.0,27.0,21.0,12.0,16.0,10.0,16.0,17.0,4.0,8.0,6.0,5.0,8.0,3.0,9.0 P91008,13.0,31.0,28.0,29.0,20.0,43.0,33.0,38.0,29.0,37.0,42.0,44.0,34.0,34.0,38.0,41.0,36.0,37.0,44.0,25.0,29.0,34.0,35.0,39.0,34.0,30.0,36.0,17.0,24.0,26.0,27.0,23.0,25.0,31.0,30.0,37.0,28.0,27.0,40.0,34.0,41.0,48.0,40.0,32.0,39.0,34.0,29.0,36.0,35.0,33.0,37.0,41.0,32.0,57.0,51.0,37.0,42.0,45.0,47.0,47.0,53.0,52.0,54.0,39.0,36.0,40.0,47.0,48.0,34.0,35.0,37.0,39.0,35.0,30.0,24.0,37.0,34.0,32.0,39.0,24.0,40.0,24.0,37.0,28.0,28.0,15.0,21.0,20.0,15.0,15.0,11.0,16.0,12.0,14.0,7.0,16.0 P91009,26.0,46.0,30.0,31.0,38.0,43.0,59.0,52.0,68.0,72.0,56.0,56.0,69.0,66.0,65.0,65.0,69.0,56.0,69.0,47.0,47.0,47.0,42.0,49.0,53.0,60.0,51.0,38.0,35.0,49.0,36.0,54.0,53.0,59.0,79.0,65.0,69.0,76.0,63.0,74.0,74.0,86.0,54.0,64.0,87.0,74.0,72.0,65.0,71.0,76.0,75.0,83.0,78.0,71.0,74.0,88.0,74.0,77.0,85.0,85.0,81.0,85.0,82.0,73.0,78.0,81.0,78.0,73.0,61.0,62.0,51.0,65.0,60.0,48.0,61.0,73.0,72.0,77.0,82.0,52.0,68.0,54.0,41.0,39.0,42.0,40.0,36.0,31.0,26.0,23.0,19.0,8.0,12.0,11.0,8.0,22.0 P91011,17.0,20.0,14.0,24.0,32.0,28.0,26.0,37.0,37.0,48.0,37.0,27.0,33.0,47.0,48.0,37.0,38.0,34.0,34.0,24.0,33.0,27.0,24.0,18.0,21.0,18.0,18.0,25.0,16.0,23.0,12.0,21.0,31.0,31.0,41.0,28.0,35.0,27.0,34.0,25.0,30.0,36.0,35.0,56.0,35.0,39.0,42.0,47.0,32.0,35.0,41.0,28.0,36.0,46.0,29.0,47.0,43.0,38.0,29.0,52.0,46.0,47.0,27.0,25.0,46.0,36.0,26.0,27.0,30.0,25.0,24.0,31.0,29.0,25.0,25.0,32.0,38.0,36.0,32.0,21.0,31.0,29.0,22.0,14.0,18.0,20.0,14.0,10.0,16.0,14.0,11.0,5.0,7.0,4.0,2.0,8.0 P91012,22.0,35.0,39.0,37.0,39.0,36.0,38.0,44.0,40.0,37.0,40.0,40.0,49.0,48.0,44.0,40.0,44.0,36.0,24.0,36.0,21.0,47.0,30.0,31.0,26.0,42.0,25.0,45.0,49.0,37.0,41.0,54.0,48.0,62.0,71.0,60.0,56.0,56.0,65.0,52.0,52.0,54.0,66.0,41.0,52.0,50.0,48.0,50.0,41.0,39.0,47.0,42.0,37.0,51.0,46.0,53.0,56.0,53.0,66.0,63.0,51.0,70.0,67.0,63.0,43.0,53.0,55.0,52.0,34.0,43.0,45.0,35.0,33.0,35.0,33.0,44.0,42.0,55.0,41.0,33.0,36.0,35.0,27.0,26.0,22.0,22.0,25.0,21.0,16.0,11.0,10.0,11.0,17.0,5.0,8.0,12.0 P91013,34.0,49.0,51.0,42.0,54.0,58.0,75.0,68.0,87.0,77.0,89.0,84.0,93.0,89.0,92.0,80.0,68.0,85.0,65.0,64.0,46.0,41.0,62.0,47.0,57.0,55.0,67.0,51.0,72.0,58.0,57.0,58.0,56.0,66.0,93.0,76.0,100.0,105.0,77.0,99.0,95.0,99.0,95.0,79.0,103.0,97.0,104.0,91.0,85.0,72.0,84.0,92.0,82.0,74.0,76.0,77.0,79.0,73.0,74.0,76.0,69.0,69.0,60.0,63.0,56.0,58.0,48.0,61.0,57.0,46.0,56.0,45.0,52.0,55.0,51.0,46.0,43.0,51.0,62.0,30.0,44.0,45.0,31.0,31.0,26.0,28.0,26.0,21.0,18.0,17.0,14.0,14.0,7.0,5.0,5.0,11.0 P91014,56.0,60.0,62.0,57.0,85.0,117.0,101.0,117.0,135.0,125.0,107.0,121.0,98.0,113.0,118.0,105.0,106.0,95.0,71.0,50.0,61.0,57.0,68.0,70.0,62.0,79.0,85.0,76.0,94.0,105.0,82.0,90.0,82.0,100.0,100.0,116.0,129.0,146.0,146.0,151.0,129.0,143.0,134.0,153.0,158.0,134.0,115.0,126.0,125.0,88.0,115.0,114.0,122.0,118.0,97.0,117.0,98.0,100.0,105.0,116.0,91.0,94.0,88.0,92.0,78.0,86.0,74.0,89.0,66.0,79.0,67.0,68.0,75.0,66.0,66.0,68.0,63.0,75.0,68.0,51.0,52.0,47.0,52.0,52.0,72.0,49.0,45.0,29.0,24.0,28.0,14.0,18.0,15.0,17.0,9.0,28.0 P91016,31.0,34.0,41.0,40.0,44.0,59.0,62.0,63.0,83.0,83.0,68.0,92.0,81.0,77.0,73.0,54.0,70.0,59.0,54.0,42.0,37.0,37.0,35.0,45.0,36.0,37.0,46.0,37.0,41.0,36.0,45.0,46.0,53.0,55.0,68.0,59.0,71.0,95.0,88.0,95.0,97.0,98.0,109.0,97.0,94.0,88.0,93.0,77.0,63.0,74.0,68.0,58.0,55.0,52.0,60.0,54.0,56.0,50.0,45.0,48.0,45.0,50.0,43.0,49.0,40.0,47.0,45.0,49.0,39.0,44.0,41.0,35.0,31.0,36.0,37.0,36.0,34.0,30.0,44.0,33.0,41.0,25.0,21.0,17.0,22.0,12.0,21.0,17.0,13.0,9.0,9.0,5.0,3.0,2.0,3.0,8.0 P91017,34.0,36.0,34.0,51.0,32.0,54.0,49.0,57.0,73.0,80.0,71.0,54.0,69.0,67.0,70.0,68.0,61.0,79.0,39.0,35.0,46.0,31.0,30.0,42.0,47.0,28.0,34.0,36.0,37.0,36.0,33.0,50.0,44.0,47.0,60.0,62.0,60.0,67.0,72.0,77.0,81.0,73.0,62.0,88.0,68.0,92.0,77.0,72.0,73.0,45.0,57.0,51.0,39.0,80.0,43.0,60.0,56.0,51.0,50.0,44.0,61.0,53.0,46.0,64.0,59.0,40.0,51.0,47.0,42.0,35.0,43.0,42.0,36.0,38.0,48.0,42.0,39.0,31.0,40.0,33.0,37.0,37.0,32.0,18.0,26.0,25.0,13.0,12.0,18.0,18.0,10.0,8.0,4.0,4.0,9.0,17.0 P91018,57.0,67.0,65.0,83.0,64.0,69.0,83.0,93.0,92.0,83.0,80.0,100.0,83.0,105.0,102.0,98.0,79.0,96.0,101.0,64.0,68.0,77.0,62.0,85.0,81.0,90.0,84.0,100.0,105.0,88.0,100.0,98.0,113.0,134.0,119.0,133.0,149.0,119.0,115.0,122.0,134.0,143.0,128.0,119.0,124.0,128.0,107.0,93.0,98.0,73.0,80.0,67.0,92.0,96.0,92.0,93.0,99.0,89.0,81.0,99.0,98.0,85.0,83.0,88.0,85.0,75.0,71.0,88.0,62.0,55.0,61.0,64.0,49.0,55.0,47.0,61.0,33.0,52.0,37.0,29.0,32.0,32.0,29.0,28.0,26.0,21.0,23.0,18.0,22.0,14.0,14.0,10.0,14.0,6.0,10.0,10.0 P91019,14.0,12.0,18.0,24.0,20.0,34.0,17.0,21.0,27.0,27.0,30.0,27.0,19.0,38.0,31.0,31.0,28.0,32.0,33.0,21.0,17.0,21.0,20.0,18.0,18.0,16.0,21.0,15.0,20.0,31.0,24.0,23.0,29.0,30.0,30.0,37.0,26.0,35.0,31.0,28.0,34.0,33.0,30.0,29.0,19.0,27.0,18.0,30.0,20.0,18.0,19.0,16.0,16.0,15.0,18.0,23.0,16.0,27.0,24.0,23.0,24.0,13.0,20.0,15.0,23.0,21.0,23.0,15.0,14.0,18.0,14.0,13.0,19.0,9.0,11.0,14.0,13.0,14.0,14.0,6.0,8.0,6.0,6.0,6.0,6.0,6.0,3.0,8.0,3.0,3.0,2.0,1.0,,3.0,,4.0 P91020,42.0,36.0,44.0,53.0,50.0,59.0,62.0,52.0,50.0,66.0,53.0,65.0,71.0,52.0,85.0,55.0,62.0,66.0,66.0,64.0,75.0,63.0,73.0,90.0,72.0,104.0,89.0,89.0,75.0,80.0,67.0,58.0,60.0,63.0,57.0,78.0,65.0,72.0,65.0,64.0,71.0,64.0,64.0,68.0,73.0,57.0,59.0,48.0,49.0,38.0,45.0,49.0,49.0,37.0,49.0,48.0,47.0,40.0,43.0,47.0,46.0,43.0,33.0,44.0,38.0,43.0,33.0,32.0,35.0,18.0,29.0,23.0,21.0,16.0,27.0,28.0,14.0,14.0,19.0,13.0,15.0,19.0,12.0,13.0,9.0,17.0,13.0,14.0,7.0,11.0,9.0,6.0,2.0,1.0,3.0,5.0 P91021,45.0,37.0,56.0,50.0,68.0,85.0,81.0,88.0,104.0,101.0,96.0,95.0,107.0,99.0,125.0,96.0,109.0,107.0,100.0,80.0,74.0,68.0,77.0,64.0,83.0,90.0,100.0,73.0,69.0,81.0,86.0,65.0,74.0,95.0,78.0,87.0,92.0,84.0,91.0,110.0,114.0,122.0,111.0,106.0,125.0,108.0,106.0,105.0,89.0,94.0,112.0,108.0,100.0,126.0,109.0,105.0,87.0,119.0,91.0,110.0,118.0,105.0,107.0,100.0,104.0,78.0,82.0,83.0,71.0,76.0,72.0,67.0,83.0,64.0,57.0,72.0,70.0,77.0,76.0,61.0,52.0,48.0,49.0,52.0,36.0,40.0,37.0,30.0,36.0,24.0,26.0,16.0,14.0,7.0,8.0,28.0 P91026,39.0,48.0,40.0,39.0,41.0,50.0,48.0,36.0,40.0,43.0,52.0,44.0,49.0,42.0,57.0,45.0,54.0,47.0,55.0,32.0,45.0,30.0,35.0,37.0,39.0,42.0,47.0,40.0,52.0,53.0,51.0,53.0,45.0,56.0,60.0,53.0,57.0,45.0,65.0,44.0,44.0,50.0,48.0,51.0,39.0,37.0,43.0,24.0,38.0,38.0,34.0,35.0,46.0,36.0,42.0,34.0,34.0,38.0,60.0,43.0,35.0,39.0,42.0,38.0,29.0,30.0,44.0,30.0,27.0,28.0,21.0,27.0,29.0,22.0,24.0,17.0,27.0,18.0,21.0,14.0,14.0,19.0,19.0,12.0,7.0,11.0,11.0,11.0,9.0,3.0,3.0,8.0,4.0,5.0,5.0,9.0 P91029,38.0,60.0,47.0,76.0,65.0,58.0,81.0,64.0,64.0,69.0,80.0,60.0,59.0,77.0,77.0,71.0,64.0,63.0,61.0,72.0,47.0,64.0,49.0,54.0,48.0,65.0,34.0,61.0,60.0,67.0,74.0,84.0,81.0,94.0,71.0,86.0,83.0,81.0,100.0,111.0,79.0,99.0,92.0,87.0,93.0,92.0,101.0,86.0,79.0,98.0,67.0,82.0,76.0,80.0,95.0,74.0,86.0,89.0,63.0,83.0,81.0,87.0,78.0,63.0,71.0,71.0,52.0,47.0,63.0,57.0,56.0,59.0,42.0,40.0,46.0,44.0,51.0,57.0,55.0,48.0,50.0,28.0,31.0,24.0,32.0,29.0,19.0,22.0,24.0,26.0,7.0,14.0,11.0,14.0,7.0,17.0 P91035,57.0,63.0,63.0,80.0,95.0,88.0,88.0,85.0,107.0,94.0,98.0,83.0,104.0,90.0,91.0,89.0,66.0,66.0,56.0,55.0,44.0,45.0,59.0,51.0,49.0,60.0,60.0,80.0,82.0,72.0,97.0,81.0,98.0,104.0,119.0,114.0,124.0,124.0,131.0,126.0,136.0,135.0,118.0,128.0,130.0,104.0,123.0,99.0,91.0,106.0,97.0,69.0,60.0,79.0,75.0,72.0,68.0,81.0,50.0,66.0,76.0,71.0,72.0,63.0,63.0,61.0,54.0,62.0,64.0,56.0,52.0,48.0,58.0,57.0,63.0,56.0,60.0,55.0,54.0,53.0,47.0,37.0,34.0,33.0,37.0,35.0,17.0,27.0,28.0,21.0,16.0,22.0,9.0,10.0,12.0,22.0 P91603,31.0,21.0,38.0,36.0,35.0,34.0,39.0,33.0,46.0,52.0,55.0,51.0,58.0,44.0,64.0,60.0,66.0,55.0,47.0,33.0,27.0,30.0,31.0,33.0,25.0,32.0,36.0,42.0,43.0,59.0,50.0,59.0,63.0,42.0,43.0,40.0,58.0,63.0,53.0,61.0,77.0,59.0,64.0,51.0,71.0,67.0,80.0,53.0,65.0,52.0,62.0,64.0,50.0,52.0,59.0,52.0,45.0,42.0,47.0,42.0,41.0,52.0,40.0,32.0,39.0,21.0,39.0,29.0,24.0,35.0,20.0,31.0,27.0,24.0,35.0,22.0,28.0,29.0,26.0,22.0,23.0,30.0,12.0,10.0,10.0,12.0,18.0,14.0,12.0,3.0,9.0,8.0,2.0,6.0,2.0,9.0 P91604,71.0,54.0,55.0,71.0,65.0,64.0,92.0,82.0,103.0,103.0,119.0,130.0,141.0,112.0,141.0,116.0,139.0,129.0,104.0,69.0,89.0,75.0,80.0,80.0,67.0,67.0,59.0,59.0,57.0,74.0,65.0,75.0,82.0,84.0,72.0,72.0,83.0,92.0,108.0,95.0,112.0,132.0,117.0,135.0,146.0,117.0,129.0,106.0,127.0,123.0,120.0,124.0,125.0,136.0,139.0,121.0,112.0,129.0,128.0,104.0,127.0,113.0,109.0,95.0,97.0,95.0,97.0,92.0,83.0,60.0,80.0,66.0,89.0,73.0,65.0,84.0,90.0,70.0,91.0,61.0,68.0,70.0,74.0,39.0,48.0,59.0,43.0,37.0,38.0,35.0,28.0,25.0,27.0,21.0,13.0,36.0 P91617,7.0,7.0,8.0,7.0,7.0,7.0,19.0,14.0,17.0,22.0,20.0,17.0,16.0,15.0,13.0,8.0,13.0,11.0,13.0,12.0,5.0,12.0,8.0,16.0,13.0,10.0,7.0,11.0,14.0,15.0,15.0,19.0,19.0,15.0,16.0,19.0,21.0,31.0,18.0,19.0,25.0,25.0,24.0,25.0,25.0,21.0,17.0,12.0,16.0,19.0,12.0,18.0,11.0,13.0,13.0,13.0,16.0,21.0,15.0,11.0,15.0,9.0,15.0,16.0,12.0,11.0,10.0,7.0,7.0,12.0,10.0,12.0,5.0,9.0,5.0,10.0,3.0,8.0,6.0,3.0,6.0,5.0,3.0,3.0,6.0,,2.0,2.0,4.0,4.0,2.0,1.0,1.0,,4.0,8.0 P91623,32.0,26.0,31.0,37.0,37.0,38.0,48.0,38.0,45.0,44.0,51.0,69.0,44.0,51.0,54.0,49.0,34.0,41.0,47.0,34.0,28.0,37.0,41.0,26.0,32.0,34.0,30.0,37.0,32.0,24.0,31.0,36.0,45.0,45.0,46.0,64.0,51.0,45.0,50.0,57.0,62.0,64.0,71.0,72.0,63.0,47.0,53.0,66.0,51.0,51.0,49.0,64.0,56.0,52.0,48.0,48.0,46.0,54.0,50.0,56.0,62.0,55.0,56.0,34.0,48.0,41.0,60.0,50.0,50.0,50.0,38.0,43.0,40.0,54.0,40.0,44.0,34.0,48.0,39.0,40.0,32.0,27.0,31.0,17.0,26.0,23.0,25.0,17.0,23.0,16.0,11.0,7.0,10.0,7.0,5.0,19.0 P91627,46.0,39.0,46.0,47.0,37.0,57.0,48.0,68.0,65.0,54.0,54.0,58.0,68.0,68.0,50.0,66.0,73.0,67.0,61.0,47.0,42.0,46.0,49.0,54.0,42.0,53.0,41.0,41.0,68.0,57.0,45.0,53.0,61.0,63.0,76.0,61.0,78.0,68.0,71.0,67.0,70.0,81.0,75.0,68.0,63.0,83.0,61.0,57.0,61.0,43.0,51.0,48.0,66.0,58.0,62.0,71.0,73.0,48.0,49.0,46.0,54.0,57.0,45.0,51.0,51.0,36.0,41.0,32.0,44.0,32.0,40.0,38.0,32.0,38.0,44.0,27.0,31.0,31.0,33.0,23.0,19.0,24.0,17.0,15.0,20.0,25.0,20.0,18.0,11.0,12.0,9.0,6.0,9.0,1.0,4.0,4.0 P91629,59.0,54.0,84.0,71.0,66.0,85.0,72.0,95.0,82.0,101.0,87.0,99.0,99.0,104.0,100.0,109.0,107.0,106.0,91.0,113.0,111.0,95.0,112.0,132.0,122.0,109.0,118.0,130.0,148.0,130.0,120.0,115.0,128.0,123.0,99.0,127.0,133.0,122.0,123.0,113.0,121.0,113.0,109.0,121.0,116.0,122.0,87.0,97.0,88.0,86.0,80.0,85.0,73.0,81.0,85.0,95.0,93.0,98.0,68.0,66.0,85.0,68.0,71.0,67.0,66.0,77.0,55.0,60.0,43.0,49.0,46.0,38.0,36.0,44.0,31.0,35.0,35.0,32.0,32.0,27.0,30.0,24.0,18.0,15.0,18.0,19.0,17.0,15.0,18.0,15.0,14.0,9.0,2.0,6.0,2.0,7.0 P91631,7.0,13.0,16.0,23.0,26.0,24.0,24.0,27.0,31.0,22.0,30.0,35.0,35.0,30.0,31.0,26.0,31.0,26.0,18.0,19.0,9.0,11.0,15.0,17.0,13.0,11.0,11.0,13.0,17.0,16.0,11.0,15.0,22.0,20.0,21.0,20.0,27.0,23.0,28.0,33.0,32.0,44.0,44.0,40.0,47.0,29.0,39.0,26.0,23.0,28.0,22.0,22.0,18.0,25.0,22.0,19.0,16.0,19.0,22.0,14.0,23.0,20.0,21.0,17.0,19.0,19.0,13.0,14.0,17.0,20.0,19.0,14.0,11.0,18.0,11.0,21.0,18.0,18.0,18.0,9.0,15.0,14.0,11.0,12.0,7.0,13.0,4.0,10.0,5.0,5.0,3.0,3.0,2.0,3.0,1.0,3.0 P92001,19.0,19.0,21.0,19.0,26.0,22.0,24.0,21.0,23.0,29.0,24.0,25.0,24.0,31.0,36.0,32.0,34.0,25.0,28.0,22.0,22.0,22.0,19.0,27.0,25.0,41.0,39.0,38.0,32.0,44.0,19.0,35.0,40.0,40.0,34.0,31.0,37.0,35.0,36.0,30.0,32.0,22.0,20.0,38.0,38.0,22.0,32.0,33.0,32.0,35.0,42.0,36.0,29.0,49.0,35.0,55.0,49.0,39.0,47.0,45.0,32.0,45.0,37.0,33.0,35.0,34.0,29.0,34.0,34.0,27.0,33.0,32.0,29.0,27.0,42.0,38.0,30.0,41.0,37.0,41.0,25.0,26.0,19.0,27.0,13.0,16.0,16.0,12.0,16.0,4.0,4.0,9.0,7.0,3.0,3.0,5.0 P92002,15.0,19.0,18.0,22.0,21.0,27.0,18.0,26.0,20.0,32.0,17.0,17.0,28.0,26.0,32.0,19.0,31.0,24.0,24.0,31.0,26.0,28.0,18.0,17.0,29.0,26.0,28.0,20.0,28.0,27.0,26.0,27.0,41.0,31.0,20.0,45.0,26.0,29.0,30.0,36.0,29.0,32.0,37.0,34.0,32.0,42.0,30.0,39.0,26.0,30.0,34.0,35.0,30.0,37.0,39.0,40.0,33.0,37.0,29.0,36.0,40.0,34.0,33.0,44.0,34.0,33.0,43.0,30.0,41.0,37.0,30.0,34.0,31.0,27.0,41.0,38.0,33.0,37.0,41.0,23.0,29.0,12.0,26.0,14.0,16.0,12.0,15.0,10.0,5.0,4.0,5.0,2.0,4.0,1.0,2.0,6.0 P92003,34.0,52.0,48.0,49.0,58.0,40.0,54.0,55.0,46.0,53.0,50.0,42.0,60.0,54.0,51.0,60.0,57.0,52.0,42.0,34.0,44.0,42.0,52.0,53.0,38.0,52.0,45.0,58.0,54.0,78.0,75.0,82.0,74.0,65.0,89.0,89.0,74.0,81.0,64.0,74.0,64.0,60.0,75.0,68.0,60.0,46.0,48.0,47.0,62.0,47.0,58.0,64.0,47.0,60.0,70.0,64.0,68.0,66.0,72.0,67.0,62.0,74.0,66.0,64.0,67.0,65.0,71.0,49.0,57.0,45.0,50.0,40.0,54.0,40.0,31.0,41.0,48.0,46.0,52.0,30.0,30.0,25.0,31.0,39.0,27.0,25.0,21.0,20.0,20.0,10.0,14.0,6.0,7.0,4.0,1.0,6.0 P92004,28.0,25.0,24.0,24.0,41.0,46.0,40.0,40.0,42.0,43.0,39.0,40.0,34.0,43.0,43.0,38.0,45.0,49.0,31.0,31.0,36.0,25.0,36.0,25.0,43.0,49.0,40.0,41.0,37.0,45.0,47.0,47.0,43.0,51.0,48.0,49.0,51.0,45.0,59.0,46.0,52.0,43.0,57.0,44.0,49.0,40.0,41.0,30.0,24.0,43.0,26.0,40.0,54.0,59.0,42.0,54.0,60.0,53.0,55.0,46.0,48.0,55.0,40.0,40.0,39.0,42.0,44.0,41.0,51.0,37.0,32.0,43.0,34.0,31.0,36.0,43.0,34.0,51.0,55.0,45.0,47.0,35.0,32.0,30.0,20.0,31.0,19.0,17.0,13.0,13.0,12.0,8.0,7.0,3.0,4.0,9.0 P92005,8.0,14.0,18.0,24.0,25.0,20.0,17.0,13.0,26.0,18.0,30.0,26.0,31.0,24.0,27.0,27.0,30.0,23.0,19.0,35.0,22.0,28.0,19.0,23.0,22.0,16.0,22.0,18.0,29.0,19.0,22.0,26.0,21.0,23.0,21.0,31.0,32.0,19.0,21.0,30.0,34.0,32.0,26.0,29.0,29.0,24.0,43.0,28.0,26.0,21.0,20.0,32.0,31.0,26.0,33.0,46.0,33.0,24.0,22.0,28.0,23.0,27.0,21.0,31.0,21.0,18.0,24.0,25.0,27.0,25.0,26.0,21.0,27.0,22.0,23.0,33.0,34.0,27.0,39.0,23.0,24.0,19.0,21.0,10.0,6.0,6.0,16.0,7.0,10.0,3.0,4.0,4.0,,3.0,4.0,2.0 P92006,25.0,32.0,31.0,23.0,20.0,35.0,31.0,39.0,19.0,41.0,29.0,36.0,32.0,40.0,27.0,35.0,34.0,36.0,35.0,35.0,29.0,15.0,43.0,31.0,48.0,30.0,28.0,37.0,35.0,31.0,37.0,38.0,57.0,45.0,44.0,36.0,50.0,32.0,35.0,36.0,34.0,40.0,36.0,36.0,42.0,36.0,36.0,33.0,29.0,37.0,38.0,42.0,42.0,30.0,49.0,42.0,44.0,53.0,58.0,49.0,54.0,37.0,29.0,26.0,41.0,33.0,38.0,30.0,39.0,26.0,28.0,28.0,39.0,27.0,36.0,35.0,28.0,43.0,32.0,23.0,27.0,31.0,18.0,15.0,20.0,10.0,16.0,12.0,11.0,8.0,10.0,4.0,4.0,5.0,4.0,4.0 P92007,22.0,29.0,19.0,29.0,20.0,22.0,26.0,33.0,46.0,31.0,35.0,37.0,35.0,49.0,43.0,43.0,35.0,39.0,38.0,43.0,42.0,37.0,27.0,34.0,26.0,30.0,26.0,37.0,39.0,35.0,43.0,34.0,49.0,40.0,39.0,46.0,44.0,47.0,39.0,46.0,36.0,42.0,45.0,36.0,38.0,34.0,41.0,37.0,30.0,35.0,48.0,40.0,45.0,39.0,63.0,50.0,41.0,46.0,47.0,42.0,43.0,48.0,51.0,43.0,44.0,38.0,39.0,49.0,35.0,27.0,31.0,35.0,27.0,28.0,26.0,36.0,32.0,34.0,26.0,26.0,32.0,19.0,20.0,15.0,12.0,17.0,12.0,12.0,8.0,8.0,4.0,4.0,4.0,9.0,5.0,7.0 P92008,19.0,42.0,41.0,41.0,34.0,38.0,45.0,44.0,55.0,34.0,56.0,38.0,50.0,52.0,43.0,54.0,47.0,47.0,40.0,38.0,59.0,49.0,49.0,47.0,46.0,45.0,42.0,46.0,58.0,39.0,44.0,45.0,45.0,48.0,49.0,46.0,51.0,61.0,59.0,53.0,60.0,66.0,69.0,59.0,50.0,58.0,47.0,46.0,57.0,49.0,61.0,58.0,64.0,65.0,58.0,59.0,66.0,71.0,55.0,57.0,55.0,67.0,68.0,57.0,52.0,51.0,52.0,49.0,42.0,46.0,41.0,48.0,43.0,55.0,34.0,50.0,49.0,51.0,50.0,32.0,47.0,43.0,41.0,29.0,23.0,28.0,25.0,22.0,22.0,9.0,6.0,19.0,7.0,6.0,4.0,12.0 P92010,46.0,41.0,49.0,55.0,55.0,59.0,51.0,64.0,60.0,60.0,56.0,77.0,61.0,80.0,66.0,50.0,73.0,63.0,59.0,53.0,47.0,50.0,58.0,61.0,59.0,54.0,62.0,64.0,64.0,56.0,50.0,60.0,73.0,66.0,72.0,74.0,95.0,82.0,80.0,88.0,77.0,83.0,65.0,66.0,71.0,67.0,57.0,62.0,67.0,73.0,89.0,69.0,79.0,81.0,88.0,85.0,81.0,86.0,72.0,92.0,75.0,92.0,82.0,83.0,84.0,99.0,79.0,64.0,78.0,53.0,67.0,57.0,61.0,62.0,63.0,63.0,63.0,63.0,67.0,45.0,61.0,34.0,48.0,36.0,29.0,34.0,27.0,26.0,27.0,20.0,16.0,6.0,13.0,10.0,8.0,16.0 P92011,28.0,34.0,44.0,47.0,21.0,40.0,39.0,33.0,43.0,34.0,42.0,48.0,37.0,55.0,36.0,30.0,44.0,48.0,37.0,37.0,42.0,50.0,38.0,39.0,47.0,37.0,44.0,26.0,60.0,45.0,57.0,58.0,55.0,63.0,42.0,61.0,63.0,62.0,54.0,55.0,54.0,58.0,34.0,47.0,53.0,57.0,57.0,44.0,41.0,47.0,46.0,51.0,39.0,56.0,57.0,63.0,69.0,74.0,64.0,68.0,54.0,53.0,62.0,50.0,50.0,48.0,52.0,37.0,45.0,36.0,31.0,47.0,40.0,34.0,29.0,33.0,41.0,53.0,42.0,29.0,29.0,25.0,24.0,21.0,24.0,16.0,14.0,14.0,10.0,11.0,8.0,7.0,3.0,3.0,1.0,7.0 P92012,14.0,17.0,13.0,15.0,21.0,21.0,17.0,19.0,21.0,16.0,22.0,19.0,26.0,24.0,31.0,35.0,36.0,31.0,18.0,29.0,21.0,24.0,19.0,27.0,23.0,22.0,33.0,18.0,27.0,33.0,36.0,38.0,31.0,26.0,23.0,23.0,32.0,31.0,23.0,18.0,27.0,31.0,25.0,41.0,22.0,34.0,19.0,27.0,27.0,24.0,27.0,28.0,34.0,35.0,28.0,42.0,40.0,25.0,34.0,38.0,34.0,28.0,29.0,27.0,26.0,31.0,18.0,24.0,18.0,18.0,16.0,22.0,21.0,29.0,26.0,35.0,25.0,29.0,25.0,21.0,9.0,21.0,20.0,12.0,10.0,9.0,6.0,13.0,11.0,5.0,8.0,5.0,5.0,3.0,1.0,3.0 P92014,73.0,64.0,71.0,71.0,65.0,68.0,58.0,66.0,83.0,65.0,79.0,68.0,73.0,74.0,75.0,79.0,64.0,65.0,52.0,50.0,51.0,44.0,50.0,62.0,73.0,70.0,69.0,61.0,80.0,94.0,90.0,81.0,103.0,104.0,109.0,92.0,87.0,85.0,88.0,84.0,94.0,97.0,66.0,86.0,100.0,88.0,90.0,59.0,78.0,87.0,72.0,79.0,85.0,98.0,91.0,114.0,107.0,96.0,105.0,100.0,99.0,91.0,98.0,81.0,81.0,69.0,74.0,85.0,78.0,73.0,64.0,75.0,75.0,62.0,70.0,76.0,65.0,77.0,92.0,50.0,71.0,51.0,39.0,47.0,44.0,34.0,40.0,32.0,33.0,27.0,25.0,15.0,15.0,18.0,11.0,24.0 P92015,30.0,25.0,24.0,31.0,25.0,30.0,28.0,34.0,29.0,25.0,26.0,29.0,24.0,27.0,21.0,40.0,26.0,28.0,23.0,29.0,28.0,30.0,29.0,32.0,37.0,33.0,43.0,37.0,45.0,26.0,44.0,35.0,44.0,34.0,41.0,38.0,38.0,36.0,34.0,52.0,41.0,35.0,28.0,32.0,35.0,32.0,27.0,33.0,36.0,24.0,34.0,28.0,42.0,52.0,37.0,51.0,51.0,56.0,47.0,42.0,51.0,50.0,42.0,45.0,49.0,35.0,38.0,39.0,34.0,28.0,35.0,47.0,38.0,29.0,32.0,35.0,41.0,43.0,30.0,33.0,49.0,21.0,23.0,15.0,20.0,21.0,12.0,15.0,13.0,15.0,6.0,1.0,7.0,3.0,1.0,8.0 P92016,86.0,68.0,90.0,108.0,84.0,94.0,99.0,93.0,96.0,108.0,93.0,95.0,96.0,113.0,96.0,122.0,110.0,108.0,135.0,99.0,116.0,102.0,107.0,107.0,112.0,126.0,115.0,110.0,128.0,126.0,127.0,130.0,138.0,143.0,130.0,128.0,137.0,129.0,117.0,105.0,126.0,135.0,100.0,124.0,150.0,146.0,105.0,102.0,100.0,134.0,123.0,113.0,140.0,136.0,133.0,155.0,150.0,140.0,150.0,135.0,124.0,145.0,124.0,124.0,102.0,111.0,89.0,92.0,112.0,91.0,97.0,98.0,77.0,86.0,86.0,87.0,94.0,117.0,105.0,79.0,82.0,62.0,79.0,46.0,43.0,42.0,37.0,26.0,24.0,21.0,13.0,10.0,8.0,11.0,2.0,25.0 P92017,48.0,48.0,47.0,51.0,60.0,60.0,66.0,55.0,52.0,62.0,66.0,50.0,60.0,72.0,78.0,73.0,73.0,68.0,67.0,64.0,59.0,55.0,55.0,48.0,64.0,67.0,53.0,63.0,56.0,73.0,84.0,84.0,73.0,82.0,67.0,88.0,84.0,78.0,93.0,74.0,77.0,68.0,84.0,82.0,75.0,83.0,72.0,87.0,76.0,96.0,66.0,102.0,115.0,107.0,93.0,101.0,107.0,115.0,98.0,97.0,128.0,109.0,100.0,109.0,99.0,96.0,90.0,73.0,83.0,85.0,81.0,92.0,80.0,72.0,89.0,77.0,109.0,97.0,92.0,65.0,67.0,71.0,66.0,49.0,38.0,44.0,34.0,34.0,25.0,24.0,11.0,16.0,8.0,11.0,7.0,14.0 P92019,54.0,59.0,53.0,70.0,64.0,70.0,67.0,70.0,69.0,69.0,69.0,79.0,85.0,65.0,81.0,74.0,72.0,60.0,82.0,71.0,62.0,43.0,51.0,47.0,36.0,47.0,60.0,62.0,74.0,66.0,78.0,78.0,88.0,67.0,73.0,83.0,81.0,89.0,76.0,94.0,76.0,74.0,69.0,85.0,66.0,74.0,61.0,49.0,58.0,52.0,48.0,59.0,64.0,63.0,88.0,69.0,79.0,64.0,54.0,68.0,57.0,49.0,40.0,54.0,41.0,56.0,40.0,40.0,42.0,35.0,42.0,40.0,36.0,39.0,39.0,51.0,48.0,37.0,38.0,31.0,30.0,29.0,27.0,23.0,22.0,22.0,20.0,10.0,11.0,12.0,7.0,6.0,6.0,4.0,1.0,10.0 P92020,12.0,22.0,26.0,24.0,24.0,26.0,24.0,27.0,24.0,27.0,25.0,40.0,40.0,26.0,31.0,28.0,26.0,27.0,25.0,22.0,26.0,24.0,25.0,23.0,20.0,21.0,11.0,18.0,24.0,18.0,24.0,18.0,31.0,27.0,33.0,33.0,34.0,42.0,40.0,43.0,37.0,40.0,37.0,35.0,32.0,38.0,40.0,43.0,30.0,29.0,27.0,25.0,29.0,35.0,36.0,39.0,38.0,24.0,38.0,31.0,32.0,23.0,34.0,34.0,32.0,35.0,29.0,38.0,31.0,25.0,35.0,29.0,24.0,35.0,29.0,30.0,19.0,24.0,30.0,18.0,25.0,18.0,20.0,12.0,4.0,12.0,11.0,4.0,1.0,6.0,5.0,1.0,3.0,3.0,, P92021,18.0,18.0,25.0,23.0,29.0,27.0,29.0,32.0,33.0,25.0,38.0,44.0,43.0,44.0,31.0,27.0,45.0,41.0,33.0,25.0,27.0,25.0,29.0,19.0,23.0,35.0,25.0,36.0,36.0,33.0,36.0,40.0,39.0,47.0,60.0,35.0,39.0,42.0,45.0,46.0,35.0,48.0,28.0,48.0,31.0,32.0,43.0,28.0,39.0,35.0,41.0,31.0,34.0,38.0,53.0,44.0,45.0,42.0,35.0,42.0,42.0,34.0,39.0,38.0,36.0,35.0,30.0,32.0,39.0,32.0,27.0,38.0,26.0,40.0,27.0,39.0,51.0,38.0,41.0,20.0,43.0,23.0,29.0,19.0,19.0,9.0,18.0,19.0,8.0,9.0,10.0,6.0,5.0,1.0,2.0,7.0 P92023,39.0,32.0,37.0,41.0,38.0,43.0,35.0,49.0,58.0,41.0,49.0,58.0,38.0,48.0,41.0,57.0,42.0,39.0,39.0,32.0,46.0,27.0,33.0,36.0,32.0,53.0,34.0,41.0,50.0,54.0,71.0,54.0,60.0,85.0,52.0,66.0,61.0,60.0,65.0,65.0,59.0,56.0,55.0,55.0,51.0,47.0,53.0,41.0,31.0,49.0,51.0,56.0,66.0,59.0,66.0,57.0,77.0,69.0,81.0,57.0,68.0,69.0,63.0,71.0,59.0,53.0,68.0,58.0,52.0,45.0,43.0,51.0,41.0,42.0,32.0,60.0,57.0,65.0,67.0,49.0,46.0,49.0,53.0,31.0,25.0,29.0,22.0,22.0,17.0,14.0,10.0,12.0,5.0,9.0,5.0,15.0 P92024,26.0,33.0,27.0,29.0,23.0,30.0,24.0,41.0,34.0,29.0,23.0,41.0,28.0,39.0,31.0,27.0,27.0,33.0,24.0,28.0,25.0,21.0,25.0,33.0,34.0,25.0,51.0,36.0,34.0,35.0,30.0,44.0,43.0,43.0,29.0,34.0,39.0,35.0,39.0,39.0,35.0,32.0,36.0,39.0,31.0,24.0,22.0,34.0,22.0,33.0,32.0,34.0,29.0,34.0,50.0,37.0,41.0,28.0,23.0,40.0,22.0,36.0,41.0,34.0,31.0,30.0,31.0,25.0,24.0,21.0,26.0,20.0,23.0,27.0,17.0,25.0,18.0,22.0,30.0,15.0,9.0,14.0,14.0,4.0,4.0,5.0,7.0,4.0,4.0,2.0,6.0,1.0,3.0,1.0,,4.0 P92026,36.0,27.0,40.0,47.0,34.0,40.0,34.0,47.0,47.0,44.0,31.0,49.0,49.0,42.0,44.0,47.0,49.0,47.0,51.0,40.0,27.0,35.0,43.0,44.0,33.0,40.0,34.0,57.0,44.0,58.0,51.0,40.0,58.0,54.0,61.0,50.0,65.0,48.0,49.0,60.0,44.0,49.0,62.0,49.0,32.0,42.0,33.0,29.0,34.0,30.0,36.0,45.0,47.0,47.0,54.0,65.0,54.0,62.0,62.0,49.0,68.0,65.0,58.0,40.0,50.0,44.0,48.0,29.0,49.0,32.0,29.0,32.0,30.0,29.0,26.0,30.0,37.0,45.0,27.0,16.0,20.0,20.0,20.0,17.0,22.0,9.0,12.0,11.0,7.0,7.0,8.0,7.0,3.0,4.0,2.0,3.0 P92028,21.0,15.0,23.0,21.0,33.0,21.0,26.0,40.0,44.0,32.0,23.0,30.0,39.0,36.0,28.0,22.0,29.0,18.0,22.0,31.0,20.0,21.0,24.0,17.0,27.0,20.0,22.0,24.0,32.0,27.0,31.0,35.0,41.0,42.0,46.0,39.0,44.0,37.0,37.0,43.0,39.0,39.0,26.0,28.0,23.0,45.0,27.0,21.0,30.0,25.0,17.0,33.0,22.0,29.0,38.0,29.0,30.0,26.0,36.0,32.0,31.0,33.0,35.0,32.0,28.0,23.0,34.0,25.0,25.0,23.0,22.0,24.0,33.0,25.0,20.0,25.0,28.0,27.0,25.0,26.0,17.0,23.0,14.0,13.0,13.0,10.0,12.0,8.0,5.0,7.0,3.0,8.0,4.0,5.0,2.0,7.0 P92029,19.0,20.0,16.0,25.0,25.0,20.0,36.0,29.0,25.0,23.0,38.0,34.0,30.0,34.0,32.0,32.0,28.0,26.0,32.0,27.0,24.0,21.0,14.0,26.0,19.0,19.0,27.0,25.0,19.0,25.0,22.0,35.0,41.0,36.0,37.0,40.0,41.0,28.0,38.0,33.0,35.0,36.0,32.0,33.0,32.0,22.0,30.0,19.0,37.0,23.0,34.0,26.0,21.0,30.0,37.0,33.0,22.0,34.0,27.0,20.0,29.0,18.0,24.0,30.0,22.0,24.0,23.0,27.0,23.0,22.0,16.0,20.0,21.0,17.0,16.0,15.0,12.0,14.0,10.0,12.0,6.0,13.0,11.0,9.0,4.0,11.0,4.0,4.0,7.0,3.0,1.0,,5.0,5.0,1.0,5.0 P92030,18.0,19.0,22.0,16.0,27.0,15.0,18.0,35.0,20.0,26.0,29.0,32.0,15.0,28.0,23.0,25.0,22.0,13.0,15.0,26.0,14.0,13.0,24.0,21.0,24.0,25.0,27.0,22.0,28.0,35.0,26.0,28.0,32.0,35.0,34.0,29.0,32.0,32.0,31.0,34.0,38.0,33.0,39.0,34.0,35.0,36.0,22.0,28.0,20.0,36.0,17.0,19.0,24.0,23.0,25.0,31.0,33.0,30.0,22.0,32.0,34.0,31.0,27.0,28.0,34.0,25.0,16.0,28.0,28.0,15.0,11.0,24.0,17.0,17.0,26.0,22.0,18.0,25.0,17.0,14.0,12.0,16.0,11.0,8.0,16.0,11.0,10.0,8.0,9.0,7.0,2.0,1.0,2.0,3.0,3.0,4.0 P92031,36.0,29.0,33.0,39.0,35.0,32.0,26.0,38.0,31.0,36.0,29.0,27.0,24.0,26.0,19.0,25.0,28.0,24.0,23.0,30.0,22.0,21.0,17.0,15.0,28.0,27.0,32.0,39.0,31.0,36.0,31.0,47.0,32.0,45.0,55.0,38.0,37.0,49.0,38.0,33.0,29.0,39.0,31.0,19.0,26.0,19.0,23.0,16.0,24.0,18.0,25.0,29.0,15.0,25.0,30.0,26.0,26.0,30.0,22.0,20.0,17.0,24.0,20.0,21.0,11.0,18.0,18.0,19.0,21.0,14.0,22.0,26.0,27.0,25.0,26.0,20.0,18.0,21.0,18.0,19.0,14.0,15.0,13.0,20.0,11.0,6.0,4.0,5.0,5.0,9.0,8.0,2.0,5.0,5.0,1.0,7.0 P92033,18.0,17.0,19.0,23.0,22.0,29.0,27.0,26.0,27.0,27.0,28.0,29.0,26.0,24.0,31.0,31.0,24.0,31.0,28.0,19.0,26.0,19.0,13.0,22.0,27.0,30.0,22.0,24.0,31.0,27.0,29.0,33.0,38.0,38.0,31.0,33.0,38.0,29.0,31.0,31.0,35.0,29.0,33.0,30.0,31.0,35.0,26.0,23.0,26.0,22.0,33.0,18.0,35.0,33.0,24.0,32.0,31.0,32.0,26.0,26.0,37.0,24.0,37.0,34.0,37.0,43.0,34.0,22.0,30.0,21.0,19.0,22.0,26.0,26.0,12.0,22.0,24.0,20.0,24.0,10.0,20.0,18.0,4.0,10.0,8.0,7.0,6.0,4.0,4.0,6.0,7.0,2.0,3.0,4.0,1.0,4.0 P92034,20.0,10.0,20.0,17.0,24.0,17.0,20.0,24.0,16.0,20.0,28.0,26.0,26.0,16.0,32.0,29.0,25.0,37.0,33.0,30.0,40.0,32.0,20.0,24.0,32.0,29.0,34.0,29.0,35.0,19.0,33.0,31.0,23.0,31.0,40.0,36.0,28.0,35.0,27.0,31.0,35.0,28.0,24.0,24.0,47.0,37.0,33.0,29.0,22.0,20.0,25.0,35.0,35.0,45.0,58.0,44.0,52.0,42.0,50.0,50.0,55.0,49.0,47.0,51.0,32.0,44.0,48.0,34.0,29.0,36.0,32.0,36.0,27.0,31.0,32.0,39.0,23.0,46.0,31.0,30.0,29.0,32.0,29.0,22.0,23.0,18.0,13.0,16.0,10.0,7.0,15.0,3.0,3.0,1.0,4.0,7.0 P92038,9.0,9.0,9.0,18.0,14.0,18.0,19.0,27.0,22.0,20.0,15.0,24.0,19.0,17.0,20.0,15.0,27.0,12.0,22.0,18.0,21.0,14.0,17.0,13.0,16.0,18.0,14.0,17.0,9.0,13.0,13.0,9.0,20.0,19.0,25.0,23.0,28.0,24.0,19.0,25.0,28.0,24.0,16.0,30.0,28.0,32.0,26.0,33.0,24.0,15.0,25.0,19.0,25.0,26.0,28.0,13.0,21.0,22.0,19.0,24.0,15.0,20.0,22.0,12.0,9.0,11.0,16.0,15.0,14.0,17.0,15.0,23.0,17.0,17.0,16.0,21.0,14.0,17.0,17.0,10.0,7.0,5.0,10.0,6.0,9.0,4.0,6.0,5.0,3.0,6.0,2.0,,1.0,1.0,1.0,1.0 P92041,27.0,40.0,40.0,39.0,40.0,45.0,50.0,47.0,33.0,39.0,44.0,49.0,46.0,42.0,46.0,49.0,51.0,64.0,51.0,38.0,51.0,42.0,42.0,28.0,46.0,51.0,60.0,49.0,47.0,67.0,71.0,56.0,66.0,63.0,69.0,54.0,53.0,67.0,68.0,51.0,60.0,66.0,50.0,65.0,47.0,46.0,60.0,54.0,40.0,52.0,44.0,53.0,64.0,51.0,63.0,59.0,60.0,61.0,53.0,57.0,53.0,50.0,55.0,58.0,35.0,45.0,40.0,28.0,44.0,37.0,38.0,43.0,28.0,36.0,30.0,47.0,41.0,46.0,44.0,32.0,32.0,30.0,30.0,29.0,18.0,26.0,30.0,18.0,19.0,17.0,15.0,9.0,7.0,4.0,6.0,10.0 P92042,26.0,35.0,27.0,41.0,35.0,41.0,27.0,43.0,37.0,41.0,49.0,64.0,53.0,62.0,62.0,50.0,56.0,41.0,55.0,64.0,40.0,44.0,41.0,54.0,41.0,49.0,51.0,47.0,53.0,36.0,43.0,72.0,56.0,66.0,56.0,59.0,60.0,61.0,53.0,54.0,55.0,53.0,56.0,56.0,57.0,66.0,49.0,50.0,57.0,48.0,57.0,54.0,50.0,80.0,74.0,67.0,70.0,65.0,71.0,81.0,66.0,56.0,60.0,63.0,58.0,63.0,49.0,52.0,44.0,50.0,51.0,57.0,57.0,51.0,32.0,55.0,51.0,49.0,45.0,34.0,38.0,41.0,34.0,33.0,28.0,36.0,14.0,25.0,17.0,16.0,15.0,9.0,7.0,6.0,5.0,10.0 P92602,2.0,15.0,11.0,18.0,7.0,10.0,16.0,16.0,10.0,10.0,14.0,16.0,12.0,9.0,18.0,19.0,28.0,16.0,11.0,16.0,13.0,7.0,11.0,10.0,8.0,12.0,15.0,14.0,21.0,18.0,17.0,14.0,19.0,23.0,20.0,20.0,22.0,26.0,15.0,12.0,11.0,19.0,21.0,19.0,15.0,13.0,11.0,20.0,8.0,10.0,15.0,22.0,17.0,11.0,10.0,11.0,15.0,14.0,14.0,8.0,13.0,17.0,18.0,17.0,14.0,11.0,19.0,9.0,10.0,13.0,11.0,3.0,8.0,6.0,9.0,7.0,10.0,11.0,11.0,14.0,14.0,9.0,5.0,6.0,7.0,3.0,5.0,2.0,6.0,2.0,3.0,2.0,2.0,,,3.0 P92605,38.0,61.0,65.0,53.0,65.0,38.0,36.0,35.0,47.0,38.0,41.0,49.0,34.0,48.0,48.0,53.0,38.0,45.0,58.0,48.0,36.0,27.0,31.0,36.0,48.0,35.0,49.0,59.0,59.0,77.0,70.0,91.0,84.0,82.0,81.0,78.0,68.0,63.0,71.0,67.0,59.0,50.0,62.0,57.0,50.0,51.0,57.0,50.0,45.0,43.0,52.0,42.0,61.0,61.0,58.0,44.0,53.0,40.0,47.0,43.0,56.0,48.0,48.0,38.0,40.0,29.0,34.0,27.0,42.0,20.0,33.0,39.0,25.0,22.0,20.0,32.0,20.0,23.0,26.0,24.0,31.0,24.0,26.0,11.0,9.0,18.0,11.0,11.0,10.0,5.0,3.0,2.0,2.0,6.0,1.0,6.0 P92607,30.0,33.0,35.0,38.0,38.0,35.0,33.0,47.0,38.0,42.0,39.0,31.0,35.0,37.0,47.0,33.0,41.0,32.0,36.0,37.0,41.0,33.0,37.0,27.0,34.0,36.0,42.0,47.0,39.0,53.0,51.0,67.0,73.0,59.0,61.0,52.0,56.0,44.0,57.0,48.0,53.0,57.0,46.0,36.0,42.0,35.0,48.0,39.0,32.0,47.0,60.0,42.0,52.0,59.0,77.0,67.0,59.0,59.0,68.0,71.0,61.0,61.0,45.0,62.0,44.0,51.0,43.0,53.0,46.0,44.0,37.0,39.0,39.0,38.0,36.0,46.0,53.0,58.0,48.0,47.0,46.0,48.0,25.0,34.0,26.0,25.0,19.0,23.0,16.0,10.0,12.0,2.0,2.0,3.0,3.0,8.0 P92615,25.0,20.0,33.0,33.0,25.0,34.0,19.0,24.0,31.0,23.0,39.0,33.0,29.0,25.0,41.0,27.0,28.0,34.0,29.0,29.0,21.0,26.0,20.0,20.0,27.0,29.0,19.0,22.0,34.0,23.0,37.0,36.0,42.0,32.0,28.0,38.0,30.0,42.0,43.0,43.0,26.0,26.0,33.0,29.0,40.0,26.0,27.0,20.0,19.0,33.0,32.0,35.0,34.0,31.0,40.0,37.0,42.0,32.0,30.0,39.0,34.0,42.0,32.0,35.0,27.0,35.0,26.0,23.0,24.0,26.0,25.0,21.0,26.0,21.0,29.0,24.0,20.0,25.0,31.0,22.0,25.0,19.0,13.0,18.0,6.0,10.0,7.0,13.0,8.0,3.0,4.0,3.0,4.0,,1.0,4.0 P92620,45.0,49.0,47.0,37.0,49.0,49.0,53.0,48.0,61.0,68.0,59.0,63.0,56.0,57.0,55.0,60.0,44.0,68.0,34.0,50.0,54.0,44.0,42.0,36.0,46.0,49.0,49.0,63.0,50.0,60.0,60.0,66.0,50.0,75.0,76.0,86.0,80.0,58.0,62.0,58.0,58.0,55.0,73.0,63.0,54.0,50.0,51.0,50.0,44.0,46.0,46.0,45.0,54.0,59.0,45.0,50.0,57.0,43.0,41.0,54.0,46.0,34.0,38.0,43.0,37.0,38.0,34.0,27.0,28.0,34.0,25.0,24.0,31.0,24.0,13.0,24.0,21.0,27.0,17.0,20.0,12.0,12.0,12.0,11.0,11.0,9.0,6.0,7.0,4.0,9.0,3.0,6.0,1.0,5.0,2.0,6.0 P92621,23.0,24.0,25.0,26.0,25.0,14.0,22.0,18.0,27.0,18.0,21.0,12.0,27.0,28.0,21.0,23.0,28.0,25.0,20.0,26.0,23.0,23.0,25.0,27.0,28.0,20.0,32.0,19.0,36.0,22.0,30.0,26.0,30.0,31.0,24.0,40.0,26.0,41.0,21.0,35.0,39.0,27.0,26.0,21.0,24.0,25.0,20.0,23.0,33.0,17.0,26.0,28.0,29.0,29.0,30.0,30.0,40.0,25.0,32.0,32.0,25.0,29.0,27.0,17.0,27.0,24.0,22.0,12.0,21.0,23.0,28.0,19.0,24.0,12.0,21.0,19.0,16.0,27.0,17.0,21.0,6.0,15.0,17.0,10.0,12.0,9.0,11.0,5.0,4.0,3.0,3.0,1.0,1.0,,2.0,2.0 P92626,32.0,39.0,46.0,43.0,34.0,35.0,47.0,39.0,40.0,40.0,35.0,26.0,26.0,43.0,32.0,29.0,35.0,39.0,30.0,34.0,29.0,31.0,26.0,31.0,31.0,30.0,30.0,41.0,42.0,53.0,39.0,45.0,56.0,58.0,58.0,50.0,44.0,42.0,45.0,50.0,44.0,59.0,53.0,34.0,37.0,34.0,37.0,32.0,43.0,31.0,40.0,35.0,38.0,33.0,37.0,39.0,45.0,39.0,37.0,42.0,39.0,33.0,40.0,25.0,41.0,35.0,37.0,26.0,38.0,28.0,30.0,36.0,26.0,33.0,32.0,23.0,24.0,30.0,37.0,22.0,31.0,23.0,22.0,15.0,24.0,6.0,12.0,14.0,12.0,8.0,9.0,3.0,5.0,7.0,3.0,13.0 P92630,11.0,12.0,17.0,15.0,11.0,10.0,14.0,15.0,14.0,18.0,14.0,16.0,13.0,14.0,25.0,13.0,13.0,23.0,10.0,13.0,12.0,12.0,11.0,9.0,20.0,20.0,16.0,22.0,22.0,19.0,19.0,24.0,17.0,20.0,24.0,20.0,25.0,19.0,15.0,21.0,16.0,14.0,23.0,17.0,29.0,13.0,18.0,18.0,13.0,23.0,13.0,14.0,15.0,15.0,22.0,19.0,27.0,24.0,10.0,19.0,25.0,27.0,18.0,13.0,17.0,14.0,13.0,16.0,17.0,18.0,15.0,15.0,19.0,11.0,13.0,11.0,9.0,11.0,20.0,9.0,9.0,8.0,4.0,10.0,5.0,4.0,6.0,4.0,3.0,5.0,2.0,1.0,1.0,1.0,,2.0 P92633,29.0,26.0,22.0,31.0,22.0,18.0,20.0,17.0,15.0,12.0,16.0,21.0,10.0,18.0,11.0,14.0,9.0,14.0,13.0,13.0,18.0,12.0,23.0,17.0,21.0,27.0,39.0,37.0,31.0,34.0,48.0,47.0,48.0,34.0,33.0,41.0,28.0,32.0,25.0,27.0,21.0,25.0,18.0,16.0,20.0,20.0,20.0,11.0,20.0,11.0,14.0,22.0,9.0,27.0,20.0,21.0,29.0,26.0,20.0,19.0,27.0,16.0,29.0,30.0,19.0,16.0,15.0,17.0,14.0,11.0,8.0,7.0,13.0,15.0,5.0,10.0,16.0,16.0,12.0,11.0,9.0,17.0,10.0,12.0,8.0,8.0,7.0,11.0,5.0,1.0,4.0,5.0,,3.0,1.0,1.0 P92634,24.0,18.0,20.0,19.0,26.0,15.0,12.0,26.0,15.0,25.0,20.0,17.0,26.0,21.0,12.0,22.0,20.0,19.0,24.0,20.0,21.0,22.0,20.0,26.0,29.0,36.0,34.0,36.0,39.0,41.0,39.0,38.0,39.0,44.0,34.0,37.0,32.0,41.0,34.0,33.0,34.0,38.0,25.0,31.0,31.0,29.0,23.0,25.0,23.0,22.0,19.0,30.0,21.0,31.0,28.0,38.0,36.0,38.0,36.0,22.0,27.0,28.0,29.0,39.0,29.0,31.0,30.0,30.0,23.0,21.0,24.0,20.0,27.0,15.0,11.0,15.0,21.0,20.0,20.0,18.0,12.0,15.0,13.0,8.0,10.0,11.0,10.0,9.0,7.0,6.0,7.0,3.0,2.0,3.0,,2.0 P92635,5.0,9.0,6.0,3.0,7.0,7.0,4.0,13.0,9.0,7.0,8.0,17.0,8.0,8.0,6.0,9.0,11.0,11.0,14.0,4.0,8.0,8.0,10.0,8.0,7.0,6.0,6.0,14.0,13.0,4.0,13.0,5.0,9.0,15.0,9.0,5.0,14.0,11.0,12.0,12.0,12.0,8.0,9.0,17.0,11.0,16.0,8.0,8.0,6.0,9.0,15.0,19.0,11.0,6.0,13.0,10.0,14.0,15.0,14.0,15.0,17.0,17.0,16.0,16.0,19.0,11.0,20.0,8.0,11.0,12.0,11.0,13.0,7.0,12.0,15.0,12.0,9.0,12.0,10.0,9.0,7.0,12.0,11.0,7.0,4.0,6.0,4.0,6.0,3.0,,2.0,2.0,1.0,2.0,2.0,1.0 P92637,21.0,31.0,30.0,33.0,35.0,34.0,25.0,22.0,24.0,27.0,29.0,15.0,24.0,28.0,32.0,19.0,22.0,17.0,19.0,22.0,19.0,24.0,16.0,19.0,16.0,26.0,16.0,18.0,35.0,23.0,36.0,31.0,44.0,50.0,55.0,47.0,49.0,39.0,37.0,31.0,44.0,34.0,22.0,22.0,27.0,23.0,26.0,17.0,22.0,20.0,18.0,22.0,27.0,23.0,36.0,31.0,34.0,35.0,38.0,27.0,29.0,29.0,34.0,23.0,27.0,25.0,25.0,14.0,15.0,7.0,11.0,8.0,15.0,12.0,12.0,22.0,16.0,11.0,10.0,6.0,7.0,14.0,3.0,3.0,5.0,4.0,4.0,,2.0,3.0,1.0,1.0,,1.0,2.0,1.0 P92639,12.0,9.0,16.0,11.0,7.0,17.0,10.0,16.0,14.0,20.0,19.0,23.0,15.0,19.0,24.0,20.0,28.0,20.0,16.0,24.0,15.0,21.0,11.0,14.0,14.0,20.0,13.0,20.0,18.0,14.0,14.0,18.0,15.0,23.0,23.0,21.0,24.0,17.0,16.0,20.0,19.0,16.0,25.0,24.0,22.0,26.0,30.0,23.0,30.0,17.0,23.0,28.0,16.0,16.0,20.0,13.0,22.0,15.0,19.0,21.0,26.0,19.0,14.0,18.0,19.0,10.0,19.0,26.0,16.0,9.0,15.0,12.0,16.0,9.0,10.0,8.0,14.0,18.0,10.0,9.0,9.0,6.0,8.0,13.0,6.0,6.0,7.0,6.0,6.0,4.0,8.0,2.0,2.0,,,2.0 P92642,23.0,29.0,27.0,26.0,20.0,29.0,30.0,44.0,24.0,27.0,30.0,30.0,43.0,31.0,30.0,33.0,34.0,23.0,23.0,29.0,28.0,27.0,28.0,22.0,32.0,26.0,33.0,39.0,37.0,45.0,25.0,44.0,51.0,39.0,39.0,31.0,35.0,34.0,52.0,34.0,22.0,27.0,31.0,30.0,31.0,38.0,30.0,27.0,30.0,39.0,36.0,35.0,41.0,41.0,48.0,53.0,48.0,46.0,44.0,47.0,49.0,32.0,42.0,36.0,44.0,32.0,48.0,33.0,19.0,26.0,31.0,23.0,31.0,19.0,34.0,32.0,32.0,30.0,31.0,16.0,12.0,11.0,24.0,11.0,12.0,12.0,13.0,7.0,5.0,4.0,5.0,2.0,4.0,3.0,2.0,4.0 P92646,5.0,17.0,21.0,18.0,21.0,15.0,20.0,14.0,13.0,21.0,24.0,21.0,25.0,21.0,27.0,16.0,20.0,21.0,15.0,13.0,16.0,17.0,15.0,16.0,17.0,20.0,21.0,19.0,20.0,16.0,22.0,24.0,22.0,28.0,26.0,33.0,29.0,30.0,31.0,21.0,20.0,28.0,30.0,22.0,24.0,25.0,27.0,24.0,23.0,23.0,16.0,29.0,24.0,28.0,22.0,24.0,25.0,31.0,28.0,18.0,32.0,13.0,20.0,22.0,22.0,21.0,24.0,28.0,18.0,24.0,22.0,19.0,23.0,20.0,13.0,22.0,24.0,28.0,15.0,9.0,19.0,14.0,12.0,7.0,10.0,12.0,3.0,5.0,4.0,3.0,2.0,4.0,,,,1.0 P92647,27.0,30.0,24.0,29.0,30.0,33.0,34.0,34.0,39.0,22.0,40.0,30.0,40.0,36.0,40.0,37.0,37.0,39.0,37.0,36.0,22.0,31.0,28.0,31.0,36.0,33.0,23.0,42.0,47.0,53.0,47.0,35.0,39.0,49.0,47.0,36.0,62.0,49.0,49.0,31.0,52.0,38.0,41.0,38.0,44.0,44.0,34.0,30.0,42.0,32.0,38.0,37.0,38.0,60.0,60.0,44.0,48.0,53.0,41.0,50.0,44.0,41.0,53.0,48.0,44.0,35.0,41.0,35.0,48.0,23.0,38.0,32.0,34.0,30.0,43.0,33.0,29.0,50.0,46.0,26.0,25.0,14.0,24.0,20.0,16.0,21.0,12.0,8.0,8.0,14.0,7.0,2.0,2.0,1.0,4.0,7.0 P92648,32.0,31.0,38.0,37.0,34.0,29.0,40.0,29.0,26.0,32.0,29.0,29.0,30.0,28.0,25.0,25.0,19.0,25.0,30.0,16.0,15.0,27.0,27.0,24.0,27.0,24.0,34.0,31.0,40.0,45.0,44.0,56.0,67.0,51.0,49.0,56.0,44.0,42.0,39.0,42.0,44.0,32.0,38.0,48.0,38.0,45.0,34.0,37.0,32.0,32.0,32.0,31.0,55.0,35.0,37.0,42.0,41.0,41.0,37.0,40.0,37.0,34.0,39.0,38.0,39.0,32.0,34.0,31.0,19.0,24.0,35.0,32.0,29.0,18.0,18.0,21.0,26.0,38.0,29.0,27.0,22.0,15.0,24.0,14.0,11.0,8.0,11.0,8.0,7.0,4.0,6.0,5.0,,4.0,,7.0 P92651,23.0,24.0,38.0,32.0,29.0,26.0,28.0,34.0,29.0,24.0,32.0,24.0,23.0,23.0,30.0,32.0,38.0,37.0,35.0,29.0,34.0,25.0,28.0,30.0,31.0,27.0,35.0,40.0,37.0,49.0,43.0,50.0,36.0,46.0,50.0,42.0,39.0,42.0,38.0,29.0,41.0,39.0,33.0,32.0,36.0,37.0,32.0,27.0,24.0,29.0,37.0,29.0,36.0,40.0,37.0,43.0,42.0,42.0,50.0,32.0,35.0,50.0,35.0,41.0,29.0,30.0,32.0,31.0,28.0,18.0,32.0,30.0,29.0,19.0,25.0,22.0,29.0,16.0,23.0,7.0,16.0,18.0,14.0,15.0,3.0,9.0,9.0,5.0,7.0,2.0,9.0,4.0,4.0,2.0,2.0,1.0 Y00050,34.0,35.0,44.0,37.0,47.0,50.0,37.0,36.0,46.0,42.0,46.0,39.0,47.0,51.0,42.0,43.0,43.0,41.0,37.0,35.0,32.0,41.0,28.0,35.0,37.0,34.0,37.0,48.0,49.0,50.0,69.0,63.0,62.0,58.0,45.0,60.0,68.0,58.0,49.0,44.0,52.0,43.0,50.0,38.0,49.0,54.0,43.0,40.0,31.0,33.0,38.0,51.0,56.0,57.0,44.0,44.0,45.0,40.0,42.0,40.0,45.0,49.0,41.0,32.0,33.0,35.0,31.0,31.0,31.0,32.0,26.0,28.0,30.0,31.0,14.0,19.0,23.0,23.0,21.0,20.0,21.0,11.0,11.0,13.0,5.0,8.0,7.0,8.0,6.0,4.0,9.0,3.0,4.0,,1.0,2.0 Y00186,12.0,13.0,13.0,15.0,10.0,13.0,13.0,12.0,12.0,13.0,12.0,14.0,15.0,11.0,15.0,12.0,11.0,13.0,15.0,16.0,8.0,22.0,12.0,19.0,9.0,16.0,17.0,16.0,16.0,17.0,15.0,18.0,13.0,13.0,11.0,10.0,8.0,18.0,5.0,10.0,7.0,12.0,7.0,9.0,11.0,10.0,11.0,12.0,6.0,6.0,9.0,6.0,6.0,8.0,9.0,7.0,4.0,4.0,4.0,2.0,4.0,6.0,7.0,5.0,2.0,6.0,7.0,5.0,2.0,6.0,,4.0,5.0,3.0,2.0,,4.0,,1.0,,2.0,,3.0,,,,,1.0,,,3.0,,,1.0,,1.0 Y00445,83.0,102.0,107.0,113.0,130.0,115.0,136.0,139.0,124.0,147.0,155.0,135.0,152.0,137.0,162.0,141.0,160.0,150.0,132.0,124.0,117.0,115.0,105.0,111.0,126.0,116.0,138.0,148.0,166.0,191.0,168.0,179.0,178.0,176.0,192.0,178.0,178.0,200.0,161.0,166.0,164.0,160.0,114.0,136.0,147.0,149.0,136.0,118.0,96.0,113.0,96.0,115.0,109.0,76.0,88.0,90.0,95.0,100.0,81.0,78.0,69.0,74.0,78.0,78.0,67.0,62.0,45.0,67.0,48.0,50.0,34.0,37.0,43.0,32.0,48.0,38.0,28.0,29.0,41.0,20.0,23.0,15.0,19.0,11.0,14.0,17.0,11.0,14.0,4.0,4.0,4.0,7.0,2.0,3.0,2.0,7.0 Y00726,34.0,28.0,27.0,44.0,36.0,33.0,36.0,40.0,46.0,40.0,45.0,38.0,44.0,41.0,43.0,41.0,28.0,38.0,28.0,28.0,36.0,25.0,27.0,20.0,20.0,26.0,35.0,32.0,28.0,35.0,38.0,43.0,44.0,40.0,53.0,59.0,59.0,54.0,56.0,66.0,41.0,47.0,44.0,48.0,31.0,38.0,33.0,34.0,28.0,24.0,26.0,26.0,30.0,36.0,29.0,32.0,28.0,34.0,29.0,35.0,35.0,33.0,33.0,30.0,24.0,36.0,39.0,29.0,22.0,24.0,28.0,16.0,22.0,12.0,20.0,18.0,18.0,15.0,24.0,18.0,13.0,10.0,11.0,9.0,12.0,3.0,11.0,6.0,6.0,5.0,4.0,2.0,4.0,5.0,5.0, Y01695,19.0,20.0,24.0,21.0,26.0,20.0,25.0,25.0,38.0,25.0,28.0,20.0,35.0,27.0,18.0,32.0,27.0,32.0,25.0,16.0,29.0,22.0,25.0,35.0,29.0,50.0,52.0,57.0,51.0,59.0,39.0,40.0,37.0,44.0,41.0,53.0,44.0,33.0,33.0,36.0,26.0,27.0,35.0,30.0,33.0,21.0,19.0,23.0,24.0,22.0,24.0,18.0,16.0,19.0,18.0,22.0,20.0,16.0,24.0,15.0,18.0,17.0,11.0,14.0,12.0,15.0,13.0,4.0,8.0,8.0,7.0,5.0,3.0,5.0,8.0,2.0,6.0,5.0,3.0,4.0,,3.0,2.0,3.0,2.0,1.0,,2.0,,1.0,,,1.0,,,1.0 Y02274,29.0,27.0,29.0,23.0,25.0,25.0,27.0,36.0,27.0,23.0,26.0,32.0,35.0,43.0,39.0,26.0,28.0,31.0,28.0,31.0,22.0,25.0,12.0,19.0,23.0,24.0,35.0,22.0,19.0,28.0,24.0,27.0,38.0,36.0,36.0,50.0,40.0,35.0,37.0,31.0,33.0,38.0,48.0,42.0,28.0,30.0,21.0,28.0,21.0,21.0,22.0,30.0,22.0,21.0,29.0,20.0,20.0,19.0,24.0,13.0,18.0,27.0,12.0,17.0,14.0,13.0,8.0,16.0,10.0,9.0,7.0,8.0,8.0,4.0,11.0,5.0,7.0,5.0,3.0,3.0,4.0,5.0,4.0,2.0,2.0,2.0,,,1.0,2.0,,,1.0,1.0,,2.0 Y02319,64.0,59.0,58.0,48.0,60.0,53.0,65.0,56.0,59.0,63.0,62.0,59.0,63.0,52.0,50.0,51.0,57.0,39.0,55.0,53.0,82.0,71.0,70.0,63.0,74.0,74.0,86.0,85.0,116.0,100.0,95.0,91.0,66.0,88.0,74.0,71.0,69.0,68.0,65.0,63.0,59.0,41.0,44.0,50.0,42.0,53.0,49.0,30.0,35.0,28.0,31.0,32.0,24.0,22.0,23.0,31.0,24.0,17.0,22.0,22.0,22.0,18.0,15.0,11.0,9.0,14.0,15.0,9.0,7.0,7.0,6.0,4.0,7.0,5.0,6.0,5.0,2.0,2.0,6.0,3.0,2.0,,4.0,5.0,1.0,,,1.0,,,,,,,, Y02321,43.0,32.0,51.0,44.0,38.0,45.0,37.0,49.0,40.0,45.0,42.0,51.0,41.0,52.0,47.0,38.0,37.0,33.0,31.0,33.0,24.0,24.0,35.0,24.0,26.0,34.0,29.0,38.0,48.0,43.0,45.0,52.0,60.0,64.0,47.0,54.0,52.0,51.0,49.0,62.0,62.0,59.0,49.0,47.0,45.0,35.0,29.0,34.0,32.0,27.0,35.0,29.0,35.0,27.0,37.0,40.0,26.0,24.0,34.0,20.0,20.0,30.0,27.0,26.0,26.0,21.0,24.0,19.0,18.0,21.0,18.0,26.0,14.0,14.0,23.0,15.0,21.0,23.0,19.0,8.0,12.0,10.0,9.0,9.0,6.0,9.0,6.0,6.0,4.0,5.0,3.0,2.0,3.0,2.0,4.0,6.0 Y02322,65.0,67.0,69.0,59.0,58.0,70.0,73.0,76.0,63.0,61.0,65.0,69.0,58.0,62.0,87.0,56.0,66.0,50.0,60.0,35.0,47.0,44.0,57.0,54.0,71.0,60.0,78.0,90.0,93.0,106.0,91.0,99.0,80.0,98.0,99.0,84.0,79.0,89.0,92.0,96.0,73.0,75.0,70.0,59.0,63.0,44.0,32.0,39.0,31.0,45.0,47.0,42.0,44.0,58.0,66.0,59.0,50.0,51.0,54.0,42.0,47.0,53.0,36.0,44.0,38.0,47.0,40.0,32.0,35.0,40.0,26.0,25.0,33.0,26.0,23.0,20.0,27.0,30.0,32.0,12.0,10.0,19.0,17.0,10.0,9.0,10.0,11.0,15.0,12.0,9.0,3.0,2.0,3.0,3.0,2.0,8.0 Y02325,29.0,32.0,44.0,33.0,41.0,44.0,47.0,45.0,63.0,50.0,53.0,61.0,53.0,46.0,57.0,39.0,52.0,35.0,58.0,38.0,44.0,34.0,34.0,33.0,32.0,38.0,26.0,35.0,32.0,32.0,43.0,38.0,36.0,41.0,49.0,50.0,48.0,53.0,59.0,56.0,50.0,36.0,49.0,41.0,55.0,48.0,36.0,37.0,42.0,24.0,25.0,32.0,31.0,21.0,24.0,19.0,24.0,30.0,11.0,19.0,27.0,11.0,9.0,13.0,18.0,10.0,16.0,9.0,13.0,7.0,15.0,14.0,10.0,7.0,9.0,11.0,2.0,7.0,5.0,2.0,5.0,2.0,2.0,6.0,3.0,3.0,2.0,3.0,2.0,2.0,,2.0,,1.0,1.0, Y02378,17.0,21.0,27.0,29.0,43.0,36.0,20.0,34.0,28.0,38.0,40.0,38.0,40.0,41.0,38.0,45.0,48.0,29.0,30.0,34.0,36.0,43.0,36.0,29.0,32.0,30.0,49.0,41.0,38.0,42.0,34.0,42.0,42.0,41.0,50.0,34.0,39.0,61.0,53.0,39.0,54.0,49.0,41.0,38.0,35.0,31.0,28.0,44.0,34.0,33.0,32.0,47.0,42.0,56.0,55.0,52.0,50.0,47.0,43.0,34.0,51.0,42.0,41.0,48.0,34.0,35.0,33.0,22.0,20.0,32.0,39.0,24.0,23.0,27.0,31.0,31.0,29.0,38.0,25.0,25.0,33.0,30.0,20.0,16.0,14.0,12.0,15.0,14.0,4.0,9.0,4.0,5.0,7.0,2.0,1.0,1.0 Y02520,23.0,28.0,26.0,39.0,43.0,43.0,49.0,55.0,51.0,63.0,53.0,53.0,41.0,57.0,57.0,56.0,59.0,59.0,63.0,43.0,41.0,35.0,33.0,38.0,29.0,27.0,25.0,29.0,33.0,32.0,56.0,44.0,45.0,41.0,59.0,34.0,43.0,42.0,53.0,58.0,65.0,33.0,47.0,54.0,50.0,55.0,40.0,42.0,44.0,42.0,30.0,32.0,31.0,27.0,30.0,27.0,32.0,26.0,28.0,20.0,24.0,23.0,13.0,12.0,22.0,18.0,16.0,20.0,10.0,6.0,13.0,7.0,8.0,8.0,8.0,8.0,5.0,7.0,5.0,4.0,6.0,4.0,4.0,5.0,5.0,4.0,2.0,1.0,,1.0,,,2.0,1.0,, Y02586,50.0,45.0,48.0,44.0,34.0,54.0,49.0,49.0,49.0,42.0,41.0,43.0,55.0,42.0,35.0,36.0,35.0,37.0,32.0,35.0,45.0,28.0,33.0,43.0,59.0,44.0,39.0,39.0,57.0,48.0,64.0,60.0,74.0,46.0,51.0,52.0,49.0,53.0,43.0,41.0,41.0,36.0,46.0,42.0,40.0,37.0,38.0,27.0,36.0,20.0,17.0,20.0,28.0,23.0,19.0,23.0,15.0,21.0,24.0,21.0,12.0,16.0,11.0,11.0,14.0,13.0,9.0,11.0,6.0,9.0,10.0,12.0,2.0,6.0,6.0,5.0,5.0,6.0,10.0,1.0,4.0,4.0,5.0,3.0,2.0,,6.0,2.0,2.0,1.0,,,2.0,1.0,, Y02622,46.0,37.0,49.0,39.0,24.0,39.0,31.0,34.0,26.0,34.0,36.0,23.0,15.0,28.0,23.0,11.0,19.0,12.0,24.0,39.0,63.0,106.0,203.0,318.0,458.0,533.0,602.0,522.0,539.0,424.0,401.0,363.0,294.0,286.0,229.0,178.0,155.0,130.0,128.0,99.0,87.0,89.0,63.0,59.0,58.0,45.0,35.0,28.0,25.0,46.0,31.0,27.0,19.0,31.0,14.0,23.0,18.0,25.0,21.0,25.0,11.0,18.0,10.0,17.0,16.0,10.0,14.0,11.0,3.0,8.0,3.0,8.0,4.0,6.0,2.0,2.0,5.0,1.0,1.0,2.0,,,2.0,1.0,1.0,,,,,,1.0,,,,, Y02625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,1.0,,,1.0,2.0,,1.0,,,1.0,1.0,,2.0,1.0,,2.0,3.0,1.0,,,5.0,4.0,3.0,7.0,2.0,6.0,5.0,4.0,2.0,7.0,4.0,6.0,6.0,9.0,15.0,10.0,9.0,18.0,23.0,24.0,27.0,20.0,33.0,31.0,17.0,34.0,42.0,39.0,36.0,30.0,22.0,28.0,32.0,30.0,27.0,19.0,70.0 Y02663,25.0,23.0,27.0,39.0,43.0,30.0,39.0,50.0,33.0,44.0,48.0,45.0,36.0,35.0,35.0,42.0,44.0,33.0,30.0,24.0,25.0,15.0,18.0,16.0,26.0,13.0,17.0,32.0,18.0,35.0,28.0,34.0,42.0,35.0,55.0,43.0,48.0,48.0,34.0,55.0,49.0,46.0,32.0,46.0,38.0,29.0,34.0,24.0,27.0,23.0,16.0,16.0,26.0,20.0,21.0,18.0,25.0,14.0,22.0,18.0,23.0,25.0,27.0,21.0,19.0,17.0,21.0,27.0,17.0,23.0,17.0,10.0,11.0,16.0,12.0,12.0,8.0,10.0,21.0,7.0,14.0,9.0,5.0,5.0,4.0,4.0,4.0,3.0,2.0,6.0,2.0,5.0,3.0,1.0,3.0,5.0 Y02713,29.0,19.0,19.0,37.0,29.0,28.0,35.0,33.0,40.0,28.0,33.0,34.0,35.0,37.0,31.0,39.0,26.0,38.0,21.0,23.0,12.0,13.0,17.0,22.0,20.0,18.0,24.0,25.0,38.0,38.0,35.0,39.0,49.0,41.0,48.0,42.0,50.0,48.0,51.0,49.0,38.0,41.0,43.0,42.0,46.0,34.0,31.0,30.0,31.0,28.0,26.0,29.0,31.0,25.0,21.0,28.0,30.0,22.0,20.0,13.0,25.0,23.0,14.0,18.0,19.0,18.0,16.0,15.0,21.0,17.0,15.0,16.0,21.0,12.0,15.0,9.0,9.0,17.0,9.0,10.0,8.0,3.0,8.0,5.0,5.0,5.0,5.0,5.0,4.0,,5.0,2.0,3.0,5.0,,6.0 Y02718,28.0,27.0,30.0,32.0,33.0,37.0,26.0,39.0,35.0,34.0,35.0,27.0,30.0,27.0,31.0,25.0,29.0,21.0,17.0,29.0,20.0,25.0,22.0,20.0,20.0,25.0,33.0,24.0,41.0,30.0,41.0,26.0,52.0,45.0,57.0,37.0,33.0,38.0,36.0,42.0,34.0,33.0,32.0,27.0,22.0,30.0,36.0,22.0,30.0,32.0,31.0,23.0,29.0,24.0,19.0,17.0,30.0,19.0,32.0,22.0,24.0,25.0,20.0,19.0,22.0,21.0,14.0,22.0,19.0,17.0,17.0,14.0,10.0,18.0,8.0,16.0,15.0,18.0,18.0,12.0,8.0,14.0,9.0,8.0,11.0,7.0,6.0,2.0,6.0,6.0,6.0,4.0,1.0,1.0,3.0, Y02720,38.0,39.0,28.0,43.0,33.0,25.0,49.0,44.0,39.0,30.0,34.0,39.0,44.0,32.0,34.0,40.0,38.0,42.0,37.0,29.0,39.0,19.0,38.0,34.0,42.0,37.0,44.0,42.0,27.0,45.0,53.0,38.0,32.0,41.0,34.0,54.0,60.0,34.0,48.0,34.0,44.0,37.0,40.0,37.0,37.0,32.0,21.0,23.0,20.0,30.0,25.0,21.0,16.0,21.0,23.0,14.0,21.0,18.0,23.0,18.0,9.0,12.0,18.0,17.0,18.0,13.0,7.0,12.0,9.0,7.0,6.0,9.0,9.0,9.0,6.0,4.0,3.0,5.0,1.0,6.0,3.0,3.0,2.0,5.0,1.0,3.0,1.0,1.0,1.0,1.0,,2.0,2.0,1.0,,1.0 Y02721,36.0,37.0,40.0,44.0,52.0,43.0,39.0,39.0,44.0,56.0,45.0,48.0,53.0,45.0,54.0,46.0,50.0,45.0,41.0,34.0,29.0,26.0,32.0,26.0,34.0,31.0,36.0,27.0,49.0,38.0,35.0,54.0,51.0,48.0,49.0,59.0,65.0,51.0,46.0,42.0,42.0,63.0,40.0,40.0,34.0,38.0,30.0,26.0,31.0,17.0,27.0,23.0,27.0,19.0,21.0,17.0,20.0,20.0,21.0,13.0,16.0,16.0,11.0,18.0,8.0,13.0,16.0,10.0,13.0,8.0,5.0,15.0,8.0,13.0,5.0,8.0,14.0,13.0,9.0,2.0,4.0,5.0,9.0,4.0,2.0,9.0,5.0,2.0,2.0,1.0,2.0,,,,,1.0 Y02753,33.0,45.0,36.0,49.0,47.0,50.0,38.0,59.0,62.0,55.0,41.0,50.0,57.0,55.0,51.0,51.0,52.0,43.0,61.0,41.0,37.0,30.0,35.0,22.0,38.0,29.0,54.0,36.0,44.0,50.0,38.0,59.0,36.0,58.0,74.0,58.0,55.0,55.0,51.0,48.0,47.0,42.0,48.0,40.0,38.0,34.0,38.0,32.0,25.0,28.0,37.0,34.0,31.0,30.0,24.0,31.0,29.0,28.0,34.0,29.0,28.0,29.0,16.0,32.0,21.0,30.0,14.0,23.0,24.0,23.0,20.0,8.0,23.0,10.0,12.0,7.0,12.0,11.0,11.0,12.0,7.0,12.0,10.0,7.0,3.0,6.0,6.0,2.0,3.0,2.0,,3.0,1.0,1.0,1.0, Y02755,45.0,77.0,71.0,83.0,89.0,80.0,100.0,80.0,92.0,79.0,92.0,75.0,83.0,71.0,64.0,71.0,67.0,67.0,51.0,45.0,51.0,40.0,37.0,55.0,60.0,69.0,63.0,88.0,80.0,79.0,92.0,102.0,110.0,123.0,129.0,104.0,122.0,117.0,105.0,104.0,101.0,101.0,81.0,81.0,90.0,73.0,65.0,52.0,58.0,42.0,48.0,46.0,40.0,34.0,41.0,41.0,33.0,36.0,38.0,37.0,31.0,35.0,27.0,34.0,27.0,30.0,22.0,25.0,23.0,20.0,21.0,26.0,15.0,9.0,12.0,17.0,14.0,15.0,13.0,4.0,8.0,8.0,3.0,4.0,5.0,5.0,3.0,4.0,2.0,3.0,7.0,2.0,2.0,,1.0,1.0 Y02767,37.0,46.0,58.0,37.0,44.0,64.0,48.0,54.0,47.0,49.0,44.0,35.0,57.0,52.0,41.0,32.0,31.0,43.0,46.0,30.0,26.0,24.0,31.0,28.0,47.0,41.0,64.0,50.0,60.0,74.0,76.0,73.0,83.0,75.0,80.0,76.0,72.0,80.0,89.0,73.0,67.0,57.0,59.0,68.0,55.0,34.0,35.0,32.0,33.0,33.0,31.0,29.0,29.0,23.0,30.0,25.0,29.0,23.0,24.0,26.0,24.0,31.0,26.0,32.0,16.0,19.0,13.0,22.0,16.0,9.0,10.0,14.0,14.0,13.0,11.0,13.0,15.0,11.0,10.0,6.0,5.0,13.0,9.0,8.0,8.0,4.0,6.0,5.0,6.0,10.0,3.0,1.0,1.0,2.0,1.0,2.0 Y02790,64.0,68.0,71.0,50.0,63.0,72.0,66.0,72.0,71.0,86.0,64.0,79.0,83.0,66.0,78.0,77.0,67.0,66.0,55.0,49.0,43.0,48.0,47.0,52.0,57.0,61.0,49.0,69.0,65.0,58.0,63.0,64.0,52.0,54.0,63.0,61.0,64.0,87.0,69.0,71.0,58.0,54.0,56.0,37.0,42.0,46.0,45.0,37.0,42.0,33.0,31.0,35.0,31.0,21.0,27.0,32.0,21.0,35.0,27.0,25.0,19.0,21.0,18.0,20.0,11.0,20.0,13.0,16.0,13.0,12.0,7.0,15.0,10.0,10.0,9.0,12.0,11.0,5.0,4.0,10.0,6.0,4.0,8.0,5.0,3.0,5.0,4.0,3.0,5.0,,,1.0,2.0,,, Y02795,43.0,33.0,34.0,36.0,35.0,44.0,27.0,42.0,31.0,38.0,40.0,45.0,40.0,40.0,31.0,33.0,37.0,41.0,32.0,28.0,19.0,29.0,31.0,39.0,26.0,34.0,34.0,35.0,37.0,51.0,58.0,53.0,60.0,57.0,51.0,64.0,53.0,57.0,48.0,39.0,52.0,39.0,55.0,29.0,46.0,46.0,39.0,27.0,31.0,29.0,33.0,27.0,38.0,27.0,24.0,23.0,17.0,20.0,13.0,25.0,24.0,18.0,16.0,23.0,21.0,9.0,18.0,16.0,14.0,14.0,16.0,9.0,12.0,5.0,13.0,7.0,7.0,4.0,12.0,7.0,12.0,6.0,8.0,5.0,7.0,4.0,4.0,3.0,1.0,,3.0,1.0,3.0,1.0,,3.0 Y02827,43.0,53.0,44.0,38.0,41.0,40.0,36.0,44.0,41.0,33.0,40.0,43.0,36.0,33.0,32.0,43.0,45.0,37.0,45.0,47.0,49.0,44.0,41.0,57.0,52.0,44.0,65.0,59.0,56.0,55.0,54.0,41.0,44.0,31.0,32.0,47.0,46.0,35.0,54.0,30.0,29.0,29.0,41.0,28.0,30.0,20.0,23.0,22.0,33.0,28.0,37.0,25.0,21.0,20.0,28.0,12.0,20.0,14.0,13.0,5.0,14.0,8.0,10.0,10.0,10.0,8.0,12.0,11.0,14.0,9.0,10.0,6.0,12.0,9.0,6.0,4.0,2.0,3.0,3.0,4.0,8.0,4.0,1.0,1.0,4.0,2.0,2.0,1.0,5.0,1.0,2.0,,,1.0,1.0,2.0 Y02849,41.0,24.0,27.0,36.0,18.0,37.0,24.0,29.0,23.0,18.0,21.0,26.0,22.0,14.0,27.0,20.0,20.0,37.0,64.0,77.0,91.0,132.0,256.0,355.0,426.0,484.0,397.0,364.0,317.0,312.0,256.0,236.0,232.0,211.0,202.0,152.0,149.0,113.0,112.0,81.0,74.0,74.0,74.0,68.0,57.0,46.0,57.0,34.0,25.0,32.0,29.0,32.0,25.0,22.0,25.0,17.0,14.0,13.0,23.0,20.0,14.0,19.0,23.0,19.0,20.0,13.0,8.0,8.0,16.0,10.0,4.0,8.0,7.0,9.0,3.0,1.0,2.0,2.0,2.0,2.0,1.0,1.0,,,,1.0,,1.0,1.0,,,,1.0,,,1.0 Y02875,40.0,28.0,44.0,30.0,41.0,46.0,27.0,31.0,37.0,37.0,44.0,41.0,34.0,33.0,39.0,44.0,43.0,40.0,32.0,36.0,36.0,25.0,38.0,44.0,37.0,36.0,33.0,32.0,46.0,50.0,40.0,43.0,48.0,33.0,33.0,39.0,37.0,44.0,43.0,43.0,39.0,43.0,25.0,35.0,42.0,36.0,24.0,34.0,29.0,19.0,26.0,19.0,29.0,19.0,19.0,21.0,17.0,17.0,21.0,17.0,20.0,12.0,13.0,10.0,11.0,4.0,13.0,11.0,12.0,13.0,16.0,6.0,8.0,9.0,5.0,13.0,7.0,6.0,7.0,1.0,4.0,1.0,3.0,2.0,,,2.0,4.0,2.0,2.0,,1.0,,,1.0, Y02885,24.0,34.0,40.0,40.0,31.0,36.0,38.0,36.0,33.0,39.0,34.0,36.0,29.0,28.0,34.0,35.0,27.0,28.0,30.0,25.0,27.0,22.0,18.0,28.0,29.0,27.0,38.0,38.0,31.0,38.0,37.0,34.0,39.0,39.0,56.0,43.0,54.0,44.0,43.0,30.0,38.0,47.0,36.0,24.0,30.0,25.0,12.0,19.0,19.0,22.0,23.0,13.0,20.0,21.0,16.0,21.0,14.0,21.0,16.0,17.0,14.0,18.0,16.0,15.0,11.0,12.0,13.0,8.0,10.0,11.0,9.0,4.0,3.0,8.0,8.0,3.0,1.0,7.0,6.0,3.0,5.0,3.0,2.0,2.0,1.0,4.0,1.0,2.0,1.0,1.0,1.0,1.0,1.0,1.0,,2.0 Y02886,23.0,21.0,20.0,26.0,24.0,28.0,27.0,28.0,30.0,27.0,32.0,28.0,33.0,43.0,29.0,21.0,24.0,19.0,31.0,18.0,20.0,17.0,18.0,26.0,27.0,29.0,21.0,33.0,38.0,53.0,47.0,35.0,25.0,35.0,42.0,39.0,47.0,40.0,38.0,49.0,38.0,58.0,37.0,49.0,36.0,29.0,32.0,31.0,29.0,29.0,28.0,33.0,29.0,40.0,28.0,33.0,27.0,32.0,27.0,18.0,21.0,16.0,24.0,14.0,25.0,17.0,18.0,17.0,18.0,16.0,15.0,18.0,16.0,16.0,15.0,13.0,15.0,8.0,13.0,9.0,7.0,10.0,5.0,7.0,3.0,2.0,4.0,4.0,2.0,,,,,,,4.0 Y02890,36.0,32.0,39.0,44.0,34.0,37.0,38.0,50.0,41.0,42.0,38.0,38.0,41.0,37.0,36.0,44.0,48.0,41.0,69.0,112.0,123.0,109.0,72.0,56.0,69.0,67.0,51.0,62.0,57.0,56.0,56.0,53.0,53.0,53.0,65.0,52.0,59.0,68.0,63.0,48.0,59.0,60.0,58.0,54.0,41.0,59.0,43.0,39.0,36.0,35.0,27.0,21.0,25.0,21.0,24.0,23.0,18.0,14.0,17.0,11.0,13.0,19.0,12.0,14.0,5.0,17.0,15.0,11.0,11.0,7.0,16.0,6.0,15.0,10.0,4.0,3.0,10.0,4.0,2.0,4.0,3.0,2.0,,3.0,7.0,5.0,6.0,,,,,1.0,,,,1.0 Y02933,58.0,60.0,49.0,71.0,73.0,62.0,82.0,74.0,64.0,62.0,76.0,73.0,72.0,72.0,76.0,65.0,65.0,73.0,56.0,64.0,43.0,58.0,55.0,54.0,54.0,59.0,70.0,65.0,56.0,73.0,73.0,87.0,105.0,66.0,79.0,83.0,80.0,80.0,71.0,80.0,69.0,71.0,57.0,57.0,53.0,60.0,54.0,47.0,44.0,51.0,37.0,47.0,53.0,39.0,49.0,33.0,48.0,34.0,36.0,43.0,45.0,30.0,40.0,29.0,28.0,34.0,23.0,24.0,25.0,32.0,25.0,27.0,24.0,26.0,23.0,26.0,17.0,21.0,11.0,17.0,17.0,12.0,9.0,13.0,14.0,8.0,8.0,7.0,5.0,4.0,3.0,1.0,1.0,,,4.0 Y02936,24.0,17.0,15.0,26.0,20.0,28.0,18.0,28.0,27.0,30.0,28.0,30.0,34.0,25.0,25.0,29.0,28.0,19.0,19.0,23.0,15.0,18.0,10.0,22.0,19.0,18.0,15.0,23.0,19.0,27.0,28.0,33.0,34.0,28.0,33.0,39.0,43.0,40.0,22.0,25.0,37.0,35.0,31.0,25.0,23.0,26.0,29.0,23.0,17.0,21.0,21.0,24.0,21.0,23.0,28.0,14.0,21.0,28.0,28.0,11.0,15.0,21.0,17.0,12.0,19.0,3.0,16.0,10.0,11.0,8.0,9.0,9.0,13.0,6.0,12.0,11.0,10.0,5.0,11.0,4.0,5.0,4.0,3.0,1.0,1.0,2.0,3.0,7.0,2.0,1.0,4.0,2.0,3.0,5.0,1.0,8.0 Y02960,38.0,43.0,45.0,36.0,40.0,50.0,42.0,55.0,50.0,40.0,52.0,38.0,37.0,46.0,35.0,35.0,33.0,57.0,36.0,35.0,48.0,42.0,47.0,43.0,55.0,42.0,64.0,81.0,76.0,62.0,57.0,61.0,66.0,51.0,54.0,66.0,61.0,62.0,61.0,41.0,40.0,44.0,48.0,51.0,41.0,31.0,36.0,31.0,23.0,20.0,31.0,22.0,25.0,20.0,33.0,26.0,14.0,14.0,19.0,18.0,17.0,12.0,19.0,15.0,13.0,14.0,8.0,10.0,9.0,3.0,11.0,8.0,7.0,5.0,7.0,2.0,2.0,5.0,1.0,1.0,4.0,3.0,3.0,1.0,4.0,4.0,,1.0,,,,,,,,1.0 Y03079,114.0,94.0,107.0,109.0,104.0,107.0,93.0,99.0,108.0,98.0,94.0,99.0,98.0,118.0,117.0,100.0,106.0,104.0,93.0,87.0,87.0,82.0,82.0,103.0,98.0,80.0,113.0,122.0,152.0,113.0,130.0,134.0,127.0,126.0,136.0,113.0,118.0,114.0,130.0,137.0,121.0,104.0,116.0,91.0,122.0,111.0,91.0,94.0,71.0,96.0,87.0,100.0,84.0,107.0,91.0,81.0,105.0,103.0,79.0,87.0,98.0,104.0,89.0,89.0,77.0,63.0,76.0,82.0,62.0,71.0,58.0,74.0,60.0,65.0,53.0,66.0,59.0,67.0,63.0,43.0,34.0,50.0,35.0,34.0,23.0,30.0,24.0,25.0,16.0,15.0,7.0,18.0,9.0,12.0,7.0,16.0 Y03366,37.0,39.0,30.0,44.0,52.0,53.0,39.0,53.0,36.0,46.0,47.0,52.0,47.0,50.0,54.0,47.0,46.0,39.0,44.0,42.0,44.0,45.0,43.0,39.0,40.0,40.0,50.0,46.0,46.0,45.0,46.0,41.0,43.0,42.0,38.0,42.0,43.0,58.0,44.0,41.0,37.0,41.0,28.0,45.0,38.0,52.0,35.0,27.0,36.0,17.0,39.0,25.0,22.0,26.0,24.0,18.0,29.0,25.0,19.0,21.0,17.0,15.0,15.0,15.0,15.0,18.0,10.0,17.0,16.0,16.0,13.0,12.0,9.0,11.0,10.0,7.0,7.0,9.0,4.0,4.0,7.0,4.0,7.0,7.0,5.0,4.0,3.0,7.0,5.0,1.0,4.0,4.0,1.0,1.0,,5.0 Y07697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,1.0,,,1.0,1.0,2.0,,,,,,1.0,,1.0,1.0,,,1.0,,,1.0,,,,,,,,,,,,,,,,,1.0,,,,,,,,,,1.0,,,,,,,,,,,,,,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 B81003,47.0,43.0,57.0,35.0,56.0,42.0,59.0,55.0,64.0,65.0,68.0,59.0,70.0,72.0,78.0,60.0,72.0,68.0,67.0,65.0,68.0,59.0,51.0,65.0,43.0,50.0,73.0,65.0,77.0,56.0,51.0,77.0,76.0,83.0,74.0,82.0,84.0,83.0,76.0,68.0,79.0,87.0,66.0,67.0,79.0,60.0,65.0,63.0,62.0,73.0,97.0,78.0,69.0,87.0,82.0,81.0,96.0,100.0,108.0,121.0,106.0,83.0,111.0,80.0,77.0,97.0,77.0,95.0,74.0,95.0,63.0,76.0,89.0,76.0,83.0,80.0,87.0,90.0,91.0,74.0,72.0,64.0,54.0,52.0,54.0,52.0,50.0,54.0,37.0,31.0,35.0,24.0,25.0,15.0,12.0,24.0 B81004,22.0,27.0,37.0,29.0,39.0,38.0,46.0,49.0,44.0,45.0,49.0,63.0,74.0,61.0,65.0,73.0,65.0,60.0,50.0,47.0,44.0,47.0,45.0,39.0,43.0,37.0,34.0,39.0,52.0,35.0,44.0,47.0,50.0,51.0,47.0,53.0,58.0,75.0,55.0,57.0,61.0,59.0,48.0,52.0,61.0,59.0,51.0,52.0,63.0,63.0,77.0,74.0,77.0,94.0,81.0,94.0,96.0,118.0,101.0,118.0,119.0,125.0,123.0,113.0,106.0,108.0,94.0,126.0,106.0,107.0,108.0,115.0,123.0,100.0,133.0,113.0,99.0,127.0,130.0,81.0,79.0,82.0,80.0,45.0,56.0,46.0,32.0,39.0,25.0,34.0,16.0,19.0,21.0,14.0,9.0,29.0 B81005,46.0,69.0,58.0,80.0,76.0,82.0,62.0,77.0,78.0,89.0,86.0,101.0,109.0,100.0,101.0,88.0,84.0,96.0,83.0,92.0,67.0,76.0,64.0,54.0,76.0,77.0,68.0,91.0,80.0,97.0,89.0,99.0,92.0,89.0,104.0,97.0,117.0,94.0,94.0,103.0,88.0,102.0,98.0,87.0,102.0,118.0,95.0,83.0,82.0,104.0,98.0,122.0,119.0,119.0,134.0,144.0,137.0,140.0,147.0,120.0,134.0,139.0,129.0,135.0,116.0,120.0,110.0,110.0,114.0,109.0,113.0,97.0,119.0,105.0,115.0,91.0,94.0,114.0,119.0,81.0,80.0,60.0,65.0,49.0,65.0,44.0,40.0,42.0,24.0,29.0,27.0,16.0,20.0,12.0,20.0,21.0 B81006,29.0,47.0,26.0,41.0,44.0,50.0,51.0,53.0,49.0,61.0,56.0,56.0,52.0,60.0,61.0,51.0,54.0,59.0,69.0,52.0,61.0,52.0,36.0,50.0,42.0,50.0,52.0,47.0,49.0,57.0,64.0,48.0,66.0,64.0,61.0,58.0,54.0,66.0,44.0,58.0,77.0,51.0,56.0,53.0,49.0,58.0,57.0,39.0,46.0,56.0,59.0,76.0,81.0,77.0,76.0,76.0,101.0,94.0,101.0,82.0,91.0,105.0,92.0,92.0,98.0,97.0,102.0,96.0,107.0,89.0,96.0,80.0,90.0,84.0,70.0,80.0,114.0,124.0,134.0,91.0,91.0,86.0,78.0,72.0,54.0,54.0,57.0,57.0,46.0,33.0,27.0,24.0,22.0,17.0,9.0,27.0 B81007,25.0,34.0,34.0,46.0,33.0,37.0,34.0,38.0,49.0,56.0,44.0,40.0,60.0,66.0,63.0,52.0,49.0,51.0,40.0,36.0,31.0,44.0,53.0,46.0,36.0,52.0,46.0,38.0,47.0,40.0,48.0,50.0,53.0,50.0,47.0,49.0,57.0,48.0,54.0,54.0,63.0,48.0,48.0,46.0,65.0,48.0,52.0,47.0,39.0,63.0,49.0,59.0,64.0,71.0,81.0,95.0,87.0,79.0,82.0,72.0,86.0,86.0,79.0,95.0,92.0,80.0,77.0,97.0,69.0,58.0,64.0,78.0,72.0,53.0,63.0,63.0,76.0,77.0,73.0,49.0,70.0,59.0,33.0,37.0,28.0,35.0,18.0,27.0,23.0,13.0,18.0,11.0,6.0,11.0,10.0,13.0 B81008,190.0,201.0,187.0,220.0,208.0,210.0,235.0,240.0,209.0,237.0,214.0,220.0,218.0,222.0,252.0,230.0,202.0,205.0,184.0,199.0,197.0,185.0,178.0,214.0,206.0,202.0,248.0,251.0,243.0,258.0,284.0,311.0,252.0,301.0,304.0,295.0,268.0,292.0,315.0,280.0,263.0,266.0,250.0,236.0,252.0,231.0,182.0,184.0,197.0,207.0,229.0,219.0,247.0,228.0,233.0,242.0,269.0,242.0,208.0,220.0,251.0,256.0,251.0,230.0,252.0,250.0,210.0,229.0,186.0,181.0,157.0,172.0,161.0,164.0,140.0,162.0,140.0,167.0,147.0,114.0,97.0,84.0,104.0,88.0,70.0,83.0,62.0,51.0,48.0,42.0,28.0,31.0,29.0,25.0,22.0,49.0 B81009,31.0,36.0,52.0,38.0,52.0,48.0,50.0,35.0,42.0,54.0,44.0,53.0,45.0,50.0,46.0,47.0,50.0,61.0,40.0,37.0,30.0,52.0,30.0,25.0,36.0,45.0,30.0,48.0,48.0,50.0,46.0,53.0,76.0,59.0,69.0,65.0,53.0,69.0,57.0,56.0,52.0,56.0,58.0,58.0,54.0,61.0,59.0,52.0,52.0,48.0,58.0,70.0,52.0,60.0,76.0,70.0,64.0,58.0,70.0,66.0,81.0,62.0,72.0,70.0,47.0,62.0,61.0,62.0,68.0,42.0,44.0,54.0,40.0,54.0,64.0,65.0,49.0,55.0,57.0,38.0,40.0,40.0,35.0,31.0,22.0,23.0,21.0,21.0,14.0,19.0,18.0,7.0,5.0,8.0,2.0,10.0 B81011,43.0,38.0,38.0,59.0,49.0,72.0,65.0,61.0,71.0,72.0,72.0,65.0,82.0,69.0,70.0,62.0,60.0,69.0,68.0,45.0,49.0,51.0,50.0,55.0,41.0,55.0,57.0,60.0,67.0,75.0,83.0,84.0,104.0,91.0,92.0,94.0,78.0,87.0,77.0,73.0,71.0,68.0,65.0,66.0,67.0,43.0,66.0,54.0,58.0,57.0,55.0,67.0,57.0,66.0,85.0,58.0,62.0,58.0,76.0,75.0,71.0,68.0,67.0,83.0,76.0,66.0,65.0,54.0,55.0,49.0,57.0,53.0,40.0,38.0,47.0,52.0,38.0,58.0,48.0,33.0,34.0,30.0,34.0,23.0,19.0,18.0,16.0,15.0,21.0,17.0,11.0,18.0,9.0,6.0,5.0,9.0 B81012,9.0,10.0,15.0,24.0,14.0,17.0,14.0,10.0,19.0,18.0,19.0,17.0,21.0,15.0,14.0,15.0,15.0,20.0,14.0,15.0,21.0,24.0,15.0,16.0,13.0,19.0,21.0,21.0,18.0,18.0,32.0,17.0,27.0,21.0,17.0,19.0,22.0,16.0,17.0,11.0,12.0,21.0,17.0,18.0,22.0,14.0,13.0,14.0,20.0,21.0,11.0,13.0,18.0,25.0,17.0,21.0,20.0,24.0,27.0,33.0,21.0,23.0,27.0,25.0,24.0,15.0,21.0,23.0,14.0,12.0,14.0,18.0,26.0,17.0,16.0,18.0,15.0,17.0,14.0,11.0,12.0,12.0,7.0,10.0,4.0,5.0,3.0,6.0,10.0,4.0,2.0,3.0,5.0,3.0,2.0,3.0 B81013,24.0,36.0,35.0,36.0,39.0,30.0,45.0,54.0,45.0,67.0,55.0,54.0,56.0,49.0,64.0,58.0,48.0,46.0,43.0,51.0,41.0,37.0,42.0,55.0,52.0,58.0,64.0,47.0,51.0,66.0,77.0,61.0,65.0,72.0,54.0,61.0,58.0,59.0,67.0,57.0,80.0,52.0,47.0,61.0,74.0,60.0,44.0,58.0,47.0,39.0,55.0,44.0,62.0,60.0,48.0,55.0,61.0,61.0,52.0,60.0,57.0,46.0,63.0,50.0,53.0,48.0,37.0,42.0,42.0,38.0,35.0,23.0,33.0,33.0,39.0,41.0,30.0,43.0,44.0,26.0,26.0,29.0,25.0,12.0,22.0,22.0,12.0,23.0,18.0,11.0,14.0,6.0,10.0,5.0,2.0,17.0 B81015,63.0,70.0,67.0,64.0,61.0,74.0,89.0,99.0,93.0,107.0,105.0,105.0,90.0,116.0,107.0,105.0,105.0,95.0,88.0,103.0,92.0,87.0,74.0,80.0,104.0,90.0,95.0,104.0,101.0,86.0,92.0,110.0,113.0,96.0,114.0,117.0,125.0,117.0,111.0,110.0,104.0,110.0,107.0,102.0,118.0,68.0,99.0,92.0,89.0,76.0,99.0,88.0,98.0,138.0,129.0,119.0,126.0,120.0,124.0,117.0,121.0,126.0,118.0,120.0,95.0,107.0,95.0,111.0,84.0,113.0,76.0,84.0,89.0,81.0,75.0,89.0,76.0,93.0,86.0,63.0,62.0,58.0,50.0,49.0,42.0,51.0,40.0,29.0,32.0,23.0,25.0,20.0,16.0,11.0,19.0,30.0 B81016,47.0,68.0,52.0,69.0,63.0,50.0,58.0,59.0,60.0,45.0,55.0,76.0,69.0,83.0,72.0,59.0,64.0,56.0,52.0,71.0,69.0,57.0,45.0,54.0,63.0,77.0,51.0,61.0,78.0,65.0,74.0,75.0,70.0,77.0,69.0,80.0,86.0,71.0,72.0,85.0,62.0,67.0,48.0,77.0,68.0,78.0,62.0,65.0,63.0,54.0,47.0,57.0,62.0,78.0,83.0,68.0,66.0,65.0,59.0,57.0,72.0,58.0,67.0,51.0,56.0,65.0,69.0,56.0,49.0,38.0,48.0,42.0,49.0,49.0,48.0,50.0,35.0,38.0,45.0,41.0,28.0,29.0,23.0,17.0,20.0,27.0,25.0,11.0,19.0,18.0,15.0,6.0,7.0,6.0,4.0,9.0 B81017,72.0,85.0,77.0,78.0,81.0,87.0,95.0,81.0,75.0,83.0,81.0,103.0,90.0,91.0,90.0,81.0,73.0,68.0,61.0,64.0,79.0,77.0,95.0,72.0,98.0,107.0,127.0,126.0,149.0,140.0,127.0,143.0,141.0,141.0,122.0,151.0,134.0,132.0,133.0,110.0,102.0,104.0,99.0,91.0,82.0,88.0,83.0,67.0,85.0,80.0,87.0,69.0,83.0,84.0,89.0,60.0,81.0,78.0,70.0,64.0,43.0,68.0,46.0,62.0,47.0,55.0,38.0,53.0,40.0,40.0,33.0,26.0,33.0,28.0,34.0,31.0,18.0,23.0,29.0,27.0,15.0,23.0,15.0,13.0,18.0,14.0,12.0,13.0,9.0,11.0,7.0,7.0,5.0,3.0,2.0,9.0 B81018,42.0,49.0,53.0,57.0,55.0,55.0,61.0,59.0,87.0,78.0,78.0,71.0,66.0,64.0,65.0,76.0,69.0,63.0,60.0,61.0,56.0,49.0,61.0,55.0,46.0,54.0,50.0,62.0,69.0,54.0,86.0,66.0,66.0,64.0,76.0,67.0,73.0,76.0,76.0,76.0,74.0,52.0,56.0,69.0,54.0,57.0,56.0,41.0,36.0,62.0,51.0,51.0,54.0,54.0,48.0,61.0,49.0,60.0,58.0,61.0,56.0,57.0,45.0,42.0,63.0,51.0,50.0,46.0,43.0,34.0,49.0,39.0,36.0,27.0,33.0,29.0,32.0,25.0,39.0,22.0,11.0,18.0,8.0,15.0,20.0,14.0,14.0,12.0,12.0,7.0,12.0,5.0,6.0,4.0,3.0,7.0 B81020,42.0,31.0,47.0,39.0,34.0,42.0,43.0,42.0,44.0,47.0,48.0,52.0,52.0,45.0,52.0,46.0,53.0,52.0,50.0,42.0,46.0,44.0,43.0,36.0,35.0,46.0,43.0,42.0,48.0,47.0,44.0,50.0,52.0,50.0,69.0,49.0,62.0,57.0,50.0,55.0,50.0,63.0,55.0,47.0,52.0,54.0,47.0,44.0,53.0,75.0,43.0,81.0,58.0,69.0,61.0,57.0,63.0,70.0,63.0,60.0,72.0,79.0,57.0,74.0,66.0,56.0,50.0,62.0,51.0,53.0,56.0,49.0,57.0,40.0,41.0,51.0,53.0,61.0,63.0,36.0,34.0,22.0,22.0,22.0,18.0,19.0,19.0,12.0,14.0,9.0,11.0,12.0,9.0,8.0,8.0,18.0 B81022,42.0,40.0,46.0,41.0,52.0,39.0,70.0,56.0,65.0,48.0,59.0,65.0,70.0,75.0,68.0,85.0,71.0,68.0,71.0,60.0,64.0,55.0,49.0,55.0,49.0,45.0,43.0,54.0,64.0,65.0,65.0,83.0,59.0,71.0,69.0,70.0,74.0,81.0,69.0,68.0,75.0,107.0,84.0,69.0,64.0,66.0,57.0,72.0,61.0,73.0,87.0,89.0,83.0,102.0,88.0,83.0,93.0,97.0,100.0,108.0,99.0,116.0,92.0,100.0,99.0,90.0,95.0,77.0,84.0,83.0,89.0,77.0,82.0,79.0,68.0,83.0,71.0,80.0,82.0,69.0,88.0,76.0,58.0,61.0,48.0,44.0,61.0,34.0,43.0,20.0,26.0,19.0,24.0,8.0,10.0,38.0 B81024,41.0,54.0,48.0,60.0,41.0,36.0,43.0,48.0,55.0,44.0,48.0,51.0,59.0,54.0,43.0,42.0,56.0,61.0,58.0,38.0,40.0,38.0,39.0,30.0,45.0,49.0,49.0,50.0,48.0,42.0,53.0,55.0,64.0,57.0,49.0,48.0,48.0,59.0,64.0,66.0,79.0,60.0,45.0,58.0,69.0,65.0,70.0,70.0,60.0,58.0,67.0,67.0,70.0,76.0,81.0,87.0,72.0,82.0,86.0,93.0,88.0,95.0,80.0,76.0,74.0,70.0,75.0,83.0,86.0,88.0,55.0,92.0,84.0,66.0,71.0,79.0,71.0,90.0,100.0,62.0,65.0,56.0,51.0,40.0,35.0,51.0,55.0,48.0,29.0,34.0,38.0,27.0,19.0,14.0,14.0,33.0 B81025,99.0,115.0,87.0,127.0,128.0,121.0,110.0,131.0,139.0,156.0,152.0,148.0,165.0,169.0,157.0,176.0,197.0,160.0,164.0,135.0,141.0,128.0,119.0,164.0,142.0,144.0,153.0,143.0,144.0,157.0,152.0,176.0,164.0,161.0,169.0,191.0,161.0,177.0,186.0,175.0,222.0,163.0,167.0,167.0,210.0,152.0,164.0,152.0,176.0,221.0,207.0,191.0,247.0,238.0,261.0,231.0,267.0,272.0,254.0,291.0,277.0,283.0,248.0,267.0,261.0,275.0,284.0,281.0,234.0,249.0,271.0,267.0,240.0,235.0,248.0,274.0,255.0,311.0,296.0,186.0,187.0,163.0,149.0,138.0,119.0,110.0,98.0,107.0,88.0,69.0,53.0,45.0,35.0,28.0,24.0,53.0 B81026,98.0,105.0,101.0,111.0,102.0,109.0,125.0,112.0,135.0,114.0,129.0,133.0,133.0,118.0,121.0,121.0,133.0,106.0,117.0,100.0,113.0,106.0,88.0,115.0,100.0,133.0,135.0,120.0,120.0,127.0,133.0,123.0,154.0,113.0,158.0,153.0,149.0,150.0,170.0,151.0,131.0,157.0,133.0,119.0,143.0,116.0,105.0,106.0,114.0,116.0,105.0,111.0,123.0,125.0,114.0,120.0,125.0,104.0,118.0,142.0,127.0,131.0,125.0,103.0,115.0,117.0,103.0,110.0,82.0,108.0,103.0,90.0,83.0,82.0,90.0,82.0,76.0,79.0,71.0,59.0,63.0,47.0,58.0,44.0,40.0,45.0,38.0,31.0,21.0,24.0,23.0,14.0,13.0,15.0,7.0,31.0 B81027,34.0,37.0,32.0,29.0,30.0,31.0,38.0,55.0,41.0,54.0,58.0,56.0,45.0,47.0,64.0,55.0,45.0,44.0,52.0,49.0,42.0,44.0,28.0,36.0,53.0,58.0,38.0,48.0,48.0,58.0,45.0,56.0,50.0,62.0,59.0,76.0,67.0,65.0,56.0,57.0,49.0,60.0,63.0,47.0,39.0,46.0,41.0,38.0,45.0,46.0,44.0,44.0,46.0,43.0,41.0,52.0,58.0,54.0,50.0,51.0,58.0,67.0,42.0,55.0,42.0,45.0,43.0,41.0,33.0,39.0,33.0,22.0,29.0,33.0,34.0,19.0,19.0,30.0,28.0,25.0,18.0,23.0,18.0,8.0,15.0,17.0,19.0,8.0,13.0,9.0,3.0,9.0,5.0,1.0,2.0,7.0 B81029,51.0,52.0,49.0,46.0,44.0,48.0,58.0,48.0,53.0,64.0,69.0,68.0,53.0,60.0,52.0,78.0,82.0,73.0,55.0,62.0,52.0,59.0,59.0,57.0,60.0,47.0,48.0,50.0,71.0,68.0,61.0,64.0,61.0,60.0,62.0,62.0,78.0,86.0,95.0,82.0,62.0,63.0,81.0,71.0,66.0,83.0,67.0,65.0,58.0,84.0,67.0,94.0,98.0,84.0,113.0,94.0,101.0,98.0,93.0,102.0,77.0,108.0,97.0,103.0,76.0,77.0,68.0,78.0,67.0,69.0,76.0,83.0,68.0,70.0,65.0,48.0,72.0,70.0,75.0,44.0,51.0,51.0,39.0,32.0,30.0,43.0,24.0,21.0,20.0,18.0,12.0,12.0,9.0,9.0,7.0,12.0 B81030,85.0,94.0,102.0,107.0,84.0,111.0,112.0,128.0,136.0,130.0,146.0,125.0,139.0,132.0,139.0,147.0,134.0,144.0,129.0,109.0,89.0,122.0,94.0,86.0,102.0,115.0,110.0,117.0,128.0,147.0,142.0,137.0,135.0,163.0,154.0,146.0,165.0,161.0,148.0,160.0,158.0,146.0,163.0,148.0,142.0,140.0,105.0,125.0,112.0,129.0,122.0,155.0,151.0,192.0,150.0,165.0,181.0,181.0,186.0,192.0,196.0,181.0,201.0,189.0,178.0,159.0,182.0,172.0,138.0,127.0,147.0,134.0,154.0,134.0,162.0,162.0,130.0,189.0,212.0,146.0,131.0,115.0,105.0,86.0,108.0,111.0,91.0,90.0,90.0,62.0,51.0,46.0,24.0,29.0,18.0,48.0 B81031,73.0,86.0,87.0,90.0,84.0,101.0,95.0,114.0,103.0,110.0,128.0,144.0,129.0,128.0,131.0,126.0,128.0,120.0,105.0,99.0,128.0,91.0,71.0,104.0,85.0,102.0,104.0,124.0,99.0,96.0,115.0,143.0,127.0,135.0,129.0,136.0,135.0,163.0,156.0,142.0,141.0,157.0,133.0,129.0,140.0,131.0,113.0,107.0,112.0,118.0,130.0,137.0,118.0,175.0,139.0,151.0,166.0,152.0,171.0,174.0,175.0,179.0,190.0,184.0,178.0,140.0,167.0,145.0,138.0,127.0,128.0,113.0,98.0,99.0,100.0,103.0,104.0,112.0,119.0,84.0,83.0,74.0,71.0,61.0,51.0,53.0,57.0,49.0,43.0,26.0,24.0,15.0,11.0,19.0,12.0,15.0 B81032,38.0,24.0,29.0,37.0,28.0,34.0,27.0,26.0,24.0,35.0,28.0,24.0,27.0,21.0,15.0,19.0,19.0,27.0,30.0,23.0,28.0,32.0,44.0,48.0,54.0,66.0,62.0,76.0,80.0,83.0,69.0,84.0,76.0,70.0,62.0,62.0,65.0,51.0,50.0,37.0,49.0,43.0,23.0,25.0,33.0,24.0,20.0,22.0,30.0,26.0,20.0,20.0,21.0,18.0,30.0,21.0,25.0,26.0,16.0,27.0,13.0,22.0,28.0,16.0,25.0,14.0,18.0,16.0,24.0,9.0,8.0,11.0,8.0,5.0,5.0,10.0,15.0,13.0,10.0,12.0,6.0,7.0,12.0,4.0,1.0,2.0,1.0,4.0,,3.0,1.0,1.0,1.0,,1.0,1.0 B81034,31.0,37.0,32.0,50.0,41.0,39.0,43.0,49.0,40.0,59.0,43.0,47.0,63.0,53.0,64.0,46.0,57.0,57.0,45.0,34.0,45.0,30.0,34.0,41.0,41.0,42.0,48.0,47.0,43.0,46.0,47.0,53.0,68.0,43.0,63.0,42.0,48.0,55.0,72.0,65.0,65.0,53.0,55.0,67.0,51.0,51.0,53.0,68.0,47.0,78.0,64.0,72.0,73.0,78.0,78.0,89.0,98.0,95.0,119.0,91.0,101.0,113.0,103.0,107.0,93.0,101.0,94.0,85.0,95.0,88.0,101.0,101.0,106.0,76.0,74.0,95.0,95.0,104.0,105.0,89.0,81.0,53.0,60.0,45.0,43.0,29.0,24.0,31.0,25.0,16.0,13.0,17.0,13.0,8.0,6.0,13.0 B81035,22.0,29.0,29.0,43.0,31.0,40.0,40.0,40.0,35.0,36.0,26.0,40.0,34.0,36.0,43.0,38.0,38.0,43.0,34.0,24.0,30.0,39.0,18.0,29.0,39.0,41.0,38.0,42.0,53.0,37.0,46.0,60.0,69.0,63.0,55.0,57.0,55.0,59.0,60.0,52.0,56.0,50.0,57.0,53.0,43.0,43.0,48.0,52.0,45.0,33.0,37.0,41.0,37.0,40.0,56.0,56.0,56.0,43.0,40.0,52.0,47.0,36.0,51.0,43.0,28.0,39.0,36.0,39.0,43.0,41.0,29.0,37.0,39.0,39.0,24.0,48.0,31.0,42.0,24.0,21.0,25.0,26.0,29.0,11.0,25.0,18.0,11.0,15.0,10.0,14.0,10.0,10.0,4.0,3.0,5.0,15.0 B81036,72.0,85.0,98.0,84.0,87.0,95.0,98.0,84.0,94.0,79.0,90.0,82.0,83.0,103.0,107.0,112.0,114.0,100.0,99.0,89.0,55.0,76.0,85.0,86.0,82.0,88.0,100.0,111.0,102.0,121.0,115.0,105.0,129.0,133.0,130.0,126.0,96.0,126.0,103.0,108.0,126.0,105.0,112.0,91.0,91.0,104.0,136.0,129.0,112.0,111.0,111.0,115.0,127.0,121.0,128.0,153.0,139.0,146.0,155.0,135.0,166.0,168.0,140.0,147.0,121.0,114.0,148.0,134.0,124.0,132.0,117.0,124.0,91.0,106.0,129.0,116.0,119.0,127.0,135.0,96.0,85.0,93.0,87.0,69.0,69.0,58.0,46.0,45.0,28.0,23.0,22.0,22.0,13.0,18.0,14.0,35.0 B81037,50.0,42.0,36.0,57.0,49.0,60.0,62.0,56.0,76.0,64.0,67.0,69.0,63.0,66.0,62.0,73.0,88.0,77.0,48.0,56.0,63.0,57.0,48.0,63.0,63.0,52.0,53.0,75.0,69.0,71.0,65.0,67.0,79.0,89.0,63.0,79.0,83.0,88.0,74.0,75.0,74.0,80.0,79.0,79.0,77.0,79.0,73.0,65.0,68.0,79.0,100.0,76.0,92.0,104.0,114.0,123.0,124.0,120.0,106.0,118.0,132.0,123.0,123.0,116.0,123.0,127.0,128.0,114.0,112.0,101.0,111.0,110.0,95.0,89.0,115.0,109.0,109.0,123.0,115.0,82.0,87.0,77.0,78.0,69.0,44.0,52.0,50.0,42.0,56.0,28.0,34.0,18.0,22.0,12.0,12.0,29.0 B81038,29.0,40.0,29.0,43.0,45.0,53.0,44.0,43.0,50.0,49.0,54.0,47.0,52.0,50.0,45.0,46.0,48.0,40.0,42.0,49.0,41.0,41.0,31.0,37.0,43.0,37.0,49.0,43.0,61.0,58.0,57.0,67.0,48.0,51.0,65.0,55.0,74.0,56.0,61.0,57.0,53.0,61.0,55.0,39.0,61.0,55.0,50.0,46.0,40.0,44.0,58.0,39.0,54.0,41.0,48.0,59.0,46.0,57.0,53.0,60.0,64.0,45.0,59.0,66.0,39.0,48.0,56.0,59.0,47.0,60.0,50.0,43.0,51.0,36.0,43.0,38.0,47.0,47.0,52.0,35.0,22.0,25.0,37.0,25.0,15.0,27.0,14.0,10.0,16.0,12.0,12.0,12.0,7.0,6.0,6.0,13.0 B81039,149.0,177.0,167.0,158.0,159.0,206.0,200.0,192.0,188.0,207.0,197.0,206.0,233.0,197.0,189.0,223.0,222.0,201.0,192.0,164.0,166.0,155.0,160.0,169.0,204.0,191.0,183.0,199.0,214.0,213.0,206.0,239.0,249.0,231.0,234.0,252.0,239.0,256.0,239.0,244.0,213.0,221.0,233.0,204.0,207.0,207.0,183.0,177.0,168.0,165.0,178.0,191.0,189.0,257.0,238.0,217.0,280.0,233.0,232.0,264.0,258.0,239.0,224.0,236.0,235.0,218.0,226.0,214.0,191.0,198.0,179.0,209.0,142.0,151.0,151.0,146.0,156.0,179.0,173.0,123.0,140.0,128.0,93.0,91.0,87.0,71.0,82.0,58.0,47.0,55.0,38.0,32.0,33.0,23.0,22.0,48.0 B81040,89.0,87.0,94.0,98.0,87.0,98.0,92.0,87.0,93.0,99.0,90.0,106.0,141.0,118.0,113.0,121.0,116.0,125.0,101.0,88.0,80.0,102.0,71.0,74.0,89.0,76.0,94.0,113.0,114.0,112.0,127.0,132.0,119.0,143.0,128.0,116.0,125.0,127.0,119.0,135.0,114.0,120.0,100.0,102.0,79.0,89.0,71.0,71.0,71.0,59.0,74.0,93.0,88.0,98.0,88.0,83.0,82.0,95.0,104.0,92.0,102.0,120.0,114.0,123.0,90.0,71.0,83.0,78.0,97.0,81.0,70.0,66.0,55.0,59.0,42.0,46.0,48.0,63.0,42.0,40.0,38.0,39.0,28.0,24.0,37.0,20.0,24.0,23.0,23.0,22.0,16.0,11.0,14.0,6.0,4.0,8.0 B81041,21.0,27.0,15.0,20.0,25.0,31.0,22.0,20.0,26.0,38.0,27.0,22.0,26.0,31.0,35.0,32.0,31.0,33.0,28.0,26.0,42.0,39.0,26.0,28.0,15.0,25.0,35.0,37.0,28.0,28.0,53.0,39.0,29.0,33.0,33.0,33.0,26.0,35.0,34.0,40.0,34.0,30.0,34.0,32.0,18.0,35.0,44.0,39.0,39.0,31.0,34.0,35.0,46.0,39.0,53.0,52.0,46.0,56.0,56.0,57.0,59.0,55.0,56.0,48.0,52.0,43.0,44.0,47.0,34.0,47.0,31.0,41.0,32.0,40.0,39.0,40.0,52.0,33.0,50.0,28.0,28.0,29.0,19.0,17.0,19.0,24.0,22.0,16.0,16.0,8.0,9.0,8.0,4.0,6.0,1.0,10.0 B81042,47.0,64.0,45.0,49.0,50.0,51.0,57.0,64.0,65.0,68.0,58.0,86.0,72.0,78.0,64.0,80.0,75.0,68.0,71.0,67.0,53.0,53.0,57.0,66.0,54.0,70.0,62.0,76.0,65.0,70.0,77.0,75.0,85.0,94.0,110.0,84.0,69.0,77.0,82.0,75.0,84.0,86.0,96.0,91.0,89.0,84.0,71.0,80.0,64.0,95.0,75.0,80.0,95.0,101.0,91.0,82.0,103.0,97.0,100.0,112.0,109.0,124.0,130.0,116.0,104.0,107.0,115.0,120.0,102.0,94.0,103.0,101.0,106.0,87.0,92.0,99.0,94.0,130.0,126.0,71.0,74.0,65.0,61.0,58.0,53.0,47.0,44.0,46.0,45.0,37.0,24.0,15.0,17.0,15.0,12.0,25.0 B81043,38.0,38.0,39.0,63.0,49.0,63.0,73.0,60.0,57.0,76.0,54.0,72.0,75.0,83.0,66.0,79.0,88.0,79.0,68.0,49.0,78.0,57.0,52.0,59.0,61.0,75.0,63.0,48.0,62.0,78.0,76.0,85.0,66.0,86.0,84.0,67.0,75.0,73.0,66.0,84.0,66.0,80.0,70.0,73.0,96.0,84.0,79.0,88.0,81.0,81.0,101.0,95.0,114.0,121.0,117.0,116.0,122.0,114.0,132.0,162.0,151.0,116.0,135.0,141.0,124.0,131.0,124.0,124.0,109.0,113.0,96.0,114.0,92.0,95.0,113.0,110.0,105.0,99.0,103.0,83.0,71.0,55.0,77.0,59.0,53.0,45.0,47.0,49.0,34.0,31.0,21.0,22.0,11.0,15.0,7.0,17.0 B81045,46.0,63.0,56.0,55.0,60.0,46.0,67.0,63.0,77.0,64.0,81.0,72.0,70.0,71.0,83.0,75.0,77.0,90.0,83.0,70.0,61.0,79.0,68.0,60.0,65.0,64.0,59.0,65.0,71.0,79.0,73.0,70.0,60.0,70.0,76.0,74.0,67.0,96.0,79.0,88.0,68.0,71.0,79.0,85.0,92.0,79.0,68.0,61.0,73.0,74.0,80.0,71.0,74.0,86.0,82.0,104.0,91.0,95.0,79.0,95.0,86.0,81.0,81.0,82.0,81.0,72.0,67.0,59.0,68.0,76.0,85.0,64.0,89.0,70.0,75.0,74.0,77.0,59.0,59.0,62.0,46.0,45.0,40.0,36.0,44.0,29.0,25.0,22.0,22.0,19.0,9.0,18.0,17.0,11.0,11.0,19.0 B81046,30.0,46.0,49.0,44.0,57.0,46.0,52.0,50.0,54.0,58.0,57.0,65.0,65.0,76.0,66.0,61.0,58.0,70.0,51.0,60.0,49.0,51.0,38.0,40.0,48.0,43.0,43.0,48.0,51.0,75.0,48.0,68.0,72.0,71.0,58.0,61.0,62.0,82.0,62.0,69.0,62.0,70.0,58.0,57.0,49.0,52.0,54.0,48.0,36.0,42.0,64.0,52.0,59.0,46.0,42.0,55.0,60.0,65.0,64.0,51.0,52.0,50.0,61.0,49.0,57.0,41.0,59.0,46.0,54.0,50.0,26.0,41.0,35.0,32.0,39.0,32.0,27.0,25.0,35.0,13.0,20.0,14.0,18.0,15.0,15.0,13.0,20.0,19.0,17.0,15.0,10.0,10.0,4.0,8.0,1.0,7.0 B81047,28.0,32.0,30.0,39.0,37.0,44.0,21.0,36.0,33.0,38.0,34.0,37.0,42.0,32.0,34.0,45.0,41.0,36.0,41.0,41.0,36.0,34.0,29.0,44.0,52.0,43.0,56.0,49.0,51.0,46.0,68.0,53.0,52.0,60.0,60.0,47.0,48.0,48.0,62.0,41.0,53.0,52.0,45.0,39.0,53.0,37.0,40.0,32.0,37.0,31.0,42.0,42.0,50.0,55.0,50.0,48.0,55.0,44.0,52.0,50.0,36.0,45.0,38.0,49.0,27.0,37.0,31.0,32.0,36.0,25.0,24.0,33.0,30.0,23.0,30.0,25.0,21.0,24.0,18.0,19.0,24.0,13.0,16.0,18.0,14.0,11.0,4.0,5.0,7.0,6.0,4.0,1.0,3.0,1.0,2.0,3.0 B81048,188.0,237.0,247.0,296.0,252.0,232.0,292.0,321.0,332.0,313.0,327.0,334.0,354.0,386.0,360.0,361.0,339.0,386.0,332.0,315.0,316.0,308.0,291.0,301.0,362.0,318.0,378.0,386.0,414.0,388.0,430.0,400.0,427.0,435.0,469.0,413.0,431.0,437.0,430.0,437.0,373.0,399.0,415.0,379.0,392.0,371.0,351.0,295.0,290.0,278.0,322.0,367.0,369.0,373.0,344.0,336.0,366.0,359.0,365.0,351.0,363.0,354.0,338.0,352.0,362.0,301.0,267.0,287.0,282.0,257.0,241.0,253.0,240.0,248.0,220.0,237.0,190.0,255.0,237.0,157.0,146.0,132.0,142.0,107.0,125.0,117.0,97.0,94.0,89.0,68.0,56.0,47.0,37.0,24.0,26.0,56.0 B81051,28.0,36.0,41.0,33.0,41.0,39.0,32.0,23.0,26.0,42.0,35.0,34.0,50.0,46.0,46.0,47.0,55.0,51.0,44.0,44.0,45.0,46.0,44.0,45.0,38.0,32.0,56.0,44.0,42.0,44.0,56.0,56.0,46.0,67.0,57.0,43.0,51.0,50.0,40.0,41.0,51.0,48.0,64.0,47.0,51.0,51.0,48.0,49.0,54.0,60.0,72.0,67.0,80.0,78.0,84.0,93.0,88.0,94.0,92.0,89.0,99.0,84.0,94.0,92.0,89.0,79.0,85.0,100.0,85.0,81.0,85.0,83.0,90.0,91.0,73.0,85.0,91.0,100.0,91.0,82.0,77.0,67.0,54.0,44.0,41.0,43.0,42.0,38.0,34.0,23.0,20.0,19.0,9.0,11.0,9.0,14.0 B81052,55.0,42.0,42.0,46.0,40.0,48.0,34.0,50.0,62.0,43.0,55.0,44.0,54.0,50.0,47.0,45.0,45.0,45.0,53.0,37.0,36.0,38.0,44.0,41.0,50.0,61.0,77.0,63.0,73.0,90.0,75.0,62.0,95.0,53.0,71.0,65.0,74.0,73.0,70.0,69.0,63.0,64.0,57.0,52.0,60.0,74.0,65.0,64.0,67.0,52.0,51.0,60.0,44.0,59.0,45.0,53.0,45.0,42.0,46.0,55.0,40.0,49.0,33.0,27.0,32.0,36.0,29.0,35.0,20.0,22.0,23.0,22.0,23.0,24.0,20.0,18.0,17.0,17.0,20.0,10.0,14.0,14.0,17.0,11.0,12.0,10.0,7.0,5.0,6.0,2.0,4.0,1.0,6.0,1.0,2.0,4.0 B81054,18.0,27.0,37.0,35.0,28.0,30.0,29.0,38.0,37.0,37.0,44.0,46.0,43.0,36.0,40.0,37.0,41.0,47.0,37.0,41.0,30.0,33.0,51.0,40.0,43.0,45.0,55.0,52.0,58.0,41.0,43.0,40.0,56.0,46.0,59.0,40.0,56.0,53.0,48.0,46.0,45.0,48.0,31.0,51.0,41.0,53.0,38.0,54.0,44.0,39.0,44.0,44.0,49.0,56.0,61.0,53.0,56.0,53.0,58.0,57.0,62.0,58.0,59.0,52.0,65.0,48.0,47.0,51.0,48.0,48.0,44.0,44.0,49.0,30.0,40.0,35.0,39.0,47.0,36.0,27.0,22.0,17.0,24.0,17.0,17.0,9.0,25.0,15.0,11.0,6.0,13.0,10.0,3.0,3.0,6.0,6.0 B81061,199.0,192.0,225.0,219.0,233.0,205.0,219.0,257.0,230.0,247.0,259.0,250.0,266.0,305.0,259.0,271.0,271.0,283.0,236.0,246.0,202.0,216.0,197.0,188.0,238.0,224.0,235.0,247.0,260.0,292.0,261.0,278.0,278.0,331.0,322.0,296.0,301.0,356.0,318.0,323.0,308.0,287.0,308.0,296.0,328.0,283.0,319.0,259.0,287.0,323.0,315.0,332.0,366.0,401.0,350.0,388.0,374.0,361.0,351.0,367.0,359.0,378.0,366.0,361.0,349.0,312.0,287.0,295.0,304.0,308.0,262.0,250.0,275.0,261.0,243.0,279.0,277.0,297.0,298.0,229.0,220.0,198.0,188.0,109.0,127.0,130.0,119.0,110.0,105.0,111.0,73.0,62.0,57.0,40.0,42.0,107.0 B81063,26.0,24.0,25.0,28.0,21.0,30.0,20.0,26.0,32.0,34.0,35.0,32.0,43.0,36.0,49.0,39.0,40.0,42.0,42.0,24.0,36.0,33.0,21.0,23.0,33.0,23.0,32.0,29.0,40.0,29.0,37.0,24.0,34.0,40.0,39.0,44.0,32.0,33.0,44.0,36.0,43.0,51.0,39.0,32.0,34.0,36.0,46.0,30.0,31.0,45.0,46.0,53.0,50.0,59.0,60.0,61.0,71.0,59.0,62.0,74.0,81.0,56.0,66.0,66.0,69.0,59.0,60.0,70.0,62.0,46.0,49.0,51.0,50.0,41.0,45.0,60.0,60.0,53.0,56.0,36.0,33.0,39.0,35.0,28.0,23.0,26.0,18.0,19.0,17.0,11.0,16.0,12.0,8.0,7.0,3.0,14.0 B81064,47.0,59.0,56.0,58.0,46.0,60.0,72.0,48.0,62.0,60.0,83.0,76.0,75.0,55.0,77.0,59.0,82.0,51.0,55.0,57.0,60.0,43.0,49.0,54.0,79.0,70.0,67.0,59.0,77.0,81.0,79.0,83.0,75.0,92.0,78.0,74.0,92.0,77.0,70.0,69.0,73.0,82.0,63.0,71.0,71.0,62.0,68.0,42.0,57.0,61.0,53.0,52.0,62.0,56.0,61.0,63.0,81.0,73.0,54.0,65.0,68.0,64.0,71.0,68.0,61.0,51.0,68.0,46.0,55.0,62.0,45.0,54.0,46.0,54.0,49.0,58.0,42.0,52.0,46.0,43.0,47.0,28.0,28.0,32.0,22.0,30.0,22.0,23.0,25.0,12.0,14.0,11.0,17.0,8.0,5.0,19.0 B81065,27.0,28.0,40.0,53.0,36.0,58.0,49.0,59.0,50.0,56.0,61.0,54.0,72.0,61.0,57.0,78.0,55.0,57.0,55.0,63.0,39.0,43.0,40.0,54.0,46.0,53.0,46.0,44.0,51.0,52.0,58.0,63.0,44.0,67.0,57.0,53.0,64.0,71.0,60.0,84.0,59.0,74.0,86.0,54.0,60.0,66.0,55.0,62.0,73.0,68.0,50.0,62.0,74.0,91.0,69.0,87.0,90.0,91.0,70.0,96.0,95.0,108.0,88.0,90.0,74.0,77.0,89.0,89.0,79.0,69.0,65.0,74.0,50.0,61.0,67.0,61.0,63.0,73.0,79.0,52.0,64.0,49.0,32.0,42.0,36.0,32.0,31.0,26.0,29.0,29.0,23.0,16.0,14.0,16.0,2.0,18.0 B81068,69.0,74.0,82.0,72.0,84.0,103.0,94.0,79.0,85.0,97.0,131.0,104.0,113.0,104.0,93.0,102.0,95.0,99.0,75.0,76.0,84.0,74.0,89.0,83.0,86.0,101.0,118.0,107.0,120.0,134.0,125.0,131.0,128.0,134.0,115.0,120.0,134.0,144.0,131.0,131.0,124.0,117.0,90.0,119.0,103.0,110.0,78.0,86.0,100.0,102.0,95.0,99.0,109.0,100.0,126.0,124.0,135.0,137.0,105.0,119.0,114.0,112.0,99.0,116.0,137.0,123.0,92.0,95.0,92.0,92.0,94.0,96.0,91.0,75.0,94.0,81.0,88.0,95.0,86.0,54.0,80.0,60.0,56.0,53.0,41.0,31.0,45.0,31.0,35.0,24.0,23.0,14.0,11.0,16.0,12.0,29.0 B81069,84.0,92.0,113.0,103.0,96.0,130.0,121.0,125.0,131.0,136.0,149.0,151.0,158.0,150.0,160.0,144.0,153.0,151.0,136.0,142.0,118.0,128.0,115.0,102.0,119.0,130.0,128.0,137.0,139.0,157.0,150.0,124.0,150.0,160.0,155.0,178.0,160.0,174.0,143.0,143.0,157.0,127.0,149.0,149.0,137.0,147.0,131.0,124.0,127.0,159.0,160.0,148.0,194.0,219.0,191.0,221.0,210.0,217.0,223.0,227.0,235.0,222.0,261.0,268.0,246.0,233.0,258.0,246.0,228.0,257.0,232.0,233.0,231.0,209.0,210.0,221.0,233.0,254.0,259.0,181.0,167.0,154.0,153.0,122.0,117.0,110.0,90.0,74.0,78.0,83.0,54.0,38.0,31.0,25.0,23.0,58.0 B81074,30.0,45.0,46.0,51.0,55.0,62.0,56.0,63.0,59.0,61.0,76.0,75.0,79.0,79.0,71.0,87.0,80.0,68.0,64.0,62.0,60.0,61.0,58.0,56.0,53.0,49.0,58.0,57.0,73.0,56.0,79.0,73.0,57.0,83.0,91.0,82.0,76.0,89.0,94.0,73.0,74.0,78.0,87.0,86.0,60.0,78.0,61.0,75.0,65.0,82.0,66.0,74.0,68.0,85.0,72.0,89.0,68.0,71.0,72.0,81.0,88.0,81.0,89.0,76.0,79.0,95.0,85.0,79.0,77.0,61.0,68.0,74.0,67.0,67.0,77.0,65.0,73.0,64.0,91.0,50.0,54.0,48.0,39.0,39.0,32.0,35.0,28.0,19.0,22.0,19.0,19.0,13.0,9.0,8.0,5.0,12.0 B81075,17.0,16.0,15.0,15.0,14.0,19.0,19.0,18.0,10.0,16.0,13.0,16.0,7.0,18.0,18.0,17.0,9.0,17.0,10.0,9.0,18.0,17.0,16.0,15.0,28.0,28.0,23.0,18.0,28.0,19.0,21.0,36.0,36.0,29.0,23.0,23.0,21.0,24.0,17.0,18.0,29.0,26.0,12.0,19.0,17.0,28.0,15.0,16.0,17.0,19.0,21.0,17.0,19.0,26.0,24.0,29.0,29.0,33.0,31.0,25.0,22.0,36.0,30.0,25.0,29.0,26.0,24.0,30.0,31.0,15.0,19.0,19.0,26.0,24.0,22.0,23.0,28.0,30.0,29.0,18.0,18.0,21.0,25.0,14.0,14.0,20.0,9.0,9.0,13.0,8.0,5.0,5.0,4.0,3.0,2.0,1.0 B81082,25.0,17.0,19.0,29.0,23.0,27.0,21.0,33.0,28.0,35.0,35.0,39.0,47.0,43.0,34.0,44.0,37.0,40.0,37.0,36.0,31.0,40.0,32.0,28.0,31.0,33.0,25.0,31.0,29.0,19.0,40.0,34.0,23.0,29.0,39.0,38.0,48.0,25.0,31.0,40.0,37.0,39.0,44.0,39.0,49.0,36.0,47.0,30.0,44.0,48.0,41.0,61.0,66.0,61.0,46.0,59.0,50.0,52.0,47.0,72.0,67.0,66.0,57.0,61.0,56.0,41.0,50.0,42.0,33.0,44.0,37.0,26.0,38.0,48.0,23.0,45.0,33.0,38.0,44.0,31.0,23.0,40.0,29.0,22.0,20.0,18.0,16.0,15.0,10.0,10.0,12.0,6.0,8.0,3.0,3.0,13.0 B81085,15.0,20.0,24.0,26.0,22.0,25.0,15.0,30.0,23.0,19.0,26.0,39.0,34.0,36.0,34.0,24.0,26.0,44.0,24.0,34.0,30.0,22.0,25.0,23.0,27.0,36.0,31.0,39.0,51.0,37.0,39.0,31.0,49.0,45.0,33.0,40.0,44.0,38.0,31.0,30.0,36.0,34.0,34.0,29.0,32.0,29.0,40.0,29.0,41.0,29.0,31.0,39.0,26.0,41.0,32.0,43.0,45.0,46.0,40.0,34.0,51.0,36.0,43.0,52.0,42.0,46.0,33.0,34.0,33.0,43.0,29.0,33.0,27.0,20.0,19.0,23.0,23.0,31.0,23.0,19.0,16.0,18.0,13.0,10.0,16.0,14.0,12.0,17.0,11.0,7.0,4.0,11.0,5.0,4.0,3.0,3.0 B81087,21.0,25.0,31.0,31.0,35.0,35.0,30.0,35.0,32.0,47.0,49.0,53.0,49.0,48.0,56.0,65.0,60.0,55.0,40.0,39.0,40.0,45.0,39.0,37.0,31.0,33.0,34.0,44.0,40.0,44.0,45.0,45.0,44.0,49.0,55.0,49.0,61.0,58.0,43.0,65.0,55.0,53.0,40.0,41.0,61.0,50.0,47.0,58.0,46.0,48.0,54.0,40.0,51.0,61.0,49.0,80.0,64.0,49.0,62.0,53.0,56.0,57.0,47.0,50.0,56.0,58.0,44.0,42.0,42.0,66.0,31.0,36.0,47.0,42.0,51.0,32.0,38.0,47.0,40.0,33.0,26.0,27.0,25.0,17.0,20.0,16.0,11.0,21.0,13.0,8.0,15.0,9.0,4.0,4.0,4.0,10.0 B81088,52.0,40.0,42.0,36.0,44.0,30.0,32.0,31.0,29.0,32.0,39.0,36.0,37.0,39.0,29.0,39.0,33.0,43.0,36.0,34.0,29.0,35.0,34.0,32.0,36.0,43.0,39.0,45.0,50.0,51.0,52.0,42.0,56.0,48.0,54.0,39.0,47.0,50.0,47.0,50.0,49.0,38.0,46.0,41.0,46.0,57.0,54.0,46.0,43.0,46.0,58.0,59.0,67.0,64.0,69.0,52.0,61.0,82.0,81.0,68.0,71.0,70.0,71.0,63.0,61.0,65.0,49.0,58.0,57.0,58.0,51.0,52.0,57.0,41.0,40.0,43.0,58.0,48.0,55.0,38.0,30.0,36.0,20.0,19.0,18.0,22.0,14.0,19.0,19.0,13.0,10.0,5.0,14.0,5.0,6.0,13.0 B81090,28.0,21.0,28.0,20.0,25.0,13.0,23.0,27.0,28.0,26.0,33.0,30.0,28.0,22.0,36.0,20.0,23.0,30.0,29.0,23.0,21.0,21.0,34.0,35.0,35.0,37.0,27.0,44.0,35.0,31.0,30.0,30.0,37.0,27.0,41.0,37.0,36.0,26.0,39.0,32.0,37.0,31.0,31.0,18.0,34.0,28.0,34.0,23.0,16.0,24.0,28.0,21.0,23.0,27.0,35.0,23.0,34.0,30.0,26.0,26.0,30.0,23.0,43.0,33.0,31.0,23.0,21.0,22.0,18.0,15.0,29.0,20.0,17.0,18.0,15.0,21.0,20.0,18.0,21.0,19.0,13.0,12.0,14.0,16.0,9.0,10.0,12.0,7.0,7.0,8.0,6.0,3.0,3.0,5.0,3.0,3.0 B81091,11.0,13.0,18.0,19.0,28.0,24.0,22.0,21.0,30.0,22.0,31.0,33.0,42.0,37.0,35.0,41.0,28.0,39.0,24.0,26.0,25.0,12.0,12.0,29.0,20.0,26.0,23.0,33.0,27.0,34.0,24.0,30.0,33.0,35.0,44.0,45.0,37.0,39.0,29.0,26.0,39.0,26.0,37.0,36.0,27.0,36.0,33.0,21.0,31.0,24.0,29.0,21.0,41.0,42.0,31.0,39.0,36.0,40.0,40.0,35.0,36.0,42.0,54.0,50.0,40.0,41.0,44.0,32.0,28.0,38.0,17.0,28.0,29.0,29.0,34.0,12.0,34.0,34.0,23.0,30.0,21.0,21.0,22.0,21.0,17.0,14.0,18.0,6.0,13.0,5.0,9.0,7.0,9.0,2.0,1.0,6.0 B81092,37.0,38.0,45.0,49.0,42.0,53.0,45.0,49.0,61.0,56.0,55.0,74.0,63.0,76.0,63.0,63.0,81.0,66.0,52.0,43.0,43.0,36.0,46.0,53.0,58.0,51.0,62.0,55.0,65.0,70.0,59.0,75.0,64.0,75.0,84.0,69.0,77.0,73.0,57.0,82.0,79.0,75.0,57.0,80.0,62.0,68.0,65.0,53.0,62.0,76.0,77.0,86.0,83.0,92.0,96.0,72.0,108.0,105.0,104.0,107.0,102.0,101.0,117.0,117.0,111.0,104.0,96.0,106.0,88.0,87.0,93.0,72.0,73.0,96.0,75.0,79.0,88.0,91.0,84.0,58.0,60.0,57.0,52.0,64.0,36.0,41.0,35.0,24.0,30.0,21.0,12.0,17.0,11.0,14.0,14.0,24.0 B81097,11.0,11.0,10.0,12.0,18.0,12.0,10.0,22.0,21.0,19.0,17.0,14.0,19.0,17.0,12.0,14.0,14.0,5.0,8.0,11.0,8.0,8.0,4.0,10.0,9.0,14.0,14.0,17.0,10.0,19.0,26.0,32.0,18.0,18.0,31.0,23.0,32.0,24.0,18.0,19.0,25.0,17.0,13.0,15.0,23.0,17.0,16.0,11.0,20.0,10.0,13.0,15.0,9.0,12.0,17.0,17.0,10.0,21.0,16.0,17.0,13.0,12.0,12.0,17.0,13.0,13.0,14.0,8.0,10.0,13.0,15.0,12.0,11.0,14.0,6.0,16.0,10.0,19.0,6.0,5.0,5.0,8.0,5.0,6.0,2.0,5.0,6.0,4.0,8.0,2.0,6.0,5.0,6.0,4.0,1.0,3.0 B81099,26.0,31.0,44.0,32.0,49.0,32.0,57.0,52.0,44.0,58.0,59.0,51.0,44.0,56.0,60.0,61.0,47.0,47.0,54.0,53.0,46.0,52.0,33.0,36.0,36.0,42.0,61.0,46.0,53.0,36.0,52.0,51.0,57.0,58.0,51.0,45.0,71.0,59.0,68.0,54.0,67.0,70.0,57.0,68.0,58.0,73.0,70.0,65.0,58.0,73.0,64.0,82.0,80.0,74.0,84.0,91.0,90.0,90.0,86.0,80.0,80.0,90.0,97.0,85.0,81.0,83.0,73.0,83.0,95.0,69.0,67.0,84.0,54.0,67.0,54.0,71.0,73.0,78.0,66.0,49.0,51.0,60.0,45.0,37.0,30.0,25.0,30.0,24.0,23.0,17.0,15.0,11.0,10.0,7.0,5.0,14.0 B81100,10.0,19.0,18.0,13.0,18.0,24.0,23.0,27.0,32.0,32.0,27.0,28.0,26.0,18.0,19.0,23.0,18.0,20.0,12.0,12.0,11.0,9.0,8.0,15.0,14.0,17.0,11.0,9.0,20.0,16.0,17.0,20.0,26.0,34.0,25.0,24.0,27.0,34.0,23.0,34.0,28.0,28.0,22.0,21.0,29.0,33.0,31.0,13.0,23.0,20.0,25.0,17.0,25.0,24.0,30.0,24.0,21.0,25.0,29.0,32.0,34.0,25.0,25.0,34.0,31.0,28.0,17.0,32.0,25.0,25.0,25.0,23.0,30.0,32.0,27.0,31.0,28.0,39.0,43.0,26.0,26.0,39.0,34.0,26.0,23.0,20.0,28.0,25.0,14.0,23.0,10.0,5.0,11.0,8.0,7.0,19.0 B81101,79.0,107.0,108.0,112.0,102.0,104.0,88.0,130.0,115.0,102.0,119.0,97.0,114.0,122.0,145.0,147.0,136.0,136.0,146.0,117.0,110.0,104.0,111.0,92.0,96.0,145.0,132.0,119.0,139.0,133.0,125.0,121.0,164.0,139.0,163.0,148.0,145.0,156.0,143.0,140.0,130.0,129.0,135.0,120.0,142.0,135.0,154.0,133.0,138.0,136.0,154.0,163.0,172.0,188.0,193.0,200.0,163.0,212.0,201.0,194.0,205.0,206.0,165.0,162.0,175.0,146.0,152.0,156.0,163.0,145.0,138.0,127.0,141.0,120.0,148.0,125.0,133.0,138.0,157.0,113.0,98.0,101.0,98.0,75.0,66.0,77.0,69.0,59.0,68.0,42.0,35.0,42.0,30.0,21.0,13.0,49.0 B81104,22.0,22.0,15.0,15.0,16.0,22.0,18.0,28.0,15.0,11.0,14.0,17.0,22.0,24.0,15.0,19.0,17.0,15.0,69.0,198.0,303.0,277.0,278.0,243.0,203.0,111.0,110.0,84.0,84.0,70.0,67.0,62.0,69.0,58.0,45.0,40.0,45.0,32.0,37.0,41.0,33.0,30.0,28.0,31.0,34.0,25.0,26.0,19.0,13.0,25.0,14.0,25.0,29.0,18.0,27.0,22.0,20.0,11.0,15.0,17.0,18.0,19.0,19.0,11.0,14.0,15.0,14.0,11.0,9.0,6.0,13.0,9.0,8.0,10.0,7.0,10.0,4.0,5.0,7.0,2.0,5.0,7.0,4.0,2.0,4.0,4.0,3.0,3.0,6.0,3.0,1.0,1.0,1.0,,,6.0 B81108,20.0,19.0,21.0,24.0,26.0,26.0,26.0,26.0,21.0,23.0,36.0,23.0,37.0,22.0,36.0,37.0,31.0,23.0,30.0,19.0,24.0,19.0,17.0,28.0,16.0,30.0,16.0,17.0,34.0,12.0,26.0,34.0,29.0,41.0,41.0,29.0,25.0,30.0,31.0,29.0,31.0,27.0,22.0,28.0,26.0,46.0,30.0,26.0,29.0,26.0,25.0,22.0,37.0,19.0,29.0,34.0,31.0,32.0,31.0,40.0,45.0,32.0,42.0,40.0,20.0,30.0,20.0,24.0,34.0,29.0,26.0,13.0,27.0,20.0,20.0,20.0,23.0,20.0,17.0,25.0,24.0,18.0,16.0,9.0,5.0,10.0,11.0,13.0,8.0,7.0,6.0,3.0,7.0,5.0,,4.0 B81109,37.0,48.0,51.0,45.0,46.0,45.0,55.0,61.0,51.0,61.0,49.0,58.0,60.0,77.0,57.0,59.0,75.0,61.0,64.0,66.0,58.0,55.0,47.0,44.0,49.0,40.0,55.0,68.0,59.0,57.0,76.0,66.0,55.0,73.0,69.0,63.0,68.0,70.0,67.0,73.0,69.0,65.0,73.0,62.0,72.0,78.0,61.0,55.0,57.0,66.0,64.0,72.0,78.0,79.0,74.0,98.0,99.0,84.0,106.0,88.0,89.0,91.0,102.0,84.0,82.0,85.0,80.0,85.0,81.0,93.0,68.0,78.0,62.0,66.0,79.0,83.0,76.0,78.0,95.0,64.0,76.0,60.0,47.0,35.0,37.0,41.0,38.0,19.0,28.0,32.0,26.0,15.0,19.0,7.0,14.0,23.0 B81112,74.0,85.0,76.0,83.0,85.0,79.0,91.0,86.0,90.0,91.0,84.0,80.0,99.0,102.0,76.0,82.0,97.0,86.0,95.0,80.0,83.0,67.0,63.0,82.0,83.0,82.0,69.0,97.0,94.0,103.0,87.0,98.0,102.0,112.0,122.0,96.0,110.0,114.0,108.0,90.0,91.0,108.0,77.0,80.0,81.0,79.0,84.0,64.0,85.0,67.0,79.0,80.0,87.0,76.0,68.0,61.0,85.0,80.0,70.0,96.0,73.0,66.0,64.0,64.0,51.0,50.0,52.0,66.0,67.0,47.0,53.0,62.0,56.0,55.0,53.0,49.0,69.0,48.0,49.0,26.0,30.0,27.0,33.0,22.0,24.0,24.0,25.0,24.0,27.0,21.0,14.0,14.0,13.0,10.0,8.0,18.0 B81113,38.0,56.0,61.0,52.0,56.0,58.0,54.0,63.0,61.0,58.0,59.0,61.0,55.0,72.0,67.0,51.0,59.0,62.0,53.0,53.0,45.0,60.0,49.0,55.0,73.0,56.0,60.0,71.0,65.0,66.0,73.0,84.0,83.0,92.0,83.0,88.0,80.0,77.0,70.0,64.0,69.0,59.0,61.0,54.0,77.0,66.0,60.0,46.0,36.0,63.0,70.0,59.0,46.0,77.0,73.0,59.0,77.0,64.0,65.0,76.0,62.0,64.0,70.0,68.0,70.0,61.0,61.0,44.0,40.0,51.0,55.0,41.0,41.0,42.0,43.0,59.0,49.0,33.0,52.0,33.0,36.0,31.0,31.0,32.0,20.0,32.0,19.0,22.0,10.0,10.0,8.0,6.0,3.0,5.0,3.0,12.0 B81118,30.0,35.0,28.0,36.0,49.0,46.0,52.0,53.0,50.0,71.0,49.0,56.0,49.0,59.0,55.0,52.0,50.0,56.0,44.0,44.0,44.0,49.0,34.0,38.0,43.0,44.0,37.0,42.0,42.0,44.0,54.0,49.0,64.0,51.0,52.0,56.0,68.0,42.0,56.0,52.0,54.0,46.0,56.0,44.0,43.0,44.0,43.0,31.0,28.0,35.0,34.0,34.0,38.0,58.0,55.0,67.0,57.0,45.0,57.0,55.0,44.0,43.0,57.0,51.0,50.0,41.0,32.0,46.0,35.0,30.0,29.0,26.0,43.0,34.0,29.0,28.0,42.0,40.0,30.0,26.0,43.0,31.0,22.0,18.0,14.0,27.0,9.0,8.0,14.0,16.0,10.0,7.0,9.0,3.0,5.0,8.0 B81119,21.0,36.0,26.0,39.0,31.0,43.0,45.0,36.0,44.0,38.0,46.0,48.0,49.0,42.0,48.0,57.0,42.0,49.0,52.0,38.0,37.0,31.0,34.0,35.0,41.0,47.0,43.0,44.0,42.0,36.0,45.0,54.0,54.0,52.0,56.0,54.0,46.0,52.0,57.0,55.0,49.0,52.0,38.0,31.0,37.0,33.0,31.0,37.0,29.0,39.0,46.0,34.0,41.0,40.0,42.0,33.0,47.0,51.0,35.0,33.0,48.0,40.0,38.0,50.0,32.0,42.0,32.0,21.0,28.0,28.0,23.0,22.0,33.0,30.0,16.0,28.0,20.0,23.0,29.0,21.0,7.0,11.0,16.0,10.0,19.0,9.0,9.0,4.0,2.0,7.0,6.0,2.0,1.0,1.0,1.0,1.0 B81606,18.0,14.0,15.0,25.0,31.0,24.0,26.0,24.0,32.0,29.0,29.0,28.0,39.0,33.0,38.0,31.0,36.0,23.0,17.0,21.0,21.0,17.0,22.0,15.0,25.0,34.0,30.0,21.0,29.0,27.0,31.0,38.0,41.0,25.0,35.0,38.0,41.0,32.0,35.0,22.0,34.0,30.0,27.0,27.0,28.0,23.0,23.0,22.0,22.0,21.0,29.0,23.0,25.0,29.0,21.0,31.0,22.0,17.0,24.0,32.0,33.0,32.0,33.0,23.0,23.0,22.0,26.0,16.0,24.0,15.0,17.0,15.0,12.0,13.0,10.0,22.0,8.0,13.0,13.0,11.0,10.0,5.0,8.0,8.0,6.0,6.0,7.0,11.0,6.0,6.0,4.0,,1.0,4.0,,3.0 B81616,17.0,16.0,15.0,9.0,18.0,13.0,14.0,20.0,16.0,9.0,16.0,14.0,17.0,10.0,12.0,21.0,18.0,13.0,25.0,12.0,15.0,19.0,10.0,13.0,15.0,10.0,10.0,14.0,18.0,18.0,15.0,23.0,21.0,18.0,21.0,16.0,22.0,26.0,18.0,24.0,16.0,19.0,19.0,19.0,13.0,14.0,11.0,14.0,14.0,13.0,19.0,13.0,26.0,22.0,22.0,24.0,28.0,28.0,16.0,18.0,22.0,25.0,20.0,20.0,15.0,17.0,14.0,12.0,13.0,10.0,10.0,9.0,18.0,14.0,13.0,13.0,15.0,14.0,18.0,12.0,7.0,11.0,16.0,11.0,7.0,13.0,6.0,5.0,6.0,8.0,6.0,1.0,2.0,2.0,1.0,3.0 B81617,52.0,56.0,50.0,61.0,53.0,62.0,70.0,61.0,71.0,82.0,64.0,87.0,75.0,67.0,85.0,59.0,61.0,61.0,56.0,69.0,56.0,64.0,80.0,57.0,67.0,70.0,65.0,76.0,94.0,72.0,62.0,93.0,93.0,77.0,59.0,79.0,87.0,86.0,88.0,86.0,79.0,80.0,64.0,64.0,59.0,61.0,51.0,60.0,57.0,50.0,51.0,50.0,58.0,41.0,43.0,60.0,44.0,50.0,46.0,37.0,37.0,49.0,46.0,33.0,35.0,35.0,24.0,30.0,22.0,28.0,36.0,32.0,23.0,17.0,23.0,23.0,19.0,23.0,23.0,14.0,14.0,12.0,18.0,19.0,15.0,7.0,15.0,7.0,17.0,8.0,4.0,10.0,4.0,7.0,6.0,11.0 B81619,8.0,10.0,17.0,5.0,17.0,5.0,10.0,18.0,19.0,17.0,17.0,17.0,12.0,11.0,17.0,14.0,20.0,13.0,18.0,17.0,9.0,14.0,13.0,5.0,5.0,14.0,22.0,16.0,15.0,11.0,10.0,14.0,11.0,29.0,17.0,9.0,25.0,19.0,25.0,15.0,17.0,14.0,31.0,16.0,14.0,17.0,16.0,17.0,18.0,16.0,21.0,18.0,15.0,15.0,15.0,20.0,21.0,16.0,19.0,12.0,18.0,14.0,20.0,14.0,21.0,13.0,16.0,21.0,17.0,15.0,12.0,11.0,7.0,15.0,17.0,16.0,18.0,12.0,13.0,10.0,13.0,7.0,7.0,4.0,13.0,11.0,8.0,13.0,5.0,2.0,3.0,4.0,3.0,1.0,3.0,4.0 B81628,10.0,12.0,9.0,8.0,13.0,10.0,9.0,15.0,13.0,19.0,15.0,18.0,17.0,14.0,15.0,12.0,13.0,19.0,10.0,15.0,7.0,13.0,8.0,18.0,12.0,7.0,11.0,9.0,11.0,8.0,11.0,13.0,13.0,14.0,15.0,13.0,8.0,16.0,21.0,16.0,17.0,13.0,13.0,15.0,18.0,11.0,20.0,15.0,13.0,16.0,23.0,17.0,22.0,26.0,21.0,18.0,21.0,23.0,35.0,25.0,24.0,32.0,27.0,23.0,25.0,22.0,28.0,21.0,28.0,18.0,13.0,24.0,21.0,24.0,13.0,18.0,23.0,17.0,16.0,10.0,9.0,17.0,14.0,5.0,10.0,10.0,9.0,5.0,2.0,3.0,9.0,3.0,2.0,4.0,3.0,2.0 B81631,21.0,27.0,13.0,28.0,30.0,21.0,24.0,28.0,30.0,42.0,37.0,26.0,41.0,35.0,34.0,42.0,33.0,24.0,33.0,35.0,32.0,19.0,14.0,17.0,23.0,26.0,23.0,30.0,29.0,33.0,21.0,21.0,31.0,31.0,37.0,32.0,30.0,38.0,20.0,41.0,32.0,44.0,28.0,36.0,19.0,35.0,25.0,26.0,28.0,26.0,34.0,20.0,25.0,34.0,35.0,23.0,31.0,26.0,21.0,23.0,32.0,16.0,25.0,33.0,28.0,19.0,24.0,26.0,27.0,14.0,19.0,23.0,25.0,24.0,26.0,25.0,23.0,24.0,30.0,13.0,10.0,6.0,10.0,6.0,3.0,7.0,9.0,4.0,2.0,1.0,4.0,1.0,3.0,2.0,,3.0 B81635,5.0,17.0,14.0,9.0,13.0,14.0,15.0,18.0,19.0,16.0,20.0,22.0,18.0,17.0,12.0,17.0,14.0,21.0,13.0,11.0,13.0,13.0,11.0,8.0,7.0,18.0,11.0,11.0,21.0,15.0,16.0,15.0,22.0,18.0,20.0,16.0,21.0,16.0,25.0,20.0,30.0,24.0,28.0,19.0,26.0,26.0,24.0,14.0,19.0,19.0,28.0,17.0,28.0,23.0,19.0,20.0,27.0,35.0,22.0,20.0,23.0,37.0,35.0,30.0,32.0,23.0,23.0,28.0,26.0,31.0,33.0,40.0,35.0,26.0,36.0,22.0,23.0,29.0,30.0,15.0,13.0,17.0,14.0,12.0,8.0,10.0,19.0,6.0,11.0,3.0,2.0,1.0,4.0,,,5.0 B81642,12.0,15.0,11.0,20.0,11.0,16.0,17.0,32.0,23.0,22.0,24.0,17.0,13.0,18.0,16.0,23.0,19.0,23.0,21.0,18.0,11.0,16.0,10.0,14.0,19.0,19.0,22.0,24.0,17.0,17.0,25.0,27.0,29.0,26.0,20.0,25.0,31.0,27.0,26.0,27.0,31.0,26.0,20.0,17.0,24.0,30.0,14.0,28.0,9.0,20.0,25.0,28.0,23.0,40.0,33.0,31.0,20.0,43.0,33.0,40.0,21.0,39.0,41.0,34.0,49.0,33.0,25.0,22.0,38.0,29.0,34.0,43.0,36.0,29.0,21.0,24.0,44.0,21.0,41.0,27.0,23.0,27.0,15.0,17.0,8.0,25.0,19.0,12.0,15.0,9.0,10.0,11.0,9.0,4.0,9.0,16.0 B81645,,,9.0,12.0,8.0,14.0,15.0,20.0,11.0,20.0,22.0,23.0,21.0,17.0,22.0,16.0,12.0,17.0,13.0,12.0,11.0,11.0,14.0,7.0,10.0,8.0,13.0,15.0,16.0,11.0,14.0,19.0,25.0,18.0,21.0,13.0,24.0,31.0,25.0,25.0,24.0,19.0,13.0,18.0,18.0,13.0,9.0,13.0,8.0,13.0,16.0,10.0,12.0,14.0,17.0,8.0,13.0,13.0,15.0,13.0,17.0,19.0,7.0,12.0,11.0,6.0,10.0,12.0,13.0,4.0,8.0,6.0,9.0,1.0,9.0,5.0,8.0,4.0,5.0,,5.0,4.0,2.0,2.0,5.0,3.0,,1.0,2.0,1.0,,1.0,,,,1.0 B81647,6.0,11.0,6.0,17.0,12.0,17.0,15.0,16.0,13.0,13.0,17.0,15.0,19.0,17.0,17.0,15.0,18.0,18.0,20.0,12.0,13.0,13.0,15.0,11.0,11.0,13.0,10.0,18.0,10.0,14.0,13.0,13.0,23.0,25.0,12.0,23.0,18.0,32.0,17.0,21.0,17.0,19.0,13.0,14.0,25.0,18.0,27.0,21.0,14.0,16.0,13.0,25.0,19.0,25.0,20.0,27.0,29.0,30.0,25.0,28.0,26.0,31.0,30.0,23.0,22.0,32.0,23.0,28.0,21.0,27.0,31.0,22.0,18.0,17.0,22.0,25.0,18.0,20.0,23.0,11.0,10.0,9.0,9.0,8.0,5.0,7.0,4.0,5.0,4.0,2.0,,4.0,2.0,2.0,2.0,2.0 B81648,1.0,7.0,12.0,4.0,11.0,8.0,8.0,10.0,6.0,6.0,8.0,12.0,9.0,13.0,9.0,12.0,9.0,10.0,8.0,8.0,7.0,3.0,10.0,5.0,5.0,5.0,4.0,7.0,5.0,10.0,8.0,5.0,6.0,8.0,13.0,9.0,7.0,17.0,6.0,9.0,8.0,9.0,3.0,13.0,12.0,11.0,6.0,9.0,7.0,10.0,7.0,6.0,16.0,16.0,11.0,7.0,17.0,10.0,14.0,7.0,16.0,20.0,11.0,12.0,19.0,20.0,24.0,8.0,12.0,14.0,3.0,12.0,7.0,4.0,8.0,10.0,5.0,10.0,11.0,4.0,6.0,3.0,2.0,4.0,,2.0,,1.0,2.0,2.0,,1.0,,,, B81653,24.0,29.0,19.0,31.0,32.0,30.0,33.0,22.0,31.0,42.0,31.0,36.0,29.0,35.0,40.0,29.0,49.0,41.0,34.0,25.0,26.0,30.0,22.0,29.0,28.0,29.0,27.0,32.0,33.0,42.0,47.0,36.0,29.0,32.0,52.0,55.0,49.0,49.0,47.0,40.0,34.0,49.0,36.0,51.0,51.0,52.0,50.0,41.0,44.0,38.0,44.0,51.0,47.0,54.0,50.0,56.0,58.0,55.0,53.0,61.0,47.0,56.0,55.0,50.0,51.0,48.0,45.0,50.0,51.0,52.0,48.0,38.0,48.0,47.0,42.0,52.0,53.0,71.0,62.0,42.0,50.0,32.0,33.0,27.0,38.0,31.0,33.0,28.0,24.0,22.0,21.0,23.0,13.0,15.0,6.0,25.0 B81655,9.0,11.0,21.0,15.0,19.0,19.0,18.0,17.0,26.0,30.0,26.0,15.0,24.0,21.0,20.0,20.0,19.0,22.0,20.0,21.0,16.0,21.0,26.0,19.0,16.0,20.0,22.0,18.0,18.0,15.0,22.0,28.0,23.0,23.0,22.0,18.0,25.0,36.0,16.0,27.0,25.0,20.0,26.0,19.0,20.0,13.0,18.0,32.0,15.0,21.0,11.0,9.0,21.0,25.0,24.0,20.0,24.0,32.0,22.0,24.0,21.0,30.0,23.0,20.0,14.0,19.0,21.0,17.0,12.0,13.0,22.0,9.0,13.0,14.0,14.0,10.0,10.0,8.0,12.0,7.0,6.0,6.0,3.0,6.0,4.0,5.0,5.0,5.0,2.0,4.0,4.0,4.0,2.0,1.0,1.0,4.0 B81656,34.0,44.0,41.0,52.0,37.0,47.0,42.0,63.0,56.0,66.0,69.0,59.0,50.0,59.0,49.0,48.0,56.0,40.0,41.0,43.0,46.0,46.0,28.0,35.0,43.0,34.0,54.0,38.0,49.0,50.0,54.0,52.0,54.0,54.0,58.0,62.0,62.0,61.0,57.0,48.0,44.0,36.0,48.0,46.0,44.0,32.0,28.0,25.0,34.0,35.0,37.0,40.0,29.0,41.0,38.0,37.0,41.0,47.0,41.0,42.0,36.0,46.0,27.0,34.0,31.0,33.0,34.0,27.0,24.0,28.0,21.0,31.0,21.0,36.0,18.0,19.0,18.0,18.0,13.0,7.0,17.0,10.0,7.0,9.0,11.0,6.0,4.0,10.0,6.0,3.0,4.0,5.0,2.0,,1.0,4.0 B81663,12.0,11.0,13.0,15.0,10.0,10.0,20.0,24.0,17.0,14.0,19.0,12.0,17.0,17.0,17.0,9.0,19.0,13.0,13.0,18.0,12.0,13.0,10.0,9.0,13.0,13.0,12.0,16.0,17.0,13.0,19.0,26.0,23.0,24.0,23.0,35.0,28.0,28.0,19.0,27.0,11.0,17.0,27.0,15.0,16.0,15.0,19.0,11.0,18.0,16.0,15.0,16.0,20.0,18.0,19.0,11.0,23.0,19.0,23.0,12.0,20.0,22.0,23.0,14.0,14.0,22.0,13.0,19.0,15.0,20.0,20.0,13.0,16.0,13.0,13.0,15.0,5.0,10.0,15.0,9.0,6.0,1.0,3.0,3.0,4.0,3.0,5.0,4.0,1.0,4.0,,4.0,1.0,1.0,1.0,1.0 B81665,3.0,9.0,6.0,10.0,15.0,15.0,21.0,16.0,12.0,15.0,20.0,11.0,18.0,17.0,16.0,17.0,9.0,18.0,9.0,16.0,9.0,5.0,7.0,15.0,9.0,7.0,11.0,12.0,23.0,16.0,15.0,8.0,17.0,13.0,20.0,17.0,13.0,17.0,16.0,19.0,22.0,16.0,22.0,15.0,11.0,17.0,12.0,8.0,13.0,9.0,23.0,16.0,16.0,10.0,14.0,25.0,19.0,21.0,12.0,20.0,7.0,23.0,15.0,11.0,15.0,23.0,6.0,18.0,7.0,8.0,20.0,10.0,15.0,8.0,10.0,5.0,11.0,7.0,10.0,8.0,6.0,5.0,5.0,5.0,5.0,7.0,1.0,3.0,3.0,3.0,1.0,3.0,,1.0,,2.0 B81666,11.0,6.0,5.0,15.0,7.0,13.0,10.0,9.0,6.0,13.0,12.0,10.0,10.0,12.0,16.0,15.0,10.0,17.0,11.0,18.0,15.0,15.0,3.0,6.0,11.0,7.0,6.0,9.0,13.0,12.0,11.0,15.0,10.0,14.0,12.0,15.0,8.0,12.0,14.0,13.0,17.0,14.0,13.0,16.0,17.0,11.0,12.0,12.0,10.0,14.0,17.0,17.0,27.0,18.0,20.0,30.0,20.0,23.0,15.0,23.0,20.0,17.0,21.0,21.0,21.0,22.0,21.0,15.0,10.0,18.0,20.0,13.0,12.0,23.0,16.0,15.0,20.0,14.0,17.0,19.0,16.0,22.0,15.0,13.0,9.0,10.0,7.0,10.0,9.0,11.0,3.0,5.0,2.0,5.0,,8.0 B81675,81.0,80.0,73.0,92.0,94.0,98.0,109.0,92.0,91.0,77.0,99.0,98.0,86.0,99.0,86.0,95.0,98.0,98.0,89.0,84.0,65.0,91.0,106.0,81.0,93.0,107.0,98.0,99.0,129.0,150.0,122.0,158.0,148.0,127.0,158.0,145.0,136.0,145.0,132.0,125.0,107.0,104.0,94.0,101.0,92.0,94.0,77.0,69.0,79.0,68.0,67.0,82.0,69.0,78.0,68.0,71.0,66.0,68.0,68.0,50.0,65.0,69.0,66.0,51.0,56.0,56.0,56.0,48.0,46.0,40.0,41.0,33.0,26.0,38.0,28.0,23.0,38.0,29.0,32.0,31.0,19.0,22.0,17.0,18.0,19.0,15.0,11.0,16.0,11.0,6.0,5.0,6.0,3.0,5.0,2.0,4.0 B81697,13.0,11.0,6.0,18.0,20.0,18.0,14.0,11.0,17.0,13.0,22.0,15.0,22.0,31.0,11.0,15.0,20.0,16.0,18.0,15.0,13.0,17.0,12.0,12.0,13.0,13.0,14.0,15.0,10.0,20.0,24.0,15.0,15.0,17.0,27.0,23.0,28.0,15.0,21.0,13.0,21.0,20.0,14.0,18.0,18.0,16.0,14.0,16.0,14.0,12.0,19.0,17.0,15.0,21.0,14.0,12.0,22.0,22.0,31.0,29.0,20.0,23.0,20.0,24.0,21.0,14.0,18.0,17.0,20.0,11.0,20.0,9.0,12.0,10.0,18.0,16.0,13.0,14.0,9.0,7.0,7.0,3.0,11.0,7.0,5.0,14.0,5.0,4.0,2.0,5.0,2.0,,3.0,,, B82002,28.0,33.0,32.0,28.0,29.0,27.0,50.0,31.0,38.0,41.0,43.0,37.0,28.0,33.0,36.0,44.0,33.0,40.0,36.0,30.0,39.0,33.0,22.0,51.0,31.0,39.0,39.0,32.0,35.0,37.0,36.0,49.0,42.0,39.0,47.0,54.0,51.0,39.0,46.0,39.0,48.0,38.0,50.0,51.0,48.0,36.0,43.0,28.0,41.0,47.0,39.0,47.0,54.0,63.0,54.0,66.0,62.0,60.0,65.0,64.0,78.0,75.0,74.0,78.0,65.0,59.0,51.0,58.0,56.0,52.0,47.0,67.0,39.0,55.0,53.0,54.0,62.0,64.0,54.0,35.0,45.0,37.0,32.0,43.0,26.0,33.0,32.0,26.0,33.0,18.0,20.0,12.0,15.0,11.0,6.0,14.0 B82004,34.0,29.0,36.0,46.0,49.0,47.0,50.0,50.0,51.0,64.0,54.0,55.0,54.0,54.0,46.0,67.0,75.0,54.0,71.0,56.0,47.0,48.0,58.0,41.0,48.0,36.0,35.0,42.0,45.0,42.0,39.0,41.0,50.0,54.0,55.0,54.0,46.0,49.0,63.0,77.0,57.0,54.0,55.0,52.0,63.0,68.0,62.0,66.0,78.0,69.0,65.0,75.0,85.0,84.0,109.0,84.0,90.0,90.0,106.0,116.0,111.0,99.0,98.0,109.0,60.0,85.0,90.0,85.0,94.0,65.0,64.0,83.0,82.0,57.0,73.0,94.0,67.0,87.0,94.0,43.0,52.0,54.0,55.0,34.0,33.0,40.0,34.0,34.0,25.0,20.0,18.0,18.0,10.0,9.0,10.0,17.0 B82005,240.0,232.0,242.0,264.0,273.0,277.0,290.0,298.0,321.0,333.0,331.0,372.0,339.0,386.0,367.0,412.0,422.0,466.0,439.0,453.0,415.0,446.0,409.0,443.0,417.0,406.0,431.0,437.0,394.0,434.0,462.0,387.0,438.0,471.0,448.0,467.0,475.0,451.0,420.0,446.0,464.0,404.0,422.0,418.0,411.0,386.0,377.0,351.0,361.0,338.0,328.0,351.0,300.0,363.0,409.0,359.0,361.0,372.0,337.0,328.0,338.0,339.0,297.0,315.0,312.0,270.0,255.0,251.0,223.0,216.0,223.0,204.0,200.0,202.0,206.0,189.0,215.0,237.0,234.0,146.0,159.0,141.0,142.0,110.0,122.0,111.0,113.0,100.0,92.0,73.0,69.0,44.0,39.0,38.0,29.0,84.0 B82008,21.0,23.0,25.0,24.0,32.0,30.0,20.0,30.0,33.0,38.0,25.0,44.0,40.0,38.0,48.0,49.0,60.0,53.0,48.0,37.0,50.0,39.0,45.0,34.0,50.0,33.0,37.0,40.0,24.0,37.0,36.0,36.0,43.0,32.0,32.0,39.0,46.0,47.0,34.0,46.0,44.0,63.0,52.0,58.0,44.0,55.0,43.0,44.0,42.0,54.0,47.0,58.0,67.0,63.0,65.0,62.0,74.0,66.0,80.0,67.0,61.0,58.0,73.0,71.0,79.0,67.0,53.0,56.0,42.0,59.0,68.0,68.0,63.0,74.0,61.0,50.0,61.0,68.0,65.0,46.0,57.0,52.0,50.0,43.0,43.0,44.0,42.0,35.0,27.0,20.0,22.0,14.0,15.0,5.0,7.0,16.0 B82010,25.0,28.0,22.0,27.0,31.0,28.0,43.0,45.0,54.0,40.0,35.0,45.0,42.0,50.0,51.0,63.0,44.0,54.0,46.0,34.0,30.0,37.0,41.0,37.0,33.0,39.0,42.0,32.0,37.0,44.0,30.0,40.0,41.0,54.0,44.0,48.0,43.0,53.0,54.0,53.0,54.0,57.0,43.0,51.0,61.0,57.0,54.0,35.0,39.0,46.0,60.0,38.0,45.0,57.0,58.0,56.0,74.0,58.0,73.0,65.0,56.0,61.0,65.0,50.0,49.0,60.0,53.0,46.0,43.0,42.0,40.0,46.0,44.0,48.0,28.0,40.0,43.0,47.0,53.0,36.0,40.0,33.0,28.0,36.0,24.0,23.0,18.0,21.0,26.0,14.0,24.0,13.0,6.0,10.0,7.0,17.0 B82011,19.0,22.0,14.0,24.0,21.0,22.0,30.0,26.0,28.0,26.0,33.0,31.0,29.0,27.0,26.0,31.0,27.0,34.0,21.0,33.0,28.0,21.0,15.0,22.0,31.0,25.0,27.0,19.0,29.0,37.0,27.0,31.0,36.0,31.0,28.0,41.0,36.0,25.0,33.0,36.0,24.0,26.0,37.0,25.0,32.0,32.0,27.0,29.0,27.0,34.0,23.0,37.0,37.0,43.0,61.0,58.0,51.0,45.0,48.0,58.0,55.0,60.0,58.0,56.0,49.0,43.0,48.0,46.0,41.0,45.0,38.0,35.0,35.0,36.0,33.0,39.0,26.0,23.0,52.0,19.0,33.0,29.0,21.0,14.0,17.0,8.0,15.0,10.0,5.0,7.0,9.0,7.0,4.0,1.0,2.0,2.0 B82012,63.0,61.0,48.0,66.0,75.0,87.0,71.0,80.0,86.0,79.0,82.0,98.0,106.0,79.0,110.0,98.0,105.0,110.0,93.0,80.0,64.0,57.0,60.0,59.0,66.0,65.0,48.0,46.0,53.0,47.0,76.0,59.0,69.0,90.0,75.0,97.0,89.0,89.0,83.0,109.0,92.0,100.0,112.0,94.0,96.0,109.0,103.0,124.0,91.0,107.0,120.0,117.0,119.0,131.0,126.0,105.0,129.0,127.0,121.0,130.0,112.0,102.0,102.0,105.0,113.0,110.0,100.0,127.0,93.0,72.0,99.0,90.0,73.0,70.0,87.0,83.0,88.0,97.0,91.0,69.0,79.0,79.0,57.0,62.0,55.0,47.0,52.0,44.0,37.0,40.0,33.0,27.0,26.0,11.0,13.0,38.0 B82013,69.0,57.0,78.0,64.0,86.0,92.0,94.0,90.0,106.0,94.0,109.0,101.0,117.0,107.0,104.0,121.0,107.0,108.0,86.0,89.0,93.0,77.0,91.0,115.0,112.0,103.0,114.0,143.0,136.0,123.0,174.0,144.0,145.0,143.0,150.0,137.0,139.0,136.0,136.0,149.0,162.0,140.0,128.0,151.0,146.0,134.0,155.0,131.0,113.0,124.0,129.0,127.0,133.0,146.0,175.0,128.0,145.0,141.0,163.0,156.0,145.0,141.0,137.0,148.0,128.0,119.0,140.0,121.0,116.0,100.0,119.0,110.0,74.0,111.0,94.0,91.0,90.0,96.0,97.0,74.0,69.0,52.0,64.0,62.0,57.0,49.0,41.0,40.0,40.0,21.0,38.0,15.0,19.0,17.0,18.0,37.0 B82014,33.0,25.0,27.0,34.0,32.0,31.0,34.0,30.0,43.0,33.0,24.0,48.0,39.0,34.0,40.0,50.0,38.0,32.0,41.0,17.0,30.0,26.0,24.0,29.0,33.0,32.0,32.0,38.0,34.0,38.0,50.0,36.0,43.0,37.0,48.0,49.0,49.0,47.0,39.0,43.0,39.0,47.0,54.0,46.0,60.0,46.0,62.0,52.0,44.0,48.0,36.0,43.0,53.0,51.0,42.0,41.0,44.0,47.0,47.0,34.0,39.0,49.0,47.0,36.0,42.0,49.0,36.0,39.0,32.0,37.0,25.0,30.0,41.0,32.0,37.0,42.0,36.0,39.0,38.0,32.0,40.0,27.0,21.0,24.0,22.0,25.0,32.0,15.0,19.0,10.0,17.0,13.0,9.0,3.0,6.0,17.0 B82016,33.0,26.0,30.0,38.0,43.0,41.0,37.0,33.0,46.0,40.0,35.0,37.0,50.0,35.0,56.0,50.0,58.0,44.0,41.0,47.0,27.0,40.0,47.0,35.0,41.0,44.0,49.0,58.0,60.0,50.0,61.0,52.0,47.0,75.0,54.0,75.0,71.0,61.0,47.0,68.0,63.0,54.0,62.0,61.0,57.0,71.0,51.0,46.0,70.0,54.0,61.0,63.0,60.0,63.0,53.0,61.0,59.0,67.0,58.0,58.0,50.0,52.0,59.0,58.0,52.0,58.0,42.0,32.0,31.0,49.0,47.0,42.0,39.0,29.0,38.0,29.0,45.0,45.0,50.0,36.0,32.0,25.0,28.0,34.0,23.0,13.0,19.0,19.0,12.0,17.0,14.0,11.0,3.0,6.0,9.0,19.0 B82017,32.0,29.0,27.0,42.0,41.0,36.0,51.0,49.0,42.0,65.0,57.0,44.0,67.0,76.0,62.0,86.0,70.0,74.0,62.0,66.0,61.0,64.0,62.0,48.0,50.0,60.0,50.0,62.0,63.0,49.0,61.0,53.0,52.0,68.0,74.0,77.0,74.0,75.0,67.0,77.0,74.0,83.0,83.0,66.0,73.0,71.0,75.0,58.0,72.0,63.0,75.0,66.0,95.0,113.0,95.0,95.0,96.0,110.0,128.0,124.0,129.0,119.0,123.0,113.0,120.0,115.0,102.0,125.0,91.0,89.0,98.0,101.0,108.0,101.0,90.0,118.0,94.0,100.0,104.0,91.0,81.0,65.0,66.0,57.0,45.0,36.0,47.0,31.0,40.0,31.0,22.0,23.0,18.0,18.0,8.0,26.0 B82018,23.0,20.0,21.0,31.0,35.0,22.0,21.0,32.0,30.0,31.0,28.0,31.0,37.0,24.0,30.0,34.0,47.0,36.0,33.0,29.0,32.0,34.0,38.0,32.0,21.0,28.0,22.0,31.0,32.0,29.0,16.0,24.0,26.0,31.0,39.0,31.0,28.0,38.0,42.0,42.0,40.0,34.0,32.0,31.0,38.0,43.0,34.0,42.0,39.0,44.0,40.0,55.0,56.0,60.0,69.0,60.0,55.0,50.0,59.0,63.0,55.0,70.0,57.0,60.0,53.0,64.0,56.0,64.0,44.0,46.0,53.0,52.0,44.0,40.0,41.0,41.0,52.0,46.0,47.0,39.0,33.0,41.0,37.0,23.0,19.0,15.0,20.0,10.0,16.0,7.0,10.0,10.0,3.0,5.0,3.0,7.0 B82019,17.0,14.0,30.0,25.0,18.0,20.0,28.0,24.0,29.0,22.0,39.0,32.0,25.0,29.0,37.0,27.0,29.0,27.0,27.0,23.0,17.0,18.0,14.0,17.0,16.0,15.0,13.0,31.0,25.0,22.0,23.0,18.0,22.0,27.0,35.0,35.0,33.0,27.0,48.0,29.0,32.0,18.0,32.0,43.0,28.0,32.0,25.0,27.0,25.0,30.0,30.0,26.0,22.0,29.0,26.0,24.0,34.0,30.0,32.0,47.0,35.0,28.0,37.0,22.0,26.0,31.0,31.0,19.0,27.0,23.0,21.0,23.0,21.0,20.0,21.0,12.0,25.0,21.0,23.0,13.0,19.0,7.0,9.0,8.0,4.0,15.0,4.0,5.0,3.0,1.0,3.0,1.0,3.0,1.0,,2.0 B82021,41.0,40.0,43.0,43.0,39.0,48.0,32.0,49.0,60.0,46.0,50.0,43.0,49.0,60.0,50.0,52.0,47.0,55.0,54.0,51.0,34.0,36.0,37.0,48.0,63.0,63.0,68.0,55.0,66.0,71.0,74.0,69.0,77.0,84.0,77.0,78.0,82.0,88.0,79.0,78.0,70.0,85.0,52.0,63.0,81.0,64.0,74.0,66.0,58.0,52.0,65.0,72.0,64.0,65.0,76.0,74.0,91.0,76.0,69.0,65.0,80.0,86.0,64.0,73.0,70.0,64.0,62.0,62.0,45.0,42.0,51.0,45.0,50.0,46.0,56.0,60.0,48.0,46.0,62.0,43.0,32.0,49.0,43.0,39.0,27.0,24.0,24.0,22.0,21.0,18.0,10.0,8.0,8.0,11.0,7.0,19.0 B82022,17.0,21.0,21.0,23.0,20.0,17.0,20.0,27.0,16.0,26.0,37.0,30.0,23.0,28.0,20.0,26.0,26.0,21.0,25.0,30.0,20.0,22.0,22.0,19.0,24.0,20.0,21.0,20.0,14.0,22.0,22.0,21.0,29.0,22.0,36.0,31.0,30.0,30.0,26.0,30.0,36.0,15.0,32.0,20.0,37.0,39.0,29.0,30.0,29.0,35.0,27.0,40.0,35.0,44.0,50.0,42.0,33.0,38.0,63.0,46.0,51.0,69.0,42.0,43.0,68.0,46.0,41.0,38.0,51.0,39.0,49.0,33.0,37.0,41.0,43.0,44.0,44.0,41.0,59.0,34.0,50.0,38.0,36.0,25.0,22.0,32.0,19.0,25.0,20.0,12.0,17.0,9.0,11.0,9.0,1.0,16.0 B82023,40.0,18.0,20.0,25.0,29.0,28.0,28.0,40.0,30.0,39.0,41.0,36.0,32.0,38.0,43.0,27.0,40.0,36.0,37.0,29.0,27.0,25.0,38.0,37.0,41.0,17.0,30.0,36.0,38.0,37.0,35.0,34.0,33.0,46.0,45.0,28.0,27.0,49.0,36.0,47.0,42.0,29.0,37.0,39.0,53.0,33.0,39.0,28.0,28.0,40.0,37.0,50.0,38.0,28.0,46.0,49.0,65.0,55.0,43.0,44.0,55.0,43.0,49.0,47.0,51.0,39.0,42.0,61.0,35.0,47.0,28.0,42.0,28.0,30.0,36.0,33.0,30.0,44.0,28.0,32.0,27.0,16.0,22.0,15.0,18.0,22.0,18.0,9.0,16.0,11.0,12.0,9.0,6.0,8.0,1.0,12.0 B82024,33.0,42.0,32.0,46.0,47.0,56.0,66.0,66.0,68.0,48.0,62.0,57.0,65.0,61.0,63.0,52.0,62.0,62.0,42.0,48.0,51.0,28.0,47.0,39.0,43.0,39.0,48.0,57.0,65.0,57.0,53.0,53.0,59.0,64.0,69.0,64.0,51.0,74.0,64.0,49.0,55.0,70.0,50.0,46.0,50.0,48.0,59.0,40.0,40.0,50.0,64.0,59.0,47.0,59.0,68.0,69.0,73.0,62.0,63.0,79.0,63.0,75.0,83.0,62.0,74.0,56.0,64.0,53.0,67.0,67.0,64.0,55.0,54.0,51.0,50.0,51.0,50.0,46.0,54.0,41.0,45.0,41.0,44.0,29.0,28.0,18.0,22.0,19.0,15.0,16.0,12.0,10.0,5.0,5.0,3.0,10.0 B82025,92.0,75.0,91.0,81.0,81.0,101.0,101.0,101.0,110.0,111.0,101.0,127.0,107.0,126.0,109.0,113.0,116.0,100.0,104.0,99.0,104.0,91.0,81.0,73.0,110.0,98.0,100.0,128.0,137.0,114.0,118.0,142.0,138.0,128.0,148.0,126.0,128.0,145.0,150.0,133.0,134.0,141.0,114.0,117.0,142.0,116.0,122.0,113.0,116.0,109.0,118.0,111.0,160.0,164.0,139.0,170.0,152.0,150.0,162.0,171.0,162.0,146.0,177.0,151.0,144.0,134.0,135.0,134.0,118.0,150.0,123.0,107.0,108.0,118.0,115.0,129.0,105.0,142.0,129.0,89.0,101.0,85.0,76.0,57.0,62.0,65.0,62.0,49.0,45.0,27.0,37.0,30.0,18.0,27.0,9.0,37.0 B82026,97.0,97.0,137.0,125.0,109.0,137.0,140.0,134.0,123.0,180.0,197.0,155.0,172.0,169.0,181.0,189.0,176.0,191.0,179.0,145.0,132.0,115.0,115.0,131.0,123.0,130.0,139.0,128.0,147.0,145.0,163.0,172.0,165.0,176.0,190.0,175.0,196.0,187.0,217.0,156.0,210.0,194.0,199.0,200.0,230.0,200.0,221.0,173.0,176.0,190.0,206.0,180.0,206.0,221.0,224.0,228.0,223.0,196.0,201.0,217.0,201.0,252.0,218.0,266.0,236.0,241.0,188.0,253.0,210.0,212.0,237.0,201.0,227.0,231.0,214.0,217.0,255.0,276.0,280.0,193.0,192.0,168.0,172.0,145.0,106.0,147.0,129.0,122.0,111.0,94.0,95.0,74.0,54.0,49.0,32.0,92.0 B82027,45.0,48.0,40.0,48.0,48.0,48.0,84.0,58.0,68.0,79.0,79.0,84.0,84.0,84.0,87.0,103.0,133.0,118.0,115.0,63.0,50.0,51.0,59.0,60.0,58.0,59.0,60.0,69.0,58.0,96.0,81.0,84.0,69.0,84.0,88.0,81.0,88.0,82.0,102.0,96.0,93.0,104.0,88.0,97.0,96.0,113.0,100.0,88.0,82.0,107.0,85.0,93.0,107.0,108.0,110.0,120.0,111.0,94.0,111.0,95.0,127.0,117.0,101.0,98.0,96.0,93.0,88.0,93.0,77.0,82.0,74.0,84.0,67.0,75.0,74.0,68.0,86.0,74.0,71.0,59.0,48.0,45.0,67.0,51.0,42.0,45.0,37.0,43.0,42.0,29.0,19.0,10.0,22.0,12.0,14.0,27.0 B82029,7.0,10.0,10.0,8.0,13.0,10.0,17.0,9.0,16.0,18.0,12.0,7.0,12.0,14.0,6.0,10.0,12.0,16.0,14.0,9.0,15.0,10.0,11.0,14.0,16.0,14.0,8.0,8.0,9.0,9.0,7.0,15.0,10.0,17.0,17.0,16.0,14.0,18.0,16.0,12.0,15.0,22.0,16.0,11.0,8.0,24.0,20.0,15.0,18.0,21.0,13.0,20.0,26.0,27.0,36.0,26.0,24.0,23.0,34.0,30.0,36.0,32.0,30.0,43.0,28.0,28.0,31.0,25.0,30.0,38.0,37.0,30.0,19.0,27.0,20.0,19.0,29.0,25.0,17.0,21.0,16.0,22.0,13.0,13.0,11.0,14.0,10.0,10.0,16.0,12.0,4.0,3.0,2.0,1.0,3.0,1.0 B82030,13.0,14.0,13.0,17.0,12.0,14.0,31.0,35.0,28.0,20.0,29.0,27.0,25.0,30.0,30.0,25.0,26.0,30.0,30.0,23.0,26.0,18.0,20.0,14.0,27.0,19.0,24.0,12.0,25.0,24.0,15.0,15.0,32.0,31.0,31.0,22.0,25.0,27.0,34.0,27.0,25.0,38.0,26.0,33.0,42.0,34.0,33.0,28.0,31.0,37.0,36.0,45.0,32.0,44.0,49.0,48.0,56.0,56.0,51.0,53.0,67.0,54.0,61.0,62.0,51.0,58.0,43.0,42.0,41.0,62.0,44.0,42.0,47.0,37.0,52.0,38.0,45.0,48.0,50.0,39.0,30.0,28.0,27.0,22.0,29.0,18.0,13.0,19.0,16.0,9.0,15.0,2.0,9.0,6.0,4.0,9.0 B82031,53.0,68.0,73.0,83.0,73.0,66.0,61.0,72.0,69.0,83.0,69.0,48.0,70.0,62.0,66.0,68.0,69.0,53.0,60.0,36.0,50.0,42.0,41.0,59.0,48.0,50.0,58.0,57.0,65.0,69.0,96.0,94.0,94.0,82.0,107.0,101.0,93.0,84.0,93.0,77.0,83.0,81.0,63.0,77.0,63.0,71.0,49.0,67.0,68.0,60.0,63.0,85.0,59.0,78.0,79.0,55.0,84.0,73.0,79.0,76.0,78.0,82.0,90.0,78.0,57.0,75.0,55.0,55.0,51.0,40.0,59.0,51.0,43.0,45.0,62.0,44.0,47.0,46.0,48.0,33.0,35.0,37.0,23.0,27.0,21.0,15.0,26.0,21.0,16.0,17.0,8.0,11.0,6.0,8.0,2.0,10.0 B82032,43.0,52.0,64.0,77.0,65.0,64.0,66.0,61.0,65.0,65.0,68.0,68.0,80.0,76.0,55.0,47.0,65.0,46.0,60.0,45.0,51.0,36.0,57.0,66.0,49.0,48.0,49.0,63.0,65.0,58.0,63.0,71.0,71.0,86.0,78.0,95.0,70.0,76.0,69.0,82.0,61.0,61.0,66.0,80.0,77.0,70.0,69.0,47.0,71.0,69.0,55.0,85.0,86.0,81.0,99.0,94.0,97.0,101.0,102.0,118.0,138.0,97.0,97.0,100.0,86.0,91.0,97.0,100.0,95.0,91.0,58.0,87.0,70.0,80.0,59.0,73.0,81.0,91.0,66.0,66.0,62.0,42.0,49.0,40.0,40.0,41.0,45.0,37.0,29.0,24.0,17.0,17.0,14.0,15.0,10.0,21.0 B82033,29.0,37.0,44.0,47.0,45.0,36.0,43.0,34.0,39.0,42.0,44.0,41.0,48.0,54.0,50.0,63.0,48.0,49.0,45.0,43.0,59.0,39.0,42.0,37.0,32.0,47.0,46.0,48.0,43.0,37.0,52.0,51.0,46.0,53.0,63.0,57.0,54.0,49.0,49.0,51.0,61.0,51.0,54.0,48.0,61.0,39.0,64.0,50.0,40.0,43.0,60.0,87.0,60.0,104.0,79.0,78.0,79.0,88.0,97.0,108.0,90.0,91.0,84.0,104.0,81.0,107.0,79.0,91.0,105.0,103.0,84.0,92.0,73.0,91.0,91.0,91.0,93.0,95.0,96.0,72.0,94.0,65.0,57.0,61.0,48.0,65.0,64.0,35.0,39.0,26.0,27.0,20.0,17.0,10.0,8.0,26.0 B82034,13.0,12.0,14.0,22.0,18.0,20.0,20.0,13.0,20.0,20.0,20.0,24.0,28.0,38.0,26.0,39.0,32.0,31.0,29.0,27.0,17.0,22.0,30.0,17.0,30.0,32.0,26.0,27.0,23.0,20.0,33.0,23.0,23.0,23.0,19.0,22.0,36.0,32.0,33.0,29.0,19.0,31.0,39.0,29.0,39.0,35.0,42.0,42.0,38.0,29.0,32.0,47.0,49.0,50.0,79.0,53.0,62.0,55.0,63.0,81.0,78.0,60.0,57.0,59.0,66.0,59.0,83.0,63.0,49.0,42.0,42.0,53.0,51.0,50.0,46.0,44.0,53.0,54.0,54.0,40.0,41.0,49.0,39.0,27.0,22.0,27.0,34.0,20.0,18.0,15.0,15.0,8.0,8.0,8.0,6.0,10.0 B82035,11.0,10.0,12.0,10.0,13.0,14.0,9.0,10.0,8.0,16.0,27.0,14.0,19.0,22.0,20.0,14.0,18.0,21.0,13.0,18.0,12.0,14.0,19.0,11.0,18.0,18.0,19.0,18.0,17.0,23.0,11.0,15.0,19.0,15.0,20.0,19.0,21.0,14.0,19.0,13.0,13.0,27.0,25.0,21.0,20.0,21.0,22.0,24.0,19.0,19.0,29.0,32.0,22.0,21.0,26.0,41.0,26.0,26.0,31.0,45.0,33.0,38.0,43.0,30.0,24.0,21.0,28.0,27.0,26.0,16.0,24.0,36.0,21.0,14.0,23.0,16.0,29.0,23.0,31.0,18.0,15.0,17.0,12.0,9.0,15.0,10.0,9.0,10.0,5.0,8.0,11.0,8.0,1.0,2.0,1.0,8.0 B82036,23.0,27.0,36.0,27.0,36.0,36.0,33.0,31.0,44.0,38.0,36.0,43.0,49.0,46.0,44.0,52.0,45.0,53.0,46.0,32.0,44.0,46.0,39.0,41.0,36.0,37.0,22.0,36.0,41.0,43.0,45.0,37.0,41.0,34.0,49.0,43.0,31.0,39.0,47.0,54.0,44.0,42.0,57.0,37.0,54.0,46.0,50.0,54.0,45.0,58.0,45.0,68.0,48.0,48.0,74.0,78.0,67.0,57.0,68.0,55.0,61.0,56.0,59.0,49.0,54.0,55.0,49.0,54.0,56.0,52.0,36.0,40.0,37.0,45.0,61.0,40.0,52.0,46.0,62.0,33.0,49.0,35.0,35.0,28.0,23.0,23.0,27.0,19.0,14.0,16.0,19.0,15.0,17.0,10.0,6.0,22.0 B82037,21.0,21.0,20.0,21.0,21.0,27.0,28.0,33.0,45.0,39.0,39.0,27.0,32.0,41.0,35.0,39.0,35.0,49.0,24.0,37.0,21.0,28.0,28.0,23.0,23.0,25.0,28.0,31.0,34.0,25.0,34.0,30.0,45.0,43.0,46.0,34.0,43.0,38.0,51.0,49.0,42.0,43.0,33.0,23.0,35.0,37.0,32.0,31.0,26.0,34.0,35.0,60.0,51.0,48.0,61.0,81.0,55.0,65.0,64.0,69.0,80.0,86.0,97.0,82.0,93.0,104.0,94.0,98.0,74.0,65.0,78.0,84.0,73.0,90.0,81.0,78.0,82.0,101.0,95.0,76.0,82.0,69.0,71.0,48.0,43.0,48.0,37.0,36.0,30.0,36.0,28.0,16.0,11.0,6.0,9.0,19.0 B82038,77.0,85.0,93.0,110.0,99.0,110.0,109.0,116.0,127.0,105.0,124.0,132.0,158.0,175.0,141.0,154.0,186.0,168.0,149.0,109.0,152.0,140.0,128.0,117.0,117.0,135.0,108.0,150.0,112.0,139.0,133.0,142.0,174.0,159.0,140.0,189.0,143.0,165.0,159.0,164.0,153.0,144.0,146.0,130.0,147.0,133.0,130.0,115.0,123.0,124.0,140.0,151.0,128.0,169.0,166.0,158.0,161.0,182.0,172.0,182.0,176.0,155.0,165.0,161.0,156.0,152.0,152.0,154.0,157.0,153.0,111.0,124.0,114.0,130.0,142.0,135.0,121.0,114.0,142.0,96.0,108.0,90.0,83.0,70.0,74.0,47.0,56.0,62.0,49.0,42.0,31.0,29.0,29.0,19.0,15.0,54.0 B82041,59.0,66.0,89.0,61.0,81.0,81.0,82.0,90.0,77.0,83.0,92.0,85.0,88.0,77.0,91.0,80.0,98.0,89.0,89.0,60.0,67.0,54.0,71.0,48.0,60.0,79.0,62.0,68.0,85.0,75.0,90.0,101.0,95.0,113.0,107.0,118.0,114.0,108.0,110.0,90.0,90.0,98.0,91.0,93.0,100.0,93.0,106.0,86.0,89.0,90.0,90.0,112.0,102.0,106.0,104.0,133.0,119.0,107.0,128.0,117.0,116.0,129.0,117.0,106.0,124.0,93.0,106.0,90.0,109.0,93.0,107.0,85.0,95.0,101.0,87.0,89.0,95.0,109.0,100.0,69.0,79.0,60.0,71.0,42.0,51.0,47.0,45.0,41.0,40.0,21.0,21.0,22.0,15.0,12.0,12.0,22.0 B82042,19.0,33.0,19.0,31.0,43.0,28.0,48.0,37.0,30.0,47.0,37.0,53.0,42.0,50.0,48.0,43.0,45.0,50.0,44.0,43.0,30.0,46.0,28.0,34.0,27.0,39.0,37.0,41.0,41.0,47.0,39.0,52.0,45.0,39.0,56.0,49.0,51.0,53.0,44.0,48.0,48.0,61.0,36.0,58.0,38.0,50.0,49.0,45.0,62.0,36.0,40.0,47.0,56.0,58.0,64.0,66.0,72.0,78.0,80.0,82.0,96.0,76.0,68.0,71.0,67.0,67.0,71.0,66.0,54.0,69.0,59.0,65.0,53.0,55.0,48.0,66.0,55.0,61.0,53.0,37.0,33.0,44.0,35.0,31.0,31.0,30.0,26.0,28.0,24.0,34.0,18.0,12.0,14.0,12.0,9.0,23.0 B82044,38.0,32.0,41.0,26.0,29.0,36.0,44.0,34.0,27.0,39.0,37.0,23.0,45.0,47.0,39.0,46.0,45.0,46.0,47.0,48.0,44.0,43.0,40.0,36.0,44.0,37.0,39.0,47.0,52.0,28.0,45.0,35.0,40.0,39.0,32.0,39.0,53.0,41.0,36.0,53.0,39.0,43.0,46.0,32.0,48.0,41.0,55.0,50.0,46.0,54.0,55.0,41.0,74.0,72.0,61.0,70.0,82.0,75.0,63.0,91.0,116.0,102.0,84.0,92.0,91.0,87.0,80.0,77.0,66.0,83.0,68.0,82.0,66.0,59.0,64.0,82.0,71.0,65.0,88.0,70.0,81.0,55.0,50.0,57.0,45.0,43.0,37.0,34.0,30.0,26.0,28.0,10.0,11.0,11.0,5.0,13.0 B82045,6.0,8.0,15.0,8.0,10.0,5.0,14.0,12.0,11.0,15.0,13.0,11.0,19.0,22.0,15.0,14.0,19.0,17.0,12.0,5.0,12.0,14.0,15.0,12.0,14.0,13.0,11.0,20.0,13.0,6.0,14.0,14.0,16.0,17.0,18.0,14.0,17.0,20.0,24.0,21.0,24.0,17.0,23.0,13.0,19.0,14.0,19.0,19.0,19.0,23.0,25.0,26.0,21.0,33.0,27.0,34.0,41.0,30.0,41.0,39.0,53.0,44.0,46.0,41.0,45.0,52.0,47.0,39.0,35.0,33.0,27.0,41.0,31.0,23.0,24.0,29.0,39.0,47.0,37.0,19.0,17.0,30.0,23.0,12.0,16.0,14.0,15.0,12.0,9.0,9.0,5.0,8.0,3.0,4.0,4.0,5.0 B82046,3.0,6.0,8.0,18.0,14.0,12.0,12.0,12.0,10.0,11.0,13.0,11.0,18.0,10.0,18.0,14.0,13.0,18.0,6.0,15.0,14.0,8.0,14.0,8.0,8.0,18.0,15.0,14.0,11.0,10.0,10.0,12.0,15.0,24.0,15.0,21.0,16.0,14.0,14.0,16.0,11.0,16.0,23.0,7.0,13.0,20.0,15.0,20.0,22.0,20.0,10.0,19.0,22.0,22.0,21.0,29.0,35.0,20.0,25.0,22.0,21.0,21.0,25.0,32.0,28.0,23.0,28.0,28.0,26.0,24.0,31.0,21.0,27.0,24.0,30.0,27.0,18.0,23.0,25.0,11.0,18.0,12.0,8.0,10.0,11.0,16.0,12.0,4.0,2.0,5.0,6.0,2.0,3.0,2.0,,2.0 B82047,21.0,11.0,21.0,18.0,24.0,25.0,23.0,33.0,32.0,44.0,34.0,21.0,26.0,33.0,43.0,31.0,26.0,32.0,439.0,1182.0,1260.0,1066.0,728.0,539.0,462.0,128.0,118.0,135.0,99.0,191.0,192.0,172.0,177.0,128.0,126.0,130.0,79.0,77.0,75.0,66.0,70.0,55.0,55.0,49.0,60.0,38.0,42.0,37.0,40.0,30.0,37.0,34.0,41.0,39.0,44.0,41.0,44.0,39.0,33.0,38.0,36.0,35.0,41.0,35.0,24.0,31.0,25.0,26.0,23.0,16.0,29.0,29.0,24.0,26.0,36.0,22.0,25.0,37.0,29.0,24.0,32.0,25.0,24.0,23.0,26.0,24.0,18.0,18.0,23.0,18.0,16.0,13.0,9.0,10.0,7.0,23.0 B82049,39.0,33.0,40.0,39.0,32.0,38.0,31.0,42.0,42.0,45.0,45.0,51.0,48.0,40.0,44.0,30.0,38.0,43.0,40.0,31.0,32.0,41.0,35.0,25.0,34.0,43.0,49.0,57.0,35.0,52.0,51.0,51.0,51.0,69.0,51.0,38.0,55.0,55.0,56.0,49.0,51.0,35.0,50.0,46.0,54.0,48.0,43.0,41.0,41.0,40.0,47.0,51.0,56.0,59.0,53.0,67.0,67.0,52.0,52.0,58.0,74.0,75.0,70.0,58.0,68.0,49.0,66.0,63.0,71.0,61.0,62.0,42.0,47.0,52.0,52.0,41.0,53.0,48.0,52.0,45.0,46.0,43.0,31.0,30.0,32.0,30.0,21.0,26.0,22.0,10.0,13.0,18.0,9.0,8.0,10.0,17.0 B82050,83.0,88.0,85.0,81.0,81.0,108.0,82.0,106.0,106.0,113.0,106.0,110.0,109.0,116.0,99.0,107.0,98.0,88.0,110.0,74.0,71.0,82.0,85.0,83.0,81.0,99.0,103.0,101.0,114.0,126.0,102.0,91.0,124.0,131.0,136.0,126.0,142.0,124.0,123.0,135.0,139.0,100.0,126.0,116.0,123.0,115.0,116.0,104.0,130.0,113.0,118.0,125.0,130.0,135.0,162.0,177.0,184.0,174.0,175.0,176.0,172.0,175.0,171.0,195.0,189.0,166.0,155.0,133.0,171.0,189.0,155.0,150.0,148.0,137.0,143.0,152.0,156.0,162.0,156.0,114.0,134.0,109.0,101.0,71.0,68.0,86.0,68.0,61.0,49.0,65.0,44.0,24.0,28.0,23.0,23.0,46.0 B82054,50.0,47.0,55.0,51.0,67.0,70.0,57.0,58.0,62.0,68.0,71.0,76.0,67.0,67.0,72.0,64.0,85.0,72.0,68.0,74.0,54.0,61.0,44.0,56.0,73.0,61.0,65.0,64.0,74.0,66.0,76.0,79.0,84.0,97.0,90.0,85.0,90.0,87.0,81.0,80.0,87.0,71.0,59.0,100.0,87.0,85.0,93.0,68.0,89.0,94.0,99.0,106.0,101.0,112.0,105.0,101.0,132.0,129.0,126.0,138.0,142.0,145.0,156.0,135.0,136.0,127.0,151.0,132.0,130.0,126.0,108.0,108.0,120.0,128.0,122.0,119.0,144.0,134.0,139.0,103.0,116.0,85.0,90.0,63.0,76.0,61.0,77.0,55.0,60.0,40.0,43.0,37.0,34.0,28.0,21.0,53.0 B82057,39.0,36.0,33.0,44.0,46.0,37.0,55.0,37.0,48.0,36.0,45.0,33.0,48.0,36.0,43.0,50.0,44.0,39.0,32.0,38.0,35.0,30.0,33.0,32.0,30.0,37.0,30.0,34.0,34.0,37.0,46.0,46.0,43.0,46.0,59.0,41.0,48.0,51.0,58.0,52.0,43.0,61.0,39.0,47.0,54.0,42.0,51.0,51.0,40.0,39.0,41.0,41.0,67.0,49.0,57.0,54.0,58.0,51.0,53.0,76.0,56.0,56.0,79.0,60.0,58.0,54.0,54.0,43.0,47.0,52.0,37.0,47.0,31.0,35.0,44.0,43.0,30.0,40.0,30.0,34.0,34.0,15.0,23.0,18.0,22.0,17.0,12.0,16.0,12.0,11.0,4.0,15.0,5.0,6.0,4.0,11.0 B82059,45.0,39.0,39.0,50.0,37.0,48.0,45.0,73.0,43.0,61.0,64.0,66.0,51.0,55.0,59.0,63.0,45.0,54.0,49.0,44.0,42.0,45.0,41.0,38.0,47.0,57.0,44.0,56.0,62.0,70.0,62.0,55.0,64.0,62.0,95.0,69.0,75.0,77.0,73.0,76.0,63.0,84.0,71.0,71.0,70.0,77.0,54.0,63.0,61.0,53.0,58.0,91.0,70.0,89.0,75.0,79.0,92.0,78.0,83.0,85.0,78.0,75.0,102.0,66.0,85.0,80.0,74.0,80.0,64.0,74.0,77.0,63.0,72.0,70.0,74.0,62.0,77.0,75.0,80.0,43.0,60.0,38.0,28.0,53.0,33.0,35.0,40.0,40.0,29.0,35.0,16.0,20.0,12.0,12.0,8.0,35.0 B82060,60.0,43.0,55.0,62.0,55.0,62.0,53.0,58.0,66.0,96.0,71.0,80.0,75.0,99.0,60.0,74.0,68.0,53.0,59.0,54.0,53.0,43.0,46.0,59.0,59.0,55.0,49.0,75.0,74.0,71.0,74.0,81.0,72.0,97.0,97.0,84.0,94.0,106.0,90.0,95.0,70.0,94.0,75.0,82.0,86.0,80.0,62.0,57.0,68.0,85.0,81.0,79.0,87.0,87.0,85.0,95.0,96.0,98.0,96.0,102.0,97.0,95.0,87.0,100.0,81.0,90.0,92.0,83.0,75.0,66.0,82.0,74.0,67.0,73.0,83.0,77.0,79.0,75.0,72.0,63.0,57.0,63.0,52.0,43.0,54.0,55.0,42.0,33.0,37.0,31.0,22.0,30.0,14.0,9.0,6.0,26.0 B82063,30.0,31.0,28.0,27.0,30.0,41.0,42.0,42.0,47.0,41.0,43.0,37.0,43.0,49.0,35.0,53.0,52.0,52.0,48.0,46.0,39.0,45.0,32.0,30.0,31.0,30.0,36.0,45.0,38.0,31.0,41.0,32.0,32.0,47.0,50.0,43.0,34.0,60.0,41.0,46.0,53.0,39.0,43.0,55.0,54.0,47.0,45.0,51.0,50.0,63.0,66.0,47.0,62.0,61.0,68.0,76.0,80.0,91.0,65.0,88.0,88.0,97.0,85.0,92.0,86.0,97.0,81.0,76.0,72.0,96.0,88.0,84.0,78.0,82.0,76.0,84.0,92.0,95.0,88.0,56.0,65.0,60.0,43.0,38.0,32.0,33.0,39.0,28.0,34.0,22.0,19.0,19.0,12.0,9.0,8.0,23.0 B82064,14.0,14.0,19.0,17.0,15.0,16.0,12.0,11.0,17.0,15.0,11.0,10.0,13.0,18.0,16.0,15.0,28.0,24.0,24.0,15.0,16.0,14.0,19.0,13.0,16.0,20.0,20.0,16.0,12.0,27.0,17.0,24.0,15.0,13.0,17.0,16.0,24.0,11.0,19.0,20.0,20.0,19.0,17.0,27.0,16.0,20.0,12.0,24.0,21.0,23.0,19.0,24.0,30.0,31.0,35.0,40.0,34.0,37.0,32.0,34.0,32.0,26.0,36.0,46.0,32.0,25.0,28.0,23.0,26.0,30.0,25.0,21.0,13.0,24.0,13.0,25.0,26.0,27.0,26.0,16.0,24.0,11.0,8.0,7.0,9.0,7.0,6.0,10.0,7.0,6.0,3.0,2.0,2.0,,3.0,6.0 B82066,31.0,45.0,40.0,32.0,40.0,37.0,36.0,34.0,44.0,45.0,40.0,34.0,48.0,65.0,50.0,54.0,51.0,35.0,34.0,55.0,35.0,37.0,40.0,34.0,33.0,29.0,43.0,37.0,38.0,38.0,38.0,44.0,67.0,64.0,51.0,51.0,49.0,58.0,52.0,66.0,57.0,63.0,52.0,49.0,56.0,41.0,51.0,38.0,35.0,42.0,46.0,60.0,65.0,73.0,73.0,72.0,78.0,81.0,101.0,103.0,103.0,89.0,94.0,86.0,95.0,92.0,72.0,87.0,67.0,57.0,57.0,86.0,85.0,72.0,70.0,59.0,63.0,65.0,76.0,45.0,57.0,55.0,39.0,41.0,33.0,35.0,39.0,29.0,29.0,29.0,28.0,14.0,16.0,15.0,16.0,27.0 B82067,24.0,30.0,42.0,51.0,42.0,37.0,37.0,46.0,40.0,52.0,58.0,43.0,45.0,40.0,55.0,60.0,38.0,55.0,44.0,40.0,38.0,40.0,30.0,31.0,45.0,37.0,39.0,41.0,45.0,35.0,31.0,41.0,62.0,55.0,59.0,68.0,60.0,51.0,53.0,51.0,58.0,55.0,43.0,45.0,63.0,48.0,53.0,43.0,44.0,56.0,38.0,53.0,49.0,65.0,62.0,53.0,72.0,64.0,74.0,63.0,66.0,60.0,69.0,57.0,54.0,65.0,50.0,55.0,62.0,55.0,59.0,58.0,34.0,55.0,53.0,51.0,39.0,58.0,59.0,41.0,39.0,29.0,30.0,17.0,31.0,27.0,22.0,19.0,18.0,15.0,19.0,12.0,6.0,8.0,9.0,27.0 B82068,6.0,16.0,12.0,16.0,12.0,11.0,19.0,21.0,11.0,17.0,16.0,15.0,20.0,13.0,13.0,19.0,15.0,11.0,14.0,13.0,14.0,13.0,13.0,12.0,9.0,9.0,12.0,15.0,18.0,11.0,20.0,18.0,13.0,8.0,20.0,25.0,24.0,20.0,18.0,23.0,13.0,24.0,24.0,23.0,17.0,22.0,13.0,21.0,13.0,15.0,19.0,18.0,14.0,25.0,27.0,29.0,28.0,33.0,18.0,31.0,33.0,25.0,32.0,32.0,33.0,28.0,34.0,30.0,28.0,32.0,24.0,22.0,21.0,23.0,26.0,27.0,17.0,26.0,23.0,18.0,25.0,22.0,29.0,13.0,13.0,18.0,19.0,15.0,12.0,14.0,16.0,8.0,9.0,6.0,2.0,9.0 B82069,36.0,31.0,32.0,31.0,32.0,37.0,19.0,26.0,39.0,36.0,23.0,37.0,27.0,31.0,41.0,36.0,46.0,27.0,35.0,34.0,40.0,41.0,38.0,36.0,32.0,43.0,37.0,35.0,42.0,35.0,46.0,39.0,50.0,34.0,48.0,53.0,36.0,36.0,32.0,36.0,44.0,44.0,41.0,37.0,44.0,44.0,44.0,40.0,42.0,45.0,54.0,45.0,38.0,61.0,66.0,55.0,59.0,60.0,57.0,74.0,75.0,68.0,61.0,71.0,44.0,60.0,53.0,54.0,64.0,61.0,33.0,52.0,38.0,46.0,51.0,62.0,51.0,51.0,49.0,38.0,50.0,34.0,30.0,22.0,26.0,19.0,26.0,21.0,24.0,18.0,12.0,8.0,6.0,10.0,5.0,9.0 B82071,25.0,28.0,27.0,22.0,25.0,21.0,43.0,34.0,40.0,41.0,56.0,39.0,34.0,45.0,44.0,47.0,44.0,50.0,45.0,40.0,31.0,28.0,25.0,30.0,41.0,20.0,23.0,22.0,35.0,14.0,21.0,29.0,31.0,31.0,34.0,13.0,34.0,40.0,40.0,39.0,44.0,50.0,58.0,48.0,55.0,50.0,46.0,46.0,53.0,48.0,53.0,59.0,48.0,57.0,55.0,61.0,66.0,60.0,44.0,58.0,65.0,56.0,57.0,50.0,57.0,52.0,62.0,45.0,52.0,56.0,49.0,56.0,48.0,51.0,50.0,52.0,50.0,75.0,71.0,44.0,46.0,35.0,31.0,24.0,25.0,23.0,14.0,24.0,20.0,11.0,13.0,5.0,7.0,5.0,4.0,9.0 B82072,5.0,8.0,10.0,14.0,21.0,12.0,23.0,24.0,22.0,19.0,20.0,22.0,22.0,20.0,22.0,32.0,29.0,32.0,28.0,27.0,18.0,17.0,26.0,13.0,13.0,13.0,13.0,14.0,19.0,19.0,22.0,16.0,26.0,16.0,12.0,23.0,25.0,26.0,32.0,15.0,19.0,27.0,35.0,37.0,38.0,21.0,41.0,21.0,32.0,31.0,21.0,38.0,42.0,44.0,30.0,29.0,52.0,41.0,41.0,36.0,45.0,37.0,52.0,43.0,47.0,44.0,43.0,35.0,48.0,40.0,38.0,37.0,34.0,45.0,51.0,43.0,25.0,38.0,34.0,46.0,30.0,31.0,24.0,23.0,19.0,13.0,15.0,15.0,20.0,9.0,8.0,7.0,11.0,5.0,2.0,7.0 B82073,60.0,45.0,53.0,41.0,51.0,60.0,52.0,55.0,51.0,55.0,47.0,57.0,66.0,55.0,65.0,55.0,58.0,63.0,47.0,38.0,37.0,47.0,59.0,42.0,45.0,66.0,54.0,87.0,62.0,72.0,76.0,80.0,74.0,83.0,87.0,71.0,84.0,79.0,82.0,72.0,73.0,52.0,73.0,84.0,82.0,60.0,61.0,68.0,64.0,71.0,56.0,70.0,65.0,72.0,84.0,78.0,71.0,72.0,90.0,64.0,78.0,73.0,66.0,81.0,70.0,76.0,71.0,56.0,73.0,66.0,65.0,57.0,45.0,52.0,49.0,64.0,66.0,68.0,60.0,39.0,52.0,47.0,24.0,26.0,19.0,22.0,26.0,18.0,25.0,12.0,14.0,15.0,16.0,6.0,5.0,8.0 B82074,74.0,93.0,89.0,103.0,121.0,75.0,99.0,102.0,106.0,87.0,110.0,100.0,96.0,114.0,102.0,107.0,86.0,108.0,96.0,68.0,81.0,76.0,95.0,75.0,81.0,101.0,115.0,135.0,127.0,131.0,135.0,122.0,130.0,129.0,145.0,155.0,126.0,145.0,114.0,139.0,118.0,125.0,139.0,116.0,127.0,145.0,107.0,111.0,94.0,97.0,104.0,115.0,123.0,136.0,130.0,138.0,139.0,135.0,136.0,114.0,147.0,119.0,161.0,116.0,115.0,108.0,110.0,89.0,91.0,87.0,78.0,111.0,87.0,73.0,100.0,92.0,94.0,112.0,106.0,74.0,74.0,63.0,75.0,51.0,44.0,43.0,45.0,37.0,45.0,30.0,20.0,16.0,18.0,19.0,14.0,40.0 B82075,28.0,35.0,29.0,30.0,32.0,32.0,44.0,44.0,45.0,57.0,39.0,46.0,58.0,50.0,50.0,35.0,48.0,59.0,46.0,40.0,45.0,51.0,49.0,35.0,50.0,38.0,48.0,51.0,41.0,48.0,45.0,44.0,61.0,59.0,54.0,55.0,53.0,54.0,51.0,64.0,41.0,49.0,50.0,52.0,48.0,44.0,56.0,54.0,57.0,49.0,45.0,69.0,66.0,79.0,74.0,67.0,88.0,83.0,79.0,85.0,77.0,86.0,91.0,88.0,91.0,67.0,79.0,87.0,60.0,67.0,56.0,66.0,67.0,63.0,64.0,63.0,59.0,79.0,77.0,48.0,43.0,34.0,33.0,45.0,35.0,34.0,22.0,31.0,24.0,23.0,21.0,12.0,15.0,15.0,10.0,20.0 B82077,15.0,19.0,19.0,17.0,24.0,30.0,21.0,26.0,22.0,26.0,30.0,22.0,27.0,22.0,24.0,29.0,30.0,30.0,21.0,28.0,26.0,26.0,28.0,25.0,31.0,22.0,26.0,26.0,30.0,22.0,35.0,31.0,37.0,31.0,33.0,34.0,30.0,26.0,29.0,36.0,26.0,29.0,24.0,26.0,29.0,28.0,25.0,30.0,33.0,25.0,29.0,38.0,46.0,50.0,49.0,44.0,49.0,50.0,58.0,56.0,64.0,51.0,56.0,68.0,56.0,45.0,49.0,51.0,54.0,53.0,48.0,48.0,51.0,42.0,51.0,50.0,40.0,55.0,54.0,36.0,40.0,24.0,21.0,30.0,19.0,40.0,37.0,13.0,25.0,16.0,12.0,8.0,10.0,12.0,8.0,14.0 B82078,16.0,12.0,18.0,13.0,30.0,22.0,17.0,30.0,11.0,25.0,19.0,22.0,23.0,18.0,17.0,28.0,23.0,32.0,20.0,29.0,26.0,17.0,29.0,20.0,21.0,19.0,21.0,25.0,28.0,18.0,22.0,18.0,28.0,30.0,31.0,37.0,25.0,29.0,28.0,16.0,32.0,33.0,19.0,35.0,36.0,23.0,27.0,26.0,24.0,28.0,30.0,45.0,43.0,30.0,42.0,39.0,56.0,60.0,43.0,52.0,58.0,81.0,57.0,62.0,86.0,59.0,60.0,57.0,61.0,53.0,67.0,39.0,44.0,56.0,58.0,58.0,48.0,67.0,61.0,45.0,40.0,31.0,35.0,36.0,30.0,27.0,27.0,23.0,23.0,17.0,17.0,11.0,7.0,10.0,4.0,14.0 B82079,7.0,14.0,12.0,12.0,10.0,14.0,13.0,13.0,15.0,8.0,7.0,13.0,14.0,25.0,19.0,19.0,20.0,21.0,22.0,15.0,14.0,19.0,14.0,22.0,13.0,12.0,12.0,22.0,16.0,12.0,18.0,14.0,16.0,10.0,19.0,13.0,11.0,22.0,13.0,22.0,13.0,12.0,22.0,26.0,10.0,24.0,15.0,22.0,21.0,24.0,25.0,29.0,22.0,32.0,20.0,28.0,23.0,30.0,37.0,38.0,41.0,36.0,24.0,34.0,38.0,31.0,28.0,25.0,25.0,31.0,38.0,36.0,31.0,22.0,29.0,29.0,32.0,32.0,33.0,27.0,22.0,18.0,18.0,24.0,20.0,23.0,11.0,12.0,13.0,13.0,10.0,9.0,3.0,2.0,4.0,9.0 B82080,58.0,59.0,64.0,86.0,79.0,88.0,84.0,112.0,97.0,105.0,100.0,98.0,105.0,95.0,102.0,106.0,114.0,123.0,95.0,73.0,77.0,83.0,83.0,86.0,70.0,89.0,93.0,79.0,88.0,86.0,92.0,108.0,99.0,98.0,109.0,105.0,101.0,108.0,92.0,121.0,107.0,110.0,101.0,127.0,139.0,120.0,119.0,112.0,110.0,116.0,123.0,138.0,129.0,127.0,137.0,175.0,152.0,159.0,135.0,144.0,164.0,148.0,168.0,132.0,143.0,134.0,118.0,102.0,123.0,123.0,126.0,108.0,124.0,115.0,123.0,114.0,121.0,149.0,149.0,107.0,116.0,93.0,77.0,65.0,65.0,59.0,69.0,51.0,39.0,33.0,35.0,30.0,23.0,15.0,12.0,30.0 B82081,14.0,15.0,21.0,25.0,29.0,36.0,33.0,45.0,43.0,39.0,39.0,39.0,44.0,55.0,54.0,76.0,88.0,54.0,54.0,36.0,28.0,30.0,31.0,36.0,32.0,24.0,33.0,22.0,27.0,25.0,30.0,23.0,22.0,31.0,33.0,31.0,27.0,54.0,34.0,44.0,40.0,36.0,39.0,39.0,42.0,36.0,53.0,50.0,48.0,52.0,46.0,49.0,54.0,69.0,50.0,67.0,67.0,81.0,71.0,66.0,43.0,61.0,48.0,59.0,51.0,48.0,46.0,50.0,33.0,42.0,42.0,59.0,38.0,41.0,28.0,37.0,43.0,51.0,54.0,34.0,35.0,25.0,24.0,24.0,23.0,31.0,20.0,19.0,21.0,15.0,18.0,19.0,16.0,5.0,12.0,22.0 B82083,143.0,151.0,169.0,173.0,169.0,170.0,166.0,186.0,194.0,178.0,190.0,204.0,209.0,206.0,180.0,187.0,204.0,215.0,393.0,692.0,810.0,682.0,478.0,454.0,460.0,435.0,430.0,440.0,370.0,362.0,367.0,355.0,355.0,301.0,323.0,325.0,351.0,340.0,315.0,298.0,273.0,288.0,303.0,286.0,275.0,286.0,261.0,255.0,217.0,231.0,257.0,216.0,255.0,269.0,290.0,254.0,247.0,254.0,245.0,225.0,268.0,243.0,229.0,212.0,220.0,208.0,195.0,206.0,205.0,174.0,163.0,164.0,189.0,139.0,160.0,166.0,177.0,170.0,178.0,123.0,156.0,120.0,114.0,93.0,73.0,78.0,83.0,74.0,61.0,64.0,36.0,47.0,31.0,37.0,26.0,74.0 B82086,13.0,12.0,24.0,20.0,28.0,24.0,19.0,25.0,10.0,21.0,18.0,23.0,21.0,21.0,13.0,21.0,18.0,23.0,19.0,19.0,26.0,16.0,28.0,26.0,15.0,21.0,19.0,26.0,21.0,27.0,21.0,26.0,18.0,28.0,33.0,25.0,38.0,21.0,24.0,19.0,25.0,22.0,17.0,32.0,28.0,27.0,24.0,21.0,23.0,29.0,31.0,25.0,31.0,45.0,38.0,45.0,47.0,41.0,48.0,57.0,43.0,51.0,47.0,61.0,46.0,35.0,38.0,49.0,39.0,50.0,40.0,45.0,39.0,40.0,42.0,41.0,33.0,32.0,39.0,18.0,26.0,23.0,15.0,15.0,16.0,11.0,23.0,15.0,12.0,8.0,5.0,6.0,4.0,8.0,2.0,9.0 B82088,47.0,37.0,47.0,55.0,38.0,45.0,43.0,47.0,62.0,50.0,51.0,47.0,61.0,58.0,60.0,56.0,58.0,40.0,53.0,50.0,45.0,41.0,52.0,45.0,67.0,54.0,64.0,76.0,75.0,73.0,61.0,70.0,61.0,81.0,57.0,79.0,86.0,86.0,75.0,68.0,76.0,45.0,50.0,55.0,73.0,47.0,49.0,52.0,57.0,61.0,58.0,61.0,69.0,76.0,77.0,82.0,71.0,89.0,76.0,82.0,73.0,72.0,69.0,78.0,52.0,67.0,62.0,69.0,62.0,43.0,52.0,53.0,45.0,56.0,57.0,42.0,54.0,59.0,57.0,39.0,42.0,31.0,45.0,42.0,31.0,32.0,26.0,23.0,21.0,17.0,17.0,12.0,12.0,4.0,2.0,13.0 B82091,41.0,47.0,27.0,36.0,36.0,30.0,36.0,41.0,40.0,35.0,32.0,43.0,36.0,49.0,36.0,37.0,42.0,35.0,38.0,23.0,26.0,21.0,32.0,50.0,36.0,39.0,52.0,63.0,60.0,72.0,74.0,64.0,51.0,59.0,61.0,63.0,54.0,71.0,60.0,66.0,57.0,54.0,46.0,40.0,50.0,50.0,56.0,50.0,37.0,45.0,53.0,51.0,47.0,40.0,57.0,75.0,55.0,67.0,47.0,62.0,59.0,64.0,50.0,45.0,53.0,46.0,34.0,44.0,37.0,45.0,35.0,29.0,37.0,37.0,54.0,33.0,40.0,41.0,49.0,33.0,36.0,24.0,32.0,33.0,24.0,21.0,27.0,19.0,15.0,16.0,20.0,10.0,10.0,14.0,5.0,15.0 B82097,52.0,52.0,56.0,49.0,57.0,69.0,61.0,66.0,69.0,75.0,76.0,65.0,60.0,69.0,66.0,74.0,79.0,51.0,66.0,58.0,52.0,56.0,50.0,56.0,61.0,64.0,77.0,74.0,63.0,69.0,97.0,104.0,106.0,114.0,81.0,87.0,86.0,87.0,85.0,63.0,89.0,86.0,89.0,89.0,73.0,78.0,69.0,52.0,55.0,62.0,73.0,70.0,74.0,66.0,77.0,62.0,73.0,74.0,74.0,83.0,78.0,73.0,83.0,76.0,87.0,83.0,84.0,76.0,68.0,55.0,53.0,59.0,56.0,55.0,50.0,55.0,30.0,52.0,34.0,22.0,24.0,21.0,16.0,23.0,18.0,12.0,7.0,10.0,14.0,12.0,4.0,6.0,6.0,6.0,2.0,7.0 B82098,83.0,91.0,99.0,104.0,105.0,93.0,91.0,91.0,101.0,92.0,97.0,102.0,132.0,124.0,106.0,108.0,112.0,114.0,133.0,191.0,187.0,198.0,256.0,285.0,334.0,318.0,296.0,257.0,246.0,216.0,201.0,221.0,229.0,192.0,209.0,193.0,185.0,170.0,221.0,185.0,212.0,193.0,154.0,185.0,181.0,175.0,171.0,160.0,169.0,163.0,155.0,161.0,174.0,167.0,198.0,154.0,168.0,158.0,162.0,179.0,161.0,169.0,169.0,132.0,145.0,136.0,154.0,126.0,109.0,129.0,137.0,112.0,110.0,108.0,106.0,116.0,106.0,138.0,113.0,107.0,61.0,87.0,75.0,44.0,54.0,50.0,46.0,36.0,47.0,33.0,24.0,27.0,19.0,15.0,14.0,43.0 B82100,31.0,28.0,26.0,47.0,28.0,33.0,28.0,32.0,44.0,37.0,32.0,46.0,43.0,67.0,37.0,33.0,41.0,57.0,53.0,48.0,54.0,30.0,41.0,39.0,42.0,36.0,35.0,35.0,31.0,37.0,47.0,43.0,47.0,53.0,57.0,58.0,51.0,68.0,58.0,48.0,49.0,50.0,50.0,62.0,50.0,59.0,45.0,57.0,46.0,51.0,49.0,51.0,56.0,54.0,64.0,64.0,73.0,62.0,46.0,74.0,77.0,75.0,68.0,85.0,67.0,88.0,70.0,59.0,71.0,63.0,60.0,59.0,70.0,51.0,58.0,57.0,63.0,63.0,65.0,56.0,44.0,29.0,34.0,34.0,26.0,23.0,26.0,20.0,14.0,16.0,22.0,13.0,8.0,10.0,6.0,10.0 B82101,13.0,21.0,14.0,22.0,16.0,16.0,18.0,22.0,19.0,21.0,22.0,25.0,28.0,23.0,21.0,32.0,29.0,16.0,19.0,26.0,19.0,15.0,17.0,17.0,16.0,19.0,27.0,23.0,23.0,21.0,22.0,27.0,22.0,29.0,24.0,26.0,20.0,32.0,25.0,27.0,23.0,27.0,33.0,31.0,36.0,24.0,23.0,19.0,28.0,20.0,29.0,25.0,31.0,36.0,37.0,29.0,40.0,62.0,41.0,50.0,51.0,38.0,47.0,55.0,54.0,57.0,60.0,36.0,44.0,40.0,44.0,48.0,45.0,45.0,42.0,40.0,38.0,37.0,68.0,27.0,34.0,39.0,27.0,22.0,9.0,18.0,18.0,16.0,10.0,9.0,9.0,16.0,9.0,6.0,4.0,14.0 B82104,50.0,58.0,68.0,85.0,53.0,85.0,68.0,73.0,89.0,72.0,64.0,67.0,93.0,71.0,78.0,64.0,65.0,56.0,63.0,53.0,40.0,45.0,57.0,60.0,74.0,75.0,68.0,74.0,72.0,95.0,66.0,104.0,88.0,82.0,98.0,88.0,94.0,89.0,67.0,86.0,68.0,61.0,80.0,61.0,67.0,59.0,66.0,40.0,42.0,43.0,43.0,56.0,43.0,63.0,62.0,70.0,61.0,53.0,41.0,46.0,42.0,50.0,50.0,32.0,31.0,40.0,38.0,23.0,28.0,15.0,20.0,17.0,30.0,14.0,20.0,21.0,15.0,18.0,23.0,9.0,17.0,10.0,8.0,11.0,11.0,14.0,8.0,7.0,3.0,6.0,4.0,5.0,1.0,1.0,3.0,4.0 B82105,35.0,38.0,38.0,36.0,53.0,44.0,61.0,40.0,48.0,49.0,52.0,47.0,59.0,48.0,61.0,59.0,48.0,48.0,45.0,45.0,36.0,42.0,32.0,47.0,39.0,42.0,44.0,46.0,44.0,43.0,36.0,46.0,57.0,67.0,62.0,58.0,57.0,62.0,60.0,54.0,60.0,42.0,62.0,66.0,42.0,56.0,61.0,58.0,55.0,52.0,78.0,64.0,57.0,78.0,80.0,76.0,87.0,73.0,85.0,79.0,60.0,74.0,99.0,63.0,75.0,62.0,78.0,57.0,58.0,52.0,58.0,52.0,47.0,51.0,43.0,52.0,62.0,53.0,47.0,42.0,53.0,45.0,35.0,40.0,40.0,25.0,23.0,14.0,19.0,16.0,17.0,9.0,11.0,5.0,4.0,18.0 B82106,15.0,21.0,19.0,16.0,17.0,17.0,17.0,11.0,16.0,10.0,17.0,21.0,21.0,19.0,24.0,20.0,21.0,28.0,23.0,21.0,11.0,14.0,23.0,19.0,13.0,25.0,9.0,19.0,26.0,28.0,13.0,26.0,26.0,33.0,32.0,26.0,24.0,36.0,30.0,24.0,23.0,22.0,29.0,17.0,21.0,12.0,26.0,28.0,20.0,31.0,24.0,21.0,29.0,37.0,44.0,33.0,32.0,33.0,45.0,42.0,45.0,39.0,48.0,55.0,43.0,39.0,40.0,37.0,33.0,47.0,45.0,36.0,28.0,39.0,27.0,31.0,37.0,41.0,45.0,24.0,28.0,18.0,18.0,20.0,27.0,10.0,12.0,18.0,9.0,11.0,12.0,11.0,7.0,4.0,7.0,18.0 B82609,17.0,9.0,15.0,16.0,11.0,15.0,15.0,17.0,14.0,13.0,16.0,21.0,24.0,31.0,34.0,37.0,51.0,57.0,40.0,28.0,26.0,17.0,18.0,13.0,17.0,11.0,19.0,5.0,15.0,16.0,12.0,20.0,16.0,18.0,19.0,15.0,13.0,23.0,22.0,14.0,26.0,15.0,20.0,17.0,25.0,22.0,11.0,19.0,18.0,11.0,26.0,27.0,23.0,35.0,38.0,25.0,39.0,37.0,31.0,42.0,56.0,35.0,31.0,38.0,44.0,40.0,33.0,31.0,37.0,32.0,33.0,36.0,30.0,21.0,23.0,21.0,27.0,20.0,18.0,22.0,30.0,16.0,18.0,14.0,10.0,8.0,14.0,13.0,8.0,10.0,9.0,12.0,2.0,1.0,1.0,8.0 B82619,8.0,5.0,6.0,10.0,7.0,8.0,14.0,8.0,11.0,11.0,6.0,4.0,8.0,6.0,6.0,6.0,8.0,4.0,5.0,3.0,5.0,4.0,5.0,3.0,7.0,7.0,1.0,10.0,3.0,8.0,8.0,8.0,9.0,3.0,12.0,10.0,15.0,13.0,12.0,13.0,12.0,9.0,8.0,12.0,14.0,10.0,14.0,9.0,13.0,11.0,5.0,13.0,24.0,12.0,12.0,15.0,18.0,16.0,17.0,17.0,14.0,18.0,18.0,19.0,13.0,18.0,17.0,8.0,12.0,17.0,15.0,16.0,6.0,11.0,10.0,19.0,14.0,11.0,9.0,9.0,7.0,7.0,8.0,13.0,9.0,7.0,8.0,3.0,3.0,1.0,3.0,1.0,2.0,1.0,3.0,2.0 B82622,6.0,3.0,6.0,3.0,5.0,6.0,6.0,4.0,6.0,4.0,3.0,4.0,6.0,3.0,3.0,5.0,5.0,6.0,3.0,,3.0,5.0,5.0,6.0,6.0,7.0,4.0,3.0,5.0,1.0,8.0,2.0,8.0,5.0,,14.0,9.0,5.0,7.0,2.0,7.0,3.0,10.0,9.0,5.0,8.0,7.0,11.0,5.0,9.0,10.0,9.0,11.0,15.0,8.0,14.0,15.0,23.0,16.0,23.0,18.0,15.0,20.0,8.0,14.0,12.0,17.0,18.0,17.0,14.0,14.0,7.0,13.0,12.0,9.0,8.0,21.0,20.0,9.0,7.0,8.0,11.0,5.0,5.0,7.0,6.0,8.0,4.0,4.0,4.0,1.0,1.0,3.0,2.0,2.0,3.0 B82628,15.0,8.0,15.0,18.0,12.0,15.0,21.0,16.0,19.0,13.0,14.0,20.0,20.0,17.0,23.0,16.0,15.0,22.0,22.0,24.0,13.0,14.0,13.0,14.0,11.0,15.0,14.0,16.0,16.0,22.0,12.0,18.0,14.0,19.0,24.0,22.0,25.0,24.0,16.0,20.0,15.0,14.0,24.0,20.0,16.0,20.0,21.0,18.0,19.0,20.0,22.0,24.0,27.0,31.0,28.0,23.0,28.0,49.0,29.0,39.0,44.0,50.0,55.0,50.0,48.0,38.0,42.0,37.0,57.0,31.0,48.0,43.0,39.0,37.0,27.0,30.0,38.0,37.0,54.0,26.0,39.0,24.0,21.0,23.0,17.0,26.0,12.0,15.0,18.0,9.0,9.0,7.0,6.0,3.0,2.0,6.0 Y01948,16.0,13.0,18.0,12.0,15.0,15.0,18.0,13.0,11.0,17.0,9.0,16.0,12.0,13.0,7.0,14.0,8.0,15.0,9.0,20.0,10.0,13.0,13.0,17.0,14.0,18.0,24.0,19.0,28.0,26.0,24.0,20.0,18.0,26.0,17.0,30.0,16.0,13.0,20.0,11.0,25.0,12.0,15.0,16.0,14.0,16.0,14.0,10.0,20.0,15.0,13.0,8.0,12.0,11.0,8.0,8.0,13.0,14.0,9.0,10.0,7.0,10.0,3.0,10.0,8.0,1.0,2.0,4.0,5.0,3.0,4.0,2.0,4.0,1.0,5.0,2.0,3.0,2.0,,2.0,,1.0,,,1.0,,,,1.0,,,,,,2.0, Y02669,27.0,29.0,24.0,37.0,30.0,26.0,31.0,21.0,28.0,33.0,27.0,17.0,26.0,27.0,14.0,20.0,28.0,28.0,32.0,29.0,23.0,35.0,38.0,29.0,39.0,50.0,46.0,38.0,50.0,52.0,52.0,43.0,46.0,58.0,56.0,67.0,52.0,39.0,30.0,30.0,31.0,28.0,30.0,41.0,35.0,36.0,30.0,30.0,29.0,30.0,22.0,26.0,22.0,28.0,36.0,22.0,26.0,38.0,19.0,20.0,29.0,33.0,23.0,25.0,28.0,19.0,20.0,20.0,17.0,23.0,11.0,15.0,13.0,14.0,17.0,15.0,12.0,10.0,19.0,8.0,6.0,8.0,9.0,9.0,8.0,4.0,8.0,7.0,4.0,1.0,,3.0,3.0,,1.0, Y02684,31.0,20.0,29.0,19.0,22.0,25.0,25.0,17.0,28.0,27.0,30.0,25.0,29.0,17.0,23.0,22.0,23.0,24.0,16.0,23.0,16.0,18.0,16.0,27.0,27.0,23.0,30.0,30.0,37.0,23.0,35.0,38.0,43.0,34.0,53.0,38.0,30.0,23.0,30.0,26.0,28.0,30.0,22.0,26.0,27.0,18.0,30.0,19.0,30.0,19.0,15.0,15.0,23.0,19.0,25.0,16.0,29.0,19.0,20.0,14.0,24.0,20.0,19.0,17.0,19.0,11.0,10.0,17.0,12.0,9.0,9.0,7.0,7.0,10.0,7.0,4.0,6.0,5.0,3.0,6.0,1.0,4.0,2.0,,4.0,1.0,,,3.0,1.0,4.0,1.0,,,,1.0 Y02747,142.0,158.0,150.0,158.0,171.0,145.0,159.0,191.0,151.0,168.0,156.0,154.0,158.0,154.0,132.0,138.0,130.0,115.0,97.0,102.0,83.0,76.0,105.0,108.0,117.0,144.0,134.0,182.0,194.0,168.0,215.0,197.0,194.0,215.0,194.0,220.0,202.0,221.0,166.0,180.0,197.0,156.0,154.0,140.0,153.0,124.0,108.0,115.0,105.0,90.0,88.0,104.0,86.0,82.0,75.0,75.0,77.0,81.0,73.0,76.0,88.0,90.0,65.0,60.0,85.0,56.0,59.0,51.0,50.0,44.0,45.0,51.0,40.0,36.0,35.0,25.0,24.0,38.0,36.0,25.0,20.0,17.0,16.0,9.0,12.0,13.0,12.0,7.0,11.0,5.0,5.0,7.0,2.0,3.0,1.0,2.0 Y02787,40.0,40.0,51.0,57.0,58.0,57.0,61.0,50.0,67.0,66.0,64.0,44.0,50.0,45.0,33.0,53.0,42.0,52.0,39.0,37.0,41.0,39.0,40.0,52.0,54.0,44.0,51.0,63.0,75.0,63.0,72.0,66.0,61.0,63.0,87.0,83.0,71.0,80.0,83.0,64.0,70.0,43.0,54.0,47.0,48.0,39.0,36.0,33.0,36.0,29.0,41.0,36.0,25.0,27.0,28.0,38.0,44.0,18.0,34.0,18.0,25.0,25.0,17.0,27.0,22.0,14.0,22.0,14.0,8.0,14.0,12.0,13.0,4.0,3.0,11.0,4.0,2.0,6.0,3.0,4.0,2.0,,1.0,1.0,2.0,1.0,,1.0,1.0,1.0,,,1.0,1.0,,1.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 J81083,8.0,12.0,12.0,14.0,12.0,12.0,11.0,23.0,15.0,29.0,22.0,29.0,47.0,25.0,22.0,30.0,23.0,19.0,21.0,14.0,12.0,13.0,15.0,10.0,11.0,18.0,11.0,15.0,16.0,10.0,14.0,13.0,14.0,15.0,20.0,13.0,18.0,11.0,17.0,13.0,22.0,20.0,21.0,25.0,19.0,24.0,18.0,19.0,21.0,18.0,22.0,35.0,27.0,38.0,31.0,28.0,35.0,36.0,43.0,37.0,39.0,37.0,41.0,37.0,52.0,33.0,42.0,40.0,33.0,26.0,22.0,31.0,35.0,31.0,30.0,29.0,33.0,39.0,34.0,14.0,27.0,24.0,18.0,17.0,10.0,9.0,14.0,11.0,12.0,6.0,7.0,4.0,6.0,1.0,4.0,4.0 J83001,47.0,51.0,58.0,56.0,49.0,71.0,56.0,67.0,79.0,77.0,73.0,63.0,67.0,74.0,83.0,70.0,65.0,60.0,65.0,41.0,45.0,56.0,73.0,57.0,67.0,66.0,58.0,75.0,84.0,66.0,80.0,83.0,93.0,74.0,91.0,80.0,74.0,101.0,99.0,76.0,89.0,77.0,79.0,80.0,86.0,69.0,87.0,69.0,78.0,70.0,71.0,73.0,99.0,97.0,101.0,97.0,89.0,111.0,130.0,94.0,112.0,105.0,103.0,103.0,94.0,85.0,90.0,79.0,82.0,71.0,91.0,95.0,75.0,72.0,73.0,71.0,68.0,95.0,94.0,60.0,75.0,69.0,50.0,55.0,51.0,50.0,48.0,40.0,41.0,33.0,31.0,24.0,18.0,20.0,18.0,28.0 J83002,210.0,214.0,279.0,263.0,261.0,290.0,312.0,326.0,352.0,301.0,364.0,333.0,361.0,351.0,344.0,371.0,310.0,331.0,283.0,253.0,209.0,204.0,200.0,252.0,255.0,251.0,259.0,293.0,339.0,339.0,359.0,350.0,348.0,335.0,385.0,405.0,370.0,438.0,426.0,413.0,451.0,369.0,385.0,412.0,425.0,367.0,372.0,333.0,297.0,319.0,333.0,318.0,322.0,334.0,310.0,277.0,301.0,330.0,313.0,273.0,275.0,263.0,234.0,230.0,217.0,211.0,234.0,213.0,205.0,193.0,186.0,236.0,173.0,185.0,181.0,186.0,177.0,199.0,193.0,135.0,151.0,127.0,109.0,93.0,76.0,87.0,85.0,58.0,54.0,46.0,43.0,36.0,27.0,44.0,27.0,69.0 J83003,53.0,60.0,54.0,55.0,59.0,58.0,62.0,67.0,70.0,74.0,79.0,73.0,67.0,65.0,71.0,76.0,76.0,77.0,62.0,46.0,62.0,48.0,56.0,56.0,57.0,50.0,65.0,46.0,66.0,53.0,65.0,83.0,76.0,74.0,98.0,92.0,93.0,93.0,78.0,105.0,84.0,81.0,81.0,84.0,88.0,84.0,77.0,77.0,73.0,69.0,84.0,84.0,92.0,96.0,84.0,99.0,93.0,88.0,93.0,94.0,83.0,91.0,88.0,65.0,95.0,90.0,94.0,94.0,76.0,95.0,78.0,71.0,83.0,76.0,86.0,75.0,96.0,93.0,94.0,76.0,73.0,80.0,59.0,74.0,55.0,68.0,57.0,51.0,39.0,40.0,28.0,35.0,27.0,18.0,16.0,60.0 J83004,18.0,24.0,30.0,26.0,40.0,38.0,14.0,40.0,36.0,37.0,43.0,33.0,50.0,48.0,31.0,49.0,40.0,47.0,40.0,29.0,29.0,34.0,30.0,27.0,39.0,27.0,48.0,29.0,35.0,32.0,24.0,35.0,38.0,29.0,30.0,40.0,46.0,31.0,41.0,33.0,53.0,37.0,50.0,38.0,39.0,45.0,41.0,45.0,50.0,55.0,47.0,54.0,56.0,66.0,52.0,58.0,70.0,56.0,65.0,60.0,73.0,79.0,70.0,70.0,73.0,74.0,66.0,56.0,57.0,60.0,54.0,42.0,58.0,55.0,49.0,47.0,52.0,72.0,49.0,42.0,37.0,40.0,37.0,20.0,23.0,42.0,19.0,24.0,20.0,16.0,22.0,12.0,15.0,13.0,5.0,19.0 J83005,49.0,55.0,64.0,53.0,58.0,54.0,42.0,48.0,62.0,60.0,61.0,71.0,75.0,82.0,51.0,81.0,78.0,71.0,66.0,59.0,57.0,52.0,48.0,57.0,69.0,55.0,67.0,60.0,59.0,73.0,57.0,66.0,84.0,69.0,66.0,74.0,75.0,89.0,73.0,85.0,85.0,84.0,64.0,81.0,88.0,86.0,67.0,77.0,52.0,72.0,80.0,79.0,70.0,81.0,82.0,87.0,70.0,73.0,67.0,75.0,84.0,88.0,66.0,86.0,95.0,65.0,60.0,50.0,55.0,56.0,59.0,60.0,44.0,44.0,50.0,48.0,46.0,46.0,54.0,45.0,43.0,33.0,34.0,26.0,34.0,25.0,32.0,23.0,20.0,11.0,14.0,11.0,11.0,11.0,7.0,25.0 J83006,36.0,39.0,37.0,53.0,44.0,52.0,40.0,54.0,42.0,55.0,51.0,58.0,62.0,70.0,65.0,65.0,60.0,60.0,57.0,47.0,57.0,58.0,54.0,45.0,51.0,49.0,38.0,46.0,48.0,49.0,32.0,46.0,67.0,66.0,72.0,58.0,65.0,80.0,60.0,81.0,59.0,66.0,63.0,62.0,70.0,69.0,64.0,69.0,61.0,64.0,70.0,83.0,80.0,77.0,74.0,107.0,81.0,97.0,83.0,85.0,100.0,92.0,81.0,81.0,85.0,88.0,69.0,70.0,61.0,61.0,57.0,58.0,58.0,59.0,57.0,58.0,65.0,71.0,58.0,48.0,50.0,41.0,41.0,32.0,28.0,44.0,33.0,26.0,35.0,24.0,23.0,18.0,11.0,19.0,10.0,30.0 J83007,55.0,67.0,57.0,67.0,78.0,74.0,86.0,69.0,101.0,83.0,94.0,98.0,75.0,115.0,112.0,103.0,108.0,98.0,75.0,81.0,68.0,70.0,74.0,72.0,78.0,103.0,94.0,94.0,105.0,98.0,106.0,109.0,110.0,114.0,111.0,106.0,99.0,84.0,91.0,118.0,91.0,101.0,103.0,117.0,105.0,119.0,87.0,110.0,107.0,94.0,104.0,119.0,107.0,115.0,119.0,111.0,120.0,108.0,126.0,114.0,128.0,107.0,98.0,85.0,90.0,84.0,88.0,64.0,79.0,59.0,81.0,68.0,58.0,56.0,53.0,51.0,54.0,81.0,56.0,48.0,60.0,46.0,47.0,42.0,35.0,44.0,39.0,34.0,28.0,32.0,23.0,17.0,17.0,8.0,8.0,20.0 J83008,62.0,89.0,86.0,91.0,82.0,111.0,107.0,97.0,92.0,133.0,118.0,121.0,110.0,105.0,105.0,93.0,114.0,97.0,108.0,78.0,84.0,77.0,80.0,84.0,103.0,112.0,86.0,131.0,136.0,127.0,132.0,135.0,126.0,122.0,147.0,141.0,147.0,145.0,134.0,140.0,126.0,108.0,126.0,156.0,141.0,122.0,108.0,118.0,122.0,113.0,118.0,129.0,133.0,156.0,142.0,131.0,141.0,121.0,130.0,136.0,133.0,107.0,117.0,107.0,112.0,110.0,102.0,117.0,94.0,99.0,72.0,115.0,102.0,87.0,107.0,114.0,113.0,121.0,120.0,97.0,79.0,94.0,65.0,49.0,41.0,51.0,52.0,41.0,35.0,35.0,21.0,24.0,16.0,12.0,12.0,37.0 J83009,44.0,52.0,61.0,63.0,58.0,57.0,71.0,77.0,102.0,88.0,83.0,90.0,93.0,104.0,105.0,93.0,82.0,96.0,76.0,58.0,67.0,65.0,57.0,59.0,88.0,81.0,79.0,52.0,82.0,92.0,67.0,82.0,104.0,81.0,77.0,83.0,107.0,88.0,98.0,90.0,99.0,103.0,104.0,115.0,99.0,109.0,95.0,81.0,94.0,102.0,85.0,93.0,108.0,107.0,118.0,106.0,103.0,122.0,113.0,111.0,113.0,112.0,107.0,105.0,105.0,103.0,79.0,79.0,66.0,86.0,75.0,80.0,78.0,92.0,75.0,70.0,79.0,99.0,100.0,79.0,68.0,78.0,60.0,57.0,46.0,57.0,48.0,43.0,28.0,31.0,40.0,24.0,19.0,12.0,15.0,30.0 J83010,45.0,41.0,54.0,68.0,70.0,66.0,78.0,68.0,68.0,51.0,68.0,66.0,68.0,76.0,71.0,82.0,58.0,75.0,67.0,48.0,47.0,43.0,52.0,32.0,56.0,49.0,46.0,65.0,53.0,49.0,56.0,65.0,61.0,68.0,80.0,68.0,84.0,76.0,63.0,76.0,93.0,82.0,65.0,89.0,67.0,72.0,72.0,90.0,78.0,64.0,94.0,85.0,87.0,85.0,82.0,84.0,84.0,79.0,77.0,86.0,89.0,79.0,82.0,80.0,77.0,69.0,71.0,62.0,68.0,71.0,66.0,83.0,65.0,72.0,72.0,74.0,64.0,93.0,86.0,63.0,45.0,61.0,46.0,42.0,32.0,58.0,30.0,40.0,28.0,22.0,21.0,10.0,6.0,19.0,11.0,24.0 J83011,50.0,67.0,75.0,60.0,60.0,67.0,63.0,67.0,72.0,67.0,75.0,75.0,84.0,68.0,90.0,73.0,62.0,73.0,50.0,59.0,61.0,52.0,49.0,64.0,73.0,73.0,87.0,81.0,80.0,91.0,99.0,103.0,95.0,104.0,86.0,99.0,80.0,86.0,86.0,69.0,86.0,78.0,78.0,74.0,65.0,89.0,48.0,68.0,57.0,73.0,89.0,84.0,104.0,102.0,116.0,98.0,93.0,106.0,101.0,101.0,117.0,115.0,106.0,90.0,115.0,88.0,82.0,88.0,82.0,92.0,84.0,79.0,82.0,93.0,84.0,81.0,102.0,98.0,105.0,83.0,73.0,63.0,58.0,56.0,59.0,53.0,61.0,39.0,37.0,26.0,27.0,23.0,19.0,17.0,11.0,32.0 J83013,25.0,25.0,34.0,37.0,38.0,37.0,41.0,33.0,40.0,40.0,50.0,60.0,44.0,51.0,42.0,51.0,43.0,42.0,42.0,34.0,25.0,25.0,23.0,33.0,30.0,38.0,22.0,34.0,36.0,35.0,37.0,27.0,49.0,42.0,67.0,43.0,35.0,42.0,50.0,46.0,42.0,60.0,55.0,54.0,45.0,61.0,42.0,53.0,37.0,39.0,53.0,62.0,73.0,64.0,53.0,53.0,65.0,58.0,68.0,67.0,58.0,62.0,56.0,80.0,57.0,53.0,39.0,64.0,38.0,45.0,60.0,62.0,49.0,44.0,44.0,43.0,55.0,47.0,64.0,37.0,61.0,37.0,32.0,28.0,28.0,36.0,28.0,24.0,23.0,15.0,15.0,12.0,8.0,8.0,8.0,23.0 J83014,97.0,93.0,112.0,116.0,118.0,106.0,128.0,121.0,129.0,98.0,113.0,106.0,133.0,131.0,114.0,124.0,101.0,125.0,105.0,86.0,88.0,95.0,86.0,89.0,109.0,120.0,108.0,136.0,132.0,127.0,148.0,120.0,165.0,158.0,184.0,147.0,143.0,148.0,143.0,145.0,147.0,114.0,111.0,124.0,133.0,125.0,91.0,104.0,82.0,93.0,94.0,84.0,109.0,108.0,102.0,110.0,97.0,88.0,93.0,114.0,108.0,100.0,88.0,103.0,89.0,86.0,79.0,84.0,76.0,65.0,77.0,83.0,52.0,80.0,54.0,63.0,57.0,60.0,59.0,50.0,41.0,35.0,27.0,23.0,37.0,32.0,25.0,19.0,14.0,17.0,13.0,7.0,12.0,5.0,5.0,18.0 J83016,98.0,112.0,136.0,144.0,137.0,152.0,154.0,158.0,158.0,197.0,195.0,202.0,187.0,210.0,207.0,202.0,217.0,176.0,183.0,134.0,123.0,163.0,144.0,168.0,183.0,172.0,218.0,196.0,179.0,192.0,219.0,191.0,213.0,215.0,246.0,216.0,222.0,234.0,192.0,226.0,225.0,232.0,220.0,192.0,210.0,188.0,179.0,196.0,186.0,209.0,184.0,202.0,217.0,220.0,244.0,232.0,241.0,202.0,220.0,224.0,184.0,221.0,203.0,211.0,196.0,221.0,173.0,168.0,163.0,181.0,173.0,158.0,182.0,137.0,155.0,120.0,145.0,184.0,158.0,112.0,117.0,114.0,112.0,82.0,70.0,62.0,60.0,59.0,47.0,52.0,44.0,27.0,29.0,20.0,15.0,37.0 J83018,86.0,56.0,73.0,70.0,72.0,70.0,68.0,88.0,75.0,86.0,83.0,93.0,65.0,86.0,97.0,96.0,97.0,123.0,86.0,61.0,63.0,73.0,85.0,79.0,93.0,99.0,90.0,88.0,86.0,90.0,108.0,118.0,107.0,113.0,123.0,127.0,114.0,95.0,107.0,96.0,106.0,115.0,119.0,90.0,110.0,102.0,82.0,86.0,83.0,113.0,109.0,135.0,125.0,131.0,117.0,130.0,151.0,123.0,136.0,154.0,143.0,136.0,140.0,134.0,131.0,133.0,139.0,139.0,143.0,120.0,102.0,118.0,115.0,130.0,117.0,118.0,135.0,135.0,143.0,104.0,113.0,112.0,90.0,78.0,75.0,65.0,84.0,44.0,43.0,50.0,44.0,48.0,31.0,20.0,19.0,48.0 J83019,31.0,35.0,43.0,42.0,44.0,47.0,47.0,65.0,54.0,51.0,48.0,54.0,47.0,61.0,64.0,66.0,60.0,70.0,46.0,63.0,44.0,50.0,48.0,36.0,40.0,39.0,37.0,47.0,48.0,43.0,50.0,55.0,42.0,40.0,61.0,45.0,76.0,76.0,76.0,63.0,58.0,58.0,66.0,73.0,74.0,69.0,74.0,77.0,54.0,67.0,80.0,86.0,84.0,94.0,84.0,99.0,122.0,101.0,99.0,113.0,125.0,130.0,114.0,109.0,98.0,107.0,108.0,105.0,105.0,93.0,80.0,82.0,85.0,84.0,93.0,87.0,103.0,105.0,100.0,87.0,92.0,88.0,69.0,59.0,65.0,42.0,55.0,35.0,31.0,25.0,19.0,27.0,16.0,17.0,11.0,28.0 J83021,119.0,99.0,111.0,122.0,129.0,144.0,151.0,152.0,158.0,145.0,160.0,151.0,160.0,188.0,156.0,151.0,163.0,155.0,139.0,138.0,99.0,114.0,89.0,112.0,128.0,146.0,138.0,157.0,144.0,144.0,157.0,185.0,177.0,187.0,202.0,178.0,174.0,206.0,183.0,180.0,190.0,195.0,177.0,170.0,180.0,163.0,151.0,161.0,144.0,148.0,151.0,152.0,145.0,149.0,159.0,158.0,159.0,171.0,168.0,181.0,182.0,171.0,146.0,138.0,165.0,127.0,139.0,107.0,133.0,107.0,105.0,95.0,128.0,103.0,85.0,119.0,116.0,115.0,119.0,99.0,91.0,82.0,69.0,72.0,48.0,52.0,55.0,52.0,39.0,48.0,35.0,33.0,29.0,30.0,21.0,56.0 J83022,25.0,49.0,34.0,58.0,37.0,40.0,48.0,43.0,52.0,36.0,71.0,38.0,63.0,60.0,59.0,52.0,59.0,43.0,40.0,38.0,49.0,49.0,39.0,48.0,45.0,47.0,73.0,63.0,53.0,83.0,62.0,73.0,75.0,79.0,72.0,76.0,78.0,64.0,77.0,68.0,79.0,77.0,89.0,75.0,69.0,64.0,67.0,58.0,61.0,61.0,56.0,72.0,66.0,76.0,48.0,72.0,64.0,67.0,64.0,70.0,68.0,51.0,51.0,50.0,60.0,52.0,45.0,51.0,42.0,45.0,40.0,39.0,33.0,27.0,30.0,28.0,24.0,31.0,34.0,25.0,23.0,26.0,14.0,21.0,19.0,16.0,21.0,11.0,5.0,7.0,8.0,6.0,6.0,6.0,4.0,2.0 J83023,40.0,49.0,40.0,44.0,41.0,48.0,41.0,52.0,61.0,47.0,63.0,59.0,55.0,51.0,58.0,45.0,47.0,43.0,39.0,35.0,46.0,40.0,40.0,44.0,46.0,50.0,46.0,39.0,51.0,42.0,51.0,55.0,66.0,60.0,83.0,69.0,63.0,66.0,65.0,55.0,61.0,59.0,59.0,70.0,59.0,52.0,43.0,42.0,54.0,51.0,63.0,61.0,50.0,56.0,62.0,66.0,73.0,66.0,61.0,72.0,67.0,71.0,73.0,69.0,69.0,61.0,69.0,49.0,65.0,56.0,60.0,58.0,61.0,64.0,43.0,46.0,46.0,44.0,54.0,36.0,40.0,31.0,33.0,26.0,19.0,21.0,9.0,7.0,14.0,11.0,13.0,3.0,7.0,5.0,6.0,7.0 J83024,39.0,44.0,53.0,38.0,48.0,37.0,60.0,69.0,61.0,45.0,53.0,58.0,68.0,63.0,66.0,68.0,66.0,72.0,54.0,47.0,46.0,31.0,54.0,46.0,55.0,43.0,59.0,50.0,63.0,56.0,57.0,57.0,68.0,66.0,59.0,67.0,71.0,66.0,80.0,61.0,71.0,52.0,62.0,48.0,62.0,52.0,61.0,64.0,45.0,49.0,45.0,53.0,51.0,50.0,69.0,54.0,66.0,55.0,53.0,61.0,56.0,63.0,69.0,55.0,45.0,65.0,45.0,51.0,35.0,39.0,42.0,47.0,50.0,37.0,34.0,30.0,42.0,41.0,41.0,36.0,28.0,19.0,21.0,19.0,19.0,13.0,12.0,18.0,22.0,21.0,10.0,13.0,6.0,9.0,4.0,13.0 J83026,65.0,80.0,87.0,99.0,79.0,88.0,97.0,118.0,105.0,121.0,115.0,120.0,124.0,134.0,136.0,138.0,143.0,137.0,124.0,98.0,93.0,84.0,97.0,89.0,130.0,92.0,106.0,119.0,112.0,112.0,127.0,146.0,142.0,123.0,148.0,146.0,128.0,153.0,154.0,150.0,145.0,142.0,168.0,160.0,158.0,148.0,129.0,107.0,138.0,133.0,147.0,163.0,176.0,172.0,142.0,183.0,166.0,189.0,197.0,195.0,185.0,183.0,176.0,190.0,180.0,137.0,167.0,156.0,159.0,146.0,146.0,146.0,139.0,163.0,123.0,133.0,175.0,150.0,138.0,102.0,117.0,134.0,131.0,106.0,83.0,76.0,73.0,82.0,73.0,60.0,60.0,41.0,36.0,22.0,22.0,67.0 J83027,41.0,51.0,60.0,74.0,66.0,64.0,73.0,58.0,76.0,80.0,81.0,70.0,78.0,73.0,63.0,59.0,66.0,53.0,66.0,65.0,52.0,45.0,53.0,63.0,61.0,63.0,60.0,87.0,73.0,76.0,88.0,89.0,106.0,117.0,91.0,100.0,96.0,97.0,99.0,97.0,69.0,100.0,79.0,83.0,93.0,83.0,57.0,81.0,59.0,73.0,61.0,66.0,80.0,74.0,87.0,98.0,80.0,78.0,85.0,81.0,71.0,64.0,78.0,88.0,65.0,87.0,59.0,56.0,68.0,76.0,57.0,63.0,54.0,49.0,61.0,40.0,50.0,52.0,50.0,39.0,43.0,39.0,42.0,33.0,24.0,34.0,21.0,19.0,14.0,13.0,22.0,10.0,8.0,10.0,7.0,13.0 J83029,42.0,46.0,35.0,35.0,33.0,39.0,48.0,43.0,46.0,41.0,47.0,53.0,47.0,55.0,53.0,50.0,48.0,56.0,46.0,37.0,45.0,40.0,39.0,31.0,40.0,57.0,48.0,52.0,53.0,55.0,61.0,65.0,52.0,48.0,62.0,65.0,47.0,60.0,54.0,51.0,52.0,67.0,52.0,45.0,52.0,58.0,56.0,48.0,46.0,52.0,41.0,59.0,60.0,72.0,58.0,52.0,55.0,74.0,76.0,73.0,68.0,62.0,67.0,72.0,73.0,63.0,47.0,61.0,43.0,54.0,43.0,47.0,71.0,46.0,48.0,43.0,58.0,66.0,64.0,48.0,55.0,57.0,30.0,33.0,37.0,30.0,28.0,28.0,27.0,19.0,12.0,11.0,9.0,7.0,7.0,18.0 J83030,50.0,49.0,72.0,59.0,78.0,66.0,86.0,87.0,79.0,78.0,91.0,115.0,104.0,118.0,155.0,174.0,169.0,189.0,123.0,94.0,79.0,102.0,78.0,72.0,70.0,68.0,71.0,58.0,71.0,68.0,80.0,102.0,79.0,86.0,104.0,96.0,90.0,109.0,113.0,107.0,119.0,98.0,108.0,143.0,128.0,113.0,115.0,121.0,110.0,134.0,132.0,135.0,136.0,122.0,175.0,135.0,150.0,136.0,132.0,125.0,136.0,141.0,121.0,141.0,113.0,117.0,142.0,128.0,126.0,130.0,124.0,140.0,141.0,148.0,130.0,129.0,139.0,140.0,137.0,95.0,109.0,109.0,85.0,76.0,73.0,61.0,61.0,68.0,51.0,58.0,44.0,34.0,24.0,19.0,17.0,57.0 J83033,108.0,119.0,122.0,143.0,116.0,110.0,100.0,134.0,123.0,132.0,153.0,113.0,137.0,139.0,111.0,120.0,121.0,133.0,116.0,87.0,103.0,100.0,111.0,102.0,122.0,125.0,165.0,163.0,176.0,177.0,153.0,193.0,158.0,193.0,202.0,178.0,190.0,184.0,197.0,166.0,180.0,171.0,159.0,174.0,151.0,132.0,127.0,148.0,115.0,113.0,127.0,124.0,138.0,112.0,132.0,116.0,100.0,132.0,120.0,123.0,123.0,126.0,137.0,105.0,106.0,87.0,84.0,82.0,73.0,55.0,68.0,68.0,54.0,55.0,66.0,61.0,51.0,51.0,51.0,41.0,46.0,47.0,36.0,34.0,25.0,26.0,22.0,20.0,18.0,14.0,21.0,10.0,10.0,8.0,5.0,13.0 J83034,16.0,16.0,21.0,14.0,18.0,23.0,22.0,23.0,25.0,25.0,34.0,22.0,35.0,39.0,61.0,32.0,62.0,79.0,53.0,41.0,29.0,30.0,30.0,36.0,36.0,27.0,24.0,25.0,30.0,34.0,29.0,36.0,35.0,33.0,44.0,30.0,40.0,36.0,27.0,31.0,18.0,35.0,34.0,22.0,42.0,40.0,32.0,23.0,30.0,28.0,38.0,47.0,61.0,40.0,54.0,53.0,60.0,48.0,64.0,50.0,62.0,54.0,59.0,41.0,52.0,58.0,57.0,62.0,46.0,46.0,47.0,45.0,50.0,42.0,49.0,39.0,57.0,68.0,53.0,34.0,45.0,44.0,32.0,43.0,20.0,26.0,44.0,20.0,28.0,10.0,21.0,9.0,6.0,10.0,2.0,13.0 J83035,62.0,74.0,62.0,84.0,84.0,80.0,85.0,100.0,108.0,103.0,99.0,95.0,120.0,122.0,109.0,95.0,125.0,117.0,92.0,102.0,105.0,85.0,79.0,95.0,75.0,92.0,101.0,93.0,76.0,102.0,99.0,95.0,107.0,100.0,113.0,95.0,115.0,113.0,98.0,113.0,111.0,98.0,99.0,96.0,100.0,107.0,113.0,117.0,119.0,94.0,112.0,125.0,123.0,111.0,132.0,100.0,114.0,102.0,111.0,100.0,101.0,80.0,66.0,59.0,76.0,57.0,49.0,58.0,72.0,45.0,54.0,44.0,43.0,44.0,44.0,47.0,65.0,39.0,37.0,35.0,28.0,17.0,23.0,21.0,15.0,20.0,12.0,19.0,9.0,9.0,7.0,4.0,2.0,3.0,4.0,10.0 J83036,40.0,42.0,52.0,54.0,53.0,66.0,63.0,51.0,62.0,69.0,73.0,61.0,53.0,64.0,56.0,64.0,53.0,72.0,49.0,29.0,50.0,42.0,37.0,39.0,60.0,50.0,47.0,63.0,64.0,63.0,63.0,85.0,76.0,80.0,82.0,77.0,82.0,80.0,89.0,62.0,76.0,86.0,78.0,70.0,76.0,62.0,50.0,65.0,65.0,50.0,69.0,59.0,52.0,63.0,70.0,57.0,75.0,63.0,72.0,79.0,79.0,85.0,77.0,75.0,89.0,89.0,92.0,75.0,58.0,49.0,55.0,72.0,63.0,50.0,53.0,45.0,43.0,56.0,47.0,21.0,22.0,27.0,27.0,21.0,19.0,22.0,15.0,10.0,11.0,9.0,7.0,7.0,2.0,4.0,4.0,7.0 J83037,43.0,44.0,46.0,55.0,58.0,52.0,56.0,64.0,81.0,61.0,74.0,80.0,70.0,117.0,163.0,169.0,160.0,192.0,166.0,95.0,71.0,82.0,64.0,66.0,60.0,59.0,62.0,64.0,70.0,52.0,87.0,70.0,65.0,85.0,84.0,73.0,87.0,78.0,61.0,67.0,74.0,101.0,79.0,104.0,90.0,85.0,91.0,102.0,89.0,86.0,94.0,135.0,116.0,133.0,124.0,152.0,144.0,129.0,128.0,139.0,132.0,112.0,138.0,113.0,120.0,124.0,122.0,129.0,106.0,121.0,93.0,116.0,114.0,105.0,119.0,103.0,109.0,125.0,116.0,72.0,115.0,109.0,74.0,66.0,71.0,62.0,47.0,56.0,31.0,43.0,40.0,35.0,39.0,21.0,22.0,50.0 J83038,113.0,136.0,168.0,189.0,143.0,169.0,175.0,144.0,187.0,205.0,194.0,204.0,242.0,205.0,189.0,177.0,187.0,192.0,168.0,151.0,153.0,138.0,132.0,151.0,176.0,196.0,184.0,186.0,212.0,200.0,225.0,262.0,271.0,275.0,285.0,271.0,292.0,283.0,274.0,273.0,284.0,281.0,258.0,209.0,217.0,201.0,178.0,174.0,171.0,179.0,161.0,161.0,173.0,173.0,156.0,153.0,163.0,136.0,132.0,132.0,130.0,151.0,145.0,126.0,126.0,104.0,102.0,118.0,92.0,78.0,81.0,67.0,72.0,55.0,54.0,52.0,45.0,53.0,45.0,41.0,45.0,36.0,28.0,36.0,25.0,25.0,35.0,26.0,32.0,17.0,18.0,9.0,10.0,7.0,7.0,11.0 J83039,63.0,54.0,80.0,75.0,78.0,74.0,67.0,80.0,61.0,80.0,82.0,82.0,78.0,85.0,91.0,79.0,76.0,67.0,71.0,63.0,52.0,42.0,56.0,54.0,55.0,69.0,90.0,93.0,108.0,83.0,81.0,112.0,129.0,105.0,107.0,104.0,96.0,92.0,101.0,92.0,93.0,94.0,77.0,81.0,88.0,70.0,90.0,69.0,69.0,78.0,75.0,83.0,97.0,111.0,82.0,99.0,95.0,113.0,116.0,114.0,101.0,93.0,112.0,92.0,77.0,83.0,107.0,84.0,80.0,81.0,74.0,82.0,76.0,62.0,70.0,82.0,76.0,88.0,83.0,73.0,62.0,42.0,57.0,48.0,40.0,31.0,34.0,21.0,14.0,32.0,15.0,15.0,13.0,11.0,7.0,14.0 J83040,101.0,115.0,124.0,126.0,131.0,123.0,137.0,134.0,141.0,152.0,144.0,151.0,151.0,139.0,151.0,126.0,141.0,129.0,125.0,120.0,120.0,118.0,127.0,119.0,115.0,165.0,140.0,160.0,180.0,144.0,154.0,160.0,184.0,187.0,172.0,156.0,198.0,171.0,179.0,164.0,182.0,155.0,167.0,160.0,145.0,150.0,133.0,131.0,149.0,141.0,150.0,153.0,174.0,160.0,179.0,184.0,178.0,189.0,190.0,174.0,188.0,179.0,195.0,151.0,166.0,132.0,147.0,163.0,135.0,109.0,126.0,125.0,127.0,123.0,126.0,100.0,115.0,150.0,136.0,110.0,92.0,97.0,88.0,84.0,71.0,52.0,61.0,40.0,52.0,41.0,30.0,26.0,22.0,18.0,16.0,50.0 J83041,40.0,62.0,65.0,55.0,72.0,81.0,90.0,79.0,88.0,108.0,81.0,106.0,104.0,95.0,105.0,93.0,111.0,90.0,102.0,82.0,65.0,77.0,73.0,74.0,63.0,76.0,45.0,59.0,63.0,78.0,86.0,72.0,68.0,86.0,95.0,101.0,98.0,82.0,90.0,100.0,117.0,100.0,85.0,109.0,117.0,100.0,116.0,91.0,127.0,106.0,112.0,123.0,124.0,125.0,114.0,128.0,143.0,109.0,148.0,136.0,141.0,130.0,150.0,122.0,124.0,124.0,112.0,117.0,116.0,116.0,113.0,95.0,103.0,83.0,91.0,117.0,109.0,108.0,111.0,79.0,88.0,82.0,71.0,54.0,62.0,47.0,45.0,41.0,39.0,37.0,21.0,21.0,15.0,17.0,14.0,34.0 J83042,97.0,88.0,83.0,107.0,97.0,113.0,106.0,90.0,98.0,116.0,89.0,85.0,98.0,108.0,89.0,95.0,89.0,97.0,93.0,72.0,63.0,84.0,102.0,118.0,109.0,117.0,130.0,137.0,157.0,159.0,173.0,161.0,146.0,161.0,164.0,150.0,176.0,128.0,137.0,133.0,110.0,131.0,117.0,101.0,104.0,90.0,100.0,95.0,121.0,99.0,126.0,116.0,159.0,132.0,145.0,137.0,119.0,151.0,142.0,132.0,126.0,122.0,160.0,108.0,120.0,117.0,106.0,112.0,99.0,105.0,87.0,97.0,102.0,108.0,92.0,89.0,99.0,93.0,89.0,84.0,82.0,63.0,78.0,45.0,65.0,53.0,50.0,56.0,48.0,33.0,31.0,18.0,22.0,15.0,11.0,38.0 J83043,13.0,18.0,19.0,28.0,19.0,27.0,37.0,24.0,36.0,30.0,34.0,32.0,33.0,32.0,39.0,34.0,35.0,34.0,38.0,14.0,31.0,24.0,19.0,16.0,34.0,21.0,31.0,27.0,19.0,26.0,23.0,29.0,24.0,29.0,32.0,36.0,26.0,52.0,32.0,37.0,35.0,42.0,35.0,41.0,34.0,35.0,40.0,45.0,42.0,34.0,55.0,38.0,30.0,38.0,51.0,51.0,57.0,48.0,54.0,71.0,56.0,51.0,51.0,55.0,47.0,48.0,63.0,70.0,48.0,50.0,47.0,46.0,54.0,43.0,58.0,34.0,46.0,43.0,62.0,44.0,48.0,39.0,47.0,30.0,25.0,28.0,30.0,23.0,18.0,24.0,19.0,4.0,12.0,7.0,4.0,24.0 J83045,27.0,36.0,44.0,30.0,31.0,44.0,49.0,49.0,51.0,42.0,58.0,59.0,56.0,64.0,53.0,55.0,52.0,62.0,52.0,53.0,50.0,44.0,46.0,49.0,47.0,47.0,54.0,52.0,47.0,46.0,53.0,47.0,44.0,49.0,53.0,50.0,45.0,56.0,55.0,57.0,65.0,57.0,65.0,59.0,69.0,49.0,63.0,76.0,55.0,62.0,67.0,83.0,77.0,69.0,82.0,75.0,99.0,103.0,87.0,98.0,80.0,85.0,89.0,78.0,80.0,95.0,79.0,92.0,74.0,67.0,63.0,64.0,60.0,54.0,51.0,63.0,70.0,59.0,57.0,50.0,49.0,39.0,48.0,31.0,34.0,30.0,25.0,27.0,23.0,22.0,19.0,16.0,15.0,1.0,8.0,19.0 J83046,73.0,71.0,69.0,70.0,91.0,78.0,84.0,99.0,99.0,91.0,78.0,113.0,85.0,102.0,90.0,92.0,96.0,76.0,73.0,78.0,60.0,63.0,71.0,78.0,80.0,80.0,106.0,83.0,88.0,90.0,108.0,113.0,101.0,115.0,106.0,95.0,113.0,98.0,118.0,87.0,92.0,87.0,100.0,87.0,103.0,103.0,82.0,93.0,96.0,101.0,103.0,110.0,116.0,128.0,95.0,97.0,108.0,116.0,121.0,104.0,113.0,108.0,122.0,91.0,100.0,116.0,117.0,79.0,86.0,93.0,80.0,92.0,74.0,95.0,74.0,80.0,68.0,87.0,94.0,70.0,73.0,77.0,49.0,58.0,45.0,28.0,30.0,29.0,27.0,28.0,19.0,14.0,13.0,15.0,12.0,27.0 J83047,43.0,44.0,31.0,51.0,50.0,50.0,48.0,51.0,55.0,54.0,60.0,55.0,57.0,46.0,46.0,37.0,53.0,49.0,38.0,40.0,41.0,42.0,42.0,36.0,42.0,41.0,47.0,44.0,49.0,55.0,51.0,70.0,75.0,68.0,61.0,53.0,60.0,58.0,68.0,57.0,70.0,49.0,77.0,66.0,53.0,52.0,69.0,45.0,51.0,45.0,45.0,43.0,66.0,49.0,64.0,59.0,51.0,67.0,47.0,53.0,50.0,67.0,46.0,46.0,49.0,45.0,45.0,45.0,28.0,42.0,50.0,34.0,37.0,50.0,45.0,39.0,42.0,42.0,29.0,25.0,18.0,23.0,25.0,22.0,22.0,18.0,20.0,13.0,16.0,19.0,11.0,3.0,5.0,5.0,3.0,10.0 J83048,28.0,33.0,34.0,38.0,26.0,31.0,31.0,36.0,33.0,42.0,48.0,33.0,43.0,42.0,39.0,41.0,35.0,39.0,30.0,35.0,34.0,32.0,29.0,22.0,45.0,34.0,42.0,53.0,53.0,49.0,48.0,45.0,53.0,53.0,60.0,66.0,40.0,48.0,45.0,54.0,58.0,53.0,55.0,59.0,41.0,44.0,41.0,34.0,40.0,36.0,36.0,54.0,48.0,48.0,45.0,46.0,48.0,51.0,39.0,45.0,60.0,55.0,41.0,48.0,51.0,31.0,44.0,28.0,38.0,24.0,32.0,34.0,39.0,34.0,46.0,43.0,31.0,22.0,29.0,25.0,30.0,20.0,29.0,22.0,20.0,18.0,20.0,14.0,11.0,8.0,6.0,7.0,5.0,6.0,3.0,7.0 J83049,42.0,40.0,45.0,42.0,48.0,58.0,59.0,45.0,60.0,55.0,64.0,78.0,78.0,99.0,136.0,114.0,135.0,125.0,121.0,86.0,48.0,41.0,41.0,56.0,63.0,69.0,51.0,53.0,64.0,65.0,70.0,67.0,61.0,70.0,73.0,82.0,60.0,83.0,75.0,60.0,81.0,78.0,66.0,85.0,92.0,74.0,66.0,53.0,77.0,85.0,74.0,84.0,93.0,108.0,96.0,83.0,92.0,104.0,107.0,101.0,108.0,95.0,84.0,81.0,86.0,85.0,108.0,89.0,71.0,72.0,57.0,72.0,77.0,62.0,72.0,57.0,57.0,70.0,69.0,49.0,59.0,57.0,47.0,47.0,35.0,41.0,40.0,32.0,29.0,21.0,20.0,22.0,19.0,10.0,16.0,33.0 J83050,36.0,64.0,61.0,60.0,67.0,78.0,72.0,77.0,86.0,83.0,89.0,75.0,94.0,93.0,107.0,91.0,82.0,94.0,91.0,67.0,78.0,64.0,71.0,81.0,83.0,64.0,81.0,64.0,84.0,67.0,92.0,87.0,73.0,106.0,77.0,94.0,75.0,89.0,90.0,107.0,86.0,89.0,81.0,106.0,101.0,86.0,83.0,81.0,85.0,123.0,123.0,103.0,121.0,130.0,122.0,140.0,129.0,132.0,118.0,118.0,130.0,124.0,106.0,100.0,101.0,93.0,84.0,94.0,80.0,76.0,81.0,72.0,79.0,74.0,68.0,64.0,98.0,80.0,61.0,61.0,57.0,47.0,34.0,38.0,32.0,32.0,25.0,24.0,23.0,17.0,16.0,17.0,9.0,8.0,9.0,16.0 J83052,61.0,71.0,84.0,73.0,70.0,79.0,73.0,70.0,88.0,95.0,81.0,102.0,83.0,93.0,114.0,105.0,78.0,70.0,78.0,52.0,58.0,63.0,54.0,53.0,71.0,109.0,95.0,90.0,94.0,97.0,129.0,121.0,126.0,123.0,120.0,111.0,131.0,124.0,119.0,94.0,102.0,76.0,93.0,99.0,95.0,78.0,92.0,74.0,69.0,88.0,76.0,82.0,86.0,70.0,70.0,77.0,83.0,69.0,77.0,76.0,70.0,84.0,66.0,79.0,68.0,69.0,67.0,53.0,61.0,51.0,48.0,43.0,38.0,41.0,43.0,40.0,56.0,44.0,37.0,23.0,27.0,20.0,25.0,14.0,19.0,17.0,19.0,12.0,10.0,11.0,7.0,3.0,10.0,7.0,4.0,7.0 J83053,16.0,34.0,31.0,32.0,38.0,36.0,38.0,34.0,34.0,34.0,40.0,37.0,39.0,38.0,40.0,43.0,44.0,39.0,43.0,27.0,30.0,26.0,32.0,34.0,37.0,50.0,32.0,43.0,32.0,37.0,51.0,30.0,52.0,42.0,38.0,53.0,44.0,35.0,58.0,39.0,43.0,52.0,33.0,45.0,59.0,48.0,56.0,43.0,26.0,46.0,43.0,50.0,48.0,50.0,54.0,64.0,56.0,48.0,70.0,65.0,66.0,62.0,60.0,50.0,63.0,63.0,49.0,54.0,41.0,50.0,46.0,37.0,44.0,41.0,47.0,52.0,44.0,55.0,52.0,40.0,45.0,39.0,32.0,37.0,28.0,32.0,27.0,13.0,20.0,24.0,15.0,9.0,9.0,3.0,3.0,9.0 J83055,30.0,31.0,29.0,37.0,35.0,43.0,47.0,58.0,46.0,59.0,61.0,64.0,39.0,59.0,60.0,62.0,52.0,66.0,52.0,45.0,48.0,53.0,45.0,40.0,41.0,38.0,44.0,48.0,50.0,50.0,38.0,44.0,47.0,60.0,65.0,62.0,53.0,70.0,71.0,58.0,69.0,53.0,65.0,80.0,85.0,63.0,71.0,48.0,50.0,86.0,74.0,66.0,80.0,71.0,71.0,64.0,68.0,69.0,82.0,94.0,80.0,66.0,72.0,74.0,87.0,47.0,47.0,63.0,80.0,75.0,58.0,58.0,64.0,64.0,52.0,68.0,53.0,58.0,67.0,47.0,48.0,33.0,48.0,29.0,30.0,24.0,24.0,16.0,26.0,17.0,15.0,7.0,7.0,11.0,8.0,15.0 J83056,16.0,15.0,16.0,22.0,21.0,35.0,24.0,19.0,24.0,16.0,34.0,23.0,27.0,23.0,44.0,26.0,41.0,34.0,28.0,26.0,18.0,17.0,21.0,28.0,24.0,22.0,19.0,18.0,22.0,27.0,17.0,19.0,19.0,25.0,18.0,24.0,33.0,17.0,17.0,24.0,26.0,27.0,39.0,39.0,25.0,27.0,34.0,36.0,29.0,44.0,35.0,25.0,39.0,55.0,46.0,45.0,41.0,41.0,48.0,56.0,48.0,59.0,58.0,55.0,64.0,45.0,53.0,47.0,47.0,44.0,33.0,32.0,40.0,36.0,31.0,34.0,36.0,42.0,51.0,24.0,34.0,25.0,12.0,18.0,12.0,17.0,13.0,10.0,12.0,14.0,8.0,10.0,5.0,5.0,6.0,12.0 J83057,95.0,85.0,88.0,102.0,109.0,113.0,109.0,142.0,102.0,120.0,112.0,125.0,127.0,132.0,116.0,125.0,150.0,122.0,106.0,100.0,78.0,89.0,81.0,80.0,89.0,94.0,109.0,121.0,116.0,125.0,124.0,146.0,111.0,162.0,136.0,140.0,156.0,171.0,165.0,128.0,179.0,156.0,163.0,138.0,153.0,141.0,146.0,123.0,149.0,137.0,150.0,146.0,117.0,144.0,155.0,118.0,130.0,114.0,161.0,156.0,135.0,139.0,123.0,108.0,111.0,98.0,101.0,105.0,107.0,93.0,89.0,80.0,89.0,82.0,95.0,94.0,94.0,89.0,97.0,80.0,74.0,64.0,67.0,57.0,49.0,53.0,47.0,47.0,35.0,28.0,32.0,22.0,28.0,16.0,9.0,49.0 J83058,10.0,16.0,11.0,15.0,18.0,22.0,14.0,19.0,23.0,12.0,16.0,11.0,25.0,26.0,15.0,14.0,19.0,26.0,15.0,13.0,11.0,17.0,19.0,15.0,15.0,22.0,8.0,15.0,16.0,13.0,20.0,18.0,25.0,15.0,19.0,19.0,22.0,21.0,28.0,28.0,23.0,15.0,19.0,24.0,25.0,19.0,20.0,20.0,26.0,23.0,31.0,27.0,37.0,35.0,26.0,31.0,40.0,30.0,31.0,42.0,34.0,52.0,49.0,39.0,42.0,50.0,36.0,32.0,42.0,37.0,31.0,41.0,29.0,21.0,24.0,32.0,30.0,40.0,31.0,19.0,35.0,26.0,37.0,11.0,12.0,16.0,18.0,13.0,18.0,11.0,10.0,4.0,5.0,6.0,5.0,9.0 J83059,53.0,54.0,46.0,53.0,55.0,57.0,68.0,65.0,61.0,58.0,57.0,54.0,68.0,62.0,44.0,64.0,45.0,56.0,42.0,31.0,44.0,35.0,40.0,38.0,44.0,37.0,42.0,55.0,63.0,65.0,48.0,85.0,72.0,86.0,82.0,77.0,68.0,84.0,83.0,70.0,83.0,70.0,59.0,77.0,68.0,73.0,74.0,69.0,47.0,62.0,54.0,66.0,73.0,55.0,46.0,56.0,62.0,78.0,63.0,57.0,54.0,58.0,60.0,70.0,55.0,41.0,53.0,49.0,53.0,50.0,56.0,46.0,34.0,32.0,40.0,37.0,41.0,47.0,38.0,37.0,40.0,31.0,33.0,32.0,22.0,22.0,21.0,22.0,22.0,14.0,22.0,20.0,9.0,12.0,8.0,27.0 J83060,20.0,9.0,20.0,14.0,19.0,19.0,18.0,20.0,24.0,19.0,35.0,26.0,19.0,17.0,27.0,25.0,23.0,15.0,17.0,15.0,16.0,16.0,18.0,23.0,16.0,17.0,15.0,13.0,29.0,25.0,25.0,20.0,27.0,24.0,23.0,21.0,17.0,24.0,18.0,25.0,29.0,29.0,32.0,25.0,29.0,20.0,15.0,17.0,19.0,23.0,25.0,32.0,30.0,30.0,45.0,47.0,41.0,43.0,38.0,40.0,53.0,57.0,53.0,40.0,38.0,41.0,46.0,42.0,33.0,40.0,50.0,35.0,32.0,43.0,49.0,45.0,46.0,46.0,37.0,43.0,44.0,33.0,27.0,41.0,24.0,18.0,20.0,11.0,10.0,16.0,9.0,8.0,9.0,5.0,4.0,15.0 J83064,45.0,71.0,50.0,63.0,75.0,75.0,76.0,86.0,85.0,80.0,90.0,72.0,67.0,106.0,110.0,62.0,93.0,77.0,85.0,46.0,57.0,49.0,57.0,60.0,67.0,59.0,65.0,77.0,82.0,61.0,88.0,115.0,81.0,90.0,99.0,92.0,102.0,91.0,97.0,115.0,132.0,98.0,100.0,81.0,98.0,84.0,74.0,82.0,82.0,62.0,78.0,78.0,93.0,83.0,98.0,74.0,81.0,64.0,76.0,72.0,83.0,98.0,108.0,84.0,82.0,64.0,69.0,59.0,45.0,59.0,55.0,60.0,39.0,41.0,48.0,52.0,34.0,43.0,54.0,31.0,25.0,21.0,21.0,11.0,9.0,14.0,7.0,14.0,8.0,10.0,7.0,5.0,5.0,4.0,2.0,5.0 J83601,7.0,10.0,14.0,13.0,15.0,19.0,19.0,23.0,15.0,20.0,29.0,22.0,32.0,15.0,24.0,22.0,27.0,23.0,28.0,18.0,16.0,15.0,13.0,14.0,21.0,19.0,17.0,21.0,14.0,12.0,11.0,15.0,21.0,10.0,23.0,14.0,22.0,23.0,21.0,20.0,21.0,25.0,22.0,27.0,25.0,28.0,33.0,33.0,29.0,28.0,20.0,25.0,29.0,39.0,38.0,37.0,42.0,39.0,47.0,36.0,37.0,40.0,43.0,36.0,33.0,33.0,35.0,28.0,36.0,32.0,21.0,30.0,30.0,24.0,27.0,26.0,34.0,27.0,18.0,25.0,17.0,22.0,18.0,13.0,11.0,11.0,9.0,16.0,6.0,2.0,9.0,2.0,1.0,5.0,1.0,2.0 J83603,13.0,18.0,12.0,29.0,13.0,33.0,29.0,21.0,24.0,29.0,37.0,16.0,25.0,24.0,33.0,21.0,22.0,35.0,22.0,15.0,21.0,20.0,23.0,18.0,23.0,28.0,21.0,13.0,17.0,18.0,24.0,29.0,17.0,20.0,23.0,31.0,19.0,35.0,25.0,21.0,19.0,24.0,21.0,35.0,25.0,29.0,31.0,31.0,34.0,31.0,36.0,42.0,39.0,37.0,39.0,49.0,50.0,52.0,40.0,56.0,46.0,38.0,45.0,33.0,42.0,47.0,53.0,33.0,34.0,25.0,36.0,25.0,37.0,26.0,25.0,27.0,38.0,27.0,27.0,19.0,29.0,20.0,16.0,10.0,18.0,16.0,12.0,9.0,11.0,8.0,7.0,3.0,4.0,3.0,1.0,3.0 J83609,12.0,17.0,16.0,16.0,17.0,23.0,20.0,10.0,32.0,14.0,30.0,22.0,22.0,12.0,18.0,20.0,18.0,19.0,22.0,11.0,5.0,8.0,16.0,21.0,17.0,11.0,21.0,16.0,22.0,29.0,16.0,25.0,22.0,25.0,21.0,28.0,25.0,22.0,12.0,17.0,24.0,17.0,17.0,27.0,26.0,19.0,17.0,22.0,22.0,29.0,22.0,30.0,33.0,37.0,30.0,17.0,24.0,20.0,24.0,20.0,18.0,21.0,30.0,18.0,19.0,21.0,22.0,16.0,25.0,22.0,26.0,25.0,24.0,27.0,23.0,27.0,21.0,32.0,13.0,14.0,23.0,14.0,12.0,14.0,10.0,9.0,2.0,4.0,3.0,3.0,4.0,2.0,5.0,1.0,1.0,1.0 J83615,10.0,8.0,7.0,9.0,14.0,10.0,18.0,21.0,18.0,20.0,19.0,22.0,21.0,21.0,22.0,15.0,21.0,18.0,18.0,15.0,14.0,21.0,11.0,12.0,14.0,13.0,17.0,16.0,13.0,11.0,8.0,14.0,9.0,9.0,14.0,12.0,16.0,19.0,13.0,12.0,13.0,23.0,21.0,30.0,20.0,27.0,16.0,23.0,23.0,26.0,21.0,31.0,28.0,31.0,34.0,22.0,26.0,35.0,26.0,29.0,43.0,36.0,34.0,33.0,44.0,29.0,33.0,20.0,22.0,18.0,19.0,27.0,21.0,22.0,19.0,24.0,22.0,17.0,18.0,22.0,17.0,18.0,9.0,14.0,6.0,12.0,8.0,10.0,6.0,4.0,8.0,2.0,2.0,4.0,2.0,4.0 J83618,12.0,10.0,12.0,15.0,9.0,17.0,8.0,20.0,12.0,16.0,14.0,10.0,18.0,23.0,18.0,24.0,19.0,21.0,16.0,21.0,16.0,18.0,9.0,14.0,13.0,10.0,13.0,14.0,17.0,11.0,13.0,11.0,16.0,11.0,11.0,21.0,14.0,16.0,16.0,25.0,19.0,14.0,16.0,13.0,22.0,16.0,26.0,24.0,25.0,28.0,26.0,34.0,28.0,30.0,26.0,37.0,42.0,29.0,30.0,31.0,36.0,33.0,34.0,27.0,33.0,21.0,27.0,23.0,19.0,22.0,13.0,21.0,23.0,17.0,24.0,34.0,21.0,24.0,36.0,14.0,21.0,18.0,10.0,11.0,10.0,6.0,4.0,7.0,4.0,3.0,3.0,3.0,3.0,4.0,1.0,7.0 J83619,10.0,7.0,10.0,10.0,8.0,15.0,16.0,16.0,15.0,14.0,17.0,14.0,14.0,21.0,18.0,11.0,19.0,14.0,18.0,17.0,12.0,11.0,11.0,17.0,11.0,13.0,13.0,10.0,9.0,13.0,15.0,14.0,10.0,16.0,16.0,10.0,14.0,18.0,26.0,19.0,20.0,13.0,20.0,15.0,26.0,23.0,20.0,19.0,14.0,20.0,13.0,18.0,23.0,28.0,28.0,35.0,27.0,39.0,32.0,29.0,33.0,31.0,41.0,32.0,23.0,19.0,23.0,32.0,25.0,26.0,20.0,20.0,12.0,24.0,21.0,19.0,23.0,26.0,26.0,16.0,17.0,21.0,9.0,11.0,7.0,7.0,7.0,10.0,10.0,8.0,5.0,6.0,5.0,3.0,4.0,10.0 J83625,26.0,37.0,32.0,39.0,32.0,43.0,36.0,51.0,35.0,31.0,42.0,44.0,33.0,41.0,44.0,39.0,43.0,42.0,45.0,39.0,44.0,46.0,49.0,31.0,44.0,53.0,51.0,67.0,61.0,50.0,52.0,44.0,60.0,56.0,61.0,68.0,59.0,49.0,43.0,42.0,52.0,55.0,44.0,50.0,54.0,55.0,60.0,55.0,46.0,67.0,56.0,63.0,70.0,65.0,80.0,73.0,86.0,84.0,68.0,78.0,77.0,73.0,96.0,70.0,65.0,50.0,74.0,58.0,41.0,46.0,36.0,41.0,26.0,42.0,33.0,30.0,35.0,34.0,29.0,30.0,18.0,19.0,20.0,14.0,16.0,16.0,15.0,12.0,10.0,9.0,11.0,12.0,6.0,8.0,5.0,17.0 J83629,11.0,6.0,5.0,4.0,9.0,10.0,9.0,5.0,8.0,11.0,8.0,6.0,14.0,15.0,10.0,6.0,14.0,6.0,18.0,10.0,7.0,8.0,12.0,7.0,7.0,7.0,9.0,3.0,8.0,8.0,8.0,7.0,4.0,12.0,10.0,7.0,14.0,12.0,10.0,17.0,9.0,6.0,13.0,8.0,14.0,10.0,10.0,5.0,12.0,23.0,25.0,21.0,15.0,9.0,21.0,19.0,9.0,16.0,16.0,15.0,24.0,28.0,24.0,26.0,15.0,22.0,16.0,14.0,29.0,28.0,15.0,22.0,21.0,15.0,18.0,22.0,15.0,27.0,27.0,20.0,16.0,18.0,12.0,10.0,8.0,8.0,7.0,7.0,7.0,4.0,2.0,4.0,,3.0,2.0,7.0 J83630,7.0,6.0,7.0,7.0,9.0,6.0,11.0,19.0,11.0,12.0,13.0,7.0,15.0,9.0,5.0,8.0,9.0,14.0,12.0,18.0,4.0,9.0,4.0,6.0,8.0,11.0,12.0,10.0,1.0,9.0,4.0,9.0,13.0,10.0,16.0,13.0,13.0,12.0,7.0,10.0,8.0,15.0,20.0,10.0,10.0,20.0,14.0,16.0,18.0,9.0,12.0,12.0,20.0,15.0,20.0,20.0,19.0,23.0,20.0,30.0,24.0,21.0,33.0,27.0,20.0,20.0,26.0,19.0,27.0,22.0,19.0,25.0,27.0,25.0,18.0,18.0,21.0,22.0,25.0,19.0,12.0,17.0,13.0,10.0,13.0,6.0,11.0,9.0,14.0,5.0,2.0,3.0,6.0,3.0,3.0,11.0 J83633,50.0,45.0,45.0,43.0,37.0,57.0,61.0,57.0,51.0,48.0,59.0,52.0,65.0,49.0,48.0,49.0,46.0,52.0,42.0,40.0,34.0,37.0,49.0,52.0,47.0,69.0,65.0,77.0,87.0,81.0,80.0,91.0,85.0,86.0,92.0,85.0,90.0,83.0,83.0,80.0,64.0,75.0,61.0,66.0,66.0,61.0,57.0,53.0,64.0,60.0,59.0,61.0,61.0,53.0,75.0,57.0,62.0,59.0,57.0,57.0,47.0,48.0,59.0,54.0,55.0,62.0,45.0,41.0,48.0,49.0,55.0,50.0,42.0,33.0,44.0,43.0,49.0,40.0,38.0,31.0,30.0,29.0,28.0,19.0,22.0,20.0,11.0,14.0,14.0,8.0,11.0,10.0,4.0,7.0,6.0,6.0 J83645,16.0,28.0,18.0,32.0,27.0,15.0,25.0,21.0,32.0,18.0,31.0,25.0,25.0,23.0,32.0,32.0,24.0,24.0,26.0,29.0,15.0,20.0,16.0,24.0,30.0,12.0,20.0,23.0,23.0,32.0,32.0,34.0,26.0,40.0,34.0,22.0,39.0,30.0,31.0,24.0,34.0,38.0,34.0,27.0,30.0,31.0,19.0,17.0,33.0,28.0,21.0,27.0,32.0,32.0,25.0,38.0,28.0,29.0,31.0,41.0,42.0,27.0,39.0,18.0,30.0,18.0,27.0,34.0,23.0,23.0,16.0,16.0,24.0,10.0,12.0,11.0,19.0,18.0,19.0,14.0,9.0,10.0,9.0,5.0,,2.0,5.0,1.0,,4.0,2.0,3.0,6.0,1.0,2.0,1.0 J83646,21.0,35.0,35.0,27.0,33.0,27.0,45.0,46.0,49.0,50.0,52.0,46.0,33.0,55.0,42.0,40.0,35.0,40.0,32.0,34.0,38.0,35.0,25.0,46.0,44.0,47.0,55.0,71.0,65.0,85.0,70.0,68.0,78.0,70.0,72.0,83.0,71.0,66.0,80.0,70.0,60.0,50.0,68.0,50.0,56.0,53.0,38.0,44.0,56.0,45.0,44.0,48.0,39.0,49.0,35.0,40.0,39.0,41.0,36.0,35.0,40.0,29.0,37.0,30.0,32.0,24.0,38.0,21.0,26.0,16.0,22.0,21.0,18.0,11.0,25.0,15.0,12.0,18.0,18.0,11.0,16.0,16.0,12.0,9.0,8.0,9.0,10.0,5.0,8.0,4.0,8.0,2.0,2.0,2.0,3.0,4.0 K84012,49.0,59.0,45.0,62.0,44.0,65.0,42.0,62.0,75.0,69.0,73.0,76.0,63.0,55.0,60.0,58.0,56.0,58.0,49.0,49.0,32.0,44.0,43.0,45.0,43.0,38.0,50.0,42.0,49.0,43.0,43.0,51.0,64.0,82.0,74.0,70.0,75.0,81.0,64.0,72.0,61.0,64.0,50.0,55.0,39.0,48.0,52.0,53.0,55.0,57.0,48.0,61.0,62.0,65.0,61.0,65.0,62.0,63.0,55.0,70.0,58.0,69.0,68.0,56.0,65.0,49.0,51.0,43.0,32.0,39.0,44.0,37.0,40.0,39.0,50.0,37.0,36.0,52.0,37.0,33.0,41.0,23.0,26.0,27.0,23.0,19.0,15.0,10.0,8.0,6.0,9.0,5.0,5.0,4.0,1.0,4.0 L81010,40.0,32.0,43.0,47.0,45.0,35.0,48.0,49.0,55.0,50.0,56.0,50.0,40.0,45.0,52.0,53.0,45.0,53.0,62.0,46.0,48.0,38.0,42.0,53.0,46.0,54.0,60.0,67.0,66.0,62.0,63.0,56.0,63.0,58.0,71.0,58.0,68.0,51.0,66.0,52.0,54.0,52.0,49.0,39.0,51.0,57.0,45.0,45.0,43.0,38.0,49.0,44.0,59.0,48.0,53.0,50.0,63.0,62.0,63.0,61.0,47.0,46.0,44.0,70.0,42.0,51.0,36.0,44.0,43.0,31.0,28.0,47.0,38.0,35.0,29.0,28.0,32.0,32.0,39.0,34.0,23.0,25.0,17.0,11.0,15.0,12.0,16.0,15.0,7.0,4.0,6.0,2.0,5.0,7.0,4.0,5.0 L81020,28.0,41.0,40.0,32.0,33.0,35.0,32.0,38.0,39.0,39.0,38.0,47.0,36.0,59.0,40.0,44.0,38.0,45.0,54.0,61.0,61.0,70.0,79.0,79.0,94.0,104.0,84.0,86.0,73.0,82.0,83.0,62.0,81.0,77.0,76.0,72.0,54.0,66.0,54.0,50.0,48.0,62.0,42.0,59.0,57.0,62.0,54.0,54.0,57.0,49.0,67.0,51.0,61.0,69.0,73.0,66.0,65.0,52.0,71.0,51.0,59.0,56.0,48.0,56.0,49.0,36.0,53.0,41.0,47.0,45.0,40.0,34.0,49.0,48.0,42.0,38.0,39.0,38.0,39.0,22.0,25.0,18.0,18.0,21.0,20.0,17.0,18.0,13.0,21.0,14.0,8.0,7.0,8.0,7.0,3.0,11.0 L81025,58.0,73.0,67.0,82.0,75.0,76.0,76.0,91.0,100.0,103.0,88.0,86.0,117.0,103.0,121.0,113.0,110.0,87.0,100.0,88.0,78.0,68.0,95.0,91.0,102.0,81.0,93.0,91.0,66.0,103.0,88.0,100.0,115.0,127.0,122.0,126.0,106.0,92.0,125.0,125.0,104.0,101.0,121.0,94.0,121.0,126.0,110.0,94.0,109.0,112.0,112.0,108.0,110.0,143.0,133.0,134.0,147.0,144.0,150.0,152.0,137.0,147.0,135.0,123.0,114.0,112.0,104.0,122.0,104.0,123.0,102.0,104.0,103.0,114.0,95.0,143.0,116.0,124.0,131.0,84.0,95.0,107.0,91.0,74.0,64.0,54.0,59.0,52.0,57.0,50.0,49.0,36.0,23.0,30.0,22.0,43.0 L81027,32.0,29.0,22.0,30.0,30.0,44.0,35.0,47.0,57.0,43.0,41.0,44.0,58.0,51.0,53.0,39.0,53.0,49.0,64.0,37.0,38.0,48.0,40.0,44.0,29.0,41.0,45.0,42.0,42.0,31.0,38.0,46.0,42.0,48.0,50.0,52.0,37.0,47.0,58.0,51.0,55.0,42.0,63.0,48.0,64.0,61.0,64.0,61.0,49.0,63.0,69.0,57.0,76.0,93.0,78.0,71.0,61.0,63.0,70.0,75.0,81.0,90.0,54.0,56.0,68.0,48.0,60.0,47.0,47.0,50.0,44.0,44.0,55.0,54.0,47.0,53.0,59.0,58.0,52.0,41.0,42.0,52.0,37.0,25.0,28.0,39.0,29.0,26.0,20.0,19.0,10.0,10.0,9.0,6.0,12.0,23.0 L81030,23.0,24.0,29.0,36.0,31.0,35.0,25.0,38.0,37.0,37.0,39.0,37.0,29.0,34.0,38.0,34.0,35.0,43.0,37.0,27.0,27.0,25.0,32.0,39.0,29.0,32.0,31.0,32.0,21.0,33.0,43.0,40.0,44.0,32.0,34.0,34.0,27.0,38.0,41.0,44.0,44.0,50.0,52.0,43.0,39.0,41.0,27.0,44.0,41.0,49.0,50.0,30.0,52.0,52.0,56.0,53.0,62.0,61.0,47.0,58.0,48.0,48.0,63.0,60.0,42.0,44.0,48.0,57.0,32.0,45.0,50.0,36.0,28.0,38.0,42.0,47.0,30.0,34.0,33.0,19.0,26.0,32.0,22.0,19.0,17.0,23.0,9.0,11.0,8.0,10.0,7.0,2.0,6.0,7.0,2.0,2.0 L81039,75.0,89.0,79.0,103.0,91.0,88.0,92.0,115.0,109.0,109.0,109.0,100.0,133.0,120.0,120.0,141.0,151.0,160.0,169.0,201.0,184.0,213.0,227.0,220.0,230.0,198.0,210.0,194.0,199.0,173.0,198.0,183.0,181.0,161.0,150.0,200.0,177.0,187.0,158.0,183.0,167.0,153.0,174.0,155.0,151.0,152.0,148.0,137.0,143.0,147.0,151.0,151.0,172.0,196.0,165.0,136.0,139.0,202.0,170.0,169.0,188.0,193.0,150.0,185.0,152.0,133.0,154.0,115.0,131.0,115.0,124.0,124.0,104.0,118.0,114.0,125.0,101.0,103.0,123.0,96.0,109.0,78.0,71.0,59.0,67.0,47.0,43.0,46.0,49.0,34.0,32.0,28.0,19.0,26.0,21.0,45.0 L81045,83.0,101.0,99.0,117.0,105.0,129.0,101.0,97.0,121.0,116.0,127.0,116.0,125.0,101.0,107.0,101.0,114.0,97.0,96.0,61.0,58.0,70.0,66.0,74.0,86.0,73.0,91.0,89.0,105.0,113.0,113.0,121.0,153.0,147.0,143.0,161.0,150.0,156.0,158.0,134.0,143.0,129.0,126.0,126.0,131.0,111.0,119.0,124.0,115.0,120.0,125.0,109.0,117.0,121.0,113.0,130.0,109.0,112.0,134.0,134.0,134.0,101.0,135.0,92.0,120.0,134.0,100.0,107.0,103.0,91.0,114.0,127.0,100.0,95.0,128.0,130.0,131.0,120.0,141.0,122.0,100.0,108.0,91.0,68.0,72.0,75.0,82.0,64.0,49.0,42.0,35.0,39.0,26.0,30.0,27.0,67.0 L81059,38.0,35.0,59.0,45.0,56.0,53.0,69.0,50.0,84.0,64.0,59.0,52.0,55.0,45.0,47.0,42.0,47.0,51.0,40.0,32.0,43.0,35.0,46.0,35.0,35.0,40.0,31.0,48.0,47.0,60.0,46.0,57.0,70.0,66.0,71.0,67.0,72.0,65.0,67.0,72.0,57.0,66.0,50.0,57.0,58.0,61.0,57.0,44.0,42.0,57.0,49.0,57.0,47.0,51.0,45.0,56.0,73.0,61.0,61.0,54.0,63.0,67.0,55.0,74.0,51.0,58.0,53.0,67.0,48.0,51.0,44.0,51.0,45.0,40.0,42.0,48.0,57.0,45.0,49.0,38.0,32.0,36.0,41.0,27.0,19.0,25.0,30.0,23.0,12.0,12.0,21.0,4.0,7.0,7.0,6.0,6.0 L81064,,,,,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, L81065,41.0,64.0,64.0,67.0,82.0,70.0,77.0,84.0,66.0,71.0,91.0,83.0,103.0,99.0,93.0,112.0,131.0,122.0,92.0,91.0,72.0,79.0,89.0,82.0,90.0,84.0,92.0,85.0,90.0,88.0,67.0,84.0,87.0,80.0,96.0,88.0,76.0,109.0,87.0,77.0,108.0,104.0,91.0,80.0,94.0,95.0,87.0,99.0,89.0,83.0,106.0,92.0,88.0,103.0,108.0,111.0,81.0,100.0,92.0,99.0,82.0,98.0,79.0,80.0,76.0,93.0,92.0,62.0,78.0,72.0,73.0,62.0,60.0,63.0,49.0,54.0,71.0,66.0,63.0,69.0,52.0,59.0,46.0,39.0,42.0,39.0,23.0,28.0,30.0,29.0,19.0,17.0,22.0,18.0,10.0,42.0 L81068,35.0,37.0,33.0,47.0,38.0,40.0,39.0,42.0,40.0,54.0,47.0,66.0,71.0,67.0,58.0,59.0,51.0,60.0,48.0,58.0,61.0,62.0,82.0,97.0,129.0,129.0,105.0,115.0,110.0,100.0,69.0,106.0,101.0,101.0,74.0,95.0,76.0,86.0,91.0,85.0,69.0,86.0,78.0,83.0,92.0,88.0,75.0,74.0,75.0,69.0,79.0,84.0,80.0,89.0,87.0,97.0,79.0,87.0,84.0,95.0,83.0,79.0,100.0,81.0,85.0,66.0,62.0,61.0,64.0,71.0,47.0,62.0,56.0,61.0,57.0,61.0,75.0,70.0,59.0,40.0,58.0,40.0,48.0,32.0,40.0,41.0,29.0,38.0,35.0,25.0,23.0,17.0,7.0,9.0,9.0,19.0 L81069,40.0,38.0,43.0,47.0,55.0,39.0,44.0,65.0,48.0,59.0,62.0,47.0,61.0,53.0,46.0,54.0,59.0,41.0,53.0,54.0,71.0,76.0,62.0,58.0,55.0,74.0,56.0,63.0,57.0,66.0,59.0,66.0,62.0,68.0,65.0,66.0,76.0,71.0,79.0,55.0,56.0,58.0,55.0,48.0,57.0,51.0,56.0,56.0,46.0,44.0,37.0,30.0,35.0,58.0,43.0,44.0,47.0,53.0,44.0,52.0,55.0,67.0,37.0,58.0,44.0,34.0,30.0,37.0,26.0,30.0,36.0,36.0,33.0,28.0,29.0,40.0,26.0,36.0,43.0,24.0,21.0,14.0,23.0,16.0,23.0,22.0,15.0,12.0,13.0,9.0,8.0,2.0,4.0,3.0,,7.0 L81070,40.0,27.0,41.0,36.0,32.0,35.0,44.0,40.0,42.0,42.0,50.0,53.0,52.0,55.0,57.0,48.0,61.0,59.0,63.0,50.0,53.0,68.0,51.0,58.0,66.0,51.0,51.0,53.0,53.0,46.0,68.0,58.0,62.0,52.0,55.0,66.0,71.0,49.0,59.0,59.0,64.0,59.0,44.0,64.0,44.0,45.0,65.0,48.0,56.0,54.0,73.0,76.0,63.0,69.0,74.0,53.0,54.0,61.0,59.0,69.0,53.0,62.0,64.0,69.0,65.0,38.0,44.0,48.0,52.0,48.0,40.0,55.0,49.0,46.0,42.0,58.0,39.0,48.0,53.0,26.0,39.0,37.0,37.0,29.0,18.0,33.0,21.0,24.0,16.0,21.0,20.0,8.0,11.0,19.0,7.0,19.0 L81071,39.0,47.0,30.0,38.0,50.0,44.0,33.0,53.0,63.0,47.0,55.0,54.0,64.0,66.0,68.0,64.0,59.0,58.0,204.0,390.0,454.0,400.0,283.0,236.0,183.0,184.0,145.0,139.0,113.0,91.0,102.0,79.0,83.0,92.0,77.0,68.0,76.0,73.0,75.0,69.0,82.0,72.0,66.0,62.0,81.0,88.0,79.0,72.0,70.0,71.0,76.0,75.0,89.0,103.0,91.0,81.0,102.0,74.0,91.0,94.0,78.0,85.0,89.0,62.0,65.0,64.0,59.0,66.0,61.0,81.0,50.0,56.0,57.0,55.0,45.0,60.0,55.0,53.0,36.0,38.0,41.0,43.0,33.0,23.0,29.0,30.0,23.0,25.0,17.0,20.0,14.0,12.0,10.0,4.0,4.0,10.0 L81072,28.0,40.0,41.0,60.0,38.0,56.0,47.0,46.0,72.0,53.0,58.0,68.0,73.0,68.0,70.0,57.0,65.0,55.0,64.0,44.0,39.0,53.0,47.0,45.0,48.0,28.0,59.0,48.0,52.0,44.0,40.0,45.0,45.0,56.0,47.0,57.0,75.0,70.0,63.0,53.0,63.0,65.0,79.0,67.0,92.0,55.0,63.0,54.0,51.0,76.0,72.0,66.0,71.0,74.0,71.0,83.0,100.0,82.0,83.0,74.0,93.0,90.0,73.0,81.0,70.0,76.0,73.0,81.0,52.0,67.0,50.0,60.0,47.0,50.0,55.0,53.0,61.0,72.0,69.0,67.0,67.0,59.0,32.0,29.0,30.0,35.0,27.0,31.0,20.0,23.0,20.0,7.0,9.0,9.0,6.0,15.0 L81073,40.0,39.0,43.0,42.0,43.0,55.0,47.0,32.0,43.0,47.0,49.0,36.0,42.0,54.0,42.0,44.0,46.0,49.0,43.0,39.0,30.0,25.0,35.0,51.0,45.0,38.0,47.0,47.0,50.0,55.0,50.0,63.0,63.0,72.0,65.0,73.0,68.0,67.0,64.0,44.0,65.0,53.0,50.0,52.0,46.0,48.0,59.0,52.0,42.0,39.0,49.0,57.0,57.0,48.0,53.0,67.0,39.0,55.0,49.0,46.0,54.0,55.0,59.0,60.0,49.0,51.0,53.0,47.0,50.0,41.0,44.0,44.0,34.0,47.0,34.0,31.0,39.0,37.0,39.0,31.0,40.0,25.0,40.0,23.0,20.0,22.0,21.0,19.0,17.0,16.0,22.0,8.0,7.0,10.0,10.0,18.0 L81122,17.0,25.0,20.0,22.0,32.0,27.0,23.0,28.0,20.0,32.0,28.0,26.0,29.0,28.0,33.0,22.0,28.0,31.0,30.0,26.0,26.0,23.0,25.0,15.0,14.0,22.0,16.0,20.0,26.0,20.0,23.0,38.0,33.0,27.0,27.0,43.0,36.0,43.0,30.0,21.0,42.0,35.0,36.0,44.0,36.0,23.0,33.0,39.0,29.0,33.0,41.0,27.0,38.0,42.0,43.0,31.0,29.0,42.0,47.0,37.0,48.0,50.0,32.0,40.0,47.0,46.0,51.0,38.0,41.0,50.0,33.0,45.0,34.0,34.0,26.0,44.0,35.0,36.0,40.0,25.0,34.0,34.0,26.0,16.0,13.0,25.0,17.0,25.0,6.0,4.0,6.0,9.0,9.0,4.0,5.0,19.0 L81123,15.0,14.0,24.0,26.0,25.0,29.0,28.0,22.0,32.0,28.0,40.0,33.0,37.0,36.0,31.0,39.0,22.0,37.0,46.0,26.0,20.0,32.0,24.0,21.0,36.0,25.0,29.0,34.0,21.0,24.0,20.0,33.0,28.0,40.0,26.0,48.0,32.0,36.0,40.0,39.0,31.0,40.0,30.0,41.0,48.0,42.0,33.0,29.0,20.0,50.0,35.0,46.0,52.0,49.0,44.0,52.0,52.0,40.0,52.0,43.0,55.0,45.0,48.0,38.0,43.0,40.0,22.0,43.0,36.0,27.0,26.0,39.0,33.0,38.0,30.0,34.0,34.0,24.0,32.0,21.0,28.0,24.0,27.0,14.0,13.0,16.0,11.0,12.0,10.0,9.0,9.0,6.0,4.0,5.0,3.0,9.0 L81132,30.0,27.0,27.0,30.0,31.0,22.0,34.0,30.0,26.0,45.0,37.0,35.0,37.0,41.0,33.0,39.0,44.0,35.0,31.0,33.0,29.0,28.0,27.0,24.0,31.0,22.0,27.0,32.0,33.0,29.0,42.0,39.0,43.0,36.0,47.0,54.0,45.0,44.0,40.0,41.0,27.0,24.0,36.0,43.0,30.0,30.0,35.0,30.0,23.0,34.0,24.0,33.0,41.0,42.0,42.0,42.0,40.0,33.0,37.0,46.0,27.0,32.0,32.0,27.0,36.0,22.0,20.0,20.0,13.0,29.0,22.0,19.0,19.0,20.0,11.0,17.0,28.0,24.0,22.0,20.0,13.0,9.0,9.0,8.0,5.0,2.0,7.0,8.0,9.0,7.0,4.0,5.0,2.0,2.0,1.0,6.0 L81617,2.0,4.0,,4.0,3.0,1.0,6.0,1.0,2.0,1.0,3.0,5.0,4.0,4.0,6.0,3.0,4.0,7.0,428.0,1052.0,1036.0,973.0,809.0,629.0,429.0,222.0,129.0,122.0,103.0,73.0,55.0,54.0,37.0,23.0,28.0,18.0,23.0,22.0,19.0,12.0,11.0,18.0,7.0,6.0,6.0,10.0,7.0,2.0,9.0,3.0,8.0,6.0,7.0,3.0,7.0,8.0,5.0,6.0,7.0,5.0,5.0,10.0,4.0,4.0,4.0,2.0,2.0,4.0,,5.0,3.0,3.0,,2.0,4.0,5.0,1.0,2.0,,,,5.0,1.0,2.0,,1.0,,,1.0,1.0,1.0,,1.0,,, L81644,29.0,33.0,56.0,38.0,50.0,35.0,54.0,43.0,60.0,62.0,58.0,59.0,55.0,54.0,61.0,54.0,58.0,65.0,37.0,52.0,48.0,49.0,47.0,49.0,47.0,44.0,50.0,75.0,70.0,61.0,68.0,93.0,84.0,94.0,103.0,102.0,79.0,101.0,95.0,78.0,64.0,60.0,75.0,63.0,80.0,70.0,64.0,69.0,72.0,69.0,57.0,68.0,60.0,70.0,62.0,57.0,59.0,48.0,58.0,38.0,53.0,42.0,53.0,45.0,58.0,38.0,33.0,42.0,42.0,27.0,34.0,27.0,41.0,29.0,29.0,33.0,24.0,28.0,34.0,25.0,31.0,21.0,33.0,19.0,26.0,27.0,20.0,20.0,23.0,21.0,20.0,15.0,15.0,12.0,10.0,30.0 Y01845,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,1.0,,1.0,,,,1.0,,,,,,,,,1.0,,,,,1.0,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, Y04543,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,,1.0,,,,,1.0,,,,,1.0,,,1.0,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 K83002,170.0,200.0,224.0,232.0,224.0,269.0,249.0,288.0,304.0,293.0,256.0,294.0,321.0,347.0,295.0,305.0,311.0,263.0,271.0,201.0,180.0,215.0,160.0,231.0,241.0,272.0,250.0,279.0,253.0,295.0,307.0,334.0,376.0,366.0,364.0,381.0,402.0,361.0,383.0,426.0,391.0,354.0,364.0,327.0,309.0,311.0,273.0,262.0,258.0,260.0,267.0,248.0,265.0,278.0,275.0,284.0,302.0,315.0,266.0,278.0,301.0,297.0,288.0,296.0,248.0,231.0,254.0,242.0,206.0,193.0,222.0,184.0,204.0,157.0,163.0,159.0,146.0,132.0,175.0,123.0,122.0,128.0,103.0,94.0,60.0,91.0,74.0,73.0,56.0,50.0,30.0,28.0,31.0,20.0,16.0,41.0 K83003,37.0,42.0,38.0,61.0,44.0,59.0,60.0,53.0,52.0,68.0,56.0,53.0,67.0,54.0,47.0,59.0,65.0,61.0,57.0,44.0,51.0,44.0,51.0,39.0,66.0,67.0,77.0,88.0,69.0,62.0,75.0,61.0,60.0,68.0,64.0,88.0,84.0,72.0,76.0,68.0,67.0,70.0,68.0,68.0,65.0,67.0,57.0,62.0,50.0,55.0,63.0,46.0,53.0,60.0,62.0,63.0,72.0,61.0,60.0,48.0,60.0,61.0,48.0,60.0,54.0,54.0,59.0,48.0,45.0,45.0,35.0,38.0,27.0,47.0,39.0,38.0,27.0,43.0,54.0,23.0,41.0,24.0,23.0,28.0,17.0,19.0,18.0,13.0,17.0,12.0,6.0,8.0,3.0,7.0,2.0,11.0 K83005,53.0,73.0,84.0,81.0,78.0,103.0,85.0,117.0,82.0,105.0,103.0,101.0,98.0,116.0,115.0,97.0,119.0,98.0,98.0,94.0,87.0,85.0,73.0,66.0,59.0,75.0,80.0,92.0,104.0,88.0,103.0,108.0,114.0,129.0,132.0,129.0,126.0,108.0,127.0,111.0,106.0,118.0,117.0,89.0,103.0,106.0,101.0,97.0,81.0,87.0,89.0,81.0,82.0,86.0,80.0,112.0,83.0,88.0,105.0,75.0,92.0,89.0,83.0,85.0,75.0,64.0,73.0,56.0,68.0,62.0,43.0,56.0,58.0,56.0,48.0,55.0,51.0,58.0,46.0,45.0,55.0,32.0,30.0,23.0,17.0,26.0,21.0,15.0,8.0,11.0,13.0,15.0,7.0,7.0,4.0,11.0 K83006,23.0,36.0,40.0,45.0,52.0,32.0,61.0,43.0,56.0,51.0,54.0,53.0,60.0,68.0,71.0,55.0,64.0,58.0,76.0,53.0,56.0,46.0,44.0,62.0,55.0,45.0,56.0,50.0,59.0,46.0,56.0,60.0,63.0,67.0,61.0,63.0,54.0,57.0,69.0,66.0,66.0,59.0,53.0,73.0,84.0,61.0,62.0,56.0,84.0,55.0,64.0,80.0,85.0,58.0,74.0,71.0,65.0,77.0,62.0,59.0,71.0,60.0,68.0,48.0,41.0,49.0,50.0,36.0,49.0,46.0,32.0,41.0,51.0,50.0,36.0,44.0,38.0,56.0,40.0,36.0,23.0,27.0,24.0,17.0,18.0,20.0,26.0,22.0,16.0,15.0,12.0,6.0,14.0,5.0,3.0,13.0 K83007,76.0,76.0,80.0,67.0,73.0,74.0,66.0,90.0,71.0,82.0,74.0,89.0,101.0,82.0,95.0,81.0,75.0,83.0,78.0,70.0,53.0,67.0,56.0,59.0,61.0,65.0,82.0,82.0,73.0,87.0,96.0,87.0,107.0,96.0,91.0,102.0,101.0,104.0,103.0,86.0,96.0,100.0,103.0,100.0,114.0,99.0,94.0,88.0,95.0,83.0,93.0,84.0,95.0,111.0,90.0,94.0,79.0,117.0,92.0,94.0,88.0,92.0,79.0,82.0,94.0,77.0,58.0,75.0,55.0,63.0,50.0,71.0,76.0,85.0,75.0,65.0,77.0,90.0,80.0,41.0,50.0,47.0,42.0,43.0,29.0,21.0,23.0,17.0,22.0,16.0,16.0,16.0,11.0,8.0,7.0,19.0 K83008,63.0,71.0,65.0,72.0,58.0,59.0,58.0,76.0,60.0,61.0,61.0,56.0,65.0,53.0,59.0,58.0,53.0,49.0,56.0,44.0,45.0,52.0,42.0,40.0,55.0,57.0,53.0,61.0,74.0,71.0,77.0,91.0,89.0,91.0,101.0,80.0,78.0,76.0,65.0,73.0,82.0,86.0,83.0,83.0,78.0,74.0,55.0,49.0,60.0,61.0,48.0,56.0,53.0,62.0,55.0,54.0,73.0,65.0,61.0,59.0,61.0,58.0,62.0,74.0,67.0,57.0,66.0,47.0,55.0,50.0,51.0,49.0,59.0,59.0,70.0,64.0,61.0,63.0,55.0,35.0,44.0,45.0,27.0,28.0,26.0,35.0,30.0,23.0,23.0,24.0,17.0,8.0,10.0,12.0,9.0,22.0 K83009,50.0,61.0,67.0,65.0,67.0,62.0,69.0,66.0,61.0,76.0,85.0,60.0,54.0,63.0,59.0,52.0,51.0,71.0,136.0,269.0,306.0,274.0,201.0,188.0,178.0,134.0,122.0,127.0,110.0,106.0,137.0,96.0,98.0,95.0,93.0,89.0,92.0,89.0,74.0,82.0,68.0,82.0,76.0,86.0,65.0,84.0,81.0,70.0,73.0,67.0,58.0,51.0,76.0,79.0,84.0,67.0,68.0,83.0,77.0,87.0,90.0,72.0,71.0,69.0,78.0,49.0,68.0,67.0,63.0,59.0,68.0,75.0,58.0,64.0,54.0,47.0,59.0,64.0,60.0,49.0,46.0,42.0,39.0,29.0,29.0,27.0,21.0,23.0,20.0,19.0,13.0,11.0,12.0,11.0,6.0,19.0 K83010,104.0,101.0,117.0,118.0,121.0,130.0,112.0,150.0,154.0,146.0,150.0,136.0,134.0,140.0,153.0,125.0,151.0,151.0,141.0,87.0,79.0,74.0,107.0,112.0,101.0,115.0,115.0,140.0,133.0,133.0,127.0,136.0,159.0,160.0,171.0,193.0,184.0,174.0,155.0,199.0,186.0,139.0,149.0,171.0,173.0,138.0,135.0,123.0,125.0,147.0,120.0,113.0,96.0,116.0,112.0,118.0,109.0,95.0,115.0,101.0,116.0,110.0,98.0,100.0,90.0,89.0,95.0,89.0,72.0,71.0,80.0,63.0,66.0,69.0,82.0,57.0,56.0,72.0,57.0,52.0,54.0,41.0,33.0,28.0,20.0,27.0,36.0,30.0,19.0,15.0,4.0,14.0,10.0,7.0,3.0,23.0 K83011,46.0,52.0,62.0,62.0,64.0,67.0,62.0,86.0,65.0,62.0,71.0,75.0,74.0,79.0,65.0,45.0,81.0,75.0,70.0,49.0,53.0,57.0,62.0,66.0,54.0,73.0,58.0,62.0,83.0,71.0,73.0,70.0,86.0,72.0,85.0,80.0,86.0,89.0,75.0,70.0,85.0,80.0,100.0,73.0,97.0,82.0,72.0,79.0,65.0,63.0,75.0,85.0,89.0,86.0,92.0,85.0,77.0,91.0,78.0,77.0,86.0,56.0,75.0,72.0,73.0,70.0,77.0,66.0,67.0,66.0,62.0,60.0,68.0,64.0,56.0,70.0,57.0,75.0,91.0,45.0,53.0,60.0,41.0,33.0,34.0,31.0,33.0,25.0,27.0,21.0,9.0,11.0,12.0,10.0,4.0,23.0 K83012,34.0,36.0,54.0,43.0,56.0,64.0,58.0,63.0,66.0,65.0,77.0,84.0,87.0,65.0,78.0,78.0,74.0,80.0,68.0,73.0,51.0,43.0,70.0,52.0,63.0,72.0,63.0,54.0,74.0,91.0,73.0,81.0,70.0,74.0,87.0,82.0,95.0,76.0,106.0,91.0,100.0,98.0,92.0,105.0,88.0,100.0,82.0,78.0,77.0,92.0,73.0,74.0,73.0,109.0,70.0,74.0,70.0,83.0,93.0,80.0,81.0,65.0,56.0,67.0,59.0,53.0,53.0,63.0,49.0,62.0,53.0,48.0,52.0,50.0,45.0,50.0,40.0,59.0,53.0,42.0,43.0,36.0,38.0,25.0,24.0,37.0,20.0,24.0,14.0,21.0,21.0,22.0,26.0,14.0,12.0,51.0 K83013,76.0,71.0,89.0,74.0,82.0,79.0,82.0,85.0,107.0,103.0,92.0,104.0,96.0,103.0,96.0,77.0,87.0,95.0,92.0,69.0,77.0,56.0,76.0,62.0,82.0,112.0,77.0,102.0,90.0,122.0,107.0,129.0,101.0,121.0,118.0,140.0,124.0,125.0,135.0,135.0,107.0,127.0,97.0,117.0,106.0,94.0,105.0,91.0,99.0,90.0,101.0,107.0,101.0,98.0,88.0,98.0,104.0,106.0,96.0,82.0,97.0,90.0,80.0,71.0,79.0,63.0,61.0,70.0,71.0,74.0,57.0,63.0,51.0,53.0,45.0,50.0,60.0,72.0,70.0,44.0,56.0,45.0,43.0,34.0,23.0,31.0,20.0,23.0,26.0,15.0,14.0,13.0,10.0,6.0,8.0,23.0 K83014,86.0,89.0,94.0,98.0,88.0,85.0,106.0,91.0,128.0,109.0,108.0,103.0,109.0,99.0,113.0,121.0,131.0,110.0,100.0,83.0,79.0,102.0,106.0,100.0,100.0,117.0,133.0,138.0,139.0,131.0,154.0,147.0,140.0,157.0,169.0,164.0,156.0,168.0,184.0,142.0,140.0,124.0,134.0,138.0,116.0,136.0,113.0,97.0,90.0,105.0,102.0,81.0,103.0,111.0,128.0,95.0,99.0,115.0,103.0,128.0,86.0,110.0,93.0,83.0,69.0,81.0,76.0,68.0,73.0,65.0,53.0,62.0,59.0,58.0,58.0,42.0,57.0,62.0,63.0,38.0,43.0,61.0,45.0,27.0,30.0,37.0,19.0,28.0,26.0,16.0,15.0,15.0,14.0,11.0,8.0,19.0 K83015,57.0,51.0,56.0,58.0,72.0,62.0,69.0,58.0,59.0,77.0,58.0,68.0,73.0,68.0,70.0,81.0,58.0,72.0,70.0,58.0,57.0,66.0,60.0,62.0,61.0,66.0,77.0,67.0,66.0,75.0,73.0,94.0,87.0,68.0,110.0,75.0,105.0,94.0,66.0,67.0,68.0,70.0,80.0,90.0,82.0,83.0,75.0,80.0,63.0,65.0,73.0,86.0,103.0,82.0,74.0,70.0,124.0,82.0,78.0,81.0,86.0,69.0,78.0,73.0,78.0,61.0,74.0,65.0,58.0,68.0,74.0,74.0,66.0,62.0,65.0,91.0,74.0,70.0,86.0,51.0,57.0,46.0,47.0,42.0,35.0,27.0,28.0,29.0,22.0,19.0,15.0,19.0,9.0,10.0,9.0,34.0 K83018,48.0,61.0,54.0,57.0,67.0,71.0,66.0,75.0,56.0,66.0,89.0,68.0,66.0,96.0,96.0,98.0,126.0,130.0,117.0,58.0,50.0,51.0,44.0,57.0,51.0,58.0,63.0,77.0,65.0,68.0,63.0,80.0,81.0,73.0,84.0,97.0,94.0,95.0,83.0,69.0,71.0,67.0,86.0,87.0,91.0,75.0,64.0,68.0,75.0,70.0,80.0,82.0,93.0,107.0,102.0,87.0,110.0,71.0,89.0,83.0,80.0,94.0,86.0,62.0,86.0,69.0,59.0,67.0,66.0,69.0,67.0,54.0,50.0,49.0,60.0,61.0,53.0,67.0,73.0,50.0,54.0,39.0,52.0,30.0,31.0,29.0,18.0,31.0,14.0,16.0,13.0,10.0,13.0,8.0,9.0,22.0 K83019,18.0,17.0,33.0,30.0,31.0,31.0,36.0,33.0,29.0,29.0,33.0,42.0,37.0,40.0,41.0,43.0,29.0,32.0,34.0,27.0,25.0,28.0,30.0,22.0,32.0,29.0,35.0,21.0,34.0,29.0,34.0,41.0,32.0,35.0,43.0,45.0,37.0,32.0,37.0,43.0,33.0,36.0,40.0,42.0,40.0,43.0,40.0,29.0,38.0,53.0,49.0,37.0,39.0,57.0,55.0,49.0,50.0,51.0,49.0,47.0,62.0,52.0,58.0,57.0,46.0,56.0,50.0,54.0,42.0,49.0,46.0,39.0,32.0,40.0,51.0,37.0,37.0,35.0,42.0,35.0,42.0,25.0,18.0,15.0,19.0,16.0,17.0,14.0,13.0,6.0,12.0,5.0,12.0,4.0,2.0,8.0 K83020,26.0,24.0,30.0,30.0,33.0,23.0,26.0,28.0,22.0,33.0,31.0,33.0,24.0,33.0,33.0,36.0,35.0,30.0,36.0,28.0,24.0,18.0,25.0,25.0,31.0,30.0,25.0,24.0,24.0,34.0,41.0,33.0,41.0,30.0,32.0,34.0,35.0,36.0,33.0,40.0,27.0,33.0,24.0,30.0,30.0,24.0,30.0,24.0,22.0,27.0,27.0,19.0,20.0,30.0,26.0,20.0,24.0,22.0,24.0,16.0,23.0,14.0,24.0,24.0,12.0,16.0,15.0,13.0,16.0,14.0,20.0,12.0,10.0,9.0,14.0,2.0,11.0,8.0,5.0,8.0,4.0,3.0,3.0,4.0,5.0,2.0,3.0,,2.0,1.0,2.0,,1.0,1.0,,1.0 K83021,100.0,111.0,104.0,129.0,116.0,111.0,123.0,121.0,127.0,145.0,117.0,108.0,138.0,150.0,144.0,138.0,117.0,129.0,109.0,110.0,96.0,93.0,88.0,94.0,92.0,129.0,112.0,111.0,140.0,124.0,135.0,158.0,153.0,149.0,157.0,146.0,139.0,151.0,139.0,131.0,161.0,163.0,146.0,138.0,143.0,130.0,148.0,119.0,129.0,125.0,141.0,133.0,120.0,158.0,150.0,160.0,165.0,149.0,132.0,127.0,144.0,139.0,118.0,133.0,122.0,109.0,142.0,137.0,111.0,122.0,140.0,125.0,114.0,121.0,120.0,154.0,135.0,124.0,122.0,90.0,80.0,67.0,79.0,62.0,52.0,46.0,42.0,29.0,30.0,30.0,21.0,21.0,17.0,17.0,7.0,22.0 K83022,52.0,69.0,75.0,72.0,55.0,61.0,72.0,70.0,57.0,70.0,57.0,72.0,71.0,70.0,63.0,64.0,56.0,58.0,57.0,51.0,32.0,39.0,49.0,57.0,60.0,62.0,69.0,70.0,94.0,63.0,102.0,112.0,108.0,80.0,96.0,90.0,97.0,92.0,101.0,81.0,86.0,82.0,85.0,73.0,75.0,93.0,61.0,70.0,64.0,76.0,78.0,97.0,84.0,86.0,79.0,71.0,85.0,89.0,87.0,74.0,84.0,63.0,63.0,80.0,67.0,62.0,75.0,70.0,51.0,58.0,52.0,48.0,54.0,50.0,39.0,39.0,60.0,61.0,73.0,42.0,35.0,28.0,22.0,23.0,18.0,24.0,18.0,13.0,13.0,12.0,17.0,13.0,8.0,4.0,7.0,12.0 K83023,21.0,36.0,33.0,29.0,45.0,38.0,41.0,41.0,49.0,43.0,56.0,65.0,66.0,94.0,101.0,114.0,106.0,125.0,87.0,48.0,34.0,41.0,34.0,50.0,28.0,35.0,50.0,47.0,30.0,34.0,34.0,35.0,39.0,42.0,44.0,61.0,44.0,61.0,53.0,36.0,79.0,50.0,45.0,66.0,55.0,74.0,53.0,66.0,52.0,60.0,64.0,63.0,87.0,72.0,91.0,64.0,83.0,85.0,76.0,94.0,79.0,80.0,79.0,93.0,86.0,80.0,65.0,60.0,61.0,70.0,58.0,75.0,69.0,59.0,82.0,59.0,62.0,64.0,80.0,57.0,67.0,48.0,44.0,46.0,37.0,37.0,34.0,28.0,21.0,28.0,17.0,10.0,18.0,14.0,6.0,22.0 K83024,35.0,33.0,35.0,32.0,46.0,41.0,47.0,68.0,63.0,54.0,62.0,73.0,59.0,69.0,58.0,57.0,37.0,69.0,71.0,58.0,53.0,48.0,43.0,59.0,44.0,47.0,47.0,53.0,55.0,55.0,64.0,53.0,60.0,59.0,59.0,65.0,79.0,70.0,59.0,62.0,56.0,72.0,52.0,73.0,69.0,70.0,53.0,67.0,66.0,61.0,68.0,65.0,65.0,75.0,80.0,56.0,67.0,79.0,58.0,64.0,72.0,63.0,51.0,67.0,61.0,58.0,54.0,49.0,45.0,35.0,49.0,32.0,46.0,53.0,36.0,48.0,50.0,53.0,50.0,30.0,33.0,27.0,32.0,27.0,25.0,14.0,21.0,22.0,15.0,13.0,11.0,8.0,10.0,4.0,5.0,12.0 K83025,94.0,107.0,73.0,90.0,74.0,104.0,89.0,91.0,108.0,107.0,109.0,110.0,104.0,89.0,99.0,106.0,107.0,109.0,83.0,92.0,97.0,91.0,105.0,120.0,167.0,151.0,165.0,172.0,149.0,171.0,181.0,157.0,143.0,157.0,163.0,178.0,156.0,141.0,147.0,140.0,156.0,122.0,120.0,104.0,118.0,112.0,99.0,72.0,76.0,79.0,97.0,90.0,84.0,91.0,100.0,97.0,86.0,75.0,73.0,80.0,75.0,57.0,67.0,59.0,61.0,54.0,50.0,55.0,42.0,52.0,47.0,36.0,38.0,45.0,37.0,39.0,43.0,35.0,44.0,34.0,26.0,33.0,23.0,16.0,14.0,17.0,16.0,13.0,16.0,15.0,11.0,5.0,5.0,3.0,6.0,7.0 K83026,92.0,91.0,97.0,90.0,112.0,125.0,126.0,120.0,110.0,108.0,147.0,139.0,132.0,129.0,132.0,113.0,144.0,130.0,115.0,79.0,113.0,99.0,108.0,100.0,115.0,136.0,136.0,163.0,147.0,145.0,159.0,161.0,165.0,171.0,174.0,148.0,185.0,154.0,161.0,154.0,154.0,144.0,138.0,144.0,154.0,124.0,131.0,98.0,108.0,104.0,127.0,125.0,123.0,116.0,114.0,121.0,126.0,106.0,116.0,102.0,94.0,106.0,99.0,99.0,97.0,98.0,92.0,86.0,61.0,86.0,80.0,70.0,80.0,85.0,63.0,70.0,91.0,75.0,57.0,63.0,61.0,54.0,31.0,46.0,32.0,31.0,34.0,32.0,31.0,21.0,16.0,17.0,16.0,10.0,5.0,17.0 K83027,51.0,43.0,44.0,51.0,55.0,49.0,65.0,60.0,62.0,68.0,57.0,60.0,59.0,58.0,64.0,50.0,54.0,66.0,49.0,43.0,54.0,52.0,48.0,62.0,54.0,68.0,61.0,85.0,85.0,89.0,94.0,94.0,102.0,92.0,98.0,94.0,100.0,95.0,87.0,75.0,74.0,74.0,90.0,80.0,90.0,61.0,66.0,54.0,60.0,64.0,56.0,78.0,54.0,59.0,65.0,52.0,63.0,63.0,57.0,58.0,57.0,49.0,46.0,58.0,42.0,51.0,41.0,35.0,41.0,33.0,23.0,24.0,30.0,30.0,33.0,25.0,43.0,37.0,37.0,32.0,20.0,27.0,21.0,18.0,20.0,12.0,25.0,22.0,15.0,20.0,6.0,11.0,8.0,7.0,5.0,18.0 K83028,37.0,49.0,45.0,69.0,47.0,68.0,52.0,70.0,63.0,72.0,79.0,62.0,69.0,90.0,78.0,59.0,84.0,72.0,70.0,61.0,52.0,59.0,51.0,43.0,49.0,67.0,69.0,65.0,66.0,80.0,80.0,62.0,73.0,104.0,89.0,82.0,90.0,86.0,72.0,72.0,77.0,63.0,76.0,58.0,57.0,82.0,59.0,57.0,73.0,71.0,76.0,75.0,91.0,74.0,90.0,73.0,101.0,98.0,100.0,75.0,84.0,75.0,77.0,75.0,80.0,75.0,65.0,71.0,71.0,61.0,49.0,63.0,56.0,47.0,52.0,65.0,69.0,79.0,48.0,57.0,38.0,35.0,30.0,28.0,24.0,24.0,29.0,19.0,18.0,14.0,12.0,12.0,15.0,10.0,8.0,23.0 K83029,39.0,53.0,42.0,45.0,56.0,66.0,64.0,74.0,63.0,67.0,65.0,80.0,63.0,67.0,78.0,67.0,76.0,79.0,64.0,71.0,49.0,57.0,62.0,64.0,65.0,53.0,73.0,80.0,87.0,78.0,65.0,78.0,81.0,80.0,79.0,74.0,81.0,97.0,95.0,90.0,92.0,90.0,88.0,92.0,100.0,94.0,118.0,73.0,81.0,84.0,87.0,95.0,80.0,81.0,71.0,91.0,79.0,72.0,70.0,68.0,93.0,78.0,85.0,82.0,74.0,61.0,55.0,64.0,66.0,57.0,50.0,65.0,65.0,49.0,62.0,66.0,45.0,67.0,53.0,46.0,52.0,34.0,28.0,34.0,14.0,28.0,26.0,31.0,16.0,17.0,20.0,9.0,12.0,7.0,8.0,26.0 K83030,26.0,31.0,41.0,53.0,49.0,57.0,55.0,39.0,67.0,73.0,48.0,64.0,69.0,61.0,67.0,59.0,67.0,56.0,55.0,48.0,35.0,35.0,33.0,42.0,37.0,31.0,42.0,43.0,51.0,64.0,51.0,72.0,62.0,63.0,71.0,63.0,61.0,62.0,56.0,65.0,62.0,50.0,58.0,62.0,67.0,55.0,74.0,63.0,66.0,46.0,55.0,76.0,64.0,61.0,81.0,69.0,79.0,73.0,77.0,61.0,71.0,78.0,43.0,61.0,64.0,60.0,60.0,44.0,55.0,47.0,65.0,61.0,55.0,56.0,76.0,65.0,54.0,54.0,69.0,45.0,46.0,42.0,35.0,22.0,22.0,21.0,20.0,17.0,10.0,15.0,7.0,11.0,6.0,7.0,7.0,23.0 K83031,21.0,27.0,52.0,31.0,44.0,41.0,34.0,48.0,40.0,53.0,50.0,37.0,45.0,48.0,45.0,49.0,43.0,40.0,22.0,28.0,31.0,31.0,36.0,42.0,29.0,30.0,31.0,45.0,43.0,42.0,35.0,34.0,51.0,52.0,58.0,51.0,69.0,58.0,64.0,41.0,54.0,51.0,44.0,40.0,53.0,49.0,47.0,50.0,47.0,48.0,53.0,61.0,58.0,59.0,64.0,73.0,52.0,84.0,67.0,80.0,76.0,76.0,69.0,79.0,68.0,54.0,49.0,61.0,44.0,47.0,41.0,38.0,44.0,46.0,50.0,40.0,37.0,62.0,41.0,35.0,33.0,33.0,28.0,20.0,31.0,18.0,11.0,20.0,14.0,10.0,8.0,10.0,6.0,2.0,3.0,8.0 K83032,104.0,117.0,110.0,111.0,140.0,114.0,133.0,137.0,137.0,146.0,118.0,120.0,128.0,124.0,124.0,126.0,138.0,112.0,125.0,101.0,95.0,93.0,104.0,108.0,116.0,122.0,131.0,166.0,147.0,162.0,162.0,169.0,166.0,179.0,187.0,159.0,204.0,169.0,147.0,172.0,172.0,160.0,152.0,140.0,129.0,168.0,152.0,119.0,127.0,133.0,145.0,119.0,149.0,151.0,162.0,154.0,161.0,153.0,174.0,138.0,138.0,145.0,155.0,154.0,116.0,119.0,112.0,111.0,91.0,101.0,85.0,96.0,90.0,84.0,96.0,103.0,87.0,107.0,95.0,81.0,75.0,72.0,66.0,51.0,41.0,33.0,35.0,37.0,26.0,27.0,27.0,15.0,16.0,4.0,10.0,21.0 K83035,27.0,34.0,36.0,49.0,43.0,40.0,45.0,44.0,41.0,45.0,33.0,34.0,46.0,33.0,42.0,46.0,42.0,27.0,28.0,42.0,40.0,35.0,35.0,41.0,42.0,37.0,43.0,56.0,65.0,58.0,79.0,60.0,62.0,73.0,44.0,62.0,70.0,76.0,58.0,45.0,40.0,60.0,57.0,53.0,54.0,43.0,34.0,38.0,37.0,45.0,37.0,37.0,32.0,46.0,39.0,46.0,39.0,40.0,29.0,31.0,32.0,26.0,33.0,44.0,45.0,36.0,31.0,25.0,22.0,34.0,32.0,29.0,35.0,22.0,24.0,20.0,29.0,22.0,15.0,18.0,13.0,19.0,11.0,13.0,15.0,16.0,12.0,6.0,14.0,10.0,9.0,8.0,3.0,3.0,2.0,14.0 K83036,77.0,81.0,99.0,94.0,80.0,106.0,90.0,111.0,114.0,127.0,122.0,123.0,128.0,111.0,106.0,105.0,109.0,122.0,106.0,94.0,87.0,79.0,88.0,81.0,121.0,94.0,78.0,104.0,92.0,99.0,125.0,153.0,146.0,134.0,119.0,122.0,152.0,159.0,138.0,137.0,129.0,111.0,123.0,124.0,116.0,103.0,112.0,95.0,82.0,100.0,97.0,105.0,132.0,118.0,109.0,99.0,112.0,101.0,116.0,119.0,102.0,88.0,122.0,92.0,93.0,86.0,77.0,79.0,78.0,74.0,67.0,71.0,63.0,71.0,60.0,81.0,82.0,65.0,80.0,63.0,61.0,64.0,51.0,40.0,35.0,32.0,26.0,24.0,16.0,21.0,11.0,17.0,10.0,5.0,7.0,17.0 K83037,51.0,63.0,57.0,80.0,88.0,75.0,96.0,52.0,73.0,93.0,100.0,83.0,105.0,86.0,100.0,94.0,81.0,82.0,72.0,69.0,60.0,61.0,62.0,60.0,64.0,80.0,68.0,81.0,73.0,82.0,95.0,85.0,108.0,84.0,104.0,108.0,96.0,100.0,98.0,99.0,84.0,75.0,91.0,95.0,91.0,89.0,106.0,87.0,102.0,84.0,76.0,90.0,108.0,93.0,96.0,96.0,107.0,89.0,92.0,105.0,97.0,112.0,81.0,74.0,81.0,75.0,61.0,70.0,65.0,81.0,64.0,74.0,64.0,75.0,56.0,83.0,76.0,78.0,79.0,64.0,57.0,46.0,41.0,44.0,37.0,39.0,28.0,23.0,20.0,21.0,7.0,10.0,12.0,11.0,6.0,10.0 K83039,37.0,35.0,49.0,52.0,51.0,63.0,59.0,56.0,62.0,58.0,53.0,65.0,70.0,51.0,75.0,73.0,64.0,86.0,85.0,60.0,62.0,63.0,63.0,67.0,69.0,71.0,72.0,76.0,69.0,75.0,77.0,69.0,70.0,67.0,83.0,86.0,95.0,70.0,79.0,79.0,78.0,68.0,68.0,76.0,73.0,68.0,66.0,63.0,93.0,65.0,89.0,73.0,66.0,78.0,83.0,82.0,86.0,77.0,67.0,83.0,90.0,67.0,81.0,76.0,74.0,67.0,54.0,59.0,65.0,44.0,54.0,55.0,49.0,60.0,53.0,72.0,71.0,79.0,63.0,56.0,64.0,64.0,58.0,30.0,43.0,45.0,39.0,30.0,27.0,28.0,19.0,16.0,12.0,13.0,10.0,21.0 K83040,49.0,46.0,48.0,53.0,46.0,50.0,53.0,75.0,77.0,76.0,77.0,73.0,78.0,72.0,92.0,82.0,69.0,59.0,73.0,53.0,56.0,57.0,60.0,46.0,71.0,71.0,73.0,66.0,60.0,73.0,74.0,58.0,73.0,87.0,85.0,93.0,100.0,106.0,90.0,83.0,87.0,72.0,73.0,74.0,76.0,84.0,71.0,62.0,52.0,74.0,53.0,80.0,53.0,75.0,67.0,56.0,73.0,57.0,62.0,62.0,49.0,67.0,71.0,49.0,51.0,60.0,54.0,43.0,57.0,56.0,56.0,60.0,40.0,64.0,48.0,56.0,44.0,38.0,49.0,30.0,29.0,33.0,19.0,17.0,21.0,11.0,10.0,12.0,9.0,3.0,6.0,8.0,4.0,3.0,2.0,4.0 K83041,110.0,113.0,122.0,136.0,126.0,150.0,141.0,140.0,164.0,142.0,177.0,177.0,174.0,194.0,153.0,174.0,147.0,161.0,141.0,127.0,89.0,98.0,106.0,118.0,114.0,119.0,153.0,134.0,143.0,148.0,152.0,168.0,183.0,176.0,188.0,168.0,202.0,214.0,183.0,192.0,198.0,204.0,194.0,197.0,209.0,190.0,170.0,149.0,147.0,153.0,148.0,133.0,146.0,138.0,148.0,125.0,112.0,127.0,127.0,107.0,144.0,133.0,129.0,111.0,99.0,101.0,104.0,112.0,106.0,98.0,93.0,90.0,85.0,107.0,86.0,104.0,114.0,114.0,107.0,61.0,96.0,87.0,65.0,64.0,59.0,44.0,50.0,50.0,45.0,37.0,39.0,37.0,22.0,15.0,19.0,51.0 K83042,84.0,58.0,70.0,82.0,71.0,96.0,86.0,94.0,98.0,107.0,92.0,122.0,84.0,108.0,118.0,106.0,112.0,122.0,95.0,103.0,79.0,99.0,78.0,90.0,96.0,83.0,94.0,88.0,95.0,114.0,116.0,123.0,106.0,132.0,130.0,112.0,128.0,127.0,120.0,125.0,113.0,112.0,119.0,107.0,111.0,112.0,102.0,112.0,93.0,97.0,88.0,83.0,97.0,105.0,103.0,78.0,88.0,78.0,91.0,85.0,76.0,86.0,81.0,70.0,69.0,83.0,69.0,77.0,65.0,60.0,52.0,63.0,49.0,67.0,52.0,59.0,51.0,69.0,72.0,42.0,47.0,54.0,45.0,30.0,30.0,21.0,33.0,25.0,20.0,19.0,8.0,15.0,9.0,8.0,6.0,18.0 K83043,60.0,57.0,67.0,86.0,48.0,72.0,72.0,95.0,83.0,83.0,97.0,92.0,90.0,110.0,86.0,118.0,92.0,100.0,81.0,75.0,66.0,77.0,66.0,71.0,90.0,84.0,84.0,89.0,99.0,99.0,100.0,92.0,100.0,108.0,105.0,110.0,95.0,137.0,128.0,97.0,108.0,128.0,114.0,100.0,116.0,82.0,95.0,93.0,89.0,75.0,84.0,85.0,83.0,117.0,90.0,100.0,110.0,102.0,106.0,98.0,102.0,109.0,80.0,90.0,84.0,79.0,77.0,66.0,75.0,64.0,58.0,60.0,54.0,60.0,33.0,57.0,56.0,47.0,66.0,43.0,55.0,41.0,41.0,35.0,33.0,41.0,19.0,21.0,32.0,22.0,19.0,10.0,15.0,10.0,5.0,24.0 K83044,51.0,46.0,59.0,66.0,57.0,78.0,75.0,59.0,69.0,63.0,66.0,64.0,86.0,66.0,80.0,70.0,74.0,87.0,79.0,73.0,64.0,73.0,55.0,58.0,81.0,84.0,68.0,73.0,88.0,75.0,87.0,83.0,99.0,81.0,88.0,99.0,91.0,93.0,99.0,103.0,68.0,86.0,67.0,62.0,73.0,88.0,75.0,74.0,74.0,72.0,90.0,96.0,90.0,73.0,108.0,101.0,91.0,96.0,120.0,111.0,89.0,102.0,81.0,72.0,80.0,82.0,93.0,77.0,59.0,62.0,61.0,70.0,76.0,81.0,68.0,77.0,79.0,81.0,80.0,70.0,71.0,66.0,63.0,37.0,41.0,41.0,42.0,35.0,21.0,18.0,21.0,24.0,16.0,9.0,18.0,27.0 K83047,157.0,134.0,158.0,172.0,121.0,165.0,148.0,170.0,160.0,179.0,126.0,185.0,174.0,163.0,180.0,154.0,163.0,162.0,138.0,137.0,101.0,133.0,136.0,144.0,175.0,175.0,196.0,221.0,207.0,207.0,231.0,230.0,219.0,241.0,238.0,225.0,248.0,201.0,219.0,220.0,200.0,213.0,190.0,213.0,196.0,198.0,175.0,163.0,160.0,181.0,137.0,166.0,151.0,179.0,183.0,174.0,168.0,176.0,168.0,161.0,150.0,163.0,163.0,158.0,133.0,149.0,159.0,113.0,111.0,136.0,109.0,112.0,117.0,100.0,90.0,94.0,103.0,131.0,102.0,90.0,78.0,71.0,66.0,65.0,43.0,38.0,50.0,41.0,36.0,38.0,30.0,21.0,15.0,12.0,19.0,40.0 K83048,18.0,20.0,24.0,31.0,24.0,42.0,31.0,37.0,39.0,33.0,32.0,38.0,37.0,38.0,44.0,39.0,37.0,42.0,41.0,42.0,30.0,40.0,28.0,30.0,19.0,29.0,29.0,23.0,30.0,28.0,39.0,32.0,38.0,36.0,35.0,49.0,40.0,43.0,45.0,45.0,47.0,48.0,40.0,47.0,33.0,32.0,35.0,34.0,28.0,35.0,43.0,32.0,49.0,36.0,38.0,34.0,48.0,38.0,42.0,38.0,38.0,48.0,48.0,42.0,35.0,44.0,32.0,33.0,39.0,33.0,36.0,31.0,25.0,32.0,20.0,30.0,38.0,34.0,20.0,14.0,15.0,16.0,9.0,5.0,11.0,6.0,8.0,9.0,7.0,1.0,13.0,4.0,5.0,2.0,,5.0 K83049,62.0,91.0,80.0,75.0,82.0,78.0,70.0,82.0,62.0,97.0,90.0,87.0,93.0,100.0,91.0,76.0,84.0,88.0,78.0,64.0,61.0,77.0,70.0,72.0,83.0,79.0,82.0,105.0,94.0,103.0,117.0,123.0,128.0,110.0,105.0,110.0,114.0,112.0,106.0,101.0,93.0,106.0,77.0,94.0,88.0,95.0,87.0,87.0,88.0,93.0,90.0,93.0,115.0,133.0,137.0,108.0,147.0,140.0,144.0,118.0,142.0,145.0,117.0,111.0,144.0,111.0,90.0,88.0,82.0,72.0,77.0,70.0,76.0,66.0,75.0,75.0,77.0,83.0,99.0,53.0,61.0,57.0,37.0,31.0,28.0,33.0,31.0,41.0,29.0,14.0,18.0,15.0,22.0,21.0,8.0,28.0 K83050,33.0,36.0,48.0,37.0,41.0,48.0,43.0,38.0,43.0,27.0,38.0,35.0,34.0,33.0,28.0,35.0,37.0,25.0,30.0,39.0,32.0,33.0,50.0,50.0,69.0,90.0,63.0,78.0,71.0,73.0,80.0,70.0,84.0,62.0,68.0,67.0,66.0,67.0,59.0,68.0,61.0,52.0,53.0,39.0,43.0,42.0,43.0,43.0,31.0,36.0,36.0,49.0,28.0,34.0,29.0,33.0,27.0,48.0,31.0,30.0,38.0,34.0,35.0,23.0,25.0,20.0,20.0,21.0,20.0,23.0,10.0,16.0,19.0,15.0,16.0,19.0,18.0,19.0,19.0,11.0,9.0,11.0,8.0,13.0,5.0,14.0,8.0,10.0,8.0,5.0,5.0,9.0,1.0,4.0,2.0,9.0 K83051,146.0,143.0,182.0,149.0,158.0,174.0,157.0,173.0,181.0,182.0,159.0,209.0,166.0,177.0,173.0,183.0,199.0,159.0,168.0,151.0,156.0,130.0,140.0,156.0,178.0,159.0,176.0,192.0,208.0,194.0,213.0,228.0,233.0,272.0,239.0,234.0,230.0,245.0,210.0,217.0,228.0,198.0,199.0,183.0,209.0,207.0,177.0,173.0,170.0,192.0,203.0,171.0,192.0,215.0,185.0,172.0,190.0,191.0,198.0,181.0,174.0,186.0,167.0,141.0,161.0,136.0,114.0,144.0,113.0,120.0,112.0,119.0,119.0,115.0,94.0,95.0,116.0,117.0,106.0,89.0,78.0,77.0,73.0,51.0,52.0,45.0,38.0,41.0,47.0,29.0,34.0,22.0,16.0,21.0,14.0,41.0 K83052,69.0,95.0,104.0,120.0,124.0,112.0,144.0,156.0,159.0,139.0,149.0,144.0,164.0,162.0,160.0,146.0,161.0,148.0,142.0,125.0,89.0,112.0,90.0,107.0,92.0,101.0,116.0,100.0,106.0,114.0,126.0,129.0,146.0,151.0,149.0,168.0,165.0,188.0,166.0,162.0,186.0,177.0,159.0,180.0,164.0,209.0,158.0,148.0,146.0,177.0,184.0,156.0,163.0,175.0,165.0,161.0,155.0,137.0,167.0,143.0,153.0,177.0,132.0,139.0,147.0,98.0,128.0,103.0,92.0,118.0,112.0,91.0,98.0,80.0,107.0,113.0,106.0,135.0,121.0,65.0,82.0,87.0,55.0,46.0,48.0,34.0,52.0,31.0,28.0,25.0,24.0,17.0,23.0,13.0,15.0,28.0 K83053,15.0,25.0,27.0,32.0,22.0,41.0,34.0,31.0,30.0,32.0,37.0,23.0,37.0,31.0,29.0,32.0,35.0,27.0,40.0,24.0,24.0,10.0,16.0,28.0,30.0,15.0,27.0,26.0,29.0,26.0,38.0,31.0,16.0,49.0,37.0,33.0,34.0,37.0,37.0,28.0,41.0,56.0,44.0,33.0,43.0,31.0,36.0,30.0,38.0,31.0,46.0,42.0,32.0,49.0,58.0,30.0,48.0,65.0,50.0,50.0,46.0,53.0,51.0,63.0,43.0,48.0,33.0,41.0,38.0,35.0,37.0,32.0,38.0,30.0,33.0,33.0,30.0,34.0,30.0,23.0,23.0,16.0,26.0,20.0,20.0,22.0,17.0,19.0,16.0,11.0,8.0,8.0,4.0,5.0,3.0,3.0 K83055,26.0,32.0,30.0,39.0,43.0,39.0,47.0,55.0,40.0,69.0,50.0,42.0,72.0,60.0,45.0,63.0,68.0,65.0,56.0,38.0,34.0,38.0,39.0,49.0,52.0,38.0,48.0,41.0,34.0,38.0,35.0,46.0,49.0,53.0,47.0,57.0,56.0,62.0,66.0,51.0,69.0,53.0,84.0,44.0,45.0,63.0,79.0,47.0,64.0,61.0,62.0,73.0,63.0,89.0,64.0,50.0,54.0,63.0,54.0,63.0,55.0,55.0,46.0,49.0,37.0,44.0,41.0,43.0,29.0,29.0,28.0,31.0,27.0,31.0,26.0,28.0,29.0,30.0,45.0,26.0,21.0,24.0,25.0,19.0,17.0,13.0,16.0,9.0,14.0,5.0,8.0,7.0,7.0,6.0,3.0,11.0 K83056,17.0,15.0,20.0,18.0,16.0,21.0,24.0,19.0,35.0,15.0,27.0,19.0,20.0,17.0,19.0,33.0,28.0,24.0,22.0,14.0,29.0,20.0,18.0,31.0,35.0,26.0,37.0,31.0,35.0,40.0,38.0,36.0,36.0,32.0,40.0,39.0,32.0,37.0,27.0,35.0,39.0,34.0,27.0,26.0,26.0,28.0,36.0,22.0,20.0,31.0,27.0,21.0,23.0,25.0,21.0,28.0,16.0,37.0,18.0,25.0,24.0,20.0,21.0,16.0,30.0,19.0,19.0,16.0,22.0,10.0,21.0,21.0,15.0,12.0,13.0,14.0,12.0,13.0,8.0,11.0,11.0,7.0,6.0,5.0,2.0,6.0,4.0,4.0,5.0,1.0,2.0,2.0,1.0,2.0,,1.0 K83059,118.0,119.0,126.0,130.0,127.0,147.0,137.0,135.0,142.0,137.0,153.0,131.0,162.0,136.0,156.0,157.0,163.0,123.0,125.0,120.0,100.0,101.0,109.0,110.0,143.0,157.0,165.0,150.0,174.0,131.0,157.0,165.0,188.0,195.0,203.0,201.0,189.0,194.0,171.0,204.0,199.0,171.0,190.0,170.0,149.0,157.0,148.0,132.0,125.0,120.0,140.0,115.0,140.0,134.0,147.0,158.0,148.0,155.0,147.0,129.0,154.0,130.0,124.0,132.0,106.0,85.0,101.0,113.0,81.0,88.0,63.0,87.0,72.0,69.0,79.0,61.0,66.0,82.0,75.0,55.0,52.0,54.0,39.0,41.0,39.0,35.0,32.0,23.0,23.0,19.0,7.0,8.0,13.0,8.0,3.0,12.0 K83064,45.0,50.0,59.0,76.0,71.0,79.0,67.0,90.0,81.0,89.0,90.0,98.0,103.0,101.0,114.0,102.0,104.0,110.0,92.0,87.0,74.0,66.0,81.0,88.0,84.0,78.0,65.0,65.0,75.0,74.0,80.0,75.0,86.0,84.0,89.0,96.0,99.0,96.0,81.0,99.0,82.0,80.0,103.0,100.0,133.0,109.0,110.0,101.0,103.0,97.0,101.0,133.0,150.0,142.0,155.0,126.0,146.0,166.0,156.0,141.0,156.0,126.0,125.0,135.0,115.0,109.0,114.0,114.0,107.0,88.0,102.0,88.0,85.0,94.0,99.0,98.0,92.0,88.0,91.0,72.0,74.0,57.0,49.0,52.0,42.0,27.0,24.0,27.0,20.0,10.0,19.0,15.0,12.0,7.0,5.0,27.0 K83065,24.0,29.0,33.0,31.0,45.0,30.0,29.0,28.0,37.0,26.0,26.0,39.0,47.0,50.0,39.0,26.0,32.0,46.0,39.0,35.0,30.0,29.0,24.0,29.0,24.0,33.0,34.0,39.0,36.0,29.0,49.0,45.0,45.0,44.0,43.0,48.0,50.0,41.0,46.0,45.0,43.0,30.0,35.0,44.0,42.0,53.0,36.0,45.0,47.0,46.0,50.0,47.0,54.0,68.0,50.0,52.0,49.0,73.0,75.0,64.0,61.0,60.0,48.0,53.0,44.0,50.0,49.0,41.0,29.0,40.0,38.0,48.0,35.0,48.0,28.0,49.0,44.0,47.0,35.0,32.0,31.0,21.0,27.0,31.0,14.0,15.0,23.0,15.0,14.0,5.0,8.0,5.0,9.0,5.0,1.0,13.0 K83066,45.0,53.0,50.0,52.0,61.0,74.0,64.0,67.0,69.0,57.0,62.0,76.0,88.0,67.0,63.0,101.0,86.0,87.0,70.0,64.0,41.0,62.0,58.0,64.0,60.0,66.0,76.0,66.0,71.0,77.0,67.0,74.0,65.0,81.0,71.0,77.0,82.0,86.0,89.0,83.0,80.0,99.0,71.0,106.0,93.0,110.0,91.0,84.0,91.0,91.0,94.0,94.0,102.0,113.0,101.0,118.0,121.0,140.0,144.0,122.0,124.0,119.0,113.0,130.0,109.0,96.0,96.0,104.0,91.0,83.0,106.0,94.0,103.0,95.0,92.0,84.0,93.0,108.0,101.0,71.0,91.0,74.0,63.0,51.0,46.0,25.0,40.0,28.0,31.0,26.0,19.0,17.0,11.0,13.0,6.0,23.0 K83068,13.0,14.0,23.0,17.0,20.0,24.0,26.0,30.0,17.0,32.0,33.0,28.0,35.0,36.0,24.0,38.0,37.0,33.0,37.0,35.0,30.0,25.0,25.0,23.0,21.0,17.0,28.0,16.0,19.0,19.0,24.0,32.0,26.0,22.0,34.0,26.0,24.0,25.0,28.0,36.0,34.0,39.0,41.0,28.0,47.0,45.0,44.0,42.0,49.0,45.0,34.0,49.0,62.0,60.0,63.0,58.0,64.0,54.0,50.0,56.0,69.0,55.0,58.0,64.0,59.0,48.0,63.0,43.0,44.0,53.0,43.0,25.0,34.0,30.0,30.0,48.0,38.0,39.0,53.0,30.0,31.0,28.0,32.0,22.0,19.0,13.0,25.0,13.0,6.0,10.0,9.0,4.0,4.0,3.0,3.0,7.0 K83069,19.0,27.0,13.0,18.0,24.0,16.0,22.0,20.0,19.0,21.0,23.0,12.0,23.0,12.0,17.0,15.0,17.0,11.0,7.0,16.0,9.0,9.0,6.0,10.0,12.0,14.0,16.0,24.0,14.0,25.0,15.0,23.0,23.0,26.0,27.0,27.0,22.0,28.0,17.0,17.0,28.0,20.0,22.0,25.0,20.0,22.0,9.0,17.0,20.0,16.0,12.0,17.0,13.0,23.0,14.0,13.0,12.0,24.0,21.0,26.0,12.0,16.0,26.0,15.0,26.0,13.0,17.0,20.0,15.0,16.0,14.0,16.0,13.0,15.0,18.0,14.0,21.0,15.0,19.0,12.0,12.0,18.0,8.0,11.0,12.0,6.0,8.0,8.0,6.0,8.0,3.0,5.0,1.0,3.0,,4.0 K83070,37.0,45.0,39.0,39.0,47.0,53.0,59.0,56.0,66.0,56.0,67.0,81.0,75.0,52.0,76.0,57.0,70.0,67.0,68.0,80.0,58.0,55.0,46.0,37.0,51.0,51.0,49.0,56.0,49.0,46.0,55.0,65.0,63.0,74.0,72.0,77.0,75.0,65.0,88.0,59.0,75.0,72.0,85.0,77.0,97.0,73.0,66.0,74.0,68.0,72.0,81.0,81.0,61.0,78.0,76.0,75.0,73.0,78.0,73.0,73.0,80.0,73.0,94.0,64.0,51.0,59.0,72.0,65.0,50.0,60.0,45.0,51.0,50.0,47.0,47.0,45.0,46.0,52.0,47.0,37.0,39.0,51.0,32.0,31.0,21.0,22.0,16.0,13.0,9.0,16.0,11.0,12.0,4.0,6.0,6.0,13.0 K83076,43.0,56.0,50.0,47.0,47.0,52.0,42.0,58.0,68.0,61.0,63.0,58.0,55.0,53.0,60.0,60.0,75.0,72.0,54.0,57.0,44.0,61.0,43.0,49.0,66.0,58.0,60.0,65.0,59.0,85.0,63.0,64.0,73.0,79.0,79.0,77.0,73.0,80.0,73.0,82.0,76.0,53.0,75.0,80.0,65.0,49.0,64.0,56.0,56.0,46.0,47.0,62.0,50.0,49.0,49.0,46.0,53.0,50.0,47.0,37.0,36.0,33.0,52.0,52.0,44.0,44.0,41.0,22.0,26.0,30.0,36.0,35.0,33.0,42.0,23.0,34.0,28.0,25.0,37.0,23.0,17.0,14.0,16.0,9.0,6.0,8.0,3.0,7.0,3.0,6.0,4.0,,5.0,,1.0,6.0 K83077,36.0,45.0,61.0,42.0,49.0,40.0,51.0,61.0,69.0,55.0,56.0,57.0,58.0,63.0,50.0,43.0,53.0,64.0,51.0,44.0,38.0,46.0,36.0,58.0,64.0,69.0,64.0,67.0,65.0,52.0,63.0,73.0,62.0,88.0,87.0,65.0,69.0,62.0,66.0,71.0,70.0,80.0,77.0,63.0,69.0,58.0,68.0,48.0,51.0,58.0,55.0,70.0,58.0,63.0,69.0,58.0,59.0,75.0,80.0,66.0,79.0,67.0,84.0,65.0,57.0,59.0,55.0,55.0,50.0,30.0,41.0,43.0,32.0,36.0,34.0,37.0,35.0,50.0,48.0,40.0,34.0,36.0,26.0,26.0,33.0,22.0,29.0,21.0,12.0,21.0,8.0,14.0,9.0,3.0,4.0,7.0 K83080,12.0,17.0,22.0,28.0,29.0,25.0,30.0,45.0,37.0,36.0,34.0,35.0,45.0,50.0,33.0,41.0,42.0,32.0,34.0,28.0,30.0,29.0,28.0,32.0,23.0,27.0,31.0,23.0,22.0,28.0,37.0,34.0,31.0,37.0,34.0,36.0,48.0,28.0,31.0,45.0,37.0,54.0,48.0,46.0,45.0,40.0,44.0,43.0,37.0,43.0,28.0,44.0,41.0,45.0,41.0,44.0,44.0,29.0,39.0,32.0,28.0,25.0,40.0,35.0,29.0,32.0,24.0,30.0,22.0,26.0,24.0,29.0,27.0,31.0,32.0,23.0,30.0,25.0,24.0,22.0,17.0,17.0,20.0,14.0,15.0,14.0,12.0,11.0,11.0,8.0,3.0,8.0,6.0,4.0,5.0,16.0 K83081,13.0,12.0,9.0,16.0,11.0,12.0,19.0,13.0,5.0,14.0,9.0,4.0,12.0,10.0,16.0,7.0,8.0,8.0,5.0,7.0,8.0,5.0,10.0,14.0,8.0,12.0,13.0,11.0,9.0,9.0,8.0,11.0,12.0,22.0,14.0,14.0,14.0,12.0,16.0,18.0,9.0,14.0,15.0,16.0,9.0,2.0,9.0,10.0,12.0,11.0,13.0,3.0,13.0,13.0,16.0,13.0,14.0,10.0,11.0,14.0,13.0,9.0,6.0,9.0,10.0,10.0,10.0,11.0,8.0,5.0,11.0,7.0,6.0,5.0,7.0,8.0,3.0,11.0,10.0,6.0,4.0,6.0,4.0,4.0,1.0,5.0,1.0,4.0,2.0,,1.0,,1.0,,2.0, K83601,36.0,27.0,34.0,35.0,31.0,40.0,36.0,40.0,40.0,50.0,52.0,60.0,55.0,49.0,47.0,63.0,52.0,59.0,48.0,37.0,36.0,34.0,34.0,28.0,33.0,39.0,48.0,37.0,50.0,51.0,58.0,51.0,39.0,63.0,41.0,58.0,50.0,62.0,66.0,73.0,51.0,61.0,59.0,47.0,60.0,56.0,60.0,49.0,59.0,54.0,64.0,66.0,64.0,70.0,73.0,60.0,69.0,56.0,70.0,75.0,60.0,54.0,65.0,64.0,54.0,54.0,55.0,47.0,47.0,37.0,43.0,33.0,39.0,44.0,34.0,46.0,39.0,44.0,44.0,34.0,36.0,35.0,22.0,19.0,15.0,11.0,12.0,18.0,8.0,9.0,11.0,6.0,9.0,2.0,,7.0 K83610,53.0,48.0,46.0,74.0,56.0,74.0,74.0,79.0,66.0,77.0,67.0,73.0,82.0,81.0,98.0,76.0,69.0,50.0,64.0,53.0,45.0,55.0,47.0,46.0,70.0,53.0,65.0,66.0,77.0,66.0,67.0,81.0,82.0,94.0,93.0,90.0,84.0,97.0,92.0,90.0,81.0,104.0,83.0,83.0,95.0,95.0,68.0,59.0,61.0,70.0,68.0,59.0,84.0,61.0,85.0,73.0,69.0,64.0,63.0,60.0,52.0,58.0,55.0,57.0,64.0,55.0,51.0,58.0,54.0,40.0,33.0,44.0,45.0,46.0,45.0,31.0,32.0,41.0,30.0,24.0,18.0,19.0,21.0,9.0,13.0,14.0,13.0,14.0,5.0,9.0,8.0,4.0,4.0,7.0,5.0,5.0 K83614,32.0,42.0,31.0,37.0,42.0,47.0,61.0,49.0,57.0,51.0,55.0,60.0,64.0,52.0,65.0,49.0,51.0,59.0,54.0,36.0,34.0,34.0,36.0,47.0,33.0,45.0,34.0,54.0,49.0,51.0,58.0,58.0,66.0,56.0,65.0,65.0,70.0,64.0,65.0,78.0,61.0,58.0,74.0,64.0,54.0,48.0,52.0,44.0,46.0,41.0,35.0,54.0,41.0,64.0,59.0,57.0,66.0,61.0,63.0,69.0,72.0,58.0,58.0,61.0,50.0,46.0,51.0,62.0,51.0,37.0,47.0,39.0,43.0,39.0,28.0,45.0,39.0,43.0,28.0,25.0,34.0,27.0,24.0,21.0,20.0,18.0,11.0,10.0,11.0,8.0,5.0,7.0,7.0,4.0,2.0,7.0 K83616,34.0,42.0,19.0,37.0,34.0,40.0,37.0,44.0,34.0,37.0,27.0,34.0,29.0,39.0,32.0,28.0,36.0,43.0,29.0,25.0,20.0,24.0,20.0,33.0,38.0,43.0,31.0,45.0,37.0,51.0,55.0,46.0,54.0,46.0,47.0,49.0,41.0,40.0,34.0,31.0,44.0,38.0,33.0,42.0,35.0,37.0,37.0,28.0,37.0,42.0,36.0,59.0,44.0,47.0,48.0,43.0,64.0,56.0,34.0,48.0,45.0,41.0,36.0,34.0,37.0,42.0,32.0,38.0,34.0,15.0,32.0,34.0,38.0,26.0,20.0,18.0,33.0,25.0,22.0,20.0,24.0,15.0,21.0,6.0,7.0,4.0,4.0,5.0,8.0,6.0,3.0,5.0,3.0,1.0,1.0,7.0 K83618,58.0,81.0,59.0,85.0,66.0,87.0,88.0,84.0,83.0,88.0,98.0,89.0,102.0,85.0,104.0,93.0,110.0,98.0,86.0,75.0,73.0,67.0,76.0,53.0,65.0,94.0,92.0,76.0,77.0,78.0,91.0,108.0,102.0,132.0,108.0,126.0,102.0,110.0,111.0,132.0,112.0,112.0,114.0,91.0,98.0,95.0,89.0,86.0,81.0,67.0,100.0,73.0,78.0,64.0,73.0,61.0,73.0,63.0,60.0,50.0,57.0,61.0,43.0,61.0,49.0,43.0,53.0,43.0,33.0,48.0,36.0,44.0,45.0,37.0,20.0,29.0,25.0,20.0,38.0,22.0,19.0,20.0,13.0,15.0,18.0,10.0,14.0,5.0,6.0,8.0,5.0,2.0,1.0,2.0,,5.0 K83620,34.0,38.0,39.0,42.0,46.0,39.0,37.0,40.0,49.0,44.0,53.0,51.0,67.0,50.0,56.0,43.0,53.0,47.0,46.0,38.0,34.0,34.0,39.0,43.0,42.0,43.0,35.0,45.0,45.0,43.0,42.0,51.0,51.0,79.0,62.0,63.0,64.0,41.0,65.0,60.0,53.0,49.0,52.0,54.0,65.0,55.0,60.0,61.0,50.0,65.0,69.0,60.0,64.0,60.0,78.0,71.0,66.0,62.0,66.0,62.0,67.0,65.0,61.0,63.0,53.0,65.0,62.0,42.0,57.0,47.0,35.0,48.0,42.0,36.0,49.0,49.0,62.0,48.0,61.0,28.0,29.0,23.0,20.0,21.0,19.0,26.0,14.0,9.0,20.0,12.0,9.0,10.0,5.0,1.0,6.0,15.0 K83621,115.0,119.0,133.0,111.0,121.0,98.0,111.0,89.0,108.0,71.0,90.0,73.0,70.0,60.0,63.0,69.0,55.0,57.0,59.0,67.0,65.0,87.0,93.0,89.0,131.0,147.0,149.0,176.0,191.0,217.0,190.0,193.0,179.0,216.0,196.0,197.0,196.0,177.0,163.0,133.0,135.0,127.0,113.0,86.0,94.0,86.0,77.0,88.0,68.0,62.0,76.0,73.0,46.0,72.0,64.0,53.0,43.0,57.0,41.0,36.0,35.0,25.0,31.0,32.0,25.0,29.0,31.0,22.0,14.0,22.0,18.0,14.0,12.0,8.0,9.0,10.0,5.0,6.0,7.0,2.0,2.0,7.0,7.0,4.0,4.0,11.0,3.0,4.0,3.0,3.0,2.0,2.0,2.0,,2.0,2.0 K83622,57.0,71.0,74.0,83.0,96.0,78.0,104.0,111.0,107.0,106.0,117.0,105.0,131.0,101.0,124.0,146.0,126.0,111.0,97.0,110.0,67.0,61.0,84.0,58.0,59.0,75.0,88.0,84.0,90.0,101.0,102.0,108.0,107.0,114.0,126.0,123.0,147.0,156.0,144.0,139.0,139.0,125.0,137.0,150.0,127.0,149.0,155.0,112.0,123.0,120.0,109.0,99.0,91.0,96.0,99.0,98.0,114.0,105.0,88.0,78.0,78.0,86.0,74.0,75.0,66.0,84.0,71.0,73.0,59.0,65.0,49.0,59.0,52.0,56.0,51.0,39.0,38.0,46.0,54.0,29.0,24.0,31.0,26.0,13.0,14.0,6.0,14.0,12.0,7.0,4.0,7.0,3.0,3.0,7.0,3.0,4.0 Y00399,14.0,17.0,15.0,18.0,19.0,16.0,20.0,17.0,20.0,20.0,22.0,22.0,24.0,24.0,27.0,16.0,17.0,29.0,21.0,12.0,15.0,21.0,16.0,27.0,21.0,22.0,22.0,24.0,16.0,21.0,13.0,19.0,18.0,25.0,32.0,17.0,22.0,22.0,29.0,19.0,27.0,21.0,36.0,31.0,22.0,28.0,19.0,22.0,27.0,28.0,24.0,32.0,32.0,19.0,31.0,29.0,24.0,24.0,28.0,35.0,27.0,27.0,20.0,30.0,28.0,25.0,23.0,28.0,22.0,18.0,17.0,22.0,21.0,21.0,25.0,24.0,31.0,38.0,28.0,19.0,19.0,21.0,9.0,9.0,7.0,11.0,8.0,10.0,6.0,10.0,3.0,3.0,2.0,2.0,4.0,4.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 L84003,39.0,41.0,44.0,60.0,54.0,49.0,59.0,52.0,51.0,37.0,52.0,48.0,42.0,45.0,47.0,41.0,44.0,44.0,79.0,150.0,209.0,151.0,145.0,104.0,134.0,128.0,133.0,131.0,102.0,122.0,85.0,89.0,94.0,81.0,100.0,80.0,74.0,68.0,72.0,66.0,79.0,77.0,89.0,71.0,71.0,74.0,79.0,57.0,46.0,61.0,46.0,55.0,48.0,38.0,41.0,43.0,41.0,54.0,52.0,42.0,63.0,57.0,56.0,48.0,36.0,47.0,43.0,39.0,37.0,35.0,32.0,30.0,32.0,31.0,32.0,36.0,35.0,40.0,26.0,29.0,29.0,28.0,27.0,33.0,30.0,20.0,34.0,19.0,19.0,22.0,8.0,20.0,11.0,9.0,8.0,24.0 L84004,21.0,18.0,35.0,32.0,32.0,42.0,32.0,46.0,32.0,45.0,37.0,43.0,40.0,31.0,41.0,46.0,39.0,48.0,39.0,27.0,32.0,20.0,24.0,25.0,31.0,30.0,27.0,36.0,27.0,29.0,34.0,33.0,31.0,37.0,37.0,45.0,42.0,45.0,42.0,41.0,38.0,48.0,50.0,52.0,42.0,46.0,37.0,40.0,37.0,43.0,43.0,51.0,46.0,56.0,53.0,42.0,69.0,56.0,64.0,78.0,78.0,73.0,57.0,70.0,78.0,74.0,54.0,65.0,51.0,56.0,73.0,60.0,59.0,66.0,62.0,55.0,80.0,71.0,68.0,44.0,56.0,49.0,50.0,47.0,25.0,21.0,23.0,25.0,24.0,10.0,13.0,11.0,8.0,7.0,6.0,10.0 L84005,15.0,20.0,18.0,17.0,27.0,35.0,36.0,34.0,35.0,45.0,36.0,52.0,47.0,39.0,60.0,43.0,64.0,42.0,48.0,41.0,32.0,22.0,34.0,35.0,32.0,23.0,25.0,14.0,23.0,22.0,19.0,20.0,27.0,22.0,30.0,42.0,39.0,38.0,39.0,44.0,36.0,46.0,38.0,47.0,51.0,51.0,57.0,47.0,49.0,42.0,56.0,56.0,65.0,52.0,68.0,67.0,71.0,71.0,70.0,68.0,73.0,63.0,89.0,76.0,72.0,52.0,70.0,68.0,62.0,54.0,51.0,66.0,59.0,67.0,67.0,77.0,75.0,76.0,64.0,65.0,45.0,48.0,45.0,44.0,32.0,31.0,36.0,29.0,18.0,21.0,26.0,11.0,7.0,17.0,6.0,18.0 L84006,26.0,22.0,27.0,20.0,22.0,18.0,35.0,26.0,22.0,28.0,35.0,22.0,31.0,32.0,25.0,41.0,79.0,127.0,134.0,101.0,106.0,71.0,64.0,52.0,45.0,22.0,29.0,35.0,33.0,34.0,23.0,27.0,32.0,33.0,35.0,36.0,27.0,32.0,24.0,41.0,31.0,35.0,27.0,34.0,33.0,30.0,33.0,23.0,31.0,37.0,27.0,35.0,32.0,42.0,44.0,53.0,44.0,58.0,33.0,66.0,48.0,59.0,56.0,44.0,57.0,51.0,60.0,40.0,47.0,38.0,42.0,36.0,38.0,44.0,27.0,41.0,33.0,36.0,38.0,28.0,35.0,28.0,22.0,19.0,13.0,28.0,16.0,22.0,13.0,9.0,15.0,4.0,7.0,10.0,3.0,5.0 L84007,38.0,49.0,46.0,55.0,59.0,57.0,47.0,69.0,61.0,72.0,78.0,75.0,73.0,66.0,80.0,92.0,79.0,67.0,54.0,49.0,53.0,65.0,61.0,52.0,63.0,55.0,53.0,69.0,64.0,56.0,58.0,61.0,63.0,80.0,88.0,83.0,82.0,92.0,66.0,90.0,79.0,89.0,83.0,98.0,96.0,92.0,89.0,86.0,83.0,79.0,86.0,89.0,99.0,104.0,110.0,104.0,106.0,104.0,105.0,82.0,89.0,99.0,96.0,88.0,81.0,83.0,70.0,86.0,65.0,62.0,75.0,66.0,54.0,57.0,77.0,85.0,66.0,61.0,70.0,44.0,50.0,39.0,42.0,41.0,25.0,29.0,17.0,23.0,26.0,24.0,23.0,17.0,7.0,10.0,4.0,17.0 L84008,66.0,57.0,60.0,51.0,57.0,61.0,52.0,75.0,56.0,65.0,68.0,67.0,75.0,88.0,72.0,67.0,57.0,54.0,53.0,48.0,53.0,67.0,71.0,82.0,79.0,92.0,110.0,107.0,103.0,95.0,100.0,90.0,116.0,85.0,122.0,108.0,109.0,112.0,116.0,100.0,80.0,78.0,86.0,89.0,79.0,94.0,63.0,72.0,56.0,65.0,77.0,61.0,66.0,62.0,55.0,81.0,68.0,67.0,67.0,61.0,67.0,57.0,55.0,85.0,55.0,64.0,53.0,58.0,50.0,54.0,51.0,52.0,61.0,47.0,40.0,48.0,57.0,61.0,51.0,42.0,40.0,41.0,31.0,28.0,15.0,24.0,18.0,24.0,17.0,23.0,17.0,18.0,13.0,8.0,10.0,21.0 L84009,101.0,100.0,104.0,107.0,68.0,117.0,115.0,117.0,100.0,109.0,109.0,113.0,128.0,104.0,138.0,112.0,115.0,123.0,81.0,91.0,93.0,91.0,87.0,83.0,117.0,107.0,107.0,106.0,118.0,128.0,129.0,137.0,139.0,140.0,128.0,136.0,178.0,171.0,133.0,136.0,153.0,129.0,158.0,160.0,141.0,124.0,107.0,94.0,125.0,91.0,122.0,122.0,130.0,138.0,137.0,136.0,136.0,139.0,155.0,153.0,132.0,125.0,145.0,103.0,128.0,144.0,111.0,110.0,121.0,94.0,92.0,88.0,105.0,92.0,95.0,77.0,92.0,90.0,96.0,65.0,66.0,75.0,49.0,51.0,35.0,40.0,38.0,41.0,35.0,27.0,17.0,12.0,14.0,13.0,12.0,26.0 L84010,23.0,32.0,36.0,34.0,37.0,43.0,39.0,55.0,34.0,62.0,66.0,62.0,63.0,49.0,52.0,52.0,57.0,54.0,63.0,52.0,41.0,51.0,45.0,40.0,49.0,44.0,45.0,37.0,40.0,44.0,37.0,50.0,50.0,43.0,47.0,48.0,43.0,60.0,62.0,52.0,59.0,66.0,51.0,62.0,65.0,94.0,67.0,52.0,65.0,65.0,77.0,76.0,98.0,81.0,98.0,92.0,85.0,96.0,101.0,79.0,108.0,107.0,92.0,99.0,92.0,89.0,93.0,83.0,80.0,60.0,80.0,65.0,85.0,75.0,70.0,98.0,80.0,77.0,75.0,45.0,74.0,61.0,76.0,48.0,35.0,53.0,44.0,31.0,22.0,23.0,21.0,18.0,14.0,14.0,8.0,15.0 L84011,50.0,41.0,50.0,49.0,29.0,58.0,40.0,38.0,50.0,54.0,45.0,42.0,44.0,41.0,41.0,39.0,45.0,35.0,46.0,29.0,37.0,35.0,46.0,50.0,62.0,47.0,54.0,50.0,53.0,46.0,57.0,69.0,63.0,61.0,59.0,55.0,65.0,51.0,52.0,48.0,49.0,50.0,47.0,46.0,43.0,35.0,39.0,41.0,39.0,41.0,39.0,60.0,55.0,53.0,55.0,58.0,61.0,67.0,53.0,66.0,65.0,70.0,66.0,67.0,58.0,57.0,52.0,47.0,50.0,38.0,46.0,50.0,53.0,60.0,54.0,35.0,54.0,47.0,67.0,35.0,39.0,31.0,31.0,27.0,28.0,24.0,22.0,23.0,23.0,16.0,8.0,12.0,10.0,10.0,12.0,12.0 L84012,91.0,91.0,121.0,121.0,115.0,124.0,122.0,114.0,106.0,122.0,117.0,138.0,128.0,142.0,112.0,154.0,130.0,155.0,174.0,159.0,149.0,183.0,175.0,147.0,124.0,112.0,120.0,130.0,153.0,122.0,128.0,140.0,139.0,136.0,147.0,161.0,176.0,156.0,148.0,152.0,159.0,141.0,142.0,157.0,148.0,172.0,143.0,155.0,129.0,154.0,149.0,168.0,151.0,203.0,180.0,187.0,164.0,189.0,188.0,189.0,201.0,190.0,172.0,169.0,189.0,187.0,154.0,144.0,147.0,146.0,142.0,153.0,128.0,149.0,140.0,130.0,141.0,159.0,173.0,113.0,110.0,112.0,94.0,91.0,68.0,78.0,69.0,65.0,48.0,37.0,53.0,34.0,29.0,28.0,13.0,61.0 L84014,30.0,32.0,25.0,33.0,35.0,39.0,41.0,54.0,33.0,49.0,49.0,61.0,55.0,56.0,45.0,36.0,43.0,45.0,46.0,36.0,31.0,33.0,28.0,26.0,35.0,36.0,26.0,44.0,38.0,41.0,40.0,58.0,51.0,55.0,56.0,51.0,41.0,52.0,58.0,46.0,46.0,58.0,55.0,59.0,45.0,54.0,50.0,49.0,44.0,42.0,66.0,66.0,58.0,69.0,65.0,57.0,59.0,72.0,67.0,77.0,65.0,68.0,68.0,67.0,58.0,60.0,54.0,66.0,54.0,66.0,53.0,68.0,54.0,63.0,48.0,43.0,65.0,86.0,71.0,54.0,78.0,62.0,54.0,31.0,33.0,53.0,38.0,46.0,29.0,26.0,19.0,19.0,10.0,8.0,13.0,21.0 L84015,32.0,29.0,31.0,65.0,39.0,48.0,53.0,62.0,57.0,57.0,82.0,76.0,77.0,81.0,65.0,95.0,94.0,75.0,60.0,61.0,44.0,41.0,43.0,39.0,36.0,47.0,35.0,39.0,47.0,34.0,44.0,40.0,35.0,50.0,42.0,45.0,54.0,48.0,45.0,74.0,71.0,94.0,83.0,81.0,87.0,78.0,84.0,93.0,79.0,69.0,87.0,98.0,83.0,91.0,89.0,93.0,84.0,63.0,96.0,80.0,84.0,71.0,82.0,80.0,54.0,61.0,58.0,52.0,63.0,60.0,62.0,75.0,50.0,67.0,57.0,64.0,49.0,58.0,71.0,50.0,56.0,68.0,51.0,34.0,42.0,34.0,29.0,32.0,24.0,19.0,25.0,21.0,18.0,20.0,8.0,24.0 L84016,22.0,23.0,28.0,20.0,26.0,29.0,29.0,21.0,39.0,38.0,29.0,44.0,32.0,44.0,38.0,36.0,44.0,52.0,46.0,34.0,20.0,27.0,23.0,33.0,28.0,27.0,31.0,19.0,18.0,28.0,35.0,28.0,24.0,24.0,30.0,41.0,43.0,33.0,30.0,37.0,34.0,26.0,36.0,42.0,38.0,44.0,34.0,45.0,53.0,51.0,55.0,57.0,51.0,56.0,63.0,60.0,62.0,55.0,67.0,54.0,53.0,59.0,64.0,49.0,46.0,51.0,48.0,37.0,42.0,34.0,27.0,46.0,46.0,34.0,45.0,44.0,52.0,45.0,40.0,30.0,36.0,33.0,31.0,24.0,24.0,15.0,18.0,14.0,19.0,15.0,9.0,10.0,5.0,6.0,5.0,8.0 L84018,34.0,38.0,53.0,54.0,51.0,47.0,54.0,54.0,60.0,54.0,54.0,67.0,72.0,82.0,65.0,70.0,73.0,59.0,58.0,53.0,45.0,51.0,62.0,53.0,62.0,62.0,66.0,57.0,62.0,86.0,81.0,79.0,78.0,79.0,87.0,89.0,83.0,79.0,75.0,79.0,70.0,74.0,71.0,94.0,73.0,84.0,77.0,69.0,78.0,91.0,63.0,84.0,73.0,92.0,94.0,97.0,108.0,99.0,76.0,110.0,116.0,79.0,94.0,90.0,92.0,88.0,81.0,76.0,73.0,66.0,80.0,91.0,78.0,68.0,83.0,68.0,97.0,77.0,92.0,47.0,75.0,59.0,54.0,54.0,34.0,49.0,32.0,34.0,27.0,28.0,20.0,28.0,27.0,21.0,14.0,36.0 L84021,29.0,48.0,23.0,46.0,41.0,61.0,40.0,33.0,45.0,47.0,54.0,48.0,56.0,51.0,45.0,39.0,49.0,42.0,38.0,42.0,42.0,35.0,35.0,33.0,35.0,38.0,35.0,56.0,50.0,46.0,51.0,50.0,55.0,43.0,67.0,57.0,57.0,54.0,59.0,57.0,43.0,51.0,43.0,52.0,62.0,55.0,46.0,40.0,43.0,43.0,55.0,42.0,67.0,78.0,71.0,74.0,78.0,64.0,94.0,90.0,80.0,87.0,69.0,66.0,69.0,76.0,53.0,66.0,59.0,63.0,51.0,54.0,49.0,59.0,72.0,52.0,60.0,51.0,52.0,52.0,31.0,46.0,31.0,30.0,28.0,18.0,18.0,14.0,14.0,10.0,13.0,12.0,7.0,7.0,4.0,12.0 L84022,21.0,51.0,33.0,30.0,34.0,34.0,37.0,39.0,44.0,39.0,49.0,42.0,43.0,44.0,37.0,34.0,44.0,31.0,32.0,38.0,26.0,28.0,32.0,34.0,42.0,44.0,49.0,53.0,50.0,49.0,44.0,49.0,46.0,57.0,51.0,34.0,64.0,52.0,54.0,52.0,60.0,60.0,55.0,45.0,45.0,57.0,69.0,39.0,44.0,52.0,49.0,49.0,47.0,50.0,48.0,61.0,47.0,54.0,48.0,53.0,68.0,56.0,71.0,49.0,51.0,36.0,43.0,50.0,41.0,30.0,39.0,50.0,38.0,36.0,37.0,41.0,46.0,46.0,48.0,25.0,32.0,27.0,17.0,27.0,14.0,25.0,20.0,13.0,8.0,12.0,13.0,7.0,4.0,5.0,8.0,11.0 L84023,50.0,57.0,55.0,62.0,58.0,42.0,69.0,69.0,54.0,56.0,67.0,75.0,72.0,61.0,58.0,71.0,55.0,75.0,83.0,61.0,57.0,52.0,56.0,62.0,64.0,71.0,66.0,73.0,70.0,93.0,78.0,64.0,78.0,63.0,75.0,91.0,86.0,83.0,92.0,80.0,78.0,68.0,70.0,72.0,100.0,84.0,87.0,71.0,67.0,66.0,70.0,81.0,78.0,88.0,107.0,85.0,112.0,102.0,94.0,101.0,110.0,97.0,86.0,103.0,103.0,87.0,86.0,79.0,83.0,62.0,75.0,83.0,83.0,79.0,66.0,80.0,77.0,76.0,89.0,52.0,70.0,67.0,55.0,40.0,56.0,43.0,41.0,32.0,26.0,17.0,29.0,13.0,15.0,21.0,7.0,24.0 L84024,12.0,10.0,9.0,12.0,14.0,13.0,15.0,24.0,16.0,18.0,19.0,14.0,10.0,24.0,26.0,24.0,27.0,19.0,17.0,19.0,14.0,16.0,14.0,19.0,16.0,20.0,12.0,12.0,17.0,18.0,21.0,22.0,21.0,20.0,29.0,23.0,28.0,20.0,24.0,20.0,24.0,21.0,18.0,26.0,16.0,14.0,18.0,18.0,18.0,23.0,26.0,27.0,28.0,25.0,32.0,33.0,27.0,30.0,35.0,29.0,38.0,29.0,28.0,40.0,41.0,28.0,20.0,25.0,21.0,31.0,27.0,20.0,22.0,13.0,19.0,35.0,24.0,16.0,25.0,21.0,16.0,10.0,22.0,19.0,10.0,10.0,7.0,10.0,7.0,10.0,4.0,2.0,2.0,1.0,1.0,4.0 L84025,8.0,16.0,10.0,20.0,19.0,19.0,20.0,18.0,17.0,18.0,18.0,19.0,21.0,13.0,23.0,27.0,16.0,13.0,26.0,18.0,14.0,20.0,10.0,16.0,15.0,15.0,10.0,9.0,11.0,8.0,12.0,13.0,14.0,20.0,19.0,19.0,26.0,16.0,25.0,23.0,27.0,19.0,27.0,20.0,26.0,20.0,26.0,24.0,21.0,30.0,24.0,27.0,41.0,31.0,37.0,36.0,34.0,39.0,36.0,38.0,41.0,48.0,40.0,42.0,39.0,51.0,53.0,34.0,24.0,35.0,36.0,35.0,41.0,34.0,45.0,47.0,37.0,42.0,45.0,35.0,24.0,30.0,35.0,30.0,30.0,26.0,21.0,17.0,12.0,13.0,16.0,15.0,6.0,10.0,10.0,30.0 L84026,137.0,149.0,115.0,157.0,153.0,160.0,169.0,175.0,193.0,181.0,188.0,198.0,172.0,184.0,179.0,201.0,186.0,185.0,174.0,157.0,156.0,180.0,162.0,162.0,200.0,198.0,234.0,207.0,201.0,230.0,227.0,256.0,220.0,262.0,234.0,252.0,239.0,270.0,256.0,221.0,229.0,201.0,218.0,206.0,201.0,208.0,207.0,169.0,144.0,178.0,162.0,175.0,156.0,178.0,186.0,220.0,195.0,210.0,214.0,207.0,231.0,193.0,175.0,175.0,198.0,172.0,176.0,155.0,158.0,136.0,149.0,153.0,130.0,144.0,135.0,140.0,144.0,151.0,134.0,129.0,109.0,112.0,116.0,82.0,68.0,69.0,62.0,50.0,52.0,37.0,48.0,33.0,32.0,17.0,21.0,45.0 L84027,57.0,80.0,74.0,75.0,74.0,79.0,90.0,92.0,112.0,85.0,108.0,94.0,87.0,103.0,83.0,116.0,107.0,98.0,77.0,77.0,83.0,57.0,76.0,80.0,84.0,78.0,85.0,88.0,95.0,96.0,110.0,102.0,94.0,101.0,99.0,112.0,98.0,134.0,123.0,116.0,117.0,92.0,109.0,99.0,110.0,117.0,103.0,112.0,112.0,104.0,121.0,128.0,119.0,121.0,131.0,139.0,146.0,153.0,162.0,154.0,137.0,135.0,145.0,145.0,127.0,137.0,129.0,124.0,112.0,106.0,104.0,95.0,107.0,103.0,115.0,110.0,117.0,118.0,111.0,64.0,83.0,84.0,71.0,55.0,45.0,38.0,43.0,56.0,35.0,34.0,37.0,27.0,18.0,12.0,11.0,24.0 L84028,44.0,44.0,45.0,51.0,55.0,46.0,55.0,51.0,53.0,69.0,58.0,64.0,53.0,68.0,75.0,71.0,76.0,71.0,69.0,63.0,50.0,63.0,44.0,40.0,57.0,56.0,59.0,71.0,64.0,53.0,65.0,58.0,69.0,78.0,60.0,76.0,66.0,76.0,61.0,86.0,68.0,63.0,67.0,90.0,63.0,70.0,52.0,62.0,46.0,62.0,78.0,70.0,79.0,98.0,90.0,95.0,98.0,102.0,93.0,93.0,120.0,68.0,99.0,77.0,86.0,96.0,95.0,94.0,64.0,74.0,79.0,71.0,82.0,57.0,64.0,73.0,69.0,73.0,73.0,54.0,65.0,61.0,35.0,36.0,29.0,28.0,18.0,28.0,14.0,14.0,21.0,15.0,11.0,7.0,3.0,14.0 L84029,10.0,9.0,20.0,12.0,11.0,15.0,13.0,14.0,15.0,12.0,21.0,13.0,14.0,24.0,15.0,20.0,20.0,16.0,9.0,12.0,12.0,9.0,10.0,12.0,15.0,10.0,16.0,15.0,15.0,16.0,11.0,19.0,21.0,11.0,20.0,25.0,13.0,21.0,22.0,17.0,13.0,19.0,20.0,17.0,16.0,23.0,19.0,15.0,15.0,16.0,22.0,25.0,32.0,24.0,27.0,29.0,30.0,25.0,29.0,35.0,30.0,33.0,24.0,27.0,28.0,23.0,21.0,22.0,24.0,12.0,20.0,21.0,16.0,23.0,21.0,24.0,25.0,32.0,16.0,12.0,18.0,11.0,13.0,10.0,3.0,6.0,7.0,7.0,5.0,2.0,5.0,2.0,1.0,3.0,3.0,3.0 L84030,72.0,78.0,77.0,103.0,100.0,73.0,79.0,91.0,85.0,79.0,81.0,103.0,103.0,99.0,121.0,114.0,133.0,150.0,139.0,82.0,76.0,77.0,68.0,82.0,94.0,103.0,110.0,121.0,133.0,124.0,127.0,131.0,144.0,162.0,143.0,133.0,135.0,135.0,158.0,147.0,123.0,118.0,130.0,127.0,120.0,134.0,122.0,115.0,95.0,106.0,109.0,111.0,120.0,101.0,98.0,79.0,106.0,93.0,102.0,85.0,119.0,130.0,107.0,100.0,102.0,91.0,91.0,83.0,79.0,88.0,76.0,75.0,74.0,62.0,62.0,71.0,64.0,61.0,60.0,56.0,49.0,46.0,47.0,39.0,35.0,38.0,31.0,27.0,29.0,17.0,18.0,18.0,14.0,18.0,13.0,15.0 L84031,11.0,20.0,20.0,19.0,24.0,17.0,33.0,19.0,27.0,28.0,24.0,23.0,28.0,32.0,27.0,30.0,29.0,28.0,33.0,18.0,19.0,26.0,17.0,22.0,22.0,27.0,25.0,25.0,19.0,19.0,27.0,21.0,27.0,19.0,27.0,26.0,35.0,33.0,37.0,27.0,31.0,29.0,27.0,32.0,31.0,32.0,32.0,46.0,28.0,32.0,42.0,44.0,36.0,57.0,48.0,48.0,37.0,57.0,51.0,54.0,59.0,52.0,46.0,51.0,55.0,47.0,44.0,37.0,54.0,43.0,47.0,50.0,50.0,21.0,33.0,36.0,48.0,52.0,48.0,49.0,34.0,34.0,34.0,29.0,22.0,23.0,21.0,23.0,14.0,13.0,17.0,5.0,12.0,12.0,3.0,18.0 L84033,54.0,59.0,73.0,78.0,72.0,100.0,96.0,92.0,89.0,110.0,125.0,116.0,134.0,121.0,133.0,126.0,116.0,115.0,103.0,79.0,64.0,72.0,83.0,79.0,79.0,92.0,90.0,95.0,89.0,87.0,111.0,82.0,85.0,113.0,112.0,127.0,123.0,124.0,113.0,155.0,117.0,130.0,132.0,146.0,133.0,133.0,129.0,109.0,125.0,143.0,126.0,127.0,123.0,145.0,139.0,137.0,139.0,154.0,118.0,149.0,119.0,135.0,139.0,123.0,126.0,122.0,105.0,109.0,98.0,96.0,105.0,81.0,86.0,104.0,90.0,107.0,92.0,103.0,104.0,88.0,83.0,83.0,58.0,65.0,65.0,57.0,67.0,53.0,36.0,34.0,33.0,26.0,26.0,13.0,20.0,33.0 L84034,39.0,51.0,49.0,40.0,54.0,51.0,52.0,81.0,72.0,86.0,82.0,92.0,76.0,90.0,81.0,85.0,77.0,75.0,70.0,56.0,62.0,68.0,66.0,65.0,68.0,73.0,70.0,81.0,81.0,64.0,72.0,76.0,78.0,88.0,101.0,80.0,81.0,91.0,89.0,76.0,109.0,58.0,81.0,111.0,84.0,81.0,90.0,79.0,73.0,62.0,84.0,83.0,87.0,87.0,88.0,100.0,80.0,100.0,92.0,82.0,88.0,85.0,67.0,68.0,82.0,66.0,52.0,60.0,65.0,75.0,55.0,57.0,45.0,66.0,49.0,47.0,51.0,59.0,42.0,45.0,37.0,31.0,37.0,36.0,20.0,31.0,30.0,14.0,14.0,13.0,17.0,7.0,9.0,8.0,5.0,9.0 L84036,53.0,69.0,60.0,62.0,55.0,60.0,63.0,61.0,66.0,67.0,70.0,74.0,63.0,65.0,67.0,84.0,83.0,79.0,49.0,41.0,52.0,49.0,37.0,66.0,46.0,68.0,69.0,61.0,72.0,73.0,83.0,69.0,75.0,96.0,82.0,95.0,96.0,96.0,84.0,71.0,77.0,82.0,79.0,68.0,70.0,76.0,78.0,68.0,74.0,59.0,80.0,74.0,72.0,62.0,71.0,74.0,79.0,73.0,87.0,71.0,90.0,79.0,66.0,81.0,65.0,78.0,58.0,51.0,57.0,62.0,53.0,61.0,56.0,56.0,46.0,56.0,46.0,50.0,74.0,49.0,59.0,46.0,36.0,39.0,40.0,39.0,31.0,31.0,29.0,21.0,15.0,8.0,20.0,8.0,7.0,30.0 L84037,52.0,47.0,71.0,53.0,49.0,55.0,44.0,63.0,71.0,62.0,77.0,57.0,60.0,72.0,59.0,71.0,51.0,68.0,58.0,49.0,42.0,52.0,55.0,48.0,52.0,61.0,62.0,64.0,54.0,79.0,49.0,60.0,55.0,79.0,83.0,76.0,93.0,77.0,75.0,57.0,66.0,61.0,68.0,54.0,69.0,77.0,62.0,69.0,55.0,52.0,61.0,67.0,68.0,78.0,78.0,86.0,78.0,102.0,90.0,116.0,103.0,80.0,101.0,97.0,81.0,90.0,91.0,78.0,81.0,92.0,76.0,85.0,76.0,77.0,107.0,76.0,86.0,92.0,92.0,80.0,65.0,70.0,52.0,57.0,45.0,46.0,33.0,26.0,26.0,20.0,22.0,14.0,9.0,7.0,10.0,22.0 L84038,31.0,31.0,53.0,40.0,35.0,41.0,54.0,53.0,64.0,84.0,57.0,66.0,60.0,89.0,62.0,76.0,70.0,71.0,53.0,59.0,35.0,58.0,40.0,45.0,52.0,41.0,50.0,41.0,45.0,50.0,53.0,39.0,47.0,55.0,68.0,52.0,64.0,64.0,79.0,57.0,75.0,60.0,59.0,83.0,84.0,66.0,73.0,74.0,54.0,89.0,97.0,74.0,94.0,94.0,69.0,75.0,77.0,83.0,93.0,96.0,109.0,110.0,69.0,110.0,85.0,93.0,75.0,83.0,74.0,59.0,70.0,78.0,61.0,67.0,65.0,68.0,86.0,81.0,90.0,67.0,67.0,67.0,47.0,38.0,34.0,49.0,33.0,40.0,34.0,31.0,12.0,14.0,16.0,6.0,8.0,26.0 L84039,33.0,32.0,28.0,34.0,29.0,31.0,37.0,48.0,43.0,36.0,58.0,46.0,49.0,47.0,49.0,47.0,52.0,50.0,49.0,36.0,43.0,42.0,38.0,42.0,37.0,34.0,51.0,42.0,48.0,47.0,61.0,53.0,60.0,49.0,59.0,48.0,64.0,50.0,56.0,52.0,68.0,48.0,58.0,39.0,66.0,56.0,56.0,60.0,54.0,55.0,72.0,62.0,83.0,74.0,75.0,78.0,68.0,71.0,69.0,66.0,60.0,81.0,78.0,62.0,65.0,52.0,56.0,75.0,53.0,51.0,48.0,56.0,61.0,56.0,48.0,48.0,54.0,60.0,53.0,38.0,47.0,27.0,22.0,30.0,18.0,22.0,23.0,13.0,12.0,14.0,11.0,15.0,5.0,3.0,2.0,9.0 L84040,37.0,42.0,49.0,59.0,60.0,64.0,65.0,71.0,88.0,75.0,72.0,85.0,82.0,73.0,87.0,77.0,66.0,67.0,67.0,51.0,41.0,28.0,50.0,55.0,43.0,53.0,57.0,52.0,65.0,51.0,66.0,54.0,58.0,66.0,60.0,73.0,71.0,66.0,91.0,75.0,85.0,86.0,100.0,78.0,86.0,77.0,89.0,70.0,83.0,78.0,83.0,85.0,82.0,119.0,92.0,87.0,97.0,109.0,110.0,118.0,115.0,108.0,99.0,87.0,103.0,76.0,90.0,70.0,91.0,89.0,82.0,90.0,75.0,84.0,81.0,90.0,86.0,105.0,82.0,65.0,68.0,62.0,67.0,59.0,48.0,41.0,48.0,44.0,33.0,32.0,32.0,22.0,15.0,24.0,8.0,42.0 L84041,41.0,30.0,49.0,43.0,48.0,68.0,52.0,64.0,57.0,58.0,56.0,105.0,97.0,128.0,187.0,181.0,220.0,219.0,142.0,49.0,49.0,44.0,44.0,62.0,72.0,70.0,79.0,56.0,76.0,77.0,74.0,77.0,91.0,79.0,97.0,90.0,78.0,95.0,67.0,97.0,88.0,80.0,83.0,85.0,88.0,82.0,83.0,87.0,79.0,96.0,84.0,103.0,98.0,106.0,85.0,90.0,103.0,117.0,109.0,99.0,108.0,108.0,85.0,86.0,91.0,72.0,63.0,89.0,77.0,64.0,65.0,72.0,64.0,53.0,56.0,66.0,61.0,81.0,72.0,67.0,47.0,58.0,51.0,37.0,41.0,42.0,42.0,35.0,36.0,27.0,16.0,33.0,12.0,12.0,14.0,25.0 L84043,13.0,15.0,20.0,12.0,17.0,13.0,11.0,22.0,21.0,24.0,22.0,29.0,26.0,27.0,24.0,24.0,24.0,34.0,29.0,18.0,29.0,18.0,16.0,7.0,21.0,11.0,13.0,15.0,28.0,25.0,22.0,15.0,12.0,16.0,22.0,19.0,27.0,35.0,28.0,21.0,25.0,22.0,25.0,33.0,28.0,29.0,30.0,25.0,27.0,28.0,33.0,36.0,26.0,42.0,46.0,30.0,54.0,47.0,49.0,52.0,51.0,55.0,53.0,35.0,44.0,38.0,40.0,33.0,39.0,37.0,39.0,36.0,51.0,33.0,34.0,31.0,29.0,28.0,37.0,36.0,33.0,29.0,33.0,23.0,17.0,28.0,20.0,27.0,12.0,13.0,7.0,13.0,16.0,6.0,5.0,17.0 L84045,20.0,29.0,23.0,36.0,34.0,31.0,30.0,29.0,37.0,31.0,47.0,44.0,35.0,37.0,43.0,45.0,44.0,40.0,40.0,43.0,33.0,37.0,30.0,34.0,31.0,28.0,23.0,25.0,24.0,43.0,26.0,39.0,36.0,33.0,41.0,35.0,58.0,38.0,32.0,44.0,46.0,49.0,47.0,31.0,37.0,50.0,49.0,37.0,32.0,46.0,31.0,45.0,55.0,56.0,52.0,44.0,58.0,54.0,51.0,60.0,55.0,58.0,54.0,66.0,70.0,50.0,57.0,53.0,47.0,49.0,49.0,41.0,40.0,44.0,45.0,55.0,38.0,46.0,56.0,36.0,42.0,30.0,33.0,20.0,28.0,22.0,21.0,22.0,17.0,18.0,15.0,9.0,17.0,7.0,11.0,21.0 L84046,25.0,27.0,17.0,34.0,31.0,39.0,28.0,32.0,27.0,33.0,32.0,31.0,41.0,29.0,40.0,25.0,24.0,36.0,26.0,21.0,26.0,19.0,19.0,18.0,30.0,29.0,27.0,39.0,31.0,37.0,48.0,42.0,30.0,44.0,38.0,32.0,41.0,38.0,43.0,43.0,44.0,37.0,37.0,27.0,42.0,33.0,25.0,30.0,29.0,41.0,39.0,34.0,47.0,40.0,41.0,50.0,46.0,53.0,46.0,44.0,41.0,36.0,59.0,44.0,47.0,26.0,27.0,43.0,47.0,39.0,40.0,30.0,38.0,34.0,24.0,30.0,44.0,47.0,23.0,22.0,29.0,34.0,18.0,27.0,14.0,14.0,22.0,22.0,9.0,10.0,12.0,5.0,8.0,9.0,3.0,9.0 L84047,92.0,75.0,73.0,67.0,70.0,87.0,100.0,77.0,85.0,111.0,99.0,102.0,101.0,110.0,96.0,108.0,107.0,88.0,95.0,62.0,56.0,68.0,74.0,63.0,85.0,94.0,91.0,127.0,129.0,109.0,98.0,107.0,107.0,134.0,143.0,123.0,129.0,134.0,128.0,113.0,116.0,110.0,115.0,105.0,116.0,103.0,97.0,106.0,106.0,88.0,82.0,101.0,98.0,104.0,101.0,97.0,106.0,110.0,118.0,122.0,110.0,101.0,98.0,115.0,107.0,103.0,80.0,91.0,101.0,85.0,57.0,70.0,98.0,78.0,74.0,81.0,69.0,96.0,103.0,77.0,64.0,74.0,57.0,49.0,45.0,44.0,40.0,36.0,34.0,32.0,21.0,31.0,17.0,16.0,13.0,36.0 L84048,32.0,38.0,57.0,52.0,61.0,37.0,59.0,79.0,75.0,53.0,61.0,64.0,52.0,65.0,57.0,70.0,49.0,62.0,43.0,38.0,43.0,35.0,32.0,44.0,39.0,41.0,45.0,45.0,54.0,51.0,54.0,49.0,51.0,62.0,57.0,73.0,68.0,79.0,61.0,59.0,78.0,64.0,64.0,59.0,70.0,77.0,76.0,57.0,60.0,72.0,60.0,61.0,72.0,58.0,66.0,70.0,62.0,68.0,74.0,82.0,84.0,74.0,76.0,69.0,62.0,81.0,62.0,61.0,63.0,46.0,68.0,61.0,75.0,75.0,73.0,73.0,68.0,80.0,88.0,48.0,58.0,59.0,61.0,49.0,40.0,43.0,47.0,31.0,27.0,29.0,20.0,22.0,19.0,13.0,12.0,21.0 L84049,34.0,28.0,45.0,34.0,39.0,46.0,32.0,38.0,39.0,45.0,50.0,49.0,43.0,30.0,58.0,49.0,43.0,50.0,41.0,33.0,41.0,52.0,65.0,52.0,77.0,80.0,91.0,74.0,76.0,77.0,69.0,66.0,67.0,77.0,74.0,76.0,68.0,70.0,84.0,70.0,57.0,63.0,52.0,62.0,65.0,59.0,52.0,39.0,46.0,58.0,42.0,35.0,36.0,43.0,57.0,47.0,40.0,46.0,58.0,45.0,49.0,39.0,45.0,43.0,38.0,35.0,39.0,32.0,34.0,30.0,33.0,35.0,24.0,32.0,26.0,26.0,32.0,34.0,30.0,27.0,23.0,25.0,25.0,22.0,18.0,15.0,15.0,9.0,12.0,12.0,16.0,10.0,7.0,4.0,8.0,19.0 L84050,224.0,226.0,250.0,232.0,231.0,249.0,261.0,289.0,251.0,332.0,279.0,287.0,307.0,302.0,332.0,305.0,317.0,287.0,241.0,232.0,205.0,216.0,210.0,231.0,264.0,283.0,274.0,313.0,322.0,302.0,338.0,345.0,324.0,346.0,347.0,343.0,367.0,381.0,354.0,341.0,333.0,320.0,336.0,299.0,286.0,260.0,249.0,223.0,205.0,233.0,220.0,241.0,216.0,224.0,242.0,246.0,239.0,228.0,213.0,251.0,221.0,215.0,218.0,222.0,185.0,192.0,163.0,155.0,160.0,131.0,127.0,128.0,122.0,127.0,113.0,110.0,98.0,91.0,114.0,81.0,83.0,81.0,99.0,58.0,54.0,57.0,47.0,46.0,35.0,28.0,29.0,26.0,20.0,27.0,13.0,26.0 L84051,28.0,40.0,37.0,39.0,38.0,47.0,64.0,48.0,51.0,57.0,69.0,59.0,71.0,77.0,73.0,50.0,58.0,67.0,68.0,47.0,30.0,39.0,50.0,44.0,37.0,34.0,36.0,54.0,48.0,54.0,58.0,49.0,60.0,61.0,64.0,50.0,63.0,56.0,55.0,51.0,71.0,51.0,63.0,55.0,85.0,69.0,65.0,65.0,63.0,60.0,69.0,71.0,82.0,66.0,67.0,73.0,75.0,79.0,66.0,89.0,80.0,62.0,77.0,82.0,64.0,79.0,66.0,66.0,61.0,55.0,49.0,55.0,54.0,49.0,51.0,47.0,53.0,63.0,47.0,37.0,34.0,40.0,38.0,28.0,20.0,18.0,11.0,16.0,12.0,8.0,13.0,7.0,7.0,7.0,5.0,10.0 L84052,39.0,50.0,37.0,44.0,56.0,35.0,56.0,45.0,49.0,49.0,56.0,37.0,49.0,52.0,53.0,54.0,70.0,55.0,71.0,68.0,80.0,95.0,67.0,75.0,91.0,81.0,89.0,105.0,89.0,74.0,74.0,78.0,90.0,93.0,72.0,71.0,100.0,88.0,80.0,68.0,67.0,65.0,77.0,44.0,60.0,63.0,68.0,49.0,56.0,38.0,53.0,66.0,69.0,49.0,52.0,56.0,64.0,53.0,49.0,75.0,58.0,54.0,39.0,53.0,49.0,43.0,45.0,46.0,37.0,48.0,35.0,33.0,29.0,33.0,19.0,25.0,33.0,34.0,30.0,35.0,22.0,20.0,20.0,18.0,16.0,23.0,22.0,21.0,16.0,8.0,13.0,4.0,13.0,9.0,4.0,18.0 L84053,21.0,27.0,26.0,28.0,33.0,39.0,33.0,34.0,53.0,46.0,37.0,49.0,49.0,51.0,50.0,49.0,45.0,46.0,36.0,37.0,29.0,32.0,25.0,22.0,23.0,30.0,35.0,28.0,28.0,36.0,34.0,37.0,40.0,34.0,34.0,31.0,36.0,38.0,51.0,56.0,49.0,41.0,61.0,46.0,51.0,49.0,52.0,39.0,40.0,42.0,51.0,53.0,58.0,61.0,52.0,69.0,69.0,54.0,69.0,66.0,78.0,63.0,68.0,68.0,50.0,67.0,52.0,52.0,53.0,48.0,44.0,45.0,58.0,59.0,52.0,73.0,43.0,63.0,62.0,45.0,43.0,39.0,37.0,33.0,23.0,27.0,31.0,24.0,16.0,14.0,15.0,13.0,7.0,8.0,7.0,20.0 L84054,44.0,52.0,78.0,79.0,50.0,61.0,68.0,86.0,62.0,75.0,80.0,62.0,72.0,68.0,81.0,80.0,64.0,73.0,62.0,51.0,67.0,62.0,62.0,63.0,82.0,61.0,75.0,72.0,69.0,69.0,81.0,80.0,93.0,81.0,102.0,108.0,100.0,88.0,85.0,93.0,93.0,98.0,96.0,101.0,99.0,88.0,83.0,86.0,83.0,73.0,102.0,101.0,90.0,112.0,90.0,99.0,96.0,102.0,123.0,83.0,90.0,91.0,112.0,84.0,93.0,85.0,86.0,81.0,79.0,72.0,92.0,79.0,96.0,73.0,65.0,74.0,73.0,76.0,81.0,60.0,67.0,55.0,46.0,37.0,35.0,34.0,25.0,42.0,26.0,24.0,16.0,11.0,13.0,11.0,9.0,24.0 L84058,41.0,29.0,37.0,42.0,25.0,51.0,38.0,44.0,49.0,49.0,63.0,52.0,59.0,61.0,60.0,40.0,48.0,48.0,51.0,53.0,55.0,59.0,71.0,51.0,66.0,59.0,73.0,63.0,75.0,71.0,64.0,58.0,71.0,57.0,89.0,61.0,70.0,76.0,74.0,64.0,73.0,79.0,71.0,60.0,64.0,63.0,50.0,48.0,46.0,31.0,51.0,52.0,55.0,56.0,61.0,50.0,57.0,64.0,51.0,58.0,65.0,70.0,38.0,54.0,46.0,50.0,46.0,33.0,42.0,42.0,43.0,38.0,30.0,43.0,28.0,45.0,35.0,47.0,40.0,40.0,37.0,39.0,27.0,28.0,17.0,16.0,18.0,17.0,13.0,18.0,10.0,6.0,11.0,10.0,5.0,15.0 L84059,40.0,35.0,38.0,37.0,46.0,44.0,53.0,41.0,48.0,34.0,43.0,31.0,40.0,42.0,33.0,43.0,44.0,36.0,37.0,28.0,33.0,37.0,36.0,33.0,35.0,25.0,40.0,47.0,58.0,73.0,79.0,83.0,79.0,78.0,84.0,75.0,70.0,92.0,69.0,57.0,72.0,66.0,56.0,62.0,52.0,43.0,55.0,50.0,56.0,48.0,53.0,45.0,43.0,46.0,46.0,48.0,44.0,46.0,39.0,44.0,65.0,67.0,52.0,47.0,47.0,41.0,46.0,42.0,38.0,30.0,32.0,38.0,35.0,37.0,44.0,36.0,26.0,39.0,47.0,28.0,28.0,29.0,29.0,24.0,23.0,25.0,19.0,16.0,17.0,13.0,16.0,6.0,6.0,4.0,,15.0 L84060,51.0,55.0,43.0,52.0,52.0,44.0,63.0,53.0,47.0,51.0,62.0,48.0,53.0,50.0,44.0,53.0,61.0,54.0,43.0,42.0,45.0,36.0,49.0,55.0,49.0,56.0,51.0,63.0,54.0,54.0,57.0,71.0,70.0,83.0,68.0,92.0,78.0,73.0,54.0,66.0,46.0,61.0,64.0,52.0,71.0,54.0,62.0,69.0,46.0,64.0,63.0,71.0,79.0,70.0,82.0,70.0,82.0,86.0,81.0,79.0,97.0,95.0,84.0,85.0,98.0,73.0,77.0,76.0,81.0,65.0,84.0,74.0,68.0,56.0,64.0,77.0,65.0,85.0,79.0,55.0,50.0,65.0,42.0,36.0,40.0,26.0,34.0,39.0,22.0,20.0,19.0,11.0,18.0,13.0,9.0,21.0 L84063,14.0,13.0,17.0,28.0,14.0,29.0,24.0,16.0,24.0,23.0,31.0,29.0,31.0,23.0,23.0,32.0,27.0,29.0,27.0,15.0,25.0,30.0,18.0,19.0,17.0,25.0,21.0,16.0,15.0,26.0,22.0,25.0,22.0,24.0,17.0,20.0,23.0,33.0,27.0,28.0,33.0,29.0,33.0,37.0,32.0,27.0,37.0,37.0,27.0,26.0,21.0,39.0,33.0,42.0,44.0,37.0,43.0,40.0,53.0,53.0,47.0,45.0,52.0,50.0,44.0,34.0,42.0,43.0,40.0,36.0,48.0,28.0,27.0,30.0,25.0,33.0,19.0,34.0,18.0,23.0,27.0,16.0,18.0,7.0,14.0,12.0,12.0,7.0,12.0,7.0,12.0,2.0,4.0,2.0,2.0,2.0 L84065,27.0,41.0,27.0,32.0,28.0,40.0,41.0,42.0,44.0,46.0,35.0,45.0,44.0,52.0,62.0,41.0,59.0,59.0,51.0,40.0,28.0,41.0,41.0,34.0,42.0,48.0,28.0,41.0,40.0,42.0,46.0,57.0,42.0,47.0,50.0,52.0,58.0,64.0,55.0,55.0,58.0,61.0,51.0,51.0,53.0,70.0,65.0,55.0,53.0,65.0,68.0,60.0,68.0,67.0,68.0,77.0,72.0,60.0,89.0,67.0,76.0,77.0,73.0,91.0,70.0,63.0,60.0,77.0,54.0,57.0,75.0,63.0,46.0,62.0,62.0,71.0,45.0,55.0,49.0,48.0,40.0,33.0,29.0,25.0,22.0,28.0,17.0,24.0,16.0,12.0,18.0,7.0,20.0,11.0,11.0,28.0 L84067,51.0,65.0,48.0,70.0,60.0,62.0,72.0,63.0,55.0,76.0,48.0,65.0,67.0,53.0,66.0,56.0,53.0,54.0,46.0,46.0,37.0,46.0,30.0,43.0,49.0,38.0,68.0,59.0,68.0,80.0,73.0,77.0,75.0,77.0,88.0,85.0,84.0,78.0,86.0,79.0,70.0,77.0,66.0,72.0,106.0,63.0,57.0,54.0,72.0,50.0,58.0,61.0,54.0,50.0,67.0,66.0,67.0,73.0,75.0,73.0,47.0,74.0,56.0,61.0,64.0,62.0,60.0,72.0,53.0,55.0,53.0,46.0,44.0,49.0,44.0,52.0,41.0,43.0,52.0,39.0,36.0,33.0,33.0,24.0,19.0,21.0,15.0,15.0,11.0,11.0,9.0,19.0,7.0,4.0,4.0,21.0 L84068,23.0,31.0,28.0,32.0,25.0,30.0,34.0,29.0,25.0,29.0,33.0,25.0,22.0,21.0,26.0,25.0,25.0,20.0,17.0,23.0,23.0,14.0,15.0,21.0,27.0,24.0,24.0,35.0,30.0,30.0,30.0,41.0,35.0,39.0,35.0,32.0,33.0,29.0,38.0,34.0,41.0,35.0,37.0,52.0,32.0,33.0,38.0,27.0,36.0,25.0,44.0,26.0,39.0,36.0,45.0,46.0,35.0,56.0,48.0,53.0,42.0,50.0,57.0,45.0,36.0,51.0,44.0,62.0,48.0,33.0,39.0,53.0,41.0,36.0,37.0,46.0,35.0,49.0,47.0,33.0,26.0,47.0,29.0,31.0,23.0,23.0,24.0,12.0,13.0,13.0,12.0,14.0,9.0,7.0,3.0,8.0 L84069,46.0,39.0,53.0,39.0,54.0,34.0,51.0,59.0,63.0,62.0,63.0,65.0,63.0,69.0,83.0,76.0,80.0,80.0,59.0,62.0,61.0,61.0,53.0,55.0,66.0,64.0,69.0,46.0,84.0,78.0,50.0,70.0,72.0,73.0,89.0,81.0,73.0,88.0,69.0,70.0,67.0,71.0,75.0,85.0,88.0,82.0,71.0,70.0,72.0,78.0,62.0,82.0,87.0,91.0,100.0,99.0,125.0,100.0,132.0,106.0,110.0,118.0,109.0,115.0,107.0,94.0,103.0,114.0,94.0,114.0,96.0,84.0,114.0,101.0,87.0,83.0,89.0,91.0,82.0,70.0,76.0,71.0,60.0,52.0,49.0,49.0,40.0,28.0,36.0,22.0,32.0,22.0,16.0,13.0,13.0,33.0 L84072,16.0,28.0,22.0,21.0,19.0,18.0,22.0,25.0,20.0,23.0,21.0,22.0,23.0,29.0,20.0,23.0,25.0,21.0,16.0,21.0,23.0,12.0,21.0,22.0,18.0,26.0,26.0,17.0,31.0,21.0,37.0,24.0,37.0,33.0,30.0,32.0,34.0,28.0,35.0,34.0,29.0,20.0,21.0,34.0,28.0,25.0,27.0,31.0,28.0,19.0,37.0,28.0,35.0,31.0,42.0,43.0,49.0,38.0,55.0,42.0,41.0,50.0,48.0,40.0,48.0,38.0,41.0,43.0,23.0,34.0,30.0,30.0,46.0,29.0,27.0,37.0,29.0,35.0,34.0,27.0,33.0,24.0,15.0,14.0,31.0,15.0,16.0,15.0,20.0,9.0,10.0,12.0,9.0,7.0,3.0,10.0 L84075,26.0,37.0,40.0,50.0,31.0,46.0,43.0,53.0,48.0,48.0,60.0,47.0,56.0,57.0,48.0,60.0,57.0,53.0,43.0,40.0,50.0,41.0,39.0,44.0,43.0,49.0,48.0,42.0,62.0,57.0,57.0,42.0,69.0,69.0,63.0,63.0,55.0,82.0,51.0,69.0,70.0,69.0,56.0,61.0,53.0,65.0,76.0,70.0,51.0,70.0,51.0,66.0,80.0,68.0,70.0,62.0,77.0,62.0,64.0,69.0,57.0,54.0,69.0,62.0,58.0,63.0,63.0,56.0,42.0,49.0,33.0,49.0,40.0,51.0,50.0,40.0,57.0,59.0,57.0,42.0,45.0,49.0,26.0,23.0,31.0,32.0,22.0,28.0,21.0,20.0,25.0,12.0,8.0,8.0,10.0,11.0 L84077,51.0,59.0,42.0,77.0,65.0,66.0,79.0,60.0,77.0,82.0,67.0,81.0,84.0,73.0,66.0,115.0,94.0,116.0,89.0,63.0,75.0,66.0,64.0,68.0,57.0,50.0,67.0,67.0,75.0,73.0,79.0,99.0,65.0,102.0,84.0,94.0,97.0,106.0,115.0,82.0,80.0,97.0,113.0,88.0,91.0,88.0,76.0,83.0,95.0,82.0,85.0,111.0,105.0,119.0,104.0,112.0,90.0,116.0,124.0,119.0,119.0,119.0,112.0,108.0,99.0,100.0,105.0,101.0,100.0,100.0,74.0,88.0,81.0,81.0,78.0,76.0,75.0,85.0,92.0,65.0,66.0,47.0,63.0,51.0,41.0,52.0,39.0,32.0,37.0,31.0,25.0,26.0,17.0,13.0,11.0,32.0 L84080,40.0,73.0,54.0,58.0,59.0,63.0,58.0,56.0,62.0,65.0,60.0,61.0,63.0,62.0,84.0,67.0,63.0,55.0,66.0,63.0,39.0,54.0,41.0,42.0,50.0,56.0,62.0,69.0,74.0,83.0,70.0,67.0,97.0,87.0,87.0,92.0,86.0,87.0,86.0,79.0,84.0,70.0,65.0,78.0,95.0,69.0,61.0,49.0,83.0,65.0,70.0,87.0,67.0,86.0,76.0,76.0,83.0,87.0,70.0,82.0,95.0,82.0,83.0,81.0,78.0,79.0,76.0,66.0,73.0,78.0,73.0,56.0,63.0,48.0,55.0,55.0,60.0,55.0,71.0,49.0,41.0,44.0,34.0,26.0,27.0,29.0,25.0,14.0,13.0,14.0,14.0,7.0,13.0,4.0,8.0,14.0 L84081,13.0,18.0,20.0,20.0,22.0,22.0,25.0,22.0,23.0,30.0,21.0,25.0,22.0,26.0,34.0,33.0,23.0,28.0,25.0,21.0,41.0,34.0,34.0,28.0,28.0,27.0,32.0,29.0,43.0,34.0,42.0,33.0,31.0,43.0,32.0,25.0,39.0,33.0,30.0,49.0,27.0,21.0,36.0,25.0,30.0,27.0,26.0,20.0,29.0,19.0,32.0,26.0,20.0,27.0,28.0,28.0,27.0,23.0,20.0,27.0,36.0,30.0,18.0,23.0,17.0,22.0,21.0,18.0,8.0,8.0,10.0,9.0,12.0,11.0,12.0,25.0,17.0,16.0,15.0,10.0,19.0,12.0,11.0,11.0,5.0,11.0,7.0,10.0,10.0,5.0,5.0,5.0,4.0,2.0,4.0,8.0 L84084,61.0,64.0,65.0,82.0,71.0,60.0,68.0,82.0,75.0,95.0,83.0,84.0,77.0,77.0,87.0,75.0,61.0,61.0,61.0,49.0,45.0,63.0,43.0,39.0,57.0,66.0,58.0,67.0,75.0,74.0,81.0,92.0,103.0,109.0,92.0,93.0,117.0,104.0,129.0,98.0,95.0,116.0,78.0,77.0,76.0,91.0,89.0,70.0,50.0,76.0,58.0,70.0,60.0,66.0,78.0,58.0,67.0,61.0,71.0,66.0,84.0,58.0,60.0,75.0,57.0,62.0,63.0,56.0,47.0,44.0,61.0,57.0,49.0,47.0,35.0,35.0,41.0,46.0,40.0,30.0,30.0,40.0,24.0,27.0,27.0,22.0,17.0,25.0,11.0,10.0,11.0,10.0,7.0,10.0,7.0,22.0 L84085,9.0,12.0,22.0,17.0,17.0,19.0,14.0,22.0,13.0,16.0,22.0,18.0,28.0,25.0,23.0,23.0,22.0,21.0,14.0,15.0,18.0,19.0,11.0,16.0,9.0,12.0,17.0,16.0,20.0,17.0,15.0,25.0,31.0,23.0,21.0,17.0,23.0,26.0,24.0,23.0,24.0,20.0,20.0,16.0,30.0,26.0,18.0,22.0,20.0,23.0,26.0,24.0,19.0,18.0,22.0,34.0,20.0,24.0,20.0,25.0,33.0,22.0,21.0,28.0,27.0,22.0,17.0,19.0,25.0,31.0,21.0,19.0,27.0,26.0,23.0,31.0,25.0,29.0,35.0,16.0,20.0,20.0,13.0,12.0,9.0,10.0,16.0,7.0,5.0,7.0,5.0,3.0,3.0,2.0,2.0,11.0 L84606,39.0,53.0,43.0,39.0,44.0,47.0,53.0,56.0,53.0,54.0,58.0,60.0,58.0,65.0,53.0,46.0,59.0,67.0,69.0,81.0,93.0,82.0,78.0,70.0,69.0,48.0,78.0,66.0,55.0,74.0,64.0,69.0,75.0,64.0,81.0,86.0,58.0,72.0,83.0,68.0,62.0,61.0,75.0,61.0,61.0,80.0,65.0,68.0,66.0,56.0,49.0,81.0,65.0,100.0,73.0,87.0,74.0,81.0,96.0,103.0,97.0,89.0,103.0,78.0,93.0,88.0,87.0,72.0,69.0,69.0,84.0,79.0,69.0,46.0,69.0,69.0,81.0,59.0,86.0,65.0,62.0,60.0,46.0,35.0,45.0,43.0,39.0,33.0,32.0,16.0,21.0,16.0,14.0,15.0,11.0,15.0 L84613,6.0,16.0,19.0,24.0,19.0,15.0,18.0,25.0,23.0,19.0,14.0,24.0,16.0,24.0,22.0,17.0,16.0,18.0,20.0,14.0,14.0,17.0,19.0,11.0,11.0,17.0,21.0,16.0,11.0,19.0,20.0,19.0,28.0,23.0,24.0,29.0,20.0,23.0,27.0,19.0,19.0,19.0,19.0,20.0,15.0,21.0,23.0,18.0,12.0,18.0,24.0,19.0,25.0,23.0,25.0,34.0,28.0,26.0,27.0,21.0,20.0,17.0,15.0,27.0,28.0,20.0,13.0,20.0,29.0,25.0,25.0,21.0,17.0,23.0,9.0,19.0,16.0,20.0,23.0,21.0,9.0,12.0,19.0,17.0,9.0,19.0,13.0,5.0,6.0,4.0,7.0,1.0,3.0,3.0,6.0,4.0 L84617,37.0,51.0,39.0,37.0,50.0,50.0,68.0,50.0,45.0,46.0,60.0,43.0,48.0,37.0,47.0,46.0,49.0,48.0,37.0,32.0,34.0,22.0,31.0,29.0,35.0,26.0,41.0,47.0,59.0,47.0,54.0,63.0,67.0,62.0,70.0,77.0,52.0,66.0,72.0,57.0,69.0,68.0,62.0,66.0,64.0,61.0,64.0,57.0,36.0,44.0,40.0,40.0,38.0,46.0,37.0,35.0,50.0,53.0,40.0,46.0,55.0,38.0,48.0,26.0,33.0,43.0,37.0,31.0,28.0,26.0,27.0,18.0,26.0,34.0,25.0,22.0,16.0,21.0,16.0,13.0,14.0,12.0,17.0,5.0,11.0,12.0,11.0,3.0,6.0,6.0,4.0,2.0,2.0,1.0,2.0,6.0 Y00054,,,,,,,,,,,,,,,,,,,,,,,,,1.0,1.0,,,1.0,1.0,1.0,2.0,,1.0,1.0,4.0,,2.0,3.0,1.0,1.0,1.0,,,1.0,,3.0,,2.0,,,1.0,,,1.0,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,,,,,,,,,, Y02519,74.0,45.0,54.0,59.0,79.0,77.0,70.0,73.0,77.0,63.0,78.0,67.0,57.0,61.0,75.0,55.0,58.0,36.0,51.0,49.0,65.0,62.0,76.0,52.0,74.0,68.0,85.0,90.0,105.0,106.0,116.0,131.0,110.0,121.0,130.0,107.0,112.0,104.0,108.0,91.0,91.0,88.0,68.0,62.0,72.0,47.0,47.0,52.0,61.0,43.0,43.0,39.0,33.0,40.0,37.0,36.0,40.0,39.0,41.0,43.0,40.0,49.0,33.0,42.0,31.0,24.0,39.0,17.0,20.0,19.0,16.0,18.0,18.0,17.0,18.0,15.0,17.0,13.0,15.0,9.0,11.0,5.0,4.0,4.0,8.0,4.0,3.0,5.0,,2.0,8.0,3.0,3.0,1.0,,3.0 Y05212,33.0,39.0,39.0,40.0,30.0,47.0,41.0,42.0,55.0,50.0,51.0,41.0,50.0,40.0,48.0,42.0,35.0,24.0,31.0,27.0,26.0,29.0,32.0,44.0,46.0,45.0,41.0,70.0,53.0,47.0,51.0,44.0,76.0,53.0,74.0,61.0,71.0,63.0,53.0,65.0,61.0,72.0,43.0,38.0,43.0,42.0,31.0,32.0,29.0,34.0,26.0,20.0,27.0,27.0,28.0,28.0,24.0,25.0,24.0,28.0,18.0,23.0,19.0,24.0,11.0,28.0,19.0,20.0,16.0,17.0,15.0,16.0,13.0,14.0,12.0,17.0,6.0,7.0,13.0,6.0,11.0,12.0,7.0,4.0,4.0,5.0,5.0,2.0,8.0,3.0,4.0,1.0,1.0,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 J82001,49.0,48.0,44.0,53.0,56.0,54.0,59.0,55.0,60.0,45.0,52.0,69.0,62.0,68.0,78.0,71.0,65.0,78.0,55.0,75.0,72.0,61.0,74.0,97.0,81.0,87.0,84.0,68.0,74.0,65.0,82.0,69.0,84.0,76.0,71.0,75.0,83.0,70.0,86.0,84.0,67.0,80.0,57.0,57.0,80.0,69.0,68.0,61.0,60.0,51.0,46.0,52.0,57.0,59.0,47.0,42.0,47.0,51.0,55.0,34.0,48.0,35.0,41.0,36.0,43.0,31.0,35.0,29.0,28.0,23.0,39.0,27.0,22.0,28.0,24.0,28.0,23.0,22.0,17.0,18.0,15.0,15.0,17.0,6.0,7.0,12.0,7.0,5.0,12.0,10.0,2.0,8.0,6.0,4.0,1.0,6.0 J82002,71.0,81.0,67.0,84.0,82.0,85.0,94.0,83.0,88.0,94.0,102.0,81.0,93.0,99.0,89.0,90.0,80.0,92.0,77.0,88.0,72.0,62.0,64.0,72.0,77.0,88.0,112.0,92.0,97.0,113.0,96.0,103.0,130.0,120.0,113.0,131.0,141.0,122.0,117.0,105.0,100.0,119.0,88.0,98.0,112.0,112.0,100.0,91.0,93.0,106.0,105.0,85.0,95.0,98.0,83.0,69.0,78.0,82.0,70.0,63.0,84.0,82.0,100.0,68.0,82.0,87.0,72.0,81.0,99.0,63.0,66.0,86.0,84.0,77.0,80.0,80.0,70.0,73.0,58.0,55.0,44.0,32.0,35.0,32.0,18.0,24.0,19.0,18.0,22.0,12.0,6.0,10.0,12.0,8.0,4.0,20.0 J82005,8.0,14.0,18.0,21.0,9.0,17.0,17.0,25.0,18.0,16.0,20.0,18.0,28.0,20.0,25.0,22.0,30.0,14.0,29.0,23.0,18.0,12.0,12.0,23.0,16.0,12.0,18.0,24.0,15.0,22.0,25.0,17.0,16.0,20.0,18.0,16.0,26.0,30.0,20.0,29.0,21.0,16.0,21.0,26.0,36.0,28.0,28.0,20.0,20.0,39.0,27.0,31.0,39.0,36.0,37.0,31.0,38.0,37.0,42.0,52.0,42.0,47.0,54.0,54.0,36.0,39.0,43.0,39.0,34.0,38.0,32.0,34.0,35.0,28.0,25.0,36.0,34.0,39.0,40.0,31.0,18.0,28.0,28.0,17.0,20.0,20.0,18.0,13.0,12.0,17.0,15.0,12.0,5.0,3.0,9.0,8.0 J82007,77.0,76.0,69.0,93.0,101.0,115.0,129.0,123.0,132.0,116.0,136.0,155.0,142.0,148.0,147.0,142.0,157.0,147.0,155.0,126.0,119.0,111.0,129.0,134.0,152.0,137.0,124.0,149.0,135.0,134.0,149.0,130.0,130.0,158.0,145.0,156.0,184.0,186.0,142.0,182.0,165.0,143.0,159.0,153.0,201.0,163.0,164.0,153.0,161.0,181.0,165.0,225.0,193.0,229.0,218.0,206.0,259.0,228.0,246.0,268.0,312.0,295.0,314.0,268.0,290.0,260.0,294.0,252.0,245.0,258.0,262.0,275.0,259.0,283.0,279.0,304.0,314.0,356.0,366.0,270.0,267.0,272.0,227.0,178.0,164.0,198.0,157.0,168.0,148.0,111.0,125.0,91.0,86.0,60.0,56.0,141.0 J82009,57.0,64.0,80.0,76.0,70.0,69.0,75.0,66.0,60.0,56.0,66.0,79.0,72.0,68.0,65.0,80.0,66.0,58.0,72.0,54.0,62.0,62.0,52.0,49.0,68.0,59.0,79.0,79.0,96.0,72.0,79.0,86.0,92.0,94.0,87.0,96.0,82.0,73.0,90.0,78.0,97.0,76.0,90.0,66.0,99.0,91.0,91.0,71.0,92.0,79.0,88.0,95.0,99.0,115.0,123.0,84.0,95.0,125.0,133.0,134.0,132.0,109.0,121.0,142.0,131.0,125.0,135.0,123.0,104.0,110.0,100.0,97.0,102.0,97.0,106.0,86.0,113.0,126.0,134.0,103.0,108.0,100.0,70.0,91.0,56.0,61.0,78.0,56.0,47.0,31.0,59.0,38.0,35.0,29.0,22.0,66.0 J82010,77.0,96.0,99.0,95.0,102.0,102.0,92.0,120.0,124.0,118.0,111.0,112.0,124.0,133.0,115.0,116.0,106.0,115.0,101.0,89.0,77.0,86.0,76.0,102.0,88.0,105.0,108.0,99.0,86.0,118.0,117.0,116.0,139.0,144.0,124.0,143.0,134.0,150.0,141.0,130.0,132.0,143.0,135.0,130.0,133.0,121.0,110.0,108.0,106.0,105.0,101.0,90.0,124.0,131.0,112.0,140.0,150.0,131.0,139.0,131.0,149.0,137.0,136.0,135.0,140.0,117.0,116.0,116.0,118.0,97.0,99.0,106.0,88.0,88.0,90.0,99.0,120.0,109.0,118.0,87.0,73.0,61.0,53.0,48.0,61.0,42.0,53.0,47.0,33.0,30.0,30.0,25.0,25.0,20.0,6.0,29.0 J82012,46.0,49.0,50.0,44.0,51.0,35.0,47.0,42.0,36.0,62.0,61.0,62.0,48.0,64.0,59.0,57.0,61.0,61.0,58.0,50.0,45.0,60.0,48.0,43.0,59.0,57.0,58.0,53.0,67.0,63.0,77.0,79.0,80.0,79.0,80.0,64.0,98.0,65.0,74.0,60.0,75.0,72.0,72.0,74.0,73.0,87.0,67.0,44.0,63.0,79.0,74.0,77.0,87.0,72.0,81.0,65.0,86.0,87.0,85.0,78.0,77.0,83.0,95.0,89.0,76.0,88.0,81.0,72.0,67.0,66.0,55.0,86.0,46.0,56.0,78.0,68.0,83.0,74.0,82.0,54.0,47.0,48.0,53.0,38.0,43.0,30.0,35.0,37.0,25.0,36.0,14.0,12.0,14.0,13.0,9.0,17.0 J82016,36.0,41.0,42.0,46.0,52.0,43.0,54.0,40.0,45.0,44.0,55.0,56.0,59.0,47.0,41.0,40.0,30.0,44.0,43.0,34.0,33.0,35.0,33.0,32.0,35.0,28.0,35.0,41.0,32.0,28.0,42.0,45.0,42.0,50.0,59.0,43.0,64.0,49.0,45.0,64.0,51.0,49.0,53.0,75.0,51.0,45.0,59.0,62.0,38.0,58.0,64.0,68.0,71.0,73.0,79.0,79.0,63.0,93.0,97.0,67.0,86.0,81.0,71.0,71.0,66.0,76.0,69.0,72.0,79.0,65.0,68.0,63.0,54.0,52.0,48.0,62.0,71.0,67.0,70.0,51.0,52.0,43.0,53.0,34.0,34.0,29.0,23.0,20.0,25.0,15.0,7.0,9.0,11.0,4.0,8.0,10.0 J82017,51.0,63.0,68.0,64.0,64.0,64.0,59.0,78.0,81.0,80.0,76.0,59.0,91.0,76.0,87.0,64.0,83.0,87.0,70.0,72.0,67.0,62.0,63.0,51.0,57.0,73.0,68.0,70.0,65.0,80.0,90.0,80.0,82.0,100.0,82.0,79.0,94.0,94.0,75.0,90.0,91.0,83.0,101.0,82.0,88.0,88.0,69.0,86.0,85.0,75.0,84.0,92.0,84.0,95.0,93.0,106.0,102.0,87.0,105.0,90.0,93.0,93.0,96.0,102.0,90.0,83.0,74.0,66.0,74.0,87.0,66.0,74.0,66.0,65.0,59.0,70.0,65.0,76.0,77.0,63.0,45.0,51.0,46.0,40.0,29.0,45.0,31.0,42.0,35.0,22.0,25.0,17.0,15.0,15.0,11.0,17.0 J82018,80.0,86.0,88.0,100.0,105.0,112.0,127.0,92.0,96.0,99.0,117.0,96.0,115.0,92.0,111.0,107.0,102.0,112.0,85.0,98.0,62.0,68.0,75.0,89.0,88.0,79.0,88.0,103.0,97.0,94.0,113.0,105.0,146.0,137.0,133.0,126.0,138.0,139.0,121.0,108.0,104.0,139.0,114.0,114.0,140.0,129.0,126.0,105.0,114.0,125.0,104.0,110.0,115.0,137.0,132.0,134.0,99.0,133.0,132.0,126.0,156.0,118.0,128.0,130.0,139.0,120.0,116.0,94.0,101.0,99.0,108.0,98.0,89.0,97.0,104.0,90.0,98.0,112.0,121.0,72.0,84.0,87.0,61.0,83.0,48.0,54.0,41.0,56.0,50.0,32.0,31.0,26.0,23.0,23.0,15.0,42.0 J82019,61.0,53.0,64.0,65.0,55.0,76.0,93.0,94.0,87.0,94.0,111.0,106.0,96.0,115.0,122.0,105.0,97.0,115.0,79.0,65.0,56.0,60.0,54.0,68.0,73.0,54.0,63.0,65.0,60.0,71.0,75.0,75.0,84.0,85.0,98.0,86.0,102.0,108.0,100.0,78.0,113.0,111.0,107.0,120.0,118.0,111.0,109.0,111.0,116.0,101.0,98.0,106.0,103.0,72.0,100.0,88.0,93.0,93.0,82.0,89.0,89.0,102.0,104.0,93.0,98.0,83.0,88.0,78.0,80.0,95.0,84.0,92.0,91.0,88.0,104.0,101.0,108.0,110.0,93.0,102.0,80.0,70.0,70.0,51.0,65.0,57.0,45.0,40.0,39.0,39.0,37.0,19.0,24.0,19.0,30.0,47.0 J82020,44.0,62.0,76.0,73.0,55.0,86.0,73.0,81.0,100.0,87.0,78.0,100.0,89.0,93.0,104.0,89.0,85.0,74.0,77.0,81.0,48.0,68.0,61.0,61.0,76.0,75.0,77.0,93.0,100.0,94.0,97.0,88.0,91.0,97.0,127.0,102.0,119.0,107.0,111.0,121.0,114.0,111.0,103.0,109.0,113.0,105.0,89.0,85.0,86.0,97.0,91.0,77.0,84.0,85.0,87.0,72.0,93.0,92.0,82.0,83.0,91.0,77.0,90.0,96.0,87.0,85.0,85.0,62.0,83.0,80.0,72.0,54.0,59.0,53.0,61.0,46.0,52.0,53.0,64.0,34.0,46.0,28.0,37.0,32.0,41.0,41.0,19.0,22.0,35.0,10.0,14.0,14.0,8.0,6.0,7.0,18.0 J82021,17.0,18.0,26.0,27.0,17.0,21.0,30.0,37.0,28.0,20.0,30.0,39.0,38.0,29.0,46.0,43.0,30.0,36.0,26.0,27.0,22.0,34.0,31.0,25.0,36.0,28.0,42.0,36.0,40.0,30.0,29.0,34.0,42.0,35.0,42.0,43.0,35.0,33.0,37.0,38.0,45.0,45.0,29.0,45.0,34.0,41.0,33.0,28.0,34.0,39.0,54.0,51.0,60.0,64.0,57.0,68.0,59.0,74.0,64.0,64.0,76.0,75.0,73.0,87.0,69.0,94.0,94.0,84.0,78.0,74.0,78.0,71.0,72.0,85.0,77.0,72.0,77.0,75.0,85.0,80.0,64.0,77.0,56.0,36.0,44.0,29.0,44.0,45.0,28.0,23.0,26.0,29.0,19.0,13.0,11.0,26.0 J82022,40.0,51.0,45.0,38.0,47.0,39.0,58.0,55.0,46.0,51.0,71.0,67.0,78.0,54.0,74.0,69.0,72.0,49.0,50.0,46.0,46.0,44.0,48.0,38.0,69.0,47.0,58.0,64.0,61.0,79.0,87.0,99.0,102.0,101.0,103.0,115.0,104.0,106.0,94.0,90.0,80.0,81.0,91.0,77.0,81.0,66.0,61.0,68.0,62.0,69.0,49.0,58.0,53.0,67.0,75.0,53.0,69.0,52.0,74.0,77.0,65.0,72.0,56.0,58.0,64.0,69.0,46.0,60.0,37.0,38.0,47.0,55.0,45.0,40.0,52.0,55.0,45.0,53.0,67.0,50.0,49.0,38.0,43.0,32.0,29.0,22.0,35.0,27.0,21.0,20.0,11.0,9.0,10.0,11.0,4.0,24.0 J82024,131.0,120.0,110.0,127.0,149.0,137.0,151.0,129.0,152.0,139.0,131.0,133.0,139.0,122.0,96.0,133.0,122.0,112.0,118.0,115.0,138.0,145.0,160.0,196.0,223.0,220.0,240.0,250.0,226.0,226.0,247.0,209.0,225.0,209.0,228.0,231.0,209.0,193.0,188.0,184.0,161.0,153.0,147.0,154.0,139.0,142.0,112.0,123.0,108.0,97.0,100.0,100.0,85.0,79.0,84.0,84.0,65.0,78.0,70.0,59.0,54.0,73.0,76.0,66.0,48.0,43.0,54.0,65.0,55.0,45.0,38.0,33.0,28.0,32.0,34.0,33.0,26.0,31.0,24.0,20.0,25.0,28.0,23.0,15.0,15.0,15.0,7.0,8.0,7.0,10.0,5.0,9.0,10.0,2.0,4.0,9.0 J82025,64.0,88.0,107.0,104.0,87.0,100.0,88.0,86.0,88.0,99.0,75.0,81.0,93.0,95.0,78.0,58.0,74.0,76.0,58.0,59.0,47.0,52.0,69.0,91.0,88.0,82.0,106.0,98.0,120.0,111.0,113.0,113.0,147.0,120.0,133.0,139.0,125.0,120.0,116.0,109.0,126.0,89.0,126.0,87.0,77.0,92.0,102.0,95.0,87.0,122.0,105.0,89.0,105.0,112.0,131.0,119.0,121.0,116.0,122.0,117.0,119.0,109.0,97.0,91.0,105.0,83.0,82.0,80.0,64.0,43.0,66.0,62.0,65.0,57.0,71.0,67.0,46.0,71.0,89.0,62.0,49.0,43.0,58.0,41.0,30.0,28.0,28.0,29.0,29.0,22.0,17.0,15.0,11.0,14.0,6.0,25.0 J82026,50.0,58.0,58.0,73.0,66.0,81.0,66.0,88.0,70.0,70.0,62.0,64.0,80.0,81.0,89.0,77.0,84.0,77.0,64.0,69.0,68.0,95.0,71.0,59.0,82.0,97.0,99.0,100.0,97.0,121.0,114.0,96.0,93.0,87.0,100.0,101.0,104.0,118.0,113.0,118.0,120.0,88.0,96.0,85.0,102.0,97.0,74.0,112.0,94.0,95.0,112.0,103.0,101.0,101.0,126.0,109.0,103.0,117.0,122.0,116.0,124.0,115.0,126.0,130.0,107.0,118.0,97.0,91.0,87.0,91.0,93.0,88.0,85.0,79.0,105.0,99.0,99.0,122.0,131.0,111.0,107.0,93.0,101.0,71.0,58.0,74.0,68.0,55.0,48.0,61.0,40.0,39.0,28.0,27.0,24.0,42.0 J82028,84.0,103.0,113.0,110.0,99.0,110.0,117.0,123.0,123.0,125.0,129.0,136.0,147.0,121.0,116.0,135.0,111.0,116.0,130.0,138.0,106.0,119.0,113.0,146.0,181.0,179.0,193.0,207.0,219.0,213.0,224.0,230.0,227.0,246.0,250.0,241.0,268.0,257.0,242.0,217.0,225.0,235.0,221.0,195.0,197.0,202.0,184.0,192.0,159.0,149.0,166.0,165.0,165.0,174.0,177.0,167.0,169.0,180.0,170.0,169.0,159.0,177.0,173.0,150.0,164.0,130.0,117.0,121.0,127.0,127.0,128.0,115.0,104.0,121.0,101.0,102.0,121.0,145.0,116.0,84.0,78.0,63.0,68.0,53.0,44.0,65.0,48.0,57.0,47.0,44.0,35.0,29.0,17.0,11.0,17.0,48.0 J82033,36.0,45.0,44.0,46.0,46.0,49.0,55.0,55.0,56.0,49.0,61.0,53.0,52.0,42.0,58.0,65.0,39.0,57.0,47.0,29.0,40.0,51.0,32.0,54.0,46.0,46.0,40.0,42.0,63.0,54.0,60.0,52.0,70.0,73.0,66.0,65.0,62.0,65.0,74.0,68.0,60.0,65.0,70.0,60.0,61.0,46.0,45.0,58.0,60.0,68.0,59.0,44.0,60.0,62.0,91.0,61.0,78.0,62.0,72.0,96.0,81.0,57.0,70.0,71.0,74.0,71.0,58.0,57.0,56.0,54.0,51.0,46.0,63.0,59.0,52.0,48.0,65.0,50.0,57.0,54.0,43.0,44.0,34.0,31.0,20.0,25.0,24.0,21.0,13.0,17.0,5.0,12.0,9.0,9.0,5.0,17.0 J82034,50.0,57.0,51.0,69.0,76.0,81.0,82.0,65.0,83.0,72.0,71.0,82.0,86.0,86.0,75.0,82.0,80.0,78.0,84.0,59.0,56.0,51.0,68.0,84.0,60.0,62.0,70.0,72.0,71.0,65.0,79.0,75.0,78.0,64.0,92.0,83.0,88.0,112.0,92.0,94.0,75.0,85.0,83.0,86.0,94.0,84.0,78.0,82.0,84.0,84.0,95.0,95.0,92.0,112.0,113.0,93.0,121.0,103.0,112.0,130.0,106.0,110.0,131.0,97.0,99.0,106.0,97.0,90.0,98.0,86.0,71.0,84.0,92.0,89.0,87.0,70.0,90.0,79.0,83.0,63.0,56.0,46.0,57.0,45.0,33.0,50.0,55.0,38.0,36.0,27.0,18.0,22.0,16.0,16.0,13.0,21.0 J82035,36.0,44.0,46.0,35.0,48.0,42.0,53.0,56.0,58.0,81.0,56.0,74.0,72.0,50.0,55.0,78.0,70.0,81.0,143.0,194.0,194.0,152.0,169.0,179.0,206.0,156.0,166.0,178.0,134.0,121.0,125.0,82.0,111.0,86.0,107.0,94.0,99.0,87.0,101.0,99.0,78.0,85.0,75.0,83.0,75.0,87.0,94.0,96.0,92.0,80.0,95.0,93.0,91.0,109.0,103.0,89.0,90.0,77.0,81.0,72.0,89.0,81.0,84.0,86.0,91.0,90.0,69.0,82.0,78.0,87.0,68.0,64.0,69.0,75.0,69.0,84.0,57.0,82.0,79.0,76.0,77.0,74.0,59.0,65.0,59.0,54.0,52.0,46.0,39.0,27.0,26.0,36.0,37.0,18.0,12.0,48.0 J82036,11.0,11.0,9.0,12.0,13.0,14.0,5.0,17.0,15.0,13.0,23.0,13.0,15.0,10.0,13.0,13.0,21.0,6.0,13.0,14.0,14.0,12.0,7.0,11.0,9.0,8.0,6.0,7.0,9.0,11.0,10.0,16.0,6.0,11.0,8.0,11.0,12.0,10.0,18.0,19.0,13.0,10.0,14.0,16.0,20.0,19.0,12.0,20.0,16.0,20.0,22.0,25.0,19.0,26.0,19.0,30.0,25.0,30.0,30.0,27.0,29.0,25.0,24.0,17.0,25.0,27.0,14.0,26.0,20.0,16.0,29.0,24.0,26.0,18.0,10.0,19.0,13.0,18.0,12.0,16.0,10.0,5.0,15.0,10.0,4.0,9.0,10.0,8.0,3.0,3.0,6.0,4.0,1.0,6.0,1.0,7.0 J82039,43.0,29.0,41.0,43.0,42.0,41.0,59.0,48.0,44.0,56.0,49.0,50.0,62.0,46.0,60.0,44.0,52.0,56.0,56.0,52.0,45.0,46.0,56.0,45.0,42.0,48.0,57.0,59.0,53.0,58.0,65.0,52.0,68.0,76.0,66.0,66.0,59.0,40.0,66.0,58.0,60.0,65.0,57.0,58.0,61.0,59.0,57.0,66.0,64.0,42.0,68.0,82.0,67.0,86.0,80.0,59.0,94.0,90.0,84.0,89.0,112.0,78.0,75.0,82.0,83.0,95.0,78.0,87.0,64.0,71.0,60.0,75.0,91.0,89.0,68.0,66.0,69.0,102.0,94.0,74.0,67.0,69.0,65.0,48.0,36.0,48.0,43.0,30.0,41.0,38.0,17.0,26.0,27.0,16.0,9.0,38.0 J82040,87.0,90.0,101.0,120.0,103.0,120.0,94.0,91.0,128.0,125.0,142.0,101.0,129.0,118.0,124.0,139.0,134.0,124.0,101.0,94.0,100.0,82.0,79.0,79.0,112.0,99.0,92.0,107.0,108.0,122.0,155.0,147.0,158.0,140.0,167.0,163.0,157.0,128.0,191.0,138.0,162.0,164.0,136.0,142.0,136.0,125.0,103.0,97.0,99.0,102.0,96.0,109.0,93.0,97.0,110.0,91.0,80.0,95.0,104.0,103.0,104.0,113.0,98.0,93.0,99.0,98.0,100.0,90.0,82.0,60.0,65.0,69.0,50.0,69.0,66.0,62.0,70.0,74.0,55.0,62.0,49.0,56.0,37.0,46.0,33.0,29.0,34.0,25.0,27.0,17.0,19.0,18.0,9.0,14.0,6.0,11.0 J82042,71.0,64.0,109.0,103.0,107.0,104.0,104.0,126.0,98.0,89.0,95.0,108.0,91.0,103.0,89.0,96.0,83.0,94.0,96.0,63.0,59.0,59.0,54.0,66.0,77.0,63.0,85.0,109.0,104.0,100.0,116.0,114.0,129.0,123.0,148.0,138.0,144.0,127.0,148.0,139.0,118.0,121.0,120.0,120.0,99.0,112.0,103.0,112.0,108.0,109.0,95.0,98.0,89.0,109.0,108.0,121.0,118.0,112.0,109.0,135.0,122.0,111.0,116.0,97.0,119.0,89.0,99.0,103.0,88.0,79.0,69.0,77.0,77.0,76.0,76.0,79.0,75.0,82.0,74.0,51.0,50.0,70.0,55.0,41.0,47.0,25.0,34.0,30.0,17.0,19.0,14.0,14.0,10.0,7.0,4.0,14.0 J82050,103.0,115.0,90.0,112.0,94.0,109.0,115.0,120.0,111.0,127.0,141.0,125.0,126.0,126.0,150.0,142.0,113.0,146.0,197.0,320.0,395.0,364.0,313.0,341.0,396.0,284.0,241.0,203.0,171.0,167.0,167.0,154.0,138.0,176.0,148.0,169.0,172.0,164.0,177.0,193.0,172.0,161.0,171.0,154.0,158.0,166.0,156.0,168.0,158.0,147.0,146.0,162.0,146.0,150.0,166.0,130.0,133.0,120.0,132.0,135.0,137.0,122.0,99.0,110.0,111.0,108.0,87.0,90.0,94.0,86.0,78.0,76.0,89.0,90.0,76.0,59.0,100.0,108.0,88.0,49.0,69.0,50.0,48.0,36.0,32.0,54.0,40.0,27.0,25.0,32.0,27.0,15.0,18.0,9.0,15.0,40.0 J82051,70.0,80.0,108.0,95.0,109.0,103.0,79.0,88.0,85.0,105.0,115.0,101.0,88.0,112.0,93.0,111.0,84.0,89.0,74.0,85.0,68.0,64.0,77.0,76.0,70.0,93.0,97.0,120.0,111.0,116.0,122.0,143.0,116.0,152.0,144.0,135.0,135.0,137.0,136.0,107.0,141.0,143.0,134.0,129.0,126.0,135.0,117.0,106.0,109.0,108.0,123.0,122.0,114.0,128.0,141.0,134.0,146.0,128.0,129.0,150.0,140.0,148.0,123.0,122.0,124.0,133.0,126.0,105.0,116.0,93.0,106.0,95.0,89.0,83.0,86.0,94.0,88.0,79.0,92.0,65.0,74.0,58.0,48.0,48.0,42.0,37.0,43.0,35.0,32.0,37.0,23.0,15.0,19.0,10.0,10.0,27.0 J82053,52.0,58.0,69.0,55.0,41.0,59.0,42.0,51.0,50.0,57.0,49.0,41.0,62.0,72.0,62.0,57.0,62.0,71.0,45.0,49.0,55.0,43.0,38.0,75.0,53.0,78.0,84.0,86.0,84.0,91.0,85.0,88.0,108.0,106.0,89.0,104.0,78.0,95.0,77.0,67.0,61.0,67.0,72.0,74.0,72.0,72.0,83.0,68.0,65.0,67.0,45.0,54.0,63.0,63.0,68.0,61.0,65.0,66.0,91.0,48.0,66.0,79.0,69.0,80.0,59.0,66.0,54.0,46.0,44.0,47.0,51.0,52.0,43.0,41.0,51.0,51.0,60.0,58.0,58.0,42.0,41.0,38.0,44.0,25.0,16.0,26.0,21.0,20.0,16.0,17.0,16.0,8.0,11.0,8.0,5.0,17.0 J82055,38.0,42.0,38.0,52.0,49.0,45.0,51.0,39.0,59.0,42.0,47.0,47.0,46.0,46.0,37.0,37.0,45.0,64.0,30.0,34.0,39.0,36.0,46.0,61.0,52.0,65.0,69.0,88.0,88.0,85.0,80.0,94.0,109.0,96.0,91.0,65.0,82.0,75.0,88.0,86.0,103.0,83.0,101.0,77.0,91.0,69.0,55.0,68.0,56.0,66.0,45.0,66.0,59.0,72.0,82.0,79.0,79.0,76.0,82.0,90.0,73.0,75.0,65.0,67.0,72.0,65.0,69.0,57.0,46.0,54.0,56.0,43.0,42.0,48.0,45.0,64.0,65.0,56.0,47.0,47.0,41.0,58.0,41.0,34.0,36.0,38.0,45.0,34.0,21.0,23.0,14.0,18.0,12.0,10.0,5.0,32.0 J82056,68.0,71.0,79.0,91.0,76.0,91.0,103.0,111.0,111.0,101.0,116.0,105.0,116.0,138.0,133.0,110.0,118.0,119.0,113.0,108.0,88.0,94.0,96.0,91.0,90.0,88.0,84.0,102.0,110.0,109.0,121.0,116.0,133.0,142.0,114.0,121.0,143.0,149.0,135.0,112.0,116.0,126.0,121.0,120.0,109.0,111.0,129.0,102.0,120.0,103.0,127.0,146.0,113.0,140.0,151.0,155.0,176.0,164.0,155.0,175.0,180.0,176.0,157.0,169.0,177.0,167.0,160.0,158.0,141.0,144.0,153.0,134.0,161.0,144.0,125.0,136.0,133.0,166.0,156.0,114.0,104.0,111.0,104.0,77.0,85.0,79.0,64.0,72.0,48.0,41.0,31.0,32.0,38.0,25.0,18.0,44.0 J82058,134.0,88.0,115.0,121.0,114.0,125.0,128.0,142.0,123.0,129.0,125.0,122.0,141.0,135.0,134.0,130.0,113.0,117.0,85.0,86.0,78.0,81.0,84.0,88.0,111.0,131.0,132.0,152.0,137.0,149.0,187.0,207.0,211.0,201.0,192.0,205.0,183.0,217.0,191.0,163.0,191.0,160.0,168.0,150.0,148.0,145.0,135.0,134.0,132.0,125.0,124.0,142.0,126.0,134.0,142.0,123.0,102.0,136.0,116.0,102.0,117.0,117.0,106.0,100.0,85.0,90.0,79.0,83.0,75.0,62.0,68.0,50.0,64.0,57.0,48.0,74.0,67.0,66.0,73.0,53.0,49.0,41.0,42.0,44.0,35.0,39.0,33.0,28.0,25.0,19.0,13.0,15.0,13.0,8.0,7.0,11.0 J82059,7.0,15.0,26.0,17.0,30.0,23.0,22.0,32.0,27.0,32.0,44.0,38.0,34.0,51.0,26.0,48.0,42.0,36.0,34.0,27.0,30.0,39.0,32.0,40.0,33.0,34.0,24.0,24.0,22.0,17.0,27.0,22.0,27.0,24.0,31.0,33.0,24.0,37.0,36.0,28.0,24.0,33.0,40.0,33.0,41.0,41.0,44.0,45.0,41.0,49.0,43.0,59.0,44.0,52.0,57.0,71.0,57.0,63.0,81.0,61.0,62.0,71.0,66.0,69.0,68.0,56.0,56.0,58.0,53.0,48.0,44.0,42.0,46.0,55.0,41.0,45.0,48.0,53.0,51.0,37.0,45.0,32.0,34.0,22.0,21.0,26.0,25.0,19.0,15.0,14.0,13.0,7.0,5.0,3.0,7.0,13.0 J82060,36.0,62.0,54.0,65.0,67.0,81.0,74.0,62.0,66.0,72.0,78.0,63.0,86.0,76.0,74.0,72.0,79.0,74.0,76.0,82.0,93.0,85.0,87.0,103.0,85.0,97.0,106.0,96.0,93.0,99.0,95.0,113.0,102.0,95.0,97.0,94.0,89.0,88.0,98.0,94.0,101.0,90.0,89.0,81.0,73.0,82.0,74.0,80.0,79.0,63.0,60.0,68.0,69.0,78.0,81.0,80.0,67.0,71.0,70.0,77.0,74.0,76.0,73.0,57.0,52.0,61.0,54.0,64.0,49.0,51.0,56.0,39.0,37.0,32.0,50.0,34.0,45.0,33.0,51.0,27.0,26.0,27.0,28.0,46.0,23.0,28.0,14.0,22.0,20.0,17.0,14.0,10.0,4.0,8.0,6.0,17.0 J82061,43.0,57.0,41.0,57.0,86.0,65.0,69.0,67.0,66.0,75.0,75.0,70.0,111.0,80.0,95.0,68.0,84.0,77.0,84.0,58.0,49.0,43.0,60.0,74.0,72.0,65.0,71.0,63.0,75.0,69.0,71.0,76.0,75.0,66.0,86.0,81.0,92.0,92.0,99.0,88.0,85.0,94.0,86.0,92.0,93.0,98.0,61.0,79.0,86.0,85.0,84.0,88.0,94.0,111.0,107.0,93.0,92.0,96.0,93.0,119.0,119.0,103.0,98.0,73.0,79.0,85.0,89.0,81.0,91.0,61.0,88.0,79.0,81.0,67.0,83.0,65.0,66.0,77.0,67.0,65.0,71.0,59.0,54.0,46.0,44.0,52.0,27.0,32.0,22.0,24.0,18.0,12.0,16.0,14.0,10.0,32.0 J82062,69.0,58.0,71.0,57.0,71.0,96.0,85.0,114.0,96.0,94.0,96.0,98.0,100.0,122.0,105.0,123.0,101.0,108.0,113.0,94.0,79.0,93.0,73.0,76.0,98.0,88.0,103.0,94.0,106.0,103.0,102.0,107.0,106.0,117.0,123.0,134.0,120.0,110.0,134.0,149.0,117.0,121.0,134.0,128.0,108.0,111.0,95.0,118.0,113.0,104.0,85.0,107.0,103.0,107.0,90.0,107.0,107.0,82.0,93.0,90.0,86.0,97.0,98.0,65.0,74.0,69.0,75.0,76.0,64.0,55.0,70.0,64.0,62.0,51.0,52.0,73.0,41.0,50.0,46.0,30.0,41.0,36.0,34.0,30.0,31.0,21.0,26.0,24.0,15.0,24.0,14.0,18.0,9.0,11.0,6.0,18.0 J82064,55.0,57.0,55.0,66.0,61.0,78.0,68.0,89.0,77.0,75.0,81.0,81.0,88.0,91.0,82.0,68.0,74.0,66.0,66.0,52.0,56.0,63.0,37.0,50.0,54.0,55.0,70.0,67.0,73.0,61.0,69.0,89.0,91.0,88.0,81.0,71.0,82.0,106.0,94.0,85.0,63.0,88.0,85.0,69.0,95.0,79.0,104.0,81.0,80.0,58.0,85.0,80.0,83.0,104.0,100.0,81.0,100.0,112.0,140.0,125.0,119.0,125.0,113.0,101.0,107.0,85.0,95.0,100.0,90.0,94.0,83.0,77.0,87.0,82.0,87.0,93.0,88.0,90.0,106.0,69.0,65.0,71.0,59.0,34.0,37.0,46.0,25.0,33.0,25.0,27.0,29.0,14.0,11.0,8.0,9.0,25.0 J82069,220.0,221.0,220.0,250.0,246.0,257.0,271.0,276.0,287.0,306.0,277.0,306.0,336.0,315.0,350.0,305.0,300.0,303.0,321.0,253.0,244.0,238.0,267.0,283.0,328.0,339.0,339.0,308.0,354.0,375.0,345.0,369.0,371.0,416.0,433.0,443.0,404.0,434.0,378.0,417.0,365.0,376.0,408.0,355.0,352.0,416.0,345.0,339.0,344.0,319.0,347.0,334.0,366.0,379.0,345.0,372.0,347.0,379.0,340.0,328.0,341.0,332.0,318.0,293.0,253.0,262.0,256.0,214.0,239.0,208.0,211.0,203.0,225.0,183.0,205.0,214.0,218.0,236.0,226.0,165.0,154.0,135.0,131.0,108.0,104.0,102.0,98.0,67.0,78.0,51.0,42.0,32.0,46.0,23.0,21.0,56.0 J82071,82.0,92.0,95.0,79.0,71.0,92.0,88.0,89.0,87.0,80.0,105.0,95.0,82.0,96.0,87.0,87.0,79.0,88.0,63.0,73.0,55.0,65.0,68.0,65.0,95.0,88.0,89.0,107.0,119.0,109.0,133.0,112.0,134.0,135.0,127.0,137.0,147.0,129.0,137.0,109.0,126.0,117.0,113.0,125.0,106.0,101.0,86.0,79.0,65.0,83.0,67.0,89.0,61.0,69.0,64.0,78.0,90.0,75.0,76.0,80.0,87.0,65.0,73.0,67.0,62.0,52.0,65.0,52.0,75.0,47.0,48.0,48.0,55.0,47.0,46.0,47.0,47.0,49.0,33.0,21.0,34.0,38.0,22.0,24.0,18.0,18.0,25.0,17.0,16.0,18.0,10.0,10.0,13.0,6.0,10.0,14.0 J82072,32.0,57.0,47.0,56.0,56.0,62.0,56.0,66.0,64.0,64.0,76.0,73.0,82.0,57.0,79.0,68.0,63.0,85.0,66.0,51.0,41.0,48.0,46.0,43.0,56.0,38.0,53.0,53.0,77.0,61.0,56.0,75.0,77.0,72.0,82.0,71.0,85.0,89.0,91.0,71.0,87.0,59.0,93.0,57.0,85.0,66.0,75.0,63.0,64.0,64.0,78.0,76.0,85.0,85.0,80.0,77.0,99.0,91.0,85.0,106.0,103.0,84.0,107.0,80.0,69.0,56.0,78.0,79.0,73.0,65.0,81.0,68.0,56.0,66.0,45.0,64.0,61.0,61.0,78.0,52.0,44.0,62.0,46.0,39.0,35.0,32.0,36.0,31.0,20.0,30.0,16.0,18.0,16.0,17.0,9.0,31.0 J82073,47.0,44.0,47.0,52.0,55.0,49.0,52.0,53.0,66.0,60.0,60.0,67.0,55.0,64.0,58.0,63.0,63.0,38.0,62.0,63.0,48.0,38.0,57.0,40.0,68.0,64.0,63.0,82.0,53.0,66.0,56.0,79.0,88.0,83.0,77.0,79.0,82.0,89.0,77.0,89.0,61.0,74.0,51.0,67.0,55.0,59.0,58.0,54.0,64.0,50.0,66.0,53.0,64.0,61.0,65.0,76.0,54.0,80.0,70.0,80.0,61.0,75.0,82.0,64.0,57.0,59.0,66.0,56.0,42.0,34.0,45.0,41.0,42.0,39.0,36.0,38.0,42.0,54.0,44.0,29.0,36.0,28.0,41.0,22.0,22.0,19.0,13.0,16.0,17.0,15.0,9.0,8.0,6.0,3.0,2.0,10.0 J82074,62.0,78.0,61.0,89.0,79.0,92.0,87.0,81.0,86.0,82.0,90.0,80.0,81.0,80.0,90.0,98.0,72.0,82.0,82.0,63.0,59.0,56.0,46.0,57.0,67.0,53.0,76.0,79.0,85.0,70.0,87.0,96.0,100.0,86.0,92.0,104.0,106.0,109.0,86.0,100.0,92.0,100.0,105.0,95.0,96.0,101.0,95.0,97.0,64.0,88.0,94.0,111.0,107.0,117.0,100.0,89.0,114.0,98.0,108.0,111.0,110.0,129.0,115.0,97.0,105.0,104.0,115.0,97.0,81.0,68.0,82.0,81.0,95.0,80.0,102.0,113.0,107.0,122.0,161.0,96.0,111.0,100.0,79.0,59.0,61.0,70.0,78.0,70.0,59.0,46.0,32.0,40.0,36.0,19.0,16.0,37.0 J82075,21.0,20.0,26.0,22.0,26.0,25.0,29.0,23.0,14.0,36.0,33.0,28.0,36.0,33.0,38.0,36.0,35.0,27.0,37.0,27.0,35.0,25.0,27.0,26.0,32.0,18.0,34.0,32.0,36.0,31.0,28.0,30.0,31.0,33.0,36.0,27.0,38.0,32.0,31.0,36.0,28.0,38.0,37.0,40.0,47.0,40.0,32.0,32.0,34.0,28.0,47.0,40.0,57.0,47.0,42.0,56.0,46.0,56.0,61.0,66.0,70.0,54.0,55.0,61.0,63.0,63.0,50.0,51.0,55.0,71.0,45.0,49.0,53.0,47.0,56.0,55.0,68.0,70.0,71.0,52.0,39.0,43.0,38.0,35.0,38.0,34.0,35.0,16.0,27.0,22.0,13.0,11.0,13.0,15.0,16.0,17.0 J82076,93.0,91.0,119.0,117.0,107.0,123.0,138.0,149.0,136.0,112.0,120.0,116.0,129.0,139.0,109.0,128.0,133.0,118.0,123.0,105.0,91.0,83.0,88.0,92.0,101.0,133.0,128.0,133.0,163.0,168.0,149.0,170.0,179.0,180.0,172.0,179.0,166.0,193.0,179.0,178.0,189.0,144.0,148.0,171.0,159.0,148.0,147.0,124.0,141.0,148.0,133.0,120.0,133.0,141.0,126.0,120.0,131.0,160.0,140.0,143.0,150.0,155.0,179.0,156.0,123.0,110.0,122.0,104.0,122.0,98.0,125.0,116.0,113.0,108.0,120.0,90.0,101.0,121.0,124.0,75.0,89.0,71.0,60.0,68.0,49.0,60.0,41.0,50.0,41.0,29.0,23.0,23.0,22.0,22.0,10.0,26.0 J82079,28.0,43.0,54.0,45.0,55.0,50.0,45.0,55.0,49.0,47.0,52.0,44.0,39.0,43.0,42.0,37.0,35.0,43.0,44.0,38.0,35.0,41.0,39.0,28.0,33.0,28.0,33.0,47.0,31.0,50.0,42.0,56.0,62.0,50.0,59.0,55.0,68.0,65.0,58.0,68.0,45.0,62.0,47.0,54.0,67.0,59.0,58.0,52.0,44.0,38.0,53.0,66.0,56.0,69.0,60.0,63.0,56.0,67.0,50.0,71.0,66.0,59.0,63.0,69.0,51.0,48.0,43.0,33.0,47.0,35.0,41.0,35.0,29.0,32.0,35.0,27.0,25.0,39.0,56.0,32.0,32.0,32.0,16.0,18.0,10.0,17.0,15.0,9.0,15.0,11.0,16.0,12.0,6.0,9.0,8.0,18.0 J82080,43.0,51.0,42.0,43.0,37.0,42.0,50.0,45.0,57.0,43.0,61.0,66.0,45.0,59.0,57.0,47.0,47.0,70.0,513.0,1106.0,1366.0,1232.0,1292.0,1678.0,2351.0,1795.0,1199.0,863.0,488.0,419.0,260.0,172.0,172.0,137.0,143.0,105.0,132.0,119.0,91.0,90.0,104.0,88.0,81.0,83.0,65.0,71.0,64.0,63.0,62.0,52.0,50.0,53.0,46.0,58.0,39.0,44.0,35.0,35.0,57.0,37.0,37.0,42.0,37.0,37.0,28.0,41.0,32.0,37.0,23.0,25.0,28.0,21.0,26.0,29.0,33.0,33.0,24.0,22.0,21.0,18.0,18.0,16.0,12.0,17.0,10.0,12.0,10.0,11.0,11.0,7.0,9.0,1.0,1.0,2.0,5.0,5.0 J82081,99.0,88.0,112.0,112.0,102.0,105.0,137.0,98.0,108.0,124.0,129.0,106.0,117.0,113.0,98.0,113.0,117.0,95.0,127.0,203.0,246.0,224.0,220.0,283.0,316.0,294.0,309.0,330.0,296.0,289.0,306.0,284.0,261.0,306.0,297.0,275.0,261.0,254.0,220.0,219.0,202.0,173.0,159.0,183.0,160.0,158.0,156.0,136.0,114.0,106.0,92.0,122.0,94.0,108.0,102.0,86.0,99.0,101.0,105.0,111.0,99.0,103.0,81.0,83.0,94.0,94.0,104.0,98.0,65.0,81.0,56.0,69.0,52.0,68.0,61.0,49.0,53.0,60.0,59.0,54.0,48.0,35.0,41.0,37.0,25.0,13.0,31.0,26.0,25.0,14.0,14.0,16.0,7.0,4.0,7.0,13.0 J82082,69.0,74.0,84.0,92.0,87.0,112.0,108.0,94.0,93.0,113.0,85.0,93.0,105.0,106.0,117.0,104.0,94.0,70.0,87.0,83.0,50.0,65.0,59.0,82.0,62.0,92.0,65.0,94.0,92.0,106.0,80.0,110.0,107.0,128.0,123.0,108.0,138.0,142.0,104.0,140.0,116.0,121.0,106.0,120.0,95.0,87.0,93.0,92.0,84.0,85.0,74.0,77.0,81.0,96.0,93.0,77.0,78.0,73.0,86.0,71.0,69.0,77.0,65.0,49.0,66.0,61.0,55.0,45.0,35.0,32.0,34.0,48.0,25.0,30.0,33.0,30.0,33.0,50.0,41.0,35.0,27.0,39.0,28.0,19.0,13.0,14.0,16.0,10.0,8.0,12.0,9.0,4.0,5.0,6.0,5.0,13.0 J82083,175.0,188.0,237.0,216.0,224.0,216.0,232.0,251.0,271.0,267.0,256.0,289.0,271.0,262.0,262.0,293.0,293.0,308.0,255.0,237.0,220.0,217.0,235.0,242.0,278.0,279.0,281.0,286.0,281.0,304.0,315.0,281.0,321.0,315.0,348.0,302.0,354.0,319.0,336.0,313.0,324.0,320.0,279.0,325.0,304.0,299.0,268.0,281.0,256.0,243.0,267.0,323.0,322.0,323.0,347.0,342.0,370.0,366.0,365.0,342.0,371.0,383.0,353.0,355.0,323.0,300.0,340.0,271.0,267.0,262.0,254.0,257.0,245.0,244.0,218.0,253.0,256.0,267.0,269.0,225.0,228.0,155.0,162.0,132.0,115.0,126.0,107.0,113.0,101.0,91.0,73.0,77.0,48.0,44.0,46.0,87.0 J82084,25.0,25.0,22.0,23.0,25.0,24.0,28.0,25.0,27.0,25.0,23.0,20.0,28.0,23.0,36.0,23.0,28.0,29.0,15.0,18.0,22.0,15.0,18.0,18.0,28.0,25.0,43.0,25.0,33.0,32.0,19.0,34.0,36.0,37.0,36.0,39.0,27.0,32.0,40.0,33.0,34.0,31.0,36.0,35.0,33.0,33.0,27.0,27.0,24.0,32.0,28.0,38.0,37.0,37.0,44.0,47.0,50.0,42.0,45.0,47.0,49.0,60.0,60.0,61.0,49.0,37.0,47.0,56.0,38.0,42.0,39.0,44.0,36.0,56.0,34.0,49.0,54.0,42.0,47.0,37.0,35.0,33.0,36.0,23.0,25.0,19.0,18.0,18.0,18.0,11.0,15.0,9.0,10.0,12.0,9.0,4.0 J82085,192.0,194.0,179.0,212.0,192.0,215.0,228.0,206.0,223.0,235.0,265.0,238.0,224.0,246.0,232.0,247.0,226.0,238.0,209.0,224.0,228.0,228.0,246.0,241.0,253.0,247.0,282.0,272.0,276.0,307.0,305.0,290.0,326.0,336.0,318.0,345.0,326.0,333.0,316.0,314.0,325.0,271.0,270.0,269.0,249.0,252.0,240.0,223.0,206.0,212.0,193.0,209.0,206.0,196.0,226.0,194.0,196.0,206.0,170.0,231.0,228.0,206.0,201.0,190.0,165.0,185.0,154.0,161.0,149.0,136.0,128.0,135.0,103.0,100.0,113.0,108.0,86.0,118.0,129.0,99.0,85.0,84.0,76.0,71.0,53.0,59.0,37.0,58.0,38.0,34.0,36.0,23.0,23.0,15.0,8.0,21.0 J82087,26.0,32.0,29.0,33.0,25.0,37.0,40.0,34.0,48.0,36.0,45.0,42.0,39.0,51.0,49.0,60.0,47.0,42.0,50.0,44.0,42.0,34.0,47.0,44.0,31.0,59.0,40.0,42.0,44.0,49.0,40.0,53.0,52.0,40.0,56.0,48.0,40.0,48.0,61.0,51.0,51.0,52.0,66.0,45.0,57.0,61.0,39.0,48.0,31.0,52.0,49.0,43.0,44.0,56.0,42.0,41.0,48.0,54.0,50.0,49.0,55.0,46.0,52.0,37.0,41.0,52.0,39.0,49.0,30.0,34.0,36.0,43.0,36.0,27.0,45.0,31.0,32.0,49.0,42.0,26.0,19.0,20.0,23.0,19.0,18.0,12.0,11.0,15.0,16.0,9.0,4.0,8.0,9.0,8.0,6.0,13.0 J82088,48.0,52.0,60.0,61.0,72.0,66.0,66.0,66.0,77.0,92.0,63.0,77.0,80.0,93.0,78.0,79.0,91.0,72.0,82.0,66.0,64.0,75.0,65.0,71.0,79.0,66.0,89.0,89.0,88.0,86.0,104.0,105.0,116.0,113.0,129.0,132.0,86.0,113.0,125.0,117.0,118.0,109.0,107.0,115.0,120.0,104.0,91.0,84.0,83.0,96.0,92.0,88.0,96.0,83.0,99.0,72.0,81.0,104.0,89.0,81.0,82.0,75.0,95.0,77.0,66.0,82.0,68.0,65.0,75.0,57.0,60.0,66.0,61.0,51.0,39.0,49.0,34.0,45.0,43.0,43.0,39.0,29.0,38.0,36.0,25.0,24.0,25.0,24.0,16.0,9.0,14.0,6.0,13.0,5.0,6.0,9.0 J82089,97.0,114.0,113.0,120.0,124.0,121.0,119.0,125.0,121.0,113.0,124.0,105.0,138.0,128.0,112.0,111.0,107.0,114.0,97.0,81.0,79.0,93.0,69.0,83.0,96.0,104.0,99.0,129.0,138.0,153.0,143.0,133.0,129.0,137.0,162.0,175.0,172.0,159.0,147.0,150.0,164.0,123.0,133.0,132.0,151.0,125.0,137.0,88.0,98.0,109.0,94.0,101.0,120.0,103.0,122.0,101.0,106.0,93.0,136.0,145.0,139.0,108.0,119.0,120.0,99.0,78.0,115.0,116.0,81.0,78.0,83.0,95.0,85.0,87.0,91.0,90.0,91.0,111.0,94.0,78.0,71.0,72.0,70.0,61.0,40.0,60.0,52.0,51.0,43.0,35.0,29.0,25.0,16.0,13.0,16.0,35.0 J82092,35.0,36.0,39.0,46.0,48.0,38.0,39.0,63.0,49.0,53.0,49.0,67.0,55.0,54.0,64.0,49.0,48.0,57.0,43.0,41.0,41.0,41.0,32.0,43.0,48.0,40.0,42.0,51.0,47.0,63.0,49.0,63.0,72.0,73.0,92.0,84.0,59.0,65.0,66.0,62.0,57.0,51.0,66.0,76.0,68.0,71.0,54.0,49.0,63.0,49.0,69.0,38.0,44.0,54.0,55.0,48.0,59.0,45.0,40.0,46.0,47.0,36.0,39.0,38.0,28.0,49.0,46.0,38.0,46.0,34.0,39.0,50.0,40.0,42.0,43.0,40.0,40.0,33.0,35.0,24.0,22.0,21.0,20.0,12.0,8.0,17.0,16.0,7.0,8.0,9.0,10.0,15.0,9.0,5.0,7.0,27.0 J82094,87.0,69.0,62.0,92.0,88.0,107.0,102.0,96.0,93.0,107.0,108.0,103.0,100.0,118.0,107.0,98.0,111.0,112.0,126.0,84.0,76.0,72.0,83.0,97.0,67.0,85.0,100.0,100.0,95.0,94.0,118.0,113.0,112.0,115.0,126.0,107.0,140.0,120.0,137.0,127.0,105.0,105.0,117.0,125.0,114.0,103.0,120.0,102.0,119.0,124.0,119.0,121.0,134.0,140.0,142.0,139.0,147.0,142.0,137.0,165.0,150.0,175.0,152.0,153.0,159.0,132.0,105.0,126.0,106.0,91.0,102.0,107.0,108.0,108.0,108.0,109.0,120.0,142.0,112.0,117.0,83.0,95.0,74.0,68.0,56.0,58.0,42.0,50.0,35.0,30.0,32.0,15.0,21.0,16.0,12.0,29.0 J82098,102.0,135.0,146.0,150.0,139.0,169.0,186.0,180.0,202.0,223.0,208.0,235.0,291.0,231.0,240.0,234.0,257.0,265.0,219.0,160.0,161.0,155.0,169.0,172.0,156.0,170.0,167.0,165.0,189.0,166.0,171.0,176.0,196.0,211.0,208.0,193.0,234.0,222.0,211.0,225.0,189.0,237.0,217.0,231.0,263.0,240.0,238.0,222.0,284.0,231.0,228.0,296.0,236.0,290.0,313.0,264.0,285.0,320.0,283.0,263.0,298.0,301.0,244.0,257.0,263.0,256.0,232.0,243.0,226.0,211.0,229.0,164.0,215.0,176.0,184.0,206.0,243.0,241.0,252.0,208.0,203.0,184.0,159.0,150.0,147.0,140.0,135.0,96.0,100.0,85.0,75.0,59.0,55.0,46.0,36.0,89.0 J82101,73.0,83.0,75.0,96.0,72.0,96.0,93.0,91.0,92.0,101.0,101.0,92.0,109.0,131.0,117.0,96.0,124.0,114.0,101.0,105.0,100.0,101.0,105.0,115.0,110.0,116.0,129.0,114.0,120.0,129.0,125.0,125.0,155.0,124.0,143.0,129.0,169.0,137.0,128.0,134.0,116.0,118.0,125.0,118.0,128.0,120.0,119.0,119.0,122.0,113.0,115.0,114.0,120.0,124.0,130.0,125.0,120.0,137.0,136.0,129.0,139.0,136.0,112.0,136.0,117.0,102.0,132.0,130.0,98.0,101.0,87.0,112.0,75.0,70.0,85.0,71.0,84.0,96.0,99.0,66.0,77.0,63.0,62.0,56.0,48.0,52.0,45.0,26.0,29.0,33.0,17.0,22.0,18.0,18.0,9.0,23.0 J82102,84.0,94.0,105.0,116.0,127.0,137.0,141.0,131.0,148.0,145.0,147.0,163.0,140.0,164.0,154.0,150.0,146.0,149.0,131.0,144.0,109.0,121.0,101.0,121.0,122.0,114.0,122.0,133.0,151.0,124.0,164.0,135.0,165.0,201.0,201.0,165.0,188.0,194.0,164.0,167.0,177.0,188.0,160.0,152.0,151.0,158.0,146.0,152.0,130.0,159.0,143.0,150.0,163.0,160.0,169.0,195.0,192.0,185.0,169.0,191.0,150.0,147.0,169.0,140.0,158.0,148.0,126.0,139.0,122.0,95.0,121.0,139.0,105.0,115.0,85.0,118.0,110.0,121.0,122.0,99.0,106.0,88.0,90.0,66.0,72.0,67.0,67.0,72.0,58.0,39.0,41.0,29.0,30.0,23.0,11.0,45.0 J82103,43.0,43.0,46.0,54.0,66.0,74.0,61.0,75.0,81.0,89.0,73.0,91.0,84.0,81.0,77.0,79.0,76.0,73.0,60.0,66.0,54.0,52.0,57.0,49.0,46.0,71.0,56.0,70.0,62.0,77.0,96.0,85.0,106.0,90.0,94.0,93.0,86.0,85.0,91.0,79.0,85.0,96.0,83.0,87.0,97.0,104.0,95.0,75.0,83.0,85.0,73.0,102.0,85.0,79.0,96.0,94.0,93.0,92.0,81.0,99.0,102.0,92.0,86.0,96.0,70.0,66.0,69.0,79.0,52.0,65.0,52.0,50.0,61.0,57.0,59.0,68.0,70.0,78.0,56.0,46.0,79.0,43.0,42.0,47.0,33.0,35.0,29.0,30.0,23.0,13.0,17.0,13.0,15.0,8.0,11.0,19.0 J82104,37.0,30.0,40.0,34.0,32.0,42.0,57.0,42.0,50.0,56.0,62.0,71.0,77.0,57.0,75.0,84.0,77.0,63.0,66.0,51.0,47.0,37.0,39.0,50.0,60.0,34.0,53.0,51.0,40.0,40.0,59.0,65.0,42.0,48.0,77.0,43.0,70.0,59.0,73.0,66.0,63.0,51.0,74.0,66.0,68.0,75.0,49.0,64.0,65.0,68.0,76.0,84.0,76.0,78.0,106.0,98.0,83.0,94.0,91.0,121.0,127.0,114.0,97.0,120.0,92.0,100.0,101.0,96.0,124.0,93.0,121.0,101.0,89.0,96.0,91.0,113.0,119.0,146.0,151.0,91.0,107.0,87.0,88.0,79.0,57.0,69.0,68.0,57.0,40.0,40.0,46.0,32.0,37.0,22.0,16.0,45.0 J82106,26.0,32.0,35.0,47.0,40.0,37.0,47.0,39.0,44.0,45.0,53.0,42.0,43.0,53.0,43.0,43.0,56.0,38.0,30.0,45.0,31.0,33.0,27.0,42.0,36.0,28.0,29.0,35.0,27.0,35.0,24.0,23.0,34.0,51.0,36.0,49.0,50.0,36.0,45.0,43.0,37.0,37.0,49.0,54.0,40.0,48.0,55.0,54.0,49.0,55.0,51.0,57.0,47.0,56.0,50.0,59.0,58.0,52.0,55.0,56.0,60.0,64.0,55.0,52.0,50.0,44.0,50.0,53.0,50.0,36.0,37.0,34.0,41.0,46.0,52.0,36.0,46.0,45.0,34.0,29.0,44.0,32.0,22.0,25.0,16.0,18.0,17.0,16.0,16.0,7.0,14.0,9.0,6.0,8.0,8.0,16.0 J82112,81.0,78.0,86.0,107.0,72.0,95.0,114.0,117.0,119.0,125.0,129.0,124.0,135.0,137.0,138.0,126.0,106.0,118.0,135.0,108.0,81.0,99.0,112.0,99.0,115.0,119.0,102.0,142.0,120.0,139.0,125.0,125.0,127.0,145.0,158.0,141.0,162.0,156.0,154.0,140.0,142.0,156.0,151.0,153.0,145.0,147.0,149.0,134.0,146.0,139.0,146.0,145.0,153.0,163.0,205.0,158.0,166.0,171.0,175.0,181.0,183.0,179.0,169.0,181.0,147.0,166.0,172.0,156.0,129.0,140.0,115.0,139.0,128.0,143.0,135.0,135.0,136.0,136.0,142.0,104.0,93.0,77.0,80.0,70.0,75.0,54.0,72.0,68.0,49.0,48.0,44.0,31.0,16.0,25.0,20.0,45.0 J82115,30.0,22.0,32.0,28.0,36.0,29.0,31.0,37.0,32.0,21.0,23.0,37.0,32.0,27.0,32.0,26.0,23.0,16.0,22.0,20.0,18.0,26.0,20.0,31.0,40.0,39.0,61.0,46.0,51.0,64.0,73.0,66.0,76.0,51.0,76.0,55.0,64.0,63.0,56.0,57.0,37.0,46.0,49.0,37.0,48.0,43.0,46.0,45.0,37.0,31.0,39.0,28.0,38.0,26.0,32.0,40.0,28.0,31.0,29.0,34.0,20.0,27.0,20.0,26.0,22.0,19.0,28.0,17.0,25.0,15.0,15.0,16.0,17.0,12.0,10.0,15.0,16.0,10.0,7.0,7.0,7.0,8.0,13.0,4.0,1.0,10.0,6.0,6.0,3.0,7.0,3.0,1.0,1.0,,3.0,5.0 J82116,32.0,38.0,37.0,47.0,49.0,45.0,55.0,51.0,66.0,55.0,63.0,50.0,59.0,74.0,74.0,69.0,77.0,85.0,62.0,52.0,45.0,47.0,41.0,48.0,47.0,45.0,42.0,39.0,48.0,32.0,47.0,47.0,46.0,42.0,57.0,52.0,51.0,61.0,59.0,50.0,62.0,70.0,73.0,60.0,82.0,74.0,77.0,70.0,55.0,77.0,64.0,68.0,77.0,75.0,91.0,83.0,63.0,69.0,81.0,68.0,80.0,80.0,87.0,57.0,65.0,76.0,69.0,71.0,69.0,61.0,60.0,64.0,49.0,39.0,65.0,55.0,63.0,71.0,64.0,42.0,35.0,52.0,41.0,37.0,26.0,24.0,30.0,28.0,17.0,21.0,11.0,16.0,15.0,10.0,8.0,22.0 J82119,38.0,46.0,36.0,36.0,44.0,50.0,54.0,55.0,43.0,48.0,57.0,47.0,41.0,66.0,34.0,45.0,52.0,47.0,50.0,50.0,33.0,36.0,41.0,39.0,38.0,38.0,52.0,51.0,57.0,59.0,56.0,64.0,53.0,53.0,53.0,69.0,61.0,50.0,56.0,47.0,51.0,61.0,52.0,64.0,63.0,61.0,61.0,68.0,45.0,59.0,54.0,70.0,49.0,77.0,77.0,84.0,76.0,78.0,92.0,86.0,113.0,86.0,91.0,101.0,86.0,70.0,86.0,76.0,89.0,85.0,75.0,85.0,67.0,59.0,72.0,77.0,88.0,92.0,63.0,61.0,79.0,49.0,44.0,35.0,43.0,46.0,33.0,29.0,22.0,21.0,29.0,13.0,15.0,10.0,9.0,27.0 J82121,44.0,47.0,41.0,46.0,53.0,51.0,46.0,47.0,46.0,55.0,58.0,61.0,61.0,64.0,76.0,63.0,51.0,74.0,65.0,40.0,40.0,37.0,33.0,51.0,50.0,50.0,43.0,46.0,38.0,58.0,55.0,48.0,59.0,63.0,65.0,70.0,80.0,45.0,55.0,56.0,69.0,69.0,64.0,61.0,69.0,70.0,63.0,63.0,58.0,50.0,74.0,67.0,86.0,61.0,77.0,60.0,74.0,69.0,59.0,60.0,73.0,58.0,66.0,68.0,47.0,65.0,68.0,68.0,50.0,61.0,49.0,43.0,44.0,59.0,52.0,61.0,57.0,55.0,58.0,58.0,44.0,45.0,38.0,35.0,25.0,27.0,21.0,20.0,16.0,17.0,12.0,10.0,12.0,13.0,6.0,15.0 J82122,45.0,53.0,47.0,54.0,59.0,58.0,60.0,45.0,50.0,59.0,58.0,43.0,54.0,46.0,48.0,46.0,65.0,43.0,46.0,68.0,57.0,76.0,72.0,111.0,122.0,87.0,100.0,95.0,129.0,113.0,85.0,91.0,103.0,89.0,98.0,105.0,82.0,94.0,77.0,75.0,66.0,67.0,86.0,69.0,78.0,67.0,51.0,45.0,55.0,53.0,54.0,42.0,32.0,48.0,44.0,43.0,43.0,56.0,44.0,40.0,55.0,38.0,36.0,36.0,42.0,49.0,36.0,32.0,31.0,32.0,35.0,23.0,21.0,28.0,32.0,33.0,33.0,27.0,27.0,19.0,21.0,22.0,19.0,12.0,17.0,21.0,9.0,13.0,15.0,19.0,11.0,11.0,9.0,6.0,10.0,24.0 J82124,29.0,35.0,30.0,43.0,38.0,41.0,53.0,36.0,56.0,42.0,49.0,64.0,66.0,59.0,60.0,67.0,75.0,66.0,67.0,47.0,46.0,52.0,50.0,42.0,66.0,36.0,30.0,32.0,28.0,32.0,43.0,42.0,40.0,50.0,42.0,33.0,56.0,41.0,57.0,38.0,58.0,54.0,49.0,55.0,69.0,53.0,76.0,63.0,86.0,61.0,70.0,69.0,70.0,78.0,81.0,83.0,73.0,81.0,83.0,79.0,82.0,83.0,96.0,74.0,84.0,74.0,63.0,62.0,65.0,63.0,43.0,67.0,73.0,60.0,79.0,75.0,61.0,68.0,77.0,58.0,70.0,57.0,58.0,47.0,58.0,35.0,51.0,25.0,30.0,25.0,33.0,14.0,10.0,14.0,16.0,33.0 J82126,21.0,13.0,20.0,18.0,23.0,24.0,27.0,31.0,26.0,29.0,33.0,40.0,25.0,24.0,40.0,25.0,18.0,29.0,17.0,20.0,25.0,11.0,18.0,24.0,17.0,14.0,25.0,26.0,28.0,28.0,30.0,37.0,36.0,33.0,30.0,31.0,36.0,32.0,37.0,38.0,35.0,38.0,45.0,36.0,39.0,36.0,27.0,36.0,37.0,34.0,24.0,22.0,21.0,18.0,29.0,30.0,28.0,18.0,35.0,21.0,16.0,25.0,21.0,19.0,21.0,19.0,21.0,23.0,27.0,25.0,18.0,14.0,14.0,23.0,20.0,14.0,21.0,25.0,18.0,15.0,17.0,18.0,21.0,16.0,12.0,15.0,14.0,15.0,4.0,15.0,14.0,8.0,11.0,14.0,12.0,39.0 J82128,24.0,37.0,34.0,51.0,37.0,47.0,51.0,52.0,48.0,48.0,46.0,42.0,49.0,43.0,36.0,43.0,48.0,40.0,42.0,41.0,46.0,43.0,36.0,34.0,48.0,39.0,49.0,39.0,42.0,56.0,76.0,68.0,68.0,61.0,77.0,75.0,59.0,85.0,71.0,74.0,63.0,59.0,79.0,66.0,58.0,57.0,57.0,69.0,61.0,52.0,53.0,49.0,66.0,53.0,52.0,58.0,55.0,60.0,67.0,69.0,59.0,58.0,59.0,58.0,52.0,44.0,40.0,36.0,32.0,33.0,46.0,43.0,30.0,38.0,31.0,44.0,37.0,43.0,44.0,31.0,37.0,26.0,31.0,20.0,21.0,15.0,24.0,24.0,12.0,7.0,13.0,4.0,9.0,4.0,4.0,6.0 J82129,12.0,13.0,20.0,21.0,24.0,19.0,23.0,35.0,22.0,37.0,33.0,38.0,45.0,25.0,34.0,43.0,34.0,41.0,31.0,38.0,23.0,26.0,17.0,25.0,24.0,24.0,32.0,26.0,22.0,17.0,18.0,26.0,25.0,19.0,34.0,21.0,19.0,28.0,32.0,31.0,38.0,35.0,39.0,30.0,52.0,41.0,56.0,40.0,40.0,42.0,43.0,48.0,55.0,58.0,58.0,51.0,53.0,61.0,74.0,68.0,72.0,68.0,73.0,60.0,68.0,57.0,49.0,62.0,55.0,51.0,62.0,61.0,52.0,71.0,81.0,70.0,69.0,80.0,63.0,53.0,51.0,55.0,46.0,35.0,32.0,35.0,27.0,32.0,36.0,25.0,30.0,20.0,17.0,23.0,11.0,44.0 J82130,84.0,109.0,114.0,102.0,104.0,108.0,116.0,149.0,154.0,160.0,147.0,184.0,166.0,203.0,172.0,191.0,215.0,201.0,194.0,139.0,109.0,118.0,120.0,138.0,119.0,112.0,124.0,123.0,135.0,132.0,133.0,155.0,138.0,135.0,142.0,146.0,133.0,149.0,167.0,170.0,166.0,170.0,168.0,161.0,175.0,190.0,208.0,187.0,183.0,157.0,175.0,179.0,186.0,166.0,174.0,152.0,167.0,174.0,158.0,179.0,165.0,158.0,159.0,159.0,150.0,126.0,142.0,132.0,133.0,101.0,120.0,104.0,95.0,113.0,134.0,106.0,109.0,133.0,122.0,113.0,105.0,98.0,81.0,71.0,68.0,67.0,62.0,70.0,45.0,50.0,35.0,34.0,32.0,34.0,26.0,74.0 J82131,37.0,38.0,42.0,52.0,52.0,46.0,64.0,45.0,56.0,50.0,59.0,64.0,68.0,58.0,63.0,67.0,62.0,50.0,68.0,45.0,38.0,53.0,47.0,49.0,41.0,48.0,53.0,41.0,46.0,61.0,47.0,49.0,53.0,55.0,48.0,55.0,49.0,75.0,51.0,65.0,69.0,56.0,60.0,56.0,72.0,77.0,54.0,71.0,61.0,51.0,64.0,72.0,80.0,81.0,108.0,86.0,115.0,105.0,95.0,88.0,102.0,120.0,122.0,91.0,100.0,82.0,104.0,101.0,109.0,100.0,100.0,84.0,90.0,80.0,106.0,114.0,76.0,100.0,97.0,78.0,83.0,63.0,63.0,46.0,51.0,48.0,30.0,54.0,34.0,39.0,29.0,32.0,17.0,13.0,10.0,31.0 J82132,49.0,50.0,48.0,73.0,69.0,72.0,56.0,69.0,78.0,63.0,75.0,74.0,65.0,85.0,74.0,69.0,96.0,66.0,76.0,72.0,71.0,46.0,69.0,67.0,59.0,85.0,64.0,82.0,89.0,74.0,79.0,98.0,91.0,94.0,96.0,112.0,90.0,96.0,84.0,107.0,93.0,77.0,72.0,82.0,66.0,97.0,78.0,73.0,74.0,78.0,88.0,82.0,82.0,92.0,106.0,91.0,103.0,99.0,106.0,116.0,88.0,100.0,107.0,108.0,91.0,87.0,82.0,85.0,69.0,79.0,55.0,79.0,79.0,70.0,71.0,74.0,70.0,77.0,83.0,54.0,73.0,62.0,37.0,46.0,42.0,54.0,42.0,35.0,24.0,37.0,22.0,21.0,16.0,21.0,18.0,19.0 J82134,104.0,98.0,105.0,125.0,133.0,113.0,121.0,141.0,146.0,159.0,158.0,150.0,155.0,154.0,138.0,144.0,133.0,141.0,135.0,130.0,116.0,119.0,93.0,132.0,108.0,123.0,138.0,146.0,146.0,160.0,158.0,162.0,161.0,189.0,160.0,185.0,189.0,203.0,174.0,181.0,153.0,150.0,157.0,147.0,150.0,138.0,136.0,143.0,133.0,134.0,147.0,148.0,137.0,152.0,155.0,176.0,177.0,190.0,176.0,159.0,172.0,182.0,180.0,178.0,162.0,155.0,157.0,157.0,121.0,128.0,131.0,109.0,126.0,121.0,114.0,141.0,132.0,153.0,136.0,132.0,120.0,90.0,95.0,89.0,91.0,72.0,82.0,85.0,60.0,43.0,55.0,43.0,34.0,38.0,27.0,69.0 J82136,43.0,51.0,42.0,57.0,62.0,42.0,42.0,50.0,56.0,55.0,57.0,52.0,53.0,56.0,73.0,68.0,68.0,88.0,58.0,53.0,49.0,43.0,52.0,47.0,67.0,59.0,53.0,57.0,59.0,54.0,58.0,62.0,74.0,57.0,59.0,57.0,57.0,59.0,64.0,66.0,60.0,65.0,69.0,63.0,67.0,70.0,75.0,81.0,78.0,90.0,74.0,98.0,72.0,100.0,93.0,81.0,102.0,74.0,102.0,90.0,91.0,109.0,88.0,85.0,95.0,85.0,85.0,71.0,78.0,80.0,66.0,68.0,78.0,42.0,49.0,69.0,72.0,76.0,86.0,45.0,54.0,44.0,36.0,40.0,27.0,37.0,31.0,30.0,22.0,20.0,22.0,20.0,16.0,7.0,8.0,19.0 J82138,66.0,77.0,77.0,91.0,66.0,99.0,97.0,109.0,114.0,90.0,100.0,97.0,125.0,116.0,106.0,89.0,115.0,103.0,87.0,86.0,74.0,71.0,65.0,94.0,73.0,82.0,79.0,85.0,99.0,96.0,85.0,93.0,115.0,115.0,123.0,112.0,95.0,108.0,123.0,106.0,122.0,127.0,125.0,139.0,126.0,121.0,124.0,108.0,121.0,115.0,121.0,139.0,137.0,143.0,134.0,130.0,136.0,153.0,128.0,129.0,142.0,145.0,140.0,137.0,140.0,133.0,121.0,116.0,105.0,98.0,83.0,81.0,91.0,103.0,101.0,93.0,106.0,134.0,107.0,81.0,98.0,72.0,77.0,45.0,47.0,57.0,47.0,42.0,40.0,38.0,24.0,19.0,9.0,13.0,16.0,42.0 J82139,26.0,38.0,43.0,48.0,65.0,55.0,65.0,69.0,54.0,62.0,59.0,74.0,76.0,66.0,65.0,71.0,71.0,90.0,63.0,53.0,54.0,61.0,47.0,47.0,53.0,57.0,51.0,41.0,41.0,61.0,72.0,59.0,58.0,50.0,59.0,60.0,66.0,54.0,73.0,64.0,79.0,83.0,80.0,79.0,88.0,86.0,74.0,65.0,79.0,87.0,97.0,100.0,78.0,109.0,101.0,95.0,112.0,151.0,149.0,131.0,137.0,118.0,145.0,139.0,136.0,120.0,152.0,122.0,117.0,123.0,153.0,113.0,134.0,134.0,140.0,150.0,145.0,175.0,192.0,127.0,130.0,121.0,138.0,77.0,71.0,81.0,72.0,81.0,73.0,65.0,47.0,41.0,31.0,24.0,34.0,67.0 J82143,39.0,50.0,53.0,69.0,64.0,68.0,79.0,74.0,102.0,89.0,90.0,108.0,120.0,106.0,120.0,138.0,115.0,104.0,88.0,76.0,66.0,67.0,67.0,74.0,66.0,82.0,66.0,72.0,70.0,70.0,78.0,81.0,73.0,82.0,82.0,90.0,68.0,106.0,80.0,90.0,98.0,136.0,102.0,127.0,114.0,130.0,122.0,99.0,114.0,144.0,135.0,125.0,121.0,131.0,134.0,138.0,119.0,133.0,117.0,115.0,130.0,140.0,114.0,114.0,119.0,99.0,92.0,91.0,97.0,89.0,79.0,100.0,92.0,101.0,84.0,95.0,102.0,107.0,86.0,94.0,65.0,81.0,59.0,60.0,46.0,50.0,46.0,34.0,39.0,33.0,19.0,22.0,21.0,17.0,10.0,29.0 J82144,141.0,130.0,135.0,142.0,140.0,144.0,156.0,138.0,155.0,164.0,126.0,127.0,141.0,159.0,120.0,134.0,131.0,128.0,104.0,123.0,93.0,121.0,110.0,149.0,151.0,168.0,181.0,236.0,246.0,227.0,236.0,225.0,252.0,247.0,254.0,284.0,272.0,259.0,228.0,243.0,210.0,197.0,185.0,191.0,164.0,162.0,169.0,143.0,133.0,172.0,146.0,141.0,147.0,145.0,164.0,153.0,175.0,170.0,175.0,159.0,170.0,146.0,183.0,137.0,135.0,122.0,148.0,126.0,120.0,102.0,105.0,112.0,118.0,90.0,102.0,97.0,105.0,105.0,99.0,71.0,81.0,75.0,70.0,49.0,47.0,53.0,56.0,39.0,36.0,38.0,35.0,26.0,19.0,24.0,13.0,38.0 J82145,41.0,46.0,55.0,61.0,69.0,63.0,59.0,94.0,91.0,83.0,92.0,77.0,104.0,91.0,80.0,110.0,131.0,113.0,71.0,83.0,64.0,75.0,63.0,68.0,60.0,84.0,66.0,80.0,61.0,77.0,69.0,73.0,85.0,94.0,87.0,104.0,96.0,93.0,86.0,81.0,92.0,105.0,104.0,105.0,113.0,120.0,93.0,110.0,117.0,100.0,110.0,105.0,113.0,113.0,131.0,122.0,129.0,123.0,137.0,124.0,146.0,128.0,148.0,145.0,144.0,132.0,127.0,135.0,110.0,116.0,122.0,121.0,127.0,112.0,119.0,114.0,118.0,138.0,150.0,93.0,110.0,86.0,80.0,76.0,61.0,55.0,51.0,64.0,38.0,32.0,28.0,34.0,33.0,31.0,15.0,52.0 J82146,15.0,17.0,11.0,19.0,22.0,16.0,20.0,16.0,19.0,23.0,26.0,23.0,30.0,27.0,24.0,29.0,21.0,35.0,21.0,18.0,19.0,17.0,19.0,19.0,26.0,20.0,15.0,32.0,16.0,16.0,13.0,18.0,28.0,36.0,28.0,24.0,22.0,28.0,27.0,25.0,28.0,25.0,30.0,36.0,31.0,38.0,30.0,41.0,42.0,28.0,34.0,38.0,37.0,37.0,36.0,43.0,49.0,49.0,67.0,55.0,46.0,50.0,57.0,58.0,40.0,44.0,39.0,39.0,49.0,44.0,46.0,44.0,41.0,35.0,47.0,35.0,37.0,47.0,51.0,42.0,33.0,39.0,28.0,28.0,17.0,29.0,18.0,21.0,25.0,15.0,19.0,24.0,5.0,7.0,9.0,17.0 J82147,14.0,24.0,35.0,41.0,43.0,43.0,34.0,40.0,41.0,54.0,44.0,60.0,47.0,67.0,36.0,37.0,44.0,46.0,36.0,41.0,34.0,30.0,28.0,24.0,23.0,38.0,42.0,26.0,31.0,26.0,37.0,33.0,38.0,55.0,58.0,55.0,43.0,42.0,50.0,36.0,49.0,58.0,45.0,51.0,61.0,62.0,53.0,30.0,46.0,41.0,48.0,42.0,59.0,47.0,57.0,55.0,72.0,57.0,54.0,72.0,68.0,72.0,66.0,57.0,70.0,56.0,60.0,52.0,58.0,49.0,52.0,45.0,43.0,42.0,40.0,63.0,47.0,47.0,47.0,43.0,41.0,37.0,30.0,22.0,12.0,24.0,31.0,23.0,14.0,14.0,12.0,7.0,3.0,9.0,5.0,4.0 J82149,85.0,95.0,87.0,88.0,99.0,113.0,93.0,106.0,110.0,102.0,107.0,104.0,130.0,99.0,112.0,94.0,100.0,108.0,104.0,70.0,100.0,93.0,55.0,66.0,92.0,94.0,109.0,114.0,114.0,116.0,136.0,159.0,146.0,158.0,161.0,143.0,174.0,153.0,159.0,151.0,131.0,121.0,117.0,121.0,132.0,110.0,99.0,94.0,84.0,103.0,115.0,100.0,105.0,94.0,108.0,91.0,120.0,97.0,116.0,116.0,100.0,80.0,114.0,89.0,95.0,69.0,88.0,84.0,83.0,73.0,68.0,67.0,50.0,67.0,55.0,62.0,61.0,54.0,50.0,55.0,40.0,24.0,42.0,27.0,13.0,22.0,23.0,18.0,24.0,18.0,18.0,12.0,7.0,11.0,6.0,13.0 J82150,39.0,35.0,37.0,51.0,37.0,50.0,51.0,45.0,70.0,45.0,68.0,50.0,69.0,74.0,66.0,69.0,68.0,77.0,49.0,38.0,42.0,50.0,44.0,52.0,46.0,45.0,42.0,42.0,44.0,51.0,46.0,40.0,65.0,55.0,64.0,62.0,52.0,47.0,66.0,58.0,57.0,45.0,70.0,64.0,66.0,60.0,78.0,75.0,62.0,73.0,61.0,69.0,79.0,76.0,85.0,89.0,94.0,96.0,102.0,86.0,96.0,96.0,103.0,87.0,87.0,90.0,93.0,84.0,82.0,71.0,81.0,103.0,95.0,93.0,95.0,83.0,90.0,120.0,123.0,73.0,71.0,75.0,75.0,66.0,44.0,54.0,36.0,41.0,30.0,20.0,34.0,30.0,20.0,18.0,19.0,35.0 J82151,11.0,14.0,11.0,11.0,19.0,21.0,34.0,25.0,22.0,25.0,25.0,31.0,28.0,25.0,33.0,30.0,33.0,25.0,35.0,20.0,19.0,23.0,15.0,17.0,22.0,9.0,17.0,26.0,16.0,13.0,18.0,22.0,17.0,21.0,31.0,18.0,22.0,28.0,19.0,29.0,28.0,27.0,27.0,38.0,25.0,25.0,38.0,36.0,26.0,28.0,31.0,33.0,32.0,37.0,56.0,40.0,45.0,55.0,57.0,42.0,48.0,48.0,52.0,54.0,47.0,45.0,56.0,49.0,53.0,48.0,49.0,51.0,40.0,49.0,53.0,39.0,43.0,35.0,55.0,31.0,29.0,32.0,23.0,25.0,15.0,24.0,15.0,19.0,17.0,8.0,9.0,10.0,8.0,3.0,9.0,15.0 J82152,33.0,32.0,27.0,36.0,42.0,25.0,35.0,40.0,44.0,45.0,43.0,38.0,44.0,34.0,42.0,49.0,41.0,56.0,36.0,36.0,42.0,33.0,38.0,39.0,34.0,34.0,48.0,45.0,41.0,46.0,41.0,60.0,59.0,60.0,47.0,63.0,59.0,48.0,67.0,56.0,62.0,44.0,52.0,49.0,49.0,48.0,48.0,38.0,42.0,40.0,54.0,39.0,49.0,65.0,49.0,51.0,49.0,61.0,67.0,77.0,64.0,65.0,64.0,61.0,72.0,60.0,64.0,58.0,58.0,51.0,50.0,44.0,54.0,55.0,41.0,45.0,57.0,58.0,53.0,34.0,36.0,39.0,33.0,25.0,19.0,20.0,19.0,17.0,21.0,17.0,10.0,7.0,11.0,8.0,5.0,16.0 J82154,136.0,176.0,189.0,201.0,183.0,188.0,216.0,193.0,198.0,256.0,211.0,203.0,248.0,227.0,222.0,208.0,214.0,213.0,165.0,157.0,139.0,154.0,153.0,149.0,190.0,180.0,201.0,192.0,195.0,229.0,211.0,221.0,257.0,255.0,255.0,261.0,296.0,306.0,292.0,272.0,242.0,237.0,242.0,262.0,259.0,233.0,219.0,219.0,227.0,211.0,228.0,237.0,234.0,253.0,251.0,232.0,273.0,254.0,280.0,266.0,262.0,231.0,255.0,261.0,244.0,214.0,217.0,197.0,188.0,167.0,172.0,153.0,177.0,160.0,149.0,155.0,174.0,157.0,199.0,137.0,154.0,141.0,117.0,122.0,78.0,95.0,91.0,85.0,65.0,46.0,54.0,51.0,43.0,35.0,40.0,54.0 J82155,293.0,313.0,322.0,321.0,357.0,335.0,357.0,390.0,370.0,425.0,435.0,402.0,430.0,408.0,423.0,413.0,359.0,376.0,390.0,367.0,411.0,373.0,395.0,345.0,380.0,453.0,425.0,452.0,468.0,462.0,506.0,514.0,533.0,524.0,516.0,522.0,529.0,508.0,476.0,520.0,475.0,461.0,421.0,464.0,414.0,363.0,367.0,342.0,322.0,360.0,347.0,343.0,316.0,364.0,393.0,336.0,344.0,364.0,365.0,381.0,349.0,351.0,324.0,296.0,330.0,286.0,267.0,295.0,297.0,253.0,242.0,247.0,234.0,203.0,207.0,182.0,198.0,223.0,233.0,194.0,168.0,135.0,122.0,96.0,108.0,81.0,101.0,87.0,71.0,56.0,55.0,41.0,33.0,41.0,25.0,64.0 J82156,29.0,26.0,28.0,39.0,34.0,25.0,31.0,32.0,26.0,31.0,30.0,33.0,24.0,31.0,41.0,32.0,31.0,39.0,28.0,26.0,24.0,31.0,27.0,37.0,38.0,37.0,32.0,37.0,32.0,46.0,52.0,46.0,43.0,50.0,50.0,44.0,43.0,53.0,45.0,40.0,55.0,36.0,49.0,41.0,35.0,50.0,47.0,37.0,34.0,48.0,49.0,33.0,44.0,55.0,49.0,56.0,64.0,70.0,49.0,56.0,50.0,71.0,77.0,58.0,62.0,57.0,73.0,68.0,57.0,58.0,58.0,54.0,56.0,65.0,62.0,56.0,46.0,71.0,65.0,44.0,53.0,37.0,43.0,39.0,25.0,46.0,35.0,27.0,30.0,17.0,20.0,14.0,9.0,9.0,14.0,23.0 J82157,55.0,57.0,83.0,70.0,93.0,84.0,81.0,85.0,94.0,85.0,89.0,84.0,105.0,102.0,102.0,110.0,101.0,90.0,89.0,82.0,66.0,72.0,75.0,64.0,88.0,81.0,87.0,84.0,94.0,119.0,106.0,121.0,118.0,100.0,118.0,106.0,116.0,121.0,89.0,108.0,112.0,104.0,110.0,111.0,105.0,113.0,112.0,112.0,92.0,104.0,112.0,129.0,122.0,117.0,129.0,122.0,123.0,121.0,103.0,118.0,111.0,107.0,124.0,110.0,102.0,106.0,103.0,99.0,84.0,105.0,87.0,99.0,83.0,77.0,99.0,102.0,107.0,104.0,123.0,83.0,93.0,74.0,68.0,75.0,56.0,92.0,65.0,48.0,60.0,34.0,29.0,29.0,31.0,30.0,18.0,47.0 J82161,34.0,40.0,33.0,35.0,47.0,47.0,42.0,51.0,58.0,52.0,62.0,43.0,65.0,72.0,57.0,51.0,41.0,56.0,42.0,33.0,35.0,38.0,39.0,47.0,39.0,38.0,46.0,44.0,49.0,40.0,54.0,43.0,63.0,60.0,67.0,72.0,61.0,71.0,62.0,63.0,79.0,67.0,47.0,66.0,53.0,67.0,65.0,56.0,67.0,48.0,57.0,53.0,64.0,74.0,82.0,60.0,80.0,86.0,80.0,83.0,90.0,96.0,73.0,89.0,85.0,90.0,82.0,66.0,65.0,66.0,57.0,64.0,65.0,58.0,69.0,73.0,61.0,74.0,82.0,57.0,61.0,65.0,46.0,34.0,35.0,31.0,32.0,29.0,28.0,17.0,17.0,15.0,16.0,4.0,7.0,20.0 J82163,70.0,62.0,81.0,84.0,71.0,91.0,79.0,78.0,97.0,105.0,89.0,82.0,90.0,92.0,74.0,75.0,89.0,93.0,78.0,76.0,82.0,92.0,75.0,88.0,87.0,102.0,91.0,94.0,99.0,98.0,108.0,101.0,101.0,107.0,114.0,128.0,124.0,115.0,115.0,117.0,128.0,93.0,114.0,93.0,108.0,91.0,104.0,94.0,79.0,90.0,98.0,84.0,93.0,112.0,121.0,124.0,122.0,125.0,110.0,116.0,146.0,132.0,109.0,126.0,117.0,114.0,109.0,116.0,92.0,97.0,120.0,95.0,113.0,91.0,93.0,99.0,103.0,106.0,125.0,88.0,90.0,75.0,92.0,61.0,59.0,62.0,50.0,40.0,40.0,42.0,27.0,33.0,15.0,15.0,11.0,40.0 J82169,39.0,49.0,46.0,47.0,62.0,53.0,56.0,54.0,48.0,72.0,43.0,64.0,59.0,58.0,50.0,48.0,49.0,47.0,45.0,39.0,48.0,37.0,35.0,37.0,59.0,48.0,43.0,43.0,51.0,63.0,69.0,64.0,60.0,76.0,81.0,77.0,82.0,58.0,90.0,79.0,77.0,70.0,57.0,69.0,72.0,69.0,55.0,57.0,65.0,53.0,42.0,49.0,54.0,50.0,56.0,53.0,52.0,52.0,62.0,46.0,45.0,47.0,45.0,44.0,39.0,39.0,39.0,45.0,44.0,37.0,29.0,48.0,30.0,32.0,30.0,31.0,28.0,29.0,40.0,22.0,23.0,20.0,21.0,11.0,10.0,14.0,14.0,14.0,7.0,13.0,4.0,3.0,6.0,3.0,1.0,4.0 J82174,32.0,44.0,50.0,47.0,55.0,57.0,64.0,83.0,63.0,63.0,79.0,73.0,84.0,69.0,78.0,84.0,77.0,76.0,72.0,65.0,58.0,56.0,54.0,51.0,56.0,59.0,71.0,60.0,61.0,52.0,53.0,59.0,70.0,72.0,66.0,82.0,65.0,84.0,76.0,76.0,80.0,68.0,93.0,91.0,97.0,81.0,84.0,71.0,80.0,85.0,82.0,96.0,95.0,106.0,137.0,119.0,109.0,120.0,108.0,133.0,140.0,136.0,120.0,116.0,135.0,102.0,129.0,97.0,106.0,86.0,87.0,96.0,90.0,98.0,86.0,86.0,82.0,69.0,87.0,51.0,73.0,62.0,59.0,50.0,54.0,42.0,36.0,22.0,36.0,21.0,25.0,19.0,22.0,14.0,8.0,19.0 J82184,33.0,33.0,24.0,25.0,25.0,23.0,22.0,32.0,30.0,27.0,23.0,22.0,17.0,22.0,38.0,25.0,25.0,28.0,14.0,17.0,14.0,25.0,21.0,27.0,39.0,41.0,35.0,27.0,47.0,41.0,39.0,39.0,35.0,41.0,29.0,30.0,46.0,21.0,29.0,34.0,30.0,36.0,28.0,29.0,31.0,31.0,26.0,26.0,18.0,26.0,24.0,31.0,27.0,28.0,28.0,25.0,28.0,31.0,24.0,34.0,31.0,34.0,18.0,30.0,19.0,22.0,24.0,26.0,15.0,20.0,24.0,23.0,14.0,13.0,15.0,11.0,11.0,15.0,16.0,10.0,7.0,4.0,5.0,7.0,5.0,7.0,4.0,7.0,1.0,,5.0,5.0,3.0,4.0,,3.0 J82194,53.0,58.0,44.0,60.0,53.0,58.0,58.0,65.0,79.0,78.0,69.0,80.0,75.0,63.0,72.0,90.0,95.0,73.0,63.0,65.0,78.0,59.0,59.0,73.0,65.0,73.0,64.0,83.0,79.0,86.0,88.0,83.0,77.0,97.0,118.0,96.0,95.0,100.0,117.0,110.0,94.0,73.0,99.0,86.0,87.0,80.0,87.0,80.0,74.0,87.0,72.0,84.0,80.0,94.0,98.0,100.0,85.0,119.0,106.0,86.0,112.0,98.0,93.0,86.0,81.0,85.0,70.0,71.0,59.0,63.0,69.0,54.0,71.0,59.0,41.0,56.0,61.0,52.0,67.0,48.0,45.0,37.0,44.0,30.0,27.0,36.0,27.0,23.0,24.0,33.0,16.0,20.0,10.0,12.0,7.0,23.0 J82196,69.0,74.0,71.0,70.0,74.0,75.0,77.0,88.0,85.0,120.0,94.0,87.0,83.0,106.0,89.0,98.0,79.0,104.0,110.0,71.0,97.0,85.0,78.0,84.0,88.0,91.0,99.0,91.0,104.0,114.0,103.0,104.0,108.0,118.0,94.0,141.0,108.0,126.0,122.0,110.0,89.0,112.0,97.0,94.0,93.0,103.0,92.0,63.0,72.0,59.0,81.0,86.0,94.0,103.0,100.0,96.0,96.0,101.0,101.0,86.0,100.0,89.0,100.0,98.0,91.0,82.0,79.0,86.0,84.0,86.0,86.0,70.0,69.0,47.0,65.0,67.0,75.0,71.0,76.0,59.0,46.0,43.0,51.0,33.0,36.0,29.0,26.0,37.0,27.0,27.0,23.0,24.0,22.0,22.0,15.0,27.0 J82199,65.0,53.0,53.0,51.0,42.0,51.0,46.0,39.0,37.0,43.0,40.0,33.0,36.0,28.0,23.0,24.0,31.0,31.0,169.0,429.0,619.0,581.0,474.0,423.0,487.0,455.0,366.0,349.0,305.0,273.0,241.0,162.0,163.0,135.0,133.0,112.0,109.0,107.0,83.0,73.0,68.0,72.0,68.0,50.0,43.0,47.0,36.0,34.0,33.0,35.0,27.0,23.0,25.0,31.0,22.0,25.0,26.0,34.0,30.0,24.0,25.0,24.0,19.0,24.0,26.0,23.0,16.0,13.0,23.0,29.0,18.0,16.0,13.0,16.0,23.0,26.0,9.0,18.0,15.0,10.0,11.0,10.0,8.0,7.0,6.0,11.0,10.0,6.0,3.0,4.0,4.0,3.0,1.0,1.0,1.0,3.0 J82201,17.0,13.0,26.0,25.0,32.0,45.0,40.0,38.0,40.0,47.0,49.0,42.0,69.0,56.0,55.0,57.0,57.0,58.0,56.0,47.0,32.0,32.0,37.0,43.0,38.0,30.0,33.0,25.0,26.0,30.0,39.0,27.0,31.0,46.0,38.0,43.0,30.0,53.0,57.0,48.0,55.0,53.0,47.0,69.0,59.0,60.0,62.0,65.0,57.0,69.0,65.0,66.0,62.0,48.0,66.0,47.0,73.0,66.0,52.0,61.0,58.0,73.0,51.0,61.0,47.0,57.0,47.0,52.0,55.0,52.0,47.0,38.0,43.0,42.0,39.0,44.0,37.0,49.0,50.0,29.0,35.0,32.0,38.0,22.0,21.0,21.0,20.0,23.0,18.0,16.0,22.0,9.0,11.0,11.0,3.0,13.0 J82207,51.0,45.0,55.0,50.0,43.0,41.0,46.0,46.0,48.0,50.0,50.0,50.0,52.0,54.0,54.0,47.0,57.0,50.0,63.0,68.0,82.0,59.0,90.0,123.0,145.0,126.0,128.0,135.0,134.0,133.0,153.0,128.0,99.0,99.0,125.0,119.0,84.0,95.0,80.0,95.0,87.0,87.0,67.0,86.0,80.0,90.0,53.0,69.0,65.0,76.0,52.0,56.0,58.0,46.0,45.0,53.0,67.0,62.0,47.0,44.0,44.0,48.0,46.0,49.0,50.0,33.0,40.0,39.0,31.0,33.0,37.0,35.0,23.0,39.0,34.0,31.0,38.0,30.0,27.0,28.0,20.0,23.0,22.0,17.0,16.0,15.0,13.0,14.0,10.0,11.0,8.0,6.0,12.0,6.0,2.0,11.0 J82208,38.0,43.0,41.0,39.0,42.0,35.0,42.0,44.0,41.0,37.0,32.0,48.0,39.0,39.0,46.0,43.0,36.0,40.0,37.0,33.0,35.0,27.0,32.0,39.0,51.0,53.0,46.0,60.0,63.0,69.0,64.0,83.0,73.0,64.0,61.0,64.0,63.0,59.0,72.0,62.0,60.0,61.0,60.0,58.0,44.0,47.0,47.0,42.0,38.0,37.0,39.0,42.0,39.0,53.0,44.0,45.0,42.0,48.0,42.0,38.0,36.0,32.0,40.0,37.0,36.0,40.0,28.0,35.0,27.0,24.0,27.0,21.0,28.0,15.0,22.0,16.0,15.0,29.0,23.0,20.0,22.0,22.0,17.0,14.0,18.0,8.0,8.0,12.0,7.0,8.0,4.0,5.0,8.0,5.0,1.0,6.0 J82210,17.0,23.0,24.0,29.0,24.0,21.0,37.0,32.0,36.0,32.0,31.0,32.0,48.0,38.0,40.0,63.0,22.0,41.0,42.0,39.0,36.0,37.0,51.0,34.0,28.0,39.0,35.0,40.0,32.0,40.0,32.0,34.0,47.0,39.0,48.0,41.0,34.0,49.0,40.0,33.0,28.0,49.0,39.0,43.0,51.0,38.0,38.0,44.0,47.0,37.0,55.0,55.0,62.0,63.0,72.0,77.0,76.0,72.0,101.0,80.0,76.0,95.0,90.0,73.0,80.0,80.0,75.0,77.0,65.0,73.0,74.0,69.0,59.0,72.0,84.0,82.0,98.0,76.0,100.0,74.0,93.0,67.0,48.0,46.0,44.0,47.0,42.0,48.0,35.0,31.0,28.0,20.0,17.0,13.0,17.0,30.0 J82213,28.0,29.0,39.0,41.0,32.0,44.0,43.0,44.0,50.0,46.0,39.0,37.0,36.0,54.0,44.0,38.0,40.0,47.0,47.0,37.0,37.0,24.0,40.0,28.0,27.0,37.0,42.0,44.0,53.0,58.0,52.0,45.0,58.0,61.0,68.0,58.0,58.0,54.0,62.0,49.0,53.0,50.0,42.0,54.0,53.0,48.0,45.0,46.0,48.0,48.0,34.0,34.0,30.0,38.0,38.0,35.0,40.0,36.0,23.0,29.0,38.0,30.0,32.0,19.0,31.0,24.0,33.0,21.0,32.0,17.0,24.0,17.0,22.0,22.0,18.0,13.0,21.0,16.0,19.0,10.0,12.0,8.0,12.0,14.0,3.0,3.0,11.0,3.0,3.0,8.0,1.0,1.0,1.0,2.0,1.0,6.0 J82214,43.0,51.0,45.0,68.0,57.0,59.0,52.0,50.0,65.0,62.0,62.0,60.0,55.0,62.0,52.0,48.0,59.0,38.0,51.0,43.0,38.0,41.0,30.0,51.0,50.0,45.0,44.0,41.0,48.0,56.0,63.0,63.0,65.0,75.0,64.0,56.0,62.0,57.0,74.0,76.0,57.0,74.0,78.0,76.0,76.0,70.0,62.0,64.0,71.0,70.0,76.0,72.0,79.0,66.0,72.0,67.0,70.0,54.0,85.0,57.0,91.0,57.0,66.0,69.0,55.0,60.0,53.0,50.0,60.0,55.0,38.0,62.0,49.0,50.0,41.0,59.0,52.0,52.0,41.0,30.0,40.0,32.0,43.0,33.0,26.0,16.0,18.0,24.0,16.0,21.0,14.0,8.0,11.0,12.0,6.0,14.0 J82215,33.0,36.0,58.0,43.0,44.0,64.0,46.0,55.0,65.0,74.0,75.0,77.0,57.0,74.0,85.0,75.0,72.0,95.0,77.0,49.0,61.0,54.0,62.0,48.0,73.0,75.0,40.0,51.0,61.0,57.0,65.0,59.0,61.0,65.0,59.0,88.0,68.0,55.0,82.0,66.0,73.0,79.0,88.0,89.0,76.0,66.0,95.0,77.0,85.0,80.0,85.0,88.0,82.0,92.0,117.0,96.0,121.0,78.0,106.0,93.0,110.0,107.0,94.0,98.0,98.0,95.0,120.0,81.0,95.0,77.0,100.0,96.0,78.0,87.0,76.0,110.0,99.0,110.0,109.0,85.0,92.0,86.0,64.0,50.0,46.0,53.0,39.0,43.0,36.0,29.0,35.0,17.0,17.0,21.0,10.0,36.0 J82216,42.0,52.0,45.0,54.0,56.0,69.0,64.0,67.0,69.0,97.0,71.0,95.0,84.0,94.0,88.0,66.0,84.0,74.0,66.0,58.0,66.0,53.0,59.0,64.0,57.0,53.0,63.0,62.0,56.0,71.0,68.0,67.0,64.0,76.0,81.0,78.0,92.0,95.0,94.0,95.0,79.0,88.0,75.0,100.0,97.0,100.0,83.0,92.0,95.0,95.0,87.0,74.0,94.0,114.0,91.0,77.0,80.0,114.0,98.0,102.0,94.0,102.0,83.0,108.0,94.0,68.0,80.0,86.0,66.0,60.0,63.0,70.0,86.0,78.0,76.0,86.0,92.0,87.0,85.0,64.0,83.0,69.0,76.0,52.0,57.0,55.0,58.0,37.0,39.0,37.0,32.0,25.0,21.0,16.0,22.0,34.0 J82217,,,,,,,,,,,,,,,,,,,,1.0,1.0,,2.0,2.0,5.0,4.0,2.0,3.0,4.0,1.0,,4.0,2.0,5.0,6.0,5.0,9.0,4.0,7.0,1.0,6.0,1.0,1.0,5.0,3.0,3.0,4.0,5.0,3.0,3.0,4.0,3.0,2.0,,4.0,1.0,3.0,3.0,,2.0,,,,,,1.0,2.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,, J82218,96.0,122.0,147.0,141.0,139.0,130.0,132.0,136.0,144.0,123.0,110.0,119.0,117.0,101.0,93.0,110.0,84.0,77.0,72.0,76.0,67.0,62.0,84.0,56.0,81.0,100.0,122.0,113.0,151.0,167.0,157.0,159.0,172.0,168.0,178.0,179.0,189.0,191.0,168.0,162.0,154.0,166.0,154.0,135.0,170.0,144.0,137.0,133.0,109.0,131.0,132.0,103.0,121.0,107.0,112.0,97.0,110.0,105.0,87.0,111.0,88.0,104.0,98.0,75.0,91.0,78.0,90.0,78.0,70.0,67.0,61.0,54.0,53.0,68.0,55.0,55.0,43.0,39.0,53.0,35.0,44.0,26.0,31.0,22.0,24.0,19.0,18.0,20.0,13.0,18.0,13.0,6.0,9.0,3.0,5.0,15.0 J82605,22.0,13.0,16.0,14.0,18.0,15.0,19.0,20.0,18.0,13.0,17.0,8.0,11.0,9.0,13.0,19.0,16.0,18.0,11.0,25.0,30.0,39.0,34.0,60.0,79.0,76.0,97.0,83.0,86.0,68.0,71.0,80.0,75.0,56.0,50.0,46.0,35.0,39.0,41.0,29.0,27.0,33.0,32.0,29.0,31.0,17.0,22.0,20.0,23.0,22.0,22.0,18.0,8.0,12.0,17.0,9.0,14.0,12.0,12.0,13.0,13.0,12.0,15.0,7.0,8.0,6.0,13.0,7.0,10.0,12.0,8.0,10.0,7.0,5.0,8.0,9.0,9.0,11.0,5.0,7.0,7.0,6.0,4.0,7.0,2.0,4.0,,6.0,2.0,4.0,3.0,3.0,,2.0,1.0,2.0 J82622,224.0,206.0,246.0,255.0,235.0,261.0,270.0,289.0,285.0,316.0,311.0,326.0,330.0,324.0,319.0,313.0,309.0,298.0,302.0,245.0,197.0,226.0,227.0,234.0,231.0,234.0,296.0,321.0,345.0,301.0,367.0,346.0,398.0,341.0,327.0,393.0,375.0,363.0,338.0,375.0,340.0,330.0,316.0,325.0,339.0,319.0,309.0,274.0,295.0,293.0,296.0,275.0,332.0,288.0,301.0,316.0,313.0,293.0,320.0,307.0,308.0,288.0,300.0,249.0,273.0,257.0,219.0,245.0,247.0,166.0,168.0,196.0,185.0,194.0,156.0,177.0,170.0,165.0,174.0,141.0,154.0,116.0,132.0,112.0,97.0,81.0,84.0,69.0,68.0,59.0,54.0,40.0,51.0,48.0,37.0,72.0 J82625,22.0,22.0,18.0,20.0,16.0,21.0,27.0,29.0,23.0,26.0,27.0,27.0,26.0,21.0,27.0,31.0,18.0,28.0,22.0,15.0,14.0,10.0,16.0,28.0,19.0,32.0,21.0,17.0,30.0,24.0,22.0,28.0,27.0,25.0,16.0,26.0,29.0,28.0,37.0,19.0,25.0,32.0,36.0,27.0,27.0,27.0,25.0,33.0,28.0,37.0,25.0,33.0,32.0,28.0,41.0,31.0,33.0,43.0,38.0,34.0,41.0,40.0,39.0,37.0,37.0,35.0,37.0,38.0,32.0,28.0,37.0,29.0,25.0,36.0,38.0,31.0,30.0,34.0,32.0,35.0,31.0,20.0,26.0,19.0,17.0,12.0,15.0,14.0,10.0,12.0,8.0,7.0,6.0,9.0,,8.0 J82639,72.0,87.0,79.0,91.0,88.0,81.0,91.0,96.0,99.0,123.0,107.0,122.0,114.0,99.0,100.0,97.0,106.0,101.0,102.0,80.0,59.0,84.0,67.0,66.0,85.0,82.0,87.0,96.0,91.0,87.0,89.0,106.0,104.0,93.0,115.0,112.0,110.0,118.0,128.0,107.0,100.0,108.0,121.0,111.0,118.0,135.0,130.0,122.0,125.0,135.0,141.0,106.0,150.0,141.0,141.0,149.0,128.0,140.0,150.0,144.0,142.0,158.0,135.0,142.0,134.0,147.0,128.0,121.0,123.0,110.0,120.0,124.0,125.0,115.0,116.0,112.0,139.0,151.0,150.0,117.0,113.0,98.0,72.0,59.0,52.0,57.0,57.0,46.0,27.0,36.0,24.0,20.0,18.0,11.0,13.0,18.0 J82640,25.0,29.0,36.0,34.0,39.0,30.0,36.0,34.0,36.0,36.0,31.0,51.0,45.0,34.0,42.0,38.0,35.0,40.0,41.0,36.0,32.0,37.0,38.0,24.0,37.0,35.0,43.0,33.0,28.0,42.0,38.0,44.0,38.0,50.0,54.0,41.0,54.0,45.0,48.0,52.0,43.0,55.0,41.0,39.0,42.0,41.0,54.0,29.0,38.0,40.0,46.0,33.0,50.0,44.0,58.0,54.0,49.0,47.0,57.0,59.0,52.0,50.0,68.0,51.0,42.0,59.0,47.0,50.0,50.0,32.0,42.0,39.0,26.0,43.0,35.0,33.0,32.0,39.0,34.0,29.0,26.0,31.0,25.0,26.0,22.0,11.0,12.0,11.0,12.0,12.0,12.0,6.0,6.0,5.0,4.0,9.0 J82646,73.0,75.0,92.0,95.0,97.0,104.0,98.0,112.0,89.0,104.0,104.0,121.0,143.0,140.0,121.0,121.0,126.0,125.0,121.0,89.0,78.0,84.0,88.0,71.0,82.0,88.0,96.0,110.0,117.0,100.0,115.0,109.0,116.0,119.0,128.0,138.0,133.0,140.0,131.0,145.0,132.0,92.0,137.0,114.0,104.0,112.0,97.0,81.0,92.0,86.0,96.0,88.0,85.0,104.0,118.0,107.0,124.0,129.0,134.0,125.0,121.0,121.0,115.0,113.0,124.0,113.0,93.0,81.0,104.0,74.0,62.0,77.0,54.0,50.0,55.0,64.0,70.0,45.0,66.0,59.0,52.0,50.0,34.0,35.0,35.0,41.0,32.0,22.0,35.0,18.0,15.0,14.0,10.0,11.0,6.0,18.0 J82669,52.0,59.0,54.0,63.0,61.0,68.0,68.0,77.0,83.0,63.0,67.0,83.0,63.0,71.0,78.0,60.0,70.0,59.0,75.0,56.0,57.0,42.0,52.0,49.0,48.0,74.0,57.0,68.0,57.0,59.0,59.0,80.0,74.0,76.0,65.0,71.0,88.0,68.0,78.0,74.0,79.0,75.0,82.0,52.0,69.0,73.0,57.0,55.0,44.0,51.0,56.0,56.0,69.0,59.0,63.0,60.0,52.0,51.0,45.0,55.0,53.0,55.0,58.0,52.0,48.0,54.0,47.0,41.0,41.0,41.0,40.0,38.0,41.0,41.0,31.0,32.0,35.0,35.0,38.0,25.0,21.0,20.0,14.0,19.0,11.0,10.0,13.0,12.0,11.0,10.0,8.0,3.0,6.0,3.0,4.0,4.0 J84003,18.0,20.0,23.0,33.0,22.0,21.0,18.0,21.0,29.0,31.0,39.0,32.0,31.0,42.0,35.0,44.0,37.0,39.0,47.0,31.0,35.0,21.0,27.0,29.0,20.0,39.0,30.0,36.0,31.0,40.0,25.0,28.0,24.0,34.0,40.0,39.0,42.0,37.0,39.0,30.0,37.0,31.0,40.0,41.0,40.0,56.0,52.0,22.0,42.0,43.0,50.0,39.0,47.0,55.0,59.0,73.0,69.0,68.0,70.0,56.0,68.0,75.0,68.0,86.0,67.0,75.0,85.0,69.0,82.0,72.0,74.0,72.0,52.0,70.0,68.0,75.0,55.0,73.0,98.0,53.0,59.0,50.0,45.0,33.0,26.0,27.0,24.0,17.0,17.0,14.0,16.0,13.0,8.0,15.0,12.0,22.0 J84004,24.0,29.0,34.0,24.0,29.0,27.0,36.0,38.0,30.0,45.0,43.0,46.0,52.0,43.0,29.0,52.0,41.0,48.0,45.0,36.0,33.0,37.0,49.0,41.0,39.0,48.0,52.0,41.0,60.0,57.0,47.0,52.0,49.0,48.0,59.0,48.0,59.0,49.0,55.0,54.0,46.0,49.0,53.0,59.0,46.0,58.0,48.0,37.0,53.0,55.0,41.0,63.0,53.0,73.0,69.0,37.0,50.0,71.0,81.0,62.0,72.0,65.0,70.0,54.0,58.0,60.0,59.0,68.0,62.0,58.0,63.0,64.0,56.0,72.0,53.0,65.0,62.0,82.0,78.0,63.0,52.0,52.0,38.0,37.0,29.0,18.0,26.0,19.0,13.0,13.0,8.0,8.0,6.0,8.0,2.0,18.0 J84005,21.0,22.0,19.0,20.0,29.0,25.0,24.0,33.0,38.0,32.0,38.0,43.0,39.0,44.0,38.0,49.0,42.0,48.0,38.0,30.0,34.0,38.0,34.0,30.0,29.0,29.0,41.0,36.0,40.0,34.0,41.0,33.0,52.0,37.0,44.0,47.0,34.0,35.0,41.0,38.0,47.0,45.0,49.0,43.0,62.0,48.0,51.0,51.0,58.0,50.0,60.0,73.0,67.0,70.0,77.0,67.0,72.0,67.0,83.0,62.0,85.0,62.0,69.0,60.0,66.0,72.0,73.0,58.0,68.0,69.0,64.0,63.0,59.0,66.0,63.0,55.0,61.0,68.0,63.0,63.0,51.0,50.0,51.0,36.0,27.0,34.0,36.0,36.0,23.0,15.0,25.0,20.0,16.0,10.0,8.0,20.0 J84007,9.0,13.0,18.0,11.0,18.0,18.0,17.0,17.0,28.0,23.0,30.0,30.0,34.0,27.0,20.0,35.0,27.0,31.0,24.0,19.0,24.0,19.0,15.0,9.0,18.0,22.0,14.0,14.0,21.0,21.0,26.0,22.0,19.0,20.0,16.0,27.0,18.0,24.0,26.0,21.0,30.0,32.0,32.0,22.0,32.0,38.0,31.0,28.0,31.0,28.0,33.0,34.0,41.0,35.0,55.0,48.0,49.0,50.0,55.0,48.0,65.0,43.0,51.0,75.0,57.0,57.0,58.0,67.0,68.0,72.0,69.0,60.0,64.0,77.0,66.0,59.0,68.0,73.0,84.0,57.0,64.0,50.0,56.0,41.0,38.0,35.0,32.0,22.0,25.0,29.0,33.0,22.0,12.0,13.0,13.0,30.0 J84008,12.0,12.0,19.0,14.0,21.0,16.0,17.0,27.0,18.0,19.0,30.0,34.0,21.0,39.0,24.0,37.0,26.0,31.0,27.0,22.0,27.0,28.0,21.0,30.0,18.0,17.0,29.0,24.0,28.0,22.0,32.0,18.0,21.0,40.0,30.0,27.0,26.0,40.0,26.0,25.0,28.0,36.0,29.0,19.0,33.0,30.0,38.0,36.0,27.0,36.0,37.0,32.0,40.0,37.0,47.0,35.0,32.0,53.0,47.0,49.0,61.0,46.0,41.0,51.0,42.0,48.0,42.0,30.0,46.0,29.0,33.0,29.0,29.0,38.0,29.0,32.0,35.0,39.0,36.0,26.0,30.0,23.0,30.0,26.0,24.0,20.0,22.0,9.0,14.0,10.0,10.0,8.0,9.0,7.0,1.0,10.0 J84011,100.0,107.0,125.0,111.0,125.0,123.0,133.0,151.0,155.0,150.0,164.0,149.0,151.0,151.0,141.0,166.0,118.0,118.0,143.0,114.0,109.0,110.0,102.0,90.0,108.0,138.0,129.0,153.0,162.0,161.0,170.0,184.0,178.0,194.0,198.0,160.0,197.0,172.0,185.0,192.0,185.0,137.0,142.0,136.0,149.0,170.0,132.0,128.0,119.0,154.0,148.0,160.0,153.0,156.0,167.0,185.0,198.0,170.0,179.0,194.0,170.0,160.0,155.0,194.0,137.0,146.0,135.0,143.0,135.0,139.0,150.0,129.0,135.0,128.0,132.0,143.0,124.0,149.0,125.0,108.0,110.0,100.0,111.0,71.0,60.0,76.0,57.0,48.0,48.0,27.0,40.0,40.0,27.0,19.0,10.0,37.0 J84012,51.0,58.0,52.0,71.0,65.0,52.0,81.0,57.0,72.0,79.0,70.0,72.0,77.0,84.0,100.0,97.0,83.0,99.0,74.0,73.0,58.0,63.0,60.0,79.0,70.0,68.0,88.0,69.0,82.0,84.0,97.0,89.0,95.0,109.0,94.0,89.0,76.0,100.0,94.0,75.0,82.0,92.0,72.0,81.0,87.0,79.0,78.0,81.0,90.0,80.0,88.0,77.0,99.0,93.0,94.0,114.0,130.0,116.0,126.0,113.0,124.0,109.0,112.0,127.0,105.0,106.0,98.0,105.0,109.0,86.0,89.0,103.0,87.0,59.0,75.0,87.0,90.0,99.0,90.0,71.0,79.0,48.0,61.0,28.0,39.0,44.0,38.0,35.0,15.0,31.0,15.0,19.0,10.0,8.0,7.0,22.0 J84013,72.0,71.0,85.0,104.0,71.0,99.0,86.0,107.0,124.0,118.0,104.0,127.0,116.0,131.0,129.0,118.0,107.0,137.0,117.0,119.0,105.0,93.0,92.0,93.0,107.0,123.0,127.0,126.0,122.0,112.0,144.0,121.0,121.0,145.0,154.0,119.0,129.0,154.0,142.0,136.0,136.0,125.0,136.0,144.0,138.0,147.0,137.0,120.0,134.0,127.0,160.0,156.0,171.0,181.0,193.0,182.0,238.0,209.0,231.0,223.0,246.0,242.0,241.0,273.0,259.0,237.0,228.0,235.0,198.0,237.0,234.0,241.0,224.0,220.0,223.0,204.0,200.0,213.0,226.0,185.0,179.0,156.0,145.0,134.0,90.0,102.0,70.0,77.0,77.0,70.0,46.0,47.0,50.0,34.0,37.0,50.0 J84015,47.0,44.0,62.0,49.0,59.0,73.0,72.0,87.0,82.0,81.0,94.0,80.0,90.0,103.0,76.0,98.0,95.0,88.0,85.0,66.0,66.0,44.0,52.0,52.0,63.0,61.0,70.0,78.0,61.0,80.0,79.0,92.0,78.0,95.0,95.0,108.0,110.0,97.0,87.0,87.0,104.0,106.0,81.0,80.0,103.0,119.0,83.0,104.0,94.0,85.0,85.0,101.0,105.0,129.0,131.0,110.0,115.0,129.0,154.0,133.0,111.0,127.0,120.0,117.0,126.0,100.0,107.0,98.0,96.0,107.0,91.0,106.0,92.0,88.0,87.0,93.0,108.0,104.0,101.0,74.0,91.0,80.0,75.0,65.0,44.0,58.0,40.0,40.0,41.0,41.0,32.0,29.0,22.0,21.0,14.0,28.0 J84016,11.0,19.0,20.0,22.0,15.0,19.0,12.0,21.0,21.0,22.0,37.0,27.0,26.0,28.0,30.0,23.0,26.0,19.0,29.0,26.0,19.0,34.0,24.0,16.0,22.0,12.0,19.0,19.0,20.0,22.0,25.0,21.0,20.0,17.0,32.0,25.0,24.0,25.0,37.0,26.0,26.0,26.0,29.0,23.0,39.0,23.0,37.0,30.0,26.0,28.0,28.0,35.0,41.0,51.0,55.0,59.0,73.0,47.0,62.0,67.0,57.0,61.0,65.0,59.0,68.0,61.0,77.0,60.0,68.0,55.0,72.0,71.0,68.0,56.0,51.0,51.0,74.0,81.0,75.0,45.0,53.0,42.0,37.0,35.0,20.0,25.0,27.0,13.0,14.0,17.0,19.0,10.0,12.0,8.0,3.0,17.0 J84017,27.0,19.0,28.0,35.0,24.0,33.0,33.0,44.0,28.0,42.0,41.0,35.0,44.0,46.0,56.0,42.0,54.0,38.0,54.0,40.0,50.0,33.0,21.0,34.0,35.0,39.0,31.0,40.0,30.0,47.0,38.0,38.0,46.0,49.0,43.0,56.0,71.0,43.0,49.0,55.0,69.0,43.0,44.0,48.0,40.0,37.0,52.0,33.0,45.0,32.0,38.0,55.0,59.0,60.0,67.0,66.0,70.0,64.0,62.0,79.0,80.0,75.0,77.0,69.0,86.0,74.0,52.0,48.0,59.0,52.0,57.0,55.0,41.0,72.0,58.0,59.0,65.0,64.0,52.0,47.0,61.0,56.0,42.0,36.0,35.0,36.0,28.0,36.0,26.0,22.0,15.0,9.0,10.0,13.0,18.0,21.0 J84019,26.0,25.0,29.0,36.0,36.0,39.0,30.0,39.0,31.0,33.0,35.0,33.0,31.0,54.0,39.0,33.0,35.0,44.0,36.0,33.0,40.0,28.0,36.0,48.0,34.0,33.0,45.0,40.0,48.0,32.0,51.0,52.0,49.0,41.0,46.0,62.0,46.0,39.0,48.0,42.0,44.0,36.0,41.0,48.0,47.0,60.0,48.0,33.0,41.0,47.0,62.0,55.0,64.0,71.0,70.0,79.0,91.0,93.0,117.0,74.0,113.0,121.0,107.0,106.0,109.0,110.0,110.0,94.0,98.0,108.0,95.0,112.0,111.0,133.0,115.0,109.0,107.0,139.0,127.0,96.0,92.0,97.0,77.0,60.0,68.0,59.0,54.0,54.0,28.0,43.0,32.0,18.0,21.0,17.0,13.0,40.0 Y01281,13.0,23.0,15.0,20.0,19.0,16.0,26.0,11.0,15.0,15.0,26.0,13.0,19.0,18.0,25.0,14.0,24.0,32.0,23.0,17.0,13.0,23.0,12.0,19.0,13.0,9.0,24.0,16.0,22.0,19.0,23.0,24.0,33.0,29.0,31.0,23.0,25.0,33.0,21.0,25.0,24.0,27.0,21.0,20.0,28.0,20.0,20.0,20.0,17.0,20.0,30.0,21.0,30.0,28.0,33.0,37.0,23.0,41.0,35.0,47.0,29.0,36.0,37.0,36.0,45.0,32.0,25.0,35.0,34.0,28.0,33.0,21.0,34.0,29.0,33.0,30.0,28.0,44.0,32.0,34.0,36.0,28.0,25.0,24.0,30.0,22.0,19.0,19.0,21.0,16.0,11.0,10.0,7.0,3.0,3.0,11.0 Y02526,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,1.0,1.0,2.0,1.0,1.0,2.0,,,2.0,1.0,1.0,,,1.0,,,1.0,1.0,,,,,1.0,,,,,1.0,1.0,2.0,1.0,1.0,1.0,,,,,,,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,, Y07014,80.0,63.0,76.0,73.0,87.0,80.0,85.0,84.0,108.0,102.0,98.0,99.0,87.0,120.0,100.0,102.0,92.0,104.0,93.0,68.0,72.0,71.0,63.0,66.0,83.0,80.0,87.0,93.0,106.0,83.0,92.0,101.0,103.0,122.0,107.0,124.0,124.0,110.0,107.0,112.0,123.0,106.0,102.0,117.0,101.0,120.0,100.0,89.0,77.0,65.0,95.0,77.0,101.0,78.0,86.0,86.0,81.0,67.0,71.0,82.0,60.0,69.0,65.0,62.0,50.0,55.0,63.0,50.0,41.0,35.0,47.0,43.0,44.0,39.0,38.0,55.0,55.0,52.0,56.0,39.0,39.0,37.0,33.0,29.0,25.0,12.0,17.0,16.0,11.0,12.0,10.0,9.0,4.0,5.0,7.0,8.0 Y07819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2.0,,,,,1.0,2.0,,,,1.0,,,,,,,2.0,,1.0,1.0,,1.0,,1.0,,,,,,1.0,,,,1.0,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 E84002,36,29,25,33,36,14,29,32,39,38,30,43,35,36,50,37,43,41,44,31,57,50,63,58,57,66,76,56,52,61,69,45,56,51,77,52,61,70,52,65,67,38,51,55,61,53,49,55,50,39,52,44,36,34,40,61,47,42,53,53,49,50,56,53,61,41,42,43,34,32,37,27,21,30,28,20,30,26,17,25,14,20,19,16,13,17,12,14,15,9,12,5,5,6,8,16 E84003,84,106,84,72,75,86,51,74,63,69,59,51,56,63,45,49,51,36,67,123,110,155,200,208,255,269,235,254,243,197,198,174,176,151,135,163,129,114,113,123,106,106,97,106,79,99,84,59,79,65,71,57,63,58,57,48,59,49,59,46,56,52,45,50,43,49,48,50,61,37,32,44,35,19,37,29,25,22,19,15,19,18,19,9,4,12,10,11,8,6,8,7,5,2,4,8 E84004,26,25,29,28,30,39,41,40,52,40,38,54,52,58,51,45,47,49,47,44,40,46,36,39,46,50,66,46,54,55,50,45,45,45,48,50,54,53,49,57,54,43,50,48,56,46,51,46,43,47,52,29,48,46,47,46,50,68,45,59,54,51,65,55,61,69,48,47,59,42,49,39,30,31,51,29,28,35,37,31,36,20,20,25,20,23,18,16,16,14,11,3,11,4,6,20 E84005,24,27,23,35,36,33,43,44,40,46,35,28,34,45,40,45,39,37,37,29,49,49,46,57,55,54,76,69,65,73,52,56,68,54,50,40,53,52,52,54,48,51,49,49,41,54,48,54,51,46,54,39,38,39,54,37,49,47,38,54,48,43,51,40,40,38,35,24,30,29,30,21,20,36,21,27,20,29,27,20,29,27,13,21,15,17,16,19,18,8,15,7,11,9,5,14 E84006,51,65,64,58,71,78,66,75,79,87,71,78,86,90,78,112,114,113,102,68,86,92,108,93,94,112,101,109,122,114,124,113,114,118,109,118,117,126,123,129,117,137,125,131,130,114,129,124,125,128,122,111,141,125,142,142,129,117,137,116,109,128,90,103,95,113,104,83,68,66,73,72,64,70,64,47,49,61,53,38,45,32,39,40,34,47,41,29,30,33,29,17,14,11,7,29 E84007,27,32,26,33,30,24,32,23,28,39,24,29,51,35,36,38,25,24,25,33,22,26,26,38,38,36,38,47,39,37,47,33,50,44,41,45,43,44,49,31,40,50,51,47,38,39,38,35,32,35,28,36,36,27,26,41,41,25,33,22,44,22,31,21,33,32,28,28,41,35,29,37,29,24,19,29,24,33,38,19,23,27,19,16,18,18,13,12,12,6,8,13,7,4,6,18 E84008,40,32,36,41,48,39,43,60,55,58,58,68,68,54,64,63,63,60,49,51,43,52,59,72,57,63,89,81,82,67,84,97,65,74,78,79,65,69,67,77,72,69,74,62,64,84,58,56,62,45,64,55,54,63,54,53,74,60,58,82,67,70,77,80,55,67,71,69,63,68,64,59,42,38,43,49,49,47,52,34,28,32,29,28,23,33,9,16,17,17,9,12,6,4,7,12 E84009,46,46,53,52,58,53,64,70,61,58,72,75,72,61,88,91,91,67,70,57,69,50,64,83,79,78,80,89,110,92,84,94,72,86,83,74,96,72,84,96,83,79,74,86,73,73,72,74,69,68,58,54,81,70,88,64,70,78,94,82,88,79,72,75,78,65,73,55,57,52,71,56,68,55,54,60,40,58,42,50,31,40,42,31,28,28,18,25,22,29,21,17,16,8,10,31 E84011,3,,2,4,5,4,2,9,6,7,4,13,7,5,9,11,11,9,8,8,7,5,10,5,5,8,11,11,6,13,9,6,10,9,9,10,9,9,9,12,12,7,11,7,7,10,13,11,9,9,5,6,16,12,5,12,9,6,6,8,6,18,10,7,8,8,15,9,5,9,7,8,10,7,5,4,12,6,4,4,6,4,7,7,3,5,3,2,4,3,2,4,1,1,3,1 E84012,17,35,26,28,31,29,31,31,41,33,37,35,43,53,26,44,39,33,48,40,34,38,33,52,56,65,61,69,73,66,72,67,61,78,62,53,60,64,68,69,58,75,65,69,54,51,60,69,43,63,60,70,59,56,47,47,59,54,42,56,52,54,59,49,47,50,41,43,38,31,38,30,37,38,32,37,29,30,23,15,21,17,17,17,9,15,15,15,8,7,5,6,7,3,2,3 E84013,27,37,53,40,49,35,40,64,50,58,60,53,54,79,72,61,58,76,68,62,64,66,74,63,51,61,71,80,86,75,56,62,58,55,57,60,70,65,48,64,69,69,53,63,56,66,62,47,54,42,46,48,67,54,43,58,57,51,64,53,49,52,37,40,43,42,45,28,22,38,24,27,22,25,24,27,19,16,8,19,16,16,25,12,13,10,8,7,14,7,6,7,4,7,1,9 E84014,68,52,60,49,55,46,62,39,58,56,47,43,42,59,55,43,58,50,54,54,39,42,57,74,65,81,96,90,76,72,91,76,70,75,79,65,79,82,97,85,79,65,65,69,73,70,53,59,66,40,61,44,45,52,47,45,40,63,53,50,54,42,68,47,48,44,48,42,38,42,41,32,41,33,34,40,47,42,29,32,27,36,25,21,31,17,30,19,13,10,18,13,3,6,4,11 E84015,52,62,68,86,90,90,100,71,80,69,82,79,84,101,94,88,86,105,77,70,96,86,94,96,104,110,120,109,119,119,110,121,128,103,121,127,121,130,117,121,97,123,108,119,101,101,91,98,89,89,92,121,98,91,89,109,89,92,108,98,110,95,99,97,93,102,85,74,75,65,68,60,58,61,54,48,47,46,52,47,40,36,34,38,25,30,22,22,23,13,11,11,13,4,7,20 E84017,26,22,29,25,35,31,34,35,33,39,30,38,39,38,36,34,57,54,47,50,31,36,45,48,64,65,53,54,53,54,61,60,68,63,59,56,61,69,68,63,56,52,52,56,55,57,45,50,38,52,44,42,47,48,38,59,55,49,56,47,40,46,50,42,43,37,50,46,32,24,29,31,37,26,29,29,30,31,20,19,36,19,24,13,15,18,14,17,16,15,9,7,4,4,4,10 E84018,32,28,28,27,39,40,39,54,39,45,38,54,41,57,39,37,43,38,31,33,40,43,39,39,50,63,67,50,63,67,50,57,59,48,48,51,69,51,67,70,73,52,67,54,52,49,52,54,41,57,50,38,44,44,41,41,49,42,36,56,45,50,39,44,44,48,55,50,49,44,44,49,55,29,41,35,47,42,30,35,37,29,22,23,24,17,17,11,9,9,6,9,8,7,3,14 E84020,24,41,36,39,41,37,27,33,32,34,25,36,33,37,28,39,36,28,27,28,27,39,23,37,51,42,51,45,46,55,57,44,57,50,54,51,51,66,48,46,50,42,40,45,45,37,44,25,45,30,33,37,40,42,38,47,41,33,35,26,36,38,27,31,37,35,42,28,29,23,34,29,16,30,29,23,18,25,18,18,19,21,9,20,15,11,5,13,12,6,7,4,4,2,3,8 E84021,79,64,94,74,82,87,88,92,96,76,87,73,74,88,75,73,58,75,94,87,90,107,104,128,168,184,180,194,177,187,182,178,160,153,160,145,160,145,131,117,120,109,108,105,117,116,93,110,88,74,98,86,85,60,78,98,86,66,79,75,80,84,81,64,70,70,57,48,56,44,52,42,43,33,40,23,31,29,30,17,19,24,12,16,16,16,16,14,12,11,6,8,5,1,5,7 E84022,33,31,24,29,35,24,35,29,33,40,33,36,55,43,38,46,48,47,39,34,37,37,40,43,53,60,62,65,57,59,53,65,56,47,62,67,48,54,60,47,52,50,50,60,57,56,55,49,49,42,43,31,45,23,50,39,50,49,47,52,47,36,43,37,38,28,37,42,36,35,31,33,29,23,23,18,17,21,24,18,20,15,9,15,18,14,20,11,14,3,14,7,5,7,3,13 E84024,73,75,97,109,103,106,103,106,130,128,118,143,139,115,130,132,130,126,124,90,81,77,99,103,97,113,97,109,118,112,109,129,119,168,120,121,126,150,166,185,159,174,194,189,182,171,192,151,154,137,168,133,137,153,124,112,142,147,123,139,105,138,119,133,123,93,110,104,114,113,108,103,109,112,83,92,99,124,102,93,94,72,75,55,53,48,50,41,48,37,34,27,20,13,13,36 E84025,86,95,95,79,87,98,103,96,105,96,84,114,105,83,105,105,88,120,103,81,82,92,107,115,160,158,164,187,168,148,165,176,163,162,165,172,172,176,178,154,172,158,164,160,164,177,167,155,163,147,152,137,164,151,160,153,136,142,139,135,153,120,135,114,106,92,92,77,84,85,69,60,56,55,57,50,46,52,45,48,42,35,33,27,22,21,27,22,24,9,10,9,7,6,5,14 E84028,10,26,24,36,29,26,28,37,31,35,35,28,31,36,46,35,33,36,41,35,35,30,33,34,41,41,47,48,44,43,55,47,61,36,52,53,47,47,46,49,48,40,41,40,37,47,37,37,26,32,39,28,36,53,41,47,51,43,45,48,50,45,48,50,38,36,39,23,29,29,26,17,24,20,11,13,11,9,15,15,12,10,18,11,13,10,11,11,13,9,4,8,5,5,2,7 E84030,32,20,24,22,26,41,30,34,26,23,18,25,26,21,15,29,25,29,19,22,21,30,35,39,28,40,43,32,48,31,39,26,20,38,25,27,32,53,46,29,27,29,30,38,34,45,35,16,22,22,28,23,26,21,22,20,21,19,25,24,20,28,17,20,22,19,17,21,24,15,18,13,19,13,14,13,16,18,10,11,8,6,5,8,6,5,7,6,5,2,6,1,1,5,1,2 E84031,40,44,40,54,43,50,51,66,48,62,62,67,79,71,64,83,66,76,64,66,61,72,78,74,75,86,71,88,85,71,73,59,61,61,45,70,64,69,64,58,56,63,55,58,60,50,51,61,58,48,67,57,53,68,64,66,63,57,63,72,73,56,69,59,61,55,55,37,44,41,30,28,20,22,24,30,24,22,18,21,21,21,19,15,7,17,8,12,15,9,3,9,4,4,3,8 E84032,14,30,21,38,30,45,30,35,35,48,50,45,46,50,57,51,47,62,42,63,67,54,68,87,108,76,71,63,59,59,55,52,46,42,39,48,47,62,64,49,51,50,40,45,69,42,40,49,46,39,44,42,36,39,36,46,39,38,42,40,36,52,30,29,37,24,39,19,18,33,16,27,17,16,16,16,20,10,19,13,14,10,11,19,9,15,12,5,7,10,7,5,,3,,13 E84033,30,50,40,30,42,42,42,47,52,43,57,46,51,56,57,64,49,60,59,64,55,58,74,46,65,57,72,67,58,43,63,46,50,66,58,65,50,54,68,65,44,42,57,51,64,65,44,48,55,47,42,46,39,36,42,33,28,28,29,30,18,24,29,31,15,25,20,14,18,13,19,13,13,20,16,10,13,16,10,11,10,12,8,10,6,11,10,8,9,2,3,4,3,,1,9 E84036,43,41,43,48,51,59,59,44,49,61,63,65,53,69,64,70,73,70,72,51,70,66,64,83,72,77,67,66,75,72,65,68,60,58,60,93,62,70,68,70,81,61,69,88,71,90,53,53,65,70,78,59,73,70,56,59,59,61,61,56,52,39,40,45,38,42,30,25,29,23,28,18,19,24,15,21,17,13,18,11,12,18,20,8,12,7,5,10,6,3,5,7,2,7,3,4 E84039,86,95,88,91,88,94,84,104,102,92,99,93,110,91,91,89,104,77,88,86,73,88,90,121,140,146,160,158,161,157,153,139,166,127,130,137,142,129,146,139,137,136,128,144,99,105,111,104,90,99,92,67,94,79,75,98,71,86,86,78,92,81,93,85,83,86,72,83,84,75,74,64,63,61,65,50,43,46,54,36,31,31,40,37,34,30,25,32,30,20,18,16,15,15,11,25 E84040,24,24,21,29,17,19,28,20,20,25,25,28,24,12,22,16,26,24,14,27,14,30,22,37,24,45,55,35,41,49,44,36,32,41,42,40,44,36,26,43,33,27,29,31,26,31,30,25,15,30,32,27,26,25,30,22,26,26,24,20,24,17,16,19,16,10,25,9,22,21,15,15,13,14,14,9,14,9,11,13,13,11,7,10,8,7,7,4,8,2,4,2,,,3,7 E84042,18,19,19,18,21,19,32,27,41,34,24,37,36,25,53,36,35,32,42,46,33,33,45,46,56,54,40,59,46,39,42,41,42,60,61,58,43,42,43,58,37,35,33,39,43,45,51,55,50,53,46,35,44,45,46,69,54,42,29,55,43,45,40,37,33,38,34,27,16,26,10,25,21,15,21,17,20,18,12,17,18,13,13,7,8,7,9,9,10,8,2,2,1,3,1,9 E84044,50,48,65,61,53,58,46,53,62,61,63,58,55,65,59,74,53,50,56,58,44,58,59,59,93,75,95,88,104,95,111,110,112,105,103,107,120,117,103,124,98,99,79,85,80,74,75,65,72,78,63,59,53,52,65,61,58,60,70,59,53,58,41,48,49,65,57,43,48,38,47,51,43,29,36,39,33,34,34,26,34,25,20,19,19,26,16,27,15,14,14,11,2,3,7,15 E84048,17,23,31,22,24,25,26,21,32,39,44,38,37,54,43,40,38,36,27,33,42,18,40,44,53,67,50,62,52,51,44,57,67,46,50,57,53,47,61,46,49,45,61,61,44,74,56,39,48,53,44,52,50,34,33,43,46,36,39,41,43,47,46,41,40,55,46,38,49,37,49,34,34,36,29,25,29,21,24,21,22,17,17,26,13,15,12,18,11,20,15,8,4,5,4,11 E84049,39,48,54,46,49,57,45,41,67,48,57,48,43,52,43,53,49,50,55,52,57,55,40,53,71,69,74,73,75,56,70,52,76,51,54,60,58,48,62,48,44,48,35,30,40,40,41,39,38,50,45,40,24,27,34,29,35,33,33,23,23,22,22,21,26,21,14,19,13,15,21,13,17,9,13,16,21,12,11,6,13,12,10,10,6,5,5,7,7,3,8,4,5,2,1,8 E84051,26,38,24,31,31,27,35,44,31,32,39,25,37,35,28,29,38,34,31,29,27,35,42,36,42,53,63,64,67,54,59,64,56,62,69,43,59,45,41,72,47,53,44,45,41,55,44,47,17,42,35,38,30,45,42,26,38,38,27,40,32,47,25,42,27,29,27,23,24,31,26,15,18,25,19,21,18,17,17,10,9,10,13,10,8,12,10,6,9,4,5,8,1,3,2,5 E84053,8,5,5,8,13,14,12,11,18,13,18,20,18,21,15,22,25,15,16,12,14,11,12,13,14,11,10,16,8,15,17,20,21,25,9,16,18,19,16,25,22,21,26,19,20,26,23,22,18,25,19,19,25,22,17,26,25,18,32,18,26,19,18,31,28,25,23,23,19,22,23,20,27,29,31,21,25,29,23,19,16,14,10,20,10,12,10,15,8,4,3,3,4,3,,4 E84057,43,42,60,65,55,79,76,82,91,76,69,62,82,93,78,104,92,98,69,63,66,63,54,73,72,72,79,85,83,83,90,101,75,87,85,98,75,64,83,98,90,102,78,86,85,100,97,88,96,90,97,75,90,76,93,86,91,79,82,64,77,88,60,70,72,61,54,63,53,68,54,52,41,56,52,47,46,54,67,54,43,39,40,36,38,37,33,29,23,28,23,25,11,9,5,48 E84058,178,128,170,180,186,178,165,177,178,186,160,171,170,175,195,189,179,163,141,142,130,133,138,152,178,194,221,267,262,224,245,247,247,266,244,266,280,263,256,285,275,220,240,208,233,226,209,209,194,180,172,133,146,145,140,139,127,140,130,123,112,82,99,87,77,86,84,76,72,76,73,73,63,66,63,56,51,53,54,44,35,38,26,24,22,31,22,19,14,14,15,14,8,8,6,10 E84059,15,19,17,29,19,18,21,27,14,13,17,24,22,14,30,25,34,22,24,23,25,24,38,43,44,40,34,37,50,50,37,35,34,35,29,53,43,30,34,44,40,35,22,33,32,42,31,29,33,25,33,26,26,31,23,33,31,17,27,20,17,26,20,20,27,14,29,19,18,17,30,21,13,24,18,18,12,18,13,11,10,5,17,11,6,14,9,7,9,5,4,3,2,2,1,4 E84061,34,38,46,51,52,57,64,64,62,71,53,80,62,63,61,55,59,63,53,44,30,42,53,65,75,66,64,76,59,75,77,94,69,69,61,69,73,72,72,96,76,82,97,93,89,89,84,71,77,54,66,71,82,51,75,80,62,86,74,86,83,88,87,80,93,81,78,77,70,71,83,57,68,59,67,53,62,60,61,61,59,46,46,32,28,29,41,31,19,29,21,16,18,14,14,26 E84062,16,18,23,29,25,37,30,36,35,27,33,41,30,36,33,35,42,38,38,26,34,23,36,37,51,43,51,68,44,39,44,51,38,45,54,30,44,47,40,52,38,41,43,40,37,39,44,32,26,38,44,32,26,24,39,32,37,30,32,31,20,32,28,34,27,30,31,23,21,13,11,16,18,15,19,10,11,11,16,7,8,8,10,4,11,9,5,7,3,4,5,4,4,,6,8 E84063,35,33,47,26,39,36,30,30,35,35,28,39,36,44,38,42,42,39,51,22,31,37,42,46,46,67,64,78,65,63,72,58,63,62,67,62,67,64,59,52,72,56,69,62,50,46,52,43,58,36,41,37,48,30,28,33,24,37,34,25,26,34,31,30,15,15,21,22,15,16,19,13,17,11,9,5,10,9,10,10,6,9,5,5,4,7,8,2,1,5,4,2,2,1,1,5 E84066,132,127,134,152,143,164,131,133,129,132,115,160,127,124,103,116,126,163,269,570,976,1172,1517,2057,2606,2658,2605,2310,2017,1740,1441,1266,1173,1019,862,766,693,683,515,531,456,384,372,365,317,265,266,250,274,243,202,199,202,184,166,146,148,129,143,115,112,115,99,99,93,93,76,69,64,57,48,45,38,59,40,28,29,27,24,27,20,18,13,13,17,21,13,21,10,8,10,5,8,5,3,13 E84067,38,37,52,42,56,56,49,70,52,67,47,72,75,57,58,78,74,75,61,60,80,51,77,59,83,68,71,93,95,69,76,72,64,64,67,69,64,56,69,74,78,78,87,71,61,81,75,64,85,70,65,65,67,68,55,53,52,45,38,36,39,38,34,40,30,42,33,23,29,26,27,22,13,15,12,15,17,16,11,11,11,9,9,9,8,8,5,3,4,9,5,2,4,2,1,6 E84068,51,55,53,62,69,72,76,83,91,92,106,111,85,99,105,98,93,87,83,65,47,75,64,71,84,83,88,93,95,103,103,86,88,103,120,107,123,115,131,134,129,121,113,130,126,133,124,117,104,96,79,76,72,85,82,91,102,89,96,91,71,80,74,93,81,69,77,77,68,84,60,78,70,74,50,73,67,61,50,55,40,54,49,27,32,33,38,25,21,25,20,11,6,14,5,25 E84069,76,92,101,81,100,118,126,121,117,123,109,108,125,121,119,113,107,105,95,94,88,88,99,109,136,122,120,173,165,146,141,146,149,149,130,145,136,135,141,156,152,144,137,140,129,112,127,125,101,113,94,113,102,121,103,103,106,125,94,86,93,101,92,90,78,79,101,75,86,84,66,55,61,69,64,69,68,57,67,39,46,46,25,27,37,37,28,27,16,20,13,10,10,8,14,20 E84070,22,22,25,35,37,37,41,30,39,32,28,25,35,39,35,22,28,31,18,23,17,27,22,27,37,33,29,51,27,45,37,41,51,47,49,57,55,62,69,60,54,54,60,50,48,49,38,24,35,27,28,32,28,33,21,25,30,36,30,33,26,35,30,34,39,18,21,31,19,25,27,29,19,33,22,27,13,17,15,14,14,11,16,16,6,9,10,3,5,5,4,2,6,6,2,10 E84074,49,65,66,71,70,61,67,80,62,74,69,62,69,68,72,69,75,77,82,81,78,79,86,89,105,106,127,123,106,119,120,110,95,98,95,109,116,84,113,87,93,83,98,91,87,77,79,69,72,76,72,67,81,81,81,89,67,82,66,73,78,62,54,65,48,58,51,43,29,33,29,23,35,36,23,23,22,22,11,12,15,11,23,14,13,14,6,11,9,8,4,9,5,2,5,4 E84075,82,84,65,100,70,79,70,79,89,64,57,55,54,46,48,50,44,54,47,53,56,77,92,91,134,167,154,128,127,171,156,132,119,135,123,128,109,95,127,106,95,89,72,76,65,64,70,63,53,57,48,44,45,44,45,39,41,45,33,43,28,34,40,32,37,34,38,40,32,40,19,27,23,12,12,19,17,13,11,12,16,7,12,7,10,4,8,2,8,2,3,,3,1,1,2 E84076,29,24,39,26,37,47,36,39,39,39,38,37,40,34,42,50,50,36,35,38,41,55,31,42,38,52,39,59,50,45,36,33,50,60,48,53,55,60,49,51,45,45,42,48,45,40,54,36,31,36,44,34,40,36,39,43,44,50,41,51,46,49,32,25,41,36,45,29,20,31,31,24,19,25,17,24,16,20,20,12,14,15,13,11,14,12,9,15,9,7,5,2,6,5,6,8 E84078,22,13,17,28,22,23,13,18,21,23,21,16,21,29,25,20,17,23,13,18,23,26,25,28,37,47,36,53,54,56,44,40,40,38,32,38,26,39,34,31,37,37,33,27,26,30,31,29,23,30,25,26,12,27,25,30,39,30,24,33,23,39,27,27,23,33,33,36,31,31,24,25,18,19,22,16,18,12,18,16,11,9,8,15,11,12,10,8,11,6,2,8,6,3,2,8 E84080,23,24,28,52,34,35,41,50,47,41,49,54,62,47,50,52,51,37,43,38,35,44,37,44,46,44,49,59,47,72,57,57,51,71,72,76,84,63,86,70,85,73,67,79,74,70,74,69,70,73,76,57,56,53,58,68,64,60,47,53,65,47,64,54,50,43,38,45,35,34,31,32,27,25,22,31,32,30,27,24,25,23,22,21,15,18,10,13,13,12,4,3,5,8,2,13 E84083,22,20,23,23,17,32,25,31,27,23,37,32,36,40,36,28,25,32,34,28,28,27,27,42,36,26,37,43,38,42,33,42,44,42,36,43,34,52,60,47,43,39,40,36,46,42,35,44,40,35,44,41,23,38,29,36,35,38,34,42,22,39,32,34,44,38,36,30,30,28,30,28,30,28,25,24,27,20,19,19,15,15,20,14,15,10,12,10,9,4,4,3,6,,3,12 E84086,16,15,14,16,26,24,29,31,30,30,30,42,30,29,35,35,32,45,26,34,29,26,25,45,40,44,32,63,54,54,67,61,54,61,65,53,83,47,67,43,50,69,53,54,73,48,66,55,51,51,44,54,58,39,62,49,54,48,48,41,46,46,42,34,33,23,33,33,32,25,23,22,26,30,31,23,14,23,29,18,15,12,10,13,13,7,7,2,11,4,4,8,4,2,2,4 E84601,35,37,44,49,52,41,49,45,47,49,36,46,36,36,33,33,36,42,30,43,44,36,62,49,60,66,67,105,82,89,73,73,95,91,83,96,92,84,78,79,85,61,62,63,43,49,46,54,36,33,47,34,43,41,33,34,35,44,44,31,35,37,34,38,40,29,32,20,36,23,27,31,19,11,23,18,16,23,16,14,31,13,13,8,13,8,9,14,13,11,8,3,1,5,1,17 E84617,36,35,38,47,40,51,35,33,32,35,35,27,43,44,40,34,33,35,22,39,32,39,50,66,74,88,75,103,103,80,100,59,82,79,63,76,73,56,64,58,55,53,58,51,52,47,48,37,44,33,36,35,30,25,33,27,36,30,28,28,28,18,21,17,15,13,12,17,17,10,15,15,10,14,10,17,12,11,11,8,9,8,7,6,9,8,6,6,4,2,3,3,3,4,,1 E84620,15,32,35,29,29,36,35,37,42,32,34,31,29,42,47,47,42,29,28,37,41,38,36,50,50,54,56,50,51,60,51,44,49,51,49,60,51,53,62,49,49,49,47,53,46,44,38,37,32,37,50,39,42,45,39,45,28,31,29,37,33,31,29,24,37,27,26,24,17,16,21,19,21,17,21,13,19,8,12,13,5,16,5,8,11,7,4,8,4,3,2,1,5,,2,2 E84626,29,27,20,24,21,23,21,21,20,16,27,18,24,24,29,29,26,21,26,22,32,31,41,48,48,66,43,56,55,65,42,39,50,36,43,34,53,36,30,30,35,39,34,33,27,34,28,25,23,33,33,27,29,23,21,27,25,17,29,28,25,16,19,20,15,21,13,17,14,21,10,10,23,12,14,11,9,10,15,8,4,10,8,3,3,6,7,4,4,2,2,2,3,1,1,5 E84635,17,27,24,25,21,38,23,22,34,32,36,35,39,40,37,38,45,45,38,40,37,41,39,34,44,48,44,32,44,43,45,30,45,38,38,47,36,41,32,66,41,34,49,41,49,46,47,46,40,47,55,31,38,28,26,26,21,33,25,27,22,22,27,23,25,25,25,13,22,20,18,9,13,11,12,6,8,5,7,6,8,8,4,10,6,5,3,8,5,2,4,2,,1,3,2 E84637,20,32,17,26,29,44,31,42,39,43,42,34,46,36,35,41,36,27,31,25,31,28,28,38,36,55,37,45,46,49,47,41,38,46,50,55,45,44,46,39,46,44,32,40,37,46,34,30,29,28,30,28,24,25,21,21,27,26,21,21,19,20,19,13,19,7,13,10,9,9,8,5,7,7,12,8,8,7,3,6,4,3,5,3,3,2,1,2,1,2,1,1,1,1,, E84638,21,25,23,26,29,35,32,36,22,32,22,32,32,37,36,39,44,37,34,30,38,46,52,72,69,72,71,63,65,57,55,62,49,45,55,51,46,40,32,37,36,32,41,50,46,34,44,36,28,38,34,25,25,36,27,25,34,33,23,25,37,33,29,34,29,30,31,21,25,20,25,22,14,18,14,12,15,11,12,8,16,7,12,5,9,11,3,6,4,6,2,7,4,3,2,3 E84645,49,55,44,44,50,52,46,58,52,55,53,46,48,43,51,68,47,53,40,46,35,38,55,48,60,88,93,82,97,90,94,100,116,95,93,95,88,81,69,91,89,70,69,58,66,63,61,46,51,44,57,42,39,50,44,47,50,51,37,44,19,38,44,43,27,37,21,34,20,29,20,16,18,18,16,13,10,10,20,9,6,14,9,7,8,9,8,4,6,6,4,1,3,2,3,6 E84646,51,52,60,73,77,87,77,70,72,68,65,50,55,52,64,51,42,41,36,36,34,30,21,42,52,58,59,70,83,71,88,81,96,74,90,66,66,77,82,69,61,62,43,50,51,52,36,28,37,45,31,29,27,29,33,26,24,21,20,21,16,19,27,14,15,22,18,20,16,15,14,8,15,4,7,12,2,5,10,8,7,5,1,8,9,5,4,2,1,6,2,3,1,1,2,1 E84647,39,30,16,24,28,30,19,25,25,21,17,16,22,18,15,21,20,18,20,24,21,27,33,58,46,56,59,70,57,50,46,40,47,45,36,50,30,32,29,34,46,41,25,27,22,14,23,18,26,13,13,20,17,17,20,11,22,23,20,20,24,19,18,24,11,23,18,20,23,11,16,19,16,17,19,15,10,21,14,15,15,11,8,8,7,10,9,4,6,4,2,1,1,3,1,6 E84653,44,47,50,34,57,45,45,56,57,50,48,42,51,40,35,46,49,45,37,37,37,38,51,44,57,70,62,80,70,81,74,79,72,64,70,89,74,71,79,71,59,49,63,62,48,58,45,39,32,42,43,42,34,30,23,37,32,30,29,35,31,35,32,31,28,32,24,29,22,21,18,20,25,16,17,18,11,12,15,7,9,7,7,11,8,10,18,13,9,9,5,6,9,7,4,10 E84656,23,39,39,37,40,35,32,29,32,36,31,22,43,30,25,33,33,34,29,32,30,31,33,41,56,50,53,62,67,60,50,56,70,69,58,76,52,60,73,64,57,66,40,48,44,52,40,33,36,37,33,40,37,30,44,46,34,32,34,34,25,28,27,29,35,32,31,26,20,17,18,24,12,15,19,11,12,11,15,7,11,7,5,8,5,6,6,6,4,4,6,3,2,3,2,4 E84658,21,14,24,29,17,34,33,30,18,25,34,33,24,36,31,33,41,42,33,30,19,42,27,35,40,28,29,38,48,41,40,37,46,32,44,37,28,41,44,58,30,31,35,37,37,37,30,31,35,38,28,31,25,28,34,31,36,22,25,26,24,32,29,22,33,23,36,24,17,23,24,19,24,19,25,29,15,23,17,16,19,15,9,9,14,8,8,9,4,4,9,7,3,2,5,5 E84663,33,42,39,35,52,51,47,37,41,49,37,36,30,31,25,27,30,33,38,52,73,80,68,79,98,127,96,116,113,100,76,88,96,97,96,80,94,70,74,69,63,62,40,52,75,44,38,38,40,38,42,39,41,34,25,29,35,33,20,31,27,22,33,26,21,31,34,25,29,29,27,29,23,24,24,31,22,13,20,14,18,20,15,15,7,6,14,5,6,13,8,2,6,2,3,9 E84665,37,28,41,54,49,49,46,54,59,42,47,67,58,59,58,64,65,52,56,39,58,55,51,57,64,64,72,79,54,65,60,66,51,65,54,49,75,75,63,64,49,62,62,62,66,74,60,55,50,52,67,50,61,49,54,44,39,42,40,55,45,41,47,37,39,43,45,41,38,33,21,29,38,26,25,25,20,22,15,20,11,15,14,6,13,8,7,12,10,3,5,7,5,2,,8 E84674,7,18,6,11,18,18,17,22,20,23,19,29,23,20,26,25,23,24,20,28,26,17,20,20,29,28,27,32,22,29,35,40,42,33,40,33,26,34,43,51,41,49,42,32,43,43,42,42,46,40,30,32,29,30,36,43,29,22,29,18,20,20,22,18,25,21,32,12,14,13,14,18,21,12,11,11,15,7,4,5,4,7,8,4,5,3,5,7,2,5,1,4,2,,1,2 E84676,16,16,14,21,26,21,18,21,19,22,22,23,29,21,30,22,23,16,35,33,29,24,24,38,23,39,26,34,32,26,26,29,18,27,19,31,29,31,29,21,32,20,35,20,37,26,25,32,33,21,19,23,31,32,19,26,26,27,24,29,15,15,25,16,15,18,13,9,11,13,12,11,5,10,12,13,16,9,5,11,10,7,4,9,5,5,3,,2,1,2,4,1,2,,1 E84678,25,12,18,23,26,24,23,24,23,32,29,22,17,19,18,27,19,23,18,14,30,18,20,26,25,29,38,43,32,38,33,34,37,42,45,44,47,26,51,40,35,39,43,32,34,27,30,30,15,29,31,28,25,19,25,20,29,18,26,25,32,28,21,33,23,25,29,22,19,11,19,21,18,18,15,17,16,15,9,11,7,6,13,3,8,8,10,8,4,5,4,3,6,2,,9 E84680,40,38,42,25,28,36,43,38,37,33,43,32,21,15,32,28,15,21,21,24,21,25,37,43,49,43,51,59,75,52,80,72,70,74,68,69,62,68,70,64,62,42,48,55,44,38,33,39,30,34,32,22,24,33,25,21,16,24,15,20,19,15,24,12,20,14,15,10,15,15,8,11,12,8,16,11,7,7,5,9,10,3,5,8,6,3,3,3,4,5,,1,1,2,1,3 E84684,18,34,20,24,23,32,35,36,25,26,32,29,30,32,27,31,26,29,18,28,23,31,30,33,40,47,41,48,42,53,50,41,51,44,44,47,54,50,49,38,37,47,33,34,39,31,37,25,47,30,28,20,30,24,23,36,24,23,19,24,31,18,24,16,17,16,22,21,11,14,22,5,11,18,8,9,12,5,13,9,10,12,7,11,9,5,4,6,6,3,2,3,5,1,2,6 E84685,21,21,27,41,25,42,49,45,45,61,37,49,51,50,57,57,44,50,54,28,40,39,44,49,47,53,67,56,54,60,46,56,61,65,61,48,59,60,60,75,68,64,45,56,68,60,38,50,42,42,44,48,56,41,37,35,46,46,30,44,45,56,43,37,53,44,42,39,40,32,38,44,38,26,30,27,33,32,20,21,25,16,29,12,17,23,17,21,12,12,7,11,6,6,3,9 E84693,59,44,40,48,63,63,52,45,44,50,60,59,65,60,75,72,64,41,43,40,36,41,46,73,62,82,97,80,84,107,69,80,97,94,91,96,113,83,91,91,89,69,99,68,87,94,78,60,79,79,79,70,62,75,62,68,71,59,59,61,47,53,49,55,54,43,31,40,37,37,29,21,28,24,16,32,21,22,27,10,17,9,12,9,9,12,14,6,11,8,4,4,1,4,1,3 E84699,13,18,16,19,21,18,17,34,16,16,26,19,23,19,26,21,18,14,18,18,16,17,22,19,20,36,32,37,25,39,37,35,31,30,33,38,34,33,38,33,35,38,23,24,21,21,22,26,27,19,17,26,19,22,25,19,23,27,14,14,25,20,17,24,21,18,18,19,12,19,16,12,13,15,9,12,13,15,8,11,10,5,10,3,4,1,8,10,4,4,4,7,2,3,2,4 E84701,38,27,23,25,24,37,28,29,26,24,31,28,31,30,33,24,33,28,26,16,33,37,33,43,50,48,64,47,56,54,62,48,44,33,36,39,46,36,31,42,35,31,43,49,36,44,28,39,37,26,32,31,22,31,33,27,28,32,18,25,27,28,28,17,19,22,14,28,13,17,17,10,18,10,10,13,6,11,11,5,5,9,9,7,7,2,2,2,1,1,3,3,1,2,1,4 E84702,92,79,77,71,84,71,81,61,62,76,63,64,63,62,64,64,78,54,63,68,85,90,112,130,138,180,198,224,211,195,212,194,190,191,178,147,159,143,146,103,109,107,107,87,87,62,63,71,62,62,58,54,54,57,39,48,53,43,39,54,33,31,49,43,40,32,23,28,24,38,19,15,19,16,23,20,23,11,13,15,13,3,7,7,9,9,2,2,2,1,2,5,1,2,1,2 E84704,7,12,12,8,11,15,18,16,10,12,11,2,14,18,16,17,20,20,19,12,16,14,24,21,25,31,24,22,20,12,18,13,21,16,21,16,15,14,12,16,15,12,9,5,8,18,10,14,12,16,21,14,24,16,21,20,13,24,15,25,14,14,18,14,14,13,13,7,8,15,10,7,9,13,14,9,11,11,8,4,6,4,2,4,5,1,7,3,6,4,3,2,2,1,,1 E84709,137,114,99,91,56,86,69,82,76,86,70,66,83,81,66,70,74,72,152,201,208,272,422,462,490,437,482,372,383,378,339,329,319,287,295,250,207,186,170,163,158,136,139,141,118,123,107,102,94,99,91,75,85,89,62,80,67,81,75,69,71,55,78,71,57,50,48,53,52,54,51,33,35,31,36,27,31,24,23,28,15,17,22,18,7,18,15,11,13,10,7,3,10,2,3,7 E85001,44,37,34,41,46,47,46,54,51,44,46,47,38,55,52,43,59,43,47,32,44,33,48,47,47,56,69,75,70,73,65,54,85,63,75,81,89,83,74,75,88,68,68,67,79,72,61,62,51,53,40,58,61,47,52,57,61,55,41,49,51,42,57,47,56,39,46,45,47,35,29,26,33,26,29,28,30,38,25,21,25,28,21,15,14,21,13,14,13,14,8,5,8,4,5,13 E85003,50,52,49,40,59,56,54,82,75,62,71,71,77,75,67,68,70,69,81,75,81,85,117,124,169,205,234,228,234,240,237,229,227,231,242,225,235,234,208,199,190,167,142,142,135,142,122,148,126,113,117,124,104,110,127,111,112,109,104,100,130,93,102,80,84,62,59,68,53,60,63,48,38,42,46,53,39,40,31,29,30,26,35,23,25,14,11,14,8,10,12,4,3,2,4,8 E85004,28,30,27,31,30,29,27,33,38,52,44,45,45,47,45,49,58,52,41,45,36,20,37,41,41,47,53,49,47,67,51,54,67,59,62,67,59,77,62,72,64,56,69,60,64,55,66,49,54,43,50,54,45,38,42,41,49,39,37,47,47,39,41,44,34,34,24,25,35,28,29,24,17,14,24,22,19,27,16,24,13,15,17,10,13,17,13,10,8,13,7,6,2,8,1,13 E85005,16,26,21,20,31,14,23,23,21,25,26,23,21,23,21,23,26,35,25,28,16,33,41,38,47,60,50,63,63,59,45,43,51,45,45,58,38,48,48,32,42,29,31,33,33,37,29,28,31,27,24,36,33,35,18,25,35,26,15,30,25,21,20,19,21,15,20,18,17,15,18,12,20,9,14,21,15,19,13,6,5,5,7,8,7,5,3,2,2,1,3,2,,2,,3 E85006,29,19,26,24,29,29,21,27,37,30,38,34,35,38,39,29,39,32,28,44,32,34,48,34,38,44,36,49,36,37,50,33,36,46,44,40,39,46,32,38,24,38,39,35,41,33,40,30,37,35,32,41,32,31,31,26,35,31,40,29,17,22,28,23,22,18,12,21,13,12,15,21,6,11,6,17,6,7,10,5,7,4,9,6,5,7,5,5,4,3,3,2,2,1,1,2 E85007,53,47,47,59,61,72,45,52,60,68,58,61,76,70,74,75,78,75,86,78,77,72,81,76,73,87,89,80,79,77,102,87,80,119,100,90,86,99,103,106,90,102,106,101,95,111,99,89,73,96,90,101,106,89,104,83,79,82,80,79,86,79,75,69,64,65,77,69,55,52,63,63,53,40,39,57,38,50,42,35,26,35,16,28,21,19,20,11,14,14,12,12,19,8,7,18 E85008,18,20,17,16,18,15,22,23,30,28,28,31,28,36,31,47,42,32,31,24,28,35,42,45,78,67,77,83,65,57,54,66,63,57,57,46,50,51,53,40,45,38,37,40,45,44,48,41,38,38,57,46,47,58,46,54,49,46,57,41,49,31,21,30,33,34,33,41,30,33,35,17,35,25,27,22,27,35,23,21,16,23,20,12,13,14,18,12,10,13,6,7,6,2,6,5 E85012,25,16,11,19,27,31,21,21,31,30,33,30,31,30,26,27,26,33,29,28,25,37,29,33,47,34,50,34,35,45,34,36,34,40,39,36,29,32,42,30,33,34,40,34,41,33,43,25,39,27,33,34,31,33,36,23,29,28,36,41,33,33,31,25,31,26,24,39,31,31,28,26,31,30,18,25,17,21,15,16,11,21,20,14,16,13,8,7,9,5,7,6,2,5,3,11 E85013,27,29,22,29,27,16,32,37,36,32,25,33,34,41,38,34,34,26,31,26,26,36,34,46,44,55,49,53,64,74,63,59,67,62,72,65,47,74,53,51,55,48,55,53,47,49,43,53,44,33,35,40,36,27,41,36,35,28,38,41,35,30,36,25,29,35,31,18,26,26,24,16,15,23,12,12,9,16,5,7,3,15,4,7,5,5,4,4,1,7,1,3,3,1,1,2 E85014,23,28,33,38,42,38,38,61,45,60,55,47,68,57,45,52,47,57,32,20,15,27,37,32,35,37,33,66,39,67,61,59,57,50,54,67,72,63,59,59,72,74,65,67,82,78,85,62,52,58,65,63,54,40,51,65,67,73,61,31,60,52,50,46,39,46,40,42,39,48,39,27,45,34,35,34,35,42,30,17,15,31,17,17,18,11,20,10,14,16,7,5,8,2,5,4 E85015,48,60,38,44,42,47,43,54,43,55,42,46,47,37,34,52,46,55,43,41,45,60,62,63,68,73,78,100,92,91,88,92,78,84,80,91,97,91,74,78,78,71,66,80,72,66,49,63,65,54,48,58,49,61,54,42,40,43,43,40,49,35,31,36,45,43,44,45,56,38,51,46,33,43,42,41,40,32,19,18,20,16,18,14,14,10,21,15,9,10,7,8,4,2,4,10 E85016,45,39,41,38,50,51,52,40,57,46,45,44,51,50,59,55,58,56,63,51,63,63,89,116,129,122,123,144,131,133,148,121,102,107,127,108,117,89,88,90,77,79,84,86,79,96,88,74,66,69,81,82,79,73,84,88,76,78,81,77,68,65,72,46,50,68,50,44,34,44,37,48,33,32,39,35,25,25,30,20,23,32,19,24,14,27,19,17,13,12,11,5,11,4,6,10 E85019,41,35,38,41,32,35,34,49,45,43,49,52,38,41,46,52,58,45,52,44,49,63,57,58,60,77,81,76,69,81,89,73,80,81,70,72,77,63,74,74,72,71,62,74,63,48,62,50,67,57,67,73,45,41,64,51,62,52,42,54,50,44,41,34,40,50,44,46,38,27,34,32,43,22,19,29,21,23,24,18,16,20,19,15,14,16,17,5,8,9,9,6,3,5,3,13 E85020,56,59,56,71,65,77,81,100,94,83,76,105,78,78,78,82,74,62,75,63,56,54,90,94,113,123,150,150,150,151,172,175,186,173,193,175,184,169,188,171,145,174,158,150,158,131,126,137,127,105,103,103,111,100,119,76,103,101,91,88,82,66,58,61,71,57,49,49,51,49,41,49,40,36,34,41,51,54,48,33,22,42,26,31,27,20,21,16,11,7,9,8,5,10,5,15 E85021,33,32,40,30,43,45,44,39,41,20,45,44,41,55,36,46,46,49,62,42,56,49,57,57,67,63,54,53,51,56,52,46,45,44,65,53,47,59,51,62,50,49,54,51,43,40,46,59,40,48,45,43,40,41,37,55,49,41,46,40,37,34,31,32,34,25,26,22,26,20,12,17,18,13,11,8,17,11,12,12,14,7,13,5,9,12,5,10,8,3,5,,3,1,4,6 E85023,12,13,11,15,6,8,13,12,12,13,12,10,16,7,14,10,23,11,16,13,16,24,23,29,25,18,29,24,30,21,33,19,19,16,28,25,15,25,30,21,20,17,15,14,24,16,15,20,19,19,18,14,17,10,17,20,10,12,20,26,15,19,17,13,21,14,14,18,13,13,15,10,16,10,8,18,11,15,11,8,8,2,7,9,5,7,4,7,3,3,6,,3,,2,3 E85024,23,19,15,17,25,26,28,34,26,29,25,35,40,39,40,31,37,39,25,22,24,44,31,29,33,33,41,48,48,31,40,33,41,35,33,46,38,39,38,43,34,37,44,37,44,35,40,38,30,36,31,35,27,34,33,38,44,37,26,26,39,31,40,36,20,22,21,15,26,29,19,18,22,17,19,18,20,18,13,9,10,7,14,19,13,9,5,15,5,4,4,4,,1,5,7 E85025,53,48,58,70,62,52,38,57,51,37,38,31,54,32,35,46,29,37,34,36,42,36,53,96,129,203,236,265,302,292,290,251,242,245,209,207,192,173,149,152,119,99,98,87,85,75,59,74,58,62,59,53,38,52,47,40,40,41,34,40,34,32,35,21,20,30,29,16,21,32,25,21,13,23,18,19,20,13,13,14,15,9,9,4,8,9,7,7,5,5,7,4,2,2,3,9 E85026,58,64,83,70,52,66,97,92,70,60,77,68,107,69,82,70,80,76,54,50,69,75,72,77,91,111,120,128,115,121,131,144,141,143,164,142,159,158,140,148,158,142,142,143,150,137,112,103,119,70,103,92,89,99,89,84,80,87,100,96,63,70,78,75,63,71,70,43,50,62,40,47,53,58,40,44,46,59,61,35,42,53,41,32,41,22,24,16,15,10,6,8,11,5,5,16 E85028,19,24,36,25,39,37,36,42,40,53,52,54,53,42,62,59,51,55,51,39,51,49,60,62,79,73,71,82,81,73,86,77,81,89,83,72,88,82,72,63,62,70,78,80,72,60,65,54,67,52,67,66,59,52,53,65,46,59,53,56,45,46,45,40,44,43,52,24,36,34,30,31,24,23,28,24,25,37,23,23,22,21,23,16,13,8,10,9,9,7,6,3,4,1,3,7 E85029,53,36,50,45,39,46,37,35,39,41,51,51,54,53,47,52,58,53,48,65,74,56,111,130,149,159,225,216,195,185,205,167,170,187,168,183,168,153,161,128,154,110,130,107,110,87,98,98,99,96,83,80,88,84,86,57,77,94,72,77,65,85,65,58,51,52,46,41,42,39,33,37,34,25,26,28,24,27,33,20,21,20,32,20,22,20,15,9,12,8,3,6,4,2,3,15 E85030,30,42,18,27,32,19,22,31,19,40,35,36,36,43,30,26,29,41,40,30,37,25,33,41,40,53,39,64,63,48,54,72,54,42,50,77,59,47,64,66,56,58,59,66,49,52,51,50,55,60,61,53,47,55,55,46,50,41,47,44,32,37,26,38,28,29,29,26,24,20,19,30,18,24,28,27,24,25,28,18,18,16,15,7,11,11,7,4,11,12,10,5,3,4,1,8 E85032,12,10,12,9,16,17,16,16,19,19,20,13,15,25,15,22,18,23,19,27,20,21,27,29,33,38,32,33,47,47,35,45,48,36,42,42,50,42,29,38,46,32,31,28,37,35,37,31,39,35,33,35,34,44,31,31,35,38,38,36,27,30,30,19,24,18,22,16,18,6,18,25,11,19,20,19,16,18,19,17,15,9,14,14,10,9,5,4,6,3,7,1,5,1,6,8 E85033,36,24,45,27,31,35,40,57,41,44,53,44,41,39,39,37,33,48,58,54,47,70,74,83,163,167,175,178,164,164,154,140,129,133,125,125,132,97,96,87,81,73,88,80,90,63,79,84,58,61,60,89,63,74,69,69,48,56,67,52,58,53,61,61,55,46,43,46,51,38,45,33,39,31,27,36,28,33,29,24,25,18,22,21,19,16,12,12,12,6,10,11,7,4,3,12 E85034,12,19,22,22,19,19,28,30,44,23,23,30,32,32,28,32,25,24,26,18,15,24,19,39,33,30,40,40,50,34,41,39,44,40,42,41,37,45,33,51,32,49,49,44,40,44,40,35,26,28,37,34,28,28,28,38,32,40,26,27,29,24,29,30,22,22,26,21,31,30,23,20,25,26,14,15,16,18,19,27,20,19,14,11,18,11,15,11,7,8,9,5,3,6,3,5 E85035,29,36,38,44,41,47,54,46,36,29,39,44,39,43,37,52,38,44,30,31,37,41,38,41,63,48,67,59,62,60,66,63,56,64,58,55,65,57,68,85,55,59,46,49,54,49,48,49,48,35,37,45,33,34,29,24,31,29,48,25,22,32,34,34,29,22,32,19,26,25,33,20,17,20,22,22,21,12,8,6,21,9,6,8,7,6,7,4,2,4,9,1,1,,1,3 E85038,26,24,21,22,19,17,25,23,25,38,30,28,29,26,29,42,33,25,17,23,17,17,21,43,49,71,71,73,63,69,63,71,67,74,54,69,61,54,54,50,50,53,44,49,42,48,45,44,47,28,30,31,28,39,25,38,32,31,37,31,27,32,22,25,31,23,26,21,19,17,27,8,14,14,23,17,21,15,14,12,17,12,12,8,10,3,8,4,7,5,3,3,5,3,,2 E85040,18,30,20,17,14,18,36,26,42,37,32,40,37,46,26,49,38,47,48,28,27,35,45,43,51,39,62,60,41,43,62,42,52,27,47,53,54,53,54,62,49,61,58,42,61,61,53,55,54,53,61,69,73,51,59,62,54,54,61,46,52,63,60,49,50,46,48,34,39,43,45,59,44,38,44,46,29,42,46,42,47,39,23,30,13,17,22,16,16,11,9,3,11,7,5,10 E85041,32,24,32,32,29,31,26,32,27,32,30,35,44,42,39,48,42,53,34,38,29,30,37,27,50,38,36,40,49,31,61,51,55,48,42,53,43,56,58,43,40,50,51,49,47,62,48,43,48,52,43,44,38,48,44,47,32,32,30,36,31,37,39,28,24,25,32,25,25,21,29,18,30,15,20,15,12,15,26,19,14,12,12,11,8,10,5,7,2,3,3,1,1,3,,3 E85042,27,43,39,37,23,25,25,41,28,22,37,26,41,25,33,31,25,32,30,24,25,24,36,67,75,93,98,108,124,115,111,102,94,95,102,102,102,77,75,71,68,62,51,45,54,57,44,42,41,44,50,46,40,39,45,46,38,38,31,32,35,35,34,33,29,18,23,16,16,17,20,17,15,22,18,10,17,15,11,12,11,12,11,7,7,6,9,8,9,1,5,1,4,2,1,4 E85045,10,11,14,16,8,17,21,14,19,17,14,16,18,16,15,23,30,28,13,23,21,17,20,17,20,22,15,19,18,13,19,16,19,18,22,12,14,20,12,28,17,21,28,34,25,20,17,28,26,27,28,24,26,25,24,22,13,28,26,25,26,16,20,17,21,16,19,21,25,12,13,17,7,12,12,13,18,17,19,10,12,19,8,9,5,5,4,6,10,1,4,4,2,3,2,5 E85046,17,21,26,30,34,19,28,26,35,34,34,33,35,44,36,42,52,45,31,43,39,38,29,36,42,45,45,40,50,55,47,35,40,43,40,47,46,33,46,53,57,45,52,53,59,46,56,35,49,43,40,33,33,33,37,36,47,43,41,43,38,30,42,40,32,31,25,21,22,29,25,18,21,19,24,16,15,17,22,10,11,16,14,17,18,6,9,11,8,11,3,5,5,4,3,8 E85048,41,36,39,42,51,55,37,48,42,47,47,39,58,47,47,50,42,44,38,37,38,43,41,61,56,71,73,79,93,88,102,102,101,109,105,118,95,90,80,69,72,68,66,50,67,47,51,43,55,39,53,37,42,40,38,36,41,42,33,43,39,34,37,30,38,29,33,22,38,19,23,19,19,19,12,12,12,16,11,11,8,9,6,11,5,6,7,2,3,3,4,1,2,2,2,3 E85049,42,58,42,60,45,46,45,29,47,46,46,41,54,38,50,44,59,42,45,47,50,63,66,79,87,84,98,88,82,76,67,74,47,49,63,61,64,52,49,51,67,56,66,53,50,46,50,42,51,47,40,47,34,28,43,36,22,41,37,31,26,26,24,23,27,30,34,31,29,26,24,26,23,13,15,28,12,26,19,8,13,13,10,7,12,8,7,15,8,3,4,3,4,1,4,4 E85050,26,35,23,41,33,30,26,44,45,40,41,38,46,49,50,52,51,48,40,42,41,47,47,37,53,51,60,57,59,65,53,66,64,50,52,54,57,65,69,57,58,62,47,70,64,52,56,46,44,48,42,40,54,45,57,50,48,61,53,59,47,41,55,34,39,32,31,45,33,36,18,26,30,21,25,28,27,24,18,26,20,26,12,14,13,7,10,10,16,8,10,2,7,2,,3 E85051,13,21,18,22,18,14,14,20,21,14,27,31,42,34,35,41,33,30,35,28,31,31,28,27,23,28,33,25,33,30,26,27,29,30,27,20,29,27,21,30,22,25,33,30,44,26,25,37,23,37,42,36,34,34,30,47,41,33,37,41,35,40,27,26,28,22,42,30,20,17,28,24,20,21,16,19,16,15,20,14,12,13,13,12,9,7,14,8,9,5,9,2,4,4,5,10 E85052,40,50,34,33,49,31,44,34,38,42,45,32,40,51,48,36,44,43,33,36,35,38,43,45,49,73,52,53,76,69,63,69,61,56,52,68,59,59,56,58,49,52,56,44,50,44,55,40,38,45,32,43,41,38,43,55,42,48,26,28,39,25,34,20,26,26,19,24,30,25,32,23,13,26,22,22,23,15,17,9,16,14,14,14,11,8,4,6,4,6,5,2,3,3,2,8 E85053,5,9,8,15,26,12,12,19,23,18,13,20,16,21,20,29,24,23,19,17,13,22,10,24,19,18,17,21,27,29,29,24,18,28,23,22,22,33,24,23,26,22,22,23,25,30,27,25,16,18,26,11,18,20,31,25,26,20,26,24,29,22,29,20,26,18,19,25,23,16,18,16,16,13,9,13,10,19,11,12,11,6,6,4,5,6,5,5,4,5,1,3,2,1,1,2 E85054,47,33,48,46,60,66,54,63,60,64,45,53,66,67,55,71,73,71,53,68,58,61,77,92,90,76,91,86,93,90,80,87,83,81,83,88,81,84,86,103,84,102,87,92,82,88,79,67,57,78,83,57,49,68,60,61,59,64,67,68,71,56,51,57,62,57,47,41,48,37,43,50,43,41,38,24,39,30,36,33,18,22,19,25,18,20,16,12,7,10,7,6,8,7,3,10 E85055,30,23,24,32,29,35,35,39,41,39,43,45,36,37,40,42,48,48,38,43,48,41,58,59,73,76,80,75,108,95,116,124,133,127,133,125,153,114,98,105,108,102,82,66,88,82,74,75,62,70,58,71,72,60,69,83,75,64,69,58,86,61,50,45,44,31,53,34,29,36,41,34,38,35,31,32,29,39,19,27,22,14,24,12,18,13,16,9,10,7,6,4,4,3,3,6 E85056,29,35,37,39,44,48,47,64,40,47,55,54,60,46,45,65,61,53,44,56,29,31,32,42,36,37,46,56,55,46,52,49,49,52,49,71,75,65,75,75,84,64,58,66,77,59,46,69,57,40,60,55,45,45,48,46,52,49,49,54,44,39,46,37,39,42,32,33,29,35,30,38,22,19,19,20,30,17,25,15,9,14,6,7,7,9,10,16,5,8,5,7,7,4,4,4 E85057,34,28,28,42,32,33,50,46,58,51,59,72,62,58,75,72,66,69,69,60,54,54,71,57,63,62,54,63,59,40,58,70,69,60,55,65,73,65,72,83,73,75,71,82,81,78,74,84,77,83,81,84,84,78,97,85,62,71,80,64,58,65,61,65,60,54,55,65,62,52,62,49,55,72,59,55,41,59,45,32,47,42,28,21,33,22,21,27,12,13,11,14,10,7,10,17 E85058,32,33,26,24,37,25,41,32,42,38,48,30,33,53,48,48,59,56,47,32,45,34,46,31,41,46,36,47,48,45,43,43,56,57,48,47,46,45,52,53,56,54,47,51,52,54,54,55,57,45,53,51,56,55,45,44,51,70,42,42,34,50,41,32,39,43,35,33,27,34,33,48,33,26,33,27,35,34,24,18,23,12,12,20,25,18,21,17,14,12,2,6,4,4,3,6 E85059,23,37,25,21,47,37,28,39,45,50,55,56,37,64,51,52,56,51,58,36,35,31,49,52,32,48,49,39,44,49,45,49,48,50,53,55,65,64,73,64,68,81,72,83,62,74,63,66,49,52,63,55,49,49,48,43,39,51,52,48,40,32,44,32,31,58,26,42,32,39,35,42,29,31,26,21,34,25,26,18,24,14,17,13,19,12,10,13,10,5,6,9,4,3,5,5 E85060,19,30,26,29,31,34,30,29,39,45,46,37,36,37,38,43,39,33,32,33,34,23,30,29,49,40,55,59,39,40,45,40,53,44,45,50,49,56,55,53,57,47,58,58,65,57,50,44,33,31,41,38,30,42,33,34,42,39,37,42,47,40,30,26,37,37,37,28,26,20,25,26,18,22,22,12,24,20,12,8,17,19,14,11,6,4,7,6,4,6,3,6,6,1,3,4 E85061,39,67,45,39,35,45,29,51,38,38,44,32,31,33,33,28,35,29,29,35,26,39,55,46,53,60,72,72,64,69,56,65,68,44,54,43,57,46,40,37,39,37,38,36,47,36,31,35,31,38,20,21,25,30,23,33,35,22,17,27,31,24,23,25,21,26,17,26,21,18,21,18,14,8,16,14,18,15,11,12,13,7,8,13,7,8,8,5,3,5,7,5,1,1,,5 E85062,78,74,91,84,92,93,96,80,104,85,96,84,113,108,82,83,79,62,58,58,74,59,68,75,105,99,120,127,135,140,150,144,187,128,169,169,159,156,163,136,135,124,114,115,125,90,78,78,63,60,53,53,56,39,50,41,50,29,28,41,33,34,28,33,36,33,24,20,19,28,26,12,14,14,11,16,18,14,8,9,14,12,7,12,6,5,5,2,8,2,1,2,2,2,1,5 E85064,37,45,39,55,28,50,42,52,46,60,48,36,35,36,43,49,46,47,34,41,55,52,38,49,62,74,60,55,55,55,44,65,46,51,63,61,68,62,48,54,53,45,55,59,35,46,59,54,37,42,42,40,30,50,34,52,36,44,52,41,40,35,32,29,39,27,28,40,26,19,20,22,21,18,15,19,16,14,19,10,8,16,17,9,4,7,6,5,6,3,6,3,2,1,2,2 E85066,18,11,25,33,25,24,16,28,23,22,31,21,25,23,23,20,20,18,12,27,10,10,21,29,27,23,39,23,31,29,25,24,33,23,38,27,48,32,36,25,35,32,31,28,30,43,36,36,29,28,29,30,26,34,29,21,25,46,21,23,29,20,20,25,30,14,17,16,19,21,16,24,15,14,24,13,14,16,21,10,7,8,7,6,8,5,8,5,1,2,3,3,1,,2,1 E85069,29,20,28,34,26,47,36,42,38,33,37,32,29,37,38,39,51,35,29,22,38,22,37,30,29,45,51,45,37,43,41,37,44,39,42,51,50,51,36,44,51,53,41,39,60,44,38,40,43,34,28,35,23,30,31,33,29,28,33,20,37,32,23,21,17,23,23,18,23,24,16,19,17,14,16,22,4,8,12,17,13,12,8,4,5,11,7,9,5,9,6,5,4,2,1,4 E85071,14,8,11,11,8,8,8,8,11,15,17,11,7,6,9,7,8,15,13,7,7,14,15,17,20,22,21,24,16,27,18,13,25,17,20,20,16,13,17,14,10,12,21,12,18,13,7,12,8,10,11,12,13,9,10,11,13,12,15,9,9,14,15,10,18,13,13,9,9,7,8,9,8,9,9,6,6,10,8,17,6,13,11,,10,6,2,6,1,3,4,5,1,,,3 E85074,27,16,27,13,15,11,15,18,23,12,18,14,16,19,15,24,22,29,27,23,27,26,46,84,103,115,154,108,136,105,120,102,70,78,72,66,69,54,42,49,34,38,36,40,32,33,36,28,41,33,29,40,40,32,29,31,27,29,26,31,24,23,26,19,19,27,15,15,16,12,14,13,10,13,10,8,11,9,7,11,9,5,4,6,4,5,2,6,3,4,4,4,3,1,1,3 E85075,16,24,23,26,18,15,21,15,29,24,32,23,35,30,32,31,29,25,21,14,17,15,8,18,26,28,29,26,41,33,35,39,36,47,53,47,55,46,47,52,41,41,48,36,51,52,50,39,38,53,39,29,46,40,25,25,18,26,19,22,27,26,19,26,21,11,20,22,17,15,14,18,14,10,10,11,10,11,13,6,12,6,4,4,6,6,3,5,3,3,2,2,3,1,3,4 E85077,7,11,12,13,20,11,10,10,13,11,17,7,9,17,16,14,12,11,12,11,9,9,21,29,40,62,52,49,40,50,59,50,39,35,31,41,38,33,23,26,26,24,23,16,24,13,10,14,19,16,14,15,11,20,17,14,20,20,21,11,19,23,11,13,10,14,9,19,13,10,8,9,8,6,8,13,8,8,5,8,5,5,6,6,7,6,7,3,4,3,,4,1,1,1,2 E85083,28,37,29,24,31,41,31,53,36,45,56,60,57,58,54,61,62,38,49,48,31,43,34,49,37,40,32,51,45,51,47,50,44,36,44,54,62,50,50,44,56,63,62,51,61,58,53,38,46,48,57,39,41,36,46,35,39,34,27,21,33,36,24,27,16,27,22,27,20,16,19,16,14,8,17,8,13,13,13,8,8,14,11,8,13,8,8,5,10,4,,2,2,,2,3 E85088,33,33,24,40,38,36,37,40,46,45,43,37,38,38,36,39,26,46,36,32,30,45,34,47,42,39,49,59,50,56,39,52,53,56,50,46,60,61,64,67,63,61,49,59,50,58,49,46,43,52,41,51,42,27,29,41,31,31,38,21,24,30,26,36,22,23,25,14,30,24,15,23,21,15,16,14,16,17,13,10,11,10,10,12,13,6,7,6,6,4,5,3,2,5,1,3 E85090,36,29,28,23,31,16,30,20,24,23,22,14,26,27,23,26,21,17,11,17,25,32,50,55,62,56,71,64,47,51,52,43,42,48,36,30,40,29,38,39,27,44,30,34,42,28,33,19,26,28,25,26,20,19,17,23,21,22,20,14,17,17,24,20,16,20,16,17,22,22,23,21,18,11,16,17,13,10,10,10,12,4,6,6,9,7,6,6,5,3,3,2,2,2,,2 E85091,17,14,11,8,17,19,21,21,18,11,17,15,10,21,21,19,16,28,10,22,20,22,20,23,33,35,31,32,25,41,21,27,28,28,26,30,34,25,32,18,23,20,22,25,18,27,13,21,19,33,17,8,21,18,21,25,14,14,17,18,12,4,18,16,13,11,8,12,6,14,8,14,6,9,11,7,5,7,8,4,6,2,3,4,1,3,3,2,3,2,1,,,,,2 E85096,22,18,21,20,20,26,23,31,21,26,29,19,25,29,27,37,34,37,25,29,29,21,42,24,38,37,47,48,47,35,39,33,43,42,49,50,45,56,52,31,58,37,34,42,35,30,32,39,28,40,32,35,37,21,21,37,30,24,34,27,30,26,21,25,21,25,24,24,23,14,20,20,19,21,17,12,9,10,8,9,5,5,9,9,5,8,5,6,6,2,2,3,4,,, E85098,38,41,49,49,42,51,35,38,50,44,41,46,35,47,34,55,46,40,44,44,42,45,45,43,53,47,55,52,66,66,69,67,55,75,56,42,57,58,52,69,56,37,59,44,50,52,46,37,62,35,47,31,43,35,26,36,34,24,34,36,24,26,35,20,24,19,31,19,18,9,19,24,13,14,15,14,7,14,17,10,5,6,9,5,5,3,3,2,2,1,,1,,1,1, E85099,62,47,47,33,29,32,38,39,44,43,39,39,37,29,33,21,12,16,16,19,24,24,35,48,58,75,73,96,83,97,85,85,93,105,80,98,101,73,60,84,67,52,57,71,64,59,55,52,35,31,38,35,37,29,25,34,24,27,18,25,33,30,31,17,23,19,23,20,13,13,11,11,18,11,14,17,9,8,12,9,5,6,9,5,4,2,4,4,8,4,,,2,4,1,2 E85103,7,8,10,7,5,7,6,5,11,9,5,16,10,11,18,12,21,15,16,24,19,25,19,22,22,27,14,23,20,19,26,21,12,17,19,21,18,21,10,14,22,17,17,15,19,24,19,14,17,21,21,21,20,18,22,20,22,11,20,17,16,22,20,21,16,17,21,23,25,22,28,25,22,13,24,12,19,11,14,12,12,9,7,5,10,8,3,2,4,3,2,5,3,3,2,6 E85107,34,38,42,42,49,42,42,44,34,37,50,42,53,58,47,53,54,53,32,46,41,52,35,50,66,60,47,61,69,66,66,73,63,73,81,62,57,66,68,65,56,61,59,80,71,72,57,40,61,55,50,38,50,51,42,53,45,42,50,52,43,43,37,46,44,25,39,40,25,22,30,25,29,30,24,24,30,25,27,17,15,12,14,10,8,8,12,11,4,2,5,4,2,,1,7 E85108,19,23,19,16,24,24,26,30,33,30,33,33,31,35,41,36,36,41,29,27,31,36,30,31,34,40,35,28,23,38,37,40,31,27,35,30,32,47,35,36,37,40,34,43,42,40,30,24,27,34,41,37,29,27,33,22,23,27,24,27,20,30,29,13,24,17,21,15,16,22,21,18,17,13,19,15,11,15,16,5,7,10,12,8,5,14,8,4,2,7,5,3,4,4,1,2 E85109,19,22,16,22,26,28,16,25,15,26,19,20,20,21,23,22,24,19,18,24,16,27,18,34,35,42,48,47,42,62,56,55,51,47,47,53,39,44,33,41,37,32,31,36,28,22,26,35,25,21,15,22,21,21,22,18,25,15,19,16,15,15,14,22,12,12,15,8,6,19,9,11,5,8,5,3,9,6,1,4,7,4,5,2,3,2,2,4,1,2,5,1,1,,, E85111,13,26,23,21,21,28,32,36,29,33,27,26,31,44,42,44,36,50,30,25,31,22,31,39,37,36,39,34,31,40,35,38,33,38,37,54,39,48,38,54,52,56,50,50,52,38,42,22,29,31,34,30,26,34,25,23,34,32,28,22,31,24,19,24,13,23,13,25,17,10,17,17,16,15,13,10,11,17,10,5,9,11,11,7,8,3,6,6,7,3,3,5,2,1,3,3 E85112,55,63,66,54,50,36,51,45,48,35,37,40,40,48,49,38,53,54,43,40,38,40,60,60,82,90,88,105,108,125,107,111,92,135,88,95,73,89,63,52,64,73,60,60,54,56,54,51,52,50,33,39,39,33,43,47,34,35,33,39,42,32,24,37,27,29,29,33,31,29,26,21,19,19,20,17,17,11,18,12,19,8,16,14,6,9,4,7,8,5,4,4,1,5,3,7 E85113,13,30,32,35,34,40,41,49,45,40,39,41,51,52,41,52,39,33,31,24,27,33,36,31,38,49,36,53,56,46,53,54,49,43,56,51,49,67,51,71,48,69,66,57,50,65,50,50,51,53,34,49,50,34,44,62,54,54,44,37,48,45,48,38,36,32,31,40,35,40,32,22,21,24,34,21,23,27,27,14,13,15,9,12,13,13,9,11,4,8,7,4,1,4,2,2 E85114,36,44,33,37,40,28,42,44,47,46,32,54,46,51,43,29,47,43,38,45,46,46,45,59,50,55,51,54,64,70,55,51,62,54,35,61,62,56,60,60,50,57,53,52,48,57,58,48,42,50,54,44,45,51,60,49,46,50,54,48,35,51,38,53,41,44,51,47,49,39,35,29,36,29,39,42,31,22,28,16,27,15,15,19,15,8,6,8,5,6,9,7,4,3,1,8 E85115,27,21,17,23,25,23,18,17,23,17,21,18,21,22,23,21,21,20,15,22,16,25,17,23,22,37,41,29,40,32,25,30,36,33,33,38,35,37,37,33,32,41,21,30,18,20,40,27,24,15,24,24,19,26,21,13,19,31,17,17,19,22,21,20,28,26,23,13,15,18,15,11,11,16,13,10,21,15,11,8,6,14,7,11,6,11,7,9,9,3,4,3,3,4,1, E85116,30,24,26,31,34,37,30,29,34,34,29,40,42,46,38,38,34,37,37,34,23,33,30,34,38,28,30,44,46,35,47,54,38,42,52,43,49,45,48,65,57,58,49,41,51,63,52,38,44,33,44,54,57,40,49,36,40,48,51,41,36,40,31,23,25,29,29,32,39,27,21,23,25,19,19,16,17,20,18,11,9,10,15,11,6,7,4,11,6,5,4,2,2,4,5,1 E85118,18,33,15,27,28,22,25,14,22,28,20,28,30,35,26,33,41,30,19,31,30,36,40,55,73,78,86,71,79,82,78,73,68,79,72,76,61,59,45,52,45,46,64,42,48,33,34,41,48,33,30,42,46,44,54,38,46,42,50,35,50,46,42,41,30,35,40,31,30,24,39,19,29,16,16,16,28,20,18,17,19,9,14,12,12,11,13,6,6,10,4,5,3,5,3,3 E85119,82,71,78,67,67,57,74,81,57,80,70,78,75,76,66,71,76,75,71,85,87,96,102,108,111,157,141,137,121,148,151,123,91,103,105,107,85,105,100,101,103,81,96,101,110,96,111,96,100,100,106,84,92,94,93,67,66,76,73,61,69,57,54,48,56,43,38,52,33,41,32,37,32,27,42,35,22,23,22,17,22,17,14,14,14,14,7,8,8,9,7,6,4,1,1,4 E85120,27,23,23,18,46,31,31,45,50,45,47,28,65,43,59,64,71,53,49,36,27,32,33,42,40,44,62,56,60,49,41,54,38,55,61,56,53,69,56,64,73,72,58,63,66,58,76,61,68,57,50,56,54,44,44,44,68,40,42,44,60,43,52,44,52,46,49,37,45,31,37,37,42,28,32,30,32,18,19,13,15,17,16,15,9,9,9,13,10,11,5,6,1,7,3,15 E85121,74,81,72,63,84,67,73,59,69,71,75,79,74,73,67,71,72,78,57,53,85,96,109,105,111,144,161,148,136,117,115,112,115,96,94,84,110,111,103,110,96,99,102,80,79,103,82,72,68,69,69,69,61,83,45,46,53,41,47,53,58,51,51,56,50,47,47,41,56,41,44,29,36,42,30,35,21,22,30,17,11,22,18,14,19,20,20,8,8,9,3,8,3,3,3,6 E85122,43,59,57,53,60,49,76,68,71,68,83,73,71,66,63,71,78,54,63,50,57,49,81,83,108,107,122,135,124,118,148,137,123,133,127,128,128,128,115,143,120,128,111,131,123,120,97,98,89,113,101,111,96,95,78,91,86,92,83,82,85,73,73,76,62,51,66,53,57,49,48,48,49,47,34,37,46,35,38,24,32,29,15,18,15,21,11,20,15,7,4,5,8,9,1,14 E85123,42,51,41,51,61,54,61,55,66,50,69,46,57,54,48,49,43,28,33,33,24,32,36,45,66,75,91,103,103,117,109,112,130,113,135,112,111,99,95,114,95,95,83,87,93,77,67,67,71,62,49,44,40,44,39,35,30,37,36,43,37,40,33,47,39,23,26,28,25,17,28,19,25,23,21,23,22,7,13,11,9,14,19,10,9,12,8,7,4,6,1,6,3,2,1,3 E85124,117,114,130,119,97,43,55,52,63,71,55,41,63,51,64,58,63,74,122,180,195,278,431,632,1001,1315,1701,2069,2278,2595,2749,2869,2584,2304,2042,1696,1445,1136,919,821,692,577,484,403,344,333,302,258,226,188,177,167,155,143,171,116,132,132,104,121,110,102,87,82,87,47,61,45,41,42,31,23,21,22,21,15,14,13,12,8,11,11,4,6,5,5,8,5,2,3,2,1,3,,,2 E85125,16,17,12,10,11,16,11,19,16,21,17,20,18,31,25,30,28,38,32,24,24,29,37,65,73,83,83,80,88,71,78,69,50,74,55,70,54,57,51,40,35,32,46,38,32,43,32,45,32,41,46,38,33,33,36,44,42,41,42,40,32,37,25,26,30,24,21,20,22,14,17,14,13,15,16,16,14,17,13,8,16,8,9,4,7,2,9,3,4,5,1,4,1,1,1,2 E85126,70,36,60,49,45,51,43,65,52,52,58,51,62,55,63,72,63,65,63,66,60,56,49,72,85,89,106,85,97,98,102,105,109,103,98,71,78,79,84,85,58,79,66,75,74,84,65,75,61,60,56,67,53,60,74,69,44,55,48,36,44,60,33,28,31,40,51,42,29,30,35,25,37,34,27,20,23,27,24,18,19,14,13,13,19,13,12,15,9,9,7,3,4,3,1,9 E85127,32,29,37,31,36,46,42,39,44,52,52,33,38,45,55,58,65,70,57,49,50,39,50,56,49,52,54,52,59,62,59,53,56,69,64,62,75,72,54,58,62,68,72,68,82,80,69,60,75,64,61,63,61,54,50,43,61,71,64,59,54,43,57,45,44,52,43,43,50,23,40,36,38,31,32,19,18,32,22,20,18,22,17,14,10,8,13,10,9,9,8,6,1,1,3,1 E85128,32,36,47,67,45,53,52,70,64,61,53,78,64,83,55,78,65,73,51,52,71,56,84,90,118,156,165,182,159,146,143,145,156,140,152,138,122,117,109,104,101,122,93,112,90,101,98,80,82,72,84,77,103,62,85,79,75,59,74,80,85,58,55,54,53,52,48,54,40,32,48,41,40,30,27,24,26,37,39,27,31,29,16,15,20,22,19,16,16,9,10,1,9,2,2,9 E85129,22,24,27,28,25,20,23,25,27,29,19,29,29,36,32,28,27,39,31,43,19,28,37,35,37,42,53,47,46,39,44,39,39,47,46,51,33,47,46,42,36,40,39,42,46,36,45,38,28,32,37,44,36,37,40,31,43,41,36,50,36,39,43,40,34,43,31,29,24,29,25,32,22,21,35,22,27,14,22,14,11,14,10,15,11,13,13,13,7,5,5,6,3,1,2,9 E85130,18,19,25,25,24,17,16,14,30,18,24,27,17,18,20,22,19,32,22,20,17,21,22,20,19,27,25,37,33,33,62,40,58,67,54,47,50,49,44,38,57,40,34,35,42,41,41,31,39,28,32,35,27,28,29,22,22,31,28,24,37,27,30,33,24,31,31,22,19,11,11,25,14,16,9,18,9,11,16,4,8,8,4,6,1,5,2,6,3,,5,1,4,2,,6 E85600,32,25,29,35,32,23,26,42,33,29,31,41,32,43,32,37,41,37,32,42,37,34,36,39,54,65,57,73,59,57,65,73,62,63,50,75,53,68,39,59,41,56,57,65,61,48,40,61,41,47,33,37,41,32,40,39,39,28,31,31,38,25,22,23,21,28,15,24,19,21,17,16,21,15,17,19,9,19,22,13,9,15,11,8,5,9,6,6,8,2,4,4,2,3,1,4 E85605,21,33,38,55,39,44,43,53,45,53,43,52,51,43,42,45,64,57,51,30,38,38,37,44,52,49,41,44,58,46,58,59,69,50,73,56,83,70,88,60,99,80,74,64,86,65,70,69,62,56,59,40,53,49,72,51,54,49,44,53,54,47,44,55,40,45,34,37,40,35,37,41,28,22,22,37,21,29,23,26,20,20,16,12,19,12,15,21,6,9,6,7,8,,6,4 E85617,5,8,5,5,5,9,10,11,13,12,10,11,11,11,10,16,10,11,15,13,11,18,19,21,26,30,45,30,44,43,43,34,27,50,23,35,27,23,19,24,20,28,18,17,16,17,15,24,20,16,16,11,13,20,13,19,10,14,20,9,21,12,11,14,10,4,10,6,6,12,5,4,7,4,5,4,8,5,1,2,3,2,2,1,4,1,1,3,1,2,1,2,,,, E85623,12,26,20,15,20,17,16,15,15,13,14,17,17,15,18,18,4,16,16,11,17,21,19,24,22,25,27,29,27,22,28,17,20,16,20,26,37,28,27,21,17,20,17,20,12,17,18,13,8,22,17,14,19,15,10,17,11,6,11,9,7,9,7,9,11,8,9,9,9,8,2,10,12,5,7,4,4,4,1,4,5,3,2,1,3,6,,,2,,2,,1,3,,5 E85624,28,39,25,26,37,31,30,26,35,40,37,36,30,36,41,43,47,38,32,36,45,51,44,41,47,63,56,67,60,52,44,50,54,59,57,43,63,56,42,55,73,47,50,53,38,39,41,43,44,30,47,38,41,38,29,46,44,50,40,53,31,26,35,30,30,38,29,31,31,33,35,26,20,32,30,13,17,15,17,14,16,8,10,14,6,8,5,7,8,4,4,5,1,4,2,5 E85628,43,45,45,43,64,61,62,53,50,53,58,59,65,64,67,61,73,77,54,57,34,37,47,57,46,60,41,68,56,58,48,62,58,75,51,83,82,74,65,78,81,69,82,86,79,88,103,72,87,80,93,86,70,84,88,78,73,56,77,50,66,62,55,47,43,46,33,39,40,46,30,37,30,21,26,22,42,29,31,19,18,17,20,12,13,14,18,14,9,11,7,7,3,2,3,4 E85633,58,53,57,35,39,39,31,47,39,41,51,53,40,54,48,43,57,55,39,47,51,79,102,83,112,124,119,119,104,99,71,86,89,84,67,64,79,80,70,77,63,66,62,51,54,54,42,49,37,45,36,49,56,30,45,33,31,31,36,36,47,28,35,31,31,39,36,32,26,26,19,23,17,15,13,21,14,7,12,12,9,8,6,6,6,7,8,6,2,1,4,3,2,1,1,3 E85635,20,22,25,31,24,23,33,32,47,38,36,42,39,38,38,32,37,30,31,26,24,27,38,30,46,36,28,54,46,49,61,56,45,67,48,65,48,55,50,48,59,46,41,39,44,49,51,30,38,44,26,33,31,31,32,27,23,36,23,27,28,22,20,16,26,15,19,12,9,14,12,14,12,15,6,18,21,12,7,9,14,8,6,7,9,9,7,8,2,5,5,1,3,,,4 E85636,73,85,68,89,72,71,76,81,78,59,91,65,69,83,69,83,76,65,66,75,70,87,90,121,190,187,176,198,195,193,182,156,164,160,163,155,157,139,116,127,115,114,104,105,95,108,104,98,89,91,110,85,102,105,98,95,96,99,85,95,74,72,70,105,64,51,46,48,34,34,35,34,33,24,33,38,33,26,29,22,25,27,23,19,19,18,16,13,8,10,8,5,11,5,13,15 E85640,11,11,18,7,11,7,8,6,13,15,9,8,11,11,16,9,13,17,7,16,13,15,18,18,16,29,39,28,29,41,38,45,47,54,35,38,38,41,46,31,32,38,37,28,23,26,33,21,17,20,19,24,17,22,20,16,15,16,8,15,13,18,15,15,10,11,11,10,7,6,6,7,8,6,6,8,8,10,4,4,5,5,7,4,2,5,2,1,6,6,4,2,,1,,3 E85643,27,26,20,29,27,31,41,38,34,22,47,44,43,39,46,45,44,61,57,46,54,53,45,46,67,57,46,53,46,49,37,42,42,40,36,49,49,45,40,37,61,42,59,56,66,66,60,52,55,59,48,59,33,52,39,44,38,43,33,31,22,27,20,14,28,27,25,16,17,8,14,23,23,18,10,11,12,7,11,17,7,14,7,9,9,2,5,6,6,3,2,2,4,1,,1 E85649,16,17,16,14,11,21,9,21,15,6,17,11,12,15,13,9,9,11,14,14,15,25,37,58,75,93,104,109,93,105,90,86,78,78,66,63,58,38,50,41,35,27,42,31,36,21,16,19,25,16,16,15,16,12,15,23,15,17,11,10,15,14,15,11,7,10,10,8,10,14,5,6,10,9,7,7,3,8,3,6,6,5,4,3,2,3,3,3,7,,5,,1,1,, E85656,35,42,31,22,31,24,33,34,22,30,20,24,32,20,30,30,28,29,24,28,28,38,38,51,50,57,65,56,45,44,50,46,54,38,36,41,43,39,30,42,36,29,36,24,36,31,33,33,22,27,29,25,27,14,22,28,21,22,20,27,20,21,18,24,20,11,15,16,22,13,17,16,12,5,17,15,9,9,5,6,9,10,2,4,2,8,3,2,3,2,3,,3,,2, E85657,42,54,58,47,72,70,52,67,53,80,69,65,72,67,64,62,56,49,57,49,44,42,76,73,97,103,117,103,117,122,112,105,119,98,142,115,108,113,126,111,118,126,108,117,106,102,96,79,76,86,76,76,65,59,68,60,70,44,64,66,77,47,52,43,47,48,34,45,32,42,34,22,27,30,23,24,32,22,22,12,16,18,15,12,12,16,12,8,8,14,5,3,7,6,4,6 E85658,9,15,10,12,12,9,7,17,16,20,15,16,16,16,18,16,14,18,11,19,21,23,16,31,25,29,34,24,28,32,39,33,42,47,38,32,33,35,31,40,33,34,28,35,43,36,30,24,44,31,26,33,19,24,21,23,18,17,27,19,14,21,17,21,21,33,24,17,19,14,22,20,28,15,12,15,15,15,17,12,16,7,12,7,8,11,12,10,3,3,4,7,3,2,2,8 E85659,7,12,8,10,8,9,8,7,7,11,10,13,14,13,15,22,15,13,11,14,13,21,12,12,22,33,18,21,17,26,16,24,25,23,22,18,22,25,25,15,12,12,12,19,19,11,14,20,13,11,6,13,11,14,15,12,8,9,12,12,11,17,15,10,8,9,14,12,13,4,6,5,4,6,7,4,3,3,6,6,3,6,4,7,1,1,6,,3,2,1,1,,2,,2 E85663,45,49,54,49,47,49,37,48,49,61,41,46,60,53,61,49,43,54,54,54,54,64,69,84,88,76,103,90,83,88,78,68,54,67,70,67,70,68,75,60,64,73,72,59,72,57,58,58,55,58,45,49,47,54,45,51,42,40,39,44,42,36,41,32,37,25,28,26,28,35,24,19,20,20,25,20,15,23,12,14,12,10,13,7,10,10,11,7,7,2,8,3,2,,,10 E85677,30,40,36,42,40,43,42,30,30,30,29,42,46,41,45,44,48,35,37,50,40,52,56,72,85,100,93,104,99,85,98,78,84,81,79,91,87,93,90,88,77,67,66,79,56,56,53,45,41,43,34,26,45,33,27,25,27,21,30,20,26,33,20,20,19,15,13,16,23,11,12,16,10,16,9,12,8,4,4,4,5,7,6,3,2,3,6,3,1,,1,3,,1,, E85680,41,37,47,47,47,49,59,39,51,47,54,58,42,48,57,48,44,55,143,152,111,95,96,134,122,119,131,121,96,100,80,90,95,81,89,87,70,67,73,82,79,77,66,67,72,49,51,37,49,43,42,59,48,54,32,35,28,40,38,45,43,33,33,28,35,27,31,30,26,22,17,21,22,19,16,19,20,11,18,15,11,20,16,10,5,11,9,7,7,7,6,3,3,4,3,8 E85681,38,43,50,44,56,61,45,60,67,77,57,64,77,63,72,65,65,73,59,51,54,68,68,54,67,68,83,92,74,74,78,66,83,78,66,78,81,88,80,87,66,76,85,65,46,71,55,51,61,51,55,45,44,62,50,43,37,40,40,46,47,56,35,31,31,40,38,32,40,38,33,25,26,15,26,25,17,17,14,15,16,12,17,20,16,14,7,5,10,6,6,7,3,2,3,5 E85682,22,15,20,26,25,24,19,28,38,22,34,47,46,42,41,57,51,51,60,46,54,50,44,44,48,42,49,42,53,47,45,36,35,30,34,46,47,37,30,40,48,37,36,52,41,40,41,41,31,33,43,50,35,40,31,40,46,38,33,43,26,23,25,23,32,24,23,26,17,21,21,21,13,15,12,13,11,13,12,5,6,7,6,2,7,5,6,5,6,2,6,4,,2,3,9 E85683,9,11,16,14,16,8,16,7,18,22,19,16,18,27,17,27,25,21,17,18,16,17,32,23,22,28,25,28,22,32,21,34,34,26,34,29,23,23,18,30,26,30,32,17,29,28,49,30,29,33,26,35,30,34,37,35,37,44,33,50,36,28,36,38,29,34,22,23,26,18,17,10,21,15,19,26,12,23,13,15,11,16,14,8,10,8,4,7,3,4,2,2,3,2,2,4 E85685,80,72,81,74,66,64,56,41,57,50,54,54,69,55,51,54,59,60,44,34,46,66,85,114,180,202,170,186,194,174,182,148,130,137,120,138,126,125,97,87,80,85,80,68,76,84,69,66,70,45,68,59,68,70,70,56,57,49,63,69,62,73,66,72,50,49,47,39,39,42,33,29,37,31,38,39,40,44,38,27,29,32,22,29,22,29,17,16,9,10,4,11,5,5,6,16 E85687,43,33,34,20,28,26,28,15,26,16,17,17,13,19,16,8,17,11,18,14,21,32,44,64,81,90,109,95,85,97,98,92,115,91,86,84,92,76,72,54,68,62,33,43,39,37,34,27,18,24,17,23,17,26,20,14,26,16,19,17,12,12,10,9,13,6,8,6,9,6,5,10,8,3,5,5,3,5,3,2,4,2,4,1,3,1,2,1,4,1,,,2,,,2 E85693,89,90,83,97,97,114,108,118,124,128,117,107,104,117,118,127,120,128,114,109,93,94,125,135,170,186,174,218,208,188,214,199,204,239,196,214,242,211,183,187,196,201,198,192,192,199,171,168,157,175,173,166,127,159,144,147,159,142,136,153,126,112,138,98,122,101,85,81,92,88,78,82,86,76,58,65,64,82,69,45,60,47,39,33,32,24,19,18,17,9,12,9,11,5,5,28 E85694,10,9,11,16,21,16,18,30,26,34,36,39,45,42,44,50,43,42,32,27,29,34,32,26,27,31,43,31,31,31,28,30,29,19,29,50,43,50,34,36,47,45,47,38,50,37,46,45,46,44,39,40,41,36,37,32,29,28,34,27,26,17,20,17,23,17,28,20,18,15,13,13,19,14,15,20,14,24,15,15,12,11,12,5,6,9,6,5,6,1,4,4,2,2,2,4 E85696,35,50,59,38,54,43,43,48,36,34,45,36,43,33,37,32,27,32,21,34,30,38,36,36,52,56,54,59,63,60,58,64,41,59,63,62,62,55,71,57,57,55,50,61,47,54,45,35,47,44,31,23,31,33,30,31,26,34,32,21,26,22,17,24,26,27,24,22,25,12,17,13,15,11,9,10,11,13,7,7,12,3,7,8,1,4,1,5,,1,1,2,3,1,,2 E85697,32,28,29,34,42,44,29,41,40,44,29,43,53,48,47,39,53,39,42,40,29,35,31,22,51,46,42,61,62,50,40,51,48,43,44,53,57,54,42,52,60,36,46,55,46,53,47,61,39,40,35,42,40,33,40,33,34,39,33,39,36,33,29,31,23,31,22,28,32,17,15,19,16,13,22,15,7,14,15,10,7,7,9,9,8,3,7,5,6,4,3,3,2,1,,3 E85699,29,34,37,28,32,24,49,35,45,38,37,44,47,42,44,38,56,36,41,31,49,30,31,30,35,44,45,51,49,46,57,50,46,58,48,39,51,71,55,57,50,47,49,53,52,45,35,43,39,39,39,38,31,39,41,32,51,48,40,40,37,38,48,30,34,33,31,35,26,16,27,20,18,16,24,25,20,26,16,19,22,12,12,5,9,17,17,14,8,11,10,6,8,9,7,18 E85707,34,39,23,23,28,24,28,32,20,30,25,29,42,35,34,38,30,31,41,27,30,44,52,45,52,57,74,49,60,54,51,54,58,50,71,56,60,55,46,49,42,53,39,52,39,42,35,41,29,35,44,33,35,46,25,48,37,31,34,32,40,37,37,35,32,33,26,28,29,23,29,26,33,23,23,15,27,19,18,20,13,17,15,8,10,8,8,6,13,3,2,9,1,1,5,6 E85708,44,40,45,43,39,46,42,54,44,47,42,50,40,45,49,42,39,60,49,44,42,37,55,36,68,55,72,73,66,69,63,64,44,78,75,75,94,66,68,64,72,73,72,58,58,66,58,56,51,39,55,42,40,41,46,29,44,51,45,29,35,43,41,34,22,28,26,27,27,32,18,17,16,18,18,14,14,13,17,14,7,9,11,8,9,11,11,9,6,3,7,1,2,5,1,3 E85712,47,68,66,60,82,68,69,93,75,98,71,60,76,105,75,100,72,60,65,71,64,64,78,78,81,77,68,93,94,91,91,72,81,72,102,107,86,87,86,83,102,88,79,84,89,81,94,66,81,72,63,69,70,64,64,47,54,51,41,44,43,40,47,40,36,40,31,35,30,37,34,26,25,30,25,27,21,18,15,15,20,13,12,12,12,12,14,6,5,2,8,4,1,2,1,6 E85713,33,38,30,26,39,32,48,30,28,29,29,35,22,26,29,28,38,25,33,26,22,28,46,51,61,75,64,77,73,74,70,79,55,61,64,55,74,62,55,57,50,53,51,39,35,38,32,17,27,30,34,30,30,27,33,31,35,17,29,36,24,22,18,17,23,15,25,28,14,18,7,12,20,22,11,15,12,17,15,9,9,14,10,11,5,11,4,9,6,6,3,2,4,,4,3 E85715,49,48,51,44,46,51,55,67,58,54,52,48,58,63,44,67,54,44,43,48,58,43,59,51,57,52,64,62,76,61,69,70,73,72,77,71,67,84,78,85,65,78,88,51,75,55,60,55,55,50,60,43,52,52,47,45,41,46,38,42,41,30,28,34,43,37,22,17,29,23,27,26,20,19,19,20,15,16,15,9,8,6,10,6,2,2,7,8,11,7,5,5,2,7,1,4 E85716,74,71,71,74,81,91,92,104,83,85,86,87,78,99,85,95,81,80,97,84,83,95,112,121,154,148,152,163,160,152,157,141,130,139,130,130,140,127,132,137,125,120,131,124,122,108,105,99,85,96,90,89,94,98,73,74,79,82,61,77,66,55,62,47,60,46,49,47,30,38,33,37,31,42,38,31,31,23,30,23,20,13,12,14,20,19,12,15,16,5,8,8,10,5,3,11 E85718,22,20,22,25,20,17,16,20,28,31,32,20,26,28,32,25,30,34,26,22,26,24,30,25,36,43,39,47,37,35,45,34,47,39,28,33,43,40,39,33,31,32,28,44,36,25,32,32,36,33,36,32,23,21,26,24,28,24,33,27,34,22,28,25,16,21,21,15,14,18,19,20,16,15,15,16,13,10,4,8,10,9,6,2,6,7,,5,4,2,5,3,1,,,1 E85719,44,51,52,47,60,54,54,70,71,76,64,64,66,85,87,82,76,77,73,55,51,60,71,87,113,126,143,129,97,115,94,99,81,71,94,78,81,90,86,80,81,87,81,81,86,76,76,80,85,78,83,85,100,79,102,68,70,75,62,42,62,49,36,46,40,30,29,39,34,38,27,33,32,22,26,25,27,21,22,18,22,11,28,12,15,17,8,7,8,3,7,3,1,2,4,7 E85721,16,8,2,6,9,9,10,14,13,14,9,14,13,16,17,14,15,17,25,16,28,13,17,24,21,11,23,11,12,17,16,11,15,17,11,11,15,21,7,5,17,16,19,19,23,14,14,25,24,17,11,8,25,11,18,15,11,9,9,16,11,9,8,9,5,4,6,5,7,1,5,4,3,2,2,2,2,1,,,2,2,2,2,1,,2,1,,,,1,,,, E85725,22,33,30,37,30,49,36,36,38,37,47,39,37,44,35,40,38,46,47,33,37,45,48,49,54,38,65,75,59,63,63,55,59,67,63,64,84,63,70,68,58,53,66,65,58,67,40,51,39,50,49,41,53,47,52,40,54,44,32,47,40,34,46,44,37,45,37,36,21,22,24,21,18,24,18,23,17,24,15,13,16,12,11,6,8,10,7,4,6,6,2,4,2,1,4,4 E85726,15,20,17,14,8,22,9,16,12,12,14,11,14,21,13,11,14,13,10,16,17,14,20,19,27,47,32,23,35,35,35,39,35,31,28,31,45,24,33,28,26,17,17,21,23,23,20,21,24,23,18,13,14,19,8,13,20,8,16,15,19,25,16,29,15,19,15,12,12,8,21,10,10,14,14,11,15,9,5,8,11,6,5,7,3,6,5,5,2,,2,1,2,,1, E85734,25,34,31,34,25,31,35,38,36,37,35,35,42,39,37,45,32,35,44,38,47,39,26,44,42,60,59,47,44,55,52,64,49,37,42,50,54,46,37,46,51,69,59,45,45,45,45,35,41,47,41,37,41,28,35,43,37,34,43,28,35,32,23,28,24,19,32,17,14,26,21,15,22,12,11,14,11,14,18,8,5,5,9,5,7,9,4,3,5,9,4,,1,1,2,3 E85735,48,37,53,40,53,38,42,36,47,36,33,23,43,34,28,24,26,29,33,28,32,20,35,31,49,51,61,68,65,82,83,74,76,77,94,85,110,84,77,73,65,53,66,70,55,48,51,40,42,34,32,28,27,29,42,29,28,23,24,28,36,23,24,24,27,42,26,13,9,13,18,20,17,14,20,9,14,10,15,9,9,7,5,8,4,4,2,3,1,1,2,2,1,,2,4 E85736,42,26,39,26,34,45,44,51,56,43,50,48,54,58,68,63,55,56,60,61,49,57,53,67,58,71,66,56,73,67,67,60,46,56,64,59,75,63,66,64,58,63,61,65,62,65,58,60,54,50,50,49,50,54,50,46,44,41,51,45,53,46,45,41,33,32,28,28,20,30,24,22,24,22,25,26,16,17,17,10,15,17,14,7,13,9,3,10,6,4,2,4,,1,4,4 E85739,58,51,55,60,55,53,50,67,57,69,64,77,63,68,71,57,81,65,64,69,81,56,64,76,68,107,93,91,81,83,73,79,86,84,95,78,90,97,86,83,69,74,88,76,72,83,65,57,53,72,53,74,56,60,68,52,58,47,45,52,39,58,49,39,28,32,35,45,37,42,37,25,32,25,31,20,22,27,26,24,17,21,10,12,13,12,13,9,2,2,7,7,7,3,3,7 E85743,9,4,19,12,16,9,19,15,16,15,20,14,21,20,22,24,25,30,22,22,25,28,26,26,31,28,23,33,24,12,26,21,11,15,15,17,18,25,14,20,19,24,24,23,26,19,16,20,28,18,16,24,22,17,16,22,27,19,20,13,11,12,6,11,18,16,7,9,12,7,6,10,9,4,8,5,5,11,5,5,3,2,4,5,4,5,3,4,2,3,1,1,,2,,3 E85744,33,40,55,52,45,58,57,64,64,51,69,74,81,74,63,80,72,75,65,60,47,66,53,60,63,69,73,70,71,84,85,83,73,69,85,82,111,80,105,86,76,94,102,88,93,89,78,87,84,73,66,73,54,73,61,53,53,49,51,56,53,49,40,30,34,29,28,30,30,27,20,27,21,20,11,20,16,20,23,19,10,17,12,9,10,6,7,8,12,5,3,5,3,2,2,3 E85745,37,44,40,39,33,35,46,36,32,27,44,33,46,48,43,39,50,59,54,38,44,49,68,86,74,79,81,78,65,63,56,64,68,52,52,50,48,52,52,56,58,48,57,48,52,47,54,44,49,34,44,32,34,47,35,42,35,45,39,44,28,34,31,46,32,19,31,22,27,33,39,29,27,19,20,15,20,17,12,12,17,9,8,10,12,10,11,5,9,8,6,7,2,4,1,6 E85746,17,15,16,17,15,19,24,20,24,21,25,37,27,34,28,27,24,32,25,16,22,21,24,25,26,28,33,22,31,25,34,28,34,28,26,30,29,43,41,43,41,35,40,36,29,39,41,45,27,41,36,34,33,24,33,25,29,30,28,15,17,18,15,20,19,13,12,7,16,15,9,11,14,10,9,6,5,10,10,13,7,4,3,4,4,1,2,3,1,2,2,,1,1,3,2 E85748,11,18,14,20,11,25,23,24,25,21,28,27,34,42,27,46,38,42,41,38,36,46,35,37,49,44,37,47,46,44,52,49,33,65,61,38,50,64,59,43,59,55,53,42,63,50,33,38,37,37,38,35,29,27,31,48,42,27,24,27,20,13,13,18,20,21,24,5,12,16,15,7,4,11,14,7,10,8,4,5,7,5,8,3,8,2,1,1,4,2,,,,1,,3 E85750,33,30,37,36,43,44,33,45,42,39,40,51,47,55,43,56,49,53,40,29,31,34,35,45,37,38,43,51,46,57,54,49,48,65,73,51,53,77,55,75,76,69,81,69,73,64,58,66,58,52,55,54,38,50,34,36,33,47,31,33,31,40,37,36,42,26,31,37,26,35,23,28,25,25,23,28,23,25,18,16,13,21,11,16,11,9,11,8,5,4,4,8,1,4,1,7 E86001,35,31,38,42,45,51,66,56,55,69,59,60,63,63,76,83,68,57,64,47,29,54,43,47,43,58,55,53,44,57,40,42,49,58,68,57,74,71,65,76,84,77,83,82,81,103,89,76,85,103,78,75,84,74,76,98,83,72,80,82,77,83,83,89,76,76,93,81,58,72,80,64,55,77,62,62,65,89,68,56,46,62,46,37,34,36,32,23,25,20,21,25,10,8,7,20 E86004,50,52,73,54,60,63,74,84,97,71,66,51,69,74,78,67,53,57,67,53,53,65,48,57,72,77,69,83,88,80,85,72,91,94,113,87,88,99,81,100,104,113,78,74,78,77,85,64,58,63,80,62,65,59,60,70,66,64,63,50,52,69,71,51,39,48,43,49,34,51,31,35,22,27,25,24,35,28,24,22,20,21,18,19,19,14,13,13,14,11,12,8,5,7,5,9 E86005,28,39,38,41,46,34,48,43,35,45,46,50,39,40,43,43,39,46,39,44,32,25,45,44,46,43,52,43,51,31,49,40,55,45,58,58,49,46,47,63,50,72,49,41,45,40,47,59,44,52,58,33,44,41,43,45,35,47,40,38,41,51,45,41,29,41,34,38,43,25,30,35,23,27,25,39,30,35,37,21,22,20,18,21,27,15,10,20,11,17,8,9,9,5,6,13 E86006,34,26,36,54,54,44,45,51,44,41,58,38,51,58,62,65,35,53,44,32,28,33,34,43,47,37,48,41,39,52,45,54,51,49,50,70,60,55,75,71,84,69,75,53,75,58,55,60,64,68,56,44,59,48,57,40,43,55,60,57,51,55,57,52,57,63,52,57,41,54,40,36,48,44,31,37,52,51,43,31,33,26,23,30,31,21,27,20,8,10,21,13,12,15,2,24 E86007,28,32,30,36,40,32,43,53,49,50,44,43,52,49,62,46,46,62,53,38,54,53,42,44,46,54,54,53,57,77,48,57,61,53,57,66,74,59,70,67,47,63,68,61,60,59,65,63,51,51,48,56,43,64,67,67,62,60,72,69,60,56,68,56,65,42,57,57,39,49,44,39,54,45,44,40,43,48,49,35,35,29,29,21,21,23,21,19,15,15,14,7,11,11,12,17 E86009,56,56,57,59,50,56,59,59,49,54,53,54,54,52,50,46,64,49,44,44,50,47,41,65,73,89,82,77,96,88,86,76,107,81,97,90,89,85,92,77,84,71,72,63,71,96,63,64,66,47,55,59,39,54,45,53,50,48,35,39,42,53,47,48,39,40,35,29,38,22,44,33,29,29,26,29,23,26,19,20,33,25,14,17,17,18,14,5,10,9,8,7,5,5,6,10 E86010,98,132,104,133,113,117,125,121,136,118,121,122,131,107,92,117,93,113,92,81,77,97,98,105,136,124,168,155,173,164,187,179,166,167,180,192,186,200,161,149,162,153,136,123,146,108,107,103,107,90,90,71,83,72,101,83,71,72,68,44,51,49,68,52,37,48,49,41,35,46,46,25,27,27,27,25,35,36,27,16,17,17,18,16,2,12,5,6,7,12,4,4,12,5,2,11 E86011,23,26,36,34,31,33,31,43,48,40,51,48,35,43,39,36,35,37,30,33,34,31,23,27,38,32,31,33,22,30,35,39,43,40,39,48,33,48,45,48,62,57,55,56,46,79,44,45,47,49,53,42,23,36,37,46,45,42,44,45,52,41,27,40,30,26,23,27,17,24,24,28,18,19,19,30,30,34,32,15,20,18,16,14,19,23,16,14,10,12,7,4,10,3,2,11 E86012,37,53,45,56,50,47,44,52,68,65,60,75,70,49,52,51,83,58,54,54,45,46,51,54,62,51,70,67,75,61,78,76,72,76,77,80,83,83,80,81,77,83,69,82,78,85,72,79,69,67,64,77,79,69,62,76,91,94,74,87,72,79,95,65,74,71,53,49,60,58,51,58,60,48,66,65,44,65,68,38,40,35,47,42,37,29,30,36,30,26,13,16,13,15,8,25 E86014,61,56,54,51,68,65,46,54,40,44,47,44,52,44,38,46,36,32,27,34,31,27,22,41,42,44,41,39,68,70,57,52,79,75,83,72,84,74,77,76,79,76,64,65,75,66,52,57,44,44,35,47,42,42,41,42,41,38,43,35,36,39,31,41,26,29,31,26,25,18,14,16,18,22,16,18,18,19,22,13,16,13,7,4,7,10,7,7,7,1,3,5,3,1,1,3 E86015,82,94,73,96,104,98,100,98,106,100,106,103,95,88,87,83,97,95,80,79,74,86,87,84,87,93,126,123,122,134,119,114,133,146,143,123,168,145,143,132,134,147,139,114,121,139,103,109,98,108,120,104,94,101,107,90,94,103,86,109,100,95,90,93,94,69,79,84,71,60,68,58,67,74,48,51,48,67,69,50,49,38,37,40,37,27,37,29,22,20,13,19,10,14,3,32 E86016,35,39,30,33,25,30,25,37,27,46,45,36,35,34,45,43,37,42,38,33,41,39,54,48,78,53,75,51,71,47,54,57,33,30,50,48,43,40,38,39,45,41,39,46,38,46,37,37,33,41,28,44,38,34,37,39,40,41,33,27,38,21,49,35,24,24,22,22,24,23,12,13,16,15,20,20,16,19,10,10,18,13,12,10,13,9,12,8,8,8,10,8,4,4,2,8 E86017,137,118,138,117,119,116,112,94,106,89,91,91,101,96,99,93,105,94,115,85,106,129,182,223,255,267,236,268,230,231,221,203,210,211,192,146,165,133,164,131,145,127,116,122,129,113,91,113,113,92,105,83,91,90,72,74,80,86,59,73,84,60,56,50,53,53,62,39,41,57,37,40,25,26,31,28,31,19,33,16,18,15,21,11,17,22,14,14,9,10,6,4,,5,3,5 E86018,29,28,32,32,37,40,45,53,55,46,59,49,57,61,61,56,67,60,60,66,58,44,51,57,52,54,60,48,62,58,55,49,57,51,55,51,53,60,58,55,57,67,60,67,49,50,71,48,50,56,48,49,40,49,51,55,55,52,37,45,42,38,41,38,39,36,40,26,19,36,32,26,23,19,29,30,13,23,26,23,16,16,16,17,15,17,17,19,11,10,13,5,8,7,7,15 E86019,24,38,31,33,17,36,26,28,42,35,42,48,41,42,42,50,41,52,43,45,31,51,45,57,56,58,57,57,52,48,45,38,47,35,41,39,32,36,36,52,45,44,54,45,54,47,54,43,42,48,43,43,46,45,43,40,46,41,34,30,49,29,31,41,22,30,37,30,33,25,25,29,21,22,28,19,25,29,26,11,17,17,13,9,14,13,7,11,10,8,14,5,4,3,5,10 E86020,36,26,28,23,31,27,37,30,34,35,37,49,31,29,32,51,40,39,46,33,32,32,32,33,39,41,46,41,42,49,19,25,51,44,39,35,39,48,57,44,32,46,41,28,36,47,43,28,35,22,32,25,35,24,33,34,28,21,33,24,27,22,22,29,23,13,20,9,14,18,16,16,18,17,10,16,14,22,10,5,10,3,7,10,9,5,6,4,6,3,2,5,1,,1,2 E86022,9,21,14,20,20,22,22,23,32,25,42,34,32,34,32,44,36,44,34,31,19,25,23,25,24,37,34,22,28,34,41,31,29,35,33,33,32,40,31,48,34,43,36,40,46,47,44,40,41,33,33,34,36,46,46,59,32,41,43,42,47,56,41,38,54,39,40,37,34,32,34,33,26,26,34,25,32,38,37,25,26,28,27,16,14,17,24,18,18,12,15,12,11,8,10,9 E86024,9,16,14,18,8,14,13,26,19,25,21,20,21,16,26,27,26,27,29,27,24,23,26,23,19,31,19,28,32,26,19,27,17,19,22,27,22,24,26,19,15,20,22,30,29,25,29,23,35,31,31,25,35,32,34,38,30,30,44,26,42,32,35,33,27,28,27,26,23,16,20,34,27,17,19,18,13,27,34,16,20,23,18,18,10,9,9,7,16,10,13,4,7,4,4,12 E86026,55,51,50,36,45,52,59,44,46,41,43,46,49,52,47,69,72,53,50,51,50,53,55,66,62,68,60,72,74,76,68,62,71,69,62,74,58,68,53,55,54,55,66,75,63,55,47,47,51,62,50,45,44,47,39,36,39,52,54,44,43,53,42,38,37,33,35,33,24,28,27,32,30,18,22,24,21,22,31,13,15,14,14,7,13,11,9,23,7,9,11,8,2,2,3,8 E86027,36,35,34,38,39,45,62,60,57,43,66,54,41,39,52,49,51,51,48,43,45,27,35,39,31,42,33,63,35,33,46,60,52,55,54,52,47,78,74,72,59,53,55,61,62,46,54,52,47,36,55,38,40,42,40,32,45,48,39,45,42,49,42,27,23,26,30,29,23,26,25,24,22,12,19,15,20,21,23,16,15,16,13,16,14,18,12,14,12,18,10,7,8,2,6,17 E86028,22,33,35,36,43,38,47,48,34,51,64,56,59,64,45,51,63,58,35,41,54,44,36,37,40,46,42,42,32,41,55,49,48,65,43,62,71,47,56,71,63,61,76,68,83,77,70,66,58,62,52,63,60,54,53,45,45,61,63,43,44,59,48,52,37,45,37,40,44,42,41,40,47,33,33,32,47,50,43,38,31,36,30,22,31,30,24,22,21,18,19,13,12,9,9,25 E86029,44,60,49,65,63,53,50,54,71,62,80,71,86,90,67,79,71,94,60,72,65,68,68,82,81,72,72,68,73,89,73,76,71,80,75,81,75,94,92,88,66,80,80,85,76,80,70,64,56,64,76,84,62,61,46,80,73,83,61,81,56,59,54,53,58,39,50,38,34,37,29,38,30,15,29,31,26,27,29,29,27,17,17,17,18,24,18,15,26,7,10,5,9,5,1,13 E86030,33,33,31,34,29,29,21,35,38,22,29,27,25,21,27,24,31,32,84,139,169,164,199,224,269,196,160,171,123,115,108,118,88,91,70,67,77,53,46,63,51,44,44,35,34,28,40,25,20,21,23,21,25,31,24,16,21,19,15,16,19,20,10,11,15,10,13,9,11,12,10,6,11,10,6,11,9,7,7,5,5,2,6,4,2,1,4,4,5,3,4,5,1,1,,2 E86033,26,27,29,32,34,39,36,31,26,45,30,39,36,29,31,33,36,38,26,35,29,20,30,37,34,31,37,34,42,30,35,45,38,45,45,41,55,47,54,49,62,60,49,51,54,53,41,35,41,39,38,36,36,27,35,44,26,29,45,35,38,41,29,44,32,36,33,31,26,35,31,28,26,19,29,36,31,29,37,16,15,18,22,27,17,15,10,16,16,17,9,8,7,7,9,22 E86034,13,11,10,12,19,24,21,21,21,22,15,17,16,14,17,13,18,16,13,11,10,10,8,17,13,9,14,23,19,17,18,19,20,21,22,17,21,28,26,19,18,18,18,17,22,18,18,16,11,10,13,15,16,20,11,16,15,19,17,15,13,16,13,19,14,16,15,9,10,12,6,8,12,7,14,6,3,6,9,6,4,6,1,1,5,6,5,3,1,4,6,1,2,1,1,5 E86036,42,34,45,54,52,36,49,54,59,46,52,55,54,51,48,42,67,58,54,47,31,49,39,58,51,49,67,58,65,57,67,64,65,57,66,55,64,76,61,76,81,55,76,83,72,76,64,59,64,53,39,45,50,58,46,52,61,51,45,56,42,51,37,52,48,47,49,50,51,42,50,34,35,34,24,45,31,36,36,21,20,23,15,31,25,22,22,16,19,13,15,15,11,9,11,22 E86038,26,36,37,42,36,39,45,45,43,47,42,48,40,39,45,42,48,32,35,44,35,48,48,41,48,49,64,58,52,77,48,49,74,66,53,52,58,59,62,55,52,50,64,56,65,65,40,40,47,39,54,43,42,42,36,41,46,26,37,39,39,39,44,32,29,30,25,23,25,24,20,13,18,14,12,11,14,18,15,12,14,9,9,9,11,7,6,8,4,1,2,6,1,3,1,8 E86041,23,22,32,26,38,38,34,24,32,41,34,39,42,54,38,43,42,26,40,23,31,33,29,42,31,33,28,44,35,35,36,41,30,40,47,55,43,46,44,42,45,45,56,42,59,41,34,49,44,41,44,34,27,25,37,44,27,41,28,23,28,18,25,26,22,29,23,10,28,24,26,22,17,24,19,23,15,28,16,9,12,13,15,12,10,6,11,11,10,11,6,3,4,2,1,6 E86042,51,53,38,62,48,40,34,41,44,64,51,48,45,44,55,43,54,46,46,43,61,43,38,43,50,47,46,64,63,70,74,68,70,77,87,83,70,77,70,78,60,65,47,52,63,66,60,44,41,44,45,47,41,39,41,45,44,51,42,41,41,44,33,39,24,31,25,17,26,25,23,13,13,9,17,23,17,22,13,16,16,11,4,11,5,4,4,5,5,4,5,3,6,2,,2 E86605,14,15,11,18,11,12,9,16,16,14,12,13,12,14,12,13,16,15,9,9,10,12,12,8,9,15,10,12,16,16,21,13,12,23,22,19,18,26,22,19,27,17,28,10,20,21,21,20,15,10,19,12,11,14,14,14,18,12,20,13,18,26,24,16,16,16,20,23,16,10,14,23,7,16,12,10,5,20,11,8,7,9,14,3,5,2,5,7,5,3,4,1,1,2,3,2 E86609,80,58,75,45,50,42,42,44,53,38,32,28,36,34,33,42,36,40,35,51,61,66,75,112,127,103,118,139,131,146,127,114,114,114,95,93,82,83,71,73,63,72,57,64,42,49,49,40,45,33,42,41,39,36,48,32,34,27,32,24,22,22,29,22,13,25,20,10,19,11,15,10,20,16,10,10,7,14,10,8,14,4,7,3,7,5,4,5,3,1,1,,1,2,,3 E86610,11,18,20,13,14,15,14,26,19,13,19,19,24,21,19,26,30,10,15,23,23,19,19,22,14,19,22,27,26,22,29,26,27,33,27,24,23,23,22,23,20,24,37,27,28,22,28,15,27,20,17,25,24,24,28,23,18,23,24,26,26,23,22,19,20,14,11,21,17,8,13,14,10,9,11,12,7,8,10,4,9,8,4,3,5,3,,3,1,2,1,1,1,1,1,2 E86612,36,32,34,24,32,33,28,30,33,33,39,30,36,36,22,33,46,53,35,34,39,42,41,51,51,55,65,66,63,67,56,48,53,46,51,50,59,47,53,39,48,49,39,46,40,41,26,32,30,33,40,29,20,23,24,24,27,27,20,24,20,20,28,21,18,24,16,18,20,18,11,14,10,5,11,8,4,4,5,9,4,7,6,2,4,1,6,3,3,5,3,3,,2,2,3 E86615,12,8,8,12,19,13,13,15,11,9,12,14,23,22,19,21,17,16,10,11,7,13,6,20,13,22,16,15,18,17,25,19,23,15,20,12,21,22,18,15,24,15,21,21,23,21,19,22,27,24,17,11,15,8,14,15,11,10,13,9,17,16,20,12,12,8,12,11,10,10,11,7,7,8,9,5,9,6,6,7,4,6,7,5,3,1,5,7,4,1,2,4,5,3,1,4 E86618,30,44,40,37,39,40,49,54,48,50,52,57,56,44,63,62,39,52,35,31,30,34,26,31,42,40,34,53,55,46,52,51,53,62,61,66,59,73,72,74,74,67,55,56,63,61,65,45,48,49,48,34,38,37,44,28,31,38,42,31,37,42,29,44,29,36,34,20,26,27,32,25,25,37,30,18,33,25,29,24,21,15,26,14,19,23,12,9,7,5,11,11,4,4,3,12 E86619,19,16,23,16,20,22,24,24,25,38,28,27,31,36,39,35,28,21,16,8,13,5,11,9,21,10,14,16,12,17,13,23,17,31,31,24,26,38,23,25,24,34,47,36,41,52,30,23,31,29,23,26,17,23,12,17,18,15,14,15,21,23,15,23,18,20,12,19,17,21,10,12,13,13,12,10,13,17,10,8,10,10,7,10,2,7,5,5,3,4,6,2,2,3,,2 E86620,29,27,35,27,45,40,36,45,36,39,45,39,41,33,43,41,47,40,29,21,28,23,28,20,33,32,42,40,29,50,37,41,47,55,50,52,62,56,48,44,45,57,53,36,42,33,43,33,26,29,29,32,25,37,35,32,19,14,28,28,18,23,20,21,23,16,22,12,19,16,10,17,17,12,7,19,14,16,12,10,15,7,6,4,7,12,5,9,5,11,1,,3,,1,2 E86625,7,12,12,7,17,12,19,21,20,34,14,26,23,10,20,17,26,24,20,15,11,13,20,20,13,17,12,14,12,21,19,15,16,18,21,22,17,19,28,22,34,20,23,30,15,19,17,22,16,15,21,23,12,16,22,14,16,12,17,24,22,14,14,12,14,14,15,11,15,12,9,10,13,10,3,9,1,7,3,8,7,5,2,6,3,3,4,7,3,2,3,1,,3,,6 E86626,27,32,27,34,33,40,42,34,35,35,45,39,35,28,39,40,35,32,28,22,26,27,36,38,36,29,32,29,40,38,37,30,29,29,42,49,36,59,42,58,51,47,46,51,68,58,42,48,32,36,35,41,43,41,31,53,42,41,41,43,38,45,31,46,49,39,38,28,38,38,26,22,18,21,14,15,22,17,13,18,17,8,12,11,5,7,12,6,9,15,4,2,4,,2,5 E86629,19,19,24,25,23,28,25,25,26,27,26,29,29,28,25,23,23,26,21,17,23,20,25,14,23,25,19,30,26,25,30,25,28,37,34,32,36,39,34,34,47,39,35,27,21,20,35,26,25,25,24,15,19,21,21,26,11,22,14,14,15,12,16,23,10,11,9,12,9,11,15,11,8,13,9,8,14,11,16,5,8,7,6,8,13,5,8,3,4,2,4,3,2,3,3,4 E86632,26,30,14,33,31,27,29,38,39,46,37,36,31,42,42,42,42,44,48,48,31,34,33,33,35,45,46,41,52,39,33,44,41,31,32,40,41,43,55,47,40,39,41,45,58,46,42,54,30,44,54,42,27,45,31,53,44,37,39,45,35,30,28,30,28,25,26,26,29,23,15,35,12,20,21,15,18,12,7,9,10,11,2,6,3,6,7,3,3,5,2,1,2,1,,7 E86637,38,24,32,29,20,24,25,31,34,27,33,30,34,31,49,44,27,33,39,28,30,29,40,42,45,55,30,59,53,50,51,44,35,49,37,62,52,47,51,41,52,50,42,47,47,57,42,44,33,38,36,46,38,30,49,37,38,37,30,34,32,24,26,38,25,32,29,27,32,28,13,15,21,19,16,9,23,14,19,7,13,12,11,6,8,10,6,7,5,6,2,5,,1,2, E86640,33,32,41,45,44,46,41,45,41,36,34,41,34,37,43,23,26,31,24,22,23,26,21,26,22,26,30,29,38,31,36,32,39,49,59,54,54,50,61,56,41,59,59,63,58,45,65,55,46,38,32,30,33,30,25,30,36,31,33,33,33,27,32,29,25,22,22,27,34,22,23,25,22,22,19,27,30,13,30,23,15,14,23,8,11,11,10,12,5,10,6,6,5,5,6,3 E87002,47,33,47,62,49,72,62,69,68,67,67,52,61,62,67,49,68,83,99,67,72,77,84,107,132,133,145,199,171,200,183,195,194,213,213,170,172,156,169,189,141,154,131,147,125,128,124,121,128,104,119,105,93,120,86,116,130,101,106,103,106,104,86,89,88,71,72,71,74,78,83,51,69,61,55,55,62,42,65,61,43,46,39,43,34,38,28,22,34,17,18,22,15,5,11,21 E87003,10,15,15,11,18,15,14,12,20,24,20,16,21,26,17,22,27,20,22,33,18,12,48,49,56,64,54,55,48,36,54,37,33,43,36,32,42,48,41,48,43,32,47,34,35,33,33,30,39,35,35,29,40,31,29,33,30,35,39,34,37,43,40,30,29,28,31,34,14,20,23,17,13,19,15,14,21,15,15,12,15,10,11,12,4,8,11,10,6,5,5,1,2,4,2,2 E87004,21,18,30,26,39,25,28,28,41,45,41,42,35,36,38,50,59,41,46,45,39,58,71,74,94,85,89,78,87,91,99,100,80,83,91,81,75,88,90,67,85,65,94,77,100,81,85,84,83,74,69,90,67,75,80,84,80,73,80,75,86,81,67,58,65,46,59,61,48,55,34,45,50,45,59,51,37,42,35,38,42,26,32,23,18,24,14,10,15,5,17,9,7,3,1,11 E87005,22,16,21,21,20,18,22,21,24,25,35,34,33,25,18,39,31,27,36,33,37,45,41,54,63,83,104,109,96,105,78,96,73,76,79,85,77,58,74,53,58,69,50,65,58,50,55,53,78,46,62,69,59,72,66,87,83,68,54,68,72,67,62,71,42,53,50,43,34,33,35,42,34,23,31,48,38,29,32,28,29,25,26,15,17,13,27,15,21,12,10,4,6,3,6,13 E87006,13,10,13,17,14,15,14,14,16,21,12,22,15,15,13,18,18,24,21,13,17,25,23,29,48,43,43,46,66,54,49,46,38,46,51,49,37,42,45,43,33,45,33,33,23,36,32,33,27,31,34,24,27,33,25,17,24,30,20,24,28,19,21,18,25,29,16,17,18,20,16,13,21,12,14,18,15,13,9,13,9,9,7,8,7,6,8,2,3,8,5,,3,2,1,3 E87008,22,30,41,33,44,41,28,32,46,34,44,34,55,38,56,35,48,61,58,65,78,88,111,166,176,175,192,155,150,148,144,146,134,118,114,95,107,80,87,83,80,86,83,77,83,57,67,59,37,72,49,62,60,55,51,60,57,53,57,47,56,56,41,47,46,41,38,25,42,36,30,35,34,27,34,28,30,22,29,24,22,11,13,12,15,8,21,13,17,16,10,6,7,4,3,5 E87009,4,11,8,8,11,6,17,8,9,11,16,13,10,24,23,17,21,15,11,13,9,17,16,21,24,29,31,36,43,38,32,33,30,29,43,40,46,42,25,31,35,27,28,22,32,23,29,19,24,22,21,19,24,12,26,16,17,24,16,23,23,21,15,26,16,18,11,21,19,14,18,16,16,19,13,20,7,19,17,14,14,13,14,9,3,7,5,8,8,6,4,3,2,1,3,5 E87010,11,13,19,20,11,22,19,14,20,13,19,15,23,19,16,24,17,21,19,10,14,11,20,37,35,42,41,41,43,49,64,61,59,55,60,71,55,68,66,60,71,56,51,52,57,53,50,48,37,33,43,36,36,31,40,36,32,25,28,33,32,31,31,33,25,35,14,20,13,11,20,21,21,22,15,25,21,19,13,10,13,13,8,7,8,7,3,9,8,5,5,3,2,,1,5 E87011,28,23,27,27,27,28,35,27,33,42,37,36,37,44,41,51,35,40,30,43,42,69,61,94,90,100,94,93,90,90,95,94,79,80,67,65,56,60,60,62,49,47,45,57,44,51,63,46,42,33,55,47,42,46,44,36,51,37,43,49,44,25,32,32,32,27,29,27,31,31,28,33,24,38,30,31,22,24,23,24,19,16,19,18,19,21,7,7,11,9,10,3,8,2,4,7 E87013,53,58,60,69,62,67,70,60,78,75,90,72,74,69,65,84,70,81,84,81,82,88,102,115,138,118,158,161,184,195,174,179,164,163,190,141,145,159,136,145,123,122,141,131,128,130,113,133,139,98,120,106,115,125,132,114,140,108,90,110,97,87,82,80,88,88,68,64,51,55,58,58,53,57,51,63,43,60,43,59,48,47,39,32,27,38,32,21,19,17,11,12,11,12,13,23 E87016,45,60,47,64,49,57,50,54,62,64,58,56,66,63,74,64,74,66,70,59,79,93,75,112,123,134,123,113,123,123,120,129,123,114,127,129,91,121,130,121,96,107,103,116,89,85,96,89,100,76,107,88,112,132,94,94,95,101,87,73,78,79,66,91,56,70,74,54,51,57,60,56,54,45,45,67,55,54,52,38,38,34,36,21,37,31,17,23,15,15,16,8,10,10,5,15 E87021,23,23,21,15,16,16,22,14,20,20,17,16,15,15,16,19,12,13,17,19,15,30,33,27,33,62,54,57,53,63,51,58,68,57,60,63,58,45,29,43,34,41,34,34,43,20,27,18,29,29,34,37,23,42,25,31,34,29,32,32,28,44,38,35,36,31,37,22,39,29,25,21,17,22,17,19,23,14,16,20,17,14,23,11,12,12,8,16,12,9,9,9,4,8,4,4 E87024,19,22,17,23,20,24,17,31,29,21,35,34,41,25,44,33,36,30,24,33,30,39,37,35,47,41,47,48,40,42,41,49,36,55,34,37,44,33,39,32,34,38,40,42,30,34,30,35,39,40,37,27,28,30,43,33,39,38,36,30,25,27,30,26,28,33,28,19,22,25,16,22,12,12,16,19,8,12,10,9,16,11,7,14,9,14,6,5,14,7,5,4,6,3,2,10 E87026,4,7,3,3,7,4,12,5,11,8,3,11,9,12,11,12,8,8,7,12,11,14,13,13,6,16,16,22,19,17,13,14,16,15,17,15,15,23,20,14,18,18,16,7,10,27,12,19,16,10,15,16,13,15,14,20,15,21,12,11,16,13,17,18,17,10,12,13,18,8,14,16,12,9,10,9,9,8,6,9,8,6,4,2,4,4,5,8,4,2,2,,,1,, E87029,32,27,42,36,45,35,38,45,52,49,56,59,57,52,54,56,45,55,52,45,44,50,53,51,56,66,69,73,76,71,67,58,76,54,67,67,79,70,86,68,90,56,51,72,66,71,89,70,74,68,70,78,69,72,72,88,66,83,67,71,83,62,68,59,55,48,49,45,33,32,24,51,29,39,33,31,31,32,34,23,34,31,28,19,19,26,13,13,10,10,7,5,7,8,8,10 E87034,40,50,37,39,43,36,47,63,44,62,45,49,57,66,58,59,52,63,61,86,79,96,110,131,141,195,186,184,193,203,222,167,157,173,121,148,109,116,119,101,103,98,124,111,90,91,92,83,88,96,87,76,93,89,90,79,98,81,95,92,84,85,79,52,73,63,66,86,62,58,51,47,52,43,48,42,38,44,41,41,32,23,22,33,20,12,16,21,14,16,10,9,9,6,6,11 E87037,32,32,31,40,34,30,28,37,39,38,34,38,37,44,49,41,41,42,54,53,66,54,93,102,118,136,137,136,142,141,142,129,157,129,123,93,119,109,94,98,82,88,73,81,64,66,60,67,65,69,56,56,57,79,63,66,64,47,64,60,58,60,52,48,38,36,43,35,38,31,40,32,15,45,28,31,32,29,33,24,18,14,21,13,15,17,7,6,13,6,5,4,2,1,8,13 E87038,8,10,18,17,15,18,14,19,28,20,15,21,22,18,24,22,15,19,33,23,25,12,19,18,37,57,50,38,38,42,53,54,29,31,38,42,25,39,40,38,37,33,41,46,35,31,29,25,33,28,28,33,26,33,26,29,32,38,33,39,39,24,25,24,28,27,27,27,26,14,16,22,25,18,18,11,17,12,13,15,16,11,10,9,6,8,9,12,2,7,6,4,4,2,2,2 E87043,25,20,24,20,23,25,21,30,33,30,30,27,37,36,56,38,39,56,29,50,45,49,68,65,56,65,67,64,48,41,64,63,60,62,73,56,71,62,59,62,60,50,66,58,63,65,50,73,48,64,53,59,64,73,54,48,56,42,43,42,46,42,33,31,16,26,31,13,18,26,27,18,17,23,15,14,19,23,21,21,20,14,11,10,11,6,10,5,2,6,7,2,1,1,2,9 E87045,12,10,7,8,7,14,14,9,7,10,9,9,9,12,11,13,16,26,30,50,48,51,97,100,110,71,85,76,55,58,64,34,53,42,42,39,34,49,39,28,24,43,26,32,48,25,25,21,28,25,23,26,36,26,28,32,27,33,19,36,30,20,40,25,18,20,24,23,18,18,15,20,19,11,19,17,17,12,14,12,10,11,10,6,5,7,7,14,5,2,3,3,5,1,2,4 E87046,71,76,75,73,76,64,49,51,53,49,52,44,66,50,60,55,46,48,46,48,33,55,71,101,128,157,183,219,192,240,197,232,179,186,180,204,173,161,133,149,135,128,134,108,107,94,91,103,92,72,89,88,73,69,69,60,68,49,65,53,71,55,51,56,42,46,51,42,41,35,35,34,38,28,30,29,28,19,24,18,14,14,12,10,7,9,8,7,6,6,8,9,3,3,2,9 E87047,12,8,11,10,16,12,15,12,14,16,13,17,19,12,20,18,16,22,22,17,37,33,59,60,92,102,111,103,100,105,119,85,86,98,76,83,82,59,51,71,68,54,46,48,59,42,38,41,43,45,54,36,40,40,39,32,35,36,34,34,32,35,27,33,26,31,28,27,23,19,23,23,22,24,43,20,27,26,25,21,15,15,7,8,8,7,4,5,2,4,1,2,2,,2,8 E87048,8,5,10,15,14,9,9,6,8,11,9,20,13,20,14,10,15,15,17,12,13,14,26,24,27,31,32,29,30,34,41,30,50,31,27,36,35,34,32,29,42,24,34,36,25,29,29,20,36,18,26,24,21,27,23,29,22,21,18,23,14,19,12,16,13,13,10,16,12,8,14,15,8,7,7,14,16,9,11,5,9,10,6,10,3,12,5,4,6,1,1,,,5,2, E87052,5,5,12,5,15,9,21,11,16,16,18,14,20,17,31,16,12,19,28,18,19,18,14,21,34,28,23,20,36,31,30,33,36,28,27,26,26,36,33,28,21,17,20,20,16,25,19,22,23,15,23,20,18,13,17,15,20,17,7,19,21,14,18,15,14,15,16,15,10,10,7,14,9,10,12,10,17,8,9,6,9,1,8,7,4,3,4,,3,3,4,3,2,3,2,3 E87061,61,62,64,63,47,68,64,45,87,72,65,68,68,69,65,74,57,48,60,54,57,55,77,91,109,129,129,111,124,152,155,152,135,137,158,149,156,166,153,158,142,151,126,130,112,119,109,115,114,110,105,96,114,94,80,94,85,67,87,68,77,78,75,64,45,65,48,56,55,50,43,33,35,30,34,31,39,30,41,25,23,22,23,29,21,27,12,12,11,3,7,5,3,4,2,14 E87063,59,58,70,57,62,49,55,63,52,54,57,51,63,54,56,58,45,69,66,59,67,73,130,151,213,203,241,290,241,272,266,243,231,241,243,224,218,190,220,189,163,174,163,156,142,133,116,114,102,99,80,80,93,85,88,64,76,71,51,76,49,55,50,62,48,42,50,42,35,40,42,32,32,25,37,29,19,27,25,26,18,12,14,12,11,16,12,9,4,8,1,1,3,1,2,6 E87065,17,17,6,12,12,11,6,12,9,10,10,9,10,18,11,12,9,14,16,18,13,21,25,28,41,41,60,59,71,66,53,50,41,49,32,39,36,33,33,31,30,24,21,24,23,28,24,16,22,29,20,30,22,27,22,29,28,28,28,26,23,29,24,22,21,25,11,20,14,14,15,13,19,14,11,9,19,5,7,5,6,10,4,5,6,9,6,3,5,6,4,2,4,2,1,4 E87066,10,13,17,9,9,27,20,14,24,17,16,18,28,31,26,29,20,27,90,86,82,67,91,85,74,83,89,108,101,100,107,86,105,72,76,66,77,73,72,60,67,75,56,53,51,59,45,43,42,42,48,53,37,49,31,40,46,40,24,37,28,39,34,29,24,19,20,29,27,26,18,24,18,8,17,19,12,15,22,22,7,19,4,13,5,7,7,6,1,5,4,4,2,2,,5 E87067,40,46,33,41,35,40,48,52,50,42,49,45,53,48,37,33,50,53,56,36,36,52,60,52,59,70,61,74,80,73,77,101,84,90,92,86,86,92,96,82,107,96,79,99,94,89,92,71,73,61,71,80,66,69,67,73,69,106,72,88,90,79,67,80,58,56,70,56,54,59,50,46,36,43,38,46,42,38,39,36,32,31,30,20,18,18,17,9,10,10,9,6,2,5,5,7 E87069,1,6,5,6,5,3,3,6,3,3,1,7,5,7,6,10,2,7,5,7,7,7,10,16,13,13,19,21,22,25,32,31,39,34,44,52,37,21,17,28,33,17,25,28,11,22,11,18,13,14,23,25,17,14,16,15,18,15,23,11,11,13,17,11,12,12,4,10,14,5,7,9,6,7,5,7,7,4,5,9,4,3,4,2,5,3,4,2,3,2,1,2,,2,1,2 E87070,13,19,13,17,19,24,29,21,17,27,35,22,21,27,16,20,23,22,23,32,33,31,46,62,81,95,94,98,113,98,92,111,109,97,90,88,82,61,69,63,58,67,63,54,48,56,44,49,43,38,46,36,33,43,33,30,39,23,34,26,34,26,32,38,22,22,15,21,20,19,12,28,19,22,13,19,12,18,14,11,17,14,10,10,3,9,7,7,4,5,4,4,3,5,3,5 E87609,98,81,84,93,98,104,99,99,130,118,150,140,117,151,128,144,143,117,107,103,99,93,120,143,157,145,173,163,209,209,211,227,217,231,249,233,246,203,236,200,208,207,206,209,181,175,185,189,184,178,165,159,161,139,166,159,136,117,139,114,120,104,94,97,104,92,89,97,69,65,78,62,62,88,66,71,67,62,75,68,59,59,44,33,37,33,35,34,28,25,20,11,22,13,11,39 E87637,69,60,67,98,70,65,97,82,104,96,89,81,82,113,85,96,107,95,89,107,101,126,132,182,215,215,207,299,232,272,273,243,251,279,228,243,214,222,210,192,171,224,175,151,153,183,144,125,142,131,115,129,125,119,126,114,113,107,109,110,99,96,92,73,83,75,79,64,62,53,54,56,47,57,46,34,36,33,30,25,33,22,22,26,10,17,15,17,11,19,8,4,3,6,9,9 E87648,14,11,14,11,10,7,14,5,6,5,10,9,11,14,9,10,10,11,10,16,17,27,25,23,36,47,52,51,53,55,62,45,57,57,41,43,36,39,35,39,31,35,25,35,26,25,26,26,28,24,27,27,23,27,27,20,30,11,17,17,22,21,15,19,15,24,25,18,17,11,14,15,15,8,14,7,10,12,9,5,6,7,3,5,7,5,8,8,4,2,2,2,1,1,3,3 E87663,12,6,7,7,14,10,9,9,9,17,19,21,24,19,20,20,33,27,23,29,23,19,13,21,26,28,19,20,16,17,21,21,31,13,16,18,21,20,23,16,20,23,16,19,21,21,15,21,25,25,24,23,20,21,16,16,19,18,11,19,8,9,17,14,14,11,9,9,11,10,10,12,11,9,5,7,7,3,8,5,6,6,1,1,4,2,2,4,2,2,4,1,2,,3,3 E87665,18,22,20,22,12,21,30,21,28,29,27,32,25,38,31,18,33,29,41,17,30,34,44,43,62,51,78,70,71,74,59,73,70,54,55,55,61,41,58,41,54,55,44,44,53,50,53,51,46,51,51,54,51,59,56,59,47,49,43,52,45,55,37,33,54,42,30,29,28,37,40,28,30,33,23,25,30,19,33,18,21,21,16,12,20,9,16,8,10,7,12,9,5,7,4,15 E87677,3,4,5,7,6,8,9,4,3,8,3,2,6,1,5,8,7,15,265,533,663,633,955,1035,1121,303,258,244,171,126,93,64,70,34,37,31,32,25,28,21,11,11,16,14,9,13,16,14,14,10,13,6,19,11,22,5,17,9,12,20,8,8,7,6,9,9,4,9,12,7,4,6,6,5,12,5,3,4,5,7,9,2,6,5,2,2,8,5,6,3,5,5,,1,2,2 E87681,47,65,41,54,57,56,49,56,60,75,49,55,49,55,42,35,53,40,48,47,42,52,79,84,97,142,171,170,211,200,205,224,210,233,197,200,213,175,187,161,166,151,155,127,134,126,131,98,88,75,79,86,84,76,68,72,70,70,61,58,72,66,50,48,53,48,38,50,49,32,43,28,44,33,32,43,38,35,34,28,18,18,28,14,22,11,19,12,12,15,8,13,4,9,7,12 E87701,12,15,21,25,18,33,31,46,35,34,41,40,39,47,41,40,45,36,44,42,40,46,36,53,72,76,60,73,53,59,57,52,66,71,60,66,70,66,58,74,66,62,68,85,80,65,65,64,81,77,69,56,64,60,65,51,71,58,54,56,58,56,57,53,47,52,47,45,42,47,47,42,42,44,50,43,41,42,48,39,38,30,25,21,22,25,19,14,16,11,6,8,6,8,4,16 E87702,13,10,7,6,11,12,8,6,8,11,15,6,8,9,12,12,9,6,17,10,12,14,22,18,23,31,36,28,36,42,36,38,38,36,33,30,37,30,31,32,32,25,17,19,25,29,20,20,20,22,24,25,20,32,17,19,15,27,16,13,30,22,23,19,12,21,12,8,17,16,13,13,6,11,10,9,14,10,12,7,7,5,5,4,5,9,4,4,5,2,2,1,4,,2,3 E87706,19,21,13,30,22,8,19,17,20,19,16,16,27,23,25,28,26,18,14,30,10,28,31,29,28,31,26,32,32,35,29,29,34,26,38,24,42,35,29,25,32,33,27,40,38,33,24,33,27,34,33,31,31,22,28,28,25,29,18,29,28,32,19,17,22,18,15,21,22,14,14,14,20,12,17,12,12,8,11,6,13,5,11,8,4,13,11,5,5,2,,2,1,,1,7 E87711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,,2,,,,,,,2,1,1,2,,1,,,,,,,,1,,1,,,4 E87714,1,5,1,8,8,6,3,4,8,9,10,9,19,8,10,10,16,14,12,33,40,51,53,67,90,77,77,80,74,79,97,84,74,68,80,57,47,54,46,52,35,42,35,52,38,50,42,34,34,41,57,44,50,43,43,37,48,35,25,22,27,28,25,23,21,16,24,14,11,16,9,11,8,11,10,5,4,4,4,5,5,5,2,5,1,,1,1,2,2,2,1,1,1,, E87715,13,16,21,16,21,19,24,25,37,51,58,37,43,40,48,49,41,46,44,36,34,40,52,47,42,45,46,50,57,48,86,56,78,75,61,72,59,75,77,68,62,63,93,67,65,77,71,70,87,71,64,67,62,59,51,42,49,47,68,44,40,40,42,41,39,34,31,39,23,32,22,32,28,23,31,25,21,19,18,24,10,15,17,15,11,8,8,3,6,3,11,4,5,,1,4 E87720,11,25,16,33,20,17,36,27,29,36,30,37,35,32,30,41,40,45,44,37,47,55,55,89,96,109,112,108,106,134,112,109,120,116,110,107,122,102,98,81,74,85,87,77,70,82,82,53,73,63,61,71,67,61,44,54,51,59,47,54,45,40,44,38,34,28,29,26,37,31,22,25,23,25,19,16,20,19,15,22,15,8,12,18,6,9,8,4,4,1,3,2,3,2,,4 E87722,23,18,15,26,23,17,18,16,17,20,23,18,19,23,15,21,18,8,19,33,17,31,52,78,93,83,107,107,97,103,90,96,99,91,116,88,88,92,69,64,82,57,53,59,60,41,47,51,36,45,28,43,50,28,30,27,30,37,34,27,27,17,26,19,26,19,9,16,16,10,8,9,16,5,12,8,15,12,9,13,8,9,5,3,8,7,4,2,3,4,,2,3,1,1,1 E87733,12,17,14,11,14,15,17,23,20,17,25,24,24,30,28,24,37,32,25,32,31,40,26,31,30,44,36,42,39,38,44,49,38,44,38,49,48,49,34,45,29,41,38,33,37,39,22,36,40,26,29,37,33,32,39,28,41,35,34,36,34,33,40,41,28,40,25,22,25,26,18,19,21,20,23,13,17,11,17,11,6,9,7,3,10,8,4,2,5,5,3,3,1,1,,4 E87737,15,12,15,21,22,23,19,26,25,21,25,27,25,39,35,31,35,35,44,58,76,80,95,78,154,145,117,139,136,145,140,127,160,136,122,102,101,104,80,83,71,69,69,61,57,59,56,51,51,56,57,60,64,59,63,52,46,59,50,46,30,59,40,35,43,39,45,31,28,45,28,27,28,27,14,31,28,20,20,37,16,13,10,15,10,12,15,10,8,8,7,2,,3,5,11 E87738,27,34,33,39,40,46,38,38,45,48,75,65,62,69,45,72,85,77,70,63,80,70,82,92,103,114,105,113,101,124,143,118,112,151,139,128,126,118,124,116,126,105,123,149,107,124,102,131,120,127,118,131,129,124,140,122,128,117,124,121,101,98,102,101,102,92,68,90,88,72,78,65,66,52,54,65,70,65,38,48,48,38,46,26,26,36,23,27,17,19,17,6,8,8,7,17 E87739,49,39,22,28,27,35,33,33,40,39,26,34,37,35,38,33,42,40,45,58,65,63,85,108,152,146,154,150,153,141,140,132,122,110,113,109,94,107,67,80,78,51,57,62,67,76,65,52,53,50,63,44,57,60,55,52,57,50,59,52,46,59,35,37,42,26,27,24,25,31,28,24,26,28,21,28,32,22,16,12,16,13,19,8,8,7,6,10,9,10,3,8,,1,,7 E87740,,,,,,,,,,,,,,,,,,,1,2,2,4,2,2,7,2,6,7,9,10,7,9,5,10,10,11,16,16,8,9,12,18,14,10,14,20,19,11,9,12,9,12,11,6,7,7,8,9,7,5,13,6,3,8,4,2,1,3,2,4,3,,3,3,,1,,,,1,,1,,,,,,,,,,1,,,, E87741,6,7,15,18,19,16,13,20,12,15,17,16,13,16,21,12,18,15,11,18,18,18,14,22,22,31,28,27,33,31,35,37,40,35,39,35,42,31,34,25,34,23,34,29,25,23,24,22,29,38,34,20,25,30,28,34,24,23,37,29,36,32,32,21,28,19,12,15,19,17,15,10,12,9,6,6,8,5,7,8,3,9,2,2,4,4,5,2,5,3,1,,3,1,1,1 E87742,19,14,8,11,12,16,12,15,9,15,12,11,9,8,17,18,9,14,11,12,24,13,13,24,30,21,34,31,24,56,38,41,31,31,28,25,33,36,19,21,21,23,25,26,13,18,15,15,22,21,17,13,15,17,11,15,18,20,18,19,20,16,22,13,11,10,10,13,18,14,9,12,9,9,12,7,6,9,7,8,3,4,7,3,3,3,4,1,4,4,5,2,1,3,1,2 E87745,27,26,28,22,33,20,34,24,24,34,18,37,24,27,35,38,37,27,22,29,29,53,62,76,97,97,138,138,133,135,165,149,123,132,117,123,111,95,91,92,77,100,73,79,65,70,69,49,62,75,67,59,59,53,62,70,52,57,61,47,56,46,34,49,42,39,30,33,26,29,31,28,16,22,27,27,20,23,29,11,15,14,9,19,10,13,12,11,7,5,4,4,3,4,3,5 E87746,15,17,11,20,17,23,16,15,19,21,12,12,16,18,12,23,24,36,27,19,20,21,35,43,67,68,75,63,73,67,75,61,72,76,67,65,57,48,53,52,36,36,50,42,37,33,35,29,17,27,27,24,16,21,20,20,34,28,28,18,16,20,15,19,13,19,15,17,7,10,2,14,12,7,10,8,10,6,9,2,4,1,2,4,3,6,3,1,2,,,2,2,,1,2 E87750,13,11,6,12,8,13,1,11,18,16,14,22,13,13,13,13,13,12,17,18,14,18,37,43,58,51,42,53,48,51,44,42,45,32,37,36,30,39,34,40,30,23,28,27,29,22,29,28,39,29,40,29,27,30,22,36,29,33,28,34,23,27,19,26,16,23,17,14,23,19,12,17,10,12,12,15,12,17,5,15,3,4,9,5,4,5,10,7,2,1,3,4,,1,3,7 E87751,9,12,10,6,8,8,8,9,10,11,15,8,12,12,22,9,15,10,20,15,10,17,10,15,13,12,14,20,15,16,13,20,14,12,16,14,18,14,18,14,7,9,13,8,14,10,11,16,12,18,13,21,19,14,13,13,19,12,15,13,17,18,9,7,14,17,15,7,12,7,11,13,15,9,13,7,9,5,5,6,3,5,3,5,5,3,6,2,4,1,1,,1,,, E87753,25,33,45,56,35,56,47,55,54,58,45,29,51,50,47,44,46,57,50,55,50,57,53,61,95,84,113,116,96,117,110,103,134,134,136,147,130,121,135,134,132,114,107,107,108,99,97,92,74,90,83,96,74,84,71,91,84,69,73,69,65,67,65,60,66,61,59,44,44,40,42,44,35,34,30,20,29,33,39,25,19,19,21,17,15,12,6,17,6,10,2,2,2,4,5,11 E87754,15,16,11,18,19,6,15,19,23,35,23,36,31,31,32,33,27,35,27,25,33,42,34,40,64,56,49,74,66,78,64,61,63,67,75,80,73,58,80,64,62,73,70,58,60,37,53,64,49,45,45,61,43,43,46,42,42,42,26,30,36,30,26,18,20,26,27,20,23,17,16,24,17,20,22,26,20,23,16,14,10,13,8,8,5,14,5,3,5,2,2,6,2,3,3,6 E87755,17,7,15,11,13,13,8,16,18,17,18,14,12,19,18,23,16,19,15,18,25,21,26,28,47,42,36,34,38,30,37,28,29,37,47,28,23,25,24,23,24,22,22,15,20,18,21,19,20,16,19,15,24,18,20,26,23,11,17,19,11,16,11,10,17,7,4,15,13,12,6,10,12,14,3,5,5,7,4,3,3,5,4,6,6,4,2,4,7,2,3,3,,,,6 E87756,12,13,10,15,14,17,14,16,21,12,14,22,30,21,16,24,14,28,24,20,16,22,17,19,15,22,23,22,21,24,26,23,15,16,25,20,29,38,18,24,26,20,21,24,23,29,22,16,29,22,16,20,19,15,24,16,16,11,20,11,18,27,18,18,13,12,11,14,13,11,13,12,6,7,7,8,10,14,7,5,1,7,3,3,,6,4,3,3,1,2,1,1,3,1,5 E87762,30,21,27,25,31,27,23,21,24,22,29,31,19,35,20,32,37,35,39,31,35,50,52,50,77,100,86,107,128,131,109,125,99,109,118,93,102,88,82,95,81,66,63,64,68,58,64,50,62,72,71,66,61,49,56,53,69,57,56,58,55,39,43,48,57,46,36,45,40,31,35,33,25,23,28,33,33,37,25,22,17,22,11,15,15,9,19,15,14,7,8,5,8,9,3,10 E87768,,,1,1,,1,,,,,,,,,,,1,27,525,1070,1426,1506,1869,2035,1263,374,324,293,243,174,150,149,129,82,90,72,58,57,38,28,34,29,21,21,13,16,10,12,9,6,11,7,5,6,9,5,8,7,4,5,3,4,2,2,,2,2,,,2,,,,1,,1,,,,,,,2,,,,,,,,1,,,,, E87772,,,,,,,,,,,,,,,,,,,1,1,2,5,1,4,4,1,2,4,1,1,3,1,2,7,3,,1,4,6,3,5,2,1,1,1,3,4,4,2,4,1,3,,,4,2,6,,2,1,2,3,4,,,,1,,2,,,1,,,,,,,,,,,,,,,,,,,,,,,, Y00200,16,20,18,15,24,19,24,15,19,20,23,18,10,18,17,9,8,13,12,19,14,11,18,23,44,54,59,72,90,73,55,56,94,82,67,62,59,59,66,55,59,40,29,41,45,28,28,33,25,35,31,21,29,22,31,25,19,23,24,26,19,18,24,19,22,14,16,5,15,15,9,14,12,5,9,8,6,11,8,3,7,4,1,5,3,2,6,2,3,4,2,1,,,1,1 Y00206,62,45,62,63,57,63,79,73,54,69,66,51,57,46,58,56,67,43,46,44,45,53,54,70,79,90,105,113,108,110,97,106,102,93,121,98,110,113,114,119,61,89,87,93,80,79,86,70,74,50,69,56,51,48,56,47,41,50,52,53,38,36,33,40,34,27,25,26,14,22,13,11,17,13,10,15,11,10,12,7,14,6,9,5,8,9,7,5,5,2,1,,7,2,5,1 Y00352,146,152,158,130,147,160,139,152,167,167,165,153,162,146,129,159,144,163,138,145,143,141,195,238,263,266,262,268,234,228,246,222,211,197,202,216,233,191,194,203,188,172,174,148,158,163,162,155,120,97,128,113,116,95,125,86,101,90,70,88,61,60,72,58,58,62,47,51,60,49,33,33,41,25,27,42,24,19,23,23,15,15,17,12,8,17,8,7,10,10,8,7,5,,3,7 Y00507,16,9,11,11,12,16,16,20,8,16,17,12,9,20,14,18,22,7,16,13,26,23,41,53,69,46,60,61,48,54,43,37,40,27,39,44,30,35,33,27,33,23,23,27,24,33,17,15,16,14,18,17,27,17,27,21,20,24,25,27,20,16,33,17,13,16,4,14,13,13,17,7,19,13,7,7,7,10,8,8,11,2,5,6,6,7,6,3,4,1,3,1,3,1,1,2 Y00902,18,5,10,11,18,11,12,14,15,19,9,19,15,25,20,20,22,20,28,25,23,22,30,27,25,30,29,31,28,24,29,27,29,34,22,33,28,36,32,26,31,19,28,25,20,22,27,22,22,27,22,28,29,16,20,31,24,28,16,20,14,21,19,20,15,10,9,10,7,7,10,5,5,8,5,7,7,6,4,4,4,3,2,6,4,5,4,1,,3,3,,1,1,,2 Y01011,35,43,50,65,55,63,53,74,65,62,45,50,52,69,74,62,54,60,66,43,42,53,49,72,80,100,106,121,101,129,115,141,138,128,135,112,126,140,136,119,116,130,109,125,110,92,88,91,91,79,66,69,63,64,70,69,62,62,48,51,39,51,45,45,41,38,49,40,21,35,30,20,32,13,23,26,11,19,15,18,14,12,17,8,9,6,14,7,4,4,8,8,7,4,2,5 Y01090,60,50,64,52,45,53,38,42,47,39,37,45,30,45,28,49,35,34,35,28,35,54,49,77,97,122,120,140,121,129,110,98,88,78,93,93,71,69,66,63,53,56,63,54,56,49,52,35,41,40,23,30,35,32,30,33,28,28,21,22,24,33,27,32,22,18,22,17,14,22,18,15,9,12,7,11,14,7,10,8,6,6,7,9,7,12,5,8,6,2,5,4,2,,1,3 Y01221,13,15,18,14,12,10,12,17,16,14,16,12,10,16,16,15,21,10,9,13,23,22,22,34,35,29,35,33,34,34,22,30,22,23,28,18,21,23,16,19,24,33,19,22,17,22,23,22,15,20,18,15,19,16,18,14,18,17,11,9,16,20,16,20,16,20,18,27,19,11,17,9,12,23,8,8,9,8,15,8,3,8,8,4,7,8,4,2,1,1,1,3,1,2,,1 Y02342,53,50,71,51,49,56,57,53,47,60,64,48,57,61,53,65,63,53,54,64,76,67,76,104,95,95,93,103,87,91,73,76,64,55,71,54,75,83,67,61,72,72,75,78,75,68,62,53,51,60,53,51,43,40,40,36,35,37,30,33,23,29,22,16,23,17,18,20,14,12,17,18,15,10,13,8,15,7,4,10,7,5,1,7,5,4,6,3,2,3,,1,2,2,,1 Y02589,43,43,41,28,36,28,40,40,42,38,35,60,47,51,44,38,46,34,38,39,51,44,87,107,133,158,170,176,157,173,166,164,168,192,182,145,142,117,121,102,106,82,72,66,80,66,68,64,59,65,47,56,57,53,43,49,47,24,32,29,18,34,31,30,25,29,32,22,23,28,17,10,13,14,15,8,7,9,12,8,4,7,6,2,8,8,7,2,4,2,1,2,2,1,,2 Y02671,56,92,93,95,118,129,121,141,142,150,120,156,139,150,133,113,107,98,99,87,84,97,102,87,114,129,130,134,132,146,143,141,151,162,168,169,197,203,185,177,176,171,175,166,169,140,145,139,129,117,111,101,103,104,88,98,74,78,59,63,75,48,58,57,60,59,50,37,27,39,41,30,30,25,24,22,27,15,14,15,14,13,7,9,5,6,6,8,5,2,4,2,1,3,1,4 Y02672,72,70,94,88,103,93,94,101,108,105,94,94,109,86,94,112,102,71,67,56,74,83,62,83,82,94,103,114,96,143,138,135,138,140,138,147,146,165,158,160,148,140,149,110,129,108,103,82,95,78,68,55,65,63,45,61,59,55,45,44,48,48,35,34,35,34,28,44,27,27,28,20,23,12,18,22,13,20,8,11,6,9,8,6,3,4,5,4,3,1,2,1,2,,,1 Y02692,102,98,88,100,89,103,86,110,66,86,82,77,64,81,64,51,65,62,68,58,71,102,114,165,211,244,206,256,222,224,194,196,192,184,153,163,166,144,145,138,145,144,102,102,76,79,85,83,86,65,78,56,72,69,67,60,64,59,63,43,51,43,32,38,19,33,31,30,27,19,21,18,10,12,16,9,5,16,5,1,2,2,8,5,4,4,5,,5,3,2,,3,2,, Y02842,41,43,33,33,36,32,36,34,37,43,32,38,38,35,44,45,45,33,40,46,58,45,84,104,120,131,136,116,109,126,106,98,126,74,119,102,87,83,97,72,71,77,80,64,52,68,59,47,54,58,50,43,44,56,42,45,43,42,36,46,27,39,25,29,16,31,30,23,21,16,23,15,17,13,17,9,19,8,5,8,9,6,11,6,5,4,4,2,3,4,3,1,1,,,2 Y02906,31,48,44,55,49,50,45,40,38,51,51,52,45,46,55,42,56,54,33,56,43,53,81,100,139,157,162,199,188,168,169,180,159,129,157,146,142,112,92,124,97,78,81,60,69,75,61,52,53,49,54,45,46,38,32,32,38,31,30,39,32,31,31,24,24,21,21,17,25,14,21,13,15,18,13,12,14,16,15,13,8,7,9,8,8,8,2,7,4,7,4,2,3,3,3,2 Y03441,31,31,38,30,37,29,24,26,38,22,39,29,31,31,21,18,17,19,21,30,30,66,99,122,168,151,211,219,184,158,166,145,171,166,140,144,140,130,99,103,92,97,63,60,68,59,53,59,44,50,59,31,34,48,36,35,36,32,25,27,39,29,33,27,14,19,22,22,19,17,12,18,15,8,9,13,8,9,10,5,7,3,4,7,4,3,1,4,4,2,1,4,,1,, Y03528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, Y04225,,,,,,,,,,,,,,,,,,,,,,,,1,1,,,,,,,1,1,,1,,,1,,,,1,,1,1,1,1,,2,2,2,,4,2,1,3,2,4,4,2,2,10,8,6,6,6,4,7,6,11,8,11,9,9,6,10,16,16,18,25,15,22,30,22,20,29,27,24,31,29,21,21,26,22,15,69 Y05080,13,10,18,20,17,20,15,11,9,14,14,10,15,12,7,10,17,11,14,15,18,18,18,25,23,37,43,43,39,26,46,26,32,24,33,26,24,27,21,32,27,19,23,17,12,12,24,15,13,15,9,23,17,9,17,14,7,12,9,12,12,6,10,17,10,10,12,17,6,11,8,14,7,10,4,5,7,6,2,4,5,2,1,3,5,2,3,4,,1,4,2,,1,1,3 Y06826,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 L85001,67.0,61.0,65.0,69.0,68.0,74.0,88.0,81.0,89.0,95.0,84.0,103.0,94.0,117.0,113.0,136.0,139.0,146.0,140.0,111.0,81.0,81.0,70.0,88.0,75.0,99.0,93.0,105.0,119.0,107.0,90.0,112.0,133.0,129.0,124.0,115.0,128.0,124.0,123.0,114.0,114.0,103.0,106.0,114.0,98.0,114.0,114.0,102.0,103.0,126.0,97.0,99.0,107.0,120.0,126.0,124.0,124.0,107.0,103.0,115.0,99.0,103.0,105.0,98.0,102.0,100.0,88.0,92.0,108.0,85.0,98.0,106.0,103.0,108.0,92.0,101.0,88.0,92.0,100.0,79.0,77.0,64.0,71.0,61.0,44.0,52.0,45.0,36.0,35.0,36.0,30.0,30.0,23.0,11.0,18.0,45.0 L85002,33.0,37.0,46.0,43.0,30.0,41.0,55.0,45.0,51.0,46.0,42.0,46.0,59.0,66.0,65.0,78.0,79.0,104.0,57.0,63.0,64.0,50.0,45.0,47.0,35.0,58.0,47.0,49.0,62.0,51.0,50.0,42.0,62.0,65.0,56.0,78.0,58.0,61.0,51.0,68.0,68.0,62.0,61.0,64.0,54.0,58.0,67.0,60.0,70.0,65.0,87.0,81.0,79.0,88.0,77.0,87.0,79.0,90.0,102.0,101.0,96.0,85.0,99.0,112.0,83.0,84.0,90.0,99.0,76.0,75.0,74.0,78.0,80.0,92.0,67.0,75.0,90.0,112.0,87.0,85.0,81.0,60.0,78.0,38.0,61.0,66.0,46.0,48.0,56.0,38.0,39.0,30.0,27.0,16.0,18.0,40.0 L85003,12.0,15.0,15.0,13.0,10.0,12.0,10.0,9.0,17.0,10.0,15.0,18.0,11.0,15.0,18.0,21.0,24.0,16.0,12.0,17.0,6.0,13.0,7.0,16.0,19.0,14.0,9.0,9.0,13.0,18.0,13.0,20.0,16.0,26.0,19.0,17.0,15.0,11.0,14.0,14.0,20.0,16.0,20.0,15.0,17.0,22.0,17.0,12.0,18.0,18.0,20.0,21.0,19.0,28.0,25.0,33.0,33.0,31.0,36.0,37.0,41.0,43.0,42.0,46.0,45.0,47.0,46.0,47.0,51.0,33.0,33.0,41.0,25.0,30.0,32.0,31.0,34.0,44.0,29.0,23.0,27.0,20.0,15.0,20.0,17.0,15.0,12.0,11.0,10.0,11.0,8.0,8.0,7.0,4.0,3.0,10.0 L85004,30.0,42.0,43.0,45.0,49.0,49.0,48.0,69.0,51.0,55.0,69.0,52.0,67.0,61.0,62.0,62.0,58.0,64.0,53.0,51.0,42.0,57.0,46.0,44.0,38.0,60.0,50.0,64.0,47.0,55.0,66.0,51.0,65.0,64.0,63.0,67.0,66.0,57.0,58.0,58.0,64.0,60.0,67.0,53.0,77.0,78.0,68.0,64.0,49.0,70.0,72.0,71.0,78.0,86.0,102.0,104.0,90.0,115.0,98.0,95.0,98.0,113.0,119.0,92.0,87.0,98.0,77.0,105.0,93.0,80.0,85.0,105.0,92.0,80.0,94.0,93.0,105.0,105.0,103.0,68.0,86.0,68.0,85.0,67.0,56.0,64.0,43.0,37.0,46.0,34.0,26.0,17.0,17.0,14.0,13.0,36.0 L85006,33.0,55.0,48.0,54.0,62.0,60.0,67.0,60.0,63.0,64.0,50.0,56.0,58.0,65.0,58.0,61.0,54.0,63.0,64.0,48.0,62.0,47.0,50.0,53.0,56.0,60.0,52.0,63.0,59.0,63.0,55.0,76.0,65.0,65.0,76.0,91.0,70.0,61.0,83.0,73.0,74.0,69.0,79.0,59.0,81.0,82.0,63.0,59.0,53.0,60.0,71.0,64.0,87.0,83.0,78.0,78.0,83.0,59.0,77.0,69.0,92.0,61.0,85.0,62.0,60.0,66.0,59.0,60.0,63.0,54.0,50.0,63.0,51.0,48.0,39.0,50.0,50.0,47.0,51.0,36.0,44.0,32.0,35.0,24.0,17.0,18.0,14.0,15.0,16.0,11.0,8.0,15.0,7.0,7.0,4.0,13.0 L85007,39.0,41.0,41.0,30.0,33.0,55.0,45.0,47.0,52.0,53.0,49.0,66.0,49.0,60.0,60.0,47.0,44.0,44.0,51.0,36.0,33.0,34.0,34.0,42.0,49.0,53.0,34.0,36.0,41.0,44.0,64.0,50.0,50.0,57.0,55.0,52.0,42.0,46.0,61.0,55.0,67.0,36.0,63.0,48.0,54.0,55.0,47.0,57.0,48.0,50.0,64.0,60.0,62.0,71.0,65.0,97.0,87.0,65.0,83.0,75.0,90.0,82.0,76.0,98.0,79.0,75.0,82.0,92.0,97.0,61.0,86.0,73.0,81.0,82.0,83.0,77.0,70.0,83.0,110.0,69.0,75.0,66.0,51.0,35.0,41.0,46.0,31.0,44.0,33.0,26.0,22.0,17.0,15.0,20.0,16.0,22.0 L85008,87.0,132.0,127.0,148.0,134.0,152.0,160.0,158.0,167.0,193.0,159.0,180.0,181.0,169.0,167.0,184.0,166.0,167.0,146.0,136.0,117.0,125.0,110.0,119.0,117.0,129.0,152.0,143.0,174.0,167.0,181.0,171.0,168.0,190.0,189.0,222.0,219.0,207.0,192.0,188.0,199.0,232.0,189.0,181.0,171.0,202.0,175.0,191.0,172.0,162.0,158.0,214.0,201.0,229.0,231.0,189.0,210.0,213.0,223.0,208.0,253.0,196.0,191.0,193.0,177.0,166.0,179.0,171.0,156.0,149.0,178.0,179.0,146.0,172.0,145.0,161.0,130.0,155.0,157.0,119.0,119.0,98.0,115.0,83.0,77.0,72.0,67.0,58.0,52.0,52.0,42.0,44.0,37.0,29.0,18.0,52.0 L85009,40.0,37.0,34.0,49.0,33.0,36.0,51.0,44.0,51.0,38.0,47.0,39.0,57.0,63.0,51.0,45.0,60.0,35.0,49.0,37.0,33.0,35.0,39.0,40.0,42.0,40.0,36.0,51.0,46.0,41.0,43.0,49.0,59.0,59.0,58.0,53.0,61.0,57.0,51.0,49.0,33.0,51.0,58.0,44.0,46.0,53.0,58.0,38.0,53.0,52.0,48.0,46.0,54.0,74.0,88.0,62.0,73.0,88.0,81.0,84.0,97.0,105.0,96.0,117.0,98.0,109.0,89.0,104.0,89.0,91.0,97.0,89.0,108.0,92.0,83.0,101.0,75.0,97.0,104.0,79.0,82.0,62.0,67.0,54.0,49.0,38.0,37.0,33.0,28.0,30.0,19.0,23.0,15.0,14.0,6.0,20.0 L85010,45.0,46.0,55.0,45.0,58.0,61.0,53.0,66.0,59.0,76.0,58.0,67.0,62.0,87.0,79.0,94.0,59.0,64.0,68.0,67.0,55.0,70.0,55.0,71.0,67.0,69.0,69.0,68.0,82.0,79.0,75.0,104.0,83.0,74.0,80.0,75.0,75.0,84.0,93.0,93.0,79.0,66.0,64.0,56.0,81.0,71.0,77.0,59.0,72.0,74.0,77.0,77.0,92.0,80.0,104.0,99.0,104.0,74.0,85.0,106.0,111.0,102.0,93.0,104.0,102.0,78.0,80.0,89.0,72.0,91.0,72.0,81.0,84.0,74.0,74.0,102.0,96.0,82.0,91.0,59.0,86.0,60.0,67.0,65.0,42.0,40.0,31.0,42.0,28.0,33.0,20.0,25.0,13.0,15.0,10.0,28.0 L85011,27.0,44.0,40.0,36.0,30.0,37.0,29.0,42.0,45.0,34.0,39.0,42.0,35.0,46.0,57.0,60.0,55.0,51.0,40.0,28.0,28.0,32.0,35.0,31.0,42.0,36.0,34.0,28.0,39.0,37.0,42.0,31.0,41.0,33.0,45.0,35.0,44.0,46.0,44.0,32.0,34.0,54.0,55.0,49.0,53.0,48.0,57.0,42.0,51.0,55.0,55.0,54.0,67.0,63.0,66.0,73.0,72.0,61.0,70.0,73.0,66.0,58.0,70.0,68.0,61.0,45.0,55.0,54.0,52.0,52.0,46.0,49.0,55.0,42.0,52.0,67.0,57.0,79.0,60.0,42.0,50.0,58.0,52.0,30.0,31.0,30.0,27.0,34.0,18.0,21.0,15.0,12.0,16.0,14.0,12.0,28.0 L85012,84.0,58.0,83.0,75.0,87.0,62.0,74.0,86.0,73.0,88.0,92.0,94.0,96.0,96.0,79.0,84.0,90.0,85.0,67.0,87.0,69.0,65.0,87.0,67.0,81.0,81.0,80.0,89.0,81.0,88.0,104.0,113.0,90.0,97.0,89.0,103.0,108.0,99.0,104.0,99.0,112.0,105.0,94.0,100.0,101.0,98.0,90.0,82.0,96.0,90.0,103.0,97.0,103.0,116.0,131.0,112.0,125.0,121.0,100.0,137.0,104.0,125.0,103.0,116.0,115.0,109.0,90.0,106.0,105.0,91.0,99.0,103.0,99.0,102.0,106.0,92.0,115.0,107.0,113.0,81.0,81.0,82.0,68.0,36.0,59.0,59.0,48.0,45.0,25.0,21.0,34.0,18.0,16.0,24.0,18.0,33.0 L85013,18.0,14.0,16.0,21.0,12.0,15.0,12.0,17.0,17.0,10.0,25.0,23.0,24.0,24.0,28.0,27.0,28.0,13.0,10.0,20.0,11.0,19.0,16.0,10.0,14.0,15.0,21.0,24.0,16.0,11.0,23.0,15.0,22.0,17.0,23.0,22.0,17.0,24.0,16.0,23.0,20.0,31.0,13.0,21.0,30.0,29.0,22.0,23.0,17.0,19.0,21.0,21.0,18.0,28.0,47.0,21.0,32.0,27.0,38.0,38.0,48.0,33.0,41.0,39.0,34.0,33.0,33.0,31.0,37.0,39.0,18.0,31.0,24.0,26.0,32.0,34.0,35.0,34.0,26.0,33.0,26.0,21.0,17.0,16.0,14.0,12.0,13.0,9.0,9.0,16.0,9.0,5.0,6.0,2.0,1.0,16.0 L85014,55.0,53.0,63.0,53.0,69.0,76.0,51.0,74.0,73.0,101.0,85.0,83.0,87.0,79.0,87.0,79.0,81.0,71.0,79.0,63.0,57.0,70.0,61.0,70.0,67.0,75.0,83.0,81.0,75.0,98.0,103.0,106.0,85.0,117.0,99.0,112.0,107.0,102.0,99.0,112.0,102.0,99.0,101.0,92.0,101.0,87.0,82.0,69.0,85.0,82.0,75.0,76.0,69.0,77.0,73.0,82.0,87.0,74.0,82.0,82.0,97.0,79.0,78.0,66.0,73.0,67.0,67.0,70.0,62.0,73.0,64.0,55.0,54.0,43.0,51.0,55.0,41.0,53.0,49.0,44.0,35.0,31.0,24.0,28.0,29.0,21.0,28.0,25.0,15.0,17.0,19.0,18.0,13.0,7.0,11.0,22.0 L85015,75.0,69.0,65.0,73.0,92.0,101.0,77.0,78.0,90.0,76.0,96.0,96.0,98.0,89.0,77.0,92.0,91.0,91.0,87.0,71.0,83.0,80.0,77.0,77.0,91.0,104.0,92.0,118.0,108.0,112.0,112.0,128.0,104.0,131.0,111.0,109.0,112.0,104.0,107.0,111.0,95.0,92.0,91.0,91.0,95.0,81.0,84.0,62.0,81.0,103.0,109.0,100.0,95.0,119.0,103.0,104.0,111.0,95.0,114.0,89.0,104.0,133.0,101.0,111.0,81.0,93.0,89.0,69.0,72.0,74.0,81.0,71.0,74.0,73.0,80.0,80.0,95.0,90.0,88.0,60.0,68.0,49.0,64.0,49.0,28.0,33.0,29.0,31.0,24.0,26.0,26.0,21.0,21.0,14.0,12.0,27.0 L85016,34.0,34.0,40.0,50.0,46.0,43.0,36.0,63.0,65.0,63.0,86.0,74.0,64.0,66.0,69.0,74.0,72.0,75.0,65.0,61.0,59.0,48.0,45.0,44.0,75.0,60.0,67.0,64.0,54.0,65.0,56.0,57.0,64.0,63.0,65.0,68.0,63.0,61.0,74.0,68.0,79.0,82.0,69.0,64.0,69.0,71.0,72.0,68.0,80.0,70.0,74.0,89.0,106.0,81.0,110.0,95.0,121.0,123.0,122.0,124.0,135.0,137.0,117.0,131.0,129.0,107.0,136.0,115.0,118.0,122.0,143.0,128.0,106.0,125.0,120.0,110.0,117.0,136.0,126.0,103.0,120.0,99.0,97.0,65.0,79.0,70.0,55.0,43.0,45.0,38.0,30.0,39.0,29.0,25.0,17.0,50.0 L85017,45.0,48.0,41.0,43.0,48.0,58.0,39.0,47.0,52.0,44.0,50.0,54.0,51.0,55.0,56.0,59.0,55.0,59.0,52.0,52.0,50.0,66.0,46.0,49.0,63.0,60.0,74.0,65.0,71.0,81.0,81.0,62.0,71.0,78.0,75.0,75.0,65.0,76.0,92.0,64.0,70.0,64.0,49.0,59.0,60.0,58.0,79.0,50.0,67.0,61.0,75.0,71.0,59.0,73.0,78.0,64.0,59.0,70.0,70.0,59.0,63.0,67.0,63.0,61.0,60.0,56.0,61.0,61.0,55.0,51.0,49.0,52.0,63.0,60.0,63.0,46.0,62.0,71.0,70.0,43.0,59.0,42.0,49.0,36.0,29.0,32.0,26.0,30.0,23.0,25.0,15.0,23.0,12.0,9.0,14.0,37.0 L85018,13.0,22.0,16.0,19.0,16.0,24.0,20.0,17.0,17.0,22.0,22.0,26.0,22.0,30.0,21.0,23.0,17.0,32.0,36.0,25.0,27.0,22.0,20.0,20.0,30.0,22.0,24.0,18.0,13.0,17.0,27.0,14.0,31.0,33.0,30.0,29.0,33.0,21.0,30.0,20.0,21.0,34.0,26.0,25.0,27.0,25.0,29.0,30.0,23.0,25.0,29.0,32.0,39.0,41.0,33.0,42.0,29.0,39.0,35.0,35.0,46.0,57.0,50.0,51.0,50.0,27.0,36.0,34.0,50.0,39.0,35.0,40.0,44.0,33.0,24.0,42.0,29.0,34.0,46.0,31.0,30.0,21.0,20.0,22.0,21.0,25.0,17.0,12.0,9.0,8.0,5.0,8.0,8.0,7.0,5.0,7.0 L85019,26.0,32.0,34.0,42.0,47.0,46.0,45.0,48.0,39.0,55.0,43.0,56.0,43.0,50.0,41.0,49.0,46.0,50.0,37.0,58.0,64.0,67.0,61.0,48.0,52.0,64.0,56.0,66.0,61.0,49.0,63.0,57.0,67.0,73.0,51.0,60.0,59.0,63.0,67.0,66.0,59.0,64.0,54.0,73.0,62.0,54.0,71.0,40.0,44.0,51.0,41.0,51.0,71.0,63.0,64.0,73.0,79.0,78.0,74.0,73.0,77.0,78.0,86.0,101.0,77.0,83.0,85.0,68.0,94.0,84.0,66.0,79.0,82.0,83.0,83.0,94.0,80.0,88.0,90.0,77.0,79.0,70.0,72.0,56.0,75.0,47.0,55.0,53.0,42.0,48.0,46.0,29.0,22.0,16.0,12.0,49.0 L85020,38.0,47.0,43.0,48.0,61.0,65.0,73.0,72.0,59.0,69.0,60.0,53.0,85.0,69.0,62.0,65.0,49.0,58.0,62.0,43.0,37.0,39.0,38.0,41.0,44.0,45.0,42.0,46.0,46.0,45.0,43.0,45.0,51.0,63.0,56.0,82.0,73.0,67.0,73.0,79.0,69.0,91.0,61.0,89.0,87.0,71.0,68.0,74.0,67.0,79.0,75.0,67.0,83.0,85.0,73.0,84.0,97.0,85.0,68.0,98.0,103.0,108.0,85.0,87.0,81.0,66.0,95.0,76.0,76.0,79.0,68.0,78.0,93.0,76.0,102.0,83.0,89.0,67.0,99.0,72.0,65.0,55.0,70.0,46.0,37.0,33.0,41.0,29.0,22.0,19.0,12.0,9.0,10.0,12.0,7.0,20.0 L85021,38.0,54.0,60.0,66.0,64.0,83.0,79.0,84.0,91.0,76.0,93.0,86.0,88.0,102.0,112.0,85.0,89.0,84.0,82.0,59.0,70.0,48.0,57.0,65.0,64.0,64.0,64.0,69.0,68.0,81.0,73.0,82.0,73.0,67.0,89.0,97.0,99.0,108.0,120.0,100.0,112.0,91.0,109.0,95.0,90.0,89.0,81.0,71.0,80.0,81.0,80.0,65.0,109.0,90.0,95.0,82.0,88.0,89.0,100.0,99.0,97.0,86.0,110.0,108.0,112.0,93.0,88.0,97.0,110.0,92.0,78.0,85.0,90.0,89.0,88.0,85.0,109.0,81.0,103.0,102.0,90.0,97.0,65.0,67.0,63.0,62.0,61.0,46.0,60.0,40.0,45.0,24.0,20.0,21.0,23.0,61.0 L85022,39.0,51.0,52.0,58.0,69.0,75.0,67.0,75.0,79.0,89.0,86.0,76.0,92.0,77.0,97.0,73.0,92.0,80.0,70.0,68.0,69.0,52.0,44.0,51.0,57.0,69.0,59.0,78.0,71.0,54.0,66.0,93.0,90.0,90.0,95.0,95.0,95.0,95.0,92.0,93.0,115.0,107.0,95.0,83.0,93.0,77.0,80.0,80.0,98.0,75.0,67.0,71.0,79.0,85.0,94.0,90.0,89.0,80.0,92.0,100.0,95.0,77.0,102.0,74.0,83.0,79.0,74.0,70.0,82.0,64.0,69.0,64.0,88.0,68.0,57.0,77.0,78.0,75.0,90.0,63.0,69.0,56.0,51.0,48.0,29.0,47.0,34.0,27.0,41.0,23.0,26.0,21.0,13.0,18.0,12.0,43.0 L85023,102.0,95.0,98.0,103.0,101.0,109.0,113.0,120.0,118.0,107.0,146.0,120.0,99.0,97.0,100.0,92.0,79.0,69.0,82.0,70.0,67.0,76.0,76.0,89.0,94.0,111.0,148.0,153.0,161.0,169.0,160.0,162.0,157.0,192.0,175.0,176.0,165.0,154.0,141.0,156.0,140.0,145.0,125.0,129.0,122.0,115.0,113.0,79.0,85.0,91.0,112.0,74.0,80.0,92.0,89.0,102.0,86.0,104.0,98.0,109.0,95.0,124.0,96.0,82.0,73.0,95.0,92.0,72.0,79.0,63.0,67.0,70.0,79.0,71.0,63.0,71.0,64.0,68.0,66.0,55.0,53.0,64.0,48.0,40.0,47.0,38.0,49.0,54.0,32.0,30.0,23.0,17.0,12.0,18.0,12.0,43.0 L85024,42.0,37.0,36.0,42.0,40.0,45.0,40.0,51.0,49.0,41.0,45.0,44.0,64.0,43.0,46.0,56.0,53.0,47.0,48.0,46.0,44.0,46.0,42.0,57.0,43.0,42.0,47.0,60.0,47.0,54.0,53.0,51.0,70.0,64.0,49.0,60.0,73.0,71.0,52.0,58.0,54.0,56.0,52.0,52.0,47.0,47.0,60.0,53.0,53.0,48.0,58.0,65.0,76.0,79.0,85.0,85.0,79.0,87.0,107.0,98.0,100.0,99.0,105.0,81.0,91.0,97.0,96.0,103.0,86.0,76.0,81.0,74.0,86.0,92.0,86.0,84.0,87.0,97.0,76.0,62.0,65.0,54.0,42.0,38.0,35.0,36.0,34.0,26.0,17.0,19.0,13.0,15.0,6.0,9.0,4.0,23.0 L85025,68.0,85.0,90.0,78.0,100.0,82.0,87.0,88.0,91.0,85.0,90.0,99.0,88.0,88.0,95.0,77.0,60.0,78.0,72.0,56.0,63.0,62.0,67.0,56.0,80.0,66.0,108.0,94.0,111.0,95.0,113.0,104.0,118.0,120.0,122.0,114.0,134.0,123.0,103.0,107.0,95.0,90.0,89.0,97.0,81.0,78.0,73.0,80.0,70.0,76.0,72.0,62.0,72.0,85.0,83.0,88.0,82.0,88.0,61.0,92.0,93.0,76.0,92.0,63.0,78.0,57.0,51.0,63.0,57.0,41.0,50.0,49.0,61.0,56.0,52.0,49.0,49.0,59.0,60.0,45.0,49.0,41.0,29.0,36.0,32.0,22.0,30.0,19.0,16.0,17.0,18.0,6.0,11.0,8.0,8.0,16.0 L85026,22.0,20.0,19.0,27.0,25.0,29.0,17.0,36.0,31.0,29.0,36.0,30.0,40.0,38.0,29.0,25.0,33.0,25.0,29.0,33.0,26.0,28.0,24.0,31.0,23.0,32.0,22.0,30.0,21.0,33.0,31.0,30.0,35.0,29.0,36.0,35.0,43.0,39.0,21.0,27.0,28.0,36.0,31.0,31.0,34.0,31.0,34.0,35.0,39.0,46.0,41.0,34.0,42.0,48.0,53.0,54.0,45.0,50.0,50.0,53.0,55.0,50.0,58.0,50.0,46.0,48.0,55.0,54.0,52.0,46.0,35.0,40.0,37.0,40.0,36.0,38.0,39.0,44.0,45.0,29.0,25.0,31.0,31.0,20.0,24.0,15.0,19.0,18.0,15.0,6.0,5.0,8.0,2.0,2.0,4.0,6.0 L85027,35.0,42.0,31.0,47.0,40.0,51.0,36.0,56.0,59.0,54.0,44.0,51.0,32.0,54.0,49.0,59.0,49.0,39.0,43.0,37.0,36.0,40.0,42.0,28.0,45.0,49.0,50.0,37.0,53.0,45.0,41.0,50.0,58.0,65.0,63.0,50.0,67.0,59.0,57.0,47.0,62.0,54.0,59.0,60.0,39.0,57.0,40.0,48.0,19.0,48.0,54.0,68.0,45.0,61.0,46.0,50.0,51.0,74.0,53.0,59.0,65.0,71.0,74.0,61.0,73.0,63.0,62.0,55.0,47.0,38.0,47.0,57.0,67.0,47.0,41.0,56.0,59.0,61.0,49.0,30.0,37.0,43.0,29.0,39.0,30.0,27.0,19.0,16.0,17.0,19.0,14.0,4.0,4.0,8.0,12.0,13.0 L85029,27.0,44.0,43.0,56.0,46.0,57.0,40.0,59.0,72.0,66.0,75.0,71.0,88.0,77.0,73.0,80.0,86.0,91.0,78.0,62.0,48.0,51.0,68.0,43.0,58.0,55.0,73.0,57.0,67.0,63.0,58.0,61.0,60.0,75.0,70.0,82.0,67.0,83.0,74.0,75.0,89.0,83.0,69.0,61.0,88.0,84.0,80.0,90.0,77.0,72.0,94.0,87.0,97.0,112.0,98.0,105.0,104.0,91.0,78.0,93.0,96.0,117.0,88.0,89.0,97.0,80.0,97.0,80.0,79.0,83.0,71.0,99.0,69.0,86.0,71.0,78.0,79.0,94.0,79.0,63.0,54.0,61.0,57.0,59.0,37.0,39.0,37.0,43.0,39.0,29.0,28.0,24.0,20.0,20.0,10.0,25.0 L85030,57.0,78.0,69.0,75.0,92.0,86.0,98.0,91.0,112.0,88.0,108.0,98.0,107.0,95.0,107.0,94.0,112.0,103.0,93.0,88.0,80.0,78.0,82.0,75.0,76.0,71.0,96.0,105.0,83.0,87.0,102.0,108.0,115.0,105.0,88.0,128.0,95.0,109.0,89.0,123.0,115.0,114.0,95.0,88.0,119.0,111.0,89.0,109.0,91.0,93.0,112.0,103.0,125.0,112.0,139.0,146.0,134.0,128.0,135.0,126.0,152.0,136.0,155.0,140.0,141.0,134.0,126.0,126.0,117.0,107.0,135.0,129.0,104.0,118.0,144.0,102.0,147.0,154.0,135.0,88.0,93.0,103.0,83.0,90.0,68.0,54.0,69.0,47.0,55.0,28.0,35.0,24.0,23.0,18.0,13.0,49.0 L85031,22.0,31.0,39.0,34.0,32.0,30.0,48.0,36.0,40.0,36.0,31.0,39.0,39.0,43.0,42.0,33.0,46.0,32.0,36.0,40.0,27.0,22.0,27.0,28.0,34.0,38.0,19.0,34.0,33.0,35.0,46.0,38.0,37.0,37.0,46.0,37.0,48.0,42.0,37.0,44.0,43.0,50.0,40.0,50.0,54.0,34.0,34.0,29.0,41.0,34.0,41.0,40.0,44.0,49.0,46.0,46.0,57.0,53.0,62.0,67.0,56.0,54.0,60.0,73.0,53.0,55.0,70.0,62.0,58.0,43.0,64.0,53.0,65.0,53.0,64.0,46.0,51.0,84.0,76.0,49.0,61.0,41.0,38.0,33.0,26.0,19.0,15.0,18.0,16.0,15.0,6.0,8.0,8.0,5.0,1.0,10.0 L85032,9.0,11.0,13.0,23.0,21.0,11.0,20.0,23.0,23.0,28.0,25.0,18.0,29.0,39.0,32.0,57.0,55.0,79.0,63.0,52.0,40.0,26.0,29.0,26.0,21.0,22.0,14.0,20.0,17.0,20.0,23.0,16.0,19.0,31.0,34.0,21.0,23.0,32.0,20.0,24.0,29.0,28.0,25.0,32.0,28.0,24.0,33.0,43.0,27.0,24.0,42.0,30.0,38.0,36.0,53.0,35.0,44.0,45.0,48.0,52.0,36.0,52.0,49.0,42.0,44.0,40.0,36.0,22.0,29.0,32.0,30.0,26.0,28.0,26.0,28.0,27.0,30.0,34.0,24.0,16.0,25.0,24.0,17.0,14.0,14.0,24.0,10.0,8.0,8.0,7.0,3.0,4.0,5.0,3.0,2.0,6.0 L85033,41.0,58.0,51.0,42.0,40.0,58.0,52.0,53.0,57.0,64.0,65.0,72.0,73.0,74.0,73.0,77.0,72.0,69.0,62.0,39.0,44.0,47.0,32.0,56.0,60.0,52.0,52.0,57.0,73.0,59.0,51.0,73.0,66.0,64.0,57.0,82.0,67.0,68.0,64.0,67.0,65.0,57.0,63.0,70.0,68.0,63.0,67.0,88.0,66.0,81.0,103.0,85.0,97.0,93.0,106.0,106.0,116.0,106.0,129.0,145.0,89.0,134.0,128.0,123.0,114.0,103.0,110.0,111.0,98.0,126.0,118.0,120.0,96.0,120.0,106.0,136.0,130.0,111.0,123.0,91.0,91.0,78.0,72.0,67.0,65.0,53.0,46.0,50.0,30.0,33.0,26.0,22.0,17.0,12.0,12.0,31.0 L85034,25.0,28.0,30.0,24.0,42.0,36.0,38.0,43.0,46.0,46.0,46.0,35.0,32.0,42.0,45.0,47.0,40.0,52.0,44.0,34.0,42.0,35.0,34.0,30.0,32.0,42.0,36.0,35.0,33.0,26.0,41.0,36.0,41.0,33.0,37.0,53.0,42.0,51.0,52.0,48.0,61.0,37.0,38.0,44.0,39.0,47.0,56.0,45.0,44.0,43.0,48.0,47.0,66.0,77.0,64.0,73.0,65.0,64.0,63.0,69.0,76.0,58.0,62.0,67.0,60.0,67.0,75.0,61.0,68.0,64.0,71.0,52.0,58.0,60.0,59.0,73.0,60.0,60.0,74.0,60.0,51.0,56.0,42.0,47.0,36.0,26.0,31.0,24.0,24.0,18.0,15.0,22.0,14.0,7.0,9.0,27.0 L85035,79.0,97.0,90.0,98.0,84.0,93.0,81.0,90.0,99.0,98.0,105.0,112.0,108.0,112.0,110.0,105.0,101.0,116.0,98.0,85.0,75.0,100.0,91.0,86.0,94.0,100.0,94.0,134.0,118.0,118.0,145.0,153.0,133.0,138.0,111.0,131.0,129.0,114.0,119.0,114.0,121.0,122.0,109.0,113.0,119.0,98.0,103.0,110.0,93.0,102.0,95.0,89.0,92.0,103.0,124.0,102.0,136.0,115.0,94.0,116.0,106.0,98.0,107.0,90.0,100.0,105.0,92.0,86.0,92.0,71.0,92.0,91.0,75.0,81.0,75.0,73.0,92.0,83.0,74.0,57.0,61.0,61.0,45.0,49.0,39.0,47.0,30.0,31.0,29.0,17.0,24.0,22.0,17.0,13.0,9.0,18.0 L85036,16.0,23.0,32.0,23.0,19.0,20.0,26.0,20.0,32.0,40.0,29.0,33.0,32.0,32.0,39.0,46.0,39.0,38.0,34.0,39.0,23.0,26.0,23.0,24.0,35.0,24.0,22.0,22.0,23.0,24.0,28.0,33.0,31.0,27.0,36.0,33.0,32.0,27.0,36.0,27.0,33.0,33.0,38.0,36.0,50.0,42.0,25.0,36.0,37.0,47.0,41.0,39.0,45.0,52.0,50.0,48.0,42.0,43.0,52.0,40.0,51.0,44.0,50.0,48.0,45.0,45.0,41.0,53.0,36.0,47.0,42.0,49.0,50.0,39.0,42.0,43.0,35.0,39.0,44.0,37.0,28.0,23.0,25.0,17.0,16.0,13.0,14.0,9.0,11.0,13.0,8.0,5.0,4.0,3.0,7.0,29.0 L85037,13.0,8.0,18.0,16.0,14.0,15.0,14.0,24.0,17.0,15.0,21.0,18.0,17.0,19.0,30.0,22.0,31.0,29.0,25.0,16.0,14.0,15.0,21.0,18.0,17.0,13.0,10.0,11.0,17.0,13.0,11.0,21.0,12.0,15.0,22.0,11.0,19.0,25.0,18.0,22.0,25.0,13.0,23.0,20.0,24.0,24.0,30.0,20.0,24.0,25.0,29.0,26.0,24.0,38.0,30.0,41.0,37.0,40.0,52.0,40.0,30.0,34.0,31.0,28.0,40.0,40.0,30.0,30.0,30.0,26.0,31.0,36.0,34.0,27.0,38.0,39.0,28.0,43.0,28.0,28.0,28.0,18.0,26.0,21.0,9.0,15.0,14.0,11.0,9.0,9.0,8.0,7.0,3.0,3.0,3.0,9.0 L85038,23.0,14.0,27.0,30.0,27.0,26.0,21.0,27.0,30.0,22.0,32.0,26.0,37.0,28.0,33.0,42.0,31.0,38.0,40.0,25.0,28.0,19.0,37.0,21.0,32.0,21.0,31.0,29.0,34.0,15.0,31.0,20.0,29.0,20.0,46.0,25.0,38.0,36.0,21.0,30.0,35.0,46.0,35.0,31.0,36.0,37.0,37.0,44.0,32.0,31.0,39.0,42.0,51.0,62.0,54.0,49.0,63.0,61.0,57.0,52.0,57.0,63.0,82.0,61.0,56.0,54.0,45.0,66.0,64.0,64.0,48.0,51.0,38.0,55.0,41.0,46.0,41.0,42.0,54.0,39.0,44.0,41.0,36.0,29.0,24.0,16.0,18.0,20.0,23.0,13.0,18.0,7.0,9.0,11.0,7.0,13.0 L85039,35.0,49.0,42.0,59.0,50.0,52.0,47.0,56.0,57.0,63.0,68.0,68.0,98.0,104.0,142.0,142.0,150.0,203.0,143.0,59.0,62.0,47.0,43.0,59.0,51.0,60.0,66.0,59.0,60.0,62.0,79.0,71.0,85.0,52.0,73.0,84.0,75.0,74.0,69.0,75.0,63.0,75.0,82.0,80.0,87.0,83.0,82.0,72.0,96.0,71.0,75.0,89.0,83.0,89.0,103.0,110.0,90.0,105.0,108.0,108.0,90.0,84.0,95.0,110.0,106.0,111.0,103.0,91.0,76.0,93.0,83.0,98.0,90.0,88.0,68.0,83.0,87.0,93.0,82.0,50.0,73.0,49.0,56.0,52.0,45.0,37.0,35.0,27.0,31.0,20.0,15.0,13.0,16.0,10.0,5.0,27.0 L85040,33.0,27.0,19.0,38.0,30.0,33.0,31.0,46.0,36.0,42.0,43.0,42.0,37.0,48.0,30.0,29.0,41.0,38.0,33.0,34.0,32.0,37.0,31.0,30.0,24.0,36.0,31.0,34.0,32.0,38.0,27.0,39.0,27.0,47.0,38.0,44.0,51.0,37.0,53.0,31.0,37.0,31.0,37.0,38.0,48.0,43.0,39.0,35.0,50.0,39.0,40.0,42.0,42.0,57.0,55.0,65.0,49.0,57.0,49.0,68.0,60.0,58.0,46.0,64.0,52.0,59.0,45.0,48.0,55.0,40.0,40.0,56.0,41.0,43.0,55.0,38.0,48.0,53.0,50.0,38.0,41.0,31.0,37.0,26.0,20.0,24.0,32.0,22.0,24.0,17.0,14.0,18.0,8.0,11.0,4.0,23.0 L85042,61.0,82.0,79.0,63.0,63.0,76.0,82.0,88.0,80.0,69.0,84.0,93.0,89.0,108.0,98.0,96.0,110.0,97.0,106.0,92.0,75.0,82.0,76.0,92.0,73.0,90.0,102.0,105.0,105.0,112.0,108.0,105.0,116.0,133.0,110.0,111.0,97.0,99.0,107.0,111.0,87.0,90.0,90.0,106.0,101.0,83.0,88.0,85.0,80.0,93.0,99.0,83.0,104.0,101.0,88.0,111.0,118.0,108.0,101.0,106.0,99.0,98.0,90.0,79.0,85.0,79.0,66.0,78.0,80.0,64.0,77.0,72.0,68.0,84.0,67.0,54.0,72.0,85.0,68.0,44.0,64.0,63.0,51.0,42.0,20.0,36.0,31.0,34.0,22.0,16.0,11.0,15.0,12.0,9.0,8.0,21.0 L85043,30.0,48.0,60.0,44.0,47.0,56.0,72.0,50.0,53.0,63.0,61.0,66.0,79.0,73.0,72.0,63.0,58.0,54.0,60.0,56.0,52.0,45.0,40.0,45.0,42.0,52.0,61.0,69.0,58.0,69.0,67.0,74.0,64.0,92.0,60.0,73.0,88.0,78.0,83.0,58.0,71.0,79.0,65.0,63.0,70.0,82.0,66.0,42.0,62.0,74.0,62.0,63.0,56.0,67.0,87.0,88.0,81.0,93.0,91.0,87.0,71.0,102.0,87.0,65.0,60.0,79.0,58.0,71.0,63.0,53.0,54.0,56.0,54.0,58.0,50.0,60.0,68.0,72.0,67.0,45.0,51.0,44.0,34.0,38.0,33.0,31.0,23.0,31.0,29.0,17.0,11.0,23.0,7.0,11.0,7.0,17.0 L85044,13.0,11.0,11.0,16.0,18.0,23.0,18.0,25.0,20.0,25.0,19.0,31.0,36.0,40.0,21.0,30.0,23.0,28.0,26.0,23.0,17.0,24.0,20.0,32.0,20.0,27.0,24.0,23.0,18.0,24.0,23.0,37.0,21.0,19.0,34.0,19.0,26.0,22.0,28.0,17.0,28.0,20.0,32.0,24.0,46.0,16.0,28.0,23.0,26.0,38.0,30.0,54.0,33.0,38.0,46.0,44.0,49.0,49.0,63.0,63.0,66.0,66.0,77.0,76.0,58.0,63.0,55.0,51.0,46.0,45.0,50.0,44.0,37.0,42.0,43.0,42.0,59.0,60.0,71.0,42.0,44.0,36.0,36.0,18.0,29.0,21.0,26.0,15.0,16.0,11.0,14.0,15.0,11.0,5.0,1.0,16.0 L85046,19.0,24.0,28.0,25.0,21.0,24.0,36.0,44.0,24.0,36.0,39.0,32.0,48.0,34.0,37.0,30.0,34.0,33.0,42.0,29.0,35.0,19.0,21.0,24.0,30.0,25.0,24.0,28.0,27.0,25.0,41.0,41.0,28.0,27.0,33.0,43.0,43.0,32.0,32.0,35.0,37.0,27.0,40.0,34.0,39.0,36.0,36.0,36.0,25.0,42.0,36.0,44.0,47.0,52.0,44.0,44.0,44.0,50.0,50.0,50.0,59.0,48.0,40.0,40.0,39.0,31.0,50.0,33.0,40.0,29.0,31.0,42.0,29.0,48.0,41.0,28.0,42.0,26.0,38.0,28.0,31.0,28.0,24.0,20.0,20.0,15.0,13.0,9.0,10.0,3.0,6.0,8.0,3.0,4.0,4.0,6.0 L85047,16.0,18.0,11.0,23.0,12.0,18.0,31.0,24.0,28.0,27.0,24.0,25.0,23.0,34.0,34.0,24.0,30.0,37.0,27.0,27.0,19.0,26.0,19.0,22.0,24.0,20.0,26.0,29.0,31.0,25.0,31.0,39.0,27.0,33.0,43.0,21.0,45.0,35.0,36.0,47.0,35.0,40.0,40.0,35.0,43.0,51.0,34.0,40.0,31.0,37.0,50.0,32.0,44.0,63.0,52.0,64.0,54.0,55.0,76.0,62.0,55.0,63.0,61.0,52.0,49.0,54.0,38.0,51.0,53.0,40.0,40.0,40.0,42.0,34.0,37.0,31.0,37.0,50.0,30.0,28.0,15.0,23.0,26.0,13.0,15.0,11.0,4.0,12.0,10.0,5.0,8.0,10.0,5.0,4.0,7.0,9.0 L85048,30.0,27.0,33.0,27.0,20.0,22.0,35.0,46.0,27.0,35.0,49.0,31.0,43.0,38.0,33.0,52.0,52.0,36.0,37.0,36.0,26.0,24.0,34.0,32.0,27.0,42.0,45.0,36.0,42.0,31.0,34.0,44.0,44.0,37.0,40.0,40.0,44.0,41.0,48.0,34.0,45.0,48.0,48.0,37.0,44.0,36.0,38.0,31.0,38.0,32.0,39.0,43.0,39.0,41.0,54.0,39.0,43.0,37.0,42.0,38.0,32.0,44.0,45.0,35.0,40.0,37.0,41.0,26.0,25.0,42.0,35.0,27.0,38.0,28.0,28.0,26.0,28.0,25.0,35.0,20.0,17.0,8.0,19.0,11.0,12.0,15.0,17.0,9.0,7.0,8.0,3.0,2.0,5.0,3.0,4.0,7.0 L85050,24.0,24.0,30.0,21.0,21.0,28.0,30.0,33.0,29.0,44.0,39.0,30.0,37.0,35.0,42.0,44.0,49.0,58.0,53.0,28.0,28.0,28.0,26.0,29.0,24.0,41.0,31.0,28.0,34.0,24.0,31.0,49.0,27.0,44.0,34.0,36.0,46.0,31.0,51.0,35.0,29.0,37.0,39.0,46.0,34.0,35.0,35.0,26.0,28.0,38.0,48.0,43.0,50.0,43.0,47.0,47.0,40.0,39.0,51.0,53.0,44.0,50.0,52.0,57.0,53.0,51.0,56.0,39.0,36.0,43.0,49.0,43.0,45.0,43.0,46.0,40.0,51.0,37.0,51.0,26.0,33.0,35.0,25.0,22.0,26.0,23.0,17.0,18.0,21.0,17.0,16.0,13.0,14.0,12.0,8.0,23.0 L85051,32.0,36.0,43.0,36.0,35.0,40.0,35.0,39.0,33.0,44.0,41.0,41.0,39.0,44.0,46.0,50.0,40.0,30.0,39.0,42.0,40.0,41.0,30.0,29.0,48.0,45.0,48.0,43.0,52.0,61.0,38.0,52.0,57.0,59.0,66.0,59.0,50.0,63.0,41.0,38.0,56.0,64.0,37.0,50.0,29.0,37.0,35.0,36.0,38.0,40.0,41.0,47.0,40.0,55.0,49.0,47.0,51.0,47.0,56.0,54.0,40.0,49.0,45.0,40.0,33.0,40.0,36.0,34.0,28.0,16.0,20.0,37.0,25.0,30.0,27.0,31.0,28.0,31.0,25.0,18.0,16.0,21.0,18.0,21.0,13.0,15.0,9.0,10.0,19.0,12.0,5.0,5.0,7.0,3.0,8.0,11.0 L85052,19.0,31.0,40.0,28.0,33.0,26.0,39.0,23.0,26.0,38.0,38.0,37.0,33.0,53.0,43.0,48.0,63.0,74.0,58.0,32.0,43.0,59.0,41.0,28.0,35.0,37.0,48.0,46.0,32.0,37.0,51.0,46.0,48.0,43.0,50.0,55.0,48.0,48.0,45.0,48.0,44.0,45.0,35.0,52.0,54.0,47.0,45.0,47.0,36.0,35.0,41.0,52.0,49.0,71.0,57.0,56.0,59.0,49.0,65.0,65.0,66.0,71.0,60.0,72.0,54.0,47.0,44.0,65.0,50.0,58.0,56.0,39.0,52.0,42.0,57.0,49.0,54.0,43.0,60.0,43.0,54.0,41.0,38.0,38.0,24.0,19.0,19.0,22.0,28.0,23.0,14.0,18.0,7.0,7.0,8.0,23.0 L85053,20.0,26.0,18.0,25.0,45.0,29.0,37.0,23.0,30.0,39.0,27.0,34.0,37.0,34.0,28.0,27.0,31.0,27.0,24.0,29.0,22.0,19.0,27.0,15.0,21.0,35.0,30.0,38.0,39.0,31.0,38.0,42.0,39.0,40.0,42.0,40.0,42.0,34.0,41.0,45.0,37.0,36.0,33.0,43.0,34.0,48.0,45.0,30.0,35.0,37.0,40.0,29.0,47.0,42.0,55.0,56.0,40.0,49.0,50.0,50.0,55.0,52.0,35.0,50.0,46.0,32.0,43.0,37.0,50.0,41.0,36.0,31.0,46.0,45.0,31.0,41.0,45.0,45.0,22.0,33.0,19.0,27.0,27.0,19.0,20.0,16.0,8.0,13.0,9.0,11.0,6.0,4.0,9.0,8.0,5.0,9.0 L85054,22.0,27.0,34.0,27.0,23.0,30.0,36.0,43.0,36.0,35.0,42.0,39.0,50.0,37.0,40.0,36.0,53.0,36.0,46.0,37.0,32.0,37.0,44.0,21.0,40.0,33.0,38.0,36.0,38.0,36.0,28.0,45.0,47.0,49.0,48.0,49.0,47.0,43.0,41.0,57.0,34.0,32.0,36.0,38.0,55.0,42.0,39.0,56.0,50.0,48.0,48.0,41.0,45.0,42.0,56.0,63.0,70.0,76.0,65.0,80.0,79.0,77.0,57.0,74.0,74.0,84.0,58.0,62.0,73.0,69.0,73.0,74.0,74.0,70.0,65.0,60.0,76.0,82.0,69.0,48.0,52.0,49.0,54.0,47.0,30.0,28.0,37.0,32.0,23.0,18.0,16.0,11.0,11.0,11.0,7.0,19.0 L85055,23.0,26.0,30.0,35.0,22.0,34.0,30.0,48.0,43.0,52.0,50.0,52.0,49.0,47.0,55.0,57.0,53.0,64.0,46.0,52.0,45.0,38.0,48.0,44.0,51.0,46.0,38.0,37.0,35.0,25.0,34.0,37.0,35.0,47.0,38.0,45.0,58.0,34.0,44.0,44.0,41.0,46.0,45.0,47.0,50.0,55.0,44.0,57.0,53.0,53.0,61.0,61.0,67.0,74.0,84.0,76.0,89.0,87.0,96.0,87.0,88.0,79.0,86.0,68.0,73.0,77.0,78.0,65.0,62.0,61.0,61.0,55.0,64.0,59.0,61.0,56.0,54.0,75.0,53.0,53.0,44.0,43.0,42.0,28.0,22.0,21.0,28.0,20.0,20.0,14.0,18.0,7.0,10.0,9.0,2.0,9.0 L85056,24.0,29.0,44.0,39.0,39.0,42.0,37.0,28.0,36.0,46.0,44.0,39.0,39.0,40.0,45.0,38.0,26.0,35.0,46.0,28.0,32.0,31.0,37.0,44.0,40.0,41.0,45.0,49.0,43.0,39.0,45.0,48.0,44.0,51.0,62.0,52.0,54.0,49.0,40.0,51.0,52.0,35.0,57.0,56.0,40.0,44.0,42.0,33.0,30.0,38.0,51.0,37.0,59.0,46.0,45.0,43.0,60.0,64.0,52.0,58.0,54.0,56.0,52.0,47.0,61.0,42.0,43.0,44.0,27.0,37.0,45.0,35.0,32.0,32.0,31.0,48.0,33.0,41.0,30.0,24.0,17.0,28.0,27.0,23.0,14.0,19.0,11.0,18.0,8.0,8.0,12.0,7.0,5.0,5.0,4.0,8.0 L85061,21.0,21.0,16.0,17.0,18.0,13.0,30.0,24.0,20.0,24.0,12.0,16.0,25.0,16.0,32.0,25.0,21.0,25.0,7.0,21.0,17.0,11.0,25.0,27.0,24.0,22.0,30.0,24.0,28.0,22.0,30.0,24.0,24.0,27.0,25.0,30.0,22.0,38.0,17.0,16.0,24.0,20.0,23.0,23.0,25.0,25.0,18.0,18.0,20.0,31.0,26.0,18.0,28.0,32.0,22.0,32.0,36.0,47.0,22.0,34.0,40.0,27.0,28.0,41.0,35.0,33.0,31.0,38.0,30.0,20.0,24.0,40.0,22.0,17.0,20.0,29.0,29.0,26.0,21.0,21.0,17.0,15.0,18.0,13.0,13.0,7.0,12.0,9.0,8.0,9.0,13.0,8.0,5.0,5.0,4.0,13.0 L85062,21.0,24.0,35.0,32.0,43.0,34.0,29.0,48.0,46.0,34.0,32.0,36.0,42.0,36.0,40.0,31.0,50.0,43.0,33.0,32.0,25.0,23.0,23.0,31.0,31.0,29.0,26.0,35.0,33.0,43.0,52.0,48.0,47.0,53.0,50.0,60.0,44.0,47.0,59.0,44.0,42.0,35.0,46.0,33.0,39.0,38.0,29.0,36.0,35.0,25.0,43.0,40.0,40.0,44.0,53.0,49.0,33.0,48.0,37.0,47.0,43.0,47.0,44.0,40.0,41.0,36.0,35.0,39.0,39.0,37.0,42.0,30.0,31.0,28.0,34.0,19.0,23.0,27.0,33.0,25.0,26.0,13.0,17.0,23.0,13.0,10.0,12.0,9.0,9.0,4.0,8.0,6.0,7.0,4.0,2.0,11.0 L85064,48.0,56.0,51.0,67.0,73.0,62.0,74.0,93.0,69.0,87.0,82.0,73.0,77.0,77.0,71.0,77.0,56.0,70.0,53.0,50.0,53.0,45.0,45.0,37.0,67.0,77.0,80.0,110.0,87.0,102.0,115.0,136.0,118.0,113.0,123.0,122.0,130.0,124.0,107.0,99.0,104.0,88.0,86.0,78.0,74.0,71.0,55.0,56.0,54.0,73.0,61.0,59.0,55.0,60.0,60.0,69.0,54.0,66.0,66.0,53.0,53.0,58.0,49.0,48.0,46.0,41.0,46.0,41.0,28.0,40.0,39.0,43.0,37.0,21.0,22.0,26.0,34.0,33.0,22.0,18.0,15.0,14.0,11.0,10.0,7.0,13.0,7.0,7.0,7.0,4.0,3.0,4.0,6.0,1.0,1.0,4.0 L85065,20.0,14.0,13.0,23.0,17.0,26.0,23.0,33.0,23.0,29.0,35.0,21.0,19.0,32.0,23.0,37.0,22.0,27.0,30.0,20.0,26.0,16.0,17.0,26.0,26.0,23.0,26.0,30.0,25.0,22.0,24.0,18.0,27.0,18.0,33.0,29.0,28.0,33.0,34.0,42.0,43.0,40.0,23.0,38.0,37.0,38.0,25.0,26.0,28.0,31.0,38.0,33.0,47.0,49.0,52.0,68.0,65.0,76.0,67.0,86.0,85.0,95.0,89.0,99.0,78.0,82.0,95.0,95.0,80.0,83.0,70.0,74.0,78.0,87.0,86.0,81.0,77.0,107.0,84.0,53.0,70.0,51.0,51.0,42.0,36.0,29.0,44.0,27.0,23.0,22.0,23.0,24.0,6.0,14.0,14.0,22.0 L85066,44.0,28.0,34.0,40.0,53.0,23.0,50.0,46.0,47.0,55.0,46.0,45.0,30.0,35.0,39.0,52.0,30.0,42.0,45.0,43.0,27.0,42.0,32.0,33.0,30.0,39.0,39.0,37.0,45.0,41.0,48.0,51.0,53.0,56.0,50.0,61.0,52.0,57.0,47.0,48.0,46.0,27.0,46.0,37.0,42.0,30.0,43.0,42.0,42.0,54.0,46.0,32.0,62.0,59.0,54.0,48.0,56.0,67.0,63.0,73.0,69.0,71.0,78.0,61.0,43.0,61.0,49.0,62.0,52.0,39.0,48.0,55.0,46.0,46.0,43.0,51.0,48.0,51.0,45.0,41.0,49.0,34.0,40.0,22.0,21.0,33.0,27.0,24.0,16.0,19.0,16.0,10.0,12.0,8.0,5.0,27.0 L85601,6.0,6.0,3.0,9.0,13.0,14.0,14.0,10.0,23.0,12.0,15.0,16.0,17.0,18.0,17.0,18.0,22.0,17.0,20.0,18.0,11.0,16.0,17.0,14.0,12.0,13.0,13.0,19.0,14.0,11.0,15.0,13.0,18.0,17.0,16.0,15.0,15.0,15.0,17.0,10.0,8.0,12.0,16.0,13.0,19.0,15.0,15.0,14.0,20.0,25.0,24.0,19.0,24.0,28.0,37.0,29.0,34.0,30.0,18.0,39.0,46.0,28.0,41.0,31.0,35.0,36.0,30.0,28.0,18.0,41.0,31.0,36.0,21.0,21.0,30.0,17.0,35.0,26.0,18.0,16.0,17.0,18.0,19.0,17.0,16.0,11.0,10.0,8.0,10.0,7.0,6.0,1.0,6.0,4.0,3.0,12.0 L85607,23.0,28.0,29.0,44.0,40.0,37.0,38.0,44.0,41.0,41.0,33.0,41.0,47.0,38.0,47.0,39.0,49.0,41.0,26.0,36.0,25.0,34.0,29.0,25.0,24.0,35.0,36.0,41.0,49.0,35.0,54.0,53.0,42.0,45.0,49.0,54.0,56.0,41.0,43.0,46.0,47.0,39.0,39.0,55.0,39.0,34.0,37.0,27.0,28.0,37.0,35.0,31.0,33.0,30.0,34.0,29.0,28.0,31.0,29.0,36.0,30.0,29.0,36.0,30.0,19.0,19.0,17.0,13.0,19.0,16.0,14.0,15.0,19.0,25.0,11.0,14.0,14.0,7.0,14.0,10.0,9.0,5.0,5.0,2.0,6.0,2.0,1.0,5.0,3.0,2.0,2.0,1.0,1.0,,2.0,6.0 L85609,24.0,20.0,20.0,29.0,28.0,35.0,33.0,30.0,25.0,38.0,31.0,33.0,46.0,38.0,32.0,35.0,23.0,33.0,30.0,24.0,25.0,15.0,22.0,24.0,17.0,20.0,19.0,26.0,19.0,35.0,25.0,33.0,44.0,39.0,46.0,40.0,42.0,34.0,39.0,31.0,38.0,33.0,33.0,49.0,30.0,26.0,33.0,28.0,26.0,35.0,44.0,40.0,32.0,24.0,31.0,35.0,35.0,35.0,31.0,41.0,30.0,37.0,38.0,38.0,35.0,29.0,34.0,26.0,26.0,20.0,26.0,34.0,35.0,42.0,22.0,37.0,31.0,25.0,30.0,22.0,22.0,15.0,26.0,14.0,21.0,9.0,11.0,12.0,18.0,6.0,4.0,6.0,5.0,3.0,5.0,6.0 L85611,15.0,11.0,19.0,13.0,15.0,8.0,14.0,9.0,8.0,17.0,10.0,14.0,12.0,20.0,31.0,32.0,35.0,35.0,17.0,18.0,17.0,10.0,16.0,9.0,9.0,11.0,16.0,10.0,16.0,17.0,23.0,12.0,21.0,15.0,21.0,13.0,18.0,14.0,18.0,22.0,15.0,22.0,15.0,14.0,21.0,22.0,11.0,22.0,15.0,13.0,19.0,24.0,24.0,32.0,32.0,23.0,29.0,24.0,21.0,15.0,26.0,27.0,24.0,23.0,28.0,28.0,19.0,22.0,22.0,15.0,17.0,19.0,14.0,10.0,23.0,16.0,10.0,12.0,11.0,6.0,11.0,13.0,10.0,5.0,4.0,7.0,8.0,5.0,3.0,3.0,1.0,2.0,2.0,2.0,3.0,8.0 L85624,12.0,18.0,16.0,18.0,21.0,18.0,21.0,18.0,22.0,21.0,16.0,15.0,19.0,25.0,28.0,25.0,21.0,18.0,14.0,11.0,25.0,12.0,17.0,19.0,19.0,14.0,14.0,14.0,18.0,9.0,15.0,22.0,27.0,20.0,32.0,32.0,29.0,22.0,24.0,22.0,27.0,31.0,31.0,23.0,29.0,18.0,20.0,28.0,28.0,24.0,24.0,26.0,25.0,36.0,34.0,27.0,53.0,43.0,36.0,43.0,49.0,42.0,55.0,54.0,42.0,32.0,35.0,52.0,40.0,29.0,29.0,41.0,41.0,28.0,48.0,40.0,36.0,39.0,46.0,31.0,31.0,29.0,21.0,19.0,23.0,20.0,7.0,13.0,10.0,9.0,9.0,12.0,4.0,9.0,10.0,21.0 Y01163,9.0,8.0,21.0,10.0,18.0,14.0,19.0,15.0,17.0,14.0,18.0,14.0,22.0,21.0,29.0,20.0,19.0,22.0,12.0,16.0,10.0,7.0,13.0,12.0,14.0,11.0,23.0,10.0,14.0,13.0,20.0,14.0,21.0,18.0,21.0,26.0,24.0,16.0,28.0,17.0,27.0,24.0,25.0,17.0,25.0,16.0,23.0,20.0,22.0,18.0,33.0,28.0,25.0,29.0,28.0,35.0,39.0,42.0,41.0,38.0,28.0,40.0,42.0,35.0,36.0,30.0,37.0,22.0,24.0,27.0,21.0,32.0,23.0,19.0,26.0,36.0,34.0,38.0,32.0,22.0,27.0,23.0,12.0,19.0,15.0,14.0,10.0,7.0,15.0,11.0,10.0,1.0,8.0,2.0,5.0,8.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 C82040,32.0,44.0,30.0,37.0,27.0,28.0,40.0,28.0,24.0,34.0,38.0,40.0,35.0,37.0,50.0,27.0,36.0,36.0,74.0,151.0,160.0,137.0,174.0,194.0,109.0,68.0,63.0,64.0,53.0,61.0,48.0,64.0,44.0,51.0,55.0,52.0,54.0,57.0,46.0,44.0,51.0,45.0,40.0,34.0,53.0,48.0,43.0,41.0,45.0,40.0,42.0,52.0,53.0,53.0,72.0,62.0,49.0,67.0,53.0,58.0,51.0,58.0,75.0,68.0,60.0,61.0,52.0,59.0,47.0,36.0,29.0,50.0,41.0,27.0,44.0,45.0,44.0,39.0,63.0,44.0,31.0,26.0,20.0,29.0,11.0,22.0,19.0,21.0,20.0,6.0,15.0,8.0,10.0,3.0,6.0,12.0 C84001,141.0,144.0,160.0,169.0,186.0,184.0,170.0,201.0,218.0,193.0,201.0,189.0,213.0,193.0,212.0,195.0,174.0,189.0,164.0,127.0,126.0,132.0,154.0,142.0,142.0,143.0,158.0,185.0,185.0,210.0,216.0,213.0,223.0,227.0,225.0,236.0,241.0,219.0,231.0,206.0,221.0,210.0,192.0,213.0,204.0,203.0,181.0,190.0,183.0,201.0,182.0,197.0,207.0,204.0,222.0,199.0,220.0,242.0,242.0,207.0,234.0,229.0,207.0,196.0,184.0,159.0,192.0,165.0,167.0,149.0,164.0,152.0,148.0,140.0,140.0,145.0,150.0,156.0,136.0,110.0,126.0,104.0,95.0,77.0,62.0,81.0,62.0,55.0,55.0,41.0,45.0,31.0,27.0,12.0,9.0,41.0 C84004,36.0,44.0,55.0,47.0,37.0,64.0,64.0,66.0,73.0,70.0,52.0,75.0,57.0,71.0,80.0,72.0,62.0,57.0,71.0,58.0,45.0,40.0,49.0,47.0,60.0,55.0,53.0,55.0,56.0,72.0,67.0,73.0,77.0,78.0,72.0,81.0,70.0,78.0,90.0,64.0,68.0,72.0,68.0,68.0,59.0,64.0,62.0,59.0,51.0,47.0,59.0,42.0,71.0,51.0,59.0,48.0,61.0,69.0,70.0,51.0,74.0,67.0,73.0,63.0,35.0,45.0,50.0,46.0,42.0,29.0,35.0,32.0,28.0,27.0,33.0,28.0,33.0,29.0,29.0,34.0,27.0,13.0,25.0,21.0,16.0,13.0,17.0,19.0,4.0,7.0,12.0,5.0,5.0,2.0,3.0,6.0 C84005,91.0,107.0,132.0,122.0,127.0,143.0,132.0,151.0,149.0,172.0,146.0,132.0,148.0,154.0,157.0,143.0,154.0,150.0,140.0,96.0,113.0,124.0,115.0,118.0,136.0,119.0,142.0,125.0,137.0,153.0,145.0,143.0,163.0,161.0,205.0,150.0,176.0,198.0,178.0,187.0,186.0,163.0,164.0,166.0,175.0,156.0,179.0,161.0,174.0,168.0,154.0,202.0,172.0,175.0,177.0,201.0,188.0,203.0,204.0,188.0,202.0,185.0,184.0,187.0,200.0,190.0,173.0,195.0,150.0,172.0,185.0,162.0,176.0,141.0,162.0,193.0,154.0,215.0,196.0,172.0,174.0,140.0,120.0,105.0,90.0,96.0,94.0,83.0,68.0,61.0,50.0,37.0,30.0,23.0,24.0,67.0 C84008,22.0,25.0,34.0,22.0,26.0,15.0,21.0,30.0,25.0,32.0,32.0,29.0,22.0,44.0,29.0,32.0,42.0,33.0,36.0,24.0,27.0,19.0,32.0,29.0,30.0,20.0,39.0,43.0,24.0,30.0,31.0,38.0,36.0,32.0,21.0,30.0,30.0,48.0,35.0,26.0,30.0,34.0,41.0,33.0,37.0,36.0,58.0,31.0,35.0,33.0,38.0,33.0,48.0,45.0,41.0,38.0,46.0,53.0,41.0,52.0,60.0,48.0,57.0,45.0,49.0,36.0,46.0,31.0,44.0,37.0,39.0,36.0,33.0,30.0,35.0,47.0,47.0,36.0,36.0,32.0,26.0,37.0,19.0,24.0,23.0,16.0,15.0,17.0,13.0,5.0,10.0,3.0,3.0,4.0,6.0,11.0 C84009,55.0,45.0,45.0,49.0,56.0,60.0,66.0,73.0,90.0,83.0,74.0,92.0,83.0,89.0,84.0,71.0,72.0,86.0,86.0,56.0,66.0,61.0,65.0,81.0,63.0,73.0,86.0,64.0,80.0,93.0,70.0,96.0,110.0,110.0,86.0,117.0,93.0,95.0,94.0,108.0,92.0,92.0,90.0,90.0,117.0,99.0,82.0,94.0,74.0,64.0,74.0,88.0,99.0,75.0,84.0,83.0,96.0,99.0,110.0,91.0,103.0,101.0,96.0,85.0,89.0,67.0,76.0,83.0,80.0,68.0,62.0,72.0,73.0,76.0,62.0,65.0,72.0,72.0,68.0,51.0,65.0,63.0,52.0,34.0,34.0,40.0,39.0,21.0,13.0,20.0,23.0,18.0,8.0,5.0,8.0,14.0 C84010,79.0,91.0,93.0,92.0,92.0,102.0,113.0,110.0,106.0,116.0,125.0,110.0,98.0,103.0,98.0,88.0,95.0,96.0,95.0,98.0,71.0,62.0,94.0,113.0,89.0,131.0,110.0,114.0,154.0,125.0,157.0,145.0,153.0,166.0,158.0,149.0,158.0,152.0,144.0,145.0,154.0,135.0,129.0,159.0,126.0,131.0,115.0,112.0,94.0,85.0,123.0,103.0,128.0,137.0,152.0,135.0,146.0,134.0,133.0,117.0,140.0,124.0,114.0,113.0,116.0,107.0,105.0,87.0,95.0,92.0,78.0,89.0,71.0,78.0,61.0,64.0,78.0,69.0,81.0,53.0,60.0,49.0,53.0,37.0,42.0,56.0,46.0,37.0,29.0,35.0,26.0,23.0,12.0,17.0,13.0,30.0 C84011,23.0,38.0,44.0,51.0,31.0,45.0,45.0,46.0,30.0,48.0,54.0,57.0,54.0,49.0,48.0,48.0,46.0,58.0,40.0,40.0,40.0,33.0,32.0,51.0,36.0,45.0,52.0,45.0,73.0,61.0,53.0,46.0,83.0,55.0,72.0,68.0,61.0,58.0,60.0,59.0,67.0,79.0,69.0,66.0,66.0,69.0,64.0,65.0,58.0,47.0,70.0,63.0,71.0,62.0,70.0,68.0,73.0,81.0,73.0,69.0,73.0,65.0,69.0,69.0,74.0,68.0,53.0,57.0,51.0,41.0,60.0,41.0,51.0,49.0,46.0,43.0,41.0,49.0,46.0,36.0,38.0,31.0,37.0,29.0,17.0,25.0,26.0,30.0,22.0,23.0,20.0,15.0,14.0,10.0,10.0,11.0 C84012,39.0,33.0,41.0,52.0,48.0,50.0,56.0,57.0,60.0,61.0,70.0,74.0,71.0,76.0,79.0,78.0,69.0,50.0,65.0,70.0,49.0,56.0,53.0,75.0,62.0,68.0,61.0,60.0,73.0,72.0,76.0,75.0,74.0,67.0,69.0,83.0,67.0,86.0,80.0,86.0,74.0,71.0,69.0,70.0,79.0,59.0,68.0,56.0,50.0,68.0,62.0,88.0,67.0,88.0,102.0,102.0,107.0,94.0,91.0,106.0,87.0,96.0,79.0,68.0,82.0,90.0,61.0,66.0,77.0,75.0,68.0,70.0,62.0,70.0,76.0,59.0,68.0,72.0,61.0,44.0,50.0,64.0,61.0,42.0,42.0,46.0,36.0,23.0,31.0,20.0,14.0,14.0,11.0,11.0,5.0,18.0 C84013,63.0,64.0,79.0,72.0,71.0,78.0,63.0,82.0,76.0,84.0,87.0,77.0,85.0,86.0,81.0,81.0,90.0,90.0,85.0,78.0,60.0,70.0,64.0,71.0,87.0,73.0,90.0,76.0,101.0,95.0,75.0,83.0,82.0,117.0,94.0,100.0,93.0,116.0,100.0,91.0,90.0,93.0,92.0,89.0,83.0,93.0,79.0,89.0,93.0,80.0,80.0,90.0,101.0,118.0,132.0,123.0,138.0,132.0,119.0,145.0,128.0,121.0,124.0,129.0,131.0,124.0,120.0,120.0,92.0,84.0,102.0,100.0,100.0,92.0,101.0,115.0,101.0,103.0,85.0,80.0,73.0,73.0,60.0,48.0,44.0,31.0,38.0,41.0,20.0,20.0,22.0,22.0,15.0,15.0,5.0,19.0 C84014,36.0,53.0,59.0,65.0,56.0,57.0,48.0,54.0,53.0,64.0,59.0,58.0,75.0,61.0,66.0,51.0,67.0,66.0,61.0,62.0,69.0,59.0,39.0,60.0,45.0,65.0,65.0,67.0,74.0,71.0,67.0,72.0,78.0,70.0,90.0,86.0,107.0,87.0,74.0,75.0,77.0,80.0,64.0,69.0,72.0,87.0,72.0,94.0,59.0,76.0,76.0,77.0,76.0,89.0,101.0,105.0,80.0,94.0,113.0,115.0,76.0,82.0,77.0,83.0,71.0,87.0,60.0,65.0,50.0,54.0,65.0,61.0,56.0,52.0,50.0,67.0,44.0,39.0,49.0,36.0,51.0,42.0,40.0,29.0,22.0,28.0,20.0,24.0,26.0,15.0,5.0,10.0,9.0,3.0,8.0,15.0 C84016,62.0,62.0,61.0,69.0,73.0,72.0,71.0,87.0,98.0,91.0,105.0,90.0,104.0,97.0,106.0,100.0,90.0,84.0,100.0,75.0,73.0,64.0,62.0,59.0,62.0,63.0,80.0,84.0,72.0,85.0,86.0,115.0,100.0,116.0,102.0,121.0,97.0,107.0,115.0,104.0,119.0,98.0,106.0,122.0,106.0,84.0,87.0,66.0,83.0,106.0,103.0,96.0,96.0,88.0,99.0,101.0,106.0,91.0,126.0,122.0,100.0,136.0,125.0,128.0,106.0,125.0,110.0,99.0,91.0,93.0,92.0,90.0,73.0,83.0,103.0,93.0,90.0,88.0,91.0,62.0,83.0,62.0,66.0,62.0,55.0,46.0,54.0,28.0,33.0,30.0,19.0,27.0,10.0,13.0,10.0,20.0 C84017,96.0,131.0,114.0,135.0,124.0,138.0,142.0,139.0,151.0,167.0,179.0,166.0,164.0,179.0,149.0,175.0,170.0,165.0,137.0,105.0,92.0,87.0,86.0,98.0,122.0,115.0,130.0,127.0,135.0,144.0,166.0,149.0,153.0,178.0,182.0,209.0,165.0,216.0,187.0,178.0,193.0,178.0,158.0,198.0,188.0,195.0,192.0,178.0,173.0,170.0,184.0,181.0,171.0,193.0,188.0,185.0,173.0,184.0,188.0,215.0,203.0,174.0,175.0,181.0,169.0,173.0,190.0,158.0,154.0,156.0,129.0,141.0,156.0,141.0,115.0,152.0,145.0,172.0,188.0,131.0,120.0,138.0,116.0,76.0,84.0,62.0,62.0,71.0,50.0,46.0,32.0,34.0,24.0,28.0,20.0,44.0 C84018,67.0,70.0,72.0,68.0,79.0,89.0,75.0,95.0,86.0,85.0,91.0,81.0,101.0,84.0,75.0,86.0,78.0,62.0,61.0,66.0,67.0,58.0,76.0,67.0,76.0,108.0,86.0,108.0,83.0,98.0,116.0,109.0,111.0,112.0,93.0,132.0,128.0,85.0,108.0,108.0,111.0,84.0,116.0,95.0,92.0,85.0,79.0,74.0,60.0,70.0,71.0,62.0,67.0,68.0,71.0,74.0,66.0,73.0,60.0,52.0,70.0,60.0,70.0,64.0,62.0,55.0,42.0,46.0,34.0,45.0,49.0,32.0,30.0,29.0,31.0,35.0,28.0,38.0,28.0,15.0,19.0,24.0,18.0,12.0,8.0,9.0,11.0,16.0,8.0,8.0,10.0,6.0,4.0,4.0,4.0,12.0 C84019,36.0,41.0,52.0,63.0,54.0,76.0,44.0,67.0,78.0,65.0,69.0,63.0,51.0,73.0,85.0,64.0,72.0,78.0,66.0,58.0,49.0,53.0,49.0,49.0,64.0,60.0,62.0,63.0,72.0,78.0,71.0,62.0,79.0,74.0,74.0,77.0,87.0,78.0,85.0,89.0,72.0,79.0,84.0,71.0,71.0,73.0,67.0,74.0,62.0,62.0,73.0,87.0,72.0,88.0,116.0,102.0,88.0,87.0,91.0,96.0,103.0,76.0,77.0,83.0,97.0,67.0,83.0,96.0,77.0,76.0,73.0,74.0,58.0,71.0,77.0,64.0,51.0,81.0,67.0,68.0,76.0,61.0,40.0,39.0,46.0,34.0,33.0,40.0,29.0,25.0,26.0,15.0,17.0,12.0,7.0,26.0 C84020,40.0,37.0,34.0,42.0,41.0,45.0,28.0,29.0,35.0,42.0,35.0,48.0,41.0,44.0,40.0,46.0,34.0,27.0,23.0,29.0,27.0,24.0,32.0,38.0,44.0,61.0,51.0,48.0,47.0,60.0,53.0,59.0,68.0,73.0,58.0,73.0,64.0,60.0,50.0,55.0,60.0,43.0,42.0,36.0,48.0,49.0,47.0,46.0,34.0,47.0,41.0,43.0,50.0,31.0,41.0,44.0,49.0,45.0,46.0,48.0,56.0,55.0,47.0,39.0,45.0,36.0,32.0,32.0,33.0,42.0,38.0,20.0,29.0,23.0,30.0,31.0,27.0,30.0,20.0,27.0,28.0,19.0,16.0,15.0,15.0,6.0,5.0,14.0,9.0,7.0,10.0,4.0,5.0,6.0,3.0,10.0 C84021,56.0,68.0,64.0,56.0,60.0,59.0,67.0,74.0,57.0,80.0,69.0,68.0,98.0,83.0,62.0,73.0,80.0,75.0,71.0,72.0,66.0,62.0,62.0,59.0,65.0,69.0,71.0,87.0,75.0,97.0,91.0,81.0,92.0,116.0,93.0,103.0,100.0,86.0,90.0,79.0,81.0,81.0,77.0,82.0,72.0,61.0,59.0,64.0,64.0,85.0,64.0,89.0,83.0,104.0,90.0,101.0,90.0,92.0,80.0,102.0,104.0,119.0,84.0,97.0,91.0,92.0,103.0,78.0,69.0,63.0,77.0,72.0,63.0,73.0,68.0,72.0,69.0,85.0,52.0,47.0,58.0,54.0,48.0,34.0,27.0,29.0,32.0,21.0,23.0,16.0,10.0,16.0,12.0,8.0,4.0,6.0 C84023,29.0,37.0,41.0,35.0,29.0,24.0,23.0,40.0,40.0,31.0,29.0,40.0,32.0,25.0,29.0,13.0,36.0,33.0,857.0,2119.0,2439.0,2481.0,1989.0,1774.0,1459.0,801.0,822.0,636.0,420.0,326.0,231.0,204.0,183.0,161.0,149.0,126.0,92.0,88.0,78.0,66.0,91.0,60.0,52.0,42.0,47.0,46.0,37.0,23.0,47.0,32.0,35.0,23.0,30.0,26.0,24.0,23.0,26.0,20.0,21.0,25.0,35.0,20.0,16.0,19.0,14.0,14.0,15.0,16.0,15.0,11.0,20.0,16.0,14.0,6.0,15.0,15.0,5.0,21.0,11.0,12.0,4.0,5.0,9.0,7.0,2.0,4.0,4.0,4.0,4.0,2.0,3.0,,,,,2.0 C84024,107.0,110.0,144.0,115.0,138.0,121.0,137.0,149.0,160.0,140.0,159.0,147.0,148.0,184.0,191.0,151.0,158.0,170.0,159.0,143.0,118.0,128.0,148.0,138.0,136.0,160.0,169.0,185.0,200.0,186.0,222.0,210.0,209.0,217.0,201.0,212.0,183.0,208.0,159.0,153.0,190.0,190.0,187.0,189.0,185.0,165.0,171.0,156.0,156.0,146.0,178.0,165.0,193.0,213.0,210.0,205.0,244.0,221.0,225.0,210.0,215.0,226.0,206.0,190.0,201.0,185.0,170.0,168.0,156.0,164.0,156.0,160.0,158.0,153.0,133.0,168.0,162.0,186.0,159.0,127.0,129.0,114.0,104.0,82.0,62.0,78.0,80.0,63.0,64.0,66.0,30.0,42.0,19.0,24.0,19.0,43.0 C84025,19.0,19.0,21.0,30.0,26.0,32.0,38.0,48.0,26.0,36.0,44.0,46.0,36.0,40.0,44.0,40.0,46.0,48.0,46.0,30.0,36.0,42.0,25.0,31.0,36.0,31.0,38.0,39.0,35.0,34.0,34.0,25.0,29.0,39.0,35.0,32.0,43.0,40.0,49.0,34.0,48.0,43.0,44.0,44.0,58.0,39.0,44.0,60.0,45.0,50.0,48.0,52.0,61.0,67.0,62.0,57.0,65.0,63.0,71.0,79.0,81.0,89.0,82.0,74.0,69.0,55.0,59.0,56.0,52.0,64.0,49.0,59.0,53.0,46.0,58.0,45.0,56.0,57.0,57.0,52.0,45.0,34.0,29.0,27.0,21.0,26.0,24.0,16.0,13.0,12.0,12.0,15.0,12.0,,10.0,14.0 C84026,54.0,54.0,48.0,59.0,48.0,51.0,70.0,57.0,60.0,65.0,72.0,85.0,72.0,80.0,60.0,78.0,72.0,63.0,66.0,56.0,59.0,59.0,50.0,59.0,46.0,57.0,57.0,61.0,67.0,69.0,86.0,74.0,69.0,91.0,85.0,73.0,99.0,86.0,87.0,78.0,70.0,83.0,92.0,95.0,84.0,85.0,78.0,69.0,91.0,81.0,82.0,93.0,83.0,96.0,92.0,100.0,91.0,83.0,119.0,80.0,97.0,109.0,82.0,99.0,87.0,88.0,70.0,94.0,85.0,79.0,97.0,83.0,95.0,73.0,86.0,83.0,89.0,104.0,95.0,53.0,65.0,55.0,55.0,46.0,36.0,35.0,35.0,39.0,28.0,33.0,25.0,18.0,11.0,4.0,11.0,13.0 C84028,37.0,36.0,40.0,43.0,40.0,36.0,46.0,38.0,38.0,50.0,41.0,49.0,44.0,37.0,54.0,57.0,49.0,42.0,39.0,25.0,22.0,21.0,26.0,23.0,29.0,51.0,48.0,54.0,37.0,64.0,45.0,51.0,55.0,51.0,71.0,60.0,53.0,56.0,55.0,63.0,58.0,64.0,54.0,48.0,55.0,52.0,58.0,38.0,49.0,58.0,46.0,44.0,52.0,49.0,51.0,52.0,71.0,37.0,40.0,47.0,48.0,43.0,47.0,52.0,44.0,50.0,43.0,34.0,29.0,31.0,44.0,32.0,43.0,37.0,38.0,31.0,45.0,43.0,37.0,23.0,29.0,31.0,41.0,25.0,22.0,22.0,27.0,13.0,15.0,19.0,17.0,14.0,11.0,10.0,8.0,26.0 C84029,102.0,109.0,103.0,120.0,112.0,117.0,108.0,110.0,122.0,136.0,125.0,125.0,123.0,108.0,111.0,120.0,114.0,109.0,86.0,104.0,106.0,79.0,104.0,107.0,121.0,137.0,155.0,143.0,162.0,170.0,142.0,184.0,194.0,187.0,173.0,180.0,170.0,182.0,162.0,192.0,156.0,143.0,151.0,131.0,118.0,133.0,109.0,110.0,115.0,115.0,122.0,125.0,142.0,148.0,152.0,150.0,134.0,164.0,154.0,148.0,162.0,122.0,149.0,143.0,143.0,116.0,124.0,114.0,115.0,112.0,105.0,99.0,116.0,96.0,103.0,89.0,111.0,134.0,88.0,70.0,66.0,72.0,62.0,59.0,40.0,59.0,45.0,37.0,28.0,28.0,25.0,14.0,15.0,13.0,21.0,31.0 C84030,41.0,39.0,53.0,43.0,44.0,53.0,46.0,66.0,55.0,62.0,56.0,56.0,76.0,52.0,62.0,64.0,60.0,57.0,74.0,57.0,56.0,82.0,76.0,84.0,118.0,97.0,94.0,101.0,94.0,85.0,95.0,101.0,94.0,104.0,91.0,95.0,95.0,86.0,86.0,72.0,94.0,86.0,113.0,75.0,71.0,81.0,73.0,79.0,80.0,57.0,83.0,64.0,56.0,76.0,74.0,72.0,79.0,73.0,66.0,70.0,67.0,77.0,48.0,45.0,43.0,54.0,56.0,52.0,46.0,42.0,48.0,39.0,47.0,38.0,40.0,54.0,34.0,55.0,46.0,39.0,42.0,38.0,26.0,20.0,24.0,28.0,27.0,29.0,18.0,19.0,17.0,20.0,9.0,11.0,5.0,17.0 C84032,62.0,64.0,73.0,69.0,89.0,56.0,77.0,79.0,86.0,84.0,88.0,101.0,102.0,91.0,101.0,92.0,89.0,95.0,88.0,72.0,82.0,69.0,84.0,71.0,63.0,85.0,89.0,90.0,93.0,95.0,101.0,101.0,111.0,129.0,117.0,111.0,94.0,108.0,108.0,93.0,90.0,103.0,92.0,99.0,119.0,117.0,114.0,96.0,112.0,100.0,89.0,112.0,104.0,119.0,125.0,133.0,150.0,141.0,139.0,140.0,157.0,136.0,132.0,147.0,128.0,149.0,139.0,135.0,149.0,115.0,132.0,117.0,122.0,127.0,120.0,146.0,132.0,148.0,125.0,104.0,135.0,104.0,90.0,82.0,67.0,89.0,64.0,46.0,43.0,30.0,28.0,21.0,18.0,8.0,14.0,33.0 C84033,36.0,41.0,52.0,52.0,40.0,57.0,49.0,53.0,50.0,43.0,50.0,53.0,42.0,57.0,51.0,42.0,51.0,56.0,41.0,43.0,43.0,31.0,31.0,52.0,36.0,33.0,51.0,50.0,56.0,55.0,57.0,63.0,56.0,66.0,68.0,90.0,73.0,67.0,64.0,65.0,70.0,62.0,63.0,69.0,63.0,44.0,45.0,54.0,49.0,47.0,52.0,53.0,56.0,56.0,60.0,62.0,46.0,64.0,51.0,64.0,56.0,55.0,53.0,58.0,52.0,63.0,43.0,58.0,49.0,42.0,44.0,47.0,51.0,65.0,47.0,49.0,55.0,49.0,61.0,40.0,49.0,35.0,36.0,28.0,23.0,23.0,24.0,16.0,13.0,20.0,17.0,9.0,10.0,5.0,10.0,13.0 C84034,26.0,38.0,27.0,39.0,23.0,35.0,42.0,40.0,57.0,46.0,49.0,52.0,52.0,49.0,49.0,64.0,50.0,52.0,51.0,51.0,46.0,47.0,56.0,35.0,53.0,50.0,63.0,61.0,40.0,58.0,52.0,68.0,47.0,63.0,72.0,60.0,64.0,62.0,73.0,73.0,60.0,73.0,77.0,54.0,51.0,58.0,63.0,59.0,64.0,48.0,49.0,65.0,50.0,50.0,69.0,65.0,58.0,66.0,75.0,76.0,63.0,72.0,71.0,71.0,60.0,48.0,50.0,52.0,50.0,45.0,41.0,40.0,34.0,25.0,44.0,40.0,24.0,40.0,25.0,28.0,29.0,35.0,21.0,20.0,19.0,17.0,14.0,8.0,12.0,11.0,3.0,10.0,2.0,3.0,2.0,1.0 C84035,35.0,53.0,46.0,44.0,48.0,61.0,58.0,65.0,65.0,59.0,62.0,63.0,59.0,63.0,50.0,56.0,59.0,50.0,44.0,42.0,43.0,38.0,53.0,46.0,38.0,43.0,54.0,59.0,65.0,59.0,56.0,64.0,64.0,75.0,76.0,63.0,61.0,84.0,77.0,60.0,62.0,74.0,58.0,73.0,71.0,70.0,49.0,58.0,50.0,64.0,83.0,74.0,90.0,101.0,73.0,77.0,101.0,81.0,75.0,102.0,93.0,96.0,91.0,104.0,89.0,88.0,79.0,83.0,79.0,88.0,78.0,76.0,84.0,60.0,76.0,74.0,82.0,78.0,75.0,62.0,68.0,56.0,57.0,46.0,31.0,38.0,32.0,28.0,30.0,25.0,25.0,12.0,11.0,14.0,12.0,22.0 C84036,96.0,79.0,109.0,93.0,110.0,107.0,94.0,113.0,124.0,126.0,106.0,122.0,97.0,124.0,137.0,118.0,111.0,86.0,81.0,94.0,71.0,78.0,96.0,87.0,90.0,108.0,101.0,117.0,160.0,150.0,151.0,160.0,140.0,147.0,153.0,135.0,141.0,157.0,156.0,137.0,136.0,119.0,137.0,122.0,114.0,130.0,107.0,99.0,84.0,101.0,106.0,107.0,102.0,130.0,151.0,125.0,127.0,121.0,133.0,112.0,128.0,121.0,97.0,123.0,99.0,120.0,98.0,101.0,91.0,111.0,77.0,82.0,102.0,72.0,66.0,83.0,67.0,68.0,70.0,58.0,64.0,54.0,47.0,35.0,38.0,25.0,25.0,28.0,19.0,16.0,24.0,9.0,14.0,9.0,8.0,18.0 C84037,37.0,49.0,41.0,45.0,55.0,54.0,48.0,49.0,76.0,58.0,68.0,67.0,80.0,74.0,65.0,64.0,71.0,65.0,70.0,56.0,45.0,59.0,52.0,60.0,49.0,57.0,58.0,43.0,62.0,60.0,69.0,70.0,79.0,76.0,85.0,84.0,76.0,76.0,65.0,67.0,73.0,73.0,81.0,79.0,76.0,88.0,81.0,74.0,69.0,82.0,100.0,85.0,85.0,90.0,100.0,92.0,111.0,101.0,84.0,115.0,102.0,98.0,93.0,88.0,98.0,105.0,77.0,82.0,79.0,67.0,74.0,85.0,84.0,79.0,67.0,80.0,78.0,82.0,83.0,64.0,69.0,79.0,62.0,41.0,36.0,41.0,45.0,29.0,22.0,28.0,18.0,15.0,19.0,10.0,5.0,27.0 C84039,42.0,52.0,49.0,62.0,65.0,58.0,66.0,49.0,59.0,68.0,48.0,60.0,62.0,57.0,59.0,53.0,48.0,46.0,76.0,100.0,136.0,135.0,173.0,179.0,153.0,121.0,113.0,128.0,122.0,120.0,130.0,123.0,126.0,129.0,109.0,116.0,109.0,101.0,104.0,87.0,86.0,78.0,74.0,74.0,64.0,78.0,56.0,68.0,40.0,71.0,64.0,72.0,45.0,68.0,53.0,56.0,70.0,59.0,69.0,58.0,50.0,46.0,47.0,49.0,47.0,44.0,48.0,39.0,39.0,43.0,47.0,40.0,36.0,32.0,42.0,34.0,31.0,31.0,30.0,21.0,22.0,19.0,18.0,26.0,19.0,14.0,22.0,14.0,10.0,12.0,14.0,6.0,5.0,4.0,4.0,9.0 C84042,25.0,29.0,29.0,36.0,29.0,36.0,48.0,53.0,50.0,39.0,45.0,48.0,46.0,67.0,48.0,35.0,47.0,38.0,36.0,28.0,37.0,31.0,35.0,39.0,25.0,40.0,28.0,34.0,40.0,51.0,46.0,49.0,47.0,58.0,60.0,58.0,65.0,56.0,38.0,62.0,50.0,49.0,58.0,50.0,55.0,56.0,55.0,42.0,56.0,43.0,32.0,48.0,43.0,53.0,47.0,41.0,62.0,58.0,57.0,66.0,54.0,46.0,62.0,43.0,29.0,48.0,41.0,40.0,35.0,34.0,22.0,31.0,37.0,39.0,33.0,27.0,29.0,35.0,47.0,31.0,40.0,28.0,22.0,25.0,19.0,21.0,20.0,22.0,18.0,20.0,9.0,13.0,7.0,6.0,3.0,14.0 C84043,51.0,56.0,64.0,77.0,70.0,92.0,79.0,90.0,89.0,84.0,97.0,83.0,107.0,103.0,100.0,91.0,90.0,94.0,85.0,71.0,73.0,56.0,73.0,78.0,52.0,74.0,85.0,90.0,79.0,70.0,81.0,100.0,125.0,105.0,106.0,110.0,88.0,85.0,100.0,89.0,92.0,88.0,79.0,89.0,103.0,94.0,95.0,80.0,64.0,56.0,63.0,84.0,76.0,89.0,100.0,90.0,85.0,78.0,76.0,86.0,76.0,76.0,71.0,62.0,65.0,62.0,56.0,58.0,49.0,47.0,61.0,60.0,51.0,36.0,42.0,41.0,49.0,52.0,46.0,34.0,38.0,33.0,36.0,28.0,21.0,29.0,23.0,20.0,14.0,19.0,21.0,3.0,16.0,7.0,3.0,19.0 C84044,28.0,49.0,43.0,60.0,55.0,60.0,62.0,62.0,65.0,66.0,78.0,81.0,80.0,71.0,77.0,69.0,74.0,65.0,65.0,48.0,32.0,38.0,50.0,48.0,41.0,51.0,44.0,45.0,50.0,56.0,45.0,49.0,47.0,68.0,72.0,61.0,67.0,63.0,81.0,58.0,75.0,73.0,81.0,77.0,76.0,69.0,86.0,65.0,67.0,77.0,69.0,68.0,59.0,63.0,76.0,56.0,63.0,67.0,65.0,61.0,78.0,79.0,69.0,70.0,66.0,79.0,53.0,60.0,59.0,63.0,51.0,58.0,60.0,64.0,47.0,77.0,56.0,76.0,66.0,42.0,47.0,51.0,45.0,39.0,35.0,37.0,28.0,20.0,26.0,25.0,15.0,16.0,13.0,14.0,4.0,21.0 C84045,21.0,28.0,17.0,28.0,35.0,24.0,25.0,45.0,24.0,29.0,33.0,34.0,23.0,45.0,49.0,32.0,37.0,32.0,39.0,25.0,31.0,24.0,31.0,26.0,25.0,30.0,40.0,31.0,31.0,38.0,28.0,30.0,35.0,40.0,49.0,45.0,44.0,45.0,34.0,41.0,45.0,35.0,46.0,47.0,34.0,37.0,56.0,36.0,52.0,48.0,38.0,51.0,63.0,64.0,60.0,52.0,67.0,62.0,94.0,67.0,69.0,69.0,72.0,77.0,63.0,66.0,58.0,54.0,60.0,50.0,54.0,68.0,50.0,54.0,56.0,64.0,61.0,81.0,85.0,63.0,44.0,40.0,55.0,37.0,31.0,35.0,23.0,30.0,19.0,17.0,13.0,14.0,7.0,4.0,1.0,12.0 C84046,36.0,46.0,35.0,40.0,37.0,55.0,61.0,47.0,60.0,70.0,69.0,55.0,63.0,69.0,73.0,62.0,58.0,61.0,49.0,48.0,38.0,51.0,34.0,49.0,58.0,53.0,54.0,57.0,67.0,54.0,68.0,88.0,61.0,81.0,80.0,75.0,81.0,79.0,78.0,66.0,74.0,50.0,70.0,64.0,57.0,49.0,65.0,51.0,48.0,41.0,48.0,45.0,44.0,53.0,54.0,55.0,52.0,55.0,51.0,51.0,57.0,39.0,53.0,44.0,61.0,48.0,52.0,47.0,39.0,46.0,39.0,39.0,38.0,32.0,26.0,39.0,13.0,28.0,37.0,22.0,15.0,20.0,20.0,23.0,14.0,20.0,16.0,17.0,14.0,14.0,8.0,16.0,17.0,18.0,16.0,36.0 C84047,37.0,38.0,51.0,47.0,40.0,66.0,50.0,41.0,69.0,49.0,58.0,64.0,56.0,47.0,51.0,60.0,43.0,62.0,43.0,42.0,39.0,52.0,40.0,42.0,48.0,52.0,34.0,66.0,43.0,56.0,50.0,64.0,65.0,85.0,82.0,73.0,49.0,95.0,61.0,53.0,75.0,64.0,49.0,55.0,80.0,59.0,78.0,58.0,54.0,48.0,53.0,64.0,79.0,50.0,58.0,57.0,80.0,68.0,90.0,66.0,79.0,70.0,69.0,85.0,93.0,83.0,79.0,74.0,67.0,67.0,65.0,86.0,68.0,69.0,66.0,73.0,75.0,75.0,81.0,54.0,42.0,56.0,56.0,26.0,39.0,36.0,34.0,32.0,22.0,15.0,19.0,13.0,16.0,5.0,6.0,14.0 C84049,29.0,29.0,35.0,30.0,46.0,37.0,56.0,55.0,54.0,47.0,56.0,77.0,55.0,80.0,73.0,90.0,81.0,75.0,86.0,85.0,82.0,77.0,58.0,54.0,50.0,46.0,50.0,41.0,41.0,38.0,40.0,48.0,43.0,38.0,56.0,50.0,57.0,44.0,55.0,62.0,58.0,62.0,44.0,60.0,57.0,101.0,70.0,69.0,57.0,75.0,104.0,85.0,74.0,105.0,93.0,85.0,98.0,89.0,100.0,107.0,101.0,106.0,88.0,90.0,96.0,105.0,98.0,105.0,85.0,95.0,96.0,69.0,82.0,80.0,81.0,104.0,95.0,100.0,113.0,82.0,76.0,67.0,64.0,74.0,48.0,46.0,50.0,41.0,37.0,35.0,21.0,25.0,19.0,6.0,13.0,29.0 C84051,53.0,71.0,89.0,83.0,88.0,94.0,98.0,133.0,112.0,112.0,104.0,133.0,120.0,123.0,134.0,97.0,121.0,112.0,108.0,89.0,102.0,89.0,76.0,91.0,82.0,94.0,107.0,100.0,114.0,122.0,128.0,142.0,130.0,137.0,165.0,147.0,140.0,159.0,161.0,174.0,141.0,151.0,138.0,153.0,127.0,144.0,137.0,111.0,144.0,124.0,133.0,111.0,134.0,121.0,113.0,120.0,131.0,133.0,157.0,146.0,119.0,123.0,144.0,110.0,123.0,133.0,110.0,104.0,104.0,85.0,107.0,95.0,84.0,86.0,85.0,81.0,94.0,81.0,84.0,79.0,76.0,63.0,60.0,40.0,49.0,41.0,38.0,37.0,27.0,23.0,19.0,20.0,17.0,12.0,11.0,27.0 C84053,87.0,75.0,83.0,106.0,98.0,87.0,95.0,98.0,107.0,104.0,101.0,110.0,116.0,104.0,102.0,91.0,108.0,90.0,75.0,64.0,74.0,73.0,68.0,86.0,78.0,90.0,81.0,99.0,119.0,125.0,126.0,117.0,144.0,140.0,134.0,136.0,134.0,156.0,138.0,117.0,119.0,121.0,99.0,105.0,112.0,119.0,116.0,89.0,96.0,101.0,100.0,125.0,126.0,113.0,113.0,118.0,114.0,125.0,113.0,106.0,113.0,105.0,107.0,100.0,91.0,95.0,87.0,63.0,78.0,86.0,85.0,82.0,86.0,66.0,93.0,77.0,73.0,72.0,62.0,63.0,71.0,56.0,56.0,45.0,48.0,41.0,37.0,39.0,25.0,30.0,21.0,20.0,13.0,13.0,8.0,22.0 C84055,38.0,54.0,42.0,42.0,46.0,62.0,68.0,63.0,78.0,66.0,61.0,74.0,78.0,75.0,65.0,66.0,70.0,65.0,56.0,55.0,60.0,69.0,47.0,47.0,44.0,70.0,68.0,70.0,76.0,78.0,76.0,83.0,77.0,85.0,74.0,88.0,91.0,70.0,90.0,87.0,72.0,81.0,73.0,73.0,82.0,70.0,71.0,71.0,66.0,63.0,63.0,76.0,84.0,77.0,71.0,62.0,83.0,75.0,80.0,73.0,95.0,75.0,67.0,65.0,70.0,54.0,48.0,65.0,43.0,53.0,59.0,48.0,40.0,47.0,47.0,63.0,42.0,55.0,58.0,46.0,43.0,37.0,54.0,35.0,30.0,38.0,37.0,29.0,39.0,28.0,11.0,15.0,14.0,9.0,14.0,27.0 C84057,15.0,20.0,20.0,24.0,19.0,22.0,22.0,21.0,30.0,23.0,17.0,33.0,26.0,27.0,27.0,25.0,19.0,22.0,23.0,20.0,15.0,15.0,20.0,22.0,16.0,24.0,24.0,26.0,26.0,28.0,22.0,32.0,31.0,38.0,39.0,35.0,22.0,23.0,35.0,29.0,31.0,20.0,31.0,26.0,21.0,30.0,27.0,27.0,27.0,19.0,20.0,26.0,47.0,25.0,29.0,24.0,32.0,41.0,24.0,33.0,28.0,24.0,36.0,27.0,17.0,26.0,23.0,33.0,20.0,20.0,30.0,14.0,28.0,20.0,25.0,19.0,27.0,24.0,27.0,12.0,20.0,19.0,19.0,13.0,11.0,6.0,9.0,5.0,3.0,4.0,6.0,,4.0,2.0,,7.0 C84059,72.0,69.0,74.0,82.0,79.0,65.0,75.0,83.0,84.0,89.0,95.0,66.0,83.0,86.0,89.0,90.0,90.0,82.0,73.0,76.0,61.0,73.0,44.0,55.0,81.0,92.0,97.0,69.0,92.0,78.0,86.0,99.0,94.0,115.0,103.0,102.0,90.0,99.0,117.0,97.0,99.0,99.0,74.0,83.0,78.0,97.0,82.0,62.0,69.0,69.0,75.0,71.0,80.0,79.0,99.0,84.0,82.0,86.0,103.0,102.0,90.0,91.0,75.0,73.0,71.0,75.0,58.0,56.0,64.0,47.0,51.0,52.0,45.0,50.0,42.0,44.0,46.0,49.0,39.0,35.0,45.0,31.0,26.0,21.0,18.0,24.0,12.0,25.0,16.0,17.0,17.0,12.0,11.0,11.0,6.0,10.0 C84060,29.0,49.0,46.0,48.0,36.0,46.0,58.0,49.0,55.0,42.0,55.0,59.0,63.0,54.0,56.0,54.0,71.0,63.0,66.0,44.0,27.0,32.0,37.0,47.0,43.0,44.0,40.0,53.0,47.0,43.0,53.0,58.0,72.0,71.0,62.0,73.0,66.0,67.0,69.0,72.0,61.0,51.0,64.0,49.0,58.0,49.0,55.0,36.0,48.0,37.0,47.0,47.0,49.0,60.0,52.0,57.0,55.0,60.0,61.0,53.0,61.0,66.0,55.0,63.0,56.0,52.0,60.0,44.0,57.0,53.0,38.0,44.0,34.0,33.0,36.0,35.0,39.0,27.0,36.0,20.0,23.0,27.0,17.0,27.0,27.0,16.0,19.0,16.0,14.0,17.0,18.0,21.0,11.0,8.0,4.0,28.0 C84061,62.0,73.0,38.0,59.0,63.0,48.0,53.0,59.0,64.0,65.0,74.0,78.0,64.0,69.0,71.0,62.0,71.0,72.0,60.0,62.0,43.0,47.0,54.0,61.0,71.0,62.0,46.0,65.0,63.0,72.0,57.0,73.0,64.0,63.0,77.0,91.0,92.0,97.0,81.0,94.0,79.0,70.0,77.0,69.0,66.0,59.0,47.0,48.0,56.0,48.0,49.0,46.0,59.0,69.0,55.0,51.0,49.0,72.0,50.0,67.0,53.0,51.0,38.0,45.0,55.0,48.0,39.0,40.0,35.0,38.0,44.0,47.0,26.0,19.0,44.0,40.0,24.0,34.0,33.0,24.0,29.0,26.0,24.0,19.0,12.0,20.0,15.0,15.0,8.0,11.0,12.0,12.0,6.0,3.0,7.0,14.0 C84063,33.0,44.0,33.0,54.0,30.0,43.0,43.0,49.0,73.0,74.0,61.0,51.0,65.0,67.0,68.0,62.0,70.0,59.0,56.0,49.0,60.0,47.0,48.0,61.0,51.0,44.0,50.0,37.0,63.0,72.0,61.0,51.0,75.0,68.0,59.0,48.0,61.0,63.0,62.0,59.0,72.0,72.0,72.0,67.0,57.0,65.0,64.0,59.0,48.0,42.0,54.0,57.0,46.0,36.0,47.0,49.0,38.0,59.0,47.0,31.0,44.0,41.0,49.0,39.0,35.0,35.0,36.0,27.0,31.0,31.0,22.0,38.0,19.0,18.0,16.0,16.0,20.0,19.0,25.0,13.0,15.0,17.0,18.0,15.0,15.0,12.0,16.0,7.0,6.0,7.0,6.0,1.0,2.0,3.0,2.0,3.0 C84064,66.0,70.0,69.0,68.0,56.0,78.0,60.0,67.0,83.0,86.0,88.0,66.0,74.0,94.0,77.0,67.0,67.0,81.0,67.0,57.0,51.0,66.0,59.0,63.0,61.0,65.0,84.0,97.0,100.0,99.0,96.0,91.0,81.0,111.0,84.0,122.0,89.0,102.0,92.0,97.0,75.0,68.0,77.0,61.0,63.0,75.0,64.0,64.0,65.0,56.0,49.0,62.0,78.0,48.0,59.0,50.0,67.0,50.0,64.0,72.0,59.0,43.0,51.0,59.0,52.0,55.0,40.0,52.0,39.0,41.0,28.0,40.0,41.0,30.0,32.0,27.0,33.0,40.0,35.0,26.0,19.0,21.0,16.0,15.0,15.0,16.0,13.0,7.0,13.0,11.0,7.0,8.0,2.0,6.0,5.0,15.0 C84065,15.0,26.0,18.0,26.0,27.0,31.0,24.0,42.0,35.0,32.0,32.0,27.0,36.0,27.0,33.0,39.0,20.0,28.0,27.0,22.0,20.0,23.0,24.0,20.0,22.0,31.0,30.0,29.0,28.0,26.0,47.0,41.0,44.0,29.0,34.0,36.0,41.0,35.0,33.0,34.0,48.0,37.0,42.0,41.0,32.0,27.0,36.0,21.0,34.0,31.0,30.0,32.0,28.0,31.0,34.0,25.0,31.0,29.0,30.0,32.0,34.0,27.0,28.0,29.0,22.0,21.0,21.0,27.0,29.0,26.0,17.0,23.0,19.0,28.0,20.0,26.0,15.0,22.0,20.0,12.0,20.0,17.0,10.0,17.0,14.0,11.0,12.0,5.0,7.0,6.0,6.0,4.0,3.0,5.0,1.0,6.0 C84066,39.0,40.0,50.0,39.0,49.0,42.0,53.0,59.0,60.0,63.0,78.0,60.0,67.0,61.0,66.0,54.0,73.0,64.0,78.0,60.0,47.0,42.0,42.0,42.0,42.0,42.0,56.0,43.0,71.0,58.0,67.0,63.0,70.0,94.0,76.0,77.0,85.0,83.0,73.0,67.0,71.0,76.0,75.0,71.0,66.0,69.0,52.0,76.0,61.0,59.0,47.0,75.0,77.0,61.0,67.0,74.0,82.0,66.0,66.0,71.0,76.0,81.0,82.0,86.0,57.0,68.0,67.0,52.0,60.0,55.0,58.0,64.0,45.0,50.0,45.0,59.0,50.0,61.0,52.0,33.0,36.0,42.0,34.0,33.0,33.0,37.0,29.0,21.0,25.0,22.0,14.0,7.0,8.0,12.0,6.0,12.0 C84067,14.0,30.0,14.0,31.0,27.0,18.0,25.0,26.0,29.0,40.0,33.0,22.0,31.0,29.0,34.0,43.0,33.0,23.0,22.0,25.0,25.0,18.0,28.0,25.0,25.0,18.0,21.0,18.0,22.0,24.0,29.0,41.0,32.0,36.0,34.0,38.0,37.0,26.0,36.0,39.0,31.0,32.0,41.0,30.0,36.0,30.0,27.0,30.0,38.0,39.0,36.0,27.0,46.0,37.0,33.0,35.0,60.0,46.0,46.0,44.0,39.0,40.0,55.0,43.0,53.0,49.0,33.0,33.0,30.0,32.0,30.0,31.0,28.0,27.0,30.0,30.0,35.0,39.0,39.0,39.0,28.0,36.0,24.0,11.0,18.0,15.0,19.0,9.0,13.0,10.0,3.0,6.0,5.0,6.0,3.0,4.0 C84069,56.0,46.0,53.0,47.0,52.0,66.0,59.0,67.0,78.0,80.0,66.0,82.0,92.0,72.0,96.0,81.0,86.0,76.0,64.0,64.0,58.0,49.0,51.0,58.0,57.0,55.0,70.0,74.0,72.0,74.0,73.0,99.0,80.0,110.0,90.0,106.0,80.0,107.0,108.0,89.0,85.0,87.0,87.0,90.0,91.0,106.0,87.0,92.0,66.0,76.0,79.0,85.0,75.0,90.0,90.0,68.0,96.0,90.0,103.0,83.0,106.0,76.0,90.0,96.0,76.0,91.0,78.0,82.0,60.0,69.0,86.0,54.0,65.0,61.0,66.0,67.0,72.0,67.0,56.0,49.0,61.0,51.0,46.0,43.0,39.0,49.0,32.0,38.0,27.0,26.0,17.0,17.0,10.0,14.0,6.0,23.0 C84072,54.0,63.0,50.0,73.0,73.0,68.0,81.0,70.0,84.0,70.0,76.0,96.0,84.0,81.0,84.0,79.0,60.0,52.0,74.0,71.0,70.0,71.0,48.0,75.0,86.0,84.0,95.0,95.0,89.0,93.0,94.0,106.0,98.0,91.0,82.0,86.0,79.0,102.0,99.0,85.0,84.0,80.0,86.0,76.0,70.0,72.0,66.0,61.0,51.0,55.0,62.0,65.0,64.0,50.0,49.0,45.0,49.0,53.0,69.0,66.0,36.0,58.0,54.0,63.0,42.0,46.0,45.0,44.0,30.0,35.0,32.0,33.0,29.0,25.0,22.0,25.0,25.0,14.0,18.0,19.0,17.0,25.0,15.0,13.0,13.0,9.0,9.0,12.0,11.0,10.0,13.0,10.0,4.0,2.0,4.0,6.0 C84074,21.0,34.0,24.0,29.0,21.0,35.0,29.0,41.0,31.0,38.0,23.0,24.0,39.0,37.0,34.0,39.0,27.0,32.0,33.0,19.0,21.0,30.0,26.0,39.0,30.0,24.0,47.0,38.0,38.0,32.0,27.0,54.0,38.0,45.0,30.0,47.0,41.0,45.0,34.0,35.0,50.0,33.0,34.0,23.0,28.0,21.0,30.0,41.0,23.0,23.0,21.0,39.0,29.0,32.0,44.0,33.0,29.0,23.0,29.0,35.0,34.0,44.0,33.0,37.0,33.0,34.0,35.0,21.0,26.0,33.0,20.0,33.0,20.0,31.0,11.0,22.0,31.0,27.0,21.0,16.0,20.0,17.0,20.0,14.0,8.0,10.0,10.0,7.0,9.0,7.0,6.0,9.0,10.0,,4.0,2.0 C84076,15.0,16.0,18.0,17.0,16.0,30.0,26.0,20.0,28.0,23.0,28.0,26.0,16.0,25.0,26.0,29.0,25.0,21.0,28.0,12.0,22.0,25.0,17.0,15.0,22.0,18.0,22.0,17.0,26.0,26.0,27.0,36.0,33.0,30.0,25.0,26.0,30.0,24.0,31.0,24.0,20.0,24.0,21.0,31.0,26.0,21.0,18.0,26.0,23.0,15.0,27.0,25.0,27.0,30.0,41.0,32.0,47.0,30.0,31.0,33.0,38.0,21.0,39.0,36.0,18.0,21.0,23.0,20.0,17.0,17.0,17.0,19.0,20.0,27.0,18.0,21.0,26.0,19.0,26.0,17.0,13.0,13.0,14.0,15.0,13.0,10.0,11.0,6.0,11.0,7.0,5.0,2.0,2.0,,1.0,6.0 C84077,69.0,83.0,92.0,102.0,92.0,95.0,109.0,109.0,108.0,117.0,120.0,98.0,103.0,123.0,116.0,118.0,125.0,104.0,98.0,82.0,78.0,82.0,66.0,97.0,85.0,99.0,101.0,98.0,100.0,128.0,112.0,130.0,131.0,121.0,152.0,131.0,136.0,130.0,135.0,142.0,112.0,120.0,142.0,136.0,120.0,112.0,100.0,108.0,68.0,91.0,103.0,114.0,112.0,140.0,126.0,118.0,151.0,124.0,139.0,125.0,141.0,135.0,139.0,121.0,136.0,134.0,106.0,100.0,104.0,93.0,83.0,98.0,87.0,107.0,86.0,81.0,92.0,113.0,104.0,81.0,90.0,81.0,58.0,49.0,42.0,50.0,46.0,40.0,34.0,24.0,21.0,16.0,14.0,18.0,13.0,27.0 C84078,63.0,59.0,57.0,69.0,61.0,73.0,81.0,76.0,83.0,81.0,87.0,77.0,90.0,84.0,80.0,83.0,97.0,88.0,86.0,80.0,74.0,66.0,64.0,74.0,68.0,74.0,82.0,73.0,72.0,84.0,92.0,111.0,111.0,122.0,131.0,119.0,106.0,123.0,118.0,123.0,105.0,112.0,98.0,105.0,102.0,89.0,92.0,75.0,72.0,93.0,101.0,60.0,89.0,82.0,76.0,88.0,92.0,75.0,64.0,102.0,100.0,80.0,72.0,92.0,92.0,79.0,80.0,63.0,66.0,59.0,62.0,62.0,55.0,55.0,42.0,40.0,50.0,53.0,49.0,40.0,29.0,32.0,23.0,30.0,22.0,22.0,22.0,23.0,20.0,19.0,16.0,15.0,7.0,10.0,4.0,24.0 C84080,56.0,55.0,50.0,58.0,45.0,49.0,54.0,56.0,71.0,73.0,67.0,69.0,72.0,62.0,70.0,82.0,58.0,56.0,64.0,52.0,49.0,51.0,40.0,66.0,76.0,91.0,94.0,117.0,125.0,125.0,126.0,112.0,93.0,96.0,107.0,100.0,106.0,103.0,92.0,109.0,104.0,100.0,108.0,82.0,95.0,77.0,84.0,52.0,67.0,83.0,84.0,81.0,100.0,70.0,82.0,77.0,81.0,97.0,80.0,95.0,100.0,85.0,95.0,85.0,92.0,95.0,81.0,91.0,72.0,66.0,71.0,72.0,66.0,73.0,72.0,73.0,63.0,70.0,84.0,51.0,48.0,50.0,51.0,39.0,35.0,46.0,33.0,33.0,38.0,30.0,22.0,16.0,18.0,14.0,13.0,27.0 C84081,27.0,35.0,34.0,33.0,31.0,33.0,31.0,52.0,47.0,44.0,45.0,48.0,42.0,56.0,51.0,43.0,50.0,48.0,44.0,41.0,34.0,26.0,29.0,35.0,28.0,30.0,42.0,41.0,32.0,48.0,48.0,47.0,55.0,56.0,52.0,47.0,53.0,44.0,63.0,59.0,63.0,46.0,50.0,60.0,43.0,46.0,41.0,40.0,26.0,38.0,43.0,32.0,40.0,36.0,38.0,48.0,54.0,38.0,36.0,30.0,43.0,43.0,41.0,61.0,34.0,39.0,40.0,44.0,42.0,52.0,37.0,35.0,37.0,28.0,36.0,24.0,26.0,22.0,29.0,17.0,15.0,22.0,16.0,10.0,9.0,9.0,9.0,11.0,11.0,13.0,14.0,13.0,10.0,16.0,9.0,19.0 C84084,23.0,38.0,26.0,34.0,31.0,46.0,32.0,40.0,39.0,49.0,39.0,53.0,44.0,45.0,51.0,48.0,58.0,60.0,38.0,35.0,26.0,26.0,28.0,31.0,24.0,30.0,39.0,35.0,35.0,41.0,36.0,49.0,37.0,32.0,34.0,47.0,56.0,46.0,47.0,47.0,49.0,52.0,62.0,54.0,66.0,66.0,51.0,55.0,49.0,49.0,60.0,54.0,57.0,46.0,56.0,62.0,67.0,69.0,57.0,73.0,64.0,62.0,51.0,59.0,54.0,60.0,61.0,61.0,50.0,61.0,58.0,61.0,44.0,66.0,51.0,56.0,51.0,68.0,73.0,51.0,54.0,37.0,58.0,43.0,38.0,35.0,28.0,26.0,34.0,34.0,28.0,22.0,23.0,10.0,15.0,32.0 C84085,33.0,45.0,33.0,64.0,32.0,35.0,38.0,40.0,40.0,46.0,35.0,46.0,54.0,53.0,51.0,44.0,54.0,53.0,59.0,83.0,84.0,92.0,97.0,101.0,89.0,94.0,101.0,101.0,99.0,98.0,89.0,85.0,93.0,97.0,82.0,85.0,63.0,94.0,74.0,68.0,72.0,66.0,66.0,69.0,72.0,72.0,54.0,53.0,56.0,64.0,48.0,42.0,54.0,51.0,73.0,59.0,63.0,62.0,57.0,62.0,85.0,64.0,74.0,54.0,67.0,58.0,54.0,48.0,43.0,48.0,46.0,44.0,37.0,33.0,41.0,34.0,46.0,29.0,30.0,22.0,24.0,28.0,22.0,12.0,20.0,14.0,15.0,10.0,17.0,15.0,9.0,10.0,6.0,7.0,2.0,10.0 C84086,56.0,83.0,76.0,87.0,86.0,108.0,87.0,116.0,119.0,121.0,101.0,107.0,107.0,118.0,82.0,87.0,86.0,93.0,78.0,55.0,53.0,60.0,54.0,80.0,91.0,86.0,103.0,106.0,95.0,96.0,120.0,115.0,100.0,109.0,128.0,123.0,120.0,140.0,123.0,130.0,142.0,151.0,137.0,135.0,148.0,129.0,129.0,110.0,107.0,109.0,98.0,100.0,86.0,89.0,77.0,84.0,81.0,68.0,83.0,84.0,68.0,73.0,57.0,49.0,69.0,64.0,54.0,67.0,53.0,56.0,63.0,72.0,61.0,73.0,70.0,65.0,69.0,63.0,61.0,62.0,54.0,37.0,47.0,26.0,37.0,30.0,30.0,31.0,24.0,23.0,19.0,15.0,17.0,12.0,11.0,27.0 C84087,19.0,22.0,21.0,28.0,29.0,31.0,27.0,26.0,27.0,43.0,43.0,36.0,25.0,31.0,30.0,32.0,39.0,48.0,30.0,41.0,25.0,28.0,22.0,16.0,36.0,33.0,30.0,28.0,31.0,38.0,49.0,30.0,37.0,41.0,43.0,39.0,44.0,40.0,52.0,38.0,41.0,34.0,31.0,30.0,29.0,35.0,30.0,34.0,34.0,42.0,32.0,26.0,48.0,36.0,34.0,49.0,37.0,50.0,51.0,46.0,52.0,42.0,42.0,44.0,37.0,34.0,39.0,43.0,35.0,40.0,33.0,26.0,28.0,29.0,27.0,35.0,19.0,30.0,30.0,22.0,19.0,21.0,17.0,19.0,17.0,10.0,15.0,14.0,9.0,10.0,6.0,4.0,5.0,4.0,6.0,2.0 C84090,29.0,36.0,36.0,39.0,36.0,41.0,45.0,43.0,48.0,59.0,49.0,48.0,52.0,37.0,38.0,60.0,53.0,66.0,52.0,33.0,30.0,41.0,41.0,53.0,49.0,47.0,58.0,48.0,60.0,59.0,59.0,73.0,77.0,55.0,63.0,64.0,59.0,54.0,58.0,57.0,53.0,65.0,80.0,71.0,58.0,57.0,80.0,63.0,62.0,67.0,56.0,64.0,53.0,57.0,64.0,80.0,84.0,80.0,78.0,78.0,91.0,84.0,95.0,69.0,59.0,47.0,52.0,59.0,54.0,60.0,45.0,43.0,49.0,51.0,52.0,43.0,49.0,38.0,28.0,32.0,39.0,31.0,25.0,27.0,16.0,21.0,19.0,18.0,13.0,12.0,16.0,11.0,13.0,11.0,4.0,22.0 C84091,35.0,62.0,39.0,56.0,49.0,51.0,63.0,56.0,74.0,71.0,70.0,70.0,74.0,85.0,72.0,62.0,73.0,67.0,70.0,53.0,58.0,51.0,45.0,50.0,45.0,56.0,48.0,52.0,54.0,66.0,49.0,64.0,65.0,65.0,77.0,66.0,85.0,67.0,82.0,92.0,78.0,63.0,80.0,80.0,67.0,67.0,47.0,58.0,60.0,63.0,48.0,48.0,55.0,38.0,59.0,45.0,53.0,47.0,60.0,51.0,48.0,40.0,52.0,55.0,41.0,45.0,37.0,46.0,39.0,32.0,31.0,29.0,29.0,29.0,21.0,23.0,26.0,30.0,29.0,22.0,27.0,26.0,22.0,17.0,14.0,14.0,17.0,11.0,8.0,7.0,11.0,6.0,7.0,9.0,3.0,11.0 C84092,24.0,21.0,27.0,27.0,30.0,33.0,33.0,30.0,34.0,36.0,33.0,26.0,33.0,37.0,34.0,25.0,32.0,31.0,30.0,28.0,31.0,30.0,39.0,38.0,31.0,53.0,64.0,68.0,45.0,65.0,51.0,48.0,41.0,50.0,62.0,50.0,57.0,45.0,29.0,41.0,45.0,36.0,41.0,29.0,37.0,35.0,27.0,32.0,25.0,26.0,24.0,20.0,28.0,22.0,23.0,22.0,23.0,27.0,20.0,26.0,21.0,18.0,18.0,23.0,16.0,26.0,12.0,11.0,15.0,15.0,10.0,9.0,9.0,15.0,6.0,12.0,12.0,13.0,12.0,7.0,7.0,9.0,4.0,5.0,2.0,4.0,7.0,6.0,1.0,2.0,3.0,2.0,,3.0,,3.0 C84094,105.0,114.0,129.0,113.0,118.0,123.0,138.0,125.0,121.0,119.0,144.0,143.0,138.0,160.0,141.0,148.0,133.0,129.0,126.0,114.0,104.0,113.0,103.0,100.0,136.0,123.0,147.0,145.0,146.0,163.0,169.0,169.0,149.0,166.0,177.0,152.0,171.0,157.0,142.0,148.0,162.0,122.0,130.0,136.0,149.0,128.0,127.0,130.0,157.0,139.0,144.0,162.0,143.0,181.0,157.0,165.0,180.0,189.0,151.0,181.0,169.0,154.0,145.0,150.0,149.0,153.0,148.0,142.0,122.0,95.0,90.0,112.0,124.0,104.0,98.0,116.0,113.0,141.0,121.0,94.0,95.0,83.0,77.0,76.0,70.0,71.0,61.0,30.0,38.0,30.0,29.0,36.0,18.0,14.0,25.0,34.0 C84095,28.0,35.0,19.0,34.0,27.0,34.0,30.0,36.0,44.0,45.0,37.0,35.0,38.0,40.0,44.0,32.0,42.0,41.0,38.0,24.0,33.0,28.0,33.0,41.0,31.0,45.0,44.0,39.0,47.0,46.0,47.0,43.0,50.0,41.0,38.0,61.0,56.0,42.0,50.0,56.0,59.0,34.0,43.0,51.0,49.0,46.0,48.0,46.0,35.0,45.0,51.0,48.0,37.0,50.0,51.0,56.0,57.0,43.0,46.0,45.0,72.0,56.0,51.0,43.0,34.0,48.0,26.0,40.0,41.0,34.0,13.0,33.0,43.0,42.0,29.0,46.0,39.0,35.0,39.0,41.0,38.0,29.0,29.0,33.0,21.0,20.0,19.0,13.0,15.0,13.0,11.0,14.0,6.0,5.0,7.0,11.0 C84101,12.0,16.0,12.0,20.0,17.0,10.0,22.0,11.0,14.0,27.0,10.0,20.0,13.0,13.0,16.0,20.0,18.0,20.0,15.0,18.0,8.0,10.0,13.0,12.0,17.0,14.0,36.0,14.0,20.0,19.0,25.0,30.0,18.0,28.0,18.0,31.0,25.0,20.0,22.0,24.0,27.0,25.0,24.0,20.0,13.0,21.0,17.0,18.0,17.0,21.0,14.0,27.0,19.0,32.0,29.0,21.0,25.0,28.0,28.0,33.0,27.0,24.0,26.0,35.0,24.0,36.0,26.0,31.0,37.0,27.0,27.0,24.0,26.0,28.0,35.0,25.0,24.0,39.0,23.0,15.0,22.0,20.0,17.0,7.0,23.0,9.0,16.0,9.0,12.0,10.0,7.0,10.0,5.0,2.0,,8.0 C84105,34.0,31.0,33.0,57.0,37.0,48.0,65.0,58.0,58.0,62.0,50.0,66.0,62.0,62.0,65.0,44.0,55.0,48.0,49.0,54.0,47.0,43.0,47.0,56.0,50.0,52.0,64.0,53.0,52.0,55.0,57.0,52.0,52.0,57.0,55.0,62.0,56.0,62.0,70.0,62.0,66.0,62.0,57.0,64.0,59.0,61.0,46.0,40.0,58.0,40.0,58.0,48.0,39.0,54.0,44.0,41.0,54.0,45.0,43.0,37.0,41.0,35.0,40.0,29.0,22.0,22.0,34.0,25.0,18.0,20.0,24.0,17.0,11.0,22.0,16.0,9.0,15.0,11.0,16.0,8.0,11.0,5.0,8.0,9.0,9.0,6.0,6.0,9.0,1.0,6.0,2.0,3.0,2.0,5.0,2.0,5.0 C84106,29.0,32.0,27.0,35.0,45.0,42.0,36.0,39.0,43.0,48.0,38.0,47.0,53.0,50.0,49.0,49.0,45.0,50.0,35.0,46.0,43.0,26.0,46.0,57.0,48.0,42.0,57.0,70.0,82.0,48.0,65.0,63.0,73.0,65.0,63.0,64.0,70.0,65.0,57.0,62.0,57.0,52.0,61.0,50.0,54.0,40.0,37.0,35.0,48.0,44.0,45.0,44.0,44.0,49.0,61.0,72.0,61.0,54.0,30.0,45.0,65.0,58.0,52.0,55.0,43.0,58.0,47.0,41.0,49.0,45.0,27.0,41.0,33.0,59.0,39.0,39.0,55.0,34.0,46.0,46.0,35.0,25.0,35.0,26.0,19.0,24.0,33.0,31.0,19.0,16.0,13.0,10.0,7.0,5.0,4.0,16.0 C84107,22.0,22.0,21.0,23.0,25.0,25.0,25.0,27.0,20.0,35.0,30.0,30.0,26.0,44.0,42.0,38.0,47.0,44.0,43.0,25.0,32.0,33.0,43.0,34.0,40.0,36.0,29.0,34.0,34.0,27.0,25.0,37.0,37.0,38.0,39.0,41.0,35.0,50.0,33.0,30.0,47.0,38.0,44.0,35.0,45.0,58.0,43.0,32.0,38.0,46.0,50.0,48.0,45.0,52.0,55.0,57.0,40.0,49.0,52.0,52.0,63.0,58.0,59.0,63.0,49.0,52.0,42.0,44.0,37.0,38.0,47.0,47.0,44.0,45.0,42.0,42.0,47.0,49.0,52.0,37.0,37.0,33.0,31.0,26.0,22.0,21.0,27.0,21.0,13.0,16.0,12.0,7.0,6.0,1.0,7.0,9.0 C84112,21.0,16.0,23.0,21.0,13.0,16.0,22.0,16.0,15.0,29.0,21.0,18.0,24.0,24.0,30.0,18.0,19.0,24.0,16.0,12.0,14.0,20.0,14.0,13.0,13.0,14.0,18.0,20.0,23.0,18.0,27.0,25.0,27.0,30.0,18.0,34.0,26.0,31.0,33.0,23.0,30.0,29.0,25.0,22.0,34.0,20.0,19.0,22.0,27.0,19.0,24.0,18.0,18.0,23.0,23.0,21.0,19.0,29.0,21.0,31.0,18.0,27.0,32.0,22.0,26.0,24.0,23.0,20.0,22.0,12.0,24.0,25.0,16.0,18.0,24.0,21.0,19.0,30.0,30.0,11.0,11.0,12.0,16.0,12.0,12.0,7.0,7.0,9.0,8.0,6.0,12.0,4.0,6.0,6.0,2.0,6.0 C84113,27.0,32.0,31.0,38.0,35.0,32.0,47.0,33.0,47.0,39.0,39.0,40.0,38.0,43.0,33.0,33.0,29.0,28.0,33.0,22.0,26.0,28.0,19.0,27.0,41.0,27.0,29.0,48.0,44.0,45.0,38.0,37.0,58.0,40.0,65.0,55.0,47.0,41.0,47.0,46.0,56.0,36.0,47.0,56.0,39.0,37.0,39.0,42.0,37.0,47.0,32.0,48.0,52.0,42.0,44.0,57.0,54.0,49.0,55.0,63.0,50.0,51.0,54.0,52.0,55.0,61.0,43.0,47.0,44.0,31.0,50.0,47.0,39.0,48.0,36.0,53.0,42.0,52.0,36.0,56.0,44.0,30.0,35.0,25.0,24.0,27.0,17.0,16.0,20.0,23.0,9.0,4.0,8.0,7.0,4.0,19.0 C84115,44.0,44.0,56.0,62.0,59.0,50.0,57.0,54.0,52.0,47.0,49.0,45.0,54.0,37.0,42.0,53.0,50.0,58.0,27.0,37.0,33.0,33.0,38.0,37.0,58.0,57.0,50.0,50.0,64.0,75.0,56.0,71.0,79.0,92.0,87.0,73.0,90.0,78.0,81.0,74.0,55.0,67.0,74.0,51.0,54.0,53.0,50.0,54.0,52.0,56.0,54.0,61.0,59.0,67.0,71.0,66.0,66.0,61.0,77.0,71.0,65.0,65.0,76.0,62.0,61.0,57.0,63.0,54.0,59.0,51.0,42.0,44.0,57.0,44.0,38.0,42.0,43.0,37.0,43.0,42.0,46.0,41.0,39.0,30.0,23.0,20.0,25.0,22.0,19.0,16.0,24.0,11.0,9.0,4.0,7.0,16.0 C84116,33.0,27.0,29.0,38.0,39.0,51.0,45.0,46.0,66.0,63.0,46.0,57.0,60.0,66.0,58.0,62.0,68.0,59.0,46.0,51.0,53.0,68.0,42.0,59.0,55.0,55.0,49.0,48.0,52.0,49.0,50.0,59.0,57.0,68.0,71.0,51.0,77.0,52.0,73.0,53.0,73.0,65.0,57.0,64.0,70.0,59.0,69.0,44.0,53.0,53.0,53.0,51.0,56.0,54.0,61.0,52.0,60.0,48.0,57.0,66.0,49.0,58.0,51.0,59.0,45.0,41.0,46.0,41.0,34.0,52.0,34.0,31.0,37.0,29.0,36.0,36.0,42.0,26.0,33.0,32.0,33.0,19.0,17.0,13.0,14.0,12.0,12.0,9.0,6.0,10.0,7.0,5.0,8.0,2.0,4.0,10.0 C84117,43.0,35.0,37.0,33.0,40.0,33.0,29.0,34.0,36.0,25.0,31.0,30.0,23.0,22.0,25.0,22.0,30.0,33.0,254.0,895.0,1199.0,1243.0,991.0,848.0,643.0,265.0,210.0,187.0,143.0,128.0,111.0,99.0,82.0,81.0,73.0,83.0,41.0,46.0,44.0,49.0,37.0,34.0,34.0,40.0,23.0,28.0,27.0,26.0,21.0,20.0,20.0,19.0,17.0,21.0,32.0,20.0,24.0,22.0,22.0,27.0,32.0,22.0,19.0,14.0,21.0,20.0,15.0,18.0,13.0,10.0,11.0,15.0,8.0,13.0,10.0,9.0,6.0,10.0,3.0,7.0,5.0,4.0,7.0,6.0,2.0,4.0,2.0,2.0,2.0,3.0,2.0,2.0,,3.0,1.0,1.0 C84120,51.0,66.0,67.0,74.0,70.0,71.0,79.0,94.0,94.0,88.0,93.0,94.0,110.0,103.0,101.0,100.0,100.0,101.0,78.0,71.0,76.0,78.0,74.0,63.0,69.0,80.0,84.0,96.0,106.0,94.0,104.0,103.0,100.0,95.0,120.0,116.0,98.0,115.0,137.0,128.0,111.0,137.0,112.0,114.0,124.0,115.0,100.0,88.0,104.0,94.0,110.0,99.0,122.0,126.0,100.0,106.0,108.0,131.0,92.0,112.0,107.0,82.0,99.0,103.0,78.0,83.0,74.0,83.0,74.0,89.0,75.0,87.0,68.0,85.0,72.0,83.0,67.0,94.0,82.0,67.0,70.0,57.0,59.0,54.0,39.0,55.0,49.0,36.0,37.0,33.0,34.0,14.0,26.0,13.0,11.0,45.0 C84122,57.0,56.0,45.0,80.0,67.0,69.0,72.0,76.0,72.0,80.0,92.0,78.0,79.0,76.0,76.0,61.0,78.0,66.0,69.0,57.0,40.0,61.0,55.0,63.0,67.0,55.0,57.0,64.0,61.0,64.0,65.0,82.0,83.0,68.0,100.0,82.0,93.0,91.0,75.0,90.0,72.0,95.0,93.0,83.0,97.0,89.0,73.0,63.0,66.0,64.0,76.0,63.0,73.0,85.0,65.0,65.0,71.0,48.0,73.0,67.0,54.0,60.0,64.0,64.0,43.0,47.0,48.0,51.0,33.0,43.0,53.0,41.0,40.0,31.0,43.0,41.0,44.0,41.0,39.0,28.0,43.0,40.0,28.0,21.0,26.0,23.0,21.0,20.0,14.0,14.0,8.0,10.0,6.0,6.0,2.0,12.0 C84123,13.0,21.0,20.0,25.0,27.0,12.0,27.0,17.0,23.0,26.0,19.0,30.0,29.0,23.0,25.0,20.0,26.0,34.0,18.0,21.0,20.0,25.0,18.0,23.0,29.0,30.0,26.0,24.0,25.0,29.0,39.0,34.0,36.0,31.0,29.0,26.0,21.0,23.0,31.0,23.0,25.0,32.0,28.0,23.0,25.0,19.0,28.0,16.0,17.0,25.0,20.0,32.0,28.0,28.0,26.0,30.0,42.0,38.0,33.0,27.0,39.0,39.0,35.0,38.0,21.0,37.0,30.0,22.0,22.0,22.0,29.0,18.0,24.0,31.0,18.0,27.0,25.0,28.0,26.0,16.0,23.0,15.0,7.0,10.0,9.0,8.0,11.0,6.0,6.0,4.0,3.0,4.0,2.0,3.0,2.0,2.0 C84129,37.0,54.0,49.0,49.0,45.0,75.0,51.0,51.0,52.0,57.0,67.0,59.0,71.0,61.0,62.0,54.0,62.0,54.0,50.0,44.0,35.0,58.0,48.0,55.0,43.0,38.0,54.0,43.0,76.0,57.0,62.0,71.0,81.0,84.0,82.0,85.0,85.0,59.0,76.0,57.0,79.0,77.0,63.0,70.0,52.0,64.0,44.0,49.0,47.0,61.0,69.0,67.0,60.0,73.0,49.0,65.0,63.0,74.0,75.0,66.0,74.0,66.0,69.0,75.0,59.0,58.0,64.0,52.0,50.0,61.0,43.0,55.0,59.0,45.0,51.0,57.0,35.0,51.0,58.0,38.0,45.0,37.0,31.0,31.0,31.0,21.0,25.0,23.0,22.0,18.0,9.0,9.0,9.0,5.0,7.0,16.0 C84131,42.0,44.0,34.0,44.0,40.0,43.0,47.0,52.0,47.0,34.0,50.0,52.0,59.0,35.0,56.0,52.0,49.0,57.0,41.0,36.0,36.0,47.0,29.0,37.0,42.0,46.0,44.0,43.0,47.0,47.0,68.0,65.0,59.0,71.0,63.0,70.0,54.0,71.0,52.0,61.0,54.0,54.0,62.0,38.0,51.0,45.0,46.0,49.0,51.0,46.0,51.0,71.0,58.0,43.0,62.0,45.0,65.0,71.0,50.0,60.0,68.0,71.0,88.0,60.0,46.0,56.0,46.0,49.0,48.0,43.0,52.0,46.0,47.0,36.0,35.0,52.0,52.0,65.0,43.0,30.0,31.0,24.0,27.0,26.0,19.0,31.0,12.0,14.0,13.0,12.0,12.0,5.0,4.0,6.0,1.0,7.0 C84136,32.0,23.0,24.0,25.0,17.0,25.0,32.0,29.0,39.0,30.0,21.0,39.0,31.0,25.0,32.0,29.0,27.0,19.0,32.0,25.0,35.0,33.0,44.0,44.0,49.0,54.0,48.0,49.0,35.0,46.0,37.0,34.0,30.0,29.0,24.0,39.0,34.0,36.0,33.0,27.0,32.0,37.0,36.0,38.0,41.0,24.0,20.0,25.0,25.0,22.0,21.0,41.0,25.0,28.0,28.0,24.0,19.0,21.0,25.0,24.0,27.0,18.0,12.0,28.0,26.0,28.0,23.0,26.0,15.0,16.0,13.0,14.0,11.0,13.0,12.0,12.0,10.0,11.0,11.0,8.0,7.0,8.0,4.0,5.0,9.0,2.0,7.0,3.0,2.0,1.0,2.0,1.0,3.0,,2.0,2.0 C84140,16.0,11.0,25.0,19.0,11.0,20.0,14.0,22.0,19.0,15.0,17.0,20.0,23.0,34.0,23.0,32.0,21.0,24.0,21.0,20.0,20.0,24.0,23.0,29.0,18.0,30.0,32.0,29.0,21.0,34.0,27.0,24.0,33.0,33.0,26.0,34.0,22.0,28.0,41.0,26.0,35.0,23.0,31.0,19.0,26.0,31.0,29.0,31.0,31.0,19.0,29.0,28.0,30.0,52.0,39.0,24.0,37.0,42.0,39.0,40.0,38.0,44.0,43.0,33.0,48.0,39.0,43.0,29.0,31.0,39.0,27.0,39.0,35.0,25.0,26.0,21.0,29.0,32.0,33.0,28.0,20.0,20.0,23.0,20.0,10.0,11.0,10.0,15.0,16.0,6.0,5.0,5.0,4.0,1.0,,6.0 C84142,23.0,30.0,32.0,26.0,20.0,24.0,29.0,34.0,19.0,28.0,22.0,23.0,17.0,32.0,29.0,24.0,31.0,19.0,21.0,19.0,20.0,25.0,28.0,27.0,23.0,29.0,32.0,33.0,29.0,30.0,37.0,28.0,31.0,39.0,29.0,37.0,30.0,26.0,35.0,24.0,37.0,31.0,34.0,21.0,29.0,25.0,24.0,37.0,25.0,24.0,23.0,36.0,40.0,48.0,42.0,36.0,36.0,41.0,33.0,41.0,43.0,48.0,42.0,44.0,37.0,41.0,32.0,34.0,32.0,44.0,31.0,21.0,25.0,32.0,29.0,31.0,37.0,29.0,26.0,23.0,29.0,19.0,16.0,17.0,16.0,16.0,17.0,10.0,6.0,9.0,4.0,5.0,9.0,2.0,1.0,6.0 C84144,27.0,27.0,23.0,29.0,23.0,21.0,27.0,23.0,30.0,33.0,25.0,28.0,22.0,29.0,34.0,31.0,26.0,31.0,28.0,37.0,35.0,42.0,43.0,55.0,57.0,54.0,72.0,71.0,58.0,44.0,57.0,58.0,34.0,45.0,50.0,50.0,45.0,42.0,46.0,36.0,52.0,38.0,27.0,29.0,29.0,34.0,24.0,25.0,22.0,18.0,32.0,32.0,27.0,19.0,22.0,25.0,24.0,20.0,25.0,26.0,18.0,15.0,23.0,11.0,16.0,22.0,12.0,16.0,19.0,16.0,11.0,10.0,11.0,10.0,14.0,9.0,10.0,13.0,4.0,12.0,12.0,8.0,6.0,5.0,3.0,7.0,4.0,2.0,11.0,3.0,3.0,5.0,1.0,2.0,3.0,3.0 C84150,25.0,31.0,33.0,21.0,20.0,22.0,21.0,23.0,27.0,24.0,25.0,22.0,27.0,33.0,21.0,29.0,16.0,25.0,22.0,24.0,17.0,26.0,20.0,27.0,28.0,24.0,46.0,41.0,45.0,40.0,43.0,47.0,40.0,41.0,35.0,38.0,31.0,43.0,33.0,37.0,47.0,40.0,24.0,30.0,28.0,38.0,28.0,26.0,23.0,35.0,17.0,25.0,26.0,36.0,31.0,37.0,40.0,32.0,34.0,38.0,35.0,37.0,31.0,22.0,28.0,21.0,23.0,26.0,29.0,25.0,22.0,13.0,10.0,21.0,15.0,12.0,12.0,21.0,21.0,19.0,22.0,12.0,20.0,15.0,14.0,14.0,5.0,9.0,9.0,11.0,6.0,7.0,3.0,6.0,3.0,5.0 C84151,24.0,21.0,28.0,17.0,25.0,43.0,26.0,32.0,32.0,24.0,27.0,26.0,12.0,25.0,23.0,22.0,29.0,29.0,26.0,23.0,13.0,18.0,21.0,16.0,21.0,25.0,22.0,36.0,34.0,26.0,33.0,33.0,42.0,31.0,37.0,20.0,38.0,50.0,35.0,27.0,30.0,27.0,26.0,26.0,29.0,25.0,28.0,16.0,18.0,15.0,21.0,15.0,14.0,14.0,21.0,12.0,16.0,23.0,12.0,12.0,15.0,14.0,15.0,6.0,10.0,6.0,9.0,9.0,7.0,8.0,5.0,6.0,4.0,4.0,5.0,8.0,7.0,5.0,5.0,8.0,3.0,3.0,2.0,6.0,5.0,5.0,2.0,3.0,3.0,1.0,2.0,1.0,,3.0,, C84605,67.0,61.0,58.0,69.0,69.0,71.0,82.0,92.0,71.0,88.0,82.0,118.0,111.0,122.0,122.0,111.0,116.0,114.0,116.0,71.0,63.0,84.0,75.0,89.0,100.0,89.0,91.0,90.0,95.0,93.0,102.0,88.0,97.0,101.0,99.0,98.0,106.0,107.0,119.0,111.0,117.0,118.0,116.0,123.0,139.0,121.0,126.0,125.0,125.0,137.0,128.0,126.0,137.0,147.0,137.0,131.0,138.0,133.0,135.0,126.0,127.0,145.0,111.0,114.0,112.0,119.0,98.0,94.0,95.0,100.0,77.0,98.0,91.0,82.0,82.0,80.0,76.0,99.0,74.0,54.0,49.0,68.0,47.0,40.0,50.0,40.0,38.0,30.0,24.0,32.0,29.0,20.0,16.0,10.0,15.0,32.0 C84613,53.0,54.0,68.0,66.0,77.0,60.0,72.0,59.0,70.0,73.0,63.0,73.0,76.0,72.0,83.0,67.0,69.0,90.0,57.0,59.0,56.0,45.0,47.0,62.0,70.0,62.0,69.0,79.0,71.0,75.0,92.0,82.0,96.0,93.0,88.0,97.0,94.0,92.0,72.0,94.0,89.0,66.0,80.0,82.0,80.0,82.0,84.0,77.0,77.0,71.0,75.0,77.0,81.0,92.0,95.0,96.0,109.0,94.0,93.0,72.0,123.0,86.0,91.0,79.0,78.0,62.0,55.0,67.0,63.0,75.0,61.0,63.0,43.0,59.0,63.0,72.0,59.0,80.0,60.0,37.0,41.0,50.0,38.0,37.0,28.0,30.0,36.0,16.0,21.0,17.0,13.0,9.0,10.0,12.0,4.0,17.0 C84619,26.0,29.0,33.0,43.0,27.0,43.0,37.0,48.0,49.0,26.0,49.0,52.0,37.0,49.0,43.0,39.0,54.0,48.0,42.0,28.0,34.0,29.0,28.0,28.0,34.0,35.0,26.0,53.0,67.0,48.0,54.0,69.0,64.0,67.0,73.0,63.0,64.0,46.0,59.0,58.0,69.0,67.0,48.0,61.0,47.0,53.0,46.0,51.0,52.0,47.0,47.0,35.0,32.0,53.0,46.0,48.0,41.0,47.0,47.0,39.0,45.0,43.0,44.0,33.0,49.0,36.0,37.0,21.0,29.0,25.0,30.0,32.0,27.0,26.0,23.0,19.0,22.0,31.0,29.0,16.0,13.0,16.0,15.0,13.0,7.0,15.0,13.0,12.0,13.0,6.0,7.0,6.0,6.0,1.0,3.0,6.0 C84621,22.0,22.0,21.0,31.0,36.0,28.0,22.0,25.0,36.0,50.0,35.0,35.0,40.0,46.0,32.0,35.0,44.0,33.0,26.0,16.0,22.0,27.0,24.0,30.0,36.0,36.0,54.0,42.0,32.0,28.0,39.0,44.0,29.0,26.0,37.0,42.0,47.0,40.0,50.0,33.0,35.0,42.0,46.0,46.0,36.0,46.0,42.0,55.0,33.0,34.0,35.0,35.0,39.0,29.0,30.0,25.0,33.0,27.0,24.0,23.0,14.0,18.0,13.0,25.0,17.0,17.0,13.0,8.0,13.0,17.0,17.0,14.0,15.0,10.0,5.0,12.0,17.0,10.0,13.0,10.0,8.0,15.0,7.0,11.0,6.0,7.0,9.0,9.0,7.0,5.0,5.0,2.0,5.0,5.0,4.0,13.0 C84624,19.0,32.0,34.0,29.0,29.0,17.0,27.0,27.0,35.0,22.0,29.0,31.0,34.0,38.0,41.0,25.0,23.0,25.0,36.0,23.0,20.0,23.0,31.0,21.0,25.0,28.0,34.0,37.0,25.0,41.0,45.0,33.0,46.0,28.0,40.0,34.0,47.0,46.0,50.0,34.0,41.0,38.0,39.0,30.0,29.0,42.0,36.0,30.0,33.0,37.0,31.0,34.0,37.0,52.0,45.0,49.0,43.0,32.0,55.0,52.0,49.0,51.0,37.0,53.0,31.0,34.0,30.0,34.0,27.0,25.0,24.0,24.0,21.0,33.0,28.0,34.0,30.0,37.0,31.0,20.0,19.0,13.0,15.0,12.0,15.0,9.0,9.0,6.0,6.0,4.0,3.0,3.0,3.0,6.0,4.0,6.0 C84628,46.0,57.0,49.0,62.0,46.0,61.0,57.0,51.0,50.0,66.0,47.0,43.0,60.0,57.0,53.0,48.0,52.0,63.0,42.0,43.0,41.0,28.0,46.0,57.0,69.0,73.0,67.0,72.0,70.0,70.0,74.0,70.0,70.0,80.0,57.0,80.0,67.0,72.0,71.0,73.0,61.0,62.0,47.0,47.0,51.0,41.0,61.0,41.0,26.0,49.0,28.0,32.0,43.0,34.0,38.0,35.0,37.0,39.0,41.0,31.0,26.0,25.0,20.0,19.0,23.0,11.0,19.0,16.0,20.0,16.0,24.0,13.0,10.0,12.0,10.0,10.0,8.0,7.0,8.0,4.0,9.0,6.0,5.0,6.0,7.0,6.0,6.0,4.0,1.0,1.0,1.0,1.0,1.0,2.0,,7.0 C84629,20.0,26.0,21.0,20.0,24.0,27.0,28.0,20.0,23.0,28.0,30.0,42.0,24.0,29.0,21.0,19.0,28.0,19.0,39.0,32.0,24.0,25.0,20.0,23.0,32.0,27.0,23.0,33.0,33.0,31.0,36.0,34.0,27.0,34.0,36.0,36.0,26.0,32.0,25.0,36.0,21.0,17.0,24.0,36.0,38.0,32.0,28.0,22.0,30.0,25.0,23.0,26.0,23.0,31.0,28.0,23.0,33.0,28.0,24.0,21.0,28.0,24.0,32.0,21.0,30.0,35.0,33.0,25.0,17.0,26.0,25.0,15.0,24.0,15.0,21.0,11.0,16.0,18.0,19.0,15.0,12.0,15.0,14.0,12.0,7.0,7.0,4.0,8.0,6.0,3.0,5.0,1.0,3.0,1.0,2.0,5.0 C84637,38.0,50.0,43.0,53.0,50.0,65.0,57.0,51.0,57.0,57.0,58.0,54.0,48.0,69.0,58.0,34.0,66.0,53.0,60.0,50.0,51.0,45.0,43.0,35.0,45.0,68.0,58.0,63.0,82.0,84.0,51.0,81.0,66.0,75.0,90.0,67.0,74.0,93.0,61.0,56.0,87.0,68.0,66.0,68.0,63.0,53.0,63.0,49.0,52.0,52.0,48.0,51.0,55.0,63.0,64.0,57.0,62.0,69.0,69.0,55.0,65.0,71.0,59.0,56.0,61.0,46.0,53.0,40.0,41.0,47.0,39.0,43.0,32.0,41.0,33.0,37.0,45.0,38.0,41.0,21.0,33.0,32.0,32.0,16.0,21.0,14.0,15.0,17.0,9.0,13.0,10.0,2.0,7.0,5.0,1.0,7.0 C84646,14.0,27.0,15.0,27.0,23.0,27.0,17.0,25.0,37.0,32.0,23.0,30.0,43.0,38.0,42.0,45.0,40.0,39.0,38.0,30.0,32.0,27.0,21.0,26.0,23.0,30.0,22.0,37.0,35.0,24.0,24.0,23.0,27.0,34.0,36.0,25.0,25.0,41.0,29.0,29.0,36.0,36.0,20.0,27.0,33.0,36.0,38.0,46.0,32.0,41.0,46.0,47.0,55.0,48.0,52.0,59.0,48.0,45.0,59.0,49.0,55.0,71.0,53.0,43.0,42.0,56.0,48.0,47.0,34.0,40.0,47.0,49.0,42.0,48.0,44.0,52.0,42.0,63.0,62.0,34.0,56.0,39.0,22.0,25.0,27.0,28.0,22.0,23.0,20.0,16.0,10.0,7.0,8.0,9.0,3.0,14.0 C84654,25.0,15.0,21.0,22.0,18.0,22.0,16.0,25.0,22.0,18.0,16.0,23.0,29.0,28.0,24.0,25.0,28.0,29.0,21.0,24.0,25.0,27.0,22.0,14.0,15.0,19.0,25.0,23.0,27.0,23.0,26.0,35.0,29.0,23.0,32.0,41.0,27.0,29.0,29.0,26.0,30.0,21.0,20.0,25.0,31.0,21.0,26.0,26.0,22.0,26.0,26.0,29.0,25.0,29.0,31.0,39.0,37.0,23.0,33.0,35.0,43.0,32.0,33.0,41.0,32.0,33.0,23.0,25.0,25.0,28.0,27.0,22.0,39.0,25.0,23.0,26.0,25.0,26.0,41.0,15.0,24.0,12.0,20.0,14.0,13.0,11.0,10.0,1.0,11.0,1.0,7.0,3.0,2.0,4.0,3.0,4.0 C84656,36.0,42.0,28.0,39.0,42.0,47.0,50.0,44.0,40.0,42.0,46.0,39.0,37.0,45.0,69.0,47.0,54.0,46.0,39.0,37.0,41.0,29.0,44.0,31.0,44.0,40.0,37.0,45.0,43.0,34.0,52.0,53.0,52.0,58.0,50.0,43.0,66.0,65.0,53.0,48.0,56.0,60.0,49.0,56.0,62.0,50.0,43.0,43.0,49.0,50.0,48.0,62.0,46.0,58.0,71.0,63.0,77.0,66.0,68.0,63.0,56.0,64.0,63.0,80.0,55.0,60.0,63.0,72.0,49.0,46.0,47.0,52.0,42.0,45.0,43.0,41.0,52.0,44.0,35.0,35.0,37.0,28.0,29.0,16.0,14.0,18.0,16.0,22.0,19.0,9.0,9.0,13.0,10.0,6.0,3.0,16.0 C84658,36.0,39.0,49.0,66.0,63.0,45.0,73.0,78.0,87.0,79.0,66.0,58.0,67.0,62.0,77.0,70.0,65.0,58.0,72.0,55.0,49.0,46.0,50.0,48.0,47.0,45.0,61.0,47.0,64.0,72.0,71.0,67.0,62.0,72.0,84.0,90.0,77.0,66.0,67.0,76.0,74.0,62.0,76.0,62.0,73.0,68.0,52.0,52.0,43.0,45.0,49.0,57.0,54.0,67.0,65.0,68.0,77.0,61.0,92.0,75.0,73.0,80.0,71.0,74.0,83.0,70.0,73.0,54.0,60.0,73.0,59.0,57.0,56.0,46.0,44.0,46.0,35.0,65.0,42.0,42.0,38.0,36.0,30.0,19.0,24.0,24.0,22.0,19.0,17.0,7.0,8.0,14.0,6.0,9.0,6.0,6.0 C84660,16.0,18.0,21.0,19.0,21.0,15.0,15.0,22.0,19.0,22.0,16.0,23.0,18.0,22.0,28.0,26.0,26.0,27.0,29.0,21.0,21.0,17.0,10.0,18.0,17.0,5.0,16.0,15.0,19.0,15.0,13.0,21.0,21.0,25.0,18.0,27.0,16.0,21.0,22.0,22.0,25.0,21.0,24.0,25.0,26.0,18.0,32.0,25.0,26.0,28.0,27.0,34.0,29.0,40.0,42.0,41.0,46.0,35.0,36.0,41.0,36.0,50.0,34.0,36.0,28.0,39.0,29.0,34.0,33.0,34.0,27.0,32.0,38.0,39.0,29.0,44.0,23.0,29.0,33.0,24.0,24.0,24.0,16.0,19.0,12.0,10.0,8.0,10.0,5.0,3.0,6.0,2.0,1.0,5.0,2.0,4.0 C84664,24.0,32.0,27.0,35.0,19.0,24.0,21.0,27.0,36.0,34.0,31.0,36.0,31.0,29.0,17.0,21.0,23.0,23.0,24.0,17.0,32.0,16.0,25.0,31.0,30.0,49.0,40.0,33.0,50.0,56.0,76.0,59.0,51.0,69.0,63.0,72.0,56.0,56.0,65.0,54.0,55.0,52.0,46.0,53.0,40.0,39.0,33.0,34.0,37.0,31.0,24.0,29.0,26.0,28.0,35.0,34.0,34.0,32.0,34.0,30.0,31.0,30.0,39.0,25.0,34.0,20.0,22.0,23.0,19.0,30.0,20.0,18.0,17.0,18.0,15.0,13.0,19.0,7.0,15.0,12.0,14.0,13.0,3.0,9.0,9.0,1.0,5.0,7.0,5.0,5.0,2.0,2.0,2.0,6.0,,3.0 C84667,22.0,43.0,33.0,44.0,28.0,29.0,35.0,30.0,38.0,25.0,36.0,31.0,29.0,22.0,21.0,24.0,27.0,25.0,24.0,24.0,18.0,26.0,29.0,16.0,25.0,27.0,35.0,48.0,46.0,45.0,49.0,56.0,39.0,56.0,54.0,53.0,38.0,56.0,48.0,50.0,36.0,36.0,28.0,41.0,45.0,34.0,38.0,22.0,35.0,25.0,32.0,31.0,42.0,39.0,47.0,45.0,35.0,40.0,37.0,40.0,47.0,45.0,34.0,33.0,33.0,35.0,39.0,35.0,29.0,23.0,29.0,17.0,27.0,32.0,31.0,30.0,25.0,38.0,31.0,22.0,28.0,14.0,15.0,19.0,10.0,17.0,9.0,7.0,7.0,6.0,4.0,9.0,5.0,2.0,5.0,6.0 C84676,53.0,37.0,51.0,53.0,54.0,41.0,57.0,51.0,62.0,49.0,57.0,59.0,63.0,60.0,49.0,67.0,44.0,55.0,36.0,54.0,59.0,31.0,56.0,60.0,60.0,63.0,65.0,70.0,76.0,75.0,84.0,84.0,81.0,84.0,75.0,70.0,74.0,85.0,62.0,62.0,54.0,57.0,59.0,51.0,59.0,41.0,34.0,50.0,44.0,46.0,51.0,35.0,42.0,38.0,40.0,43.0,33.0,29.0,22.0,20.0,20.0,28.0,17.0,24.0,20.0,13.0,15.0,22.0,17.0,8.0,9.0,17.0,7.0,16.0,12.0,13.0,9.0,10.0,7.0,3.0,6.0,5.0,5.0,4.0,10.0,5.0,3.0,1.0,2.0,4.0,2.0,5.0,,1.0,2.0,4.0 C84679,22.0,25.0,20.0,32.0,10.0,22.0,29.0,29.0,30.0,34.0,27.0,22.0,21.0,30.0,24.0,19.0,22.0,27.0,14.0,20.0,23.0,24.0,26.0,35.0,26.0,39.0,44.0,43.0,40.0,38.0,34.0,38.0,45.0,47.0,37.0,39.0,47.0,41.0,41.0,27.0,37.0,31.0,22.0,23.0,25.0,37.0,37.0,27.0,31.0,20.0,22.0,24.0,27.0,30.0,25.0,32.0,33.0,23.0,29.0,20.0,20.0,29.0,28.0,27.0,18.0,17.0,20.0,14.0,13.0,9.0,9.0,7.0,14.0,15.0,8.0,10.0,14.0,9.0,4.0,8.0,6.0,6.0,5.0,4.0,,5.0,6.0,1.0,7.0,2.0,1.0,3.0,2.0,1.0,2.0,2.0 C84682,17.0,17.0,17.0,27.0,16.0,29.0,16.0,25.0,18.0,22.0,9.0,28.0,25.0,26.0,18.0,16.0,23.0,15.0,19.0,14.0,14.0,19.0,27.0,22.0,25.0,41.0,37.0,52.0,55.0,56.0,47.0,45.0,51.0,62.0,47.0,38.0,46.0,41.0,34.0,39.0,38.0,41.0,25.0,30.0,44.0,42.0,26.0,27.0,30.0,33.0,36.0,32.0,35.0,24.0,47.0,29.0,29.0,41.0,31.0,40.0,33.0,34.0,24.0,26.0,23.0,20.0,22.0,27.0,24.0,15.0,18.0,24.0,16.0,14.0,9.0,16.0,15.0,12.0,9.0,10.0,12.0,8.0,8.0,6.0,12.0,8.0,7.0,4.0,8.0,4.0,3.0,2.0,2.0,2.0,2.0,3.0 C84683,55.0,52.0,57.0,61.0,79.0,51.0,69.0,63.0,70.0,54.0,60.0,67.0,57.0,53.0,74.0,63.0,54.0,56.0,71.0,76.0,95.0,80.0,87.0,118.0,164.0,128.0,115.0,160.0,140.0,132.0,97.0,138.0,118.0,117.0,121.0,108.0,100.0,103.0,75.0,82.0,87.0,81.0,70.0,73.0,73.0,63.0,66.0,68.0,43.0,45.0,50.0,61.0,47.0,59.0,55.0,45.0,45.0,48.0,52.0,37.0,41.0,51.0,44.0,34.0,40.0,28.0,25.0,34.0,36.0,29.0,30.0,19.0,31.0,19.0,21.0,31.0,16.0,20.0,18.0,14.0,16.0,9.0,10.0,12.0,12.0,12.0,9.0,7.0,6.0,6.0,3.0,5.0,4.0,1.0,,2.0 C84691,50.0,65.0,50.0,59.0,62.0,72.0,69.0,66.0,63.0,71.0,70.0,69.0,62.0,83.0,68.0,82.0,73.0,71.0,66.0,55.0,76.0,64.0,62.0,87.0,86.0,61.0,73.0,81.0,75.0,85.0,65.0,75.0,76.0,60.0,71.0,76.0,75.0,73.0,53.0,63.0,64.0,64.0,66.0,55.0,55.0,55.0,61.0,48.0,37.0,46.0,52.0,28.0,37.0,36.0,38.0,36.0,26.0,30.0,20.0,32.0,17.0,24.0,16.0,23.0,18.0,25.0,23.0,18.0,23.0,12.0,10.0,11.0,8.0,8.0,10.0,11.0,11.0,14.0,9.0,6.0,5.0,3.0,7.0,2.0,5.0,9.0,5.0,3.0,1.0,1.0,2.0,3.0,2.0,1.0,2.0,2.0 C84692,8.0,8.0,11.0,9.0,9.0,6.0,12.0,9.0,15.0,17.0,10.0,7.0,15.0,17.0,10.0,16.0,8.0,10.0,7.0,11.0,5.0,8.0,9.0,13.0,9.0,8.0,9.0,6.0,11.0,7.0,10.0,17.0,13.0,11.0,14.0,14.0,16.0,11.0,16.0,15.0,16.0,13.0,13.0,9.0,9.0,16.0,8.0,13.0,12.0,9.0,17.0,14.0,18.0,20.0,24.0,26.0,21.0,20.0,26.0,24.0,33.0,32.0,22.0,22.0,27.0,22.0,18.0,20.0,21.0,29.0,24.0,23.0,12.0,20.0,18.0,22.0,21.0,22.0,22.0,12.0,27.0,18.0,10.0,10.0,11.0,8.0,9.0,9.0,8.0,8.0,4.0,6.0,4.0,2.0,1.0,1.0 C84693,13.0,16.0,24.0,31.0,24.0,18.0,20.0,31.0,20.0,31.0,39.0,35.0,20.0,31.0,37.0,27.0,26.0,36.0,28.0,21.0,35.0,25.0,23.0,27.0,25.0,24.0,29.0,29.0,23.0,29.0,32.0,28.0,32.0,44.0,26.0,49.0,27.0,42.0,36.0,40.0,30.0,40.0,41.0,32.0,31.0,33.0,33.0,38.0,44.0,25.0,29.0,25.0,35.0,40.0,30.0,26.0,37.0,25.0,29.0,43.0,35.0,39.0,25.0,35.0,27.0,33.0,28.0,30.0,22.0,18.0,21.0,28.0,28.0,26.0,18.0,18.0,18.0,26.0,22.0,11.0,19.0,11.0,9.0,8.0,18.0,15.0,11.0,9.0,11.0,10.0,8.0,7.0,1.0,4.0,2.0,7.0 C84694,18.0,20.0,31.0,27.0,28.0,40.0,29.0,34.0,33.0,42.0,37.0,35.0,39.0,34.0,21.0,31.0,37.0,36.0,41.0,29.0,34.0,25.0,17.0,18.0,27.0,32.0,21.0,30.0,29.0,26.0,30.0,27.0,37.0,36.0,34.0,39.0,32.0,31.0,42.0,38.0,35.0,41.0,33.0,19.0,36.0,42.0,37.0,18.0,37.0,25.0,27.0,33.0,24.0,35.0,32.0,22.0,33.0,20.0,21.0,23.0,34.0,25.0,21.0,24.0,21.0,21.0,23.0,16.0,20.0,14.0,12.0,12.0,10.0,4.0,10.0,13.0,21.0,17.0,9.0,16.0,14.0,6.0,13.0,8.0,9.0,14.0,8.0,13.0,3.0,2.0,3.0,3.0,2.0,1.0,,3.0 C84695,22.0,22.0,21.0,32.0,24.0,23.0,22.0,30.0,29.0,37.0,34.0,35.0,46.0,27.0,36.0,34.0,29.0,26.0,25.0,20.0,29.0,26.0,33.0,31.0,19.0,27.0,28.0,35.0,39.0,31.0,38.0,42.0,39.0,45.0,43.0,39.0,47.0,37.0,45.0,39.0,42.0,47.0,35.0,46.0,25.0,30.0,32.0,22.0,34.0,28.0,29.0,26.0,29.0,25.0,28.0,28.0,24.0,26.0,14.0,23.0,16.0,27.0,28.0,16.0,17.0,22.0,11.0,14.0,8.0,11.0,13.0,13.0,16.0,13.0,9.0,11.0,7.0,16.0,9.0,3.0,7.0,7.0,7.0,5.0,7.0,7.0,1.0,4.0,8.0,4.0,5.0,4.0,4.0,1.0,,3.0 C84696,16.0,25.0,18.0,23.0,30.0,21.0,21.0,28.0,36.0,33.0,43.0,29.0,26.0,20.0,33.0,24.0,31.0,23.0,37.0,21.0,17.0,17.0,22.0,22.0,20.0,27.0,21.0,26.0,26.0,23.0,21.0,34.0,36.0,24.0,40.0,37.0,35.0,34.0,48.0,32.0,37.0,44.0,36.0,25.0,40.0,44.0,43.0,48.0,29.0,28.0,23.0,19.0,41.0,41.0,43.0,36.0,43.0,35.0,29.0,31.0,32.0,51.0,35.0,38.0,36.0,32.0,33.0,35.0,27.0,28.0,23.0,22.0,17.0,21.0,21.0,26.0,31.0,31.0,34.0,17.0,16.0,20.0,14.0,18.0,10.0,10.0,11.0,7.0,6.0,7.0,7.0,6.0,4.0,2.0,1.0,6.0 C84703,28.0,32.0,31.0,27.0,29.0,44.0,30.0,44.0,41.0,41.0,48.0,53.0,43.0,63.0,63.0,44.0,48.0,53.0,39.0,26.0,16.0,43.0,26.0,29.0,33.0,30.0,42.0,42.0,31.0,27.0,36.0,28.0,41.0,43.0,36.0,43.0,57.0,34.0,38.0,49.0,49.0,62.0,70.0,61.0,60.0,72.0,57.0,55.0,49.0,47.0,48.0,47.0,59.0,56.0,45.0,58.0,48.0,50.0,55.0,33.0,51.0,42.0,53.0,40.0,39.0,36.0,22.0,29.0,24.0,22.0,25.0,26.0,25.0,28.0,16.0,15.0,25.0,19.0,23.0,26.0,15.0,19.0,12.0,11.0,19.0,15.0,11.0,7.0,11.0,8.0,6.0,7.0,8.0,8.0,6.0,13.0 C84704,34.0,33.0,34.0,32.0,44.0,41.0,39.0,58.0,64.0,44.0,59.0,60.0,59.0,56.0,61.0,63.0,60.0,71.0,56.0,45.0,40.0,43.0,45.0,42.0,51.0,47.0,53.0,54.0,53.0,52.0,53.0,48.0,59.0,55.0,70.0,75.0,63.0,60.0,44.0,69.0,59.0,55.0,64.0,56.0,51.0,68.0,52.0,56.0,46.0,41.0,54.0,46.0,45.0,34.0,42.0,37.0,41.0,53.0,34.0,34.0,44.0,34.0,35.0,45.0,35.0,37.0,28.0,32.0,24.0,26.0,24.0,27.0,18.0,27.0,23.0,21.0,27.0,25.0,18.0,20.0,29.0,16.0,15.0,10.0,8.0,9.0,10.0,8.0,11.0,8.0,8.0,5.0,7.0,4.0,2.0,9.0 C84705,37.0,39.0,39.0,56.0,48.0,56.0,58.0,50.0,36.0,60.0,46.0,47.0,49.0,52.0,45.0,46.0,44.0,39.0,34.0,40.0,26.0,40.0,37.0,43.0,43.0,47.0,51.0,60.0,63.0,49.0,85.0,79.0,67.0,71.0,93.0,64.0,67.0,59.0,74.0,56.0,73.0,52.0,48.0,44.0,63.0,42.0,48.0,53.0,56.0,44.0,50.0,40.0,54.0,56.0,49.0,44.0,46.0,46.0,44.0,50.0,51.0,51.0,45.0,49.0,47.0,45.0,43.0,33.0,24.0,28.0,29.0,28.0,32.0,25.0,29.0,22.0,29.0,37.0,34.0,25.0,15.0,25.0,25.0,12.0,24.0,10.0,15.0,13.0,17.0,9.0,10.0,6.0,4.0,4.0,1.0,6.0 C84714,,,1.0,1.0,,,,,,,,,,,,,,,149.0,389.0,412.0,462.0,299.0,246.0,213.0,139.0,130.0,94.0,55.0,45.0,22.0,16.0,16.0,8.0,17.0,9.0,6.0,8.0,7.0,6.0,6.0,1.0,7.0,1.0,,3.0,1.0,1.0,1.0,3.0,,,,,1.0,1.0,1.0,1.0,2.0,,,1.0,,,,2.0,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,, C84720,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,,,,,,,,,,1.0,,2.0,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, Y00026,13.0,14.0,24.0,13.0,16.0,18.0,16.0,7.0,17.0,16.0,15.0,21.0,13.0,17.0,16.0,10.0,16.0,17.0,14.0,16.0,6.0,18.0,12.0,17.0,14.0,21.0,23.0,15.0,26.0,17.0,25.0,25.0,16.0,27.0,30.0,24.0,24.0,22.0,14.0,16.0,15.0,17.0,13.0,20.0,22.0,18.0,15.0,16.0,13.0,17.0,11.0,15.0,15.0,15.0,26.0,18.0,19.0,15.0,14.0,12.0,15.0,19.0,17.0,17.0,13.0,10.0,21.0,8.0,14.0,12.0,9.0,11.0,9.0,4.0,8.0,6.0,4.0,9.0,3.0,3.0,5.0,2.0,2.0,3.0,6.0,6.0,3.0,3.0,2.0,1.0,2.0,2.0,3.0,1.0,,5.0 Y02847,44.0,22.0,30.0,35.0,27.0,28.0,21.0,33.0,34.0,27.0,31.0,19.0,11.0,18.0,20.0,23.0,21.0,37.0,102.0,133.0,171.0,140.0,185.0,219.0,221.0,195.0,203.0,205.0,133.0,141.0,126.0,117.0,121.0,131.0,123.0,93.0,86.0,72.0,80.0,59.0,45.0,51.0,54.0,40.0,48.0,35.0,37.0,44.0,29.0,22.0,27.0,28.0,23.0,28.0,27.0,22.0,22.0,27.0,31.0,15.0,19.0,23.0,27.0,19.0,11.0,25.0,14.0,14.0,12.0,12.0,8.0,10.0,13.0,7.0,8.0,3.0,3.0,2.0,6.0,5.0,3.0,,4.0,2.0,1.0,1.0,1.0,1.0,,1.0,,,,,, Y03124,20.0,38.0,31.0,40.0,31.0,40.0,55.0,43.0,50.0,34.0,39.0,44.0,48.0,42.0,52.0,49.0,45.0,54.0,36.0,36.0,32.0,28.0,32.0,31.0,24.0,31.0,27.0,32.0,32.0,41.0,48.0,40.0,30.0,47.0,50.0,51.0,50.0,49.0,53.0,34.0,57.0,42.0,47.0,42.0,39.0,41.0,39.0,41.0,29.0,34.0,32.0,36.0,24.0,39.0,33.0,40.0,34.0,36.0,30.0,38.0,32.0,26.0,30.0,34.0,29.0,25.0,28.0,25.0,30.0,24.0,18.0,25.0,14.0,15.0,26.0,18.0,23.0,17.0,31.0,17.0,12.0,18.0,16.0,16.0,5.0,10.0,9.0,15.0,6.0,4.0,5.0,4.0,4.0,2.0,2.0,8.0 Y05346,21.0,8.0,15.0,15.0,17.0,27.0,29.0,11.0,22.0,37.0,31.0,20.0,27.0,36.0,33.0,36.0,41.0,27.0,32.0,24.0,19.0,26.0,26.0,19.0,30.0,13.0,27.0,23.0,27.0,28.0,34.0,29.0,32.0,39.0,32.0,29.0,33.0,38.0,31.0,30.0,32.0,26.0,33.0,21.0,37.0,26.0,25.0,33.0,26.0,25.0,14.0,20.0,20.0,17.0,23.0,20.0,19.0,19.0,15.0,22.0,17.0,14.0,17.0,19.0,16.0,11.0,22.0,16.0,11.0,18.0,12.0,11.0,9.0,11.0,1.0,12.0,11.0,4.0,6.0,3.0,8.0,4.0,4.0,3.0,2.0,5.0,,5.0,,1.0,1.0,1.0,1.0,3.0,, Y05369,35.0,30.0,33.0,39.0,39.0,38.0,39.0,30.0,33.0,47.0,41.0,47.0,47.0,39.0,46.0,36.0,50.0,42.0,37.0,25.0,31.0,27.0,32.0,30.0,37.0,44.0,35.0,41.0,30.0,48.0,39.0,47.0,54.0,55.0,51.0,42.0,56.0,56.0,58.0,46.0,52.0,57.0,44.0,47.0,68.0,57.0,44.0,39.0,58.0,39.0,40.0,44.0,48.0,45.0,42.0,40.0,47.0,35.0,37.0,36.0,35.0,37.0,33.0,36.0,24.0,40.0,43.0,23.0,29.0,32.0,28.0,22.0,26.0,22.0,22.0,26.0,35.0,31.0,30.0,16.0,38.0,9.0,17.0,14.0,9.0,16.0,6.0,13.0,10.0,9.0,5.0,6.0,9.0,2.0,4.0,19.0 Y05622,38.0,31.0,38.0,45.0,50.0,63.0,51.0,55.0,45.0,49.0,44.0,48.0,44.0,49.0,55.0,46.0,36.0,33.0,35.0,30.0,22.0,20.0,29.0,24.0,30.0,30.0,44.0,41.0,41.0,37.0,60.0,57.0,51.0,75.0,58.0,53.0,67.0,72.0,58.0,55.0,48.0,58.0,43.0,40.0,33.0,42.0,34.0,33.0,17.0,29.0,26.0,24.0,32.0,23.0,23.0,26.0,14.0,22.0,21.0,21.0,19.0,20.0,23.0,13.0,16.0,15.0,25.0,16.0,15.0,9.0,10.0,8.0,15.0,12.0,13.0,8.0,7.0,11.0,6.0,3.0,6.0,7.0,3.0,1.0,7.0,4.0,5.0,2.0,2.0,1.0,4.0,3.0,,,1.0, Y05690,42.0,39.0,43.0,53.0,39.0,40.0,57.0,34.0,67.0,49.0,53.0,53.0,70.0,65.0,85.0,56.0,69.0,59.0,54.0,34.0,35.0,34.0,45.0,27.0,31.0,45.0,49.0,47.0,40.0,54.0,69.0,57.0,57.0,60.0,79.0,64.0,63.0,59.0,71.0,50.0,70.0,59.0,55.0,56.0,47.0,55.0,59.0,46.0,44.0,48.0,43.0,35.0,50.0,50.0,45.0,42.0,51.0,46.0,36.0,29.0,41.0,33.0,34.0,23.0,27.0,28.0,17.0,24.0,33.0,32.0,17.0,31.0,31.0,24.0,18.0,21.0,16.0,19.0,23.0,16.0,7.0,20.0,12.0,16.0,10.0,14.0,10.0,8.0,7.0,2.0,7.0,2.0,5.0,4.0,1.0,4.0 Y06356,40.0,46.0,35.0,54.0,48.0,46.0,50.0,56.0,63.0,61.0,57.0,89.0,88.0,93.0,62.0,80.0,82.0,81.0,80.0,68.0,72.0,56.0,51.0,53.0,37.0,45.0,65.0,49.0,70.0,51.0,52.0,53.0,73.0,55.0,60.0,67.0,76.0,77.0,73.0,75.0,70.0,61.0,61.0,76.0,80.0,54.0,50.0,64.0,63.0,49.0,64.0,60.0,59.0,69.0,67.0,64.0,71.0,50.0,65.0,57.0,53.0,58.0,59.0,61.0,45.0,53.0,45.0,44.0,39.0,31.0,24.0,28.0,36.0,28.0,33.0,24.0,24.0,40.0,23.0,21.0,21.0,24.0,23.0,25.0,15.0,15.0,17.0,16.0,22.0,8.0,14.0,9.0,10.0,7.0,6.0,13.0 Y06443,83.0,65.0,79.0,70.0,69.0,79.0,56.0,62.0,78.0,69.0,76.0,82.0,72.0,55.0,72.0,80.0,62.0,87.0,82.0,68.0,61.0,61.0,78.0,64.0,76.0,66.0,93.0,91.0,77.0,105.0,99.0,112.0,117.0,98.0,121.0,99.0,112.0,110.0,86.0,65.0,88.0,78.0,97.0,78.0,100.0,81.0,57.0,64.0,67.0,74.0,72.0,68.0,77.0,85.0,96.0,96.0,79.0,84.0,77.0,87.0,103.0,75.0,78.0,75.0,79.0,72.0,70.0,71.0,63.0,50.0,59.0,62.0,44.0,58.0,44.0,54.0,74.0,58.0,68.0,48.0,52.0,44.0,40.0,41.0,36.0,38.0,23.0,29.0,16.0,22.0,18.0,7.0,11.0,7.0,7.0,19.0 Y06792,55.0,51.0,49.0,51.0,40.0,60.0,52.0,54.0,70.0,61.0,71.0,58.0,70.0,76.0,64.0,74.0,63.0,65.0,52.0,58.0,43.0,37.0,45.0,50.0,55.0,55.0,46.0,47.0,45.0,54.0,77.0,78.0,64.0,59.0,85.0,49.0,62.0,65.0,71.0,71.0,74.0,57.0,49.0,48.0,60.0,50.0,50.0,41.0,39.0,46.0,47.0,47.0,45.0,43.0,46.0,41.0,33.0,43.0,32.0,38.0,31.0,32.0,17.0,34.0,30.0,35.0,20.0,20.0,22.0,25.0,16.0,12.0,19.0,15.0,13.0,14.0,10.0,12.0,14.0,6.0,8.0,11.0,7.0,7.0,7.0,5.0,7.0,4.0,6.0,6.0,4.0,4.0,3.0,1.0,2.0,7.0 Y08082,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 L82001,58.0,69.0,80.0,78.0,97.0,103.0,95.0,81.0,95.0,109.0,102.0,113.0,111.0,104.0,107.0,107.0,108.0,108.0,113.0,87.0,86.0,63.0,84.0,93.0,85.0,104.0,97.0,119.0,125.0,134.0,133.0,123.0,154.0,139.0,148.0,164.0,127.0,158.0,134.0,134.0,150.0,136.0,150.0,149.0,145.0,112.0,113.0,103.0,129.0,120.0,104.0,151.0,123.0,123.0,135.0,122.0,122.0,135.0,143.0,119.0,124.0,132.0,136.0,134.0,116.0,111.0,105.0,99.0,101.0,89.0,103.0,97.0,97.0,81.0,108.0,110.0,90.0,108.0,110.0,72.0,84.0,84.0,59.0,56.0,46.0,40.0,38.0,52.0,31.0,31.0,20.0,18.0,17.0,13.0,6.0,24.0 L82003,23.0,30.0,23.0,38.0,32.0,30.0,39.0,39.0,30.0,50.0,34.0,45.0,47.0,50.0,56.0,39.0,50.0,58.0,42.0,52.0,34.0,34.0,38.0,26.0,34.0,31.0,25.0,41.0,27.0,35.0,43.0,45.0,38.0,38.0,41.0,43.0,48.0,55.0,47.0,40.0,60.0,54.0,35.0,55.0,39.0,58.0,42.0,45.0,47.0,34.0,48.0,67.0,54.0,75.0,71.0,73.0,67.0,75.0,67.0,61.0,61.0,78.0,63.0,72.0,91.0,65.0,70.0,66.0,69.0,64.0,61.0,61.0,49.0,71.0,65.0,65.0,64.0,77.0,82.0,42.0,64.0,61.0,53.0,36.0,32.0,33.0,31.0,25.0,28.0,19.0,19.0,15.0,11.0,10.0,12.0,27.0 L82004,21.0,24.0,19.0,33.0,31.0,44.0,28.0,23.0,28.0,36.0,36.0,41.0,41.0,48.0,44.0,50.0,46.0,46.0,41.0,32.0,28.0,24.0,32.0,34.0,25.0,26.0,36.0,39.0,45.0,46.0,46.0,35.0,37.0,52.0,52.0,45.0,61.0,34.0,37.0,47.0,48.0,43.0,59.0,33.0,46.0,50.0,42.0,57.0,50.0,40.0,55.0,41.0,59.0,65.0,80.0,56.0,62.0,58.0,60.0,76.0,66.0,63.0,62.0,56.0,49.0,68.0,65.0,51.0,36.0,55.0,39.0,62.0,49.0,50.0,52.0,64.0,50.0,60.0,71.0,45.0,38.0,50.0,43.0,32.0,32.0,24.0,32.0,24.0,24.0,23.0,10.0,9.0,10.0,13.0,12.0,25.0 L82006,53.0,68.0,60.0,66.0,69.0,67.0,85.0,75.0,71.0,63.0,78.0,83.0,68.0,92.0,80.0,78.0,72.0,81.0,262.0,577.0,702.0,592.0,420.0,302.0,223.0,188.0,202.0,166.0,178.0,150.0,136.0,138.0,130.0,116.0,120.0,117.0,104.0,138.0,102.0,96.0,97.0,87.0,101.0,112.0,89.0,96.0,92.0,83.0,77.0,74.0,85.0,91.0,106.0,98.0,114.0,100.0,97.0,108.0,133.0,96.0,131.0,132.0,111.0,92.0,108.0,109.0,97.0,94.0,108.0,90.0,91.0,74.0,91.0,79.0,78.0,83.0,92.0,106.0,115.0,83.0,71.0,72.0,49.0,54.0,35.0,46.0,41.0,26.0,35.0,25.0,36.0,12.0,11.0,13.0,15.0,33.0 L82007,22.0,25.0,28.0,24.0,27.0,26.0,27.0,33.0,34.0,39.0,36.0,29.0,46.0,51.0,43.0,37.0,40.0,33.0,34.0,25.0,28.0,21.0,32.0,24.0,26.0,22.0,24.0,37.0,36.0,29.0,34.0,24.0,35.0,33.0,32.0,42.0,35.0,43.0,26.0,39.0,31.0,65.0,37.0,35.0,35.0,46.0,30.0,27.0,23.0,42.0,47.0,43.0,43.0,45.0,48.0,39.0,56.0,48.0,56.0,65.0,53.0,56.0,58.0,48.0,59.0,54.0,52.0,52.0,58.0,49.0,36.0,53.0,45.0,42.0,56.0,51.0,52.0,48.0,49.0,24.0,38.0,28.0,23.0,25.0,21.0,21.0,19.0,17.0,13.0,18.0,10.0,4.0,7.0,5.0,4.0,9.0 L82008,26.0,36.0,40.0,27.0,44.0,40.0,44.0,58.0,52.0,61.0,52.0,69.0,58.0,56.0,57.0,64.0,71.0,55.0,54.0,43.0,41.0,43.0,40.0,36.0,36.0,31.0,51.0,41.0,29.0,44.0,48.0,50.0,46.0,69.0,69.0,67.0,68.0,59.0,58.0,62.0,52.0,66.0,56.0,60.0,68.0,62.0,56.0,58.0,46.0,46.0,76.0,67.0,68.0,65.0,74.0,66.0,82.0,84.0,84.0,88.0,88.0,85.0,78.0,83.0,90.0,68.0,73.0,74.0,74.0,65.0,88.0,83.0,83.0,65.0,67.0,72.0,72.0,68.0,69.0,76.0,50.0,49.0,50.0,41.0,43.0,21.0,33.0,30.0,26.0,31.0,16.0,15.0,35.0,13.0,13.0,22.0 L82010,82.0,114.0,108.0,92.0,129.0,122.0,119.0,122.0,123.0,159.0,146.0,154.0,158.0,137.0,130.0,145.0,140.0,154.0,115.0,117.0,105.0,115.0,103.0,93.0,124.0,147.0,137.0,148.0,149.0,138.0,159.0,151.0,136.0,178.0,158.0,155.0,162.0,165.0,155.0,144.0,181.0,132.0,144.0,140.0,148.0,150.0,123.0,114.0,113.0,117.0,146.0,143.0,152.0,165.0,183.0,147.0,174.0,176.0,178.0,189.0,162.0,174.0,170.0,160.0,157.0,162.0,160.0,124.0,144.0,149.0,132.0,109.0,117.0,129.0,113.0,141.0,119.0,120.0,138.0,104.0,113.0,97.0,81.0,77.0,67.0,56.0,65.0,50.0,43.0,36.0,29.0,27.0,22.0,21.0,16.0,27.0 L82011,30.0,25.0,20.0,27.0,28.0,29.0,34.0,26.0,36.0,41.0,40.0,38.0,51.0,27.0,31.0,42.0,31.0,27.0,40.0,41.0,37.0,31.0,26.0,27.0,37.0,22.0,28.0,39.0,36.0,33.0,39.0,48.0,44.0,37.0,44.0,37.0,40.0,37.0,43.0,43.0,41.0,32.0,44.0,33.0,32.0,38.0,49.0,32.0,34.0,37.0,32.0,48.0,35.0,49.0,53.0,44.0,44.0,45.0,46.0,57.0,47.0,37.0,40.0,46.0,38.0,49.0,38.0,41.0,34.0,46.0,33.0,26.0,43.0,32.0,30.0,31.0,39.0,30.0,31.0,24.0,24.0,17.0,15.0,19.0,10.0,18.0,14.0,15.0,9.0,6.0,5.0,7.0,2.0,2.0,1.0,2.0 L82012,49.0,45.0,55.0,61.0,60.0,58.0,60.0,75.0,76.0,71.0,84.0,82.0,91.0,83.0,105.0,76.0,79.0,84.0,79.0,54.0,54.0,63.0,60.0,69.0,53.0,77.0,76.0,76.0,68.0,69.0,78.0,84.0,80.0,75.0,86.0,71.0,100.0,95.0,62.0,84.0,91.0,89.0,95.0,84.0,90.0,81.0,64.0,92.0,93.0,73.0,99.0,94.0,105.0,104.0,133.0,126.0,139.0,126.0,157.0,166.0,136.0,172.0,145.0,162.0,152.0,171.0,147.0,168.0,129.0,133.0,127.0,132.0,126.0,133.0,123.0,129.0,143.0,146.0,132.0,105.0,107.0,94.0,71.0,69.0,54.0,56.0,43.0,36.0,45.0,28.0,28.0,26.0,27.0,20.0,12.0,30.0 L82013,20.0,26.0,29.0,28.0,26.0,25.0,38.0,29.0,43.0,35.0,41.0,42.0,36.0,57.0,39.0,44.0,47.0,33.0,37.0,36.0,34.0,27.0,24.0,24.0,27.0,25.0,28.0,38.0,29.0,36.0,43.0,30.0,44.0,26.0,40.0,43.0,40.0,46.0,50.0,33.0,42.0,59.0,43.0,68.0,64.0,53.0,52.0,56.0,48.0,46.0,59.0,50.0,70.0,58.0,70.0,65.0,59.0,61.0,67.0,54.0,58.0,55.0,56.0,61.0,52.0,59.0,52.0,40.0,58.0,52.0,48.0,57.0,49.0,53.0,50.0,47.0,72.0,52.0,65.0,40.0,44.0,37.0,27.0,29.0,27.0,18.0,33.0,12.0,18.0,18.0,17.0,8.0,13.0,11.0,11.0,12.0 L82015,16.0,29.0,27.0,31.0,31.0,23.0,22.0,31.0,34.0,35.0,30.0,51.0,42.0,47.0,36.0,36.0,34.0,42.0,31.0,30.0,19.0,18.0,29.0,30.0,25.0,26.0,23.0,23.0,36.0,27.0,37.0,26.0,29.0,33.0,40.0,39.0,26.0,39.0,40.0,47.0,46.0,41.0,26.0,40.0,52.0,38.0,34.0,43.0,52.0,37.0,42.0,45.0,56.0,67.0,55.0,48.0,45.0,56.0,63.0,44.0,70.0,51.0,67.0,56.0,51.0,55.0,47.0,47.0,52.0,45.0,57.0,54.0,48.0,46.0,58.0,42.0,53.0,62.0,53.0,37.0,30.0,33.0,33.0,29.0,22.0,24.0,26.0,11.0,12.0,7.0,12.0,9.0,2.0,5.0,4.0,8.0 L82016,47.0,66.0,70.0,75.0,81.0,78.0,89.0,86.0,84.0,81.0,83.0,74.0,88.0,93.0,100.0,85.0,101.0,77.0,95.0,74.0,69.0,78.0,68.0,67.0,54.0,82.0,73.0,80.0,98.0,94.0,93.0,97.0,91.0,103.0,99.0,92.0,102.0,97.0,117.0,98.0,98.0,104.0,95.0,79.0,76.0,110.0,99.0,100.0,85.0,101.0,105.0,122.0,102.0,132.0,135.0,133.0,149.0,143.0,169.0,134.0,144.0,138.0,146.0,136.0,120.0,123.0,139.0,123.0,139.0,111.0,110.0,130.0,114.0,113.0,113.0,115.0,124.0,108.0,125.0,96.0,90.0,85.0,63.0,57.0,44.0,50.0,47.0,35.0,38.0,27.0,23.0,19.0,15.0,19.0,12.0,40.0 L82017,3.0,8.0,7.0,8.0,7.0,7.0,9.0,6.0,7.0,15.0,16.0,16.0,7.0,8.0,9.0,11.0,9.0,7.0,2.0,2.0,11.0,9.0,14.0,20.0,20.0,21.0,17.0,11.0,22.0,18.0,14.0,15.0,10.0,15.0,13.0,15.0,15.0,14.0,15.0,19.0,19.0,13.0,15.0,20.0,13.0,22.0,14.0,19.0,11.0,13.0,11.0,16.0,16.0,22.0,21.0,22.0,8.0,27.0,14.0,17.0,18.0,14.0,14.0,15.0,13.0,14.0,15.0,9.0,9.0,4.0,15.0,12.0,10.0,13.0,17.0,8.0,15.0,16.0,17.0,9.0,13.0,11.0,11.0,11.0,9.0,7.0,6.0,4.0,6.0,4.0,4.0,1.0,1.0,3.0,5.0,5.0 L82018,50.0,58.0,70.0,59.0,68.0,81.0,86.0,79.0,83.0,92.0,76.0,80.0,87.0,94.0,78.0,88.0,78.0,74.0,67.0,56.0,68.0,67.0,56.0,61.0,59.0,70.0,96.0,68.0,80.0,82.0,88.0,81.0,93.0,87.0,93.0,111.0,93.0,99.0,79.0,91.0,87.0,104.0,91.0,88.0,100.0,77.0,87.0,89.0,98.0,84.0,72.0,77.0,112.0,103.0,101.0,114.0,106.0,112.0,101.0,119.0,103.0,121.0,99.0,95.0,117.0,94.0,79.0,92.0,94.0,82.0,93.0,94.0,92.0,84.0,67.0,105.0,81.0,93.0,78.0,56.0,74.0,72.0,65.0,48.0,48.0,41.0,39.0,35.0,29.0,23.0,16.0,16.0,23.0,15.0,13.0,24.0 L82022,25.0,32.0,17.0,27.0,27.0,28.0,28.0,36.0,33.0,38.0,43.0,36.0,39.0,54.0,36.0,51.0,44.0,50.0,42.0,40.0,39.0,28.0,34.0,33.0,26.0,24.0,44.0,29.0,39.0,36.0,30.0,31.0,43.0,34.0,47.0,46.0,59.0,40.0,31.0,39.0,42.0,46.0,45.0,49.0,42.0,49.0,61.0,40.0,58.0,51.0,57.0,56.0,79.0,84.0,85.0,76.0,84.0,95.0,104.0,84.0,110.0,111.0,97.0,89.0,98.0,89.0,84.0,80.0,81.0,94.0,88.0,83.0,82.0,78.0,75.0,85.0,98.0,109.0,86.0,55.0,66.0,60.0,50.0,46.0,41.0,39.0,41.0,26.0,29.0,27.0,28.0,25.0,22.0,12.0,11.0,28.0 L82023,39.0,50.0,55.0,73.0,72.0,77.0,101.0,75.0,92.0,92.0,89.0,101.0,94.0,85.0,120.0,100.0,98.0,93.0,98.0,65.0,57.0,63.0,65.0,61.0,64.0,82.0,77.0,74.0,78.0,72.0,87.0,98.0,93.0,101.0,79.0,87.0,93.0,110.0,112.0,106.0,131.0,105.0,102.0,137.0,98.0,95.0,108.0,101.0,100.0,98.0,97.0,121.0,118.0,116.0,124.0,116.0,108.0,137.0,134.0,121.0,117.0,115.0,111.0,128.0,110.0,112.0,120.0,109.0,110.0,103.0,97.0,89.0,80.0,114.0,88.0,94.0,96.0,109.0,112.0,88.0,76.0,73.0,62.0,43.0,48.0,41.0,42.0,38.0,29.0,18.0,17.0,22.0,12.0,14.0,8.0,21.0 L82025,4.0,8.0,12.0,14.0,14.0,15.0,14.0,15.0,16.0,15.0,15.0,28.0,20.0,19.0,34.0,20.0,27.0,15.0,20.0,26.0,16.0,16.0,16.0,14.0,15.0,18.0,13.0,14.0,21.0,13.0,22.0,13.0,21.0,21.0,18.0,21.0,28.0,27.0,10.0,18.0,23.0,22.0,27.0,19.0,28.0,29.0,38.0,20.0,19.0,22.0,45.0,43.0,36.0,29.0,30.0,36.0,36.0,43.0,53.0,59.0,54.0,48.0,45.0,46.0,59.0,40.0,35.0,42.0,41.0,25.0,40.0,34.0,41.0,42.0,44.0,50.0,42.0,36.0,44.0,40.0,29.0,27.0,39.0,28.0,19.0,21.0,23.0,15.0,10.0,14.0,18.0,6.0,8.0,7.0,2.0,7.0 L82026,22.0,24.0,21.0,25.0,34.0,26.0,31.0,33.0,34.0,31.0,27.0,33.0,47.0,35.0,49.0,37.0,34.0,37.0,32.0,39.0,28.0,21.0,38.0,32.0,29.0,37.0,26.0,29.0,32.0,39.0,31.0,35.0,43.0,33.0,44.0,45.0,37.0,37.0,32.0,36.0,36.0,38.0,38.0,38.0,40.0,38.0,41.0,26.0,39.0,43.0,50.0,41.0,28.0,48.0,53.0,67.0,48.0,51.0,45.0,54.0,51.0,52.0,40.0,52.0,60.0,38.0,43.0,53.0,56.0,41.0,47.0,39.0,57.0,55.0,50.0,40.0,51.0,53.0,60.0,46.0,39.0,31.0,34.0,24.0,21.0,32.0,20.0,12.0,25.0,10.0,13.0,10.0,8.0,9.0,6.0,14.0 L82028,69.0,78.0,85.0,97.0,89.0,95.0,73.0,90.0,85.0,99.0,73.0,96.0,90.0,97.0,98.0,120.0,103.0,108.0,97.0,99.0,103.0,111.0,134.0,138.0,108.0,119.0,106.0,142.0,128.0,113.0,122.0,140.0,155.0,119.0,150.0,134.0,134.0,124.0,139.0,125.0,128.0,107.0,116.0,113.0,112.0,128.0,131.0,106.0,109.0,87.0,95.0,99.0,105.0,132.0,109.0,123.0,104.0,105.0,114.0,111.0,125.0,113.0,126.0,106.0,94.0,110.0,98.0,93.0,95.0,99.0,86.0,102.0,92.0,77.0,85.0,92.0,84.0,94.0,112.0,64.0,70.0,72.0,65.0,54.0,61.0,54.0,38.0,48.0,52.0,38.0,26.0,27.0,20.0,18.0,15.0,43.0 L82029,51.0,62.0,85.0,60.0,82.0,84.0,67.0,83.0,84.0,75.0,89.0,73.0,83.0,90.0,90.0,92.0,77.0,94.0,92.0,58.0,47.0,56.0,68.0,75.0,76.0,73.0,86.0,95.0,104.0,94.0,114.0,113.0,107.0,131.0,142.0,154.0,116.0,135.0,120.0,123.0,124.0,100.0,109.0,123.0,145.0,128.0,105.0,101.0,105.0,93.0,99.0,126.0,116.0,108.0,118.0,125.0,114.0,110.0,117.0,101.0,102.0,108.0,116.0,99.0,92.0,101.0,90.0,86.0,98.0,76.0,86.0,99.0,80.0,88.0,87.0,88.0,82.0,100.0,95.0,75.0,69.0,65.0,52.0,62.0,35.0,37.0,37.0,50.0,25.0,19.0,29.0,12.0,9.0,14.0,14.0,31.0 L82030,49.0,65.0,90.0,83.0,73.0,75.0,91.0,95.0,93.0,102.0,113.0,107.0,113.0,95.0,98.0,112.0,98.0,92.0,97.0,84.0,84.0,82.0,85.0,83.0,81.0,91.0,75.0,87.0,96.0,85.0,90.0,107.0,115.0,107.0,110.0,110.0,123.0,117.0,112.0,108.0,133.0,76.0,104.0,101.0,134.0,109.0,93.0,98.0,95.0,100.0,112.0,112.0,103.0,143.0,154.0,155.0,131.0,148.0,143.0,146.0,144.0,175.0,162.0,140.0,130.0,121.0,132.0,141.0,133.0,129.0,105.0,93.0,97.0,114.0,101.0,120.0,118.0,120.0,114.0,84.0,86.0,100.0,74.0,75.0,50.0,47.0,41.0,48.0,36.0,34.0,35.0,33.0,18.0,22.0,22.0,40.0 L82035,16.0,14.0,21.0,29.0,17.0,26.0,33.0,32.0,32.0,43.0,43.0,28.0,42.0,40.0,37.0,29.0,47.0,39.0,28.0,39.0,25.0,33.0,36.0,34.0,25.0,29.0,37.0,42.0,26.0,33.0,27.0,38.0,36.0,37.0,47.0,39.0,44.0,51.0,46.0,39.0,49.0,47.0,36.0,39.0,41.0,50.0,46.0,33.0,44.0,45.0,56.0,54.0,58.0,71.0,66.0,56.0,78.0,76.0,61.0,82.0,75.0,74.0,63.0,86.0,68.0,87.0,70.0,66.0,59.0,71.0,73.0,68.0,53.0,67.0,57.0,64.0,66.0,84.0,78.0,45.0,59.0,46.0,41.0,34.0,34.0,39.0,32.0,21.0,26.0,21.0,18.0,12.0,9.0,6.0,4.0,19.0 L82036,49.0,58.0,47.0,67.0,45.0,56.0,69.0,63.0,83.0,70.0,79.0,75.0,86.0,68.0,79.0,69.0,67.0,69.0,70.0,61.0,47.0,45.0,59.0,55.0,55.0,59.0,43.0,68.0,52.0,70.0,69.0,83.0,67.0,74.0,99.0,78.0,72.0,84.0,74.0,76.0,89.0,81.0,81.0,72.0,85.0,68.0,92.0,67.0,68.0,88.0,77.0,65.0,85.0,110.0,99.0,95.0,104.0,88.0,89.0,98.0,104.0,91.0,94.0,83.0,76.0,91.0,90.0,93.0,71.0,70.0,70.0,76.0,68.0,60.0,92.0,81.0,84.0,91.0,81.0,69.0,68.0,72.0,49.0,45.0,37.0,37.0,31.0,22.0,27.0,17.0,28.0,13.0,16.0,15.0,6.0,20.0 L82038,30.0,41.0,39.0,38.0,47.0,51.0,46.0,52.0,50.0,51.0,59.0,63.0,53.0,65.0,56.0,52.0,51.0,57.0,59.0,50.0,38.0,33.0,37.0,36.0,54.0,34.0,49.0,53.0,49.0,44.0,63.0,49.0,55.0,60.0,66.0,46.0,63.0,78.0,67.0,52.0,64.0,61.0,51.0,59.0,61.0,65.0,60.0,53.0,69.0,78.0,76.0,80.0,77.0,102.0,89.0,85.0,84.0,81.0,102.0,119.0,112.0,104.0,113.0,112.0,103.0,101.0,85.0,126.0,109.0,93.0,107.0,106.0,107.0,79.0,75.0,100.0,91.0,104.0,83.0,71.0,72.0,68.0,65.0,47.0,25.0,37.0,31.0,29.0,32.0,31.0,32.0,20.0,23.0,7.0,7.0,31.0 L82039,17.0,16.0,12.0,21.0,19.0,19.0,19.0,26.0,19.0,21.0,21.0,26.0,26.0,26.0,31.0,19.0,24.0,24.0,23.0,25.0,16.0,18.0,22.0,21.0,16.0,22.0,23.0,26.0,20.0,20.0,26.0,15.0,27.0,12.0,38.0,21.0,29.0,29.0,20.0,28.0,29.0,23.0,33.0,26.0,25.0,33.0,23.0,28.0,38.0,24.0,37.0,36.0,25.0,45.0,43.0,52.0,45.0,39.0,53.0,44.0,46.0,49.0,45.0,47.0,53.0,46.0,54.0,48.0,32.0,31.0,47.0,34.0,49.0,54.0,41.0,37.0,47.0,48.0,42.0,49.0,35.0,39.0,28.0,18.0,16.0,16.0,17.0,12.0,8.0,13.0,11.0,11.0,5.0,5.0,3.0,12.0 L82041,118.0,150.0,126.0,161.0,144.0,163.0,170.0,171.0,190.0,183.0,184.0,199.0,177.0,229.0,183.0,192.0,175.0,168.0,162.0,131.0,124.0,137.0,121.0,154.0,155.0,141.0,140.0,169.0,181.0,194.0,203.0,201.0,216.0,235.0,232.0,193.0,215.0,257.0,212.0,216.0,184.0,211.0,184.0,181.0,212.0,186.0,159.0,176.0,157.0,186.0,187.0,184.0,184.0,202.0,202.0,215.0,240.0,195.0,189.0,212.0,211.0,205.0,236.0,213.0,179.0,176.0,151.0,168.0,188.0,151.0,160.0,169.0,142.0,175.0,132.0,146.0,140.0,151.0,154.0,134.0,109.0,122.0,101.0,71.0,60.0,66.0,58.0,51.0,47.0,40.0,36.0,37.0,25.0,19.0,19.0,47.0 L82042,65.0,70.0,91.0,69.0,78.0,81.0,77.0,76.0,86.0,71.0,72.0,106.0,96.0,89.0,93.0,107.0,96.0,87.0,76.0,71.0,55.0,80.0,66.0,62.0,75.0,77.0,98.0,86.0,100.0,83.0,89.0,103.0,116.0,114.0,132.0,104.0,109.0,129.0,108.0,105.0,102.0,96.0,87.0,108.0,112.0,119.0,99.0,76.0,102.0,88.0,92.0,85.0,117.0,98.0,125.0,120.0,104.0,146.0,121.0,121.0,132.0,119.0,119.0,111.0,112.0,82.0,104.0,105.0,103.0,102.0,103.0,85.0,83.0,98.0,91.0,97.0,104.0,95.0,111.0,72.0,93.0,82.0,58.0,67.0,54.0,44.0,46.0,49.0,29.0,30.0,26.0,27.0,20.0,20.0,6.0,30.0 L82043,7.0,16.0,13.0,14.0,14.0,19.0,11.0,22.0,13.0,23.0,14.0,18.0,14.0,20.0,29.0,29.0,25.0,27.0,31.0,25.0,19.0,26.0,18.0,20.0,20.0,12.0,17.0,12.0,18.0,20.0,20.0,15.0,13.0,12.0,22.0,13.0,20.0,22.0,18.0,19.0,25.0,31.0,24.0,25.0,15.0,31.0,28.0,27.0,29.0,31.0,34.0,21.0,36.0,51.0,41.0,42.0,43.0,41.0,39.0,46.0,43.0,56.0,52.0,46.0,45.0,44.0,38.0,44.0,37.0,34.0,44.0,39.0,33.0,31.0,29.0,31.0,49.0,39.0,36.0,36.0,30.0,20.0,22.0,18.0,16.0,16.0,12.0,9.0,8.0,10.0,10.0,8.0,4.0,2.0,2.0,5.0 L82044,25.0,36.0,31.0,36.0,32.0,27.0,37.0,47.0,56.0,40.0,52.0,43.0,46.0,58.0,56.0,51.0,41.0,40.0,39.0,36.0,36.0,34.0,43.0,29.0,35.0,45.0,39.0,33.0,39.0,49.0,43.0,47.0,48.0,57.0,43.0,50.0,57.0,46.0,50.0,48.0,60.0,48.0,42.0,44.0,49.0,49.0,39.0,45.0,41.0,42.0,59.0,47.0,43.0,53.0,61.0,59.0,66.0,51.0,63.0,76.0,53.0,69.0,63.0,60.0,48.0,75.0,56.0,59.0,49.0,59.0,51.0,59.0,59.0,51.0,56.0,63.0,68.0,72.0,59.0,58.0,33.0,44.0,57.0,24.0,38.0,35.0,26.0,30.0,28.0,27.0,19.0,16.0,7.0,9.0,7.0,22.0 L82045,28.0,32.0,26.0,34.0,36.0,37.0,44.0,38.0,54.0,40.0,37.0,39.0,59.0,51.0,51.0,49.0,51.0,48.0,53.0,34.0,41.0,61.0,38.0,33.0,37.0,54.0,45.0,36.0,42.0,54.0,40.0,41.0,48.0,46.0,40.0,51.0,59.0,43.0,50.0,47.0,53.0,51.0,55.0,52.0,58.0,54.0,58.0,45.0,64.0,57.0,58.0,73.0,68.0,87.0,79.0,90.0,83.0,72.0,76.0,85.0,79.0,86.0,76.0,67.0,69.0,73.0,81.0,67.0,92.0,62.0,54.0,65.0,58.0,63.0,65.0,59.0,74.0,65.0,74.0,59.0,53.0,53.0,46.0,40.0,28.0,25.0,20.0,32.0,17.0,20.0,7.0,15.0,13.0,5.0,5.0,17.0 L82046,25.0,50.0,40.0,38.0,58.0,45.0,60.0,54.0,67.0,83.0,63.0,73.0,78.0,85.0,67.0,75.0,61.0,71.0,72.0,63.0,59.0,53.0,52.0,53.0,53.0,41.0,45.0,67.0,44.0,58.0,60.0,75.0,69.0,80.0,62.0,67.0,63.0,66.0,68.0,71.0,79.0,85.0,82.0,78.0,72.0,72.0,75.0,59.0,67.0,85.0,85.0,69.0,96.0,84.0,106.0,80.0,89.0,94.0,93.0,92.0,95.0,95.0,87.0,87.0,74.0,106.0,98.0,88.0,84.0,71.0,74.0,81.0,71.0,74.0,77.0,81.0,89.0,107.0,88.0,79.0,83.0,47.0,53.0,51.0,40.0,35.0,28.0,22.0,31.0,21.0,17.0,20.0,11.0,9.0,14.0,20.0 L82047,15.0,23.0,23.0,35.0,31.0,16.0,33.0,19.0,33.0,26.0,33.0,31.0,39.0,41.0,49.0,36.0,32.0,33.0,28.0,24.0,21.0,23.0,18.0,22.0,32.0,17.0,25.0,19.0,30.0,30.0,27.0,26.0,30.0,28.0,36.0,37.0,30.0,34.0,40.0,37.0,32.0,45.0,41.0,43.0,35.0,35.0,36.0,32.0,31.0,50.0,48.0,47.0,63.0,52.0,50.0,70.0,62.0,58.0,75.0,89.0,61.0,76.0,71.0,77.0,76.0,90.0,66.0,74.0,60.0,56.0,52.0,59.0,63.0,71.0,54.0,77.0,59.0,65.0,80.0,50.0,59.0,46.0,53.0,35.0,38.0,27.0,20.0,22.0,21.0,21.0,15.0,12.0,7.0,5.0,6.0,13.0 L82048,8.0,8.0,1.0,11.0,11.0,11.0,10.0,10.0,8.0,18.0,15.0,19.0,28.0,23.0,20.0,17.0,16.0,13.0,15.0,17.0,7.0,25.0,8.0,14.0,12.0,12.0,9.0,12.0,14.0,9.0,8.0,11.0,10.0,16.0,19.0,15.0,24.0,18.0,16.0,12.0,24.0,23.0,22.0,16.0,25.0,22.0,22.0,18.0,22.0,20.0,20.0,20.0,29.0,18.0,30.0,26.0,33.0,29.0,31.0,31.0,38.0,43.0,38.0,40.0,33.0,39.0,43.0,29.0,30.0,23.0,40.0,31.0,34.0,24.0,32.0,29.0,31.0,31.0,45.0,29.0,31.0,16.0,28.0,21.0,23.0,24.0,9.0,14.0,7.0,7.0,5.0,3.0,3.0,2.0,4.0,11.0 L82049,34.0,41.0,60.0,41.0,40.0,30.0,49.0,39.0,48.0,65.0,49.0,61.0,50.0,55.0,43.0,57.0,37.0,41.0,46.0,94.0,114.0,106.0,104.0,80.0,81.0,79.0,64.0,75.0,64.0,73.0,75.0,78.0,82.0,82.0,59.0,79.0,89.0,67.0,92.0,54.0,73.0,52.0,67.0,69.0,52.0,55.0,52.0,49.0,45.0,53.0,68.0,64.0,65.0,65.0,51.0,74.0,68.0,58.0,72.0,87.0,54.0,85.0,60.0,58.0,56.0,48.0,67.0,77.0,63.0,63.0,53.0,60.0,59.0,58.0,44.0,72.0,54.0,44.0,61.0,50.0,43.0,49.0,39.0,31.0,20.0,25.0,18.0,30.0,24.0,16.0,8.0,18.0,7.0,11.0,6.0,21.0 L82050,41.0,38.0,41.0,42.0,37.0,54.0,43.0,52.0,55.0,38.0,52.0,56.0,51.0,51.0,43.0,52.0,48.0,53.0,49.0,39.0,38.0,37.0,53.0,44.0,43.0,42.0,58.0,41.0,49.0,53.0,63.0,47.0,59.0,52.0,72.0,62.0,59.0,62.0,69.0,60.0,48.0,51.0,41.0,57.0,56.0,58.0,53.0,45.0,52.0,54.0,56.0,54.0,63.0,74.0,60.0,63.0,82.0,71.0,75.0,80.0,84.0,87.0,75.0,67.0,92.0,78.0,62.0,62.0,69.0,81.0,63.0,73.0,53.0,59.0,57.0,55.0,58.0,72.0,70.0,50.0,48.0,41.0,42.0,37.0,32.0,32.0,27.0,11.0,19.0,20.0,9.0,17.0,14.0,6.0,9.0,13.0 L82051,62.0,59.0,58.0,60.0,62.0,57.0,58.0,91.0,83.0,71.0,79.0,82.0,86.0,62.0,87.0,75.0,89.0,76.0,69.0,71.0,58.0,53.0,60.0,50.0,65.0,68.0,77.0,72.0,72.0,75.0,78.0,85.0,87.0,79.0,70.0,88.0,102.0,87.0,90.0,92.0,72.0,95.0,85.0,97.0,80.0,79.0,83.0,67.0,89.0,68.0,91.0,79.0,90.0,97.0,98.0,95.0,85.0,78.0,100.0,98.0,96.0,80.0,91.0,99.0,93.0,87.0,89.0,71.0,77.0,71.0,80.0,76.0,62.0,80.0,67.0,57.0,76.0,58.0,70.0,48.0,48.0,49.0,35.0,25.0,21.0,19.0,24.0,21.0,10.0,12.0,11.0,13.0,8.0,8.0,7.0,10.0 L82052,35.0,41.0,32.0,51.0,51.0,54.0,43.0,54.0,42.0,55.0,52.0,49.0,60.0,41.0,65.0,58.0,46.0,40.0,67.0,58.0,79.0,73.0,71.0,72.0,58.0,52.0,64.0,65.0,63.0,52.0,67.0,60.0,68.0,66.0,87.0,67.0,68.0,81.0,60.0,59.0,66.0,61.0,63.0,61.0,71.0,65.0,66.0,69.0,56.0,69.0,58.0,68.0,53.0,72.0,76.0,63.0,77.0,84.0,63.0,92.0,82.0,86.0,71.0,74.0,78.0,59.0,71.0,67.0,63.0,56.0,75.0,75.0,64.0,70.0,70.0,85.0,77.0,54.0,60.0,56.0,57.0,61.0,45.0,38.0,41.0,39.0,26.0,38.0,27.0,24.0,12.0,15.0,12.0,12.0,8.0,21.0 L82054,29.0,37.0,30.0,36.0,55.0,58.0,51.0,56.0,54.0,49.0,50.0,49.0,57.0,64.0,60.0,58.0,44.0,66.0,39.0,43.0,34.0,31.0,34.0,28.0,30.0,35.0,37.0,40.0,46.0,33.0,38.0,42.0,45.0,48.0,50.0,53.0,52.0,59.0,63.0,68.0,65.0,67.0,66.0,60.0,88.0,57.0,67.0,65.0,64.0,67.0,74.0,70.0,78.0,78.0,64.0,70.0,68.0,58.0,80.0,62.0,73.0,64.0,52.0,71.0,66.0,60.0,61.0,64.0,61.0,58.0,50.0,55.0,54.0,56.0,66.0,48.0,57.0,72.0,48.0,54.0,47.0,39.0,39.0,35.0,29.0,24.0,30.0,16.0,18.0,17.0,10.0,9.0,14.0,12.0,12.0,22.0 L82056,21.0,22.0,26.0,16.0,21.0,29.0,31.0,39.0,42.0,53.0,44.0,51.0,45.0,50.0,38.0,43.0,57.0,35.0,51.0,40.0,32.0,28.0,30.0,21.0,25.0,29.0,30.0,32.0,33.0,27.0,25.0,28.0,39.0,34.0,40.0,41.0,43.0,39.0,37.0,47.0,39.0,42.0,61.0,55.0,40.0,57.0,43.0,49.0,60.0,42.0,48.0,55.0,44.0,70.0,61.0,48.0,79.0,78.0,72.0,70.0,73.0,77.0,76.0,76.0,60.0,72.0,64.0,68.0,83.0,72.0,68.0,73.0,61.0,72.0,71.0,73.0,61.0,85.0,64.0,55.0,48.0,45.0,47.0,40.0,16.0,25.0,22.0,21.0,25.0,19.0,10.0,20.0,12.0,9.0,11.0,27.0 L82057,5.0,6.0,7.0,13.0,12.0,8.0,15.0,13.0,16.0,12.0,8.0,21.0,11.0,22.0,16.0,14.0,17.0,14.0,10.0,4.0,12.0,10.0,4.0,7.0,7.0,6.0,8.0,7.0,8.0,6.0,11.0,6.0,12.0,19.0,13.0,14.0,12.0,18.0,11.0,12.0,12.0,14.0,17.0,12.0,9.0,17.0,13.0,15.0,15.0,18.0,16.0,11.0,24.0,20.0,22.0,24.0,25.0,23.0,36.0,30.0,23.0,33.0,24.0,36.0,35.0,22.0,22.0,29.0,32.0,30.0,25.0,16.0,28.0,20.0,22.0,18.0,30.0,32.0,25.0,18.0,19.0,21.0,15.0,16.0,5.0,6.0,11.0,8.0,8.0,8.0,9.0,2.0,6.0,5.0,2.0,8.0 L82058,10.0,15.0,9.0,5.0,14.0,12.0,11.0,11.0,18.0,23.0,22.0,21.0,27.0,23.0,31.0,20.0,26.0,21.0,17.0,19.0,15.0,16.0,18.0,11.0,22.0,14.0,14.0,20.0,18.0,12.0,19.0,19.0,11.0,16.0,11.0,17.0,36.0,18.0,22.0,20.0,22.0,19.0,22.0,16.0,25.0,22.0,33.0,30.0,26.0,26.0,40.0,31.0,40.0,43.0,48.0,41.0,58.0,40.0,58.0,40.0,59.0,49.0,49.0,46.0,54.0,47.0,53.0,58.0,41.0,38.0,43.0,32.0,38.0,32.0,24.0,38.0,35.0,52.0,43.0,33.0,39.0,33.0,30.0,13.0,17.0,17.0,10.0,13.0,10.0,4.0,6.0,8.0,4.0,5.0,3.0,5.0 L82059,19.0,21.0,22.0,19.0,24.0,19.0,25.0,28.0,30.0,24.0,30.0,33.0,37.0,33.0,31.0,32.0,36.0,31.0,33.0,24.0,25.0,23.0,17.0,21.0,18.0,16.0,20.0,31.0,24.0,18.0,20.0,35.0,32.0,21.0,30.0,26.0,35.0,42.0,37.0,30.0,34.0,29.0,39.0,28.0,43.0,35.0,31.0,22.0,26.0,28.0,18.0,32.0,35.0,30.0,35.0,45.0,37.0,48.0,45.0,67.0,37.0,55.0,57.0,43.0,44.0,50.0,43.0,39.0,38.0,42.0,37.0,42.0,44.0,39.0,27.0,31.0,34.0,29.0,37.0,32.0,33.0,36.0,30.0,22.0,28.0,19.0,21.0,21.0,15.0,8.0,8.0,6.0,6.0,2.0,4.0,11.0 L82061,9.0,13.0,13.0,21.0,15.0,18.0,24.0,23.0,20.0,29.0,31.0,28.0,26.0,27.0,34.0,24.0,29.0,31.0,31.0,17.0,15.0,15.0,13.0,12.0,11.0,25.0,15.0,17.0,20.0,14.0,14.0,18.0,25.0,26.0,20.0,23.0,30.0,26.0,29.0,27.0,40.0,27.0,28.0,35.0,41.0,36.0,34.0,32.0,37.0,32.0,31.0,32.0,50.0,41.0,40.0,42.0,50.0,41.0,45.0,52.0,67.0,65.0,42.0,42.0,52.0,58.0,54.0,60.0,46.0,44.0,42.0,60.0,56.0,55.0,54.0,58.0,56.0,68.0,58.0,52.0,43.0,55.0,55.0,29.0,44.0,34.0,29.0,26.0,22.0,14.0,17.0,11.0,10.0,7.0,7.0,13.0 L82066,30.0,23.0,30.0,22.0,26.0,28.0,24.0,28.0,24.0,31.0,38.0,36.0,51.0,42.0,46.0,39.0,34.0,35.0,28.0,32.0,47.0,26.0,28.0,23.0,40.0,27.0,29.0,22.0,40.0,34.0,25.0,25.0,40.0,40.0,36.0,53.0,42.0,42.0,47.0,46.0,25.0,45.0,39.0,36.0,52.0,40.0,43.0,44.0,39.0,38.0,45.0,45.0,50.0,45.0,58.0,61.0,54.0,57.0,64.0,53.0,57.0,60.0,54.0,51.0,55.0,38.0,53.0,52.0,47.0,53.0,53.0,60.0,50.0,47.0,48.0,60.0,65.0,58.0,55.0,52.0,43.0,47.0,46.0,29.0,24.0,22.0,18.0,19.0,18.0,9.0,11.0,7.0,6.0,10.0,8.0,15.0 L82068,41.0,35.0,44.0,39.0,36.0,48.0,36.0,47.0,34.0,46.0,34.0,59.0,42.0,47.0,58.0,44.0,45.0,38.0,47.0,29.0,37.0,32.0,19.0,43.0,41.0,44.0,51.0,54.0,43.0,49.0,46.0,77.0,43.0,59.0,56.0,60.0,48.0,71.0,54.0,58.0,49.0,49.0,64.0,58.0,50.0,52.0,53.0,73.0,66.0,56.0,66.0,61.0,59.0,69.0,58.0,74.0,69.0,82.0,76.0,77.0,65.0,72.0,72.0,68.0,61.0,59.0,62.0,61.0,58.0,58.0,46.0,65.0,49.0,39.0,49.0,42.0,51.0,55.0,64.0,41.0,43.0,30.0,26.0,22.0,25.0,17.0,15.0,12.0,20.0,20.0,13.0,8.0,9.0,9.0,5.0,9.0 L82070,17.0,23.0,28.0,34.0,27.0,23.0,20.0,22.0,24.0,32.0,32.0,29.0,36.0,26.0,40.0,30.0,28.0,44.0,27.0,27.0,33.0,26.0,34.0,43.0,44.0,35.0,32.0,32.0,34.0,29.0,37.0,28.0,26.0,45.0,29.0,44.0,36.0,46.0,39.0,43.0,43.0,45.0,28.0,34.0,34.0,34.0,33.0,32.0,27.0,24.0,41.0,49.0,44.0,46.0,48.0,50.0,56.0,58.0,64.0,56.0,51.0,56.0,54.0,65.0,52.0,55.0,51.0,57.0,48.0,58.0,38.0,44.0,39.0,50.0,47.0,36.0,61.0,54.0,43.0,49.0,42.0,43.0,31.0,27.0,21.0,34.0,14.0,17.0,15.0,14.0,14.0,13.0,17.0,2.0,10.0,21.0 L82620,19.0,27.0,37.0,31.0,41.0,24.0,39.0,38.0,31.0,28.0,27.0,33.0,29.0,39.0,27.0,26.0,37.0,31.0,34.0,26.0,19.0,24.0,26.0,19.0,26.0,29.0,39.0,28.0,36.0,38.0,39.0,39.0,40.0,45.0,47.0,42.0,38.0,46.0,45.0,46.0,48.0,35.0,47.0,38.0,31.0,40.0,33.0,30.0,22.0,39.0,42.0,39.0,48.0,51.0,56.0,59.0,51.0,41.0,55.0,62.0,52.0,52.0,59.0,31.0,44.0,51.0,31.0,56.0,37.0,37.0,30.0,37.0,43.0,30.0,32.0,38.0,27.0,39.0,38.0,15.0,30.0,26.0,21.0,27.0,21.0,12.0,18.0,13.0,9.0,14.0,7.0,5.0,10.0,4.0,3.0,6.0 L82622,8.0,30.0,18.0,16.0,22.0,19.0,33.0,27.0,20.0,31.0,23.0,19.0,29.0,37.0,24.0,33.0,27.0,27.0,40.0,54.0,90.0,97.0,89.0,91.0,80.0,59.0,64.0,63.0,65.0,69.0,56.0,56.0,56.0,58.0,48.0,59.0,58.0,41.0,41.0,44.0,41.0,40.0,43.0,50.0,36.0,39.0,33.0,40.0,47.0,38.0,35.0,40.0,39.0,48.0,48.0,47.0,45.0,53.0,57.0,54.0,54.0,51.0,48.0,47.0,38.0,39.0,41.0,51.0,43.0,42.0,43.0,43.0,45.0,47.0,40.0,40.0,43.0,39.0,58.0,25.0,33.0,31.0,20.0,14.0,27.0,19.0,22.0,12.0,14.0,12.0,15.0,7.0,12.0,4.0,5.0,19.0 Y00049,,,,,,,,,,,,,,,,,,,2.0,,2.0,1.0,2.0,2.0,1.0,1.0,3.0,2.0,1.0,2.0,1.0,2.0,2.0,1.0,4.0,,,,1.0,,3.0,4.0,1.0,,,2.0,2.0,4.0,3.0,1.0,4.0,,,,1.0,1.0,1.0,3.0,,1.0,2.0,,1.0,,,,,,1.0,,,,,,,1.0,,,,,,,,,,,,,,,,,,,, Y00969,25.0,37.0,34.0,33.0,43.0,33.0,38.0,47.0,45.0,55.0,62.0,60.0,64.0,72.0,64.0,68.0,70.0,59.0,62.0,49.0,50.0,55.0,41.0,49.0,43.0,39.0,44.0,52.0,50.0,62.0,56.0,66.0,56.0,41.0,66.0,62.0,71.0,74.0,63.0,74.0,66.0,57.0,70.0,61.0,71.0,68.0,86.0,58.0,52.0,72.0,77.0,63.0,81.0,75.0,97.0,73.0,100.0,89.0,100.0,108.0,101.0,105.0,129.0,108.0,86.0,96.0,82.0,112.0,102.0,86.0,91.0,79.0,96.0,85.0,72.0,95.0,91.0,98.0,82.0,69.0,78.0,58.0,52.0,47.0,44.0,30.0,31.0,32.0,31.0,15.0,17.0,17.0,21.0,16.0,11.0,22.0 Y01050,22.0,33.0,31.0,35.0,32.0,29.0,26.0,31.0,34.0,34.0,32.0,46.0,36.0,40.0,37.0,41.0,38.0,42.0,44.0,36.0,47.0,31.0,44.0,42.0,39.0,41.0,46.0,44.0,38.0,30.0,49.0,38.0,59.0,54.0,42.0,42.0,34.0,46.0,40.0,37.0,44.0,40.0,42.0,43.0,57.0,45.0,38.0,47.0,37.0,50.0,40.0,58.0,58.0,64.0,66.0,73.0,70.0,76.0,70.0,78.0,60.0,54.0,56.0,56.0,64.0,52.0,71.0,57.0,50.0,42.0,43.0,52.0,54.0,50.0,59.0,60.0,50.0,70.0,69.0,49.0,41.0,36.0,31.0,18.0,19.0,27.0,17.0,17.0,23.0,11.0,6.0,14.0,9.0,7.0,5.0,9.0 Y01051,19.0,22.0,15.0,34.0,28.0,30.0,32.0,33.0,36.0,34.0,33.0,44.0,41.0,53.0,47.0,50.0,46.0,45.0,35.0,27.0,36.0,30.0,25.0,22.0,42.0,40.0,37.0,34.0,38.0,43.0,39.0,40.0,40.0,51.0,58.0,32.0,35.0,40.0,43.0,47.0,50.0,46.0,52.0,54.0,51.0,48.0,65.0,48.0,46.0,38.0,62.0,55.0,64.0,53.0,57.0,57.0,64.0,63.0,64.0,76.0,74.0,70.0,66.0,75.0,50.0,82.0,71.0,56.0,52.0,59.0,68.0,71.0,44.0,61.0,64.0,68.0,70.0,53.0,73.0,40.0,45.0,42.0,38.0,45.0,32.0,31.0,20.0,32.0,24.0,17.0,24.0,18.0,16.0,5.0,10.0,16.0 Y01127,17.0,19.0,23.0,23.0,20.0,20.0,27.0,38.0,34.0,35.0,32.0,44.0,42.0,30.0,29.0,40.0,43.0,42.0,38.0,33.0,22.0,19.0,18.0,25.0,23.0,28.0,20.0,22.0,30.0,24.0,36.0,29.0,29.0,35.0,31.0,33.0,36.0,36.0,40.0,42.0,45.0,40.0,37.0,36.0,37.0,35.0,47.0,40.0,46.0,41.0,43.0,41.0,47.0,52.0,43.0,47.0,52.0,50.0,36.0,58.0,52.0,47.0,56.0,54.0,64.0,61.0,45.0,44.0,54.0,53.0,52.0,61.0,54.0,59.0,52.0,41.0,33.0,44.0,50.0,30.0,52.0,35.0,25.0,28.0,24.0,27.0,22.0,19.0,16.0,23.0,11.0,8.0,6.0,5.0,6.0,13.0 Y01922,26.0,21.0,39.0,37.0,34.0,38.0,52.0,49.0,43.0,55.0,64.0,55.0,61.0,52.0,66.0,54.0,56.0,71.0,59.0,51.0,35.0,39.0,50.0,66.0,44.0,54.0,46.0,41.0,48.0,39.0,70.0,64.0,61.0,58.0,68.0,55.0,48.0,72.0,59.0,55.0,63.0,68.0,69.0,80.0,78.0,71.0,74.0,79.0,70.0,65.0,74.0,84.0,83.0,88.0,83.0,108.0,98.0,102.0,98.0,103.0,97.0,93.0,96.0,83.0,102.0,82.0,102.0,101.0,88.0,95.0,89.0,107.0,104.0,97.0,88.0,81.0,85.0,104.0,84.0,68.0,74.0,78.0,61.0,54.0,49.0,44.0,29.0,38.0,25.0,28.0,22.0,21.0,16.0,13.0,4.0,22.0 Y02517,56.0,73.0,65.0,77.0,78.0,76.0,87.0,76.0,88.0,99.0,84.0,105.0,101.0,96.0,100.0,100.0,80.0,83.0,91.0,86.0,72.0,82.0,69.0,88.0,95.0,96.0,105.0,106.0,106.0,112.0,109.0,133.0,117.0,151.0,127.0,134.0,163.0,138.0,148.0,103.0,128.0,133.0,144.0,132.0,149.0,131.0,115.0,122.0,100.0,116.0,110.0,109.0,111.0,122.0,126.0,113.0,106.0,137.0,131.0,125.0,96.0,97.0,99.0,102.0,115.0,96.0,102.0,94.0,94.0,84.0,89.0,63.0,84.0,68.0,83.0,86.0,75.0,78.0,83.0,58.0,70.0,52.0,39.0,54.0,38.0,33.0,44.0,32.0,31.0,24.0,19.0,12.0,12.0,13.0,11.0,16.0 Y04957,102.0,113.0,130.0,152.0,159.0,131.0,161.0,172.0,155.0,166.0,183.0,196.0,192.0,203.0,185.0,187.0,184.0,166.0,173.0,159.0,155.0,140.0,134.0,139.0,153.0,171.0,178.0,186.0,147.0,180.0,196.0,178.0,220.0,193.0,234.0,194.0,232.0,247.0,212.0,199.0,219.0,200.0,187.0,187.0,183.0,187.0,190.0,175.0,186.0,187.0,203.0,227.0,243.0,223.0,228.0,259.0,253.0,230.0,234.0,252.0,222.0,237.0,242.0,254.0,238.0,189.0,202.0,214.0,224.0,193.0,211.0,188.0,176.0,183.0,164.0,186.0,165.0,200.0,205.0,161.0,165.0,131.0,127.0,112.0,88.0,98.0,81.0,86.0,81.0,61.0,55.0,43.0,30.0,28.0,31.0,43.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 J82054,30.0,46.0,36.0,39.0,36.0,51.0,54.0,57.0,72.0,65.0,59.0,58.0,69.0,53.0,63.0,42.0,51.0,57.0,52.0,32.0,35.0,44.0,35.0,33.0,29.0,42.0,37.0,49.0,37.0,37.0,40.0,44.0,45.0,43.0,57.0,58.0,70.0,58.0,56.0,64.0,60.0,60.0,55.0,52.0,73.0,64.0,51.0,62.0,53.0,68.0,80.0,69.0,79.0,72.0,73.0,68.0,78.0,85.0,89.0,78.0,66.0,63.0,70.0,72.0,82.0,59.0,60.0,72.0,69.0,60.0,55.0,54.0,50.0,52.0,62.0,36.0,46.0,57.0,78.0,57.0,53.0,38.0,34.0,29.0,23.0,26.0,36.0,19.0,20.0,17.0,16.0,8.0,11.0,11.0,2.0,17.0 K81002,81.0,69.0,108.0,88.0,82.0,84.0,89.0,92.0,77.0,87.0,88.0,96.0,102.0,80.0,92.0,84.0,76.0,87.0,74.0,65.0,50.0,49.0,78.0,71.0,86.0,98.0,115.0,113.0,116.0,119.0,132.0,149.0,144.0,126.0,140.0,151.0,163.0,148.0,129.0,140.0,142.0,123.0,132.0,110.0,103.0,105.0,111.0,125.0,109.0,83.0,85.0,105.0,98.0,96.0,111.0,95.0,95.0,95.0,79.0,79.0,72.0,87.0,84.0,73.0,61.0,53.0,65.0,63.0,52.0,59.0,57.0,43.0,49.0,51.0,55.0,57.0,54.0,58.0,47.0,29.0,52.0,36.0,30.0,33.0,24.0,22.0,22.0,23.0,18.0,13.0,14.0,15.0,8.0,9.0,8.0,17.0 K81003,62.0,100.0,93.0,133.0,105.0,94.0,112.0,113.0,121.0,109.0,119.0,107.0,110.0,116.0,118.0,102.0,106.0,84.0,70.0,65.0,77.0,59.0,73.0,63.0,56.0,77.0,59.0,80.0,91.0,90.0,100.0,117.0,130.0,130.0,115.0,149.0,144.0,138.0,144.0,163.0,113.0,129.0,135.0,132.0,137.0,129.0,129.0,124.0,113.0,110.0,111.0,95.0,116.0,101.0,105.0,100.0,96.0,103.0,96.0,96.0,83.0,103.0,79.0,72.0,97.0,83.0,72.0,74.0,63.0,63.0,53.0,55.0,57.0,58.0,56.0,64.0,55.0,59.0,62.0,50.0,41.0,35.0,35.0,30.0,27.0,24.0,25.0,27.0,17.0,19.0,10.0,17.0,5.0,10.0,4.0,11.0 K81004,52.0,57.0,56.0,65.0,56.0,70.0,81.0,84.0,89.0,86.0,98.0,92.0,96.0,104.0,82.0,88.0,90.0,99.0,83.0,79.0,66.0,82.0,74.0,74.0,62.0,91.0,73.0,63.0,78.0,79.0,93.0,79.0,87.0,97.0,110.0,82.0,122.0,111.0,133.0,100.0,120.0,93.0,95.0,110.0,119.0,111.0,100.0,88.0,99.0,99.0,82.0,79.0,87.0,110.0,111.0,79.0,82.0,106.0,102.0,84.0,99.0,96.0,96.0,77.0,104.0,70.0,84.0,81.0,85.0,74.0,76.0,66.0,68.0,81.0,67.0,77.0,77.0,85.0,86.0,58.0,63.0,49.0,53.0,27.0,46.0,46.0,48.0,52.0,23.0,27.0,23.0,19.0,15.0,8.0,9.0,28.0 K81007,27.0,26.0,27.0,27.0,31.0,30.0,30.0,29.0,31.0,25.0,19.0,33.0,28.0,19.0,26.0,34.0,25.0,19.0,27.0,25.0,21.0,24.0,26.0,31.0,38.0,35.0,53.0,60.0,60.0,66.0,64.0,65.0,65.0,56.0,66.0,61.0,75.0,74.0,51.0,42.0,45.0,50.0,37.0,37.0,41.0,37.0,35.0,27.0,26.0,30.0,27.0,20.0,24.0,27.0,24.0,33.0,25.0,26.0,15.0,23.0,18.0,17.0,24.0,11.0,17.0,18.0,16.0,18.0,19.0,18.0,21.0,12.0,12.0,11.0,11.0,12.0,13.0,10.0,8.0,11.0,8.0,10.0,8.0,6.0,9.0,4.0,4.0,2.0,7.0,4.0,1.0,2.0,2.0,2.0,1.0,3.0 K81012,45.0,46.0,56.0,45.0,52.0,61.0,61.0,71.0,80.0,76.0,94.0,77.0,70.0,86.0,80.0,71.0,79.0,77.0,59.0,46.0,49.0,52.0,51.0,55.0,58.0,52.0,54.0,48.0,59.0,36.0,51.0,59.0,65.0,50.0,56.0,70.0,75.0,84.0,71.0,69.0,94.0,82.0,81.0,75.0,89.0,102.0,73.0,84.0,90.0,94.0,86.0,76.0,103.0,91.0,93.0,92.0,110.0,83.0,92.0,90.0,106.0,95.0,78.0,93.0,86.0,73.0,70.0,91.0,74.0,68.0,75.0,54.0,57.0,69.0,58.0,75.0,63.0,73.0,65.0,66.0,67.0,52.0,39.0,44.0,31.0,37.0,21.0,24.0,16.0,22.0,13.0,13.0,7.0,7.0,9.0,13.0 K81014,73.0,81.0,104.0,96.0,109.0,102.0,106.0,116.0,126.0,136.0,103.0,131.0,132.0,136.0,129.0,129.0,135.0,153.0,130.0,88.0,60.0,61.0,75.0,84.0,98.0,99.0,101.0,106.0,106.0,107.0,102.0,147.0,136.0,143.0,138.0,142.0,140.0,161.0,161.0,145.0,157.0,163.0,154.0,166.0,159.0,189.0,174.0,160.0,166.0,141.0,165.0,170.0,157.0,143.0,174.0,126.0,136.0,153.0,132.0,147.0,122.0,128.0,104.0,106.0,100.0,97.0,108.0,89.0,97.0,93.0,86.0,80.0,84.0,93.0,84.0,89.0,90.0,95.0,81.0,74.0,90.0,70.0,64.0,75.0,52.0,48.0,53.0,43.0,32.0,32.0,38.0,23.0,20.0,17.0,10.0,30.0 K81017,48.0,47.0,63.0,51.0,61.0,68.0,69.0,71.0,71.0,76.0,74.0,89.0,71.0,101.0,105.0,111.0,105.0,101.0,85.0,57.0,51.0,49.0,51.0,74.0,75.0,80.0,71.0,56.0,67.0,71.0,71.0,79.0,74.0,95.0,80.0,85.0,74.0,94.0,90.0,82.0,87.0,82.0,94.0,86.0,97.0,96.0,76.0,88.0,119.0,93.0,103.0,106.0,106.0,97.0,106.0,93.0,124.0,104.0,119.0,89.0,106.0,101.0,80.0,82.0,84.0,92.0,73.0,73.0,84.0,76.0,79.0,76.0,72.0,77.0,79.0,87.0,82.0,93.0,100.0,71.0,69.0,64.0,58.0,51.0,47.0,37.0,48.0,31.0,23.0,27.0,27.0,15.0,21.0,14.0,11.0,30.0 K81022,116.0,114.0,116.0,156.0,132.0,133.0,129.0,167.0,154.0,179.0,205.0,197.0,237.0,256.0,311.0,278.0,272.0,286.0,220.0,122.0,122.0,109.0,125.0,135.0,126.0,149.0,138.0,132.0,140.0,157.0,195.0,182.0,163.0,167.0,168.0,185.0,177.0,198.0,201.0,196.0,204.0,214.0,202.0,235.0,232.0,226.0,190.0,254.0,222.0,223.0,231.0,214.0,201.0,220.0,161.0,163.0,187.0,170.0,171.0,155.0,167.0,162.0,151.0,134.0,142.0,98.0,132.0,110.0,120.0,126.0,106.0,106.0,98.0,112.0,124.0,114.0,139.0,144.0,144.0,128.0,111.0,142.0,115.0,82.0,64.0,84.0,79.0,61.0,68.0,52.0,55.0,39.0,44.0,37.0,29.0,78.0 K81025,75.0,88.0,75.0,82.0,85.0,96.0,94.0,115.0,117.0,101.0,124.0,118.0,130.0,132.0,121.0,135.0,125.0,142.0,126.0,89.0,78.0,86.0,103.0,102.0,90.0,107.0,107.0,102.0,93.0,107.0,96.0,124.0,96.0,115.0,115.0,117.0,129.0,101.0,137.0,123.0,144.0,137.0,142.0,123.0,163.0,132.0,141.0,138.0,164.0,152.0,124.0,143.0,154.0,159.0,127.0,132.0,133.0,151.0,151.0,128.0,138.0,150.0,115.0,140.0,126.0,121.0,104.0,104.0,99.0,82.0,89.0,80.0,78.0,91.0,88.0,114.0,88.0,93.0,92.0,66.0,65.0,57.0,55.0,48.0,42.0,38.0,29.0,34.0,24.0,21.0,14.0,14.0,17.0,7.0,6.0,23.0 K81026,43.0,30.0,37.0,28.0,29.0,33.0,34.0,41.0,37.0,35.0,45.0,45.0,37.0,46.0,51.0,43.0,58.0,37.0,38.0,31.0,37.0,40.0,47.0,77.0,89.0,79.0,88.0,108.0,118.0,104.0,90.0,73.0,91.0,86.0,83.0,79.0,75.0,61.0,55.0,67.0,52.0,60.0,53.0,44.0,37.0,49.0,47.0,43.0,46.0,43.0,31.0,38.0,40.0,44.0,38.0,40.0,34.0,32.0,47.0,45.0,35.0,36.0,27.0,28.0,30.0,25.0,30.0,19.0,19.0,24.0,27.0,20.0,19.0,16.0,15.0,12.0,16.0,10.0,15.0,13.0,10.0,11.0,5.0,8.0,10.0,9.0,6.0,6.0,4.0,4.0,2.0,7.0,3.0,,2.0,1.0 K81027,35.0,44.0,29.0,46.0,39.0,44.0,40.0,73.0,68.0,52.0,75.0,81.0,78.0,84.0,100.0,75.0,82.0,70.0,71.0,49.0,50.0,53.0,41.0,47.0,55.0,57.0,45.0,49.0,43.0,43.0,57.0,46.0,45.0,57.0,53.0,63.0,72.0,62.0,72.0,63.0,62.0,60.0,54.0,78.0,82.0,94.0,81.0,78.0,69.0,80.0,87.0,88.0,100.0,111.0,99.0,79.0,84.0,79.0,87.0,83.0,92.0,93.0,67.0,76.0,59.0,65.0,83.0,69.0,48.0,60.0,52.0,71.0,50.0,66.0,54.0,46.0,59.0,78.0,76.0,50.0,61.0,40.0,53.0,35.0,36.0,31.0,27.0,24.0,38.0,18.0,20.0,9.0,10.0,7.0,8.0,26.0 K81040,84.0,93.0,83.0,102.0,100.0,108.0,106.0,113.0,132.0,128.0,86.0,125.0,146.0,122.0,128.0,145.0,134.0,128.0,130.0,110.0,103.0,112.0,104.0,125.0,121.0,160.0,158.0,164.0,160.0,152.0,188.0,178.0,161.0,159.0,176.0,168.0,170.0,156.0,177.0,165.0,157.0,159.0,164.0,152.0,155.0,145.0,133.0,93.0,111.0,111.0,107.0,115.0,115.0,104.0,110.0,113.0,109.0,106.0,114.0,106.0,99.0,95.0,104.0,89.0,87.0,77.0,90.0,73.0,59.0,68.0,69.0,53.0,51.0,47.0,52.0,52.0,52.0,57.0,50.0,48.0,50.0,32.0,36.0,22.0,28.0,23.0,17.0,24.0,17.0,8.0,7.0,8.0,12.0,9.0,1.0,13.0 K81041,34.0,61.0,38.0,46.0,55.0,48.0,54.0,57.0,62.0,70.0,74.0,79.0,78.0,77.0,96.0,101.0,101.0,103.0,86.0,56.0,51.0,45.0,52.0,42.0,51.0,38.0,50.0,53.0,55.0,60.0,61.0,54.0,53.0,67.0,69.0,78.0,77.0,85.0,69.0,87.0,81.0,83.0,76.0,76.0,92.0,82.0,82.0,115.0,82.0,92.0,104.0,89.0,74.0,86.0,70.0,73.0,64.0,77.0,65.0,73.0,68.0,79.0,64.0,77.0,54.0,67.0,66.0,58.0,67.0,47.0,57.0,59.0,55.0,54.0,62.0,67.0,74.0,72.0,59.0,53.0,47.0,49.0,36.0,44.0,40.0,38.0,34.0,36.0,28.0,17.0,18.0,16.0,12.0,7.0,7.0,19.0 K81045,60.0,72.0,66.0,84.0,85.0,78.0,105.0,116.0,107.0,108.0,116.0,129.0,143.0,135.0,135.0,114.0,131.0,135.0,121.0,92.0,101.0,108.0,96.0,91.0,102.0,106.0,98.0,116.0,89.0,94.0,86.0,104.0,112.0,112.0,93.0,113.0,108.0,125.0,125.0,128.0,157.0,118.0,122.0,133.0,136.0,142.0,135.0,145.0,108.0,123.0,115.0,129.0,120.0,116.0,111.0,93.0,118.0,104.0,107.0,98.0,108.0,100.0,102.0,70.0,88.0,75.0,81.0,73.0,73.0,53.0,70.0,48.0,53.0,54.0,48.0,58.0,65.0,54.0,57.0,47.0,55.0,56.0,43.0,31.0,49.0,41.0,47.0,33.0,35.0,20.0,20.0,14.0,13.0,19.0,6.0,15.0 K81047,106.0,89.0,113.0,125.0,116.0,118.0,151.0,157.0,178.0,194.0,207.0,190.0,209.0,254.0,229.0,225.0,232.0,212.0,196.0,126.0,133.0,124.0,140.0,140.0,140.0,159.0,132.0,146.0,160.0,131.0,157.0,151.0,159.0,158.0,154.0,189.0,229.0,184.0,206.0,218.0,259.0,285.0,283.0,287.0,285.0,298.0,270.0,306.0,239.0,222.0,267.0,198.0,224.0,221.0,177.0,203.0,181.0,202.0,171.0,178.0,214.0,192.0,195.0,182.0,168.0,178.0,169.0,171.0,155.0,142.0,126.0,123.0,132.0,140.0,137.0,127.0,115.0,123.0,133.0,97.0,104.0,77.0,66.0,63.0,55.0,53.0,66.0,53.0,39.0,47.0,31.0,30.0,24.0,18.0,16.0,27.0 K81048,48.0,49.0,72.0,51.0,55.0,61.0,54.0,48.0,71.0,57.0,48.0,53.0,55.0,53.0,56.0,59.0,56.0,59.0,45.0,50.0,56.0,68.0,44.0,67.0,65.0,81.0,75.0,71.0,81.0,89.0,88.0,82.0,74.0,87.0,83.0,91.0,85.0,93.0,69.0,78.0,76.0,76.0,72.0,74.0,61.0,56.0,58.0,45.0,54.0,42.0,39.0,37.0,55.0,43.0,44.0,48.0,35.0,50.0,58.0,44.0,47.0,32.0,48.0,38.0,37.0,38.0,41.0,29.0,32.0,19.0,23.0,29.0,24.0,24.0,22.0,15.0,20.0,19.0,26.0,13.0,17.0,15.0,12.0,10.0,14.0,8.0,5.0,6.0,4.0,8.0,9.0,7.0,7.0,3.0,1.0,9.0 K81050,42.0,29.0,51.0,36.0,41.0,49.0,58.0,51.0,72.0,67.0,91.0,83.0,83.0,86.0,94.0,79.0,73.0,78.0,105.0,54.0,53.0,59.0,54.0,71.0,57.0,48.0,44.0,38.0,37.0,37.0,43.0,44.0,49.0,55.0,61.0,51.0,52.0,58.0,72.0,56.0,69.0,66.0,78.0,75.0,76.0,75.0,97.0,94.0,83.0,77.0,99.0,88.0,102.0,113.0,94.0,96.0,98.0,110.0,93.0,87.0,89.0,67.0,85.0,63.0,81.0,78.0,60.0,56.0,58.0,62.0,56.0,55.0,56.0,52.0,60.0,45.0,59.0,50.0,43.0,29.0,54.0,32.0,39.0,20.0,24.0,27.0,27.0,18.0,8.0,14.0,14.0,5.0,5.0,6.0,3.0,7.0 K81051,52.0,48.0,60.0,82.0,66.0,74.0,87.0,82.0,98.0,115.0,116.0,115.0,107.0,119.0,84.0,97.0,92.0,82.0,78.0,65.0,56.0,75.0,63.0,79.0,54.0,50.0,71.0,78.0,72.0,82.0,85.0,76.0,83.0,99.0,117.0,114.0,107.0,119.0,133.0,102.0,118.0,119.0,120.0,130.0,116.0,108.0,112.0,97.0,85.0,91.0,90.0,81.0,98.0,87.0,96.0,84.0,81.0,67.0,104.0,70.0,84.0,86.0,64.0,82.0,66.0,43.0,67.0,63.0,60.0,57.0,42.0,62.0,48.0,53.0,57.0,55.0,52.0,60.0,60.0,45.0,38.0,54.0,48.0,33.0,29.0,25.0,20.0,12.0,22.0,16.0,22.0,12.0,14.0,10.0,4.0,13.0 K81052,15.0,22.0,26.0,22.0,23.0,28.0,33.0,22.0,30.0,35.0,31.0,34.0,35.0,32.0,35.0,37.0,28.0,29.0,37.0,24.0,22.0,36.0,30.0,35.0,27.0,27.0,37.0,34.0,34.0,42.0,25.0,31.0,36.0,32.0,34.0,51.0,37.0,31.0,32.0,34.0,27.0,39.0,36.0,25.0,35.0,27.0,27.0,28.0,44.0,41.0,32.0,40.0,48.0,44.0,47.0,48.0,51.0,42.0,54.0,56.0,47.0,52.0,53.0,31.0,46.0,38.0,44.0,44.0,41.0,38.0,34.0,28.0,39.0,37.0,44.0,37.0,33.0,44.0,31.0,33.0,27.0,25.0,31.0,20.0,16.0,12.0,16.0,8.0,5.0,5.0,8.0,5.0,1.0,1.0,3.0,10.0 K81055,29.0,26.0,42.0,43.0,31.0,38.0,34.0,36.0,44.0,38.0,43.0,28.0,49.0,41.0,44.0,56.0,44.0,38.0,36.0,23.0,29.0,27.0,34.0,28.0,34.0,31.0,28.0,20.0,32.0,26.0,34.0,35.0,40.0,32.0,59.0,43.0,42.0,43.0,49.0,34.0,47.0,48.0,47.0,48.0,47.0,54.0,57.0,42.0,53.0,46.0,57.0,73.0,53.0,66.0,59.0,54.0,59.0,62.0,69.0,60.0,67.0,52.0,53.0,53.0,56.0,51.0,53.0,44.0,46.0,53.0,40.0,45.0,40.0,50.0,41.0,48.0,39.0,43.0,53.0,49.0,34.0,41.0,27.0,33.0,26.0,23.0,29.0,27.0,17.0,13.0,17.0,13.0,10.0,9.0,12.0,24.0 K81056,38.0,26.0,27.0,31.0,25.0,36.0,29.0,39.0,32.0,31.0,37.0,19.0,32.0,29.0,26.0,29.0,31.0,30.0,39.0,37.0,25.0,41.0,33.0,35.0,47.0,50.0,35.0,39.0,55.0,40.0,48.0,36.0,58.0,51.0,44.0,45.0,51.0,52.0,51.0,56.0,46.0,46.0,31.0,42.0,42.0,38.0,30.0,37.0,42.0,32.0,26.0,25.0,39.0,48.0,40.0,40.0,42.0,46.0,28.0,27.0,37.0,29.0,40.0,42.0,33.0,34.0,27.0,29.0,27.0,31.0,20.0,38.0,32.0,20.0,27.0,26.0,31.0,30.0,22.0,17.0,18.0,16.0,16.0,17.0,16.0,11.0,9.0,11.0,9.0,9.0,9.0,4.0,2.0,2.0,2.0,7.0 K81057,25.0,33.0,23.0,32.0,38.0,25.0,40.0,37.0,32.0,34.0,41.0,40.0,27.0,41.0,41.0,36.0,49.0,44.0,32.0,31.0,22.0,22.0,32.0,35.0,33.0,29.0,32.0,36.0,33.0,37.0,42.0,48.0,36.0,51.0,35.0,40.0,60.0,44.0,47.0,38.0,39.0,66.0,36.0,36.0,31.0,40.0,46.0,34.0,40.0,37.0,49.0,54.0,53.0,61.0,50.0,50.0,50.0,55.0,49.0,55.0,56.0,62.0,59.0,63.0,51.0,40.0,56.0,50.0,44.0,39.0,52.0,56.0,45.0,42.0,37.0,44.0,40.0,49.0,57.0,35.0,33.0,43.0,42.0,26.0,34.0,22.0,11.0,19.0,17.0,12.0,12.0,10.0,11.0,4.0,6.0,17.0 K81062,112.0,125.0,138.0,133.0,150.0,136.0,136.0,171.0,171.0,158.0,145.0,182.0,166.0,162.0,166.0,185.0,168.0,152.0,139.0,116.0,103.0,113.0,124.0,144.0,169.0,148.0,202.0,187.0,193.0,198.0,199.0,218.0,237.0,263.0,232.0,240.0,267.0,237.0,242.0,258.0,203.0,258.0,219.0,213.0,226.0,224.0,156.0,180.0,175.0,177.0,185.0,152.0,161.0,165.0,159.0,147.0,141.0,140.0,148.0,147.0,153.0,167.0,130.0,126.0,123.0,122.0,125.0,119.0,96.0,112.0,101.0,87.0,95.0,79.0,83.0,92.0,83.0,79.0,99.0,62.0,83.0,72.0,64.0,45.0,51.0,41.0,38.0,42.0,25.0,30.0,24.0,20.0,16.0,12.0,15.0,28.0 K81063,109.0,104.0,104.0,109.0,116.0,133.0,109.0,124.0,134.0,142.0,124.0,115.0,124.0,134.0,125.0,140.0,127.0,133.0,117.0,92.0,77.0,90.0,99.0,89.0,118.0,137.0,145.0,160.0,145.0,163.0,171.0,193.0,157.0,172.0,182.0,186.0,201.0,186.0,189.0,165.0,179.0,163.0,145.0,176.0,140.0,141.0,166.0,140.0,138.0,143.0,149.0,132.0,150.0,139.0,144.0,139.0,138.0,132.0,139.0,141.0,128.0,130.0,117.0,124.0,100.0,115.0,117.0,117.0,111.0,106.0,92.0,80.0,79.0,96.0,90.0,101.0,105.0,112.0,109.0,84.0,77.0,104.0,71.0,72.0,55.0,45.0,49.0,54.0,39.0,40.0,30.0,27.0,31.0,28.0,19.0,58.0 K81069,33.0,59.0,60.0,55.0,70.0,68.0,71.0,71.0,73.0,81.0,75.0,91.0,78.0,92.0,106.0,75.0,94.0,70.0,86.0,66.0,79.0,55.0,63.0,69.0,58.0,65.0,42.0,69.0,62.0,56.0,76.0,73.0,70.0,82.0,88.0,84.0,88.0,104.0,103.0,97.0,103.0,97.0,110.0,119.0,105.0,102.0,101.0,95.0,102.0,82.0,94.0,95.0,85.0,120.0,103.0,98.0,118.0,111.0,93.0,115.0,110.0,89.0,80.0,95.0,101.0,88.0,87.0,66.0,79.0,76.0,74.0,72.0,84.0,93.0,69.0,77.0,73.0,78.0,91.0,64.0,59.0,56.0,44.0,58.0,44.0,49.0,43.0,33.0,26.0,34.0,25.0,18.0,13.0,16.0,6.0,19.0 K81070,44.0,47.0,48.0,47.0,53.0,55.0,54.0,53.0,67.0,73.0,51.0,82.0,102.0,87.0,98.0,85.0,87.0,94.0,65.0,67.0,48.0,60.0,65.0,53.0,58.0,48.0,54.0,56.0,37.0,55.0,60.0,58.0,61.0,48.0,78.0,66.0,55.0,63.0,61.0,71.0,88.0,92.0,80.0,94.0,98.0,101.0,93.0,92.0,113.0,103.0,122.0,110.0,108.0,104.0,98.0,97.0,82.0,97.0,82.0,88.0,81.0,88.0,81.0,77.0,78.0,51.0,69.0,62.0,52.0,44.0,67.0,48.0,44.0,48.0,46.0,60.0,53.0,67.0,70.0,47.0,48.0,54.0,37.0,38.0,27.0,26.0,30.0,20.0,23.0,16.0,25.0,21.0,14.0,11.0,7.0,14.0 K81073,72.0,68.0,84.0,92.0,108.0,89.0,101.0,105.0,102.0,91.0,103.0,99.0,110.0,114.0,105.0,116.0,82.0,116.0,103.0,77.0,90.0,97.0,84.0,81.0,66.0,96.0,101.0,92.0,111.0,109.0,139.0,101.0,122.0,134.0,112.0,125.0,111.0,127.0,121.0,111.0,133.0,122.0,126.0,139.0,127.0,117.0,118.0,121.0,96.0,128.0,115.0,120.0,113.0,141.0,136.0,116.0,127.0,119.0,122.0,111.0,121.0,116.0,101.0,134.0,116.0,90.0,110.0,125.0,103.0,95.0,99.0,72.0,107.0,80.0,100.0,86.0,98.0,114.0,88.0,67.0,69.0,53.0,50.0,48.0,45.0,39.0,33.0,45.0,19.0,29.0,15.0,17.0,17.0,16.0,15.0,18.0 K81077,42.0,54.0,59.0,52.0,56.0,52.0,51.0,53.0,54.0,59.0,59.0,59.0,77.0,69.0,62.0,57.0,78.0,64.0,63.0,44.0,42.0,52.0,49.0,36.0,41.0,71.0,65.0,61.0,78.0,71.0,80.0,74.0,70.0,67.0,66.0,79.0,80.0,79.0,79.0,77.0,76.0,84.0,73.0,83.0,83.0,78.0,71.0,73.0,76.0,69.0,71.0,85.0,63.0,94.0,86.0,74.0,68.0,83.0,72.0,75.0,69.0,67.0,84.0,61.0,76.0,49.0,63.0,68.0,62.0,61.0,56.0,51.0,51.0,55.0,52.0,43.0,37.0,43.0,39.0,37.0,33.0,36.0,29.0,22.0,28.0,17.0,28.0,14.0,10.0,9.0,14.0,14.0,7.0,4.0,5.0,14.0 K81078,52.0,48.0,67.0,74.0,69.0,62.0,81.0,79.0,88.0,88.0,90.0,96.0,93.0,98.0,87.0,71.0,79.0,91.0,76.0,65.0,71.0,63.0,69.0,76.0,86.0,80.0,97.0,82.0,79.0,101.0,103.0,87.0,120.0,106.0,97.0,118.0,97.0,118.0,113.0,116.0,107.0,117.0,112.0,112.0,96.0,106.0,85.0,89.0,90.0,93.0,82.0,70.0,78.0,79.0,87.0,85.0,93.0,106.0,104.0,76.0,101.0,75.0,81.0,69.0,61.0,62.0,59.0,73.0,63.0,52.0,45.0,46.0,55.0,58.0,49.0,44.0,43.0,51.0,42.0,32.0,45.0,46.0,44.0,35.0,16.0,28.0,31.0,28.0,29.0,23.0,21.0,11.0,13.0,10.0,8.0,17.0 K81080,29.0,28.0,38.0,62.0,44.0,59.0,58.0,47.0,71.0,70.0,52.0,44.0,61.0,66.0,71.0,62.0,61.0,55.0,38.0,34.0,38.0,31.0,33.0,39.0,45.0,36.0,51.0,34.0,41.0,41.0,57.0,54.0,42.0,37.0,51.0,59.0,74.0,61.0,65.0,83.0,68.0,75.0,67.0,76.0,84.0,75.0,75.0,75.0,76.0,68.0,69.0,63.0,57.0,79.0,73.0,67.0,64.0,74.0,74.0,62.0,67.0,70.0,68.0,62.0,52.0,62.0,41.0,43.0,48.0,40.0,49.0,49.0,45.0,46.0,48.0,55.0,41.0,63.0,67.0,35.0,37.0,46.0,44.0,28.0,27.0,27.0,31.0,24.0,16.0,25.0,19.0,12.0,10.0,7.0,6.0,13.0 K81081,5.0,8.0,12.0,8.0,12.0,5.0,6.0,8.0,6.0,7.0,9.0,10.0,11.0,15.0,10.0,9.0,19.0,17.0,4.0,10.0,12.0,4.0,9.0,9.0,18.0,17.0,17.0,11.0,31.0,20.0,28.0,28.0,27.0,24.0,28.0,29.0,26.0,17.0,20.0,20.0,28.0,20.0,20.0,19.0,16.0,28.0,18.0,8.0,12.0,8.0,16.0,9.0,17.0,15.0,10.0,8.0,9.0,14.0,5.0,10.0,13.0,7.0,3.0,5.0,1.0,7.0,4.0,8.0,9.0,6.0,6.0,4.0,9.0,7.0,4.0,5.0,6.0,5.0,4.0,5.0,5.0,3.0,1.0,1.0,4.0,3.0,,3.0,1.0,2.0,,3.0,,,1.0,1.0 K81092,58.0,61.0,83.0,67.0,86.0,99.0,99.0,117.0,119.0,147.0,148.0,135.0,148.0,143.0,128.0,121.0,122.0,115.0,90.0,64.0,76.0,56.0,64.0,53.0,65.0,66.0,69.0,63.0,65.0,64.0,68.0,91.0,75.0,75.0,101.0,102.0,92.0,115.0,122.0,152.0,144.0,124.0,160.0,166.0,145.0,133.0,147.0,118.0,128.0,124.0,106.0,119.0,108.0,97.0,96.0,100.0,93.0,89.0,83.0,99.0,103.0,89.0,92.0,87.0,79.0,83.0,86.0,79.0,86.0,81.0,86.0,74.0,64.0,81.0,66.0,55.0,54.0,64.0,67.0,42.0,50.0,45.0,35.0,30.0,17.0,29.0,19.0,22.0,19.0,23.0,14.0,18.0,10.0,9.0,9.0,14.0 K81100,31.0,45.0,43.0,31.0,42.0,37.0,29.0,35.0,36.0,31.0,35.0,39.0,42.0,30.0,36.0,33.0,34.0,28.0,26.0,38.0,39.0,48.0,58.0,51.0,61.0,66.0,80.0,76.0,84.0,70.0,69.0,82.0,78.0,77.0,90.0,73.0,61.0,66.0,61.0,45.0,62.0,61.0,53.0,52.0,56.0,45.0,36.0,43.0,42.0,45.0,40.0,43.0,43.0,32.0,32.0,37.0,28.0,25.0,31.0,36.0,29.0,33.0,24.0,27.0,19.0,22.0,18.0,25.0,9.0,9.0,19.0,13.0,11.0,13.0,8.0,10.0,8.0,12.0,10.0,8.0,7.0,9.0,6.0,7.0,5.0,,6.0,4.0,1.0,1.0,8.0,4.0,4.0,2.0,1.0,3.0 K81102,47.0,49.0,50.0,58.0,44.0,52.0,63.0,57.0,68.0,55.0,66.0,63.0,114.0,130.0,156.0,136.0,146.0,162.0,114.0,50.0,39.0,40.0,44.0,29.0,48.0,40.0,52.0,57.0,69.0,60.0,83.0,48.0,71.0,78.0,79.0,88.0,87.0,83.0,72.0,79.0,70.0,68.0,70.0,58.0,84.0,72.0,69.0,44.0,65.0,72.0,68.0,68.0,65.0,73.0,87.0,84.0,79.0,76.0,68.0,74.0,71.0,74.0,79.0,73.0,60.0,56.0,40.0,55.0,51.0,48.0,50.0,54.0,37.0,32.0,48.0,37.0,33.0,33.0,38.0,32.0,21.0,31.0,19.0,13.0,12.0,14.0,17.0,6.0,14.0,7.0,5.0,5.0,5.0,4.0,2.0,9.0 K81103,21.0,29.0,32.0,32.0,38.0,36.0,33.0,41.0,39.0,48.0,53.0,51.0,48.0,62.0,88.0,98.0,110.0,120.0,95.0,64.0,54.0,35.0,34.0,36.0,40.0,33.0,32.0,42.0,24.0,34.0,38.0,42.0,29.0,45.0,43.0,45.0,47.0,54.0,40.0,50.0,47.0,52.0,56.0,41.0,58.0,76.0,52.0,52.0,58.0,49.0,77.0,58.0,62.0,58.0,63.0,55.0,85.0,57.0,69.0,69.0,63.0,65.0,85.0,72.0,49.0,62.0,54.0,49.0,53.0,51.0,45.0,36.0,36.0,45.0,55.0,43.0,39.0,38.0,47.0,37.0,41.0,28.0,26.0,25.0,14.0,16.0,21.0,10.0,11.0,9.0,5.0,9.0,7.0,2.0,5.0,12.0 K81605,115.0,144.0,140.0,157.0,140.0,135.0,156.0,160.0,167.0,169.0,155.0,166.0,151.0,136.0,157.0,122.0,127.0,138.0,293.0,532.0,690.0,622.0,528.0,522.0,472.0,287.0,265.0,289.0,227.0,271.0,263.0,267.0,262.0,315.0,241.0,313.0,269.0,238.0,277.0,268.0,254.0,289.0,234.0,224.0,199.0,200.0,178.0,182.0,168.0,138.0,134.0,130.0,132.0,94.0,130.0,118.0,101.0,109.0,108.0,98.0,97.0,99.0,90.0,78.0,61.0,72.0,82.0,60.0,72.0,54.0,44.0,67.0,63.0,43.0,44.0,50.0,42.0,38.0,49.0,41.0,40.0,36.0,32.0,19.0,19.0,23.0,23.0,14.0,11.0,12.0,10.0,8.0,10.0,6.0,2.0,21.0 K81633,48.0,82.0,67.0,90.0,77.0,93.0,74.0,84.0,94.0,89.0,63.0,91.0,76.0,102.0,74.0,93.0,73.0,66.0,65.0,48.0,63.0,51.0,49.0,59.0,54.0,45.0,82.0,76.0,90.0,54.0,107.0,92.0,95.0,94.0,105.0,126.0,118.0,129.0,125.0,107.0,109.0,113.0,90.0,100.0,102.0,86.0,85.0,89.0,80.0,73.0,74.0,70.0,56.0,64.0,66.0,61.0,56.0,56.0,45.0,51.0,43.0,46.0,38.0,40.0,39.0,39.0,47.0,28.0,22.0,30.0,38.0,24.0,24.0,29.0,23.0,21.0,16.0,29.0,27.0,25.0,16.0,21.0,15.0,15.0,16.0,9.0,11.0,14.0,10.0,8.0,15.0,9.0,16.0,9.0,9.0,24.0 K81636,48.0,55.0,60.0,50.0,54.0,56.0,54.0,71.0,60.0,74.0,55.0,63.0,63.0,70.0,57.0,51.0,58.0,64.0,55.0,55.0,30.0,33.0,42.0,46.0,46.0,60.0,55.0,48.0,66.0,76.0,67.0,65.0,62.0,79.0,83.0,105.0,79.0,72.0,89.0,84.0,72.0,78.0,84.0,74.0,64.0,76.0,65.0,49.0,65.0,47.0,44.0,45.0,63.0,51.0,52.0,35.0,41.0,34.0,47.0,54.0,34.0,43.0,36.0,32.0,31.0,30.0,22.0,18.0,33.0,22.0,23.0,28.0,20.0,15.0,23.0,18.0,17.0,12.0,18.0,12.0,7.0,11.0,7.0,6.0,5.0,7.0,1.0,7.0,2.0,4.0,2.0,3.0,,1.0,,2.0 K81644,56.0,63.0,49.0,60.0,61.0,60.0,75.0,88.0,78.0,71.0,88.0,80.0,85.0,77.0,94.0,97.0,104.0,105.0,137.0,206.0,227.0,181.0,164.0,159.0,133.0,131.0,129.0,101.0,97.0,84.0,109.0,96.0,147.0,100.0,111.0,103.0,96.0,107.0,116.0,116.0,107.0,89.0,107.0,89.0,99.0,99.0,102.0,78.0,104.0,95.0,76.0,94.0,79.0,92.0,106.0,82.0,99.0,91.0,99.0,106.0,90.0,82.0,85.0,75.0,77.0,68.0,55.0,60.0,49.0,52.0,48.0,49.0,41.0,43.0,39.0,37.0,49.0,50.0,45.0,29.0,41.0,30.0,23.0,13.0,22.0,20.0,31.0,22.0,21.0,13.0,10.0,13.0,6.0,10.0,4.0,15.0 K81651,90.0,95.0,90.0,86.0,85.0,95.0,62.0,82.0,88.0,83.0,95.0,99.0,94.0,89.0,96.0,63.0,84.0,90.0,96.0,105.0,90.0,101.0,106.0,87.0,125.0,153.0,170.0,142.0,154.0,179.0,177.0,204.0,199.0,212.0,208.0,196.0,180.0,177.0,188.0,160.0,156.0,145.0,142.0,108.0,119.0,106.0,107.0,93.0,85.0,90.0,83.0,82.0,81.0,79.0,81.0,67.0,85.0,62.0,63.0,65.0,52.0,58.0,52.0,48.0,56.0,41.0,40.0,40.0,42.0,45.0,49.0,44.0,29.0,31.0,30.0,37.0,23.0,33.0,25.0,28.0,18.0,24.0,15.0,9.0,13.0,8.0,15.0,8.0,10.0,3.0,4.0,4.0,3.0,10.0,2.0,10.0 K82001,30.0,45.0,40.0,48.0,53.0,34.0,51.0,53.0,75.0,72.0,72.0,55.0,72.0,73.0,60.0,72.0,64.0,57.0,61.0,40.0,40.0,37.0,43.0,52.0,58.0,33.0,56.0,61.0,33.0,45.0,38.0,40.0,42.0,46.0,57.0,44.0,61.0,61.0,62.0,66.0,74.0,70.0,65.0,66.0,65.0,78.0,56.0,85.0,70.0,97.0,63.0,76.0,87.0,84.0,82.0,78.0,98.0,79.0,84.0,79.0,97.0,88.0,77.0,61.0,78.0,56.0,66.0,60.0,64.0,60.0,43.0,46.0,68.0,54.0,67.0,66.0,61.0,69.0,71.0,44.0,59.0,64.0,50.0,44.0,39.0,41.0,39.0,35.0,22.0,18.0,13.0,26.0,10.0,12.0,5.0,15.0 K82004,60.0,56.0,61.0,66.0,75.0,63.0,85.0,79.0,90.0,108.0,106.0,102.0,132.0,109.0,114.0,109.0,106.0,124.0,105.0,69.0,50.0,58.0,57.0,67.0,64.0,59.0,61.0,63.0,55.0,53.0,58.0,71.0,67.0,67.0,82.0,86.0,100.0,83.0,87.0,127.0,124.0,135.0,136.0,131.0,138.0,146.0,120.0,130.0,132.0,110.0,101.0,97.0,99.0,125.0,87.0,82.0,81.0,86.0,94.0,79.0,99.0,84.0,68.0,81.0,79.0,60.0,72.0,60.0,63.0,58.0,63.0,54.0,67.0,55.0,52.0,51.0,56.0,60.0,74.0,55.0,51.0,50.0,44.0,37.0,32.0,34.0,36.0,38.0,33.0,18.0,22.0,19.0,19.0,22.0,19.0,43.0 K82006,55.0,58.0,42.0,47.0,56.0,54.0,49.0,43.0,47.0,49.0,35.0,45.0,43.0,43.0,38.0,52.0,57.0,43.0,48.0,44.0,39.0,45.0,41.0,51.0,37.0,49.0,60.0,67.0,68.0,64.0,61.0,58.0,78.0,71.0,72.0,68.0,65.0,56.0,63.0,76.0,61.0,60.0,64.0,71.0,68.0,41.0,56.0,56.0,50.0,61.0,49.0,46.0,61.0,66.0,61.0,49.0,75.0,79.0,69.0,76.0,80.0,53.0,66.0,58.0,56.0,48.0,56.0,46.0,45.0,34.0,47.0,43.0,52.0,30.0,40.0,35.0,38.0,47.0,41.0,19.0,32.0,30.0,35.0,22.0,17.0,18.0,20.0,16.0,21.0,12.0,11.0,9.0,10.0,5.0,5.0,18.0 K82007,101.0,129.0,103.0,141.0,145.0,141.0,142.0,176.0,176.0,204.0,208.0,215.0,189.0,196.0,209.0,200.0,194.0,227.0,215.0,194.0,214.0,190.0,214.0,174.0,198.0,171.0,154.0,178.0,161.0,154.0,169.0,177.0,192.0,177.0,188.0,177.0,231.0,207.0,207.0,195.0,247.0,171.0,188.0,215.0,220.0,216.0,190.0,201.0,193.0,182.0,197.0,201.0,250.0,232.0,218.0,224.0,184.0,215.0,247.0,206.0,217.0,213.0,208.0,200.0,178.0,184.0,191.0,167.0,162.0,159.0,163.0,144.0,149.0,130.0,147.0,154.0,164.0,170.0,151.0,104.0,104.0,106.0,100.0,80.0,65.0,68.0,57.0,62.0,55.0,45.0,52.0,36.0,21.0,17.0,21.0,48.0 K82008,27.0,53.0,35.0,56.0,66.0,56.0,52.0,55.0,57.0,67.0,66.0,67.0,59.0,68.0,72.0,71.0,52.0,64.0,62.0,47.0,48.0,43.0,58.0,67.0,67.0,50.0,55.0,51.0,43.0,56.0,48.0,42.0,57.0,61.0,49.0,60.0,53.0,60.0,82.0,69.0,70.0,74.0,78.0,62.0,80.0,84.0,69.0,71.0,69.0,93.0,70.0,79.0,62.0,70.0,64.0,74.0,89.0,89.0,81.0,78.0,64.0,70.0,72.0,72.0,78.0,58.0,58.0,63.0,47.0,60.0,40.0,53.0,39.0,50.0,52.0,54.0,53.0,60.0,65.0,36.0,46.0,37.0,51.0,35.0,43.0,41.0,21.0,33.0,18.0,30.0,27.0,20.0,15.0,18.0,12.0,39.0 K82010,39.0,55.0,47.0,56.0,67.0,75.0,72.0,65.0,63.0,72.0,75.0,73.0,64.0,69.0,60.0,54.0,66.0,92.0,48.0,49.0,46.0,47.0,52.0,50.0,48.0,54.0,43.0,53.0,84.0,63.0,73.0,74.0,79.0,63.0,62.0,64.0,87.0,90.0,99.0,95.0,78.0,92.0,83.0,80.0,86.0,91.0,80.0,75.0,73.0,71.0,71.0,62.0,77.0,68.0,59.0,69.0,47.0,61.0,53.0,54.0,45.0,52.0,37.0,49.0,38.0,39.0,47.0,29.0,29.0,36.0,38.0,31.0,23.0,35.0,30.0,33.0,40.0,34.0,41.0,28.0,26.0,41.0,21.0,13.0,12.0,12.0,17.0,8.0,10.0,13.0,10.0,5.0,7.0,3.0,1.0,8.0 K82011,42.0,44.0,61.0,59.0,62.0,59.0,65.0,67.0,72.0,64.0,55.0,62.0,102.0,70.0,65.0,63.0,60.0,54.0,54.0,28.0,44.0,54.0,64.0,50.0,56.0,78.0,51.0,51.0,54.0,48.0,66.0,72.0,62.0,60.0,83.0,67.0,85.0,56.0,79.0,82.0,71.0,83.0,80.0,82.0,92.0,92.0,77.0,61.0,65.0,56.0,72.0,67.0,70.0,81.0,73.0,83.0,65.0,68.0,70.0,70.0,78.0,55.0,71.0,45.0,50.0,45.0,36.0,41.0,39.0,40.0,48.0,35.0,48.0,46.0,41.0,37.0,41.0,46.0,44.0,40.0,32.0,40.0,32.0,22.0,29.0,21.0,18.0,17.0,23.0,12.0,13.0,19.0,9.0,5.0,7.0,25.0 K82012,19.0,27.0,28.0,27.0,31.0,22.0,48.0,41.0,38.0,46.0,42.0,48.0,43.0,44.0,54.0,41.0,51.0,39.0,41.0,29.0,26.0,30.0,43.0,32.0,25.0,34.0,27.0,37.0,21.0,21.0,24.0,32.0,41.0,29.0,53.0,36.0,33.0,45.0,48.0,42.0,49.0,54.0,49.0,47.0,57.0,56.0,59.0,73.0,43.0,51.0,46.0,49.0,48.0,53.0,61.0,39.0,42.0,41.0,50.0,41.0,45.0,38.0,47.0,54.0,59.0,44.0,52.0,58.0,44.0,42.0,39.0,39.0,55.0,49.0,46.0,49.0,43.0,54.0,48.0,37.0,33.0,32.0,35.0,30.0,27.0,29.0,21.0,17.0,19.0,11.0,17.0,11.0,8.0,7.0,9.0,10.0 K82014,25.0,19.0,36.0,31.0,27.0,21.0,34.0,27.0,40.0,31.0,37.0,31.0,33.0,45.0,34.0,36.0,46.0,26.0,29.0,27.0,19.0,23.0,29.0,36.0,33.0,43.0,27.0,36.0,35.0,37.0,31.0,36.0,43.0,37.0,43.0,53.0,36.0,46.0,36.0,48.0,42.0,44.0,47.0,38.0,42.0,46.0,26.0,29.0,38.0,37.0,45.0,47.0,47.0,43.0,47.0,44.0,45.0,42.0,67.0,38.0,41.0,46.0,39.0,45.0,36.0,30.0,36.0,29.0,19.0,20.0,25.0,25.0,26.0,25.0,24.0,21.0,26.0,24.0,25.0,21.0,20.0,19.0,17.0,12.0,14.0,16.0,20.0,11.0,12.0,13.0,9.0,8.0,7.0,3.0,3.0,10.0 K82017,67.0,63.0,75.0,84.0,81.0,81.0,96.0,103.0,73.0,87.0,94.0,94.0,86.0,80.0,110.0,97.0,98.0,93.0,86.0,78.0,80.0,72.0,82.0,92.0,86.0,100.0,91.0,105.0,90.0,97.0,90.0,110.0,95.0,109.0,114.0,112.0,105.0,103.0,110.0,100.0,93.0,122.0,96.0,129.0,107.0,120.0,105.0,103.0,95.0,99.0,91.0,88.0,84.0,84.0,91.0,92.0,81.0,81.0,66.0,83.0,84.0,79.0,55.0,68.0,61.0,56.0,55.0,67.0,68.0,62.0,46.0,34.0,48.0,58.0,35.0,37.0,51.0,47.0,58.0,47.0,59.0,38.0,44.0,29.0,36.0,22.0,30.0,21.0,27.0,15.0,20.0,12.0,11.0,6.0,11.0,16.0 K82019,94.0,96.0,103.0,99.0,92.0,102.0,90.0,125.0,91.0,99.0,132.0,102.0,141.0,133.0,97.0,108.0,96.0,107.0,102.0,78.0,82.0,82.0,69.0,105.0,88.0,125.0,128.0,124.0,124.0,132.0,131.0,142.0,147.0,168.0,130.0,161.0,144.0,152.0,128.0,162.0,132.0,126.0,130.0,157.0,129.0,134.0,127.0,97.0,96.0,108.0,101.0,102.0,98.0,101.0,79.0,94.0,102.0,100.0,103.0,97.0,99.0,80.0,78.0,59.0,95.0,61.0,66.0,81.0,56.0,46.0,45.0,50.0,49.0,48.0,45.0,39.0,55.0,49.0,38.0,29.0,22.0,29.0,32.0,21.0,21.0,20.0,20.0,20.0,11.0,11.0,6.0,6.0,6.0,6.0,7.0,11.0 K82020,18.0,20.0,20.0,21.0,26.0,24.0,20.0,31.0,24.0,30.0,35.0,23.0,33.0,46.0,38.0,36.0,34.0,37.0,36.0,36.0,49.0,47.0,51.0,60.0,73.0,50.0,67.0,43.0,37.0,42.0,55.0,36.0,51.0,51.0,51.0,44.0,43.0,41.0,40.0,41.0,37.0,34.0,31.0,34.0,38.0,43.0,39.0,41.0,39.0,31.0,33.0,41.0,36.0,40.0,31.0,42.0,46.0,45.0,32.0,39.0,42.0,46.0,53.0,39.0,31.0,23.0,20.0,37.0,26.0,17.0,25.0,27.0,33.0,19.0,18.0,21.0,15.0,22.0,24.0,12.0,11.0,19.0,7.0,7.0,5.0,12.0,14.0,17.0,8.0,15.0,9.0,12.0,11.0,5.0,6.0,11.0 K82021,41.0,61.0,77.0,77.0,62.0,72.0,85.0,54.0,70.0,87.0,66.0,78.0,73.0,81.0,89.0,87.0,80.0,78.0,77.0,71.0,69.0,39.0,65.0,59.0,75.0,67.0,63.0,58.0,54.0,68.0,77.0,59.0,94.0,94.0,99.0,107.0,102.0,106.0,86.0,85.0,91.0,100.0,84.0,84.0,87.0,92.0,74.0,79.0,73.0,94.0,104.0,95.0,99.0,98.0,144.0,107.0,120.0,117.0,120.0,127.0,116.0,120.0,109.0,126.0,122.0,97.0,133.0,94.0,96.0,107.0,93.0,114.0,103.0,92.0,88.0,87.0,105.0,105.0,114.0,78.0,97.0,85.0,63.0,51.0,61.0,54.0,64.0,54.0,39.0,44.0,27.0,18.0,20.0,21.0,21.0,33.0 K82022,50.0,56.0,52.0,69.0,59.0,68.0,66.0,65.0,82.0,76.0,79.0,87.0,81.0,88.0,77.0,87.0,85.0,83.0,72.0,61.0,43.0,56.0,51.0,50.0,68.0,54.0,57.0,68.0,61.0,67.0,79.0,70.0,51.0,91.0,78.0,100.0,97.0,84.0,80.0,85.0,90.0,96.0,72.0,88.0,84.0,72.0,78.0,77.0,83.0,72.0,78.0,61.0,61.0,67.0,67.0,69.0,53.0,51.0,59.0,47.0,47.0,58.0,52.0,53.0,40.0,35.0,57.0,42.0,36.0,37.0,36.0,30.0,31.0,31.0,29.0,28.0,35.0,27.0,25.0,19.0,23.0,16.0,26.0,17.0,19.0,23.0,10.0,10.0,13.0,11.0,11.0,5.0,8.0,2.0,2.0,7.0 K82023,94.0,84.0,97.0,135.0,113.0,114.0,151.0,154.0,143.0,169.0,162.0,187.0,178.0,181.0,205.0,189.0,205.0,167.0,156.0,138.0,111.0,106.0,108.0,130.0,132.0,130.0,90.0,110.0,106.0,92.0,113.0,119.0,130.0,124.0,147.0,123.0,147.0,147.0,176.0,162.0,159.0,167.0,174.0,174.0,196.0,194.0,208.0,211.0,208.0,206.0,201.0,216.0,220.0,217.0,221.0,198.0,205.0,196.0,219.0,246.0,208.0,209.0,197.0,174.0,189.0,166.0,165.0,167.0,132.0,156.0,168.0,158.0,156.0,129.0,167.0,150.0,154.0,174.0,154.0,130.0,147.0,148.0,124.0,115.0,72.0,77.0,92.0,76.0,63.0,49.0,54.0,55.0,31.0,28.0,30.0,65.0 K82024,46.0,56.0,53.0,63.0,49.0,53.0,55.0,69.0,60.0,71.0,77.0,79.0,54.0,71.0,66.0,62.0,63.0,51.0,54.0,47.0,41.0,51.0,53.0,64.0,42.0,54.0,54.0,56.0,54.0,69.0,65.0,58.0,66.0,81.0,71.0,79.0,72.0,56.0,60.0,91.0,75.0,93.0,95.0,70.0,87.0,77.0,85.0,73.0,71.0,54.0,69.0,73.0,74.0,78.0,96.0,67.0,62.0,73.0,61.0,73.0,71.0,74.0,65.0,63.0,76.0,57.0,65.0,56.0,40.0,68.0,41.0,53.0,47.0,53.0,54.0,57.0,58.0,44.0,51.0,39.0,25.0,34.0,42.0,20.0,25.0,19.0,34.0,25.0,16.0,19.0,21.0,19.0,9.0,8.0,7.0,21.0 K82028,45.0,51.0,59.0,56.0,56.0,58.0,62.0,59.0,60.0,51.0,53.0,61.0,80.0,75.0,58.0,48.0,51.0,56.0,46.0,41.0,36.0,32.0,34.0,32.0,33.0,28.0,33.0,32.0,54.0,48.0,51.0,65.0,69.0,70.0,75.0,61.0,70.0,84.0,79.0,63.0,78.0,68.0,68.0,73.0,71.0,72.0,65.0,56.0,65.0,52.0,56.0,61.0,71.0,63.0,77.0,69.0,69.0,57.0,69.0,72.0,58.0,59.0,55.0,73.0,57.0,58.0,66.0,55.0,57.0,42.0,49.0,56.0,56.0,50.0,59.0,53.0,75.0,67.0,64.0,39.0,60.0,44.0,40.0,44.0,26.0,30.0,30.0,20.0,28.0,18.0,17.0,9.0,16.0,12.0,5.0,27.0 K82029,44.0,71.0,53.0,63.0,64.0,59.0,90.0,70.0,78.0,88.0,75.0,75.0,62.0,81.0,75.0,55.0,66.0,61.0,52.0,51.0,41.0,37.0,48.0,52.0,35.0,55.0,56.0,69.0,63.0,69.0,69.0,73.0,93.0,88.0,94.0,118.0,95.0,103.0,88.0,95.0,91.0,101.0,99.0,82.0,95.0,83.0,79.0,74.0,73.0,75.0,63.0,52.0,81.0,68.0,74.0,59.0,74.0,80.0,69.0,68.0,55.0,57.0,71.0,61.0,79.0,51.0,59.0,58.0,58.0,71.0,51.0,48.0,66.0,55.0,57.0,53.0,40.0,55.0,36.0,37.0,37.0,34.0,33.0,22.0,28.0,24.0,20.0,19.0,16.0,17.0,13.0,18.0,9.0,9.0,6.0,14.0 K82030,62.0,54.0,47.0,47.0,48.0,48.0,48.0,54.0,65.0,64.0,77.0,92.0,150.0,142.0,159.0,151.0,169.0,142.0,127.0,58.0,84.0,64.0,71.0,88.0,100.0,87.0,100.0,106.0,98.0,96.0,104.0,86.0,95.0,104.0,100.0,99.0,105.0,84.0,82.0,106.0,63.0,71.0,66.0,98.0,73.0,83.0,83.0,78.0,66.0,64.0,64.0,75.0,73.0,68.0,56.0,56.0,64.0,52.0,67.0,45.0,52.0,53.0,54.0,49.0,57.0,53.0,48.0,52.0,30.0,32.0,33.0,35.0,27.0,20.0,34.0,29.0,24.0,29.0,40.0,29.0,27.0,25.0,33.0,18.0,13.0,17.0,13.0,16.0,15.0,15.0,18.0,13.0,11.0,8.0,9.0,16.0 K82031,25.0,22.0,26.0,27.0,29.0,26.0,30.0,37.0,34.0,41.0,37.0,48.0,50.0,41.0,44.0,54.0,55.0,68.0,60.0,31.0,22.0,35.0,30.0,35.0,30.0,29.0,35.0,27.0,36.0,35.0,17.0,25.0,27.0,29.0,27.0,38.0,27.0,48.0,32.0,36.0,46.0,45.0,52.0,53.0,52.0,47.0,49.0,46.0,41.0,56.0,44.0,39.0,31.0,44.0,35.0,46.0,57.0,47.0,56.0,48.0,54.0,46.0,50.0,48.0,37.0,46.0,42.0,24.0,39.0,32.0,25.0,36.0,28.0,25.0,19.0,18.0,21.0,32.0,25.0,28.0,28.0,28.0,18.0,10.0,16.0,18.0,17.0,14.0,12.0,16.0,12.0,11.0,2.0,4.0,5.0,12.0 K82033,68.0,87.0,104.0,74.0,98.0,92.0,100.0,119.0,109.0,126.0,118.0,110.0,141.0,120.0,129.0,122.0,117.0,122.0,118.0,99.0,83.0,76.0,90.0,86.0,75.0,101.0,93.0,92.0,103.0,96.0,91.0,133.0,108.0,114.0,114.0,135.0,141.0,150.0,144.0,140.0,148.0,147.0,143.0,175.0,161.0,148.0,148.0,118.0,130.0,122.0,142.0,124.0,134.0,164.0,126.0,140.0,143.0,147.0,140.0,148.0,123.0,139.0,138.0,138.0,94.0,111.0,105.0,90.0,99.0,84.0,91.0,77.0,89.0,89.0,89.0,82.0,100.0,90.0,96.0,76.0,47.0,66.0,72.0,53.0,53.0,54.0,50.0,43.0,36.0,32.0,31.0,26.0,21.0,18.0,9.0,35.0 K82035,11.0,22.0,17.0,28.0,21.0,23.0,20.0,30.0,29.0,18.0,36.0,29.0,29.0,31.0,28.0,27.0,26.0,24.0,14.0,10.0,7.0,12.0,13.0,12.0,16.0,10.0,18.0,17.0,10.0,18.0,13.0,19.0,26.0,28.0,26.0,19.0,22.0,23.0,22.0,23.0,27.0,22.0,27.0,33.0,26.0,24.0,26.0,27.0,28.0,35.0,30.0,21.0,39.0,25.0,35.0,31.0,30.0,21.0,36.0,23.0,33.0,25.0,27.0,17.0,32.0,31.0,29.0,16.0,17.0,19.0,27.0,25.0,25.0,18.0,17.0,28.0,16.0,20.0,27.0,25.0,16.0,18.0,12.0,11.0,14.0,10.0,10.0,6.0,6.0,7.0,5.0,6.0,5.0,3.0,3.0,8.0 K82036,90.0,70.0,62.0,60.0,79.0,51.0,65.0,63.0,63.0,66.0,73.0,69.0,78.0,65.0,65.0,73.0,58.0,63.0,78.0,77.0,74.0,65.0,80.0,72.0,72.0,79.0,86.0,100.0,96.0,91.0,104.0,104.0,95.0,97.0,107.0,105.0,111.0,89.0,88.0,91.0,89.0,91.0,83.0,98.0,79.0,75.0,71.0,68.0,69.0,57.0,53.0,48.0,72.0,55.0,58.0,68.0,52.0,63.0,65.0,57.0,62.0,56.0,57.0,61.0,48.0,61.0,62.0,65.0,59.0,47.0,43.0,39.0,38.0,39.0,36.0,36.0,38.0,46.0,36.0,34.0,18.0,24.0,32.0,25.0,28.0,29.0,23.0,13.0,13.0,8.0,10.0,3.0,8.0,9.0,7.0,5.0 K82037,62.0,55.0,67.0,64.0,60.0,54.0,83.0,74.0,71.0,74.0,56.0,88.0,66.0,82.0,95.0,99.0,75.0,101.0,70.0,49.0,53.0,52.0,50.0,69.0,71.0,59.0,77.0,71.0,65.0,59.0,75.0,77.0,99.0,89.0,101.0,89.0,102.0,93.0,97.0,102.0,88.0,96.0,109.0,117.0,107.0,100.0,91.0,90.0,98.0,83.0,78.0,93.0,89.0,117.0,98.0,102.0,92.0,109.0,85.0,105.0,96.0,100.0,87.0,87.0,101.0,75.0,76.0,72.0,75.0,65.0,54.0,52.0,56.0,68.0,62.0,59.0,64.0,65.0,67.0,41.0,77.0,55.0,44.0,33.0,41.0,36.0,38.0,27.0,31.0,32.0,30.0,25.0,15.0,14.0,13.0,20.0 K82038,121.0,146.0,140.0,156.0,157.0,163.0,155.0,155.0,163.0,165.0,145.0,167.0,143.0,148.0,132.0,141.0,147.0,120.0,105.0,111.0,117.0,100.0,87.0,92.0,134.0,131.0,141.0,137.0,191.0,170.0,178.0,210.0,207.0,216.0,211.0,204.0,218.0,209.0,204.0,208.0,203.0,174.0,192.0,176.0,165.0,174.0,142.0,171.0,141.0,145.0,131.0,139.0,155.0,163.0,136.0,148.0,151.0,150.0,153.0,132.0,143.0,135.0,122.0,125.0,104.0,108.0,125.0,115.0,108.0,84.0,92.0,102.0,91.0,82.0,80.0,73.0,80.0,97.0,83.0,61.0,57.0,66.0,49.0,43.0,53.0,26.0,28.0,41.0,38.0,23.0,25.0,10.0,19.0,19.0,7.0,18.0 K82040,80.0,97.0,79.0,88.0,75.0,89.0,103.0,79.0,105.0,94.0,83.0,95.0,97.0,90.0,83.0,93.0,82.0,95.0,71.0,57.0,60.0,49.0,62.0,61.0,56.0,81.0,97.0,98.0,82.0,131.0,128.0,113.0,121.0,138.0,143.0,126.0,118.0,143.0,130.0,133.0,128.0,111.0,131.0,113.0,109.0,100.0,102.0,87.0,92.0,80.0,86.0,87.0,91.0,78.0,76.0,84.0,82.0,79.0,72.0,68.0,61.0,63.0,72.0,69.0,51.0,62.0,41.0,36.0,45.0,45.0,39.0,53.0,48.0,50.0,36.0,41.0,45.0,51.0,37.0,26.0,31.0,32.0,23.0,27.0,19.0,19.0,13.0,18.0,10.0,16.0,12.0,6.0,9.0,11.0,4.0,11.0 K82044,70.0,57.0,53.0,72.0,70.0,78.0,62.0,85.0,73.0,71.0,70.0,62.0,60.0,64.0,77.0,64.0,65.0,70.0,63.0,61.0,70.0,50.0,51.0,48.0,56.0,64.0,71.0,63.0,63.0,84.0,69.0,75.0,94.0,83.0,104.0,119.0,104.0,106.0,86.0,103.0,88.0,90.0,99.0,82.0,95.0,84.0,80.0,73.0,78.0,66.0,60.0,57.0,57.0,58.0,64.0,57.0,55.0,49.0,47.0,63.0,45.0,51.0,51.0,34.0,33.0,39.0,34.0,33.0,41.0,31.0,43.0,21.0,30.0,18.0,18.0,20.0,21.0,23.0,29.0,24.0,24.0,20.0,14.0,10.0,9.0,12.0,13.0,7.0,7.0,8.0,6.0,4.0,11.0,5.0,5.0,12.0 K82045,24.0,31.0,31.0,54.0,34.0,46.0,38.0,39.0,30.0,42.0,41.0,44.0,34.0,52.0,40.0,42.0,41.0,41.0,38.0,26.0,30.0,26.0,30.0,28.0,36.0,22.0,42.0,27.0,30.0,35.0,30.0,25.0,30.0,33.0,39.0,38.0,46.0,36.0,33.0,57.0,34.0,47.0,56.0,43.0,64.0,61.0,51.0,45.0,41.0,50.0,50.0,33.0,62.0,52.0,63.0,48.0,41.0,51.0,53.0,57.0,63.0,64.0,44.0,44.0,55.0,55.0,47.0,52.0,42.0,39.0,34.0,30.0,37.0,33.0,34.0,43.0,43.0,36.0,49.0,33.0,23.0,33.0,31.0,19.0,21.0,22.0,20.0,26.0,18.0,19.0,21.0,7.0,16.0,9.0,11.0,21.0 K82046,70.0,54.0,81.0,92.0,75.0,92.0,80.0,103.0,115.0,124.0,137.0,112.0,114.0,147.0,136.0,141.0,118.0,120.0,118.0,91.0,81.0,86.0,77.0,86.0,96.0,88.0,90.0,82.0,104.0,86.0,70.0,82.0,110.0,108.0,100.0,95.0,88.0,108.0,111.0,123.0,121.0,113.0,110.0,149.0,123.0,150.0,125.0,118.0,140.0,144.0,128.0,145.0,144.0,148.0,160.0,123.0,128.0,136.0,165.0,133.0,139.0,125.0,139.0,129.0,129.0,118.0,120.0,98.0,103.0,79.0,99.0,80.0,82.0,89.0,89.0,84.0,77.0,121.0,113.0,70.0,63.0,84.0,71.0,53.0,54.0,59.0,54.0,46.0,43.0,36.0,37.0,22.0,18.0,29.0,12.0,42.0 K82047,87.0,98.0,112.0,121.0,110.0,116.0,134.0,123.0,143.0,148.0,141.0,127.0,146.0,121.0,147.0,146.0,152.0,154.0,125.0,98.0,71.0,83.0,88.0,88.0,90.0,102.0,82.0,92.0,107.0,103.0,116.0,122.0,121.0,129.0,129.0,168.0,130.0,143.0,146.0,144.0,143.0,132.0,160.0,161.0,148.0,170.0,187.0,158.0,129.0,152.0,177.0,156.0,170.0,173.0,178.0,151.0,162.0,163.0,165.0,181.0,171.0,177.0,155.0,157.0,154.0,152.0,146.0,132.0,132.0,123.0,124.0,135.0,121.0,128.0,114.0,134.0,135.0,129.0,160.0,118.0,116.0,82.0,101.0,73.0,64.0,60.0,57.0,45.0,54.0,41.0,35.0,20.0,25.0,13.0,12.0,43.0 K82048,34.0,29.0,46.0,35.0,40.0,38.0,40.0,27.0,40.0,38.0,36.0,46.0,42.0,32.0,41.0,49.0,33.0,27.0,28.0,21.0,30.0,27.0,25.0,35.0,36.0,26.0,35.0,33.0,34.0,39.0,34.0,41.0,30.0,40.0,49.0,46.0,37.0,52.0,44.0,56.0,33.0,38.0,50.0,47.0,34.0,50.0,40.0,28.0,35.0,47.0,39.0,35.0,60.0,40.0,63.0,48.0,61.0,60.0,58.0,48.0,57.0,50.0,42.0,48.0,35.0,59.0,33.0,42.0,58.0,38.0,42.0,44.0,26.0,43.0,26.0,40.0,31.0,42.0,38.0,31.0,28.0,29.0,22.0,23.0,14.0,19.0,17.0,24.0,17.0,13.0,9.0,9.0,10.0,7.0,3.0,18.0 K82049,47.0,52.0,49.0,53.0,51.0,55.0,44.0,58.0,64.0,59.0,51.0,65.0,70.0,72.0,61.0,62.0,66.0,76.0,50.0,49.0,43.0,55.0,62.0,55.0,51.0,68.0,51.0,67.0,70.0,62.0,62.0,72.0,52.0,59.0,77.0,59.0,73.0,62.0,62.0,66.0,68.0,67.0,60.0,65.0,74.0,98.0,71.0,62.0,68.0,73.0,80.0,73.0,80.0,96.0,96.0,95.0,106.0,89.0,102.0,87.0,102.0,98.0,104.0,72.0,91.0,76.0,75.0,77.0,81.0,74.0,80.0,64.0,61.0,74.0,71.0,85.0,88.0,96.0,103.0,67.0,77.0,71.0,69.0,42.0,45.0,47.0,45.0,32.0,30.0,30.0,32.0,22.0,20.0,11.0,5.0,14.0 K82051,37.0,37.0,37.0,44.0,47.0,53.0,61.0,72.0,58.0,59.0,48.0,63.0,69.0,75.0,78.0,79.0,81.0,71.0,63.0,55.0,60.0,54.0,58.0,63.0,56.0,52.0,40.0,49.0,43.0,39.0,39.0,41.0,46.0,46.0,53.0,55.0,57.0,59.0,56.0,61.0,49.0,62.0,70.0,77.0,74.0,70.0,78.0,91.0,70.0,82.0,81.0,69.0,87.0,90.0,94.0,74.0,87.0,90.0,88.0,92.0,72.0,88.0,82.0,74.0,79.0,81.0,74.0,77.0,77.0,77.0,68.0,64.0,56.0,44.0,51.0,74.0,63.0,73.0,64.0,52.0,70.0,53.0,45.0,44.0,34.0,42.0,38.0,44.0,37.0,30.0,23.0,18.0,18.0,15.0,5.0,19.0 K82053,35.0,47.0,52.0,55.0,39.0,49.0,71.0,75.0,68.0,65.0,84.0,89.0,95.0,77.0,48.0,63.0,69.0,68.0,71.0,62.0,60.0,51.0,54.0,60.0,63.0,55.0,96.0,69.0,93.0,80.0,85.0,76.0,87.0,81.0,86.0,86.0,99.0,72.0,90.0,101.0,79.0,89.0,95.0,77.0,102.0,90.0,72.0,81.0,63.0,67.0,62.0,75.0,82.0,76.0,87.0,74.0,84.0,78.0,66.0,52.0,52.0,76.0,42.0,40.0,54.0,43.0,46.0,46.0,55.0,43.0,57.0,39.0,52.0,59.0,43.0,41.0,57.0,34.0,30.0,32.0,24.0,28.0,43.0,25.0,27.0,30.0,18.0,23.0,20.0,22.0,19.0,10.0,9.0,8.0,12.0,22.0 K82055,58.0,52.0,59.0,53.0,58.0,60.0,69.0,75.0,72.0,65.0,60.0,51.0,61.0,59.0,56.0,45.0,63.0,60.0,51.0,56.0,48.0,36.0,39.0,50.0,53.0,50.0,45.0,39.0,85.0,61.0,67.0,62.0,71.0,87.0,80.0,93.0,91.0,95.0,76.0,74.0,87.0,74.0,72.0,78.0,79.0,67.0,65.0,48.0,54.0,72.0,61.0,47.0,72.0,72.0,59.0,76.0,79.0,65.0,79.0,63.0,84.0,78.0,79.0,89.0,81.0,58.0,53.0,52.0,60.0,53.0,46.0,40.0,64.0,48.0,38.0,49.0,43.0,56.0,61.0,36.0,53.0,42.0,30.0,30.0,38.0,36.0,35.0,26.0,33.0,25.0,16.0,13.0,16.0,12.0,11.0,27.0 K82058,27.0,37.0,30.0,32.0,33.0,24.0,33.0,28.0,35.0,34.0,42.0,36.0,42.0,52.0,37.0,45.0,44.0,39.0,42.0,20.0,35.0,34.0,28.0,18.0,25.0,37.0,30.0,32.0,41.0,33.0,41.0,43.0,35.0,44.0,40.0,43.0,43.0,44.0,47.0,42.0,47.0,39.0,45.0,47.0,44.0,44.0,42.0,45.0,59.0,43.0,29.0,35.0,33.0,46.0,51.0,28.0,32.0,36.0,45.0,29.0,30.0,28.0,34.0,32.0,45.0,30.0,30.0,21.0,26.0,14.0,23.0,20.0,19.0,22.0,30.0,15.0,19.0,29.0,26.0,17.0,14.0,9.0,17.0,12.0,15.0,11.0,9.0,12.0,4.0,11.0,7.0,7.0,4.0,3.0,7.0,10.0 K82061,18.0,23.0,18.0,16.0,16.0,17.0,21.0,31.0,25.0,21.0,24.0,26.0,31.0,29.0,28.0,35.0,22.0,29.0,34.0,17.0,14.0,9.0,14.0,24.0,12.0,25.0,27.0,25.0,25.0,19.0,20.0,22.0,24.0,26.0,31.0,35.0,23.0,35.0,23.0,26.0,23.0,34.0,32.0,43.0,23.0,31.0,35.0,27.0,32.0,27.0,37.0,32.0,31.0,32.0,45.0,36.0,48.0,29.0,42.0,36.0,28.0,48.0,39.0,44.0,33.0,25.0,39.0,34.0,25.0,26.0,28.0,24.0,25.0,38.0,30.0,33.0,26.0,33.0,21.0,19.0,18.0,16.0,21.0,10.0,9.0,9.0,6.0,5.0,5.0,4.0,3.0,6.0,4.0,1.0,3.0,6.0 K82066,49.0,64.0,60.0,70.0,58.0,68.0,68.0,74.0,69.0,55.0,69.0,78.0,60.0,81.0,79.0,74.0,97.0,91.0,77.0,58.0,71.0,40.0,60.0,71.0,54.0,59.0,69.0,70.0,65.0,58.0,66.0,66.0,70.0,78.0,93.0,87.0,72.0,81.0,93.0,82.0,80.0,83.0,97.0,85.0,103.0,89.0,85.0,95.0,83.0,81.0,106.0,90.0,111.0,115.0,125.0,87.0,108.0,120.0,111.0,105.0,101.0,102.0,86.0,100.0,101.0,81.0,94.0,88.0,80.0,99.0,70.0,73.0,85.0,75.0,65.0,88.0,85.0,78.0,95.0,82.0,71.0,62.0,55.0,45.0,43.0,53.0,44.0,24.0,33.0,30.0,21.0,19.0,18.0,19.0,11.0,32.0 K82068,17.0,18.0,23.0,20.0,20.0,16.0,21.0,22.0,23.0,36.0,29.0,34.0,44.0,41.0,49.0,37.0,31.0,31.0,51.0,28.0,28.0,32.0,26.0,29.0,36.0,33.0,21.0,26.0,28.0,23.0,33.0,33.0,32.0,25.0,29.0,32.0,29.0,32.0,38.0,27.0,43.0,26.0,28.0,39.0,45.0,45.0,40.0,44.0,35.0,49.0,40.0,47.0,43.0,50.0,37.0,39.0,49.0,47.0,56.0,59.0,56.0,44.0,46.0,36.0,41.0,37.0,44.0,40.0,21.0,25.0,25.0,30.0,26.0,17.0,23.0,32.0,23.0,28.0,35.0,12.0,18.0,21.0,15.0,19.0,16.0,11.0,10.0,5.0,9.0,3.0,3.0,3.0,,,1.0,4.0 K82070,64.0,53.0,73.0,75.0,82.0,75.0,93.0,93.0,97.0,115.0,109.0,96.0,108.0,134.0,118.0,96.0,115.0,111.0,112.0,80.0,77.0,82.0,85.0,66.0,81.0,100.0,96.0,91.0,81.0,90.0,96.0,89.0,109.0,109.0,112.0,122.0,124.0,100.0,107.0,120.0,106.0,106.0,123.0,128.0,141.0,99.0,118.0,117.0,125.0,126.0,136.0,115.0,145.0,157.0,160.0,126.0,155.0,163.0,161.0,180.0,186.0,182.0,151.0,152.0,165.0,141.0,158.0,138.0,171.0,118.0,117.0,126.0,118.0,95.0,124.0,121.0,135.0,132.0,111.0,92.0,101.0,72.0,76.0,64.0,61.0,48.0,40.0,34.0,49.0,24.0,22.0,21.0,21.0,15.0,13.0,24.0 K82073,147.0,154.0,153.0,206.0,184.0,203.0,205.0,194.0,221.0,238.0,224.0,194.0,201.0,232.0,255.0,194.0,216.0,213.0,167.0,155.0,126.0,127.0,113.0,130.0,134.0,124.0,155.0,155.0,160.0,192.0,219.0,172.0,181.0,241.0,234.0,226.0,262.0,274.0,226.0,248.0,236.0,232.0,252.0,266.0,270.0,229.0,237.0,218.0,225.0,198.0,214.0,205.0,222.0,209.0,222.0,249.0,229.0,226.0,221.0,221.0,220.0,237.0,226.0,221.0,188.0,203.0,176.0,192.0,177.0,192.0,167.0,156.0,154.0,168.0,162.0,155.0,188.0,147.0,179.0,132.0,167.0,144.0,116.0,108.0,87.0,97.0,96.0,67.0,69.0,67.0,49.0,37.0,34.0,36.0,28.0,64.0 K82078,34.0,37.0,57.0,48.0,38.0,50.0,54.0,54.0,36.0,46.0,53.0,54.0,48.0,71.0,54.0,59.0,65.0,74.0,44.0,46.0,46.0,49.0,43.0,55.0,73.0,53.0,69.0,56.0,69.0,66.0,55.0,47.0,57.0,65.0,61.0,70.0,65.0,59.0,68.0,67.0,63.0,71.0,62.0,65.0,72.0,54.0,65.0,66.0,59.0,54.0,63.0,67.0,67.0,66.0,71.0,67.0,69.0,92.0,61.0,80.0,72.0,77.0,64.0,70.0,91.0,66.0,61.0,54.0,59.0,66.0,42.0,46.0,48.0,39.0,41.0,47.0,57.0,57.0,63.0,38.0,51.0,46.0,49.0,38.0,34.0,37.0,35.0,31.0,18.0,24.0,19.0,14.0,15.0,10.0,12.0,30.0 K82079,30.0,24.0,37.0,40.0,44.0,39.0,56.0,47.0,46.0,44.0,40.0,48.0,49.0,48.0,53.0,43.0,46.0,57.0,40.0,36.0,38.0,25.0,36.0,37.0,46.0,45.0,39.0,36.0,33.0,35.0,52.0,44.0,47.0,50.0,46.0,47.0,54.0,50.0,45.0,51.0,46.0,55.0,63.0,51.0,67.0,49.0,54.0,50.0,63.0,40.0,56.0,69.0,56.0,67.0,70.0,82.0,75.0,61.0,75.0,61.0,77.0,74.0,69.0,81.0,65.0,72.0,62.0,54.0,54.0,52.0,58.0,62.0,51.0,60.0,50.0,56.0,52.0,49.0,57.0,40.0,46.0,33.0,48.0,29.0,24.0,16.0,17.0,20.0,16.0,14.0,13.0,6.0,5.0,9.0,7.0,10.0 K82603,75.0,83.0,77.0,75.0,76.0,84.0,81.0,82.0,96.0,86.0,96.0,73.0,85.0,105.0,93.0,83.0,87.0,75.0,77.0,68.0,43.0,61.0,52.0,53.0,74.0,71.0,78.0,91.0,65.0,88.0,104.0,99.0,118.0,108.0,97.0,105.0,112.0,105.0,111.0,107.0,102.0,110.0,110.0,77.0,106.0,79.0,82.0,79.0,76.0,73.0,59.0,53.0,57.0,62.0,63.0,54.0,63.0,61.0,47.0,57.0,47.0,44.0,59.0,57.0,38.0,47.0,32.0,34.0,35.0,29.0,33.0,31.0,31.0,29.0,34.0,40.0,20.0,25.0,24.0,18.0,16.0,13.0,18.0,14.0,13.0,18.0,10.0,11.0,13.0,12.0,8.0,7.0,2.0,3.0,6.0,6.0 K82618,11.0,13.0,4.0,17.0,13.0,15.0,16.0,17.0,14.0,15.0,30.0,24.0,24.0,31.0,30.0,27.0,21.0,28.0,21.0,15.0,12.0,8.0,22.0,17.0,18.0,17.0,11.0,20.0,14.0,14.0,17.0,7.0,11.0,15.0,18.0,9.0,15.0,23.0,16.0,16.0,17.0,24.0,35.0,27.0,20.0,25.0,20.0,38.0,28.0,34.0,30.0,25.0,22.0,19.0,24.0,21.0,30.0,33.0,27.0,22.0,28.0,31.0,28.0,27.0,26.0,26.0,21.0,21.0,16.0,21.0,11.0,15.0,15.0,11.0,16.0,12.0,15.0,17.0,28.0,12.0,16.0,21.0,12.0,8.0,7.0,3.0,6.0,2.0,7.0,2.0,6.0,6.0,3.0,5.0,2.0,5.0 K82621,10.0,13.0,21.0,16.0,25.0,23.0,29.0,32.0,30.0,38.0,44.0,37.0,44.0,40.0,54.0,38.0,48.0,42.0,36.0,25.0,13.0,18.0,15.0,23.0,33.0,24.0,23.0,14.0,22.0,20.0,21.0,11.0,22.0,19.0,18.0,17.0,18.0,27.0,29.0,27.0,33.0,46.0,35.0,43.0,43.0,49.0,58.0,33.0,36.0,41.0,37.0,45.0,27.0,35.0,43.0,37.0,35.0,40.0,26.0,34.0,28.0,34.0,26.0,29.0,28.0,28.0,24.0,26.0,27.0,23.0,20.0,24.0,17.0,14.0,14.0,32.0,12.0,18.0,16.0,17.0,15.0,14.0,14.0,6.0,12.0,8.0,10.0,8.0,6.0,11.0,7.0,4.0,2.0,2.0,5.0,7.0 K84001,27.0,41.0,27.0,29.0,35.0,40.0,44.0,52.0,61.0,47.0,51.0,60.0,46.0,73.0,60.0,59.0,67.0,81.0,67.0,48.0,34.0,45.0,46.0,51.0,59.0,53.0,51.0,47.0,53.0,38.0,45.0,48.0,57.0,39.0,57.0,49.0,51.0,42.0,49.0,50.0,61.0,69.0,53.0,75.0,65.0,81.0,77.0,76.0,69.0,65.0,91.0,89.0,95.0,89.0,93.0,85.0,81.0,75.0,77.0,72.0,95.0,70.0,95.0,54.0,59.0,67.0,66.0,74.0,52.0,39.0,50.0,61.0,59.0,44.0,49.0,63.0,58.0,51.0,66.0,62.0,48.0,65.0,41.0,42.0,47.0,33.0,54.0,33.0,32.0,22.0,25.0,16.0,24.0,21.0,15.0,46.0 K84002,100.0,93.0,95.0,108.0,111.0,102.0,109.0,99.0,123.0,129.0,124.0,131.0,133.0,122.0,116.0,115.0,105.0,108.0,96.0,73.0,68.0,79.0,80.0,84.0,105.0,104.0,86.0,120.0,143.0,153.0,147.0,161.0,178.0,170.0,165.0,177.0,156.0,167.0,148.0,148.0,173.0,160.0,156.0,140.0,158.0,138.0,107.0,123.0,109.0,107.0,115.0,118.0,117.0,136.0,118.0,129.0,129.0,118.0,145.0,135.0,124.0,108.0,115.0,99.0,78.0,88.0,87.0,81.0,92.0,79.0,73.0,81.0,76.0,72.0,78.0,57.0,67.0,76.0,72.0,66.0,58.0,54.0,49.0,39.0,32.0,36.0,34.0,31.0,23.0,29.0,16.0,13.0,14.0,12.0,5.0,34.0 K84003,34.0,27.0,22.0,27.0,31.0,28.0,39.0,26.0,26.0,28.0,44.0,32.0,43.0,27.0,44.0,44.0,32.0,33.0,29.0,41.0,24.0,24.0,26.0,25.0,32.0,29.0,36.0,30.0,25.0,40.0,33.0,36.0,36.0,39.0,44.0,32.0,45.0,46.0,50.0,33.0,39.0,41.0,45.0,44.0,50.0,57.0,46.0,44.0,39.0,47.0,40.0,40.0,43.0,47.0,57.0,54.0,51.0,57.0,70.0,67.0,54.0,64.0,62.0,53.0,75.0,48.0,56.0,36.0,54.0,38.0,51.0,48.0,39.0,33.0,32.0,49.0,50.0,30.0,43.0,30.0,26.0,26.0,23.0,22.0,22.0,13.0,15.0,17.0,14.0,14.0,8.0,6.0,3.0,2.0,2.0,8.0 K84004,68.0,56.0,44.0,58.0,53.0,73.0,60.0,66.0,78.0,78.0,74.0,72.0,73.0,93.0,93.0,64.0,80.0,98.0,94.0,57.0,64.0,64.0,72.0,73.0,99.0,92.0,81.0,107.0,87.0,87.0,83.0,97.0,114.0,84.0,120.0,98.0,114.0,114.0,110.0,112.0,113.0,99.0,104.0,90.0,82.0,93.0,79.0,86.0,91.0,71.0,75.0,87.0,72.0,83.0,91.0,84.0,94.0,83.0,73.0,64.0,63.0,81.0,74.0,72.0,68.0,66.0,70.0,47.0,57.0,51.0,53.0,41.0,54.0,44.0,56.0,47.0,46.0,52.0,62.0,32.0,42.0,34.0,33.0,22.0,20.0,28.0,24.0,18.0,20.0,21.0,10.0,9.0,8.0,5.0,9.0,16.0 K84006,64.0,60.0,75.0,88.0,67.0,84.0,72.0,75.0,74.0,75.0,77.0,86.0,103.0,91.0,103.0,108.0,86.0,81.0,96.0,52.0,70.0,65.0,60.0,68.0,82.0,73.0,78.0,81.0,67.0,94.0,86.0,101.0,102.0,109.0,110.0,107.0,102.0,97.0,100.0,81.0,101.0,101.0,116.0,91.0,114.0,108.0,109.0,102.0,93.0,99.0,95.0,114.0,111.0,127.0,118.0,130.0,121.0,109.0,118.0,124.0,127.0,132.0,118.0,117.0,111.0,103.0,107.0,97.0,80.0,107.0,87.0,92.0,88.0,83.0,91.0,89.0,90.0,103.0,100.0,95.0,87.0,82.0,78.0,55.0,57.0,60.0,49.0,28.0,42.0,29.0,18.0,15.0,23.0,17.0,16.0,43.0 K84007,40.0,53.0,40.0,40.0,30.0,39.0,34.0,43.0,38.0,45.0,37.0,41.0,44.0,36.0,47.0,31.0,39.0,28.0,36.0,41.0,45.0,41.0,54.0,59.0,53.0,65.0,71.0,68.0,68.0,57.0,79.0,76.0,72.0,86.0,80.0,77.0,62.0,67.0,60.0,77.0,56.0,43.0,43.0,68.0,60.0,39.0,43.0,44.0,53.0,37.0,41.0,48.0,39.0,48.0,40.0,49.0,49.0,57.0,35.0,51.0,40.0,38.0,47.0,48.0,51.0,31.0,28.0,29.0,30.0,35.0,33.0,40.0,33.0,25.0,26.0,32.0,34.0,28.0,31.0,20.0,30.0,30.0,23.0,14.0,19.0,18.0,18.0,18.0,14.0,12.0,8.0,10.0,7.0,8.0,2.0,21.0 K84008,36.0,39.0,39.0,41.0,41.0,28.0,34.0,48.0,36.0,38.0,37.0,38.0,44.0,36.0,43.0,48.0,54.0,37.0,31.0,37.0,28.0,25.0,37.0,38.0,55.0,39.0,50.0,44.0,40.0,33.0,36.0,50.0,58.0,54.0,56.0,52.0,45.0,49.0,47.0,50.0,39.0,51.0,33.0,42.0,39.0,51.0,41.0,54.0,51.0,38.0,47.0,47.0,49.0,51.0,63.0,76.0,70.0,82.0,84.0,75.0,73.0,44.0,61.0,68.0,80.0,62.0,52.0,45.0,53.0,44.0,34.0,46.0,39.0,34.0,37.0,44.0,41.0,45.0,55.0,36.0,29.0,42.0,25.0,33.0,21.0,32.0,24.0,19.0,21.0,11.0,10.0,10.0,9.0,3.0,6.0,23.0 K84009,77.0,75.0,80.0,81.0,99.0,94.0,115.0,104.0,126.0,90.0,117.0,125.0,138.0,148.0,143.0,149.0,216.0,364.0,445.0,487.0,540.0,508.0,449.0,378.0,357.0,234.0,200.0,202.0,167.0,188.0,202.0,183.0,192.0,186.0,189.0,215.0,177.0,180.0,186.0,185.0,166.0,174.0,159.0,181.0,172.0,169.0,141.0,150.0,136.0,162.0,119.0,124.0,142.0,140.0,115.0,118.0,118.0,113.0,112.0,102.0,117.0,109.0,102.0,85.0,94.0,88.0,85.0,70.0,70.0,71.0,57.0,69.0,66.0,63.0,55.0,55.0,60.0,57.0,47.0,51.0,39.0,27.0,35.0,34.0,24.0,35.0,19.0,26.0,17.0,19.0,13.0,17.0,8.0,4.0,10.0,23.0 K84010,25.0,59.0,57.0,49.0,42.0,51.0,45.0,48.0,55.0,44.0,48.0,53.0,60.0,50.0,41.0,55.0,56.0,28.0,36.0,35.0,32.0,34.0,33.0,38.0,49.0,42.0,35.0,55.0,68.0,55.0,53.0,62.0,58.0,56.0,63.0,69.0,54.0,58.0,71.0,43.0,59.0,47.0,58.0,57.0,59.0,55.0,37.0,53.0,42.0,47.0,63.0,51.0,43.0,59.0,67.0,66.0,55.0,56.0,73.0,76.0,68.0,68.0,63.0,66.0,70.0,65.0,67.0,63.0,70.0,62.0,61.0,49.0,66.0,44.0,57.0,55.0,58.0,64.0,66.0,41.0,40.0,54.0,32.0,35.0,35.0,36.0,34.0,27.0,20.0,15.0,18.0,18.0,14.0,12.0,7.0,19.0 K84011,34.0,48.0,49.0,68.0,45.0,56.0,64.0,59.0,84.0,90.0,85.0,122.0,127.0,110.0,125.0,101.0,94.0,123.0,142.0,217.0,210.0,242.0,247.0,250.0,278.0,162.0,158.0,191.0,156.0,140.0,127.0,106.0,115.0,114.0,106.0,105.0,91.0,110.0,126.0,96.0,97.0,95.0,105.0,106.0,126.0,105.0,107.0,121.0,97.0,99.0,110.0,101.0,87.0,96.0,106.0,90.0,101.0,107.0,76.0,83.0,101.0,108.0,76.0,80.0,77.0,69.0,74.0,69.0,81.0,70.0,61.0,53.0,53.0,52.0,55.0,73.0,64.0,62.0,61.0,35.0,51.0,41.0,31.0,43.0,38.0,41.0,26.0,28.0,24.0,22.0,18.0,12.0,15.0,3.0,13.0,37.0 K84013,85.0,76.0,75.0,79.0,87.0,87.0,114.0,85.0,98.0,121.0,113.0,117.0,119.0,136.0,141.0,115.0,114.0,115.0,245.0,504.0,634.0,566.0,538.0,517.0,535.0,426.0,407.0,355.0,296.0,235.0,239.0,230.0,234.0,206.0,189.0,198.0,185.0,193.0,192.0,155.0,182.0,188.0,198.0,171.0,146.0,161.0,151.0,120.0,119.0,114.0,108.0,124.0,124.0,110.0,118.0,109.0,122.0,139.0,103.0,111.0,93.0,114.0,89.0,108.0,85.0,83.0,87.0,72.0,59.0,87.0,75.0,61.0,61.0,64.0,72.0,66.0,42.0,47.0,48.0,39.0,32.0,30.0,32.0,27.0,23.0,18.0,22.0,23.0,15.0,13.0,18.0,16.0,12.0,6.0,3.0,11.0 K84014,31.0,37.0,42.0,40.0,53.0,61.0,60.0,42.0,61.0,56.0,43.0,59.0,60.0,78.0,73.0,62.0,65.0,56.0,64.0,39.0,47.0,56.0,56.0,44.0,43.0,58.0,68.0,45.0,62.0,60.0,57.0,59.0,68.0,73.0,65.0,55.0,60.0,71.0,77.0,77.0,64.0,78.0,77.0,83.0,94.0,80.0,78.0,66.0,64.0,76.0,74.0,67.0,86.0,73.0,86.0,96.0,85.0,98.0,86.0,83.0,82.0,87.0,102.0,80.0,75.0,73.0,84.0,58.0,70.0,60.0,56.0,67.0,49.0,59.0,62.0,61.0,52.0,63.0,74.0,55.0,50.0,39.0,44.0,40.0,35.0,38.0,34.0,32.0,24.0,19.0,13.0,7.0,7.0,9.0,4.0,25.0 K84015,6.0,14.0,15.0,8.0,15.0,17.0,17.0,20.0,17.0,11.0,16.0,21.0,22.0,19.0,22.0,16.0,21.0,17.0,30.0,22.0,22.0,14.0,18.0,20.0,14.0,19.0,15.0,14.0,10.0,12.0,19.0,18.0,21.0,18.0,15.0,23.0,17.0,18.0,17.0,21.0,17.0,16.0,24.0,28.0,30.0,27.0,29.0,32.0,29.0,24.0,24.0,35.0,31.0,36.0,37.0,35.0,32.0,42.0,46.0,43.0,34.0,41.0,40.0,37.0,25.0,40.0,26.0,28.0,32.0,28.0,28.0,30.0,22.0,27.0,26.0,34.0,18.0,26.0,41.0,16.0,22.0,17.0,25.0,13.0,17.0,25.0,13.0,9.0,3.0,1.0,4.0,5.0,4.0,3.0,2.0,8.0 K84016,40.0,42.0,44.0,37.0,41.0,48.0,44.0,64.0,50.0,56.0,77.0,75.0,74.0,68.0,73.0,68.0,78.0,102.0,183.0,324.0,395.0,405.0,450.0,426.0,400.0,310.0,335.0,308.0,254.0,247.0,221.0,193.0,181.0,139.0,143.0,130.0,147.0,132.0,133.0,118.0,102.0,106.0,83.0,88.0,112.0,102.0,106.0,86.0,110.0,86.0,90.0,103.0,88.0,103.0,92.0,105.0,117.0,99.0,79.0,90.0,101.0,113.0,94.0,91.0,80.0,75.0,76.0,96.0,90.0,71.0,75.0,88.0,87.0,65.0,75.0,67.0,59.0,71.0,76.0,55.0,56.0,52.0,52.0,36.0,40.0,28.0,43.0,33.0,34.0,29.0,21.0,15.0,20.0,16.0,10.0,25.0 K84017,108.0,98.0,121.0,110.0,107.0,124.0,107.0,102.0,127.0,116.0,118.0,106.0,121.0,123.0,132.0,109.0,110.0,119.0,114.0,101.0,84.0,79.0,85.0,117.0,137.0,119.0,132.0,168.0,150.0,152.0,174.0,164.0,185.0,180.0,177.0,175.0,176.0,148.0,144.0,149.0,156.0,159.0,146.0,147.0,147.0,144.0,142.0,113.0,122.0,105.0,120.0,133.0,135.0,144.0,151.0,134.0,136.0,124.0,148.0,132.0,140.0,151.0,123.0,115.0,123.0,109.0,110.0,103.0,102.0,97.0,107.0,109.0,97.0,98.0,102.0,108.0,109.0,115.0,109.0,104.0,112.0,75.0,71.0,51.0,60.0,54.0,46.0,43.0,46.0,35.0,32.0,38.0,21.0,15.0,15.0,45.0 K84019,63.0,71.0,70.0,72.0,66.0,92.0,71.0,88.0,86.0,80.0,99.0,91.0,103.0,114.0,87.0,100.0,89.0,102.0,77.0,70.0,69.0,53.0,54.0,74.0,76.0,75.0,74.0,75.0,96.0,100.0,106.0,86.0,120.0,109.0,128.0,127.0,104.0,108.0,105.0,115.0,97.0,98.0,119.0,108.0,86.0,90.0,88.0,101.0,90.0,79.0,105.0,84.0,91.0,104.0,104.0,104.0,115.0,112.0,89.0,114.0,108.0,117.0,110.0,96.0,87.0,99.0,111.0,85.0,79.0,67.0,87.0,101.0,73.0,75.0,87.0,79.0,81.0,88.0,100.0,59.0,79.0,65.0,69.0,51.0,41.0,49.0,44.0,37.0,35.0,33.0,25.0,19.0,15.0,14.0,11.0,43.0 K84020,33.0,24.0,24.0,38.0,42.0,44.0,35.0,39.0,42.0,51.0,55.0,59.0,70.0,55.0,75.0,57.0,54.0,68.0,56.0,53.0,39.0,51.0,43.0,37.0,45.0,44.0,41.0,34.0,40.0,48.0,38.0,32.0,47.0,40.0,54.0,40.0,51.0,54.0,41.0,53.0,53.0,57.0,63.0,67.0,47.0,55.0,75.0,61.0,65.0,75.0,54.0,77.0,83.0,77.0,82.0,95.0,71.0,72.0,86.0,67.0,87.0,95.0,78.0,73.0,69.0,57.0,62.0,60.0,53.0,53.0,50.0,56.0,64.0,43.0,60.0,55.0,72.0,62.0,77.0,50.0,51.0,50.0,42.0,38.0,25.0,42.0,37.0,34.0,34.0,26.0,20.0,21.0,6.0,3.0,7.0,27.0 K84021,10.0,13.0,11.0,18.0,20.0,33.0,17.0,24.0,22.0,27.0,33.0,25.0,28.0,30.0,33.0,62.0,111.0,163.0,219.0,226.0,232.0,211.0,216.0,250.0,228.0,144.0,130.0,116.0,86.0,106.0,97.0,56.0,77.0,56.0,66.0,53.0,60.0,58.0,54.0,48.0,46.0,48.0,36.0,48.0,47.0,50.0,37.0,40.0,37.0,41.0,43.0,39.0,55.0,39.0,41.0,43.0,37.0,39.0,28.0,35.0,32.0,28.0,36.0,27.0,38.0,15.0,26.0,27.0,22.0,24.0,24.0,21.0,16.0,24.0,26.0,28.0,40.0,29.0,26.0,19.0,28.0,25.0,21.0,14.0,12.0,21.0,14.0,12.0,10.0,6.0,10.0,12.0,4.0,5.0,2.0,11.0 K84023,30.0,33.0,33.0,29.0,24.0,35.0,29.0,33.0,30.0,36.0,35.0,31.0,41.0,40.0,35.0,34.0,25.0,20.0,33.0,33.0,36.0,29.0,39.0,31.0,43.0,37.0,31.0,33.0,39.0,36.0,47.0,50.0,43.0,39.0,40.0,37.0,39.0,43.0,38.0,51.0,27.0,35.0,44.0,42.0,32.0,52.0,30.0,34.0,41.0,23.0,29.0,33.0,39.0,39.0,44.0,56.0,40.0,55.0,52.0,40.0,44.0,38.0,31.0,34.0,45.0,38.0,35.0,32.0,41.0,43.0,29.0,31.0,25.0,33.0,31.0,24.0,30.0,30.0,28.0,34.0,25.0,25.0,25.0,26.0,19.0,18.0,12.0,17.0,18.0,15.0,11.0,13.0,11.0,4.0,9.0,14.0 K84024,33.0,61.0,46.0,53.0,33.0,54.0,49.0,46.0,53.0,58.0,46.0,41.0,59.0,64.0,74.0,68.0,46.0,58.0,57.0,50.0,39.0,35.0,41.0,44.0,42.0,59.0,56.0,59.0,51.0,78.0,49.0,56.0,60.0,64.0,64.0,60.0,61.0,57.0,60.0,68.0,77.0,80.0,57.0,71.0,57.0,57.0,54.0,48.0,52.0,33.0,47.0,55.0,58.0,60.0,63.0,61.0,63.0,57.0,65.0,45.0,59.0,45.0,69.0,42.0,39.0,46.0,41.0,44.0,36.0,27.0,34.0,43.0,34.0,45.0,32.0,40.0,50.0,48.0,49.0,36.0,36.0,39.0,26.0,19.0,24.0,24.0,20.0,22.0,17.0,14.0,12.0,14.0,8.0,9.0,9.0,16.0 K84026,41.0,38.0,29.0,32.0,26.0,42.0,43.0,47.0,48.0,39.0,45.0,52.0,63.0,55.0,62.0,61.0,57.0,58.0,85.0,131.0,130.0,157.0,137.0,154.0,159.0,127.0,154.0,134.0,125.0,125.0,148.0,120.0,94.0,111.0,100.0,91.0,85.0,83.0,75.0,85.0,83.0,86.0,69.0,67.0,81.0,73.0,73.0,80.0,71.0,66.0,57.0,68.0,77.0,85.0,79.0,71.0,75.0,88.0,61.0,81.0,68.0,96.0,70.0,77.0,61.0,63.0,50.0,63.0,63.0,59.0,51.0,48.0,37.0,40.0,42.0,41.0,44.0,30.0,37.0,31.0,31.0,29.0,33.0,26.0,22.0,16.0,18.0,19.0,10.0,9.0,8.0,5.0,5.0,4.0,2.0,8.0 K84027,41.0,38.0,56.0,50.0,51.0,61.0,73.0,61.0,74.0,63.0,80.0,81.0,79.0,92.0,93.0,93.0,91.0,96.0,93.0,75.0,57.0,63.0,60.0,73.0,75.0,78.0,68.0,85.0,63.0,69.0,90.0,85.0,70.0,73.0,87.0,80.0,106.0,81.0,91.0,78.0,98.0,93.0,80.0,95.0,110.0,113.0,97.0,93.0,79.0,92.0,98.0,104.0,125.0,119.0,96.0,101.0,124.0,117.0,118.0,108.0,97.0,106.0,101.0,87.0,86.0,117.0,109.0,84.0,88.0,86.0,74.0,90.0,104.0,101.0,89.0,84.0,80.0,107.0,94.0,88.0,75.0,98.0,79.0,55.0,57.0,51.0,35.0,44.0,48.0,30.0,28.0,25.0,21.0,23.0,9.0,24.0 K84028,184.0,221.0,202.0,224.0,233.0,247.0,207.0,262.0,266.0,253.0,230.0,226.0,239.0,228.0,240.0,243.0,266.0,222.0,224.0,184.0,206.0,188.0,189.0,237.0,204.0,264.0,279.0,300.0,308.0,312.0,344.0,335.0,351.0,338.0,395.0,390.0,364.0,348.0,387.0,342.0,327.0,348.0,313.0,280.0,267.0,260.0,272.0,246.0,228.0,243.0,237.0,243.0,244.0,239.0,264.0,234.0,248.0,245.0,242.0,243.0,221.0,217.0,207.0,185.0,182.0,187.0,174.0,155.0,175.0,142.0,156.0,141.0,145.0,144.0,155.0,156.0,154.0,154.0,159.0,103.0,138.0,125.0,95.0,96.0,87.0,66.0,87.0,73.0,52.0,58.0,46.0,31.0,37.0,21.0,23.0,53.0 K84030,59.0,57.0,60.0,63.0,61.0,62.0,83.0,56.0,81.0,72.0,71.0,73.0,72.0,93.0,84.0,85.0,81.0,100.0,102.0,61.0,51.0,52.0,83.0,59.0,65.0,77.0,84.0,85.0,75.0,78.0,67.0,90.0,94.0,85.0,86.0,89.0,98.0,92.0,80.0,93.0,100.0,78.0,85.0,93.0,86.0,100.0,99.0,82.0,93.0,92.0,91.0,87.0,112.0,124.0,106.0,117.0,123.0,124.0,130.0,126.0,117.0,123.0,125.0,104.0,118.0,105.0,89.0,99.0,78.0,95.0,83.0,91.0,108.0,94.0,102.0,104.0,109.0,94.0,113.0,78.0,87.0,85.0,71.0,71.0,55.0,51.0,58.0,44.0,32.0,33.0,25.0,23.0,20.0,17.0,21.0,32.0 K84031,60.0,65.0,59.0,65.0,81.0,64.0,75.0,45.0,74.0,73.0,82.0,68.0,88.0,100.0,92.0,89.0,78.0,91.0,66.0,61.0,68.0,70.0,57.0,69.0,91.0,96.0,87.0,85.0,85.0,86.0,87.0,109.0,94.0,92.0,99.0,97.0,101.0,102.0,97.0,115.0,84.0,85.0,84.0,96.0,83.0,90.0,72.0,76.0,66.0,74.0,89.0,67.0,65.0,66.0,73.0,71.0,71.0,72.0,65.0,72.0,75.0,79.0,49.0,62.0,56.0,57.0,48.0,45.0,28.0,46.0,29.0,33.0,28.0,35.0,27.0,29.0,25.0,27.0,32.0,19.0,21.0,23.0,21.0,15.0,16.0,23.0,23.0,24.0,9.0,7.0,16.0,12.0,7.0,6.0,4.0,6.0 K84032,47.0,36.0,49.0,45.0,36.0,49.0,46.0,38.0,49.0,39.0,50.0,38.0,48.0,79.0,104.0,110.0,101.0,146.0,108.0,58.0,51.0,55.0,62.0,67.0,56.0,70.0,84.0,88.0,95.0,93.0,79.0,94.0,90.0,82.0,80.0,85.0,85.0,107.0,90.0,91.0,96.0,81.0,75.0,83.0,74.0,58.0,50.0,65.0,56.0,47.0,48.0,47.0,59.0,30.0,54.0,56.0,54.0,37.0,43.0,48.0,56.0,51.0,35.0,32.0,34.0,31.0,26.0,34.0,39.0,34.0,33.0,28.0,21.0,30.0,30.0,23.0,16.0,23.0,23.0,20.0,17.0,17.0,18.0,13.0,11.0,11.0,7.0,6.0,8.0,13.0,4.0,4.0,4.0,1.0,4.0,6.0 K84033,137.0,125.0,153.0,141.0,148.0,131.0,126.0,126.0,118.0,116.0,125.0,115.0,117.0,102.0,100.0,99.0,123.0,95.0,93.0,73.0,79.0,79.0,85.0,87.0,111.0,130.0,123.0,126.0,135.0,159.0,160.0,157.0,164.0,199.0,194.0,178.0,190.0,183.0,156.0,130.0,155.0,142.0,150.0,150.0,137.0,119.0,118.0,99.0,88.0,101.0,106.0,114.0,114.0,107.0,114.0,126.0,115.0,124.0,108.0,111.0,113.0,131.0,143.0,120.0,146.0,106.0,102.0,120.0,88.0,102.0,81.0,85.0,72.0,65.0,65.0,74.0,96.0,69.0,84.0,51.0,74.0,70.0,44.0,49.0,54.0,42.0,42.0,45.0,42.0,29.0,33.0,22.0,27.0,21.0,18.0,39.0 K84034,14.0,20.0,14.0,15.0,18.0,14.0,19.0,14.0,11.0,10.0,17.0,10.0,17.0,16.0,19.0,18.0,16.0,30.0,18.0,11.0,10.0,10.0,12.0,15.0,13.0,20.0,24.0,18.0,11.0,20.0,10.0,10.0,16.0,13.0,21.0,26.0,18.0,25.0,29.0,31.0,19.0,24.0,22.0,26.0,14.0,19.0,24.0,20.0,23.0,20.0,22.0,30.0,35.0,19.0,21.0,28.0,27.0,33.0,33.0,25.0,37.0,19.0,29.0,34.0,31.0,34.0,20.0,27.0,20.0,26.0,15.0,20.0,19.0,12.0,19.0,11.0,16.0,13.0,16.0,14.0,8.0,11.0,9.0,7.0,7.0,11.0,7.0,6.0,4.0,6.0,4.0,3.0,2.0,3.0,3.0,3.0 K84035,38.0,55.0,42.0,56.0,47.0,47.0,48.0,49.0,54.0,57.0,43.0,46.0,60.0,49.0,59.0,44.0,61.0,56.0,58.0,50.0,55.0,54.0,51.0,63.0,59.0,65.0,53.0,64.0,49.0,59.0,65.0,69.0,70.0,68.0,60.0,66.0,73.0,95.0,64.0,87.0,74.0,75.0,65.0,64.0,82.0,71.0,61.0,63.0,83.0,73.0,84.0,78.0,74.0,82.0,89.0,92.0,76.0,96.0,90.0,79.0,72.0,77.0,79.0,61.0,71.0,71.0,63.0,51.0,54.0,52.0,57.0,47.0,47.0,52.0,59.0,52.0,62.0,59.0,72.0,64.0,56.0,57.0,52.0,42.0,30.0,36.0,42.0,23.0,20.0,18.0,20.0,19.0,14.0,12.0,9.0,18.0 K84036,21.0,28.0,25.0,30.0,31.0,19.0,44.0,32.0,25.0,30.0,38.0,35.0,35.0,40.0,24.0,32.0,24.0,41.0,26.0,17.0,19.0,21.0,27.0,32.0,30.0,23.0,30.0,36.0,34.0,36.0,27.0,38.0,37.0,43.0,39.0,33.0,42.0,29.0,38.0,38.0,40.0,32.0,42.0,47.0,43.0,38.0,32.0,41.0,35.0,36.0,37.0,39.0,47.0,37.0,50.0,30.0,42.0,40.0,52.0,33.0,50.0,35.0,44.0,39.0,38.0,37.0,27.0,35.0,45.0,30.0,42.0,34.0,23.0,33.0,35.0,36.0,33.0,42.0,45.0,30.0,39.0,41.0,20.0,23.0,22.0,25.0,12.0,15.0,16.0,11.0,5.0,6.0,8.0,2.0,1.0,6.0 K84037,76.0,81.0,93.0,103.0,100.0,95.0,102.0,97.0,115.0,123.0,119.0,120.0,117.0,107.0,126.0,102.0,112.0,139.0,116.0,83.0,79.0,70.0,80.0,92.0,92.0,63.0,91.0,68.0,98.0,115.0,117.0,107.0,117.0,128.0,109.0,127.0,143.0,106.0,129.0,135.0,140.0,144.0,126.0,117.0,130.0,130.0,129.0,136.0,112.0,143.0,144.0,158.0,171.0,130.0,141.0,154.0,124.0,142.0,144.0,119.0,148.0,115.0,113.0,113.0,113.0,114.0,101.0,107.0,101.0,112.0,107.0,84.0,94.0,84.0,88.0,94.0,83.0,99.0,85.0,87.0,83.0,89.0,73.0,72.0,53.0,59.0,42.0,44.0,55.0,45.0,27.0,28.0,26.0,21.0,15.0,56.0 K84038,81.0,81.0,80.0,121.0,96.0,97.0,95.0,101.0,101.0,93.0,92.0,84.0,84.0,83.0,84.0,90.0,91.0,81.0,80.0,71.0,67.0,67.0,62.0,64.0,81.0,81.0,74.0,94.0,113.0,138.0,137.0,133.0,154.0,144.0,170.0,149.0,163.0,143.0,184.0,135.0,140.0,134.0,141.0,139.0,111.0,109.0,97.0,102.0,92.0,80.0,86.0,106.0,94.0,103.0,103.0,104.0,100.0,119.0,98.0,123.0,103.0,106.0,96.0,110.0,93.0,78.0,102.0,87.0,82.0,81.0,69.0,70.0,68.0,63.0,69.0,60.0,59.0,69.0,78.0,43.0,54.0,46.0,43.0,40.0,29.0,43.0,30.0,26.0,19.0,20.0,18.0,17.0,16.0,9.0,7.0,23.0 K84041,59.0,68.0,63.0,65.0,47.0,74.0,82.0,83.0,89.0,83.0,98.0,73.0,83.0,75.0,72.0,87.0,83.0,85.0,66.0,63.0,69.0,54.0,59.0,61.0,75.0,73.0,82.0,77.0,98.0,78.0,118.0,106.0,82.0,96.0,92.0,97.0,100.0,91.0,111.0,94.0,99.0,110.0,96.0,89.0,101.0,102.0,80.0,91.0,89.0,83.0,92.0,90.0,79.0,99.0,92.0,107.0,106.0,105.0,88.0,98.0,111.0,97.0,93.0,99.0,99.0,68.0,73.0,89.0,76.0,79.0,71.0,82.0,69.0,89.0,66.0,88.0,77.0,79.0,74.0,60.0,54.0,62.0,56.0,40.0,39.0,42.0,23.0,34.0,25.0,19.0,29.0,14.0,9.0,11.0,10.0,20.0 K84042,32.0,44.0,45.0,52.0,41.0,40.0,45.0,37.0,54.0,49.0,33.0,57.0,53.0,58.0,50.0,65.0,63.0,54.0,48.0,42.0,31.0,31.0,40.0,48.0,46.0,55.0,53.0,50.0,45.0,52.0,43.0,55.0,55.0,61.0,57.0,61.0,64.0,77.0,53.0,65.0,63.0,58.0,68.0,66.0,50.0,70.0,64.0,64.0,55.0,66.0,70.0,62.0,76.0,91.0,72.0,76.0,100.0,73.0,67.0,71.0,82.0,75.0,60.0,84.0,62.0,55.0,44.0,67.0,59.0,49.0,69.0,58.0,47.0,65.0,46.0,57.0,56.0,66.0,56.0,41.0,57.0,46.0,42.0,32.0,42.0,34.0,37.0,34.0,14.0,19.0,18.0,19.0,16.0,10.0,11.0,17.0 K84043,119.0,126.0,147.0,133.0,137.0,147.0,130.0,126.0,135.0,134.0,93.0,119.0,119.0,104.0,87.0,102.0,98.0,97.0,79.0,67.0,53.0,62.0,70.0,68.0,100.0,102.0,109.0,141.0,146.0,151.0,170.0,173.0,214.0,237.0,211.0,195.0,191.0,223.0,201.0,180.0,160.0,163.0,133.0,143.0,140.0,119.0,109.0,131.0,93.0,88.0,92.0,92.0,89.0,80.0,92.0,95.0,97.0,107.0,89.0,110.0,90.0,80.0,95.0,104.0,88.0,97.0,83.0,89.0,89.0,69.0,71.0,65.0,70.0,66.0,55.0,56.0,64.0,63.0,67.0,51.0,41.0,51.0,50.0,30.0,24.0,35.0,31.0,30.0,21.0,29.0,21.0,17.0,13.0,11.0,7.0,19.0 K84044,100.0,112.0,139.0,104.0,92.0,119.0,137.0,125.0,144.0,148.0,119.0,167.0,136.0,161.0,169.0,180.0,150.0,184.0,177.0,104.0,101.0,115.0,97.0,139.0,186.0,219.0,246.0,230.0,230.0,227.0,218.0,244.0,254.0,271.0,247.0,263.0,247.0,250.0,211.0,193.0,230.0,219.0,187.0,196.0,163.0,168.0,188.0,151.0,161.0,121.0,163.0,142.0,148.0,149.0,140.0,120.0,129.0,142.0,125.0,133.0,128.0,134.0,133.0,142.0,114.0,138.0,121.0,125.0,105.0,103.0,94.0,107.0,94.0,104.0,99.0,89.0,97.0,89.0,104.0,84.0,91.0,91.0,79.0,69.0,59.0,65.0,45.0,72.0,42.0,36.0,35.0,32.0,29.0,26.0,16.0,60.0 K84045,30.0,29.0,36.0,32.0,34.0,23.0,26.0,35.0,29.0,34.0,35.0,30.0,36.0,29.0,40.0,32.0,37.0,35.0,39.0,25.0,32.0,27.0,31.0,37.0,37.0,52.0,43.0,47.0,37.0,54.0,45.0,58.0,51.0,58.0,53.0,44.0,51.0,51.0,58.0,56.0,62.0,63.0,48.0,39.0,54.0,49.0,48.0,39.0,43.0,43.0,40.0,44.0,39.0,40.0,45.0,48.0,53.0,54.0,48.0,58.0,49.0,48.0,47.0,56.0,36.0,43.0,50.0,42.0,37.0,37.0,34.0,32.0,31.0,37.0,34.0,40.0,31.0,35.0,41.0,28.0,34.0,27.0,34.0,27.0,21.0,27.0,32.0,31.0,28.0,20.0,22.0,16.0,17.0,8.0,9.0,26.0 K84046,14.0,19.0,26.0,24.0,35.0,25.0,31.0,17.0,32.0,28.0,33.0,30.0,43.0,34.0,45.0,25.0,28.0,30.0,40.0,27.0,23.0,30.0,19.0,23.0,24.0,15.0,30.0,18.0,19.0,22.0,25.0,26.0,32.0,35.0,37.0,23.0,37.0,42.0,30.0,22.0,39.0,47.0,38.0,36.0,32.0,40.0,33.0,41.0,44.0,46.0,33.0,50.0,60.0,43.0,51.0,48.0,51.0,45.0,52.0,43.0,53.0,49.0,46.0,56.0,50.0,60.0,37.0,42.0,46.0,56.0,40.0,41.0,49.0,30.0,45.0,43.0,36.0,47.0,44.0,31.0,30.0,39.0,30.0,17.0,16.0,17.0,13.0,21.0,17.0,17.0,10.0,9.0,2.0,6.0,5.0,24.0 K84047,30.0,42.0,35.0,44.0,40.0,40.0,27.0,29.0,46.0,28.0,45.0,37.0,37.0,37.0,48.0,41.0,48.0,49.0,47.0,30.0,22.0,29.0,25.0,29.0,34.0,31.0,40.0,31.0,39.0,41.0,38.0,45.0,47.0,50.0,45.0,46.0,52.0,51.0,52.0,57.0,51.0,46.0,49.0,43.0,48.0,42.0,33.0,48.0,44.0,36.0,37.0,43.0,42.0,50.0,69.0,62.0,42.0,62.0,78.0,75.0,57.0,60.0,57.0,73.0,84.0,53.0,67.0,63.0,46.0,48.0,41.0,58.0,56.0,47.0,48.0,46.0,43.0,54.0,54.0,42.0,50.0,31.0,25.0,19.0,31.0,19.0,21.0,18.0,10.0,19.0,12.0,11.0,10.0,5.0,6.0,29.0 K84050,67.0,69.0,77.0,75.0,62.0,74.0,66.0,93.0,69.0,63.0,78.0,68.0,63.0,54.0,94.0,82.0,74.0,77.0,72.0,60.0,62.0,59.0,48.0,61.0,61.0,69.0,71.0,76.0,69.0,81.0,71.0,75.0,83.0,91.0,101.0,87.0,99.0,93.0,91.0,94.0,81.0,93.0,89.0,108.0,96.0,97.0,86.0,80.0,89.0,79.0,92.0,87.0,81.0,94.0,99.0,86.0,98.0,98.0,96.0,118.0,100.0,93.0,109.0,89.0,85.0,63.0,85.0,106.0,68.0,79.0,71.0,77.0,86.0,64.0,79.0,73.0,70.0,85.0,83.0,59.0,78.0,75.0,60.0,49.0,43.0,40.0,39.0,27.0,28.0,38.0,27.0,18.0,14.0,18.0,12.0,25.0 K84051,96.0,96.0,93.0,105.0,88.0,99.0,96.0,102.0,129.0,102.0,120.0,123.0,136.0,119.0,112.0,127.0,115.0,119.0,89.0,91.0,76.0,87.0,80.0,85.0,95.0,93.0,104.0,103.0,116.0,110.0,142.0,103.0,148.0,161.0,129.0,147.0,134.0,144.0,128.0,125.0,143.0,137.0,130.0,135.0,124.0,123.0,124.0,111.0,124.0,129.0,135.0,134.0,145.0,137.0,158.0,130.0,121.0,153.0,126.0,143.0,157.0,131.0,140.0,126.0,131.0,108.0,121.0,92.0,94.0,83.0,93.0,101.0,68.0,87.0,88.0,97.0,107.0,107.0,109.0,63.0,72.0,79.0,66.0,55.0,52.0,45.0,40.0,30.0,35.0,23.0,30.0,24.0,11.0,17.0,10.0,21.0 K84052,90.0,111.0,120.0,111.0,91.0,98.0,107.0,108.0,104.0,127.0,114.0,86.0,92.0,111.0,96.0,86.0,111.0,107.0,96.0,80.0,92.0,82.0,87.0,82.0,104.0,137.0,149.0,138.0,154.0,167.0,147.0,190.0,182.0,186.0,199.0,215.0,193.0,186.0,196.0,170.0,163.0,172.0,155.0,149.0,148.0,149.0,136.0,106.0,117.0,117.0,104.0,123.0,101.0,127.0,117.0,109.0,106.0,96.0,127.0,99.0,109.0,113.0,111.0,115.0,89.0,93.0,98.0,98.0,77.0,82.0,90.0,75.0,78.0,84.0,59.0,64.0,60.0,86.0,70.0,41.0,58.0,60.0,56.0,28.0,30.0,34.0,41.0,28.0,21.0,23.0,13.0,20.0,19.0,13.0,4.0,23.0 K84054,109.0,111.0,110.0,145.0,92.0,120.0,125.0,116.0,142.0,108.0,124.0,112.0,115.0,106.0,97.0,96.0,104.0,108.0,72.0,78.0,68.0,88.0,86.0,90.0,98.0,124.0,119.0,147.0,153.0,175.0,155.0,155.0,144.0,179.0,168.0,156.0,179.0,197.0,178.0,181.0,163.0,161.0,154.0,158.0,172.0,162.0,147.0,135.0,130.0,130.0,99.0,120.0,114.0,102.0,106.0,99.0,118.0,102.0,114.0,106.0,99.0,104.0,87.0,93.0,91.0,71.0,106.0,80.0,93.0,91.0,81.0,70.0,77.0,70.0,78.0,76.0,84.0,89.0,88.0,56.0,75.0,66.0,65.0,57.0,38.0,57.0,42.0,30.0,27.0,33.0,25.0,18.0,16.0,9.0,16.0,29.0 K84055,51.0,43.0,55.0,74.0,69.0,64.0,58.0,80.0,73.0,65.0,67.0,66.0,58.0,66.0,69.0,61.0,67.0,79.0,54.0,50.0,31.0,40.0,48.0,53.0,50.0,45.0,46.0,36.0,32.0,49.0,63.0,59.0,50.0,62.0,73.0,82.0,65.0,73.0,71.0,100.0,102.0,78.0,96.0,93.0,81.0,105.0,84.0,78.0,81.0,66.0,101.0,86.0,91.0,91.0,103.0,93.0,89.0,96.0,90.0,103.0,92.0,105.0,78.0,83.0,69.0,70.0,75.0,64.0,65.0,71.0,69.0,66.0,55.0,84.0,67.0,81.0,74.0,80.0,80.0,47.0,64.0,50.0,52.0,35.0,35.0,30.0,32.0,28.0,25.0,21.0,17.0,14.0,6.0,12.0,11.0,26.0 K84056,20.0,21.0,23.0,20.0,19.0,30.0,15.0,23.0,24.0,21.0,22.0,24.0,26.0,46.0,65.0,56.0,64.0,51.0,41.0,26.0,16.0,19.0,22.0,13.0,15.0,21.0,16.0,12.0,12.0,16.0,25.0,27.0,23.0,22.0,29.0,28.0,26.0,26.0,26.0,29.0,39.0,24.0,25.0,28.0,39.0,25.0,27.0,28.0,24.0,29.0,32.0,33.0,48.0,42.0,42.0,44.0,53.0,48.0,48.0,46.0,44.0,42.0,38.0,43.0,32.0,37.0,50.0,38.0,40.0,33.0,38.0,39.0,34.0,39.0,39.0,30.0,42.0,35.0,34.0,22.0,26.0,20.0,30.0,21.0,10.0,22.0,14.0,14.0,8.0,13.0,12.0,4.0,10.0,4.0,4.0,10.0 K84058,34.0,31.0,32.0,40.0,30.0,36.0,38.0,43.0,40.0,26.0,37.0,40.0,38.0,43.0,45.0,50.0,56.0,67.0,54.0,42.0,26.0,29.0,33.0,29.0,27.0,36.0,37.0,31.0,35.0,31.0,36.0,40.0,45.0,39.0,49.0,44.0,55.0,45.0,49.0,50.0,37.0,40.0,47.0,43.0,49.0,53.0,70.0,49.0,48.0,50.0,61.0,61.0,73.0,67.0,61.0,70.0,75.0,62.0,59.0,81.0,58.0,53.0,79.0,51.0,44.0,75.0,54.0,49.0,56.0,38.0,42.0,61.0,41.0,51.0,44.0,63.0,46.0,59.0,54.0,32.0,45.0,42.0,41.0,23.0,28.0,13.0,31.0,15.0,25.0,15.0,15.0,9.0,10.0,9.0,9.0,18.0 K84059,64.0,65.0,71.0,68.0,56.0,55.0,57.0,57.0,70.0,81.0,61.0,67.0,85.0,69.0,79.0,65.0,75.0,61.0,65.0,57.0,53.0,77.0,49.0,46.0,52.0,50.0,58.0,73.0,96.0,84.0,73.0,77.0,104.0,94.0,90.0,88.0,87.0,98.0,87.0,84.0,102.0,67.0,93.0,91.0,86.0,82.0,81.0,84.0,95.0,83.0,79.0,84.0,93.0,83.0,70.0,91.0,91.0,73.0,90.0,89.0,98.0,79.0,88.0,80.0,81.0,77.0,61.0,74.0,72.0,64.0,59.0,54.0,64.0,63.0,80.0,63.0,78.0,63.0,55.0,41.0,40.0,45.0,31.0,36.0,28.0,32.0,22.0,25.0,19.0,12.0,22.0,21.0,13.0,8.0,7.0,24.0 K84060,22.0,16.0,25.0,18.0,32.0,15.0,30.0,18.0,22.0,23.0,20.0,20.0,21.0,14.0,16.0,19.0,19.0,21.0,40.0,50.0,69.0,89.0,81.0,86.0,92.0,71.0,90.0,70.0,96.0,77.0,73.0,57.0,67.0,68.0,48.0,67.0,56.0,66.0,54.0,40.0,33.0,39.0,49.0,32.0,32.0,35.0,31.0,30.0,26.0,28.0,31.0,24.0,34.0,21.0,24.0,24.0,23.0,25.0,24.0,22.0,25.0,29.0,21.0,15.0,20.0,24.0,16.0,17.0,19.0,11.0,17.0,26.0,19.0,20.0,16.0,20.0,17.0,14.0,16.0,4.0,15.0,7.0,8.0,11.0,7.0,7.0,9.0,7.0,9.0,5.0,4.0,6.0,6.0,3.0,3.0,10.0 K84062,68.0,58.0,65.0,53.0,62.0,51.0,55.0,62.0,58.0,46.0,57.0,67.0,63.0,66.0,49.0,62.0,76.0,65.0,58.0,38.0,44.0,53.0,54.0,65.0,52.0,60.0,75.0,80.0,87.0,88.0,104.0,79.0,90.0,89.0,89.0,80.0,85.0,91.0,88.0,80.0,76.0,77.0,84.0,67.0,75.0,69.0,60.0,61.0,59.0,60.0,57.0,56.0,61.0,56.0,61.0,58.0,65.0,59.0,54.0,65.0,57.0,53.0,46.0,48.0,53.0,41.0,39.0,31.0,33.0,30.0,32.0,23.0,22.0,32.0,25.0,36.0,36.0,29.0,18.0,18.0,17.0,19.0,18.0,11.0,16.0,11.0,9.0,11.0,8.0,9.0,6.0,3.0,8.0,4.0,6.0,13.0 K84063,66.0,75.0,52.0,52.0,49.0,46.0,62.0,52.0,62.0,57.0,54.0,61.0,37.0,46.0,52.0,50.0,52.0,87.0,69.0,94.0,85.0,86.0,75.0,106.0,134.0,123.0,136.0,128.0,122.0,141.0,128.0,148.0,142.0,125.0,138.0,125.0,112.0,116.0,102.0,92.0,92.0,84.0,84.0,70.0,82.0,76.0,70.0,60.0,52.0,75.0,53.0,63.0,34.0,46.0,58.0,46.0,54.0,51.0,39.0,49.0,40.0,37.0,37.0,34.0,34.0,39.0,33.0,37.0,24.0,29.0,27.0,28.0,12.0,21.0,18.0,20.0,18.0,23.0,11.0,12.0,11.0,14.0,10.0,12.0,7.0,6.0,9.0,4.0,4.0,3.0,4.0,3.0,1.0,1.0,2.0,3.0 K84065,5.0,8.0,13.0,15.0,15.0,15.0,14.0,16.0,11.0,19.0,10.0,18.0,19.0,12.0,12.0,21.0,15.0,22.0,16.0,15.0,15.0,18.0,15.0,11.0,14.0,12.0,12.0,9.0,9.0,17.0,9.0,10.0,13.0,12.0,19.0,17.0,19.0,15.0,25.0,18.0,16.0,20.0,18.0,14.0,11.0,24.0,21.0,21.0,22.0,20.0,16.0,14.0,22.0,28.0,18.0,26.0,30.0,28.0,31.0,26.0,32.0,41.0,31.0,38.0,36.0,28.0,23.0,20.0,24.0,21.0,15.0,28.0,21.0,25.0,20.0,17.0,24.0,13.0,22.0,16.0,14.0,13.0,17.0,9.0,9.0,6.0,6.0,8.0,5.0,5.0,2.0,1.0,3.0,2.0,3.0,6.0 K84066,,,,,,,,,,,,,,,,,,,,1.0,1.0,2.0,,,2.0,3.0,1.0,1.0,2.0,2.0,1.0,3.0,4.0,5.0,1.0,3.0,2.0,1.0,6.0,2.0,2.0,2.0,3.0,3.0,5.0,3.0,,5.0,6.0,1.0,4.0,2.0,5.0,1.0,,1.0,,,2.0,2.0,1.0,1.0,2.0,,1.0,,,,1.0,,,,,,,,,,,,1.0,,,,,,,,,,,,,,, K84071,27.0,28.0,41.0,30.0,35.0,49.0,39.0,58.0,44.0,42.0,62.0,51.0,61.0,54.0,81.0,72.0,60.0,78.0,69.0,48.0,57.0,46.0,47.0,48.0,40.0,54.0,39.0,42.0,40.0,39.0,36.0,44.0,41.0,49.0,46.0,34.0,42.0,61.0,52.0,56.0,68.0,73.0,67.0,53.0,66.0,63.0,84.0,65.0,67.0,60.0,78.0,95.0,91.0,91.0,92.0,99.0,89.0,75.0,71.0,87.0,69.0,77.0,74.0,68.0,65.0,49.0,65.0,64.0,67.0,47.0,60.0,67.0,63.0,53.0,55.0,64.0,58.0,71.0,74.0,54.0,53.0,57.0,53.0,33.0,43.0,31.0,29.0,28.0,18.0,26.0,29.0,18.0,23.0,11.0,16.0,27.0 K84072,36.0,44.0,42.0,60.0,51.0,55.0,43.0,57.0,47.0,51.0,67.0,55.0,74.0,73.0,75.0,66.0,76.0,56.0,60.0,43.0,53.0,59.0,50.0,42.0,55.0,57.0,66.0,72.0,74.0,82.0,70.0,61.0,84.0,78.0,74.0,80.0,84.0,77.0,65.0,89.0,76.0,76.0,76.0,70.0,88.0,73.0,82.0,66.0,77.0,72.0,73.0,69.0,64.0,82.0,77.0,70.0,67.0,83.0,84.0,80.0,66.0,103.0,78.0,80.0,85.0,79.0,60.0,75.0,87.0,79.0,75.0,71.0,58.0,60.0,64.0,70.0,60.0,73.0,80.0,60.0,61.0,48.0,57.0,34.0,34.0,53.0,43.0,29.0,34.0,37.0,23.0,30.0,17.0,27.0,18.0,32.0 K84075,77.0,84.0,78.0,95.0,80.0,84.0,84.0,81.0,100.0,83.0,96.0,90.0,91.0,111.0,81.0,82.0,69.0,64.0,70.0,73.0,57.0,49.0,51.0,63.0,70.0,62.0,70.0,99.0,102.0,85.0,86.0,120.0,105.0,125.0,120.0,125.0,100.0,107.0,112.0,96.0,114.0,105.0,91.0,98.0,90.0,93.0,82.0,72.0,75.0,83.0,66.0,82.0,74.0,98.0,69.0,71.0,62.0,83.0,76.0,74.0,78.0,69.0,70.0,49.0,55.0,65.0,51.0,55.0,43.0,45.0,40.0,38.0,38.0,32.0,33.0,34.0,33.0,35.0,21.0,23.0,19.0,28.0,18.0,20.0,12.0,19.0,13.0,8.0,9.0,11.0,12.0,8.0,4.0,8.0,5.0,12.0 K84078,23.0,21.0,24.0,14.0,23.0,20.0,22.0,20.0,23.0,16.0,24.0,18.0,19.0,26.0,19.0,19.0,16.0,19.0,77.0,218.0,280.0,264.0,281.0,298.0,324.0,233.0,217.0,202.0,174.0,165.0,138.0,135.0,106.0,110.0,82.0,85.0,68.0,75.0,61.0,54.0,38.0,48.0,42.0,46.0,38.0,41.0,38.0,28.0,29.0,26.0,30.0,33.0,33.0,29.0,32.0,23.0,25.0,29.0,27.0,26.0,35.0,28.0,28.0,15.0,18.0,25.0,23.0,14.0,25.0,22.0,11.0,19.0,25.0,19.0,16.0,15.0,20.0,12.0,18.0,5.0,22.0,10.0,15.0,10.0,11.0,8.0,5.0,6.0,7.0,1.0,1.0,2.0,3.0,2.0,2.0,6.0 K84079,42.0,33.0,36.0,48.0,53.0,45.0,51.0,54.0,44.0,59.0,50.0,60.0,46.0,66.0,57.0,55.0,54.0,44.0,44.0,36.0,30.0,25.0,41.0,36.0,31.0,41.0,36.0,41.0,50.0,48.0,51.0,47.0,54.0,45.0,61.0,55.0,53.0,54.0,71.0,58.0,65.0,68.0,50.0,58.0,66.0,57.0,79.0,54.0,67.0,59.0,63.0,51.0,73.0,65.0,63.0,71.0,73.0,57.0,62.0,64.0,73.0,62.0,76.0,61.0,69.0,60.0,71.0,55.0,47.0,44.0,48.0,42.0,36.0,34.0,32.0,34.0,38.0,39.0,47.0,32.0,32.0,26.0,21.0,16.0,17.0,6.0,19.0,15.0,12.0,11.0,5.0,7.0,5.0,7.0,6.0,14.0 K84080,20.0,24.0,17.0,35.0,20.0,31.0,28.0,19.0,25.0,32.0,28.0,38.0,39.0,31.0,29.0,51.0,62.0,85.0,125.0,276.0,313.0,381.0,340.0,313.0,271.0,178.0,167.0,160.0,126.0,136.0,112.0,93.0,106.0,90.0,89.0,86.0,72.0,81.0,67.0,77.0,67.0,67.0,64.0,52.0,61.0,57.0,58.0,52.0,48.0,48.0,41.0,48.0,53.0,45.0,48.0,48.0,55.0,48.0,39.0,44.0,42.0,45.0,43.0,45.0,48.0,40.0,35.0,39.0,29.0,27.0,35.0,49.0,21.0,28.0,27.0,25.0,20.0,31.0,24.0,23.0,28.0,21.0,18.0,19.0,12.0,23.0,16.0,13.0,12.0,9.0,13.0,5.0,9.0,6.0,5.0,23.0 K84082,29.0,46.0,44.0,50.0,52.0,53.0,51.0,60.0,86.0,61.0,93.0,71.0,71.0,78.0,82.0,78.0,57.0,66.0,71.0,60.0,51.0,50.0,41.0,48.0,66.0,72.0,53.0,74.0,66.0,67.0,75.0,88.0,77.0,83.0,88.0,76.0,83.0,84.0,98.0,92.0,98.0,96.0,103.0,98.0,111.0,94.0,84.0,74.0,77.0,92.0,67.0,79.0,76.0,70.0,70.0,78.0,75.0,86.0,82.0,97.0,76.0,79.0,87.0,74.0,94.0,84.0,69.0,88.0,69.0,86.0,79.0,58.0,61.0,81.0,67.0,63.0,67.0,57.0,72.0,42.0,47.0,39.0,58.0,43.0,39.0,38.0,25.0,37.0,23.0,25.0,20.0,19.0,15.0,14.0,10.0,34.0 K84605,7.0,10.0,8.0,11.0,9.0,11.0,13.0,17.0,10.0,15.0,7.0,4.0,10.0,9.0,5.0,5.0,9.0,19.0,82.0,186.0,179.0,198.0,155.0,136.0,165.0,116.0,96.0,88.0,80.0,67.0,69.0,61.0,61.0,54.0,42.0,35.0,42.0,42.0,30.0,37.0,30.0,20.0,23.0,20.0,25.0,27.0,14.0,25.0,12.0,11.0,10.0,16.0,14.0,16.0,10.0,15.0,11.0,12.0,14.0,7.0,10.0,13.0,13.0,12.0,15.0,15.0,13.0,8.0,11.0,5.0,7.0,3.0,9.0,9.0,7.0,11.0,13.0,9.0,8.0,10.0,4.0,4.0,8.0,1.0,3.0,2.0,10.0,3.0,2.0,1.0,,,3.0,2.0,2.0,1.0 K84610,20.0,18.0,24.0,23.0,29.0,27.0,34.0,33.0,22.0,28.0,29.0,22.0,33.0,28.0,24.0,28.0,28.0,26.0,19.0,20.0,14.0,20.0,23.0,23.0,26.0,19.0,15.0,18.0,20.0,15.0,30.0,19.0,25.0,25.0,24.0,39.0,39.0,27.0,29.0,33.0,36.0,32.0,25.0,38.0,29.0,35.0,34.0,33.0,36.0,28.0,31.0,31.0,42.0,33.0,37.0,32.0,31.0,31.0,38.0,35.0,50.0,37.0,45.0,37.0,45.0,37.0,41.0,39.0,37.0,33.0,23.0,23.0,30.0,28.0,27.0,37.0,39.0,45.0,24.0,33.0,20.0,24.0,16.0,24.0,11.0,19.0,18.0,20.0,10.0,14.0,10.0,8.0,5.0,4.0,2.0,12.0 K84613,124.0,118.0,128.0,130.0,107.0,134.0,133.0,117.0,132.0,155.0,143.0,121.0,144.0,147.0,153.0,156.0,138.0,172.0,131.0,98.0,105.0,79.0,117.0,97.0,124.0,147.0,132.0,143.0,168.0,134.0,163.0,168.0,151.0,167.0,171.0,169.0,158.0,171.0,172.0,172.0,208.0,179.0,172.0,173.0,180.0,188.0,171.0,169.0,153.0,194.0,175.0,158.0,163.0,168.0,164.0,150.0,177.0,149.0,164.0,144.0,159.0,118.0,116.0,108.0,123.0,110.0,104.0,88.0,90.0,69.0,66.0,80.0,57.0,58.0,69.0,63.0,51.0,74.0,62.0,52.0,55.0,37.0,35.0,33.0,32.0,25.0,30.0,19.0,23.0,9.0,9.0,12.0,4.0,9.0,5.0,16.0 K84618,26.0,47.0,36.0,33.0,37.0,35.0,40.0,38.0,43.0,51.0,41.0,49.0,58.0,67.0,71.0,58.0,75.0,51.0,57.0,43.0,32.0,44.0,46.0,38.0,38.0,42.0,41.0,53.0,55.0,49.0,59.0,63.0,67.0,52.0,49.0,53.0,52.0,47.0,55.0,64.0,76.0,66.0,52.0,65.0,57.0,64.0,65.0,59.0,71.0,59.0,63.0,52.0,65.0,71.0,82.0,59.0,78.0,57.0,66.0,67.0,53.0,59.0,70.0,61.0,46.0,48.0,46.0,46.0,28.0,35.0,31.0,31.0,39.0,29.0,38.0,33.0,30.0,43.0,34.0,33.0,32.0,37.0,30.0,19.0,20.0,12.0,13.0,19.0,14.0,15.0,13.0,7.0,10.0,8.0,9.0,25.0 K84624,37.0,50.0,55.0,63.0,69.0,54.0,74.0,74.0,79.0,99.0,84.0,88.0,98.0,90.0,64.0,68.0,83.0,70.0,83.0,47.0,41.0,33.0,38.0,43.0,46.0,46.0,58.0,56.0,78.0,55.0,83.0,88.0,89.0,69.0,101.0,113.0,90.0,99.0,116.0,99.0,93.0,116.0,120.0,101.0,102.0,94.0,95.0,96.0,77.0,107.0,104.0,94.0,78.0,74.0,94.0,71.0,78.0,73.0,55.0,64.0,54.0,44.0,39.0,35.0,36.0,32.0,56.0,33.0,30.0,23.0,29.0,28.0,29.0,28.0,17.0,28.0,29.0,20.0,23.0,23.0,21.0,26.0,14.0,11.0,13.0,4.0,14.0,7.0,8.0,9.0,3.0,7.0,5.0,3.0,1.0,4.0 Y01964,182.0,184.0,202.0,217.0,223.0,244.0,215.0,254.0,223.0,256.0,224.0,223.0,275.0,270.0,257.0,226.0,191.0,188.0,154.0,139.0,116.0,123.0,153.0,158.0,143.0,149.0,178.0,167.0,193.0,222.0,215.0,232.0,266.0,275.0,298.0,298.0,291.0,328.0,309.0,280.0,314.0,289.0,287.0,230.0,232.0,247.0,226.0,202.0,196.0,171.0,155.0,146.0,154.0,128.0,151.0,140.0,151.0,130.0,132.0,118.0,134.0,128.0,141.0,102.0,106.0,93.0,108.0,97.0,98.0,76.0,78.0,68.0,71.0,81.0,68.0,56.0,49.0,56.0,48.0,37.0,43.0,48.0,30.0,27.0,24.0,35.0,19.0,14.0,18.0,25.0,16.0,12.0,11.0,8.0,13.0,29.0 Y02476,80.0,68.0,80.0,73.0,74.0,87.0,110.0,94.0,75.0,75.0,65.0,63.0,73.0,48.0,55.0,54.0,42.0,41.0,46.0,45.0,35.0,66.0,64.0,84.0,123.0,131.0,162.0,199.0,187.0,229.0,205.0,206.0,230.0,220.0,243.0,237.0,203.0,186.0,181.0,150.0,142.0,166.0,168.0,122.0,99.0,66.0,64.0,58.0,60.0,75.0,42.0,42.0,38.0,46.0,37.0,33.0,52.0,29.0,26.0,44.0,39.0,28.0,42.0,25.0,31.0,21.0,26.0,22.0,16.0,14.0,15.0,13.0,10.0,16.0,14.0,17.0,10.0,7.0,8.0,7.0,2.0,6.0,1.0,5.0,2.0,4.0,1.0,1.0,2.0,2.0,2.0,1.0,1.0,,,3.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 M87001,13.0,24.0,21.0,28.0,26.0,21.0,20.0,26.0,27.0,29.0,33.0,29.0,32.0,43.0,32.0,36.0,30.0,37.0,22.0,21.0,28.0,35.0,26.0,26.0,23.0,30.0,18.0,35.0,27.0,29.0,37.0,32.0,31.0,26.0,42.0,42.0,34.0,42.0,36.0,43.0,34.0,31.0,39.0,32.0,43.0,31.0,39.0,44.0,27.0,36.0,33.0,41.0,48.0,49.0,53.0,43.0,47.0,53.0,44.0,43.0,49.0,63.0,44.0,42.0,44.0,51.0,43.0,39.0,47.0,42.0,52.0,35.0,49.0,49.0,55.0,43.0,53.0,54.0,52.0,40.0,42.0,38.0,26.0,38.0,18.0,24.0,22.0,13.0,14.0,16.0,11.0,8.0,10.0,9.0,2.0,10.0 M87003,38.0,69.0,58.0,61.0,75.0,55.0,73.0,71.0,99.0,77.0,100.0,98.0,95.0,110.0,104.0,97.0,98.0,94.0,94.0,79.0,81.0,102.0,82.0,92.0,90.0,71.0,92.0,72.0,93.0,80.0,74.0,75.0,92.0,111.0,89.0,98.0,102.0,74.0,88.0,99.0,100.0,97.0,117.0,107.0,114.0,131.0,110.0,86.0,108.0,107.0,105.0,131.0,144.0,166.0,155.0,122.0,140.0,159.0,151.0,152.0,145.0,166.0,149.0,158.0,135.0,138.0,132.0,124.0,142.0,125.0,128.0,132.0,125.0,114.0,132.0,146.0,117.0,156.0,149.0,111.0,140.0,130.0,129.0,88.0,97.0,71.0,72.0,59.0,51.0,40.0,40.0,20.0,27.0,21.0,21.0,25.0 M87005,75.0,77.0,68.0,65.0,65.0,84.0,67.0,80.0,84.0,82.0,66.0,78.0,61.0,73.0,66.0,58.0,66.0,76.0,47.0,73.0,59.0,51.0,49.0,67.0,65.0,72.0,91.0,105.0,97.0,97.0,85.0,113.0,105.0,103.0,98.0,125.0,102.0,98.0,92.0,91.0,103.0,97.0,87.0,96.0,90.0,83.0,85.0,79.0,90.0,74.0,74.0,87.0,83.0,99.0,105.0,88.0,94.0,83.0,84.0,78.0,81.0,82.0,69.0,76.0,68.0,66.0,68.0,61.0,65.0,70.0,69.0,64.0,71.0,55.0,66.0,90.0,60.0,76.0,73.0,52.0,58.0,54.0,46.0,38.0,37.0,28.0,28.0,23.0,18.0,20.0,16.0,12.0,4.0,12.0,16.0,13.0 M87006,50.0,44.0,50.0,41.0,27.0,46.0,50.0,56.0,56.0,41.0,52.0,54.0,48.0,61.0,35.0,48.0,50.0,60.0,45.0,61.0,38.0,53.0,48.0,48.0,60.0,50.0,56.0,55.0,67.0,83.0,84.0,80.0,72.0,70.0,63.0,49.0,60.0,81.0,79.0,59.0,48.0,52.0,53.0,51.0,62.0,51.0,55.0,38.0,54.0,54.0,50.0,63.0,67.0,68.0,70.0,61.0,48.0,70.0,71.0,64.0,76.0,68.0,79.0,44.0,51.0,57.0,47.0,53.0,52.0,39.0,37.0,45.0,41.0,27.0,34.0,24.0,21.0,36.0,37.0,27.0,31.0,28.0,25.0,29.0,15.0,21.0,16.0,22.0,14.0,15.0,13.0,10.0,9.0,4.0,5.0,6.0 M87007,38.0,50.0,49.0,60.0,53.0,62.0,55.0,57.0,50.0,61.0,72.0,48.0,75.0,57.0,63.0,58.0,55.0,64.0,51.0,62.0,63.0,55.0,45.0,50.0,54.0,67.0,69.0,67.0,76.0,81.0,71.0,84.0,93.0,79.0,80.0,71.0,68.0,58.0,70.0,71.0,79.0,78.0,71.0,73.0,77.0,59.0,66.0,61.0,62.0,57.0,69.0,72.0,97.0,84.0,95.0,97.0,113.0,94.0,98.0,86.0,88.0,80.0,82.0,74.0,80.0,78.0,66.0,70.0,67.0,58.0,63.0,64.0,59.0,74.0,66.0,44.0,66.0,88.0,50.0,58.0,55.0,72.0,46.0,46.0,35.0,48.0,43.0,36.0,47.0,30.0,23.0,14.0,17.0,6.0,10.0,12.0 M87008,49.0,41.0,56.0,49.0,42.0,39.0,43.0,41.0,45.0,45.0,44.0,51.0,48.0,48.0,37.0,32.0,39.0,30.0,34.0,45.0,42.0,45.0,34.0,37.0,57.0,54.0,48.0,61.0,59.0,61.0,67.0,51.0,50.0,61.0,60.0,70.0,85.0,43.0,49.0,59.0,56.0,65.0,55.0,47.0,47.0,52.0,47.0,27.0,40.0,55.0,54.0,50.0,57.0,60.0,58.0,54.0,53.0,59.0,59.0,60.0,68.0,66.0,57.0,53.0,62.0,49.0,67.0,59.0,53.0,48.0,34.0,43.0,42.0,51.0,47.0,53.0,62.0,53.0,49.0,33.0,42.0,39.0,34.0,45.0,25.0,15.0,20.0,28.0,21.0,18.0,14.0,13.0,6.0,7.0,7.0,8.0 M87009,74.0,74.0,83.0,97.0,95.0,91.0,90.0,92.0,100.0,107.0,102.0,117.0,98.0,116.0,103.0,87.0,84.0,105.0,109.0,92.0,98.0,69.0,92.0,103.0,109.0,91.0,116.0,99.0,96.0,104.0,109.0,129.0,91.0,132.0,123.0,116.0,110.0,116.0,126.0,141.0,90.0,117.0,108.0,117.0,120.0,126.0,101.0,107.0,91.0,94.0,103.0,95.0,98.0,123.0,128.0,117.0,134.0,120.0,112.0,112.0,121.0,96.0,103.0,103.0,87.0,109.0,120.0,86.0,87.0,96.0,87.0,77.0,90.0,83.0,87.0,74.0,76.0,84.0,88.0,58.0,54.0,55.0,50.0,36.0,24.0,35.0,34.0,29.0,17.0,23.0,12.0,9.0,7.0,10.0,4.0,12.0 M87010,57.0,66.0,62.0,72.0,55.0,59.0,53.0,67.0,56.0,52.0,57.0,59.0,65.0,56.0,49.0,42.0,46.0,57.0,53.0,40.0,51.0,39.0,45.0,57.0,50.0,49.0,57.0,66.0,67.0,74.0,76.0,80.0,82.0,80.0,76.0,79.0,68.0,71.0,70.0,59.0,69.0,69.0,63.0,47.0,67.0,46.0,41.0,41.0,41.0,53.0,41.0,48.0,52.0,59.0,59.0,54.0,39.0,43.0,49.0,46.0,52.0,55.0,42.0,53.0,49.0,30.0,37.0,37.0,36.0,47.0,43.0,49.0,36.0,42.0,37.0,21.0,43.0,32.0,31.0,25.0,21.0,26.0,22.0,10.0,20.0,14.0,11.0,9.0,7.0,15.0,3.0,9.0,4.0,2.0,2.0,8.0 M87011,80.0,98.0,95.0,101.0,107.0,111.0,111.0,142.0,146.0,143.0,154.0,145.0,145.0,135.0,168.0,156.0,127.0,158.0,131.0,129.0,125.0,111.0,105.0,111.0,120.0,110.0,119.0,148.0,119.0,129.0,157.0,148.0,152.0,146.0,151.0,151.0,143.0,138.0,175.0,168.0,159.0,155.0,176.0,171.0,166.0,193.0,165.0,128.0,170.0,160.0,179.0,184.0,189.0,207.0,190.0,229.0,191.0,188.0,184.0,198.0,241.0,181.0,217.0,176.0,173.0,188.0,194.0,166.0,168.0,187.0,158.0,196.0,164.0,159.0,170.0,172.0,181.0,183.0,174.0,157.0,139.0,149.0,108.0,111.0,101.0,94.0,76.0,65.0,71.0,72.0,52.0,29.0,35.0,16.0,24.0,52.0 M87012,28.0,45.0,45.0,39.0,34.0,52.0,54.0,54.0,47.0,66.0,44.0,66.0,70.0,67.0,65.0,63.0,51.0,74.0,54.0,49.0,52.0,39.0,46.0,42.0,41.0,40.0,34.0,35.0,46.0,48.0,47.0,62.0,52.0,43.0,41.0,55.0,58.0,64.0,59.0,45.0,59.0,61.0,59.0,48.0,63.0,45.0,48.0,52.0,33.0,39.0,32.0,36.0,39.0,55.0,35.0,47.0,46.0,41.0,50.0,50.0,32.0,31.0,53.0,28.0,36.0,32.0,27.0,31.0,36.0,26.0,34.0,20.0,22.0,19.0,23.0,24.0,24.0,25.0,14.0,19.0,17.0,11.0,9.0,19.0,9.0,15.0,8.0,6.0,9.0,6.0,6.0,4.0,7.0,3.0,3.0,9.0 M87013,46.0,44.0,60.0,57.0,67.0,74.0,66.0,58.0,78.0,73.0,73.0,81.0,71.0,76.0,77.0,60.0,79.0,76.0,67.0,72.0,62.0,59.0,56.0,53.0,63.0,70.0,67.0,76.0,73.0,83.0,64.0,85.0,87.0,81.0,87.0,94.0,71.0,69.0,97.0,93.0,86.0,90.0,95.0,93.0,76.0,75.0,69.0,91.0,62.0,76.0,72.0,66.0,62.0,72.0,81.0,91.0,73.0,97.0,74.0,71.0,54.0,72.0,65.0,71.0,56.0,68.0,60.0,65.0,41.0,49.0,40.0,43.0,43.0,39.0,36.0,41.0,36.0,35.0,32.0,28.0,29.0,24.0,20.0,16.0,19.0,23.0,23.0,20.0,14.0,12.0,6.0,10.0,4.0,8.0,3.0,9.0 M87014,28.0,44.0,39.0,37.0,38.0,40.0,34.0,47.0,37.0,48.0,43.0,42.0,64.0,50.0,37.0,52.0,38.0,52.0,38.0,40.0,40.0,40.0,34.0,37.0,46.0,45.0,51.0,44.0,43.0,52.0,42.0,36.0,58.0,66.0,62.0,42.0,55.0,62.0,56.0,57.0,49.0,45.0,58.0,60.0,57.0,67.0,48.0,57.0,51.0,52.0,47.0,48.0,63.0,58.0,51.0,54.0,51.0,55.0,64.0,58.0,55.0,51.0,57.0,54.0,48.0,49.0,57.0,51.0,42.0,37.0,48.0,41.0,46.0,52.0,42.0,47.0,54.0,46.0,44.0,45.0,48.0,52.0,44.0,19.0,18.0,22.0,25.0,16.0,14.0,11.0,6.0,15.0,7.0,5.0,1.0,12.0 M87015,23.0,27.0,33.0,38.0,33.0,37.0,37.0,42.0,55.0,42.0,39.0,36.0,41.0,45.0,34.0,58.0,41.0,39.0,55.0,38.0,38.0,41.0,35.0,29.0,35.0,29.0,34.0,46.0,41.0,33.0,42.0,38.0,46.0,51.0,51.0,49.0,44.0,44.0,47.0,51.0,41.0,49.0,42.0,47.0,42.0,56.0,53.0,44.0,40.0,49.0,48.0,47.0,47.0,56.0,57.0,66.0,61.0,60.0,59.0,53.0,69.0,66.0,60.0,55.0,55.0,38.0,38.0,32.0,42.0,43.0,35.0,40.0,47.0,46.0,49.0,51.0,52.0,56.0,50.0,44.0,51.0,43.0,53.0,39.0,45.0,41.0,32.0,37.0,22.0,27.0,24.0,13.0,10.0,7.0,4.0,9.0 M87016,27.0,27.0,31.0,47.0,39.0,41.0,36.0,33.0,40.0,35.0,33.0,43.0,41.0,41.0,43.0,38.0,40.0,36.0,43.0,37.0,46.0,34.0,40.0,31.0,24.0,36.0,37.0,43.0,49.0,47.0,39.0,29.0,45.0,50.0,54.0,49.0,48.0,59.0,56.0,43.0,36.0,46.0,56.0,43.0,42.0,39.0,37.0,32.0,35.0,38.0,38.0,37.0,34.0,55.0,50.0,46.0,54.0,42.0,46.0,54.0,69.0,63.0,49.0,49.0,38.0,33.0,25.0,39.0,41.0,47.0,25.0,43.0,31.0,27.0,31.0,29.0,27.0,28.0,27.0,22.0,33.0,37.0,25.0,24.0,25.0,26.0,22.0,16.0,28.0,14.0,19.0,7.0,12.0,7.0,3.0,4.0 M87017,39.0,39.0,43.0,51.0,44.0,38.0,56.0,54.0,58.0,62.0,61.0,63.0,40.0,51.0,67.0,52.0,62.0,54.0,59.0,57.0,46.0,47.0,63.0,65.0,61.0,64.0,62.0,64.0,61.0,81.0,60.0,71.0,51.0,56.0,64.0,51.0,58.0,51.0,60.0,71.0,58.0,63.0,59.0,59.0,61.0,56.0,45.0,54.0,50.0,54.0,47.0,49.0,42.0,50.0,49.0,42.0,59.0,42.0,36.0,38.0,44.0,53.0,29.0,43.0,49.0,41.0,33.0,37.0,38.0,31.0,35.0,24.0,30.0,26.0,37.0,35.0,26.0,21.0,27.0,15.0,15.0,18.0,20.0,17.0,10.0,10.0,14.0,13.0,11.0,8.0,8.0,6.0,5.0,7.0,4.0,7.0 M87018,24.0,30.0,29.0,34.0,28.0,32.0,32.0,35.0,26.0,28.0,28.0,36.0,27.0,41.0,44.0,42.0,36.0,25.0,29.0,26.0,37.0,25.0,33.0,18.0,33.0,41.0,39.0,43.0,48.0,42.0,38.0,46.0,39.0,42.0,39.0,36.0,48.0,33.0,40.0,43.0,34.0,47.0,42.0,42.0,36.0,27.0,41.0,29.0,40.0,48.0,38.0,43.0,40.0,39.0,54.0,42.0,52.0,67.0,55.0,50.0,52.0,48.0,49.0,42.0,48.0,30.0,34.0,44.0,40.0,42.0,40.0,40.0,39.0,51.0,36.0,51.0,45.0,41.0,57.0,52.0,54.0,56.0,38.0,42.0,51.0,44.0,63.0,51.0,38.0,42.0,30.0,42.0,40.0,29.0,31.0,94.0 M87019,21.0,23.0,31.0,30.0,25.0,20.0,31.0,25.0,31.0,23.0,33.0,33.0,36.0,32.0,35.0,32.0,40.0,45.0,27.0,29.0,31.0,28.0,33.0,32.0,29.0,34.0,40.0,48.0,31.0,33.0,29.0,31.0,36.0,35.0,30.0,41.0,39.0,43.0,40.0,28.0,29.0,37.0,22.0,40.0,34.0,35.0,26.0,25.0,32.0,35.0,32.0,28.0,28.0,41.0,36.0,51.0,44.0,40.0,32.0,33.0,37.0,45.0,36.0,45.0,34.0,32.0,24.0,34.0,33.0,37.0,25.0,35.0,27.0,29.0,34.0,29.0,29.0,39.0,22.0,18.0,27.0,19.0,23.0,16.0,11.0,6.0,9.0,10.0,5.0,7.0,5.0,3.0,5.0,2.0,1.0,2.0 M87020,50.0,42.0,45.0,47.0,41.0,42.0,40.0,52.0,61.0,57.0,53.0,69.0,59.0,66.0,59.0,59.0,38.0,65.0,52.0,28.0,58.0,38.0,41.0,42.0,35.0,46.0,41.0,54.0,56.0,50.0,53.0,56.0,53.0,58.0,66.0,75.0,60.0,67.0,73.0,69.0,67.0,69.0,47.0,64.0,57.0,85.0,61.0,61.0,40.0,44.0,57.0,62.0,53.0,65.0,70.0,66.0,68.0,67.0,65.0,66.0,67.0,65.0,53.0,56.0,78.0,62.0,50.0,52.0,63.0,57.0,51.0,45.0,50.0,61.0,47.0,54.0,40.0,55.0,52.0,39.0,44.0,39.0,39.0,34.0,19.0,20.0,17.0,12.0,27.0,13.0,11.0,15.0,5.0,12.0,4.0,22.0 M87021,47.0,57.0,49.0,58.0,40.0,61.0,64.0,57.0,58.0,39.0,45.0,57.0,52.0,44.0,35.0,43.0,54.0,35.0,43.0,35.0,36.0,48.0,46.0,54.0,48.0,52.0,51.0,59.0,63.0,74.0,66.0,69.0,78.0,73.0,76.0,63.0,54.0,69.0,52.0,50.0,48.0,57.0,53.0,47.0,38.0,39.0,33.0,33.0,33.0,37.0,38.0,36.0,46.0,43.0,29.0,52.0,44.0,43.0,46.0,35.0,37.0,59.0,53.0,36.0,39.0,36.0,34.0,39.0,28.0,34.0,34.0,27.0,38.0,33.0,28.0,32.0,26.0,32.0,33.0,27.0,26.0,18.0,23.0,22.0,23.0,18.0,17.0,19.0,10.0,8.0,9.0,13.0,7.0,6.0,1.0,4.0 M87023,27.0,54.0,42.0,51.0,55.0,50.0,50.0,52.0,51.0,49.0,59.0,50.0,52.0,53.0,59.0,45.0,53.0,52.0,39.0,49.0,51.0,51.0,36.0,49.0,39.0,63.0,62.0,63.0,52.0,72.0,66.0,44.0,74.0,72.0,57.0,83.0,71.0,80.0,56.0,53.0,69.0,57.0,54.0,69.0,49.0,54.0,57.0,46.0,47.0,52.0,56.0,61.0,58.0,66.0,85.0,81.0,63.0,85.0,81.0,69.0,66.0,69.0,60.0,56.0,50.0,47.0,58.0,51.0,48.0,53.0,54.0,60.0,56.0,51.0,57.0,54.0,53.0,52.0,78.0,52.0,58.0,57.0,44.0,37.0,40.0,36.0,30.0,21.0,19.0,11.0,11.0,11.0,6.0,6.0,8.0,16.0 M87024,86.0,93.0,119.0,127.0,103.0,116.0,114.0,122.0,123.0,118.0,126.0,148.0,143.0,149.0,147.0,145.0,113.0,146.0,123.0,131.0,104.0,91.0,120.0,115.0,127.0,130.0,128.0,143.0,146.0,148.0,156.0,144.0,163.0,162.0,185.0,169.0,149.0,157.0,135.0,163.0,151.0,149.0,139.0,140.0,165.0,149.0,122.0,125.0,119.0,130.0,137.0,138.0,141.0,170.0,176.0,149.0,157.0,156.0,171.0,154.0,151.0,156.0,137.0,151.0,120.0,135.0,127.0,104.0,158.0,127.0,113.0,105.0,116.0,122.0,112.0,120.0,135.0,106.0,125.0,73.0,112.0,97.0,75.0,80.0,62.0,54.0,63.0,51.0,31.0,36.0,37.0,27.0,19.0,24.0,18.0,15.0 M87025,16.0,17.0,29.0,39.0,29.0,27.0,36.0,26.0,39.0,24.0,34.0,28.0,25.0,22.0,25.0,37.0,26.0,26.0,32.0,34.0,17.0,21.0,19.0,18.0,16.0,24.0,26.0,25.0,40.0,34.0,41.0,35.0,35.0,29.0,27.0,34.0,26.0,39.0,32.0,21.0,43.0,25.0,22.0,28.0,23.0,22.0,17.0,22.0,31.0,26.0,18.0,20.0,31.0,33.0,36.0,30.0,37.0,26.0,44.0,30.0,39.0,29.0,28.0,34.0,23.0,24.0,30.0,21.0,34.0,13.0,22.0,11.0,19.0,32.0,16.0,17.0,25.0,21.0,21.0,12.0,19.0,16.0,14.0,12.0,9.0,13.0,11.0,10.0,11.0,11.0,4.0,2.0,6.0,4.0,2.0,1.0 M87026,32.0,45.0,36.0,38.0,41.0,44.0,34.0,31.0,41.0,27.0,49.0,27.0,36.0,42.0,31.0,35.0,41.0,37.0,36.0,30.0,27.0,41.0,29.0,35.0,43.0,38.0,40.0,43.0,56.0,57.0,51.0,43.0,48.0,49.0,57.0,43.0,48.0,43.0,45.0,40.0,40.0,40.0,34.0,44.0,34.0,42.0,34.0,23.0,30.0,31.0,20.0,32.0,27.0,46.0,44.0,43.0,43.0,37.0,27.0,31.0,35.0,34.0,33.0,31.0,32.0,32.0,30.0,23.0,26.0,22.0,21.0,22.0,28.0,26.0,16.0,25.0,23.0,21.0,18.0,19.0,11.0,13.0,12.0,14.0,15.0,13.0,10.0,8.0,6.0,11.0,2.0,9.0,4.0,2.0,4.0,2.0 M87027,22.0,27.0,24.0,23.0,28.0,30.0,34.0,23.0,23.0,27.0,35.0,24.0,34.0,23.0,25.0,35.0,30.0,19.0,24.0,25.0,20.0,18.0,25.0,18.0,25.0,31.0,31.0,35.0,25.0,26.0,31.0,29.0,37.0,35.0,38.0,30.0,38.0,42.0,28.0,27.0,28.0,26.0,30.0,19.0,36.0,25.0,23.0,33.0,22.0,28.0,24.0,37.0,23.0,29.0,27.0,38.0,33.0,25.0,30.0,21.0,35.0,16.0,26.0,21.0,29.0,20.0,22.0,19.0,18.0,13.0,19.0,18.0,15.0,24.0,27.0,16.0,23.0,23.0,18.0,14.0,11.0,13.0,16.0,8.0,10.0,9.0,6.0,7.0,10.0,6.0,5.0,4.0,2.0,3.0,1.0,3.0 M87028,55.0,55.0,54.0,61.0,58.0,37.0,49.0,63.0,69.0,55.0,79.0,74.0,66.0,56.0,72.0,59.0,65.0,62.0,55.0,48.0,48.0,60.0,58.0,51.0,57.0,51.0,55.0,63.0,70.0,59.0,83.0,80.0,71.0,59.0,84.0,75.0,74.0,69.0,69.0,63.0,48.0,55.0,74.0,73.0,64.0,60.0,50.0,49.0,46.0,45.0,53.0,49.0,54.0,57.0,60.0,61.0,64.0,63.0,61.0,56.0,59.0,48.0,58.0,52.0,51.0,50.0,35.0,36.0,38.0,46.0,47.0,34.0,36.0,34.0,35.0,26.0,34.0,33.0,35.0,29.0,17.0,18.0,24.0,20.0,15.0,16.0,15.0,13.0,13.0,11.0,8.0,3.0,2.0,5.0,3.0,5.0 M87030,15.0,18.0,14.0,22.0,21.0,18.0,31.0,16.0,17.0,19.0,15.0,37.0,21.0,23.0,18.0,28.0,17.0,15.0,22.0,19.0,16.0,16.0,24.0,25.0,27.0,24.0,26.0,27.0,37.0,38.0,37.0,27.0,27.0,35.0,36.0,24.0,21.0,27.0,31.0,29.0,27.0,21.0,28.0,25.0,22.0,31.0,17.0,19.0,32.0,27.0,23.0,26.0,28.0,35.0,33.0,24.0,26.0,34.0,29.0,32.0,25.0,25.0,23.0,28.0,30.0,18.0,26.0,22.0,23.0,38.0,26.0,21.0,22.0,28.0,18.0,17.0,20.0,25.0,21.0,27.0,25.0,25.0,17.0,21.0,18.0,15.0,10.0,9.0,9.0,7.0,8.0,8.0,4.0,4.0,1.0,6.0 M87034,44.0,38.0,46.0,45.0,43.0,32.0,39.0,44.0,44.0,38.0,33.0,38.0,36.0,32.0,36.0,33.0,29.0,30.0,25.0,34.0,26.0,34.0,32.0,24.0,40.0,37.0,43.0,50.0,55.0,51.0,50.0,60.0,51.0,34.0,49.0,49.0,51.0,51.0,40.0,58.0,38.0,32.0,30.0,37.0,29.0,36.0,33.0,30.0,34.0,30.0,31.0,25.0,32.0,35.0,34.0,28.0,32.0,38.0,44.0,26.0,35.0,32.0,26.0,31.0,30.0,30.0,26.0,22.0,28.0,28.0,21.0,19.0,19.0,20.0,15.0,15.0,16.0,19.0,16.0,24.0,18.0,14.0,18.0,5.0,9.0,5.0,9.0,15.0,6.0,7.0,5.0,4.0,2.0,2.0,3.0,2.0 M87036,13.0,27.0,16.0,32.0,19.0,30.0,19.0,30.0,25.0,22.0,19.0,27.0,29.0,34.0,37.0,28.0,33.0,33.0,31.0,29.0,37.0,28.0,27.0,26.0,25.0,32.0,31.0,29.0,22.0,24.0,26.0,35.0,20.0,21.0,29.0,32.0,20.0,24.0,31.0,34.0,26.0,28.0,27.0,22.0,19.0,27.0,24.0,26.0,19.0,24.0,18.0,13.0,20.0,14.0,20.0,22.0,14.0,16.0,18.0,18.0,16.0,18.0,16.0,20.0,15.0,15.0,10.0,21.0,13.0,11.0,8.0,8.0,8.0,9.0,11.0,8.0,14.0,10.0,5.0,3.0,3.0,4.0,8.0,6.0,3.0,5.0,4.0,5.0,5.0,,3.0,1.0,2.0,1.0,1.0,5.0 M87037,32.0,48.0,44.0,27.0,32.0,33.0,40.0,44.0,34.0,44.0,52.0,38.0,40.0,35.0,40.0,51.0,44.0,35.0,33.0,38.0,38.0,30.0,40.0,46.0,49.0,46.0,45.0,47.0,58.0,42.0,57.0,67.0,44.0,51.0,56.0,58.0,49.0,55.0,51.0,65.0,34.0,51.0,49.0,43.0,51.0,46.0,34.0,43.0,47.0,32.0,47.0,52.0,58.0,73.0,57.0,59.0,56.0,63.0,58.0,49.0,54.0,49.0,48.0,52.0,50.0,35.0,47.0,47.0,43.0,36.0,48.0,38.0,52.0,29.0,38.0,49.0,43.0,58.0,52.0,48.0,39.0,38.0,37.0,30.0,26.0,24.0,26.0,16.0,12.0,15.0,17.0,8.0,5.0,3.0,9.0,13.0 M87041,29.0,35.0,28.0,37.0,38.0,31.0,30.0,30.0,14.0,37.0,36.0,37.0,28.0,25.0,27.0,44.0,32.0,26.0,37.0,33.0,39.0,31.0,42.0,26.0,48.0,40.0,38.0,41.0,41.0,40.0,34.0,43.0,47.0,49.0,50.0,34.0,35.0,43.0,47.0,34.0,37.0,35.0,36.0,34.0,32.0,31.0,39.0,45.0,36.0,41.0,29.0,40.0,43.0,48.0,47.0,48.0,54.0,47.0,49.0,44.0,55.0,49.0,36.0,34.0,40.0,32.0,20.0,36.0,33.0,23.0,23.0,22.0,26.0,26.0,37.0,42.0,27.0,26.0,32.0,32.0,28.0,37.0,34.0,22.0,16.0,21.0,21.0,22.0,7.0,7.0,8.0,7.0,3.0,2.0,1.0,3.0 M87601,36.0,47.0,44.0,43.0,39.0,66.0,44.0,49.0,52.0,46.0,46.0,42.0,64.0,46.0,59.0,48.0,52.0,53.0,46.0,43.0,34.0,27.0,32.0,35.0,43.0,45.0,47.0,47.0,72.0,63.0,52.0,60.0,61.0,76.0,59.0,72.0,51.0,44.0,58.0,47.0,50.0,32.0,58.0,39.0,42.0,45.0,41.0,49.0,40.0,31.0,39.0,37.0,31.0,37.0,45.0,34.0,49.0,26.0,33.0,33.0,46.0,26.0,34.0,30.0,35.0,25.0,23.0,26.0,22.0,24.0,16.0,18.0,23.0,25.0,20.0,13.0,19.0,29.0,12.0,10.0,19.0,12.0,17.0,13.0,8.0,13.0,11.0,7.0,6.0,9.0,5.0,3.0,1.0,1.0,5.0,7.0 M87602,44.0,51.0,46.0,49.0,41.0,56.0,52.0,51.0,50.0,76.0,62.0,67.0,52.0,71.0,60.0,54.0,56.0,82.0,56.0,54.0,53.0,42.0,62.0,56.0,64.0,43.0,53.0,68.0,66.0,63.0,39.0,63.0,74.0,69.0,65.0,65.0,60.0,65.0,60.0,75.0,68.0,79.0,77.0,70.0,52.0,57.0,75.0,62.0,54.0,64.0,62.0,72.0,91.0,77.0,66.0,54.0,61.0,67.0,71.0,66.0,81.0,64.0,76.0,58.0,54.0,60.0,58.0,72.0,50.0,54.0,50.0,45.0,60.0,44.0,53.0,43.0,61.0,43.0,60.0,45.0,64.0,57.0,37.0,37.0,24.0,30.0,34.0,35.0,22.0,16.0,16.0,6.0,13.0,12.0,4.0,13.0 M87605,29.0,28.0,27.0,30.0,29.0,36.0,48.0,37.0,38.0,39.0,31.0,30.0,41.0,34.0,36.0,28.0,37.0,24.0,40.0,29.0,34.0,25.0,35.0,33.0,23.0,25.0,29.0,28.0,30.0,31.0,32.0,27.0,41.0,53.0,31.0,41.0,36.0,55.0,36.0,38.0,31.0,38.0,28.0,30.0,30.0,27.0,25.0,21.0,32.0,20.0,28.0,32.0,25.0,17.0,25.0,27.0,25.0,29.0,17.0,12.0,16.0,9.0,21.0,14.0,12.0,23.0,9.0,12.0,13.0,8.0,7.0,7.0,14.0,9.0,11.0,12.0,19.0,13.0,14.0,4.0,8.0,5.0,7.0,3.0,4.0,3.0,2.0,6.0,5.0,3.0,5.0,2.0,1.0,2.0,1.0,3.0 M87612,13.0,6.0,13.0,14.0,13.0,8.0,12.0,11.0,5.0,24.0,16.0,22.0,18.0,22.0,16.0,11.0,21.0,18.0,8.0,9.0,12.0,8.0,18.0,20.0,10.0,9.0,21.0,17.0,20.0,10.0,17.0,14.0,13.0,15.0,22.0,19.0,17.0,10.0,18.0,20.0,20.0,15.0,13.0,15.0,11.0,13.0,11.0,12.0,12.0,14.0,10.0,16.0,17.0,14.0,21.0,18.0,9.0,21.0,14.0,15.0,18.0,12.0,21.0,22.0,10.0,20.0,23.0,14.0,18.0,13.0,11.0,10.0,9.0,8.0,9.0,7.0,8.0,8.0,7.0,4.0,4.0,8.0,9.0,6.0,3.0,3.0,7.0,2.0,2.0,4.0,3.0,,2.0,3.0,3.0,2.0 M87617,52.0,46.0,51.0,47.0,64.0,59.0,43.0,42.0,50.0,47.0,44.0,56.0,54.0,47.0,39.0,50.0,47.0,40.0,45.0,38.0,35.0,49.0,37.0,36.0,41.0,44.0,54.0,49.0,55.0,54.0,56.0,47.0,62.0,59.0,54.0,63.0,54.0,53.0,56.0,38.0,69.0,56.0,53.0,52.0,34.0,47.0,39.0,28.0,39.0,28.0,42.0,31.0,26.0,36.0,26.0,29.0,25.0,19.0,26.0,27.0,26.0,32.0,24.0,23.0,25.0,20.0,19.0,16.0,23.0,16.0,17.0,19.0,12.0,13.0,8.0,9.0,13.0,16.0,10.0,16.0,7.0,10.0,4.0,5.0,8.0,4.0,2.0,5.0,3.0,4.0,6.0,4.0,2.0,,1.0,2.0 M87618,8.0,13.0,8.0,13.0,13.0,14.0,9.0,15.0,16.0,22.0,8.0,19.0,18.0,17.0,17.0,22.0,17.0,20.0,9.0,18.0,13.0,20.0,21.0,9.0,17.0,11.0,10.0,13.0,9.0,19.0,14.0,15.0,18.0,19.0,20.0,24.0,13.0,20.0,19.0,16.0,24.0,9.0,33.0,21.0,15.0,16.0,16.0,11.0,18.0,11.0,11.0,15.0,14.0,26.0,22.0,28.0,30.0,22.0,25.0,21.0,24.0,26.0,26.0,28.0,35.0,25.0,17.0,15.0,18.0,11.0,16.0,17.0,8.0,14.0,15.0,14.0,13.0,14.0,13.0,15.0,9.0,7.0,5.0,6.0,7.0,4.0,2.0,4.0,4.0,1.0,1.0,2.0,1.0,2.0,1.0,3.0 M87620,36.0,39.0,41.0,44.0,41.0,39.0,52.0,42.0,39.0,44.0,29.0,51.0,51.0,43.0,49.0,42.0,27.0,39.0,49.0,33.0,35.0,31.0,35.0,49.0,38.0,52.0,47.0,37.0,43.0,49.0,60.0,54.0,58.0,60.0,71.0,58.0,65.0,53.0,48.0,44.0,51.0,59.0,49.0,40.0,46.0,41.0,42.0,34.0,46.0,36.0,40.0,44.0,38.0,48.0,46.0,40.0,42.0,49.0,46.0,42.0,55.0,46.0,38.0,46.0,34.0,33.0,25.0,28.0,27.0,21.0,24.0,37.0,16.0,25.0,17.0,15.0,19.0,15.0,9.0,15.0,14.0,16.0,10.0,8.0,10.0,8.0,7.0,5.0,3.0,7.0,2.0,1.0,2.0,4.0,1.0,1.0 M87621,13.0,17.0,13.0,19.0,15.0,19.0,15.0,21.0,16.0,10.0,13.0,13.0,22.0,21.0,16.0,17.0,21.0,16.0,19.0,24.0,14.0,15.0,13.0,10.0,7.0,22.0,15.0,14.0,23.0,23.0,22.0,19.0,17.0,18.0,18.0,19.0,17.0,20.0,17.0,23.0,20.0,17.0,20.0,9.0,13.0,19.0,15.0,11.0,7.0,16.0,16.0,17.0,21.0,14.0,26.0,14.0,17.0,18.0,24.0,21.0,18.0,18.0,18.0,13.0,15.0,14.0,16.0,9.0,15.0,18.0,16.0,10.0,8.0,12.0,10.0,12.0,10.0,11.0,7.0,7.0,6.0,6.0,3.0,8.0,3.0,5.0,2.0,6.0,,4.0,1.0,2.0,2.0,,,1.0 M87623,22.0,22.0,24.0,16.0,20.0,19.0,19.0,20.0,21.0,22.0,19.0,27.0,25.0,24.0,24.0,26.0,28.0,26.0,23.0,18.0,14.0,18.0,20.0,24.0,21.0,21.0,25.0,19.0,18.0,20.0,28.0,24.0,25.0,23.0,35.0,21.0,31.0,23.0,32.0,19.0,18.0,21.0,19.0,30.0,12.0,14.0,24.0,17.0,12.0,10.0,20.0,16.0,20.0,8.0,14.0,11.0,10.0,18.0,11.0,20.0,17.0,17.0,12.0,12.0,13.0,8.0,15.0,10.0,10.0,23.0,7.0,9.0,10.0,12.0,10.0,6.0,9.0,11.0,10.0,3.0,6.0,10.0,4.0,3.0,2.0,2.0,1.0,5.0,1.0,4.0,4.0,4.0,,1.0,2.0,1.0 M87628,19.0,17.0,15.0,15.0,19.0,26.0,23.0,19.0,40.0,22.0,22.0,30.0,32.0,26.0,18.0,31.0,29.0,19.0,24.0,21.0,32.0,24.0,35.0,27.0,23.0,23.0,32.0,26.0,24.0,34.0,24.0,26.0,27.0,19.0,26.0,25.0,20.0,23.0,22.0,21.0,21.0,12.0,22.0,17.0,21.0,24.0,10.0,16.0,22.0,18.0,13.0,16.0,18.0,12.0,10.0,10.0,9.0,13.0,9.0,2.0,5.0,3.0,6.0,8.0,7.0,8.0,6.0,3.0,9.0,14.0,11.0,10.0,15.0,8.0,6.0,13.0,16.0,12.0,11.0,9.0,25.0,12.0,18.0,22.0,22.0,25.0,16.0,29.0,38.0,38.0,34.0,40.0,40.0,30.0,24.0,94.0 M87638,19.0,25.0,18.0,21.0,23.0,18.0,19.0,21.0,21.0,20.0,23.0,16.0,21.0,23.0,24.0,22.0,23.0,24.0,29.0,21.0,13.0,21.0,16.0,19.0,21.0,26.0,16.0,24.0,28.0,24.0,30.0,26.0,34.0,33.0,29.0,27.0,39.0,28.0,24.0,26.0,23.0,22.0,17.0,21.0,30.0,17.0,19.0,14.0,19.0,20.0,16.0,20.0,24.0,22.0,30.0,26.0,28.0,27.0,26.0,27.0,29.0,29.0,27.0,15.0,17.0,14.0,19.0,15.0,14.0,18.0,18.0,23.0,15.0,22.0,27.0,23.0,18.0,25.0,16.0,13.0,18.0,17.0,19.0,11.0,11.0,11.0,10.0,6.0,9.0,10.0,3.0,3.0,3.0,4.0,,3.0 M88001,51.0,55.0,58.0,61.0,49.0,76.0,66.0,63.0,89.0,71.0,93.0,79.0,84.0,86.0,75.0,83.0,80.0,70.0,51.0,62.0,55.0,57.0,64.0,58.0,64.0,74.0,71.0,66.0,78.0,75.0,78.0,87.0,73.0,83.0,97.0,76.0,83.0,87.0,110.0,83.0,71.0,76.0,74.0,70.0,60.0,62.0,54.0,55.0,58.0,55.0,62.0,59.0,58.0,49.0,72.0,52.0,60.0,75.0,62.0,74.0,56.0,60.0,46.0,49.0,48.0,54.0,37.0,55.0,50.0,41.0,37.0,37.0,39.0,29.0,33.0,33.0,27.0,32.0,21.0,31.0,30.0,26.0,12.0,18.0,20.0,29.0,20.0,25.0,9.0,13.0,11.0,14.0,9.0,12.0,3.0,14.0 M88002,54.0,59.0,58.0,49.0,65.0,45.0,52.0,51.0,54.0,63.0,54.0,55.0,56.0,70.0,53.0,56.0,50.0,39.0,61.0,61.0,57.0,61.0,77.0,84.0,98.0,84.0,92.0,91.0,99.0,83.0,75.0,88.0,60.0,68.0,73.0,74.0,77.0,69.0,66.0,58.0,59.0,39.0,57.0,52.0,55.0,54.0,49.0,50.0,52.0,53.0,62.0,36.0,48.0,35.0,49.0,52.0,48.0,42.0,44.0,45.0,51.0,43.0,48.0,48.0,40.0,32.0,31.0,24.0,32.0,12.0,32.0,17.0,30.0,30.0,24.0,22.0,22.0,30.0,26.0,16.0,18.0,24.0,22.0,4.0,11.0,14.0,11.0,11.0,13.0,8.0,4.0,9.0,4.0,2.0,3.0,8.0 M88003,42.0,50.0,53.0,75.0,67.0,64.0,70.0,65.0,69.0,54.0,67.0,66.0,76.0,79.0,91.0,69.0,59.0,73.0,79.0,68.0,58.0,44.0,63.0,56.0,56.0,65.0,65.0,61.0,55.0,57.0,67.0,84.0,84.0,85.0,61.0,76.0,82.0,78.0,83.0,80.0,80.0,78.0,92.0,95.0,86.0,86.0,78.0,68.0,54.0,65.0,70.0,81.0,74.0,87.0,89.0,86.0,94.0,73.0,86.0,102.0,83.0,80.0,74.0,77.0,65.0,66.0,49.0,66.0,69.0,75.0,57.0,70.0,54.0,60.0,57.0,50.0,69.0,66.0,72.0,55.0,42.0,47.0,42.0,45.0,23.0,20.0,26.0,14.0,23.0,25.0,14.0,10.0,15.0,9.0,8.0,16.0 M88004,163.0,185.0,202.0,238.0,217.0,258.0,244.0,270.0,251.0,269.0,292.0,268.0,286.0,315.0,310.0,275.0,285.0,296.0,252.0,225.0,205.0,239.0,227.0,224.0,210.0,222.0,218.0,238.0,265.0,249.0,254.0,274.0,257.0,299.0,293.0,345.0,320.0,289.0,309.0,323.0,313.0,289.0,291.0,284.0,281.0,306.0,228.0,216.0,221.0,214.0,237.0,211.0,224.0,242.0,277.0,233.0,268.0,250.0,225.0,228.0,264.0,246.0,237.0,232.0,209.0,205.0,201.0,157.0,172.0,158.0,166.0,159.0,143.0,143.0,151.0,167.0,137.0,150.0,140.0,131.0,122.0,117.0,111.0,99.0,88.0,95.0,83.0,78.0,62.0,54.0,52.0,35.0,31.0,25.0,22.0,36.0 M88006,68.0,79.0,73.0,59.0,73.0,85.0,77.0,84.0,68.0,92.0,91.0,97.0,101.0,97.0,104.0,105.0,111.0,89.0,92.0,94.0,72.0,112.0,97.0,88.0,108.0,91.0,90.0,87.0,98.0,85.0,82.0,83.0,75.0,71.0,90.0,100.0,79.0,93.0,86.0,106.0,96.0,87.0,87.0,93.0,84.0,88.0,77.0,70.0,58.0,63.0,53.0,71.0,59.0,56.0,71.0,47.0,50.0,59.0,55.0,56.0,57.0,53.0,47.0,54.0,44.0,34.0,29.0,35.0,33.0,28.0,32.0,37.0,22.0,25.0,22.0,25.0,17.0,30.0,23.0,18.0,22.0,23.0,24.0,17.0,18.0,17.0,20.0,13.0,11.0,10.0,13.0,4.0,8.0,4.0,2.0,9.0 M88007,45.0,48.0,37.0,38.0,47.0,56.0,58.0,41.0,61.0,63.0,58.0,71.0,59.0,59.0,59.0,56.0,64.0,46.0,56.0,63.0,57.0,49.0,50.0,50.0,68.0,43.0,57.0,57.0,53.0,78.0,63.0,58.0,69.0,76.0,63.0,70.0,71.0,72.0,66.0,61.0,68.0,63.0,65.0,52.0,56.0,48.0,55.0,57.0,56.0,62.0,65.0,46.0,60.0,80.0,56.0,74.0,54.0,56.0,66.0,73.0,66.0,64.0,63.0,59.0,55.0,51.0,52.0,59.0,49.0,59.0,56.0,49.0,65.0,47.0,46.0,37.0,44.0,41.0,35.0,40.0,31.0,38.0,29.0,30.0,22.0,29.0,30.0,17.0,11.0,18.0,11.0,10.0,10.0,10.0,8.0,10.0 M88008,23.0,19.0,25.0,19.0,25.0,19.0,40.0,26.0,36.0,19.0,31.0,35.0,36.0,31.0,37.0,26.0,29.0,28.0,31.0,23.0,25.0,28.0,34.0,39.0,29.0,31.0,32.0,37.0,44.0,31.0,42.0,33.0,45.0,45.0,26.0,43.0,45.0,42.0,27.0,43.0,35.0,32.0,25.0,27.0,37.0,40.0,25.0,19.0,22.0,25.0,26.0,29.0,41.0,28.0,21.0,35.0,32.0,30.0,33.0,26.0,34.0,34.0,25.0,33.0,25.0,40.0,32.0,35.0,29.0,37.0,22.0,19.0,15.0,16.0,20.0,24.0,18.0,20.0,23.0,13.0,20.0,16.0,20.0,16.0,16.0,12.0,13.0,12.0,9.0,5.0,4.0,5.0,7.0,1.0,3.0,3.0 M88009,41.0,41.0,48.0,47.0,59.0,55.0,54.0,61.0,82.0,69.0,67.0,83.0,81.0,68.0,70.0,73.0,68.0,78.0,55.0,59.0,61.0,63.0,51.0,56.0,50.0,72.0,76.0,66.0,80.0,60.0,66.0,66.0,68.0,77.0,75.0,72.0,75.0,87.0,62.0,69.0,77.0,58.0,57.0,76.0,68.0,56.0,63.0,57.0,54.0,59.0,51.0,52.0,57.0,64.0,83.0,56.0,65.0,52.0,64.0,60.0,65.0,48.0,55.0,43.0,48.0,46.0,43.0,30.0,38.0,31.0,37.0,26.0,28.0,28.0,37.0,32.0,33.0,26.0,32.0,19.0,24.0,23.0,15.0,23.0,12.0,26.0,16.0,9.0,10.0,5.0,7.0,5.0,3.0,5.0,1.0,5.0 M88010,50.0,46.0,60.0,61.0,44.0,63.0,61.0,72.0,67.0,66.0,75.0,78.0,83.0,74.0,58.0,85.0,64.0,48.0,52.0,58.0,47.0,53.0,49.0,52.0,45.0,47.0,63.0,64.0,56.0,68.0,60.0,70.0,82.0,70.0,85.0,75.0,65.0,67.0,75.0,63.0,56.0,70.0,59.0,42.0,75.0,56.0,40.0,45.0,37.0,58.0,54.0,49.0,49.0,65.0,65.0,71.0,59.0,42.0,52.0,43.0,44.0,46.0,56.0,34.0,42.0,51.0,40.0,43.0,34.0,35.0,29.0,32.0,28.0,32.0,38.0,28.0,29.0,31.0,26.0,27.0,24.0,26.0,31.0,27.0,19.0,19.0,8.0,16.0,15.0,5.0,6.0,7.0,4.0,4.0,3.0,6.0 M88013,56.0,87.0,88.0,91.0,78.0,93.0,81.0,95.0,90.0,109.0,89.0,88.0,104.0,120.0,95.0,92.0,101.0,98.0,71.0,89.0,64.0,76.0,72.0,83.0,82.0,102.0,92.0,80.0,93.0,105.0,100.0,92.0,115.0,100.0,94.0,121.0,84.0,87.0,109.0,123.0,107.0,92.0,112.0,114.0,91.0,100.0,95.0,81.0,61.0,73.0,89.0,71.0,90.0,102.0,111.0,90.0,102.0,90.0,84.0,84.0,90.0,80.0,90.0,85.0,70.0,75.0,62.0,76.0,53.0,50.0,64.0,55.0,58.0,53.0,50.0,64.0,61.0,49.0,44.0,48.0,43.0,49.0,50.0,44.0,36.0,26.0,26.0,27.0,24.0,16.0,15.0,12.0,13.0,7.0,6.0,22.0 M88014,52.0,33.0,37.0,30.0,51.0,37.0,31.0,42.0,48.0,48.0,46.0,30.0,34.0,33.0,35.0,47.0,41.0,32.0,44.0,45.0,41.0,34.0,44.0,48.0,53.0,56.0,55.0,49.0,62.0,60.0,58.0,64.0,44.0,47.0,54.0,48.0,65.0,46.0,47.0,47.0,34.0,60.0,47.0,44.0,47.0,44.0,39.0,25.0,40.0,54.0,41.0,37.0,33.0,38.0,30.0,38.0,25.0,29.0,34.0,40.0,34.0,27.0,25.0,22.0,27.0,30.0,26.0,21.0,24.0,32.0,19.0,20.0,22.0,26.0,20.0,21.0,22.0,20.0,18.0,16.0,13.0,18.0,12.0,11.0,13.0,8.0,7.0,7.0,4.0,5.0,5.0,4.0,1.0,1.0,1.0,8.0 M88015,39.0,53.0,55.0,64.0,76.0,67.0,70.0,67.0,41.0,66.0,59.0,61.0,61.0,74.0,73.0,65.0,72.0,63.0,52.0,55.0,48.0,57.0,51.0,65.0,54.0,56.0,79.0,74.0,77.0,98.0,73.0,87.0,85.0,89.0,86.0,94.0,86.0,87.0,85.0,75.0,79.0,85.0,63.0,81.0,75.0,79.0,63.0,68.0,67.0,72.0,57.0,61.0,66.0,74.0,88.0,94.0,70.0,70.0,83.0,62.0,80.0,78.0,60.0,56.0,58.0,48.0,44.0,35.0,47.0,40.0,40.0,43.0,38.0,39.0,31.0,36.0,45.0,40.0,47.0,36.0,31.0,31.0,40.0,31.0,21.0,22.0,20.0,12.0,21.0,16.0,12.0,6.0,6.0,3.0,5.0,10.0 M88016,16.0,30.0,43.0,29.0,21.0,33.0,26.0,37.0,22.0,31.0,23.0,22.0,23.0,16.0,19.0,17.0,25.0,33.0,26.0,21.0,23.0,20.0,25.0,32.0,21.0,30.0,32.0,40.0,30.0,27.0,33.0,32.0,35.0,31.0,41.0,30.0,28.0,31.0,36.0,30.0,32.0,30.0,33.0,21.0,16.0,17.0,24.0,19.0,19.0,18.0,21.0,19.0,17.0,22.0,24.0,12.0,15.0,21.0,21.0,12.0,13.0,22.0,11.0,9.0,14.0,14.0,12.0,10.0,18.0,6.0,12.0,8.0,8.0,6.0,10.0,7.0,10.0,14.0,10.0,5.0,10.0,14.0,12.0,6.0,9.0,7.0,7.0,4.0,1.0,2.0,2.0,3.0,1.0,,,5.0 M88018,113.0,128.0,125.0,112.0,113.0,128.0,123.0,140.0,127.0,150.0,140.0,128.0,141.0,150.0,151.0,130.0,181.0,158.0,132.0,133.0,126.0,118.0,123.0,123.0,125.0,162.0,160.0,155.0,169.0,152.0,176.0,159.0,167.0,185.0,190.0,175.0,164.0,153.0,180.0,172.0,176.0,147.0,162.0,154.0,150.0,143.0,148.0,118.0,117.0,117.0,125.0,116.0,110.0,149.0,136.0,170.0,160.0,124.0,133.0,123.0,144.0,140.0,127.0,107.0,106.0,110.0,94.0,93.0,86.0,98.0,94.0,94.0,75.0,70.0,79.0,85.0,70.0,69.0,68.0,66.0,56.0,56.0,58.0,47.0,41.0,45.0,36.0,29.0,30.0,26.0,22.0,8.0,14.0,10.0,10.0,15.0 M88019,16.0,25.0,13.0,13.0,20.0,22.0,25.0,22.0,15.0,17.0,20.0,20.0,22.0,13.0,20.0,16.0,16.0,16.0,20.0,14.0,12.0,14.0,19.0,17.0,26.0,33.0,33.0,16.0,27.0,24.0,40.0,21.0,31.0,22.0,24.0,24.0,23.0,27.0,22.0,19.0,18.0,20.0,24.0,15.0,24.0,15.0,20.0,16.0,21.0,19.0,14.0,12.0,9.0,14.0,12.0,16.0,15.0,10.0,6.0,17.0,5.0,5.0,14.0,8.0,11.0,6.0,7.0,11.0,5.0,6.0,11.0,9.0,2.0,6.0,6.0,9.0,4.0,6.0,7.0,3.0,6.0,4.0,4.0,5.0,3.0,6.0,5.0,2.0,3.0,5.0,2.0,1.0,,,,2.0 M88021,44.0,42.0,50.0,46.0,51.0,57.0,65.0,64.0,60.0,65.0,44.0,54.0,75.0,51.0,53.0,75.0,73.0,67.0,59.0,63.0,47.0,55.0,57.0,60.0,53.0,53.0,53.0,61.0,59.0,73.0,78.0,67.0,73.0,63.0,81.0,60.0,75.0,75.0,76.0,74.0,75.0,85.0,84.0,70.0,89.0,74.0,70.0,67.0,59.0,72.0,60.0,55.0,77.0,70.0,70.0,66.0,66.0,86.0,58.0,85.0,66.0,58.0,69.0,72.0,62.0,77.0,59.0,59.0,62.0,70.0,57.0,66.0,58.0,50.0,51.0,69.0,52.0,67.0,52.0,50.0,53.0,55.0,45.0,36.0,33.0,30.0,33.0,30.0,25.0,29.0,31.0,20.0,22.0,10.0,12.0,21.0 M88022,11.0,15.0,16.0,14.0,17.0,15.0,13.0,20.0,26.0,20.0,21.0,23.0,22.0,24.0,19.0,25.0,22.0,26.0,18.0,30.0,22.0,25.0,25.0,18.0,21.0,17.0,15.0,21.0,15.0,25.0,18.0,21.0,20.0,22.0,15.0,18.0,19.0,29.0,32.0,31.0,15.0,25.0,28.0,19.0,21.0,20.0,20.0,17.0,12.0,21.0,15.0,21.0,21.0,28.0,23.0,26.0,26.0,33.0,21.0,21.0,31.0,29.0,25.0,27.0,19.0,19.0,26.0,28.0,18.0,27.0,22.0,19.0,16.0,23.0,15.0,12.0,16.0,20.0,16.0,12.0,13.0,15.0,13.0,16.0,16.0,12.0,10.0,9.0,13.0,3.0,6.0,3.0,5.0,2.0,1.0,3.0 M88023,37.0,36.0,40.0,40.0,42.0,35.0,42.0,40.0,62.0,45.0,50.0,49.0,37.0,49.0,45.0,36.0,45.0,45.0,44.0,38.0,32.0,44.0,33.0,37.0,44.0,58.0,57.0,58.0,42.0,42.0,54.0,48.0,52.0,47.0,55.0,44.0,43.0,57.0,45.0,54.0,43.0,47.0,54.0,41.0,51.0,40.0,39.0,34.0,41.0,36.0,32.0,38.0,26.0,39.0,42.0,36.0,32.0,35.0,33.0,34.0,27.0,29.0,34.0,39.0,30.0,26.0,19.0,27.0,28.0,29.0,30.0,18.0,25.0,27.0,16.0,16.0,13.0,16.0,17.0,19.0,12.0,12.0,15.0,8.0,7.0,11.0,7.0,5.0,4.0,5.0,4.0,2.0,3.0,3.0,,2.0 M88026,46.0,59.0,57.0,62.0,53.0,56.0,44.0,48.0,77.0,52.0,67.0,42.0,74.0,55.0,56.0,52.0,51.0,52.0,50.0,39.0,38.0,45.0,56.0,49.0,47.0,55.0,66.0,61.0,70.0,56.0,70.0,71.0,86.0,79.0,84.0,77.0,60.0,65.0,55.0,55.0,70.0,65.0,60.0,71.0,56.0,46.0,47.0,49.0,39.0,40.0,48.0,47.0,47.0,50.0,51.0,49.0,53.0,51.0,47.0,55.0,42.0,41.0,49.0,49.0,40.0,39.0,35.0,29.0,27.0,30.0,19.0,21.0,26.0,31.0,32.0,21.0,25.0,16.0,22.0,13.0,25.0,24.0,14.0,15.0,12.0,10.0,15.0,13.0,20.0,11.0,8.0,3.0,5.0,1.0,1.0,4.0 M88030,18.0,29.0,28.0,34.0,22.0,33.0,31.0,27.0,33.0,32.0,37.0,32.0,31.0,40.0,36.0,19.0,39.0,32.0,31.0,37.0,32.0,30.0,30.0,43.0,29.0,47.0,46.0,44.0,51.0,43.0,41.0,40.0,48.0,35.0,57.0,27.0,42.0,31.0,41.0,37.0,42.0,37.0,29.0,27.0,43.0,43.0,21.0,41.0,40.0,35.0,24.0,38.0,44.0,36.0,54.0,48.0,48.0,55.0,54.0,47.0,50.0,43.0,42.0,36.0,43.0,25.0,30.0,45.0,27.0,38.0,24.0,29.0,31.0,33.0,22.0,28.0,37.0,44.0,32.0,37.0,26.0,34.0,28.0,24.0,19.0,16.0,12.0,21.0,13.0,10.0,10.0,7.0,6.0,6.0,3.0,10.0 M88035,21.0,26.0,24.0,14.0,19.0,27.0,23.0,16.0,20.0,24.0,21.0,34.0,18.0,29.0,28.0,22.0,26.0,20.0,22.0,10.0,25.0,22.0,23.0,24.0,20.0,19.0,18.0,20.0,40.0,29.0,27.0,27.0,24.0,26.0,30.0,30.0,34.0,25.0,27.0,33.0,24.0,25.0,31.0,26.0,31.0,22.0,26.0,17.0,19.0,20.0,20.0,28.0,18.0,15.0,21.0,28.0,17.0,23.0,21.0,20.0,22.0,20.0,22.0,18.0,23.0,13.0,14.0,17.0,18.0,19.0,12.0,11.0,21.0,10.0,13.0,8.0,10.0,5.0,8.0,10.0,7.0,5.0,12.0,12.0,7.0,5.0,3.0,9.0,5.0,3.0,2.0,1.0,1.0,3.0,,2.0 M88038,52.0,83.0,51.0,57.0,79.0,63.0,73.0,79.0,86.0,71.0,67.0,95.0,90.0,101.0,81.0,89.0,84.0,99.0,91.0,108.0,74.0,95.0,85.0,88.0,112.0,86.0,85.0,106.0,113.0,81.0,93.0,81.0,93.0,97.0,96.0,93.0,98.0,94.0,111.0,106.0,110.0,108.0,102.0,90.0,102.0,99.0,85.0,73.0,85.0,88.0,85.0,91.0,79.0,79.0,78.0,97.0,84.0,86.0,94.0,91.0,76.0,101.0,72.0,62.0,79.0,82.0,88.0,66.0,61.0,65.0,70.0,58.0,56.0,60.0,58.0,53.0,59.0,53.0,37.0,34.0,33.0,50.0,36.0,25.0,28.0,17.0,27.0,26.0,24.0,19.0,18.0,16.0,8.0,9.0,7.0,16.0 M88040,27.0,31.0,30.0,29.0,24.0,31.0,35.0,45.0,34.0,33.0,37.0,35.0,50.0,41.0,44.0,52.0,45.0,52.0,39.0,39.0,39.0,35.0,42.0,41.0,53.0,35.0,39.0,57.0,43.0,38.0,44.0,26.0,37.0,31.0,39.0,48.0,48.0,34.0,47.0,39.0,35.0,34.0,45.0,52.0,35.0,40.0,38.0,41.0,45.0,41.0,32.0,42.0,33.0,30.0,29.0,33.0,26.0,29.0,32.0,40.0,24.0,32.0,22.0,15.0,35.0,21.0,28.0,18.0,24.0,23.0,23.0,19.0,26.0,16.0,14.0,15.0,15.0,21.0,17.0,11.0,14.0,19.0,16.0,10.0,7.0,15.0,9.0,6.0,6.0,6.0,2.0,6.0,4.0,4.0,2.0,6.0 M88041,30.0,20.0,22.0,28.0,24.0,23.0,20.0,29.0,26.0,23.0,32.0,24.0,24.0,29.0,25.0,28.0,30.0,34.0,33.0,30.0,26.0,23.0,36.0,23.0,21.0,34.0,36.0,33.0,22.0,35.0,27.0,26.0,21.0,26.0,23.0,34.0,31.0,26.0,24.0,30.0,23.0,31.0,22.0,17.0,33.0,29.0,19.0,21.0,22.0,11.0,25.0,19.0,17.0,19.0,18.0,12.0,8.0,9.0,13.0,17.0,21.0,7.0,13.0,10.0,7.0,10.0,8.0,7.0,6.0,6.0,10.0,8.0,5.0,11.0,7.0,9.0,3.0,3.0,3.0,1.0,5.0,4.0,2.0,2.0,3.0,4.0,1.0,1.0,1.0,,1.0,1.0,1.0,1.0,,1.0 M88042,31.0,32.0,34.0,38.0,34.0,37.0,49.0,31.0,44.0,43.0,38.0,49.0,40.0,36.0,45.0,34.0,49.0,39.0,38.0,34.0,24.0,35.0,42.0,35.0,46.0,53.0,49.0,46.0,64.0,54.0,73.0,60.0,47.0,52.0,62.0,63.0,47.0,55.0,51.0,52.0,50.0,39.0,42.0,58.0,34.0,53.0,34.0,45.0,41.0,33.0,40.0,29.0,31.0,25.0,27.0,32.0,32.0,29.0,32.0,32.0,33.0,16.0,29.0,21.0,19.0,14.0,13.0,16.0,17.0,19.0,12.0,10.0,16.0,17.0,17.0,14.0,10.0,14.0,12.0,10.0,11.0,15.0,6.0,6.0,1.0,4.0,4.0,5.0,3.0,8.0,1.0,4.0,4.0,1.0,1.0, M88043,47.0,58.0,49.0,63.0,53.0,45.0,59.0,54.0,59.0,59.0,54.0,60.0,62.0,63.0,66.0,75.0,63.0,53.0,44.0,44.0,41.0,46.0,42.0,45.0,50.0,43.0,45.0,62.0,74.0,71.0,61.0,68.0,71.0,77.0,83.0,78.0,59.0,74.0,70.0,63.0,63.0,62.0,66.0,80.0,59.0,60.0,59.0,42.0,56.0,39.0,54.0,54.0,60.0,51.0,41.0,62.0,48.0,55.0,56.0,50.0,56.0,43.0,49.0,43.0,39.0,40.0,33.0,40.0,41.0,37.0,30.0,36.0,34.0,17.0,32.0,20.0,22.0,24.0,36.0,23.0,28.0,19.0,18.0,9.0,12.0,13.0,17.0,15.0,16.0,8.0,8.0,3.0,4.0,2.0,4.0,9.0 M88600,32.0,19.0,29.0,33.0,30.0,32.0,33.0,38.0,38.0,26.0,26.0,23.0,25.0,36.0,25.0,19.0,27.0,22.0,24.0,25.0,36.0,22.0,30.0,40.0,33.0,28.0,35.0,34.0,28.0,32.0,40.0,45.0,42.0,40.0,42.0,42.0,34.0,30.0,35.0,40.0,35.0,21.0,23.0,26.0,33.0,26.0,27.0,27.0,24.0,23.0,14.0,23.0,28.0,24.0,24.0,26.0,27.0,17.0,24.0,17.0,29.0,17.0,14.0,19.0,13.0,17.0,15.0,14.0,15.0,19.0,14.0,15.0,18.0,14.0,12.0,9.0,11.0,11.0,5.0,11.0,9.0,11.0,8.0,8.0,6.0,5.0,3.0,9.0,2.0,3.0,4.0,1.0,2.0,3.0,1.0,7.0 M88610,38.0,29.0,35.0,31.0,36.0,22.0,41.0,26.0,31.0,31.0,42.0,40.0,30.0,34.0,44.0,39.0,36.0,37.0,25.0,35.0,31.0,28.0,52.0,40.0,63.0,49.0,50.0,49.0,52.0,37.0,50.0,47.0,35.0,28.0,31.0,38.0,29.0,41.0,43.0,38.0,33.0,37.0,24.0,19.0,33.0,44.0,32.0,22.0,28.0,16.0,24.0,21.0,19.0,19.0,25.0,12.0,15.0,8.0,11.0,15.0,17.0,20.0,19.0,11.0,10.0,8.0,8.0,10.0,9.0,9.0,5.0,8.0,11.0,12.0,7.0,5.0,10.0,10.0,4.0,6.0,8.0,4.0,5.0,3.0,7.0,3.0,4.0,,6.0,6.0,4.0,2.0,,,,4.0 M88612,13.0,17.0,22.0,22.0,18.0,19.0,14.0,18.0,21.0,19.0,23.0,27.0,34.0,40.0,34.0,23.0,26.0,26.0,27.0,33.0,22.0,24.0,22.0,14.0,17.0,20.0,26.0,21.0,23.0,21.0,19.0,22.0,17.0,22.0,24.0,43.0,25.0,28.0,33.0,28.0,24.0,25.0,30.0,22.0,27.0,22.0,28.0,18.0,24.0,25.0,18.0,20.0,29.0,34.0,29.0,29.0,32.0,29.0,25.0,31.0,25.0,26.0,23.0,22.0,12.0,16.0,16.0,11.0,12.0,12.0,17.0,16.0,9.0,17.0,19.0,11.0,23.0,15.0,17.0,14.0,16.0,10.0,15.0,6.0,13.0,5.0,5.0,12.0,7.0,7.0,1.0,4.0,3.0,3.0,2.0,3.0 M88616,79.0,84.0,94.0,80.0,97.0,82.0,96.0,100.0,112.0,108.0,104.0,89.0,128.0,117.0,100.0,118.0,104.0,110.0,91.0,105.0,98.0,80.0,129.0,120.0,121.0,115.0,114.0,116.0,133.0,118.0,102.0,111.0,106.0,129.0,111.0,110.0,118.0,118.0,131.0,102.0,127.0,102.0,132.0,121.0,105.0,103.0,88.0,110.0,100.0,115.0,77.0,101.0,83.0,101.0,105.0,105.0,88.0,81.0,83.0,97.0,73.0,104.0,85.0,74.0,80.0,62.0,59.0,66.0,65.0,43.0,48.0,43.0,52.0,54.0,59.0,54.0,44.0,32.0,32.0,18.0,37.0,32.0,29.0,32.0,18.0,21.0,24.0,21.0,16.0,20.0,7.0,11.0,9.0,9.0,4.0,18.0 M88618,5.0,10.0,10.0,4.0,14.0,8.0,15.0,11.0,19.0,16.0,9.0,11.0,15.0,16.0,19.0,19.0,18.0,20.0,13.0,15.0,8.0,11.0,12.0,16.0,12.0,20.0,8.0,19.0,17.0,11.0,15.0,11.0,10.0,14.0,13.0,12.0,17.0,12.0,15.0,20.0,9.0,22.0,15.0,15.0,9.0,15.0,9.0,11.0,7.0,13.0,16.0,7.0,12.0,11.0,12.0,9.0,14.0,16.0,16.0,13.0,5.0,18.0,10.0,7.0,20.0,9.0,11.0,9.0,4.0,9.0,9.0,6.0,8.0,4.0,7.0,5.0,3.0,4.0,7.0,6.0,5.0,4.0,3.0,2.0,1.0,1.0,1.0,2.0,5.0,2.0,2.0,,1.0,3.0,, M88619,58.0,72.0,64.0,75.0,66.0,62.0,61.0,65.0,67.0,70.0,85.0,74.0,72.0,78.0,64.0,66.0,51.0,77.0,55.0,61.0,61.0,68.0,82.0,98.0,106.0,109.0,115.0,99.0,94.0,91.0,117.0,101.0,107.0,91.0,100.0,122.0,84.0,83.0,93.0,96.0,92.0,89.0,81.0,77.0,85.0,71.0,60.0,64.0,62.0,60.0,60.0,64.0,54.0,57.0,52.0,51.0,66.0,58.0,50.0,50.0,64.0,58.0,53.0,50.0,58.0,54.0,51.0,38.0,43.0,47.0,36.0,34.0,34.0,33.0,30.0,35.0,34.0,33.0,36.0,23.0,26.0,29.0,34.0,21.0,20.0,16.0,13.0,16.0,17.0,14.0,10.0,9.0,3.0,5.0,6.0,22.0 M88620,20.0,29.0,28.0,22.0,27.0,22.0,17.0,27.0,21.0,30.0,30.0,36.0,27.0,25.0,23.0,24.0,27.0,20.0,21.0,21.0,25.0,22.0,26.0,32.0,21.0,27.0,27.0,32.0,32.0,28.0,27.0,33.0,23.0,22.0,30.0,29.0,24.0,30.0,27.0,28.0,26.0,23.0,24.0,29.0,23.0,22.0,21.0,17.0,17.0,16.0,19.0,12.0,14.0,25.0,19.0,21.0,14.0,12.0,19.0,17.0,11.0,17.0,16.0,9.0,19.0,16.0,16.0,9.0,9.0,8.0,12.0,5.0,8.0,8.0,13.0,6.0,5.0,1.0,8.0,2.0,6.0,7.0,3.0,2.0,2.0,3.0,4.0,5.0,5.0,5.0,4.0,,,4.0,2.0,3.0 M88625,21.0,21.0,20.0,19.0,30.0,34.0,26.0,24.0,23.0,30.0,19.0,25.0,21.0,20.0,24.0,20.0,20.0,16.0,16.0,22.0,22.0,19.0,16.0,22.0,24.0,29.0,24.0,29.0,32.0,24.0,31.0,25.0,35.0,26.0,35.0,30.0,38.0,23.0,23.0,23.0,24.0,29.0,35.0,25.0,31.0,21.0,16.0,16.0,17.0,20.0,18.0,19.0,23.0,17.0,25.0,16.0,19.0,14.0,15.0,18.0,22.0,16.0,13.0,19.0,8.0,16.0,13.0,11.0,15.0,6.0,16.0,10.0,8.0,15.0,9.0,10.0,9.0,3.0,12.0,7.0,8.0,9.0,6.0,4.0,4.0,3.0,3.0,,2.0,5.0,2.0,,,1.0,1.0,3.0 M88626,34.0,30.0,19.0,28.0,20.0,17.0,13.0,17.0,18.0,15.0,19.0,20.0,12.0,15.0,14.0,14.0,17.0,27.0,10.0,26.0,20.0,23.0,34.0,45.0,48.0,56.0,44.0,41.0,42.0,43.0,43.0,34.0,27.0,21.0,27.0,23.0,25.0,20.0,21.0,22.0,22.0,28.0,20.0,19.0,24.0,19.0,11.0,15.0,21.0,15.0,13.0,20.0,22.0,9.0,12.0,16.0,12.0,11.0,15.0,14.0,14.0,14.0,10.0,14.0,12.0,12.0,19.0,8.0,14.0,9.0,12.0,14.0,10.0,10.0,11.0,9.0,7.0,6.0,5.0,8.0,4.0,8.0,3.0,6.0,4.0,10.0,5.0,5.0,4.0,5.0,,3.0,1.0,1.0,2.0,6.0 M88628,18.0,26.0,18.0,16.0,14.0,8.0,21.0,17.0,20.0,22.0,27.0,12.0,20.0,23.0,24.0,16.0,29.0,25.0,26.0,14.0,18.0,17.0,34.0,25.0,23.0,22.0,34.0,29.0,31.0,30.0,32.0,19.0,18.0,23.0,20.0,19.0,25.0,21.0,11.0,28.0,30.0,33.0,24.0,32.0,23.0,25.0,30.0,17.0,21.0,21.0,23.0,25.0,21.0,17.0,27.0,15.0,18.0,22.0,10.0,14.0,12.0,13.0,18.0,19.0,13.0,12.0,16.0,15.0,16.0,11.0,15.0,9.0,15.0,5.0,14.0,10.0,8.0,8.0,10.0,5.0,6.0,1.0,9.0,7.0,4.0,5.0,3.0,3.0,1.0,4.0,3.0,,,1.0,1.0, M88630,18.0,26.0,25.0,20.0,21.0,29.0,37.0,39.0,34.0,45.0,43.0,33.0,36.0,30.0,37.0,30.0,31.0,34.0,36.0,28.0,25.0,43.0,34.0,26.0,41.0,40.0,24.0,34.0,25.0,32.0,32.0,42.0,33.0,46.0,40.0,37.0,38.0,32.0,36.0,20.0,36.0,42.0,30.0,44.0,33.0,31.0,27.0,28.0,25.0,40.0,27.0,30.0,37.0,37.0,30.0,32.0,34.0,28.0,36.0,35.0,31.0,34.0,16.0,23.0,21.0,23.0,22.0,18.0,14.0,7.0,25.0,16.0,22.0,19.0,15.0,17.0,21.0,10.0,13.0,14.0,13.0,20.0,12.0,7.0,12.0,7.0,8.0,10.0,7.0,5.0,3.0,1.0,3.0,3.0,1.0,3.0 M88633,60.0,52.0,55.0,42.0,48.0,40.0,41.0,42.0,37.0,38.0,42.0,26.0,38.0,41.0,26.0,32.0,37.0,42.0,36.0,37.0,33.0,44.0,62.0,81.0,89.0,83.0,77.0,94.0,99.0,76.0,75.0,57.0,69.0,59.0,47.0,71.0,41.0,45.0,41.0,41.0,49.0,44.0,36.0,33.0,39.0,45.0,50.0,24.0,31.0,25.0,38.0,25.0,29.0,32.0,38.0,26.0,27.0,29.0,35.0,33.0,24.0,31.0,26.0,40.0,23.0,22.0,24.0,19.0,22.0,15.0,18.0,22.0,20.0,27.0,22.0,17.0,11.0,12.0,12.0,11.0,6.0,7.0,16.0,8.0,9.0,12.0,7.0,3.0,10.0,3.0,4.0,1.0,2.0,,3.0,6.0 M88635,12.0,12.0,8.0,13.0,15.0,11.0,13.0,16.0,9.0,15.0,16.0,13.0,13.0,17.0,14.0,24.0,9.0,23.0,22.0,13.0,16.0,21.0,14.0,19.0,15.0,12.0,22.0,14.0,11.0,12.0,14.0,17.0,20.0,11.0,15.0,9.0,11.0,16.0,10.0,14.0,12.0,20.0,11.0,11.0,12.0,19.0,21.0,13.0,15.0,15.0,20.0,14.0,9.0,6.0,14.0,14.0,10.0,16.0,9.0,12.0,15.0,10.0,9.0,10.0,9.0,8.0,11.0,10.0,9.0,8.0,8.0,7.0,10.0,9.0,9.0,7.0,12.0,6.0,4.0,7.0,8.0,3.0,9.0,6.0,4.0,4.0,5.0,1.0,3.0,,3.0,3.0,,1.0,2.0, M88639,16.0,19.0,21.0,27.0,23.0,14.0,18.0,26.0,20.0,24.0,25.0,20.0,22.0,14.0,16.0,17.0,22.0,21.0,17.0,14.0,21.0,25.0,27.0,33.0,27.0,32.0,34.0,37.0,39.0,20.0,30.0,26.0,33.0,22.0,27.0,23.0,29.0,33.0,31.0,22.0,34.0,23.0,24.0,32.0,19.0,27.0,26.0,21.0,21.0,22.0,23.0,21.0,15.0,14.0,17.0,12.0,22.0,18.0,18.0,22.0,15.0,11.0,13.0,9.0,12.0,17.0,16.0,11.0,13.0,10.0,7.0,6.0,14.0,9.0,13.0,6.0,2.0,6.0,7.0,4.0,5.0,4.0,7.0,3.0,2.0,3.0,4.0,5.0,,1.0,2.0,3.0,,1.0,1.0,5.0 M88640,26.0,27.0,15.0,16.0,18.0,24.0,21.0,28.0,27.0,27.0,23.0,24.0,25.0,26.0,27.0,21.0,33.0,37.0,22.0,27.0,22.0,32.0,29.0,40.0,28.0,36.0,35.0,33.0,32.0,39.0,37.0,22.0,32.0,24.0,23.0,39.0,28.0,26.0,36.0,32.0,35.0,34.0,29.0,29.0,21.0,26.0,30.0,20.0,34.0,26.0,24.0,14.0,31.0,25.0,10.0,14.0,27.0,19.0,22.0,27.0,21.0,16.0,23.0,29.0,20.0,15.0,16.0,20.0,19.0,15.0,17.0,16.0,14.0,10.0,14.0,12.0,18.0,13.0,11.0,17.0,7.0,4.0,7.0,11.0,3.0,4.0,5.0,5.0,5.0,1.0,4.0,3.0,1.0,1.0,2.0,7.0 M88643,27.0,30.0,33.0,31.0,30.0,37.0,29.0,30.0,48.0,34.0,26.0,34.0,36.0,30.0,39.0,23.0,39.0,36.0,48.0,34.0,29.0,30.0,26.0,28.0,43.0,45.0,33.0,48.0,39.0,41.0,36.0,38.0,46.0,49.0,40.0,45.0,40.0,56.0,49.0,38.0,48.0,38.0,47.0,33.0,33.0,35.0,37.0,35.0,37.0,39.0,34.0,33.0,37.0,40.0,44.0,41.0,34.0,37.0,44.0,26.0,38.0,27.0,32.0,30.0,20.0,24.0,33.0,21.0,27.0,15.0,18.0,19.0,22.0,21.0,13.0,15.0,24.0,20.0,19.0,10.0,11.0,17.0,12.0,9.0,6.0,7.0,6.0,6.0,8.0,5.0,3.0,1.0,5.0,3.0,1.0,7.0 M88645,34.0,46.0,45.0,46.0,42.0,47.0,40.0,62.0,48.0,60.0,42.0,68.0,78.0,94.0,75.0,67.0,78.0,63.0,65.0,67.0,54.0,57.0,55.0,62.0,49.0,46.0,58.0,62.0,54.0,42.0,65.0,52.0,63.0,64.0,64.0,58.0,86.0,76.0,68.0,62.0,71.0,66.0,70.0,64.0,67.0,73.0,62.0,71.0,45.0,67.0,55.0,69.0,57.0,65.0,75.0,55.0,72.0,76.0,69.0,62.0,75.0,60.0,57.0,73.0,47.0,48.0,47.0,40.0,38.0,36.0,33.0,25.0,31.0,29.0,28.0,24.0,43.0,29.0,22.0,20.0,26.0,31.0,17.0,14.0,19.0,15.0,12.0,13.0,7.0,10.0,8.0,5.0,7.0,8.0,6.0,4.0 M88646,9.0,22.0,10.0,8.0,14.0,18.0,10.0,12.0,11.0,18.0,8.0,11.0,17.0,11.0,25.0,17.0,21.0,18.0,14.0,14.0,21.0,25.0,16.0,22.0,28.0,22.0,28.0,19.0,22.0,15.0,11.0,25.0,23.0,19.0,13.0,16.0,24.0,20.0,18.0,21.0,16.0,13.0,17.0,20.0,16.0,13.0,21.0,21.0,14.0,20.0,18.0,18.0,10.0,20.0,17.0,13.0,16.0,20.0,16.0,19.0,13.0,17.0,12.0,16.0,13.0,10.0,15.0,6.0,13.0,6.0,13.0,6.0,6.0,10.0,7.0,9.0,5.0,8.0,8.0,6.0,4.0,2.0,7.0,5.0,4.0,5.0,5.0,6.0,7.0,,1.0,1.0,2.0,2.0,,1.0 M88647,42.0,44.0,31.0,47.0,35.0,37.0,53.0,43.0,47.0,42.0,35.0,47.0,42.0,41.0,44.0,44.0,39.0,47.0,40.0,38.0,45.0,44.0,47.0,62.0,58.0,51.0,62.0,75.0,56.0,53.0,42.0,48.0,52.0,51.0,51.0,59.0,45.0,48.0,48.0,41.0,42.0,36.0,38.0,37.0,33.0,37.0,24.0,29.0,45.0,30.0,35.0,32.0,21.0,24.0,19.0,19.0,15.0,17.0,14.0,26.0,12.0,15.0,15.0,14.0,16.0,6.0,19.0,13.0,17.0,16.0,14.0,8.0,17.0,13.0,12.0,9.0,11.0,11.0,8.0,7.0,3.0,5.0,5.0,6.0,3.0,5.0,3.0,2.0,,2.0,1.0,1.0,2.0,2.0,,6.0 M91003,32.0,23.0,37.0,37.0,38.0,44.0,43.0,39.0,44.0,47.0,41.0,38.0,47.0,34.0,33.0,41.0,49.0,36.0,42.0,47.0,36.0,35.0,39.0,30.0,35.0,26.0,31.0,42.0,43.0,34.0,30.0,49.0,47.0,50.0,59.0,45.0,52.0,51.0,46.0,48.0,33.0,42.0,40.0,48.0,50.0,52.0,38.0,37.0,37.0,51.0,35.0,44.0,49.0,46.0,61.0,43.0,60.0,44.0,59.0,40.0,54.0,56.0,55.0,54.0,51.0,37.0,37.0,45.0,35.0,40.0,30.0,34.0,41.0,33.0,37.0,36.0,38.0,43.0,38.0,24.0,32.0,32.0,28.0,20.0,17.0,23.0,21.0,17.0,10.0,9.0,7.0,9.0,7.0,3.0,1.0,5.0 M91004,57.0,66.0,58.0,66.0,53.0,62.0,50.0,79.0,76.0,90.0,79.0,79.0,77.0,82.0,88.0,97.0,79.0,71.0,73.0,68.0,67.0,73.0,80.0,67.0,55.0,57.0,55.0,68.0,59.0,83.0,66.0,67.0,84.0,90.0,74.0,68.0,70.0,88.0,86.0,65.0,72.0,59.0,76.0,67.0,74.0,65.0,55.0,61.0,55.0,60.0,60.0,63.0,55.0,55.0,55.0,50.0,58.0,70.0,45.0,45.0,47.0,46.0,46.0,55.0,43.0,30.0,39.0,36.0,29.0,39.0,28.0,45.0,40.0,32.0,25.0,22.0,30.0,29.0,31.0,10.0,20.0,16.0,13.0,16.0,17.0,7.0,16.0,11.0,7.0,6.0,8.0,2.0,1.0,7.0,1.0,6.0 M91006,25.0,19.0,24.0,28.0,34.0,27.0,30.0,29.0,25.0,31.0,29.0,34.0,29.0,37.0,28.0,34.0,25.0,22.0,17.0,24.0,19.0,22.0,26.0,25.0,27.0,16.0,24.0,19.0,23.0,36.0,22.0,23.0,38.0,50.0,32.0,29.0,43.0,31.0,32.0,32.0,26.0,33.0,36.0,22.0,23.0,18.0,26.0,17.0,18.0,31.0,19.0,22.0,26.0,31.0,27.0,21.0,38.0,34.0,37.0,30.0,37.0,29.0,26.0,31.0,20.0,21.0,15.0,20.0,21.0,17.0,20.0,15.0,11.0,15.0,17.0,16.0,13.0,12.0,22.0,14.0,12.0,13.0,16.0,4.0,12.0,11.0,12.0,14.0,7.0,4.0,2.0,5.0,5.0,3.0,2.0,3.0 M91007,30.0,21.0,29.0,38.0,43.0,41.0,30.0,40.0,33.0,45.0,33.0,51.0,39.0,44.0,53.0,50.0,52.0,49.0,57.0,55.0,38.0,35.0,41.0,35.0,40.0,47.0,48.0,40.0,50.0,47.0,44.0,46.0,37.0,45.0,40.0,52.0,48.0,62.0,55.0,45.0,50.0,50.0,41.0,48.0,39.0,44.0,46.0,46.0,45.0,60.0,53.0,64.0,71.0,74.0,91.0,89.0,78.0,69.0,75.0,85.0,73.0,80.0,79.0,57.0,51.0,60.0,61.0,60.0,56.0,40.0,46.0,49.0,28.0,46.0,40.0,60.0,60.0,56.0,48.0,46.0,40.0,38.0,43.0,46.0,34.0,32.0,38.0,29.0,23.0,18.0,3.0,10.0,5.0,11.0,10.0,14.0 M91008,57.0,56.0,78.0,63.0,59.0,65.0,59.0,70.0,70.0,67.0,81.0,62.0,69.0,71.0,69.0,77.0,84.0,74.0,76.0,51.0,74.0,78.0,84.0,63.0,88.0,54.0,76.0,86.0,89.0,75.0,68.0,80.0,76.0,63.0,58.0,75.0,63.0,75.0,63.0,69.0,62.0,86.0,76.0,74.0,62.0,64.0,58.0,45.0,55.0,46.0,44.0,37.0,32.0,42.0,53.0,43.0,42.0,35.0,39.0,48.0,39.0,34.0,41.0,38.0,43.0,34.0,38.0,33.0,42.0,32.0,28.0,18.0,27.0,27.0,20.0,31.0,24.0,37.0,25.0,17.0,24.0,12.0,25.0,13.0,14.0,11.0,12.0,12.0,18.0,9.0,17.0,8.0,6.0,4.0,9.0,15.0 M91009,17.0,28.0,27.0,31.0,26.0,22.0,21.0,39.0,28.0,16.0,31.0,25.0,27.0,33.0,26.0,32.0,31.0,31.0,28.0,31.0,28.0,30.0,30.0,29.0,29.0,20.0,40.0,33.0,23.0,28.0,34.0,35.0,35.0,34.0,30.0,38.0,31.0,33.0,34.0,36.0,37.0,27.0,43.0,30.0,39.0,36.0,38.0,28.0,42.0,25.0,24.0,47.0,37.0,48.0,42.0,44.0,35.0,46.0,42.0,47.0,45.0,37.0,45.0,42.0,39.0,40.0,35.0,38.0,36.0,35.0,24.0,34.0,28.0,33.0,27.0,25.0,36.0,25.0,31.0,34.0,25.0,31.0,18.0,23.0,16.0,17.0,10.0,10.0,11.0,8.0,5.0,5.0,3.0,2.0,4.0,8.0 M91010,33.0,36.0,43.0,27.0,42.0,40.0,54.0,49.0,44.0,48.0,48.0,54.0,51.0,49.0,50.0,40.0,59.0,47.0,56.0,39.0,34.0,40.0,38.0,37.0,35.0,45.0,56.0,45.0,58.0,39.0,58.0,46.0,45.0,55.0,57.0,38.0,49.0,53.0,51.0,47.0,59.0,56.0,61.0,44.0,55.0,51.0,51.0,59.0,43.0,58.0,52.0,60.0,55.0,61.0,75.0,62.0,73.0,60.0,64.0,60.0,63.0,65.0,77.0,76.0,67.0,51.0,46.0,53.0,58.0,58.0,42.0,42.0,46.0,43.0,50.0,51.0,52.0,50.0,66.0,58.0,53.0,59.0,40.0,49.0,40.0,30.0,36.0,29.0,26.0,30.0,26.0,22.0,14.0,12.0,14.0,30.0 M91013,38.0,49.0,48.0,61.0,45.0,49.0,45.0,67.0,44.0,56.0,49.0,55.0,67.0,59.0,76.0,61.0,66.0,59.0,62.0,55.0,60.0,50.0,49.0,58.0,52.0,59.0,70.0,59.0,68.0,72.0,75.0,76.0,78.0,69.0,74.0,76.0,77.0,65.0,70.0,69.0,63.0,68.0,68.0,49.0,44.0,54.0,52.0,49.0,57.0,56.0,50.0,55.0,65.0,66.0,60.0,78.0,73.0,80.0,69.0,74.0,83.0,72.0,64.0,61.0,45.0,57.0,62.0,77.0,45.0,42.0,42.0,39.0,31.0,42.0,31.0,50.0,42.0,30.0,41.0,33.0,32.0,37.0,37.0,33.0,23.0,42.0,14.0,21.0,18.0,12.0,5.0,14.0,7.0,9.0,5.0,20.0 M91014,17.0,19.0,21.0,25.0,18.0,23.0,13.0,20.0,24.0,14.0,19.0,18.0,20.0,18.0,21.0,17.0,12.0,17.0,25.0,21.0,28.0,22.0,23.0,22.0,33.0,19.0,30.0,27.0,23.0,21.0,18.0,25.0,23.0,31.0,18.0,20.0,21.0,22.0,25.0,11.0,21.0,17.0,17.0,21.0,17.0,29.0,16.0,19.0,18.0,20.0,21.0,17.0,10.0,9.0,11.0,11.0,18.0,14.0,18.0,17.0,13.0,13.0,10.0,12.0,19.0,8.0,9.0,6.0,12.0,14.0,13.0,10.0,9.0,12.0,11.0,12.0,10.0,9.0,9.0,8.0,4.0,6.0,5.0,4.0,3.0,2.0,2.0,3.0,1.0,2.0,2.0,1.0,1.0,1.0,2.0,2.0 M91015,110.0,120.0,116.0,125.0,117.0,141.0,131.0,112.0,132.0,135.0,128.0,118.0,121.0,152.0,155.0,138.0,132.0,130.0,127.0,104.0,115.0,104.0,115.0,141.0,136.0,127.0,131.0,149.0,152.0,129.0,148.0,166.0,175.0,169.0,142.0,162.0,159.0,163.0,159.0,153.0,170.0,143.0,159.0,138.0,153.0,163.0,108.0,124.0,148.0,127.0,122.0,150.0,132.0,128.0,138.0,147.0,130.0,165.0,123.0,133.0,134.0,149.0,127.0,140.0,126.0,121.0,112.0,106.0,115.0,99.0,91.0,107.0,85.0,82.0,112.0,101.0,101.0,87.0,105.0,71.0,81.0,69.0,73.0,63.0,52.0,52.0,61.0,44.0,49.0,41.0,29.0,35.0,30.0,20.0,19.0,36.0 M91016,42.0,40.0,34.0,36.0,45.0,44.0,35.0,47.0,41.0,56.0,51.0,42.0,42.0,45.0,36.0,44.0,48.0,39.0,37.0,38.0,40.0,39.0,47.0,42.0,56.0,37.0,52.0,43.0,47.0,38.0,49.0,47.0,42.0,56.0,58.0,39.0,49.0,72.0,46.0,67.0,44.0,54.0,55.0,47.0,33.0,36.0,41.0,46.0,36.0,39.0,39.0,39.0,50.0,40.0,40.0,42.0,39.0,34.0,33.0,32.0,57.0,49.0,39.0,29.0,46.0,24.0,30.0,32.0,33.0,35.0,35.0,32.0,31.0,27.0,29.0,39.0,39.0,24.0,21.0,26.0,32.0,24.0,32.0,17.0,20.0,17.0,21.0,8.0,10.0,14.0,3.0,11.0,4.0,7.0,4.0,6.0 M91017,30.0,37.0,43.0,39.0,35.0,54.0,45.0,63.0,52.0,46.0,51.0,42.0,61.0,53.0,43.0,63.0,51.0,41.0,42.0,47.0,46.0,32.0,45.0,35.0,36.0,38.0,57.0,56.0,42.0,50.0,56.0,48.0,62.0,72.0,54.0,62.0,63.0,69.0,47.0,70.0,51.0,52.0,50.0,43.0,66.0,68.0,57.0,55.0,57.0,50.0,58.0,61.0,51.0,76.0,69.0,71.0,79.0,78.0,69.0,75.0,69.0,84.0,78.0,60.0,91.0,71.0,85.0,56.0,58.0,69.0,74.0,63.0,66.0,55.0,49.0,65.0,71.0,74.0,84.0,54.0,71.0,55.0,59.0,63.0,45.0,47.0,48.0,39.0,41.0,34.0,21.0,27.0,19.0,17.0,8.0,32.0 M91018,32.0,28.0,37.0,35.0,30.0,31.0,27.0,28.0,27.0,21.0,18.0,22.0,28.0,20.0,25.0,34.0,26.0,39.0,27.0,27.0,38.0,35.0,32.0,38.0,37.0,33.0,56.0,54.0,48.0,52.0,41.0,46.0,45.0,47.0,53.0,38.0,36.0,37.0,50.0,34.0,36.0,34.0,31.0,25.0,35.0,22.0,23.0,31.0,24.0,17.0,18.0,20.0,16.0,27.0,31.0,31.0,28.0,25.0,21.0,26.0,18.0,17.0,22.0,26.0,17.0,22.0,22.0,19.0,16.0,11.0,21.0,13.0,13.0,12.0,10.0,10.0,11.0,14.0,12.0,9.0,13.0,8.0,13.0,7.0,9.0,9.0,7.0,8.0,9.0,7.0,4.0,2.0,3.0,1.0,2.0,2.0 M91019,81.0,61.0,95.0,80.0,82.0,88.0,83.0,66.0,98.0,91.0,94.0,95.0,84.0,86.0,96.0,85.0,89.0,93.0,77.0,79.0,53.0,72.0,60.0,64.0,97.0,78.0,86.0,82.0,92.0,99.0,87.0,88.0,113.0,80.0,107.0,98.0,97.0,108.0,96.0,113.0,93.0,98.0,106.0,106.0,91.0,103.0,60.0,80.0,84.0,90.0,74.0,88.0,83.0,111.0,106.0,97.0,115.0,116.0,112.0,117.0,91.0,100.0,106.0,103.0,86.0,95.0,96.0,75.0,78.0,72.0,69.0,67.0,62.0,52.0,70.0,51.0,74.0,77.0,86.0,58.0,57.0,68.0,59.0,54.0,48.0,44.0,51.0,42.0,30.0,25.0,28.0,18.0,27.0,19.0,9.0,27.0 M91021,34.0,43.0,36.0,45.0,39.0,38.0,41.0,46.0,60.0,41.0,58.0,49.0,47.0,57.0,67.0,39.0,42.0,49.0,39.0,47.0,40.0,38.0,38.0,39.0,42.0,46.0,44.0,47.0,48.0,48.0,55.0,52.0,41.0,51.0,53.0,59.0,68.0,59.0,67.0,69.0,68.0,58.0,63.0,54.0,55.0,53.0,60.0,52.0,53.0,35.0,42.0,46.0,41.0,40.0,57.0,43.0,47.0,38.0,36.0,56.0,55.0,41.0,61.0,53.0,49.0,52.0,40.0,39.0,38.0,49.0,36.0,41.0,36.0,27.0,34.0,36.0,29.0,25.0,29.0,26.0,22.0,30.0,19.0,24.0,10.0,16.0,20.0,14.0,15.0,16.0,8.0,11.0,6.0,9.0,10.0,9.0 M91024,5.0,5.0,8.0,14.0,7.0,12.0,8.0,12.0,9.0,9.0,11.0,5.0,10.0,11.0,8.0,11.0,18.0,16.0,14.0,11.0,10.0,12.0,14.0,11.0,9.0,14.0,11.0,9.0,13.0,21.0,19.0,14.0,6.0,14.0,15.0,14.0,12.0,13.0,13.0,11.0,8.0,13.0,10.0,25.0,11.0,13.0,14.0,13.0,12.0,11.0,16.0,18.0,17.0,15.0,14.0,29.0,21.0,20.0,28.0,26.0,20.0,18.0,26.0,13.0,17.0,15.0,12.0,21.0,13.0,19.0,16.0,18.0,13.0,13.0,15.0,14.0,32.0,23.0,26.0,12.0,17.0,13.0,9.0,15.0,7.0,12.0,12.0,8.0,7.0,6.0,7.0,4.0,5.0,3.0,2.0,4.0 M91026,37.0,38.0,34.0,46.0,40.0,51.0,56.0,47.0,52.0,33.0,41.0,49.0,46.0,42.0,40.0,58.0,35.0,42.0,44.0,38.0,42.0,39.0,42.0,31.0,40.0,42.0,30.0,43.0,65.0,41.0,54.0,47.0,51.0,55.0,53.0,38.0,50.0,49.0,53.0,43.0,46.0,45.0,33.0,49.0,41.0,34.0,34.0,32.0,30.0,28.0,22.0,24.0,33.0,33.0,31.0,32.0,30.0,24.0,30.0,23.0,21.0,28.0,26.0,21.0,31.0,29.0,23.0,24.0,15.0,16.0,23.0,9.0,19.0,16.0,14.0,14.0,15.0,11.0,8.0,6.0,5.0,9.0,5.0,2.0,7.0,6.0,8.0,5.0,6.0,3.0,2.0,4.0,2.0,2.0,2.0,6.0 M91028,30.0,33.0,55.0,49.0,28.0,37.0,50.0,36.0,64.0,54.0,42.0,52.0,58.0,43.0,53.0,57.0,50.0,66.0,56.0,42.0,47.0,36.0,45.0,52.0,52.0,39.0,44.0,51.0,50.0,55.0,40.0,55.0,58.0,55.0,61.0,73.0,44.0,62.0,66.0,65.0,54.0,71.0,61.0,45.0,66.0,66.0,48.0,51.0,45.0,55.0,36.0,51.0,63.0,58.0,71.0,49.0,55.0,50.0,46.0,51.0,54.0,53.0,54.0,48.0,49.0,55.0,58.0,59.0,46.0,46.0,48.0,61.0,47.0,35.0,46.0,47.0,42.0,31.0,39.0,35.0,37.0,22.0,23.0,29.0,12.0,19.0,15.0,23.0,14.0,10.0,12.0,7.0,6.0,6.0,4.0,10.0 M91029,31.0,37.0,30.0,40.0,37.0,41.0,33.0,42.0,43.0,43.0,40.0,56.0,43.0,54.0,52.0,52.0,34.0,47.0,45.0,29.0,34.0,31.0,36.0,30.0,37.0,47.0,28.0,45.0,39.0,52.0,37.0,42.0,42.0,53.0,44.0,55.0,61.0,48.0,36.0,54.0,52.0,55.0,43.0,32.0,30.0,37.0,41.0,21.0,25.0,23.0,29.0,31.0,29.0,41.0,37.0,25.0,35.0,32.0,45.0,34.0,26.0,28.0,35.0,25.0,27.0,29.0,31.0,25.0,26.0,17.0,27.0,13.0,23.0,20.0,8.0,18.0,19.0,8.0,17.0,9.0,12.0,18.0,13.0,7.0,8.0,7.0,6.0,9.0,6.0,6.0,5.0,2.0,2.0,2.0,2.0,3.0 M91032,13.0,22.0,27.0,29.0,29.0,33.0,23.0,26.0,29.0,35.0,37.0,32.0,25.0,35.0,31.0,24.0,27.0,24.0,20.0,31.0,25.0,22.0,38.0,27.0,30.0,28.0,22.0,30.0,31.0,32.0,37.0,30.0,38.0,30.0,41.0,32.0,21.0,33.0,41.0,28.0,25.0,27.0,30.0,39.0,38.0,40.0,21.0,18.0,31.0,18.0,35.0,35.0,44.0,34.0,53.0,44.0,61.0,42.0,46.0,40.0,37.0,30.0,38.0,48.0,26.0,26.0,33.0,27.0,20.0,21.0,14.0,17.0,16.0,15.0,20.0,19.0,17.0,28.0,24.0,22.0,17.0,23.0,30.0,19.0,17.0,12.0,13.0,14.0,11.0,8.0,8.0,5.0,6.0,2.0,2.0,6.0 M91033,49.0,39.0,38.0,41.0,48.0,38.0,52.0,48.0,44.0,39.0,42.0,47.0,24.0,42.0,42.0,42.0,44.0,35.0,26.0,27.0,23.0,28.0,37.0,42.0,47.0,44.0,47.0,60.0,44.0,58.0,63.0,59.0,46.0,54.0,53.0,54.0,63.0,56.0,53.0,42.0,45.0,52.0,45.0,46.0,49.0,36.0,38.0,41.0,30.0,35.0,32.0,26.0,31.0,33.0,46.0,38.0,34.0,39.0,39.0,42.0,39.0,42.0,44.0,33.0,36.0,34.0,35.0,27.0,36.0,28.0,31.0,19.0,28.0,22.0,26.0,24.0,19.0,13.0,21.0,18.0,14.0,18.0,22.0,16.0,13.0,11.0,14.0,7.0,14.0,4.0,6.0,3.0,3.0,1.0,3.0,5.0 M91034,23.0,21.0,25.0,30.0,18.0,33.0,30.0,16.0,36.0,28.0,24.0,31.0,28.0,19.0,32.0,23.0,28.0,17.0,34.0,35.0,30.0,40.0,18.0,33.0,29.0,36.0,40.0,24.0,31.0,32.0,32.0,40.0,38.0,32.0,41.0,29.0,37.0,26.0,30.0,36.0,25.0,23.0,27.0,25.0,29.0,28.0,21.0,21.0,30.0,25.0,21.0,30.0,21.0,45.0,28.0,42.0,41.0,43.0,47.0,40.0,40.0,41.0,44.0,39.0,37.0,34.0,36.0,36.0,27.0,31.0,26.0,23.0,22.0,21.0,24.0,22.0,36.0,38.0,17.0,20.0,21.0,21.0,26.0,17.0,19.0,9.0,13.0,14.0,14.0,5.0,8.0,5.0,5.0,7.0,3.0,12.0 M91036,36.0,20.0,35.0,28.0,18.0,34.0,33.0,31.0,41.0,38.0,35.0,34.0,28.0,36.0,25.0,32.0,35.0,20.0,28.0,24.0,17.0,16.0,24.0,35.0,21.0,22.0,24.0,23.0,21.0,32.0,27.0,37.0,30.0,46.0,27.0,32.0,43.0,28.0,38.0,26.0,31.0,33.0,22.0,31.0,17.0,32.0,21.0,22.0,22.0,14.0,18.0,25.0,10.0,16.0,16.0,24.0,16.0,16.0,23.0,16.0,22.0,31.0,21.0,15.0,15.0,9.0,14.0,14.0,9.0,17.0,9.0,12.0,7.0,8.0,10.0,11.0,10.0,6.0,9.0,9.0,3.0,10.0,4.0,10.0,7.0,4.0,5.0,4.0,3.0,2.0,2.0,1.0,2.0,,,2.0 M91602,20.0,11.0,16.0,11.0,11.0,22.0,17.0,16.0,25.0,10.0,14.0,19.0,8.0,19.0,14.0,19.0,14.0,15.0,20.0,16.0,17.0,10.0,14.0,8.0,12.0,10.0,16.0,10.0,14.0,24.0,12.0,17.0,21.0,19.0,23.0,25.0,19.0,13.0,16.0,19.0,17.0,17.0,18.0,12.0,20.0,13.0,10.0,17.0,15.0,18.0,12.0,9.0,16.0,10.0,10.0,11.0,13.0,16.0,14.0,15.0,11.0,9.0,9.0,11.0,12.0,10.0,8.0,13.0,6.0,7.0,3.0,5.0,9.0,5.0,6.0,6.0,6.0,4.0,2.0,3.0,4.0,4.0,2.0,2.0,7.0,7.0,2.0,2.0,3.0,4.0,1.0,2.0,3.0,1.0,2.0,3.0 M91609,12.0,9.0,9.0,18.0,8.0,20.0,12.0,7.0,8.0,12.0,11.0,16.0,18.0,14.0,14.0,24.0,19.0,13.0,17.0,13.0,7.0,12.0,13.0,4.0,9.0,6.0,18.0,9.0,11.0,10.0,9.0,22.0,22.0,14.0,22.0,23.0,21.0,20.0,16.0,19.0,13.0,18.0,16.0,7.0,9.0,13.0,15.0,10.0,17.0,8.0,14.0,9.0,16.0,18.0,13.0,12.0,17.0,21.0,11.0,8.0,12.0,16.0,11.0,13.0,15.0,16.0,12.0,17.0,12.0,10.0,6.0,8.0,3.0,7.0,11.0,7.0,9.0,9.0,2.0,8.0,9.0,6.0,14.0,6.0,7.0,5.0,6.0,4.0,3.0,5.0,2.0,3.0,4.0,1.0,,3.0 M91611,23.0,17.0,19.0,26.0,21.0,26.0,23.0,25.0,22.0,24.0,21.0,28.0,32.0,19.0,19.0,22.0,24.0,25.0,28.0,16.0,26.0,17.0,14.0,14.0,23.0,13.0,18.0,16.0,20.0,16.0,21.0,24.0,33.0,21.0,32.0,23.0,18.0,26.0,16.0,20.0,23.0,23.0,17.0,26.0,19.0,25.0,18.0,12.0,17.0,15.0,9.0,15.0,15.0,21.0,19.0,13.0,17.0,19.0,15.0,9.0,18.0,17.0,15.0,18.0,16.0,10.0,13.0,6.0,11.0,10.0,10.0,9.0,8.0,11.0,9.0,9.0,9.0,6.0,4.0,6.0,6.0,9.0,5.0,4.0,6.0,2.0,3.0,5.0,2.0,3.0,2.0,3.0,1.0,1.0,1.0,1.0 M91612,19.0,22.0,24.0,26.0,18.0,29.0,33.0,15.0,19.0,13.0,25.0,29.0,12.0,27.0,20.0,24.0,19.0,21.0,19.0,24.0,23.0,14.0,23.0,15.0,23.0,21.0,21.0,28.0,20.0,22.0,33.0,32.0,30.0,25.0,27.0,29.0,32.0,23.0,28.0,17.0,33.0,28.0,22.0,12.0,23.0,21.0,16.0,22.0,17.0,17.0,18.0,23.0,12.0,25.0,23.0,22.0,28.0,30.0,26.0,26.0,15.0,18.0,16.0,22.0,15.0,16.0,18.0,12.0,16.0,16.0,11.0,17.0,16.0,11.0,17.0,16.0,10.0,13.0,13.0,10.0,8.0,12.0,4.0,6.0,10.0,6.0,9.0,7.0,8.0,8.0,3.0,,,1.0,1.0,2.0 M91613,53.0,62.0,70.0,57.0,62.0,73.0,81.0,66.0,73.0,83.0,78.0,76.0,71.0,92.0,70.0,86.0,77.0,70.0,81.0,75.0,68.0,73.0,71.0,73.0,63.0,69.0,80.0,79.0,87.0,98.0,84.0,71.0,87.0,70.0,105.0,93.0,93.0,99.0,72.0,83.0,63.0,78.0,82.0,74.0,97.0,66.0,50.0,58.0,51.0,60.0,62.0,45.0,39.0,44.0,54.0,44.0,37.0,52.0,35.0,25.0,30.0,31.0,32.0,23.0,22.0,30.0,20.0,29.0,21.0,33.0,12.0,22.0,14.0,12.0,10.0,13.0,16.0,7.0,14.0,6.0,9.0,11.0,9.0,9.0,3.0,10.0,4.0,4.0,7.0,5.0,8.0,6.0,6.0,3.0,1.0,3.0 M91614,55.0,63.0,57.0,78.0,63.0,62.0,67.0,62.0,60.0,53.0,61.0,54.0,54.0,44.0,62.0,54.0,52.0,60.0,44.0,36.0,43.0,59.0,43.0,54.0,67.0,66.0,70.0,66.0,80.0,69.0,90.0,86.0,97.0,79.0,90.0,83.0,82.0,73.0,74.0,71.0,63.0,63.0,73.0,49.0,63.0,52.0,49.0,46.0,40.0,42.0,47.0,42.0,43.0,49.0,46.0,54.0,40.0,40.0,39.0,50.0,52.0,49.0,57.0,35.0,39.0,33.0,37.0,57.0,35.0,46.0,33.0,38.0,38.0,48.0,43.0,32.0,25.0,34.0,39.0,36.0,27.0,15.0,21.0,12.0,14.0,14.0,11.0,8.0,7.0,9.0,4.0,1.0,2.0,1.0,1.0,1.0 M91616,44.0,38.0,47.0,39.0,35.0,45.0,51.0,55.0,37.0,66.0,55.0,54.0,56.0,54.0,56.0,49.0,50.0,52.0,56.0,43.0,44.0,47.0,44.0,56.0,45.0,66.0,61.0,45.0,47.0,55.0,54.0,58.0,51.0,61.0,38.0,41.0,63.0,66.0,50.0,62.0,64.0,55.0,57.0,67.0,63.0,59.0,46.0,57.0,45.0,47.0,62.0,45.0,45.0,41.0,53.0,35.0,40.0,38.0,38.0,41.0,41.0,31.0,38.0,30.0,33.0,34.0,28.0,35.0,31.0,35.0,33.0,30.0,27.0,37.0,28.0,27.0,32.0,37.0,17.0,21.0,19.0,19.0,13.0,16.0,10.0,13.0,11.0,10.0,4.0,2.0,6.0,7.0,6.0,,4.0,7.0 M91619,36.0,33.0,46.0,37.0,48.0,43.0,49.0,48.0,48.0,68.0,39.0,43.0,41.0,45.0,44.0,35.0,46.0,44.0,41.0,43.0,56.0,39.0,40.0,50.0,43.0,52.0,47.0,49.0,43.0,47.0,38.0,59.0,43.0,39.0,60.0,58.0,56.0,51.0,54.0,50.0,49.0,66.0,54.0,37.0,43.0,46.0,43.0,30.0,33.0,28.0,39.0,26.0,33.0,41.0,30.0,28.0,36.0,25.0,37.0,29.0,24.0,26.0,24.0,32.0,27.0,27.0,23.0,22.0,23.0,19.0,22.0,23.0,15.0,20.0,21.0,19.0,17.0,18.0,21.0,12.0,12.0,10.0,13.0,12.0,11.0,8.0,10.0,9.0,10.0,1.0,3.0,4.0,1.0,1.0,1.0,2.0 M91621,34.0,32.0,33.0,27.0,33.0,32.0,33.0,57.0,34.0,41.0,37.0,42.0,43.0,42.0,35.0,37.0,43.0,43.0,39.0,44.0,41.0,36.0,30.0,44.0,61.0,40.0,44.0,40.0,39.0,28.0,36.0,32.0,35.0,33.0,43.0,44.0,36.0,44.0,42.0,32.0,36.0,39.0,33.0,35.0,34.0,35.0,35.0,42.0,31.0,24.0,24.0,23.0,16.0,31.0,29.0,23.0,25.0,26.0,10.0,20.0,11.0,15.0,16.0,13.0,14.0,16.0,15.0,21.0,11.0,13.0,18.0,9.0,13.0,10.0,5.0,6.0,10.0,12.0,10.0,5.0,9.0,2.0,6.0,5.0,2.0,1.0,3.0,3.0,1.0,,4.0,1.0,3.0,1.0,4.0, M91623,5.0,10.0,3.0,6.0,14.0,16.0,10.0,12.0,17.0,12.0,10.0,11.0,5.0,11.0,10.0,9.0,13.0,7.0,12.0,7.0,10.0,9.0,9.0,10.0,6.0,6.0,11.0,13.0,13.0,14.0,11.0,11.0,14.0,12.0,16.0,14.0,13.0,5.0,9.0,9.0,11.0,12.0,9.0,6.0,7.0,11.0,11.0,11.0,14.0,19.0,15.0,6.0,11.0,12.0,13.0,10.0,17.0,12.0,9.0,16.0,17.0,12.0,13.0,17.0,11.0,17.0,10.0,11.0,11.0,14.0,7.0,12.0,14.0,5.0,17.0,3.0,13.0,7.0,4.0,3.0,5.0,6.0,8.0,5.0,11.0,6.0,8.0,2.0,6.0,4.0,3.0,3.0,3.0,2.0,4.0,1.0 M91624,29.0,23.0,25.0,19.0,23.0,25.0,38.0,29.0,24.0,23.0,25.0,27.0,23.0,18.0,26.0,26.0,21.0,19.0,21.0,16.0,17.0,25.0,27.0,26.0,25.0,28.0,30.0,30.0,32.0,31.0,28.0,33.0,33.0,25.0,34.0,23.0,29.0,28.0,28.0,32.0,32.0,30.0,18.0,21.0,24.0,21.0,14.0,21.0,19.0,26.0,16.0,21.0,24.0,22.0,26.0,27.0,32.0,24.0,19.0,27.0,29.0,17.0,28.0,22.0,22.0,15.0,17.0,15.0,10.0,10.0,16.0,14.0,11.0,16.0,14.0,6.0,6.0,17.0,12.0,9.0,7.0,5.0,4.0,8.0,6.0,6.0,4.0,6.0,3.0,2.0,3.0,2.0,2.0,2.0,1.0,2.0 M91626,28.0,27.0,26.0,24.0,18.0,30.0,26.0,26.0,35.0,28.0,32.0,34.0,32.0,39.0,28.0,38.0,30.0,19.0,30.0,22.0,24.0,16.0,21.0,28.0,29.0,21.0,26.0,27.0,32.0,31.0,32.0,28.0,40.0,39.0,42.0,26.0,42.0,38.0,37.0,35.0,29.0,36.0,27.0,29.0,40.0,26.0,22.0,22.0,20.0,32.0,26.0,27.0,25.0,35.0,39.0,27.0,39.0,33.0,29.0,36.0,23.0,24.0,27.0,34.0,36.0,21.0,17.0,24.0,24.0,23.0,18.0,21.0,16.0,22.0,19.0,28.0,20.0,26.0,26.0,15.0,23.0,12.0,17.0,12.0,11.0,11.0,5.0,11.0,11.0,13.0,7.0,8.0,6.0,7.0,3.0,12.0 M91628,18.0,12.0,14.0,13.0,20.0,23.0,20.0,18.0,16.0,24.0,23.0,23.0,19.0,18.0,17.0,27.0,15.0,17.0,19.0,14.0,21.0,18.0,17.0,37.0,18.0,22.0,29.0,18.0,17.0,19.0,25.0,12.0,24.0,25.0,19.0,19.0,24.0,18.0,20.0,25.0,25.0,22.0,19.0,18.0,22.0,22.0,18.0,12.0,18.0,18.0,17.0,13.0,15.0,24.0,21.0,21.0,23.0,11.0,21.0,12.0,14.0,12.0,17.0,8.0,15.0,14.0,13.0,10.0,11.0,12.0,9.0,15.0,10.0,9.0,13.0,11.0,8.0,9.0,7.0,6.0,9.0,11.0,5.0,3.0,8.0,4.0,6.0,6.0,,4.0,2.0,2.0,2.0,,,4.0 M91629,55.0,55.0,45.0,48.0,63.0,75.0,57.0,53.0,46.0,46.0,62.0,52.0,58.0,58.0,62.0,51.0,53.0,54.0,52.0,44.0,55.0,35.0,26.0,64.0,59.0,56.0,58.0,56.0,64.0,62.0,69.0,57.0,64.0,77.0,65.0,68.0,62.0,54.0,47.0,66.0,58.0,59.0,58.0,51.0,53.0,59.0,49.0,32.0,51.0,31.0,42.0,37.0,40.0,34.0,36.0,27.0,48.0,32.0,23.0,29.0,20.0,25.0,30.0,34.0,25.0,22.0,23.0,24.0,21.0,23.0,22.0,19.0,14.0,9.0,12.0,12.0,12.0,15.0,6.0,2.0,12.0,9.0,7.0,5.0,5.0,7.0,8.0,3.0,4.0,2.0,1.0,,2.0,,,3.0 M91637,23.0,14.0,24.0,19.0,21.0,24.0,29.0,22.0,26.0,33.0,19.0,29.0,25.0,37.0,20.0,31.0,28.0,32.0,17.0,16.0,16.0,14.0,9.0,7.0,18.0,12.0,13.0,16.0,21.0,13.0,15.0,13.0,24.0,27.0,32.0,27.0,24.0,28.0,28.0,29.0,29.0,37.0,37.0,32.0,32.0,30.0,19.0,19.0,25.0,26.0,24.0,19.0,30.0,26.0,21.0,18.0,26.0,25.0,32.0,20.0,20.0,24.0,28.0,24.0,17.0,21.0,15.0,24.0,20.0,22.0,23.0,17.0,16.0,25.0,18.0,8.0,23.0,20.0,36.0,19.0,29.0,30.0,23.0,20.0,15.0,16.0,12.0,20.0,16.0,17.0,7.0,8.0,10.0,5.0,5.0,8.0 M91639,8.0,9.0,10.0,8.0,12.0,7.0,13.0,10.0,11.0,15.0,13.0,16.0,5.0,6.0,11.0,10.0,9.0,8.0,11.0,8.0,10.0,9.0,5.0,11.0,11.0,7.0,9.0,7.0,10.0,6.0,10.0,6.0,16.0,15.0,9.0,13.0,5.0,5.0,7.0,7.0,11.0,13.0,10.0,9.0,11.0,15.0,9.0,7.0,9.0,5.0,12.0,13.0,8.0,13.0,16.0,14.0,13.0,19.0,11.0,8.0,18.0,11.0,13.0,10.0,11.0,9.0,10.0,12.0,5.0,8.0,8.0,8.0,9.0,9.0,10.0,14.0,11.0,8.0,13.0,7.0,13.0,5.0,2.0,1.0,3.0,,2.0,5.0,2.0,,2.0,,,1.0,1.0,1.0 M91640,17.0,21.0,24.0,29.0,29.0,32.0,21.0,33.0,38.0,41.0,26.0,35.0,28.0,29.0,33.0,26.0,28.0,28.0,22.0,22.0,20.0,25.0,21.0,27.0,19.0,20.0,24.0,40.0,24.0,34.0,31.0,25.0,32.0,25.0,26.0,33.0,26.0,38.0,32.0,38.0,32.0,26.0,23.0,27.0,26.0,28.0,18.0,22.0,18.0,11.0,15.0,27.0,26.0,34.0,22.0,20.0,30.0,32.0,28.0,22.0,18.0,20.0,23.0,19.0,25.0,21.0,23.0,27.0,14.0,14.0,8.0,17.0,12.0,11.0,14.0,10.0,15.0,17.0,14.0,8.0,7.0,8.0,4.0,8.0,5.0,3.0,4.0,2.0,,4.0,2.0,3.0,2.0,2.0,1.0,3.0 M91641,22.0,28.0,24.0,29.0,24.0,25.0,26.0,27.0,44.0,24.0,34.0,35.0,33.0,32.0,29.0,32.0,31.0,28.0,33.0,17.0,21.0,30.0,23.0,19.0,26.0,26.0,36.0,38.0,25.0,18.0,28.0,26.0,35.0,35.0,22.0,29.0,36.0,31.0,26.0,31.0,21.0,29.0,29.0,23.0,24.0,26.0,18.0,29.0,26.0,10.0,20.0,16.0,29.0,22.0,20.0,25.0,30.0,27.0,14.0,23.0,30.0,22.0,11.0,14.0,12.0,22.0,14.0,24.0,12.0,16.0,15.0,10.0,19.0,13.0,18.0,14.0,15.0,14.0,14.0,10.0,10.0,8.0,13.0,5.0,3.0,9.0,8.0,4.0,7.0,1.0,2.0,2.0,4.0,2.0,1.0,5.0 M91647,29.0,33.0,37.0,30.0,37.0,29.0,37.0,37.0,41.0,35.0,42.0,38.0,43.0,39.0,41.0,38.0,36.0,26.0,32.0,30.0,31.0,25.0,32.0,33.0,33.0,35.0,26.0,37.0,35.0,25.0,43.0,41.0,37.0,39.0,45.0,41.0,35.0,28.0,39.0,36.0,44.0,42.0,34.0,32.0,44.0,35.0,23.0,23.0,26.0,25.0,15.0,30.0,37.0,37.0,24.0,46.0,38.0,46.0,28.0,41.0,31.0,39.0,25.0,41.0,40.0,39.0,36.0,26.0,35.0,28.0,23.0,19.0,33.0,26.0,20.0,23.0,24.0,19.0,29.0,25.0,15.0,15.0,13.0,10.0,15.0,10.0,11.0,11.0,14.0,7.0,7.0,12.0,4.0,2.0,4.0,8.0 M91650,39.0,42.0,40.0,55.0,53.0,54.0,52.0,65.0,77.0,66.0,44.0,64.0,56.0,55.0,55.0,49.0,62.0,46.0,68.0,49.0,35.0,43.0,42.0,42.0,57.0,42.0,52.0,61.0,44.0,44.0,59.0,54.0,66.0,63.0,82.0,72.0,63.0,69.0,52.0,67.0,49.0,48.0,58.0,51.0,55.0,55.0,47.0,49.0,42.0,46.0,49.0,60.0,52.0,61.0,60.0,66.0,69.0,58.0,84.0,71.0,79.0,51.0,57.0,69.0,77.0,48.0,60.0,58.0,39.0,46.0,42.0,44.0,40.0,47.0,65.0,26.0,44.0,39.0,43.0,30.0,28.0,33.0,34.0,19.0,23.0,26.0,21.0,33.0,23.0,16.0,9.0,16.0,9.0,7.0,11.0,11.0 M91654,23.0,19.0,26.0,17.0,12.0,26.0,21.0,21.0,25.0,19.0,15.0,11.0,10.0,18.0,20.0,18.0,23.0,24.0,12.0,10.0,12.0,18.0,16.0,28.0,15.0,22.0,18.0,28.0,31.0,28.0,31.0,25.0,32.0,32.0,21.0,23.0,29.0,31.0,26.0,22.0,23.0,28.0,18.0,17.0,23.0,23.0,19.0,15.0,15.0,15.0,24.0,18.0,19.0,20.0,15.0,23.0,25.0,26.0,19.0,23.0,21.0,16.0,22.0,17.0,27.0,25.0,15.0,21.0,16.0,16.0,9.0,16.0,10.0,10.0,15.0,9.0,7.0,8.0,10.0,8.0,10.0,9.0,7.0,5.0,5.0,3.0,5.0,4.0,2.0,3.0,2.0,5.0,2.0,1.0,1.0,4.0 M91659,28.0,31.0,17.0,33.0,23.0,24.0,26.0,31.0,30.0,27.0,30.0,24.0,22.0,34.0,33.0,26.0,23.0,30.0,27.0,27.0,27.0,20.0,35.0,31.0,31.0,34.0,30.0,35.0,29.0,28.0,24.0,14.0,28.0,20.0,13.0,29.0,21.0,18.0,27.0,24.0,29.0,28.0,28.0,16.0,26.0,21.0,16.0,23.0,18.0,16.0,16.0,15.0,24.0,16.0,15.0,8.0,19.0,8.0,15.0,13.0,6.0,11.0,9.0,9.0,15.0,8.0,3.0,7.0,9.0,7.0,5.0,8.0,6.0,20.0,4.0,3.0,2.0,5.0,5.0,3.0,5.0,4.0,5.0,3.0,1.0,4.0,,,1.0,,3.0,,3.0,1.0,,2.0 M91660,17.0,33.0,30.0,27.0,33.0,40.0,38.0,47.0,48.0,43.0,43.0,45.0,50.0,35.0,44.0,41.0,30.0,35.0,31.0,40.0,22.0,32.0,29.0,22.0,32.0,20.0,36.0,29.0,31.0,38.0,40.0,46.0,38.0,49.0,40.0,45.0,37.0,34.0,39.0,42.0,65.0,35.0,47.0,42.0,40.0,46.0,21.0,37.0,22.0,26.0,27.0,24.0,26.0,32.0,38.0,20.0,22.0,20.0,19.0,25.0,28.0,28.0,20.0,18.0,24.0,21.0,22.0,29.0,15.0,20.0,13.0,22.0,19.0,11.0,13.0,18.0,15.0,12.0,13.0,10.0,6.0,8.0,6.0,7.0,6.0,4.0,5.0,6.0,4.0,7.0,3.0,3.0,4.0,5.0,,5.0 M92001,16.0,13.0,20.0,17.0,13.0,20.0,16.0,21.0,25.0,22.0,21.0,25.0,22.0,29.0,28.0,21.0,35.0,28.0,16.0,24.0,21.0,14.0,15.0,20.0,20.0,28.0,26.0,24.0,8.0,23.0,17.0,14.0,21.0,26.0,15.0,25.0,26.0,30.0,33.0,34.0,26.0,31.0,21.0,21.0,17.0,23.0,31.0,14.0,20.0,13.0,20.0,25.0,20.0,25.0,21.0,18.0,23.0,20.0,19.0,18.0,15.0,26.0,23.0,24.0,19.0,18.0,18.0,13.0,13.0,9.0,9.0,9.0,10.0,13.0,12.0,12.0,11.0,6.0,7.0,18.0,7.0,6.0,5.0,7.0,4.0,5.0,3.0,1.0,2.0,3.0,4.0,2.0,2.0,3.0,,2.0 M92004,17.0,13.0,6.0,9.0,9.0,20.0,22.0,15.0,18.0,16.0,21.0,17.0,23.0,21.0,19.0,23.0,22.0,17.0,20.0,11.0,18.0,17.0,8.0,19.0,19.0,11.0,16.0,18.0,22.0,19.0,18.0,20.0,13.0,21.0,19.0,17.0,19.0,23.0,25.0,21.0,19.0,18.0,25.0,21.0,20.0,20.0,11.0,17.0,13.0,22.0,14.0,12.0,11.0,16.0,15.0,15.0,14.0,12.0,16.0,24.0,18.0,16.0,14.0,19.0,19.0,19.0,15.0,9.0,15.0,9.0,9.0,15.0,12.0,11.0,15.0,16.0,12.0,9.0,11.0,12.0,8.0,11.0,8.0,7.0,12.0,6.0,5.0,5.0,6.0,2.0,3.0,4.0,3.0,1.0,,6.0 M92006,20.0,21.0,22.0,18.0,24.0,21.0,18.0,26.0,21.0,28.0,21.0,30.0,28.0,29.0,34.0,33.0,25.0,29.0,32.0,25.0,16.0,30.0,19.0,32.0,36.0,23.0,46.0,31.0,28.0,32.0,29.0,27.0,25.0,37.0,27.0,27.0,34.0,26.0,28.0,32.0,40.0,28.0,38.0,24.0,28.0,26.0,34.0,29.0,33.0,25.0,36.0,27.0,34.0,34.0,30.0,27.0,32.0,40.0,36.0,27.0,30.0,34.0,41.0,30.0,21.0,28.0,27.0,17.0,28.0,24.0,23.0,20.0,21.0,27.0,22.0,21.0,19.0,30.0,22.0,12.0,34.0,15.0,15.0,9.0,15.0,9.0,3.0,8.0,13.0,6.0,2.0,5.0,4.0,4.0,,13.0 M92008,39.0,37.0,40.0,61.0,48.0,68.0,62.0,72.0,62.0,74.0,76.0,62.0,62.0,67.0,85.0,100.0,66.0,75.0,75.0,58.0,57.0,54.0,45.0,43.0,44.0,66.0,54.0,49.0,53.0,58.0,57.0,65.0,71.0,64.0,74.0,95.0,75.0,78.0,80.0,92.0,97.0,91.0,87.0,83.0,93.0,89.0,90.0,79.0,92.0,78.0,76.0,91.0,76.0,100.0,104.0,73.0,96.0,85.0,100.0,110.0,77.0,104.0,79.0,94.0,83.0,85.0,81.0,71.0,89.0,60.0,87.0,83.0,69.0,89.0,85.0,81.0,81.0,88.0,62.0,63.0,65.0,69.0,54.0,41.0,33.0,48.0,41.0,31.0,29.0,24.0,24.0,28.0,24.0,18.0,15.0,38.0 M92009,66.0,67.0,63.0,71.0,52.0,71.0,77.0,94.0,100.0,80.0,88.0,96.0,101.0,98.0,92.0,71.0,85.0,92.0,79.0,65.0,73.0,59.0,55.0,61.0,66.0,48.0,61.0,76.0,79.0,86.0,82.0,114.0,87.0,100.0,118.0,105.0,120.0,105.0,116.0,103.0,83.0,89.0,104.0,82.0,74.0,85.0,69.0,68.0,75.0,81.0,77.0,84.0,84.0,85.0,88.0,99.0,77.0,82.0,100.0,77.0,84.0,90.0,86.0,101.0,91.0,85.0,82.0,81.0,85.0,70.0,63.0,63.0,68.0,46.0,62.0,61.0,60.0,60.0,58.0,46.0,35.0,48.0,40.0,36.0,31.0,38.0,42.0,29.0,27.0,17.0,24.0,16.0,21.0,10.0,14.0,27.0 M92010,38.0,39.0,28.0,50.0,45.0,48.0,55.0,54.0,57.0,41.0,53.0,73.0,61.0,70.0,72.0,80.0,68.0,87.0,61.0,65.0,50.0,53.0,42.0,62.0,53.0,62.0,57.0,51.0,56.0,57.0,50.0,50.0,77.0,48.0,62.0,67.0,65.0,63.0,58.0,74.0,73.0,81.0,68.0,65.0,81.0,83.0,73.0,70.0,66.0,70.0,69.0,62.0,73.0,91.0,98.0,75.0,80.0,78.0,65.0,74.0,86.0,65.0,75.0,83.0,77.0,68.0,92.0,80.0,73.0,71.0,72.0,49.0,59.0,58.0,57.0,61.0,62.0,64.0,58.0,52.0,53.0,65.0,53.0,51.0,44.0,53.0,38.0,37.0,41.0,33.0,24.0,18.0,21.0,15.0,15.0,27.0 M92011,165.0,150.0,140.0,192.0,176.0,181.0,166.0,238.0,207.0,207.0,218.0,207.0,214.0,241.0,219.0,185.0,243.0,245.0,211.0,175.0,200.0,184.0,173.0,174.0,197.0,230.0,203.0,245.0,252.0,230.0,287.0,284.0,252.0,261.0,278.0,240.0,242.0,291.0,257.0,253.0,282.0,227.0,239.0,211.0,279.0,264.0,226.0,242.0,221.0,220.0,227.0,228.0,214.0,235.0,268.0,239.0,250.0,246.0,240.0,256.0,281.0,235.0,230.0,259.0,227.0,204.0,212.0,219.0,187.0,173.0,209.0,180.0,182.0,184.0,173.0,161.0,163.0,194.0,145.0,122.0,148.0,130.0,122.0,104.0,87.0,101.0,84.0,90.0,94.0,77.0,66.0,37.0,27.0,36.0,27.0,53.0 M92012,63.0,58.0,55.0,54.0,59.0,54.0,73.0,68.0,70.0,72.0,72.0,68.0,76.0,84.0,72.0,75.0,76.0,71.0,66.0,66.0,81.0,57.0,105.0,99.0,112.0,103.0,120.0,122.0,111.0,111.0,95.0,95.0,101.0,98.0,92.0,80.0,71.0,77.0,60.0,68.0,78.0,68.0,82.0,90.0,86.0,77.0,72.0,59.0,62.0,57.0,58.0,63.0,66.0,69.0,70.0,50.0,66.0,57.0,66.0,60.0,44.0,55.0,52.0,50.0,48.0,48.0,48.0,49.0,47.0,39.0,41.0,36.0,42.0,42.0,27.0,43.0,38.0,30.0,42.0,23.0,23.0,28.0,29.0,22.0,28.0,16.0,20.0,20.0,10.0,8.0,7.0,11.0,4.0,4.0,4.0,14.0 M92013,31.0,40.0,43.0,35.0,36.0,35.0,48.0,40.0,41.0,45.0,42.0,42.0,44.0,58.0,55.0,43.0,53.0,50.0,50.0,48.0,28.0,41.0,47.0,40.0,51.0,46.0,44.0,43.0,65.0,56.0,57.0,45.0,53.0,49.0,42.0,57.0,42.0,44.0,54.0,63.0,58.0,46.0,40.0,51.0,52.0,46.0,49.0,36.0,33.0,43.0,48.0,46.0,36.0,37.0,60.0,37.0,48.0,47.0,38.0,49.0,40.0,42.0,26.0,31.0,36.0,25.0,32.0,25.0,32.0,24.0,14.0,27.0,15.0,26.0,16.0,25.0,17.0,21.0,22.0,13.0,16.0,22.0,14.0,11.0,22.0,12.0,14.0,15.0,14.0,14.0,6.0,4.0,2.0,6.0,3.0,6.0 M92015,32.0,29.0,39.0,34.0,38.0,29.0,35.0,31.0,39.0,30.0,35.0,24.0,26.0,35.0,35.0,21.0,24.0,27.0,23.0,17.0,21.0,16.0,26.0,21.0,36.0,24.0,39.0,37.0,38.0,43.0,32.0,45.0,32.0,53.0,39.0,36.0,40.0,39.0,36.0,40.0,26.0,32.0,33.0,39.0,25.0,30.0,28.0,23.0,21.0,19.0,12.0,15.0,18.0,23.0,25.0,19.0,18.0,20.0,22.0,22.0,23.0,21.0,17.0,23.0,24.0,15.0,12.0,20.0,15.0,13.0,17.0,19.0,21.0,9.0,16.0,8.0,6.0,9.0,9.0,6.0,7.0,9.0,5.0,9.0,4.0,1.0,5.0,5.0,2.0,4.0,3.0,1.0,2.0,1.0,,7.0 M92016,154.0,171.0,173.0,144.0,137.0,145.0,165.0,160.0,171.0,145.0,182.0,157.0,143.0,149.0,164.0,138.0,150.0,134.0,153.0,121.0,120.0,132.0,148.0,207.0,177.0,193.0,211.0,225.0,241.0,206.0,212.0,217.0,223.0,211.0,197.0,221.0,195.0,226.0,206.0,164.0,184.0,164.0,160.0,173.0,158.0,117.0,147.0,122.0,146.0,135.0,97.0,112.0,108.0,100.0,113.0,95.0,86.0,99.0,83.0,91.0,100.0,86.0,96.0,86.0,81.0,59.0,80.0,60.0,71.0,64.0,54.0,69.0,55.0,44.0,45.0,44.0,39.0,33.0,41.0,37.0,34.0,37.0,24.0,18.0,19.0,19.0,20.0,16.0,8.0,11.0,15.0,8.0,7.0,1.0,4.0,4.0 M92019,26.0,23.0,18.0,35.0,41.0,37.0,33.0,45.0,33.0,37.0,42.0,34.0,39.0,45.0,37.0,40.0,49.0,52.0,59.0,37.0,44.0,27.0,35.0,40.0,31.0,40.0,34.0,37.0,40.0,35.0,43.0,49.0,46.0,41.0,34.0,51.0,34.0,33.0,42.0,51.0,38.0,43.0,38.0,39.0,40.0,46.0,35.0,33.0,29.0,31.0,35.0,31.0,39.0,46.0,48.0,49.0,42.0,39.0,48.0,45.0,51.0,39.0,37.0,34.0,39.0,28.0,35.0,35.0,39.0,26.0,23.0,24.0,21.0,24.0,25.0,28.0,30.0,20.0,19.0,13.0,30.0,25.0,21.0,7.0,15.0,11.0,20.0,6.0,11.0,6.0,11.0,10.0,6.0,8.0,4.0,14.0 M92022,13.0,19.0,25.0,23.0,28.0,36.0,32.0,44.0,43.0,33.0,35.0,31.0,32.0,29.0,20.0,42.0,22.0,25.0,32.0,21.0,14.0,21.0,28.0,19.0,21.0,18.0,30.0,29.0,38.0,24.0,28.0,35.0,35.0,32.0,33.0,29.0,30.0,56.0,43.0,36.0,34.0,32.0,30.0,29.0,26.0,26.0,24.0,23.0,18.0,19.0,24.0,23.0,26.0,27.0,20.0,24.0,28.0,29.0,24.0,26.0,20.0,35.0,24.0,25.0,21.0,21.0,22.0,20.0,20.0,11.0,11.0,15.0,10.0,16.0,9.0,10.0,8.0,15.0,12.0,13.0,9.0,12.0,10.0,12.0,15.0,6.0,8.0,8.0,7.0,4.0,5.0,6.0,8.0,5.0,1.0,2.0 M92026,27.0,38.0,30.0,32.0,26.0,26.0,31.0,41.0,34.0,30.0,34.0,41.0,33.0,26.0,27.0,32.0,31.0,40.0,25.0,23.0,38.0,25.0,26.0,30.0,32.0,28.0,29.0,32.0,33.0,40.0,46.0,36.0,46.0,37.0,38.0,30.0,38.0,49.0,39.0,38.0,32.0,32.0,32.0,33.0,25.0,27.0,35.0,23.0,18.0,25.0,34.0,27.0,38.0,32.0,32.0,33.0,36.0,32.0,35.0,32.0,26.0,27.0,28.0,34.0,25.0,42.0,36.0,35.0,18.0,22.0,21.0,34.0,16.0,15.0,25.0,23.0,22.0,15.0,22.0,14.0,17.0,26.0,10.0,11.0,11.0,18.0,19.0,8.0,11.0,11.0,7.0,8.0,4.0,3.0,3.0,1.0 M92028,51.0,57.0,48.0,41.0,47.0,39.0,48.0,46.0,50.0,49.0,44.0,51.0,58.0,61.0,43.0,47.0,50.0,41.0,35.0,57.0,85.0,77.0,61.0,66.0,114.0,93.0,103.0,107.0,136.0,102.0,107.0,97.0,112.0,84.0,95.0,76.0,95.0,85.0,89.0,77.0,82.0,64.0,61.0,62.0,62.0,65.0,49.0,42.0,30.0,43.0,39.0,33.0,47.0,40.0,49.0,35.0,43.0,44.0,46.0,35.0,35.0,43.0,27.0,26.0,30.0,25.0,22.0,24.0,22.0,23.0,22.0,14.0,17.0,13.0,13.0,11.0,19.0,14.0,11.0,12.0,15.0,9.0,8.0,9.0,6.0,6.0,13.0,6.0,7.0,5.0,9.0,7.0,4.0,1.0,4.0,6.0 M92029,14.0,24.0,28.0,22.0,24.0,32.0,18.0,30.0,30.0,28.0,24.0,28.0,37.0,28.0,40.0,39.0,27.0,25.0,35.0,23.0,32.0,26.0,34.0,28.0,36.0,30.0,30.0,31.0,36.0,25.0,34.0,32.0,49.0,40.0,33.0,43.0,34.0,27.0,40.0,46.0,45.0,35.0,44.0,34.0,42.0,40.0,38.0,34.0,35.0,30.0,44.0,50.0,45.0,47.0,44.0,45.0,40.0,45.0,42.0,40.0,52.0,35.0,44.0,43.0,32.0,39.0,30.0,31.0,37.0,39.0,27.0,25.0,35.0,32.0,38.0,32.0,25.0,36.0,23.0,22.0,26.0,23.0,26.0,19.0,19.0,21.0,10.0,11.0,20.0,13.0,14.0,11.0,13.0,8.0,11.0,16.0 M92039,25.0,36.0,35.0,35.0,44.0,42.0,44.0,49.0,31.0,42.0,45.0,47.0,54.0,50.0,50.0,33.0,50.0,41.0,47.0,40.0,34.0,30.0,29.0,49.0,36.0,49.0,38.0,32.0,44.0,39.0,29.0,48.0,43.0,47.0,50.0,54.0,66.0,51.0,48.0,55.0,56.0,51.0,55.0,55.0,47.0,32.0,36.0,56.0,41.0,35.0,31.0,40.0,58.0,39.0,49.0,38.0,43.0,55.0,53.0,40.0,53.0,35.0,57.0,54.0,37.0,37.0,34.0,47.0,30.0,28.0,32.0,46.0,34.0,19.0,23.0,20.0,29.0,35.0,19.0,13.0,17.0,23.0,24.0,22.0,10.0,11.0,17.0,14.0,19.0,14.0,13.0,6.0,9.0,6.0,8.0,12.0 M92040,85.0,82.0,76.0,95.0,85.0,73.0,79.0,94.0,78.0,96.0,88.0,86.0,81.0,85.0,81.0,81.0,71.0,83.0,79.0,62.0,63.0,77.0,77.0,65.0,85.0,83.0,100.0,104.0,135.0,117.0,104.0,135.0,108.0,116.0,115.0,115.0,116.0,113.0,96.0,98.0,94.0,88.0,100.0,85.0,68.0,70.0,88.0,63.0,59.0,47.0,66.0,59.0,52.0,70.0,63.0,87.0,47.0,73.0,64.0,71.0,62.0,52.0,49.0,65.0,49.0,57.0,45.0,45.0,45.0,46.0,46.0,44.0,36.0,38.0,44.0,29.0,37.0,28.0,34.0,33.0,27.0,24.0,28.0,15.0,15.0,12.0,15.0,12.0,6.0,10.0,9.0,6.0,5.0,1.0,4.0,4.0 M92041,15.0,23.0,19.0,22.0,23.0,29.0,25.0,34.0,39.0,26.0,41.0,30.0,37.0,32.0,23.0,25.0,37.0,32.0,35.0,24.0,24.0,24.0,26.0,22.0,22.0,19.0,33.0,28.0,26.0,41.0,36.0,26.0,29.0,33.0,34.0,36.0,42.0,44.0,24.0,36.0,34.0,33.0,35.0,37.0,36.0,38.0,39.0,18.0,17.0,29.0,30.0,33.0,17.0,23.0,26.0,32.0,46.0,31.0,21.0,24.0,29.0,28.0,29.0,18.0,24.0,24.0,23.0,17.0,23.0,16.0,12.0,15.0,15.0,21.0,17.0,14.0,15.0,10.0,21.0,15.0,7.0,14.0,5.0,5.0,5.0,9.0,8.0,8.0,9.0,6.0,8.0,5.0,5.0,5.0,3.0,5.0 M92043,27.0,46.0,35.0,39.0,37.0,47.0,38.0,40.0,46.0,32.0,38.0,30.0,41.0,39.0,41.0,39.0,30.0,29.0,33.0,25.0,30.0,32.0,36.0,36.0,40.0,44.0,41.0,33.0,33.0,45.0,45.0,55.0,60.0,52.0,43.0,50.0,40.0,60.0,50.0,40.0,48.0,52.0,52.0,53.0,48.0,56.0,44.0,48.0,40.0,44.0,54.0,37.0,51.0,55.0,47.0,60.0,40.0,51.0,43.0,51.0,53.0,53.0,59.0,40.0,39.0,49.0,46.0,47.0,33.0,40.0,35.0,41.0,45.0,36.0,27.0,41.0,37.0,42.0,33.0,32.0,31.0,26.0,24.0,19.0,24.0,22.0,21.0,25.0,16.0,18.0,15.0,18.0,7.0,4.0,7.0,11.0 M92607,107.0,110.0,113.0,115.0,130.0,122.0,105.0,122.0,142.0,133.0,128.0,117.0,144.0,138.0,128.0,127.0,125.0,106.0,100.0,116.0,90.0,116.0,111.0,130.0,127.0,134.0,163.0,138.0,151.0,177.0,138.0,160.0,152.0,161.0,154.0,162.0,142.0,155.0,164.0,141.0,122.0,138.0,91.0,131.0,117.0,144.0,117.0,108.0,98.0,85.0,92.0,90.0,102.0,84.0,92.0,89.0,75.0,71.0,92.0,81.0,72.0,73.0,71.0,68.0,69.0,67.0,64.0,55.0,70.0,66.0,66.0,65.0,68.0,58.0,44.0,46.0,40.0,45.0,32.0,24.0,32.0,26.0,28.0,27.0,24.0,17.0,16.0,15.0,14.0,10.0,10.0,14.0,7.0,8.0,,16.0 M92609,36.0,31.0,33.0,45.0,36.0,45.0,29.0,38.0,46.0,46.0,46.0,43.0,49.0,51.0,40.0,40.0,33.0,39.0,42.0,32.0,27.0,38.0,33.0,28.0,32.0,38.0,41.0,38.0,34.0,34.0,43.0,51.0,57.0,39.0,42.0,52.0,45.0,41.0,48.0,62.0,57.0,63.0,38.0,51.0,43.0,45.0,40.0,46.0,38.0,35.0,39.0,31.0,35.0,46.0,30.0,46.0,26.0,41.0,36.0,34.0,39.0,29.0,46.0,54.0,33.0,36.0,38.0,44.0,39.0,24.0,36.0,22.0,22.0,34.0,30.0,23.0,22.0,15.0,17.0,15.0,10.0,14.0,10.0,15.0,14.0,6.0,12.0,6.0,4.0,4.0,9.0,3.0,5.0,2.0,3.0,11.0 M92612,197.0,209.0,170.0,193.0,213.0,196.0,205.0,214.0,272.0,238.0,242.0,233.0,242.0,255.0,242.0,249.0,261.0,234.0,254.0,218.0,208.0,233.0,244.0,253.0,276.0,262.0,256.0,295.0,273.0,267.0,293.0,265.0,304.0,257.0,302.0,248.0,278.0,238.0,275.0,250.0,298.0,283.0,256.0,250.0,253.0,260.0,259.0,218.0,221.0,213.0,211.0,230.0,246.0,241.0,258.0,253.0,216.0,225.0,219.0,199.0,217.0,200.0,214.0,172.0,187.0,187.0,184.0,201.0,168.0,164.0,171.0,153.0,126.0,128.0,164.0,133.0,135.0,143.0,125.0,98.0,109.0,104.0,96.0,88.0,67.0,81.0,50.0,57.0,46.0,44.0,39.0,37.0,24.0,24.0,21.0,42.0 M92627,21.0,32.0,23.0,22.0,19.0,18.0,19.0,26.0,15.0,16.0,23.0,38.0,28.0,32.0,23.0,34.0,24.0,29.0,23.0,19.0,24.0,25.0,28.0,21.0,31.0,31.0,25.0,25.0,35.0,32.0,19.0,36.0,18.0,33.0,38.0,31.0,27.0,26.0,37.0,33.0,25.0,30.0,38.0,32.0,25.0,36.0,30.0,21.0,29.0,19.0,24.0,24.0,24.0,24.0,27.0,24.0,41.0,24.0,28.0,21.0,17.0,21.0,33.0,27.0,24.0,21.0,11.0,16.0,17.0,18.0,15.0,13.0,18.0,13.0,23.0,12.0,20.0,19.0,13.0,13.0,15.0,8.0,14.0,12.0,10.0,6.0,14.0,5.0,7.0,7.0,4.0,4.0,4.0,,1.0,2.0 M92629,24.0,28.0,29.0,34.0,24.0,19.0,26.0,28.0,33.0,16.0,27.0,42.0,36.0,35.0,37.0,30.0,34.0,25.0,31.0,27.0,27.0,33.0,18.0,18.0,21.0,32.0,29.0,41.0,34.0,28.0,35.0,36.0,37.0,36.0,37.0,33.0,35.0,40.0,28.0,37.0,37.0,35.0,34.0,30.0,36.0,33.0,21.0,22.0,26.0,23.0,15.0,19.0,23.0,19.0,22.0,27.0,22.0,24.0,30.0,21.0,19.0,36.0,22.0,32.0,21.0,22.0,19.0,22.0,21.0,16.0,17.0,10.0,13.0,16.0,6.0,10.0,17.0,2.0,13.0,5.0,4.0,5.0,9.0,2.0,2.0,9.0,7.0,3.0,,1.0,1.0,,,1.0,1.0,1.0 M92630,22.0,31.0,32.0,41.0,27.0,26.0,37.0,39.0,31.0,38.0,38.0,45.0,32.0,49.0,42.0,37.0,45.0,44.0,51.0,29.0,46.0,38.0,51.0,40.0,35.0,38.0,41.0,40.0,39.0,49.0,35.0,39.0,53.0,45.0,52.0,50.0,38.0,45.0,50.0,34.0,44.0,43.0,43.0,48.0,46.0,31.0,35.0,21.0,39.0,30.0,24.0,38.0,41.0,35.0,45.0,48.0,35.0,30.0,31.0,37.0,35.0,37.0,32.0,33.0,39.0,27.0,30.0,23.0,24.0,19.0,18.0,23.0,15.0,22.0,17.0,24.0,24.0,17.0,16.0,11.0,16.0,18.0,17.0,13.0,15.0,23.0,9.0,8.0,7.0,10.0,6.0,6.0,6.0,5.0,4.0,19.0 M92649,22.0,20.0,22.0,26.0,27.0,30.0,23.0,21.0,27.0,35.0,35.0,27.0,33.0,35.0,39.0,25.0,37.0,37.0,30.0,25.0,27.0,22.0,26.0,31.0,22.0,32.0,34.0,35.0,30.0,33.0,28.0,41.0,26.0,39.0,35.0,29.0,51.0,39.0,32.0,32.0,31.0,37.0,28.0,25.0,25.0,23.0,21.0,27.0,29.0,17.0,29.0,21.0,32.0,30.0,34.0,27.0,31.0,24.0,22.0,33.0,30.0,25.0,35.0,23.0,14.0,16.0,13.0,16.0,33.0,18.0,15.0,22.0,22.0,17.0,15.0,17.0,11.0,17.0,22.0,12.0,9.0,13.0,15.0,11.0,9.0,8.0,3.0,7.0,1.0,11.0,7.0,6.0,2.0,4.0,4.0,5.0 M92654,31.0,36.0,35.0,41.0,42.0,40.0,48.0,50.0,56.0,59.0,34.0,52.0,45.0,59.0,54.0,48.0,38.0,46.0,63.0,38.0,38.0,42.0,42.0,37.0,37.0,37.0,34.0,47.0,51.0,52.0,43.0,45.0,55.0,60.0,63.0,56.0,44.0,53.0,60.0,47.0,60.0,47.0,51.0,53.0,57.0,53.0,35.0,34.0,39.0,40.0,30.0,36.0,48.0,38.0,46.0,37.0,45.0,43.0,48.0,36.0,40.0,45.0,34.0,34.0,31.0,33.0,20.0,17.0,23.0,31.0,23.0,32.0,20.0,28.0,20.0,18.0,17.0,16.0,22.0,10.0,18.0,19.0,19.0,12.0,13.0,14.0,10.0,11.0,12.0,3.0,7.0,1.0,5.0,,3.0,2.0 Y00228,18.0,13.0,9.0,13.0,23.0,17.0,15.0,16.0,10.0,20.0,16.0,22.0,24.0,23.0,20.0,15.0,21.0,19.0,13.0,29.0,22.0,35.0,35.0,25.0,31.0,32.0,25.0,36.0,31.0,16.0,22.0,18.0,14.0,19.0,25.0,16.0,17.0,23.0,9.0,16.0,15.0,13.0,23.0,18.0,13.0,21.0,23.0,13.0,17.0,17.0,13.0,18.0,17.0,11.0,17.0,11.0,6.0,11.0,7.0,8.0,8.0,9.0,2.0,3.0,8.0,5.0,4.0,7.0,3.0,7.0,3.0,2.0,3.0,8.0,3.0,2.0,2.0,2.0,3.0,3.0,3.0,,2.0,2.0,3.0,1.0,1.0,,1.0,2.0,,,,1.0,,1.0 Y00278,20.0,23.0,12.0,20.0,29.0,27.0,23.0,29.0,27.0,31.0,20.0,34.0,24.0,40.0,23.0,26.0,30.0,27.0,21.0,25.0,26.0,24.0,24.0,26.0,24.0,30.0,18.0,36.0,36.0,29.0,27.0,26.0,24.0,27.0,22.0,30.0,28.0,25.0,25.0,34.0,28.0,23.0,33.0,32.0,26.0,26.0,30.0,15.0,22.0,21.0,18.0,21.0,11.0,20.0,23.0,26.0,21.0,12.0,17.0,20.0,13.0,15.0,13.0,17.0,15.0,18.0,9.0,17.0,11.0,12.0,10.0,13.0,8.0,14.0,7.0,10.0,11.0,9.0,10.0,11.0,9.0,10.0,6.0,6.0,9.0,6.0,5.0,6.0,2.0,1.0,2.0,,,,1.0, Y01756,24.0,39.0,29.0,27.0,29.0,34.0,29.0,37.0,29.0,37.0,27.0,37.0,43.0,33.0,36.0,30.0,36.0,33.0,39.0,33.0,20.0,30.0,33.0,35.0,31.0,33.0,35.0,37.0,40.0,29.0,45.0,45.0,42.0,38.0,45.0,48.0,29.0,33.0,48.0,44.0,38.0,31.0,40.0,31.0,29.0,35.0,33.0,26.0,34.0,35.0,31.0,37.0,29.0,30.0,42.0,42.0,60.0,38.0,44.0,41.0,41.0,33.0,37.0,47.0,51.0,42.0,41.0,40.0,43.0,36.0,25.0,35.0,29.0,31.0,22.0,29.0,33.0,38.0,36.0,29.0,28.0,20.0,20.0,17.0,15.0,13.0,22.0,13.0,9.0,3.0,14.0,10.0,3.0,9.0,12.0,9.0 Y02212,16.0,10.0,17.0,11.0,19.0,18.0,28.0,15.0,12.0,18.0,15.0,17.0,20.0,13.0,20.0,18.0,25.0,19.0,16.0,8.0,16.0,23.0,13.0,15.0,9.0,13.0,17.0,15.0,25.0,15.0,21.0,19.0,20.0,22.0,17.0,30.0,19.0,16.0,28.0,14.0,18.0,18.0,18.0,15.0,18.0,19.0,15.0,14.0,7.0,19.0,10.0,15.0,12.0,16.0,28.0,15.0,10.0,25.0,20.0,18.0,18.0,19.0,17.0,14.0,8.0,12.0,15.0,11.0,15.0,9.0,16.0,11.0,10.0,10.0,12.0,16.0,11.0,4.0,14.0,8.0,6.0,6.0,2.0,7.0,4.0,8.0,3.0,9.0,5.0,5.0,4.0,4.0,1.0,,2.0,1.0 Y02626,16.0,21.0,20.0,30.0,24.0,27.0,31.0,50.0,41.0,41.0,30.0,32.0,50.0,37.0,39.0,36.0,35.0,39.0,27.0,31.0,21.0,16.0,25.0,23.0,21.0,20.0,30.0,25.0,32.0,28.0,28.0,32.0,44.0,36.0,52.0,49.0,40.0,39.0,47.0,42.0,41.0,34.0,36.0,34.0,33.0,38.0,39.0,26.0,28.0,19.0,27.0,18.0,16.0,33.0,18.0,30.0,23.0,24.0,24.0,15.0,22.0,17.0,18.0,23.0,16.0,14.0,25.0,17.0,19.0,19.0,16.0,20.0,14.0,16.0,11.0,14.0,10.0,20.0,7.0,7.0,9.0,16.0,10.0,7.0,7.0,7.0,6.0,9.0,3.0,8.0,4.0,4.0,2.0,1.0,,2.0 Y02627,57.0,72.0,70.0,84.0,87.0,90.0,111.0,108.0,142.0,120.0,118.0,111.0,122.0,111.0,110.0,128.0,97.0,99.0,91.0,78.0,73.0,78.0,69.0,63.0,53.0,78.0,81.0,71.0,73.0,75.0,78.0,91.0,107.0,100.0,109.0,108.0,89.0,107.0,98.0,93.0,110.0,104.0,99.0,89.0,78.0,80.0,58.0,49.0,70.0,61.0,68.0,64.0,63.0,52.0,69.0,57.0,45.0,56.0,55.0,47.0,62.0,59.0,57.0,44.0,64.0,49.0,33.0,36.0,45.0,39.0,26.0,34.0,28.0,22.0,23.0,23.0,23.0,34.0,34.0,13.0,22.0,15.0,19.0,18.0,16.0,19.0,18.0,15.0,18.0,9.0,12.0,8.0,8.0,11.0,10.0,25.0 Y02636,51.0,60.0,42.0,46.0,37.0,49.0,43.0,55.0,35.0,42.0,58.0,57.0,62.0,51.0,54.0,34.0,46.0,51.0,43.0,36.0,42.0,26.0,42.0,55.0,59.0,53.0,68.0,74.0,68.0,55.0,73.0,57.0,63.0,80.0,68.0,63.0,62.0,50.0,67.0,68.0,52.0,42.0,56.0,50.0,38.0,42.0,35.0,33.0,40.0,42.0,30.0,34.0,29.0,37.0,27.0,26.0,25.0,22.0,20.0,16.0,17.0,22.0,28.0,17.0,18.0,21.0,15.0,13.0,12.0,10.0,10.0,15.0,13.0,12.0,8.0,9.0,6.0,11.0,8.0,7.0,10.0,6.0,6.0,7.0,7.0,7.0,8.0,6.0,7.0,5.0,12.0,6.0,5.0,2.0,6.0,16.0 Y02653,31.0,34.0,21.0,32.0,27.0,38.0,38.0,43.0,45.0,31.0,34.0,30.0,35.0,24.0,33.0,33.0,26.0,20.0,23.0,14.0,24.0,19.0,17.0,30.0,25.0,28.0,28.0,39.0,30.0,41.0,31.0,41.0,47.0,35.0,39.0,48.0,38.0,34.0,38.0,41.0,50.0,28.0,31.0,26.0,25.0,29.0,27.0,28.0,14.0,20.0,22.0,15.0,17.0,19.0,30.0,27.0,19.0,30.0,30.0,28.0,23.0,13.0,27.0,18.0,18.0,19.0,20.0,17.0,17.0,13.0,14.0,12.0,6.0,16.0,19.0,22.0,12.0,12.0,7.0,12.0,12.0,9.0,11.0,6.0,7.0,11.0,12.0,7.0,8.0,6.0,6.0,4.0,2.0,5.0,1.0,5.0 Y02701,38.0,41.0,64.0,70.0,56.0,61.0,53.0,69.0,72.0,77.0,55.0,66.0,65.0,79.0,66.0,65.0,67.0,63.0,60.0,60.0,49.0,47.0,41.0,63.0,80.0,52.0,62.0,56.0,60.0,68.0,67.0,72.0,65.0,73.0,57.0,69.0,91.0,77.0,96.0,77.0,80.0,83.0,71.0,69.0,72.0,67.0,66.0,53.0,57.0,55.0,63.0,58.0,63.0,54.0,57.0,46.0,50.0,48.0,36.0,40.0,42.0,36.0,31.0,31.0,33.0,28.0,30.0,28.0,27.0,16.0,18.0,23.0,21.0,17.0,13.0,9.0,14.0,16.0,8.0,9.0,11.0,7.0,6.0,3.0,3.0,4.0,4.0,2.0,4.0,2.0,,3.0,1.0,1.0,1.0,1.0 Y02736,35.0,29.0,50.0,47.0,50.0,50.0,53.0,48.0,49.0,77.0,64.0,76.0,65.0,86.0,84.0,72.0,73.0,85.0,56.0,48.0,55.0,45.0,44.0,53.0,39.0,42.0,41.0,42.0,52.0,53.0,57.0,58.0,67.0,59.0,61.0,73.0,67.0,62.0,74.0,88.0,79.0,64.0,63.0,54.0,61.0,57.0,50.0,51.0,52.0,50.0,40.0,40.0,32.0,35.0,34.0,33.0,41.0,28.0,42.0,29.0,22.0,28.0,24.0,22.0,18.0,13.0,14.0,20.0,10.0,17.0,18.0,8.0,11.0,17.0,8.0,8.0,2.0,10.0,7.0,5.0,6.0,7.0,2.0,2.0,3.0,2.0,1.0,6.0,,3.0,,,,1.0,, Y02757,91.0,92.0,103.0,125.0,106.0,97.0,106.0,116.0,124.0,129.0,132.0,131.0,109.0,111.0,130.0,116.0,89.0,104.0,95.0,84.0,50.0,63.0,52.0,79.0,72.0,97.0,82.0,79.0,105.0,111.0,113.0,117.0,111.0,123.0,142.0,151.0,150.0,155.0,138.0,140.0,134.0,131.0,100.0,113.0,96.0,101.0,94.0,86.0,82.0,79.0,66.0,56.0,66.0,80.0,48.0,76.0,60.0,63.0,56.0,57.0,45.0,60.0,47.0,42.0,52.0,45.0,40.0,37.0,40.0,31.0,33.0,21.0,34.0,30.0,25.0,28.0,23.0,15.0,13.0,20.0,15.0,15.0,10.0,7.0,11.0,14.0,13.0,11.0,11.0,9.0,6.0,4.0,3.0,3.0,3.0,6.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 D81001,38.0,37.0,24.0,33.0,22.0,34.0,37.0,43.0,42.0,35.0,34.0,39.0,44.0,38.0,51.0,45.0,56.0,56.0,108.0,146.0,165.0,160.0,193.0,246.0,264.0,221.0,228.0,214.0,198.0,182.0,166.0,162.0,133.0,154.0,132.0,118.0,130.0,95.0,99.0,90.0,78.0,85.0,96.0,94.0,69.0,68.0,66.0,67.0,57.0,66.0,50.0,58.0,68.0,56.0,55.0,64.0,53.0,54.0,61.0,61.0,69.0,62.0,55.0,40.0,53.0,28.0,44.0,40.0,44.0,42.0,44.0,39.0,43.0,45.0,49.0,44.0,33.0,32.0,41.0,31.0,33.0,21.0,17.0,18.0,25.0,12.0,22.0,18.0,14.0,9.0,15.0,7.0,8.0,3.0,7.0,8.0 D81002,48.0,65.0,61.0,89.0,70.0,72.0,78.0,97.0,102.0,101.0,86.0,83.0,87.0,77.0,90.0,95.0,75.0,64.0,177.0,291.0,361.0,298.0,328.0,360.0,362.0,278.0,261.0,296.0,249.0,231.0,239.0,202.0,225.0,217.0,199.0,191.0,196.0,168.0,165.0,144.0,165.0,138.0,150.0,132.0,134.0,132.0,104.0,90.0,89.0,90.0,92.0,75.0,93.0,95.0,70.0,72.0,70.0,63.0,59.0,75.0,67.0,74.0,74.0,53.0,62.0,69.0,79.0,72.0,69.0,75.0,82.0,68.0,79.0,62.0,70.0,58.0,71.0,55.0,86.0,40.0,41.0,49.0,49.0,37.0,39.0,47.0,41.0,29.0,33.0,22.0,16.0,22.0,18.0,17.0,11.0,33.0 D81003,35.0,35.0,40.0,44.0,38.0,44.0,46.0,34.0,45.0,35.0,63.0,53.0,61.0,57.0,47.0,64.0,46.0,66.0,108.0,60.0,76.0,75.0,73.0,60.0,86.0,109.0,121.0,119.0,108.0,127.0,134.0,133.0,90.0,116.0,103.0,92.0,105.0,91.0,89.0,113.0,91.0,92.0,83.0,78.0,94.0,82.0,64.0,79.0,77.0,76.0,58.0,64.0,57.0,62.0,61.0,51.0,52.0,44.0,61.0,45.0,49.0,65.0,45.0,36.0,36.0,41.0,32.0,38.0,34.0,35.0,37.0,38.0,27.0,33.0,32.0,33.0,22.0,25.0,31.0,25.0,22.0,21.0,14.0,16.0,12.0,13.0,14.0,12.0,6.0,6.0,5.0,6.0,5.0,3.0,1.0,8.0 D81004,74.0,75.0,78.0,103.0,87.0,101.0,94.0,96.0,79.0,105.0,77.0,87.0,77.0,76.0,78.0,70.0,87.0,77.0,57.0,60.0,52.0,53.0,59.0,62.0,72.0,83.0,85.0,86.0,74.0,105.0,88.0,120.0,125.0,102.0,132.0,131.0,129.0,129.0,112.0,101.0,105.0,101.0,114.0,90.0,83.0,102.0,85.0,74.0,74.0,85.0,78.0,91.0,92.0,89.0,107.0,104.0,94.0,95.0,103.0,110.0,113.0,93.0,83.0,89.0,98.0,95.0,70.0,69.0,84.0,60.0,67.0,67.0,64.0,77.0,62.0,55.0,63.0,63.0,78.0,54.0,52.0,50.0,53.0,39.0,20.0,36.0,25.0,25.0,24.0,21.0,14.0,9.0,11.0,10.0,8.0,14.0 D81005,24.0,20.0,23.0,25.0,19.0,18.0,28.0,29.0,42.0,36.0,51.0,42.0,48.0,37.0,47.0,54.0,38.0,61.0,203.0,410.0,532.0,461.0,413.0,397.0,298.0,188.0,189.0,165.0,126.0,131.0,128.0,87.0,78.0,57.0,75.0,55.0,48.0,62.0,60.0,52.0,47.0,47.0,57.0,47.0,49.0,39.0,45.0,44.0,49.0,48.0,44.0,48.0,55.0,41.0,58.0,47.0,48.0,44.0,49.0,40.0,46.0,39.0,42.0,53.0,48.0,54.0,33.0,32.0,36.0,40.0,35.0,30.0,38.0,28.0,39.0,32.0,29.0,28.0,44.0,36.0,37.0,29.0,28.0,22.0,19.0,12.0,7.0,12.0,22.0,11.0,12.0,5.0,12.0,3.0,3.0,18.0 D81008,60.0,76.0,75.0,70.0,79.0,87.0,99.0,87.0,112.0,105.0,110.0,108.0,93.0,95.0,95.0,102.0,105.0,119.0,96.0,98.0,93.0,96.0,89.0,104.0,86.0,101.0,102.0,108.0,132.0,117.0,116.0,146.0,110.0,129.0,139.0,114.0,138.0,96.0,123.0,131.0,122.0,126.0,129.0,114.0,116.0,118.0,108.0,123.0,98.0,114.0,122.0,128.0,129.0,127.0,134.0,125.0,127.0,113.0,129.0,140.0,147.0,134.0,152.0,121.0,135.0,122.0,119.0,102.0,95.0,114.0,116.0,98.0,104.0,114.0,91.0,92.0,99.0,111.0,89.0,89.0,83.0,74.0,77.0,51.0,54.0,49.0,47.0,43.0,36.0,40.0,29.0,30.0,30.0,16.0,18.0,40.0 D81010,31.0,44.0,44.0,46.0,38.0,55.0,60.0,53.0,62.0,60.0,64.0,51.0,69.0,66.0,55.0,61.0,66.0,62.0,48.0,41.0,29.0,33.0,54.0,51.0,59.0,52.0,59.0,67.0,80.0,86.0,92.0,82.0,77.0,87.0,88.0,91.0,94.0,81.0,99.0,90.0,82.0,102.0,76.0,72.0,85.0,79.0,60.0,71.0,61.0,79.0,71.0,63.0,68.0,72.0,67.0,76.0,67.0,62.0,68.0,95.0,84.0,61.0,89.0,56.0,52.0,61.0,59.0,57.0,41.0,53.0,48.0,43.0,50.0,45.0,42.0,45.0,54.0,41.0,49.0,44.0,40.0,34.0,36.0,31.0,22.0,35.0,33.0,24.0,23.0,17.0,13.0,15.0,10.0,10.0,8.0,29.0 D81011,25.0,27.0,38.0,36.0,37.0,30.0,38.0,32.0,42.0,38.0,45.0,43.0,40.0,40.0,55.0,55.0,54.0,50.0,43.0,42.0,42.0,45.0,41.0,36.0,51.0,46.0,56.0,43.0,41.0,35.0,55.0,47.0,45.0,48.0,48.0,49.0,50.0,58.0,40.0,65.0,53.0,65.0,58.0,56.0,56.0,59.0,40.0,50.0,55.0,58.0,49.0,66.0,56.0,71.0,67.0,63.0,64.0,69.0,74.0,67.0,79.0,78.0,75.0,67.0,72.0,57.0,73.0,51.0,71.0,49.0,71.0,64.0,56.0,46.0,50.0,70.0,68.0,76.0,58.0,37.0,41.0,43.0,48.0,40.0,38.0,37.0,31.0,33.0,20.0,23.0,21.0,19.0,10.0,15.0,18.0,21.0 D81012,34.0,49.0,50.0,49.0,40.0,46.0,38.0,61.0,57.0,60.0,72.0,67.0,57.0,69.0,77.0,89.0,73.0,57.0,71.0,48.0,44.0,50.0,41.0,52.0,65.0,60.0,68.0,74.0,73.0,90.0,76.0,72.0,71.0,91.0,100.0,75.0,86.0,82.0,64.0,66.0,74.0,77.0,87.0,86.0,89.0,67.0,73.0,98.0,85.0,75.0,71.0,74.0,68.0,74.0,76.0,72.0,68.0,83.0,58.0,71.0,78.0,65.0,73.0,47.0,63.0,42.0,65.0,58.0,50.0,68.0,48.0,57.0,49.0,42.0,53.0,57.0,56.0,54.0,55.0,49.0,48.0,49.0,36.0,27.0,29.0,35.0,20.0,17.0,29.0,27.0,10.0,10.0,21.0,11.0,11.0,33.0 D81013,72.0,84.0,94.0,113.0,77.0,94.0,114.0,104.0,112.0,131.0,113.0,122.0,122.0,98.0,108.0,105.0,108.0,144.0,197.0,277.0,269.0,290.0,269.0,258.0,211.0,193.0,171.0,194.0,174.0,191.0,191.0,187.0,192.0,223.0,193.0,193.0,216.0,204.0,191.0,150.0,144.0,157.0,139.0,144.0,132.0,118.0,130.0,127.0,105.0,117.0,104.0,106.0,95.0,105.0,92.0,73.0,72.0,53.0,66.0,68.0,69.0,57.0,62.0,60.0,41.0,40.0,28.0,42.0,26.0,38.0,32.0,40.0,33.0,34.0,28.0,31.0,28.0,36.0,24.0,27.0,28.0,22.0,24.0,23.0,17.0,16.0,14.0,12.0,9.0,6.0,4.0,5.0,2.0,2.0,,6.0 D81014,71.0,85.0,77.0,104.0,86.0,114.0,83.0,118.0,105.0,128.0,119.0,93.0,136.0,111.0,119.0,122.0,130.0,106.0,93.0,67.0,82.0,92.0,83.0,112.0,147.0,97.0,124.0,110.0,116.0,140.0,146.0,127.0,154.0,149.0,139.0,155.0,151.0,173.0,144.0,147.0,145.0,151.0,150.0,137.0,156.0,138.0,151.0,125.0,113.0,119.0,131.0,115.0,122.0,126.0,122.0,119.0,107.0,157.0,148.0,120.0,138.0,126.0,114.0,128.0,116.0,110.0,123.0,114.0,108.0,104.0,94.0,102.0,97.0,80.0,87.0,88.0,82.0,88.0,92.0,68.0,67.0,63.0,51.0,46.0,33.0,47.0,43.0,37.0,37.0,28.0,31.0,22.0,17.0,7.0,16.0,32.0 D81015,21.0,18.0,30.0,30.0,32.0,31.0,40.0,30.0,46.0,30.0,43.0,32.0,45.0,37.0,30.0,28.0,41.0,34.0,33.0,31.0,28.0,33.0,33.0,35.0,28.0,24.0,35.0,40.0,30.0,34.0,41.0,31.0,25.0,46.0,27.0,37.0,43.0,46.0,47.0,47.0,29.0,54.0,30.0,43.0,35.0,35.0,40.0,36.0,35.0,35.0,56.0,47.0,47.0,50.0,60.0,49.0,66.0,62.0,66.0,56.0,65.0,62.0,65.0,56.0,57.0,59.0,61.0,69.0,44.0,48.0,63.0,49.0,45.0,53.0,41.0,42.0,51.0,49.0,52.0,27.0,31.0,31.0,29.0,24.0,14.0,21.0,12.0,12.0,15.0,9.0,9.0,4.0,8.0,2.0,1.0,8.0 D81016,52.0,57.0,58.0,61.0,70.0,69.0,55.0,64.0,78.0,88.0,86.0,79.0,83.0,92.0,66.0,76.0,75.0,70.0,65.0,57.0,61.0,65.0,61.0,97.0,105.0,109.0,126.0,110.0,125.0,114.0,127.0,125.0,124.0,124.0,108.0,137.0,128.0,129.0,123.0,86.0,123.0,91.0,98.0,105.0,93.0,84.0,69.0,75.0,76.0,51.0,64.0,71.0,73.0,69.0,63.0,64.0,72.0,67.0,61.0,49.0,52.0,56.0,63.0,47.0,34.0,45.0,42.0,41.0,41.0,38.0,34.0,41.0,27.0,39.0,29.0,37.0,53.0,26.0,32.0,32.0,40.0,25.0,29.0,21.0,19.0,22.0,21.0,26.0,8.0,13.0,14.0,9.0,5.0,8.0,3.0,18.0 D81017,32.0,45.0,30.0,37.0,40.0,40.0,48.0,49.0,46.0,44.0,34.0,43.0,39.0,38.0,47.0,28.0,39.0,34.0,49.0,45.0,66.0,84.0,112.0,125.0,121.0,127.0,121.0,125.0,136.0,107.0,104.0,100.0,99.0,93.0,107.0,92.0,85.0,64.0,83.0,75.0,68.0,61.0,58.0,63.0,49.0,56.0,59.0,42.0,42.0,53.0,43.0,41.0,43.0,49.0,46.0,37.0,37.0,39.0,30.0,36.0,36.0,36.0,35.0,27.0,20.0,16.0,31.0,23.0,13.0,21.0,26.0,18.0,19.0,20.0,29.0,15.0,17.0,23.0,20.0,13.0,14.0,11.0,10.0,15.0,8.0,15.0,7.0,8.0,5.0,10.0,6.0,2.0,7.0,7.0,4.0,11.0 D81018,30.0,35.0,49.0,43.0,39.0,34.0,41.0,57.0,49.0,48.0,42.0,46.0,61.0,57.0,52.0,40.0,40.0,42.0,43.0,45.0,32.0,33.0,27.0,33.0,33.0,27.0,34.0,34.0,37.0,39.0,46.0,51.0,51.0,55.0,55.0,53.0,60.0,51.0,55.0,61.0,59.0,61.0,57.0,42.0,69.0,62.0,63.0,57.0,48.0,56.0,53.0,57.0,58.0,52.0,61.0,47.0,61.0,50.0,76.0,63.0,53.0,56.0,44.0,44.0,55.0,37.0,46.0,55.0,38.0,52.0,41.0,39.0,44.0,45.0,39.0,46.0,47.0,50.0,42.0,32.0,39.0,35.0,37.0,18.0,34.0,31.0,24.0,21.0,27.0,18.0,16.0,13.0,12.0,6.0,8.0,17.0 D81021,56.0,57.0,68.0,63.0,72.0,59.0,61.0,70.0,76.0,80.0,64.0,82.0,83.0,63.0,63.0,79.0,83.0,63.0,62.0,61.0,56.0,47.0,67.0,58.0,63.0,60.0,73.0,86.0,85.0,93.0,104.0,110.0,98.0,94.0,109.0,93.0,110.0,107.0,98.0,107.0,99.0,88.0,95.0,99.0,98.0,91.0,66.0,65.0,58.0,74.0,65.0,87.0,75.0,78.0,85.0,79.0,85.0,94.0,75.0,79.0,80.0,71.0,70.0,71.0,74.0,89.0,68.0,67.0,54.0,59.0,56.0,60.0,56.0,56.0,51.0,53.0,53.0,65.0,68.0,39.0,40.0,46.0,30.0,33.0,25.0,16.0,22.0,28.0,22.0,20.0,15.0,13.0,11.0,8.0,6.0,21.0 D81022,77.0,87.0,66.0,90.0,89.0,90.0,106.0,81.0,100.0,91.0,99.0,92.0,104.0,104.0,108.0,102.0,112.0,83.0,80.0,69.0,76.0,76.0,65.0,71.0,80.0,77.0,94.0,95.0,94.0,107.0,125.0,109.0,118.0,120.0,113.0,122.0,125.0,108.0,119.0,113.0,117.0,102.0,104.0,113.0,89.0,102.0,99.0,119.0,99.0,85.0,111.0,120.0,118.0,124.0,124.0,106.0,118.0,125.0,134.0,136.0,140.0,131.0,129.0,122.0,144.0,105.0,102.0,104.0,111.0,104.0,95.0,104.0,105.0,87.0,112.0,100.0,94.0,108.0,103.0,73.0,81.0,91.0,69.0,63.0,51.0,44.0,56.0,57.0,27.0,26.0,20.0,18.0,24.0,16.0,11.0,37.0 D81023,59.0,58.0,64.0,78.0,79.0,68.0,88.0,91.0,81.0,111.0,101.0,102.0,94.0,111.0,105.0,104.0,108.0,82.0,87.0,71.0,71.0,57.0,59.0,64.0,71.0,68.0,66.0,74.0,67.0,91.0,85.0,72.0,100.0,98.0,93.0,114.0,125.0,139.0,100.0,143.0,103.0,111.0,109.0,97.0,101.0,88.0,81.0,85.0,95.0,81.0,78.0,80.0,86.0,87.0,86.0,89.0,88.0,70.0,91.0,80.0,74.0,96.0,79.0,73.0,80.0,64.0,82.0,64.0,68.0,66.0,57.0,66.0,56.0,51.0,53.0,46.0,44.0,49.0,47.0,33.0,33.0,30.0,26.0,23.0,19.0,25.0,18.0,14.0,11.0,6.0,10.0,9.0,12.0,10.0,5.0,11.0 D81025,37.0,27.0,35.0,35.0,40.0,51.0,55.0,46.0,52.0,50.0,52.0,45.0,59.0,51.0,63.0,60.0,52.0,54.0,48.0,32.0,42.0,34.0,53.0,60.0,49.0,59.0,46.0,76.0,63.0,54.0,69.0,75.0,69.0,85.0,91.0,94.0,84.0,72.0,71.0,67.0,58.0,81.0,66.0,71.0,63.0,62.0,65.0,49.0,52.0,58.0,48.0,48.0,57.0,59.0,55.0,65.0,63.0,60.0,59.0,45.0,57.0,53.0,36.0,51.0,49.0,46.0,48.0,49.0,44.0,38.0,38.0,42.0,32.0,38.0,32.0,26.0,35.0,31.0,37.0,28.0,25.0,13.0,23.0,18.0,20.0,19.0,12.0,15.0,16.0,10.0,10.0,11.0,10.0,4.0,2.0,9.0 D81026,176.0,175.0,168.0,157.0,188.0,159.0,165.0,197.0,176.0,200.0,187.0,189.0,196.0,206.0,224.0,181.0,205.0,186.0,169.0,175.0,188.0,154.0,170.0,188.0,200.0,242.0,251.0,258.0,258.0,292.0,258.0,268.0,251.0,273.0,244.0,253.0,263.0,261.0,246.0,262.0,207.0,213.0,232.0,236.0,213.0,199.0,196.0,180.0,171.0,213.0,186.0,161.0,169.0,198.0,190.0,193.0,179.0,210.0,181.0,163.0,183.0,148.0,162.0,171.0,159.0,149.0,159.0,140.0,160.0,150.0,150.0,157.0,145.0,161.0,124.0,121.0,140.0,117.0,148.0,119.0,111.0,118.0,105.0,96.0,85.0,74.0,67.0,57.0,65.0,47.0,39.0,34.0,34.0,29.0,28.0,66.0 D81027,28.0,38.0,35.0,41.0,43.0,49.0,40.0,47.0,43.0,46.0,35.0,41.0,52.0,54.0,42.0,50.0,45.0,34.0,35.0,20.0,32.0,29.0,21.0,35.0,39.0,47.0,42.0,37.0,44.0,45.0,42.0,57.0,75.0,60.0,58.0,56.0,59.0,56.0,52.0,56.0,52.0,55.0,45.0,49.0,46.0,58.0,49.0,55.0,32.0,40.0,50.0,71.0,54.0,48.0,53.0,71.0,64.0,70.0,71.0,58.0,58.0,54.0,49.0,47.0,65.0,59.0,41.0,53.0,41.0,39.0,41.0,37.0,47.0,47.0,55.0,19.0,36.0,46.0,42.0,43.0,29.0,29.0,26.0,18.0,13.0,16.0,20.0,14.0,8.0,8.0,10.0,6.0,7.0,,4.0,14.0 D81028,38.0,58.0,55.0,51.0,60.0,63.0,66.0,63.0,70.0,75.0,89.0,87.0,92.0,84.0,72.0,75.0,80.0,92.0,62.0,57.0,47.0,55.0,43.0,67.0,75.0,64.0,54.0,50.0,65.0,53.0,66.0,56.0,64.0,81.0,66.0,79.0,86.0,79.0,79.0,81.0,94.0,92.0,91.0,90.0,94.0,76.0,92.0,91.0,104.0,86.0,99.0,87.0,93.0,116.0,90.0,92.0,88.0,102.0,86.0,77.0,86.0,93.0,85.0,61.0,82.0,80.0,75.0,79.0,60.0,55.0,78.0,70.0,66.0,76.0,59.0,70.0,66.0,84.0,84.0,48.0,56.0,48.0,52.0,44.0,39.0,35.0,47.0,39.0,34.0,33.0,27.0,21.0,26.0,22.0,15.0,59.0 D81029,61.0,71.0,59.0,73.0,91.0,72.0,74.0,77.0,90.0,88.0,89.0,94.0,92.0,87.0,80.0,91.0,85.0,54.0,56.0,56.0,56.0,50.0,42.0,54.0,60.0,62.0,85.0,73.0,97.0,87.0,88.0,107.0,110.0,114.0,105.0,102.0,116.0,97.0,116.0,126.0,109.0,123.0,93.0,111.0,103.0,102.0,81.0,90.0,90.0,64.0,82.0,78.0,86.0,92.0,82.0,88.0,88.0,76.0,72.0,87.0,80.0,83.0,100.0,78.0,82.0,77.0,71.0,60.0,52.0,65.0,59.0,52.0,48.0,58.0,60.0,65.0,53.0,60.0,70.0,43.0,52.0,37.0,38.0,33.0,29.0,31.0,21.0,25.0,16.0,18.0,16.0,10.0,11.0,7.0,12.0,23.0 D81030,47.0,57.0,56.0,71.0,60.0,69.0,65.0,67.0,81.0,76.0,73.0,53.0,74.0,77.0,90.0,66.0,82.0,72.0,60.0,61.0,46.0,48.0,48.0,71.0,64.0,62.0,64.0,65.0,72.0,74.0,79.0,72.0,104.0,83.0,102.0,103.0,97.0,93.0,90.0,89.0,98.0,103.0,123.0,96.0,94.0,81.0,98.0,79.0,94.0,93.0,107.0,89.0,104.0,95.0,111.0,97.0,110.0,99.0,124.0,101.0,107.0,98.0,107.0,117.0,109.0,93.0,80.0,103.0,99.0,108.0,87.0,97.0,87.0,86.0,88.0,74.0,101.0,114.0,97.0,69.0,92.0,59.0,61.0,59.0,63.0,57.0,59.0,39.0,39.0,32.0,27.0,15.0,12.0,16.0,14.0,30.0 D81031,83.0,93.0,100.0,101.0,88.0,123.0,137.0,114.0,117.0,134.0,126.0,141.0,156.0,111.0,128.0,136.0,120.0,127.0,100.0,89.0,104.0,105.0,105.0,91.0,123.0,114.0,104.0,116.0,115.0,128.0,138.0,167.0,160.0,160.0,188.0,165.0,167.0,177.0,152.0,179.0,168.0,159.0,148.0,160.0,154.0,155.0,148.0,111.0,142.0,140.0,132.0,137.0,148.0,154.0,150.0,113.0,120.0,122.0,131.0,124.0,138.0,105.0,104.0,122.0,113.0,90.0,102.0,114.0,97.0,92.0,94.0,92.0,84.0,96.0,87.0,72.0,99.0,83.0,72.0,56.0,51.0,55.0,52.0,30.0,51.0,30.0,36.0,31.0,23.0,18.0,9.0,19.0,15.0,10.0,5.0,11.0 D81033,19.0,20.0,21.0,32.0,19.0,24.0,29.0,22.0,24.0,33.0,31.0,25.0,27.0,39.0,33.0,38.0,30.0,26.0,27.0,23.0,15.0,25.0,27.0,20.0,16.0,19.0,30.0,20.0,33.0,22.0,32.0,21.0,35.0,32.0,34.0,24.0,27.0,37.0,22.0,33.0,35.0,34.0,33.0,34.0,31.0,30.0,28.0,25.0,39.0,33.0,40.0,40.0,48.0,37.0,30.0,36.0,43.0,35.0,25.0,37.0,45.0,50.0,40.0,35.0,20.0,32.0,24.0,33.0,21.0,27.0,34.0,39.0,22.0,37.0,23.0,30.0,26.0,28.0,38.0,24.0,17.0,18.0,19.0,10.0,13.0,19.0,8.0,11.0,6.0,5.0,2.0,3.0,4.0,2.0,9.0,7.0 D81034,66.0,86.0,81.0,78.0,80.0,83.0,80.0,83.0,71.0,87.0,95.0,99.0,119.0,122.0,103.0,113.0,107.0,131.0,112.0,85.0,81.0,66.0,88.0,102.0,109.0,98.0,94.0,112.0,111.0,126.0,113.0,129.0,105.0,136.0,122.0,134.0,134.0,113.0,125.0,113.0,113.0,112.0,117.0,118.0,130.0,132.0,100.0,114.0,126.0,125.0,121.0,113.0,120.0,140.0,136.0,127.0,120.0,128.0,106.0,115.0,124.0,129.0,131.0,116.0,107.0,111.0,92.0,114.0,92.0,95.0,116.0,123.0,122.0,106.0,113.0,94.0,119.0,111.0,126.0,86.0,107.0,80.0,82.0,64.0,58.0,48.0,52.0,42.0,46.0,37.0,27.0,29.0,21.0,22.0,23.0,39.0 D81035,37.0,32.0,38.0,33.0,32.0,41.0,54.0,54.0,49.0,65.0,70.0,76.0,56.0,89.0,64.0,60.0,61.0,68.0,73.0,43.0,27.0,39.0,49.0,37.0,38.0,43.0,33.0,35.0,45.0,52.0,52.0,48.0,37.0,58.0,55.0,48.0,53.0,61.0,64.0,47.0,67.0,65.0,69.0,63.0,71.0,81.0,79.0,81.0,84.0,69.0,71.0,72.0,81.0,76.0,73.0,66.0,60.0,87.0,68.0,69.0,92.0,71.0,86.0,64.0,67.0,58.0,71.0,46.0,64.0,60.0,53.0,50.0,48.0,60.0,56.0,45.0,49.0,66.0,69.0,49.0,41.0,48.0,34.0,27.0,30.0,27.0,26.0,25.0,25.0,18.0,13.0,10.0,15.0,9.0,4.0,13.0 D81036,20.0,17.0,24.0,25.0,24.0,33.0,29.0,36.0,14.0,31.0,39.0,27.0,24.0,40.0,33.0,36.0,33.0,36.0,28.0,22.0,19.0,23.0,9.0,27.0,12.0,22.0,22.0,22.0,19.0,27.0,24.0,27.0,44.0,36.0,29.0,33.0,37.0,28.0,33.0,27.0,38.0,39.0,31.0,49.0,28.0,42.0,27.0,26.0,31.0,32.0,29.0,45.0,48.0,43.0,38.0,32.0,33.0,34.0,28.0,38.0,40.0,33.0,41.0,30.0,36.0,38.0,30.0,27.0,37.0,22.0,27.0,22.0,22.0,22.0,27.0,28.0,28.0,32.0,33.0,19.0,30.0,24.0,21.0,12.0,12.0,11.0,12.0,7.0,6.0,6.0,5.0,4.0,6.0,5.0,2.0,6.0 D81037,18.0,23.0,27.0,20.0,22.0,19.0,13.0,24.0,19.0,18.0,27.0,19.0,25.0,26.0,23.0,25.0,20.0,33.0,103.0,235.0,246.0,185.0,179.0,222.0,232.0,164.0,160.0,157.0,172.0,158.0,138.0,121.0,116.0,81.0,103.0,85.0,82.0,67.0,65.0,58.0,58.0,48.0,47.0,51.0,48.0,29.0,33.0,49.0,36.0,36.0,49.0,38.0,41.0,39.0,34.0,19.0,33.0,31.0,36.0,33.0,37.0,26.0,26.0,33.0,22.0,28.0,19.0,19.0,27.0,21.0,21.0,28.0,25.0,18.0,20.0,16.0,21.0,20.0,23.0,18.0,12.0,19.0,13.0,12.0,7.0,11.0,9.0,5.0,4.0,5.0,10.0,5.0,3.0,3.0,1.0,4.0 D81038,25.0,20.0,19.0,24.0,27.0,20.0,21.0,27.0,23.0,32.0,31.0,40.0,44.0,40.0,39.0,48.0,46.0,57.0,52.0,31.0,36.0,32.0,40.0,31.0,29.0,27.0,35.0,18.0,38.0,30.0,37.0,33.0,37.0,24.0,26.0,30.0,40.0,40.0,37.0,39.0,39.0,41.0,28.0,35.0,36.0,42.0,43.0,50.0,51.0,54.0,63.0,68.0,69.0,57.0,79.0,68.0,82.0,62.0,61.0,65.0,66.0,71.0,75.0,75.0,54.0,66.0,71.0,48.0,41.0,40.0,56.0,50.0,36.0,42.0,45.0,43.0,53.0,37.0,41.0,33.0,37.0,35.0,28.0,25.0,25.0,22.0,18.0,16.0,13.0,13.0,11.0,9.0,7.0,4.0,4.0,10.0 D81041,20.0,21.0,24.0,31.0,30.0,24.0,39.0,51.0,42.0,44.0,38.0,50.0,54.0,48.0,47.0,43.0,46.0,47.0,37.0,30.0,17.0,22.0,25.0,28.0,27.0,39.0,30.0,31.0,22.0,33.0,30.0,29.0,25.0,29.0,42.0,31.0,41.0,38.0,43.0,47.0,52.0,49.0,50.0,46.0,61.0,51.0,58.0,37.0,55.0,51.0,54.0,63.0,45.0,55.0,58.0,52.0,52.0,54.0,71.0,49.0,73.0,44.0,50.0,34.0,53.0,32.0,43.0,31.0,41.0,27.0,32.0,40.0,40.0,38.0,29.0,33.0,34.0,36.0,38.0,27.0,30.0,24.0,28.0,25.0,17.0,18.0,11.0,12.0,12.0,9.0,9.0,11.0,4.0,5.0,1.0,7.0 D81042,46.0,64.0,47.0,55.0,56.0,55.0,49.0,56.0,68.0,50.0,63.0,56.0,67.0,56.0,68.0,68.0,67.0,40.0,41.0,25.0,28.0,34.0,19.0,38.0,58.0,58.0,56.0,56.0,67.0,72.0,70.0,75.0,89.0,89.0,76.0,78.0,109.0,99.0,84.0,62.0,87.0,76.0,79.0,70.0,71.0,90.0,71.0,67.0,68.0,58.0,56.0,67.0,46.0,51.0,66.0,60.0,54.0,58.0,47.0,69.0,56.0,47.0,43.0,47.0,51.0,33.0,36.0,31.0,42.0,47.0,43.0,31.0,30.0,39.0,35.0,31.0,57.0,44.0,42.0,34.0,38.0,27.0,23.0,17.0,23.0,21.0,26.0,18.0,20.0,24.0,11.0,16.0,15.0,7.0,4.0,26.0 D81043,200.0,236.0,251.0,285.0,285.0,296.0,305.0,330.0,334.0,344.0,312.0,322.0,385.0,342.0,333.0,354.0,356.0,346.0,267.0,233.0,182.0,222.0,231.0,261.0,259.0,260.0,280.0,301.0,290.0,303.0,346.0,337.0,349.0,382.0,385.0,394.0,415.0,416.0,379.0,376.0,408.0,394.0,414.0,429.0,410.0,455.0,462.0,368.0,387.0,382.0,425.0,383.0,396.0,443.0,420.0,403.0,405.0,389.0,423.0,434.0,364.0,384.0,419.0,396.0,349.0,338.0,335.0,302.0,329.0,298.0,287.0,339.0,340.0,299.0,331.0,286.0,345.0,395.0,369.0,235.0,255.0,235.0,225.0,188.0,127.0,186.0,159.0,122.0,121.0,110.0,88.0,73.0,66.0,55.0,52.0,115.0 D81044,63.0,43.0,61.0,55.0,63.0,59.0,73.0,72.0,83.0,71.0,87.0,85.0,68.0,75.0,78.0,68.0,88.0,75.0,60.0,67.0,69.0,68.0,75.0,86.0,110.0,124.0,109.0,147.0,143.0,121.0,129.0,142.0,104.0,132.0,127.0,119.0,117.0,127.0,129.0,113.0,104.0,106.0,119.0,92.0,125.0,121.0,85.0,82.0,94.0,82.0,58.0,83.0,78.0,77.0,73.0,67.0,76.0,87.0,69.0,69.0,67.0,87.0,52.0,54.0,57.0,49.0,63.0,49.0,51.0,53.0,46.0,41.0,58.0,43.0,45.0,54.0,34.0,32.0,44.0,36.0,39.0,29.0,23.0,32.0,27.0,21.0,21.0,27.0,24.0,23.0,19.0,14.0,16.0,13.0,16.0,32.0 D81045,41.0,44.0,42.0,45.0,44.0,47.0,43.0,56.0,63.0,54.0,51.0,58.0,60.0,60.0,58.0,55.0,60.0,62.0,47.0,29.0,27.0,46.0,41.0,48.0,42.0,47.0,40.0,57.0,62.0,62.0,51.0,69.0,78.0,75.0,78.0,54.0,59.0,83.0,56.0,59.0,79.0,58.0,72.0,69.0,64.0,76.0,74.0,57.0,55.0,61.0,60.0,73.0,64.0,77.0,78.0,80.0,64.0,66.0,82.0,75.0,80.0,77.0,71.0,77.0,76.0,54.0,66.0,58.0,78.0,44.0,70.0,58.0,64.0,53.0,66.0,71.0,71.0,69.0,62.0,65.0,55.0,42.0,45.0,30.0,28.0,31.0,23.0,27.0,17.0,12.0,18.0,14.0,7.0,11.0,9.0,18.0 D81046,94.0,103.0,102.0,118.0,87.0,113.0,99.0,138.0,131.0,142.0,133.0,139.0,138.0,126.0,131.0,106.0,109.0,109.0,90.0,67.0,70.0,64.0,69.0,90.0,89.0,94.0,96.0,109.0,134.0,116.0,137.0,166.0,136.0,133.0,170.0,172.0,161.0,173.0,157.0,154.0,154.0,156.0,123.0,160.0,152.0,119.0,103.0,108.0,100.0,106.0,106.0,79.0,126.0,110.0,131.0,117.0,98.0,117.0,119.0,125.0,115.0,126.0,113.0,113.0,120.0,84.0,85.0,89.0,92.0,85.0,90.0,88.0,106.0,64.0,84.0,71.0,72.0,84.0,82.0,55.0,59.0,54.0,57.0,35.0,36.0,32.0,50.0,46.0,29.0,27.0,18.0,21.0,17.0,16.0,9.0,17.0 D81049,46.0,60.0,65.0,68.0,59.0,71.0,52.0,71.0,64.0,46.0,56.0,58.0,69.0,67.0,84.0,74.0,76.0,75.0,70.0,47.0,46.0,49.0,61.0,50.0,64.0,60.0,68.0,59.0,85.0,62.0,83.0,85.0,92.0,91.0,88.0,92.0,83.0,86.0,87.0,77.0,95.0,85.0,77.0,61.0,78.0,85.0,90.0,70.0,77.0,73.0,106.0,55.0,81.0,80.0,66.0,68.0,100.0,70.0,70.0,58.0,64.0,78.0,69.0,71.0,66.0,71.0,65.0,69.0,60.0,57.0,63.0,68.0,56.0,64.0,65.0,85.0,57.0,70.0,76.0,49.0,58.0,51.0,49.0,44.0,32.0,25.0,41.0,22.0,18.0,17.0,10.0,9.0,11.0,8.0,8.0,13.0 D81050,72.0,86.0,73.0,101.0,102.0,97.0,91.0,92.0,101.0,98.0,91.0,92.0,102.0,102.0,85.0,88.0,92.0,84.0,85.0,56.0,51.0,55.0,62.0,93.0,83.0,79.0,118.0,120.0,130.0,133.0,150.0,143.0,131.0,156.0,141.0,138.0,147.0,154.0,140.0,167.0,125.0,130.0,126.0,132.0,122.0,115.0,82.0,107.0,103.0,90.0,97.0,114.0,106.0,116.0,104.0,102.0,102.0,91.0,113.0,115.0,96.0,112.0,125.0,91.0,102.0,91.0,92.0,102.0,82.0,82.0,76.0,71.0,66.0,73.0,74.0,83.0,70.0,70.0,89.0,44.0,53.0,57.0,52.0,41.0,43.0,32.0,44.0,34.0,36.0,23.0,20.0,20.0,9.0,18.0,7.0,26.0 D81051,44.0,43.0,52.0,44.0,42.0,50.0,47.0,47.0,47.0,59.0,66.0,54.0,64.0,63.0,62.0,73.0,49.0,56.0,44.0,36.0,33.0,31.0,42.0,37.0,45.0,43.0,53.0,55.0,52.0,44.0,64.0,57.0,53.0,68.0,67.0,64.0,65.0,64.0,65.0,68.0,60.0,70.0,62.0,66.0,66.0,66.0,55.0,42.0,64.0,64.0,71.0,64.0,74.0,63.0,79.0,83.0,71.0,58.0,76.0,76.0,58.0,73.0,72.0,64.0,73.0,59.0,72.0,57.0,59.0,56.0,45.0,53.0,60.0,41.0,37.0,42.0,58.0,47.0,55.0,39.0,47.0,28.0,29.0,25.0,24.0,21.0,20.0,19.0,10.0,13.0,15.0,15.0,7.0,6.0,4.0,18.0 D81052,41.0,45.0,48.0,41.0,44.0,36.0,33.0,44.0,43.0,50.0,51.0,68.0,50.0,43.0,55.0,49.0,52.0,51.0,47.0,39.0,48.0,40.0,36.0,34.0,59.0,42.0,42.0,59.0,55.0,50.0,54.0,62.0,66.0,49.0,52.0,61.0,60.0,56.0,48.0,44.0,59.0,71.0,48.0,74.0,56.0,67.0,42.0,60.0,53.0,55.0,51.0,59.0,64.0,74.0,64.0,66.0,72.0,77.0,89.0,79.0,64.0,67.0,73.0,67.0,70.0,69.0,78.0,65.0,63.0,54.0,59.0,59.0,61.0,64.0,63.0,61.0,54.0,75.0,57.0,57.0,56.0,57.0,49.0,30.0,36.0,24.0,28.0,34.0,24.0,26.0,19.0,9.0,13.0,15.0,7.0,13.0 D81054,25.0,59.0,48.0,57.0,57.0,50.0,47.0,56.0,60.0,62.0,61.0,63.0,72.0,67.0,84.0,93.0,111.0,140.0,159.0,192.0,212.0,282.0,291.0,264.0,334.0,273.0,306.0,325.0,241.0,293.0,247.0,194.0,234.0,197.0,195.0,206.0,180.0,191.0,139.0,150.0,131.0,145.0,113.0,139.0,112.0,122.0,111.0,117.0,115.0,92.0,81.0,91.0,78.0,94.0,100.0,82.0,68.0,65.0,81.0,71.0,81.0,56.0,58.0,58.0,58.0,52.0,54.0,59.0,45.0,57.0,49.0,40.0,49.0,51.0,46.0,31.0,35.0,49.0,41.0,32.0,31.0,36.0,22.0,25.0,16.0,25.0,18.0,15.0,11.0,13.0,11.0,10.0,10.0,10.0,4.0,13.0 D81055,16.0,16.0,16.0,21.0,15.0,24.0,26.0,38.0,33.0,38.0,30.0,41.0,39.0,39.0,45.0,29.0,53.0,39.0,32.0,26.0,18.0,14.0,20.0,27.0,19.0,20.0,24.0,20.0,22.0,27.0,19.0,33.0,23.0,31.0,23.0,26.0,30.0,33.0,24.0,35.0,45.0,39.0,32.0,41.0,39.0,44.0,37.0,43.0,44.0,37.0,50.0,49.0,63.0,43.0,58.0,35.0,29.0,32.0,37.0,40.0,42.0,37.0,41.0,40.0,40.0,35.0,35.0,28.0,36.0,39.0,29.0,30.0,40.0,46.0,33.0,39.0,29.0,49.0,30.0,34.0,39.0,26.0,33.0,22.0,23.0,24.0,20.0,22.0,14.0,12.0,11.0,15.0,7.0,6.0,8.0,18.0 D81056,22.0,28.0,20.0,17.0,25.0,15.0,24.0,20.0,29.0,25.0,22.0,34.0,20.0,27.0,43.0,34.0,30.0,35.0,33.0,31.0,45.0,41.0,44.0,50.0,59.0,69.0,72.0,58.0,66.0,75.0,77.0,87.0,91.0,81.0,64.0,76.0,74.0,49.0,58.0,61.0,49.0,39.0,42.0,56.0,40.0,40.0,51.0,28.0,49.0,43.0,36.0,49.0,46.0,40.0,43.0,35.0,38.0,45.0,37.0,39.0,32.0,24.0,35.0,26.0,25.0,23.0,17.0,19.0,21.0,20.0,15.0,17.0,19.0,14.0,12.0,8.0,21.0,13.0,17.0,7.0,16.0,14.0,11.0,6.0,11.0,9.0,7.0,6.0,4.0,4.0,1.0,4.0,3.0,,,3.0 D81057,78.0,65.0,97.0,94.0,86.0,99.0,84.0,78.0,121.0,124.0,114.0,108.0,121.0,128.0,135.0,134.0,113.0,128.0,110.0,70.0,96.0,90.0,81.0,101.0,101.0,97.0,105.0,120.0,131.0,109.0,130.0,149.0,147.0,149.0,135.0,145.0,129.0,136.0,131.0,129.0,136.0,131.0,122.0,140.0,178.0,169.0,134.0,139.0,127.0,140.0,136.0,140.0,138.0,169.0,125.0,146.0,164.0,169.0,145.0,148.0,135.0,119.0,109.0,115.0,106.0,109.0,121.0,103.0,93.0,115.0,115.0,107.0,92.0,95.0,113.0,120.0,116.0,139.0,115.0,81.0,102.0,96.0,77.0,72.0,61.0,69.0,46.0,60.0,42.0,43.0,40.0,29.0,16.0,22.0,13.0,38.0 D81058,40.0,22.0,43.0,43.0,38.0,48.0,33.0,33.0,28.0,47.0,34.0,44.0,42.0,50.0,46.0,50.0,42.0,45.0,47.0,29.0,20.0,34.0,33.0,36.0,26.0,29.0,34.0,25.0,37.0,29.0,47.0,38.0,33.0,53.0,45.0,53.0,58.0,32.0,58.0,55.0,60.0,54.0,53.0,42.0,48.0,62.0,42.0,58.0,51.0,50.0,44.0,63.0,44.0,57.0,47.0,57.0,61.0,57.0,62.0,49.0,80.0,48.0,48.0,55.0,46.0,55.0,50.0,58.0,38.0,47.0,54.0,36.0,36.0,37.0,48.0,44.0,45.0,40.0,47.0,53.0,39.0,34.0,28.0,33.0,19.0,22.0,21.0,23.0,13.0,13.0,17.0,10.0,8.0,8.0,4.0,15.0 D81059,27.0,38.0,37.0,35.0,41.0,40.0,47.0,50.0,30.0,42.0,51.0,40.0,40.0,31.0,49.0,26.0,46.0,39.0,39.0,38.0,24.0,33.0,34.0,35.0,40.0,50.0,38.0,33.0,47.0,51.0,59.0,52.0,51.0,54.0,57.0,43.0,52.0,51.0,62.0,48.0,54.0,50.0,48.0,34.0,50.0,39.0,43.0,26.0,43.0,31.0,42.0,49.0,60.0,50.0,51.0,49.0,50.0,58.0,45.0,59.0,68.0,52.0,64.0,52.0,47.0,36.0,50.0,43.0,40.0,54.0,49.0,30.0,47.0,29.0,43.0,44.0,47.0,47.0,47.0,36.0,30.0,29.0,33.0,16.0,25.0,20.0,24.0,17.0,25.0,10.0,11.0,8.0,6.0,3.0,1.0,9.0 D81060,24.0,40.0,51.0,43.0,48.0,43.0,43.0,41.0,42.0,36.0,38.0,38.0,38.0,41.0,49.0,33.0,37.0,36.0,36.0,26.0,38.0,39.0,23.0,34.0,42.0,46.0,42.0,33.0,39.0,41.0,44.0,41.0,50.0,44.0,51.0,70.0,58.0,59.0,41.0,49.0,53.0,52.0,38.0,48.0,34.0,39.0,47.0,39.0,34.0,41.0,45.0,54.0,35.0,49.0,57.0,64.0,55.0,71.0,60.0,50.0,67.0,74.0,59.0,55.0,65.0,56.0,65.0,61.0,46.0,47.0,49.0,49.0,44.0,30.0,40.0,33.0,50.0,43.0,58.0,48.0,36.0,40.0,29.0,29.0,27.0,6.0,19.0,15.0,12.0,6.0,9.0,8.0,8.0,8.0,7.0,15.0 D81061,46.0,49.0,51.0,50.0,68.0,62.0,49.0,76.0,74.0,59.0,52.0,65.0,75.0,57.0,75.0,61.0,70.0,64.0,50.0,58.0,49.0,52.0,45.0,48.0,69.0,62.0,72.0,79.0,71.0,86.0,76.0,75.0,87.0,100.0,95.0,88.0,80.0,85.0,92.0,91.0,75.0,74.0,74.0,75.0,81.0,68.0,63.0,75.0,63.0,70.0,58.0,74.0,73.0,86.0,84.0,89.0,95.0,92.0,97.0,89.0,92.0,92.0,100.0,77.0,73.0,60.0,70.0,63.0,62.0,70.0,60.0,67.0,52.0,52.0,69.0,62.0,77.0,62.0,50.0,43.0,42.0,41.0,40.0,46.0,30.0,25.0,35.0,24.0,24.0,21.0,16.0,20.0,14.0,10.0,9.0,25.0 D81062,40.0,31.0,25.0,45.0,54.0,42.0,34.0,54.0,43.0,44.0,51.0,54.0,48.0,38.0,42.0,40.0,50.0,54.0,41.0,28.0,34.0,27.0,30.0,33.0,30.0,32.0,37.0,35.0,33.0,34.0,36.0,51.0,54.0,52.0,59.0,51.0,43.0,51.0,51.0,55.0,59.0,36.0,47.0,55.0,46.0,49.0,60.0,41.0,54.0,34.0,69.0,57.0,53.0,71.0,65.0,59.0,73.0,60.0,68.0,51.0,68.0,53.0,56.0,65.0,64.0,78.0,49.0,59.0,32.0,48.0,49.0,45.0,51.0,45.0,48.0,57.0,42.0,44.0,52.0,33.0,46.0,38.0,22.0,15.0,15.0,20.0,9.0,17.0,8.0,8.0,5.0,2.0,8.0,4.0,5.0,9.0 D81064,23.0,27.0,34.0,23.0,19.0,40.0,35.0,38.0,39.0,35.0,31.0,29.0,39.0,36.0,38.0,36.0,31.0,27.0,30.0,30.0,27.0,26.0,26.0,35.0,29.0,35.0,43.0,44.0,42.0,44.0,39.0,37.0,43.0,43.0,54.0,53.0,42.0,34.0,34.0,38.0,37.0,40.0,42.0,38.0,53.0,41.0,33.0,27.0,26.0,29.0,38.0,46.0,35.0,45.0,45.0,51.0,40.0,47.0,46.0,37.0,63.0,59.0,50.0,47.0,36.0,50.0,40.0,49.0,45.0,61.0,47.0,53.0,50.0,40.0,38.0,48.0,42.0,52.0,40.0,28.0,24.0,33.0,38.0,33.0,24.0,17.0,24.0,19.0,15.0,12.0,14.0,18.0,5.0,10.0,7.0,21.0 D81065,47.0,43.0,50.0,53.0,53.0,52.0,52.0,48.0,55.0,55.0,57.0,50.0,60.0,61.0,49.0,49.0,59.0,68.0,49.0,58.0,48.0,48.0,35.0,41.0,59.0,56.0,54.0,43.0,65.0,64.0,64.0,56.0,68.0,65.0,59.0,47.0,67.0,71.0,60.0,72.0,70.0,58.0,48.0,50.0,45.0,46.0,40.0,41.0,45.0,34.0,28.0,36.0,41.0,39.0,43.0,27.0,41.0,38.0,25.0,30.0,33.0,32.0,23.0,26.0,19.0,25.0,14.0,26.0,14.0,17.0,10.0,24.0,16.0,13.0,18.0,11.0,11.0,8.0,19.0,14.0,10.0,10.0,4.0,14.0,4.0,8.0,5.0,4.0,4.0,6.0,1.0,3.0,6.0,,2.0,2.0 D81066,37.0,40.0,38.0,46.0,35.0,48.0,51.0,47.0,71.0,46.0,69.0,66.0,69.0,67.0,66.0,81.0,71.0,60.0,56.0,32.0,41.0,36.0,45.0,80.0,94.0,127.0,142.0,130.0,89.0,135.0,110.0,110.0,118.0,136.0,116.0,107.0,120.0,89.0,113.0,71.0,104.0,83.0,87.0,88.0,74.0,80.0,77.0,60.0,79.0,57.0,49.0,64.0,64.0,51.0,67.0,61.0,45.0,71.0,55.0,54.0,54.0,57.0,46.0,51.0,48.0,40.0,39.0,32.0,47.0,45.0,42.0,41.0,49.0,25.0,43.0,24.0,31.0,43.0,29.0,21.0,32.0,24.0,29.0,24.0,19.0,23.0,26.0,17.0,23.0,14.0,16.0,13.0,9.0,8.0,8.0,19.0 D81070,45.0,35.0,33.0,38.0,31.0,40.0,45.0,23.0,35.0,52.0,46.0,41.0,49.0,50.0,47.0,53.0,100.0,159.0,174.0,126.0,112.0,121.0,136.0,164.0,157.0,115.0,129.0,103.0,113.0,106.0,91.0,113.0,85.0,97.0,110.0,101.0,102.0,76.0,80.0,91.0,93.0,56.0,68.0,70.0,66.0,76.0,57.0,72.0,62.0,58.0,63.0,54.0,57.0,58.0,52.0,36.0,51.0,40.0,42.0,51.0,39.0,32.0,38.0,33.0,25.0,24.0,32.0,23.0,22.0,18.0,21.0,17.0,20.0,20.0,14.0,13.0,17.0,21.0,10.0,5.0,13.0,11.0,11.0,10.0,12.0,4.0,7.0,4.0,6.0,3.0,3.0,1.0,1.0,1.0,1.0,6.0 D81073,23.0,25.0,28.0,33.0,36.0,42.0,36.0,46.0,57.0,50.0,40.0,54.0,60.0,38.0,44.0,42.0,31.0,42.0,42.0,41.0,37.0,30.0,27.0,28.0,25.0,38.0,34.0,33.0,43.0,43.0,44.0,46.0,49.0,42.0,36.0,46.0,44.0,44.0,52.0,60.0,44.0,47.0,40.0,38.0,47.0,48.0,44.0,27.0,40.0,27.0,32.0,32.0,19.0,39.0,31.0,30.0,39.0,34.0,30.0,30.0,28.0,20.0,35.0,14.0,28.0,16.0,25.0,18.0,19.0,20.0,20.0,19.0,15.0,20.0,15.0,19.0,11.0,24.0,22.0,18.0,10.0,12.0,11.0,11.0,6.0,9.0,8.0,6.0,1.0,3.0,1.0,2.0,,,4.0,3.0 D81078,12.0,25.0,10.0,21.0,18.0,19.0,24.0,18.0,31.0,24.0,27.0,25.0,31.0,30.0,23.0,14.0,24.0,19.0,29.0,24.0,20.0,18.0,32.0,33.0,48.0,40.0,39.0,41.0,35.0,32.0,42.0,36.0,29.0,37.0,36.0,31.0,31.0,36.0,34.0,39.0,34.0,34.0,39.0,23.0,26.0,35.0,33.0,23.0,34.0,29.0,30.0,21.0,25.0,11.0,17.0,19.0,24.0,21.0,29.0,14.0,25.0,26.0,27.0,24.0,25.0,21.0,22.0,24.0,20.0,23.0,19.0,26.0,21.0,16.0,17.0,19.0,18.0,20.0,19.0,11.0,12.0,14.0,6.0,3.0,4.0,10.0,7.0,6.0,10.0,7.0,3.0,,3.0,2.0,2.0,5.0 D81081,16.0,22.0,18.0,22.0,18.0,25.0,20.0,23.0,21.0,31.0,22.0,22.0,23.0,35.0,19.0,20.0,26.0,18.0,19.0,23.0,25.0,17.0,31.0,15.0,24.0,33.0,20.0,24.0,22.0,29.0,26.0,30.0,24.0,33.0,27.0,39.0,26.0,35.0,26.0,28.0,31.0,29.0,34.0,42.0,43.0,32.0,37.0,37.0,25.0,30.0,44.0,29.0,43.0,43.0,44.0,45.0,50.0,28.0,43.0,58.0,47.0,44.0,51.0,47.0,53.0,40.0,51.0,39.0,45.0,35.0,41.0,35.0,36.0,40.0,28.0,41.0,47.0,43.0,37.0,23.0,32.0,22.0,18.0,18.0,13.0,16.0,13.0,9.0,11.0,4.0,4.0,5.0,4.0,2.0,,7.0 D81082,29.0,43.0,39.0,37.0,31.0,40.0,38.0,36.0,35.0,48.0,38.0,45.0,47.0,43.0,33.0,43.0,49.0,40.0,41.0,30.0,35.0,34.0,25.0,48.0,36.0,38.0,46.0,49.0,44.0,57.0,47.0,43.0,56.0,62.0,63.0,75.0,54.0,55.0,53.0,53.0,49.0,59.0,42.0,44.0,43.0,45.0,43.0,44.0,46.0,43.0,51.0,39.0,62.0,57.0,55.0,65.0,61.0,56.0,73.0,63.0,64.0,56.0,65.0,55.0,45.0,44.0,43.0,42.0,35.0,29.0,42.0,30.0,41.0,36.0,40.0,43.0,41.0,42.0,48.0,35.0,18.0,27.0,24.0,19.0,21.0,21.0,19.0,14.0,10.0,8.0,10.0,7.0,2.0,4.0,2.0,8.0 D81084,65.0,76.0,79.0,85.0,83.0,88.0,96.0,102.0,95.0,95.0,95.0,69.0,102.0,97.0,85.0,77.0,81.0,69.0,69.0,52.0,44.0,32.0,43.0,55.0,51.0,43.0,51.0,50.0,63.0,93.0,88.0,96.0,96.0,122.0,104.0,117.0,116.0,118.0,113.0,127.0,118.0,130.0,105.0,119.0,85.0,96.0,106.0,86.0,77.0,96.0,75.0,76.0,92.0,69.0,76.0,64.0,61.0,82.0,63.0,57.0,45.0,56.0,54.0,58.0,47.0,57.0,47.0,47.0,52.0,41.0,52.0,43.0,34.0,31.0,37.0,35.0,32.0,51.0,40.0,25.0,28.0,27.0,34.0,16.0,13.0,13.0,14.0,14.0,8.0,6.0,1.0,9.0,4.0,7.0,2.0,8.0 D81085,37.0,33.0,21.0,43.0,29.0,40.0,29.0,40.0,46.0,54.0,49.0,59.0,63.0,48.0,60.0,56.0,42.0,40.0,38.0,30.0,30.0,29.0,40.0,38.0,25.0,34.0,22.0,52.0,43.0,43.0,47.0,39.0,50.0,45.0,49.0,52.0,55.0,39.0,58.0,52.0,56.0,71.0,55.0,57.0,54.0,52.0,54.0,51.0,40.0,58.0,61.0,66.0,71.0,63.0,64.0,55.0,57.0,64.0,66.0,47.0,52.0,51.0,45.0,47.0,50.0,34.0,42.0,36.0,38.0,25.0,28.0,32.0,32.0,36.0,39.0,27.0,33.0,29.0,32.0,25.0,33.0,17.0,28.0,13.0,9.0,16.0,17.0,11.0,9.0,5.0,7.0,3.0,3.0,3.0,3.0,2.0 D81086,29.0,36.0,30.0,36.0,37.0,40.0,39.0,40.0,42.0,38.0,44.0,34.0,43.0,46.0,52.0,51.0,48.0,47.0,42.0,40.0,46.0,35.0,36.0,52.0,66.0,78.0,59.0,56.0,56.0,60.0,48.0,74.0,63.0,60.0,70.0,72.0,79.0,67.0,70.0,62.0,63.0,59.0,67.0,56.0,61.0,71.0,62.0,51.0,49.0,49.0,38.0,49.0,43.0,46.0,42.0,27.0,45.0,48.0,43.0,32.0,44.0,35.0,43.0,35.0,33.0,43.0,37.0,43.0,23.0,27.0,31.0,26.0,27.0,25.0,30.0,14.0,22.0,22.0,28.0,14.0,21.0,13.0,14.0,20.0,13.0,14.0,12.0,6.0,7.0,4.0,4.0,4.0,8.0,2.0,1.0,17.0 D81603,24.0,23.0,28.0,42.0,35.0,30.0,39.0,38.0,44.0,43.0,44.0,48.0,48.0,45.0,51.0,42.0,39.0,43.0,43.0,30.0,28.0,37.0,36.0,29.0,35.0,36.0,44.0,38.0,44.0,38.0,43.0,46.0,52.0,60.0,45.0,38.0,58.0,55.0,50.0,52.0,56.0,51.0,53.0,40.0,40.0,57.0,53.0,37.0,47.0,33.0,40.0,40.0,55.0,58.0,51.0,54.0,50.0,64.0,76.0,44.0,59.0,43.0,53.0,48.0,42.0,50.0,38.0,38.0,32.0,38.0,40.0,35.0,31.0,32.0,30.0,41.0,35.0,43.0,41.0,43.0,37.0,27.0,29.0,20.0,19.0,23.0,11.0,23.0,10.0,7.0,21.0,4.0,3.0,4.0,3.0,8.0 D81606,48.0,59.0,59.0,79.0,67.0,63.0,67.0,78.0,65.0,69.0,90.0,69.0,89.0,79.0,58.0,87.0,72.0,65.0,64.0,55.0,53.0,60.0,46.0,52.0,82.0,67.0,66.0,70.0,69.0,63.0,73.0,75.0,76.0,105.0,87.0,98.0,105.0,113.0,87.0,72.0,102.0,90.0,109.0,72.0,93.0,86.0,88.0,84.0,79.0,77.0,94.0,97.0,89.0,92.0,95.0,101.0,103.0,92.0,104.0,108.0,81.0,105.0,95.0,92.0,95.0,96.0,97.0,87.0,74.0,73.0,79.0,85.0,68.0,76.0,68.0,60.0,59.0,65.0,66.0,46.0,61.0,44.0,43.0,31.0,32.0,38.0,24.0,23.0,15.0,14.0,10.0,9.0,15.0,9.0,5.0,22.0 D81607,18.0,20.0,16.0,16.0,23.0,23.0,18.0,28.0,17.0,30.0,25.0,23.0,20.0,25.0,21.0,16.0,24.0,17.0,18.0,17.0,11.0,10.0,12.0,15.0,10.0,11.0,20.0,15.0,14.0,16.0,16.0,19.0,20.0,24.0,31.0,33.0,29.0,28.0,23.0,33.0,24.0,28.0,21.0,29.0,30.0,30.0,27.0,27.0,35.0,31.0,23.0,24.0,23.0,24.0,24.0,22.0,29.0,25.0,27.0,17.0,20.0,19.0,22.0,30.0,13.0,23.0,21.0,15.0,19.0,14.0,16.0,22.0,17.0,16.0,9.0,16.0,17.0,16.0,13.0,16.0,8.0,7.0,13.0,9.0,5.0,7.0,11.0,5.0,6.0,3.0,1.0,2.0,4.0,1.0,1.0,3.0 D81611,49.0,54.0,57.0,76.0,53.0,78.0,57.0,74.0,79.0,71.0,84.0,89.0,99.0,80.0,85.0,80.0,88.0,80.0,83.0,59.0,54.0,54.0,51.0,66.0,60.0,63.0,66.0,79.0,85.0,74.0,79.0,100.0,94.0,99.0,91.0,98.0,67.0,82.0,84.0,80.0,79.0,83.0,80.0,76.0,89.0,84.0,78.0,75.0,77.0,82.0,71.0,89.0,95.0,103.0,95.0,128.0,93.0,93.0,79.0,119.0,109.0,111.0,80.0,87.0,93.0,89.0,80.0,72.0,75.0,83.0,81.0,72.0,60.0,72.0,79.0,84.0,60.0,85.0,90.0,64.0,49.0,40.0,46.0,48.0,44.0,37.0,27.0,31.0,22.0,21.0,13.0,8.0,8.0,6.0,9.0,25.0 D81612,16.0,18.0,17.0,29.0,25.0,13.0,35.0,15.0,26.0,30.0,14.0,29.0,27.0,30.0,32.0,29.0,32.0,23.0,22.0,15.0,19.0,22.0,25.0,15.0,29.0,33.0,29.0,27.0,34.0,39.0,38.0,35.0,35.0,27.0,29.0,39.0,30.0,36.0,30.0,39.0,40.0,38.0,35.0,37.0,36.0,34.0,33.0,46.0,32.0,37.0,27.0,36.0,32.0,43.0,39.0,32.0,33.0,39.0,43.0,26.0,40.0,35.0,34.0,29.0,18.0,26.0,23.0,31.0,21.0,25.0,29.0,32.0,19.0,25.0,17.0,25.0,18.0,21.0,26.0,19.0,21.0,16.0,11.0,14.0,10.0,12.0,15.0,6.0,13.0,5.0,6.0,3.0,3.0,3.0,2.0,5.0 D81615,69.0,85.0,94.0,81.0,74.0,80.0,78.0,69.0,73.0,54.0,84.0,82.0,70.0,75.0,71.0,62.0,66.0,58.0,66.0,52.0,40.0,47.0,55.0,65.0,77.0,97.0,99.0,99.0,85.0,106.0,101.0,116.0,140.0,132.0,128.0,110.0,122.0,118.0,91.0,101.0,111.0,98.0,89.0,84.0,94.0,84.0,77.0,69.0,67.0,68.0,69.0,60.0,75.0,59.0,72.0,57.0,68.0,59.0,58.0,54.0,77.0,72.0,54.0,45.0,50.0,44.0,46.0,48.0,41.0,30.0,47.0,43.0,25.0,39.0,34.0,31.0,42.0,30.0,33.0,39.0,26.0,24.0,21.0,17.0,14.0,19.0,26.0,18.0,17.0,16.0,8.0,13.0,5.0,4.0,4.0,9.0 D81618,8.0,13.0,17.0,12.0,9.0,12.0,18.0,30.0,26.0,21.0,19.0,29.0,24.0,34.0,22.0,28.0,25.0,31.0,24.0,15.0,19.0,19.0,17.0,13.0,14.0,13.0,20.0,16.0,16.0,19.0,23.0,20.0,14.0,21.0,33.0,26.0,33.0,26.0,26.0,27.0,29.0,30.0,38.0,27.0,24.0,26.0,23.0,22.0,30.0,19.0,16.0,30.0,18.0,24.0,21.0,29.0,26.0,25.0,16.0,23.0,25.0,18.0,26.0,19.0,29.0,22.0,10.0,21.0,13.0,9.0,14.0,10.0,16.0,17.0,10.0,21.0,12.0,18.0,15.0,12.0,12.0,4.0,10.0,5.0,7.0,3.0,2.0,3.0,3.0,8.0,3.0,2.0,1.0,,1.0,3.0 D81622,73.0,65.0,86.0,85.0,103.0,86.0,85.0,100.0,85.0,109.0,102.0,97.0,105.0,107.0,86.0,103.0,92.0,95.0,81.0,67.0,61.0,65.0,89.0,71.0,78.0,95.0,100.0,110.0,100.0,110.0,106.0,101.0,115.0,136.0,134.0,103.0,132.0,123.0,130.0,129.0,118.0,119.0,102.0,104.0,82.0,76.0,83.0,84.0,87.0,73.0,88.0,80.0,79.0,92.0,98.0,96.0,81.0,102.0,101.0,73.0,93.0,72.0,101.0,84.0,86.0,85.0,56.0,56.0,57.0,72.0,45.0,42.0,45.0,49.0,43.0,39.0,55.0,53.0,51.0,34.0,34.0,29.0,34.0,19.0,30.0,15.0,19.0,18.0,18.0,16.0,22.0,16.0,17.0,7.0,9.0,14.0 D81625,128.0,175.0,170.0,204.0,190.0,205.0,242.0,260.0,253.0,232.0,236.0,243.0,259.0,225.0,210.0,251.0,223.0,224.0,220.0,154.0,178.0,199.0,158.0,187.0,214.0,222.0,238.0,249.0,241.0,267.0,300.0,305.0,278.0,344.0,302.0,324.0,281.0,315.0,269.0,288.0,292.0,276.0,257.0,231.0,241.0,225.0,196.0,197.0,175.0,197.0,160.0,181.0,185.0,177.0,190.0,172.0,156.0,148.0,150.0,139.0,151.0,141.0,125.0,125.0,135.0,125.0,116.0,91.0,93.0,87.0,64.0,74.0,61.0,42.0,42.0,55.0,40.0,32.0,32.0,30.0,22.0,15.0,15.0,14.0,22.0,20.0,20.0,6.0,13.0,8.0,6.0,2.0,5.0,2.0,4.0,3.0 D81629,25.0,32.0,32.0,23.0,27.0,32.0,32.0,29.0,39.0,35.0,44.0,40.0,65.0,45.0,56.0,54.0,46.0,38.0,43.0,35.0,42.0,32.0,43.0,34.0,30.0,27.0,37.0,28.0,30.0,37.0,38.0,47.0,26.0,48.0,52.0,49.0,49.0,57.0,63.0,52.0,62.0,52.0,41.0,32.0,42.0,47.0,34.0,37.0,36.0,35.0,34.0,37.0,39.0,42.0,30.0,37.0,28.0,28.0,34.0,30.0,29.0,30.0,23.0,33.0,23.0,31.0,37.0,27.0,35.0,25.0,26.0,21.0,34.0,17.0,23.0,19.0,22.0,23.0,29.0,15.0,17.0,12.0,17.0,10.0,4.0,9.0,9.0,11.0,5.0,9.0,5.0,3.0,5.0,1.0,1.0,3.0 D81630,75.0,72.0,71.0,83.0,96.0,90.0,86.0,117.0,111.0,102.0,119.0,119.0,108.0,124.0,103.0,98.0,115.0,139.0,88.0,66.0,65.0,61.0,57.0,63.0,75.0,72.0,72.0,88.0,80.0,96.0,87.0,92.0,121.0,106.0,139.0,117.0,120.0,135.0,130.0,121.0,127.0,131.0,116.0,105.0,138.0,109.0,115.0,95.0,88.0,86.0,77.0,80.0,79.0,65.0,55.0,65.0,44.0,53.0,48.0,43.0,35.0,35.0,43.0,35.0,26.0,28.0,29.0,20.0,22.0,22.0,27.0,20.0,21.0,16.0,15.0,16.0,14.0,17.0,20.0,20.0,12.0,8.0,9.0,13.0,8.0,10.0,13.0,8.0,12.0,18.0,9.0,6.0,7.0,3.0,13.0,23.0 D81631,81.0,103.0,91.0,102.0,117.0,104.0,115.0,123.0,112.0,126.0,117.0,105.0,137.0,127.0,114.0,114.0,146.0,147.0,121.0,132.0,115.0,116.0,83.0,99.0,118.0,107.0,123.0,120.0,112.0,115.0,125.0,117.0,133.0,122.0,115.0,144.0,112.0,135.0,143.0,110.0,117.0,114.0,107.0,87.0,93.0,104.0,90.0,86.0,84.0,75.0,67.0,52.0,54.0,65.0,69.0,66.0,48.0,55.0,44.0,62.0,46.0,36.0,37.0,30.0,41.0,33.0,30.0,29.0,22.0,23.0,15.0,25.0,29.0,17.0,19.0,14.0,15.0,13.0,8.0,12.0,9.0,12.0,8.0,11.0,5.0,7.0,7.0,8.0,3.0,4.0,2.0,2.0,2.0,1.0,4.0,4.0 D81633,57.0,45.0,65.0,66.0,74.0,58.0,68.0,93.0,76.0,68.0,96.0,84.0,94.0,86.0,84.0,94.0,96.0,71.0,64.0,81.0,66.0,50.0,56.0,64.0,57.0,57.0,85.0,94.0,87.0,73.0,86.0,103.0,80.0,100.0,107.0,95.0,114.0,94.0,110.0,92.0,99.0,105.0,80.0,86.0,96.0,88.0,71.0,87.0,91.0,78.0,63.0,59.0,69.0,74.0,79.0,73.0,62.0,65.0,61.0,55.0,48.0,48.0,48.0,41.0,43.0,49.0,33.0,30.0,24.0,39.0,32.0,26.0,18.0,24.0,28.0,21.0,24.0,29.0,33.0,20.0,21.0,18.0,15.0,12.0,25.0,21.0,12.0,10.0,9.0,13.0,6.0,6.0,6.0,10.0,10.0,17.0 D81637,60.0,67.0,65.0,87.0,85.0,90.0,105.0,99.0,135.0,143.0,132.0,149.0,170.0,132.0,164.0,154.0,139.0,157.0,114.0,80.0,91.0,59.0,66.0,60.0,60.0,61.0,45.0,58.0,54.0,77.0,76.0,85.0,73.0,94.0,119.0,120.0,107.0,118.0,142.0,160.0,142.0,171.0,146.0,148.0,170.0,153.0,135.0,138.0,116.0,119.0,113.0,106.0,90.0,100.0,94.0,82.0,68.0,66.0,46.0,45.0,50.0,48.0,50.0,40.0,39.0,25.0,24.0,22.0,33.0,19.0,21.0,14.0,25.0,14.0,21.0,14.0,17.0,32.0,27.0,14.0,13.0,14.0,17.0,16.0,9.0,10.0,7.0,14.0,10.0,6.0,3.0,8.0,6.0,2.0,,6.0 D81645,18.0,19.0,15.0,16.0,18.0,25.0,15.0,21.0,19.0,19.0,20.0,14.0,20.0,23.0,23.0,16.0,22.0,19.0,25.0,15.0,17.0,15.0,16.0,13.0,19.0,18.0,28.0,27.0,26.0,26.0,25.0,21.0,26.0,15.0,16.0,20.0,27.0,31.0,24.0,21.0,17.0,22.0,23.0,22.0,13.0,13.0,18.0,22.0,18.0,21.0,10.0,18.0,13.0,15.0,7.0,12.0,10.0,13.0,7.0,13.0,10.0,8.0,9.0,9.0,12.0,10.0,8.0,15.0,9.0,8.0,5.0,8.0,11.0,9.0,7.0,11.0,9.0,6.0,9.0,3.0,2.0,3.0,1.0,5.0,1.0,1.0,1.0,3.0,2.0,2.0,3.0,7.0,,1.0,1.0,3.0 E82132,32.0,35.0,38.0,31.0,43.0,38.0,42.0,42.0,44.0,48.0,33.0,41.0,25.0,34.0,33.0,29.0,34.0,36.0,31.0,29.0,21.0,25.0,32.0,25.0,30.0,38.0,43.0,34.0,45.0,44.0,51.0,47.0,40.0,47.0,56.0,45.0,50.0,49.0,40.0,44.0,31.0,53.0,42.0,40.0,44.0,50.0,36.0,34.0,32.0,35.0,46.0,39.0,39.0,55.0,37.0,45.0,37.0,38.0,41.0,38.0,39.0,39.0,35.0,38.0,37.0,35.0,29.0,22.0,19.0,24.0,30.0,24.0,19.0,28.0,27.0,26.0,19.0,27.0,24.0,22.0,15.0,22.0,12.0,20.0,19.0,14.0,14.0,13.0,8.0,4.0,7.0,5.0,5.0,3.0,5.0,4.0 K83017,26.0,32.0,49.0,32.0,49.0,51.0,43.0,52.0,51.0,78.0,48.0,60.0,59.0,70.0,74.0,64.0,46.0,48.0,58.0,32.0,23.0,33.0,28.0,40.0,31.0,44.0,40.0,46.0,43.0,31.0,49.0,60.0,47.0,57.0,68.0,66.0,59.0,80.0,52.0,59.0,59.0,78.0,70.0,67.0,82.0,77.0,60.0,65.0,67.0,77.0,73.0,79.0,67.0,85.0,69.0,89.0,79.0,61.0,88.0,111.0,115.0,104.0,102.0,95.0,69.0,78.0,81.0,100.0,63.0,66.0,71.0,68.0,73.0,63.0,56.0,60.0,77.0,79.0,64.0,45.0,51.0,37.0,33.0,33.0,22.0,28.0,23.0,31.0,17.0,19.0,12.0,11.0,17.0,9.0,9.0,24.0 Y00056,,,,,,,,,,,,,,,,,,,,,1.0,,1.0,2.0,1.0,2.0,2.0,1.0,1.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,1.0,4.0,5.0,2.0,4.0,4.0,2.0,2.0,2.0,7.0,3.0,1.0,7.0,4.0,4.0,4.0,3.0,4.0,2.0,3.0,2.0,4.0,4.0,,,2.0,,3.0,,,1.0,1.0,1.0,,,,,,,,1.0,,,,,,,,,,,,,,,,,,, Y00185,44.0,40.0,54.0,60.0,50.0,59.0,54.0,81.0,68.0,72.0,80.0,83.0,87.0,73.0,85.0,79.0,71.0,71.0,65.0,50.0,44.0,47.0,47.0,49.0,48.0,44.0,50.0,57.0,60.0,74.0,83.0,80.0,74.0,78.0,82.0,85.0,106.0,88.0,81.0,100.0,89.0,99.0,99.0,111.0,111.0,111.0,98.0,102.0,98.0,102.0,99.0,95.0,85.0,91.0,96.0,89.0,79.0,86.0,79.0,77.0,71.0,71.0,63.0,57.0,64.0,34.0,43.0,48.0,36.0,45.0,45.0,44.0,54.0,43.0,41.0,35.0,40.0,47.0,38.0,37.0,37.0,29.0,24.0,17.0,22.0,26.0,11.0,16.0,18.0,12.0,11.0,8.0,8.0,7.0,6.0,20.0 Y00486,37.0,32.0,53.0,44.0,35.0,52.0,46.0,64.0,55.0,58.0,66.0,52.0,74.0,57.0,57.0,68.0,61.0,47.0,67.0,36.0,33.0,29.0,47.0,39.0,43.0,32.0,38.0,38.0,38.0,42.0,52.0,48.0,64.0,59.0,62.0,59.0,64.0,69.0,71.0,86.0,71.0,58.0,65.0,73.0,68.0,62.0,55.0,50.0,65.0,59.0,54.0,52.0,36.0,47.0,45.0,44.0,37.0,36.0,32.0,43.0,40.0,40.0,39.0,29.0,22.0,24.0,28.0,31.0,21.0,18.0,24.0,24.0,14.0,15.0,7.0,13.0,23.0,9.0,17.0,10.0,14.0,7.0,14.0,11.0,7.0,13.0,10.0,6.0,8.0,3.0,,7.0,3.0,3.0,1.0,7.0 Y02769,50.0,59.0,62.0,58.0,50.0,61.0,43.0,64.0,65.0,71.0,64.0,47.0,54.0,48.0,42.0,41.0,43.0,34.0,31.0,21.0,15.0,34.0,33.0,45.0,56.0,55.0,72.0,71.0,81.0,72.0,84.0,85.0,110.0,98.0,90.0,105.0,97.0,102.0,78.0,92.0,85.0,68.0,67.0,77.0,59.0,53.0,60.0,47.0,48.0,47.0,52.0,38.0,46.0,52.0,41.0,34.0,33.0,41.0,34.0,36.0,41.0,37.0,32.0,39.0,33.0,31.0,20.0,27.0,25.0,25.0,18.0,30.0,13.0,19.0,21.0,19.0,21.0,22.0,30.0,11.0,13.0,9.0,11.0,17.0,7.0,6.0,11.0,10.0,3.0,5.0,3.0,5.0,6.0,4.0,3.0,3.0 Y07025,33.0,33.0,35.0,42.0,32.0,31.0,43.0,49.0,49.0,49.0,50.0,60.0,49.0,53.0,69.0,67.0,52.0,48.0,48.0,36.0,58.0,40.0,40.0,46.0,40.0,45.0,42.0,46.0,49.0,46.0,54.0,58.0,56.0,49.0,57.0,59.0,63.0,55.0,59.0,53.0,69.0,62.0,52.0,52.0,69.0,54.0,50.0,59.0,60.0,60.0,47.0,59.0,47.0,57.0,48.0,58.0,69.0,47.0,66.0,40.0,58.0,56.0,47.0,48.0,38.0,45.0,27.0,36.0,36.0,38.0,38.0,31.0,33.0,39.0,28.0,24.0,29.0,20.0,29.0,22.0,12.0,12.0,25.0,12.0,14.0,14.0,14.0,12.0,11.0,9.0,8.0,10.0,11.0,5.0,10.0,11.0 Y07057,62.0,51.0,49.0,67.0,64.0,61.0,63.0,71.0,83.0,79.0,78.0,103.0,104.0,78.0,93.0,95.0,94.0,72.0,76.0,61.0,56.0,60.0,38.0,54.0,66.0,51.0,63.0,69.0,83.0,89.0,64.0,85.0,110.0,98.0,102.0,121.0,122.0,111.0,98.0,114.0,99.0,112.0,76.0,105.0,71.0,75.0,76.0,91.0,65.0,59.0,58.0,74.0,64.0,60.0,65.0,65.0,68.0,53.0,62.0,60.0,63.0,58.0,65.0,73.0,57.0,65.0,54.0,53.0,54.0,54.0,39.0,59.0,60.0,58.0,45.0,52.0,61.0,58.0,48.0,32.0,36.0,33.0,26.0,26.0,27.0,19.0,18.0,18.0,15.0,4.0,11.0,9.0,10.0,6.0,7.0,12.0 Y07059,65.0,89.0,87.0,107.0,100.0,126.0,105.0,134.0,142.0,138.0,133.0,110.0,147.0,140.0,136.0,108.0,130.0,127.0,94.0,100.0,77.0,99.0,69.0,79.0,89.0,96.0,115.0,117.0,98.0,120.0,93.0,117.0,146.0,137.0,152.0,139.0,150.0,156.0,175.0,159.0,162.0,156.0,170.0,149.0,139.0,151.0,138.0,132.0,122.0,112.0,109.0,126.0,112.0,122.0,109.0,107.0,120.0,107.0,137.0,140.0,111.0,109.0,94.0,126.0,96.0,84.0,105.0,112.0,96.0,92.0,98.0,105.0,73.0,100.0,82.0,59.0,55.0,80.0,78.0,72.0,58.0,37.0,45.0,33.0,40.0,33.0,33.0,17.0,27.0,26.0,22.0,19.0,16.0,15.0,6.0,28.0 Y07060,87.0,103.0,107.0,118.0,109.0,104.0,150.0,147.0,158.0,158.0,156.0,139.0,153.0,153.0,144.0,137.0,144.0,146.0,138.0,135.0,128.0,114.0,116.0,139.0,139.0,144.0,172.0,172.0,183.0,187.0,193.0,214.0,222.0,230.0,239.0,217.0,203.0,225.0,216.0,197.0,183.0,189.0,155.0,164.0,162.0,170.0,141.0,140.0,154.0,149.0,148.0,130.0,128.0,140.0,138.0,149.0,132.0,141.0,105.0,130.0,111.0,123.0,137.0,113.0,107.0,128.0,96.0,110.0,93.0,86.0,83.0,81.0,84.0,72.0,73.0,71.0,78.0,73.0,87.0,54.0,64.0,50.0,48.0,30.0,43.0,39.0,46.0,29.0,38.0,21.0,27.0,15.0,13.0,10.0,18.0,32.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 L81004,46.0,61.0,55.0,82.0,67.0,77.0,89.0,88.0,82.0,112.0,119.0,108.0,101.0,103.0,112.0,106.0,112.0,127.0,84.0,71.0,69.0,66.0,65.0,57.0,65.0,68.0,72.0,78.0,62.0,73.0,67.0,66.0,59.0,80.0,87.0,99.0,109.0,93.0,120.0,121.0,139.0,122.0,116.0,104.0,112.0,140.0,127.0,145.0,109.0,108.0,111.0,120.0,111.0,129.0,116.0,115.0,101.0,102.0,105.0,125.0,118.0,105.0,104.0,125.0,119.0,112.0,124.0,117.0,87.0,115.0,112.0,111.0,125.0,110.0,138.0,121.0,128.0,140.0,136.0,109.0,97.0,102.0,99.0,78.0,66.0,62.0,45.0,54.0,38.0,42.0,38.0,31.0,25.0,17.0,18.0,47.0 L81007,164.0,189.0,164.0,186.0,176.0,189.0,185.0,198.0,181.0,194.0,180.0,200.0,169.0,161.0,175.0,160.0,170.0,168.0,161.0,165.0,164.0,158.0,206.0,271.0,310.0,438.0,440.0,482.0,460.0,483.0,472.0,524.0,523.0,463.0,458.0,462.0,389.0,412.0,365.0,348.0,337.0,307.0,308.0,288.0,268.0,255.0,232.0,217.0,203.0,212.0,193.0,163.0,195.0,205.0,180.0,188.0,159.0,177.0,180.0,164.0,179.0,160.0,137.0,150.0,141.0,140.0,140.0,142.0,111.0,101.0,110.0,102.0,110.0,85.0,90.0,94.0,109.0,112.0,94.0,91.0,75.0,87.0,63.0,47.0,55.0,59.0,46.0,54.0,30.0,38.0,25.0,24.0,23.0,14.0,12.0,17.0 L81008,43.0,55.0,55.0,73.0,50.0,56.0,62.0,60.0,65.0,68.0,74.0,71.0,79.0,74.0,71.0,69.0,49.0,82.0,49.0,58.0,47.0,61.0,68.0,60.0,61.0,72.0,70.0,81.0,76.0,69.0,71.0,92.0,94.0,96.0,108.0,96.0,106.0,100.0,103.0,101.0,72.0,96.0,89.0,86.0,80.0,75.0,60.0,65.0,55.0,60.0,77.0,64.0,58.0,56.0,58.0,62.0,71.0,64.0,70.0,81.0,69.0,56.0,63.0,56.0,75.0,62.0,46.0,55.0,49.0,40.0,46.0,48.0,41.0,53.0,41.0,43.0,43.0,42.0,43.0,27.0,39.0,40.0,26.0,33.0,26.0,25.0,18.0,10.0,14.0,9.0,12.0,8.0,12.0,10.0,4.0,17.0 L81009,56.0,63.0,52.0,61.0,64.0,45.0,55.0,60.0,70.0,68.0,73.0,71.0,74.0,77.0,60.0,72.0,56.0,61.0,52.0,66.0,42.0,52.0,44.0,51.0,53.0,65.0,69.0,70.0,76.0,73.0,83.0,84.0,89.0,81.0,94.0,89.0,75.0,97.0,93.0,100.0,92.0,76.0,77.0,62.0,70.0,72.0,61.0,52.0,43.0,60.0,53.0,57.0,53.0,68.0,46.0,75.0,57.0,67.0,80.0,57.0,61.0,62.0,68.0,69.0,46.0,58.0,53.0,67.0,58.0,55.0,53.0,51.0,53.0,48.0,36.0,70.0,59.0,43.0,49.0,48.0,43.0,40.0,51.0,37.0,28.0,34.0,32.0,35.0,37.0,15.0,20.0,8.0,13.0,11.0,11.0,12.0 L81012,47.0,64.0,54.0,85.0,63.0,69.0,62.0,82.0,64.0,95.0,77.0,93.0,81.0,100.0,90.0,94.0,94.0,79.0,93.0,106.0,110.0,126.0,206.0,222.0,224.0,236.0,235.0,251.0,259.0,246.0,262.0,224.0,256.0,205.0,196.0,190.0,218.0,177.0,160.0,156.0,156.0,150.0,134.0,123.0,129.0,126.0,105.0,121.0,106.0,103.0,91.0,112.0,95.0,79.0,90.0,79.0,85.0,72.0,86.0,84.0,82.0,79.0,62.0,65.0,61.0,60.0,43.0,60.0,28.0,44.0,51.0,28.0,29.0,35.0,37.0,38.0,23.0,30.0,21.0,16.0,11.0,13.0,10.0,16.0,9.0,11.0,7.0,6.0,10.0,6.0,6.0,,1.0,3.0,2.0,5.0 L81013,46.0,56.0,46.0,74.0,59.0,61.0,68.0,74.0,73.0,77.0,65.0,95.0,73.0,67.0,82.0,85.0,86.0,84.0,82.0,59.0,61.0,68.0,61.0,65.0,101.0,69.0,68.0,86.0,76.0,82.0,86.0,95.0,93.0,115.0,85.0,100.0,97.0,93.0,98.0,106.0,107.0,101.0,91.0,87.0,92.0,95.0,90.0,88.0,92.0,91.0,62.0,85.0,79.0,90.0,87.0,68.0,74.0,69.0,71.0,60.0,82.0,83.0,77.0,91.0,65.0,77.0,67.0,61.0,63.0,74.0,57.0,56.0,52.0,54.0,71.0,60.0,49.0,53.0,56.0,42.0,55.0,39.0,39.0,33.0,20.0,18.0,22.0,25.0,13.0,16.0,12.0,14.0,6.0,10.0,7.0,10.0 L81014,51.0,52.0,55.0,49.0,79.0,61.0,66.0,54.0,61.0,77.0,87.0,99.0,84.0,95.0,96.0,107.0,95.0,76.0,81.0,80.0,61.0,64.0,78.0,64.0,74.0,78.0,62.0,71.0,43.0,62.0,89.0,90.0,79.0,68.0,90.0,80.0,91.0,60.0,66.0,91.0,77.0,97.0,82.0,90.0,81.0,111.0,99.0,79.0,93.0,94.0,84.0,90.0,94.0,94.0,118.0,99.0,105.0,119.0,96.0,111.0,103.0,129.0,108.0,102.0,94.0,86.0,77.0,85.0,83.0,65.0,80.0,92.0,71.0,68.0,69.0,65.0,74.0,85.0,105.0,76.0,73.0,87.0,71.0,67.0,59.0,56.0,52.0,51.0,37.0,36.0,25.0,18.0,20.0,13.0,9.0,20.0 L81015,102.0,104.0,111.0,87.0,86.0,97.0,96.0,93.0,95.0,92.0,109.0,106.0,116.0,116.0,120.0,86.0,89.0,102.0,117.0,100.0,101.0,108.0,119.0,135.0,162.0,192.0,206.0,197.0,222.0,225.0,200.0,206.0,188.0,202.0,197.0,185.0,152.0,153.0,160.0,159.0,157.0,140.0,145.0,113.0,119.0,113.0,107.0,86.0,83.0,95.0,81.0,90.0,99.0,82.0,87.0,76.0,93.0,81.0,84.0,87.0,77.0,93.0,83.0,72.0,79.0,62.0,68.0,62.0,45.0,38.0,42.0,45.0,44.0,46.0,27.0,31.0,28.0,14.0,23.0,15.0,18.0,22.0,28.0,23.0,17.0,26.0,20.0,12.0,18.0,15.0,7.0,17.0,5.0,9.0,4.0,6.0 L81016,46.0,23.0,30.0,37.0,39.0,36.0,33.0,38.0,43.0,37.0,44.0,38.0,36.0,58.0,37.0,39.0,42.0,42.0,42.0,44.0,40.0,51.0,39.0,48.0,48.0,54.0,63.0,61.0,59.0,63.0,70.0,75.0,80.0,69.0,72.0,69.0,84.0,73.0,65.0,66.0,57.0,68.0,51.0,52.0,56.0,32.0,50.0,55.0,45.0,65.0,45.0,62.0,57.0,58.0,80.0,64.0,56.0,60.0,87.0,60.0,78.0,84.0,64.0,68.0,61.0,80.0,58.0,60.0,45.0,46.0,52.0,42.0,50.0,47.0,47.0,50.0,46.0,50.0,53.0,39.0,34.0,33.0,31.0,24.0,31.0,33.0,30.0,23.0,27.0,13.0,13.0,22.0,13.0,15.0,12.0,31.0 L81017,53.0,40.0,61.0,67.0,61.0,75.0,71.0,66.0,74.0,86.0,88.0,94.0,90.0,105.0,88.0,103.0,105.0,99.0,81.0,56.0,42.0,55.0,58.0,56.0,62.0,53.0,43.0,53.0,57.0,65.0,70.0,61.0,65.0,75.0,75.0,72.0,81.0,74.0,93.0,95.0,85.0,108.0,101.0,106.0,97.0,102.0,112.0,92.0,119.0,108.0,111.0,81.0,78.0,95.0,72.0,77.0,78.0,66.0,72.0,70.0,61.0,70.0,70.0,62.0,55.0,53.0,56.0,67.0,58.0,65.0,60.0,60.0,62.0,55.0,52.0,67.0,54.0,72.0,76.0,37.0,42.0,52.0,44.0,37.0,38.0,28.0,26.0,24.0,22.0,22.0,24.0,10.0,14.0,12.0,11.0,24.0 L81018,37.0,33.0,41.0,31.0,36.0,37.0,43.0,54.0,32.0,49.0,53.0,47.0,47.0,42.0,43.0,57.0,55.0,51.0,41.0,37.0,35.0,49.0,33.0,32.0,25.0,43.0,39.0,42.0,26.0,52.0,49.0,55.0,65.0,52.0,53.0,48.0,42.0,60.0,46.0,45.0,57.0,60.0,39.0,48.0,48.0,58.0,50.0,48.0,41.0,54.0,51.0,54.0,63.0,56.0,64.0,59.0,67.0,65.0,55.0,66.0,62.0,66.0,54.0,67.0,61.0,57.0,58.0,57.0,47.0,54.0,59.0,66.0,57.0,62.0,56.0,71.0,67.0,90.0,70.0,73.0,70.0,70.0,50.0,33.0,38.0,36.0,33.0,33.0,21.0,19.0,16.0,16.0,12.0,6.0,5.0,11.0 L81019,80.0,115.0,94.0,107.0,90.0,93.0,114.0,98.0,109.0,96.0,142.0,105.0,110.0,116.0,112.0,105.0,118.0,98.0,69.0,73.0,84.0,71.0,74.0,93.0,115.0,118.0,116.0,128.0,166.0,179.0,138.0,144.0,188.0,156.0,167.0,183.0,181.0,161.0,153.0,149.0,149.0,154.0,151.0,137.0,132.0,140.0,112.0,112.0,121.0,100.0,110.0,115.0,106.0,97.0,90.0,121.0,139.0,107.0,93.0,111.0,101.0,103.0,109.0,82.0,78.0,81.0,74.0,85.0,85.0,74.0,88.0,88.0,69.0,63.0,75.0,63.0,55.0,66.0,79.0,37.0,51.0,58.0,43.0,33.0,28.0,23.0,32.0,22.0,21.0,13.0,19.0,14.0,7.0,9.0,6.0,13.0 L81021,36.0,48.0,47.0,50.0,55.0,51.0,53.0,63.0,68.0,55.0,62.0,53.0,63.0,73.0,75.0,87.0,86.0,87.0,91.0,75.0,43.0,43.0,37.0,48.0,64.0,48.0,57.0,42.0,45.0,41.0,48.0,75.0,62.0,59.0,81.0,69.0,67.0,77.0,64.0,69.0,72.0,61.0,71.0,59.0,69.0,89.0,59.0,54.0,65.0,67.0,64.0,82.0,67.0,66.0,75.0,97.0,78.0,80.0,78.0,95.0,70.0,79.0,77.0,69.0,81.0,71.0,80.0,70.0,73.0,64.0,67.0,71.0,64.0,59.0,74.0,61.0,90.0,89.0,81.0,70.0,76.0,63.0,56.0,46.0,48.0,47.0,39.0,41.0,33.0,27.0,23.0,20.0,15.0,16.0,9.0,36.0 L81022,76.0,79.0,86.0,86.0,98.0,94.0,104.0,106.0,103.0,113.0,99.0,102.0,90.0,100.0,94.0,104.0,108.0,103.0,104.0,78.0,136.0,150.0,160.0,131.0,178.0,163.0,159.0,163.0,161.0,176.0,165.0,185.0,171.0,173.0,190.0,153.0,162.0,179.0,157.0,149.0,146.0,148.0,141.0,140.0,114.0,109.0,104.0,107.0,102.0,90.0,105.0,94.0,71.0,87.0,88.0,79.0,90.0,93.0,74.0,83.0,70.0,71.0,79.0,90.0,72.0,77.0,64.0,76.0,64.0,66.0,54.0,57.0,53.0,51.0,43.0,60.0,52.0,51.0,45.0,46.0,35.0,36.0,42.0,38.0,27.0,20.0,13.0,17.0,24.0,23.0,12.0,13.0,12.0,6.0,4.0,19.0 L81023,98.0,91.0,87.0,90.0,86.0,83.0,80.0,86.0,91.0,62.0,84.0,87.0,83.0,85.0,69.0,70.0,60.0,78.0,72.0,63.0,77.0,80.0,78.0,101.0,108.0,110.0,118.0,129.0,131.0,144.0,183.0,170.0,183.0,201.0,186.0,151.0,191.0,185.0,189.0,206.0,133.0,152.0,120.0,113.0,131.0,111.0,111.0,90.0,104.0,81.0,94.0,77.0,80.0,71.0,64.0,72.0,66.0,58.0,55.0,72.0,69.0,59.0,61.0,43.0,47.0,43.0,36.0,39.0,45.0,31.0,35.0,34.0,27.0,28.0,27.0,28.0,27.0,24.0,11.0,13.0,21.0,12.0,23.0,13.0,9.0,12.0,13.0,14.0,9.0,11.0,7.0,3.0,3.0,5.0,6.0,8.0 L81024,62.0,83.0,69.0,75.0,82.0,66.0,76.0,75.0,77.0,101.0,98.0,90.0,99.0,103.0,89.0,89.0,85.0,97.0,85.0,80.0,89.0,81.0,72.0,90.0,87.0,94.0,81.0,102.0,96.0,100.0,114.0,95.0,116.0,99.0,103.0,117.0,102.0,90.0,107.0,104.0,97.0,119.0,86.0,96.0,103.0,89.0,93.0,72.0,86.0,80.0,105.0,89.0,92.0,114.0,100.0,104.0,116.0,99.0,116.0,101.0,107.0,107.0,79.0,96.0,95.0,84.0,87.0,82.0,75.0,72.0,66.0,85.0,74.0,87.0,82.0,74.0,75.0,97.0,97.0,95.0,81.0,65.0,58.0,35.0,35.0,37.0,42.0,30.0,25.0,33.0,10.0,16.0,14.0,14.0,3.0,30.0 L81026,129.0,140.0,146.0,146.0,148.0,160.0,165.0,160.0,163.0,165.0,161.0,166.0,196.0,167.0,173.0,163.0,170.0,176.0,147.0,131.0,128.0,116.0,128.0,138.0,132.0,151.0,170.0,179.0,168.0,194.0,198.0,179.0,221.0,202.0,226.0,194.0,226.0,247.0,207.0,230.0,219.0,204.0,217.0,199.0,209.0,193.0,169.0,191.0,185.0,156.0,165.0,192.0,177.0,170.0,209.0,184.0,169.0,186.0,187.0,184.0,171.0,157.0,166.0,149.0,136.0,145.0,135.0,137.0,117.0,133.0,128.0,127.0,126.0,125.0,120.0,137.0,160.0,134.0,143.0,111.0,106.0,112.0,103.0,76.0,83.0,83.0,70.0,66.0,57.0,70.0,61.0,40.0,40.0,33.0,20.0,65.0 L81029,32.0,41.0,44.0,36.0,39.0,41.0,46.0,51.0,43.0,57.0,50.0,51.0,53.0,56.0,63.0,56.0,48.0,58.0,46.0,46.0,42.0,37.0,39.0,32.0,43.0,49.0,42.0,35.0,58.0,58.0,45.0,45.0,47.0,67.0,53.0,43.0,66.0,49.0,55.0,57.0,74.0,62.0,62.0,66.0,50.0,54.0,56.0,58.0,50.0,53.0,55.0,40.0,53.0,78.0,56.0,67.0,58.0,83.0,83.0,77.0,93.0,81.0,77.0,87.0,77.0,66.0,64.0,64.0,63.0,68.0,75.0,52.0,48.0,49.0,48.0,61.0,55.0,65.0,47.0,58.0,51.0,44.0,46.0,39.0,33.0,36.0,27.0,25.0,19.0,17.0,17.0,12.0,6.0,8.0,9.0,14.0 L81031,61.0,56.0,75.0,77.0,83.0,87.0,73.0,88.0,87.0,112.0,101.0,101.0,86.0,97.0,102.0,84.0,107.0,123.0,86.0,84.0,79.0,67.0,77.0,68.0,73.0,77.0,90.0,91.0,84.0,98.0,99.0,110.0,122.0,119.0,118.0,131.0,127.0,127.0,137.0,126.0,117.0,93.0,107.0,100.0,111.0,112.0,91.0,99.0,86.0,66.0,76.0,94.0,82.0,83.0,102.0,85.0,91.0,99.0,95.0,105.0,115.0,107.0,106.0,102.0,105.0,104.0,104.0,111.0,106.0,117.0,96.0,73.0,74.0,80.0,75.0,76.0,83.0,92.0,96.0,59.0,64.0,67.0,64.0,51.0,46.0,55.0,37.0,40.0,37.0,24.0,19.0,23.0,10.0,10.0,7.0,24.0 L81033,53.0,64.0,66.0,73.0,72.0,72.0,73.0,70.0,83.0,82.0,81.0,91.0,82.0,97.0,88.0,80.0,72.0,65.0,74.0,55.0,59.0,52.0,75.0,72.0,71.0,71.0,99.0,119.0,103.0,127.0,127.0,131.0,120.0,120.0,118.0,121.0,148.0,135.0,133.0,127.0,145.0,139.0,87.0,127.0,103.0,106.0,106.0,92.0,93.0,75.0,92.0,100.0,78.0,104.0,76.0,87.0,91.0,87.0,84.0,84.0,89.0,84.0,94.0,78.0,73.0,67.0,60.0,66.0,74.0,54.0,64.0,60.0,61.0,47.0,56.0,51.0,47.0,57.0,46.0,37.0,32.0,30.0,31.0,32.0,26.0,21.0,30.0,23.0,18.0,13.0,10.0,6.0,14.0,4.0,4.0,11.0 L81034,110.0,130.0,113.0,153.0,160.0,161.0,158.0,173.0,195.0,199.0,223.0,183.0,193.0,203.0,216.0,198.0,186.0,186.0,181.0,152.0,129.0,144.0,142.0,157.0,141.0,142.0,133.0,139.0,149.0,155.0,157.0,176.0,181.0,185.0,170.0,201.0,177.0,202.0,179.0,189.0,218.0,223.0,234.0,274.0,217.0,246.0,285.0,249.0,231.0,217.0,231.0,229.0,224.0,247.0,230.0,228.0,231.0,243.0,253.0,255.0,232.0,226.0,266.0,238.0,229.0,211.0,218.0,216.0,201.0,192.0,204.0,218.0,209.0,230.0,184.0,193.0,259.0,229.0,249.0,195.0,210.0,173.0,164.0,144.0,110.0,118.0,120.0,104.0,107.0,88.0,70.0,45.0,54.0,41.0,26.0,65.0 L81037,130.0,140.0,125.0,143.0,131.0,128.0,127.0,146.0,139.0,155.0,134.0,160.0,147.0,153.0,158.0,134.0,150.0,136.0,122.0,114.0,104.0,117.0,129.0,122.0,131.0,168.0,163.0,195.0,185.0,178.0,195.0,184.0,195.0,181.0,206.0,189.0,215.0,185.0,223.0,201.0,205.0,194.0,188.0,163.0,164.0,176.0,174.0,133.0,143.0,135.0,117.0,143.0,140.0,139.0,127.0,120.0,143.0,110.0,108.0,132.0,112.0,109.0,118.0,114.0,104.0,93.0,92.0,85.0,95.0,82.0,90.0,86.0,85.0,80.0,81.0,74.0,71.0,79.0,68.0,45.0,56.0,48.0,42.0,45.0,31.0,34.0,29.0,33.0,22.0,21.0,21.0,19.0,18.0,15.0,5.0,45.0 L81038,62.0,60.0,63.0,71.0,67.0,73.0,43.0,53.0,59.0,64.0,63.0,59.0,45.0,72.0,65.0,60.0,55.0,70.0,61.0,61.0,48.0,63.0,51.0,67.0,58.0,77.0,98.0,100.0,69.0,113.0,105.0,142.0,119.0,158.0,144.0,171.0,117.0,155.0,139.0,125.0,130.0,115.0,114.0,85.0,109.0,77.0,92.0,71.0,87.0,75.0,87.0,75.0,86.0,66.0,81.0,79.0,101.0,85.0,82.0,66.0,74.0,80.0,72.0,66.0,68.0,56.0,54.0,46.0,40.0,43.0,31.0,37.0,47.0,42.0,42.0,51.0,62.0,46.0,41.0,41.0,50.0,44.0,42.0,36.0,25.0,36.0,28.0,22.0,18.0,21.0,12.0,8.0,13.0,7.0,7.0,15.0 L81040,67.0,57.0,56.0,84.0,82.0,81.0,81.0,88.0,71.0,75.0,93.0,77.0,84.0,89.0,92.0,113.0,75.0,79.0,70.0,77.0,57.0,67.0,65.0,80.0,71.0,72.0,84.0,72.0,87.0,78.0,84.0,84.0,84.0,122.0,121.0,106.0,113.0,99.0,113.0,101.0,93.0,108.0,115.0,98.0,114.0,100.0,111.0,92.0,100.0,79.0,97.0,81.0,94.0,113.0,120.0,80.0,102.0,109.0,123.0,129.0,135.0,138.0,131.0,123.0,107.0,113.0,120.0,121.0,104.0,124.0,98.0,102.0,115.0,121.0,113.0,106.0,113.0,111.0,115.0,76.0,96.0,90.0,83.0,62.0,62.0,63.0,55.0,64.0,43.0,51.0,42.0,44.0,31.0,28.0,27.0,54.0 L81041,47.0,47.0,46.0,62.0,54.0,48.0,62.0,71.0,61.0,56.0,52.0,70.0,55.0,71.0,65.0,56.0,58.0,52.0,50.0,49.0,42.0,50.0,40.0,41.0,40.0,47.0,60.0,60.0,65.0,63.0,66.0,69.0,82.0,67.0,78.0,75.0,78.0,62.0,60.0,67.0,55.0,57.0,48.0,50.0,47.0,44.0,32.0,34.0,35.0,32.0,36.0,30.0,29.0,33.0,45.0,35.0,45.0,51.0,39.0,43.0,52.0,40.0,43.0,35.0,21.0,31.0,31.0,42.0,24.0,29.0,19.0,18.0,13.0,9.0,17.0,16.0,11.0,17.0,19.0,11.0,7.0,9.0,15.0,8.0,11.0,11.0,3.0,9.0,5.0,5.0,6.0,6.0,3.0,4.0,2.0,2.0 L81042,51.0,51.0,50.0,62.0,61.0,67.0,78.0,74.0,61.0,57.0,64.0,61.0,62.0,72.0,74.0,73.0,76.0,53.0,58.0,58.0,58.0,48.0,39.0,58.0,69.0,57.0,67.0,87.0,78.0,85.0,84.0,75.0,78.0,85.0,86.0,92.0,108.0,94.0,87.0,78.0,86.0,83.0,68.0,78.0,76.0,65.0,68.0,64.0,60.0,55.0,80.0,58.0,77.0,76.0,85.0,86.0,91.0,92.0,101.0,94.0,100.0,100.0,101.0,79.0,81.0,87.0,80.0,91.0,83.0,82.0,75.0,82.0,74.0,61.0,68.0,58.0,54.0,66.0,59.0,45.0,44.0,29.0,32.0,36.0,26.0,30.0,31.0,22.0,20.0,14.0,14.0,15.0,9.0,3.0,4.0,18.0 L81044,35.0,40.0,62.0,48.0,44.0,56.0,61.0,59.0,69.0,58.0,43.0,71.0,66.0,48.0,55.0,64.0,63.0,64.0,54.0,61.0,49.0,55.0,47.0,59.0,56.0,65.0,71.0,68.0,77.0,76.0,88.0,67.0,81.0,93.0,90.0,68.0,73.0,71.0,87.0,61.0,73.0,96.0,68.0,70.0,71.0,72.0,70.0,54.0,74.0,70.0,74.0,82.0,72.0,82.0,83.0,81.0,88.0,108.0,97.0,97.0,93.0,99.0,78.0,105.0,76.0,91.0,76.0,69.0,67.0,78.0,71.0,66.0,76.0,62.0,79.0,63.0,85.0,84.0,88.0,59.0,78.0,41.0,49.0,48.0,37.0,31.0,32.0,27.0,26.0,27.0,19.0,23.0,16.0,15.0,6.0,13.0 L81046,28.0,27.0,32.0,33.0,36.0,29.0,36.0,32.0,36.0,52.0,37.0,37.0,47.0,50.0,48.0,55.0,48.0,57.0,44.0,54.0,40.0,35.0,32.0,36.0,38.0,35.0,45.0,38.0,46.0,36.0,40.0,40.0,42.0,34.0,50.0,35.0,51.0,45.0,51.0,46.0,48.0,34.0,50.0,48.0,46.0,54.0,40.0,39.0,36.0,65.0,64.0,41.0,46.0,62.0,64.0,48.0,55.0,59.0,67.0,58.0,44.0,51.0,40.0,43.0,42.0,38.0,53.0,37.0,33.0,38.0,46.0,50.0,40.0,35.0,43.0,30.0,47.0,47.0,48.0,33.0,36.0,38.0,31.0,18.0,26.0,22.0,27.0,23.0,21.0,21.0,10.0,16.0,7.0,13.0,7.0,15.0 L81047,53.0,70.0,75.0,83.0,56.0,83.0,91.0,83.0,87.0,98.0,90.0,83.0,86.0,101.0,75.0,75.0,74.0,88.0,65.0,62.0,62.0,80.0,73.0,77.0,63.0,84.0,93.0,94.0,86.0,117.0,96.0,95.0,136.0,89.0,122.0,110.0,103.0,107.0,82.0,95.0,83.0,82.0,91.0,106.0,94.0,93.0,81.0,89.0,84.0,81.0,88.0,76.0,84.0,89.0,85.0,107.0,90.0,105.0,103.0,114.0,111.0,121.0,93.0,82.0,77.0,84.0,65.0,59.0,80.0,65.0,57.0,57.0,54.0,56.0,67.0,80.0,89.0,90.0,100.0,59.0,98.0,74.0,78.0,57.0,63.0,61.0,44.0,43.0,29.0,23.0,26.0,17.0,17.0,14.0,12.0,25.0 L81050,21.0,31.0,27.0,25.0,35.0,34.0,29.0,27.0,34.0,34.0,36.0,36.0,36.0,54.0,35.0,35.0,33.0,45.0,31.0,34.0,30.0,33.0,32.0,41.0,36.0,34.0,37.0,40.0,45.0,46.0,49.0,52.0,38.0,60.0,49.0,48.0,50.0,47.0,70.0,60.0,68.0,48.0,38.0,43.0,38.0,37.0,39.0,35.0,44.0,32.0,45.0,39.0,45.0,37.0,56.0,46.0,54.0,54.0,53.0,57.0,61.0,68.0,55.0,64.0,60.0,71.0,67.0,61.0,39.0,52.0,51.0,39.0,48.0,34.0,40.0,51.0,43.0,37.0,39.0,27.0,27.0,25.0,28.0,21.0,17.0,19.0,21.0,14.0,13.0,12.0,5.0,8.0,4.0,9.0,2.0,12.0 L81051,89.0,102.0,97.0,116.0,107.0,110.0,108.0,107.0,134.0,124.0,111.0,111.0,140.0,117.0,102.0,120.0,81.0,99.0,103.0,91.0,114.0,96.0,114.0,137.0,123.0,175.0,178.0,187.0,198.0,164.0,212.0,211.0,191.0,191.0,171.0,193.0,182.0,167.0,163.0,165.0,151.0,165.0,155.0,147.0,162.0,132.0,138.0,145.0,132.0,125.0,123.0,133.0,134.0,158.0,139.0,149.0,156.0,171.0,153.0,170.0,145.0,141.0,152.0,151.0,153.0,128.0,150.0,131.0,139.0,143.0,122.0,119.0,121.0,133.0,101.0,123.0,136.0,156.0,156.0,145.0,132.0,101.0,102.0,91.0,78.0,79.0,51.0,78.0,59.0,45.0,35.0,27.0,26.0,27.0,21.0,71.0 L81053,45.0,39.0,43.0,46.0,38.0,54.0,39.0,46.0,52.0,60.0,57.0,41.0,41.0,48.0,39.0,49.0,51.0,39.0,40.0,36.0,28.0,35.0,39.0,45.0,40.0,54.0,59.0,60.0,63.0,52.0,84.0,61.0,75.0,88.0,72.0,74.0,72.0,77.0,58.0,77.0,71.0,71.0,56.0,48.0,55.0,60.0,54.0,50.0,37.0,52.0,44.0,42.0,39.0,46.0,59.0,52.0,56.0,48.0,43.0,47.0,61.0,45.0,56.0,43.0,52.0,40.0,45.0,50.0,32.0,43.0,39.0,40.0,38.0,27.0,36.0,33.0,41.0,37.0,38.0,35.0,30.0,21.0,27.0,15.0,19.0,18.0,19.0,25.0,28.0,16.0,10.0,13.0,12.0,2.0,4.0,12.0 L81054,54.0,59.0,78.0,51.0,77.0,64.0,81.0,81.0,77.0,87.0,103.0,106.0,94.0,82.0,83.0,88.0,73.0,89.0,75.0,71.0,72.0,79.0,60.0,63.0,57.0,77.0,77.0,103.0,97.0,93.0,96.0,102.0,106.0,137.0,123.0,127.0,104.0,103.0,127.0,101.0,121.0,93.0,94.0,93.0,86.0,84.0,77.0,68.0,63.0,66.0,60.0,60.0,52.0,77.0,68.0,70.0,58.0,56.0,67.0,82.0,58.0,66.0,53.0,54.0,59.0,57.0,62.0,64.0,53.0,50.0,47.0,51.0,41.0,31.0,30.0,37.0,29.0,34.0,39.0,22.0,27.0,27.0,23.0,23.0,20.0,19.0,24.0,16.0,9.0,19.0,14.0,8.0,12.0,9.0,6.0,12.0 L81055,53.0,50.0,57.0,48.0,64.0,60.0,65.0,45.0,59.0,66.0,73.0,70.0,70.0,64.0,68.0,68.0,76.0,69.0,76.0,66.0,69.0,77.0,69.0,71.0,83.0,93.0,85.0,91.0,103.0,106.0,104.0,96.0,88.0,106.0,94.0,97.0,93.0,115.0,108.0,102.0,103.0,94.0,82.0,94.0,103.0,102.0,85.0,75.0,87.0,63.0,80.0,67.0,72.0,73.0,88.0,90.0,81.0,74.0,95.0,82.0,73.0,70.0,73.0,67.0,73.0,68.0,57.0,47.0,56.0,57.0,52.0,41.0,43.0,47.0,51.0,58.0,56.0,68.0,44.0,56.0,47.0,41.0,41.0,44.0,32.0,40.0,31.0,27.0,23.0,26.0,20.0,24.0,14.0,9.0,6.0,24.0 L81058,35.0,28.0,28.0,38.0,35.0,36.0,47.0,43.0,40.0,46.0,50.0,39.0,44.0,47.0,56.0,55.0,38.0,37.0,47.0,35.0,32.0,41.0,38.0,34.0,40.0,34.0,54.0,36.0,50.0,40.0,55.0,43.0,58.0,51.0,53.0,44.0,75.0,66.0,58.0,56.0,53.0,50.0,67.0,59.0,61.0,59.0,53.0,56.0,42.0,48.0,58.0,55.0,64.0,54.0,66.0,55.0,67.0,84.0,70.0,84.0,67.0,62.0,68.0,65.0,54.0,73.0,75.0,66.0,49.0,50.0,53.0,58.0,52.0,53.0,71.0,68.0,70.0,59.0,72.0,56.0,45.0,48.0,39.0,39.0,39.0,38.0,31.0,25.0,25.0,21.0,20.0,12.0,15.0,13.0,9.0,34.0 L81061,72.0,70.0,67.0,71.0,58.0,65.0,57.0,72.0,69.0,61.0,80.0,54.0,74.0,69.0,75.0,46.0,74.0,41.0,47.0,63.0,47.0,49.0,54.0,68.0,71.0,108.0,96.0,119.0,137.0,126.0,145.0,140.0,165.0,171.0,174.0,152.0,147.0,128.0,148.0,136.0,123.0,103.0,103.0,91.0,103.0,84.0,65.0,57.0,51.0,44.0,55.0,53.0,56.0,46.0,54.0,26.0,45.0,34.0,38.0,40.0,31.0,27.0,36.0,21.0,30.0,27.0,26.0,29.0,26.0,26.0,19.0,20.0,15.0,18.0,22.0,19.0,19.0,14.0,16.0,20.0,8.0,11.0,14.0,10.0,9.0,10.0,14.0,5.0,4.0,3.0,6.0,5.0,5.0,3.0,2.0,4.0 L81062,115.0,120.0,130.0,120.0,133.0,134.0,159.0,156.0,153.0,133.0,138.0,122.0,131.0,139.0,136.0,141.0,131.0,117.0,125.0,110.0,106.0,96.0,110.0,119.0,157.0,145.0,156.0,187.0,194.0,237.0,251.0,223.0,221.0,263.0,284.0,253.0,278.0,263.0,237.0,222.0,223.0,231.0,190.0,215.0,199.0,188.0,167.0,137.0,128.0,138.0,119.0,135.0,154.0,127.0,122.0,148.0,139.0,104.0,140.0,168.0,132.0,115.0,141.0,114.0,100.0,118.0,105.0,111.0,84.0,70.0,91.0,62.0,102.0,68.0,79.0,78.0,75.0,83.0,68.0,61.0,71.0,57.0,53.0,52.0,49.0,36.0,28.0,28.0,28.0,17.0,18.0,13.0,12.0,10.0,4.0,15.0 L81063,53.0,51.0,62.0,74.0,61.0,62.0,80.0,85.0,78.0,75.0,61.0,65.0,65.0,73.0,45.0,60.0,64.0,67.0,75.0,52.0,70.0,59.0,66.0,62.0,71.0,80.0,77.0,95.0,126.0,123.0,99.0,116.0,118.0,110.0,130.0,115.0,130.0,101.0,133.0,108.0,99.0,91.0,83.0,87.0,71.0,72.0,74.0,81.0,70.0,54.0,80.0,59.0,65.0,71.0,78.0,61.0,60.0,63.0,66.0,82.0,80.0,83.0,72.0,71.0,51.0,52.0,68.0,77.0,44.0,62.0,56.0,53.0,60.0,61.0,49.0,59.0,52.0,60.0,45.0,45.0,61.0,45.0,50.0,32.0,30.0,28.0,41.0,38.0,36.0,32.0,27.0,27.0,29.0,14.0,14.0,29.0 L81066,37.0,45.0,60.0,44.0,49.0,66.0,75.0,61.0,65.0,80.0,89.0,68.0,84.0,71.0,87.0,90.0,69.0,68.0,64.0,69.0,60.0,53.0,46.0,58.0,56.0,52.0,63.0,61.0,77.0,70.0,74.0,63.0,79.0,80.0,87.0,84.0,87.0,89.0,81.0,95.0,84.0,90.0,88.0,78.0,78.0,88.0,77.0,66.0,77.0,76.0,76.0,83.0,66.0,88.0,102.0,80.0,78.0,61.0,74.0,73.0,71.0,57.0,63.0,47.0,65.0,38.0,50.0,43.0,46.0,38.0,42.0,39.0,37.0,32.0,38.0,19.0,40.0,36.0,31.0,45.0,25.0,24.0,21.0,12.0,17.0,16.0,21.0,9.0,6.0,14.0,4.0,5.0,4.0,4.0,5.0,3.0 L81075,89.0,85.0,63.0,89.0,87.0,65.0,65.0,76.0,66.0,71.0,72.0,59.0,64.0,66.0,65.0,53.0,65.0,75.0,342.0,742.0,1052.0,1048.0,947.0,851.0,808.0,665.0,580.0,524.0,493.0,444.0,379.0,320.0,297.0,233.0,230.0,205.0,193.0,183.0,166.0,173.0,149.0,131.0,92.0,112.0,94.0,80.0,77.0,83.0,76.0,95.0,61.0,67.0,65.0,67.0,50.0,56.0,50.0,72.0,52.0,67.0,58.0,60.0,55.0,62.0,50.0,52.0,56.0,62.0,54.0,32.0,53.0,40.0,31.0,38.0,37.0,32.0,37.0,35.0,40.0,28.0,32.0,33.0,26.0,26.0,35.0,29.0,28.0,29.0,25.0,11.0,21.0,19.0,11.0,11.0,14.0,22.0 L81078,91.0,106.0,74.0,117.0,116.0,119.0,139.0,152.0,137.0,131.0,171.0,120.0,134.0,152.0,135.0,136.0,116.0,134.0,104.0,115.0,100.0,163.0,166.0,186.0,201.0,192.0,177.0,203.0,172.0,178.0,219.0,228.0,182.0,194.0,164.0,184.0,181.0,188.0,184.0,196.0,186.0,200.0,181.0,188.0,221.0,206.0,181.0,150.0,161.0,160.0,144.0,143.0,125.0,131.0,117.0,127.0,126.0,101.0,134.0,108.0,115.0,115.0,110.0,76.0,95.0,78.0,78.0,98.0,88.0,80.0,87.0,64.0,84.0,67.0,73.0,69.0,53.0,76.0,62.0,40.0,48.0,36.0,30.0,30.0,26.0,30.0,25.0,24.0,23.0,25.0,8.0,12.0,11.0,6.0,3.0,16.0 L81079,65.0,100.0,84.0,106.0,101.0,105.0,107.0,102.0,119.0,108.0,124.0,123.0,124.0,126.0,115.0,115.0,99.0,114.0,89.0,82.0,111.0,95.0,107.0,94.0,111.0,105.0,106.0,121.0,107.0,143.0,139.0,125.0,126.0,140.0,138.0,150.0,147.0,144.0,130.0,145.0,142.0,140.0,136.0,125.0,162.0,146.0,131.0,151.0,123.0,133.0,133.0,134.0,115.0,171.0,134.0,146.0,145.0,160.0,146.0,145.0,150.0,148.0,145.0,126.0,121.0,131.0,117.0,116.0,134.0,109.0,117.0,128.0,106.0,123.0,102.0,112.0,106.0,123.0,128.0,112.0,87.0,103.0,87.0,74.0,59.0,63.0,55.0,49.0,53.0,46.0,35.0,35.0,36.0,26.0,20.0,52.0 L81081,62.0,61.0,58.0,61.0,48.0,61.0,58.0,80.0,67.0,70.0,68.0,71.0,84.0,85.0,110.0,112.0,109.0,130.0,97.0,87.0,80.0,110.0,143.0,197.0,244.0,285.0,334.0,401.0,338.0,270.0,303.0,226.0,236.0,243.0,189.0,169.0,159.0,165.0,130.0,150.0,124.0,127.0,118.0,126.0,105.0,111.0,106.0,99.0,93.0,104.0,100.0,104.0,85.0,119.0,103.0,83.0,94.0,99.0,106.0,103.0,106.0,80.0,85.0,103.0,96.0,83.0,81.0,68.0,67.0,71.0,55.0,73.0,73.0,57.0,61.0,58.0,67.0,82.0,55.0,51.0,38.0,44.0,34.0,26.0,24.0,31.0,23.0,17.0,23.0,17.0,14.0,7.0,6.0,9.0,4.0,15.0 L81082,54.0,59.0,60.0,55.0,54.0,62.0,58.0,57.0,61.0,59.0,57.0,49.0,87.0,53.0,66.0,65.0,62.0,49.0,104.0,124.0,74.0,68.0,110.0,184.0,196.0,198.0,220.0,181.0,179.0,171.0,217.0,185.0,175.0,155.0,123.0,148.0,113.0,132.0,98.0,96.0,92.0,77.0,65.0,83.0,85.0,93.0,67.0,78.0,77.0,65.0,68.0,84.0,75.0,57.0,70.0,75.0,48.0,64.0,52.0,70.0,74.0,67.0,54.0,42.0,52.0,43.0,39.0,58.0,32.0,37.0,35.0,44.0,35.0,26.0,26.0,32.0,24.0,32.0,30.0,20.0,21.0,27.0,25.0,19.0,11.0,12.0,12.0,11.0,7.0,5.0,11.0,7.0,3.0,1.0,5.0,8.0 L81083,44.0,55.0,64.0,45.0,73.0,50.0,63.0,51.0,63.0,69.0,71.0,80.0,72.0,59.0,74.0,74.0,56.0,57.0,63.0,62.0,48.0,42.0,61.0,56.0,52.0,52.0,78.0,74.0,66.0,67.0,70.0,75.0,99.0,65.0,71.0,79.0,78.0,84.0,66.0,76.0,63.0,61.0,58.0,57.0,43.0,49.0,63.0,41.0,40.0,45.0,51.0,36.0,51.0,43.0,47.0,44.0,46.0,49.0,45.0,45.0,41.0,54.0,56.0,34.0,40.0,44.0,30.0,34.0,28.0,32.0,26.0,41.0,25.0,13.0,21.0,8.0,17.0,16.0,22.0,14.0,21.0,11.0,13.0,12.0,15.0,16.0,13.0,12.0,10.0,14.0,7.0,7.0,7.0,16.0,4.0,8.0 L81084,56.0,51.0,61.0,64.0,70.0,57.0,50.0,76.0,55.0,58.0,61.0,53.0,73.0,70.0,60.0,75.0,74.0,75.0,67.0,53.0,47.0,44.0,63.0,61.0,84.0,66.0,75.0,78.0,72.0,57.0,82.0,89.0,93.0,92.0,85.0,84.0,111.0,98.0,85.0,82.0,97.0,80.0,73.0,80.0,84.0,76.0,79.0,83.0,78.0,84.0,78.0,72.0,82.0,66.0,73.0,75.0,66.0,76.0,64.0,64.0,68.0,59.0,63.0,61.0,57.0,37.0,64.0,59.0,45.0,55.0,47.0,52.0,45.0,49.0,53.0,46.0,63.0,53.0,62.0,36.0,39.0,34.0,21.0,31.0,32.0,24.0,26.0,22.0,20.0,18.0,14.0,11.0,6.0,9.0,2.0,20.0 L81085,18.0,27.0,18.0,29.0,30.0,17.0,30.0,27.0,38.0,36.0,37.0,25.0,36.0,33.0,36.0,30.0,29.0,30.0,36.0,31.0,29.0,28.0,27.0,23.0,34.0,32.0,27.0,30.0,30.0,30.0,32.0,27.0,40.0,37.0,40.0,36.0,35.0,37.0,38.0,41.0,46.0,31.0,34.0,49.0,34.0,44.0,31.0,38.0,47.0,32.0,45.0,42.0,48.0,44.0,41.0,49.0,47.0,56.0,42.0,51.0,59.0,47.0,44.0,49.0,35.0,46.0,41.0,45.0,35.0,33.0,30.0,42.0,34.0,35.0,44.0,42.0,48.0,44.0,43.0,33.0,54.0,38.0,35.0,31.0,36.0,21.0,20.0,17.0,20.0,15.0,11.0,14.0,6.0,7.0,5.0,21.0 L81086,173.0,184.0,194.0,264.0,233.0,204.0,268.0,223.0,280.0,256.0,265.0,255.0,281.0,298.0,307.0,291.0,286.0,245.0,240.0,195.0,195.0,189.0,199.0,241.0,246.0,257.0,240.0,240.0,264.0,255.0,272.0,279.0,299.0,304.0,333.0,295.0,313.0,316.0,333.0,322.0,312.0,301.0,305.0,302.0,303.0,342.0,274.0,252.0,288.0,283.0,321.0,262.0,298.0,326.0,299.0,325.0,304.0,332.0,310.0,363.0,341.0,321.0,284.0,279.0,290.0,293.0,282.0,265.0,263.0,232.0,245.0,305.0,277.0,251.0,245.0,264.0,252.0,284.0,272.0,236.0,213.0,212.0,156.0,156.0,114.0,144.0,130.0,90.0,99.0,86.0,71.0,56.0,44.0,47.0,30.0,79.0 L81087,58.0,72.0,66.0,69.0,62.0,64.0,61.0,59.0,68.0,65.0,90.0,79.0,69.0,76.0,67.0,58.0,74.0,74.0,68.0,55.0,58.0,76.0,80.0,81.0,79.0,82.0,104.0,100.0,89.0,110.0,104.0,108.0,103.0,126.0,130.0,121.0,120.0,106.0,113.0,97.0,98.0,100.0,111.0,89.0,119.0,106.0,81.0,78.0,80.0,91.0,74.0,59.0,82.0,77.0,65.0,78.0,69.0,60.0,74.0,74.0,56.0,77.0,93.0,71.0,79.0,57.0,52.0,60.0,55.0,45.0,46.0,43.0,42.0,55.0,34.0,36.0,38.0,50.0,42.0,31.0,31.0,32.0,22.0,25.0,17.0,15.0,16.0,14.0,11.0,9.0,8.0,12.0,9.0,5.0,4.0,12.0 L81089,44.0,46.0,47.0,39.0,44.0,55.0,62.0,62.0,74.0,70.0,70.0,83.0,77.0,71.0,68.0,62.0,54.0,65.0,68.0,82.0,68.0,75.0,114.0,145.0,173.0,145.0,163.0,131.0,138.0,125.0,132.0,113.0,110.0,98.0,123.0,111.0,116.0,100.0,94.0,81.0,82.0,62.0,72.0,66.0,68.0,71.0,54.0,55.0,53.0,52.0,52.0,49.0,39.0,41.0,42.0,51.0,40.0,41.0,34.0,38.0,29.0,42.0,40.0,38.0,36.0,24.0,38.0,39.0,13.0,25.0,25.0,34.0,24.0,22.0,20.0,28.0,20.0,22.0,12.0,18.0,19.0,20.0,18.0,17.0,16.0,18.0,21.0,8.0,9.0,16.0,8.0,5.0,8.0,8.0,5.0,9.0 L81090,53.0,57.0,53.0,58.0,50.0,60.0,68.0,61.0,65.0,62.0,58.0,70.0,66.0,70.0,68.0,70.0,73.0,67.0,73.0,55.0,66.0,80.0,124.0,157.0,216.0,222.0,280.0,259.0,264.0,233.0,245.0,257.0,210.0,206.0,188.0,183.0,150.0,140.0,157.0,140.0,117.0,118.0,108.0,107.0,95.0,122.0,99.0,93.0,82.0,89.0,99.0,83.0,91.0,88.0,92.0,86.0,96.0,81.0,78.0,89.0,89.0,82.0,74.0,73.0,70.0,58.0,57.0,55.0,49.0,34.0,57.0,49.0,37.0,50.0,46.0,51.0,58.0,47.0,66.0,36.0,48.0,35.0,29.0,26.0,22.0,21.0,15.0,12.0,17.0,15.0,13.0,11.0,8.0,7.0,9.0,20.0 L81091,45.0,34.0,19.0,46.0,43.0,27.0,54.0,48.0,42.0,49.0,66.0,54.0,55.0,75.0,53.0,67.0,67.0,59.0,74.0,77.0,94.0,91.0,136.0,154.0,165.0,175.0,170.0,189.0,178.0,194.0,176.0,173.0,149.0,113.0,126.0,120.0,122.0,103.0,111.0,115.0,105.0,101.0,99.0,125.0,107.0,88.0,98.0,111.0,99.0,73.0,94.0,91.0,105.0,96.0,91.0,106.0,101.0,93.0,107.0,101.0,107.0,125.0,82.0,101.0,87.0,68.0,88.0,66.0,59.0,76.0,84.0,80.0,86.0,64.0,68.0,71.0,84.0,84.0,67.0,56.0,62.0,43.0,45.0,27.0,37.0,19.0,30.0,31.0,17.0,24.0,19.0,15.0,7.0,13.0,7.0,15.0 L81095,81.0,88.0,78.0,91.0,85.0,97.0,73.0,99.0,95.0,88.0,122.0,124.0,133.0,112.0,144.0,117.0,123.0,129.0,120.0,92.0,100.0,91.0,93.0,104.0,112.0,97.0,98.0,94.0,102.0,99.0,110.0,128.0,131.0,97.0,160.0,131.0,110.0,122.0,134.0,113.0,120.0,106.0,117.0,127.0,108.0,114.0,126.0,91.0,83.0,106.0,94.0,90.0,71.0,77.0,78.0,72.0,86.0,76.0,79.0,89.0,72.0,66.0,63.0,50.0,56.0,52.0,71.0,61.0,55.0,68.0,48.0,36.0,29.0,43.0,31.0,28.0,43.0,47.0,30.0,20.0,14.0,11.0,30.0,20.0,18.0,18.0,14.0,15.0,6.0,8.0,8.0,6.0,5.0,2.0,,8.0 L81098,61.0,54.0,60.0,56.0,63.0,61.0,59.0,69.0,73.0,65.0,71.0,75.0,74.0,82.0,74.0,65.0,81.0,71.0,83.0,79.0,62.0,71.0,85.0,82.0,96.0,101.0,107.0,117.0,117.0,103.0,114.0,139.0,103.0,97.0,116.0,127.0,102.0,98.0,111.0,102.0,98.0,93.0,78.0,104.0,78.0,95.0,71.0,62.0,61.0,76.0,77.0,73.0,57.0,56.0,75.0,78.0,68.0,43.0,56.0,66.0,54.0,50.0,61.0,42.0,54.0,59.0,45.0,51.0,41.0,47.0,26.0,41.0,41.0,38.0,36.0,27.0,45.0,51.0,41.0,31.0,26.0,40.0,27.0,18.0,23.0,28.0,24.0,27.0,23.0,16.0,17.0,7.0,14.0,8.0,7.0,20.0 L81103,33.0,43.0,47.0,52.0,61.0,56.0,55.0,56.0,52.0,57.0,55.0,45.0,57.0,45.0,48.0,50.0,47.0,45.0,45.0,38.0,39.0,33.0,39.0,38.0,45.0,42.0,45.0,50.0,52.0,54.0,30.0,67.0,51.0,66.0,56.0,63.0,64.0,78.0,67.0,65.0,54.0,53.0,65.0,60.0,60.0,50.0,49.0,47.0,58.0,60.0,49.0,51.0,59.0,51.0,60.0,52.0,75.0,69.0,57.0,72.0,60.0,70.0,50.0,60.0,61.0,45.0,42.0,56.0,40.0,45.0,36.0,46.0,47.0,46.0,35.0,44.0,49.0,55.0,49.0,51.0,48.0,52.0,46.0,35.0,44.0,35.0,30.0,27.0,20.0,29.0,13.0,19.0,16.0,8.0,6.0,21.0 L81106,21.0,26.0,28.0,35.0,25.0,31.0,43.0,35.0,38.0,38.0,30.0,30.0,36.0,34.0,33.0,30.0,32.0,29.0,12.0,19.0,26.0,18.0,24.0,22.0,19.0,25.0,22.0,29.0,28.0,35.0,27.0,30.0,34.0,37.0,40.0,38.0,44.0,42.0,35.0,35.0,39.0,50.0,34.0,31.0,43.0,28.0,28.0,38.0,28.0,27.0,31.0,29.0,34.0,33.0,29.0,39.0,46.0,36.0,50.0,44.0,48.0,41.0,30.0,46.0,43.0,41.0,38.0,28.0,35.0,28.0,28.0,36.0,32.0,33.0,32.0,33.0,31.0,33.0,40.0,22.0,33.0,26.0,31.0,19.0,16.0,14.0,8.0,15.0,9.0,11.0,9.0,12.0,5.0,5.0,7.0,23.0 L81117,22.0,20.0,11.0,23.0,28.0,21.0,26.0,14.0,18.0,16.0,21.0,12.0,20.0,17.0,28.0,23.0,24.0,23.0,27.0,32.0,21.0,17.0,19.0,17.0,17.0,26.0,28.0,25.0,38.0,20.0,21.0,27.0,30.0,36.0,20.0,21.0,22.0,27.0,31.0,28.0,23.0,23.0,20.0,31.0,19.0,30.0,28.0,20.0,27.0,24.0,27.0,19.0,23.0,26.0,28.0,32.0,29.0,24.0,37.0,37.0,34.0,38.0,34.0,26.0,32.0,32.0,28.0,27.0,26.0,23.0,20.0,26.0,29.0,19.0,26.0,17.0,26.0,26.0,29.0,13.0,19.0,18.0,14.0,12.0,6.0,9.0,7.0,10.0,5.0,6.0,9.0,7.0,,7.0,2.0,5.0 L81118,71.0,79.0,92.0,91.0,84.0,95.0,105.0,119.0,118.0,110.0,140.0,100.0,122.0,123.0,113.0,126.0,113.0,105.0,107.0,124.0,123.0,124.0,125.0,134.0,147.0,162.0,152.0,160.0,162.0,154.0,168.0,177.0,177.0,181.0,171.0,173.0,168.0,157.0,145.0,155.0,151.0,138.0,138.0,133.0,112.0,142.0,127.0,117.0,102.0,97.0,110.0,123.0,124.0,102.0,115.0,99.0,108.0,109.0,103.0,117.0,111.0,95.0,95.0,84.0,111.0,81.0,78.0,62.0,70.0,49.0,51.0,71.0,52.0,57.0,64.0,58.0,52.0,63.0,63.0,48.0,66.0,59.0,42.0,38.0,38.0,39.0,39.0,39.0,30.0,30.0,17.0,18.0,19.0,16.0,7.0,32.0 L81120,64.0,70.0,65.0,64.0,65.0,66.0,51.0,49.0,58.0,56.0,40.0,55.0,46.0,32.0,43.0,33.0,35.0,38.0,56.0,38.0,47.0,38.0,37.0,57.0,56.0,67.0,67.0,86.0,95.0,95.0,120.0,99.0,100.0,96.0,107.0,138.0,131.0,113.0,114.0,95.0,82.0,72.0,87.0,72.0,72.0,56.0,54.0,57.0,57.0,52.0,51.0,44.0,41.0,55.0,38.0,42.0,39.0,36.0,39.0,47.0,42.0,47.0,55.0,34.0,53.0,20.0,34.0,28.0,25.0,24.0,28.0,35.0,24.0,24.0,25.0,26.0,25.0,38.0,15.0,16.0,16.0,18.0,15.0,13.0,13.0,8.0,8.0,8.0,7.0,14.0,5.0,6.0,6.0,2.0,3.0,10.0 L81125,59.0,49.0,60.0,53.0,44.0,60.0,48.0,44.0,49.0,48.0,48.0,39.0,39.0,47.0,41.0,34.0,41.0,29.0,42.0,34.0,31.0,44.0,41.0,70.0,81.0,83.0,78.0,105.0,106.0,85.0,129.0,112.0,110.0,117.0,117.0,130.0,126.0,101.0,82.0,128.0,86.0,82.0,89.0,97.0,79.0,88.0,56.0,57.0,61.0,69.0,53.0,55.0,54.0,50.0,55.0,63.0,55.0,46.0,60.0,44.0,54.0,48.0,46.0,42.0,40.0,39.0,40.0,38.0,26.0,36.0,30.0,26.0,38.0,22.0,22.0,27.0,19.0,25.0,24.0,7.0,21.0,14.0,15.0,7.0,12.0,12.0,5.0,10.0,7.0,6.0,6.0,2.0,4.0,,3.0,4.0 L81127,31.0,19.0,28.0,24.0,35.0,32.0,27.0,34.0,26.0,35.0,41.0,36.0,34.0,43.0,29.0,38.0,43.0,38.0,52.0,27.0,28.0,32.0,34.0,23.0,26.0,31.0,27.0,17.0,23.0,30.0,32.0,30.0,32.0,33.0,45.0,38.0,54.0,42.0,43.0,42.0,44.0,49.0,37.0,32.0,40.0,51.0,39.0,48.0,38.0,28.0,37.0,42.0,37.0,44.0,44.0,44.0,31.0,36.0,49.0,45.0,46.0,51.0,41.0,35.0,37.0,39.0,25.0,28.0,30.0,33.0,29.0,29.0,29.0,24.0,22.0,20.0,23.0,31.0,28.0,35.0,22.0,19.0,21.0,19.0,12.0,13.0,17.0,11.0,9.0,7.0,9.0,12.0,4.0,1.0,7.0,5.0 L81130,75.0,65.0,51.0,74.0,75.0,70.0,79.0,73.0,71.0,71.0,67.0,78.0,70.0,58.0,51.0,63.0,75.0,61.0,68.0,78.0,50.0,53.0,51.0,66.0,76.0,75.0,86.0,90.0,97.0,108.0,126.0,110.0,122.0,107.0,125.0,114.0,102.0,120.0,100.0,86.0,107.0,97.0,80.0,74.0,74.0,83.0,57.0,71.0,59.0,66.0,55.0,90.0,64.0,94.0,85.0,103.0,90.0,100.0,99.0,113.0,89.0,101.0,91.0,73.0,86.0,74.0,93.0,71.0,78.0,60.0,61.0,59.0,51.0,45.0,51.0,79.0,54.0,44.0,49.0,44.0,40.0,34.0,38.0,26.0,18.0,32.0,27.0,22.0,33.0,19.0,17.0,7.0,16.0,5.0,5.0,17.0 L81131,21.0,33.0,23.0,43.0,36.0,40.0,53.0,60.0,69.0,70.0,77.0,78.0,65.0,108.0,87.0,80.0,78.0,87.0,87.0,59.0,64.0,43.0,54.0,61.0,58.0,66.0,66.0,69.0,67.0,64.0,63.0,71.0,57.0,57.0,72.0,58.0,66.0,54.0,51.0,74.0,65.0,71.0,74.0,79.0,90.0,87.0,75.0,89.0,79.0,86.0,90.0,85.0,80.0,69.0,84.0,76.0,71.0,84.0,85.0,72.0,82.0,83.0,75.0,79.0,72.0,62.0,56.0,75.0,54.0,59.0,61.0,69.0,72.0,54.0,68.0,47.0,70.0,57.0,63.0,38.0,43.0,38.0,41.0,33.0,34.0,35.0,36.0,24.0,38.0,32.0,21.0,19.0,11.0,25.0,5.0,25.0 L81133,1.0,2.0,5.0,4.0,2.0,1.0,1.0,2.0,1.0,1.0,4.0,1.0,1.0,,2.0,1.0,4.0,25.0,463.0,1382.0,1997.0,1910.0,1563.0,1122.0,896.0,342.0,280.0,197.0,152.0,93.0,100.0,60.0,44.0,37.0,24.0,18.0,15.0,6.0,13.0,6.0,3.0,6.0,4.0,6.0,1.0,2.0,4.0,1.0,1.0,1.0,,1.0,,,1.0,,,,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, L81600,35.0,44.0,46.0,47.0,46.0,72.0,63.0,53.0,64.0,62.0,62.0,72.0,76.0,84.0,96.0,71.0,93.0,61.0,64.0,46.0,62.0,42.0,42.0,51.0,50.0,49.0,79.0,49.0,61.0,78.0,76.0,67.0,60.0,59.0,97.0,72.0,66.0,98.0,66.0,97.0,107.0,77.0,92.0,87.0,92.0,100.0,111.0,83.0,95.0,108.0,101.0,87.0,96.0,80.0,107.0,78.0,67.0,97.0,83.0,70.0,88.0,73.0,76.0,60.0,73.0,48.0,63.0,63.0,49.0,62.0,35.0,53.0,50.0,49.0,53.0,40.0,50.0,45.0,64.0,40.0,37.0,36.0,31.0,31.0,22.0,24.0,19.0,18.0,23.0,19.0,14.0,16.0,6.0,2.0,6.0,13.0 L81632,52.0,60.0,63.0,55.0,66.0,73.0,72.0,88.0,92.0,90.0,85.0,89.0,121.0,98.0,82.0,73.0,100.0,95.0,71.0,52.0,57.0,45.0,59.0,48.0,52.0,65.0,48.0,57.0,82.0,70.0,76.0,84.0,90.0,90.0,116.0,100.0,88.0,108.0,109.0,113.0,76.0,107.0,88.0,95.0,94.0,100.0,97.0,82.0,77.0,103.0,85.0,81.0,96.0,84.0,87.0,78.0,65.0,81.0,71.0,70.0,54.0,61.0,47.0,35.0,55.0,32.0,28.0,31.0,36.0,34.0,36.0,32.0,33.0,20.0,27.0,28.0,26.0,25.0,26.0,26.0,22.0,15.0,24.0,14.0,13.0,13.0,9.0,5.0,11.0,6.0,9.0,7.0,6.0,6.0,2.0,9.0 L81642,45.0,58.0,38.0,49.0,48.0,29.0,32.0,29.0,43.0,28.0,42.0,30.0,28.0,23.0,21.0,24.0,26.0,25.0,24.0,25.0,24.0,32.0,28.0,28.0,42.0,49.0,45.0,51.0,59.0,75.0,71.0,69.0,59.0,57.0,55.0,58.0,46.0,69.0,54.0,39.0,40.0,41.0,42.0,35.0,39.0,26.0,34.0,21.0,32.0,24.0,23.0,25.0,31.0,43.0,35.0,28.0,24.0,36.0,37.0,40.0,41.0,39.0,41.0,40.0,32.0,38.0,43.0,27.0,27.0,16.0,30.0,24.0,19.0,33.0,21.0,20.0,24.0,27.0,34.0,17.0,20.0,18.0,18.0,17.0,17.0,15.0,9.0,9.0,15.0,10.0,5.0,2.0,4.0,2.0,4.0,6.0 L81643,65.0,65.0,78.0,88.0,81.0,69.0,86.0,81.0,90.0,85.0,84.0,95.0,90.0,97.0,100.0,87.0,99.0,85.0,97.0,85.0,68.0,77.0,83.0,82.0,79.0,84.0,86.0,90.0,87.0,91.0,101.0,79.0,113.0,117.0,115.0,103.0,111.0,124.0,122.0,101.0,105.0,110.0,116.0,119.0,101.0,114.0,99.0,95.0,90.0,83.0,100.0,88.0,107.0,108.0,112.0,125.0,121.0,111.0,115.0,135.0,103.0,108.0,95.0,108.0,109.0,112.0,85.0,106.0,86.0,103.0,84.0,97.0,94.0,103.0,77.0,86.0,117.0,128.0,130.0,77.0,80.0,68.0,56.0,68.0,51.0,51.0,43.0,43.0,36.0,33.0,29.0,25.0,16.0,16.0,5.0,26.0 L81649,66.0,85.0,69.0,91.0,105.0,100.0,123.0,103.0,119.0,122.0,121.0,126.0,137.0,117.0,136.0,136.0,128.0,117.0,111.0,104.0,84.0,86.0,113.0,104.0,97.0,142.0,148.0,127.0,150.0,165.0,151.0,148.0,168.0,157.0,136.0,179.0,186.0,178.0,172.0,179.0,198.0,203.0,182.0,158.0,158.0,153.0,141.0,145.0,134.0,149.0,140.0,119.0,137.0,144.0,154.0,139.0,128.0,102.0,105.0,107.0,104.0,88.0,82.0,77.0,62.0,61.0,60.0,50.0,47.0,51.0,41.0,43.0,35.0,50.0,46.0,43.0,31.0,35.0,34.0,24.0,29.0,22.0,18.0,17.0,13.0,16.0,10.0,10.0,18.0,7.0,6.0,5.0,8.0,1.0,4.0,2.0 L81669,151.0,132.0,165.0,181.0,181.0,210.0,220.0,205.0,228.0,239.0,243.0,224.0,276.0,240.0,271.0,238.0,256.0,259.0,239.0,203.0,207.0,199.0,219.0,185.0,205.0,241.0,262.0,267.0,261.0,264.0,276.0,270.0,289.0,287.0,322.0,293.0,319.0,335.0,315.0,335.0,311.0,274.0,253.0,276.0,273.0,240.0,261.0,201.0,186.0,196.0,238.0,196.0,213.0,211.0,232.0,222.0,204.0,189.0,198.0,226.0,204.0,209.0,186.0,181.0,183.0,185.0,187.0,155.0,155.0,146.0,143.0,143.0,149.0,137.0,113.0,117.0,132.0,167.0,151.0,120.0,125.0,114.0,116.0,93.0,92.0,78.0,85.0,59.0,67.0,54.0,60.0,43.0,45.0,38.0,34.0,82.0 L81670,29.0,37.0,41.0,40.0,41.0,45.0,44.0,44.0,44.0,48.0,41.0,47.0,51.0,58.0,46.0,47.0,40.0,41.0,38.0,42.0,53.0,42.0,34.0,31.0,40.0,37.0,47.0,43.0,42.0,46.0,38.0,41.0,51.0,49.0,37.0,56.0,55.0,47.0,46.0,41.0,51.0,54.0,44.0,42.0,47.0,44.0,33.0,30.0,34.0,26.0,29.0,37.0,35.0,31.0,20.0,27.0,38.0,30.0,27.0,33.0,22.0,29.0,16.0,34.0,23.0,28.0,19.0,18.0,22.0,13.0,17.0,16.0,18.0,14.0,16.0,13.0,11.0,11.0,10.0,13.0,12.0,5.0,2.0,2.0,8.0,9.0,3.0,5.0,4.0,3.0,6.0,1.0,,1.0,,2.0 Y02578,24.0,21.0,18.0,20.0,24.0,22.0,12.0,19.0,17.0,23.0,11.0,12.0,20.0,13.0,18.0,12.0,15.0,16.0,66.0,155.0,207.0,212.0,243.0,323.0,502.0,419.0,320.0,342.0,251.0,190.0,189.0,181.0,151.0,134.0,158.0,120.0,123.0,99.0,88.0,82.0,82.0,56.0,49.0,55.0,46.0,41.0,33.0,33.0,24.0,23.0,32.0,13.0,23.0,19.0,19.0,17.0,17.0,16.0,25.0,16.0,10.0,23.0,12.0,13.0,12.0,8.0,9.0,8.0,11.0,6.0,10.0,13.0,7.0,5.0,4.0,6.0,3.0,5.0,3.0,2.0,1.0,4.0,1.0,1.0,2.0,,,1.0,,1.0,,1.0,1.0,,,1.0 Y02873,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,2.0,,,,1.0,2.0,,1.0,,1.0,1.0,,1.0,,1.0,1.0,1.0,1.0,,,1.0,1.0,1.0,,,1.0,1.0,,,,,,,1.0,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 J81002,14.0,21.0,18.0,28.0,20.0,25.0,25.0,28.0,24.0,24.0,32.0,31.0,34.0,38.0,32.0,46.0,32.0,41.0,36.0,30.0,25.0,31.0,23.0,37.0,38.0,25.0,25.0,31.0,32.0,34.0,28.0,37.0,41.0,33.0,39.0,33.0,39.0,29.0,33.0,33.0,29.0,51.0,43.0,51.0,39.0,32.0,42.0,38.0,32.0,47.0,49.0,47.0,51.0,57.0,62.0,49.0,54.0,50.0,69.0,64.0,86.0,74.0,68.0,56.0,71.0,73.0,73.0,69.0,80.0,74.0,68.0,78.0,68.0,79.0,101.0,88.0,86.0,101.0,107.0,54.0,89.0,66.0,76.0,70.0,59.0,59.0,48.0,56.0,45.0,46.0,41.0,29.0,29.0,20.0,24.0,61.0 J81006,164.0,150.0,165.0,195.0,177.0,166.0,203.0,219.0,207.0,199.0,235.0,226.0,242.0,246.0,237.0,212.0,209.0,224.0,201.0,174.0,160.0,166.0,158.0,190.0,187.0,169.0,215.0,215.0,211.0,238.0,260.0,255.0,288.0,272.0,278.0,279.0,292.0,287.0,273.0,263.0,249.0,240.0,266.0,260.0,239.0,243.0,257.0,221.0,237.0,217.0,221.0,250.0,260.0,237.0,261.0,299.0,249.0,282.0,284.0,273.0,266.0,275.0,298.0,291.0,265.0,224.0,236.0,239.0,241.0,207.0,222.0,233.0,213.0,220.0,184.0,247.0,209.0,251.0,259.0,180.0,179.0,166.0,157.0,161.0,110.0,105.0,104.0,97.0,69.0,69.0,70.0,55.0,49.0,43.0,42.0,82.0 J81009,35.0,41.0,35.0,52.0,45.0,64.0,52.0,57.0,79.0,65.0,61.0,75.0,63.0,68.0,63.0,56.0,73.0,67.0,54.0,60.0,51.0,64.0,63.0,51.0,58.0,57.0,56.0,68.0,70.0,54.0,66.0,71.0,79.0,75.0,60.0,63.0,61.0,78.0,64.0,80.0,56.0,77.0,61.0,74.0,78.0,65.0,62.0,69.0,59.0,58.0,68.0,76.0,84.0,85.0,90.0,99.0,82.0,104.0,105.0,98.0,91.0,125.0,103.0,109.0,101.0,99.0,102.0,92.0,94.0,95.0,82.0,84.0,94.0,82.0,73.0,92.0,76.0,75.0,81.0,76.0,64.0,50.0,37.0,32.0,27.0,19.0,23.0,26.0,20.0,17.0,17.0,16.0,10.0,15.0,1.0,9.0 J81010,29.0,25.0,25.0,38.0,27.0,31.0,36.0,42.0,31.0,39.0,43.0,41.0,48.0,55.0,39.0,50.0,64.0,42.0,38.0,43.0,26.0,37.0,28.0,29.0,37.0,49.0,45.0,33.0,40.0,42.0,36.0,42.0,55.0,45.0,47.0,51.0,56.0,45.0,52.0,51.0,45.0,58.0,53.0,54.0,51.0,48.0,41.0,52.0,49.0,48.0,50.0,56.0,65.0,71.0,74.0,85.0,69.0,85.0,93.0,87.0,118.0,117.0,92.0,101.0,102.0,109.0,99.0,99.0,89.0,93.0,89.0,80.0,97.0,83.0,78.0,84.0,94.0,91.0,120.0,79.0,79.0,55.0,66.0,62.0,53.0,60.0,46.0,34.0,35.0,30.0,28.0,28.0,23.0,27.0,13.0,40.0 J81011,23.0,21.0,24.0,21.0,31.0,24.0,36.0,45.0,35.0,36.0,39.0,32.0,42.0,37.0,47.0,42.0,45.0,52.0,32.0,33.0,40.0,23.0,30.0,22.0,31.0,30.0,36.0,27.0,40.0,34.0,18.0,28.0,41.0,36.0,46.0,28.0,29.0,64.0,37.0,40.0,41.0,47.0,44.0,45.0,37.0,42.0,48.0,28.0,47.0,41.0,49.0,52.0,51.0,54.0,47.0,51.0,58.0,62.0,65.0,83.0,65.0,57.0,60.0,60.0,53.0,72.0,62.0,67.0,72.0,50.0,72.0,63.0,71.0,48.0,81.0,75.0,67.0,71.0,90.0,58.0,52.0,62.0,47.0,46.0,26.0,46.0,34.0,33.0,21.0,27.0,23.0,13.0,17.0,13.0,11.0,38.0 J81012,206.0,208.0,223.0,235.0,258.0,260.0,275.0,279.0,289.0,307.0,346.0,259.0,321.0,325.0,316.0,316.0,270.0,309.0,290.0,233.0,250.0,205.0,247.0,270.0,278.0,305.0,307.0,351.0,341.0,353.0,359.0,406.0,409.0,404.0,445.0,440.0,426.0,422.0,407.0,464.0,422.0,420.0,406.0,391.0,445.0,438.0,375.0,337.0,362.0,349.0,366.0,388.0,381.0,358.0,383.0,402.0,355.0,384.0,353.0,393.0,369.0,362.0,337.0,341.0,328.0,325.0,304.0,318.0,268.0,283.0,308.0,286.0,274.0,273.0,254.0,299.0,281.0,305.0,323.0,227.0,258.0,225.0,201.0,159.0,164.0,176.0,156.0,142.0,110.0,114.0,110.0,83.0,92.0,61.0,39.0,168.0 J81013,44.0,52.0,40.0,68.0,60.0,66.0,65.0,72.0,73.0,78.0,86.0,73.0,82.0,77.0,68.0,79.0,83.0,83.0,72.0,78.0,52.0,59.0,55.0,37.0,48.0,65.0,65.0,51.0,56.0,54.0,53.0,73.0,78.0,79.0,87.0,101.0,82.0,94.0,100.0,84.0,94.0,82.0,88.0,74.0,97.0,77.0,87.0,83.0,68.0,74.0,71.0,64.0,84.0,71.0,76.0,88.0,79.0,78.0,97.0,99.0,90.0,86.0,99.0,84.0,77.0,74.0,86.0,75.0,68.0,66.0,65.0,64.0,70.0,63.0,60.0,62.0,54.0,81.0,95.0,48.0,43.0,49.0,47.0,38.0,22.0,22.0,28.0,22.0,31.0,13.0,22.0,12.0,13.0,13.0,7.0,16.0 J81014,83.0,79.0,68.0,77.0,71.0,77.0,66.0,79.0,88.0,71.0,74.0,72.0,81.0,63.0,85.0,72.0,69.0,59.0,70.0,58.0,54.0,78.0,101.0,76.0,141.0,129.0,134.0,159.0,157.0,165.0,182.0,165.0,170.0,164.0,175.0,157.0,138.0,168.0,158.0,149.0,140.0,153.0,163.0,159.0,152.0,146.0,117.0,122.0,106.0,103.0,119.0,106.0,115.0,107.0,144.0,104.0,126.0,120.0,134.0,140.0,130.0,122.0,149.0,114.0,118.0,138.0,124.0,116.0,137.0,112.0,127.0,121.0,113.0,124.0,126.0,140.0,141.0,181.0,168.0,104.0,135.0,115.0,83.0,73.0,68.0,80.0,87.0,77.0,70.0,45.0,57.0,44.0,32.0,36.0,50.0,96.0 J81016,18.0,38.0,25.0,34.0,28.0,31.0,37.0,41.0,44.0,54.0,42.0,50.0,35.0,47.0,45.0,47.0,60.0,45.0,51.0,34.0,38.0,29.0,40.0,46.0,41.0,50.0,60.0,77.0,44.0,58.0,50.0,51.0,54.0,56.0,52.0,50.0,61.0,48.0,56.0,50.0,42.0,58.0,48.0,48.0,45.0,48.0,38.0,52.0,53.0,62.0,64.0,57.0,52.0,71.0,66.0,68.0,63.0,63.0,82.0,59.0,84.0,64.0,64.0,62.0,51.0,61.0,55.0,59.0,45.0,53.0,65.0,61.0,44.0,47.0,55.0,59.0,62.0,56.0,64.0,41.0,48.0,46.0,46.0,32.0,24.0,36.0,29.0,30.0,31.0,23.0,19.0,18.0,12.0,4.0,9.0,25.0 J81017,6.0,12.0,13.0,17.0,16.0,6.0,13.0,16.0,13.0,18.0,17.0,25.0,12.0,28.0,18.0,19.0,14.0,22.0,14.0,13.0,13.0,15.0,14.0,15.0,14.0,12.0,13.0,15.0,15.0,12.0,19.0,16.0,15.0,21.0,20.0,15.0,20.0,21.0,14.0,17.0,17.0,16.0,18.0,21.0,21.0,19.0,22.0,13.0,19.0,15.0,21.0,36.0,21.0,25.0,26.0,31.0,34.0,42.0,35.0,36.0,40.0,45.0,37.0,32.0,42.0,37.0,40.0,36.0,34.0,40.0,39.0,38.0,28.0,39.0,38.0,36.0,29.0,29.0,41.0,39.0,36.0,26.0,24.0,15.0,9.0,14.0,12.0,16.0,15.0,9.0,4.0,5.0,4.0,3.0,4.0,10.0 J81018,39.0,47.0,41.0,42.0,62.0,34.0,66.0,53.0,64.0,73.0,62.0,72.0,71.0,74.0,73.0,61.0,62.0,55.0,65.0,56.0,62.0,52.0,53.0,52.0,69.0,71.0,72.0,70.0,70.0,74.0,65.0,69.0,71.0,69.0,81.0,92.0,92.0,99.0,85.0,94.0,94.0,82.0,97.0,99.0,91.0,88.0,102.0,79.0,75.0,77.0,94.0,86.0,79.0,81.0,88.0,76.0,88.0,78.0,85.0,77.0,73.0,71.0,87.0,80.0,81.0,62.0,77.0,57.0,60.0,51.0,51.0,66.0,76.0,67.0,79.0,45.0,61.0,46.0,66.0,62.0,52.0,42.0,26.0,36.0,39.0,36.0,32.0,32.0,24.0,25.0,18.0,14.0,11.0,12.0,9.0,25.0 J81019,89.0,111.0,92.0,102.0,100.0,105.0,119.0,121.0,139.0,135.0,152.0,150.0,151.0,157.0,146.0,126.0,126.0,122.0,131.0,98.0,104.0,68.0,93.0,89.0,81.0,92.0,88.0,103.0,127.0,109.0,123.0,148.0,139.0,146.0,137.0,144.0,168.0,157.0,162.0,148.0,146.0,147.0,151.0,153.0,153.0,149.0,125.0,124.0,123.0,123.0,151.0,140.0,163.0,186.0,174.0,173.0,166.0,161.0,181.0,176.0,169.0,169.0,195.0,184.0,158.0,167.0,178.0,163.0,150.0,180.0,167.0,144.0,166.0,149.0,156.0,166.0,193.0,148.0,190.0,107.0,124.0,134.0,106.0,90.0,90.0,85.0,64.0,64.0,56.0,38.0,45.0,38.0,25.0,34.0,27.0,59.0 J81020,10.0,17.0,21.0,25.0,19.0,16.0,27.0,14.0,25.0,19.0,23.0,14.0,20.0,24.0,18.0,17.0,23.0,21.0,24.0,17.0,15.0,16.0,18.0,10.0,14.0,10.0,16.0,14.0,14.0,9.0,20.0,12.0,20.0,27.0,33.0,21.0,31.0,25.0,27.0,21.0,25.0,24.0,19.0,15.0,21.0,21.0,20.0,30.0,33.0,32.0,23.0,23.0,27.0,19.0,25.0,39.0,24.0,33.0,34.0,33.0,29.0,40.0,38.0,31.0,33.0,31.0,26.0,15.0,26.0,19.0,27.0,23.0,32.0,22.0,35.0,31.0,27.0,25.0,31.0,20.0,16.0,14.0,13.0,14.0,16.0,10.0,12.0,8.0,5.0,5.0,4.0,5.0,8.0,1.0,1.0,5.0 J81021,108.0,81.0,106.0,111.0,105.0,141.0,139.0,121.0,127.0,134.0,134.0,126.0,131.0,143.0,145.0,114.0,128.0,132.0,116.0,125.0,124.0,122.0,162.0,161.0,178.0,193.0,205.0,214.0,222.0,225.0,227.0,244.0,236.0,238.0,248.0,239.0,211.0,226.0,245.0,213.0,240.0,233.0,193.0,235.0,226.0,207.0,183.0,174.0,152.0,162.0,161.0,137.0,147.0,149.0,134.0,130.0,131.0,144.0,127.0,138.0,145.0,124.0,115.0,121.0,120.0,99.0,103.0,105.0,99.0,95.0,87.0,87.0,72.0,80.0,97.0,80.0,88.0,90.0,78.0,62.0,60.0,63.0,56.0,36.0,30.0,35.0,42.0,23.0,23.0,22.0,21.0,26.0,24.0,10.0,9.0,25.0 J81022,10.0,13.0,22.0,14.0,8.0,17.0,21.0,18.0,11.0,16.0,21.0,17.0,26.0,18.0,15.0,17.0,18.0,20.0,25.0,25.0,15.0,15.0,23.0,15.0,18.0,16.0,25.0,16.0,12.0,23.0,18.0,29.0,29.0,26.0,24.0,26.0,22.0,23.0,28.0,24.0,25.0,24.0,18.0,25.0,17.0,20.0,25.0,20.0,20.0,24.0,23.0,23.0,33.0,42.0,48.0,30.0,42.0,34.0,31.0,36.0,39.0,52.0,41.0,42.0,45.0,46.0,44.0,52.0,42.0,41.0,42.0,46.0,50.0,54.0,56.0,45.0,66.0,71.0,69.0,52.0,67.0,44.0,48.0,34.0,31.0,35.0,31.0,30.0,22.0,26.0,22.0,23.0,17.0,12.0,12.0,30.0 J81025,24.0,26.0,35.0,16.0,25.0,25.0,23.0,30.0,36.0,38.0,38.0,44.0,36.0,34.0,34.0,30.0,34.0,38.0,29.0,22.0,22.0,28.0,25.0,26.0,23.0,27.0,46.0,36.0,34.0,28.0,40.0,38.0,42.0,38.0,32.0,40.0,37.0,50.0,34.0,29.0,45.0,32.0,44.0,37.0,39.0,44.0,40.0,30.0,37.0,35.0,44.0,45.0,35.0,37.0,39.0,48.0,47.0,44.0,69.0,45.0,49.0,41.0,50.0,46.0,39.0,47.0,41.0,44.0,41.0,39.0,37.0,43.0,40.0,38.0,33.0,39.0,36.0,54.0,33.0,32.0,39.0,27.0,31.0,28.0,12.0,20.0,14.0,14.0,12.0,9.0,12.0,8.0,8.0,3.0,4.0,7.0 J81027,82.0,74.0,81.0,91.0,80.0,74.0,90.0,113.0,97.0,126.0,109.0,108.0,113.0,108.0,137.0,143.0,124.0,154.0,122.0,117.0,90.0,106.0,94.0,104.0,133.0,124.0,119.0,130.0,146.0,111.0,129.0,147.0,155.0,169.0,159.0,154.0,139.0,146.0,149.0,168.0,140.0,124.0,137.0,143.0,147.0,149.0,153.0,125.0,122.0,138.0,131.0,170.0,177.0,162.0,222.0,194.0,201.0,197.0,215.0,201.0,205.0,231.0,233.0,252.0,223.0,205.0,212.0,230.0,206.0,188.0,190.0,184.0,196.0,181.0,187.0,200.0,204.0,214.0,201.0,154.0,150.0,147.0,134.0,95.0,99.0,80.0,81.0,78.0,52.0,60.0,50.0,35.0,35.0,34.0,24.0,72.0 J81028,40.0,47.0,47.0,68.0,59.0,49.0,50.0,59.0,63.0,53.0,65.0,61.0,65.0,69.0,62.0,69.0,60.0,71.0,67.0,45.0,52.0,54.0,50.0,57.0,58.0,57.0,65.0,61.0,59.0,58.0,79.0,66.0,71.0,63.0,76.0,68.0,63.0,79.0,87.0,71.0,86.0,77.0,73.0,77.0,82.0,64.0,79.0,78.0,79.0,78.0,68.0,115.0,82.0,80.0,76.0,104.0,124.0,101.0,105.0,127.0,122.0,123.0,117.0,127.0,119.0,113.0,137.0,138.0,157.0,124.0,131.0,135.0,123.0,123.0,143.0,176.0,166.0,178.0,166.0,125.0,145.0,144.0,102.0,99.0,74.0,81.0,78.0,82.0,78.0,65.0,41.0,48.0,34.0,36.0,31.0,66.0 J81029,12.0,18.0,16.0,13.0,14.0,17.0,19.0,19.0,18.0,18.0,24.0,22.0,18.0,33.0,34.0,37.0,51.0,26.0,22.0,15.0,17.0,10.0,17.0,20.0,18.0,19.0,17.0,23.0,18.0,19.0,23.0,25.0,18.0,12.0,20.0,17.0,26.0,29.0,17.0,22.0,12.0,27.0,25.0,22.0,31.0,27.0,22.0,19.0,20.0,18.0,35.0,31.0,38.0,33.0,46.0,39.0,36.0,37.0,41.0,41.0,49.0,64.0,58.0,45.0,43.0,43.0,52.0,31.0,51.0,43.0,44.0,38.0,43.0,60.0,36.0,49.0,59.0,57.0,54.0,56.0,50.0,42.0,40.0,42.0,37.0,28.0,41.0,32.0,23.0,25.0,21.0,12.0,9.0,9.0,8.0,24.0 J81030,27.0,18.0,31.0,28.0,38.0,26.0,33.0,42.0,40.0,33.0,43.0,41.0,50.0,43.0,44.0,48.0,50.0,34.0,29.0,38.0,34.0,22.0,26.0,39.0,33.0,32.0,34.0,31.0,36.0,42.0,31.0,39.0,40.0,40.0,48.0,45.0,49.0,49.0,40.0,42.0,51.0,46.0,40.0,37.0,46.0,37.0,44.0,32.0,40.0,41.0,48.0,53.0,39.0,53.0,48.0,62.0,47.0,55.0,48.0,82.0,56.0,71.0,74.0,68.0,70.0,48.0,47.0,56.0,50.0,56.0,64.0,40.0,52.0,49.0,54.0,57.0,61.0,59.0,72.0,39.0,45.0,37.0,56.0,35.0,34.0,36.0,31.0,30.0,32.0,22.0,11.0,16.0,13.0,7.0,6.0,19.0 J81033,47.0,61.0,59.0,84.0,95.0,63.0,99.0,87.0,93.0,104.0,98.0,95.0,100.0,101.0,104.0,108.0,93.0,86.0,290.0,653.0,899.0,864.0,619.0,422.0,374.0,250.0,278.0,217.0,151.0,160.0,136.0,135.0,138.0,119.0,115.0,131.0,128.0,111.0,115.0,141.0,137.0,91.0,121.0,104.0,129.0,95.0,108.0,103.0,100.0,85.0,95.0,82.0,109.0,103.0,105.0,117.0,106.0,97.0,97.0,104.0,113.0,109.0,112.0,108.0,99.0,96.0,104.0,108.0,90.0,99.0,99.0,96.0,80.0,90.0,82.0,76.0,83.0,107.0,96.0,76.0,78.0,63.0,62.0,56.0,45.0,42.0,46.0,33.0,49.0,26.0,24.0,16.0,14.0,14.0,15.0,23.0 J81034,52.0,55.0,68.0,80.0,83.0,68.0,87.0,69.0,67.0,86.0,64.0,70.0,93.0,129.0,172.0,196.0,236.0,207.0,154.0,87.0,65.0,67.0,70.0,70.0,88.0,93.0,71.0,81.0,82.0,99.0,84.0,95.0,92.0,107.0,94.0,84.0,109.0,105.0,96.0,96.0,98.0,92.0,92.0,93.0,98.0,88.0,108.0,92.0,98.0,81.0,111.0,88.0,99.0,128.0,113.0,116.0,128.0,123.0,118.0,127.0,128.0,125.0,135.0,120.0,118.0,124.0,115.0,117.0,106.0,96.0,106.0,115.0,120.0,114.0,101.0,132.0,117.0,157.0,158.0,107.0,110.0,101.0,94.0,77.0,70.0,83.0,54.0,53.0,71.0,45.0,28.0,30.0,31.0,15.0,23.0,46.0 J81035,14.0,15.0,10.0,16.0,19.0,17.0,19.0,20.0,18.0,25.0,15.0,22.0,24.0,27.0,28.0,41.0,40.0,33.0,49.0,24.0,29.0,13.0,5.0,14.0,18.0,30.0,9.0,16.0,19.0,22.0,23.0,21.0,24.0,19.0,31.0,33.0,29.0,28.0,21.0,22.0,29.0,16.0,33.0,25.0,24.0,23.0,31.0,24.0,18.0,34.0,26.0,31.0,31.0,15.0,46.0,40.0,41.0,45.0,51.0,50.0,48.0,54.0,57.0,43.0,48.0,35.0,36.0,33.0,44.0,40.0,39.0,36.0,38.0,32.0,33.0,35.0,30.0,29.0,38.0,19.0,27.0,23.0,14.0,19.0,20.0,14.0,10.0,13.0,5.0,5.0,7.0,6.0,5.0,2.0,,5.0 J81036,39.0,38.0,52.0,49.0,43.0,52.0,45.0,49.0,48.0,57.0,55.0,56.0,56.0,52.0,42.0,51.0,58.0,52.0,51.0,44.0,49.0,52.0,43.0,39.0,39.0,55.0,43.0,52.0,88.0,66.0,63.0,75.0,66.0,73.0,87.0,74.0,74.0,73.0,81.0,90.0,73.0,67.0,66.0,76.0,64.0,59.0,58.0,52.0,50.0,52.0,54.0,45.0,54.0,56.0,66.0,49.0,78.0,61.0,59.0,69.0,47.0,75.0,63.0,68.0,62.0,51.0,59.0,53.0,46.0,45.0,40.0,46.0,49.0,44.0,36.0,36.0,41.0,45.0,44.0,33.0,36.0,23.0,23.0,28.0,14.0,22.0,24.0,27.0,19.0,12.0,17.0,12.0,15.0,5.0,7.0,14.0 J81039,37.0,37.0,39.0,44.0,53.0,53.0,59.0,63.0,75.0,63.0,74.0,79.0,83.0,69.0,63.0,53.0,68.0,60.0,55.0,46.0,44.0,55.0,48.0,50.0,49.0,47.0,46.0,55.0,41.0,53.0,65.0,69.0,82.0,79.0,84.0,64.0,68.0,89.0,65.0,89.0,74.0,84.0,76.0,82.0,76.0,92.0,78.0,62.0,67.0,56.0,80.0,75.0,59.0,63.0,58.0,58.0,69.0,59.0,61.0,66.0,74.0,60.0,59.0,59.0,66.0,65.0,56.0,63.0,48.0,51.0,50.0,36.0,30.0,35.0,44.0,46.0,43.0,39.0,48.0,24.0,35.0,27.0,24.0,26.0,25.0,25.0,21.0,18.0,13.0,15.0,12.0,5.0,6.0,4.0,2.0,10.0 J81041,64.0,66.0,80.0,82.0,75.0,76.0,100.0,75.0,97.0,99.0,87.0,110.0,98.0,130.0,112.0,133.0,125.0,124.0,109.0,101.0,107.0,107.0,81.0,102.0,98.0,77.0,79.0,93.0,80.0,100.0,80.0,88.0,104.0,102.0,91.0,125.0,107.0,105.0,106.0,108.0,123.0,129.0,117.0,138.0,128.0,122.0,139.0,111.0,107.0,105.0,139.0,116.0,145.0,172.0,136.0,154.0,163.0,168.0,137.0,164.0,157.0,141.0,173.0,161.0,151.0,161.0,148.0,135.0,140.0,126.0,150.0,142.0,142.0,142.0,156.0,138.0,149.0,171.0,151.0,111.0,116.0,100.0,82.0,88.0,77.0,79.0,74.0,58.0,64.0,46.0,40.0,44.0,36.0,24.0,22.0,48.0 J81042,27.0,16.0,27.0,18.0,29.0,28.0,30.0,35.0,35.0,32.0,30.0,36.0,38.0,44.0,39.0,47.0,53.0,44.0,92.0,175.0,282.0,297.0,205.0,146.0,131.0,88.0,77.0,72.0,44.0,52.0,46.0,42.0,44.0,54.0,35.0,40.0,36.0,45.0,37.0,51.0,32.0,36.0,44.0,61.0,56.0,35.0,44.0,35.0,53.0,43.0,48.0,56.0,48.0,45.0,54.0,58.0,45.0,46.0,60.0,46.0,45.0,54.0,44.0,58.0,49.0,57.0,42.0,47.0,43.0,32.0,53.0,39.0,29.0,48.0,39.0,39.0,43.0,38.0,42.0,37.0,40.0,25.0,39.0,22.0,19.0,18.0,22.0,12.0,5.0,10.0,13.0,8.0,3.0,6.0,5.0,6.0 J81045,51.0,29.0,39.0,40.0,44.0,41.0,48.0,52.0,60.0,69.0,62.0,62.0,79.0,54.0,66.0,67.0,82.0,70.0,71.0,63.0,45.0,68.0,44.0,38.0,54.0,38.0,68.0,50.0,56.0,54.0,67.0,51.0,72.0,65.0,80.0,86.0,71.0,85.0,80.0,76.0,55.0,78.0,68.0,67.0,67.0,74.0,65.0,60.0,48.0,59.0,64.0,55.0,72.0,66.0,79.0,77.0,76.0,55.0,72.0,61.0,91.0,76.0,63.0,63.0,83.0,77.0,66.0,65.0,68.0,59.0,66.0,70.0,50.0,59.0,59.0,61.0,55.0,61.0,81.0,36.0,60.0,40.0,41.0,31.0,29.0,22.0,29.0,25.0,38.0,10.0,17.0,17.0,17.0,10.0,9.0,26.0 J81046,37.0,45.0,46.0,61.0,45.0,49.0,54.0,48.0,58.0,61.0,76.0,62.0,58.0,74.0,69.0,48.0,75.0,73.0,74.0,57.0,61.0,51.0,46.0,46.0,49.0,60.0,68.0,53.0,40.0,56.0,69.0,58.0,63.0,64.0,76.0,81.0,87.0,89.0,70.0,78.0,82.0,78.0,75.0,69.0,78.0,81.0,82.0,70.0,68.0,73.0,74.0,87.0,82.0,93.0,87.0,76.0,100.0,95.0,82.0,92.0,96.0,112.0,96.0,92.0,80.0,86.0,95.0,97.0,80.0,91.0,98.0,91.0,98.0,99.0,87.0,81.0,102.0,106.0,107.0,84.0,91.0,81.0,67.0,49.0,45.0,43.0,48.0,44.0,46.0,41.0,32.0,28.0,30.0,9.0,10.0,36.0 J81047,39.0,47.0,56.0,70.0,55.0,60.0,68.0,82.0,71.0,92.0,70.0,85.0,64.0,105.0,81.0,78.0,73.0,90.0,68.0,57.0,57.0,56.0,54.0,47.0,52.0,53.0,59.0,53.0,64.0,69.0,77.0,71.0,73.0,81.0,87.0,83.0,86.0,105.0,99.0,86.0,91.0,101.0,101.0,95.0,78.0,94.0,81.0,78.0,76.0,82.0,88.0,67.0,87.0,87.0,91.0,74.0,84.0,74.0,89.0,78.0,94.0,92.0,80.0,88.0,79.0,90.0,89.0,77.0,87.0,64.0,67.0,69.0,57.0,60.0,63.0,58.0,64.0,80.0,59.0,53.0,56.0,47.0,34.0,42.0,21.0,26.0,32.0,31.0,19.0,18.0,15.0,9.0,10.0,7.0,6.0,12.0 J81049,29.0,29.0,26.0,23.0,37.0,33.0,30.0,39.0,53.0,58.0,34.0,57.0,55.0,66.0,53.0,75.0,52.0,55.0,45.0,40.0,36.0,40.0,39.0,29.0,58.0,49.0,41.0,38.0,50.0,52.0,64.0,48.0,55.0,52.0,50.0,56.0,57.0,65.0,63.0,63.0,67.0,69.0,91.0,72.0,79.0,77.0,102.0,74.0,64.0,76.0,60.0,70.0,79.0,68.0,70.0,68.0,77.0,71.0,67.0,65.0,72.0,77.0,74.0,57.0,62.0,60.0,69.0,65.0,76.0,60.0,72.0,68.0,53.0,58.0,70.0,64.0,70.0,68.0,73.0,68.0,62.0,54.0,43.0,37.0,39.0,25.0,42.0,36.0,26.0,28.0,23.0,28.0,23.0,29.0,17.0,58.0 J81051,37.0,38.0,42.0,40.0,56.0,54.0,47.0,64.0,61.0,64.0,58.0,83.0,63.0,72.0,77.0,105.0,72.0,78.0,80.0,64.0,57.0,51.0,65.0,49.0,52.0,56.0,46.0,57.0,66.0,60.0,57.0,69.0,66.0,74.0,87.0,78.0,69.0,99.0,73.0,71.0,83.0,64.0,98.0,87.0,76.0,69.0,61.0,71.0,81.0,72.0,68.0,80.0,80.0,111.0,92.0,101.0,110.0,95.0,90.0,89.0,90.0,101.0,99.0,91.0,95.0,78.0,107.0,97.0,76.0,87.0,90.0,83.0,79.0,77.0,72.0,70.0,74.0,95.0,77.0,61.0,79.0,65.0,53.0,51.0,37.0,37.0,31.0,39.0,34.0,22.0,29.0,21.0,23.0,15.0,9.0,44.0 J81053,14.0,8.0,16.0,13.0,6.0,17.0,18.0,13.0,18.0,16.0,22.0,18.0,20.0,26.0,17.0,16.0,21.0,18.0,14.0,16.0,10.0,13.0,12.0,14.0,12.0,14.0,12.0,20.0,10.0,23.0,15.0,11.0,17.0,14.0,13.0,15.0,26.0,15.0,25.0,21.0,9.0,17.0,20.0,18.0,23.0,12.0,21.0,18.0,20.0,22.0,24.0,24.0,26.0,33.0,26.0,40.0,29.0,36.0,44.0,34.0,48.0,50.0,41.0,28.0,36.0,47.0,46.0,33.0,38.0,33.0,29.0,33.0,39.0,34.0,37.0,39.0,43.0,35.0,44.0,36.0,36.0,27.0,26.0,17.0,18.0,17.0,18.0,19.0,12.0,10.0,12.0,7.0,7.0,11.0,3.0,9.0 J81056,37.0,36.0,35.0,51.0,52.0,60.0,63.0,65.0,61.0,75.0,82.0,67.0,84.0,92.0,78.0,84.0,89.0,77.0,96.0,68.0,70.0,78.0,85.0,68.0,84.0,67.0,60.0,73.0,77.0,65.0,71.0,89.0,70.0,94.0,84.0,93.0,84.0,91.0,91.0,92.0,94.0,83.0,76.0,91.0,75.0,94.0,109.0,95.0,75.0,84.0,79.0,99.0,90.0,107.0,118.0,108.0,105.0,145.0,117.0,133.0,132.0,133.0,129.0,134.0,132.0,115.0,140.0,124.0,121.0,103.0,101.0,113.0,99.0,114.0,92.0,123.0,113.0,117.0,141.0,85.0,117.0,81.0,88.0,81.0,57.0,65.0,63.0,66.0,47.0,41.0,36.0,35.0,18.0,24.0,19.0,42.0 J81057,18.0,25.0,14.0,15.0,25.0,29.0,18.0,28.0,28.0,38.0,23.0,22.0,27.0,27.0,28.0,38.0,26.0,29.0,27.0,28.0,25.0,23.0,28.0,23.0,22.0,26.0,21.0,26.0,30.0,21.0,25.0,27.0,30.0,32.0,23.0,23.0,39.0,28.0,49.0,40.0,41.0,32.0,33.0,33.0,43.0,33.0,33.0,28.0,23.0,31.0,43.0,38.0,37.0,29.0,36.0,43.0,40.0,39.0,31.0,50.0,62.0,30.0,41.0,33.0,35.0,44.0,30.0,45.0,40.0,35.0,41.0,56.0,54.0,41.0,41.0,41.0,57.0,50.0,57.0,44.0,39.0,39.0,44.0,33.0,19.0,27.0,23.0,20.0,23.0,13.0,13.0,12.0,15.0,12.0,12.0,25.0 J81058,47.0,63.0,55.0,72.0,62.0,79.0,58.0,69.0,55.0,68.0,75.0,78.0,74.0,72.0,77.0,74.0,67.0,77.0,68.0,72.0,47.0,56.0,61.0,70.0,86.0,76.0,83.0,65.0,68.0,73.0,76.0,83.0,80.0,73.0,72.0,96.0,68.0,88.0,83.0,84.0,83.0,62.0,75.0,83.0,72.0,80.0,62.0,73.0,86.0,69.0,95.0,86.0,96.0,107.0,105.0,110.0,107.0,86.0,120.0,125.0,95.0,93.0,94.0,131.0,99.0,98.0,94.0,93.0,74.0,90.0,84.0,84.0,60.0,68.0,93.0,89.0,71.0,95.0,89.0,66.0,71.0,57.0,59.0,27.0,41.0,46.0,34.0,31.0,26.0,26.0,13.0,13.0,13.0,12.0,10.0,28.0 J81059,23.0,26.0,29.0,35.0,41.0,39.0,43.0,41.0,56.0,62.0,54.0,54.0,59.0,63.0,50.0,68.0,50.0,49.0,41.0,27.0,44.0,37.0,32.0,42.0,43.0,36.0,36.0,37.0,29.0,27.0,40.0,61.0,41.0,47.0,58.0,62.0,55.0,76.0,60.0,47.0,68.0,88.0,74.0,59.0,76.0,80.0,55.0,73.0,74.0,71.0,54.0,74.0,67.0,77.0,77.0,72.0,55.0,66.0,69.0,82.0,73.0,70.0,44.0,67.0,52.0,47.0,45.0,62.0,46.0,44.0,56.0,53.0,52.0,39.0,44.0,47.0,47.0,53.0,52.0,42.0,48.0,36.0,47.0,31.0,24.0,22.0,19.0,23.0,16.0,15.0,13.0,14.0,9.0,7.0,6.0,9.0 J81061,16.0,14.0,13.0,14.0,25.0,28.0,18.0,9.0,34.0,22.0,25.0,31.0,27.0,28.0,24.0,32.0,32.0,24.0,26.0,16.0,12.0,19.0,26.0,21.0,25.0,15.0,27.0,26.0,21.0,27.0,26.0,30.0,27.0,27.0,30.0,31.0,27.0,25.0,31.0,18.0,35.0,29.0,22.0,38.0,36.0,30.0,31.0,24.0,20.0,37.0,26.0,40.0,34.0,46.0,43.0,43.0,53.0,45.0,50.0,55.0,59.0,51.0,56.0,68.0,49.0,62.0,65.0,55.0,80.0,66.0,70.0,59.0,70.0,69.0,75.0,89.0,87.0,94.0,92.0,64.0,82.0,72.0,72.0,50.0,60.0,49.0,55.0,60.0,43.0,36.0,36.0,38.0,35.0,16.0,16.0,56.0 J81062,32.0,39.0,41.0,45.0,46.0,38.0,55.0,64.0,65.0,74.0,74.0,70.0,72.0,73.0,72.0,69.0,95.0,62.0,71.0,42.0,35.0,43.0,53.0,36.0,43.0,58.0,46.0,58.0,49.0,53.0,51.0,51.0,60.0,71.0,72.0,75.0,74.0,79.0,77.0,99.0,77.0,86.0,90.0,83.0,86.0,92.0,70.0,84.0,75.0,60.0,80.0,65.0,65.0,92.0,77.0,77.0,80.0,62.0,77.0,73.0,82.0,57.0,64.0,67.0,68.0,58.0,51.0,53.0,62.0,45.0,69.0,48.0,51.0,49.0,67.0,45.0,62.0,65.0,62.0,37.0,42.0,41.0,49.0,31.0,39.0,34.0,24.0,16.0,21.0,25.0,14.0,11.0,12.0,9.0,8.0,26.0 J81064,23.0,20.0,20.0,28.0,24.0,23.0,11.0,18.0,22.0,32.0,19.0,30.0,25.0,23.0,28.0,22.0,26.0,16.0,22.0,31.0,23.0,26.0,24.0,39.0,44.0,44.0,47.0,51.0,38.0,54.0,35.0,37.0,43.0,41.0,37.0,35.0,42.0,44.0,49.0,47.0,33.0,30.0,39.0,27.0,26.0,29.0,26.0,34.0,23.0,32.0,23.0,29.0,34.0,41.0,35.0,29.0,38.0,25.0,26.0,35.0,38.0,32.0,38.0,29.0,21.0,26.0,34.0,29.0,29.0,21.0,25.0,21.0,28.0,34.0,25.0,28.0,29.0,27.0,27.0,29.0,23.0,19.0,22.0,18.0,18.0,14.0,12.0,24.0,9.0,14.0,11.0,12.0,8.0,6.0,6.0,4.0 J81066,27.0,27.0,33.0,38.0,41.0,36.0,49.0,50.0,31.0,52.0,73.0,63.0,66.0,62.0,62.0,73.0,58.0,62.0,69.0,58.0,38.0,40.0,47.0,59.0,48.0,54.0,39.0,39.0,44.0,47.0,40.0,37.0,63.0,45.0,49.0,62.0,43.0,66.0,64.0,63.0,58.0,61.0,73.0,76.0,65.0,58.0,76.0,67.0,67.0,84.0,73.0,94.0,98.0,87.0,92.0,71.0,80.0,68.0,87.0,73.0,87.0,72.0,93.0,79.0,72.0,77.0,68.0,67.0,68.0,60.0,73.0,71.0,52.0,86.0,83.0,70.0,79.0,86.0,80.0,70.0,53.0,51.0,48.0,35.0,31.0,41.0,40.0,40.0,37.0,25.0,24.0,10.0,23.0,9.0,10.0,18.0 J81067,27.0,26.0,21.0,31.0,32.0,37.0,34.0,18.0,39.0,34.0,33.0,48.0,39.0,36.0,36.0,30.0,36.0,50.0,25.0,24.0,22.0,22.0,22.0,33.0,23.0,21.0,25.0,47.0,30.0,40.0,39.0,44.0,44.0,45.0,44.0,32.0,36.0,48.0,43.0,47.0,37.0,43.0,54.0,47.0,71.0,50.0,42.0,45.0,35.0,47.0,35.0,39.0,50.0,33.0,34.0,45.0,44.0,49.0,45.0,37.0,42.0,50.0,43.0,27.0,37.0,46.0,35.0,40.0,38.0,30.0,28.0,33.0,27.0,34.0,26.0,25.0,36.0,31.0,32.0,22.0,19.0,21.0,13.0,21.0,17.0,10.0,12.0,13.0,10.0,9.0,8.0,10.0,4.0,2.0,2.0,8.0 J81068,11.0,25.0,20.0,31.0,19.0,24.0,26.0,37.0,32.0,37.0,27.0,28.0,37.0,29.0,35.0,45.0,29.0,43.0,33.0,33.0,28.0,22.0,32.0,34.0,39.0,37.0,45.0,28.0,36.0,34.0,47.0,33.0,40.0,52.0,41.0,42.0,33.0,47.0,49.0,39.0,33.0,28.0,50.0,39.0,30.0,40.0,40.0,38.0,38.0,46.0,33.0,28.0,38.0,45.0,41.0,51.0,53.0,60.0,48.0,47.0,48.0,54.0,48.0,38.0,40.0,39.0,46.0,43.0,39.0,47.0,39.0,52.0,48.0,46.0,54.0,57.0,38.0,49.0,48.0,41.0,41.0,36.0,30.0,32.0,27.0,22.0,28.0,20.0,18.0,11.0,10.0,16.0,11.0,12.0,10.0,22.0 J81070,54.0,59.0,60.0,67.0,70.0,63.0,76.0,71.0,64.0,71.0,74.0,62.0,55.0,71.0,49.0,73.0,57.0,67.0,44.0,56.0,58.0,50.0,60.0,72.0,57.0,63.0,64.0,81.0,78.0,76.0,83.0,91.0,94.0,108.0,96.0,93.0,115.0,99.0,92.0,84.0,99.0,86.0,83.0,106.0,95.0,88.0,63.0,68.0,60.0,65.0,57.0,45.0,76.0,90.0,64.0,66.0,66.0,97.0,75.0,62.0,66.0,81.0,60.0,69.0,45.0,58.0,63.0,61.0,49.0,66.0,60.0,52.0,45.0,54.0,41.0,43.0,55.0,58.0,41.0,37.0,36.0,36.0,26.0,27.0,23.0,16.0,33.0,17.0,15.0,15.0,18.0,9.0,14.0,7.0,8.0,17.0 J81072,52.0,83.0,82.0,51.0,78.0,70.0,67.0,81.0,98.0,73.0,69.0,86.0,59.0,67.0,67.0,59.0,66.0,59.0,106.0,229.0,246.0,163.0,169.0,161.0,183.0,173.0,182.0,188.0,177.0,195.0,185.0,192.0,161.0,177.0,166.0,175.0,157.0,138.0,141.0,128.0,114.0,115.0,128.0,129.0,105.0,98.0,91.0,79.0,65.0,79.0,77.0,63.0,53.0,69.0,60.0,58.0,61.0,67.0,55.0,62.0,51.0,66.0,59.0,51.0,52.0,51.0,51.0,36.0,43.0,44.0,38.0,37.0,33.0,48.0,41.0,48.0,36.0,41.0,41.0,21.0,23.0,31.0,32.0,25.0,16.0,19.0,23.0,24.0,27.0,17.0,15.0,18.0,12.0,10.0,6.0,28.0 J81073,55.0,56.0,46.0,69.0,73.0,80.0,74.0,96.0,93.0,86.0,96.0,79.0,87.0,83.0,91.0,102.0,104.0,87.0,97.0,75.0,94.0,79.0,61.0,86.0,79.0,82.0,105.0,90.0,102.0,90.0,89.0,109.0,94.0,108.0,119.0,101.0,117.0,118.0,103.0,104.0,124.0,105.0,92.0,109.0,125.0,86.0,109.0,81.0,91.0,80.0,94.0,105.0,92.0,106.0,119.0,107.0,126.0,128.0,115.0,114.0,144.0,137.0,122.0,129.0,124.0,110.0,136.0,99.0,117.0,101.0,132.0,105.0,102.0,82.0,93.0,95.0,117.0,122.0,116.0,88.0,85.0,88.0,70.0,54.0,56.0,46.0,58.0,51.0,35.0,45.0,30.0,22.0,17.0,23.0,20.0,39.0 J81074,6.0,7.0,20.0,17.0,15.0,12.0,13.0,11.0,19.0,18.0,18.0,22.0,12.0,25.0,25.0,12.0,19.0,22.0,25.0,16.0,21.0,18.0,15.0,18.0,23.0,16.0,20.0,18.0,18.0,16.0,22.0,16.0,16.0,12.0,22.0,16.0,18.0,21.0,22.0,20.0,26.0,24.0,17.0,16.0,24.0,16.0,26.0,26.0,20.0,24.0,25.0,26.0,35.0,38.0,42.0,35.0,42.0,36.0,46.0,46.0,41.0,55.0,49.0,60.0,58.0,56.0,55.0,59.0,46.0,50.0,56.0,49.0,48.0,39.0,46.0,41.0,49.0,42.0,46.0,55.0,30.0,36.0,33.0,29.0,28.0,33.0,31.0,21.0,7.0,12.0,13.0,10.0,8.0,10.0,5.0,13.0 J81075,26.0,28.0,31.0,32.0,30.0,25.0,26.0,29.0,31.0,29.0,32.0,31.0,43.0,40.0,39.0,35.0,53.0,28.0,33.0,39.0,36.0,38.0,30.0,50.0,32.0,50.0,40.0,46.0,37.0,49.0,42.0,37.0,35.0,46.0,50.0,50.0,38.0,48.0,38.0,38.0,49.0,42.0,47.0,50.0,44.0,37.0,43.0,38.0,42.0,50.0,67.0,52.0,51.0,59.0,67.0,64.0,82.0,73.0,60.0,63.0,62.0,69.0,63.0,67.0,70.0,75.0,70.0,65.0,68.0,70.0,54.0,68.0,58.0,48.0,49.0,72.0,57.0,61.0,57.0,52.0,43.0,40.0,31.0,27.0,22.0,25.0,19.0,20.0,15.0,15.0,13.0,12.0,6.0,7.0,7.0,19.0 J81076,70.0,65.0,75.0,69.0,68.0,99.0,97.0,94.0,111.0,110.0,99.0,112.0,106.0,92.0,115.0,120.0,125.0,116.0,112.0,92.0,93.0,79.0,92.0,103.0,96.0,87.0,90.0,99.0,79.0,101.0,92.0,112.0,95.0,115.0,129.0,122.0,120.0,132.0,134.0,125.0,110.0,104.0,117.0,120.0,127.0,149.0,126.0,115.0,120.0,107.0,106.0,135.0,166.0,174.0,197.0,181.0,187.0,191.0,193.0,222.0,244.0,212.0,227.0,227.0,221.0,230.0,217.0,234.0,216.0,233.0,205.0,214.0,212.0,194.0,206.0,204.0,185.0,209.0,215.0,163.0,172.0,149.0,129.0,104.0,97.0,99.0,70.0,60.0,63.0,65.0,45.0,41.0,51.0,53.0,26.0,78.0 J81077,22.0,29.0,28.0,28.0,35.0,30.0,47.0,39.0,38.0,42.0,27.0,42.0,46.0,46.0,35.0,40.0,40.0,48.0,32.0,34.0,37.0,29.0,31.0,27.0,35.0,42.0,39.0,52.0,23.0,39.0,44.0,38.0,26.0,45.0,35.0,35.0,45.0,34.0,52.0,40.0,53.0,41.0,44.0,53.0,46.0,58.0,55.0,41.0,47.0,48.0,43.0,57.0,48.0,56.0,68.0,61.0,68.0,65.0,82.0,59.0,72.0,80.0,75.0,67.0,58.0,67.0,63.0,80.0,58.0,52.0,48.0,55.0,58.0,41.0,44.0,53.0,56.0,66.0,58.0,47.0,35.0,32.0,31.0,17.0,20.0,19.0,21.0,21.0,18.0,23.0,14.0,12.0,13.0,,3.0,16.0 J81078,36.0,42.0,50.0,45.0,56.0,41.0,52.0,63.0,69.0,68.0,52.0,79.0,88.0,110.0,134.0,167.0,144.0,128.0,120.0,73.0,40.0,41.0,47.0,55.0,62.0,52.0,68.0,50.0,53.0,43.0,64.0,59.0,57.0,58.0,75.0,63.0,74.0,73.0,58.0,83.0,66.0,61.0,68.0,62.0,72.0,66.0,65.0,52.0,59.0,61.0,76.0,84.0,91.0,90.0,100.0,73.0,94.0,94.0,98.0,108.0,94.0,92.0,100.0,105.0,79.0,100.0,93.0,105.0,89.0,97.0,87.0,94.0,85.0,78.0,91.0,126.0,105.0,105.0,124.0,73.0,68.0,87.0,77.0,81.0,55.0,56.0,58.0,63.0,47.0,30.0,27.0,34.0,21.0,30.0,13.0,42.0 J81081,36.0,36.0,46.0,55.0,56.0,53.0,45.0,59.0,65.0,66.0,56.0,69.0,54.0,66.0,70.0,70.0,86.0,71.0,69.0,65.0,66.0,59.0,66.0,71.0,48.0,64.0,66.0,58.0,73.0,50.0,59.0,91.0,68.0,71.0,70.0,68.0,81.0,88.0,73.0,63.0,78.0,84.0,84.0,78.0,71.0,92.0,74.0,59.0,82.0,70.0,86.0,93.0,74.0,117.0,91.0,94.0,86.0,110.0,98.0,124.0,94.0,111.0,102.0,91.0,95.0,87.0,108.0,103.0,97.0,89.0,94.0,88.0,85.0,81.0,67.0,82.0,87.0,100.0,92.0,75.0,72.0,70.0,55.0,73.0,47.0,41.0,60.0,54.0,41.0,30.0,27.0,27.0,21.0,16.0,17.0,53.0 J81082,36.0,34.0,29.0,34.0,28.0,37.0,43.0,30.0,43.0,40.0,40.0,25.0,32.0,60.0,39.0,46.0,41.0,43.0,37.0,35.0,32.0,28.0,34.0,30.0,36.0,27.0,48.0,49.0,45.0,41.0,47.0,43.0,58.0,50.0,55.0,46.0,30.0,40.0,37.0,46.0,44.0,51.0,43.0,46.0,37.0,52.0,45.0,42.0,57.0,45.0,35.0,59.0,41.0,58.0,63.0,59.0,61.0,59.0,65.0,53.0,85.0,65.0,56.0,57.0,50.0,70.0,63.0,55.0,69.0,54.0,65.0,62.0,44.0,62.0,57.0,58.0,63.0,67.0,62.0,37.0,50.0,40.0,39.0,41.0,28.0,35.0,31.0,32.0,23.0,18.0,13.0,19.0,20.0,9.0,4.0,21.0 J81086,31.0,44.0,46.0,48.0,35.0,46.0,48.0,34.0,39.0,51.0,43.0,44.0,33.0,49.0,30.0,40.0,38.0,36.0,29.0,33.0,34.0,27.0,40.0,42.0,39.0,53.0,57.0,46.0,60.0,65.0,56.0,63.0,58.0,77.0,71.0,68.0,64.0,66.0,68.0,75.0,69.0,36.0,56.0,48.0,59.0,40.0,44.0,37.0,47.0,47.0,50.0,49.0,46.0,41.0,61.0,41.0,56.0,63.0,66.0,65.0,61.0,52.0,47.0,68.0,40.0,39.0,47.0,44.0,47.0,38.0,36.0,29.0,35.0,36.0,41.0,33.0,34.0,48.0,53.0,23.0,25.0,28.0,22.0,19.0,16.0,23.0,15.0,20.0,7.0,13.0,8.0,6.0,12.0,7.0,9.0,16.0 J81087,38.0,41.0,45.0,43.0,59.0,82.0,62.0,64.0,72.0,75.0,58.0,51.0,69.0,61.0,61.0,59.0,77.0,55.0,40.0,50.0,44.0,55.0,50.0,50.0,48.0,43.0,42.0,64.0,68.0,67.0,59.0,76.0,66.0,74.0,88.0,84.0,86.0,83.0,79.0,63.0,78.0,88.0,81.0,68.0,71.0,73.0,60.0,53.0,56.0,53.0,67.0,62.0,75.0,76.0,72.0,84.0,80.0,89.0,86.0,87.0,81.0,76.0,70.0,69.0,92.0,75.0,79.0,64.0,57.0,60.0,44.0,55.0,37.0,47.0,55.0,45.0,40.0,54.0,39.0,37.0,27.0,35.0,23.0,20.0,19.0,22.0,17.0,14.0,8.0,10.0,6.0,10.0,2.0,9.0,6.0,6.0 J81609,26.0,21.0,37.0,32.0,39.0,35.0,38.0,45.0,42.0,44.0,48.0,52.0,52.0,45.0,70.0,50.0,55.0,40.0,52.0,41.0,33.0,31.0,36.0,33.0,29.0,34.0,41.0,41.0,32.0,35.0,36.0,51.0,48.0,37.0,39.0,54.0,63.0,57.0,44.0,47.0,42.0,59.0,47.0,52.0,50.0,51.0,55.0,56.0,49.0,56.0,66.0,56.0,62.0,70.0,72.0,92.0,75.0,68.0,85.0,80.0,88.0,90.0,86.0,99.0,101.0,82.0,80.0,86.0,70.0,49.0,68.0,66.0,79.0,96.0,69.0,77.0,67.0,79.0,84.0,63.0,83.0,67.0,48.0,50.0,38.0,39.0,49.0,27.0,34.0,36.0,29.0,10.0,19.0,11.0,15.0,33.0 J81612,9.0,4.0,8.0,14.0,11.0,13.0,15.0,15.0,11.0,10.0,20.0,10.0,19.0,18.0,11.0,13.0,15.0,14.0,16.0,12.0,15.0,11.0,12.0,7.0,16.0,17.0,6.0,13.0,9.0,12.0,11.0,11.0,5.0,15.0,11.0,17.0,16.0,16.0,13.0,15.0,12.0,16.0,17.0,16.0,10.0,12.0,13.0,20.0,13.0,18.0,15.0,9.0,23.0,21.0,27.0,29.0,27.0,38.0,34.0,25.0,26.0,37.0,35.0,31.0,33.0,29.0,30.0,42.0,27.0,22.0,28.0,20.0,25.0,22.0,23.0,34.0,22.0,31.0,29.0,24.0,21.0,28.0,15.0,14.0,13.0,11.0,9.0,8.0,5.0,7.0,6.0,3.0,3.0,1.0,3.0,5.0 J81616,8.0,8.0,11.0,13.0,10.0,19.0,13.0,21.0,18.0,14.0,18.0,21.0,16.0,24.0,22.0,25.0,19.0,23.0,23.0,17.0,19.0,10.0,24.0,15.0,15.0,23.0,16.0,19.0,12.0,19.0,19.0,16.0,16.0,18.0,11.0,23.0,28.0,20.0,15.0,23.0,24.0,18.0,23.0,27.0,23.0,26.0,16.0,15.0,29.0,18.0,34.0,27.0,44.0,31.0,28.0,41.0,42.0,46.0,52.0,35.0,37.0,32.0,33.0,42.0,48.0,40.0,40.0,40.0,29.0,32.0,30.0,40.0,27.0,38.0,37.0,35.0,39.0,35.0,23.0,27.0,28.0,15.0,22.0,12.0,15.0,9.0,16.0,8.0,5.0,11.0,4.0,3.0,4.0,3.0,4.0,12.0 J81620,76.0,96.0,111.0,107.0,119.0,123.0,100.0,134.0,114.0,121.0,130.0,165.0,159.0,167.0,125.0,151.0,139.0,134.0,117.0,128.0,103.0,110.0,134.0,115.0,119.0,98.0,114.0,117.0,128.0,135.0,123.0,130.0,143.0,139.0,164.0,155.0,151.0,132.0,155.0,140.0,147.0,156.0,137.0,165.0,131.0,143.0,120.0,118.0,145.0,169.0,159.0,169.0,184.0,196.0,190.0,190.0,199.0,224.0,199.0,212.0,211.0,233.0,228.0,206.0,251.0,214.0,235.0,194.0,193.0,184.0,174.0,202.0,176.0,180.0,183.0,178.0,174.0,193.0,186.0,154.0,151.0,137.0,113.0,108.0,111.0,86.0,96.0,79.0,74.0,62.0,55.0,41.0,38.0,32.0,31.0,80.0 J81621,30.0,36.0,43.0,39.0,36.0,52.0,37.0,49.0,39.0,56.0,52.0,44.0,42.0,49.0,44.0,47.0,40.0,32.0,55.0,44.0,27.0,30.0,35.0,39.0,36.0,42.0,26.0,51.0,46.0,44.0,72.0,42.0,56.0,55.0,45.0,50.0,60.0,70.0,52.0,59.0,51.0,46.0,53.0,45.0,50.0,51.0,43.0,46.0,39.0,39.0,33.0,41.0,54.0,58.0,58.0,50.0,49.0,70.0,56.0,67.0,67.0,80.0,77.0,61.0,65.0,74.0,64.0,63.0,59.0,61.0,50.0,67.0,47.0,44.0,53.0,63.0,53.0,55.0,61.0,48.0,56.0,40.0,37.0,35.0,29.0,29.0,37.0,35.0,23.0,20.0,13.0,8.0,11.0,12.0,6.0,29.0 J81625,51.0,55.0,73.0,58.0,70.0,77.0,72.0,117.0,84.0,104.0,92.0,93.0,97.0,91.0,110.0,94.0,96.0,80.0,65.0,64.0,80.0,79.0,73.0,81.0,80.0,87.0,87.0,86.0,95.0,86.0,103.0,90.0,105.0,97.0,116.0,131.0,97.0,111.0,106.0,127.0,118.0,143.0,135.0,106.0,114.0,118.0,121.0,108.0,105.0,102.0,91.0,90.0,92.0,97.0,96.0,92.0,94.0,86.0,80.0,82.0,100.0,87.0,71.0,75.0,69.0,66.0,67.0,70.0,67.0,65.0,49.0,58.0,53.0,52.0,63.0,51.0,49.0,63.0,59.0,34.0,36.0,48.0,33.0,23.0,23.0,27.0,31.0,21.0,20.0,12.0,14.0,15.0,13.0,10.0,10.0,29.0 J81626,14.0,15.0,18.0,20.0,24.0,25.0,20.0,34.0,30.0,23.0,22.0,23.0,24.0,26.0,28.0,27.0,35.0,27.0,25.0,30.0,20.0,29.0,31.0,21.0,21.0,15.0,35.0,24.0,38.0,26.0,29.0,34.0,27.0,34.0,22.0,25.0,39.0,32.0,40.0,33.0,34.0,18.0,34.0,29.0,39.0,25.0,29.0,25.0,38.0,35.0,42.0,29.0,32.0,37.0,42.0,31.0,39.0,45.0,36.0,48.0,46.0,35.0,48.0,34.0,36.0,30.0,30.0,37.0,38.0,28.0,18.0,36.0,27.0,35.0,42.0,26.0,28.0,36.0,45.0,20.0,33.0,36.0,20.0,22.0,20.0,21.0,15.0,15.0,18.0,15.0,18.0,8.0,9.0,9.0,7.0,17.0 J81631,7.0,6.0,7.0,9.0,5.0,4.0,4.0,5.0,5.0,12.0,10.0,9.0,10.0,8.0,9.0,12.0,13.0,11.0,12.0,6.0,8.0,5.0,8.0,7.0,12.0,6.0,13.0,7.0,7.0,6.0,8.0,15.0,12.0,7.0,7.0,8.0,11.0,10.0,13.0,10.0,10.0,12.0,7.0,15.0,4.0,12.0,9.0,12.0,11.0,9.0,9.0,10.0,15.0,13.0,14.0,18.0,16.0,14.0,18.0,23.0,26.0,18.0,13.0,27.0,16.0,19.0,26.0,23.0,28.0,11.0,18.0,15.0,17.0,17.0,13.0,21.0,15.0,25.0,18.0,13.0,12.0,10.0,13.0,10.0,11.0,5.0,5.0,8.0,,2.0,1.0,4.0,2.0,1.0,1.0,3.0 J81633,24.0,20.0,19.0,36.0,32.0,38.0,26.0,38.0,29.0,34.0,50.0,50.0,34.0,46.0,51.0,46.0,44.0,39.0,35.0,27.0,30.0,40.0,37.0,27.0,36.0,36.0,32.0,23.0,41.0,48.0,40.0,31.0,30.0,37.0,52.0,44.0,49.0,38.0,66.0,44.0,60.0,39.0,50.0,58.0,58.0,51.0,47.0,42.0,38.0,52.0,46.0,48.0,47.0,42.0,50.0,42.0,50.0,41.0,42.0,48.0,43.0,54.0,39.0,60.0,43.0,40.0,46.0,38.0,40.0,33.0,37.0,36.0,42.0,29.0,25.0,32.0,36.0,26.0,31.0,16.0,20.0,22.0,17.0,19.0,14.0,24.0,13.0,12.0,17.0,9.0,7.0,8.0,9.0,8.0,4.0,9.0 J81634,56.0,60.0,58.0,47.0,52.0,43.0,56.0,57.0,68.0,54.0,72.0,66.0,80.0,61.0,83.0,71.0,57.0,63.0,52.0,45.0,50.0,63.0,43.0,53.0,83.0,75.0,86.0,104.0,114.0,109.0,106.0,108.0,129.0,121.0,134.0,106.0,132.0,133.0,132.0,122.0,115.0,111.0,103.0,106.0,93.0,92.0,78.0,89.0,79.0,69.0,72.0,86.0,53.0,64.0,60.0,75.0,59.0,45.0,62.0,54.0,70.0,51.0,62.0,48.0,46.0,41.0,38.0,32.0,26.0,32.0,26.0,33.0,28.0,18.0,17.0,19.0,14.0,24.0,27.0,11.0,14.0,14.0,11.0,8.0,10.0,11.0,4.0,6.0,5.0,4.0,4.0,,5.0,4.0,4.0,7.0 J81646,17.0,22.0,23.0,18.0,28.0,32.0,29.0,32.0,25.0,40.0,36.0,33.0,48.0,35.0,31.0,29.0,37.0,36.0,33.0,34.0,30.0,27.0,29.0,35.0,34.0,28.0,32.0,36.0,36.0,35.0,35.0,30.0,29.0,27.0,36.0,32.0,40.0,33.0,42.0,35.0,43.0,42.0,42.0,29.0,33.0,47.0,44.0,54.0,32.0,40.0,38.0,42.0,31.0,48.0,60.0,49.0,63.0,51.0,39.0,47.0,53.0,47.0,58.0,43.0,41.0,45.0,34.0,33.0,35.0,38.0,35.0,41.0,35.0,25.0,36.0,37.0,45.0,58.0,59.0,39.0,39.0,34.0,26.0,28.0,20.0,37.0,21.0,27.0,27.0,18.0,17.0,16.0,27.0,10.0,9.0,26.0 J81647,11.0,11.0,21.0,9.0,19.0,22.0,25.0,29.0,26.0,26.0,34.0,37.0,55.0,46.0,56.0,49.0,44.0,66.0,39.0,28.0,29.0,44.0,37.0,32.0,34.0,24.0,36.0,28.0,25.0,25.0,32.0,30.0,30.0,26.0,23.0,33.0,34.0,24.0,30.0,29.0,36.0,34.0,28.0,35.0,37.0,34.0,39.0,53.0,62.0,48.0,53.0,45.0,48.0,58.0,72.0,79.0,83.0,89.0,78.0,85.0,102.0,93.0,102.0,96.0,94.0,85.0,76.0,81.0,87.0,65.0,68.0,76.0,73.0,67.0,68.0,94.0,84.0,74.0,91.0,72.0,70.0,53.0,43.0,48.0,28.0,49.0,33.0,49.0,33.0,18.0,15.0,26.0,16.0,12.0,12.0,43.0 J81648,20.0,19.0,13.0,33.0,14.0,21.0,18.0,25.0,31.0,18.0,22.0,32.0,28.0,30.0,37.0,33.0,27.0,27.0,24.0,17.0,12.0,20.0,23.0,24.0,31.0,21.0,44.0,45.0,53.0,38.0,40.0,42.0,46.0,44.0,57.0,38.0,44.0,42.0,40.0,40.0,33.0,46.0,28.0,33.0,41.0,43.0,35.0,37.0,39.0,28.0,31.0,24.0,31.0,47.0,38.0,30.0,33.0,32.0,41.0,34.0,43.0,45.0,39.0,34.0,39.0,36.0,38.0,34.0,32.0,30.0,24.0,23.0,22.0,31.0,23.0,29.0,31.0,32.0,31.0,20.0,28.0,25.0,18.0,17.0,13.0,16.0,19.0,13.0,8.0,6.0,11.0,12.0,6.0,4.0,4.0,12.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 H83001,108.0,101.0,97.0,93.0,99.0,81.0,83.0,86.0,77.0,75.0,60.0,70.0,86.0,86.0,85.0,77.0,86.0,91.0,88.0,61.0,79.0,71.0,80.0,94.0,112.0,137.0,110.0,153.0,136.0,137.0,150.0,168.0,168.0,180.0,162.0,176.0,174.0,156.0,149.0,139.0,146.0,139.0,128.0,108.0,111.0,115.0,95.0,111.0,103.0,102.0,116.0,76.0,95.0,104.0,77.0,92.0,85.0,95.0,103.0,85.0,94.0,95.0,92.0,79.0,69.0,81.0,60.0,48.0,52.0,53.0,37.0,27.0,39.0,35.0,27.0,25.0,33.0,30.0,32.0,30.0,19.0,20.0,19.0,20.0,16.0,15.0,15.0,19.0,18.0,7.0,11.0,6.0,4.0,8.0,3.0,12.0 H83004,35.0,56.0,55.0,50.0,50.0,55.0,55.0,68.0,61.0,66.0,64.0,62.0,67.0,76.0,80.0,82.0,59.0,78.0,69.0,52.0,57.0,44.0,48.0,60.0,51.0,60.0,58.0,74.0,59.0,57.0,71.0,68.0,82.0,85.0,77.0,83.0,84.0,85.0,71.0,83.0,80.0,76.0,96.0,99.0,82.0,80.0,93.0,82.0,70.0,73.0,82.0,66.0,70.0,70.0,76.0,78.0,75.0,73.0,71.0,80.0,74.0,69.0,84.0,79.0,65.0,67.0,61.0,64.0,74.0,72.0,71.0,64.0,64.0,68.0,59.0,80.0,82.0,78.0,81.0,49.0,46.0,46.0,36.0,31.0,35.0,27.0,27.0,28.0,25.0,21.0,17.0,13.0,8.0,9.0,5.0,20.0 H83005,87.0,86.0,70.0,110.0,88.0,82.0,87.0,82.0,76.0,89.0,69.0,64.0,78.0,67.0,84.0,76.0,86.0,91.0,88.0,58.0,64.0,59.0,70.0,56.0,73.0,94.0,98.0,95.0,89.0,128.0,124.0,155.0,150.0,187.0,173.0,178.0,186.0,179.0,164.0,174.0,152.0,145.0,172.0,160.0,137.0,114.0,145.0,118.0,133.0,120.0,106.0,103.0,102.0,100.0,90.0,85.0,86.0,94.0,78.0,83.0,65.0,77.0,64.0,60.0,70.0,50.0,46.0,30.0,45.0,32.0,30.0,31.0,27.0,24.0,31.0,24.0,29.0,24.0,22.0,23.0,19.0,14.0,15.0,15.0,16.0,15.0,14.0,5.0,9.0,8.0,5.0,1.0,7.0,3.0,2.0,9.0 H83006,54.0,57.0,64.0,74.0,96.0,73.0,85.0,94.0,94.0,94.0,93.0,94.0,115.0,105.0,111.0,90.0,100.0,103.0,107.0,78.0,85.0,96.0,71.0,90.0,95.0,78.0,97.0,92.0,93.0,94.0,81.0,97.0,106.0,106.0,84.0,117.0,110.0,85.0,102.0,98.0,87.0,80.0,106.0,86.0,75.0,77.0,69.0,76.0,81.0,82.0,77.0,74.0,69.0,69.0,77.0,77.0,80.0,92.0,55.0,68.0,73.0,52.0,61.0,71.0,56.0,49.0,38.0,34.0,35.0,41.0,32.0,39.0,24.0,26.0,22.0,22.0,26.0,29.0,24.0,18.0,16.0,15.0,17.0,17.0,15.0,13.0,18.0,10.0,8.0,13.0,11.0,11.0,7.0,7.0,4.0,10.0 H83007,46.0,42.0,53.0,51.0,51.0,74.0,52.0,73.0,68.0,74.0,85.0,76.0,86.0,94.0,66.0,78.0,78.0,72.0,65.0,64.0,62.0,53.0,66.0,76.0,64.0,63.0,72.0,74.0,72.0,79.0,67.0,78.0,75.0,97.0,106.0,84.0,78.0,83.0,98.0,82.0,82.0,95.0,71.0,103.0,104.0,93.0,87.0,52.0,86.0,73.0,67.0,56.0,70.0,84.0,65.0,67.0,77.0,69.0,74.0,64.0,72.0,72.0,65.0,32.0,54.0,46.0,43.0,47.0,37.0,38.0,28.0,36.0,28.0,19.0,32.0,30.0,19.0,27.0,18.0,15.0,23.0,27.0,26.0,14.0,19.0,13.0,14.0,16.0,14.0,10.0,11.0,6.0,6.0,3.0,2.0,17.0 H83008,25.0,30.0,23.0,31.0,22.0,18.0,16.0,21.0,28.0,20.0,20.0,19.0,27.0,24.0,21.0,28.0,13.0,18.0,26.0,25.0,28.0,23.0,25.0,21.0,37.0,29.0,33.0,26.0,24.0,38.0,44.0,48.0,44.0,42.0,41.0,57.0,29.0,36.0,37.0,33.0,27.0,27.0,29.0,21.0,18.0,26.0,29.0,20.0,19.0,20.0,17.0,12.0,14.0,19.0,20.0,20.0,23.0,27.0,28.0,34.0,25.0,27.0,25.0,27.0,23.0,17.0,18.0,20.0,20.0,11.0,14.0,14.0,9.0,17.0,14.0,5.0,5.0,13.0,16.0,10.0,7.0,12.0,4.0,7.0,6.0,5.0,5.0,4.0,6.0,5.0,6.0,4.0,5.0,2.0,1.0,7.0 H83009,57.0,45.0,59.0,53.0,55.0,55.0,54.0,51.0,56.0,59.0,44.0,74.0,59.0,57.0,54.0,62.0,75.0,53.0,59.0,47.0,61.0,54.0,48.0,72.0,83.0,83.0,81.0,88.0,87.0,84.0,96.0,70.0,96.0,68.0,92.0,88.0,93.0,91.0,84.0,77.0,78.0,72.0,64.0,79.0,64.0,62.0,72.0,65.0,63.0,59.0,63.0,59.0,43.0,67.0,57.0,56.0,68.0,62.0,62.0,71.0,52.0,60.0,73.0,71.0,59.0,67.0,52.0,42.0,39.0,38.0,33.0,40.0,46.0,28.0,35.0,36.0,28.0,34.0,37.0,25.0,22.0,24.0,21.0,22.0,27.0,19.0,18.0,13.0,20.0,15.0,11.0,8.0,5.0,6.0,7.0,12.0 H83010,29.0,21.0,39.0,24.0,31.0,31.0,28.0,27.0,35.0,37.0,29.0,31.0,49.0,26.0,37.0,27.0,44.0,41.0,38.0,31.0,34.0,44.0,38.0,51.0,55.0,56.0,55.0,58.0,71.0,67.0,56.0,57.0,60.0,49.0,61.0,55.0,69.0,51.0,59.0,60.0,50.0,44.0,48.0,44.0,42.0,57.0,49.0,28.0,50.0,35.0,49.0,31.0,43.0,39.0,38.0,54.0,39.0,46.0,56.0,25.0,51.0,38.0,40.0,38.0,45.0,36.0,35.0,24.0,33.0,26.0,26.0,25.0,26.0,18.0,18.0,11.0,18.0,19.0,19.0,11.0,15.0,10.0,16.0,17.0,7.0,10.0,13.0,10.0,4.0,6.0,11.0,6.0,5.0,5.0,2.0,5.0 H83011,36.0,40.0,32.0,33.0,39.0,43.0,50.0,39.0,53.0,34.0,49.0,56.0,47.0,52.0,31.0,50.0,35.0,32.0,46.0,45.0,33.0,35.0,36.0,50.0,54.0,71.0,84.0,76.0,58.0,62.0,61.0,63.0,76.0,71.0,64.0,60.0,68.0,68.0,59.0,63.0,59.0,58.0,61.0,44.0,52.0,54.0,42.0,48.0,49.0,45.0,52.0,43.0,48.0,49.0,47.0,35.0,48.0,36.0,34.0,37.0,38.0,29.0,43.0,25.0,30.0,26.0,32.0,21.0,23.0,16.0,15.0,16.0,20.0,20.0,12.0,9.0,9.0,7.0,10.0,9.0,8.0,11.0,10.0,6.0,9.0,4.0,4.0,2.0,9.0,5.0,2.0,2.0,1.0,,2.0,3.0 H83012,40.0,36.0,50.0,60.0,48.0,71.0,64.0,63.0,62.0,71.0,77.0,69.0,81.0,80.0,72.0,79.0,83.0,67.0,75.0,56.0,52.0,60.0,51.0,50.0,51.0,69.0,64.0,80.0,75.0,72.0,79.0,90.0,85.0,73.0,92.0,111.0,84.0,80.0,98.0,94.0,78.0,80.0,79.0,80.0,67.0,81.0,67.0,55.0,64.0,54.0,48.0,57.0,68.0,59.0,68.0,63.0,61.0,52.0,49.0,55.0,46.0,46.0,49.0,50.0,32.0,31.0,49.0,32.0,35.0,44.0,28.0,16.0,19.0,19.0,16.0,17.0,13.0,19.0,21.0,16.0,18.0,17.0,13.0,9.0,15.0,17.0,6.0,8.0,15.0,9.0,3.0,6.0,3.0,1.0,4.0,3.0 H83013,109.0,121.0,116.0,125.0,135.0,141.0,132.0,128.0,128.0,117.0,130.0,128.0,116.0,128.0,130.0,116.0,109.0,111.0,97.0,84.0,79.0,85.0,76.0,93.0,89.0,111.0,97.0,99.0,112.0,105.0,119.0,107.0,124.0,140.0,162.0,177.0,179.0,180.0,152.0,141.0,150.0,171.0,180.0,164.0,147.0,160.0,144.0,128.0,128.0,116.0,101.0,108.0,108.0,126.0,106.0,119.0,128.0,131.0,89.0,119.0,95.0,116.0,93.0,109.0,108.0,112.0,81.0,89.0,90.0,101.0,92.0,88.0,77.0,88.0,94.0,82.0,72.0,90.0,90.0,67.0,74.0,66.0,44.0,38.0,42.0,28.0,26.0,33.0,21.0,20.0,24.0,13.0,19.0,13.0,7.0,27.0 H83014,26.0,21.0,29.0,19.0,29.0,26.0,34.0,38.0,34.0,31.0,34.0,26.0,40.0,42.0,37.0,41.0,34.0,36.0,37.0,33.0,18.0,24.0,32.0,33.0,34.0,35.0,38.0,38.0,51.0,43.0,38.0,26.0,34.0,42.0,42.0,40.0,37.0,54.0,47.0,54.0,52.0,45.0,44.0,54.0,41.0,44.0,52.0,61.0,41.0,38.0,33.0,41.0,31.0,47.0,41.0,54.0,42.0,46.0,54.0,49.0,43.0,49.0,58.0,50.0,48.0,47.0,55.0,45.0,50.0,37.0,50.0,57.0,39.0,33.0,37.0,40.0,42.0,53.0,50.0,33.0,34.0,27.0,24.0,25.0,26.0,25.0,21.0,11.0,16.0,18.0,6.0,6.0,7.0,6.0,2.0,13.0 H83015,64.0,93.0,83.0,74.0,95.0,89.0,79.0,86.0,79.0,73.0,86.0,70.0,83.0,86.0,77.0,79.0,67.0,71.0,68.0,45.0,54.0,53.0,73.0,59.0,74.0,71.0,95.0,92.0,92.0,104.0,107.0,129.0,123.0,126.0,130.0,116.0,125.0,133.0,144.0,120.0,126.0,118.0,123.0,95.0,120.0,129.0,104.0,93.0,102.0,92.0,98.0,83.0,87.0,92.0,86.0,80.0,93.0,99.0,84.0,98.0,88.0,80.0,86.0,78.0,75.0,72.0,54.0,60.0,54.0,69.0,46.0,50.0,59.0,49.0,49.0,42.0,36.0,40.0,51.0,35.0,33.0,36.0,37.0,31.0,18.0,27.0,23.0,27.0,16.0,15.0,14.0,13.0,13.0,6.0,5.0,22.0 H83016,125.0,150.0,142.0,148.0,132.0,135.0,128.0,147.0,125.0,159.0,123.0,160.0,138.0,141.0,161.0,133.0,120.0,147.0,103.0,83.0,92.0,126.0,109.0,132.0,128.0,157.0,152.0,178.0,158.0,178.0,196.0,172.0,172.0,218.0,215.0,212.0,201.0,200.0,234.0,228.0,222.0,191.0,204.0,185.0,197.0,186.0,147.0,178.0,162.0,158.0,122.0,145.0,136.0,146.0,149.0,164.0,133.0,161.0,110.0,149.0,144.0,129.0,130.0,123.0,108.0,131.0,124.0,122.0,95.0,90.0,107.0,80.0,100.0,95.0,80.0,76.0,78.0,105.0,92.0,87.0,77.0,80.0,56.0,42.0,49.0,54.0,45.0,53.0,35.0,39.0,22.0,29.0,24.0,18.0,18.0,68.0 H83017,47.0,54.0,55.0,60.0,65.0,44.0,73.0,57.0,74.0,61.0,79.0,95.0,74.0,90.0,93.0,97.0,88.0,94.0,87.0,82.0,80.0,71.0,88.0,86.0,56.0,96.0,94.0,94.0,97.0,109.0,100.0,87.0,94.0,95.0,111.0,87.0,90.0,96.0,84.0,97.0,77.0,102.0,102.0,108.0,107.0,89.0,92.0,96.0,85.0,89.0,87.0,66.0,93.0,97.0,107.0,100.0,123.0,125.0,98.0,104.0,90.0,82.0,118.0,86.0,92.0,67.0,88.0,76.0,63.0,73.0,53.0,50.0,38.0,46.0,39.0,33.0,42.0,41.0,27.0,24.0,25.0,29.0,28.0,19.0,17.0,24.0,17.0,25.0,10.0,12.0,11.0,12.0,9.0,8.0,1.0,12.0 H83018,64.0,108.0,88.0,79.0,102.0,102.0,108.0,88.0,109.0,110.0,110.0,90.0,122.0,121.0,110.0,113.0,119.0,140.0,111.0,80.0,82.0,83.0,94.0,77.0,100.0,104.0,116.0,89.0,85.0,95.0,81.0,107.0,89.0,113.0,120.0,141.0,128.0,144.0,142.0,124.0,143.0,125.0,138.0,125.0,143.0,146.0,139.0,118.0,118.0,108.0,106.0,100.0,126.0,120.0,135.0,111.0,116.0,126.0,125.0,127.0,111.0,112.0,120.0,107.0,109.0,98.0,86.0,98.0,88.0,82.0,92.0,91.0,75.0,82.0,84.0,77.0,78.0,85.0,94.0,75.0,67.0,59.0,53.0,41.0,45.0,43.0,38.0,47.0,44.0,30.0,26.0,28.0,15.0,8.0,8.0,32.0 H83019,37.0,25.0,35.0,39.0,29.0,33.0,45.0,31.0,41.0,30.0,26.0,32.0,44.0,30.0,35.0,41.0,40.0,37.0,40.0,25.0,29.0,17.0,27.0,36.0,45.0,41.0,49.0,51.0,59.0,66.0,49.0,58.0,63.0,89.0,74.0,84.0,75.0,66.0,79.0,67.0,51.0,64.0,67.0,59.0,51.0,59.0,57.0,51.0,53.0,51.0,52.0,36.0,37.0,44.0,44.0,41.0,49.0,39.0,53.0,33.0,44.0,52.0,43.0,33.0,31.0,39.0,33.0,34.0,31.0,21.0,27.0,19.0,27.0,24.0,25.0,20.0,19.0,17.0,32.0,21.0,18.0,21.0,13.0,8.0,10.0,21.0,20.0,13.0,11.0,7.0,9.0,8.0,9.0,11.0,8.0,27.0 H83020,31.0,47.0,48.0,44.0,48.0,40.0,60.0,52.0,47.0,52.0,70.0,61.0,65.0,86.0,66.0,78.0,85.0,84.0,53.0,56.0,63.0,77.0,60.0,74.0,59.0,73.0,78.0,71.0,80.0,65.0,81.0,71.0,66.0,70.0,89.0,92.0,103.0,79.0,85.0,85.0,57.0,65.0,74.0,81.0,74.0,73.0,61.0,62.0,73.0,75.0,78.0,63.0,81.0,73.0,82.0,86.0,64.0,64.0,55.0,78.0,63.0,66.0,58.0,55.0,67.0,45.0,48.0,42.0,42.0,50.0,48.0,40.0,29.0,32.0,31.0,30.0,22.0,21.0,26.0,19.0,21.0,17.0,17.0,20.0,18.0,11.0,11.0,4.0,10.0,9.0,6.0,3.0,7.0,5.0,2.0,8.0 H83021,21.0,26.0,42.0,26.0,23.0,23.0,28.0,27.0,25.0,31.0,29.0,36.0,29.0,36.0,27.0,42.0,50.0,37.0,40.0,26.0,26.0,31.0,41.0,39.0,45.0,44.0,38.0,58.0,49.0,41.0,49.0,53.0,42.0,53.0,53.0,38.0,47.0,46.0,41.0,43.0,51.0,43.0,29.0,35.0,37.0,36.0,33.0,43.0,39.0,31.0,40.0,38.0,36.0,33.0,44.0,41.0,43.0,31.0,35.0,43.0,40.0,33.0,41.0,35.0,35.0,37.0,33.0,32.0,26.0,36.0,26.0,30.0,23.0,25.0,19.0,18.0,23.0,13.0,21.0,13.0,12.0,8.0,17.0,10.0,9.0,12.0,11.0,9.0,10.0,7.0,4.0,5.0,5.0,4.0,5.0,6.0 H83022,22.0,26.0,34.0,20.0,25.0,35.0,31.0,32.0,31.0,34.0,39.0,24.0,28.0,46.0,31.0,25.0,43.0,39.0,33.0,36.0,29.0,36.0,33.0,31.0,42.0,36.0,27.0,42.0,44.0,48.0,44.0,37.0,38.0,39.0,45.0,38.0,39.0,46.0,55.0,37.0,48.0,31.0,47.0,49.0,43.0,37.0,25.0,40.0,30.0,29.0,35.0,31.0,27.0,41.0,37.0,44.0,43.0,44.0,48.0,41.0,32.0,48.0,37.0,47.0,55.0,32.0,43.0,42.0,40.0,20.0,22.0,25.0,28.0,12.0,11.0,23.0,11.0,21.0,18.0,19.0,15.0,25.0,15.0,15.0,10.0,8.0,12.0,12.0,4.0,9.0,3.0,2.0,,7.0,2.0,8.0 H83023,28.0,29.0,25.0,27.0,39.0,34.0,36.0,46.0,48.0,43.0,35.0,38.0,32.0,42.0,38.0,40.0,37.0,44.0,36.0,33.0,26.0,28.0,36.0,29.0,44.0,33.0,37.0,37.0,40.0,42.0,40.0,51.0,49.0,55.0,47.0,50.0,58.0,40.0,49.0,49.0,43.0,56.0,59.0,52.0,44.0,49.0,46.0,39.0,51.0,56.0,34.0,26.0,50.0,63.0,48.0,49.0,40.0,38.0,37.0,44.0,50.0,29.0,33.0,40.0,42.0,38.0,30.0,25.0,31.0,28.0,30.0,17.0,30.0,23.0,20.0,22.0,24.0,20.0,19.0,21.0,15.0,10.0,24.0,10.0,13.0,7.0,13.0,11.0,9.0,4.0,3.0,5.0,6.0,,5.0,4.0 H83024,67.0,92.0,88.0,99.0,84.0,115.0,104.0,102.0,101.0,106.0,109.0,104.0,112.0,137.0,100.0,109.0,98.0,101.0,90.0,73.0,62.0,79.0,83.0,99.0,99.0,89.0,105.0,106.0,106.0,110.0,109.0,118.0,147.0,124.0,111.0,137.0,173.0,131.0,152.0,127.0,142.0,149.0,126.0,143.0,142.0,126.0,134.0,94.0,110.0,116.0,106.0,92.0,87.0,105.0,95.0,96.0,106.0,130.0,114.0,126.0,114.0,129.0,133.0,103.0,90.0,105.0,99.0,105.0,88.0,102.0,84.0,81.0,70.0,74.0,72.0,77.0,73.0,75.0,87.0,72.0,50.0,48.0,40.0,35.0,38.0,41.0,37.0,38.0,23.0,25.0,24.0,21.0,17.0,19.0,12.0,35.0 H83028,34.0,45.0,55.0,44.0,46.0,55.0,54.0,61.0,60.0,59.0,57.0,61.0,84.0,63.0,65.0,64.0,83.0,68.0,69.0,69.0,78.0,51.0,65.0,61.0,60.0,64.0,62.0,77.0,60.0,63.0,71.0,62.0,74.0,64.0,62.0,77.0,63.0,71.0,66.0,77.0,74.0,65.0,67.0,69.0,70.0,59.0,61.0,47.0,65.0,69.0,62.0,65.0,71.0,67.0,95.0,59.0,88.0,73.0,84.0,68.0,80.0,70.0,76.0,59.0,61.0,51.0,42.0,36.0,38.0,32.0,38.0,37.0,26.0,38.0,31.0,33.0,34.0,44.0,37.0,32.0,26.0,31.0,22.0,23.0,18.0,22.0,18.0,15.0,15.0,10.0,7.0,7.0,7.0,6.0,3.0,7.0 H83029,16.0,27.0,18.0,16.0,21.0,27.0,17.0,17.0,24.0,26.0,22.0,26.0,24.0,27.0,20.0,22.0,25.0,19.0,24.0,27.0,26.0,21.0,27.0,15.0,29.0,23.0,37.0,23.0,29.0,23.0,32.0,36.0,15.0,30.0,35.0,22.0,30.0,31.0,28.0,36.0,27.0,31.0,30.0,30.0,40.0,30.0,36.0,26.0,30.0,27.0,36.0,25.0,27.0,22.0,29.0,30.0,36.0,45.0,34.0,32.0,39.0,42.0,39.0,37.0,47.0,47.0,33.0,41.0,32.0,25.0,30.0,37.0,27.0,33.0,38.0,22.0,30.0,34.0,36.0,23.0,23.0,22.0,27.0,10.0,18.0,19.0,23.0,20.0,6.0,14.0,6.0,13.0,4.0,8.0,7.0,12.0 H83030,14.0,13.0,17.0,23.0,18.0,22.0,16.0,19.0,24.0,19.0,29.0,27.0,31.0,20.0,33.0,28.0,24.0,28.0,29.0,30.0,24.0,25.0,31.0,14.0,24.0,20.0,25.0,22.0,31.0,19.0,32.0,16.0,22.0,25.0,20.0,23.0,27.0,27.0,20.0,22.0,24.0,22.0,24.0,24.0,23.0,23.0,20.0,17.0,18.0,25.0,28.0,27.0,22.0,26.0,27.0,21.0,31.0,21.0,19.0,19.0,25.0,14.0,19.0,14.0,20.0,15.0,14.0,13.0,10.0,11.0,11.0,6.0,12.0,9.0,16.0,9.0,11.0,7.0,13.0,7.0,8.0,9.0,7.0,7.0,4.0,13.0,7.0,5.0,5.0,8.0,3.0,4.0,4.0,3.0,2.0,15.0 H83031,17.0,16.0,13.0,18.0,26.0,20.0,17.0,21.0,28.0,17.0,21.0,24.0,19.0,18.0,22.0,17.0,18.0,18.0,17.0,13.0,12.0,19.0,19.0,22.0,27.0,26.0,34.0,35.0,23.0,43.0,37.0,29.0,31.0,34.0,37.0,39.0,33.0,36.0,30.0,39.0,29.0,37.0,28.0,43.0,23.0,19.0,36.0,22.0,21.0,25.0,20.0,15.0,22.0,20.0,17.0,15.0,24.0,17.0,27.0,14.0,24.0,24.0,21.0,13.0,11.0,20.0,14.0,12.0,16.0,10.0,13.0,13.0,13.0,13.0,16.0,9.0,8.0,11.0,16.0,12.0,4.0,8.0,9.0,3.0,8.0,1.0,10.0,7.0,3.0,9.0,4.0,3.0,4.0,2.0,2.0,8.0 H83033,26.0,16.0,31.0,26.0,22.0,33.0,27.0,25.0,38.0,31.0,30.0,27.0,34.0,35.0,26.0,31.0,38.0,21.0,26.0,26.0,19.0,24.0,20.0,28.0,38.0,26.0,44.0,42.0,42.0,40.0,34.0,39.0,46.0,26.0,39.0,43.0,31.0,40.0,44.0,60.0,42.0,52.0,35.0,30.0,42.0,34.0,39.0,31.0,30.0,31.0,40.0,20.0,23.0,32.0,31.0,26.0,21.0,33.0,21.0,28.0,20.0,33.0,32.0,26.0,15.0,17.0,16.0,24.0,13.0,7.0,15.0,15.0,14.0,8.0,12.0,11.0,7.0,13.0,14.0,8.0,7.0,9.0,3.0,6.0,2.0,7.0,5.0,6.0,1.0,,3.0,2.0,3.0,2.0,,2.0 H83034,35.0,26.0,26.0,34.0,42.0,43.0,32.0,44.0,49.0,45.0,54.0,52.0,44.0,51.0,51.0,53.0,56.0,49.0,33.0,44.0,38.0,40.0,40.0,40.0,44.0,46.0,27.0,47.0,46.0,61.0,45.0,62.0,61.0,48.0,49.0,61.0,53.0,70.0,52.0,58.0,37.0,56.0,59.0,50.0,66.0,59.0,42.0,55.0,57.0,63.0,58.0,44.0,43.0,38.0,57.0,38.0,50.0,48.0,46.0,43.0,48.0,52.0,49.0,39.0,40.0,26.0,28.0,30.0,27.0,23.0,19.0,19.0,15.0,16.0,21.0,13.0,14.0,11.0,15.0,11.0,11.0,15.0,18.0,12.0,5.0,10.0,7.0,7.0,7.0,5.0,1.0,10.0,7.0,3.0,3.0,4.0 H83037,51.0,50.0,46.0,58.0,36.0,39.0,34.0,29.0,49.0,44.0,36.0,46.0,37.0,26.0,38.0,28.0,32.0,36.0,32.0,19.0,21.0,20.0,28.0,33.0,30.0,30.0,50.0,56.0,56.0,59.0,71.0,82.0,81.0,102.0,89.0,91.0,97.0,82.0,91.0,94.0,74.0,77.0,76.0,85.0,80.0,66.0,73.0,63.0,66.0,70.0,54.0,44.0,55.0,64.0,47.0,40.0,45.0,43.0,48.0,51.0,49.0,43.0,48.0,32.0,36.0,45.0,34.0,30.0,26.0,22.0,29.0,23.0,15.0,31.0,27.0,33.0,28.0,24.0,28.0,17.0,18.0,19.0,8.0,15.0,10.0,12.0,11.0,13.0,13.0,10.0,5.0,12.0,7.0,2.0,5.0,22.0 H83039,43.0,48.0,36.0,41.0,55.0,44.0,41.0,44.0,38.0,57.0,42.0,42.0,32.0,35.0,36.0,44.0,39.0,50.0,31.0,26.0,24.0,37.0,35.0,33.0,40.0,58.0,63.0,55.0,56.0,62.0,86.0,87.0,78.0,69.0,68.0,88.0,78.0,77.0,61.0,78.0,72.0,52.0,63.0,67.0,50.0,62.0,52.0,50.0,65.0,47.0,49.0,44.0,46.0,41.0,55.0,47.0,61.0,53.0,64.0,60.0,51.0,57.0,52.0,47.0,58.0,40.0,42.0,48.0,47.0,33.0,32.0,31.0,35.0,38.0,39.0,32.0,25.0,29.0,24.0,22.0,21.0,22.0,19.0,13.0,30.0,18.0,13.0,20.0,16.0,15.0,11.0,4.0,6.0,4.0,5.0,11.0 H83042,57.0,57.0,56.0,58.0,67.0,60.0,56.0,63.0,72.0,65.0,34.0,48.0,68.0,48.0,70.0,55.0,52.0,63.0,53.0,54.0,43.0,55.0,56.0,76.0,84.0,71.0,78.0,86.0,78.0,106.0,89.0,81.0,87.0,77.0,73.0,79.0,76.0,71.0,78.0,68.0,60.0,59.0,70.0,56.0,61.0,56.0,68.0,54.0,42.0,46.0,63.0,60.0,49.0,42.0,42.0,54.0,49.0,38.0,48.0,59.0,54.0,45.0,55.0,57.0,53.0,49.0,37.0,41.0,41.0,30.0,27.0,23.0,23.0,21.0,27.0,22.0,20.0,18.0,12.0,16.0,11.0,19.0,15.0,23.0,22.0,17.0,13.0,11.0,12.0,13.0,4.0,12.0,3.0,7.0,4.0,6.0 H83043,15.0,31.0,31.0,25.0,33.0,32.0,29.0,34.0,35.0,34.0,35.0,36.0,35.0,36.0,38.0,49.0,45.0,46.0,23.0,37.0,29.0,44.0,41.0,39.0,43.0,36.0,45.0,43.0,43.0,38.0,49.0,33.0,48.0,34.0,40.0,48.0,50.0,41.0,45.0,39.0,30.0,41.0,47.0,46.0,41.0,58.0,34.0,41.0,43.0,42.0,58.0,47.0,63.0,32.0,56.0,54.0,62.0,64.0,64.0,69.0,64.0,50.0,64.0,51.0,61.0,41.0,47.0,56.0,40.0,48.0,45.0,45.0,41.0,49.0,42.0,37.0,36.0,43.0,48.0,35.0,43.0,41.0,31.0,29.0,25.0,16.0,20.0,17.0,14.0,7.0,9.0,9.0,6.0,6.0,3.0,8.0 H83044,127.0,139.0,131.0,138.0,139.0,133.0,130.0,160.0,151.0,144.0,154.0,127.0,144.0,123.0,111.0,130.0,128.0,129.0,128.0,103.0,104.0,98.0,114.0,132.0,166.0,213.0,221.0,271.0,256.0,264.0,293.0,326.0,319.0,311.0,333.0,274.0,296.0,274.0,302.0,286.0,215.0,233.0,239.0,206.0,194.0,200.0,183.0,160.0,139.0,134.0,117.0,128.0,126.0,115.0,144.0,93.0,113.0,106.0,105.0,106.0,95.0,106.0,100.0,104.0,71.0,82.0,83.0,69.0,60.0,68.0,53.0,56.0,62.0,55.0,50.0,47.0,47.0,45.0,58.0,31.0,31.0,36.0,34.0,28.0,26.0,33.0,30.0,16.0,17.0,14.0,12.0,12.0,8.0,5.0,11.0,17.0 H83049,7.0,13.0,5.0,5.0,15.0,11.0,14.0,13.0,16.0,17.0,27.0,14.0,20.0,21.0,16.0,27.0,21.0,26.0,20.0,24.0,25.0,18.0,13.0,16.0,16.0,17.0,13.0,15.0,20.0,16.0,23.0,23.0,12.0,26.0,16.0,18.0,20.0,22.0,19.0,20.0,19.0,13.0,26.0,15.0,19.0,18.0,17.0,15.0,22.0,18.0,20.0,26.0,22.0,10.0,14.0,20.0,11.0,17.0,19.0,19.0,27.0,13.0,18.0,16.0,22.0,15.0,14.0,12.0,8.0,7.0,10.0,6.0,4.0,5.0,7.0,4.0,3.0,6.0,4.0,5.0,2.0,9.0,3.0,4.0,3.0,3.0,2.0,3.0,1.0,,1.0,1.0,,1.0,, H83051,126.0,138.0,135.0,115.0,121.0,113.0,114.0,106.0,122.0,122.0,117.0,95.0,103.0,93.0,98.0,101.0,100.0,109.0,99.0,71.0,111.0,105.0,125.0,164.0,172.0,206.0,223.0,242.0,250.0,268.0,262.0,241.0,251.0,234.0,213.0,229.0,208.0,208.0,183.0,220.0,187.0,169.0,156.0,160.0,136.0,152.0,137.0,113.0,116.0,115.0,101.0,88.0,94.0,101.0,95.0,98.0,79.0,79.0,75.0,63.0,65.0,77.0,64.0,73.0,59.0,48.0,57.0,43.0,47.0,39.0,31.0,31.0,35.0,22.0,32.0,26.0,19.0,27.0,20.0,27.0,9.0,19.0,19.0,10.0,6.0,6.0,5.0,2.0,4.0,5.0,7.0,5.0,2.0,3.0,4.0,7.0 H83052,7.0,13.0,8.0,17.0,10.0,18.0,15.0,22.0,21.0,13.0,11.0,19.0,20.0,13.0,24.0,14.0,16.0,18.0,16.0,12.0,13.0,15.0,9.0,11.0,15.0,15.0,8.0,19.0,12.0,12.0,8.0,15.0,15.0,12.0,18.0,19.0,17.0,16.0,13.0,16.0,25.0,17.0,27.0,30.0,34.0,17.0,19.0,17.0,18.0,20.0,16.0,13.0,24.0,18.0,5.0,16.0,23.0,18.0,24.0,18.0,16.0,19.0,18.0,22.0,15.0,18.0,20.0,19.0,16.0,12.0,14.0,12.0,10.0,15.0,18.0,18.0,15.0,14.0,21.0,11.0,15.0,9.0,6.0,16.0,8.0,7.0,6.0,2.0,4.0,2.0,2.0,3.0,1.0,3.0,1.0,2.0 H83053,53.0,67.0,58.0,75.0,62.0,69.0,78.0,73.0,80.0,91.0,77.0,91.0,97.0,111.0,88.0,102.0,100.0,93.0,92.0,90.0,89.0,95.0,87.0,114.0,96.0,110.0,107.0,124.0,104.0,106.0,97.0,92.0,104.0,113.0,99.0,119.0,118.0,103.0,112.0,107.0,105.0,99.0,100.0,106.0,117.0,108.0,100.0,95.0,97.0,93.0,89.0,95.0,89.0,91.0,122.0,110.0,107.0,115.0,97.0,120.0,118.0,107.0,87.0,97.0,87.0,86.0,72.0,66.0,67.0,68.0,49.0,49.0,37.0,43.0,48.0,36.0,33.0,46.0,33.0,25.0,29.0,23.0,27.0,24.0,23.0,25.0,24.0,27.0,14.0,17.0,14.0,14.0,8.0,3.0,3.0,13.0 H83608,76.0,63.0,67.0,64.0,72.0,59.0,69.0,71.0,64.0,69.0,62.0,61.0,66.0,63.0,50.0,81.0,69.0,75.0,73.0,49.0,56.0,69.0,69.0,71.0,80.0,113.0,130.0,112.0,111.0,120.0,107.0,101.0,119.0,105.0,106.0,101.0,113.0,108.0,105.0,89.0,90.0,78.0,76.0,82.0,72.0,69.0,78.0,62.0,68.0,69.0,61.0,65.0,54.0,54.0,56.0,57.0,54.0,63.0,63.0,59.0,64.0,52.0,52.0,39.0,37.0,42.0,61.0,31.0,39.0,33.0,40.0,32.0,19.0,20.0,24.0,16.0,24.0,20.0,19.0,18.0,17.0,10.0,16.0,10.0,14.0,14.0,4.0,11.0,8.0,5.0,6.0,2.0,3.0,1.0,1.0,6.0 H83609,29.0,28.0,34.0,25.0,38.0,32.0,24.0,34.0,36.0,30.0,19.0,28.0,34.0,19.0,26.0,27.0,28.0,33.0,33.0,24.0,18.0,20.0,23.0,20.0,26.0,37.0,30.0,42.0,41.0,43.0,44.0,42.0,52.0,62.0,52.0,47.0,55.0,44.0,59.0,45.0,53.0,35.0,40.0,38.0,34.0,43.0,31.0,31.0,19.0,24.0,28.0,26.0,37.0,33.0,32.0,32.0,32.0,25.0,23.0,26.0,35.0,30.0,21.0,19.0,27.0,27.0,20.0,21.0,12.0,24.0,19.0,19.0,23.0,11.0,17.0,13.0,4.0,13.0,13.0,14.0,14.0,13.0,9.0,9.0,6.0,4.0,9.0,9.0,7.0,2.0,3.0,1.0,3.0,,2.0,3.0 H83611,44.0,42.0,52.0,37.0,44.0,34.0,29.0,52.0,44.0,47.0,41.0,33.0,36.0,32.0,32.0,37.0,32.0,50.0,40.0,28.0,32.0,35.0,27.0,32.0,39.0,48.0,40.0,50.0,53.0,61.0,50.0,52.0,59.0,85.0,58.0,71.0,75.0,87.0,61.0,54.0,60.0,46.0,54.0,48.0,44.0,47.0,39.0,46.0,44.0,26.0,35.0,33.0,36.0,29.0,28.0,32.0,26.0,24.0,32.0,19.0,21.0,31.0,24.0,29.0,16.0,19.0,20.0,10.0,14.0,17.0,12.0,14.0,16.0,9.0,8.0,12.0,12.0,7.0,9.0,6.0,4.0,6.0,7.0,4.0,3.0,3.0,4.0,6.0,4.0,1.0,2.0,1.0,1.0,,,1.0 H83624,35.0,45.0,35.0,36.0,39.0,37.0,36.0,45.0,52.0,39.0,49.0,46.0,43.0,45.0,54.0,56.0,58.0,54.0,42.0,45.0,41.0,42.0,37.0,46.0,56.0,56.0,68.0,65.0,57.0,68.0,59.0,51.0,71.0,65.0,72.0,61.0,85.0,71.0,69.0,67.0,58.0,71.0,68.0,58.0,69.0,49.0,64.0,56.0,67.0,41.0,53.0,31.0,46.0,61.0,46.0,59.0,50.0,56.0,52.0,47.0,55.0,45.0,60.0,48.0,31.0,45.0,32.0,37.0,40.0,29.0,41.0,21.0,22.0,25.0,19.0,28.0,24.0,20.0,22.0,16.0,16.0,13.0,11.0,22.0,15.0,11.0,11.0,12.0,11.0,11.0,8.0,4.0,3.0,7.0,2.0,11.0 H83627,58.0,46.0,47.0,46.0,42.0,57.0,55.0,46.0,51.0,28.0,37.0,41.0,48.0,43.0,27.0,50.0,43.0,36.0,41.0,30.0,27.0,31.0,47.0,48.0,46.0,54.0,52.0,76.0,75.0,86.0,89.0,97.0,88.0,93.0,102.0,98.0,90.0,83.0,87.0,82.0,77.0,79.0,60.0,54.0,61.0,61.0,44.0,55.0,55.0,52.0,49.0,53.0,46.0,43.0,41.0,44.0,53.0,34.0,40.0,36.0,40.0,27.0,41.0,31.0,32.0,24.0,23.0,20.0,17.0,23.0,19.0,16.0,29.0,24.0,17.0,22.0,16.0,15.0,19.0,9.0,17.0,15.0,14.0,12.0,19.0,20.0,16.0,17.0,12.0,9.0,5.0,5.0,3.0,7.0,11.0,27.0 H83631,83.0,75.0,60.0,61.0,47.0,64.0,71.0,72.0,96.0,61.0,72.0,66.0,77.0,91.0,54.0,69.0,53.0,64.0,70.0,55.0,59.0,63.0,77.0,89.0,94.0,118.0,115.0,122.0,137.0,118.0,123.0,116.0,102.0,123.0,103.0,118.0,95.0,99.0,93.0,108.0,96.0,80.0,78.0,81.0,82.0,68.0,79.0,64.0,64.0,62.0,66.0,81.0,70.0,61.0,62.0,63.0,51.0,51.0,68.0,41.0,57.0,32.0,37.0,29.0,40.0,31.0,29.0,18.0,18.0,15.0,24.0,13.0,13.0,16.0,18.0,16.0,9.0,16.0,9.0,13.0,6.0,7.0,9.0,8.0,7.0,11.0,11.0,4.0,6.0,4.0,2.0,,2.0,2.0,,5.0 H84002,46.0,52.0,53.0,59.0,63.0,58.0,64.0,79.0,87.0,92.0,95.0,87.0,74.0,93.0,103.0,84.0,89.0,78.0,71.0,47.0,56.0,46.0,53.0,58.0,56.0,77.0,49.0,54.0,62.0,48.0,49.0,61.0,64.0,81.0,98.0,93.0,86.0,70.0,70.0,83.0,90.0,98.0,80.0,93.0,95.0,117.0,106.0,125.0,104.0,78.0,96.0,116.0,124.0,94.0,111.0,87.0,99.0,94.0,94.0,95.0,84.0,114.0,85.0,87.0,87.0,73.0,63.0,69.0,61.0,63.0,54.0,63.0,52.0,55.0,51.0,65.0,53.0,61.0,64.0,40.0,44.0,42.0,37.0,30.0,21.0,21.0,24.0,16.0,16.0,14.0,7.0,7.0,15.0,10.0,5.0,17.0 H84005,75.0,58.0,62.0,47.0,72.0,59.0,53.0,59.0,68.0,77.0,56.0,86.0,70.0,83.0,82.0,71.0,76.0,75.0,81.0,65.0,44.0,57.0,70.0,63.0,70.0,78.0,76.0,84.0,88.0,100.0,96.0,98.0,108.0,124.0,127.0,119.0,127.0,97.0,107.0,130.0,115.0,98.0,122.0,113.0,106.0,130.0,96.0,108.0,99.0,98.0,113.0,110.0,120.0,104.0,87.0,83.0,109.0,111.0,91.0,116.0,83.0,80.0,93.0,93.0,76.0,83.0,75.0,70.0,66.0,46.0,50.0,72.0,59.0,53.0,55.0,37.0,54.0,49.0,52.0,41.0,41.0,32.0,36.0,27.0,24.0,21.0,25.0,18.0,14.0,18.0,12.0,6.0,10.0,6.0,1.0,26.0 H84006,63.0,80.0,68.0,79.0,88.0,106.0,101.0,112.0,124.0,97.0,109.0,117.0,106.0,137.0,135.0,125.0,104.0,95.0,112.0,79.0,61.0,59.0,72.0,80.0,99.0,86.0,108.0,104.0,100.0,96.0,118.0,108.0,104.0,100.0,140.0,120.0,130.0,123.0,157.0,153.0,140.0,154.0,160.0,161.0,137.0,140.0,168.0,140.0,134.0,118.0,135.0,141.0,140.0,135.0,123.0,103.0,127.0,105.0,106.0,106.0,107.0,101.0,108.0,107.0,94.0,83.0,83.0,73.0,71.0,54.0,59.0,61.0,51.0,77.0,72.0,67.0,81.0,78.0,81.0,64.0,65.0,70.0,58.0,45.0,50.0,53.0,49.0,31.0,28.0,33.0,16.0,10.0,11.0,16.0,9.0,37.0 H84007,18.0,21.0,29.0,25.0,37.0,28.0,31.0,39.0,40.0,51.0,41.0,58.0,47.0,59.0,46.0,60.0,37.0,52.0,31.0,37.0,45.0,29.0,36.0,27.0,37.0,39.0,47.0,41.0,43.0,40.0,46.0,38.0,51.0,54.0,46.0,50.0,52.0,66.0,52.0,58.0,52.0,52.0,50.0,51.0,63.0,70.0,75.0,72.0,62.0,60.0,62.0,67.0,61.0,44.0,58.0,48.0,48.0,55.0,65.0,61.0,56.0,42.0,51.0,57.0,57.0,48.0,59.0,63.0,42.0,42.0,42.0,43.0,36.0,43.0,42.0,36.0,42.0,37.0,49.0,27.0,24.0,30.0,23.0,13.0,16.0,13.0,16.0,7.0,10.0,5.0,8.0,7.0,4.0,2.0,5.0,7.0 H84010,27.0,39.0,33.0,39.0,37.0,52.0,47.0,40.0,52.0,75.0,59.0,68.0,49.0,68.0,66.0,67.0,74.0,66.0,51.0,43.0,50.0,53.0,35.0,67.0,53.0,63.0,54.0,69.0,66.0,56.0,60.0,62.0,52.0,70.0,64.0,62.0,74.0,78.0,91.0,71.0,59.0,74.0,76.0,57.0,91.0,86.0,63.0,84.0,63.0,59.0,67.0,82.0,62.0,63.0,63.0,75.0,58.0,59.0,54.0,56.0,59.0,59.0,56.0,49.0,58.0,60.0,62.0,47.0,40.0,45.0,39.0,40.0,42.0,52.0,37.0,43.0,46.0,38.0,25.0,33.0,22.0,25.0,16.0,16.0,10.0,17.0,13.0,9.0,11.0,6.0,3.0,3.0,4.0,3.0,4.0,10.0 H84012,65.0,67.0,52.0,78.0,86.0,84.0,73.0,79.0,91.0,85.0,99.0,88.0,110.0,109.0,93.0,85.0,94.0,71.0,79.0,72.0,74.0,69.0,86.0,80.0,101.0,103.0,99.0,134.0,98.0,124.0,119.0,120.0,118.0,127.0,111.0,129.0,138.0,129.0,134.0,137.0,117.0,124.0,133.0,161.0,157.0,156.0,142.0,121.0,125.0,105.0,128.0,96.0,110.0,103.0,86.0,84.0,73.0,61.0,66.0,73.0,60.0,60.0,68.0,59.0,52.0,55.0,58.0,58.0,68.0,56.0,45.0,59.0,53.0,49.0,68.0,59.0,55.0,60.0,46.0,38.0,39.0,45.0,46.0,24.0,12.0,18.0,11.0,13.0,17.0,12.0,11.0,9.0,8.0,3.0,1.0,8.0 H84014,6.0,5.0,8.0,10.0,9.0,9.0,8.0,9.0,13.0,16.0,15.0,12.0,14.0,13.0,13.0,8.0,19.0,9.0,8.0,11.0,9.0,7.0,11.0,9.0,13.0,8.0,17.0,15.0,20.0,15.0,23.0,14.0,16.0,11.0,18.0,17.0,23.0,18.0,14.0,14.0,13.0,20.0,25.0,21.0,13.0,18.0,18.0,11.0,22.0,25.0,21.0,14.0,18.0,26.0,22.0,18.0,23.0,25.0,20.0,20.0,15.0,20.0,15.0,12.0,14.0,11.0,12.0,14.0,8.0,11.0,5.0,5.0,5.0,7.0,9.0,4.0,15.0,8.0,6.0,8.0,3.0,8.0,11.0,5.0,5.0,7.0,5.0,6.0,5.0,2.0,,5.0,,1.0,1.0,6.0 H84015,58.0,47.0,52.0,50.0,64.0,41.0,44.0,59.0,54.0,48.0,62.0,45.0,49.0,46.0,50.0,50.0,57.0,40.0,47.0,52.0,40.0,38.0,30.0,41.0,42.0,55.0,67.0,68.0,74.0,72.0,67.0,78.0,66.0,85.0,90.0,84.0,88.0,84.0,71.0,86.0,82.0,88.0,101.0,83.0,83.0,89.0,64.0,69.0,62.0,58.0,66.0,59.0,50.0,59.0,71.0,59.0,58.0,55.0,56.0,53.0,51.0,42.0,47.0,44.0,44.0,32.0,50.0,30.0,37.0,28.0,27.0,37.0,30.0,28.0,35.0,24.0,32.0,30.0,35.0,17.0,22.0,20.0,15.0,15.0,17.0,13.0,7.0,9.0,7.0,11.0,5.0,5.0,10.0,6.0,1.0,11.0 H84016,57.0,65.0,62.0,65.0,66.0,81.0,72.0,102.0,94.0,105.0,95.0,102.0,112.0,137.0,117.0,157.0,154.0,141.0,127.0,99.0,101.0,126.0,120.0,115.0,103.0,100.0,109.0,84.0,83.0,93.0,95.0,87.0,87.0,93.0,87.0,114.0,101.0,93.0,121.0,106.0,100.0,119.0,123.0,119.0,128.0,132.0,136.0,111.0,136.0,147.0,122.0,137.0,174.0,144.0,130.0,124.0,100.0,134.0,110.0,123.0,99.0,89.0,117.0,89.0,93.0,98.0,95.0,64.0,86.0,79.0,66.0,85.0,67.0,63.0,70.0,63.0,75.0,84.0,69.0,56.0,41.0,56.0,44.0,38.0,41.0,36.0,52.0,31.0,36.0,22.0,21.0,23.0,19.0,22.0,18.0,60.0 H84017,34.0,38.0,27.0,39.0,48.0,45.0,41.0,57.0,59.0,61.0,81.0,69.0,95.0,88.0,96.0,107.0,86.0,114.0,85.0,59.0,62.0,55.0,59.0,79.0,104.0,73.0,50.0,38.0,51.0,60.0,49.0,54.0,66.0,55.0,55.0,65.0,57.0,66.0,60.0,70.0,86.0,92.0,79.0,84.0,74.0,113.0,113.0,104.0,86.0,89.0,83.0,94.0,108.0,98.0,81.0,86.0,92.0,81.0,76.0,76.0,100.0,92.0,83.0,82.0,63.0,61.0,64.0,64.0,62.0,53.0,55.0,56.0,63.0,58.0,66.0,59.0,71.0,72.0,65.0,48.0,48.0,52.0,47.0,33.0,37.0,33.0,33.0,34.0,20.0,30.0,14.0,11.0,9.0,15.0,8.0,33.0 H84018,35.0,41.0,38.0,49.0,39.0,42.0,43.0,54.0,38.0,50.0,53.0,47.0,33.0,40.0,33.0,44.0,38.0,48.0,24.0,32.0,21.0,27.0,32.0,26.0,41.0,36.0,48.0,38.0,29.0,50.0,36.0,55.0,55.0,45.0,62.0,58.0,77.0,53.0,60.0,61.0,54.0,74.0,70.0,83.0,60.0,69.0,72.0,51.0,50.0,57.0,53.0,46.0,56.0,46.0,48.0,39.0,36.0,48.0,37.0,39.0,37.0,40.0,36.0,33.0,32.0,43.0,31.0,38.0,44.0,34.0,38.0,42.0,27.0,30.0,31.0,34.0,21.0,32.0,32.0,26.0,26.0,11.0,16.0,13.0,10.0,16.0,13.0,16.0,10.0,11.0,13.0,4.0,3.0,7.0,3.0,3.0 H84020,67.0,58.0,68.0,72.0,63.0,70.0,87.0,84.0,73.0,93.0,90.0,99.0,106.0,103.0,101.0,88.0,133.0,108.0,151.0,338.0,412.0,472.0,463.0,455.0,489.0,476.0,437.0,390.0,385.0,316.0,300.0,281.0,308.0,283.0,201.0,189.0,187.0,181.0,150.0,143.0,152.0,147.0,143.0,123.0,114.0,157.0,125.0,115.0,133.0,117.0,99.0,110.0,110.0,97.0,95.0,97.0,84.0,71.0,91.0,88.0,69.0,85.0,72.0,67.0,46.0,58.0,52.0,50.0,49.0,48.0,55.0,44.0,47.0,41.0,57.0,43.0,49.0,36.0,55.0,40.0,33.0,30.0,18.0,20.0,14.0,26.0,17.0,16.0,10.0,13.0,9.0,6.0,1.0,9.0,3.0,10.0 H84023,60.0,70.0,70.0,81.0,70.0,80.0,67.0,65.0,91.0,57.0,85.0,64.0,71.0,69.0,68.0,82.0,79.0,98.0,90.0,62.0,51.0,64.0,62.0,72.0,79.0,105.0,108.0,82.0,110.0,115.0,118.0,123.0,122.0,111.0,116.0,132.0,127.0,138.0,108.0,114.0,106.0,101.0,113.0,126.0,116.0,124.0,101.0,93.0,113.0,101.0,88.0,93.0,103.0,89.0,99.0,91.0,87.0,80.0,111.0,87.0,86.0,54.0,74.0,62.0,69.0,60.0,59.0,63.0,42.0,44.0,43.0,43.0,50.0,34.0,53.0,43.0,44.0,50.0,40.0,39.0,26.0,28.0,25.0,23.0,25.0,13.0,12.0,19.0,11.0,11.0,11.0,4.0,6.0,4.0,1.0,14.0 H84025,40.0,30.0,44.0,38.0,37.0,46.0,48.0,50.0,50.0,59.0,51.0,58.0,54.0,46.0,67.0,45.0,65.0,47.0,45.0,37.0,31.0,33.0,28.0,36.0,34.0,37.0,42.0,38.0,39.0,37.0,42.0,51.0,43.0,54.0,57.0,50.0,52.0,59.0,55.0,57.0,70.0,55.0,71.0,56.0,64.0,74.0,66.0,50.0,49.0,54.0,57.0,49.0,50.0,37.0,44.0,60.0,44.0,48.0,32.0,41.0,37.0,34.0,38.0,39.0,42.0,27.0,42.0,33.0,29.0,35.0,22.0,28.0,31.0,21.0,22.0,23.0,21.0,26.0,25.0,21.0,14.0,15.0,24.0,14.0,13.0,10.0,19.0,11.0,7.0,11.0,8.0,7.0,5.0,3.0,4.0,6.0 H84027,60.0,76.0,67.0,87.0,76.0,67.0,101.0,114.0,98.0,127.0,129.0,132.0,134.0,148.0,131.0,145.0,119.0,119.0,89.0,71.0,96.0,99.0,93.0,95.0,101.0,109.0,112.0,109.0,129.0,114.0,126.0,138.0,123.0,143.0,154.0,163.0,160.0,158.0,158.0,152.0,165.0,147.0,152.0,143.0,167.0,149.0,154.0,150.0,150.0,124.0,147.0,146.0,144.0,122.0,123.0,100.0,124.0,86.0,107.0,88.0,85.0,86.0,77.0,98.0,82.0,100.0,62.0,59.0,60.0,51.0,51.0,59.0,57.0,65.0,48.0,44.0,45.0,42.0,65.0,35.0,33.0,36.0,40.0,29.0,27.0,20.0,21.0,16.0,11.0,10.0,13.0,9.0,8.0,6.0,3.0,13.0 H84030,45.0,48.0,57.0,46.0,64.0,39.0,56.0,68.0,73.0,62.0,72.0,67.0,67.0,67.0,74.0,83.0,68.0,72.0,70.0,56.0,50.0,53.0,55.0,72.0,58.0,67.0,84.0,77.0,77.0,76.0,79.0,78.0,69.0,77.0,87.0,83.0,91.0,81.0,78.0,102.0,86.0,94.0,97.0,98.0,86.0,104.0,102.0,96.0,94.0,96.0,100.0,111.0,109.0,101.0,101.0,100.0,103.0,101.0,96.0,84.0,89.0,94.0,95.0,74.0,82.0,85.0,71.0,55.0,61.0,68.0,76.0,55.0,59.0,66.0,78.0,71.0,76.0,65.0,73.0,44.0,49.0,51.0,40.0,35.0,37.0,51.0,33.0,33.0,34.0,25.0,21.0,20.0,14.0,15.0,11.0,35.0 H84031,16.0,17.0,18.0,24.0,24.0,28.0,30.0,39.0,34.0,33.0,38.0,46.0,49.0,47.0,55.0,49.0,53.0,39.0,37.0,37.0,29.0,32.0,23.0,35.0,30.0,31.0,29.0,24.0,32.0,23.0,28.0,36.0,27.0,43.0,39.0,25.0,30.0,53.0,41.0,42.0,46.0,51.0,58.0,40.0,57.0,61.0,50.0,39.0,54.0,46.0,40.0,43.0,48.0,50.0,60.0,50.0,53.0,40.0,34.0,32.0,25.0,34.0,29.0,25.0,28.0,34.0,21.0,34.0,25.0,36.0,21.0,21.0,17.0,29.0,16.0,34.0,20.0,34.0,38.0,22.0,17.0,20.0,19.0,12.0,13.0,13.0,14.0,14.0,9.0,8.0,9.0,8.0,6.0,2.0,,10.0 H84032,23.0,23.0,20.0,38.0,29.0,32.0,29.0,37.0,40.0,51.0,47.0,56.0,57.0,53.0,46.0,54.0,66.0,47.0,48.0,34.0,46.0,33.0,51.0,41.0,51.0,43.0,43.0,47.0,40.0,49.0,33.0,43.0,40.0,55.0,50.0,63.0,48.0,46.0,44.0,49.0,57.0,70.0,62.0,58.0,78.0,78.0,68.0,59.0,76.0,87.0,78.0,71.0,69.0,70.0,78.0,77.0,75.0,55.0,63.0,52.0,56.0,52.0,56.0,54.0,46.0,37.0,52.0,47.0,64.0,52.0,47.0,38.0,44.0,37.0,41.0,40.0,38.0,50.0,39.0,37.0,30.0,36.0,25.0,34.0,22.0,28.0,18.0,18.0,15.0,22.0,5.0,11.0,5.0,7.0,10.0,25.0 H84033,19.0,14.0,7.0,21.0,16.0,27.0,28.0,19.0,37.0,33.0,50.0,59.0,41.0,53.0,51.0,38.0,59.0,45.0,33.0,32.0,37.0,23.0,30.0,36.0,41.0,30.0,34.0,28.0,23.0,28.0,25.0,17.0,31.0,33.0,20.0,22.0,21.0,35.0,37.0,32.0,39.0,38.0,35.0,55.0,50.0,46.0,54.0,56.0,57.0,60.0,54.0,50.0,50.0,61.0,63.0,50.0,61.0,36.0,60.0,66.0,61.0,37.0,33.0,42.0,47.0,42.0,38.0,31.0,28.0,45.0,28.0,27.0,34.0,39.0,36.0,15.0,42.0,28.0,38.0,21.0,22.0,26.0,17.0,16.0,20.0,25.0,14.0,17.0,16.0,4.0,9.0,7.0,6.0,7.0,6.0,11.0 H84034,28.0,28.0,38.0,43.0,41.0,32.0,51.0,48.0,52.0,46.0,50.0,42.0,56.0,67.0,46.0,53.0,47.0,72.0,42.0,42.0,62.0,55.0,63.0,37.0,43.0,55.0,42.0,52.0,43.0,58.0,58.0,64.0,66.0,49.0,79.0,57.0,57.0,63.0,68.0,56.0,62.0,82.0,66.0,68.0,78.0,56.0,57.0,52.0,62.0,49.0,48.0,54.0,68.0,54.0,64.0,52.0,48.0,62.0,57.0,60.0,68.0,48.0,61.0,40.0,42.0,42.0,48.0,47.0,42.0,43.0,33.0,38.0,36.0,36.0,37.0,35.0,38.0,60.0,34.0,24.0,34.0,22.0,25.0,16.0,22.0,12.0,17.0,15.0,12.0,12.0,12.0,12.0,8.0,7.0,5.0,7.0 H84039,35.0,50.0,32.0,49.0,38.0,61.0,61.0,77.0,83.0,66.0,82.0,77.0,83.0,88.0,86.0,78.0,87.0,79.0,71.0,54.0,59.0,74.0,61.0,67.0,55.0,76.0,62.0,56.0,63.0,59.0,56.0,68.0,62.0,75.0,60.0,61.0,69.0,84.0,87.0,93.0,76.0,97.0,111.0,107.0,133.0,109.0,82.0,117.0,97.0,96.0,109.0,84.0,112.0,86.0,103.0,93.0,97.0,76.0,87.0,92.0,70.0,72.0,66.0,61.0,57.0,45.0,60.0,54.0,55.0,59.0,55.0,41.0,46.0,46.0,51.0,47.0,51.0,51.0,41.0,31.0,38.0,31.0,26.0,28.0,22.0,20.0,24.0,19.0,27.0,16.0,10.0,8.0,7.0,8.0,5.0,17.0 H84040,33.0,37.0,39.0,42.0,36.0,47.0,55.0,59.0,73.0,67.0,62.0,61.0,52.0,66.0,70.0,69.0,63.0,69.0,59.0,56.0,28.0,43.0,41.0,41.0,61.0,58.0,59.0,42.0,60.0,65.0,62.0,63.0,51.0,64.0,62.0,60.0,73.0,57.0,70.0,68.0,69.0,81.0,72.0,86.0,90.0,82.0,97.0,79.0,76.0,99.0,83.0,89.0,68.0,78.0,68.0,84.0,68.0,81.0,66.0,78.0,84.0,98.0,89.0,79.0,68.0,68.0,69.0,56.0,71.0,64.0,77.0,63.0,59.0,62.0,49.0,56.0,57.0,69.0,63.0,58.0,44.0,47.0,40.0,29.0,32.0,34.0,33.0,24.0,20.0,22.0,18.0,22.0,9.0,17.0,8.0,33.0 H84041,35.0,38.0,32.0,54.0,35.0,59.0,59.0,53.0,58.0,57.0,60.0,57.0,57.0,45.0,45.0,43.0,44.0,43.0,19.0,27.0,25.0,23.0,22.0,30.0,36.0,55.0,42.0,73.0,57.0,57.0,56.0,69.0,58.0,72.0,75.0,88.0,85.0,96.0,96.0,79.0,73.0,78.0,94.0,96.0,81.0,72.0,76.0,66.0,65.0,51.0,48.0,50.0,42.0,47.0,47.0,37.0,27.0,41.0,36.0,30.0,33.0,26.0,24.0,30.0,11.0,22.0,23.0,23.0,25.0,20.0,20.0,13.0,13.0,20.0,13.0,21.0,22.0,15.0,9.0,8.0,13.0,12.0,12.0,10.0,9.0,3.0,4.0,,1.0,4.0,4.0,,3.0,1.0,3.0,4.0 H84042,36.0,51.0,65.0,69.0,44.0,67.0,77.0,90.0,84.0,96.0,104.0,70.0,111.0,103.0,104.0,93.0,86.0,86.0,75.0,80.0,60.0,65.0,75.0,87.0,56.0,83.0,61.0,95.0,85.0,85.0,94.0,77.0,84.0,89.0,110.0,110.0,102.0,106.0,105.0,116.0,102.0,106.0,97.0,123.0,129.0,115.0,134.0,104.0,98.0,109.0,98.0,110.0,89.0,99.0,107.0,72.0,92.0,75.0,94.0,77.0,71.0,87.0,85.0,67.0,70.0,66.0,55.0,65.0,72.0,49.0,61.0,54.0,54.0,43.0,54.0,47.0,55.0,58.0,53.0,45.0,30.0,29.0,24.0,38.0,22.0,33.0,25.0,25.0,21.0,21.0,21.0,17.0,14.0,13.0,10.0,20.0 H84044,31.0,29.0,25.0,30.0,39.0,48.0,42.0,68.0,56.0,52.0,53.0,57.0,61.0,69.0,65.0,60.0,75.0,69.0,54.0,49.0,37.0,49.0,42.0,36.0,38.0,35.0,42.0,45.0,46.0,48.0,44.0,52.0,59.0,64.0,64.0,46.0,47.0,65.0,69.0,68.0,69.0,57.0,65.0,59.0,76.0,69.0,64.0,65.0,80.0,75.0,68.0,85.0,74.0,57.0,82.0,59.0,66.0,65.0,58.0,63.0,41.0,49.0,60.0,41.0,35.0,28.0,29.0,25.0,23.0,26.0,27.0,24.0,29.0,29.0,40.0,36.0,25.0,37.0,38.0,22.0,27.0,20.0,14.0,11.0,17.0,11.0,10.0,9.0,10.0,5.0,3.0,1.0,2.0,5.0,2.0,12.0 H84048,24.0,25.0,34.0,44.0,32.0,29.0,37.0,46.0,63.0,60.0,66.0,60.0,61.0,81.0,60.0,63.0,59.0,59.0,47.0,36.0,42.0,46.0,45.0,39.0,50.0,49.0,33.0,42.0,51.0,51.0,53.0,57.0,47.0,60.0,50.0,59.0,56.0,53.0,72.0,69.0,72.0,77.0,76.0,71.0,95.0,98.0,85.0,76.0,74.0,70.0,89.0,84.0,89.0,92.0,70.0,64.0,68.0,51.0,61.0,44.0,59.0,52.0,37.0,37.0,38.0,36.0,32.0,28.0,31.0,13.0,34.0,25.0,21.0,24.0,28.0,22.0,20.0,36.0,25.0,19.0,28.0,18.0,20.0,17.0,6.0,15.0,11.0,16.0,9.0,7.0,13.0,4.0,5.0,3.0,5.0,17.0 H84050,42.0,50.0,41.0,37.0,44.0,37.0,47.0,45.0,43.0,49.0,39.0,41.0,49.0,50.0,47.0,36.0,44.0,49.0,41.0,31.0,35.0,36.0,41.0,35.0,39.0,43.0,35.0,52.0,51.0,40.0,44.0,49.0,49.0,58.0,57.0,54.0,57.0,74.0,54.0,54.0,50.0,67.0,64.0,61.0,53.0,63.0,50.0,40.0,48.0,54.0,47.0,43.0,46.0,36.0,63.0,43.0,55.0,44.0,51.0,52.0,55.0,57.0,45.0,53.0,50.0,39.0,48.0,36.0,44.0,41.0,47.0,38.0,24.0,33.0,25.0,43.0,28.0,28.0,45.0,24.0,27.0,16.0,15.0,8.0,14.0,10.0,14.0,6.0,9.0,7.0,13.0,4.0,7.0,3.0,5.0,7.0 H84051,31.0,30.0,36.0,33.0,37.0,32.0,40.0,39.0,50.0,52.0,38.0,52.0,40.0,44.0,49.0,38.0,44.0,55.0,53.0,43.0,29.0,53.0,43.0,57.0,41.0,60.0,63.0,61.0,56.0,57.0,56.0,60.0,61.0,58.0,65.0,52.0,64.0,69.0,60.0,59.0,52.0,51.0,73.0,46.0,66.0,64.0,65.0,58.0,58.0,58.0,41.0,65.0,51.0,57.0,43.0,35.0,41.0,40.0,49.0,33.0,49.0,47.0,40.0,29.0,27.0,31.0,38.0,25.0,22.0,26.0,26.0,32.0,26.0,15.0,14.0,30.0,22.0,27.0,15.0,15.0,13.0,11.0,14.0,10.0,12.0,9.0,17.0,7.0,8.0,6.0,7.0,4.0,4.0,4.0,3.0,8.0 H84053,22.0,26.0,21.0,28.0,35.0,19.0,25.0,33.0,27.0,33.0,31.0,32.0,21.0,29.0,27.0,25.0,19.0,23.0,22.0,16.0,27.0,22.0,29.0,43.0,38.0,35.0,40.0,48.0,50.0,53.0,56.0,59.0,61.0,52.0,63.0,61.0,55.0,50.0,41.0,49.0,37.0,44.0,45.0,40.0,44.0,51.0,46.0,35.0,41.0,31.0,36.0,29.0,38.0,38.0,35.0,22.0,26.0,25.0,33.0,24.0,20.0,25.0,24.0,20.0,27.0,25.0,22.0,26.0,19.0,17.0,27.0,27.0,18.0,14.0,17.0,30.0,26.0,16.0,26.0,21.0,11.0,16.0,14.0,11.0,11.0,11.0,10.0,6.0,6.0,17.0,4.0,6.0,3.0,6.0,3.0,8.0 H84054,18.0,13.0,16.0,15.0,23.0,16.0,16.0,21.0,21.0,14.0,15.0,27.0,15.0,23.0,20.0,8.0,22.0,19.0,20.0,27.0,19.0,14.0,25.0,16.0,26.0,33.0,33.0,36.0,31.0,27.0,28.0,36.0,30.0,32.0,26.0,18.0,20.0,24.0,27.0,32.0,28.0,18.0,34.0,31.0,22.0,20.0,18.0,15.0,16.0,26.0,30.0,21.0,25.0,26.0,18.0,21.0,21.0,15.0,12.0,18.0,17.0,21.0,23.0,16.0,14.0,15.0,11.0,13.0,16.0,16.0,9.0,11.0,13.0,10.0,12.0,10.0,13.0,8.0,8.0,9.0,11.0,5.0,8.0,6.0,3.0,3.0,2.0,5.0,11.0,4.0,5.0,2.0,5.0,,1.0,7.0 H84055,36.0,47.0,50.0,55.0,68.0,66.0,70.0,64.0,69.0,77.0,82.0,79.0,85.0,87.0,77.0,80.0,79.0,61.0,66.0,48.0,36.0,40.0,54.0,55.0,61.0,67.0,83.0,73.0,57.0,84.0,79.0,88.0,70.0,83.0,78.0,83.0,78.0,82.0,98.0,75.0,97.0,102.0,110.0,133.0,87.0,108.0,101.0,86.0,89.0,86.0,81.0,92.0,99.0,78.0,83.0,81.0,74.0,68.0,72.0,76.0,65.0,73.0,68.0,48.0,64.0,61.0,57.0,46.0,60.0,49.0,50.0,54.0,43.0,39.0,69.0,59.0,39.0,60.0,44.0,42.0,38.0,38.0,25.0,19.0,13.0,26.0,12.0,16.0,10.0,9.0,9.0,7.0,6.0,7.0,3.0,13.0 H84057,14.0,10.0,17.0,21.0,20.0,18.0,31.0,25.0,24.0,30.0,20.0,30.0,25.0,37.0,33.0,38.0,35.0,30.0,23.0,18.0,21.0,22.0,15.0,17.0,21.0,18.0,20.0,20.0,16.0,21.0,16.0,21.0,34.0,23.0,24.0,28.0,29.0,35.0,30.0,24.0,35.0,46.0,38.0,39.0,49.0,49.0,44.0,37.0,26.0,28.0,36.0,27.0,29.0,28.0,35.0,14.0,19.0,23.0,25.0,27.0,12.0,14.0,18.0,15.0,15.0,13.0,15.0,15.0,9.0,15.0,13.0,11.0,14.0,12.0,9.0,10.0,9.0,13.0,11.0,8.0,6.0,8.0,2.0,6.0,6.0,4.0,3.0,3.0,4.0,5.0,1.0,1.0,1.0,,,3.0 H84059,21.0,29.0,17.0,35.0,22.0,32.0,30.0,25.0,28.0,33.0,35.0,34.0,28.0,27.0,34.0,37.0,34.0,28.0,32.0,25.0,18.0,25.0,26.0,32.0,34.0,47.0,42.0,32.0,31.0,42.0,40.0,46.0,49.0,36.0,46.0,42.0,45.0,42.0,38.0,30.0,34.0,38.0,38.0,50.0,43.0,40.0,30.0,32.0,42.0,41.0,38.0,40.0,44.0,36.0,36.0,30.0,38.0,53.0,45.0,38.0,32.0,31.0,30.0,35.0,26.0,24.0,21.0,25.0,18.0,16.0,9.0,15.0,13.0,22.0,6.0,22.0,21.0,22.0,21.0,15.0,11.0,17.0,5.0,11.0,10.0,9.0,7.0,10.0,4.0,3.0,13.0,6.0,4.0,3.0,4.0,14.0 H84060,16.0,21.0,31.0,37.0,35.0,28.0,34.0,51.0,49.0,58.0,46.0,68.0,54.0,76.0,55.0,55.0,67.0,53.0,55.0,48.0,44.0,36.0,37.0,32.0,29.0,28.0,45.0,49.0,34.0,28.0,31.0,35.0,36.0,27.0,48.0,31.0,44.0,57.0,65.0,53.0,53.0,66.0,82.0,76.0,78.0,68.0,91.0,71.0,60.0,70.0,88.0,81.0,68.0,65.0,71.0,56.0,51.0,53.0,46.0,54.0,48.0,45.0,44.0,42.0,44.0,43.0,42.0,25.0,52.0,26.0,29.0,30.0,29.0,32.0,29.0,27.0,30.0,33.0,27.0,22.0,17.0,24.0,21.0,13.0,11.0,18.0,10.0,11.0,10.0,8.0,4.0,,7.0,2.0,2.0,5.0 H84061,133.0,125.0,129.0,153.0,154.0,134.0,150.0,148.0,158.0,175.0,200.0,157.0,162.0,208.0,195.0,179.0,168.0,158.0,156.0,141.0,175.0,177.0,218.0,256.0,306.0,300.0,332.0,326.0,323.0,274.0,264.0,270.0,310.0,304.0,293.0,336.0,315.0,300.0,312.0,260.0,274.0,278.0,292.0,316.0,266.0,268.0,263.0,230.0,214.0,211.0,214.0,177.0,156.0,153.0,150.0,135.0,159.0,99.0,113.0,95.0,103.0,100.0,91.0,93.0,82.0,75.0,69.0,76.0,81.0,41.0,69.0,48.0,54.0,52.0,50.0,46.0,47.0,32.0,42.0,33.0,30.0,38.0,21.0,12.0,13.0,9.0,14.0,18.0,11.0,5.0,6.0,5.0,7.0,4.0,,7.0 H84062,65.0,57.0,39.0,53.0,58.0,48.0,47.0,47.0,44.0,56.0,46.0,40.0,51.0,53.0,52.0,50.0,56.0,54.0,47.0,43.0,23.0,34.0,41.0,43.0,42.0,60.0,54.0,69.0,62.0,80.0,77.0,64.0,74.0,89.0,76.0,71.0,77.0,78.0,68.0,76.0,91.0,85.0,81.0,79.0,89.0,65.0,63.0,67.0,59.0,61.0,57.0,54.0,64.0,51.0,59.0,53.0,63.0,63.0,52.0,60.0,62.0,58.0,41.0,59.0,46.0,40.0,29.0,26.0,49.0,30.0,24.0,26.0,32.0,29.0,31.0,30.0,29.0,30.0,33.0,30.0,24.0,22.0,17.0,15.0,20.0,14.0,12.0,17.0,16.0,8.0,15.0,5.0,5.0,6.0,4.0,12.0 H84618,25.0,19.0,21.0,20.0,28.0,29.0,30.0,23.0,27.0,25.0,38.0,38.0,42.0,43.0,43.0,40.0,41.0,48.0,42.0,33.0,37.0,34.0,32.0,33.0,30.0,42.0,26.0,41.0,27.0,41.0,25.0,35.0,41.0,29.0,45.0,42.0,38.0,43.0,40.0,39.0,40.0,32.0,53.0,55.0,54.0,44.0,45.0,45.0,42.0,26.0,32.0,40.0,35.0,39.0,31.0,25.0,25.0,27.0,35.0,27.0,27.0,41.0,27.0,28.0,23.0,20.0,23.0,22.0,20.0,23.0,20.0,28.0,19.0,12.0,18.0,12.0,12.0,17.0,9.0,13.0,13.0,8.0,6.0,12.0,5.0,9.0,2.0,4.0,5.0,3.0,1.0,4.0,,4.0,,2.0 H84619,56.0,36.0,42.0,64.0,61.0,51.0,60.0,72.0,64.0,80.0,66.0,60.0,74.0,62.0,55.0,57.0,57.0,59.0,55.0,46.0,36.0,42.0,46.0,56.0,60.0,50.0,69.0,63.0,75.0,80.0,106.0,80.0,99.0,109.0,97.0,116.0,121.0,102.0,109.0,95.0,112.0,141.0,121.0,123.0,131.0,97.0,109.0,106.0,109.0,97.0,100.0,89.0,80.0,90.0,77.0,63.0,58.0,62.0,53.0,44.0,56.0,58.0,43.0,41.0,29.0,38.0,47.0,32.0,30.0,30.0,29.0,26.0,30.0,22.0,27.0,28.0,15.0,26.0,30.0,19.0,19.0,20.0,13.0,14.0,5.0,15.0,10.0,9.0,4.0,4.0,6.0,6.0,3.0,2.0,2.0,8.0 H84623,28.0,39.0,44.0,32.0,34.0,49.0,37.0,37.0,42.0,48.0,70.0,57.0,70.0,54.0,72.0,49.0,69.0,68.0,45.0,37.0,38.0,52.0,45.0,57.0,60.0,51.0,52.0,53.0,62.0,46.0,58.0,59.0,43.0,53.0,61.0,56.0,54.0,53.0,67.0,68.0,55.0,67.0,51.0,71.0,81.0,85.0,83.0,69.0,73.0,66.0,81.0,83.0,71.0,65.0,80.0,64.0,60.0,68.0,84.0,75.0,56.0,51.0,50.0,60.0,54.0,50.0,39.0,39.0,43.0,35.0,37.0,28.0,28.0,31.0,40.0,28.0,44.0,39.0,33.0,26.0,25.0,28.0,19.0,12.0,17.0,18.0,16.0,7.0,8.0,10.0,10.0,11.0,4.0,7.0,4.0,8.0 H84625,14.0,22.0,21.0,28.0,20.0,38.0,20.0,23.0,21.0,35.0,24.0,28.0,31.0,41.0,31.0,38.0,40.0,32.0,34.0,33.0,31.0,29.0,31.0,24.0,40.0,31.0,30.0,32.0,30.0,39.0,37.0,25.0,32.0,35.0,25.0,34.0,32.0,35.0,33.0,56.0,32.0,35.0,42.0,41.0,33.0,42.0,38.0,46.0,32.0,36.0,42.0,32.0,47.0,24.0,20.0,29.0,30.0,25.0,33.0,27.0,25.0,29.0,28.0,20.0,27.0,21.0,20.0,24.0,16.0,18.0,13.0,15.0,19.0,15.0,12.0,18.0,15.0,7.0,24.0,13.0,14.0,14.0,8.0,10.0,5.0,8.0,11.0,7.0,4.0,9.0,7.0,5.0,1.0,2.0,4.0,13.0 H84630,17.0,20.0,11.0,30.0,21.0,37.0,34.0,27.0,30.0,36.0,30.0,34.0,29.0,30.0,30.0,32.0,19.0,27.0,28.0,34.0,21.0,17.0,18.0,17.0,23.0,21.0,21.0,19.0,23.0,26.0,14.0,30.0,26.0,30.0,31.0,32.0,34.0,32.0,31.0,36.0,31.0,47.0,36.0,37.0,32.0,35.0,39.0,23.0,20.0,29.0,21.0,24.0,34.0,20.0,26.0,20.0,32.0,20.0,16.0,26.0,22.0,13.0,11.0,15.0,20.0,8.0,12.0,8.0,18.0,14.0,15.0,7.0,9.0,7.0,7.0,11.0,4.0,4.0,8.0,9.0,4.0,4.0,3.0,7.0,1.0,2.0,1.0,2.0,,3.0,6.0,1.0,1.0,,1.0,3.0 H84635,74.0,86.0,98.0,115.0,83.0,93.0,122.0,98.0,105.0,110.0,114.0,117.0,105.0,102.0,101.0,95.0,107.0,88.0,82.0,50.0,60.0,69.0,55.0,68.0,71.0,77.0,85.0,80.0,93.0,74.0,82.0,87.0,100.0,109.0,119.0,124.0,147.0,158.0,163.0,153.0,141.0,146.0,158.0,161.0,157.0,150.0,145.0,114.0,123.0,120.0,128.0,113.0,90.0,104.0,81.0,89.0,95.0,83.0,74.0,91.0,77.0,81.0,83.0,77.0,82.0,78.0,91.0,76.0,85.0,57.0,74.0,69.0,62.0,52.0,54.0,56.0,64.0,71.0,72.0,57.0,59.0,58.0,27.0,43.0,31.0,32.0,37.0,21.0,19.0,17.0,14.0,10.0,9.0,13.0,9.0,13.0 H84639,27.0,15.0,32.0,25.0,36.0,38.0,43.0,32.0,37.0,45.0,50.0,46.0,33.0,42.0,31.0,44.0,39.0,41.0,36.0,34.0,30.0,22.0,24.0,38.0,36.0,35.0,46.0,44.0,52.0,47.0,57.0,71.0,70.0,57.0,63.0,75.0,67.0,65.0,57.0,72.0,70.0,45.0,76.0,71.0,60.0,52.0,76.0,49.0,48.0,61.0,47.0,27.0,43.0,39.0,37.0,27.0,29.0,33.0,29.0,32.0,25.0,32.0,31.0,20.0,20.0,19.0,14.0,19.0,16.0,20.0,17.0,8.0,16.0,18.0,12.0,14.0,12.0,12.0,10.0,7.0,8.0,6.0,4.0,7.0,8.0,5.0,4.0,7.0,6.0,1.0,2.0,1.0,2.0,2.0,1.0,3.0 H85001,88.0,81.0,78.0,69.0,71.0,70.0,60.0,64.0,67.0,91.0,71.0,93.0,86.0,70.0,67.0,62.0,76.0,64.0,54.0,63.0,62.0,73.0,97.0,142.0,203.0,266.0,309.0,354.0,357.0,365.0,326.0,336.0,311.0,316.0,321.0,316.0,290.0,257.0,212.0,228.0,227.0,209.0,198.0,181.0,150.0,162.0,160.0,145.0,119.0,115.0,86.0,82.0,84.0,71.0,89.0,70.0,72.0,69.0,49.0,58.0,56.0,57.0,65.0,49.0,50.0,45.0,37.0,41.0,38.0,44.0,35.0,30.0,32.0,30.0,32.0,21.0,30.0,13.0,21.0,17.0,19.0,13.0,13.0,10.0,14.0,9.0,5.0,14.0,5.0,,5.0,3.0,4.0,3.0,3.0,4.0 H85002,35.0,40.0,36.0,38.0,37.0,32.0,47.0,33.0,37.0,54.0,41.0,41.0,41.0,49.0,41.0,52.0,52.0,64.0,59.0,49.0,37.0,55.0,99.0,128.0,204.0,212.0,247.0,225.0,209.0,198.0,180.0,153.0,147.0,141.0,159.0,119.0,112.0,109.0,103.0,105.0,69.0,71.0,53.0,70.0,63.0,71.0,65.0,70.0,64.0,63.0,52.0,63.0,60.0,57.0,56.0,57.0,58.0,51.0,43.0,51.0,45.0,49.0,41.0,48.0,38.0,42.0,35.0,36.0,28.0,24.0,14.0,31.0,19.0,18.0,26.0,16.0,26.0,21.0,26.0,10.0,8.0,10.0,17.0,11.0,10.0,7.0,10.0,14.0,10.0,7.0,8.0,4.0,2.0,2.0,4.0,3.0 H85003,25.0,19.0,33.0,19.0,19.0,21.0,23.0,30.0,29.0,22.0,23.0,27.0,19.0,30.0,33.0,37.0,31.0,34.0,32.0,20.0,22.0,25.0,39.0,62.0,76.0,108.0,92.0,98.0,128.0,99.0,82.0,86.0,92.0,82.0,52.0,60.0,68.0,56.0,44.0,63.0,57.0,49.0,64.0,49.0,51.0,50.0,38.0,33.0,42.0,37.0,39.0,47.0,41.0,51.0,39.0,51.0,39.0,46.0,37.0,46.0,34.0,46.0,45.0,27.0,37.0,33.0,25.0,26.0,27.0,31.0,14.0,24.0,21.0,26.0,22.0,22.0,21.0,19.0,23.0,18.0,21.0,15.0,8.0,15.0,7.0,12.0,11.0,11.0,5.0,5.0,2.0,1.0,2.0,5.0,3.0,9.0 H85006,14.0,19.0,32.0,32.0,32.0,38.0,30.0,37.0,56.0,34.0,44.0,51.0,40.0,51.0,39.0,74.0,45.0,22.0,31.0,28.0,39.0,50.0,39.0,47.0,52.0,49.0,50.0,55.0,46.0,56.0,50.0,48.0,60.0,45.0,37.0,59.0,65.0,60.0,50.0,62.0,58.0,66.0,40.0,61.0,65.0,57.0,47.0,46.0,42.0,46.0,47.0,44.0,37.0,38.0,50.0,37.0,43.0,38.0,31.0,34.0,34.0,24.0,29.0,20.0,25.0,27.0,27.0,23.0,26.0,23.0,24.0,21.0,20.0,20.0,22.0,24.0,16.0,20.0,32.0,11.0,18.0,21.0,16.0,9.0,9.0,9.0,14.0,6.0,7.0,9.0,7.0,11.0,3.0,12.0,2.0,14.0 H85007,46.0,39.0,40.0,68.0,56.0,53.0,60.0,66.0,64.0,60.0,50.0,65.0,59.0,51.0,54.0,55.0,63.0,71.0,55.0,48.0,40.0,53.0,43.0,74.0,67.0,102.0,120.0,83.0,86.0,80.0,92.0,95.0,83.0,85.0,93.0,90.0,91.0,85.0,89.0,90.0,87.0,79.0,70.0,87.0,79.0,79.0,81.0,84.0,75.0,73.0,66.0,68.0,57.0,73.0,90.0,82.0,75.0,66.0,61.0,80.0,75.0,74.0,62.0,74.0,67.0,57.0,50.0,54.0,42.0,48.0,45.0,49.0,36.0,48.0,47.0,39.0,42.0,47.0,49.0,33.0,31.0,21.0,36.0,26.0,19.0,22.0,22.0,12.0,13.0,18.0,15.0,7.0,5.0,7.0,4.0,9.0 H85008,21.0,26.0,20.0,28.0,30.0,35.0,35.0,31.0,29.0,27.0,36.0,39.0,36.0,26.0,38.0,39.0,29.0,42.0,39.0,34.0,49.0,44.0,46.0,56.0,40.0,51.0,52.0,52.0,45.0,60.0,56.0,64.0,51.0,57.0,44.0,48.0,48.0,56.0,52.0,58.0,45.0,39.0,51.0,45.0,39.0,50.0,43.0,37.0,43.0,29.0,47.0,36.0,47.0,43.0,35.0,41.0,27.0,50.0,40.0,42.0,36.0,52.0,36.0,35.0,31.0,37.0,34.0,21.0,30.0,20.0,27.0,24.0,26.0,9.0,27.0,31.0,18.0,25.0,15.0,22.0,29.0,14.0,18.0,16.0,24.0,13.0,14.0,13.0,10.0,17.0,24.0,6.0,8.0,11.0,8.0,25.0 H85009,66.0,61.0,50.0,63.0,39.0,60.0,54.0,60.0,63.0,61.0,57.0,55.0,57.0,57.0,51.0,45.0,62.0,44.0,45.0,49.0,34.0,47.0,60.0,86.0,128.0,185.0,223.0,291.0,266.0,257.0,278.0,226.0,224.0,170.0,163.0,145.0,138.0,124.0,103.0,131.0,101.0,105.0,88.0,99.0,117.0,100.0,92.0,94.0,74.0,86.0,87.0,74.0,74.0,67.0,84.0,69.0,78.0,71.0,81.0,72.0,84.0,80.0,69.0,55.0,76.0,55.0,55.0,49.0,41.0,48.0,39.0,45.0,43.0,27.0,33.0,32.0,41.0,36.0,33.0,20.0,29.0,21.0,22.0,21.0,18.0,13.0,18.0,11.0,14.0,8.0,6.0,6.0,6.0,4.0,4.0,15.0 H85011,54.0,70.0,63.0,72.0,70.0,60.0,64.0,57.0,51.0,63.0,57.0,61.0,67.0,70.0,74.0,62.0,63.0,58.0,60.0,53.0,50.0,61.0,71.0,68.0,65.0,73.0,83.0,80.0,84.0,105.0,87.0,70.0,92.0,107.0,88.0,105.0,112.0,100.0,81.0,79.0,105.0,91.0,90.0,97.0,88.0,91.0,66.0,65.0,65.0,67.0,63.0,60.0,58.0,63.0,61.0,70.0,60.0,67.0,84.0,58.0,60.0,58.0,69.0,42.0,47.0,53.0,38.0,41.0,46.0,49.0,38.0,45.0,40.0,34.0,40.0,36.0,35.0,17.0,31.0,22.0,21.0,29.0,29.0,16.0,14.0,12.0,21.0,11.0,13.0,10.0,4.0,4.0,5.0,6.0,3.0,7.0 H85012,73.0,77.0,66.0,89.0,90.0,83.0,74.0,91.0,93.0,124.0,120.0,104.0,121.0,109.0,104.0,117.0,107.0,92.0,115.0,143.0,188.0,187.0,214.0,258.0,305.0,297.0,314.0,330.0,320.0,330.0,297.0,267.0,271.0,268.0,262.0,235.0,218.0,221.0,234.0,218.0,210.0,205.0,195.0,206.0,212.0,189.0,197.0,181.0,166.0,171.0,169.0,139.0,154.0,157.0,139.0,123.0,119.0,117.0,118.0,119.0,128.0,110.0,121.0,111.0,79.0,85.0,75.0,85.0,92.0,66.0,71.0,61.0,84.0,78.0,74.0,58.0,59.0,66.0,66.0,61.0,42.0,43.0,42.0,40.0,23.0,33.0,34.0,21.0,17.0,27.0,8.0,14.0,10.0,14.0,8.0,24.0 H85018,37.0,35.0,36.0,35.0,39.0,39.0,40.0,44.0,49.0,59.0,53.0,66.0,59.0,65.0,54.0,64.0,62.0,53.0,36.0,33.0,33.0,26.0,40.0,42.0,37.0,57.0,44.0,52.0,47.0,40.0,68.0,64.0,71.0,56.0,70.0,73.0,75.0,64.0,59.0,90.0,86.0,91.0,82.0,87.0,80.0,80.0,83.0,76.0,83.0,63.0,67.0,46.0,59.0,55.0,59.0,52.0,54.0,44.0,46.0,44.0,49.0,54.0,51.0,40.0,34.0,48.0,34.0,41.0,41.0,42.0,30.0,42.0,37.0,32.0,22.0,33.0,32.0,37.0,31.0,30.0,37.0,27.0,22.0,24.0,13.0,24.0,25.0,20.0,12.0,14.0,14.0,11.0,5.0,7.0,5.0,15.0 H85020,142.0,158.0,152.0,173.0,177.0,197.0,209.0,211.0,192.0,191.0,184.0,185.0,221.0,173.0,185.0,176.0,194.0,182.0,146.0,124.0,132.0,144.0,135.0,144.0,190.0,198.0,261.0,243.0,263.0,241.0,249.0,270.0,285.0,295.0,311.0,285.0,335.0,323.0,321.0,279.0,291.0,303.0,333.0,295.0,266.0,323.0,285.0,258.0,271.0,222.0,222.0,197.0,233.0,187.0,207.0,186.0,160.0,176.0,186.0,162.0,170.0,170.0,170.0,174.0,148.0,151.0,150.0,130.0,140.0,136.0,125.0,131.0,124.0,108.0,121.0,115.0,100.0,118.0,99.0,85.0,80.0,77.0,59.0,58.0,59.0,56.0,46.0,44.0,49.0,37.0,31.0,17.0,28.0,19.0,15.0,46.0 H85021,13.0,26.0,35.0,24.0,30.0,27.0,25.0,34.0,30.0,21.0,23.0,30.0,39.0,48.0,31.0,39.0,41.0,32.0,39.0,32.0,28.0,39.0,47.0,31.0,36.0,35.0,32.0,49.0,38.0,37.0,41.0,42.0,40.0,52.0,46.0,54.0,41.0,54.0,30.0,40.0,30.0,42.0,48.0,43.0,43.0,46.0,48.0,34.0,44.0,43.0,45.0,50.0,39.0,48.0,43.0,49.0,46.0,41.0,43.0,55.0,63.0,41.0,43.0,43.0,24.0,34.0,39.0,29.0,23.0,28.0,25.0,25.0,27.0,21.0,24.0,15.0,20.0,22.0,21.0,16.0,13.0,8.0,24.0,16.0,9.0,8.0,10.0,13.0,9.0,6.0,8.0,2.0,6.0,3.0,2.0,9.0 H85022,20.0,19.0,23.0,26.0,22.0,27.0,27.0,25.0,23.0,29.0,26.0,30.0,27.0,37.0,25.0,41.0,35.0,28.0,27.0,40.0,18.0,23.0,18.0,24.0,21.0,39.0,26.0,33.0,34.0,29.0,22.0,28.0,30.0,38.0,31.0,36.0,32.0,40.0,41.0,41.0,36.0,46.0,31.0,42.0,37.0,42.0,40.0,45.0,28.0,30.0,31.0,42.0,44.0,39.0,25.0,26.0,32.0,28.0,27.0,27.0,15.0,17.0,16.0,20.0,17.0,13.0,14.0,24.0,16.0,15.0,15.0,22.0,14.0,16.0,15.0,23.0,19.0,15.0,10.0,11.0,18.0,8.0,10.0,5.0,11.0,9.0,6.0,6.0,10.0,5.0,5.0,3.0,2.0,3.0,1.0,2.0 H85023,27.0,34.0,25.0,26.0,29.0,26.0,26.0,34.0,35.0,31.0,40.0,22.0,30.0,35.0,30.0,28.0,36.0,34.0,28.0,22.0,44.0,30.0,31.0,35.0,27.0,34.0,33.0,46.0,36.0,32.0,37.0,41.0,52.0,52.0,52.0,35.0,31.0,35.0,45.0,36.0,38.0,43.0,38.0,41.0,39.0,51.0,54.0,25.0,28.0,26.0,25.0,27.0,37.0,36.0,41.0,32.0,25.0,20.0,41.0,35.0,28.0,34.0,19.0,34.0,23.0,32.0,22.0,26.0,17.0,24.0,11.0,18.0,17.0,17.0,14.0,17.0,7.0,14.0,12.0,12.0,6.0,16.0,11.0,7.0,5.0,9.0,6.0,6.0,8.0,7.0,8.0,3.0,2.0,3.0,2.0,8.0 H85024,15.0,25.0,26.0,24.0,26.0,31.0,26.0,25.0,29.0,31.0,34.0,32.0,58.0,39.0,52.0,38.0,53.0,40.0,35.0,45.0,67.0,60.0,42.0,59.0,57.0,65.0,62.0,51.0,67.0,55.0,72.0,48.0,69.0,47.0,56.0,61.0,52.0,35.0,48.0,42.0,55.0,46.0,65.0,38.0,37.0,39.0,48.0,41.0,54.0,42.0,40.0,50.0,54.0,49.0,54.0,45.0,45.0,52.0,50.0,52.0,45.0,30.0,59.0,59.0,45.0,40.0,37.0,50.0,50.0,33.0,35.0,35.0,40.0,29.0,26.0,28.0,28.0,25.0,20.0,20.0,22.0,22.0,21.0,12.0,11.0,17.0,13.0,11.0,11.0,11.0,8.0,8.0,8.0,9.0,5.0,16.0 H85025,79.0,83.0,96.0,104.0,98.0,104.0,116.0,93.0,122.0,132.0,110.0,106.0,124.0,114.0,114.0,121.0,113.0,91.0,86.0,75.0,70.0,69.0,64.0,65.0,85.0,90.0,86.0,88.0,94.0,94.0,130.0,111.0,107.0,120.0,130.0,131.0,155.0,157.0,161.0,166.0,157.0,161.0,143.0,151.0,144.0,138.0,160.0,123.0,117.0,128.0,115.0,86.0,113.0,104.0,117.0,93.0,103.0,112.0,117.0,98.0,90.0,96.0,101.0,96.0,89.0,99.0,71.0,58.0,76.0,70.0,57.0,69.0,60.0,64.0,67.0,51.0,70.0,66.0,68.0,42.0,46.0,43.0,41.0,29.0,36.0,33.0,43.0,28.0,24.0,19.0,24.0,17.0,11.0,9.0,9.0,25.0 H85026,52.0,67.0,67.0,88.0,63.0,67.0,71.0,80.0,98.0,78.0,85.0,103.0,99.0,90.0,83.0,87.0,102.0,96.0,64.0,62.0,57.0,61.0,65.0,73.0,85.0,108.0,118.0,119.0,116.0,155.0,136.0,139.0,137.0,148.0,143.0,139.0,159.0,147.0,119.0,136.0,126.0,134.0,127.0,155.0,134.0,121.0,136.0,127.0,131.0,111.0,111.0,106.0,107.0,110.0,79.0,90.0,98.0,91.0,87.0,87.0,84.0,66.0,65.0,65.0,56.0,62.0,47.0,56.0,60.0,40.0,45.0,58.0,31.0,39.0,36.0,35.0,48.0,34.0,34.0,28.0,29.0,29.0,13.0,18.0,20.0,10.0,14.0,14.0,16.0,10.0,8.0,7.0,7.0,8.0,4.0,13.0 H85027,45.0,47.0,42.0,46.0,48.0,44.0,53.0,49.0,61.0,62.0,40.0,72.0,62.0,76.0,83.0,82.0,81.0,90.0,85.0,67.0,52.0,64.0,60.0,63.0,79.0,71.0,109.0,100.0,100.0,98.0,91.0,92.0,100.0,92.0,94.0,114.0,75.0,95.0,83.0,91.0,95.0,120.0,87.0,109.0,96.0,99.0,105.0,105.0,93.0,105.0,91.0,104.0,125.0,99.0,90.0,86.0,95.0,90.0,82.0,90.0,71.0,61.0,93.0,79.0,87.0,80.0,82.0,75.0,81.0,71.0,67.0,64.0,82.0,75.0,61.0,65.0,70.0,76.0,57.0,45.0,46.0,45.0,38.0,43.0,41.0,31.0,33.0,28.0,17.0,31.0,22.0,18.0,18.0,10.0,10.0,52.0 H85028,45.0,49.0,47.0,70.0,56.0,53.0,44.0,57.0,41.0,46.0,60.0,74.0,67.0,64.0,61.0,62.0,56.0,42.0,44.0,40.0,24.0,43.0,39.0,77.0,100.0,103.0,118.0,116.0,124.0,133.0,120.0,119.0,117.0,115.0,124.0,129.0,118.0,88.0,99.0,85.0,104.0,112.0,88.0,91.0,88.0,89.0,82.0,80.0,71.0,57.0,72.0,61.0,66.0,72.0,56.0,50.0,59.0,52.0,47.0,46.0,41.0,37.0,45.0,34.0,34.0,34.0,31.0,27.0,26.0,35.0,32.0,28.0,28.0,29.0,29.0,28.0,22.0,32.0,24.0,23.0,18.0,15.0,21.0,11.0,18.0,13.0,16.0,8.0,8.0,7.0,6.0,3.0,6.0,7.0,6.0,12.0 H85029,53.0,55.0,68.0,76.0,70.0,87.0,79.0,93.0,91.0,106.0,86.0,115.0,98.0,104.0,110.0,132.0,121.0,109.0,80.0,90.0,82.0,97.0,92.0,95.0,110.0,115.0,107.0,101.0,103.0,117.0,118.0,124.0,117.0,125.0,116.0,133.0,122.0,130.0,118.0,120.0,141.0,111.0,117.0,122.0,125.0,114.0,106.0,94.0,93.0,104.0,91.0,83.0,80.0,86.0,96.0,74.0,100.0,94.0,80.0,120.0,72.0,98.0,88.0,84.0,78.0,77.0,68.0,66.0,65.0,63.0,57.0,51.0,49.0,47.0,37.0,42.0,43.0,41.0,41.0,36.0,35.0,36.0,20.0,23.0,25.0,30.0,20.0,23.0,22.0,21.0,15.0,17.0,9.0,14.0,8.0,27.0 H85030,46.0,62.0,53.0,56.0,64.0,63.0,65.0,78.0,86.0,74.0,80.0,80.0,95.0,77.0,71.0,80.0,74.0,77.0,72.0,50.0,50.0,49.0,67.0,65.0,82.0,74.0,83.0,65.0,97.0,82.0,105.0,94.0,113.0,107.0,116.0,115.0,117.0,113.0,121.0,95.0,119.0,109.0,119.0,128.0,118.0,108.0,118.0,99.0,94.0,100.0,101.0,92.0,69.0,76.0,86.0,91.0,91.0,79.0,81.0,95.0,86.0,95.0,76.0,61.0,92.0,75.0,58.0,71.0,64.0,75.0,50.0,55.0,55.0,56.0,50.0,54.0,50.0,73.0,72.0,46.0,58.0,42.0,38.0,33.0,37.0,34.0,31.0,38.0,22.0,23.0,24.0,14.0,11.0,13.0,10.0,19.0 H85031,56.0,54.0,61.0,70.0,74.0,57.0,84.0,61.0,88.0,72.0,96.0,84.0,93.0,88.0,85.0,80.0,79.0,62.0,65.0,48.0,39.0,39.0,50.0,64.0,47.0,67.0,72.0,63.0,90.0,76.0,72.0,91.0,94.0,85.0,90.0,91.0,90.0,116.0,109.0,98.0,102.0,121.0,110.0,108.0,97.0,121.0,104.0,104.0,74.0,95.0,99.0,82.0,91.0,78.0,79.0,69.0,69.0,74.0,69.0,81.0,67.0,76.0,59.0,50.0,59.0,54.0,58.0,50.0,56.0,50.0,51.0,42.0,38.0,45.0,61.0,53.0,34.0,43.0,62.0,37.0,40.0,32.0,28.0,27.0,16.0,20.0,16.0,23.0,22.0,19.0,13.0,15.0,14.0,9.0,15.0,27.0 H85033,45.0,37.0,35.0,35.0,39.0,51.0,44.0,68.0,51.0,55.0,58.0,46.0,53.0,64.0,44.0,62.0,61.0,72.0,65.0,55.0,52.0,52.0,60.0,76.0,72.0,77.0,69.0,77.0,82.0,81.0,74.0,68.0,80.0,66.0,67.0,68.0,64.0,65.0,76.0,66.0,82.0,64.0,59.0,67.0,67.0,73.0,58.0,52.0,65.0,62.0,66.0,52.0,64.0,73.0,69.0,60.0,61.0,78.0,84.0,71.0,66.0,76.0,57.0,68.0,64.0,51.0,63.0,44.0,45.0,45.0,46.0,42.0,27.0,28.0,45.0,35.0,26.0,34.0,31.0,26.0,23.0,26.0,20.0,15.0,16.0,23.0,11.0,8.0,8.0,10.0,9.0,10.0,5.0,2.0,3.0,7.0 H85037,55.0,69.0,53.0,63.0,73.0,59.0,67.0,58.0,74.0,81.0,50.0,78.0,69.0,77.0,80.0,78.0,72.0,83.0,76.0,74.0,61.0,77.0,63.0,66.0,106.0,102.0,99.0,110.0,96.0,119.0,109.0,108.0,112.0,120.0,98.0,109.0,122.0,110.0,115.0,104.0,94.0,106.0,111.0,124.0,107.0,103.0,106.0,82.0,90.0,87.0,95.0,85.0,103.0,105.0,97.0,95.0,83.0,96.0,95.0,78.0,91.0,83.0,81.0,68.0,70.0,74.0,72.0,60.0,62.0,49.0,52.0,61.0,59.0,41.0,54.0,51.0,45.0,52.0,42.0,44.0,37.0,40.0,32.0,17.0,30.0,27.0,29.0,26.0,21.0,16.0,23.0,10.0,13.0,6.0,5.0,23.0 H85038,54.0,46.0,49.0,63.0,75.0,63.0,70.0,68.0,63.0,77.0,64.0,71.0,74.0,66.0,75.0,63.0,63.0,63.0,66.0,64.0,60.0,58.0,55.0,63.0,68.0,75.0,76.0,77.0,78.0,92.0,110.0,107.0,98.0,105.0,115.0,114.0,94.0,84.0,132.0,98.0,94.0,81.0,93.0,104.0,98.0,83.0,85.0,71.0,76.0,72.0,64.0,86.0,76.0,74.0,77.0,72.0,71.0,84.0,72.0,79.0,70.0,72.0,63.0,65.0,55.0,61.0,63.0,43.0,59.0,39.0,51.0,42.0,40.0,38.0,38.0,46.0,26.0,35.0,26.0,23.0,25.0,21.0,25.0,13.0,23.0,24.0,19.0,15.0,17.0,9.0,13.0,13.0,10.0,6.0,9.0,13.0 H85041,124.0,125.0,111.0,92.0,86.0,96.0,104.0,70.0,66.0,77.0,51.0,64.0,52.0,66.0,54.0,73.0,53.0,45.0,54.0,45.0,55.0,78.0,82.0,107.0,121.0,174.0,199.0,241.0,236.0,242.0,282.0,287.0,256.0,256.0,248.0,245.0,218.0,197.0,164.0,141.0,133.0,123.0,104.0,129.0,101.0,96.0,94.0,108.0,94.0,89.0,60.0,88.0,64.0,68.0,85.0,77.0,73.0,61.0,45.0,84.0,52.0,55.0,48.0,46.0,43.0,31.0,36.0,41.0,41.0,36.0,20.0,36.0,31.0,27.0,31.0,32.0,27.0,24.0,26.0,18.0,17.0,18.0,15.0,11.0,15.0,18.0,9.0,12.0,8.0,13.0,4.0,3.0,15.0,3.0,6.0,11.0 H85045,51.0,62.0,60.0,61.0,72.0,58.0,53.0,61.0,64.0,50.0,77.0,71.0,50.0,81.0,59.0,59.0,60.0,58.0,74.0,52.0,52.0,56.0,70.0,95.0,115.0,156.0,154.0,149.0,165.0,129.0,160.0,141.0,135.0,130.0,140.0,120.0,122.0,108.0,101.0,118.0,115.0,92.0,107.0,87.0,85.0,81.0,109.0,102.0,98.0,79.0,83.0,81.0,77.0,94.0,107.0,80.0,99.0,88.0,78.0,83.0,79.0,71.0,74.0,67.0,74.0,72.0,50.0,50.0,56.0,58.0,42.0,42.0,38.0,51.0,59.0,45.0,51.0,61.0,45.0,35.0,39.0,36.0,35.0,29.0,24.0,19.0,21.0,19.0,18.0,17.0,11.0,6.0,5.0,9.0,4.0,9.0 H85047,54.0,51.0,42.0,61.0,33.0,50.0,49.0,40.0,32.0,51.0,57.0,46.0,54.0,53.0,45.0,36.0,53.0,42.0,64.0,32.0,49.0,55.0,64.0,106.0,131.0,147.0,151.0,174.0,190.0,165.0,161.0,163.0,134.0,121.0,148.0,133.0,145.0,104.0,109.0,102.0,117.0,93.0,97.0,96.0,101.0,100.0,78.0,107.0,83.0,80.0,81.0,71.0,78.0,82.0,71.0,67.0,62.0,85.0,61.0,77.0,66.0,55.0,62.0,63.0,56.0,57.0,53.0,45.0,43.0,37.0,40.0,44.0,39.0,33.0,42.0,35.0,42.0,36.0,21.0,20.0,23.0,21.0,23.0,9.0,14.0,20.0,10.0,12.0,16.0,5.0,5.0,7.0,1.0,2.0,3.0,11.0 H85048,61.0,86.0,85.0,82.0,76.0,85.0,94.0,85.0,86.0,61.0,84.0,70.0,97.0,71.0,81.0,91.0,84.0,82.0,74.0,79.0,64.0,76.0,77.0,104.0,130.0,162.0,160.0,161.0,198.0,215.0,195.0,208.0,205.0,201.0,170.0,184.0,160.0,139.0,132.0,124.0,149.0,129.0,131.0,123.0,143.0,121.0,113.0,109.0,108.0,100.0,94.0,104.0,101.0,95.0,108.0,112.0,85.0,94.0,88.0,93.0,108.0,71.0,92.0,64.0,69.0,64.0,61.0,56.0,49.0,45.0,39.0,32.0,55.0,30.0,32.0,35.0,38.0,35.0,38.0,34.0,33.0,26.0,32.0,22.0,19.0,20.0,10.0,13.0,14.0,7.0,15.0,9.0,7.0,7.0,4.0,14.0 H85049,14.0,18.0,19.0,25.0,29.0,21.0,30.0,42.0,38.0,42.0,47.0,31.0,42.0,44.0,30.0,51.0,40.0,37.0,28.0,23.0,18.0,25.0,36.0,55.0,82.0,89.0,111.0,114.0,123.0,104.0,98.0,65.0,58.0,65.0,75.0,50.0,36.0,65.0,50.0,51.0,49.0,53.0,37.0,49.0,50.0,67.0,42.0,44.0,45.0,69.0,66.0,43.0,46.0,50.0,48.0,49.0,39.0,43.0,31.0,32.0,36.0,36.0,24.0,29.0,23.0,13.0,14.0,25.0,18.0,10.0,16.0,8.0,19.0,14.0,12.0,18.0,12.0,15.0,15.0,8.0,9.0,9.0,9.0,4.0,7.0,4.0,6.0,6.0,5.0,6.0,5.0,2.0,3.0,2.0,1.0,9.0 H85051,95.0,73.0,84.0,101.0,87.0,99.0,95.0,113.0,126.0,98.0,110.0,103.0,122.0,100.0,125.0,121.0,109.0,117.0,90.0,77.0,88.0,70.0,82.0,95.0,108.0,122.0,115.0,136.0,144.0,132.0,162.0,128.0,162.0,161.0,193.0,173.0,158.0,158.0,162.0,180.0,171.0,164.0,182.0,171.0,187.0,144.0,184.0,163.0,145.0,144.0,121.0,142.0,130.0,125.0,108.0,112.0,105.0,97.0,104.0,102.0,82.0,76.0,71.0,63.0,87.0,62.0,63.0,71.0,76.0,67.0,58.0,56.0,54.0,59.0,51.0,41.0,49.0,68.0,45.0,38.0,36.0,34.0,26.0,38.0,30.0,32.0,34.0,21.0,26.0,20.0,12.0,7.0,8.0,7.0,8.0,19.0 H85052,26.0,18.0,22.0,24.0,16.0,17.0,19.0,17.0,18.0,28.0,26.0,27.0,19.0,26.0,27.0,29.0,22.0,24.0,18.0,15.0,16.0,24.0,20.0,25.0,32.0,40.0,43.0,33.0,47.0,49.0,49.0,38.0,48.0,41.0,35.0,39.0,46.0,33.0,35.0,35.0,42.0,34.0,40.0,31.0,16.0,29.0,25.0,22.0,20.0,23.0,28.0,19.0,27.0,23.0,21.0,21.0,21.0,26.0,28.0,32.0,26.0,32.0,22.0,28.0,23.0,20.0,19.0,16.0,15.0,20.0,14.0,9.0,11.0,11.0,25.0,13.0,17.0,10.0,16.0,13.0,9.0,22.0,12.0,10.0,17.0,11.0,16.0,4.0,11.0,7.0,12.0,6.0,6.0,5.0,3.0,2.0 H85053,20.0,28.0,24.0,42.0,28.0,30.0,31.0,29.0,36.0,30.0,38.0,34.0,29.0,35.0,35.0,32.0,28.0,33.0,29.0,30.0,18.0,21.0,17.0,17.0,31.0,35.0,35.0,30.0,43.0,38.0,41.0,42.0,44.0,52.0,37.0,53.0,54.0,45.0,40.0,56.0,44.0,44.0,55.0,46.0,42.0,47.0,47.0,30.0,40.0,33.0,38.0,37.0,36.0,33.0,35.0,29.0,42.0,30.0,34.0,30.0,24.0,23.0,19.0,20.0,23.0,16.0,16.0,20.0,13.0,19.0,18.0,15.0,19.0,12.0,20.0,18.0,13.0,12.0,15.0,11.0,11.0,8.0,12.0,4.0,6.0,8.0,5.0,7.0,7.0,3.0,4.0,1.0,3.0,3.0,1.0,7.0 H85055,30.0,22.0,26.0,28.0,32.0,31.0,30.0,29.0,39.0,37.0,27.0,39.0,29.0,50.0,40.0,48.0,38.0,49.0,35.0,32.0,35.0,32.0,37.0,35.0,42.0,39.0,36.0,41.0,49.0,33.0,58.0,60.0,48.0,44.0,47.0,50.0,58.0,38.0,50.0,55.0,48.0,42.0,50.0,48.0,45.0,57.0,54.0,54.0,49.0,38.0,44.0,49.0,48.0,39.0,45.0,53.0,51.0,48.0,35.0,55.0,50.0,48.0,49.0,38.0,50.0,44.0,37.0,44.0,43.0,36.0,48.0,35.0,33.0,25.0,30.0,28.0,43.0,36.0,29.0,19.0,20.0,27.0,21.0,14.0,15.0,20.0,14.0,10.0,12.0,8.0,10.0,8.0,5.0,4.0,2.0,23.0 H85057,79.0,58.0,71.0,67.0,50.0,58.0,62.0,50.0,57.0,51.0,47.0,39.0,39.0,30.0,45.0,37.0,41.0,44.0,44.0,17.0,16.0,27.0,23.0,49.0,48.0,80.0,84.0,77.0,75.0,88.0,112.0,106.0,106.0,112.0,130.0,108.0,109.0,86.0,92.0,72.0,91.0,79.0,74.0,72.0,64.0,61.0,62.0,63.0,53.0,63.0,45.0,55.0,49.0,54.0,44.0,39.0,37.0,37.0,43.0,34.0,37.0,40.0,29.0,37.0,32.0,31.0,26.0,23.0,24.0,19.0,18.0,24.0,10.0,25.0,19.0,27.0,20.0,17.0,17.0,9.0,12.0,12.0,13.0,10.0,6.0,12.0,4.0,,5.0,6.0,6.0,3.0,1.0,4.0,1.0,2.0 H85061,99.0,92.0,77.0,76.0,75.0,72.0,84.0,102.0,72.0,70.0,81.0,87.0,85.0,69.0,78.0,57.0,86.0,100.0,86.0,70.0,67.0,74.0,82.0,140.0,200.0,284.0,355.0,359.0,376.0,409.0,391.0,363.0,351.0,355.0,301.0,282.0,285.0,278.0,203.0,239.0,221.0,200.0,199.0,190.0,175.0,152.0,149.0,161.0,155.0,117.0,157.0,102.0,111.0,113.0,115.0,102.0,91.0,115.0,83.0,82.0,81.0,80.0,59.0,62.0,74.0,65.0,56.0,47.0,49.0,40.0,66.0,58.0,74.0,46.0,53.0,51.0,62.0,61.0,55.0,45.0,41.0,32.0,37.0,18.0,23.0,17.0,16.0,9.0,5.0,9.0,3.0,10.0,9.0,3.0,6.0,16.0 H85063,28.0,26.0,29.0,35.0,36.0,42.0,43.0,61.0,64.0,48.0,78.0,60.0,62.0,105.0,82.0,98.0,62.0,81.0,91.0,62.0,68.0,54.0,60.0,64.0,49.0,68.0,74.0,58.0,67.0,63.0,66.0,48.0,55.0,60.0,45.0,68.0,56.0,49.0,60.0,56.0,82.0,61.0,92.0,71.0,84.0,95.0,71.0,99.0,77.0,86.0,86.0,86.0,94.0,93.0,82.0,86.0,92.0,79.0,82.0,121.0,90.0,87.0,99.0,86.0,83.0,79.0,86.0,74.0,76.0,74.0,64.0,66.0,62.0,57.0,84.0,62.0,59.0,76.0,109.0,62.0,56.0,59.0,42.0,48.0,34.0,45.0,41.0,33.0,19.0,26.0,28.0,20.0,16.0,14.0,10.0,33.0 H85065,15.0,26.0,22.0,23.0,24.0,20.0,20.0,23.0,24.0,31.0,27.0,24.0,28.0,30.0,26.0,34.0,31.0,25.0,33.0,31.0,30.0,33.0,37.0,38.0,44.0,50.0,49.0,51.0,45.0,49.0,45.0,37.0,35.0,34.0,39.0,34.0,32.0,34.0,32.0,30.0,45.0,29.0,37.0,28.0,45.0,36.0,32.0,34.0,32.0,27.0,25.0,25.0,22.0,21.0,30.0,23.0,23.0,24.0,19.0,21.0,25.0,15.0,22.0,14.0,18.0,19.0,17.0,13.0,8.0,8.0,11.0,12.0,10.0,7.0,8.0,15.0,8.0,11.0,11.0,5.0,10.0,7.0,8.0,1.0,4.0,5.0,5.0,2.0,5.0,1.0,,1.0,1.0,1.0,1.0,2.0 H85066,101.0,95.0,84.0,67.0,82.0,75.0,67.0,83.0,93.0,99.0,108.0,84.0,99.0,96.0,85.0,74.0,82.0,79.0,78.0,59.0,57.0,66.0,99.0,130.0,230.0,324.0,420.0,407.0,413.0,426.0,435.0,344.0,277.0,271.0,239.0,234.0,208.0,201.0,168.0,141.0,150.0,121.0,142.0,127.0,122.0,129.0,138.0,110.0,116.0,108.0,111.0,104.0,107.0,85.0,109.0,121.0,99.0,92.0,98.0,102.0,93.0,96.0,97.0,71.0,87.0,70.0,71.0,74.0,58.0,45.0,59.0,55.0,46.0,49.0,37.0,35.0,47.0,48.0,37.0,33.0,41.0,29.0,27.0,26.0,19.0,20.0,27.0,21.0,14.0,16.0,11.0,12.0,8.0,7.0,5.0,10.0 H85067,10.0,14.0,9.0,12.0,12.0,16.0,22.0,20.0,18.0,21.0,13.0,25.0,23.0,19.0,16.0,25.0,19.0,12.0,27.0,15.0,18.0,23.0,18.0,22.0,23.0,29.0,24.0,19.0,13.0,20.0,26.0,18.0,21.0,25.0,16.0,23.0,14.0,20.0,15.0,34.0,25.0,25.0,20.0,21.0,23.0,26.0,28.0,10.0,18.0,23.0,16.0,23.0,19.0,16.0,17.0,13.0,21.0,19.0,15.0,10.0,14.0,18.0,21.0,16.0,15.0,14.0,14.0,5.0,12.0,6.0,5.0,13.0,8.0,6.0,11.0,6.0,1.0,6.0,3.0,6.0,5.0,3.0,4.0,7.0,5.0,6.0,6.0,4.0,3.0,2.0,1.0,2.0,1.0,1.0,,4.0 H85069,80.0,65.0,50.0,68.0,66.0,64.0,59.0,59.0,64.0,50.0,69.0,63.0,52.0,71.0,56.0,49.0,52.0,64.0,49.0,37.0,38.0,41.0,87.0,145.0,239.0,295.0,345.0,332.0,343.0,318.0,312.0,250.0,230.0,204.0,204.0,176.0,172.0,145.0,161.0,156.0,109.0,112.0,93.0,100.0,123.0,97.0,76.0,76.0,80.0,81.0,61.0,69.0,72.0,88.0,81.0,71.0,72.0,65.0,68.0,71.0,62.0,53.0,67.0,56.0,46.0,36.0,45.0,52.0,34.0,33.0,37.0,49.0,26.0,30.0,34.0,19.0,32.0,24.0,26.0,23.0,29.0,18.0,17.0,13.0,13.0,11.0,14.0,13.0,6.0,8.0,4.0,5.0,2.0,5.0,5.0,3.0 H85070,29.0,34.0,30.0,37.0,38.0,42.0,46.0,55.0,60.0,59.0,51.0,65.0,71.0,75.0,62.0,78.0,69.0,78.0,63.0,57.0,65.0,71.0,49.0,76.0,68.0,53.0,60.0,84.0,74.0,71.0,65.0,62.0,50.0,66.0,76.0,77.0,77.0,76.0,61.0,77.0,88.0,73.0,70.0,77.0,80.0,93.0,75.0,67.0,78.0,73.0,78.0,75.0,64.0,66.0,65.0,67.0,56.0,64.0,48.0,47.0,45.0,56.0,57.0,52.0,41.0,36.0,37.0,27.0,26.0,24.0,28.0,31.0,26.0,17.0,25.0,28.0,18.0,24.0,25.0,13.0,13.0,11.0,11.0,17.0,13.0,11.0,12.0,13.0,12.0,7.0,4.0,5.0,1.0,2.0,4.0,8.0 H85075,36.0,33.0,26.0,35.0,29.0,40.0,27.0,43.0,31.0,27.0,19.0,20.0,26.0,11.0,16.0,17.0,9.0,16.0,27.0,13.0,15.0,16.0,20.0,24.0,46.0,55.0,67.0,79.0,92.0,101.0,98.0,82.0,100.0,81.0,85.0,80.0,81.0,72.0,74.0,61.0,64.0,58.0,51.0,55.0,46.0,41.0,37.0,32.0,30.0,37.0,27.0,33.0,29.0,23.0,32.0,28.0,25.0,21.0,23.0,23.0,20.0,16.0,19.0,13.0,18.0,19.0,10.0,10.0,11.0,10.0,16.0,12.0,10.0,4.0,12.0,15.0,14.0,9.0,5.0,8.0,11.0,2.0,5.0,6.0,5.0,7.0,5.0,1.0,5.0,2.0,6.0,,,,1.0,2.0 H85076,49.0,49.0,35.0,42.0,42.0,49.0,59.0,60.0,52.0,64.0,46.0,57.0,41.0,48.0,55.0,56.0,64.0,62.0,48.0,48.0,54.0,49.0,53.0,65.0,73.0,63.0,74.0,71.0,62.0,74.0,60.0,71.0,65.0,53.0,67.0,55.0,78.0,71.0,77.0,72.0,79.0,72.0,65.0,59.0,67.0,79.0,66.0,63.0,44.0,59.0,60.0,66.0,58.0,61.0,67.0,70.0,78.0,65.0,70.0,75.0,77.0,85.0,50.0,69.0,65.0,51.0,51.0,40.0,38.0,65.0,50.0,50.0,36.0,56.0,40.0,50.0,42.0,39.0,52.0,26.0,31.0,17.0,31.0,26.0,14.0,24.0,25.0,27.0,23.0,18.0,15.0,10.0,8.0,9.0,5.0,18.0 H85077,45.0,45.0,26.0,19.0,27.0,34.0,26.0,29.0,26.0,43.0,31.0,33.0,40.0,34.0,28.0,28.0,27.0,24.0,19.0,12.0,17.0,26.0,38.0,59.0,62.0,78.0,97.0,114.0,98.0,79.0,86.0,83.0,75.0,88.0,80.0,83.0,66.0,76.0,61.0,57.0,46.0,61.0,55.0,52.0,52.0,44.0,52.0,36.0,36.0,38.0,39.0,48.0,37.0,36.0,32.0,32.0,34.0,39.0,33.0,26.0,21.0,31.0,19.0,33.0,17.0,26.0,19.0,18.0,25.0,26.0,23.0,14.0,21.0,19.0,22.0,24.0,15.0,18.0,15.0,15.0,16.0,10.0,17.0,3.0,7.0,7.0,5.0,3.0,2.0,4.0,4.0,2.0,2.0,1.0,,6.0 H85078,14.0,23.0,23.0,27.0,27.0,25.0,25.0,22.0,30.0,25.0,11.0,19.0,23.0,27.0,19.0,19.0,27.0,20.0,26.0,27.0,31.0,25.0,35.0,32.0,38.0,27.0,37.0,45.0,37.0,43.0,36.0,34.0,55.0,42.0,47.0,32.0,35.0,39.0,31.0,36.0,26.0,25.0,25.0,32.0,23.0,29.0,24.0,26.0,26.0,24.0,20.0,27.0,11.0,19.0,21.0,23.0,17.0,23.0,16.0,26.0,24.0,19.0,17.0,21.0,20.0,17.0,13.0,10.0,11.0,14.0,9.0,13.0,11.0,10.0,12.0,6.0,5.0,6.0,9.0,9.0,6.0,10.0,5.0,12.0,7.0,5.0,5.0,2.0,6.0,2.0,2.0,3.0,1.0,1.0,1.0,2.0 H85082,14.0,11.0,16.0,12.0,11.0,20.0,15.0,9.0,19.0,22.0,22.0,21.0,26.0,15.0,29.0,15.0,14.0,25.0,18.0,18.0,19.0,27.0,23.0,35.0,37.0,39.0,48.0,52.0,52.0,69.0,48.0,52.0,43.0,57.0,52.0,38.0,33.0,49.0,34.0,39.0,36.0,38.0,35.0,25.0,38.0,34.0,27.0,31.0,24.0,30.0,37.0,33.0,24.0,29.0,33.0,21.0,27.0,27.0,18.0,22.0,24.0,26.0,17.0,24.0,19.0,13.0,14.0,20.0,14.0,13.0,11.0,6.0,10.0,10.0,6.0,14.0,14.0,7.0,6.0,15.0,11.0,8.0,3.0,3.0,7.0,2.0,5.0,2.0,2.0,4.0,3.0,4.0,3.0,2.0,4.0,2.0 H85087,28.0,38.0,35.0,36.0,29.0,37.0,31.0,27.0,30.0,38.0,53.0,40.0,34.0,45.0,41.0,34.0,43.0,40.0,47.0,28.0,41.0,47.0,71.0,61.0,69.0,91.0,112.0,111.0,118.0,87.0,100.0,95.0,90.0,79.0,81.0,65.0,80.0,65.0,56.0,67.0,80.0,58.0,66.0,53.0,59.0,47.0,49.0,59.0,59.0,53.0,39.0,46.0,55.0,39.0,53.0,45.0,63.0,47.0,51.0,44.0,39.0,40.0,58.0,48.0,52.0,42.0,38.0,35.0,48.0,46.0,42.0,45.0,36.0,28.0,38.0,34.0,32.0,32.0,21.0,25.0,17.0,21.0,21.0,12.0,21.0,12.0,13.0,14.0,10.0,9.0,7.0,9.0,6.0,3.0,4.0,8.0 H85088,10.0,6.0,4.0,11.0,7.0,9.0,4.0,14.0,13.0,10.0,8.0,10.0,14.0,3.0,10.0,11.0,13.0,10.0,14.0,12.0,13.0,13.0,24.0,24.0,22.0,16.0,29.0,23.0,21.0,19.0,22.0,23.0,22.0,25.0,23.0,26.0,27.0,24.0,21.0,16.0,18.0,17.0,17.0,18.0,15.0,15.0,14.0,13.0,19.0,16.0,17.0,19.0,18.0,27.0,13.0,16.0,9.0,16.0,16.0,15.0,14.0,17.0,8.0,8.0,15.0,16.0,5.0,7.0,10.0,10.0,8.0,12.0,9.0,10.0,7.0,5.0,7.0,7.0,4.0,6.0,2.0,9.0,7.0,6.0,2.0,2.0,4.0,2.0,6.0,2.0,3.0,3.0,1.0,,,1.0 H85090,56.0,54.0,55.0,55.0,56.0,51.0,62.0,56.0,54.0,65.0,48.0,56.0,65.0,64.0,76.0,74.0,67.0,65.0,59.0,49.0,62.0,64.0,67.0,64.0,69.0,95.0,96.0,103.0,87.0,101.0,111.0,93.0,104.0,82.0,93.0,90.0,85.0,98.0,102.0,88.0,81.0,98.0,99.0,79.0,72.0,70.0,63.0,69.0,75.0,61.0,66.0,54.0,65.0,53.0,52.0,58.0,66.0,51.0,54.0,52.0,40.0,54.0,49.0,44.0,41.0,39.0,41.0,46.0,34.0,26.0,32.0,31.0,40.0,21.0,23.0,23.0,15.0,25.0,16.0,23.0,16.0,9.0,13.0,15.0,11.0,13.0,12.0,3.0,7.0,5.0,6.0,4.0,2.0,2.0,2.0,8.0 H85092,27.0,31.0,29.0,29.0,27.0,33.0,39.0,36.0,35.0,46.0,35.0,40.0,39.0,31.0,45.0,34.0,40.0,45.0,33.0,26.0,30.0,28.0,26.0,37.0,36.0,39.0,40.0,42.0,49.0,44.0,60.0,52.0,59.0,53.0,60.0,67.0,65.0,73.0,51.0,52.0,53.0,66.0,62.0,50.0,58.0,56.0,50.0,50.0,41.0,33.0,40.0,27.0,46.0,34.0,24.0,32.0,23.0,37.0,41.0,23.0,24.0,21.0,23.0,20.0,23.0,26.0,13.0,21.0,21.0,23.0,18.0,14.0,22.0,14.0,18.0,15.0,9.0,12.0,11.0,10.0,10.0,6.0,8.0,7.0,13.0,7.0,5.0,10.0,2.0,3.0,4.0,3.0,2.0,,1.0,3.0 H85095,66.0,79.0,85.0,86.0,78.0,107.0,91.0,109.0,126.0,121.0,129.0,110.0,139.0,114.0,126.0,113.0,100.0,92.0,76.0,66.0,50.0,51.0,69.0,66.0,91.0,77.0,80.0,114.0,111.0,102.0,124.0,140.0,124.0,125.0,144.0,167.0,142.0,172.0,156.0,158.0,171.0,169.0,167.0,160.0,173.0,146.0,138.0,125.0,118.0,99.0,116.0,112.0,78.0,101.0,107.0,79.0,76.0,71.0,79.0,79.0,73.0,49.0,69.0,55.0,61.0,58.0,66.0,63.0,49.0,47.0,63.0,42.0,40.0,29.0,40.0,35.0,25.0,34.0,46.0,36.0,36.0,23.0,32.0,20.0,22.0,19.0,17.0,17.0,14.0,6.0,10.0,9.0,5.0,5.0,6.0,9.0 H85100,27.0,38.0,31.0,32.0,36.0,41.0,31.0,52.0,44.0,49.0,49.0,33.0,37.0,41.0,39.0,46.0,43.0,30.0,35.0,19.0,34.0,44.0,44.0,51.0,74.0,57.0,87.0,77.0,88.0,81.0,90.0,67.0,85.0,69.0,71.0,72.0,78.0,87.0,84.0,82.0,67.0,79.0,77.0,88.0,72.0,65.0,56.0,67.0,57.0,48.0,41.0,49.0,49.0,48.0,42.0,46.0,44.0,33.0,28.0,38.0,32.0,27.0,22.0,32.0,24.0,30.0,21.0,29.0,16.0,23.0,26.0,24.0,26.0,17.0,23.0,17.0,12.0,16.0,17.0,14.0,16.0,12.0,19.0,10.0,10.0,12.0,6.0,9.0,4.0,4.0,3.0,6.0,6.0,5.0,1.0,11.0 H85101,36.0,37.0,39.0,46.0,47.0,49.0,52.0,46.0,52.0,55.0,57.0,58.0,67.0,66.0,54.0,73.0,64.0,55.0,53.0,34.0,22.0,38.0,37.0,48.0,54.0,47.0,45.0,60.0,53.0,71.0,58.0,60.0,53.0,62.0,55.0,77.0,69.0,64.0,78.0,70.0,73.0,70.0,83.0,78.0,84.0,93.0,97.0,85.0,70.0,73.0,65.0,56.0,73.0,68.0,60.0,49.0,54.0,56.0,67.0,50.0,45.0,50.0,39.0,41.0,42.0,47.0,30.0,30.0,40.0,39.0,43.0,32.0,34.0,25.0,31.0,41.0,33.0,21.0,30.0,17.0,35.0,26.0,24.0,14.0,18.0,11.0,20.0,17.0,18.0,10.0,10.0,6.0,3.0,3.0,7.0,9.0 H85103,53.0,68.0,69.0,45.0,60.0,64.0,63.0,49.0,51.0,44.0,56.0,56.0,49.0,54.0,47.0,45.0,43.0,36.0,29.0,18.0,24.0,28.0,20.0,28.0,36.0,38.0,48.0,63.0,59.0,64.0,101.0,78.0,83.0,97.0,101.0,97.0,102.0,95.0,91.0,91.0,91.0,81.0,87.0,74.0,67.0,67.0,53.0,57.0,41.0,37.0,44.0,36.0,33.0,45.0,53.0,34.0,38.0,45.0,37.0,22.0,29.0,37.0,40.0,26.0,22.0,26.0,17.0,16.0,15.0,11.0,12.0,15.0,15.0,14.0,11.0,7.0,14.0,15.0,11.0,8.0,11.0,8.0,14.0,10.0,8.0,8.0,10.0,7.0,2.0,2.0,4.0,4.0,,,,5.0 H85105,61.0,46.0,70.0,81.0,68.0,81.0,75.0,106.0,104.0,104.0,90.0,99.0,103.0,109.0,88.0,107.0,75.0,88.0,78.0,59.0,72.0,70.0,75.0,77.0,90.0,73.0,83.0,80.0,86.0,89.0,70.0,82.0,58.0,90.0,102.0,91.0,74.0,98.0,91.0,100.0,105.0,126.0,113.0,116.0,110.0,121.0,124.0,120.0,95.0,101.0,111.0,102.0,110.0,96.0,96.0,80.0,93.0,107.0,92.0,121.0,108.0,96.0,79.0,82.0,90.0,75.0,79.0,59.0,65.0,56.0,48.0,51.0,49.0,50.0,54.0,37.0,42.0,55.0,52.0,40.0,53.0,45.0,42.0,33.0,23.0,27.0,40.0,36.0,31.0,23.0,34.0,16.0,19.0,13.0,10.0,52.0 H85110,22.0,25.0,24.0,25.0,28.0,25.0,19.0,26.0,28.0,30.0,27.0,35.0,39.0,36.0,32.0,37.0,40.0,34.0,34.0,30.0,28.0,28.0,23.0,24.0,35.0,36.0,43.0,36.0,37.0,37.0,32.0,33.0,43.0,43.0,38.0,44.0,51.0,47.0,31.0,56.0,48.0,33.0,40.0,48.0,32.0,31.0,35.0,31.0,42.0,42.0,34.0,34.0,38.0,35.0,31.0,41.0,33.0,35.0,42.0,41.0,20.0,47.0,38.0,28.0,26.0,34.0,30.0,26.0,23.0,25.0,19.0,14.0,13.0,15.0,11.0,14.0,14.0,15.0,15.0,18.0,16.0,14.0,12.0,4.0,8.0,10.0,7.0,6.0,9.0,6.0,9.0,7.0,5.0,1.0,1.0,7.0 H85111,50.0,62.0,74.0,68.0,57.0,55.0,70.0,64.0,67.0,62.0,55.0,55.0,70.0,65.0,63.0,57.0,64.0,63.0,89.0,85.0,77.0,91.0,119.0,154.0,216.0,257.0,220.0,290.0,263.0,227.0,219.0,211.0,200.0,168.0,198.0,151.0,173.0,129.0,144.0,121.0,111.0,101.0,94.0,90.0,94.0,97.0,70.0,77.0,64.0,60.0,79.0,67.0,78.0,68.0,76.0,71.0,65.0,75.0,63.0,63.0,51.0,43.0,49.0,48.0,42.0,41.0,33.0,34.0,35.0,31.0,35.0,31.0,28.0,21.0,20.0,27.0,23.0,14.0,23.0,18.0,13.0,12.0,14.0,22.0,11.0,25.0,18.0,11.0,10.0,16.0,11.0,7.0,6.0,9.0,6.0,16.0 H85112,31.0,32.0,40.0,33.0,31.0,42.0,27.0,24.0,27.0,28.0,26.0,30.0,24.0,34.0,21.0,27.0,34.0,24.0,30.0,19.0,25.0,16.0,31.0,49.0,62.0,66.0,74.0,86.0,83.0,82.0,79.0,88.0,79.0,81.0,66.0,72.0,62.0,62.0,59.0,60.0,71.0,49.0,43.0,48.0,49.0,43.0,37.0,39.0,44.0,34.0,32.0,18.0,30.0,23.0,37.0,33.0,36.0,23.0,31.0,25.0,29.0,25.0,28.0,23.0,22.0,26.0,20.0,18.0,16.0,16.0,31.0,12.0,16.0,12.0,16.0,16.0,10.0,12.0,10.0,12.0,10.0,8.0,10.0,8.0,5.0,4.0,1.0,6.0,2.0,2.0,4.0,1.0,1.0,2.0,,4.0 H85113,20.0,33.0,21.0,25.0,16.0,22.0,26.0,33.0,28.0,23.0,31.0,25.0,30.0,18.0,30.0,36.0,20.0,24.0,17.0,25.0,17.0,18.0,19.0,29.0,18.0,23.0,23.0,22.0,31.0,30.0,34.0,29.0,29.0,19.0,23.0,35.0,45.0,40.0,50.0,39.0,46.0,47.0,52.0,44.0,33.0,35.0,46.0,46.0,28.0,26.0,29.0,29.0,20.0,21.0,26.0,36.0,26.0,37.0,29.0,35.0,40.0,27.0,24.0,29.0,33.0,22.0,21.0,28.0,28.0,16.0,25.0,27.0,17.0,22.0,13.0,16.0,21.0,18.0,20.0,8.0,13.0,10.0,11.0,10.0,6.0,11.0,9.0,6.0,6.0,10.0,5.0,3.0,1.0,2.0,,3.0 H85114,46.0,56.0,50.0,66.0,72.0,60.0,79.0,97.0,102.0,94.0,121.0,110.0,104.0,97.0,105.0,61.0,87.0,86.0,60.0,52.0,57.0,54.0,73.0,84.0,103.0,117.0,148.0,152.0,126.0,140.0,136.0,101.0,108.0,98.0,74.0,85.0,93.0,93.0,76.0,87.0,103.0,108.0,108.0,80.0,96.0,118.0,104.0,106.0,115.0,92.0,109.0,101.0,102.0,102.0,93.0,77.0,101.0,88.0,93.0,69.0,79.0,69.0,63.0,63.0,61.0,51.0,52.0,49.0,37.0,42.0,29.0,38.0,35.0,46.0,33.0,40.0,31.0,32.0,25.0,21.0,22.0,24.0,11.0,25.0,18.0,14.0,20.0,8.0,3.0,8.0,9.0,3.0,2.0,3.0,,7.0 H85115,22.0,30.0,36.0,32.0,53.0,53.0,36.0,51.0,61.0,70.0,62.0,76.0,73.0,82.0,70.0,88.0,73.0,85.0,68.0,71.0,55.0,63.0,43.0,66.0,66.0,67.0,67.0,65.0,67.0,73.0,56.0,58.0,54.0,62.0,68.0,61.0,81.0,66.0,66.0,76.0,72.0,100.0,88.0,80.0,106.0,92.0,102.0,92.0,93.0,88.0,106.0,86.0,82.0,96.0,92.0,103.0,99.0,105.0,113.0,97.0,112.0,96.0,97.0,95.0,92.0,101.0,85.0,78.0,61.0,71.0,68.0,62.0,61.0,61.0,62.0,61.0,66.0,65.0,76.0,42.0,60.0,38.0,47.0,29.0,32.0,31.0,39.0,31.0,30.0,26.0,24.0,18.0,24.0,14.0,7.0,37.0 H85116,50.0,60.0,65.0,86.0,61.0,65.0,58.0,68.0,80.0,85.0,73.0,81.0,89.0,79.0,79.0,90.0,88.0,87.0,73.0,74.0,85.0,62.0,68.0,85.0,76.0,83.0,85.0,86.0,84.0,79.0,75.0,112.0,80.0,91.0,102.0,104.0,75.0,113.0,112.0,102.0,99.0,101.0,86.0,110.0,105.0,104.0,107.0,82.0,74.0,81.0,93.0,91.0,85.0,82.0,78.0,89.0,82.0,82.0,93.0,73.0,90.0,68.0,71.0,49.0,49.0,49.0,54.0,46.0,44.0,36.0,36.0,42.0,31.0,31.0,27.0,43.0,34.0,38.0,40.0,23.0,27.0,27.0,19.0,17.0,16.0,16.0,12.0,7.0,20.0,10.0,4.0,5.0,4.0,2.0,6.0,5.0 H85618,30.0,42.0,41.0,54.0,52.0,62.0,73.0,62.0,72.0,84.0,73.0,78.0,54.0,67.0,85.0,74.0,57.0,56.0,49.0,48.0,38.0,44.0,33.0,48.0,50.0,52.0,40.0,51.0,58.0,41.0,41.0,56.0,46.0,51.0,50.0,82.0,77.0,71.0,77.0,83.0,91.0,96.0,88.0,94.0,98.0,87.0,60.0,60.0,91.0,60.0,60.0,61.0,48.0,58.0,55.0,55.0,62.0,46.0,50.0,51.0,61.0,49.0,57.0,48.0,58.0,45.0,39.0,50.0,43.0,45.0,38.0,32.0,39.0,43.0,37.0,37.0,31.0,32.0,41.0,31.0,27.0,29.0,30.0,23.0,20.0,16.0,13.0,13.0,7.0,17.0,7.0,6.0,7.0,1.0,4.0,11.0 H85634,36.0,44.0,27.0,40.0,43.0,36.0,39.0,38.0,37.0,41.0,34.0,48.0,48.0,37.0,34.0,31.0,45.0,22.0,34.0,29.0,25.0,30.0,31.0,40.0,54.0,61.0,61.0,76.0,72.0,85.0,75.0,102.0,81.0,95.0,90.0,105.0,93.0,93.0,76.0,83.0,86.0,62.0,80.0,66.0,75.0,77.0,52.0,60.0,61.0,49.0,44.0,42.0,51.0,42.0,42.0,39.0,46.0,30.0,27.0,34.0,33.0,27.0,28.0,29.0,25.0,24.0,27.0,20.0,21.0,18.0,10.0,21.0,16.0,13.0,20.0,11.0,11.0,10.0,7.0,10.0,7.0,9.0,4.0,7.0,9.0,4.0,5.0,3.0,3.0,2.0,2.0,1.0,1.0,2.0,2.0,3.0 H85637,2.0,1.0,5.0,6.0,3.0,4.0,2.0,6.0,4.0,8.0,10.0,9.0,7.0,10.0,6.0,16.0,9.0,13.0,5.0,4.0,8.0,6.0,12.0,11.0,5.0,7.0,14.0,9.0,6.0,9.0,6.0,11.0,2.0,7.0,4.0,8.0,8.0,7.0,6.0,7.0,4.0,5.0,5.0,9.0,9.0,8.0,7.0,15.0,6.0,7.0,5.0,16.0,12.0,13.0,13.0,7.0,13.0,11.0,13.0,12.0,7.0,12.0,9.0,8.0,14.0,9.0,10.0,6.0,12.0,5.0,9.0,9.0,9.0,5.0,2.0,7.0,7.0,3.0,5.0,4.0,8.0,3.0,1.0,4.0,3.0,2.0,4.0,2.0,3.0,1.0,3.0,,1.0,,,3.0 H85649,50.0,34.0,43.0,37.0,45.0,41.0,48.0,45.0,43.0,48.0,73.0,49.0,58.0,59.0,70.0,69.0,67.0,67.0,37.0,66.0,44.0,56.0,58.0,83.0,110.0,110.0,126.0,134.0,125.0,154.0,123.0,123.0,142.0,104.0,104.0,128.0,101.0,100.0,77.0,92.0,88.0,71.0,67.0,85.0,88.0,77.0,74.0,65.0,63.0,67.0,68.0,61.0,62.0,73.0,60.0,58.0,61.0,72.0,47.0,52.0,60.0,65.0,47.0,54.0,59.0,44.0,34.0,40.0,40.0,47.0,37.0,31.0,30.0,25.0,23.0,27.0,22.0,22.0,12.0,19.0,6.0,24.0,6.0,12.0,9.0,11.0,9.0,7.0,7.0,6.0,5.0,5.0,4.0,1.0,2.0,4.0 H85653,66.0,90.0,85.0,113.0,109.0,103.0,124.0,118.0,129.0,136.0,134.0,134.0,116.0,138.0,147.0,132.0,126.0,122.0,116.0,98.0,95.0,91.0,93.0,66.0,114.0,116.0,101.0,97.0,128.0,103.0,116.0,101.0,122.0,109.0,137.0,153.0,135.0,159.0,154.0,172.0,181.0,157.0,178.0,182.0,196.0,166.0,167.0,156.0,162.0,140.0,143.0,132.0,131.0,130.0,130.0,114.0,121.0,115.0,106.0,122.0,121.0,128.0,104.0,102.0,112.0,92.0,76.0,99.0,97.0,95.0,79.0,89.0,99.0,82.0,83.0,84.0,86.0,85.0,96.0,60.0,55.0,68.0,64.0,53.0,46.0,39.0,36.0,22.0,41.0,33.0,34.0,15.0,22.0,11.0,9.0,38.0 H85656,24.0,20.0,22.0,30.0,30.0,18.0,22.0,27.0,22.0,23.0,32.0,24.0,28.0,23.0,28.0,32.0,27.0,30.0,31.0,24.0,22.0,25.0,26.0,34.0,41.0,47.0,64.0,59.0,53.0,58.0,66.0,52.0,62.0,66.0,55.0,50.0,53.0,67.0,51.0,53.0,48.0,43.0,48.0,48.0,42.0,30.0,48.0,56.0,42.0,32.0,39.0,45.0,36.0,39.0,34.0,33.0,23.0,47.0,21.0,31.0,29.0,29.0,27.0,16.0,27.0,34.0,23.0,17.0,19.0,26.0,11.0,13.0,20.0,18.0,17.0,18.0,19.0,11.0,7.0,16.0,9.0,11.0,9.0,11.0,2.0,8.0,6.0,6.0,1.0,3.0,1.0,,2.0,1.0,1.0,2.0 H85659,60.0,69.0,64.0,69.0,62.0,50.0,58.0,38.0,43.0,30.0,28.0,33.0,26.0,28.0,21.0,20.0,20.0,30.0,20.0,16.0,29.0,25.0,41.0,59.0,108.0,162.0,210.0,246.0,304.0,285.0,281.0,283.0,245.0,236.0,204.0,214.0,182.0,189.0,151.0,141.0,118.0,126.0,109.0,84.0,83.0,68.0,65.0,57.0,58.0,38.0,50.0,43.0,33.0,35.0,38.0,27.0,39.0,29.0,27.0,32.0,29.0,34.0,28.0,22.0,22.0,24.0,18.0,21.0,18.0,20.0,22.0,15.0,12.0,9.0,10.0,13.0,11.0,7.0,9.0,10.0,9.0,9.0,4.0,5.0,3.0,5.0,9.0,6.0,4.0,5.0,5.0,2.0,4.0,6.0,,3.0 H85662,13.0,16.0,20.0,13.0,28.0,30.0,27.0,27.0,31.0,39.0,41.0,34.0,46.0,46.0,35.0,33.0,31.0,38.0,21.0,28.0,24.0,29.0,29.0,32.0,27.0,29.0,26.0,27.0,24.0,32.0,20.0,24.0,16.0,14.0,30.0,25.0,32.0,42.0,34.0,37.0,38.0,38.0,49.0,33.0,45.0,43.0,48.0,52.0,42.0,37.0,42.0,48.0,49.0,40.0,43.0,40.0,35.0,46.0,43.0,39.0,31.0,42.0,29.0,31.0,39.0,28.0,29.0,27.0,29.0,29.0,33.0,26.0,29.0,22.0,23.0,25.0,35.0,29.0,40.0,17.0,19.0,19.0,16.0,18.0,7.0,5.0,7.0,9.0,11.0,10.0,8.0,8.0,3.0,1.0,4.0,7.0 H85664,6.0,5.0,2.0,3.0,,1.0,6.0,2.0,,1.0,1.0,,3.0,3.0,1.0,1.0,3.0,,,2.0,4.0,3.0,7.0,22.0,38.0,62.0,63.0,67.0,76.0,70.0,56.0,43.0,43.0,35.0,26.0,30.0,31.0,19.0,10.0,9.0,10.0,8.0,11.0,7.0,9.0,4.0,5.0,5.0,9.0,7.0,3.0,3.0,3.0,2.0,5.0,1.0,3.0,1.0,2.0,3.0,2.0,1.0,1.0,1.0,,1.0,,1.0,,2.0,2.0,1.0,1.0,3.0,2.0,3.0,1.0,1.0,2.0,1.0,1.0,1.0,,,,,3.0,,,,1.0,,,,, H85680,34.0,42.0,41.0,39.0,43.0,44.0,39.0,52.0,53.0,68.0,51.0,53.0,72.0,69.0,67.0,69.0,67.0,69.0,48.0,52.0,55.0,39.0,60.0,73.0,82.0,126.0,90.0,111.0,104.0,113.0,93.0,83.0,115.0,106.0,80.0,84.0,86.0,68.0,86.0,75.0,94.0,89.0,90.0,83.0,79.0,89.0,71.0,75.0,54.0,60.0,64.0,41.0,57.0,56.0,43.0,49.0,46.0,41.0,52.0,48.0,46.0,32.0,33.0,31.0,29.0,36.0,22.0,27.0,19.0,15.0,20.0,22.0,23.0,10.0,19.0,12.0,14.0,19.0,11.0,6.0,7.0,9.0,9.0,9.0,9.0,13.0,4.0,9.0,6.0,6.0,6.0,2.0,2.0,2.0,1.0,3.0 H85682,31.0,49.0,42.0,53.0,62.0,45.0,44.0,53.0,63.0,58.0,56.0,71.0,66.0,54.0,67.0,84.0,65.0,69.0,63.0,59.0,66.0,74.0,79.0,88.0,101.0,87.0,88.0,108.0,121.0,105.0,105.0,115.0,117.0,112.0,128.0,99.0,122.0,101.0,113.0,106.0,101.0,93.0,108.0,97.0,106.0,72.0,68.0,71.0,69.0,71.0,76.0,75.0,66.0,44.0,46.0,66.0,55.0,50.0,37.0,48.0,53.0,42.0,41.0,38.0,33.0,41.0,34.0,28.0,31.0,21.0,22.0,25.0,22.0,15.0,15.0,24.0,8.0,24.0,13.0,11.0,14.0,13.0,6.0,10.0,7.0,6.0,4.0,,5.0,8.0,5.0,2.0,1.0,3.0,,1.0 H85683,12.0,23.0,12.0,15.0,20.0,12.0,22.0,29.0,28.0,21.0,31.0,33.0,43.0,27.0,25.0,30.0,42.0,26.0,35.0,36.0,23.0,29.0,25.0,19.0,22.0,32.0,23.0,23.0,26.0,19.0,26.0,19.0,29.0,34.0,21.0,28.0,32.0,35.0,27.0,38.0,39.0,44.0,26.0,37.0,37.0,43.0,29.0,39.0,36.0,39.0,24.0,40.0,29.0,36.0,31.0,34.0,33.0,31.0,29.0,28.0,28.0,22.0,25.0,27.0,21.0,17.0,14.0,9.0,14.0,11.0,13.0,13.0,13.0,13.0,12.0,5.0,14.0,7.0,12.0,13.0,10.0,3.0,8.0,9.0,4.0,12.0,5.0,4.0,5.0,5.0,1.0,2.0,4.0,2.0,2.0,8.0 H85686,41.0,49.0,51.0,67.0,53.0,55.0,89.0,63.0,68.0,76.0,82.0,88.0,93.0,83.0,78.0,92.0,82.0,83.0,61.0,40.0,40.0,32.0,39.0,35.0,42.0,45.0,64.0,59.0,67.0,62.0,70.0,74.0,61.0,105.0,86.0,96.0,96.0,101.0,110.0,105.0,103.0,129.0,131.0,131.0,125.0,124.0,112.0,99.0,101.0,88.0,72.0,95.0,74.0,65.0,85.0,65.0,54.0,71.0,68.0,61.0,77.0,70.0,67.0,48.0,42.0,55.0,41.0,43.0,41.0,46.0,52.0,47.0,37.0,42.0,30.0,42.0,47.0,38.0,53.0,31.0,29.0,23.0,23.0,18.0,16.0,16.0,22.0,10.0,15.0,12.0,10.0,8.0,6.0,7.0,3.0,14.0 H85691,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,1.0,,1.0,,1.0,,,,,2.0,,,2.0,4.0,2.0,2.0,1.0,1.0,3.0,2.0,3.0,5.0,1.0,2.0,1.0,4.0,3.0,16.0 H85693,38.0,47.0,58.0,46.0,50.0,57.0,81.0,70.0,76.0,75.0,68.0,73.0,87.0,87.0,87.0,99.0,106.0,84.0,73.0,68.0,63.0,78.0,60.0,58.0,48.0,48.0,54.0,64.0,76.0,59.0,65.0,66.0,69.0,72.0,83.0,77.0,92.0,80.0,82.0,89.0,90.0,94.0,96.0,85.0,94.0,88.0,80.0,82.0,81.0,66.0,82.0,69.0,71.0,80.0,80.0,73.0,71.0,81.0,64.0,60.0,66.0,73.0,61.0,59.0,43.0,55.0,46.0,29.0,34.0,37.0,31.0,26.0,25.0,19.0,13.0,18.0,23.0,17.0,27.0,12.0,15.0,17.0,12.0,11.0,5.0,10.0,4.0,9.0,6.0,7.0,3.0,2.0,1.0,4.0,,5.0 Y00182,11.0,9.0,12.0,11.0,,9.0,3.0,3.0,8.0,6.0,5.0,5.0,8.0,9.0,5.0,8.0,6.0,5.0,8.0,9.0,8.0,5.0,8.0,12.0,13.0,10.0,12.0,21.0,15.0,13.0,12.0,8.0,8.0,14.0,9.0,11.0,11.0,5.0,6.0,6.0,12.0,8.0,4.0,7.0,6.0,8.0,5.0,3.0,6.0,4.0,1.0,5.0,2.0,1.0,2.0,2.0,,2.0,4.0,,,,2.0,,,,,,1.0,,,1.0,1.0,,,,,,,,,,,,,,,,,,,,,,, Y01132,27.0,48.0,32.0,37.0,53.0,37.0,66.0,64.0,58.0,63.0,59.0,61.0,75.0,84.0,70.0,58.0,64.0,62.0,52.0,47.0,44.0,49.0,48.0,61.0,73.0,78.0,89.0,107.0,122.0,109.0,97.0,107.0,158.0,115.0,132.0,120.0,123.0,118.0,118.0,133.0,113.0,109.0,121.0,90.0,117.0,99.0,129.0,97.0,100.0,89.0,87.0,82.0,69.0,72.0,69.0,64.0,77.0,60.0,69.0,72.0,68.0,71.0,63.0,69.0,63.0,56.0,45.0,55.0,42.0,49.0,48.0,41.0,38.0,38.0,31.0,46.0,34.0,31.0,31.0,29.0,26.0,25.0,21.0,28.0,20.0,20.0,12.0,9.0,10.0,14.0,13.0,8.0,8.0,8.0,3.0,22.0 Y01206,19.0,17.0,25.0,37.0,35.0,26.0,37.0,42.0,43.0,56.0,67.0,49.0,77.0,55.0,64.0,52.0,54.0,62.0,68.0,41.0,48.0,49.0,46.0,52.0,56.0,54.0,70.0,65.0,49.0,45.0,37.0,45.0,48.0,41.0,64.0,59.0,55.0,63.0,47.0,57.0,50.0,59.0,76.0,67.0,72.0,82.0,85.0,72.0,78.0,64.0,78.0,73.0,63.0,75.0,68.0,63.0,79.0,80.0,76.0,81.0,75.0,72.0,70.0,56.0,53.0,69.0,66.0,59.0,62.0,52.0,60.0,47.0,56.0,43.0,66.0,39.0,55.0,74.0,60.0,46.0,38.0,43.0,36.0,33.0,26.0,26.0,33.0,23.0,15.0,19.0,14.0,9.0,4.0,12.0,9.0,19.0 Y02423,190.0,228.0,179.0,180.0,164.0,185.0,174.0,159.0,187.0,186.0,176.0,196.0,223.0,201.0,189.0,187.0,171.0,189.0,172.0,167.0,156.0,202.0,251.0,395.0,490.0,668.0,667.0,737.0,733.0,741.0,643.0,622.0,620.0,642.0,604.0,498.0,463.0,435.0,402.0,382.0,376.0,331.0,331.0,302.0,334.0,309.0,295.0,266.0,294.0,213.0,216.0,222.0,244.0,214.0,200.0,212.0,181.0,186.0,192.0,166.0,161.0,175.0,151.0,161.0,145.0,115.0,139.0,106.0,125.0,96.0,83.0,104.0,94.0,94.0,85.0,80.0,78.0,56.0,72.0,52.0,53.0,49.0,56.0,39.0,39.0,50.0,43.0,39.0,27.0,28.0,20.0,14.0,16.0,10.0,7.0,30.0 Y02946,27.0,30.0,27.0,27.0,39.0,27.0,28.0,24.0,21.0,17.0,26.0,23.0,16.0,17.0,14.0,15.0,11.0,18.0,15.0,18.0,19.0,27.0,55.0,109.0,173.0,193.0,230.0,291.0,221.0,212.0,207.0,162.0,158.0,138.0,131.0,106.0,106.0,101.0,76.0,71.0,53.0,67.0,49.0,48.0,36.0,37.0,30.0,34.0,27.0,26.0,26.0,23.0,31.0,12.0,18.0,19.0,22.0,23.0,22.0,9.0,9.0,21.0,12.0,5.0,6.0,12.0,6.0,8.0,12.0,10.0,8.0,4.0,9.0,6.0,8.0,3.0,1.0,1.0,2.0,2.0,3.0,1.0,1.0,1.0,,,,2.0,1.0,,1.0,,,,, Y05317,47.0,44.0,28.0,41.0,32.0,48.0,35.0,32.0,48.0,35.0,39.0,35.0,40.0,59.0,48.0,37.0,48.0,42.0,42.0,35.0,42.0,44.0,41.0,39.0,59.0,63.0,57.0,64.0,63.0,56.0,68.0,56.0,79.0,76.0,75.0,76.0,61.0,65.0,57.0,57.0,69.0,59.0,51.0,60.0,52.0,46.0,54.0,27.0,32.0,50.0,59.0,42.0,58.0,46.0,50.0,53.0,52.0,52.0,55.0,50.0,55.0,60.0,53.0,42.0,54.0,33.0,33.0,36.0,24.0,31.0,31.0,23.0,28.0,17.0,22.0,28.0,19.0,20.0,26.0,17.0,16.0,15.0,17.0,9.0,11.0,7.0,11.0,15.0,8.0,9.0,9.0,8.0,,2.0,,2.0 Y05318,19.0,25.0,21.0,20.0,28.0,30.0,28.0,26.0,30.0,27.0,33.0,33.0,36.0,42.0,39.0,47.0,28.0,41.0,38.0,29.0,39.0,37.0,30.0,43.0,40.0,53.0,41.0,28.0,31.0,43.0,43.0,41.0,34.0,37.0,37.0,49.0,43.0,37.0,33.0,40.0,29.0,56.0,42.0,59.0,51.0,30.0,29.0,43.0,29.0,44.0,39.0,52.0,39.0,52.0,38.0,22.0,50.0,32.0,45.0,49.0,60.0,51.0,40.0,40.0,30.0,41.0,34.0,21.0,28.0,24.0,22.0,22.0,23.0,27.0,18.0,10.0,21.0,26.0,16.0,10.0,13.0,13.0,20.0,15.0,9.0,14.0,12.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,7.0 Y05857,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,1.0,1.0,,,,1.0,1.0,3.0,1.0,1.0,,,2.0,1.0,,1.0,2.0,,,1.0,1.0,1.0,,2.0,2.0,1.0,,,2.0,,2.0,2.0,2.0,2.0,2.0,1.0,2.0,3.0,1.0,,1.0,,1.0,,1.0,,2.0,1.0,1.0,,1.0,1.0,1.0,,,,,,,,1.0,,,1.0,,,,,, Y08402,,,,,,,1.0,,,,,,,,,,,,,,,,,,,1.0,,1.0,,1.0,,,,,,,,1.0,,,,,,,,1.0,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 B82007,23.0,24.0,20.0,33.0,28.0,26.0,42.0,43.0,33.0,42.0,30.0,47.0,40.0,34.0,32.0,46.0,48.0,66.0,62.0,46.0,29.0,36.0,36.0,36.0,30.0,32.0,35.0,30.0,31.0,37.0,39.0,34.0,47.0,38.0,30.0,32.0,50.0,37.0,39.0,35.0,38.0,51.0,43.0,52.0,46.0,45.0,32.0,40.0,45.0,41.0,62.0,53.0,65.0,63.0,62.0,83.0,75.0,86.0,85.0,101.0,97.0,99.0,88.0,110.0,106.0,100.0,89.0,78.0,99.0,74.0,72.0,65.0,71.0,63.0,73.0,86.0,80.0,84.0,85.0,64.0,55.0,72.0,46.0,40.0,46.0,43.0,27.0,29.0,28.0,25.0,24.0,27.0,12.0,17.0,14.0,16.0 B82053,52.0,78.0,86.0,68.0,54.0,73.0,72.0,88.0,76.0,82.0,68.0,75.0,61.0,93.0,72.0,59.0,83.0,68.0,60.0,57.0,61.0,46.0,67.0,66.0,74.0,85.0,86.0,92.0,78.0,72.0,77.0,118.0,101.0,95.0,106.0,118.0,95.0,115.0,102.0,105.0,84.0,81.0,88.0,108.0,93.0,82.0,82.0,84.0,83.0,91.0,97.0,76.0,95.0,120.0,94.0,106.0,100.0,118.0,119.0,111.0,133.0,108.0,120.0,121.0,131.0,127.0,110.0,121.0,108.0,94.0,105.0,104.0,105.0,99.0,96.0,91.0,88.0,100.0,84.0,84.0,66.0,57.0,50.0,50.0,39.0,44.0,42.0,29.0,29.0,31.0,38.0,26.0,16.0,11.0,13.0,25.0 B83002,21.0,20.0,23.0,29.0,17.0,19.0,28.0,29.0,25.0,25.0,29.0,26.0,34.0,28.0,30.0,29.0,24.0,26.0,32.0,19.0,25.0,18.0,20.0,19.0,24.0,23.0,19.0,22.0,21.0,22.0,32.0,38.0,16.0,27.0,25.0,24.0,25.0,27.0,40.0,28.0,39.0,52.0,37.0,39.0,36.0,31.0,40.0,36.0,35.0,36.0,36.0,35.0,43.0,34.0,39.0,44.0,37.0,42.0,48.0,38.0,58.0,38.0,40.0,33.0,46.0,36.0,37.0,34.0,36.0,32.0,34.0,31.0,31.0,45.0,34.0,32.0,37.0,45.0,56.0,29.0,34.0,38.0,32.0,25.0,13.0,19.0,21.0,18.0,21.0,23.0,11.0,11.0,7.0,11.0,11.0,17.0 B83005,49.0,28.0,54.0,39.0,46.0,54.0,68.0,62.0,61.0,56.0,65.0,57.0,50.0,55.0,51.0,56.0,50.0,45.0,58.0,51.0,66.0,59.0,56.0,52.0,50.0,62.0,50.0,59.0,57.0,49.0,61.0,48.0,45.0,69.0,57.0,46.0,61.0,55.0,47.0,50.0,45.0,53.0,46.0,58.0,60.0,58.0,45.0,43.0,29.0,28.0,41.0,34.0,35.0,38.0,34.0,35.0,36.0,36.0,29.0,26.0,28.0,20.0,20.0,27.0,31.0,28.0,20.0,21.0,22.0,18.0,13.0,32.0,16.0,20.0,14.0,15.0,14.0,11.0,16.0,5.0,9.0,7.0,7.0,9.0,9.0,11.0,2.0,5.0,5.0,3.0,3.0,4.0,2.0,1.0,2.0,1.0 B83008,112.0,150.0,133.0,125.0,147.0,136.0,139.0,140.0,130.0,162.0,145.0,136.0,165.0,155.0,137.0,135.0,168.0,159.0,161.0,143.0,159.0,144.0,155.0,162.0,154.0,163.0,163.0,146.0,158.0,127.0,164.0,145.0,129.0,143.0,134.0,161.0,162.0,176.0,144.0,161.0,131.0,139.0,148.0,151.0,125.0,139.0,116.0,128.0,127.0,115.0,113.0,101.0,97.0,103.0,108.0,85.0,80.0,95.0,90.0,65.0,85.0,77.0,63.0,78.0,83.0,70.0,76.0,86.0,78.0,66.0,66.0,65.0,69.0,47.0,56.0,54.0,49.0,41.0,45.0,24.0,25.0,25.0,30.0,28.0,15.0,20.0,20.0,22.0,23.0,16.0,16.0,15.0,5.0,12.0,4.0,15.0 B83009,55.0,65.0,85.0,81.0,65.0,94.0,90.0,86.0,128.0,92.0,106.0,113.0,135.0,143.0,119.0,133.0,123.0,133.0,121.0,92.0,99.0,77.0,81.0,85.0,84.0,106.0,103.0,93.0,94.0,105.0,90.0,93.0,102.0,110.0,121.0,124.0,117.0,110.0,129.0,115.0,110.0,100.0,88.0,85.0,114.0,98.0,96.0,73.0,78.0,89.0,87.0,79.0,101.0,112.0,106.0,113.0,98.0,107.0,98.0,109.0,104.0,111.0,97.0,84.0,109.0,100.0,76.0,95.0,88.0,82.0,85.0,75.0,62.0,74.0,80.0,68.0,80.0,95.0,84.0,56.0,61.0,57.0,42.0,40.0,39.0,40.0,35.0,36.0,25.0,18.0,13.0,14.0,7.0,7.0,4.0,20.0 B83010,58.0,47.0,48.0,49.0,46.0,51.0,48.0,79.0,57.0,63.0,65.0,74.0,48.0,75.0,74.0,66.0,69.0,58.0,78.0,48.0,64.0,68.0,47.0,50.0,51.0,62.0,58.0,66.0,62.0,57.0,70.0,59.0,56.0,82.0,76.0,77.0,77.0,79.0,74.0,85.0,79.0,62.0,84.0,65.0,83.0,88.0,80.0,60.0,52.0,62.0,50.0,46.0,62.0,71.0,53.0,71.0,59.0,61.0,58.0,62.0,51.0,57.0,46.0,75.0,42.0,53.0,44.0,47.0,47.0,51.0,45.0,35.0,42.0,33.0,31.0,19.0,35.0,44.0,34.0,25.0,23.0,22.0,22.0,17.0,19.0,18.0,24.0,14.0,18.0,11.0,13.0,11.0,7.0,4.0,6.0,22.0 B83012,72.0,64.0,72.0,65.0,56.0,84.0,78.0,77.0,86.0,90.0,88.0,73.0,86.0,72.0,88.0,96.0,98.0,77.0,85.0,101.0,75.0,66.0,68.0,78.0,83.0,63.0,72.0,70.0,80.0,89.0,67.0,83.0,86.0,86.0,87.0,85.0,84.0,90.0,67.0,86.0,84.0,96.0,71.0,73.0,80.0,86.0,88.0,70.0,65.0,65.0,70.0,60.0,62.0,63.0,66.0,56.0,53.0,52.0,64.0,43.0,55.0,39.0,47.0,45.0,35.0,50.0,33.0,45.0,37.0,36.0,40.0,24.0,34.0,34.0,32.0,30.0,40.0,30.0,28.0,15.0,15.0,21.0,16.0,20.0,23.0,16.0,23.0,19.0,16.0,13.0,10.0,10.0,9.0,3.0,6.0,10.0 B83014,40.0,37.0,61.0,66.0,53.0,59.0,65.0,63.0,61.0,76.0,63.0,79.0,64.0,80.0,82.0,70.0,99.0,61.0,80.0,59.0,48.0,55.0,57.0,64.0,59.0,82.0,51.0,67.0,75.0,70.0,73.0,67.0,94.0,78.0,80.0,95.0,93.0,68.0,83.0,105.0,78.0,86.0,90.0,91.0,104.0,105.0,86.0,74.0,92.0,77.0,93.0,102.0,85.0,110.0,80.0,74.0,102.0,82.0,93.0,74.0,96.0,112.0,108.0,85.0,87.0,98.0,90.0,81.0,86.0,92.0,83.0,98.0,88.0,66.0,81.0,83.0,76.0,100.0,77.0,53.0,71.0,49.0,60.0,40.0,35.0,36.0,37.0,33.0,42.0,31.0,21.0,22.0,19.0,15.0,15.0,35.0 B83015,53.0,45.0,47.0,54.0,59.0,59.0,63.0,59.0,62.0,55.0,58.0,82.0,69.0,70.0,68.0,56.0,66.0,60.0,82.0,62.0,47.0,71.0,54.0,43.0,58.0,77.0,66.0,48.0,50.0,78.0,64.0,52.0,60.0,73.0,60.0,77.0,79.0,71.0,70.0,76.0,72.0,71.0,68.0,63.0,57.0,66.0,57.0,40.0,51.0,46.0,40.0,28.0,41.0,48.0,52.0,56.0,57.0,52.0,52.0,51.0,53.0,59.0,67.0,43.0,46.0,48.0,33.0,38.0,24.0,34.0,41.0,26.0,24.0,27.0,16.0,21.0,24.0,36.0,26.0,22.0,16.0,15.0,7.0,12.0,13.0,10.0,9.0,14.0,8.0,6.0,8.0,4.0,4.0,7.0,3.0,7.0 B83016,71.0,56.0,64.0,65.0,56.0,67.0,72.0,67.0,73.0,64.0,86.0,71.0,82.0,66.0,64.0,71.0,77.0,87.0,68.0,68.0,66.0,74.0,77.0,80.0,77.0,74.0,88.0,74.0,80.0,75.0,80.0,56.0,71.0,61.0,61.0,68.0,82.0,73.0,76.0,68.0,75.0,75.0,68.0,63.0,70.0,71.0,38.0,61.0,49.0,54.0,40.0,57.0,43.0,48.0,55.0,52.0,54.0,39.0,45.0,31.0,32.0,28.0,33.0,33.0,38.0,22.0,27.0,18.0,27.0,23.0,24.0,28.0,23.0,21.0,14.0,20.0,14.0,15.0,21.0,11.0,9.0,17.0,11.0,10.0,8.0,11.0,7.0,12.0,9.0,3.0,6.0,5.0,3.0,2.0,2.0,4.0 B83018,52.0,70.0,65.0,61.0,54.0,88.0,60.0,88.0,77.0,89.0,83.0,78.0,68.0,75.0,78.0,82.0,69.0,67.0,71.0,67.0,45.0,77.0,62.0,43.0,61.0,68.0,72.0,59.0,65.0,76.0,85.0,101.0,97.0,104.0,106.0,80.0,88.0,120.0,80.0,109.0,94.0,77.0,90.0,86.0,100.0,78.0,76.0,70.0,78.0,83.0,57.0,85.0,90.0,92.0,83.0,85.0,73.0,88.0,83.0,71.0,89.0,103.0,73.0,104.0,81.0,48.0,89.0,69.0,59.0,60.0,63.0,61.0,64.0,56.0,47.0,47.0,55.0,57.0,45.0,46.0,48.0,26.0,37.0,27.0,27.0,36.0,20.0,25.0,19.0,29.0,19.0,16.0,13.0,15.0,9.0,12.0 B83019,27.0,29.0,29.0,34.0,39.0,42.0,28.0,39.0,36.0,36.0,48.0,43.0,34.0,38.0,48.0,39.0,47.0,40.0,42.0,33.0,28.0,21.0,26.0,33.0,21.0,17.0,16.0,18.0,21.0,34.0,23.0,17.0,44.0,38.0,33.0,38.0,37.0,44.0,48.0,49.0,45.0,35.0,51.0,49.0,50.0,52.0,50.0,48.0,43.0,52.0,51.0,65.0,54.0,60.0,67.0,49.0,49.0,48.0,43.0,61.0,52.0,49.0,66.0,44.0,52.0,45.0,57.0,44.0,41.0,35.0,46.0,62.0,39.0,39.0,44.0,40.0,51.0,47.0,45.0,38.0,40.0,25.0,35.0,23.0,16.0,25.0,14.0,17.0,20.0,19.0,15.0,13.0,4.0,4.0,6.0,9.0 B83020,75.0,103.0,97.0,101.0,88.0,102.0,112.0,109.0,96.0,126.0,106.0,109.0,110.0,109.0,111.0,96.0,106.0,95.0,100.0,86.0,92.0,80.0,80.0,117.0,99.0,88.0,96.0,111.0,114.0,124.0,109.0,132.0,128.0,139.0,132.0,113.0,135.0,144.0,152.0,139.0,117.0,123.0,129.0,125.0,116.0,93.0,116.0,117.0,103.0,113.0,115.0,105.0,108.0,118.0,155.0,149.0,134.0,137.0,144.0,112.0,130.0,124.0,123.0,134.0,132.0,117.0,120.0,96.0,99.0,95.0,88.0,105.0,71.0,81.0,77.0,85.0,85.0,94.0,80.0,56.0,50.0,53.0,37.0,47.0,34.0,40.0,32.0,32.0,26.0,14.0,9.0,18.0,14.0,6.0,9.0,13.0 B83022,30.0,25.0,28.0,39.0,38.0,35.0,42.0,40.0,35.0,57.0,46.0,41.0,55.0,39.0,41.0,39.0,54.0,55.0,37.0,42.0,34.0,38.0,33.0,32.0,39.0,40.0,28.0,31.0,39.0,39.0,34.0,54.0,53.0,45.0,58.0,49.0,62.0,61.0,62.0,49.0,67.0,62.0,58.0,60.0,47.0,72.0,55.0,48.0,46.0,56.0,58.0,65.0,72.0,82.0,62.0,77.0,61.0,67.0,63.0,85.0,74.0,86.0,79.0,92.0,73.0,77.0,75.0,68.0,77.0,54.0,79.0,64.0,56.0,62.0,70.0,72.0,79.0,85.0,93.0,56.0,65.0,48.0,52.0,40.0,26.0,33.0,30.0,32.0,31.0,27.0,26.0,19.0,17.0,5.0,4.0,11.0 B83025,29.0,32.0,30.0,19.0,25.0,24.0,30.0,31.0,36.0,34.0,50.0,30.0,46.0,35.0,47.0,48.0,37.0,32.0,40.0,34.0,35.0,30.0,32.0,35.0,34.0,28.0,26.0,34.0,35.0,24.0,29.0,25.0,31.0,40.0,23.0,28.0,30.0,31.0,39.0,32.0,40.0,26.0,24.0,40.0,35.0,26.0,29.0,22.0,20.0,25.0,24.0,28.0,13.0,15.0,17.0,19.0,17.0,22.0,18.0,17.0,26.0,11.0,16.0,15.0,17.0,17.0,13.0,8.0,13.0,21.0,18.0,14.0,14.0,7.0,6.0,12.0,6.0,13.0,9.0,6.0,3.0,1.0,3.0,3.0,6.0,1.0,2.0,5.0,1.0,5.0,3.0,3.0,1.0,1.0,1.0,3.0 B83026,61.0,39.0,53.0,36.0,35.0,40.0,53.0,39.0,58.0,51.0,54.0,48.0,51.0,43.0,48.0,49.0,50.0,50.0,49.0,57.0,46.0,41.0,59.0,56.0,48.0,46.0,43.0,53.0,50.0,52.0,43.0,63.0,43.0,44.0,43.0,44.0,48.0,50.0,56.0,52.0,47.0,63.0,52.0,48.0,43.0,40.0,31.0,32.0,36.0,28.0,19.0,18.0,25.0,31.0,27.0,20.0,18.0,16.0,15.0,17.0,17.0,10.0,12.0,12.0,12.0,18.0,12.0,12.0,11.0,7.0,10.0,9.0,9.0,10.0,6.0,11.0,2.0,5.0,6.0,6.0,4.0,2.0,4.0,1.0,4.0,1.0,2.0,2.0,2.0,2.0,4.0,3.0,,,,2.0 B83028,52.0,48.0,55.0,50.0,52.0,72.0,67.0,63.0,86.0,74.0,60.0,84.0,72.0,78.0,53.0,66.0,63.0,55.0,68.0,62.0,48.0,45.0,59.0,50.0,57.0,62.0,43.0,47.0,61.0,68.0,82.0,75.0,75.0,84.0,87.0,75.0,69.0,74.0,63.0,81.0,77.0,88.0,64.0,69.0,66.0,84.0,72.0,62.0,61.0,59.0,43.0,73.0,58.0,73.0,63.0,77.0,65.0,69.0,97.0,65.0,85.0,79.0,76.0,79.0,68.0,55.0,66.0,70.0,68.0,50.0,54.0,73.0,54.0,48.0,41.0,56.0,60.0,57.0,57.0,32.0,43.0,41.0,38.0,27.0,30.0,14.0,24.0,20.0,13.0,15.0,19.0,13.0,7.0,4.0,1.0,14.0 B83029,32.0,46.0,40.0,56.0,43.0,59.0,55.0,77.0,66.0,61.0,66.0,62.0,52.0,64.0,67.0,42.0,54.0,45.0,55.0,43.0,40.0,53.0,52.0,44.0,55.0,33.0,48.0,58.0,56.0,54.0,85.0,69.0,60.0,74.0,94.0,77.0,89.0,64.0,74.0,88.0,60.0,87.0,67.0,91.0,63.0,50.0,55.0,44.0,51.0,63.0,39.0,63.0,69.0,65.0,85.0,71.0,71.0,66.0,67.0,61.0,69.0,98.0,72.0,57.0,68.0,62.0,69.0,77.0,66.0,52.0,47.0,39.0,47.0,42.0,46.0,52.0,56.0,39.0,49.0,32.0,28.0,40.0,38.0,22.0,21.0,23.0,20.0,25.0,19.0,22.0,13.0,19.0,7.0,8.0,5.0,11.0 B83031,12.0,19.0,16.0,19.0,23.0,17.0,16.0,17.0,20.0,20.0,15.0,22.0,33.0,32.0,23.0,18.0,29.0,25.0,18.0,12.0,14.0,8.0,13.0,10.0,18.0,19.0,10.0,7.0,22.0,15.0,17.0,29.0,17.0,29.0,20.0,31.0,32.0,23.0,25.0,27.0,31.0,30.0,28.0,31.0,29.0,27.0,28.0,25.0,23.0,27.0,23.0,27.0,24.0,19.0,37.0,23.0,33.0,27.0,28.0,28.0,28.0,33.0,25.0,33.0,26.0,33.0,30.0,42.0,36.0,19.0,35.0,32.0,21.0,23.0,16.0,24.0,16.0,37.0,26.0,17.0,24.0,8.0,8.0,9.0,11.0,7.0,12.0,5.0,3.0,4.0,3.0,7.0,5.0,6.0,3.0,4.0 B83032,30.0,30.0,30.0,29.0,26.0,31.0,31.0,34.0,37.0,39.0,34.0,33.0,38.0,37.0,34.0,37.0,38.0,28.0,31.0,39.0,27.0,35.0,25.0,23.0,36.0,37.0,25.0,30.0,30.0,27.0,26.0,33.0,22.0,32.0,34.0,33.0,24.0,29.0,33.0,38.0,31.0,34.0,25.0,32.0,29.0,31.0,27.0,31.0,20.0,19.0,18.0,19.0,11.0,18.0,16.0,21.0,17.0,9.0,15.0,20.0,17.0,14.0,12.0,10.0,14.0,15.0,11.0,11.0,15.0,13.0,12.0,6.0,8.0,7.0,9.0,7.0,11.0,6.0,7.0,3.0,6.0,5.0,5.0,5.0,1.0,5.0,3.0,3.0,2.0,1.0,2.0,,,,2.0,2.0 B83033,306.0,361.0,383.0,415.0,367.0,438.0,477.0,469.0,459.0,487.0,494.0,510.0,522.0,527.0,547.0,527.0,488.0,533.0,472.0,421.0,379.0,368.0,412.0,373.0,432.0,455.0,458.0,473.0,482.0,513.0,557.0,558.0,596.0,565.0,534.0,572.0,596.0,611.0,582.0,558.0,547.0,527.0,540.0,543.0,534.0,554.0,503.0,499.0,483.0,458.0,522.0,576.0,563.0,636.0,616.0,591.0,602.0,609.0,652.0,653.0,627.0,644.0,635.0,572.0,635.0,551.0,535.0,532.0,486.0,503.0,473.0,444.0,484.0,446.0,460.0,420.0,460.0,543.0,486.0,369.0,380.0,315.0,294.0,236.0,227.0,233.0,201.0,175.0,163.0,131.0,130.0,118.0,103.0,69.0,65.0,145.0 B83034,44.0,45.0,38.0,48.0,44.0,64.0,53.0,46.0,65.0,54.0,47.0,59.0,62.0,62.0,55.0,55.0,48.0,57.0,55.0,69.0,63.0,56.0,44.0,52.0,43.0,61.0,59.0,56.0,59.0,54.0,41.0,52.0,46.0,43.0,50.0,64.0,65.0,46.0,51.0,50.0,57.0,47.0,50.0,52.0,50.0,47.0,47.0,48.0,41.0,43.0,27.0,42.0,31.0,53.0,30.0,36.0,31.0,33.0,28.0,21.0,12.0,12.0,21.0,17.0,19.0,24.0,26.0,23.0,20.0,23.0,20.0,24.0,15.0,18.0,18.0,14.0,13.0,11.0,14.0,7.0,7.0,3.0,1.0,10.0,3.0,4.0,7.0,10.0,7.0,6.0,4.0,4.0,3.0,3.0,4.0,8.0 B83035,105.0,102.0,93.0,109.0,92.0,111.0,106.0,125.0,129.0,133.0,129.0,135.0,141.0,140.0,122.0,145.0,134.0,135.0,115.0,134.0,109.0,110.0,144.0,105.0,117.0,143.0,104.0,131.0,136.0,111.0,113.0,131.0,110.0,106.0,102.0,111.0,125.0,115.0,139.0,124.0,122.0,116.0,120.0,118.0,123.0,102.0,96.0,82.0,75.0,75.0,85.0,78.0,82.0,80.0,59.0,61.0,67.0,72.0,55.0,59.0,58.0,54.0,54.0,54.0,51.0,55.0,59.0,49.0,46.0,36.0,41.0,32.0,29.0,34.0,29.0,27.0,17.0,25.0,29.0,24.0,21.0,17.0,17.0,13.0,14.0,8.0,11.0,13.0,10.0,10.0,15.0,5.0,6.0,4.0,1.0,8.0 B83037,23.0,38.0,42.0,39.0,35.0,47.0,38.0,45.0,60.0,54.0,52.0,50.0,51.0,53.0,62.0,50.0,53.0,53.0,53.0,43.0,32.0,37.0,43.0,43.0,47.0,49.0,51.0,38.0,43.0,48.0,52.0,58.0,53.0,57.0,71.0,67.0,61.0,70.0,51.0,67.0,61.0,54.0,50.0,61.0,94.0,62.0,70.0,53.0,62.0,49.0,66.0,63.0,77.0,80.0,69.0,65.0,72.0,70.0,90.0,79.0,91.0,101.0,93.0,88.0,68.0,75.0,72.0,67.0,71.0,76.0,66.0,78.0,66.0,57.0,76.0,75.0,70.0,80.0,78.0,50.0,57.0,54.0,41.0,41.0,33.0,33.0,26.0,25.0,25.0,15.0,14.0,17.0,11.0,10.0,10.0,15.0 B83038,123.0,111.0,121.0,118.0,138.0,126.0,119.0,134.0,156.0,131.0,156.0,135.0,149.0,153.0,154.0,153.0,166.0,152.0,152.0,128.0,164.0,156.0,145.0,135.0,134.0,138.0,140.0,146.0,154.0,116.0,124.0,132.0,139.0,139.0,122.0,121.0,144.0,155.0,143.0,151.0,142.0,125.0,137.0,125.0,145.0,121.0,152.0,111.0,140.0,102.0,119.0,102.0,89.0,83.0,112.0,98.0,90.0,93.0,86.0,87.0,60.0,79.0,68.0,88.0,82.0,69.0,71.0,82.0,80.0,62.0,42.0,54.0,54.0,53.0,55.0,59.0,49.0,68.0,44.0,33.0,44.0,35.0,26.0,32.0,23.0,31.0,15.0,24.0,24.0,20.0,21.0,15.0,16.0,11.0,10.0,16.0 B83039,91.0,96.0,99.0,113.0,98.0,136.0,141.0,129.0,137.0,137.0,159.0,131.0,178.0,169.0,151.0,154.0,124.0,155.0,110.0,111.0,99.0,94.0,113.0,89.0,111.0,123.0,132.0,128.0,124.0,133.0,176.0,162.0,145.0,168.0,176.0,180.0,172.0,197.0,184.0,179.0,169.0,178.0,207.0,176.0,181.0,184.0,147.0,174.0,159.0,171.0,146.0,155.0,157.0,171.0,173.0,171.0,181.0,165.0,165.0,160.0,174.0,183.0,156.0,176.0,166.0,139.0,141.0,139.0,115.0,112.0,126.0,127.0,116.0,130.0,140.0,127.0,129.0,121.0,133.0,90.0,77.0,87.0,89.0,62.0,49.0,57.0,46.0,56.0,42.0,37.0,47.0,36.0,29.0,27.0,20.0,43.0 B83041,53.0,79.0,71.0,95.0,89.0,90.0,91.0,97.0,108.0,92.0,125.0,128.0,114.0,123.0,130.0,135.0,117.0,113.0,123.0,113.0,93.0,93.0,79.0,80.0,77.0,97.0,93.0,103.0,92.0,103.0,103.0,106.0,109.0,120.0,107.0,105.0,123.0,136.0,148.0,138.0,129.0,125.0,112.0,113.0,100.0,109.0,96.0,76.0,73.0,85.0,82.0,76.0,75.0,87.0,91.0,84.0,95.0,82.0,93.0,81.0,59.0,82.0,84.0,88.0,75.0,83.0,78.0,73.0,52.0,44.0,35.0,40.0,53.0,32.0,30.0,37.0,38.0,42.0,33.0,20.0,33.0,23.0,23.0,16.0,17.0,17.0,19.0,17.0,8.0,12.0,10.0,11.0,1.0,7.0,2.0,7.0 B83042,54.0,52.0,66.0,61.0,57.0,58.0,67.0,70.0,69.0,61.0,69.0,52.0,72.0,52.0,66.0,68.0,70.0,66.0,53.0,61.0,46.0,43.0,53.0,58.0,58.0,64.0,58.0,76.0,59.0,54.0,61.0,58.0,76.0,71.0,88.0,71.0,78.0,64.0,69.0,73.0,67.0,77.0,55.0,56.0,62.0,51.0,63.0,42.0,53.0,44.0,45.0,48.0,43.0,51.0,54.0,51.0,57.0,39.0,59.0,53.0,64.0,53.0,51.0,44.0,49.0,51.0,36.0,35.0,29.0,41.0,31.0,27.0,26.0,29.0,27.0,22.0,27.0,43.0,27.0,24.0,22.0,16.0,11.0,18.0,19.0,14.0,10.0,7.0,14.0,12.0,6.0,6.0,7.0,2.0,1.0,9.0 B83045,38.0,62.0,48.0,63.0,54.0,58.0,74.0,65.0,77.0,84.0,92.0,101.0,91.0,98.0,103.0,106.0,87.0,90.0,71.0,76.0,74.0,72.0,67.0,75.0,59.0,79.0,78.0,71.0,67.0,55.0,65.0,71.0,59.0,92.0,79.0,78.0,84.0,109.0,72.0,89.0,82.0,87.0,97.0,96.0,102.0,85.0,76.0,79.0,75.0,98.0,80.0,97.0,75.0,88.0,94.0,78.0,93.0,91.0,90.0,103.0,90.0,71.0,92.0,70.0,85.0,79.0,80.0,61.0,66.0,75.0,68.0,46.0,62.0,58.0,53.0,60.0,62.0,37.0,60.0,42.0,34.0,31.0,27.0,27.0,28.0,21.0,17.0,28.0,18.0,23.0,25.0,16.0,19.0,14.0,8.0,19.0 B83051,58.0,62.0,52.0,59.0,44.0,36.0,30.0,41.0,44.0,37.0,42.0,30.0,26.0,27.0,36.0,34.0,15.0,20.0,35.0,45.0,72.0,97.0,141.0,173.0,175.0,191.0,158.0,139.0,166.0,133.0,137.0,133.0,144.0,132.0,104.0,102.0,86.0,88.0,73.0,53.0,56.0,35.0,47.0,37.0,38.0,27.0,21.0,20.0,17.0,9.0,12.0,17.0,11.0,8.0,8.0,5.0,12.0,4.0,5.0,5.0,7.0,5.0,4.0,5.0,,1.0,3.0,1.0,1.0,,3.0,2.0,1.0,1.0,2.0,1.0,2.0,,1.0,,2.0,1.0,,,,,,,,,,1.0,,1.0,, B83052,116.0,164.0,162.0,175.0,189.0,190.0,192.0,173.0,194.0,200.0,205.0,239.0,200.0,213.0,249.0,202.0,254.0,214.0,214.0,222.0,203.0,206.0,205.0,222.0,195.0,195.0,207.0,193.0,165.0,179.0,189.0,203.0,172.0,157.0,166.0,163.0,185.0,178.0,190.0,183.0,207.0,184.0,175.0,169.0,171.0,195.0,166.0,137.0,157.0,131.0,124.0,131.0,131.0,134.0,123.0,129.0,131.0,111.0,86.0,98.0,85.0,78.0,67.0,86.0,82.0,89.0,72.0,79.0,59.0,62.0,62.0,72.0,47.0,55.0,47.0,63.0,49.0,36.0,32.0,22.0,27.0,28.0,19.0,25.0,18.0,23.0,27.0,21.0,11.0,12.0,16.0,15.0,7.0,7.0,6.0,23.0 B83054,25.0,36.0,33.0,43.0,25.0,35.0,39.0,42.0,36.0,34.0,40.0,42.0,34.0,38.0,27.0,37.0,41.0,45.0,27.0,30.0,26.0,38.0,27.0,37.0,50.0,33.0,37.0,42.0,32.0,62.0,54.0,55.0,58.0,53.0,66.0,58.0,53.0,54.0,49.0,46.0,52.0,37.0,56.0,50.0,46.0,51.0,31.0,38.0,33.0,42.0,38.0,45.0,45.0,34.0,39.0,38.0,47.0,46.0,36.0,37.0,43.0,55.0,54.0,40.0,39.0,40.0,29.0,26.0,28.0,37.0,28.0,26.0,28.0,31.0,17.0,35.0,29.0,28.0,24.0,19.0,18.0,14.0,15.0,9.0,11.0,16.0,12.0,14.0,7.0,5.0,10.0,3.0,4.0,2.0,6.0,7.0 B83055,173.0,180.0,195.0,196.0,217.0,237.0,240.0,231.0,245.0,245.0,251.0,262.0,265.0,269.0,239.0,253.0,246.0,245.0,271.0,244.0,226.0,225.0,230.0,209.0,209.0,222.0,236.0,207.0,219.0,215.0,219.0,235.0,218.0,237.0,233.0,209.0,226.0,263.0,257.0,251.0,246.0,257.0,268.0,248.0,222.0,213.0,210.0,177.0,180.0,193.0,165.0,177.0,205.0,195.0,189.0,190.0,185.0,183.0,157.0,168.0,161.0,149.0,155.0,150.0,151.0,154.0,146.0,147.0,144.0,117.0,117.0,99.0,103.0,96.0,101.0,97.0,96.0,98.0,69.0,49.0,63.0,56.0,55.0,39.0,44.0,46.0,36.0,31.0,30.0,23.0,27.0,19.0,16.0,9.0,11.0,29.0 B83056,56.0,59.0,49.0,56.0,55.0,64.0,55.0,71.0,47.0,47.0,62.0,48.0,55.0,58.0,51.0,49.0,60.0,47.0,53.0,53.0,41.0,49.0,42.0,43.0,51.0,55.0,55.0,61.0,58.0,63.0,65.0,56.0,73.0,49.0,58.0,61.0,68.0,70.0,77.0,61.0,60.0,50.0,58.0,61.0,62.0,54.0,51.0,44.0,39.0,38.0,41.0,29.0,42.0,54.0,57.0,45.0,51.0,40.0,35.0,58.0,54.0,54.0,63.0,38.0,61.0,59.0,49.0,45.0,38.0,39.0,42.0,32.0,41.0,31.0,31.0,32.0,29.0,44.0,36.0,19.0,25.0,32.0,28.0,23.0,22.0,21.0,17.0,19.0,18.0,22.0,8.0,7.0,10.0,6.0,5.0,11.0 B83058,65.0,79.0,59.0,74.0,58.0,57.0,71.0,69.0,70.0,68.0,68.0,80.0,69.0,72.0,90.0,80.0,81.0,77.0,90.0,82.0,76.0,84.0,63.0,91.0,85.0,78.0,86.0,82.0,82.0,84.0,59.0,73.0,50.0,63.0,57.0,67.0,70.0,62.0,80.0,62.0,43.0,60.0,57.0,51.0,61.0,62.0,65.0,51.0,47.0,43.0,34.0,48.0,33.0,51.0,44.0,49.0,30.0,20.0,16.0,24.0,19.0,19.0,20.0,18.0,17.0,15.0,13.0,17.0,16.0,9.0,14.0,7.0,8.0,12.0,11.0,9.0,5.0,8.0,5.0,3.0,4.0,7.0,4.0,2.0,6.0,7.0,4.0,3.0,,2.0,2.0,2.0,,1.0,1.0,1.0 B83062,56.0,59.0,57.0,47.0,46.0,49.0,57.0,75.0,58.0,76.0,58.0,79.0,70.0,74.0,70.0,61.0,71.0,54.0,67.0,74.0,44.0,65.0,49.0,47.0,53.0,48.0,60.0,41.0,58.0,52.0,51.0,70.0,68.0,68.0,83.0,87.0,75.0,80.0,56.0,72.0,81.0,72.0,70.0,67.0,74.0,70.0,61.0,46.0,47.0,50.0,57.0,53.0,54.0,46.0,47.0,50.0,49.0,41.0,42.0,61.0,58.0,53.0,63.0,52.0,46.0,42.0,51.0,41.0,46.0,33.0,39.0,32.0,30.0,26.0,23.0,23.0,26.0,17.0,20.0,14.0,12.0,15.0,18.0,9.0,10.0,10.0,13.0,12.0,7.0,7.0,11.0,11.0,7.0,9.0,2.0,11.0 B83063,75.0,91.0,94.0,82.0,113.0,113.0,109.0,111.0,132.0,119.0,133.0,114.0,107.0,124.0,140.0,121.0,119.0,140.0,127.0,92.0,108.0,117.0,124.0,131.0,120.0,131.0,134.0,142.0,124.0,144.0,136.0,164.0,153.0,157.0,151.0,133.0,159.0,186.0,148.0,143.0,128.0,150.0,132.0,153.0,143.0,136.0,126.0,136.0,99.0,115.0,125.0,113.0,110.0,130.0,144.0,117.0,106.0,114.0,120.0,112.0,120.0,108.0,110.0,99.0,114.0,100.0,87.0,91.0,92.0,93.0,95.0,75.0,78.0,79.0,72.0,81.0,90.0,65.0,70.0,38.0,47.0,61.0,36.0,42.0,30.0,46.0,20.0,35.0,23.0,29.0,19.0,19.0,18.0,16.0,11.0,33.0 B83064,54.0,80.0,89.0,86.0,71.0,83.0,88.0,84.0,66.0,82.0,97.0,89.0,81.0,76.0,81.0,81.0,75.0,65.0,72.0,72.0,58.0,57.0,61.0,63.0,60.0,67.0,68.0,75.0,77.0,79.0,84.0,100.0,112.0,97.0,92.0,88.0,110.0,97.0,90.0,93.0,84.0,90.0,77.0,81.0,52.0,62.0,60.0,78.0,76.0,52.0,61.0,59.0,63.0,62.0,70.0,68.0,62.0,66.0,80.0,86.0,66.0,76.0,75.0,50.0,67.0,67.0,53.0,63.0,66.0,59.0,39.0,41.0,42.0,30.0,49.0,42.0,34.0,48.0,53.0,36.0,36.0,20.0,28.0,20.0,18.0,28.0,16.0,26.0,21.0,15.0,17.0,9.0,5.0,3.0,5.0,12.0 B83067,22.0,22.0,28.0,26.0,27.0,32.0,39.0,29.0,42.0,38.0,55.0,40.0,57.0,43.0,54.0,43.0,53.0,48.0,38.0,45.0,41.0,29.0,36.0,31.0,28.0,24.0,32.0,45.0,37.0,35.0,33.0,32.0,41.0,36.0,46.0,56.0,32.0,63.0,68.0,47.0,36.0,58.0,48.0,63.0,45.0,52.0,55.0,51.0,57.0,55.0,58.0,57.0,52.0,56.0,63.0,55.0,57.0,47.0,69.0,61.0,61.0,69.0,67.0,66.0,51.0,46.0,59.0,48.0,39.0,59.0,45.0,61.0,39.0,35.0,44.0,47.0,36.0,51.0,52.0,40.0,29.0,23.0,22.0,31.0,21.0,37.0,25.0,19.0,18.0,14.0,15.0,7.0,7.0,3.0,5.0,15.0 B83604,36.0,31.0,30.0,33.0,31.0,40.0,39.0,40.0,35.0,45.0,34.0,31.0,34.0,26.0,35.0,37.0,37.0,37.0,37.0,33.0,30.0,35.0,49.0,30.0,40.0,41.0,47.0,47.0,48.0,22.0,36.0,36.0,46.0,40.0,45.0,32.0,49.0,45.0,33.0,39.0,37.0,35.0,30.0,42.0,26.0,27.0,33.0,24.0,21.0,33.0,16.0,26.0,24.0,20.0,24.0,16.0,20.0,12.0,11.0,12.0,17.0,15.0,7.0,14.0,11.0,17.0,18.0,15.0,8.0,18.0,9.0,6.0,10.0,8.0,9.0,9.0,4.0,3.0,5.0,1.0,1.0,1.0,2.0,3.0,4.0,4.0,2.0,4.0,2.0,6.0,3.0,1.0,3.0,1.0,,4.0 B83611,84.0,97.0,85.0,87.0,70.0,98.0,82.0,91.0,114.0,81.0,95.0,107.0,86.0,93.0,100.0,109.0,95.0,75.0,78.0,89.0,86.0,92.0,97.0,87.0,88.0,90.0,85.0,100.0,94.0,92.0,105.0,106.0,91.0,101.0,101.0,105.0,123.0,100.0,100.0,104.0,105.0,88.0,67.0,83.0,75.0,80.0,73.0,67.0,50.0,41.0,60.0,44.0,43.0,48.0,55.0,40.0,48.0,47.0,33.0,25.0,41.0,27.0,31.0,26.0,21.0,30.0,23.0,28.0,27.0,20.0,31.0,16.0,21.0,14.0,18.0,12.0,12.0,8.0,9.0,10.0,6.0,10.0,10.0,3.0,11.0,9.0,3.0,5.0,8.0,3.0,5.0,3.0,5.0,2.0,4.0,8.0 B83614,75.0,57.0,61.0,79.0,66.0,65.0,80.0,81.0,78.0,72.0,76.0,76.0,91.0,83.0,93.0,80.0,80.0,96.0,86.0,82.0,79.0,75.0,60.0,74.0,70.0,88.0,103.0,94.0,84.0,85.0,88.0,63.0,90.0,75.0,84.0,84.0,68.0,78.0,84.0,74.0,78.0,74.0,84.0,77.0,73.0,82.0,67.0,68.0,62.0,49.0,46.0,52.0,50.0,38.0,41.0,38.0,34.0,30.0,37.0,21.0,24.0,15.0,21.0,21.0,28.0,24.0,22.0,19.0,24.0,21.0,21.0,28.0,26.0,18.0,26.0,16.0,12.0,12.0,16.0,11.0,7.0,12.0,5.0,9.0,5.0,9.0,7.0,9.0,6.0,5.0,7.0,2.0,1.0,3.0,2.0,9.0 B83620,8.0,7.0,10.0,13.0,12.0,11.0,11.0,7.0,18.0,13.0,12.0,19.0,18.0,14.0,9.0,13.0,13.0,12.0,13.0,5.0,12.0,7.0,9.0,8.0,9.0,8.0,9.0,10.0,8.0,15.0,13.0,7.0,14.0,8.0,14.0,14.0,19.0,13.0,17.0,15.0,11.0,19.0,16.0,20.0,14.0,19.0,17.0,20.0,16.0,15.0,19.0,15.0,15.0,22.0,23.0,28.0,19.0,26.0,24.0,33.0,33.0,30.0,36.0,35.0,28.0,32.0,39.0,41.0,39.0,30.0,29.0,35.0,51.0,40.0,29.0,32.0,37.0,56.0,42.0,32.0,27.0,23.0,22.0,28.0,18.0,17.0,24.0,23.0,14.0,14.0,13.0,10.0,6.0,1.0,2.0,7.0 B83622,22.0,19.0,30.0,22.0,24.0,27.0,28.0,28.0,35.0,39.0,34.0,44.0,36.0,46.0,32.0,53.0,37.0,40.0,48.0,31.0,44.0,42.0,44.0,32.0,34.0,30.0,40.0,24.0,31.0,23.0,22.0,22.0,26.0,21.0,30.0,24.0,36.0,37.0,26.0,42.0,31.0,38.0,31.0,35.0,27.0,40.0,28.0,20.0,26.0,23.0,15.0,20.0,20.0,19.0,26.0,26.0,18.0,11.0,21.0,15.0,14.0,9.0,13.0,10.0,22.0,20.0,12.0,11.0,7.0,12.0,10.0,10.0,9.0,6.0,8.0,7.0,7.0,3.0,6.0,4.0,4.0,3.0,4.0,3.0,2.0,3.0,5.0,4.0,,1.0,,1.0,,1.0,,1.0 B83624,41.0,33.0,40.0,58.0,47.0,59.0,62.0,58.0,75.0,75.0,88.0,93.0,90.0,103.0,101.0,100.0,107.0,99.0,89.0,71.0,62.0,68.0,52.0,66.0,64.0,67.0,78.0,52.0,62.0,65.0,71.0,55.0,64.0,70.0,67.0,77.0,57.0,65.0,68.0,69.0,79.0,71.0,81.0,80.0,107.0,89.0,102.0,94.0,98.0,117.0,115.0,136.0,142.0,136.0,155.0,134.0,158.0,152.0,175.0,158.0,178.0,176.0,141.0,137.0,157.0,129.0,121.0,101.0,110.0,110.0,104.0,94.0,113.0,100.0,93.0,105.0,130.0,130.0,122.0,115.0,93.0,106.0,88.0,92.0,78.0,89.0,92.0,88.0,78.0,63.0,48.0,40.0,35.0,31.0,20.0,81.0 B83626,57.0,57.0,39.0,56.0,62.0,51.0,55.0,40.0,63.0,55.0,55.0,55.0,52.0,43.0,58.0,64.0,54.0,57.0,59.0,59.0,61.0,41.0,54.0,45.0,60.0,69.0,50.0,54.0,56.0,48.0,48.0,51.0,54.0,56.0,37.0,44.0,61.0,55.0,51.0,57.0,47.0,57.0,45.0,46.0,49.0,47.0,36.0,46.0,44.0,30.0,30.0,37.0,35.0,24.0,39.0,39.0,26.0,15.0,30.0,17.0,12.0,15.0,18.0,24.0,12.0,19.0,12.0,13.0,12.0,12.0,17.0,14.0,12.0,13.0,21.0,13.0,9.0,11.0,10.0,5.0,5.0,5.0,3.0,2.0,3.0,4.0,5.0,6.0,2.0,2.0,4.0,2.0,1.0,,1.0,3.0 B83627,18.0,26.0,17.0,17.0,22.0,22.0,19.0,25.0,20.0,26.0,24.0,27.0,32.0,21.0,23.0,30.0,21.0,24.0,28.0,22.0,29.0,28.0,30.0,26.0,26.0,29.0,8.0,28.0,21.0,18.0,24.0,30.0,21.0,24.0,24.0,19.0,32.0,22.0,31.0,28.0,21.0,30.0,29.0,25.0,22.0,29.0,30.0,14.0,18.0,18.0,14.0,20.0,24.0,13.0,13.0,19.0,16.0,16.0,17.0,11.0,9.0,16.0,15.0,14.0,9.0,15.0,16.0,17.0,12.0,11.0,15.0,13.0,16.0,5.0,8.0,7.0,6.0,8.0,6.0,4.0,5.0,3.0,8.0,2.0,4.0,7.0,5.0,2.0,4.0,1.0,1.0,1.0,4.0,1.0,2.0, B83628,67.0,84.0,59.0,59.0,81.0,81.0,68.0,82.0,75.0,68.0,59.0,73.0,91.0,64.0,68.0,81.0,76.0,73.0,64.0,71.0,88.0,73.0,81.0,72.0,100.0,97.0,90.0,91.0,96.0,96.0,87.0,97.0,90.0,78.0,89.0,89.0,95.0,85.0,83.0,72.0,79.0,78.0,65.0,64.0,63.0,63.0,62.0,45.0,48.0,36.0,47.0,48.0,47.0,38.0,44.0,47.0,27.0,39.0,38.0,32.0,20.0,23.0,24.0,17.0,9.0,26.0,27.0,20.0,20.0,24.0,20.0,18.0,17.0,10.0,15.0,11.0,14.0,10.0,6.0,8.0,6.0,4.0,6.0,2.0,5.0,5.0,3.0,12.0,,,3.0,6.0,2.0,2.0,1.0,4.0 B83629,13.0,20.0,23.0,28.0,22.0,20.0,22.0,27.0,25.0,18.0,28.0,27.0,28.0,21.0,27.0,25.0,28.0,22.0,34.0,18.0,25.0,20.0,25.0,21.0,34.0,21.0,15.0,32.0,26.0,22.0,30.0,27.0,22.0,28.0,29.0,17.0,17.0,25.0,29.0,20.0,25.0,31.0,19.0,20.0,19.0,20.0,21.0,18.0,19.0,14.0,12.0,15.0,14.0,18.0,11.0,13.0,26.0,18.0,15.0,19.0,10.0,8.0,14.0,11.0,10.0,7.0,12.0,9.0,11.0,7.0,11.0,11.0,11.0,9.0,7.0,8.0,8.0,7.0,7.0,3.0,3.0,4.0,7.0,4.0,4.0,5.0,2.0,,2.0,3.0,2.0,2.0,,1.0,,2.0 B83641,74.0,85.0,80.0,73.0,70.0,76.0,84.0,71.0,82.0,79.0,72.0,81.0,101.0,89.0,76.0,75.0,98.0,73.0,95.0,90.0,80.0,89.0,94.0,99.0,90.0,98.0,97.0,86.0,99.0,81.0,90.0,76.0,83.0,79.0,58.0,73.0,71.0,64.0,80.0,75.0,73.0,66.0,84.0,65.0,72.0,74.0,75.0,75.0,56.0,60.0,46.0,55.0,49.0,56.0,46.0,43.0,27.0,36.0,38.0,27.0,34.0,25.0,25.0,16.0,18.0,25.0,21.0,27.0,26.0,24.0,31.0,27.0,21.0,12.0,22.0,15.0,13.0,17.0,15.0,13.0,12.0,4.0,8.0,8.0,7.0,12.0,7.0,6.0,4.0,6.0,5.0,6.0,1.0,1.0,2.0,7.0 B83642,28.0,42.0,25.0,30.0,29.0,32.0,27.0,39.0,35.0,29.0,38.0,19.0,39.0,31.0,31.0,26.0,30.0,33.0,53.0,38.0,42.0,35.0,37.0,33.0,42.0,61.0,44.0,45.0,47.0,38.0,43.0,34.0,38.0,32.0,23.0,24.0,47.0,24.0,36.0,41.0,29.0,37.0,25.0,27.0,37.0,39.0,25.0,27.0,24.0,16.0,33.0,19.0,24.0,24.0,28.0,24.0,16.0,25.0,7.0,14.0,8.0,12.0,10.0,15.0,12.0,11.0,13.0,18.0,11.0,14.0,8.0,6.0,14.0,6.0,11.0,12.0,6.0,7.0,8.0,4.0,5.0,3.0,2.0,,,4.0,1.0,1.0,1.0,5.0,1.0,,1.0,,1.0,2.0 B83653,45.0,49.0,34.0,56.0,59.0,64.0,61.0,56.0,56.0,62.0,73.0,58.0,74.0,88.0,75.0,84.0,73.0,75.0,83.0,79.0,60.0,69.0,77.0,73.0,69.0,69.0,59.0,43.0,57.0,53.0,55.0,56.0,43.0,44.0,49.0,60.0,73.0,66.0,61.0,69.0,60.0,63.0,58.0,59.0,59.0,48.0,56.0,58.0,48.0,42.0,39.0,40.0,46.0,31.0,36.0,41.0,33.0,32.0,12.0,28.0,15.0,19.0,23.0,21.0,18.0,26.0,19.0,20.0,25.0,13.0,20.0,14.0,11.0,14.0,10.0,12.0,10.0,11.0,9.0,7.0,7.0,7.0,10.0,3.0,5.0,4.0,4.0,10.0,4.0,3.0,5.0,2.0,1.0,1.0,2.0,2.0 B83657,33.0,23.0,32.0,17.0,24.0,31.0,24.0,26.0,29.0,27.0,20.0,19.0,24.0,11.0,25.0,27.0,20.0,22.0,21.0,17.0,28.0,13.0,29.0,26.0,24.0,24.0,33.0,44.0,37.0,44.0,41.0,40.0,33.0,41.0,43.0,39.0,42.0,34.0,32.0,39.0,35.0,29.0,39.0,32.0,22.0,26.0,28.0,22.0,26.0,11.0,17.0,14.0,19.0,8.0,16.0,10.0,16.0,12.0,15.0,3.0,5.0,4.0,5.0,3.0,5.0,4.0,6.0,3.0,1.0,2.0,2.0,,,,1.0,,1.0,2.0,,,1.0,,,,,,,,,,,,,,, B83659,24.0,24.0,20.0,24.0,25.0,21.0,30.0,27.0,31.0,32.0,43.0,28.0,24.0,40.0,25.0,40.0,37.0,44.0,45.0,27.0,34.0,37.0,40.0,35.0,41.0,41.0,36.0,32.0,32.0,31.0,31.0,27.0,31.0,21.0,29.0,24.0,27.0,33.0,26.0,27.0,29.0,32.0,26.0,18.0,29.0,23.0,32.0,32.0,21.0,18.0,22.0,21.0,21.0,15.0,18.0,14.0,14.0,10.0,20.0,5.0,10.0,15.0,8.0,9.0,9.0,5.0,12.0,7.0,6.0,7.0,8.0,5.0,6.0,9.0,6.0,2.0,7.0,2.0,2.0,2.0,1.0,2.0,3.0,1.0,9.0,3.0,4.0,1.0,4.0,5.0,2.0,2.0,1.0,1.0,2.0,2.0 B83660,35.0,32.0,45.0,35.0,45.0,38.0,37.0,49.0,40.0,37.0,51.0,59.0,38.0,51.0,57.0,54.0,42.0,41.0,41.0,43.0,46.0,52.0,51.0,41.0,55.0,40.0,52.0,55.0,52.0,58.0,48.0,44.0,58.0,53.0,42.0,43.0,56.0,60.0,62.0,50.0,52.0,48.0,42.0,48.0,47.0,42.0,30.0,30.0,33.0,31.0,37.0,23.0,21.0,30.0,21.0,20.0,21.0,16.0,12.0,19.0,11.0,17.0,14.0,10.0,18.0,18.0,15.0,10.0,12.0,10.0,18.0,10.0,8.0,11.0,8.0,11.0,7.0,6.0,6.0,5.0,6.0,5.0,5.0,5.0,3.0,2.0,5.0,5.0,4.0,2.0,1.0,2.0,1.0,1.0,1.0,2.0 B83661,23.0,24.0,23.0,21.0,23.0,21.0,21.0,15.0,26.0,25.0,19.0,24.0,24.0,27.0,25.0,19.0,31.0,24.0,22.0,27.0,16.0,24.0,29.0,24.0,28.0,20.0,32.0,26.0,22.0,13.0,20.0,24.0,19.0,25.0,18.0,30.0,20.0,25.0,24.0,15.0,22.0,19.0,13.0,20.0,27.0,27.0,16.0,25.0,14.0,17.0,22.0,21.0,15.0,23.0,12.0,13.0,17.0,20.0,17.0,13.0,9.0,8.0,11.0,7.0,6.0,7.0,9.0,5.0,13.0,10.0,9.0,7.0,8.0,8.0,3.0,2.0,3.0,4.0,4.0,2.0,,5.0,2.0,6.0,3.0,6.0,1.0,,1.0,2.0,1.0,,,1.0,1.0,1.0 B84001,40.0,56.0,38.0,41.0,56.0,44.0,47.0,59.0,50.0,53.0,63.0,74.0,72.0,67.0,57.0,85.0,77.0,75.0,58.0,44.0,44.0,44.0,42.0,40.0,40.0,57.0,51.0,81.0,57.0,69.0,59.0,66.0,89.0,74.0,72.0,85.0,79.0,78.0,76.0,78.0,80.0,86.0,73.0,71.0,68.0,60.0,73.0,59.0,49.0,66.0,55.0,70.0,73.0,77.0,74.0,75.0,77.0,66.0,75.0,61.0,60.0,50.0,67.0,51.0,69.0,65.0,62.0,54.0,53.0,51.0,48.0,45.0,46.0,46.0,51.0,38.0,40.0,40.0,49.0,23.0,26.0,26.0,21.0,18.0,12.0,16.0,10.0,12.0,10.0,15.0,3.0,8.0,4.0,2.0,4.0,3.0 B84003,26.0,21.0,22.0,27.0,24.0,30.0,36.0,42.0,36.0,36.0,29.0,42.0,56.0,42.0,42.0,39.0,54.0,49.0,47.0,37.0,40.0,39.0,33.0,33.0,32.0,36.0,41.0,33.0,54.0,39.0,36.0,44.0,49.0,39.0,44.0,44.0,48.0,48.0,57.0,29.0,47.0,42.0,46.0,45.0,52.0,40.0,39.0,39.0,41.0,38.0,54.0,50.0,59.0,70.0,76.0,63.0,65.0,67.0,71.0,72.0,56.0,68.0,70.0,56.0,62.0,44.0,57.0,53.0,43.0,47.0,52.0,38.0,42.0,47.0,43.0,49.0,43.0,52.0,47.0,28.0,40.0,36.0,27.0,29.0,25.0,26.0,28.0,22.0,12.0,20.0,6.0,8.0,5.0,6.0,2.0,11.0 B84004,41.0,62.0,53.0,65.0,65.0,73.0,69.0,86.0,76.0,64.0,92.0,94.0,112.0,108.0,91.0,105.0,115.0,86.0,104.0,77.0,63.0,50.0,77.0,64.0,65.0,64.0,73.0,85.0,77.0,99.0,97.0,78.0,112.0,98.0,88.0,100.0,105.0,110.0,123.0,110.0,146.0,119.0,111.0,108.0,115.0,127.0,131.0,115.0,137.0,136.0,144.0,168.0,169.0,163.0,171.0,181.0,187.0,185.0,184.0,164.0,162.0,171.0,170.0,174.0,139.0,138.0,137.0,144.0,145.0,143.0,96.0,129.0,104.0,130.0,124.0,121.0,103.0,101.0,114.0,82.0,84.0,60.0,47.0,41.0,35.0,37.0,33.0,31.0,32.0,24.0,17.0,17.0,10.0,14.0,7.0,13.0 B84006,61.0,64.0,65.0,63.0,77.0,72.0,75.0,84.0,86.0,77.0,89.0,97.0,111.0,106.0,87.0,101.0,93.0,108.0,108.0,83.0,62.0,80.0,63.0,55.0,62.0,75.0,72.0,83.0,91.0,97.0,78.0,104.0,115.0,98.0,138.0,114.0,112.0,135.0,122.0,114.0,112.0,121.0,110.0,108.0,102.0,108.0,106.0,110.0,96.0,100.0,109.0,122.0,115.0,113.0,130.0,135.0,149.0,123.0,132.0,117.0,121.0,121.0,107.0,113.0,113.0,85.0,90.0,108.0,100.0,117.0,89.0,92.0,75.0,68.0,100.0,68.0,84.0,90.0,77.0,56.0,66.0,60.0,50.0,43.0,34.0,24.0,27.0,26.0,15.0,30.0,15.0,15.0,12.0,16.0,9.0,31.0 B84007,34.0,39.0,37.0,46.0,34.0,59.0,61.0,55.0,58.0,47.0,62.0,47.0,64.0,52.0,62.0,60.0,73.0,80.0,62.0,55.0,56.0,48.0,48.0,44.0,57.0,46.0,44.0,41.0,40.0,45.0,46.0,46.0,54.0,62.0,57.0,61.0,49.0,62.0,75.0,52.0,72.0,63.0,70.0,75.0,81.0,82.0,83.0,58.0,73.0,68.0,86.0,91.0,82.0,90.0,119.0,92.0,95.0,84.0,72.0,102.0,88.0,99.0,101.0,81.0,72.0,87.0,80.0,72.0,86.0,60.0,58.0,62.0,52.0,55.0,51.0,57.0,46.0,51.0,74.0,51.0,42.0,35.0,40.0,26.0,19.0,15.0,17.0,12.0,14.0,9.0,9.0,10.0,6.0,7.0,7.0,13.0 B84008,67.0,67.0,54.0,65.0,70.0,66.0,74.0,80.0,81.0,100.0,104.0,67.0,103.0,78.0,97.0,96.0,81.0,103.0,108.0,71.0,74.0,81.0,77.0,82.0,59.0,72.0,87.0,77.0,90.0,84.0,87.0,71.0,105.0,114.0,102.0,87.0,96.0,109.0,118.0,86.0,117.0,86.0,101.0,132.0,95.0,99.0,102.0,107.0,112.0,115.0,103.0,114.0,116.0,111.0,119.0,116.0,117.0,117.0,152.0,123.0,124.0,135.0,111.0,123.0,120.0,109.0,101.0,105.0,99.0,99.0,100.0,94.0,101.0,88.0,87.0,94.0,99.0,116.0,92.0,72.0,73.0,68.0,63.0,61.0,47.0,46.0,45.0,39.0,32.0,28.0,25.0,27.0,23.0,15.0,8.0,37.0 B84009,37.0,52.0,50.0,54.0,57.0,41.0,52.0,63.0,58.0,66.0,68.0,67.0,78.0,66.0,74.0,73.0,81.0,64.0,65.0,47.0,64.0,59.0,50.0,58.0,50.0,51.0,60.0,38.0,65.0,61.0,59.0,69.0,55.0,80.0,90.0,80.0,67.0,80.0,84.0,84.0,77.0,65.0,80.0,86.0,86.0,85.0,85.0,70.0,67.0,70.0,87.0,74.0,90.0,71.0,112.0,97.0,82.0,103.0,74.0,93.0,82.0,96.0,90.0,74.0,77.0,63.0,73.0,78.0,76.0,86.0,84.0,69.0,59.0,54.0,53.0,58.0,53.0,67.0,70.0,55.0,47.0,40.0,35.0,32.0,23.0,21.0,18.0,13.0,15.0,12.0,10.0,8.0,9.0,5.0,9.0,15.0 B84010,34.0,33.0,43.0,54.0,44.0,46.0,62.0,55.0,58.0,59.0,66.0,51.0,81.0,71.0,67.0,59.0,75.0,79.0,61.0,60.0,55.0,52.0,43.0,53.0,50.0,59.0,56.0,57.0,70.0,82.0,81.0,70.0,67.0,75.0,80.0,61.0,77.0,76.0,67.0,62.0,67.0,61.0,67.0,72.0,60.0,66.0,46.0,51.0,46.0,63.0,58.0,72.0,75.0,72.0,102.0,74.0,75.0,74.0,82.0,72.0,78.0,85.0,54.0,79.0,59.0,74.0,48.0,53.0,60.0,60.0,48.0,45.0,46.0,49.0,53.0,65.0,49.0,61.0,52.0,39.0,36.0,44.0,32.0,13.0,15.0,22.0,22.0,17.0,10.0,10.0,5.0,4.0,5.0,1.0,5.0,11.0 B84011,28.0,35.0,41.0,36.0,37.0,33.0,47.0,46.0,55.0,36.0,62.0,48.0,50.0,49.0,75.0,50.0,70.0,60.0,62.0,75.0,52.0,51.0,47.0,50.0,56.0,53.0,57.0,64.0,58.0,57.0,61.0,62.0,70.0,67.0,66.0,57.0,59.0,69.0,69.0,64.0,49.0,48.0,60.0,64.0,78.0,81.0,84.0,61.0,70.0,71.0,77.0,75.0,72.0,79.0,113.0,86.0,79.0,91.0,81.0,92.0,76.0,87.0,92.0,70.0,74.0,82.0,87.0,67.0,58.0,74.0,74.0,53.0,54.0,83.0,69.0,75.0,75.0,88.0,69.0,59.0,48.0,55.0,48.0,44.0,39.0,44.0,33.0,29.0,30.0,17.0,24.0,9.0,9.0,6.0,6.0,25.0 B84012,133.0,156.0,142.0,150.0,158.0,149.0,164.0,176.0,193.0,201.0,208.0,164.0,203.0,225.0,223.0,209.0,237.0,204.0,168.0,180.0,152.0,186.0,174.0,157.0,180.0,156.0,157.0,175.0,165.0,194.0,186.0,200.0,196.0,188.0,175.0,218.0,199.0,192.0,210.0,191.0,199.0,228.0,177.0,172.0,192.0,205.0,190.0,156.0,172.0,167.0,158.0,160.0,169.0,174.0,150.0,165.0,152.0,153.0,160.0,148.0,162.0,161.0,150.0,137.0,132.0,151.0,120.0,142.0,102.0,114.0,108.0,114.0,100.0,92.0,110.0,97.0,111.0,104.0,107.0,80.0,86.0,88.0,66.0,63.0,49.0,61.0,53.0,49.0,45.0,38.0,24.0,23.0,28.0,27.0,29.0,42.0 B84013,42.0,48.0,43.0,51.0,38.0,48.0,44.0,78.0,65.0,61.0,65.0,48.0,61.0,55.0,62.0,47.0,64.0,43.0,41.0,52.0,35.0,44.0,53.0,46.0,53.0,55.0,52.0,46.0,60.0,65.0,56.0,59.0,64.0,61.0,65.0,67.0,71.0,67.0,64.0,63.0,58.0,69.0,62.0,54.0,60.0,57.0,45.0,49.0,50.0,52.0,52.0,68.0,53.0,58.0,67.0,74.0,50.0,62.0,71.0,69.0,69.0,72.0,73.0,75.0,58.0,60.0,70.0,43.0,68.0,52.0,51.0,43.0,44.0,35.0,35.0,42.0,37.0,40.0,45.0,33.0,42.0,30.0,26.0,37.0,21.0,18.0,22.0,20.0,17.0,14.0,8.0,9.0,3.0,8.0,9.0,18.0 B84014,21.0,32.0,32.0,22.0,27.0,19.0,22.0,25.0,27.0,27.0,21.0,29.0,26.0,28.0,38.0,29.0,27.0,24.0,37.0,20.0,21.0,21.0,31.0,24.0,21.0,17.0,22.0,22.0,28.0,31.0,22.0,31.0,31.0,35.0,41.0,25.0,36.0,40.0,27.0,26.0,38.0,23.0,32.0,39.0,25.0,41.0,22.0,31.0,32.0,31.0,33.0,36.0,24.0,30.0,35.0,45.0,38.0,37.0,42.0,39.0,37.0,54.0,38.0,32.0,44.0,38.0,39.0,36.0,30.0,27.0,34.0,27.0,36.0,30.0,30.0,36.0,50.0,46.0,41.0,32.0,36.0,17.0,24.0,19.0,20.0,21.0,12.0,12.0,13.0,12.0,7.0,5.0,9.0,6.0,6.0,4.0 B84016,56.0,58.0,57.0,51.0,50.0,50.0,59.0,65.0,59.0,76.0,67.0,66.0,79.0,68.0,65.0,61.0,65.0,68.0,60.0,77.0,63.0,52.0,56.0,72.0,63.0,81.0,61.0,81.0,79.0,68.0,59.0,68.0,81.0,83.0,88.0,77.0,78.0,80.0,85.0,82.0,86.0,82.0,73.0,76.0,64.0,83.0,54.0,43.0,62.0,83.0,72.0,59.0,71.0,95.0,78.0,95.0,89.0,72.0,79.0,73.0,88.0,68.0,75.0,81.0,68.0,66.0,67.0,81.0,55.0,49.0,50.0,49.0,50.0,50.0,62.0,56.0,57.0,50.0,62.0,40.0,34.0,38.0,27.0,33.0,25.0,37.0,25.0,16.0,28.0,18.0,14.0,15.0,10.0,6.0,5.0,9.0 B84019,90.0,94.0,91.0,125.0,95.0,118.0,100.0,113.0,120.0,121.0,116.0,117.0,139.0,102.0,116.0,118.0,108.0,109.0,114.0,99.0,104.0,98.0,111.0,104.0,111.0,127.0,121.0,104.0,107.0,128.0,123.0,132.0,130.0,148.0,135.0,140.0,135.0,135.0,144.0,142.0,136.0,139.0,142.0,128.0,109.0,117.0,117.0,89.0,92.0,86.0,74.0,100.0,103.0,96.0,98.0,93.0,86.0,92.0,84.0,89.0,102.0,81.0,79.0,82.0,76.0,68.0,66.0,72.0,62.0,58.0,53.0,63.0,50.0,50.0,67.0,62.0,49.0,60.0,55.0,45.0,43.0,33.0,33.0,27.0,32.0,31.0,37.0,27.0,20.0,14.0,15.0,12.0,9.0,7.0,10.0,13.0 B84021,39.0,39.0,29.0,52.0,43.0,52.0,56.0,51.0,51.0,40.0,57.0,53.0,57.0,63.0,36.0,45.0,50.0,57.0,40.0,44.0,44.0,36.0,48.0,55.0,53.0,55.0,49.0,83.0,62.0,63.0,58.0,76.0,58.0,58.0,64.0,85.0,67.0,50.0,58.0,58.0,67.0,59.0,48.0,59.0,38.0,42.0,53.0,40.0,51.0,54.0,41.0,53.0,58.0,49.0,62.0,70.0,54.0,65.0,61.0,46.0,65.0,55.0,72.0,57.0,56.0,56.0,68.0,46.0,47.0,51.0,46.0,40.0,42.0,32.0,46.0,50.0,35.0,52.0,49.0,32.0,39.0,37.0,39.0,29.0,23.0,19.0,24.0,18.0,27.0,18.0,14.0,11.0,12.0,10.0,5.0,15.0 B84612,30.0,47.0,38.0,53.0,49.0,52.0,54.0,41.0,53.0,65.0,54.0,47.0,49.0,71.0,71.0,74.0,50.0,50.0,47.0,36.0,54.0,50.0,46.0,58.0,53.0,56.0,54.0,58.0,69.0,65.0,60.0,62.0,80.0,75.0,83.0,91.0,66.0,72.0,89.0,59.0,60.0,78.0,68.0,72.0,65.0,56.0,74.0,41.0,58.0,39.0,43.0,41.0,42.0,38.0,54.0,36.0,37.0,59.0,71.0,48.0,24.0,46.0,37.0,46.0,53.0,24.0,36.0,33.0,40.0,24.0,32.0,26.0,28.0,22.0,29.0,26.0,23.0,24.0,24.0,21.0,22.0,21.0,10.0,14.0,12.0,14.0,10.0,14.0,3.0,9.0,9.0,4.0,5.0,3.0,4.0,5.0 B84613,49.0,59.0,55.0,69.0,69.0,77.0,78.0,67.0,97.0,78.0,75.0,83.0,85.0,80.0,58.0,95.0,66.0,70.0,70.0,59.0,52.0,50.0,51.0,58.0,77.0,50.0,77.0,88.0,74.0,97.0,80.0,85.0,97.0,75.0,93.0,101.0,87.0,105.0,74.0,79.0,88.0,72.0,73.0,67.0,72.0,72.0,60.0,49.0,64.0,49.0,55.0,64.0,58.0,69.0,78.0,68.0,50.0,82.0,52.0,58.0,57.0,49.0,69.0,54.0,44.0,46.0,48.0,43.0,53.0,44.0,29.0,34.0,25.0,33.0,22.0,34.0,28.0,39.0,35.0,26.0,24.0,27.0,15.0,16.0,20.0,16.0,17.0,13.0,14.0,6.0,9.0,4.0,4.0,3.0,5.0,4.0 B84618,27.0,34.0,51.0,44.0,51.0,48.0,48.0,59.0,62.0,61.0,54.0,64.0,60.0,55.0,54.0,65.0,56.0,60.0,43.0,53.0,39.0,45.0,39.0,46.0,46.0,50.0,45.0,53.0,40.0,50.0,78.0,63.0,72.0,68.0,73.0,58.0,61.0,71.0,64.0,59.0,85.0,54.0,71.0,65.0,37.0,55.0,40.0,40.0,33.0,38.0,58.0,46.0,43.0,51.0,47.0,52.0,45.0,51.0,56.0,53.0,52.0,53.0,39.0,60.0,57.0,44.0,37.0,37.0,36.0,24.0,27.0,34.0,26.0,25.0,27.0,30.0,29.0,32.0,24.0,21.0,22.0,16.0,25.0,13.0,14.0,26.0,13.0,10.0,8.0,6.0,4.0,4.0,5.0,3.0,4.0,6.0 B84623,20.0,22.0,21.0,21.0,25.0,37.0,34.0,28.0,34.0,28.0,24.0,30.0,23.0,26.0,37.0,32.0,35.0,29.0,31.0,24.0,29.0,29.0,29.0,26.0,27.0,24.0,36.0,37.0,44.0,38.0,42.0,39.0,48.0,49.0,38.0,52.0,37.0,30.0,52.0,37.0,42.0,39.0,22.0,47.0,30.0,37.0,32.0,34.0,21.0,41.0,32.0,51.0,37.0,47.0,41.0,43.0,35.0,46.0,41.0,27.0,38.0,27.0,34.0,22.0,20.0,25.0,19.0,23.0,21.0,24.0,25.0,31.0,19.0,18.0,23.0,20.0,23.0,22.0,14.0,11.0,21.0,10.0,18.0,13.0,11.0,9.0,1.0,7.0,4.0,2.0,5.0,4.0,4.0,2.0,1.0,6.0 B85001,20.0,24.0,29.0,33.0,30.0,37.0,34.0,32.0,34.0,36.0,35.0,37.0,44.0,34.0,33.0,43.0,47.0,30.0,30.0,33.0,38.0,26.0,27.0,23.0,32.0,33.0,42.0,30.0,52.0,21.0,45.0,50.0,32.0,55.0,52.0,51.0,56.0,50.0,43.0,46.0,42.0,59.0,55.0,50.0,44.0,40.0,43.0,36.0,49.0,36.0,39.0,44.0,47.0,51.0,52.0,43.0,46.0,46.0,51.0,52.0,54.0,45.0,57.0,41.0,41.0,38.0,53.0,32.0,43.0,42.0,32.0,34.0,44.0,32.0,35.0,27.0,40.0,37.0,41.0,21.0,21.0,29.0,30.0,13.0,21.0,12.0,13.0,15.0,13.0,7.0,13.0,8.0,5.0,3.0,4.0,19.0 B85002,15.0,22.0,24.0,22.0,24.0,20.0,27.0,27.0,20.0,23.0,27.0,37.0,21.0,26.0,30.0,35.0,29.0,19.0,23.0,18.0,17.0,22.0,23.0,30.0,25.0,19.0,22.0,14.0,25.0,31.0,23.0,37.0,26.0,29.0,33.0,34.0,25.0,29.0,34.0,32.0,21.0,27.0,22.0,36.0,35.0,27.0,28.0,36.0,25.0,39.0,29.0,28.0,45.0,31.0,38.0,46.0,39.0,28.0,41.0,26.0,33.0,40.0,33.0,38.0,32.0,17.0,21.0,29.0,25.0,20.0,28.0,20.0,16.0,28.0,13.0,25.0,27.0,24.0,27.0,18.0,23.0,10.0,28.0,17.0,14.0,14.0,13.0,6.0,15.0,6.0,8.0,5.0,6.0,5.0,3.0,6.0 B85004,36.0,40.0,38.0,37.0,32.0,42.0,30.0,45.0,38.0,36.0,39.0,40.0,32.0,33.0,39.0,28.0,41.0,39.0,34.0,38.0,31.0,30.0,39.0,31.0,58.0,47.0,48.0,50.0,48.0,48.0,41.0,46.0,41.0,36.0,43.0,47.0,40.0,47.0,43.0,59.0,34.0,47.0,42.0,47.0,42.0,36.0,40.0,32.0,45.0,28.0,43.0,27.0,28.0,41.0,38.0,33.0,43.0,47.0,31.0,52.0,32.0,25.0,32.0,28.0,34.0,33.0,27.0,30.0,26.0,21.0,17.0,17.0,22.0,28.0,27.0,14.0,17.0,30.0,22.0,9.0,18.0,18.0,9.0,6.0,16.0,9.0,12.0,4.0,10.0,7.0,6.0,4.0,6.0,4.0,2.0,5.0 B85005,20.0,32.0,23.0,22.0,31.0,37.0,37.0,29.0,28.0,32.0,36.0,31.0,41.0,44.0,31.0,43.0,37.0,40.0,39.0,31.0,37.0,34.0,23.0,40.0,26.0,24.0,21.0,26.0,26.0,26.0,29.0,27.0,34.0,32.0,35.0,35.0,30.0,49.0,36.0,34.0,37.0,42.0,41.0,43.0,47.0,47.0,44.0,39.0,36.0,43.0,48.0,44.0,44.0,70.0,61.0,52.0,39.0,55.0,48.0,50.0,59.0,43.0,60.0,51.0,44.0,50.0,53.0,46.0,47.0,55.0,51.0,37.0,55.0,47.0,37.0,43.0,47.0,57.0,49.0,40.0,37.0,32.0,27.0,33.0,19.0,12.0,19.0,14.0,17.0,12.0,3.0,8.0,2.0,3.0,3.0,6.0 B85006,48.0,59.0,62.0,50.0,53.0,76.0,58.0,55.0,82.0,72.0,59.0,73.0,65.0,77.0,95.0,72.0,94.0,95.0,83.0,73.0,77.0,72.0,73.0,59.0,64.0,67.0,63.0,72.0,75.0,80.0,72.0,94.0,83.0,95.0,82.0,73.0,87.0,80.0,77.0,88.0,82.0,67.0,85.0,97.0,71.0,85.0,99.0,81.0,75.0,115.0,116.0,100.0,120.0,133.0,150.0,139.0,136.0,156.0,109.0,138.0,147.0,129.0,154.0,111.0,106.0,102.0,126.0,104.0,96.0,101.0,96.0,113.0,98.0,84.0,92.0,87.0,85.0,97.0,102.0,72.0,83.0,61.0,59.0,52.0,52.0,41.0,33.0,36.0,31.0,19.0,21.0,21.0,12.0,12.0,11.0,32.0 B85008,48.0,39.0,46.0,44.0,43.0,39.0,45.0,36.0,44.0,31.0,53.0,54.0,47.0,42.0,41.0,39.0,30.0,35.0,34.0,39.0,26.0,31.0,30.0,42.0,55.0,53.0,50.0,50.0,47.0,61.0,43.0,66.0,54.0,47.0,52.0,52.0,56.0,54.0,42.0,43.0,53.0,50.0,44.0,43.0,51.0,43.0,28.0,34.0,32.0,31.0,41.0,28.0,42.0,35.0,30.0,27.0,29.0,42.0,20.0,36.0,17.0,37.0,26.0,29.0,15.0,21.0,21.0,16.0,22.0,20.0,17.0,23.0,14.0,20.0,19.0,27.0,19.0,21.0,26.0,10.0,10.0,19.0,14.0,15.0,9.0,10.0,12.0,10.0,12.0,8.0,6.0,8.0,7.0,6.0,3.0,4.0 B85009,50.0,58.0,49.0,53.0,36.0,43.0,50.0,55.0,53.0,51.0,50.0,47.0,53.0,66.0,50.0,68.0,68.0,52.0,76.0,57.0,56.0,51.0,55.0,75.0,62.0,70.0,60.0,70.0,64.0,62.0,52.0,56.0,56.0,59.0,61.0,59.0,64.0,64.0,64.0,54.0,64.0,66.0,56.0,53.0,68.0,42.0,63.0,54.0,43.0,48.0,59.0,38.0,39.0,50.0,53.0,51.0,42.0,48.0,43.0,52.0,58.0,44.0,49.0,35.0,44.0,44.0,42.0,36.0,52.0,37.0,35.0,32.0,37.0,37.0,31.0,29.0,23.0,37.0,28.0,26.0,30.0,33.0,20.0,17.0,11.0,25.0,17.0,11.0,10.0,14.0,11.0,10.0,10.0,4.0,7.0,14.0 B85010,34.0,29.0,33.0,36.0,38.0,40.0,39.0,45.0,46.0,37.0,41.0,58.0,41.0,44.0,50.0,37.0,37.0,49.0,40.0,41.0,35.0,34.0,37.0,35.0,42.0,40.0,42.0,47.0,58.0,45.0,47.0,58.0,56.0,48.0,49.0,49.0,58.0,46.0,55.0,46.0,35.0,38.0,45.0,56.0,43.0,45.0,57.0,34.0,27.0,49.0,44.0,51.0,47.0,56.0,55.0,56.0,50.0,53.0,55.0,46.0,53.0,49.0,48.0,56.0,36.0,48.0,32.0,40.0,40.0,34.0,33.0,50.0,25.0,27.0,22.0,34.0,34.0,30.0,32.0,24.0,23.0,25.0,23.0,22.0,7.0,22.0,18.0,15.0,12.0,8.0,7.0,8.0,9.0,5.0,,9.0 B85012,44.0,47.0,55.0,78.0,64.0,61.0,66.0,78.0,57.0,73.0,80.0,71.0,76.0,73.0,75.0,70.0,69.0,77.0,83.0,60.0,51.0,59.0,58.0,42.0,68.0,60.0,77.0,55.0,67.0,68.0,61.0,63.0,77.0,72.0,71.0,75.0,91.0,77.0,89.0,86.0,91.0,74.0,86.0,63.0,80.0,81.0,65.0,51.0,56.0,56.0,61.0,77.0,52.0,71.0,71.0,58.0,89.0,84.0,64.0,67.0,76.0,74.0,68.0,75.0,60.0,71.0,67.0,54.0,48.0,52.0,38.0,55.0,44.0,41.0,40.0,53.0,39.0,41.0,50.0,25.0,31.0,36.0,30.0,21.0,30.0,25.0,15.0,23.0,15.0,17.0,5.0,8.0,6.0,2.0,4.0,11.0 B85014,38.0,39.0,41.0,37.0,42.0,41.0,35.0,38.0,52.0,45.0,63.0,55.0,63.0,50.0,47.0,62.0,61.0,51.0,73.0,48.0,44.0,53.0,44.0,54.0,50.0,45.0,55.0,44.0,56.0,51.0,59.0,50.0,60.0,66.0,72.0,62.0,69.0,47.0,63.0,62.0,65.0,51.0,61.0,59.0,58.0,62.0,54.0,54.0,58.0,44.0,69.0,64.0,68.0,75.0,76.0,61.0,77.0,80.0,73.0,62.0,73.0,71.0,59.0,68.0,57.0,61.0,52.0,53.0,64.0,43.0,62.0,71.0,56.0,53.0,46.0,61.0,64.0,65.0,63.0,41.0,34.0,30.0,47.0,27.0,18.0,28.0,24.0,24.0,9.0,9.0,10.0,11.0,8.0,6.0,6.0,8.0 B85015,36.0,33.0,37.0,44.0,45.0,44.0,46.0,38.0,42.0,49.0,52.0,40.0,52.0,53.0,46.0,55.0,52.0,54.0,62.0,36.0,51.0,40.0,44.0,44.0,58.0,45.0,49.0,45.0,49.0,44.0,49.0,59.0,60.0,53.0,60.0,50.0,60.0,75.0,57.0,61.0,66.0,50.0,52.0,41.0,57.0,55.0,53.0,40.0,61.0,43.0,49.0,50.0,50.0,63.0,64.0,77.0,74.0,60.0,51.0,76.0,54.0,61.0,62.0,56.0,41.0,44.0,42.0,47.0,57.0,50.0,33.0,54.0,46.0,31.0,35.0,44.0,49.0,63.0,64.0,39.0,29.0,29.0,36.0,29.0,23.0,28.0,17.0,16.0,14.0,9.0,13.0,11.0,10.0,3.0,4.0,11.0 B85016,50.0,75.0,63.0,54.0,58.0,62.0,81.0,82.0,75.0,69.0,83.0,72.0,62.0,62.0,72.0,74.0,68.0,80.0,77.0,68.0,81.0,61.0,73.0,72.0,71.0,63.0,73.0,74.0,67.0,58.0,65.0,74.0,67.0,72.0,68.0,81.0,69.0,89.0,83.0,68.0,80.0,74.0,75.0,83.0,82.0,69.0,78.0,70.0,50.0,55.0,64.0,66.0,60.0,74.0,56.0,49.0,73.0,62.0,54.0,45.0,56.0,71.0,46.0,49.0,38.0,50.0,55.0,49.0,45.0,47.0,41.0,32.0,49.0,49.0,21.0,37.0,37.0,37.0,36.0,31.0,24.0,26.0,17.0,21.0,19.0,19.0,11.0,13.0,12.0,12.0,8.0,4.0,3.0,5.0,6.0,5.0 B85018,60.0,63.0,62.0,52.0,67.0,56.0,56.0,81.0,55.0,58.0,72.0,63.0,61.0,54.0,53.0,65.0,66.0,58.0,52.0,52.0,46.0,57.0,53.0,58.0,57.0,62.0,72.0,62.0,70.0,82.0,78.0,61.0,77.0,73.0,72.0,83.0,75.0,80.0,80.0,55.0,76.0,66.0,57.0,62.0,65.0,57.0,63.0,46.0,47.0,48.0,59.0,62.0,55.0,58.0,51.0,57.0,61.0,52.0,45.0,57.0,40.0,49.0,51.0,58.0,55.0,43.0,32.0,49.0,36.0,34.0,33.0,29.0,35.0,38.0,45.0,35.0,39.0,33.0,26.0,16.0,31.0,27.0,12.0,23.0,13.0,18.0,14.0,14.0,8.0,11.0,13.0,8.0,12.0,5.0,5.0,17.0 B85019,52.0,62.0,60.0,77.0,72.0,80.0,82.0,96.0,84.0,93.0,78.0,92.0,103.0,90.0,93.0,108.0,93.0,106.0,101.0,73.0,70.0,82.0,85.0,93.0,84.0,94.0,91.0,109.0,91.0,89.0,81.0,109.0,96.0,113.0,121.0,92.0,101.0,113.0,113.0,106.0,114.0,98.0,96.0,110.0,132.0,114.0,104.0,93.0,93.0,113.0,91.0,118.0,139.0,142.0,132.0,134.0,131.0,137.0,119.0,128.0,126.0,118.0,109.0,106.0,109.0,88.0,106.0,97.0,97.0,107.0,101.0,96.0,103.0,92.0,98.0,98.0,102.0,123.0,133.0,117.0,105.0,94.0,73.0,54.0,60.0,49.0,62.0,48.0,36.0,30.0,25.0,11.0,16.0,12.0,17.0,40.0 B85020,36.0,33.0,38.0,42.0,48.0,46.0,36.0,47.0,31.0,43.0,53.0,62.0,47.0,54.0,48.0,37.0,44.0,50.0,37.0,35.0,40.0,37.0,37.0,35.0,43.0,37.0,33.0,46.0,46.0,44.0,38.0,46.0,45.0,49.0,52.0,53.0,47.0,39.0,51.0,39.0,65.0,43.0,48.0,41.0,35.0,45.0,37.0,34.0,40.0,36.0,25.0,40.0,36.0,39.0,37.0,37.0,46.0,44.0,44.0,41.0,47.0,42.0,31.0,51.0,44.0,32.0,44.0,30.0,27.0,21.0,31.0,23.0,17.0,27.0,28.0,26.0,24.0,19.0,27.0,18.0,15.0,22.0,6.0,11.0,8.0,8.0,13.0,7.0,5.0,5.0,4.0,2.0,2.0,3.0,2.0,5.0 B85021,29.0,31.0,37.0,33.0,32.0,46.0,49.0,43.0,52.0,48.0,49.0,45.0,40.0,48.0,50.0,43.0,48.0,49.0,45.0,38.0,37.0,35.0,29.0,37.0,46.0,38.0,56.0,60.0,73.0,49.0,52.0,53.0,49.0,58.0,59.0,49.0,70.0,58.0,70.0,50.0,53.0,56.0,51.0,38.0,61.0,52.0,50.0,46.0,41.0,42.0,59.0,52.0,62.0,76.0,69.0,75.0,66.0,63.0,70.0,73.0,86.0,80.0,70.0,64.0,67.0,49.0,59.0,50.0,48.0,45.0,58.0,53.0,50.0,48.0,53.0,57.0,60.0,43.0,55.0,44.0,53.0,28.0,30.0,24.0,24.0,29.0,21.0,24.0,15.0,9.0,8.0,6.0,6.0,7.0,5.0,18.0 B85022,22.0,35.0,23.0,25.0,32.0,31.0,30.0,35.0,30.0,45.0,29.0,42.0,46.0,39.0,42.0,45.0,41.0,48.0,47.0,41.0,29.0,35.0,21.0,38.0,32.0,26.0,45.0,31.0,38.0,34.0,34.0,32.0,31.0,43.0,43.0,38.0,49.0,39.0,38.0,47.0,45.0,38.0,45.0,47.0,45.0,47.0,49.0,30.0,44.0,34.0,56.0,62.0,50.0,73.0,59.0,53.0,60.0,66.0,57.0,78.0,53.0,69.0,83.0,63.0,69.0,65.0,55.0,61.0,39.0,57.0,52.0,52.0,57.0,54.0,71.0,54.0,63.0,52.0,60.0,42.0,53.0,32.0,28.0,25.0,24.0,21.0,18.0,29.0,18.0,21.0,22.0,10.0,11.0,10.0,4.0,10.0 B85023,13.0,27.0,16.0,21.0,34.0,28.0,31.0,36.0,42.0,35.0,30.0,41.0,32.0,36.0,51.0,35.0,31.0,36.0,42.0,41.0,27.0,31.0,23.0,25.0,30.0,38.0,34.0,28.0,40.0,33.0,29.0,37.0,43.0,52.0,46.0,38.0,39.0,41.0,43.0,39.0,38.0,44.0,44.0,41.0,43.0,40.0,38.0,34.0,43.0,36.0,42.0,42.0,50.0,43.0,38.0,53.0,58.0,47.0,52.0,54.0,42.0,64.0,52.0,25.0,49.0,40.0,40.0,26.0,37.0,43.0,34.0,31.0,31.0,31.0,39.0,42.0,32.0,34.0,34.0,27.0,30.0,29.0,26.0,21.0,14.0,21.0,17.0,17.0,9.0,7.0,8.0,8.0,9.0,5.0,1.0,14.0 B85024,40.0,33.0,35.0,42.0,49.0,39.0,36.0,47.0,47.0,56.0,58.0,54.0,53.0,55.0,72.0,55.0,67.0,68.0,55.0,54.0,52.0,43.0,41.0,49.0,45.0,48.0,55.0,49.0,66.0,63.0,58.0,57.0,66.0,62.0,56.0,66.0,65.0,65.0,48.0,61.0,57.0,68.0,71.0,61.0,68.0,73.0,63.0,66.0,58.0,46.0,66.0,50.0,57.0,64.0,66.0,66.0,72.0,72.0,69.0,64.0,57.0,53.0,76.0,75.0,57.0,63.0,60.0,45.0,51.0,51.0,57.0,56.0,45.0,60.0,50.0,52.0,52.0,54.0,66.0,37.0,44.0,30.0,27.0,17.0,16.0,31.0,26.0,23.0,16.0,11.0,9.0,7.0,7.0,7.0,7.0,13.0 B85025,59.0,70.0,70.0,60.0,65.0,60.0,78.0,70.0,82.0,81.0,87.0,71.0,78.0,91.0,85.0,84.0,80.0,73.0,66.0,49.0,60.0,60.0,42.0,63.0,56.0,58.0,65.0,64.0,67.0,68.0,89.0,65.0,85.0,99.0,101.0,89.0,76.0,109.0,80.0,106.0,81.0,99.0,82.0,90.0,80.0,107.0,74.0,72.0,77.0,73.0,67.0,69.0,80.0,76.0,97.0,82.0,72.0,80.0,80.0,76.0,88.0,85.0,93.0,82.0,77.0,73.0,55.0,59.0,72.0,70.0,47.0,44.0,63.0,59.0,59.0,52.0,50.0,75.0,62.0,44.0,59.0,46.0,36.0,29.0,29.0,28.0,26.0,24.0,33.0,18.0,18.0,18.0,11.0,12.0,5.0,29.0 B85026,26.0,20.0,33.0,34.0,27.0,32.0,35.0,41.0,37.0,44.0,52.0,38.0,41.0,52.0,39.0,49.0,55.0,58.0,32.0,35.0,32.0,33.0,47.0,33.0,27.0,39.0,30.0,34.0,34.0,41.0,41.0,40.0,49.0,26.0,38.0,50.0,39.0,54.0,46.0,51.0,36.0,45.0,52.0,52.0,53.0,54.0,61.0,47.0,58.0,62.0,68.0,56.0,66.0,65.0,65.0,53.0,73.0,72.0,66.0,58.0,69.0,71.0,58.0,62.0,53.0,61.0,42.0,58.0,47.0,37.0,60.0,63.0,49.0,54.0,49.0,61.0,52.0,65.0,52.0,49.0,27.0,48.0,19.0,30.0,26.0,21.0,24.0,17.0,15.0,11.0,11.0,5.0,4.0,6.0,5.0,12.0 B85027,40.0,42.0,52.0,54.0,51.0,56.0,65.0,62.0,49.0,69.0,61.0,56.0,65.0,80.0,77.0,69.0,63.0,81.0,52.0,50.0,43.0,38.0,41.0,42.0,46.0,54.0,40.0,57.0,63.0,59.0,52.0,72.0,67.0,81.0,85.0,64.0,90.0,75.0,98.0,70.0,81.0,59.0,71.0,87.0,92.0,81.0,79.0,77.0,66.0,75.0,65.0,77.0,68.0,94.0,68.0,75.0,81.0,67.0,73.0,77.0,83.0,72.0,66.0,78.0,62.0,61.0,63.0,81.0,60.0,56.0,40.0,50.0,55.0,58.0,48.0,57.0,59.0,40.0,66.0,44.0,44.0,45.0,27.0,21.0,30.0,18.0,31.0,16.0,22.0,14.0,20.0,16.0,10.0,6.0,7.0,17.0 B85028,89.0,72.0,85.0,98.0,92.0,104.0,118.0,112.0,118.0,118.0,116.0,140.0,127.0,123.0,136.0,133.0,125.0,123.0,124.0,124.0,93.0,91.0,90.0,109.0,106.0,109.0,102.0,117.0,102.0,124.0,115.0,138.0,116.0,122.0,111.0,122.0,131.0,147.0,134.0,117.0,119.0,110.0,148.0,150.0,131.0,123.0,114.0,98.0,120.0,99.0,115.0,93.0,104.0,103.0,110.0,98.0,108.0,101.0,90.0,103.0,89.0,114.0,101.0,79.0,83.0,93.0,64.0,78.0,76.0,71.0,75.0,66.0,47.0,72.0,68.0,45.0,69.0,62.0,64.0,41.0,37.0,43.0,48.0,35.0,24.0,28.0,23.0,26.0,20.0,25.0,11.0,16.0,7.0,8.0,7.0,15.0 B85030,49.0,45.0,35.0,50.0,41.0,40.0,46.0,55.0,52.0,51.0,54.0,59.0,59.0,67.0,55.0,68.0,60.0,61.0,51.0,53.0,60.0,44.0,44.0,57.0,53.0,52.0,53.0,56.0,61.0,69.0,61.0,79.0,61.0,67.0,81.0,68.0,74.0,49.0,66.0,66.0,74.0,60.0,62.0,66.0,69.0,66.0,73.0,65.0,65.0,53.0,59.0,61.0,88.0,65.0,83.0,67.0,64.0,70.0,74.0,53.0,65.0,56.0,56.0,65.0,49.0,44.0,38.0,45.0,36.0,42.0,44.0,38.0,43.0,35.0,51.0,49.0,43.0,48.0,44.0,24.0,46.0,32.0,23.0,30.0,22.0,18.0,15.0,12.0,10.0,9.0,14.0,7.0,5.0,8.0,5.0,16.0 B85031,29.0,29.0,24.0,26.0,29.0,19.0,31.0,23.0,37.0,36.0,29.0,32.0,29.0,25.0,38.0,23.0,42.0,39.0,34.0,30.0,35.0,31.0,26.0,37.0,35.0,34.0,35.0,36.0,43.0,36.0,39.0,35.0,40.0,39.0,38.0,40.0,32.0,35.0,48.0,46.0,31.0,31.0,33.0,43.0,37.0,36.0,34.0,40.0,38.0,36.0,53.0,42.0,50.0,62.0,57.0,60.0,72.0,71.0,66.0,56.0,61.0,63.0,49.0,67.0,41.0,70.0,62.0,47.0,39.0,42.0,42.0,34.0,37.0,23.0,30.0,36.0,51.0,51.0,43.0,29.0,46.0,42.0,28.0,27.0,25.0,26.0,21.0,24.0,15.0,14.0,8.0,10.0,7.0,2.0,5.0,8.0 B85032,15.0,30.0,27.0,25.0,38.0,30.0,30.0,26.0,36.0,43.0,41.0,36.0,41.0,48.0,36.0,37.0,39.0,35.0,36.0,25.0,27.0,29.0,34.0,27.0,16.0,23.0,23.0,16.0,26.0,34.0,39.0,34.0,39.0,38.0,29.0,38.0,34.0,47.0,39.0,39.0,46.0,31.0,35.0,30.0,30.0,29.0,32.0,32.0,47.0,30.0,34.0,50.0,40.0,42.0,48.0,36.0,46.0,50.0,36.0,48.0,52.0,45.0,36.0,46.0,42.0,51.0,33.0,35.0,45.0,30.0,36.0,35.0,35.0,33.0,33.0,36.0,47.0,50.0,39.0,26.0,29.0,24.0,23.0,18.0,16.0,13.0,16.0,17.0,16.0,10.0,5.0,9.0,1.0,6.0,4.0,6.0 B85033,29.0,24.0,29.0,31.0,32.0,39.0,38.0,17.0,38.0,26.0,33.0,32.0,42.0,35.0,37.0,26.0,24.0,27.0,28.0,20.0,21.0,20.0,24.0,21.0,22.0,32.0,30.0,28.0,25.0,27.0,34.0,39.0,47.0,50.0,43.0,48.0,44.0,54.0,42.0,51.0,44.0,46.0,35.0,35.0,54.0,35.0,37.0,28.0,28.0,35.0,41.0,36.0,36.0,37.0,34.0,35.0,38.0,41.0,40.0,47.0,30.0,35.0,28.0,29.0,29.0,27.0,43.0,25.0,28.0,31.0,29.0,38.0,16.0,21.0,21.0,24.0,20.0,34.0,26.0,26.0,27.0,24.0,23.0,18.0,10.0,18.0,8.0,15.0,8.0,15.0,10.0,8.0,10.0,4.0,5.0,11.0 B85036,34.0,38.0,34.0,55.0,49.0,46.0,41.0,39.0,63.0,45.0,41.0,40.0,66.0,60.0,54.0,48.0,43.0,64.0,49.0,49.0,51.0,31.0,45.0,46.0,48.0,59.0,47.0,54.0,54.0,55.0,62.0,55.0,59.0,72.0,72.0,71.0,46.0,73.0,55.0,72.0,67.0,63.0,49.0,56.0,58.0,50.0,59.0,52.0,46.0,45.0,47.0,46.0,59.0,76.0,70.0,55.0,75.0,59.0,42.0,53.0,60.0,51.0,45.0,59.0,60.0,55.0,50.0,51.0,56.0,43.0,37.0,37.0,34.0,36.0,36.0,39.0,36.0,48.0,47.0,30.0,32.0,22.0,23.0,24.0,19.0,20.0,14.0,16.0,11.0,20.0,10.0,8.0,5.0,6.0,5.0,7.0 B85037,27.0,26.0,22.0,38.0,30.0,39.0,41.0,32.0,38.0,44.0,29.0,35.0,37.0,43.0,37.0,42.0,43.0,30.0,31.0,20.0,27.0,26.0,28.0,26.0,29.0,30.0,36.0,23.0,43.0,54.0,41.0,42.0,41.0,41.0,50.0,39.0,53.0,31.0,31.0,39.0,30.0,39.0,34.0,27.0,34.0,39.0,33.0,16.0,38.0,36.0,36.0,26.0,40.0,40.0,41.0,35.0,37.0,34.0,28.0,31.0,33.0,30.0,32.0,38.0,25.0,28.0,22.0,30.0,21.0,30.0,19.0,24.0,19.0,27.0,29.0,31.0,27.0,26.0,28.0,17.0,11.0,23.0,24.0,17.0,14.0,14.0,13.0,10.0,10.0,4.0,3.0,4.0,3.0,3.0,4.0,6.0 B85038,27.0,19.0,29.0,32.0,18.0,27.0,30.0,37.0,26.0,33.0,34.0,38.0,36.0,50.0,39.0,37.0,39.0,35.0,32.0,28.0,37.0,37.0,30.0,32.0,28.0,29.0,27.0,33.0,49.0,45.0,37.0,28.0,42.0,45.0,44.0,41.0,33.0,36.0,47.0,44.0,24.0,29.0,35.0,35.0,33.0,40.0,40.0,25.0,28.0,26.0,33.0,37.0,51.0,33.0,42.0,48.0,55.0,40.0,56.0,36.0,45.0,43.0,50.0,48.0,41.0,25.0,38.0,40.0,39.0,30.0,29.0,34.0,24.0,36.0,23.0,32.0,28.0,28.0,32.0,17.0,22.0,12.0,21.0,20.0,14.0,12.0,15.0,13.0,12.0,9.0,6.0,6.0,7.0,4.0,2.0,10.0 B85041,80.0,106.0,95.0,100.0,99.0,92.0,123.0,122.0,117.0,92.0,132.0,107.0,131.0,142.0,128.0,114.0,121.0,150.0,128.0,128.0,133.0,99.0,125.0,98.0,115.0,125.0,125.0,124.0,122.0,107.0,106.0,117.0,104.0,105.0,110.0,127.0,110.0,126.0,145.0,139.0,114.0,130.0,117.0,112.0,124.0,120.0,112.0,92.0,107.0,99.0,103.0,105.0,87.0,108.0,88.0,89.0,88.0,70.0,68.0,61.0,72.0,50.0,51.0,51.0,53.0,67.0,58.0,54.0,43.0,63.0,53.0,39.0,38.0,46.0,42.0,35.0,48.0,32.0,25.0,23.0,17.0,21.0,26.0,15.0,16.0,18.0,14.0,11.0,9.0,12.0,4.0,6.0,3.0,1.0,5.0,8.0 B85042,29.0,55.0,47.0,49.0,51.0,47.0,50.0,63.0,50.0,44.0,70.0,56.0,59.0,63.0,58.0,69.0,79.0,63.0,67.0,57.0,59.0,50.0,45.0,57.0,48.0,58.0,43.0,50.0,62.0,49.0,35.0,50.0,75.0,69.0,67.0,67.0,72.0,58.0,67.0,79.0,73.0,61.0,56.0,65.0,68.0,56.0,64.0,61.0,54.0,58.0,61.0,53.0,58.0,71.0,74.0,58.0,63.0,49.0,49.0,38.0,58.0,37.0,58.0,40.0,44.0,41.0,40.0,49.0,31.0,38.0,33.0,29.0,28.0,29.0,24.0,21.0,29.0,27.0,36.0,23.0,18.0,20.0,17.0,18.0,19.0,10.0,20.0,11.0,11.0,14.0,10.0,7.0,7.0,4.0,2.0,13.0 B85044,21.0,16.0,31.0,27.0,20.0,18.0,13.0,29.0,26.0,24.0,23.0,23.0,40.0,25.0,27.0,35.0,30.0,26.0,33.0,14.0,28.0,29.0,26.0,26.0,19.0,25.0,27.0,21.0,22.0,24.0,15.0,26.0,24.0,17.0,16.0,17.0,20.0,24.0,31.0,16.0,13.0,28.0,17.0,21.0,15.0,24.0,22.0,14.0,18.0,15.0,17.0,9.0,14.0,11.0,12.0,17.0,14.0,10.0,10.0,8.0,8.0,7.0,13.0,7.0,9.0,9.0,5.0,7.0,10.0,5.0,6.0,8.0,8.0,7.0,4.0,2.0,,,2.0,1.0,3.0,,,1.0,,2.0,3.0,,2.0,,1.0,2.0,1.0,,,2.0 B85048,21.0,22.0,26.0,42.0,38.0,33.0,33.0,26.0,35.0,45.0,32.0,36.0,34.0,45.0,30.0,36.0,34.0,31.0,23.0,26.0,13.0,25.0,24.0,19.0,33.0,30.0,33.0,36.0,34.0,52.0,44.0,35.0,48.0,40.0,40.0,38.0,60.0,37.0,34.0,42.0,42.0,38.0,31.0,40.0,30.0,31.0,22.0,24.0,26.0,29.0,12.0,20.0,21.0,17.0,22.0,21.0,39.0,21.0,14.0,21.0,18.0,20.0,18.0,30.0,10.0,14.0,13.0,9.0,8.0,12.0,11.0,10.0,7.0,8.0,9.0,13.0,5.0,8.0,7.0,10.0,7.0,6.0,10.0,12.0,6.0,2.0,3.0,5.0,1.0,4.0,6.0,1.0,4.0,1.0,1.0,2.0 B85051,20.0,32.0,42.0,40.0,40.0,48.0,41.0,39.0,47.0,58.0,38.0,39.0,38.0,47.0,44.0,48.0,37.0,49.0,32.0,28.0,24.0,29.0,36.0,26.0,38.0,28.0,46.0,50.0,43.0,43.0,50.0,55.0,44.0,61.0,51.0,47.0,75.0,50.0,46.0,59.0,34.0,46.0,43.0,37.0,48.0,32.0,51.0,40.0,37.0,38.0,43.0,47.0,42.0,53.0,58.0,59.0,56.0,57.0,67.0,55.0,39.0,61.0,53.0,42.0,48.0,46.0,46.0,55.0,38.0,41.0,32.0,42.0,31.0,34.0,42.0,40.0,34.0,36.0,35.0,33.0,17.0,22.0,18.0,22.0,15.0,10.0,17.0,12.0,14.0,8.0,4.0,11.0,4.0,6.0,2.0,13.0 B85054,39.0,28.0,30.0,40.0,38.0,33.0,48.0,44.0,51.0,46.0,39.0,54.0,59.0,70.0,51.0,68.0,65.0,57.0,61.0,42.0,50.0,41.0,33.0,45.0,36.0,47.0,40.0,44.0,45.0,61.0,48.0,55.0,55.0,49.0,62.0,52.0,65.0,63.0,45.0,69.0,63.0,69.0,67.0,65.0,62.0,79.0,78.0,60.0,66.0,77.0,76.0,69.0,71.0,83.0,93.0,74.0,67.0,74.0,80.0,89.0,78.0,81.0,77.0,61.0,66.0,77.0,70.0,62.0,63.0,59.0,56.0,48.0,56.0,64.0,59.0,69.0,66.0,76.0,62.0,40.0,30.0,43.0,22.0,30.0,19.0,23.0,23.0,25.0,14.0,14.0,13.0,11.0,11.0,8.0,7.0,19.0 B85055,102.0,79.0,94.0,113.0,96.0,111.0,111.0,104.0,115.0,109.0,88.0,77.0,98.0,107.0,111.0,90.0,100.0,88.0,76.0,112.0,102.0,94.0,107.0,111.0,123.0,118.0,105.0,122.0,91.0,100.0,100.0,114.0,114.0,128.0,123.0,110.0,134.0,105.0,108.0,114.0,110.0,112.0,107.0,99.0,87.0,78.0,90.0,78.0,66.0,66.0,54.0,52.0,61.0,65.0,57.0,70.0,48.0,41.0,43.0,37.0,32.0,28.0,32.0,35.0,27.0,33.0,45.0,27.0,34.0,26.0,41.0,20.0,25.0,22.0,21.0,19.0,15.0,11.0,10.0,11.0,7.0,8.0,16.0,10.0,10.0,11.0,6.0,5.0,9.0,4.0,6.0,8.0,5.0,3.0,4.0,8.0 B85058,26.0,15.0,18.0,26.0,13.0,13.0,21.0,13.0,21.0,18.0,16.0,15.0,17.0,16.0,10.0,17.0,9.0,15.0,11.0,8.0,12.0,17.0,17.0,29.0,24.0,21.0,37.0,35.0,38.0,32.0,32.0,36.0,28.0,32.0,30.0,27.0,16.0,22.0,32.0,21.0,25.0,21.0,20.0,28.0,17.0,14.0,16.0,22.0,16.0,14.0,13.0,15.0,13.0,16.0,16.0,19.0,12.0,8.0,21.0,14.0,10.0,19.0,13.0,5.0,9.0,14.0,14.0,10.0,9.0,5.0,6.0,3.0,8.0,6.0,6.0,9.0,10.0,6.0,8.0,7.0,5.0,4.0,2.0,2.0,2.0,6.0,3.0,3.0,3.0,,2.0,3.0,1.0,1.0,1.0, B85059,39.0,47.0,47.0,64.0,47.0,53.0,51.0,46.0,62.0,54.0,50.0,44.0,50.0,52.0,38.0,41.0,53.0,32.0,44.0,34.0,29.0,38.0,31.0,45.0,41.0,42.0,59.0,54.0,75.0,53.0,57.0,69.0,52.0,78.0,80.0,53.0,89.0,61.0,56.0,54.0,58.0,64.0,69.0,68.0,62.0,58.0,55.0,62.0,61.0,54.0,45.0,55.0,68.0,48.0,69.0,68.0,68.0,60.0,77.0,72.0,63.0,79.0,54.0,55.0,51.0,44.0,58.0,47.0,42.0,40.0,48.0,39.0,51.0,34.0,28.0,38.0,26.0,38.0,44.0,27.0,20.0,28.0,17.0,12.0,12.0,18.0,13.0,14.0,10.0,7.0,3.0,5.0,1.0,5.0,6.0,5.0 B85060,7.0,6.0,13.0,7.0,11.0,12.0,8.0,8.0,8.0,10.0,17.0,11.0,11.0,16.0,12.0,10.0,7.0,13.0,15.0,9.0,12.0,8.0,9.0,8.0,14.0,14.0,9.0,18.0,17.0,11.0,14.0,19.0,25.0,12.0,10.0,20.0,17.0,13.0,18.0,14.0,17.0,7.0,11.0,19.0,11.0,16.0,9.0,18.0,12.0,23.0,15.0,10.0,18.0,10.0,14.0,18.0,16.0,8.0,15.0,16.0,17.0,11.0,15.0,17.0,14.0,11.0,12.0,17.0,15.0,15.0,13.0,19.0,11.0,9.0,16.0,6.0,13.0,17.0,20.0,14.0,14.0,10.0,14.0,9.0,7.0,8.0,12.0,7.0,6.0,4.0,5.0,4.0,1.0,2.0,2.0,9.0 B85061,28.0,35.0,38.0,35.0,29.0,29.0,40.0,45.0,46.0,48.0,50.0,49.0,56.0,64.0,43.0,48.0,65.0,50.0,44.0,48.0,39.0,32.0,35.0,44.0,55.0,47.0,54.0,66.0,38.0,54.0,53.0,53.0,63.0,35.0,55.0,55.0,63.0,50.0,58.0,59.0,47.0,51.0,54.0,58.0,62.0,68.0,58.0,57.0,49.0,65.0,62.0,70.0,80.0,84.0,80.0,96.0,78.0,91.0,79.0,78.0,83.0,73.0,65.0,63.0,64.0,62.0,62.0,67.0,51.0,58.0,47.0,54.0,60.0,60.0,63.0,68.0,59.0,62.0,76.0,49.0,54.0,42.0,44.0,27.0,23.0,37.0,27.0,20.0,30.0,13.0,14.0,12.0,12.0,10.0,5.0,18.0 B85062,27.0,20.0,26.0,38.0,30.0,24.0,29.0,23.0,40.0,28.0,30.0,31.0,34.0,34.0,31.0,22.0,21.0,24.0,88.0,172.0,280.0,353.0,349.0,340.0,306.0,277.0,291.0,307.0,305.0,267.0,200.0,175.0,158.0,132.0,99.0,84.0,67.0,85.0,51.0,59.0,39.0,66.0,55.0,51.0,37.0,41.0,29.0,22.0,32.0,26.0,22.0,25.0,22.0,16.0,18.0,19.0,14.0,5.0,8.0,7.0,5.0,6.0,5.0,5.0,3.0,5.0,6.0,6.0,5.0,4.0,1.0,2.0,3.0,1.0,1.0,1.0,3.0,2.0,3.0,,2.0,1.0,,,1.0,,,,,,,,,,, B85606,16.0,21.0,24.0,24.0,19.0,33.0,24.0,32.0,36.0,24.0,23.0,35.0,25.0,32.0,35.0,27.0,29.0,27.0,32.0,29.0,43.0,39.0,38.0,34.0,31.0,32.0,34.0,38.0,26.0,21.0,26.0,23.0,14.0,25.0,32.0,24.0,26.0,33.0,21.0,31.0,33.0,37.0,30.0,25.0,27.0,30.0,19.0,27.0,29.0,28.0,29.0,25.0,23.0,21.0,28.0,24.0,32.0,29.0,20.0,22.0,22.0,18.0,15.0,20.0,19.0,21.0,14.0,21.0,15.0,23.0,16.0,15.0,24.0,19.0,20.0,8.0,17.0,11.0,12.0,15.0,8.0,11.0,8.0,6.0,3.0,9.0,9.0,8.0,6.0,2.0,3.0,2.0,,1.0,3.0,3.0 B85610,43.0,41.0,41.0,61.0,41.0,56.0,70.0,73.0,55.0,78.0,48.0,77.0,77.0,80.0,75.0,61.0,75.0,54.0,59.0,40.0,36.0,49.0,44.0,51.0,36.0,53.0,48.0,48.0,48.0,54.0,55.0,63.0,62.0,75.0,67.0,81.0,72.0,90.0,73.0,74.0,59.0,69.0,78.0,72.0,90.0,80.0,81.0,72.0,78.0,70.0,74.0,94.0,89.0,91.0,111.0,93.0,78.0,88.0,80.0,92.0,77.0,87.0,77.0,68.0,66.0,86.0,67.0,65.0,61.0,56.0,61.0,67.0,39.0,64.0,60.0,56.0,57.0,58.0,71.0,35.0,42.0,38.0,40.0,29.0,15.0,24.0,17.0,12.0,13.0,5.0,6.0,8.0,7.0,4.0,1.0,8.0 B85611,8.0,11.0,18.0,23.0,22.0,22.0,18.0,18.0,29.0,24.0,27.0,32.0,22.0,23.0,21.0,19.0,22.0,24.0,17.0,17.0,24.0,23.0,20.0,22.0,15.0,22.0,18.0,20.0,12.0,22.0,20.0,22.0,27.0,22.0,21.0,33.0,30.0,31.0,28.0,23.0,32.0,22.0,18.0,32.0,24.0,21.0,22.0,35.0,21.0,23.0,28.0,25.0,25.0,21.0,21.0,17.0,17.0,28.0,22.0,27.0,16.0,27.0,18.0,27.0,9.0,19.0,18.0,13.0,9.0,12.0,18.0,13.0,12.0,18.0,9.0,7.0,5.0,13.0,12.0,7.0,9.0,11.0,7.0,9.0,5.0,7.0,8.0,11.0,4.0,6.0,6.0,7.0,3.0,1.0,4.0,3.0 B85612,29.0,35.0,25.0,35.0,26.0,29.0,20.0,40.0,28.0,21.0,33.0,28.0,23.0,33.0,30.0,35.0,25.0,22.0,30.0,25.0,29.0,22.0,25.0,24.0,35.0,39.0,30.0,39.0,26.0,37.0,32.0,36.0,41.0,33.0,39.0,41.0,34.0,34.0,34.0,38.0,27.0,22.0,30.0,33.0,25.0,32.0,27.0,28.0,32.0,40.0,36.0,25.0,22.0,24.0,30.0,28.0,28.0,37.0,22.0,29.0,25.0,16.0,25.0,23.0,20.0,25.0,15.0,11.0,19.0,22.0,11.0,12.0,19.0,13.0,19.0,22.0,12.0,18.0,18.0,13.0,12.0,8.0,15.0,9.0,7.0,9.0,8.0,9.0,1.0,7.0,2.0,6.0,6.0,2.0,2.0,4.0 B85614,30.0,53.0,42.0,47.0,56.0,41.0,53.0,48.0,56.0,51.0,54.0,62.0,61.0,55.0,39.0,56.0,54.0,43.0,33.0,40.0,41.0,55.0,45.0,36.0,42.0,52.0,62.0,56.0,55.0,65.0,65.0,59.0,52.0,42.0,54.0,47.0,50.0,44.0,51.0,56.0,64.0,41.0,53.0,44.0,47.0,47.0,34.0,40.0,40.0,39.0,30.0,34.0,23.0,32.0,30.0,30.0,26.0,18.0,11.0,21.0,28.0,13.0,25.0,21.0,17.0,24.0,19.0,22.0,19.0,9.0,15.0,18.0,17.0,17.0,12.0,8.0,12.0,14.0,11.0,7.0,10.0,8.0,10.0,6.0,9.0,10.0,3.0,9.0,6.0,,,4.0,1.0,,2.0,6.0 B85619,18.0,21.0,19.0,14.0,19.0,22.0,22.0,20.0,16.0,11.0,21.0,24.0,23.0,27.0,23.0,25.0,29.0,27.0,19.0,22.0,31.0,18.0,28.0,21.0,21.0,21.0,26.0,24.0,25.0,15.0,19.0,15.0,24.0,22.0,19.0,32.0,27.0,23.0,20.0,16.0,28.0,28.0,23.0,26.0,15.0,21.0,21.0,7.0,22.0,21.0,24.0,17.0,19.0,18.0,8.0,21.0,16.0,11.0,14.0,12.0,12.0,14.0,16.0,16.0,12.0,16.0,14.0,18.0,16.0,12.0,8.0,9.0,10.0,9.0,10.0,5.0,13.0,9.0,6.0,8.0,12.0,4.0,6.0,7.0,3.0,1.0,6.0,4.0,4.0,1.0,1.0,3.0,1.0,1.0,1.0,2.0 B85620,22.0,22.0,14.0,21.0,18.0,14.0,17.0,20.0,19.0,16.0,18.0,14.0,21.0,22.0,18.0,17.0,12.0,18.0,14.0,13.0,11.0,12.0,14.0,16.0,21.0,26.0,19.0,26.0,21.0,22.0,25.0,25.0,30.0,24.0,29.0,28.0,22.0,21.0,21.0,23.0,22.0,11.0,12.0,21.0,14.0,19.0,12.0,18.0,18.0,18.0,9.0,22.0,10.0,21.0,13.0,17.0,19.0,13.0,17.0,14.0,12.0,14.0,16.0,15.0,14.0,12.0,20.0,8.0,13.0,14.0,10.0,6.0,14.0,7.0,10.0,8.0,13.0,19.0,12.0,5.0,5.0,7.0,10.0,8.0,7.0,8.0,3.0,1.0,1.0,4.0,4.0,3.0,,1.0,,4.0 B85623,14.0,19.0,18.0,24.0,18.0,25.0,18.0,26.0,16.0,23.0,31.0,28.0,10.0,30.0,28.0,22.0,22.0,13.0,18.0,17.0,16.0,15.0,18.0,22.0,15.0,30.0,26.0,22.0,24.0,23.0,30.0,32.0,25.0,25.0,29.0,26.0,25.0,38.0,23.0,34.0,27.0,32.0,20.0,20.0,33.0,24.0,26.0,17.0,12.0,16.0,14.0,15.0,18.0,12.0,18.0,24.0,20.0,16.0,13.0,12.0,16.0,18.0,12.0,17.0,15.0,27.0,14.0,23.0,24.0,11.0,17.0,11.0,8.0,11.0,8.0,10.0,6.0,12.0,7.0,10.0,6.0,7.0,7.0,7.0,5.0,6.0,4.0,12.0,4.0,6.0,7.0,3.0,2.0,1.0,2.0,4.0 B85634,24.0,31.0,20.0,31.0,25.0,24.0,27.0,27.0,33.0,32.0,20.0,27.0,28.0,23.0,43.0,33.0,26.0,35.0,32.0,20.0,17.0,24.0,12.0,27.0,15.0,19.0,20.0,33.0,28.0,31.0,27.0,40.0,37.0,36.0,28.0,28.0,27.0,31.0,39.0,31.0,34.0,31.0,18.0,23.0,19.0,25.0,20.0,19.0,9.0,24.0,15.0,23.0,21.0,14.0,15.0,16.0,13.0,18.0,13.0,23.0,9.0,9.0,8.0,12.0,12.0,11.0,18.0,8.0,12.0,16.0,8.0,8.0,10.0,8.0,5.0,7.0,5.0,8.0,9.0,2.0,4.0,4.0,4.0,2.0,3.0,3.0,4.0,2.0,1.0,2.0,,1.0,,3.0,1.0,1.0 B85636,15.0,22.0,24.0,15.0,12.0,16.0,19.0,26.0,25.0,23.0,26.0,26.0,25.0,27.0,33.0,26.0,22.0,23.0,21.0,19.0,22.0,22.0,26.0,26.0,24.0,32.0,31.0,27.0,31.0,25.0,19.0,32.0,31.0,30.0,30.0,26.0,27.0,24.0,30.0,25.0,24.0,36.0,27.0,33.0,29.0,39.0,29.0,25.0,26.0,26.0,36.0,32.0,28.0,40.0,31.0,31.0,30.0,30.0,37.0,37.0,32.0,26.0,30.0,26.0,38.0,23.0,24.0,24.0,24.0,32.0,24.0,28.0,26.0,22.0,20.0,22.0,16.0,33.0,21.0,14.0,23.0,13.0,11.0,11.0,17.0,8.0,12.0,17.0,10.0,10.0,8.0,6.0,6.0,5.0,3.0,9.0 B85640,16.0,18.0,23.0,17.0,14.0,20.0,18.0,11.0,18.0,20.0,24.0,20.0,22.0,24.0,29.0,24.0,25.0,31.0,20.0,22.0,18.0,13.0,22.0,19.0,27.0,21.0,23.0,24.0,12.0,16.0,19.0,37.0,23.0,21.0,28.0,22.0,22.0,24.0,23.0,27.0,31.0,33.0,31.0,29.0,21.0,23.0,21.0,7.0,17.0,21.0,21.0,18.0,31.0,25.0,34.0,18.0,33.0,32.0,24.0,29.0,24.0,24.0,23.0,19.0,21.0,22.0,26.0,16.0,21.0,19.0,18.0,14.0,15.0,14.0,15.0,19.0,10.0,22.0,23.0,12.0,16.0,7.0,8.0,7.0,8.0,5.0,3.0,6.0,4.0,3.0,4.0,2.0,3.0,3.0,1.0,1.0 B85641,15.0,26.0,20.0,29.0,21.0,25.0,21.0,32.0,28.0,27.0,19.0,25.0,27.0,30.0,30.0,17.0,24.0,30.0,20.0,20.0,27.0,27.0,28.0,28.0,35.0,25.0,24.0,24.0,27.0,28.0,33.0,33.0,34.0,33.0,35.0,25.0,40.0,43.0,32.0,37.0,29.0,29.0,32.0,28.0,24.0,19.0,24.0,20.0,20.0,19.0,20.0,32.0,33.0,33.0,25.0,35.0,28.0,34.0,39.0,34.0,33.0,30.0,43.0,25.0,27.0,16.0,22.0,18.0,22.0,17.0,13.0,18.0,17.0,9.0,16.0,20.0,23.0,24.0,23.0,11.0,21.0,11.0,12.0,11.0,6.0,13.0,13.0,12.0,9.0,11.0,4.0,8.0,9.0,8.0,5.0,13.0 B85645,20.0,18.0,17.0,12.0,22.0,15.0,19.0,15.0,22.0,16.0,21.0,31.0,21.0,21.0,26.0,24.0,25.0,36.0,23.0,29.0,24.0,19.0,19.0,25.0,25.0,27.0,13.0,19.0,27.0,16.0,21.0,19.0,13.0,18.0,9.0,14.0,21.0,17.0,17.0,14.0,18.0,16.0,29.0,17.0,23.0,23.0,19.0,15.0,13.0,14.0,13.0,19.0,13.0,10.0,9.0,15.0,6.0,8.0,11.0,5.0,5.0,4.0,3.0,7.0,4.0,3.0,11.0,3.0,7.0,9.0,7.0,6.0,5.0,6.0,5.0,4.0,1.0,4.0,1.0,3.0,1.0,2.0,,1.0,1.0,,1.0,1.0,,,1.0,1.0,,1.0,,1.0 B85646,25.0,28.0,39.0,33.0,39.0,47.0,27.0,44.0,40.0,38.0,35.0,41.0,32.0,39.0,41.0,36.0,37.0,40.0,44.0,31.0,31.0,36.0,39.0,34.0,41.0,49.0,43.0,46.0,36.0,48.0,48.0,42.0,34.0,46.0,36.0,58.0,42.0,48.0,47.0,55.0,44.0,42.0,45.0,36.0,44.0,38.0,37.0,38.0,38.0,34.0,30.0,35.0,38.0,36.0,34.0,27.0,37.0,28.0,29.0,30.0,30.0,36.0,32.0,34.0,36.0,21.0,32.0,28.0,34.0,28.0,17.0,27.0,23.0,28.0,29.0,30.0,23.0,15.0,25.0,11.0,13.0,21.0,26.0,14.0,4.0,10.0,11.0,16.0,11.0,10.0,5.0,5.0,8.0,4.0,11.0,7.0 B85650,35.0,44.0,24.0,36.0,41.0,35.0,40.0,38.0,40.0,53.0,38.0,37.0,41.0,43.0,45.0,38.0,35.0,41.0,37.0,40.0,45.0,39.0,43.0,39.0,45.0,28.0,48.0,56.0,48.0,42.0,37.0,34.0,44.0,38.0,34.0,42.0,42.0,50.0,39.0,39.0,42.0,41.0,32.0,30.0,38.0,39.0,32.0,25.0,28.0,27.0,24.0,32.0,21.0,22.0,22.0,16.0,15.0,19.0,17.0,5.0,7.0,5.0,8.0,6.0,11.0,13.0,8.0,8.0,10.0,10.0,7.0,7.0,5.0,8.0,14.0,7.0,3.0,6.0,5.0,6.0,3.0,1.0,2.0,3.0,1.0,1.0,4.0,1.0,1.0,,,1.0,,,1.0,3.0 B85652,25.0,45.0,39.0,32.0,58.0,51.0,63.0,60.0,64.0,65.0,72.0,63.0,60.0,66.0,65.0,67.0,73.0,65.0,59.0,70.0,84.0,55.0,66.0,68.0,64.0,63.0,67.0,56.0,62.0,51.0,44.0,42.0,58.0,55.0,56.0,65.0,65.0,57.0,61.0,70.0,52.0,67.0,55.0,65.0,56.0,46.0,59.0,60.0,51.0,41.0,51.0,43.0,45.0,45.0,46.0,36.0,35.0,32.0,40.0,29.0,22.0,24.0,22.0,23.0,29.0,23.0,18.0,24.0,30.0,16.0,13.0,20.0,15.0,25.0,19.0,10.0,11.0,13.0,11.0,9.0,12.0,8.0,8.0,10.0,5.0,7.0,9.0,5.0,2.0,4.0,5.0,1.0,1.0,3.0,2.0,1.0 B85655,15.0,17.0,16.0,14.0,16.0,25.0,11.0,14.0,20.0,17.0,21.0,15.0,20.0,21.0,12.0,20.0,26.0,21.0,17.0,9.0,16.0,16.0,18.0,22.0,19.0,23.0,22.0,19.0,25.0,24.0,26.0,18.0,18.0,15.0,24.0,15.0,21.0,19.0,27.0,19.0,16.0,25.0,23.0,15.0,19.0,16.0,16.0,12.0,13.0,19.0,13.0,8.0,17.0,19.0,15.0,18.0,24.0,18.0,13.0,14.0,21.0,15.0,13.0,14.0,12.0,8.0,14.0,12.0,12.0,7.0,13.0,15.0,10.0,10.0,9.0,10.0,12.0,13.0,5.0,5.0,6.0,3.0,5.0,14.0,1.0,3.0,2.0,3.0,4.0,4.0,2.0,1.0,2.0,,1.0,2.0 B85659,11.0,7.0,8.0,13.0,5.0,9.0,6.0,13.0,5.0,5.0,9.0,8.0,7.0,2.0,8.0,6.0,3.0,4.0,2.0,7.0,4.0,3.0,3.0,10.0,9.0,12.0,12.0,12.0,14.0,18.0,19.0,11.0,8.0,13.0,13.0,13.0,15.0,9.0,10.0,17.0,10.0,11.0,5.0,9.0,7.0,8.0,6.0,6.0,5.0,8.0,2.0,7.0,2.0,3.0,3.0,4.0,2.0,,1.0,,2.0,1.0,,2.0,1.0,4.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,,,,,,,, B85660,35.0,31.0,32.0,38.0,33.0,38.0,45.0,40.0,45.0,39.0,35.0,45.0,34.0,45.0,38.0,29.0,40.0,34.0,38.0,27.0,34.0,38.0,32.0,37.0,46.0,41.0,42.0,46.0,54.0,49.0,49.0,50.0,41.0,45.0,74.0,56.0,64.0,46.0,57.0,40.0,49.0,43.0,55.0,47.0,36.0,34.0,38.0,30.0,30.0,35.0,48.0,33.0,51.0,38.0,39.0,39.0,45.0,50.0,39.0,46.0,49.0,58.0,64.0,51.0,49.0,37.0,37.0,26.0,33.0,25.0,26.0,24.0,26.0,28.0,23.0,24.0,20.0,30.0,23.0,20.0,23.0,17.0,10.0,18.0,18.0,9.0,18.0,8.0,7.0,6.0,7.0,7.0,4.0,4.0,3.0,10.0 B86002,91.0,93.0,88.0,92.0,81.0,88.0,107.0,109.0,93.0,110.0,104.0,91.0,130.0,103.0,101.0,111.0,128.0,96.0,111.0,100.0,88.0,76.0,80.0,89.0,107.0,116.0,110.0,126.0,121.0,102.0,127.0,105.0,116.0,139.0,120.0,102.0,107.0,128.0,128.0,122.0,124.0,101.0,107.0,98.0,104.0,94.0,78.0,76.0,78.0,96.0,85.0,75.0,66.0,86.0,69.0,75.0,53.0,58.0,61.0,62.0,48.0,58.0,58.0,52.0,55.0,38.0,34.0,34.0,36.0,42.0,36.0,29.0,30.0,33.0,28.0,34.0,17.0,33.0,29.0,17.0,19.0,15.0,22.0,15.0,17.0,15.0,8.0,9.0,17.0,8.0,12.0,12.0,5.0,4.0,2.0,7.0 B86003,70.0,98.0,84.0,101.0,103.0,106.0,129.0,117.0,121.0,99.0,124.0,114.0,132.0,104.0,104.0,111.0,95.0,102.0,111.0,84.0,109.0,77.0,70.0,94.0,129.0,122.0,133.0,152.0,163.0,156.0,151.0,159.0,149.0,181.0,150.0,162.0,158.0,147.0,156.0,160.0,160.0,119.0,128.0,132.0,111.0,100.0,105.0,95.0,70.0,97.0,80.0,100.0,77.0,61.0,74.0,80.0,77.0,88.0,103.0,93.0,78.0,66.0,89.0,62.0,70.0,40.0,46.0,54.0,41.0,40.0,52.0,51.0,36.0,38.0,38.0,35.0,42.0,37.0,34.0,24.0,23.0,31.0,19.0,19.0,24.0,15.0,13.0,12.0,11.0,12.0,12.0,12.0,11.0,5.0,7.0,8.0 B86004,33.0,41.0,40.0,45.0,40.0,42.0,49.0,47.0,46.0,45.0,57.0,55.0,48.0,50.0,48.0,50.0,58.0,55.0,44.0,45.0,27.0,36.0,30.0,42.0,44.0,39.0,55.0,50.0,60.0,54.0,44.0,58.0,60.0,56.0,65.0,68.0,59.0,69.0,59.0,72.0,52.0,50.0,70.0,46.0,73.0,55.0,45.0,53.0,50.0,56.0,56.0,48.0,57.0,43.0,67.0,48.0,47.0,58.0,55.0,43.0,50.0,64.0,44.0,52.0,53.0,51.0,40.0,53.0,56.0,54.0,49.0,60.0,39.0,41.0,54.0,45.0,50.0,62.0,46.0,23.0,30.0,22.0,24.0,30.0,23.0,25.0,19.0,22.0,20.0,14.0,18.0,9.0,10.0,5.0,9.0,18.0 B86005,18.0,22.0,31.0,30.0,29.0,28.0,36.0,42.0,29.0,55.0,43.0,38.0,37.0,40.0,42.0,46.0,41.0,32.0,33.0,39.0,40.0,34.0,42.0,35.0,31.0,60.0,37.0,50.0,49.0,40.0,43.0,46.0,56.0,49.0,49.0,35.0,44.0,43.0,35.0,44.0,41.0,38.0,42.0,37.0,42.0,36.0,38.0,33.0,34.0,31.0,37.0,32.0,34.0,31.0,32.0,24.0,28.0,26.0,21.0,28.0,25.0,30.0,21.0,35.0,22.0,20.0,28.0,21.0,18.0,15.0,17.0,15.0,13.0,12.0,14.0,8.0,15.0,16.0,14.0,9.0,11.0,8.0,7.0,8.0,4.0,8.0,6.0,5.0,4.0,3.0,4.0,2.0,5.0,4.0,3.0,5.0 B86006,50.0,55.0,74.0,59.0,62.0,64.0,77.0,83.0,82.0,69.0,75.0,76.0,104.0,91.0,92.0,90.0,101.0,72.0,72.0,75.0,80.0,78.0,71.0,75.0,61.0,70.0,97.0,96.0,90.0,87.0,85.0,130.0,105.0,122.0,119.0,108.0,122.0,110.0,116.0,80.0,107.0,105.0,109.0,84.0,113.0,97.0,103.0,79.0,93.0,105.0,93.0,100.0,100.0,116.0,140.0,117.0,123.0,131.0,131.0,117.0,119.0,99.0,90.0,104.0,98.0,74.0,93.0,82.0,77.0,78.0,79.0,80.0,70.0,72.0,70.0,91.0,67.0,95.0,87.0,60.0,73.0,62.0,57.0,39.0,40.0,44.0,40.0,39.0,33.0,38.0,29.0,28.0,12.0,13.0,10.0,30.0 B86007,46.0,39.0,45.0,55.0,60.0,74.0,70.0,59.0,64.0,67.0,56.0,68.0,50.0,60.0,68.0,68.0,55.0,61.0,46.0,45.0,42.0,47.0,47.0,42.0,62.0,67.0,50.0,62.0,62.0,60.0,74.0,66.0,75.0,81.0,72.0,80.0,65.0,74.0,68.0,71.0,74.0,74.0,70.0,54.0,68.0,52.0,44.0,44.0,45.0,45.0,35.0,39.0,37.0,53.0,57.0,66.0,56.0,63.0,70.0,53.0,66.0,58.0,53.0,55.0,51.0,46.0,56.0,52.0,52.0,37.0,28.0,46.0,41.0,38.0,36.0,36.0,32.0,36.0,28.0,21.0,27.0,27.0,17.0,24.0,20.0,18.0,11.0,21.0,8.0,12.0,8.0,12.0,7.0,7.0,7.0,19.0 B86008,63.0,74.0,91.0,103.0,90.0,129.0,143.0,142.0,122.0,145.0,155.0,136.0,132.0,156.0,146.0,147.0,134.0,125.0,112.0,77.0,72.0,56.0,70.0,81.0,85.0,91.0,83.0,91.0,83.0,77.0,107.0,108.0,81.0,104.0,136.0,145.0,132.0,134.0,151.0,139.0,167.0,164.0,159.0,140.0,185.0,170.0,145.0,114.0,128.0,145.0,126.0,103.0,120.0,146.0,130.0,102.0,104.0,127.0,117.0,118.0,114.0,122.0,131.0,112.0,150.0,128.0,114.0,112.0,109.0,90.0,98.0,121.0,93.0,103.0,88.0,113.0,75.0,112.0,113.0,79.0,66.0,62.0,64.0,39.0,42.0,42.0,29.0,35.0,38.0,26.0,19.0,24.0,21.0,22.0,7.0,36.0 B86009,33.0,34.0,57.0,32.0,54.0,44.0,47.0,39.0,49.0,42.0,43.0,37.0,39.0,43.0,42.0,42.0,34.0,38.0,55.0,25.0,29.0,28.0,25.0,25.0,27.0,38.0,31.0,49.0,36.0,60.0,60.0,52.0,66.0,83.0,80.0,62.0,72.0,64.0,66.0,73.0,64.0,64.0,51.0,68.0,52.0,60.0,57.0,43.0,42.0,49.0,53.0,45.0,46.0,52.0,38.0,49.0,43.0,54.0,48.0,52.0,42.0,67.0,48.0,52.0,51.0,60.0,49.0,56.0,60.0,45.0,43.0,32.0,48.0,40.0,44.0,42.0,35.0,45.0,48.0,34.0,31.0,36.0,34.0,32.0,34.0,22.0,26.0,29.0,32.0,11.0,19.0,11.0,9.0,7.0,6.0,20.0 B86010,21.0,35.0,34.0,42.0,45.0,55.0,44.0,57.0,46.0,65.0,56.0,66.0,58.0,60.0,54.0,56.0,65.0,55.0,54.0,49.0,39.0,35.0,39.0,35.0,31.0,34.0,27.0,22.0,26.0,32.0,39.0,38.0,42.0,44.0,54.0,47.0,34.0,63.0,53.0,61.0,64.0,59.0,60.0,57.0,67.0,72.0,73.0,72.0,64.0,51.0,77.0,52.0,74.0,66.0,67.0,82.0,75.0,86.0,89.0,61.0,84.0,77.0,98.0,74.0,76.0,82.0,78.0,64.0,68.0,73.0,54.0,65.0,72.0,60.0,58.0,64.0,73.0,75.0,82.0,64.0,72.0,64.0,53.0,32.0,35.0,39.0,31.0,31.0,33.0,28.0,13.0,9.0,11.0,10.0,10.0,14.0 B86011,45.0,41.0,32.0,54.0,58.0,49.0,43.0,61.0,48.0,66.0,56.0,63.0,74.0,66.0,72.0,67.0,53.0,61.0,64.0,53.0,56.0,42.0,43.0,53.0,59.0,55.0,60.0,59.0,61.0,70.0,74.0,70.0,69.0,71.0,74.0,61.0,74.0,93.0,69.0,78.0,68.0,70.0,75.0,72.0,86.0,61.0,70.0,64.0,52.0,65.0,58.0,53.0,52.0,60.0,81.0,69.0,61.0,69.0,65.0,69.0,60.0,64.0,62.0,70.0,52.0,53.0,49.0,55.0,46.0,50.0,45.0,45.0,34.0,38.0,50.0,38.0,40.0,44.0,42.0,31.0,29.0,22.0,17.0,21.0,21.0,20.0,14.0,16.0,15.0,15.0,12.0,17.0,5.0,10.0,9.0,9.0 B86012,111.0,103.0,88.0,105.0,94.0,116.0,116.0,119.0,137.0,140.0,149.0,136.0,130.0,147.0,132.0,128.0,137.0,137.0,124.0,125.0,125.0,126.0,141.0,132.0,150.0,200.0,179.0,210.0,201.0,199.0,181.0,162.0,182.0,148.0,172.0,182.0,166.0,177.0,157.0,136.0,154.0,146.0,142.0,142.0,146.0,124.0,114.0,99.0,116.0,108.0,92.0,104.0,100.0,110.0,102.0,96.0,92.0,71.0,89.0,85.0,85.0,82.0,68.0,65.0,80.0,75.0,60.0,64.0,58.0,43.0,50.0,41.0,32.0,31.0,41.0,36.0,33.0,40.0,33.0,25.0,22.0,27.0,23.0,13.0,17.0,18.0,9.0,10.0,12.0,8.0,4.0,5.0,4.0,9.0,7.0,11.0 B86013,103.0,117.0,118.0,121.0,140.0,164.0,175.0,159.0,192.0,168.0,155.0,165.0,168.0,172.0,149.0,178.0,153.0,160.0,123.0,140.0,119.0,128.0,125.0,120.0,129.0,133.0,130.0,125.0,161.0,146.0,156.0,153.0,140.0,152.0,140.0,140.0,171.0,167.0,232.0,167.0,171.0,180.0,188.0,178.0,168.0,146.0,157.0,160.0,154.0,132.0,110.0,114.0,112.0,114.0,99.0,93.0,103.0,97.0,86.0,90.0,75.0,85.0,77.0,56.0,70.0,56.0,57.0,58.0,58.0,48.0,60.0,40.0,45.0,40.0,51.0,61.0,33.0,41.0,48.0,30.0,35.0,36.0,33.0,35.0,22.0,31.0,30.0,35.0,18.0,20.0,21.0,18.0,13.0,8.0,14.0,28.0 B86014,53.0,61.0,42.0,70.0,71.0,70.0,83.0,85.0,86.0,82.0,96.0,95.0,86.0,92.0,99.0,77.0,72.0,82.0,68.0,51.0,60.0,58.0,63.0,56.0,71.0,59.0,84.0,89.0,75.0,74.0,90.0,79.0,93.0,101.0,113.0,107.0,115.0,112.0,117.0,96.0,136.0,135.0,112.0,105.0,120.0,110.0,98.0,76.0,101.0,97.0,78.0,80.0,105.0,101.0,94.0,89.0,84.0,90.0,82.0,96.0,91.0,77.0,80.0,69.0,68.0,70.0,59.0,58.0,63.0,61.0,65.0,58.0,50.0,55.0,46.0,50.0,54.0,72.0,52.0,44.0,43.0,54.0,36.0,42.0,28.0,41.0,29.0,23.0,32.0,17.0,23.0,10.0,12.0,9.0,9.0,39.0 B86015,57.0,59.0,62.0,57.0,66.0,77.0,85.0,79.0,85.0,86.0,88.0,111.0,101.0,97.0,85.0,115.0,88.0,94.0,77.0,79.0,80.0,77.0,77.0,72.0,73.0,91.0,100.0,91.0,102.0,93.0,95.0,107.0,107.0,108.0,142.0,110.0,111.0,111.0,120.0,113.0,116.0,114.0,124.0,99.0,98.0,102.0,90.0,72.0,76.0,87.0,102.0,101.0,81.0,83.0,89.0,91.0,102.0,89.0,85.0,89.0,90.0,74.0,94.0,88.0,83.0,73.0,69.0,65.0,71.0,68.0,75.0,48.0,55.0,43.0,46.0,45.0,51.0,60.0,51.0,25.0,48.0,27.0,28.0,14.0,23.0,23.0,27.0,20.0,17.0,21.0,19.0,9.0,10.0,6.0,4.0,12.0 B86016,98.0,94.0,98.0,114.0,88.0,94.0,133.0,121.0,126.0,129.0,118.0,114.0,126.0,133.0,128.0,123.0,152.0,106.0,107.0,106.0,97.0,101.0,105.0,94.0,103.0,114.0,131.0,117.0,125.0,142.0,144.0,138.0,149.0,185.0,172.0,171.0,169.0,136.0,152.0,150.0,137.0,134.0,134.0,103.0,131.0,106.0,132.0,112.0,113.0,116.0,105.0,101.0,85.0,116.0,127.0,113.0,102.0,100.0,107.0,114.0,103.0,114.0,103.0,100.0,112.0,99.0,82.0,87.0,95.0,71.0,76.0,64.0,79.0,52.0,62.0,68.0,71.0,75.0,64.0,49.0,43.0,51.0,58.0,35.0,34.0,38.0,23.0,26.0,27.0,32.0,17.0,16.0,12.0,12.0,4.0,12.0 B86017,56.0,66.0,64.0,58.0,56.0,71.0,56.0,71.0,64.0,90.0,69.0,65.0,76.0,80.0,73.0,79.0,55.0,54.0,132.0,184.0,180.0,228.0,221.0,240.0,219.0,191.0,186.0,177.0,155.0,157.0,176.0,146.0,122.0,145.0,139.0,124.0,116.0,128.0,146.0,121.0,75.0,95.0,109.0,88.0,96.0,94.0,101.0,85.0,94.0,94.0,81.0,89.0,75.0,72.0,82.0,69.0,94.0,77.0,71.0,78.0,65.0,60.0,80.0,63.0,49.0,52.0,62.0,72.0,54.0,51.0,57.0,52.0,42.0,48.0,47.0,42.0,54.0,66.0,51.0,40.0,43.0,36.0,35.0,27.0,21.0,23.0,18.0,25.0,24.0,8.0,13.0,11.0,8.0,4.0,4.0,13.0 B86018,23.0,40.0,30.0,27.0,25.0,31.0,32.0,34.0,39.0,32.0,29.0,33.0,39.0,31.0,32.0,41.0,41.0,42.0,35.0,30.0,34.0,34.0,36.0,32.0,42.0,34.0,63.0,54.0,62.0,62.0,57.0,60.0,60.0,49.0,63.0,60.0,47.0,51.0,58.0,53.0,50.0,50.0,42.0,49.0,57.0,50.0,42.0,45.0,38.0,51.0,54.0,54.0,60.0,47.0,48.0,41.0,44.0,56.0,59.0,58.0,59.0,59.0,47.0,49.0,66.0,63.0,57.0,47.0,44.0,58.0,41.0,50.0,43.0,38.0,38.0,29.0,55.0,51.0,39.0,30.0,24.0,29.0,38.0,30.0,16.0,21.0,11.0,21.0,15.0,15.0,13.0,7.0,11.0,6.0,1.0,10.0 B86019,90.0,85.0,93.0,110.0,108.0,123.0,110.0,135.0,140.0,154.0,163.0,123.0,162.0,140.0,142.0,121.0,132.0,118.0,117.0,108.0,106.0,78.0,93.0,91.0,102.0,124.0,124.0,125.0,137.0,138.0,147.0,123.0,151.0,150.0,156.0,184.0,160.0,183.0,167.0,183.0,193.0,168.0,154.0,158.0,175.0,164.0,175.0,148.0,143.0,133.0,120.0,114.0,113.0,115.0,143.0,117.0,111.0,111.0,107.0,115.0,100.0,107.0,104.0,98.0,82.0,93.0,76.0,92.0,97.0,82.0,66.0,64.0,67.0,55.0,84.0,66.0,62.0,68.0,62.0,54.0,48.0,45.0,43.0,43.0,34.0,57.0,33.0,31.0,35.0,30.0,29.0,19.0,25.0,11.0,8.0,32.0 B86020,35.0,38.0,40.0,46.0,61.0,46.0,51.0,77.0,61.0,63.0,66.0,68.0,58.0,72.0,64.0,69.0,67.0,60.0,46.0,51.0,45.0,39.0,51.0,41.0,47.0,46.0,57.0,62.0,53.0,61.0,61.0,61.0,105.0,87.0,81.0,69.0,84.0,69.0,81.0,98.0,81.0,95.0,103.0,75.0,81.0,67.0,68.0,68.0,69.0,72.0,72.0,88.0,89.0,75.0,90.0,88.0,77.0,85.0,89.0,70.0,82.0,83.0,95.0,74.0,56.0,59.0,73.0,65.0,54.0,60.0,56.0,49.0,55.0,57.0,48.0,62.0,64.0,81.0,59.0,54.0,51.0,35.0,47.0,28.0,33.0,27.0,25.0,19.0,24.0,21.0,17.0,8.0,10.0,3.0,4.0,9.0 B86022,79.0,87.0,81.0,86.0,90.0,82.0,81.0,77.0,105.0,105.0,100.0,115.0,111.0,127.0,118.0,122.0,103.0,110.0,110.0,97.0,76.0,80.0,77.0,102.0,103.0,104.0,98.0,98.0,115.0,114.0,91.0,112.0,104.0,100.0,107.0,105.0,97.0,121.0,123.0,94.0,96.0,101.0,138.0,120.0,101.0,97.0,95.0,96.0,85.0,77.0,88.0,73.0,83.0,87.0,82.0,114.0,78.0,76.0,74.0,74.0,83.0,76.0,61.0,68.0,51.0,61.0,64.0,50.0,50.0,42.0,36.0,42.0,41.0,39.0,33.0,38.0,38.0,41.0,45.0,27.0,34.0,22.0,32.0,27.0,21.0,21.0,29.0,17.0,20.0,18.0,10.0,13.0,9.0,5.0,7.0,15.0 B86024,35.0,38.0,37.0,46.0,44.0,42.0,50.0,50.0,55.0,46.0,42.0,40.0,44.0,54.0,42.0,52.0,49.0,43.0,50.0,56.0,40.0,53.0,59.0,66.0,67.0,84.0,90.0,89.0,84.0,80.0,81.0,92.0,59.0,75.0,91.0,83.0,50.0,66.0,68.0,65.0,74.0,67.0,55.0,39.0,65.0,53.0,48.0,38.0,52.0,52.0,49.0,53.0,60.0,62.0,65.0,69.0,61.0,58.0,66.0,60.0,54.0,63.0,65.0,54.0,49.0,39.0,51.0,45.0,60.0,36.0,48.0,42.0,43.0,37.0,31.0,32.0,42.0,39.0,38.0,33.0,25.0,21.0,25.0,20.0,18.0,21.0,18.0,18.0,7.0,11.0,10.0,10.0,3.0,8.0,4.0,11.0 B86025,34.0,37.0,30.0,47.0,31.0,48.0,41.0,46.0,40.0,31.0,49.0,36.0,42.0,37.0,36.0,44.0,40.0,45.0,58.0,126.0,192.0,247.0,304.0,273.0,279.0,174.0,150.0,119.0,126.0,99.0,114.0,94.0,85.0,71.0,84.0,72.0,75.0,74.0,65.0,37.0,51.0,43.0,48.0,40.0,51.0,36.0,36.0,44.0,31.0,24.0,35.0,21.0,32.0,34.0,26.0,31.0,31.0,18.0,31.0,24.0,23.0,18.0,21.0,11.0,14.0,28.0,21.0,17.0,21.0,26.0,14.0,19.0,12.0,15.0,21.0,10.0,8.0,8.0,12.0,5.0,5.0,8.0,8.0,4.0,7.0,6.0,4.0,8.0,4.0,5.0,1.0,2.0,1.0,1.0,,1.0 B86028,19.0,30.0,24.0,28.0,32.0,34.0,30.0,22.0,32.0,23.0,35.0,24.0,31.0,30.0,43.0,33.0,24.0,22.0,20.0,17.0,17.0,23.0,14.0,24.0,22.0,30.0,30.0,39.0,38.0,39.0,46.0,53.0,48.0,60.0,47.0,41.0,49.0,40.0,38.0,48.0,38.0,41.0,34.0,43.0,39.0,29.0,34.0,34.0,24.0,28.0,28.0,18.0,27.0,24.0,37.0,32.0,41.0,28.0,41.0,30.0,32.0,30.0,36.0,21.0,23.0,27.0,28.0,26.0,20.0,24.0,19.0,19.0,16.0,18.0,23.0,24.0,16.0,23.0,25.0,10.0,20.0,13.0,12.0,9.0,13.0,9.0,12.0,8.0,8.0,1.0,2.0,1.0,4.0,3.0,2.0,3.0 B86029,23.0,22.0,21.0,21.0,22.0,29.0,30.0,28.0,23.0,29.0,31.0,39.0,37.0,38.0,34.0,38.0,30.0,34.0,32.0,17.0,24.0,21.0,33.0,14.0,29.0,22.0,24.0,35.0,30.0,28.0,33.0,27.0,28.0,31.0,31.0,23.0,49.0,23.0,35.0,47.0,36.0,31.0,39.0,45.0,38.0,50.0,35.0,34.0,31.0,30.0,34.0,50.0,44.0,37.0,46.0,42.0,38.0,54.0,49.0,41.0,43.0,39.0,41.0,39.0,48.0,34.0,41.0,30.0,30.0,35.0,34.0,37.0,32.0,37.0,40.0,40.0,34.0,47.0,29.0,28.0,21.0,23.0,21.0,20.0,12.0,15.0,10.0,10.0,8.0,9.0,3.0,11.0,5.0,5.0,3.0,7.0 B86030,27.0,26.0,18.0,38.0,34.0,22.0,38.0,53.0,31.0,37.0,30.0,35.0,37.0,32.0,31.0,36.0,28.0,42.0,40.0,81.0,118.0,186.0,187.0,215.0,205.0,164.0,158.0,137.0,115.0,104.0,109.0,83.0,83.0,100.0,82.0,83.0,70.0,79.0,68.0,59.0,62.0,50.0,70.0,80.0,57.0,57.0,46.0,60.0,52.0,47.0,40.0,44.0,51.0,49.0,44.0,42.0,56.0,41.0,45.0,48.0,72.0,34.0,45.0,39.0,43.0,41.0,55.0,60.0,58.0,52.0,39.0,52.0,42.0,57.0,44.0,40.0,41.0,52.0,50.0,32.0,31.0,33.0,30.0,23.0,19.0,24.0,31.0,24.0,15.0,29.0,19.0,16.0,10.0,11.0,5.0,38.0 B86032,61.0,68.0,63.0,75.0,88.0,83.0,103.0,103.0,113.0,100.0,99.0,99.0,96.0,105.0,104.0,99.0,101.0,96.0,86.0,81.0,56.0,68.0,62.0,74.0,63.0,71.0,71.0,63.0,68.0,67.0,85.0,95.0,101.0,104.0,118.0,102.0,95.0,108.0,107.0,141.0,139.0,120.0,115.0,117.0,126.0,111.0,118.0,111.0,123.0,106.0,127.0,116.0,136.0,155.0,144.0,137.0,152.0,136.0,147.0,151.0,153.0,141.0,148.0,134.0,135.0,123.0,144.0,132.0,126.0,100.0,123.0,132.0,106.0,134.0,142.0,100.0,138.0,135.0,137.0,90.0,128.0,84.0,76.0,74.0,63.0,71.0,64.0,56.0,44.0,47.0,30.0,31.0,26.0,12.0,14.0,41.0 B86033,28.0,46.0,42.0,65.0,51.0,55.0,61.0,55.0,59.0,50.0,63.0,66.0,57.0,66.0,47.0,54.0,64.0,62.0,50.0,36.0,45.0,43.0,42.0,49.0,46.0,51.0,40.0,44.0,53.0,42.0,71.0,46.0,55.0,75.0,66.0,58.0,80.0,75.0,57.0,60.0,66.0,69.0,69.0,76.0,75.0,73.0,62.0,60.0,62.0,80.0,87.0,70.0,76.0,76.0,84.0,84.0,84.0,99.0,98.0,94.0,90.0,99.0,90.0,88.0,90.0,91.0,103.0,77.0,70.0,76.0,72.0,80.0,81.0,77.0,81.0,77.0,89.0,106.0,108.0,83.0,95.0,73.0,64.0,60.0,64.0,50.0,47.0,41.0,46.0,27.0,30.0,25.0,18.0,14.0,11.0,33.0 B86034,19.0,20.0,32.0,30.0,31.0,31.0,36.0,40.0,34.0,44.0,40.0,39.0,46.0,42.0,57.0,30.0,36.0,46.0,33.0,32.0,25.0,27.0,37.0,21.0,22.0,23.0,19.0,28.0,25.0,19.0,35.0,33.0,33.0,21.0,29.0,37.0,29.0,40.0,48.0,40.0,46.0,42.0,46.0,49.0,52.0,43.0,50.0,47.0,64.0,58.0,52.0,47.0,49.0,55.0,43.0,57.0,47.0,44.0,36.0,49.0,48.0,47.0,41.0,51.0,53.0,51.0,49.0,37.0,39.0,35.0,45.0,41.0,34.0,39.0,43.0,44.0,46.0,56.0,57.0,41.0,41.0,44.0,42.0,24.0,24.0,24.0,22.0,23.0,17.0,8.0,7.0,10.0,5.0,6.0,6.0,13.0 B86035,46.0,50.0,38.0,47.0,53.0,54.0,47.0,57.0,52.0,58.0,60.0,59.0,77.0,62.0,72.0,43.0,50.0,59.0,63.0,50.0,58.0,48.0,44.0,48.0,45.0,68.0,50.0,44.0,68.0,54.0,79.0,73.0,70.0,70.0,98.0,91.0,81.0,72.0,78.0,66.0,80.0,83.0,59.0,61.0,64.0,67.0,37.0,55.0,61.0,51.0,47.0,38.0,62.0,41.0,62.0,64.0,47.0,67.0,63.0,60.0,71.0,56.0,55.0,53.0,59.0,65.0,47.0,40.0,50.0,35.0,42.0,28.0,36.0,42.0,37.0,37.0,37.0,26.0,34.0,22.0,23.0,18.0,24.0,14.0,15.0,20.0,12.0,15.0,19.0,13.0,7.0,2.0,3.0,4.0,8.0,10.0 B86036,38.0,46.0,49.0,50.0,39.0,40.0,51.0,66.0,52.0,66.0,70.0,54.0,63.0,72.0,64.0,73.0,69.0,56.0,48.0,50.0,52.0,41.0,40.0,38.0,51.0,50.0,48.0,62.0,58.0,61.0,56.0,58.0,74.0,66.0,70.0,74.0,81.0,62.0,57.0,65.0,67.0,65.0,73.0,81.0,80.0,75.0,58.0,75.0,71.0,65.0,65.0,77.0,92.0,84.0,81.0,56.0,93.0,67.0,86.0,80.0,85.0,82.0,59.0,73.0,61.0,74.0,86.0,88.0,84.0,56.0,52.0,60.0,68.0,61.0,77.0,89.0,80.0,103.0,81.0,70.0,69.0,56.0,54.0,48.0,25.0,29.0,31.0,22.0,25.0,17.0,14.0,11.0,4.0,10.0,8.0,14.0 B86038,27.0,44.0,42.0,62.0,39.0,48.0,38.0,59.0,68.0,55.0,46.0,64.0,63.0,72.0,71.0,73.0,86.0,78.0,76.0,46.0,46.0,47.0,41.0,45.0,38.0,60.0,55.0,54.0,50.0,68.0,66.0,71.0,59.0,84.0,91.0,80.0,75.0,93.0,75.0,64.0,66.0,80.0,77.0,77.0,97.0,78.0,71.0,67.0,76.0,76.0,69.0,67.0,74.0,69.0,73.0,58.0,78.0,77.0,63.0,56.0,67.0,65.0,68.0,76.0,77.0,68.0,62.0,76.0,57.0,57.0,58.0,47.0,62.0,50.0,66.0,59.0,70.0,76.0,75.0,37.0,45.0,43.0,36.0,25.0,26.0,35.0,31.0,35.0,26.0,24.0,12.0,17.0,15.0,8.0,7.0,27.0 B86039,47.0,44.0,47.0,49.0,60.0,50.0,61.0,59.0,66.0,59.0,62.0,48.0,59.0,60.0,52.0,53.0,58.0,53.0,50.0,55.0,51.0,50.0,42.0,53.0,73.0,77.0,67.0,66.0,83.0,68.0,80.0,79.0,63.0,81.0,104.0,75.0,88.0,89.0,73.0,67.0,65.0,65.0,63.0,77.0,60.0,60.0,66.0,50.0,45.0,58.0,63.0,45.0,64.0,49.0,62.0,46.0,56.0,57.0,70.0,38.0,64.0,50.0,54.0,72.0,52.0,47.0,41.0,41.0,51.0,49.0,31.0,31.0,41.0,35.0,29.0,28.0,34.0,45.0,40.0,17.0,10.0,24.0,22.0,23.0,14.0,9.0,7.0,16.0,12.0,9.0,13.0,6.0,7.0,8.0,3.0,7.0 B86041,27.0,44.0,32.0,44.0,48.0,50.0,41.0,46.0,43.0,36.0,46.0,47.0,46.0,54.0,43.0,44.0,47.0,30.0,36.0,37.0,34.0,38.0,54.0,51.0,51.0,80.0,88.0,76.0,95.0,84.0,82.0,93.0,78.0,74.0,82.0,90.0,90.0,76.0,57.0,68.0,57.0,64.0,59.0,58.0,45.0,61.0,43.0,37.0,41.0,47.0,37.0,27.0,37.0,37.0,36.0,38.0,35.0,31.0,41.0,28.0,49.0,34.0,40.0,39.0,42.0,36.0,34.0,25.0,29.0,19.0,28.0,27.0,28.0,19.0,21.0,20.0,27.0,22.0,20.0,9.0,19.0,17.0,10.0,9.0,10.0,2.0,8.0,10.0,7.0,5.0,10.0,3.0,1.0,4.0,2.0,7.0 B86042,86.0,90.0,86.0,94.0,97.0,97.0,87.0,124.0,89.0,124.0,117.0,132.0,125.0,128.0,132.0,119.0,104.0,111.0,87.0,86.0,80.0,97.0,76.0,102.0,69.0,84.0,118.0,90.0,98.0,97.0,121.0,125.0,138.0,124.0,162.0,143.0,134.0,120.0,142.0,144.0,143.0,130.0,134.0,128.0,107.0,107.0,109.0,102.0,95.0,103.0,81.0,74.0,98.0,95.0,92.0,99.0,104.0,114.0,102.0,99.0,79.0,95.0,67.0,89.0,80.0,72.0,93.0,69.0,66.0,53.0,54.0,42.0,46.0,49.0,42.0,51.0,38.0,47.0,53.0,39.0,40.0,32.0,30.0,23.0,16.0,30.0,23.0,21.0,19.0,14.0,16.0,16.0,7.0,8.0,4.0,6.0 B86043,60.0,62.0,68.0,58.0,65.0,74.0,84.0,78.0,84.0,84.0,90.0,83.0,85.0,79.0,85.0,73.0,81.0,72.0,87.0,58.0,65.0,63.0,68.0,77.0,73.0,71.0,85.0,81.0,102.0,95.0,90.0,89.0,96.0,104.0,87.0,94.0,90.0,85.0,73.0,81.0,65.0,81.0,80.0,68.0,79.0,59.0,65.0,67.0,53.0,49.0,43.0,59.0,53.0,59.0,53.0,45.0,54.0,38.0,39.0,42.0,39.0,36.0,43.0,33.0,34.0,41.0,33.0,34.0,37.0,30.0,30.0,21.0,29.0,31.0,37.0,26.0,25.0,27.0,26.0,17.0,19.0,22.0,19.0,11.0,11.0,19.0,9.0,16.0,6.0,9.0,5.0,4.0,8.0,5.0,,9.0 B86044,141.0,140.0,137.0,157.0,151.0,173.0,152.0,171.0,194.0,202.0,192.0,165.0,171.0,181.0,200.0,175.0,168.0,174.0,155.0,157.0,167.0,115.0,132.0,124.0,132.0,157.0,160.0,153.0,193.0,190.0,205.0,208.0,211.0,254.0,240.0,223.0,209.0,225.0,248.0,242.0,220.0,205.0,239.0,258.0,250.0,216.0,190.0,193.0,195.0,169.0,169.0,156.0,164.0,186.0,165.0,166.0,154.0,152.0,143.0,160.0,172.0,157.0,169.0,160.0,135.0,123.0,136.0,140.0,129.0,109.0,124.0,112.0,119.0,118.0,126.0,111.0,146.0,158.0,152.0,112.0,112.0,95.0,85.0,63.0,68.0,80.0,68.0,71.0,69.0,63.0,49.0,30.0,34.0,29.0,22.0,67.0 B86048,66.0,52.0,54.0,60.0,63.0,68.0,69.0,62.0,90.0,79.0,72.0,73.0,73.0,66.0,92.0,76.0,78.0,92.0,85.0,70.0,71.0,67.0,56.0,55.0,70.0,76.0,79.0,74.0,75.0,86.0,76.0,86.0,102.0,104.0,108.0,105.0,111.0,86.0,92.0,84.0,112.0,116.0,95.0,74.0,102.0,95.0,94.0,109.0,89.0,94.0,79.0,75.0,105.0,95.0,91.0,108.0,106.0,97.0,111.0,89.0,101.0,93.0,108.0,98.0,88.0,78.0,97.0,92.0,82.0,79.0,74.0,76.0,93.0,77.0,85.0,71.0,73.0,97.0,95.0,72.0,79.0,72.0,62.0,69.0,40.0,45.0,50.0,53.0,40.0,44.0,33.0,19.0,24.0,10.0,9.0,34.0 B86049,37.0,47.0,49.0,60.0,49.0,46.0,58.0,58.0,74.0,59.0,73.0,71.0,62.0,57.0,75.0,56.0,65.0,62.0,75.0,83.0,109.0,122.0,117.0,144.0,146.0,129.0,114.0,91.0,89.0,89.0,108.0,90.0,100.0,80.0,90.0,65.0,89.0,69.0,80.0,86.0,66.0,76.0,80.0,66.0,55.0,75.0,53.0,64.0,53.0,60.0,50.0,41.0,48.0,51.0,45.0,46.0,53.0,40.0,39.0,38.0,41.0,39.0,41.0,36.0,42.0,35.0,27.0,42.0,33.0,31.0,25.0,22.0,15.0,18.0,25.0,21.0,19.0,18.0,15.0,18.0,14.0,13.0,15.0,8.0,9.0,14.0,8.0,10.0,9.0,4.0,9.0,5.0,8.0,4.0,4.0,6.0 B86050,86.0,100.0,99.0,127.0,124.0,105.0,125.0,123.0,132.0,125.0,109.0,139.0,130.0,125.0,145.0,128.0,115.0,128.0,95.0,85.0,65.0,75.0,84.0,76.0,81.0,92.0,96.0,131.0,142.0,131.0,144.0,169.0,165.0,171.0,189.0,173.0,176.0,194.0,181.0,180.0,153.0,167.0,173.0,159.0,159.0,159.0,170.0,143.0,118.0,122.0,120.0,144.0,151.0,132.0,146.0,155.0,145.0,111.0,122.0,134.0,132.0,119.0,138.0,104.0,108.0,95.0,101.0,108.0,95.0,94.0,92.0,95.0,84.0,84.0,80.0,98.0,103.0,100.0,109.0,52.0,65.0,61.0,47.0,41.0,47.0,43.0,38.0,35.0,32.0,22.0,26.0,15.0,16.0,13.0,12.0,16.0 B86051,53.0,69.0,57.0,69.0,69.0,73.0,87.0,82.0,80.0,91.0,89.0,84.0,91.0,93.0,85.0,66.0,91.0,81.0,75.0,71.0,79.0,58.0,62.0,81.0,63.0,82.0,72.0,85.0,90.0,92.0,93.0,103.0,97.0,97.0,101.0,99.0,106.0,113.0,80.0,79.0,99.0,98.0,94.0,114.0,115.0,116.0,122.0,81.0,98.0,94.0,111.0,117.0,119.0,146.0,126.0,130.0,125.0,108.0,101.0,113.0,114.0,99.0,111.0,92.0,81.0,75.0,102.0,80.0,77.0,77.0,77.0,83.0,86.0,77.0,79.0,71.0,81.0,101.0,70.0,59.0,72.0,44.0,58.0,33.0,42.0,30.0,37.0,21.0,20.0,22.0,18.0,15.0,9.0,11.0,11.0,16.0 B86052,45.0,56.0,45.0,53.0,56.0,59.0,42.0,65.0,58.0,67.0,70.0,71.0,62.0,84.0,95.0,81.0,64.0,72.0,71.0,53.0,33.0,40.0,45.0,35.0,40.0,49.0,50.0,46.0,44.0,60.0,60.0,74.0,50.0,54.0,63.0,80.0,64.0,90.0,85.0,61.0,86.0,65.0,81.0,92.0,102.0,84.0,82.0,84.0,92.0,80.0,80.0,77.0,92.0,107.0,78.0,66.0,77.0,89.0,90.0,86.0,75.0,77.0,79.0,69.0,71.0,72.0,85.0,75.0,66.0,91.0,76.0,60.0,63.0,68.0,77.0,73.0,65.0,78.0,73.0,62.0,65.0,43.0,51.0,39.0,38.0,46.0,39.0,45.0,31.0,27.0,29.0,21.0,19.0,15.0,13.0,17.0 B86054,33.0,39.0,32.0,27.0,25.0,42.0,30.0,28.0,35.0,31.0,41.0,42.0,40.0,31.0,35.0,45.0,42.0,43.0,59.0,35.0,36.0,32.0,45.0,38.0,48.0,38.0,46.0,35.0,42.0,36.0,30.0,52.0,53.0,51.0,54.0,56.0,44.0,48.0,47.0,35.0,39.0,34.0,40.0,49.0,39.0,46.0,39.0,33.0,33.0,38.0,44.0,35.0,43.0,42.0,54.0,34.0,38.0,31.0,36.0,41.0,35.0,36.0,52.0,47.0,30.0,34.0,31.0,37.0,35.0,33.0,28.0,28.0,30.0,29.0,14.0,22.0,21.0,28.0,19.0,20.0,18.0,14.0,19.0,8.0,3.0,16.0,11.0,8.0,13.0,6.0,4.0,7.0,5.0,4.0,2.0,13.0 B86055,18.0,30.0,24.0,25.0,27.0,25.0,34.0,32.0,53.0,27.0,35.0,45.0,44.0,36.0,35.0,36.0,32.0,37.0,45.0,38.0,33.0,35.0,33.0,29.0,33.0,40.0,31.0,38.0,30.0,34.0,44.0,46.0,47.0,47.0,34.0,58.0,49.0,50.0,48.0,43.0,43.0,42.0,38.0,53.0,65.0,38.0,42.0,38.0,39.0,34.0,41.0,36.0,35.0,37.0,43.0,54.0,44.0,48.0,36.0,35.0,31.0,38.0,49.0,41.0,39.0,27.0,35.0,41.0,29.0,39.0,28.0,37.0,33.0,34.0,31.0,30.0,38.0,46.0,31.0,18.0,25.0,19.0,21.0,18.0,22.0,19.0,16.0,13.0,14.0,11.0,9.0,5.0,8.0,2.0,6.0,17.0 B86057,101.0,99.0,95.0,95.0,86.0,109.0,102.0,107.0,127.0,115.0,120.0,117.0,103.0,118.0,108.0,106.0,111.0,107.0,86.0,100.0,87.0,82.0,84.0,80.0,82.0,99.0,133.0,135.0,157.0,168.0,172.0,162.0,151.0,153.0,182.0,169.0,185.0,162.0,158.0,160.0,157.0,134.0,154.0,155.0,148.0,143.0,137.0,115.0,129.0,123.0,152.0,138.0,147.0,141.0,130.0,132.0,148.0,123.0,125.0,131.0,121.0,129.0,114.0,122.0,132.0,95.0,120.0,96.0,102.0,84.0,87.0,76.0,79.0,82.0,102.0,87.0,88.0,74.0,91.0,58.0,66.0,61.0,45.0,38.0,46.0,37.0,37.0,24.0,25.0,23.0,24.0,20.0,16.0,12.0,10.0,17.0 B86059,71.0,80.0,78.0,84.0,81.0,72.0,88.0,100.0,92.0,95.0,89.0,98.0,101.0,100.0,87.0,108.0,88.0,107.0,65.0,62.0,59.0,51.0,85.0,96.0,113.0,128.0,134.0,146.0,147.0,162.0,127.0,160.0,133.0,160.0,147.0,145.0,146.0,128.0,145.0,155.0,158.0,120.0,135.0,144.0,133.0,116.0,115.0,88.0,91.0,100.0,68.0,89.0,116.0,103.0,126.0,105.0,87.0,88.0,87.0,95.0,90.0,101.0,92.0,87.0,98.0,97.0,79.0,85.0,59.0,54.0,60.0,67.0,65.0,56.0,62.0,48.0,52.0,44.0,52.0,48.0,29.0,28.0,40.0,22.0,19.0,30.0,20.0,28.0,16.0,17.0,12.0,10.0,7.0,5.0,7.0,18.0 B86060,66.0,59.0,62.0,74.0,64.0,54.0,69.0,65.0,62.0,52.0,81.0,64.0,60.0,63.0,67.0,69.0,50.0,39.0,49.0,63.0,72.0,70.0,57.0,69.0,93.0,91.0,82.0,100.0,103.0,108.0,119.0,113.0,115.0,99.0,100.0,107.0,96.0,95.0,89.0,111.0,80.0,75.0,80.0,74.0,76.0,69.0,49.0,56.0,58.0,67.0,53.0,48.0,63.0,47.0,55.0,63.0,51.0,63.0,53.0,72.0,61.0,65.0,64.0,60.0,55.0,55.0,53.0,46.0,45.0,34.0,33.0,35.0,26.0,21.0,39.0,38.0,25.0,27.0,36.0,25.0,25.0,13.0,23.0,13.0,17.0,12.0,16.0,13.0,12.0,16.0,12.0,8.0,10.0,4.0,5.0,7.0 B86061,33.0,35.0,46.0,30.0,32.0,42.0,46.0,41.0,34.0,24.0,41.0,33.0,46.0,24.0,29.0,40.0,30.0,31.0,43.0,42.0,46.0,35.0,43.0,65.0,53.0,51.0,49.0,46.0,44.0,54.0,51.0,43.0,52.0,49.0,41.0,43.0,50.0,38.0,32.0,37.0,41.0,27.0,52.0,26.0,36.0,26.0,31.0,24.0,19.0,32.0,22.0,15.0,19.0,20.0,22.0,16.0,16.0,19.0,12.0,17.0,14.0,8.0,13.0,14.0,14.0,6.0,8.0,6.0,14.0,16.0,9.0,10.0,7.0,8.0,5.0,6.0,1.0,4.0,7.0,4.0,3.0,4.0,3.0,4.0,4.0,1.0,4.0,5.0,2.0,1.0,3.0,1.0,3.0,1.0,,1.0 B86062,17.0,25.0,35.0,16.0,35.0,41.0,47.0,34.0,37.0,36.0,34.0,53.0,45.0,50.0,58.0,65.0,62.0,63.0,56.0,39.0,42.0,39.0,38.0,46.0,32.0,43.0,40.0,47.0,38.0,45.0,52.0,36.0,44.0,64.0,69.0,61.0,59.0,55.0,49.0,59.0,41.0,44.0,58.0,50.0,44.0,59.0,47.0,48.0,44.0,56.0,38.0,51.0,52.0,58.0,62.0,56.0,63.0,66.0,72.0,57.0,49.0,67.0,64.0,50.0,60.0,43.0,58.0,50.0,49.0,47.0,35.0,48.0,36.0,48.0,38.0,42.0,37.0,46.0,43.0,33.0,22.0,29.0,32.0,15.0,19.0,10.0,13.0,22.0,15.0,11.0,18.0,11.0,3.0,2.0,3.0,10.0 B86064,69.0,77.0,56.0,91.0,82.0,82.0,86.0,82.0,94.0,85.0,85.0,102.0,97.0,103.0,107.0,110.0,109.0,103.0,97.0,93.0,77.0,79.0,79.0,91.0,84.0,92.0,94.0,96.0,100.0,112.0,119.0,107.0,123.0,119.0,126.0,120.0,108.0,110.0,126.0,115.0,120.0,137.0,104.0,123.0,114.0,123.0,100.0,86.0,101.0,100.0,87.0,112.0,142.0,126.0,141.0,113.0,127.0,155.0,133.0,123.0,142.0,138.0,121.0,110.0,104.0,96.0,99.0,104.0,85.0,85.0,76.0,73.0,77.0,71.0,58.0,73.0,74.0,78.0,65.0,68.0,69.0,59.0,51.0,43.0,34.0,41.0,33.0,22.0,28.0,27.0,24.0,16.0,7.0,6.0,4.0,21.0 B86066,71.0,79.0,80.0,71.0,76.0,71.0,90.0,90.0,93.0,101.0,103.0,89.0,72.0,79.0,89.0,81.0,80.0,69.0,67.0,54.0,44.0,53.0,52.0,58.0,63.0,58.0,77.0,87.0,76.0,95.0,91.0,100.0,99.0,104.0,108.0,108.0,108.0,108.0,124.0,131.0,123.0,115.0,123.0,145.0,125.0,105.0,112.0,109.0,99.0,98.0,90.0,100.0,79.0,117.0,99.0,74.0,98.0,88.0,87.0,82.0,91.0,82.0,67.0,101.0,76.0,59.0,66.0,91.0,73.0,62.0,62.0,72.0,79.0,75.0,87.0,46.0,63.0,69.0,57.0,41.0,59.0,51.0,44.0,27.0,28.0,44.0,35.0,30.0,32.0,24.0,24.0,16.0,13.0,7.0,8.0,23.0 B86067,50.0,57.0,63.0,64.0,64.0,70.0,90.0,83.0,110.0,108.0,115.0,104.0,109.0,98.0,98.0,102.0,107.0,92.0,104.0,96.0,66.0,71.0,70.0,64.0,77.0,83.0,103.0,88.0,84.0,82.0,93.0,102.0,106.0,126.0,129.0,112.0,130.0,132.0,123.0,126.0,142.0,133.0,121.0,126.0,150.0,141.0,127.0,111.0,116.0,115.0,101.0,114.0,105.0,125.0,121.0,114.0,110.0,111.0,126.0,115.0,127.0,114.0,107.0,110.0,101.0,102.0,97.0,81.0,72.0,79.0,63.0,77.0,82.0,76.0,82.0,95.0,83.0,88.0,96.0,70.0,65.0,51.0,49.0,34.0,24.0,35.0,27.0,30.0,20.0,19.0,27.0,12.0,9.0,8.0,5.0,12.0 B86068,42.0,26.0,36.0,25.0,34.0,37.0,41.0,38.0,34.0,38.0,37.0,36.0,42.0,47.0,37.0,48.0,38.0,50.0,33.0,49.0,52.0,34.0,40.0,55.0,60.0,46.0,63.0,51.0,68.0,49.0,58.0,73.0,63.0,55.0,66.0,50.0,58.0,49.0,65.0,56.0,42.0,54.0,36.0,63.0,51.0,39.0,39.0,52.0,61.0,47.0,54.0,43.0,53.0,42.0,43.0,50.0,45.0,49.0,54.0,46.0,55.0,40.0,36.0,40.0,39.0,42.0,35.0,53.0,39.0,36.0,30.0,38.0,41.0,39.0,28.0,28.0,33.0,34.0,46.0,27.0,31.0,18.0,15.0,19.0,19.0,21.0,11.0,20.0,22.0,9.0,13.0,10.0,3.0,6.0,9.0,12.0 B86069,33.0,44.0,35.0,54.0,44.0,40.0,50.0,37.0,52.0,46.0,35.0,38.0,36.0,50.0,43.0,38.0,48.0,35.0,42.0,79.0,142.0,210.0,294.0,292.0,368.0,350.0,298.0,272.0,192.0,185.0,186.0,151.0,148.0,120.0,110.0,108.0,104.0,81.0,97.0,86.0,85.0,61.0,75.0,56.0,61.0,56.0,38.0,42.0,45.0,39.0,27.0,44.0,40.0,40.0,38.0,40.0,42.0,32.0,34.0,29.0,40.0,36.0,35.0,30.0,38.0,37.0,27.0,36.0,34.0,21.0,21.0,11.0,20.0,27.0,14.0,21.0,18.0,20.0,18.0,8.0,13.0,12.0,13.0,9.0,5.0,10.0,10.0,16.0,17.0,7.0,6.0,6.0,4.0,1.0,4.0,9.0 B86070,16.0,14.0,8.0,16.0,20.0,12.0,16.0,20.0,25.0,24.0,25.0,19.0,33.0,21.0,24.0,25.0,21.0,24.0,26.0,19.0,18.0,19.0,17.0,24.0,14.0,14.0,22.0,23.0,32.0,23.0,20.0,38.0,40.0,37.0,32.0,44.0,20.0,33.0,28.0,37.0,32.0,35.0,21.0,31.0,27.0,22.0,29.0,28.0,26.0,33.0,28.0,32.0,33.0,20.0,39.0,34.0,29.0,30.0,26.0,26.0,28.0,40.0,29.0,22.0,32.0,23.0,24.0,28.0,26.0,27.0,35.0,23.0,20.0,28.0,24.0,32.0,27.0,27.0,37.0,15.0,21.0,20.0,21.0,18.0,19.0,13.0,12.0,9.0,9.0,13.0,9.0,10.0,11.0,8.0,4.0,10.0 B86071,32.0,46.0,59.0,41.0,48.0,51.0,43.0,59.0,56.0,71.0,49.0,63.0,72.0,61.0,71.0,46.0,63.0,58.0,46.0,60.0,42.0,36.0,52.0,39.0,46.0,59.0,52.0,51.0,57.0,64.0,64.0,78.0,77.0,58.0,63.0,58.0,83.0,65.0,73.0,68.0,61.0,65.0,66.0,54.0,56.0,55.0,51.0,47.0,38.0,53.0,39.0,69.0,41.0,64.0,58.0,56.0,62.0,51.0,57.0,61.0,61.0,48.0,49.0,48.0,57.0,40.0,49.0,47.0,43.0,37.0,27.0,28.0,27.0,19.0,28.0,32.0,28.0,37.0,24.0,18.0,26.0,26.0,20.0,19.0,11.0,19.0,7.0,8.0,4.0,14.0,10.0,5.0,8.0,6.0,3.0,5.0 B86075,47.0,59.0,72.0,76.0,70.0,64.0,78.0,80.0,75.0,84.0,64.0,73.0,83.0,75.0,85.0,96.0,80.0,67.0,56.0,70.0,54.0,70.0,61.0,64.0,71.0,72.0,75.0,73.0,65.0,77.0,82.0,87.0,105.0,99.0,118.0,92.0,111.0,89.0,97.0,92.0,90.0,88.0,83.0,101.0,103.0,111.0,100.0,75.0,78.0,89.0,61.0,84.0,85.0,88.0,96.0,107.0,100.0,114.0,94.0,100.0,92.0,92.0,106.0,81.0,103.0,70.0,57.0,79.0,62.0,69.0,67.0,60.0,54.0,71.0,52.0,56.0,60.0,70.0,66.0,44.0,52.0,39.0,36.0,31.0,53.0,39.0,29.0,33.0,35.0,19.0,16.0,15.0,16.0,10.0,17.0,24.0 B86081,92.0,110.0,106.0,128.0,117.0,129.0,125.0,142.0,116.0,130.0,118.0,144.0,128.0,137.0,141.0,154.0,140.0,125.0,128.0,110.0,109.0,110.0,113.0,108.0,109.0,90.0,113.0,96.0,101.0,105.0,87.0,101.0,113.0,95.0,93.0,107.0,97.0,111.0,117.0,94.0,102.0,108.0,91.0,101.0,93.0,103.0,90.0,94.0,67.0,86.0,82.0,82.0,62.0,79.0,74.0,68.0,62.0,62.0,57.0,65.0,65.0,50.0,55.0,54.0,52.0,33.0,30.0,40.0,43.0,32.0,24.0,29.0,32.0,16.0,24.0,29.0,19.0,27.0,33.0,11.0,12.0,13.0,19.0,12.0,17.0,18.0,10.0,11.0,12.0,10.0,8.0,3.0,5.0,7.0,6.0,6.0 B86086,15.0,35.0,21.0,19.0,21.0,25.0,18.0,23.0,24.0,17.0,22.0,20.0,20.0,16.0,21.0,17.0,13.0,19.0,51.0,112.0,157.0,139.0,109.0,128.0,130.0,153.0,123.0,123.0,117.0,99.0,102.0,77.0,67.0,54.0,52.0,50.0,53.0,49.0,40.0,47.0,47.0,31.0,43.0,32.0,30.0,25.0,32.0,31.0,18.0,26.0,21.0,16.0,27.0,19.0,26.0,15.0,26.0,24.0,20.0,18.0,29.0,27.0,25.0,29.0,15.0,25.0,30.0,22.0,21.0,18.0,28.0,21.0,22.0,25.0,17.0,18.0,12.0,17.0,19.0,12.0,10.0,8.0,12.0,5.0,5.0,7.0,3.0,3.0,4.0,3.0,6.0,3.0,4.0,,2.0,3.0 B86089,24.0,22.0,26.0,28.0,23.0,38.0,28.0,31.0,37.0,43.0,35.0,37.0,40.0,41.0,39.0,37.0,41.0,39.0,31.0,30.0,28.0,23.0,35.0,21.0,27.0,23.0,24.0,28.0,23.0,42.0,42.0,46.0,36.0,47.0,58.0,47.0,35.0,50.0,52.0,40.0,36.0,35.0,32.0,37.0,39.0,39.0,33.0,38.0,35.0,33.0,34.0,33.0,38.0,35.0,36.0,44.0,36.0,43.0,45.0,43.0,58.0,33.0,36.0,31.0,23.0,33.0,42.0,35.0,37.0,23.0,31.0,22.0,26.0,27.0,25.0,32.0,25.0,29.0,36.0,29.0,22.0,20.0,24.0,14.0,19.0,20.0,10.0,8.0,12.0,13.0,8.0,3.0,2.0,3.0,2.0,10.0 B86092,32.0,31.0,33.0,29.0,31.0,35.0,34.0,46.0,28.0,42.0,42.0,41.0,38.0,38.0,46.0,34.0,35.0,36.0,38.0,34.0,30.0,28.0,35.0,36.0,31.0,39.0,38.0,33.0,37.0,47.0,45.0,42.0,51.0,52.0,54.0,43.0,52.0,42.0,45.0,40.0,38.0,48.0,48.0,33.0,39.0,50.0,46.0,38.0,43.0,51.0,45.0,46.0,44.0,46.0,59.0,56.0,53.0,66.0,59.0,48.0,59.0,47.0,51.0,41.0,56.0,41.0,38.0,37.0,39.0,41.0,33.0,39.0,32.0,38.0,31.0,42.0,33.0,61.0,37.0,38.0,35.0,19.0,25.0,21.0,9.0,9.0,16.0,14.0,7.0,18.0,7.0,9.0,4.0,1.0,3.0,8.0 B86093,23.0,28.0,18.0,32.0,23.0,32.0,38.0,32.0,27.0,40.0,42.0,42.0,48.0,29.0,44.0,41.0,25.0,47.0,44.0,32.0,19.0,20.0,33.0,29.0,26.0,31.0,37.0,37.0,35.0,41.0,39.0,35.0,37.0,49.0,38.0,38.0,45.0,55.0,48.0,53.0,46.0,53.0,42.0,54.0,42.0,46.0,32.0,39.0,34.0,35.0,37.0,35.0,29.0,31.0,33.0,38.0,42.0,44.0,27.0,33.0,37.0,36.0,34.0,42.0,38.0,32.0,34.0,28.0,27.0,21.0,26.0,27.0,25.0,22.0,33.0,32.0,29.0,30.0,19.0,19.0,19.0,14.0,11.0,18.0,16.0,10.0,9.0,10.0,10.0,10.0,9.0,6.0,2.0,2.0,4.0,9.0 B86094,25.0,28.0,30.0,31.0,34.0,25.0,24.0,26.0,36.0,32.0,36.0,24.0,24.0,31.0,32.0,38.0,31.0,18.0,24.0,22.0,20.0,21.0,26.0,32.0,19.0,34.0,38.0,26.0,36.0,34.0,44.0,37.0,41.0,45.0,44.0,56.0,42.0,31.0,31.0,28.0,24.0,36.0,25.0,43.0,29.0,39.0,32.0,21.0,25.0,33.0,20.0,26.0,33.0,35.0,28.0,24.0,45.0,33.0,31.0,19.0,25.0,34.0,27.0,41.0,27.0,27.0,17.0,14.0,21.0,22.0,22.0,23.0,15.0,17.0,17.0,16.0,24.0,29.0,13.0,18.0,13.0,6.0,18.0,14.0,4.0,10.0,11.0,9.0,9.0,7.0,7.0,3.0,3.0,1.0,2.0,5.0 B86096,19.0,22.0,33.0,34.0,35.0,26.0,38.0,35.0,26.0,37.0,33.0,41.0,44.0,45.0,35.0,35.0,38.0,34.0,26.0,30.0,44.0,31.0,37.0,29.0,38.0,26.0,34.0,39.0,31.0,49.0,41.0,46.0,42.0,47.0,42.0,54.0,38.0,51.0,36.0,51.0,44.0,38.0,48.0,36.0,33.0,44.0,30.0,31.0,31.0,34.0,25.0,29.0,29.0,31.0,31.0,31.0,43.0,36.0,37.0,27.0,24.0,34.0,31.0,16.0,33.0,29.0,28.0,28.0,24.0,18.0,16.0,14.0,15.0,21.0,16.0,22.0,16.0,14.0,16.0,9.0,6.0,10.0,7.0,10.0,3.0,8.0,12.0,7.0,5.0,4.0,2.0,7.0,3.0,3.0,3.0,8.0 B86100,34.0,44.0,39.0,43.0,36.0,41.0,37.0,32.0,42.0,29.0,43.0,39.0,34.0,43.0,27.0,37.0,36.0,37.0,32.0,42.0,40.0,32.0,44.0,54.0,42.0,64.0,63.0,60.0,68.0,73.0,99.0,77.0,79.0,81.0,76.0,84.0,86.0,72.0,63.0,74.0,51.0,61.0,57.0,52.0,63.0,63.0,51.0,44.0,42.0,40.0,36.0,32.0,39.0,38.0,39.0,48.0,50.0,51.0,46.0,69.0,57.0,58.0,59.0,31.0,63.0,50.0,29.0,41.0,49.0,30.0,32.0,32.0,25.0,20.0,19.0,29.0,14.0,22.0,23.0,18.0,10.0,15.0,16.0,17.0,13.0,9.0,10.0,9.0,9.0,9.0,8.0,5.0,6.0,3.0,6.0,11.0 B86101,9.0,19.0,20.0,17.0,12.0,16.0,20.0,21.0,15.0,23.0,20.0,17.0,16.0,19.0,15.0,20.0,15.0,18.0,16.0,9.0,14.0,14.0,13.0,7.0,7.0,15.0,19.0,24.0,18.0,21.0,29.0,29.0,27.0,17.0,29.0,27.0,27.0,22.0,29.0,25.0,27.0,19.0,19.0,29.0,13.0,28.0,19.0,21.0,20.0,15.0,21.0,23.0,20.0,23.0,24.0,20.0,19.0,17.0,25.0,18.0,16.0,18.0,22.0,20.0,21.0,15.0,25.0,19.0,22.0,17.0,19.0,13.0,21.0,24.0,18.0,17.0,30.0,25.0,26.0,16.0,11.0,15.0,16.0,14.0,13.0,7.0,16.0,7.0,4.0,11.0,6.0,3.0,5.0,1.0,5.0,7.0 B86103,45.0,37.0,39.0,48.0,42.0,35.0,40.0,41.0,39.0,27.0,37.0,45.0,38.0,44.0,30.0,57.0,49.0,35.0,39.0,33.0,30.0,47.0,46.0,42.0,51.0,45.0,50.0,42.0,40.0,41.0,33.0,50.0,39.0,30.0,37.0,32.0,48.0,33.0,34.0,35.0,24.0,25.0,30.0,27.0,18.0,33.0,18.0,24.0,34.0,20.0,14.0,18.0,22.0,13.0,18.0,18.0,15.0,26.0,14.0,13.0,13.0,3.0,13.0,6.0,9.0,3.0,11.0,9.0,9.0,1.0,5.0,4.0,3.0,10.0,6.0,6.0,3.0,7.0,6.0,4.0,2.0,1.0,6.0,1.0,3.0,2.0,2.0,1.0,2.0,3.0,2.0,1.0,1.0,1.0,,2.0 B86104,88.0,118.0,101.0,118.0,119.0,136.0,124.0,122.0,135.0,133.0,122.0,125.0,130.0,145.0,135.0,108.0,117.0,106.0,107.0,83.0,86.0,102.0,87.0,109.0,106.0,134.0,143.0,181.0,200.0,158.0,175.0,168.0,214.0,200.0,171.0,202.0,157.0,158.0,169.0,168.0,153.0,123.0,134.0,106.0,140.0,138.0,82.0,76.0,85.0,98.0,90.0,66.0,82.0,76.0,82.0,84.0,84.0,83.0,76.0,76.0,66.0,66.0,53.0,64.0,56.0,46.0,48.0,55.0,42.0,49.0,33.0,35.0,41.0,45.0,30.0,27.0,28.0,26.0,29.0,18.0,13.0,19.0,13.0,17.0,13.0,13.0,14.0,10.0,9.0,7.0,5.0,9.0,6.0,1.0,5.0,6.0 B86106,42.0,62.0,49.0,52.0,46.0,63.0,77.0,65.0,57.0,56.0,58.0,61.0,71.0,59.0,63.0,54.0,58.0,55.0,53.0,55.0,59.0,61.0,45.0,47.0,50.0,56.0,50.0,58.0,55.0,72.0,61.0,57.0,72.0,64.0,71.0,66.0,62.0,76.0,62.0,61.0,64.0,53.0,60.0,50.0,41.0,44.0,46.0,40.0,42.0,51.0,42.0,33.0,41.0,41.0,56.0,43.0,48.0,37.0,33.0,46.0,34.0,45.0,42.0,31.0,25.0,31.0,23.0,32.0,22.0,25.0,22.0,24.0,19.0,14.0,13.0,24.0,22.0,18.0,18.0,15.0,14.0,15.0,12.0,6.0,4.0,6.0,4.0,3.0,4.0,5.0,1.0,1.0,,1.0,1.0,2.0 B86108,40.0,41.0,35.0,49.0,55.0,38.0,45.0,51.0,48.0,49.0,51.0,34.0,34.0,40.0,46.0,46.0,47.0,39.0,45.0,56.0,46.0,45.0,56.0,38.0,63.0,71.0,67.0,55.0,59.0,60.0,62.0,62.0,60.0,50.0,48.0,57.0,54.0,65.0,50.0,51.0,56.0,26.0,49.0,46.0,36.0,55.0,30.0,43.0,49.0,39.0,44.0,28.0,38.0,37.0,33.0,23.0,32.0,29.0,24.0,28.0,37.0,30.0,34.0,24.0,23.0,22.0,19.0,21.0,13.0,10.0,10.0,13.0,14.0,11.0,11.0,8.0,13.0,6.0,6.0,7.0,7.0,6.0,5.0,8.0,4.0,5.0,12.0,2.0,5.0,3.0,3.0,1.0,2.0,1.0,,3.0 B86109,18.0,26.0,23.0,27.0,36.0,21.0,16.0,40.0,29.0,33.0,38.0,29.0,29.0,26.0,34.0,27.0,34.0,28.0,26.0,37.0,77.0,100.0,103.0,126.0,126.0,123.0,103.0,108.0,87.0,84.0,71.0,69.0,67.0,62.0,74.0,72.0,65.0,64.0,61.0,74.0,54.0,56.0,62.0,45.0,42.0,42.0,31.0,24.0,49.0,29.0,34.0,25.0,28.0,41.0,27.0,28.0,29.0,25.0,22.0,29.0,23.0,22.0,24.0,29.0,27.0,28.0,19.0,19.0,22.0,10.0,15.0,12.0,20.0,15.0,14.0,13.0,17.0,10.0,12.0,7.0,6.0,9.0,9.0,11.0,9.0,5.0,5.0,9.0,2.0,5.0,3.0,8.0,,5.0,,11.0 B86110,9.0,10.0,9.0,8.0,11.0,11.0,12.0,10.0,14.0,11.0,10.0,5.0,4.0,9.0,6.0,7.0,8.0,26.0,803.0,2178.0,2665.0,2614.0,2602.0,2678.0,2706.0,1815.0,1308.0,1094.0,683.0,426.0,304.0,236.0,175.0,139.0,111.0,90.0,75.0,55.0,54.0,34.0,37.0,21.0,15.0,16.0,10.0,7.0,6.0,8.0,6.0,1.0,4.0,,1.0,,2.0,1.0,2.0,1.0,,,,,3.0,,,,,,1.0,1.0,,1.0,,,,,,,,,,,,,,,,,,,,,,,, B86623,34.0,39.0,59.0,49.0,59.0,48.0,42.0,49.0,74.0,45.0,55.0,45.0,38.0,53.0,47.0,46.0,43.0,43.0,39.0,36.0,42.0,32.0,44.0,58.0,45.0,31.0,47.0,40.0,38.0,36.0,37.0,48.0,25.0,28.0,47.0,28.0,39.0,28.0,33.0,28.0,28.0,25.0,23.0,22.0,25.0,30.0,14.0,22.0,20.0,12.0,19.0,14.0,21.0,18.0,17.0,19.0,17.0,13.0,9.0,10.0,10.0,6.0,8.0,5.0,7.0,6.0,6.0,7.0,4.0,3.0,2.0,2.0,1.0,5.0,2.0,2.0,1.0,1.0,1.0,3.0,1.0,2.0,2.0,5.0,,,,,,,2.0,,,,, B86625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, B86642,18.0,16.0,13.0,15.0,24.0,20.0,17.0,26.0,17.0,21.0,21.0,16.0,14.0,18.0,11.0,17.0,12.0,14.0,14.0,12.0,9.0,17.0,21.0,20.0,25.0,28.0,38.0,39.0,33.0,30.0,37.0,31.0,43.0,36.0,29.0,31.0,27.0,32.0,27.0,24.0,28.0,17.0,18.0,18.0,22.0,15.0,13.0,10.0,13.0,10.0,14.0,11.0,13.0,12.0,13.0,18.0,11.0,16.0,22.0,14.0,24.0,12.0,20.0,17.0,7.0,8.0,7.0,10.0,12.0,6.0,12.0,9.0,10.0,9.0,6.0,5.0,3.0,8.0,8.0,1.0,2.0,6.0,5.0,,3.0,5.0,2.0,4.0,3.0,,2.0,,,,1.0,2.0 B86643,27.0,21.0,24.0,27.0,22.0,37.0,28.0,21.0,28.0,31.0,22.0,26.0,27.0,27.0,30.0,36.0,32.0,24.0,32.0,20.0,20.0,34.0,24.0,38.0,32.0,34.0,30.0,23.0,32.0,28.0,40.0,24.0,22.0,26.0,25.0,20.0,29.0,29.0,24.0,35.0,24.0,25.0,21.0,18.0,17.0,23.0,25.0,26.0,24.0,19.0,14.0,23.0,21.0,17.0,8.0,16.0,12.0,11.0,9.0,8.0,7.0,10.0,4.0,16.0,7.0,8.0,8.0,9.0,13.0,7.0,4.0,11.0,4.0,5.0,11.0,7.0,3.0,5.0,2.0,2.0,2.0,1.0,,5.0,3.0,1.0,7.0,2.0,3.0,2.0,1.0,1.0,,1.0,1.0,6.0 B86648,3.0,9.0,8.0,10.0,10.0,6.0,9.0,10.0,10.0,7.0,8.0,8.0,10.0,8.0,6.0,12.0,8.0,11.0,8.0,7.0,6.0,11.0,6.0,10.0,10.0,11.0,13.0,8.0,13.0,11.0,12.0,10.0,20.0,14.0,15.0,24.0,11.0,11.0,9.0,18.0,13.0,9.0,8.0,13.0,8.0,12.0,14.0,7.0,9.0,11.0,10.0,9.0,12.0,24.0,18.0,22.0,21.0,12.0,22.0,28.0,29.0,19.0,20.0,27.0,18.0,20.0,20.0,20.0,22.0,13.0,19.0,20.0,12.0,15.0,22.0,17.0,19.0,12.0,19.0,13.0,13.0,15.0,12.0,10.0,14.0,12.0,9.0,10.0,5.0,6.0,6.0,4.0,3.0,2.0,2.0,4.0 B86655,10.0,10.0,10.0,7.0,8.0,13.0,18.0,12.0,14.0,14.0,15.0,11.0,12.0,6.0,11.0,16.0,7.0,12.0,11.0,15.0,10.0,8.0,9.0,14.0,11.0,12.0,10.0,15.0,20.0,21.0,16.0,20.0,21.0,14.0,17.0,13.0,14.0,6.0,14.0,15.0,19.0,14.0,20.0,17.0,14.0,15.0,13.0,4.0,14.0,8.0,8.0,14.0,6.0,12.0,9.0,13.0,15.0,16.0,6.0,11.0,12.0,12.0,11.0,9.0,10.0,10.0,7.0,6.0,8.0,7.0,5.0,6.0,10.0,6.0,4.0,12.0,9.0,5.0,4.0,2.0,8.0,,7.0,3.0,1.0,3.0,2.0,4.0,2.0,1.0,,3.0,,1.0,, B86658,44.0,46.0,58.0,46.0,51.0,50.0,51.0,57.0,63.0,62.0,62.0,60.0,48.0,80.0,52.0,68.0,61.0,53.0,52.0,45.0,32.0,54.0,54.0,35.0,47.0,55.0,60.0,64.0,78.0,67.0,82.0,83.0,70.0,80.0,71.0,91.0,82.0,99.0,78.0,67.0,87.0,76.0,76.0,80.0,77.0,69.0,57.0,84.0,66.0,70.0,73.0,67.0,91.0,65.0,83.0,67.0,66.0,75.0,55.0,74.0,77.0,70.0,73.0,79.0,54.0,70.0,64.0,66.0,70.0,51.0,46.0,57.0,42.0,42.0,53.0,60.0,55.0,62.0,66.0,56.0,61.0,41.0,30.0,24.0,32.0,34.0,21.0,22.0,19.0,16.0,18.0,11.0,14.0,13.0,7.0,13.0 B86666,30.0,36.0,45.0,24.0,39.0,30.0,34.0,41.0,31.0,39.0,34.0,42.0,47.0,48.0,32.0,41.0,31.0,38.0,32.0,36.0,32.0,41.0,35.0,36.0,38.0,34.0,49.0,58.0,72.0,36.0,44.0,37.0,37.0,38.0,47.0,37.0,49.0,52.0,35.0,39.0,42.0,28.0,28.0,31.0,31.0,28.0,45.0,26.0,26.0,32.0,27.0,31.0,21.0,23.0,25.0,22.0,29.0,25.0,16.0,27.0,17.0,18.0,18.0,23.0,24.0,11.0,21.0,14.0,10.0,15.0,13.0,16.0,8.0,18.0,12.0,10.0,10.0,12.0,9.0,7.0,5.0,6.0,9.0,4.0,4.0,6.0,1.0,2.0,5.0,5.0,5.0,1.0,3.0,3.0,3.0,2.0 B86667,47.0,44.0,61.0,60.0,46.0,58.0,79.0,66.0,74.0,68.0,50.0,59.0,53.0,67.0,61.0,46.0,67.0,47.0,53.0,49.0,30.0,43.0,31.0,29.0,47.0,43.0,47.0,64.0,67.0,79.0,93.0,87.0,69.0,88.0,87.0,93.0,74.0,78.0,87.0,60.0,76.0,65.0,63.0,59.0,56.0,61.0,51.0,39.0,52.0,48.0,48.0,36.0,35.0,21.0,34.0,38.0,40.0,46.0,34.0,43.0,29.0,31.0,29.0,27.0,24.0,37.0,18.0,29.0,24.0,17.0,25.0,21.0,18.0,18.0,18.0,19.0,14.0,16.0,19.0,13.0,4.0,6.0,19.0,11.0,18.0,5.0,7.0,11.0,7.0,4.0,5.0,3.0,1.0,2.0,2.0,1.0 B86669,2.0,3.0,6.0,7.0,4.0,6.0,6.0,3.0,6.0,1.0,5.0,8.0,5.0,4.0,2.0,3.0,5.0,2.0,5.0,,7.0,6.0,2.0,2.0,6.0,4.0,6.0,5.0,10.0,10.0,10.0,9.0,14.0,9.0,17.0,10.0,12.0,7.0,9.0,13.0,14.0,10.0,15.0,8.0,7.0,4.0,9.0,5.0,4.0,10.0,5.0,3.0,4.0,4.0,5.0,2.0,2.0,5.0,2.0,,1.0,1.0,,,1.0,2.0,,1.0,2.0,,,,,,,,1.0,,,,,,1.0,,,,,,,,,,,,, B86672,37.0,42.0,43.0,37.0,38.0,44.0,43.0,45.0,48.0,55.0,48.0,38.0,42.0,46.0,59.0,36.0,44.0,36.0,27.0,22.0,30.0,32.0,34.0,37.0,34.0,38.0,44.0,40.0,41.0,64.0,59.0,83.0,70.0,71.0,64.0,72.0,57.0,81.0,51.0,47.0,62.0,54.0,45.0,59.0,47.0,55.0,48.0,39.0,26.0,33.0,31.0,47.0,36.0,47.0,41.0,43.0,42.0,41.0,44.0,32.0,49.0,37.0,23.0,35.0,42.0,28.0,26.0,20.0,25.0,28.0,25.0,22.0,26.0,18.0,26.0,29.0,22.0,22.0,25.0,19.0,9.0,17.0,14.0,14.0,11.0,10.0,11.0,5.0,14.0,6.0,8.0,8.0,2.0,3.0,3.0,6.0 B86673,22.0,25.0,19.0,25.0,29.0,36.0,31.0,42.0,44.0,39.0,41.0,39.0,43.0,44.0,31.0,34.0,29.0,31.0,34.0,25.0,24.0,29.0,20.0,33.0,32.0,27.0,27.0,25.0,37.0,32.0,34.0,38.0,39.0,44.0,43.0,45.0,50.0,31.0,48.0,62.0,42.0,40.0,48.0,67.0,55.0,45.0,41.0,38.0,43.0,42.0,56.0,49.0,44.0,42.0,34.0,66.0,49.0,43.0,60.0,54.0,47.0,56.0,52.0,59.0,60.0,57.0,55.0,45.0,45.0,44.0,44.0,42.0,50.0,42.0,35.0,42.0,50.0,42.0,52.0,29.0,36.0,41.0,33.0,25.0,28.0,21.0,18.0,18.0,18.0,9.0,14.0,8.0,8.0,8.0,11.0,19.0 B86675,25.0,19.0,25.0,18.0,28.0,24.0,27.0,34.0,26.0,38.0,26.0,30.0,42.0,23.0,30.0,27.0,21.0,21.0,26.0,30.0,19.0,18.0,32.0,35.0,44.0,47.0,46.0,47.0,62.0,41.0,52.0,48.0,41.0,39.0,33.0,27.0,40.0,46.0,44.0,31.0,27.0,25.0,40.0,26.0,33.0,29.0,26.0,22.0,25.0,28.0,23.0,31.0,22.0,25.0,24.0,22.0,25.0,22.0,26.0,16.0,15.0,11.0,17.0,20.0,14.0,14.0,9.0,10.0,11.0,9.0,8.0,10.0,10.0,10.0,9.0,2.0,3.0,11.0,8.0,6.0,5.0,8.0,1.0,4.0,5.0,2.0,5.0,3.0,1.0,3.0,1.0,,3.0,,1.0,2.0 B86678,17.0,10.0,12.0,9.0,7.0,16.0,8.0,12.0,14.0,11.0,11.0,9.0,15.0,18.0,11.0,22.0,20.0,14.0,13.0,15.0,13.0,12.0,16.0,16.0,14.0,13.0,21.0,19.0,18.0,16.0,13.0,11.0,13.0,14.0,21.0,19.0,18.0,15.0,17.0,20.0,15.0,16.0,18.0,21.0,20.0,21.0,24.0,17.0,17.0,19.0,15.0,19.0,32.0,29.0,25.0,25.0,18.0,23.0,14.0,22.0,20.0,31.0,15.0,23.0,21.0,23.0,18.0,23.0,18.0,26.0,15.0,18.0,27.0,15.0,13.0,16.0,20.0,14.0,24.0,15.0,8.0,11.0,12.0,6.0,11.0,12.0,15.0,3.0,4.0,3.0,6.0,1.0,6.0,3.0,1.0,1.0 B87001,34.0,59.0,36.0,42.0,51.0,51.0,49.0,40.0,32.0,42.0,45.0,44.0,50.0,51.0,52.0,52.0,56.0,60.0,44.0,41.0,27.0,40.0,55.0,40.0,39.0,55.0,57.0,52.0,51.0,65.0,61.0,55.0,50.0,70.0,67.0,41.0,53.0,59.0,86.0,54.0,55.0,56.0,58.0,49.0,65.0,89.0,56.0,58.0,51.0,52.0,74.0,76.0,71.0,88.0,77.0,102.0,99.0,86.0,82.0,82.0,67.0,58.0,66.0,74.0,58.0,73.0,62.0,68.0,66.0,56.0,54.0,63.0,63.0,59.0,58.0,60.0,47.0,62.0,62.0,41.0,52.0,31.0,32.0,27.0,18.0,24.0,16.0,13.0,14.0,17.0,7.0,3.0,4.0,8.0,,5.0 B87002,17.0,40.0,32.0,41.0,44.0,41.0,50.0,41.0,62.0,46.0,53.0,56.0,64.0,68.0,59.0,58.0,70.0,76.0,52.0,47.0,48.0,47.0,36.0,50.0,37.0,59.0,60.0,48.0,61.0,52.0,57.0,70.0,52.0,70.0,67.0,64.0,53.0,65.0,71.0,82.0,66.0,71.0,64.0,86.0,50.0,66.0,70.0,57.0,58.0,67.0,71.0,82.0,100.0,100.0,73.0,73.0,104.0,76.0,77.0,76.0,73.0,87.0,91.0,83.0,71.0,68.0,62.0,72.0,72.0,79.0,56.0,57.0,64.0,82.0,59.0,68.0,42.0,71.0,92.0,49.0,55.0,48.0,40.0,23.0,25.0,28.0,21.0,26.0,24.0,15.0,9.0,15.0,7.0,5.0,10.0,24.0 B87003,48.0,52.0,58.0,41.0,47.0,52.0,49.0,53.0,69.0,47.0,45.0,63.0,43.0,61.0,59.0,61.0,76.0,59.0,65.0,48.0,44.0,52.0,46.0,39.0,38.0,54.0,58.0,60.0,48.0,68.0,68.0,55.0,71.0,77.0,80.0,67.0,73.0,69.0,82.0,83.0,63.0,63.0,78.0,75.0,87.0,74.0,63.0,54.0,55.0,60.0,78.0,68.0,83.0,88.0,84.0,79.0,84.0,95.0,85.0,92.0,80.0,81.0,81.0,62.0,76.0,76.0,69.0,73.0,76.0,72.0,70.0,75.0,59.0,63.0,58.0,57.0,60.0,69.0,60.0,48.0,49.0,49.0,43.0,30.0,33.0,21.0,36.0,28.0,19.0,17.0,10.0,22.0,9.0,7.0,4.0,10.0 B87004,73.0,52.0,77.0,63.0,78.0,77.0,77.0,73.0,70.0,80.0,75.0,74.0,78.0,70.0,63.0,74.0,81.0,69.0,59.0,57.0,56.0,54.0,54.0,69.0,72.0,70.0,75.0,80.0,90.0,83.0,100.0,105.0,84.0,115.0,92.0,88.0,109.0,88.0,84.0,85.0,83.0,96.0,68.0,87.0,76.0,69.0,50.0,57.0,62.0,55.0,57.0,59.0,63.0,63.0,74.0,62.0,63.0,64.0,62.0,61.0,57.0,61.0,60.0,52.0,54.0,40.0,57.0,47.0,41.0,42.0,33.0,34.0,35.0,27.0,30.0,42.0,40.0,41.0,38.0,21.0,32.0,20.0,26.0,19.0,21.0,19.0,24.0,19.0,9.0,14.0,12.0,8.0,4.0,10.0,8.0,14.0 B87005,43.0,51.0,60.0,61.0,51.0,64.0,54.0,43.0,72.0,52.0,74.0,60.0,69.0,80.0,52.0,61.0,68.0,74.0,58.0,58.0,40.0,50.0,42.0,60.0,54.0,66.0,57.0,55.0,60.0,71.0,77.0,86.0,79.0,86.0,85.0,80.0,92.0,98.0,87.0,74.0,90.0,68.0,80.0,94.0,81.0,79.0,62.0,58.0,61.0,90.0,83.0,67.0,84.0,79.0,94.0,112.0,90.0,98.0,74.0,90.0,88.0,78.0,72.0,75.0,69.0,69.0,71.0,71.0,53.0,59.0,54.0,51.0,62.0,61.0,69.0,65.0,46.0,62.0,40.0,45.0,47.0,37.0,42.0,36.0,21.0,25.0,17.0,23.0,14.0,20.0,12.0,11.0,12.0,8.0,4.0,13.0 B87006,49.0,46.0,59.0,60.0,65.0,61.0,77.0,59.0,74.0,66.0,63.0,67.0,60.0,57.0,61.0,67.0,63.0,48.0,56.0,44.0,52.0,47.0,46.0,60.0,62.0,50.0,46.0,64.0,79.0,65.0,88.0,91.0,87.0,85.0,88.0,98.0,77.0,85.0,80.0,76.0,78.0,68.0,59.0,51.0,68.0,77.0,58.0,42.0,46.0,56.0,41.0,56.0,59.0,78.0,73.0,73.0,75.0,72.0,59.0,68.0,77.0,81.0,87.0,74.0,75.0,63.0,70.0,55.0,63.0,57.0,60.0,68.0,42.0,41.0,48.0,44.0,44.0,37.0,59.0,36.0,37.0,29.0,39.0,21.0,24.0,26.0,28.0,8.0,12.0,17.0,14.0,7.0,10.0,7.0,8.0,8.0 B87007,82.0,97.0,77.0,89.0,87.0,79.0,101.0,69.0,84.0,104.0,94.0,81.0,99.0,95.0,80.0,83.0,84.0,84.0,89.0,79.0,74.0,84.0,98.0,83.0,110.0,88.0,95.0,108.0,133.0,130.0,127.0,118.0,133.0,147.0,136.0,118.0,131.0,139.0,111.0,124.0,113.0,112.0,117.0,117.0,99.0,102.0,81.0,84.0,100.0,86.0,116.0,91.0,81.0,108.0,123.0,91.0,104.0,124.0,85.0,96.0,95.0,105.0,88.0,89.0,96.0,72.0,82.0,85.0,92.0,88.0,75.0,61.0,55.0,69.0,66.0,65.0,58.0,73.0,86.0,43.0,50.0,40.0,51.0,29.0,30.0,42.0,32.0,33.0,26.0,14.0,16.0,14.0,18.0,6.0,6.0,20.0 B87008,52.0,60.0,80.0,70.0,71.0,65.0,72.0,100.0,87.0,84.0,97.0,82.0,101.0,95.0,109.0,109.0,79.0,90.0,82.0,94.0,75.0,66.0,66.0,51.0,79.0,88.0,60.0,78.0,65.0,65.0,80.0,85.0,92.0,98.0,105.0,100.0,99.0,95.0,104.0,114.0,104.0,108.0,78.0,83.0,85.0,98.0,77.0,92.0,71.0,71.0,90.0,77.0,80.0,88.0,90.0,94.0,95.0,92.0,83.0,92.0,93.0,86.0,95.0,80.0,76.0,58.0,74.0,73.0,63.0,71.0,62.0,60.0,59.0,44.0,57.0,63.0,62.0,57.0,75.0,54.0,40.0,47.0,41.0,25.0,40.0,32.0,23.0,27.0,19.0,22.0,25.0,21.0,11.0,14.0,2.0,15.0 B87009,31.0,24.0,34.0,37.0,23.0,30.0,34.0,36.0,31.0,38.0,40.0,39.0,27.0,35.0,39.0,35.0,33.0,33.0,25.0,31.0,29.0,24.0,19.0,36.0,31.0,31.0,29.0,44.0,34.0,55.0,39.0,37.0,36.0,51.0,39.0,48.0,39.0,37.0,45.0,33.0,54.0,35.0,39.0,33.0,35.0,36.0,32.0,21.0,25.0,31.0,34.0,36.0,43.0,34.0,42.0,50.0,43.0,49.0,54.0,43.0,48.0,51.0,28.0,40.0,44.0,40.0,40.0,39.0,37.0,39.0,31.0,35.0,38.0,21.0,30.0,34.0,37.0,33.0,23.0,30.0,29.0,20.0,22.0,26.0,10.0,23.0,17.0,13.0,13.0,13.0,7.0,4.0,6.0,3.0,5.0,5.0 B87011,50.0,54.0,46.0,59.0,56.0,76.0,75.0,82.0,75.0,57.0,75.0,85.0,75.0,75.0,67.0,67.0,73.0,90.0,76.0,55.0,60.0,36.0,69.0,58.0,53.0,66.0,70.0,75.0,62.0,111.0,78.0,84.0,86.0,88.0,102.0,89.0,82.0,94.0,100.0,89.0,80.0,97.0,71.0,73.0,87.0,97.0,73.0,59.0,64.0,83.0,61.0,63.0,80.0,90.0,113.0,98.0,105.0,96.0,106.0,105.0,105.0,93.0,82.0,83.0,92.0,102.0,72.0,87.0,71.0,79.0,72.0,78.0,69.0,82.0,73.0,71.0,73.0,78.0,71.0,45.0,57.0,45.0,43.0,40.0,39.0,37.0,48.0,39.0,31.0,18.0,21.0,29.0,19.0,8.0,10.0,19.0 B87012,48.0,52.0,46.0,57.0,59.0,57.0,52.0,61.0,61.0,58.0,53.0,47.0,61.0,61.0,58.0,64.0,60.0,61.0,58.0,48.0,61.0,59.0,65.0,58.0,58.0,57.0,71.0,72.0,68.0,63.0,74.0,74.0,77.0,85.0,54.0,72.0,70.0,71.0,59.0,68.0,80.0,67.0,72.0,72.0,61.0,52.0,60.0,50.0,52.0,49.0,46.0,45.0,52.0,59.0,59.0,58.0,52.0,50.0,44.0,64.0,47.0,50.0,59.0,42.0,39.0,52.0,55.0,55.0,31.0,35.0,41.0,33.0,33.0,35.0,26.0,35.0,30.0,39.0,40.0,22.0,31.0,21.0,15.0,18.0,19.0,20.0,15.0,7.0,13.0,9.0,6.0,11.0,6.0,7.0,7.0,11.0 B87013,49.0,64.0,61.0,67.0,66.0,60.0,65.0,70.0,88.0,79.0,85.0,85.0,72.0,98.0,80.0,77.0,86.0,103.0,69.0,60.0,67.0,68.0,68.0,51.0,63.0,79.0,60.0,89.0,80.0,102.0,94.0,89.0,83.0,103.0,112.0,81.0,81.0,108.0,103.0,77.0,95.0,99.0,94.0,99.0,79.0,108.0,111.0,85.0,73.0,79.0,75.0,97.0,104.0,109.0,91.0,105.0,113.0,120.0,115.0,114.0,122.0,78.0,105.0,119.0,100.0,88.0,97.0,69.0,77.0,81.0,90.0,80.0,86.0,77.0,72.0,90.0,94.0,88.0,103.0,71.0,65.0,67.0,42.0,46.0,29.0,32.0,32.0,32.0,31.0,18.0,22.0,19.0,14.0,3.0,9.0,14.0 B87015,21.0,35.0,33.0,30.0,50.0,39.0,41.0,37.0,43.0,40.0,52.0,43.0,53.0,44.0,47.0,39.0,35.0,42.0,38.0,34.0,33.0,38.0,29.0,42.0,34.0,34.0,41.0,40.0,37.0,55.0,39.0,50.0,44.0,58.0,52.0,73.0,54.0,44.0,51.0,46.0,47.0,44.0,43.0,30.0,47.0,46.0,36.0,40.0,41.0,63.0,34.0,42.0,63.0,58.0,50.0,39.0,63.0,63.0,54.0,41.0,54.0,57.0,46.0,64.0,53.0,53.0,53.0,43.0,37.0,38.0,44.0,49.0,41.0,29.0,32.0,39.0,42.0,58.0,40.0,33.0,23.0,28.0,29.0,21.0,15.0,22.0,16.0,22.0,12.0,11.0,8.0,9.0,9.0,6.0,4.0,7.0 B87016,89.0,127.0,108.0,115.0,124.0,143.0,138.0,128.0,146.0,127.0,138.0,163.0,160.0,141.0,158.0,181.0,157.0,162.0,120.0,139.0,140.0,137.0,109.0,125.0,130.0,132.0,156.0,145.0,179.0,165.0,153.0,157.0,168.0,203.0,171.0,185.0,204.0,175.0,199.0,174.0,192.0,170.0,161.0,156.0,177.0,164.0,128.0,145.0,111.0,151.0,167.0,150.0,168.0,177.0,185.0,162.0,163.0,193.0,206.0,149.0,140.0,155.0,160.0,167.0,169.0,143.0,130.0,150.0,113.0,131.0,132.0,118.0,114.0,120.0,100.0,99.0,100.0,84.0,100.0,77.0,95.0,71.0,57.0,47.0,45.0,37.0,50.0,31.0,31.0,39.0,24.0,15.0,17.0,7.0,12.0,13.0 B87017,120.0,133.0,125.0,128.0,114.0,133.0,136.0,130.0,157.0,151.0,154.0,125.0,150.0,150.0,151.0,129.0,130.0,148.0,141.0,115.0,147.0,137.0,129.0,165.0,177.0,177.0,202.0,201.0,217.0,208.0,235.0,230.0,236.0,228.0,228.0,211.0,226.0,232.0,185.0,204.0,200.0,183.0,166.0,157.0,170.0,174.0,173.0,131.0,144.0,148.0,139.0,149.0,168.0,159.0,174.0,174.0,184.0,157.0,170.0,154.0,171.0,157.0,152.0,131.0,149.0,125.0,127.0,144.0,108.0,117.0,100.0,111.0,99.0,103.0,77.0,101.0,108.0,85.0,97.0,84.0,90.0,75.0,65.0,57.0,58.0,47.0,51.0,41.0,36.0,37.0,25.0,21.0,16.0,15.0,15.0,31.0 B87018,53.0,50.0,50.0,49.0,63.0,60.0,70.0,72.0,65.0,52.0,70.0,58.0,71.0,79.0,62.0,65.0,68.0,70.0,64.0,62.0,60.0,47.0,50.0,38.0,51.0,68.0,86.0,72.0,95.0,102.0,85.0,82.0,89.0,100.0,94.0,119.0,96.0,82.0,90.0,85.0,85.0,85.0,92.0,81.0,66.0,92.0,64.0,58.0,63.0,60.0,60.0,69.0,77.0,72.0,68.0,73.0,90.0,65.0,98.0,80.0,83.0,81.0,77.0,66.0,75.0,66.0,63.0,63.0,57.0,48.0,61.0,48.0,42.0,41.0,23.0,48.0,39.0,41.0,56.0,37.0,35.0,30.0,27.0,27.0,31.0,23.0,19.0,18.0,14.0,17.0,8.0,10.0,7.0,3.0,4.0,6.0 B87019,28.0,28.0,34.0,32.0,40.0,37.0,40.0,35.0,36.0,36.0,37.0,42.0,34.0,36.0,49.0,33.0,33.0,44.0,40.0,38.0,35.0,32.0,29.0,31.0,23.0,42.0,45.0,52.0,51.0,38.0,38.0,56.0,68.0,49.0,59.0,47.0,56.0,55.0,55.0,51.0,50.0,58.0,45.0,49.0,44.0,52.0,40.0,39.0,32.0,46.0,45.0,49.0,48.0,50.0,57.0,64.0,55.0,53.0,52.0,43.0,54.0,68.0,50.0,54.0,63.0,42.0,53.0,53.0,54.0,39.0,40.0,34.0,31.0,28.0,31.0,34.0,38.0,42.0,37.0,32.0,30.0,22.0,25.0,23.0,18.0,14.0,10.0,13.0,23.0,11.0,9.0,13.0,5.0,6.0,4.0,10.0 B87020,42.0,61.0,62.0,63.0,66.0,77.0,73.0,91.0,71.0,70.0,77.0,77.0,82.0,71.0,71.0,69.0,72.0,60.0,58.0,58.0,56.0,58.0,65.0,56.0,48.0,56.0,73.0,59.0,70.0,74.0,75.0,82.0,89.0,96.0,97.0,94.0,95.0,71.0,111.0,103.0,93.0,105.0,84.0,104.0,85.0,99.0,85.0,83.0,69.0,73.0,87.0,65.0,85.0,95.0,104.0,81.0,104.0,97.0,103.0,118.0,89.0,103.0,104.0,97.0,90.0,98.0,101.0,103.0,81.0,85.0,91.0,111.0,97.0,85.0,81.0,104.0,82.0,89.0,79.0,70.0,64.0,72.0,53.0,31.0,41.0,37.0,38.0,32.0,23.0,20.0,16.0,21.0,17.0,13.0,10.0,20.0 B87021,52.0,73.0,68.0,68.0,65.0,85.0,63.0,86.0,83.0,69.0,87.0,73.0,77.0,88.0,91.0,74.0,84.0,87.0,70.0,61.0,50.0,62.0,61.0,60.0,58.0,54.0,65.0,90.0,94.0,83.0,92.0,90.0,101.0,91.0,107.0,106.0,92.0,110.0,78.0,91.0,95.0,94.0,88.0,77.0,72.0,83.0,63.0,60.0,50.0,60.0,64.0,59.0,95.0,84.0,77.0,106.0,68.0,75.0,87.0,93.0,92.0,70.0,90.0,73.0,78.0,63.0,88.0,55.0,66.0,72.0,73.0,50.0,54.0,52.0,57.0,59.0,58.0,66.0,61.0,43.0,57.0,38.0,41.0,36.0,32.0,26.0,30.0,23.0,16.0,23.0,15.0,16.0,7.0,14.0,3.0,21.0 B87022,41.0,53.0,46.0,57.0,56.0,68.0,52.0,60.0,56.0,73.0,73.0,70.0,81.0,59.0,65.0,65.0,63.0,71.0,63.0,49.0,42.0,43.0,58.0,47.0,56.0,54.0,49.0,85.0,64.0,89.0,82.0,87.0,77.0,94.0,82.0,79.0,76.0,93.0,70.0,85.0,85.0,72.0,72.0,66.0,63.0,72.0,53.0,55.0,55.0,44.0,34.0,51.0,52.0,53.0,38.0,49.0,41.0,42.0,52.0,43.0,41.0,29.0,39.0,42.0,36.0,41.0,28.0,39.0,19.0,24.0,23.0,24.0,29.0,18.0,15.0,24.0,22.0,20.0,22.0,28.0,18.0,9.0,17.0,15.0,9.0,4.0,9.0,8.0,7.0,2.0,3.0,1.0,6.0,1.0,2.0,6.0 B87025,51.0,58.0,56.0,57.0,51.0,56.0,44.0,47.0,60.0,32.0,40.0,29.0,35.0,35.0,50.0,36.0,32.0,34.0,38.0,37.0,33.0,40.0,31.0,31.0,72.0,64.0,77.0,84.0,112.0,106.0,82.0,81.0,81.0,81.0,90.0,75.0,70.0,78.0,63.0,55.0,58.0,48.0,51.0,54.0,47.0,42.0,43.0,48.0,48.0,45.0,41.0,34.0,54.0,45.0,66.0,51.0,38.0,46.0,44.0,44.0,56.0,57.0,55.0,37.0,44.0,34.0,39.0,45.0,38.0,26.0,33.0,34.0,30.0,33.0,21.0,36.0,33.0,48.0,34.0,19.0,35.0,24.0,27.0,15.0,13.0,15.0,17.0,18.0,16.0,8.0,11.0,11.0,12.0,4.0,2.0,6.0 B87026,73.0,78.0,68.0,74.0,81.0,84.0,74.0,86.0,79.0,87.0,85.0,78.0,94.0,95.0,89.0,82.0,101.0,76.0,67.0,58.0,86.0,58.0,59.0,56.0,76.0,79.0,89.0,86.0,94.0,100.0,106.0,125.0,98.0,101.0,123.0,111.0,102.0,118.0,95.0,115.0,94.0,106.0,93.0,85.0,93.0,93.0,79.0,61.0,61.0,68.0,66.0,89.0,75.0,95.0,90.0,100.0,99.0,106.0,103.0,108.0,95.0,98.0,89.0,101.0,93.0,96.0,72.0,74.0,88.0,92.0,69.0,60.0,76.0,65.0,68.0,60.0,59.0,68.0,63.0,50.0,57.0,49.0,54.0,33.0,30.0,29.0,29.0,27.0,25.0,15.0,14.0,8.0,7.0,4.0,4.0,18.0 B87027,61.0,64.0,63.0,82.0,71.0,83.0,69.0,83.0,62.0,74.0,87.0,79.0,76.0,93.0,72.0,75.0,72.0,64.0,88.0,66.0,43.0,56.0,55.0,69.0,59.0,67.0,71.0,74.0,84.0,70.0,91.0,100.0,91.0,108.0,118.0,100.0,124.0,114.0,127.0,113.0,113.0,103.0,117.0,94.0,95.0,106.0,86.0,81.0,95.0,93.0,103.0,91.0,97.0,101.0,119.0,84.0,106.0,112.0,109.0,97.0,89.0,106.0,114.0,89.0,69.0,73.0,83.0,78.0,78.0,61.0,64.0,65.0,59.0,62.0,63.0,73.0,65.0,82.0,60.0,49.0,54.0,51.0,46.0,27.0,27.0,24.0,33.0,18.0,24.0,17.0,14.0,6.0,10.0,8.0,7.0,17.0 B87028,47.0,41.0,51.0,57.0,66.0,59.0,49.0,61.0,51.0,81.0,55.0,69.0,78.0,61.0,59.0,81.0,63.0,64.0,64.0,58.0,42.0,48.0,49.0,51.0,44.0,64.0,55.0,59.0,71.0,56.0,58.0,59.0,75.0,78.0,89.0,71.0,62.0,75.0,71.0,62.0,60.0,63.0,78.0,62.0,78.0,72.0,54.0,69.0,65.0,59.0,54.0,70.0,62.0,96.0,75.0,85.0,71.0,87.0,82.0,86.0,89.0,84.0,86.0,66.0,78.0,64.0,70.0,58.0,76.0,65.0,58.0,68.0,69.0,56.0,53.0,60.0,84.0,68.0,58.0,44.0,60.0,40.0,44.0,21.0,23.0,27.0,21.0,26.0,17.0,11.0,11.0,10.0,10.0,6.0,6.0,13.0 B87030,110.0,134.0,128.0,138.0,155.0,148.0,170.0,182.0,191.0,171.0,175.0,173.0,186.0,175.0,203.0,183.0,202.0,178.0,159.0,155.0,142.0,131.0,143.0,134.0,156.0,140.0,178.0,163.0,181.0,217.0,202.0,205.0,258.0,263.0,228.0,235.0,237.0,244.0,248.0,233.0,196.0,214.0,202.0,192.0,196.0,166.0,175.0,155.0,140.0,178.0,174.0,182.0,193.0,219.0,237.0,225.0,247.0,245.0,227.0,236.0,220.0,216.0,208.0,183.0,175.0,163.0,143.0,167.0,156.0,139.0,135.0,133.0,141.0,135.0,116.0,147.0,132.0,130.0,135.0,98.0,101.0,94.0,98.0,63.0,65.0,70.0,57.0,39.0,48.0,35.0,30.0,30.0,29.0,15.0,10.0,21.0 B87031,85.0,85.0,92.0,116.0,84.0,106.0,129.0,116.0,124.0,112.0,116.0,117.0,137.0,124.0,144.0,120.0,119.0,122.0,130.0,91.0,103.0,109.0,100.0,101.0,94.0,110.0,143.0,135.0,133.0,134.0,127.0,136.0,165.0,144.0,153.0,162.0,134.0,156.0,134.0,162.0,130.0,128.0,132.0,147.0,161.0,148.0,143.0,134.0,125.0,135.0,137.0,140.0,162.0,182.0,190.0,134.0,147.0,172.0,164.0,152.0,167.0,153.0,130.0,132.0,138.0,123.0,125.0,134.0,108.0,95.0,116.0,124.0,126.0,117.0,108.0,128.0,135.0,142.0,138.0,111.0,104.0,97.0,91.0,64.0,65.0,60.0,54.0,40.0,45.0,33.0,17.0,31.0,22.0,10.0,14.0,47.0 B87032,40.0,37.0,52.0,52.0,39.0,50.0,48.0,54.0,49.0,54.0,44.0,47.0,45.0,37.0,39.0,44.0,35.0,47.0,44.0,44.0,33.0,35.0,36.0,45.0,37.0,63.0,49.0,70.0,72.0,79.0,61.0,64.0,77.0,74.0,73.0,82.0,64.0,88.0,64.0,55.0,52.0,62.0,63.0,64.0,51.0,42.0,51.0,35.0,30.0,48.0,40.0,39.0,43.0,55.0,48.0,66.0,59.0,62.0,46.0,57.0,56.0,45.0,54.0,49.0,43.0,38.0,36.0,30.0,38.0,30.0,28.0,41.0,28.0,30.0,28.0,38.0,31.0,30.0,27.0,22.0,20.0,20.0,23.0,20.0,22.0,12.0,13.0,15.0,10.0,9.0,11.0,4.0,7.0,1.0,8.0,9.0 B87033,30.0,28.0,29.0,43.0,31.0,29.0,35.0,28.0,32.0,29.0,31.0,33.0,30.0,27.0,21.0,29.0,27.0,34.0,20.0,18.0,15.0,25.0,28.0,24.0,34.0,34.0,33.0,42.0,46.0,28.0,52.0,29.0,47.0,45.0,42.0,50.0,56.0,44.0,32.0,40.0,34.0,44.0,37.0,33.0,30.0,23.0,28.0,26.0,18.0,20.0,25.0,31.0,31.0,30.0,45.0,42.0,32.0,39.0,46.0,37.0,45.0,43.0,34.0,36.0,32.0,38.0,39.0,38.0,35.0,30.0,29.0,22.0,22.0,32.0,28.0,27.0,25.0,23.0,26.0,16.0,19.0,15.0,9.0,11.0,16.0,7.0,7.0,6.0,6.0,3.0,2.0,5.0,3.0,2.0,,8.0 B87036,10.0,15.0,20.0,23.0,21.0,20.0,25.0,22.0,25.0,33.0,19.0,19.0,20.0,27.0,28.0,25.0,24.0,25.0,15.0,26.0,23.0,19.0,18.0,20.0,17.0,26.0,28.0,23.0,20.0,19.0,18.0,28.0,31.0,36.0,21.0,45.0,32.0,36.0,35.0,24.0,25.0,26.0,31.0,23.0,25.0,39.0,15.0,18.0,19.0,21.0,23.0,23.0,20.0,32.0,22.0,22.0,31.0,25.0,32.0,25.0,37.0,28.0,37.0,27.0,29.0,29.0,25.0,30.0,29.0,24.0,19.0,26.0,19.0,13.0,17.0,13.0,26.0,16.0,16.0,13.0,18.0,11.0,9.0,7.0,7.0,9.0,6.0,8.0,5.0,2.0,3.0,2.0,2.0,,1.0,4.0 B87039,50.0,62.0,71.0,70.0,71.0,81.0,75.0,74.0,87.0,83.0,97.0,82.0,96.0,90.0,84.0,92.0,98.0,86.0,67.0,72.0,67.0,64.0,68.0,72.0,78.0,89.0,74.0,100.0,122.0,85.0,114.0,136.0,114.0,149.0,140.0,120.0,125.0,141.0,126.0,122.0,125.0,104.0,120.0,95.0,98.0,87.0,97.0,69.0,90.0,80.0,93.0,87.0,91.0,121.0,124.0,113.0,98.0,116.0,104.0,105.0,100.0,86.0,91.0,81.0,75.0,79.0,75.0,70.0,75.0,64.0,66.0,54.0,44.0,60.0,55.0,56.0,53.0,53.0,57.0,45.0,43.0,43.0,43.0,16.0,32.0,27.0,31.0,22.0,19.0,14.0,17.0,10.0,9.0,15.0,8.0,18.0 B87042,26.0,24.0,29.0,38.0,26.0,42.0,38.0,31.0,40.0,40.0,37.0,47.0,44.0,34.0,41.0,49.0,38.0,40.0,40.0,35.0,31.0,40.0,25.0,29.0,26.0,29.0,32.0,33.0,36.0,31.0,38.0,35.0,54.0,71.0,44.0,40.0,51.0,57.0,57.0,52.0,41.0,46.0,29.0,43.0,36.0,25.0,27.0,37.0,33.0,32.0,26.0,45.0,35.0,36.0,38.0,30.0,41.0,36.0,34.0,48.0,47.0,32.0,29.0,30.0,22.0,29.0,24.0,31.0,25.0,29.0,17.0,24.0,24.0,20.0,20.0,15.0,17.0,16.0,14.0,18.0,9.0,10.0,6.0,8.0,7.0,8.0,4.0,5.0,3.0,2.0,3.0,3.0,,1.0,2.0, B87044,17.0,10.0,20.0,5.0,9.0,11.0,15.0,7.0,11.0,9.0,7.0,12.0,12.0,11.0,11.0,14.0,10.0,16.0,11.0,10.0,4.0,10.0,11.0,9.0,6.0,11.0,15.0,8.0,17.0,17.0,12.0,27.0,26.0,21.0,14.0,21.0,17.0,16.0,20.0,18.0,15.0,18.0,8.0,15.0,16.0,12.0,10.0,9.0,10.0,18.0,10.0,10.0,20.0,13.0,12.0,15.0,22.0,24.0,13.0,21.0,16.0,14.0,23.0,25.0,21.0,14.0,17.0,13.0,18.0,14.0,20.0,10.0,15.0,11.0,8.0,12.0,9.0,11.0,12.0,5.0,6.0,11.0,11.0,7.0,11.0,2.0,5.0,1.0,1.0,2.0,3.0,1.0,,,3.0,2.0 B87602,19.0,19.0,20.0,23.0,12.0,16.0,16.0,23.0,20.0,17.0,21.0,17.0,9.0,23.0,19.0,16.0,17.0,19.0,16.0,17.0,17.0,17.0,12.0,12.0,14.0,31.0,31.0,13.0,18.0,26.0,26.0,36.0,36.0,42.0,29.0,27.0,26.0,31.0,14.0,29.0,20.0,21.0,16.0,18.0,22.0,17.0,25.0,17.0,18.0,18.0,22.0,26.0,19.0,26.0,26.0,33.0,24.0,21.0,26.0,17.0,33.0,30.0,29.0,30.0,21.0,24.0,21.0,22.0,21.0,13.0,24.0,23.0,20.0,14.0,17.0,19.0,23.0,19.0,11.0,11.0,18.0,12.0,14.0,4.0,7.0,12.0,13.0,7.0,5.0,4.0,4.0,1.0,6.0,2.0,2.0,1.0 B87604,13.0,21.0,18.0,9.0,17.0,15.0,19.0,14.0,17.0,26.0,16.0,22.0,25.0,17.0,20.0,22.0,19.0,11.0,17.0,12.0,12.0,14.0,22.0,20.0,24.0,15.0,30.0,28.0,13.0,22.0,27.0,21.0,29.0,20.0,33.0,22.0,19.0,26.0,25.0,35.0,24.0,8.0,16.0,15.0,17.0,20.0,19.0,15.0,13.0,18.0,12.0,14.0,17.0,15.0,12.0,13.0,4.0,10.0,12.0,12.0,18.0,15.0,19.0,15.0,5.0,10.0,12.0,7.0,4.0,14.0,10.0,7.0,9.0,12.0,10.0,13.0,12.0,8.0,8.0,2.0,7.0,5.0,1.0,3.0,2.0,,2.0,1.0,3.0,1.0,1.0,1.0,2.0,1.0,1.0,1.0 Y00081,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, Y01118,22.0,23.0,16.0,28.0,20.0,20.0,22.0,26.0,21.0,28.0,22.0,19.0,19.0,17.0,16.0,20.0,25.0,24.0,24.0,20.0,17.0,22.0,20.0,15.0,24.0,25.0,14.0,29.0,21.0,21.0,23.0,20.0,21.0,17.0,26.0,36.0,26.0,25.0,22.0,27.0,20.0,28.0,20.0,23.0,19.0,27.0,19.0,12.0,12.0,14.0,18.0,15.0,13.0,18.0,17.0,23.0,16.0,18.0,23.0,12.0,21.0,19.0,15.0,14.0,24.0,18.0,25.0,24.0,20.0,17.0,17.0,10.0,15.0,9.0,13.0,12.0,9.0,7.0,11.0,5.0,7.0,10.0,9.0,7.0,8.0,6.0,5.0,11.0,9.0,4.0,5.0,3.0,3.0,4.0,1.0,3.0 Y02002,47.0,51.0,55.0,61.0,56.0,46.0,56.0,37.0,48.0,56.0,43.0,39.0,39.0,34.0,26.0,32.0,32.0,17.0,110.0,212.0,324.0,273.0,391.0,511.0,599.0,551.0,539.0,496.0,448.0,468.0,396.0,348.0,323.0,356.0,291.0,260.0,259.0,230.0,205.0,198.0,145.0,152.0,114.0,111.0,80.0,82.0,51.0,48.0,50.0,37.0,38.0,35.0,31.0,27.0,28.0,22.0,24.0,32.0,30.0,15.0,25.0,30.0,20.0,21.0,15.0,13.0,16.0,12.0,16.0,9.0,8.0,8.0,4.0,3.0,6.0,7.0,5.0,1.0,3.0,5.0,4.0,1.0,3.0,,1.0,,,2.0,,3.0,,,1.0,1.0,3.0, Y02494,56.0,68.0,63.0,68.0,59.0,77.0,77.0,51.0,48.0,50.0,45.0,42.0,44.0,58.0,39.0,49.0,44.0,35.0,48.0,66.0,59.0,44.0,75.0,75.0,116.0,101.0,122.0,133.0,145.0,107.0,126.0,127.0,105.0,99.0,93.0,91.0,113.0,101.0,76.0,81.0,56.0,63.0,48.0,53.0,48.0,33.0,41.0,36.0,34.0,29.0,27.0,20.0,23.0,19.0,25.0,24.0,15.0,16.0,11.0,14.0,13.0,9.0,14.0,15.0,11.0,9.0,8.0,8.0,13.0,3.0,3.0,5.0,6.0,4.0,8.0,2.0,2.0,3.0,3.0,1.0,4.0,3.0,2.0,1.0,1.0,1.0,,,,,,,,1.0,, Y02645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, Y04266,18.0,19.0,29.0,21.0,29.0,24.0,16.0,30.0,18.0,29.0,21.0,22.0,30.0,26.0,22.0,21.0,32.0,26.0,18.0,20.0,23.0,17.0,11.0,16.0,20.0,24.0,22.0,21.0,23.0,23.0,29.0,30.0,31.0,31.0,28.0,41.0,34.0,21.0,28.0,32.0,36.0,26.0,25.0,22.0,31.0,12.0,20.0,15.0,20.0,18.0,18.0,18.0,29.0,20.0,26.0,25.0,17.0,22.0,30.0,28.0,28.0,28.0,35.0,24.0,23.0,17.0,28.0,15.0,28.0,20.0,19.0,19.0,16.0,14.0,10.0,14.0,21.0,20.0,13.0,10.0,17.0,19.0,10.0,8.0,10.0,8.0,6.0,10.0,10.0,5.0,6.0,4.0,2.0,3.0,,5.0 Y06659,22.0,11.0,18.0,23.0,20.0,17.0,17.0,19.0,23.0,30.0,18.0,16.0,6.0,22.0,20.0,17.0,20.0,14.0,20.0,12.0,18.0,10.0,13.0,16.0,19.0,15.0,24.0,25.0,24.0,26.0,26.0,22.0,35.0,25.0,18.0,33.0,23.0,34.0,34.0,26.0,34.0,24.0,24.0,34.0,19.0,19.0,23.0,19.0,17.0,18.0,13.0,16.0,23.0,22.0,22.0,27.0,34.0,19.0,14.0,26.0,12.0,26.0,19.0,24.0,23.0,13.0,15.0,21.0,21.0,12.0,14.0,15.0,16.0,8.0,18.0,7.0,11.0,17.0,10.0,9.0,8.0,8.0,10.0,13.0,8.0,8.0,6.0,5.0,8.0,8.0,8.0,6.0,3.0,3.0,1.0,7.0 Y07275,10.0,7.0,7.0,10.0,13.0,13.0,12.0,15.0,25.0,16.0,21.0,21.0,24.0,18.0,17.0,20.0,18.0,18.0,11.0,19.0,16.0,13.0,14.0,17.0,20.0,15.0,17.0,10.0,21.0,20.0,16.0,16.0,15.0,15.0,22.0,12.0,19.0,30.0,17.0,22.0,16.0,17.0,20.0,20.0,22.0,19.0,16.0,23.0,11.0,21.0,15.0,20.0,15.0,26.0,28.0,17.0,19.0,23.0,21.0,18.0,25.0,15.0,22.0,16.0,15.0,15.0,20.0,13.0,18.0,12.0,13.0,10.0,5.0,15.0,10.0,12.0,6.0,13.0,18.0,8.0,12.0,15.0,9.0,9.0,4.0,7.0,6.0,4.0,3.0,3.0,7.0,3.0,3.0,3.0,2.0,2.0 Y08186,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,1.0,,,,,,,,,,,,,,,,,,,,1.0,,,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 M84001,45.0,58.0,55.0,54.0,60.0,47.0,64.0,67.0,75.0,75.0,74.0,80.0,77.0,77.0,73.0,70.0,90.0,85.0,84.0,68.0,61.0,82.0,60.0,79.0,69.0,80.0,68.0,74.0,80.0,83.0,83.0,77.0,81.0,89.0,102.0,100.0,81.0,75.0,101.0,98.0,88.0,73.0,78.0,98.0,86.0,64.0,82.0,73.0,75.0,58.0,81.0,93.0,79.0,94.0,94.0,98.0,104.0,119.0,118.0,86.0,88.0,77.0,96.0,92.0,92.0,75.0,74.0,83.0,79.0,68.0,62.0,72.0,70.0,65.0,78.0,75.0,64.0,82.0,94.0,66.0,66.0,46.0,52.0,46.0,45.0,47.0,29.0,25.0,39.0,19.0,20.0,19.0,15.0,15.0,11.0,29.0 M84002,31.0,44.0,31.0,34.0,40.0,36.0,36.0,38.0,44.0,45.0,42.0,56.0,38.0,49.0,54.0,40.0,44.0,44.0,51.0,28.0,32.0,38.0,32.0,33.0,42.0,47.0,36.0,50.0,52.0,54.0,37.0,38.0,59.0,61.0,44.0,42.0,62.0,47.0,41.0,50.0,63.0,55.0,40.0,49.0,53.0,47.0,52.0,42.0,50.0,58.0,57.0,45.0,49.0,58.0,42.0,63.0,60.0,57.0,69.0,65.0,60.0,67.0,71.0,67.0,46.0,39.0,60.0,50.0,34.0,48.0,50.0,46.0,39.0,32.0,46.0,45.0,55.0,55.0,43.0,31.0,47.0,44.0,34.0,41.0,29.0,32.0,29.0,25.0,17.0,26.0,18.0,13.0,14.0,9.0,10.0,28.0 M84003,41.0,62.0,51.0,45.0,65.0,77.0,65.0,56.0,63.0,56.0,63.0,67.0,58.0,61.0,50.0,54.0,55.0,49.0,51.0,34.0,40.0,39.0,41.0,43.0,46.0,66.0,54.0,61.0,81.0,74.0,56.0,81.0,83.0,79.0,90.0,82.0,90.0,90.0,61.0,67.0,60.0,64.0,51.0,71.0,65.0,46.0,56.0,43.0,43.0,41.0,49.0,57.0,47.0,48.0,56.0,70.0,72.0,60.0,58.0,66.0,77.0,46.0,74.0,68.0,47.0,61.0,60.0,52.0,58.0,52.0,55.0,40.0,48.0,47.0,38.0,48.0,59.0,60.0,33.0,35.0,48.0,43.0,30.0,28.0,18.0,23.0,9.0,26.0,14.0,7.0,19.0,9.0,8.0,10.0,2.0,5.0 M84004,89.0,107.0,90.0,96.0,121.0,117.0,110.0,100.0,135.0,145.0,115.0,125.0,117.0,113.0,119.0,113.0,113.0,117.0,96.0,67.0,74.0,83.0,85.0,84.0,120.0,118.0,125.0,127.0,134.0,155.0,150.0,162.0,185.0,151.0,151.0,170.0,185.0,190.0,171.0,170.0,143.0,167.0,140.0,135.0,134.0,128.0,120.0,109.0,104.0,123.0,113.0,101.0,121.0,125.0,125.0,122.0,126.0,111.0,108.0,128.0,97.0,116.0,92.0,100.0,88.0,69.0,76.0,92.0,94.0,79.0,74.0,82.0,97.0,81.0,73.0,84.0,91.0,83.0,72.0,65.0,74.0,69.0,62.0,54.0,38.0,50.0,36.0,37.0,27.0,26.0,14.0,18.0,25.0,11.0,13.0,18.0 M84005,23.0,36.0,25.0,34.0,28.0,29.0,27.0,29.0,25.0,38.0,27.0,41.0,29.0,29.0,36.0,25.0,25.0,32.0,30.0,29.0,24.0,24.0,23.0,21.0,31.0,34.0,23.0,41.0,39.0,33.0,49.0,34.0,45.0,53.0,35.0,39.0,39.0,44.0,39.0,43.0,29.0,25.0,26.0,37.0,29.0,39.0,26.0,23.0,20.0,24.0,20.0,27.0,21.0,33.0,23.0,43.0,35.0,28.0,34.0,43.0,34.0,32.0,37.0,31.0,34.0,34.0,29.0,22.0,20.0,15.0,20.0,18.0,26.0,25.0,24.0,13.0,17.0,23.0,18.0,17.0,21.0,9.0,21.0,8.0,9.0,5.0,14.0,7.0,2.0,2.0,2.0,2.0,,,1.0,1.0 M84006,25.0,41.0,42.0,59.0,47.0,57.0,54.0,44.0,46.0,50.0,52.0,50.0,74.0,62.0,64.0,55.0,62.0,52.0,63.0,52.0,53.0,42.0,45.0,52.0,43.0,52.0,42.0,56.0,61.0,54.0,55.0,67.0,75.0,71.0,74.0,70.0,75.0,64.0,65.0,53.0,67.0,71.0,68.0,72.0,62.0,50.0,57.0,62.0,45.0,50.0,64.0,64.0,64.0,61.0,75.0,72.0,97.0,96.0,78.0,87.0,74.0,96.0,81.0,86.0,85.0,64.0,86.0,69.0,70.0,72.0,60.0,59.0,56.0,54.0,62.0,60.0,64.0,61.0,63.0,54.0,52.0,41.0,43.0,30.0,25.0,26.0,23.0,18.0,22.0,10.0,10.0,8.0,8.0,8.0,5.0,10.0 M84007,44.0,59.0,73.0,72.0,65.0,74.0,95.0,75.0,75.0,66.0,71.0,86.0,94.0,72.0,84.0,84.0,67.0,78.0,73.0,67.0,64.0,46.0,60.0,60.0,75.0,58.0,67.0,76.0,84.0,68.0,67.0,88.0,91.0,101.0,100.0,104.0,92.0,104.0,100.0,101.0,89.0,89.0,82.0,86.0,78.0,78.0,78.0,62.0,77.0,84.0,72.0,94.0,87.0,91.0,100.0,92.0,76.0,79.0,106.0,104.0,102.0,92.0,86.0,84.0,98.0,79.0,69.0,68.0,77.0,79.0,64.0,68.0,63.0,68.0,72.0,57.0,80.0,92.0,71.0,55.0,65.0,57.0,55.0,38.0,39.0,29.0,41.0,36.0,29.0,18.0,14.0,15.0,18.0,17.0,9.0,20.0 M84008,23.0,28.0,43.0,48.0,38.0,33.0,54.0,50.0,50.0,47.0,58.0,53.0,48.0,62.0,72.0,69.0,58.0,51.0,56.0,34.0,49.0,29.0,43.0,33.0,35.0,39.0,42.0,45.0,38.0,37.0,57.0,56.0,48.0,57.0,78.0,51.0,64.0,64.0,67.0,50.0,44.0,64.0,63.0,56.0,57.0,53.0,47.0,59.0,50.0,44.0,53.0,46.0,63.0,63.0,62.0,71.0,58.0,65.0,65.0,62.0,61.0,57.0,57.0,49.0,57.0,57.0,48.0,29.0,31.0,50.0,37.0,41.0,46.0,34.0,35.0,32.0,41.0,25.0,34.0,25.0,21.0,23.0,22.0,14.0,13.0,11.0,10.0,12.0,10.0,5.0,4.0,4.0,5.0,6.0,3.0,3.0 M84009,14.0,20.0,23.0,18.0,23.0,21.0,18.0,18.0,22.0,21.0,18.0,21.0,24.0,30.0,25.0,23.0,28.0,29.0,25.0,16.0,26.0,16.0,20.0,23.0,23.0,23.0,23.0,12.0,28.0,19.0,27.0,21.0,14.0,26.0,34.0,23.0,23.0,27.0,29.0,28.0,25.0,15.0,31.0,33.0,30.0,37.0,32.0,38.0,29.0,33.0,37.0,37.0,47.0,43.0,39.0,40.0,40.0,49.0,45.0,48.0,58.0,46.0,47.0,54.0,50.0,34.0,49.0,54.0,43.0,34.0,45.0,38.0,21.0,31.0,35.0,37.0,36.0,27.0,26.0,31.0,22.0,24.0,22.0,12.0,12.0,8.0,17.0,4.0,11.0,10.0,8.0,10.0,6.0,6.0,2.0,2.0 M84010,43.0,50.0,47.0,56.0,50.0,64.0,54.0,43.0,51.0,58.0,67.0,46.0,64.0,64.0,67.0,54.0,47.0,36.0,42.0,44.0,27.0,35.0,51.0,49.0,60.0,54.0,72.0,62.0,76.0,79.0,74.0,92.0,76.0,81.0,106.0,90.0,91.0,94.0,79.0,67.0,77.0,74.0,72.0,80.0,72.0,80.0,69.0,80.0,61.0,63.0,63.0,56.0,66.0,45.0,59.0,61.0,69.0,66.0,59.0,61.0,63.0,56.0,65.0,46.0,49.0,60.0,56.0,49.0,47.0,55.0,55.0,47.0,53.0,51.0,40.0,54.0,49.0,49.0,55.0,46.0,44.0,50.0,39.0,24.0,22.0,23.0,21.0,24.0,19.0,23.0,15.0,13.0,9.0,7.0,6.0,15.0 M84011,85.0,108.0,116.0,129.0,112.0,110.0,126.0,109.0,120.0,112.0,126.0,125.0,125.0,118.0,120.0,93.0,115.0,123.0,117.0,119.0,102.0,90.0,121.0,105.0,146.0,114.0,118.0,159.0,142.0,154.0,135.0,159.0,135.0,150.0,162.0,158.0,141.0,158.0,133.0,135.0,134.0,121.0,123.0,125.0,131.0,128.0,136.0,132.0,112.0,123.0,118.0,122.0,126.0,138.0,164.0,146.0,154.0,151.0,155.0,156.0,145.0,140.0,115.0,144.0,125.0,109.0,139.0,124.0,132.0,113.0,109.0,112.0,113.0,113.0,111.0,128.0,113.0,120.0,117.0,98.0,114.0,105.0,95.0,63.0,62.0,57.0,60.0,40.0,29.0,34.0,32.0,24.0,22.0,24.0,12.0,26.0 M84012,84.0,92.0,84.0,96.0,99.0,90.0,106.0,102.0,108.0,125.0,111.0,106.0,101.0,101.0,104.0,102.0,108.0,99.0,112.0,69.0,80.0,98.0,80.0,90.0,88.0,88.0,80.0,96.0,94.0,108.0,131.0,133.0,96.0,134.0,142.0,143.0,122.0,149.0,147.0,135.0,122.0,135.0,122.0,131.0,108.0,110.0,95.0,96.0,100.0,118.0,89.0,101.0,96.0,106.0,100.0,118.0,114.0,126.0,118.0,112.0,112.0,117.0,109.0,95.0,96.0,66.0,89.0,92.0,75.0,69.0,56.0,64.0,67.0,71.0,60.0,57.0,49.0,65.0,70.0,56.0,62.0,52.0,41.0,44.0,42.0,28.0,33.0,41.0,33.0,35.0,19.0,23.0,15.0,19.0,9.0,26.0 M84013,25.0,42.0,37.0,41.0,57.0,51.0,58.0,54.0,49.0,54.0,49.0,65.0,68.0,81.0,72.0,75.0,69.0,81.0,68.0,56.0,51.0,49.0,57.0,40.0,67.0,60.0,65.0,59.0,57.0,51.0,72.0,44.0,64.0,69.0,61.0,72.0,70.0,76.0,81.0,75.0,66.0,72.0,66.0,54.0,89.0,83.0,70.0,71.0,78.0,77.0,76.0,69.0,87.0,98.0,100.0,98.0,85.0,96.0,98.0,93.0,101.0,105.0,90.0,102.0,87.0,76.0,74.0,82.0,67.0,68.0,67.0,78.0,84.0,106.0,87.0,71.0,77.0,84.0,89.0,59.0,70.0,80.0,72.0,36.0,58.0,53.0,55.0,42.0,43.0,35.0,31.0,18.0,24.0,15.0,6.0,37.0 M84014,23.0,30.0,21.0,21.0,33.0,26.0,23.0,25.0,35.0,39.0,32.0,49.0,36.0,45.0,37.0,27.0,55.0,51.0,43.0,44.0,34.0,37.0,44.0,43.0,42.0,52.0,39.0,45.0,42.0,41.0,50.0,34.0,48.0,48.0,54.0,52.0,50.0,41.0,45.0,35.0,47.0,55.0,45.0,63.0,56.0,57.0,57.0,57.0,58.0,62.0,56.0,63.0,62.0,69.0,81.0,69.0,58.0,74.0,64.0,80.0,77.0,82.0,62.0,77.0,59.0,51.0,60.0,44.0,64.0,69.0,59.0,64.0,59.0,64.0,71.0,78.0,71.0,73.0,66.0,56.0,54.0,55.0,41.0,33.0,42.0,37.0,27.0,37.0,35.0,36.0,31.0,22.0,24.0,13.0,12.0,32.0 M84015,52.0,52.0,63.0,72.0,66.0,68.0,91.0,94.0,76.0,96.0,72.0,96.0,92.0,103.0,82.0,85.0,104.0,61.0,72.0,71.0,58.0,66.0,49.0,53.0,64.0,67.0,73.0,89.0,77.0,85.0,97.0,107.0,98.0,113.0,122.0,130.0,140.0,128.0,131.0,135.0,118.0,113.0,115.0,118.0,82.0,111.0,88.0,72.0,86.0,78.0,80.0,98.0,75.0,87.0,81.0,85.0,82.0,100.0,79.0,77.0,85.0,78.0,69.0,90.0,74.0,63.0,62.0,65.0,67.0,61.0,42.0,53.0,57.0,59.0,47.0,60.0,56.0,55.0,49.0,47.0,37.0,37.0,35.0,18.0,24.0,30.0,21.0,22.0,22.0,16.0,23.0,9.0,10.0,14.0,12.0,23.0 M84016,16.0,15.0,20.0,13.0,25.0,20.0,19.0,26.0,30.0,18.0,16.0,20.0,16.0,14.0,15.0,23.0,24.0,25.0,28.0,14.0,26.0,11.0,13.0,19.0,25.0,16.0,17.0,16.0,23.0,31.0,24.0,25.0,29.0,20.0,25.0,34.0,20.0,32.0,37.0,16.0,28.0,27.0,22.0,29.0,31.0,26.0,20.0,23.0,28.0,26.0,26.0,30.0,37.0,17.0,27.0,37.0,30.0,29.0,41.0,22.0,32.0,36.0,31.0,27.0,31.0,35.0,30.0,35.0,26.0,22.0,31.0,30.0,21.0,22.0,24.0,33.0,37.0,33.0,31.0,17.0,37.0,47.0,24.0,10.0,13.0,15.0,14.0,13.0,10.0,6.0,5.0,8.0,6.0,3.0,2.0,3.0 M84017,52.0,53.0,60.0,50.0,66.0,55.0,60.0,80.0,62.0,70.0,82.0,99.0,80.0,84.0,78.0,92.0,77.0,80.0,74.0,67.0,63.0,73.0,65.0,77.0,87.0,101.0,101.0,87.0,93.0,85.0,103.0,110.0,134.0,124.0,119.0,122.0,122.0,117.0,127.0,96.0,108.0,110.0,95.0,106.0,87.0,103.0,127.0,99.0,102.0,99.0,79.0,94.0,93.0,85.0,105.0,82.0,69.0,77.0,95.0,79.0,79.0,86.0,71.0,67.0,69.0,64.0,58.0,60.0,57.0,54.0,58.0,56.0,71.0,70.0,58.0,59.0,82.0,84.0,67.0,61.0,57.0,60.0,66.0,49.0,44.0,51.0,39.0,33.0,35.0,30.0,23.0,29.0,13.0,16.0,15.0,40.0 M84018,55.0,52.0,52.0,66.0,62.0,70.0,65.0,66.0,80.0,69.0,79.0,69.0,70.0,82.0,53.0,74.0,64.0,69.0,66.0,62.0,47.0,56.0,60.0,48.0,52.0,72.0,53.0,68.0,54.0,74.0,84.0,77.0,75.0,85.0,98.0,84.0,111.0,85.0,62.0,77.0,77.0,72.0,93.0,79.0,77.0,80.0,84.0,74.0,82.0,65.0,90.0,96.0,93.0,116.0,99.0,127.0,103.0,127.0,105.0,128.0,138.0,112.0,131.0,123.0,108.0,105.0,110.0,107.0,112.0,96.0,89.0,97.0,102.0,87.0,88.0,84.0,82.0,96.0,108.0,65.0,60.0,76.0,66.0,41.0,38.0,39.0,43.0,32.0,30.0,23.0,22.0,15.0,7.0,10.0,9.0,14.0 M84019,79.0,66.0,71.0,94.0,71.0,76.0,79.0,99.0,84.0,99.0,91.0,94.0,94.0,108.0,109.0,86.0,84.0,94.0,92.0,80.0,80.0,81.0,75.0,76.0,83.0,79.0,86.0,92.0,106.0,92.0,108.0,108.0,96.0,114.0,94.0,122.0,122.0,113.0,102.0,106.0,97.0,112.0,103.0,108.0,92.0,95.0,88.0,102.0,94.0,107.0,103.0,101.0,116.0,132.0,119.0,122.0,120.0,150.0,140.0,136.0,100.0,112.0,120.0,97.0,118.0,104.0,95.0,92.0,110.0,81.0,92.0,83.0,79.0,104.0,97.0,100.0,86.0,87.0,93.0,78.0,77.0,60.0,52.0,53.0,63.0,46.0,36.0,31.0,46.0,30.0,23.0,14.0,13.0,17.0,10.0,42.0 M84020,62.0,71.0,61.0,83.0,76.0,64.0,81.0,79.0,105.0,95.0,89.0,92.0,85.0,91.0,87.0,82.0,109.0,81.0,74.0,53.0,55.0,55.0,54.0,55.0,68.0,75.0,96.0,84.0,102.0,92.0,101.0,99.0,130.0,108.0,109.0,126.0,129.0,129.0,102.0,124.0,115.0,108.0,106.0,117.0,118.0,106.0,107.0,92.0,74.0,81.0,82.0,95.0,92.0,73.0,97.0,105.0,85.0,93.0,93.0,87.0,96.0,94.0,78.0,81.0,64.0,71.0,73.0,56.0,66.0,76.0,49.0,56.0,48.0,63.0,66.0,58.0,69.0,72.0,74.0,48.0,64.0,68.0,46.0,38.0,23.0,41.0,26.0,19.0,27.0,25.0,26.0,11.0,17.0,13.0,7.0,18.0 M84021,59.0,54.0,48.0,71.0,63.0,65.0,78.0,88.0,83.0,93.0,85.0,72.0,91.0,100.0,84.0,91.0,103.0,88.0,61.0,65.0,78.0,73.0,89.0,73.0,102.0,82.0,74.0,101.0,102.0,96.0,92.0,105.0,99.0,132.0,104.0,97.0,106.0,111.0,113.0,97.0,117.0,122.0,117.0,130.0,127.0,107.0,125.0,105.0,106.0,106.0,96.0,101.0,110.0,106.0,123.0,112.0,130.0,109.0,122.0,131.0,119.0,118.0,112.0,102.0,122.0,114.0,98.0,93.0,116.0,93.0,87.0,79.0,83.0,94.0,91.0,97.0,91.0,127.0,109.0,77.0,81.0,93.0,74.0,62.0,61.0,60.0,58.0,50.0,50.0,44.0,29.0,25.0,27.0,22.0,22.0,50.0 M84022,30.0,33.0,36.0,30.0,39.0,45.0,42.0,41.0,45.0,48.0,50.0,50.0,58.0,56.0,61.0,50.0,52.0,48.0,41.0,52.0,45.0,35.0,37.0,43.0,47.0,40.0,51.0,39.0,52.0,43.0,48.0,54.0,61.0,69.0,70.0,44.0,74.0,55.0,63.0,41.0,69.0,63.0,63.0,68.0,54.0,78.0,60.0,51.0,57.0,38.0,53.0,54.0,64.0,52.0,49.0,51.0,61.0,67.0,52.0,61.0,55.0,50.0,47.0,49.0,52.0,47.0,49.0,45.0,42.0,31.0,47.0,44.0,28.0,46.0,31.0,39.0,39.0,33.0,46.0,33.0,27.0,35.0,23.0,24.0,24.0,21.0,17.0,14.0,7.0,9.0,10.0,10.0,11.0,5.0,5.0,11.0 M84023,76.0,76.0,70.0,75.0,99.0,85.0,125.0,111.0,122.0,140.0,135.0,149.0,146.0,176.0,163.0,137.0,149.0,147.0,135.0,99.0,87.0,83.0,82.0,74.0,93.0,103.0,107.0,105.0,115.0,104.0,106.0,121.0,115.0,148.0,144.0,126.0,159.0,156.0,153.0,169.0,180.0,167.0,189.0,147.0,128.0,165.0,154.0,129.0,158.0,154.0,152.0,146.0,127.0,131.0,142.0,129.0,121.0,103.0,119.0,109.0,133.0,114.0,92.0,86.0,100.0,92.0,66.0,91.0,72.0,73.0,80.0,84.0,62.0,66.0,84.0,63.0,59.0,70.0,72.0,59.0,64.0,60.0,49.0,33.0,32.0,39.0,36.0,36.0,32.0,25.0,22.0,13.0,7.0,10.0,9.0,30.0 M84024,23.0,14.0,26.0,25.0,25.0,30.0,26.0,22.0,31.0,29.0,17.0,27.0,32.0,15.0,29.0,25.0,30.0,28.0,32.0,22.0,29.0,26.0,26.0,34.0,19.0,22.0,27.0,22.0,18.0,30.0,37.0,27.0,31.0,39.0,32.0,28.0,38.0,33.0,24.0,46.0,33.0,32.0,29.0,36.0,36.0,34.0,34.0,32.0,30.0,33.0,39.0,42.0,38.0,40.0,49.0,61.0,66.0,58.0,67.0,58.0,65.0,49.0,53.0,72.0,51.0,50.0,55.0,41.0,62.0,45.0,50.0,28.0,39.0,51.0,51.0,49.0,57.0,49.0,63.0,58.0,47.0,44.0,48.0,34.0,32.0,34.0,28.0,27.0,19.0,17.0,19.0,9.0,18.0,14.0,8.0,19.0 M84025,46.0,34.0,40.0,53.0,53.0,49.0,48.0,72.0,62.0,52.0,52.0,53.0,67.0,66.0,49.0,61.0,57.0,44.0,62.0,53.0,42.0,30.0,41.0,47.0,52.0,40.0,41.0,46.0,41.0,76.0,63.0,58.0,54.0,72.0,80.0,76.0,65.0,64.0,66.0,67.0,65.0,65.0,73.0,62.0,64.0,62.0,58.0,59.0,72.0,74.0,83.0,71.0,90.0,88.0,87.0,87.0,93.0,79.0,95.0,112.0,98.0,88.0,96.0,110.0,100.0,91.0,88.0,76.0,89.0,75.0,95.0,80.0,88.0,81.0,72.0,86.0,85.0,82.0,95.0,66.0,71.0,75.0,46.0,53.0,40.0,51.0,37.0,40.0,33.0,36.0,29.0,18.0,13.0,17.0,11.0,43.0 M84026,32.0,33.0,18.0,40.0,27.0,25.0,34.0,38.0,31.0,35.0,37.0,34.0,36.0,42.0,46.0,44.0,31.0,47.0,33.0,33.0,24.0,29.0,32.0,28.0,26.0,33.0,30.0,37.0,39.0,39.0,53.0,38.0,46.0,48.0,54.0,41.0,49.0,50.0,42.0,36.0,33.0,34.0,38.0,37.0,33.0,49.0,43.0,41.0,45.0,43.0,38.0,41.0,52.0,69.0,45.0,58.0,38.0,61.0,39.0,48.0,61.0,57.0,57.0,51.0,60.0,39.0,42.0,50.0,48.0,52.0,34.0,38.0,33.0,35.0,41.0,47.0,54.0,42.0,59.0,44.0,34.0,42.0,32.0,31.0,28.0,22.0,21.0,15.0,17.0,13.0,9.0,11.0,12.0,6.0,7.0,12.0 M84028,78.0,79.0,85.0,84.0,71.0,81.0,65.0,83.0,92.0,99.0,107.0,94.0,90.0,95.0,110.0,105.0,113.0,90.0,101.0,68.0,55.0,62.0,67.0,88.0,87.0,109.0,108.0,113.0,150.0,124.0,149.0,132.0,150.0,124.0,138.0,153.0,162.0,124.0,145.0,135.0,134.0,135.0,134.0,102.0,124.0,125.0,134.0,108.0,110.0,110.0,124.0,124.0,119.0,116.0,123.0,123.0,112.0,122.0,116.0,118.0,110.0,128.0,120.0,109.0,120.0,108.0,107.0,97.0,90.0,108.0,110.0,107.0,95.0,112.0,96.0,80.0,94.0,97.0,101.0,87.0,88.0,64.0,52.0,52.0,42.0,58.0,44.0,30.0,29.0,31.0,38.0,18.0,19.0,10.0,10.0,22.0 M84029,31.0,25.0,41.0,43.0,49.0,33.0,54.0,35.0,42.0,43.0,40.0,45.0,43.0,62.0,45.0,49.0,32.0,60.0,48.0,35.0,23.0,35.0,40.0,20.0,33.0,28.0,38.0,45.0,44.0,51.0,53.0,32.0,52.0,61.0,66.0,55.0,67.0,43.0,52.0,59.0,68.0,57.0,49.0,48.0,57.0,60.0,42.0,43.0,46.0,42.0,55.0,55.0,54.0,49.0,61.0,53.0,52.0,69.0,56.0,60.0,53.0,47.0,53.0,45.0,51.0,35.0,35.0,40.0,39.0,31.0,31.0,36.0,32.0,41.0,29.0,30.0,31.0,54.0,44.0,36.0,39.0,34.0,43.0,25.0,17.0,21.0,19.0,25.0,16.0,12.0,19.0,10.0,5.0,10.0,9.0,19.0 M84030,46.0,41.0,48.0,55.0,56.0,68.0,60.0,68.0,63.0,77.0,66.0,71.0,68.0,67.0,66.0,70.0,59.0,77.0,63.0,54.0,41.0,52.0,45.0,51.0,49.0,74.0,73.0,58.0,60.0,77.0,65.0,72.0,78.0,87.0,94.0,97.0,84.0,109.0,91.0,93.0,73.0,77.0,81.0,70.0,82.0,86.0,69.0,67.0,69.0,74.0,77.0,78.0,87.0,103.0,108.0,83.0,111.0,99.0,90.0,111.0,94.0,99.0,106.0,90.0,92.0,89.0,89.0,85.0,75.0,89.0,72.0,91.0,72.0,87.0,77.0,68.0,77.0,103.0,90.0,89.0,85.0,72.0,61.0,47.0,37.0,43.0,38.0,35.0,36.0,36.0,26.0,18.0,11.0,20.0,12.0,24.0 M84031,22.0,32.0,28.0,40.0,34.0,33.0,41.0,43.0,40.0,41.0,45.0,41.0,37.0,56.0,94.0,87.0,96.0,113.0,88.0,41.0,42.0,26.0,28.0,24.0,28.0,35.0,41.0,36.0,33.0,38.0,37.0,45.0,50.0,45.0,50.0,52.0,50.0,51.0,38.0,42.0,42.0,34.0,51.0,50.0,50.0,52.0,55.0,45.0,46.0,33.0,46.0,47.0,46.0,55.0,48.0,51.0,58.0,75.0,73.0,59.0,59.0,66.0,73.0,64.0,57.0,49.0,49.0,50.0,36.0,33.0,42.0,33.0,40.0,36.0,33.0,31.0,44.0,39.0,32.0,40.0,22.0,30.0,20.0,25.0,14.0,15.0,12.0,19.0,10.0,5.0,7.0,9.0,8.0,7.0,6.0,14.0 M84032,81.0,80.0,82.0,75.0,88.0,98.0,84.0,74.0,82.0,78.0,78.0,77.0,87.0,63.0,60.0,73.0,64.0,57.0,55.0,62.0,74.0,80.0,86.0,78.0,83.0,84.0,116.0,122.0,119.0,127.0,143.0,143.0,164.0,173.0,176.0,156.0,165.0,153.0,128.0,133.0,127.0,122.0,111.0,85.0,84.0,101.0,80.0,64.0,84.0,59.0,67.0,87.0,78.0,76.0,76.0,64.0,59.0,66.0,63.0,60.0,54.0,57.0,56.0,51.0,50.0,52.0,40.0,48.0,39.0,30.0,41.0,40.0,39.0,38.0,40.0,32.0,28.0,34.0,39.0,36.0,36.0,30.0,32.0,29.0,22.0,24.0,22.0,20.0,19.0,11.0,10.0,9.0,9.0,8.0,6.0,6.0 M84034,8.0,14.0,8.0,10.0,16.0,11.0,15.0,13.0,17.0,12.0,12.0,12.0,20.0,26.0,14.0,13.0,15.0,10.0,9.0,10.0,10.0,12.0,10.0,9.0,5.0,8.0,10.0,16.0,16.0,14.0,8.0,16.0,13.0,22.0,18.0,18.0,15.0,23.0,16.0,20.0,26.0,16.0,23.0,21.0,15.0,15.0,22.0,16.0,13.0,10.0,15.0,11.0,16.0,17.0,15.0,11.0,15.0,24.0,11.0,16.0,9.0,16.0,14.0,8.0,15.0,7.0,8.0,11.0,10.0,12.0,8.0,12.0,9.0,9.0,12.0,13.0,11.0,11.0,10.0,13.0,3.0,4.0,7.0,2.0,7.0,3.0,4.0,4.0,5.0,2.0,2.0,1.0,,3.0,,2.0 M84035,53.0,42.0,58.0,48.0,64.0,70.0,63.0,70.0,63.0,78.0,77.0,83.0,84.0,86.0,99.0,82.0,84.0,100.0,77.0,67.0,73.0,39.0,59.0,51.0,57.0,81.0,66.0,54.0,82.0,74.0,86.0,70.0,80.0,101.0,92.0,112.0,86.0,116.0,94.0,100.0,97.0,110.0,106.0,76.0,87.0,86.0,64.0,80.0,85.0,88.0,71.0,76.0,75.0,96.0,72.0,85.0,85.0,77.0,63.0,60.0,70.0,52.0,65.0,53.0,68.0,56.0,44.0,49.0,49.0,39.0,61.0,47.0,42.0,46.0,45.0,44.0,33.0,47.0,47.0,31.0,34.0,37.0,28.0,27.0,24.0,25.0,29.0,26.0,18.0,22.0,13.0,14.0,9.0,4.0,10.0,23.0 M84036,48.0,56.0,60.0,61.0,68.0,59.0,64.0,82.0,75.0,75.0,104.0,98.0,84.0,112.0,94.0,88.0,86.0,97.0,54.0,71.0,53.0,54.0,67.0,78.0,71.0,76.0,84.0,89.0,93.0,84.0,84.0,92.0,96.0,90.0,84.0,92.0,95.0,87.0,100.0,100.0,101.0,94.0,113.0,104.0,113.0,129.0,124.0,81.0,105.0,95.0,100.0,100.0,111.0,107.0,109.0,101.0,104.0,91.0,107.0,98.0,111.0,121.0,113.0,121.0,115.0,94.0,105.0,67.0,77.0,97.0,78.0,94.0,74.0,92.0,84.0,94.0,90.0,92.0,82.0,78.0,67.0,82.0,75.0,63.0,61.0,47.0,48.0,34.0,39.0,40.0,27.0,22.0,14.0,19.0,13.0,36.0 M84037,52.0,54.0,59.0,77.0,63.0,62.0,65.0,58.0,66.0,73.0,63.0,62.0,62.0,66.0,62.0,77.0,79.0,77.0,62.0,48.0,61.0,47.0,58.0,32.0,54.0,68.0,61.0,63.0,51.0,70.0,53.0,86.0,84.0,80.0,85.0,85.0,79.0,102.0,89.0,79.0,92.0,91.0,78.0,69.0,101.0,89.0,66.0,61.0,71.0,82.0,82.0,80.0,71.0,80.0,72.0,89.0,90.0,89.0,78.0,86.0,100.0,89.0,79.0,81.0,88.0,74.0,82.0,69.0,56.0,69.0,64.0,66.0,63.0,62.0,59.0,83.0,66.0,74.0,58.0,63.0,42.0,55.0,28.0,43.0,41.0,33.0,48.0,26.0,25.0,22.0,10.0,18.0,13.0,11.0,4.0,17.0 M84040,32.0,37.0,38.0,40.0,39.0,41.0,39.0,25.0,37.0,40.0,37.0,45.0,36.0,44.0,44.0,39.0,40.0,42.0,36.0,47.0,52.0,67.0,58.0,72.0,79.0,82.0,83.0,82.0,104.0,84.0,81.0,101.0,90.0,109.0,84.0,107.0,80.0,90.0,59.0,79.0,72.0,75.0,70.0,63.0,53.0,43.0,52.0,46.0,49.0,49.0,49.0,73.0,52.0,68.0,54.0,57.0,67.0,59.0,58.0,58.0,74.0,70.0,76.0,73.0,54.0,49.0,52.0,46.0,69.0,49.0,43.0,45.0,40.0,40.0,46.0,49.0,55.0,41.0,44.0,41.0,36.0,41.0,33.0,30.0,32.0,19.0,24.0,27.0,17.0,23.0,15.0,4.0,17.0,11.0,7.0,32.0 M84041,48.0,31.0,44.0,42.0,36.0,43.0,35.0,40.0,28.0,43.0,33.0,34.0,36.0,38.0,37.0,29.0,28.0,28.0,32.0,25.0,32.0,32.0,36.0,31.0,35.0,53.0,59.0,59.0,67.0,61.0,58.0,64.0,68.0,76.0,69.0,74.0,49.0,55.0,64.0,49.0,53.0,47.0,46.0,39.0,53.0,37.0,34.0,26.0,41.0,37.0,34.0,34.0,25.0,37.0,36.0,37.0,44.0,45.0,35.0,38.0,38.0,32.0,35.0,46.0,26.0,36.0,36.0,35.0,37.0,35.0,28.0,28.0,28.0,42.0,22.0,27.0,28.0,29.0,22.0,23.0,28.0,27.0,21.0,8.0,13.0,12.0,13.0,15.0,8.0,8.0,9.0,9.0,8.0,11.0,4.0,2.0 M84042,38.0,40.0,35.0,52.0,50.0,44.0,58.0,57.0,54.0,46.0,55.0,58.0,62.0,58.0,70.0,45.0,47.0,61.0,47.0,33.0,54.0,30.0,39.0,35.0,33.0,63.0,54.0,42.0,64.0,56.0,72.0,64.0,69.0,80.0,75.0,65.0,58.0,59.0,54.0,72.0,57.0,48.0,57.0,54.0,76.0,71.0,50.0,46.0,52.0,53.0,57.0,64.0,71.0,65.0,75.0,75.0,85.0,82.0,87.0,81.0,86.0,76.0,91.0,84.0,83.0,70.0,81.0,68.0,53.0,55.0,61.0,65.0,61.0,61.0,54.0,64.0,55.0,69.0,68.0,43.0,61.0,34.0,52.0,32.0,43.0,37.0,22.0,25.0,35.0,33.0,24.0,12.0,14.0,15.0,9.0,19.0 M84043,64.0,83.0,83.0,89.0,94.0,90.0,100.0,88.0,95.0,111.0,97.0,107.0,117.0,134.0,117.0,111.0,123.0,128.0,113.0,90.0,75.0,88.0,84.0,105.0,108.0,131.0,121.0,130.0,110.0,123.0,132.0,114.0,130.0,142.0,122.0,130.0,141.0,136.0,125.0,149.0,125.0,129.0,134.0,133.0,152.0,149.0,107.0,141.0,138.0,128.0,120.0,138.0,148.0,161.0,165.0,157.0,149.0,167.0,167.0,157.0,154.0,154.0,149.0,145.0,134.0,135.0,141.0,143.0,115.0,133.0,117.0,111.0,102.0,115.0,119.0,112.0,126.0,110.0,120.0,105.0,98.0,81.0,77.0,67.0,45.0,59.0,57.0,47.0,42.0,31.0,30.0,29.0,20.0,16.0,9.0,36.0 M84044,24.0,30.0,25.0,36.0,34.0,24.0,27.0,30.0,28.0,29.0,32.0,28.0,36.0,20.0,26.0,36.0,32.0,21.0,28.0,22.0,27.0,28.0,15.0,19.0,27.0,29.0,20.0,25.0,45.0,41.0,27.0,19.0,43.0,40.0,33.0,37.0,49.0,41.0,40.0,25.0,32.0,41.0,32.0,44.0,26.0,31.0,30.0,28.0,37.0,34.0,34.0,44.0,34.0,46.0,43.0,42.0,35.0,42.0,45.0,40.0,50.0,46.0,36.0,50.0,35.0,28.0,34.0,39.0,33.0,29.0,31.0,36.0,36.0,38.0,34.0,32.0,21.0,50.0,50.0,35.0,45.0,29.0,34.0,23.0,15.0,16.0,22.0,20.0,14.0,6.0,6.0,5.0,5.0,2.0,2.0,6.0 M84046,23.0,34.0,35.0,43.0,38.0,47.0,53.0,37.0,45.0,47.0,55.0,47.0,44.0,59.0,49.0,56.0,51.0,41.0,46.0,39.0,26.0,29.0,23.0,24.0,23.0,41.0,25.0,33.0,29.0,37.0,27.0,34.0,39.0,39.0,48.0,53.0,41.0,57.0,47.0,51.0,58.0,44.0,53.0,48.0,52.0,51.0,57.0,39.0,53.0,51.0,47.0,47.0,54.0,57.0,66.0,51.0,50.0,65.0,57.0,58.0,56.0,60.0,73.0,55.0,48.0,48.0,49.0,50.0,52.0,35.0,32.0,34.0,46.0,49.0,43.0,50.0,56.0,64.0,72.0,61.0,63.0,63.0,46.0,34.0,38.0,35.0,36.0,26.0,22.0,18.0,23.0,19.0,10.0,9.0,7.0,21.0 M84047,21.0,17.0,25.0,14.0,19.0,23.0,30.0,27.0,28.0,24.0,22.0,21.0,25.0,30.0,25.0,32.0,38.0,24.0,20.0,18.0,20.0,15.0,19.0,25.0,17.0,26.0,21.0,19.0,20.0,20.0,21.0,29.0,17.0,22.0,25.0,37.0,23.0,18.0,25.0,30.0,23.0,17.0,30.0,36.0,27.0,35.0,24.0,26.0,31.0,36.0,31.0,34.0,39.0,31.0,39.0,40.0,52.0,35.0,55.0,50.0,50.0,45.0,41.0,50.0,42.0,41.0,49.0,40.0,33.0,44.0,25.0,30.0,33.0,47.0,29.0,31.0,36.0,35.0,37.0,24.0,34.0,26.0,26.0,29.0,18.0,16.0,16.0,19.0,12.0,9.0,8.0,5.0,5.0,,5.0,7.0 M84049,26.0,22.0,18.0,22.0,26.0,23.0,19.0,37.0,29.0,29.0,25.0,27.0,34.0,30.0,33.0,23.0,27.0,21.0,19.0,16.0,27.0,17.0,14.0,26.0,19.0,19.0,24.0,28.0,37.0,36.0,38.0,25.0,39.0,42.0,45.0,22.0,26.0,26.0,30.0,26.0,39.0,28.0,32.0,29.0,29.0,24.0,28.0,28.0,30.0,27.0,39.0,29.0,29.0,49.0,40.0,35.0,52.0,53.0,59.0,61.0,48.0,45.0,47.0,38.0,49.0,41.0,44.0,46.0,39.0,36.0,38.0,46.0,47.0,42.0,41.0,51.0,52.0,48.0,41.0,33.0,30.0,31.0,31.0,29.0,19.0,23.0,20.0,21.0,16.0,16.0,7.0,15.0,14.0,11.0,8.0,12.0 M84050,27.0,38.0,33.0,48.0,49.0,53.0,53.0,66.0,53.0,54.0,53.0,60.0,60.0,61.0,57.0,53.0,39.0,50.0,42.0,30.0,27.0,26.0,28.0,35.0,31.0,42.0,44.0,40.0,57.0,48.0,55.0,63.0,79.0,70.0,65.0,62.0,72.0,74.0,63.0,61.0,71.0,74.0,61.0,74.0,68.0,52.0,47.0,60.0,46.0,46.0,38.0,54.0,49.0,59.0,48.0,49.0,46.0,55.0,47.0,52.0,46.0,53.0,48.0,54.0,43.0,44.0,40.0,33.0,33.0,26.0,31.0,23.0,27.0,31.0,25.0,22.0,12.0,31.0,33.0,25.0,28.0,21.0,26.0,10.0,11.0,17.0,13.0,10.0,16.0,8.0,5.0,6.0,6.0,6.0,1.0,7.0 M84051,69.0,58.0,74.0,87.0,86.0,73.0,95.0,81.0,88.0,73.0,88.0,79.0,87.0,101.0,104.0,86.0,76.0,81.0,77.0,71.0,55.0,70.0,70.0,70.0,74.0,84.0,110.0,108.0,110.0,96.0,105.0,119.0,115.0,94.0,114.0,123.0,122.0,99.0,110.0,99.0,113.0,98.0,100.0,89.0,99.0,79.0,64.0,73.0,77.0,87.0,63.0,65.0,78.0,80.0,77.0,98.0,94.0,74.0,90.0,86.0,99.0,72.0,86.0,81.0,69.0,66.0,66.0,57.0,69.0,61.0,75.0,58.0,46.0,47.0,51.0,50.0,48.0,49.0,47.0,39.0,27.0,38.0,35.0,28.0,22.0,24.0,24.0,19.0,22.0,13.0,10.0,8.0,7.0,7.0,3.0,8.0 M84055,12.0,3.0,5.0,3.0,7.0,9.0,7.0,6.0,7.0,7.0,8.0,10.0,12.0,13.0,10.0,3.0,6.0,12.0,7.0,8.0,17.0,9.0,10.0,11.0,14.0,14.0,14.0,13.0,16.0,11.0,14.0,12.0,15.0,14.0,14.0,10.0,7.0,16.0,8.0,18.0,9.0,12.0,9.0,7.0,16.0,18.0,3.0,12.0,14.0,16.0,16.0,17.0,12.0,24.0,19.0,12.0,19.0,17.0,20.0,22.0,26.0,17.0,15.0,22.0,18.0,15.0,12.0,21.0,20.0,17.0,12.0,17.0,19.0,16.0,15.0,14.0,17.0,15.0,15.0,9.0,14.0,7.0,8.0,4.0,5.0,10.0,3.0,,1.0,1.0,1.0,4.0,1.0,1.0,, M84059,9.0,16.0,15.0,11.0,4.0,16.0,22.0,13.0,21.0,22.0,28.0,15.0,25.0,27.0,29.0,18.0,12.0,16.0,14.0,18.0,21.0,24.0,21.0,22.0,24.0,29.0,17.0,23.0,28.0,21.0,21.0,26.0,18.0,33.0,22.0,30.0,25.0,36.0,30.0,20.0,24.0,27.0,32.0,23.0,30.0,31.0,30.0,21.0,21.0,16.0,24.0,16.0,20.0,10.0,22.0,13.0,17.0,24.0,21.0,23.0,19.0,21.0,11.0,14.0,14.0,10.0,27.0,20.0,17.0,20.0,22.0,17.0,21.0,11.0,25.0,18.0,12.0,7.0,16.0,11.0,12.0,13.0,12.0,12.0,9.0,12.0,8.0,8.0,4.0,1.0,2.0,2.0,5.0,2.0,3.0,4.0 M84060,25.0,28.0,27.0,25.0,29.0,44.0,19.0,39.0,30.0,27.0,40.0,37.0,40.0,38.0,37.0,38.0,35.0,51.0,34.0,27.0,26.0,26.0,32.0,31.0,43.0,31.0,47.0,37.0,36.0,34.0,36.0,33.0,39.0,41.0,41.0,42.0,48.0,46.0,36.0,45.0,33.0,41.0,33.0,46.0,46.0,39.0,39.0,38.0,33.0,29.0,51.0,35.0,39.0,49.0,60.0,55.0,58.0,52.0,55.0,53.0,57.0,49.0,43.0,46.0,51.0,44.0,35.0,51.0,43.0,38.0,43.0,36.0,41.0,46.0,34.0,32.0,50.0,58.0,56.0,41.0,51.0,50.0,28.0,23.0,17.0,24.0,24.0,20.0,17.0,17.0,9.0,11.0,9.0,7.0,6.0,11.0 M84061,13.0,27.0,19.0,29.0,25.0,31.0,33.0,38.0,30.0,17.0,24.0,18.0,26.0,31.0,12.0,36.0,29.0,28.0,24.0,26.0,31.0,23.0,18.0,26.0,25.0,28.0,29.0,26.0,23.0,36.0,26.0,35.0,40.0,33.0,38.0,39.0,44.0,37.0,45.0,25.0,24.0,26.0,28.0,40.0,35.0,32.0,37.0,32.0,30.0,29.0,28.0,25.0,49.0,33.0,45.0,32.0,45.0,51.0,52.0,60.0,51.0,48.0,43.0,40.0,49.0,46.0,44.0,51.0,47.0,30.0,46.0,43.0,42.0,44.0,34.0,41.0,46.0,46.0,32.0,39.0,44.0,41.0,33.0,24.0,29.0,26.0,29.0,18.0,21.0,10.0,11.0,12.0,8.0,5.0,4.0,6.0 M84062,31.0,37.0,36.0,43.0,39.0,42.0,37.0,57.0,43.0,43.0,59.0,48.0,42.0,42.0,42.0,34.0,30.0,35.0,40.0,21.0,33.0,27.0,28.0,29.0,30.0,30.0,38.0,45.0,45.0,61.0,41.0,69.0,51.0,76.0,59.0,68.0,67.0,57.0,50.0,53.0,55.0,59.0,42.0,54.0,46.0,40.0,43.0,44.0,34.0,48.0,52.0,55.0,46.0,58.0,67.0,50.0,64.0,62.0,43.0,66.0,56.0,57.0,53.0,59.0,47.0,49.0,41.0,46.0,41.0,28.0,38.0,28.0,32.0,19.0,28.0,36.0,33.0,30.0,30.0,23.0,16.0,20.0,14.0,8.0,7.0,3.0,4.0,14.0,3.0,3.0,3.0,1.0,3.0,2.0,1.0,7.0 M84063,33.0,35.0,36.0,35.0,27.0,47.0,37.0,45.0,47.0,45.0,72.0,47.0,56.0,55.0,60.0,62.0,61.0,50.0,36.0,38.0,28.0,30.0,29.0,27.0,27.0,30.0,32.0,36.0,40.0,37.0,38.0,52.0,47.0,39.0,50.0,59.0,46.0,68.0,39.0,71.0,51.0,64.0,69.0,61.0,67.0,52.0,57.0,59.0,67.0,66.0,51.0,52.0,59.0,59.0,52.0,46.0,39.0,37.0,35.0,37.0,37.0,38.0,30.0,50.0,47.0,30.0,26.0,23.0,32.0,26.0,26.0,20.0,26.0,32.0,26.0,26.0,26.0,31.0,31.0,26.0,31.0,13.0,21.0,16.0,8.0,9.0,14.0,14.0,18.0,12.0,6.0,7.0,10.0,3.0,2.0,17.0 M84064,31.0,28.0,40.0,40.0,42.0,46.0,50.0,46.0,47.0,39.0,48.0,52.0,40.0,47.0,38.0,50.0,24.0,46.0,42.0,35.0,23.0,24.0,22.0,27.0,25.0,33.0,34.0,50.0,48.0,36.0,52.0,63.0,52.0,64.0,79.0,72.0,61.0,75.0,60.0,63.0,65.0,57.0,51.0,57.0,45.0,51.0,52.0,38.0,37.0,35.0,36.0,34.0,46.0,26.0,48.0,41.0,38.0,48.0,47.0,46.0,29.0,42.0,36.0,38.0,44.0,36.0,45.0,36.0,33.0,31.0,26.0,31.0,22.0,33.0,23.0,30.0,30.0,30.0,20.0,19.0,15.0,16.0,17.0,18.0,15.0,10.0,16.0,9.0,14.0,11.0,13.0,6.0,6.0,4.0,5.0,7.0 M84065,43.0,47.0,54.0,47.0,51.0,67.0,56.0,53.0,51.0,58.0,66.0,52.0,44.0,54.0,42.0,38.0,44.0,38.0,31.0,30.0,34.0,38.0,47.0,41.0,48.0,46.0,49.0,62.0,74.0,77.0,80.0,82.0,84.0,81.0,87.0,78.0,85.0,85.0,71.0,88.0,56.0,72.0,51.0,57.0,65.0,55.0,47.0,51.0,51.0,46.0,44.0,39.0,34.0,36.0,22.0,29.0,31.0,36.0,41.0,28.0,55.0,29.0,34.0,35.0,30.0,28.0,22.0,24.0,35.0,16.0,27.0,25.0,13.0,20.0,20.0,15.0,23.0,24.0,17.0,13.0,18.0,16.0,19.0,12.0,13.0,13.0,10.0,10.0,9.0,10.0,13.0,8.0,4.0,4.0,3.0,10.0 M84066,35.0,33.0,46.0,41.0,35.0,45.0,37.0,47.0,41.0,42.0,42.0,33.0,49.0,40.0,37.0,40.0,42.0,43.0,44.0,31.0,24.0,28.0,30.0,34.0,22.0,28.0,28.0,37.0,41.0,46.0,36.0,54.0,47.0,56.0,64.0,54.0,50.0,57.0,61.0,43.0,39.0,62.0,46.0,53.0,57.0,41.0,49.0,39.0,34.0,56.0,37.0,42.0,44.0,57.0,46.0,37.0,44.0,45.0,44.0,59.0,39.0,48.0,50.0,36.0,39.0,43.0,34.0,35.0,40.0,29.0,25.0,32.0,32.0,39.0,38.0,33.0,39.0,29.0,40.0,29.0,30.0,26.0,20.0,13.0,9.0,13.0,9.0,9.0,6.0,6.0,9.0,6.0,6.0,3.0,3.0,9.0 M84067,29.0,30.0,32.0,48.0,24.0,26.0,44.0,42.0,44.0,39.0,39.0,47.0,40.0,54.0,52.0,44.0,53.0,41.0,34.0,46.0,31.0,32.0,25.0,44.0,39.0,33.0,33.0,60.0,47.0,42.0,51.0,50.0,46.0,52.0,62.0,49.0,71.0,60.0,60.0,68.0,58.0,60.0,60.0,57.0,60.0,58.0,47.0,49.0,34.0,44.0,42.0,43.0,57.0,58.0,64.0,59.0,44.0,46.0,39.0,50.0,55.0,59.0,50.0,59.0,52.0,50.0,44.0,37.0,37.0,35.0,37.0,27.0,32.0,35.0,38.0,39.0,54.0,44.0,40.0,36.0,47.0,34.0,20.0,27.0,24.0,23.0,18.0,15.0,20.0,15.0,15.0,7.0,10.0,9.0,7.0,20.0 M84069,23.0,34.0,28.0,36.0,27.0,28.0,34.0,37.0,31.0,39.0,28.0,38.0,33.0,27.0,40.0,35.0,29.0,43.0,31.0,25.0,26.0,31.0,45.0,41.0,31.0,40.0,33.0,40.0,39.0,40.0,36.0,46.0,40.0,48.0,35.0,51.0,45.0,54.0,44.0,46.0,43.0,34.0,32.0,44.0,39.0,46.0,44.0,36.0,50.0,46.0,41.0,43.0,57.0,56.0,55.0,43.0,54.0,51.0,70.0,47.0,55.0,59.0,51.0,42.0,45.0,51.0,38.0,28.0,40.0,30.0,42.0,38.0,32.0,28.0,27.0,28.0,25.0,31.0,40.0,32.0,16.0,23.0,16.0,16.0,9.0,10.0,11.0,8.0,3.0,7.0,10.0,3.0,3.0,3.0,5.0,4.0 M84070,87.0,67.0,100.0,107.0,89.0,102.0,96.0,104.0,104.0,83.0,80.0,86.0,66.0,96.0,73.0,79.0,71.0,73.0,64.0,54.0,56.0,63.0,60.0,43.0,63.0,78.0,68.0,85.0,81.0,98.0,97.0,105.0,112.0,120.0,147.0,117.0,132.0,157.0,117.0,121.0,110.0,112.0,113.0,100.0,88.0,101.0,80.0,91.0,68.0,76.0,77.0,73.0,84.0,84.0,74.0,78.0,81.0,71.0,67.0,68.0,78.0,54.0,50.0,59.0,47.0,51.0,39.0,40.0,47.0,44.0,35.0,37.0,27.0,28.0,26.0,31.0,35.0,18.0,26.0,17.0,24.0,19.0,28.0,15.0,17.0,15.0,10.0,16.0,15.0,11.0,8.0,4.0,7.0,1.0,3.0,10.0 M84609,37.0,31.0,30.0,42.0,24.0,34.0,30.0,34.0,33.0,29.0,29.0,35.0,41.0,22.0,34.0,23.0,33.0,29.0,26.0,25.0,29.0,24.0,21.0,25.0,31.0,35.0,29.0,27.0,44.0,33.0,34.0,41.0,38.0,39.0,32.0,45.0,42.0,43.0,47.0,43.0,35.0,46.0,31.0,37.0,42.0,25.0,28.0,20.0,24.0,30.0,21.0,26.0,36.0,26.0,25.0,23.0,18.0,30.0,25.0,25.0,20.0,18.0,27.0,28.0,17.0,22.0,26.0,25.0,25.0,18.0,14.0,21.0,22.0,16.0,21.0,21.0,9.0,16.0,15.0,10.0,8.0,11.0,13.0,7.0,8.0,1.0,10.0,9.0,3.0,5.0,3.0,4.0,4.0,5.0,2.0,3.0 M84612,63.0,60.0,64.0,50.0,54.0,59.0,61.0,56.0,51.0,64.0,49.0,59.0,47.0,40.0,44.0,32.0,40.0,35.0,38.0,30.0,42.0,34.0,34.0,44.0,45.0,58.0,72.0,56.0,62.0,67.0,78.0,81.0,79.0,72.0,100.0,87.0,76.0,79.0,75.0,68.0,65.0,60.0,56.0,51.0,41.0,57.0,53.0,43.0,40.0,43.0,49.0,40.0,56.0,33.0,44.0,47.0,49.0,65.0,55.0,57.0,62.0,53.0,47.0,53.0,50.0,34.0,33.0,32.0,36.0,31.0,34.0,37.0,21.0,21.0,25.0,24.0,32.0,33.0,26.0,20.0,15.0,17.0,16.0,7.0,19.0,13.0,12.0,7.0,16.0,6.0,2.0,3.0,3.0,3.0,2.0,6.0 M84615,50.0,45.0,59.0,44.0,57.0,58.0,43.0,69.0,67.0,48.0,45.0,54.0,42.0,53.0,57.0,47.0,52.0,50.0,50.0,46.0,29.0,39.0,28.0,39.0,46.0,62.0,50.0,62.0,70.0,66.0,61.0,68.0,87.0,72.0,78.0,68.0,68.0,53.0,72.0,58.0,59.0,61.0,54.0,45.0,58.0,58.0,51.0,47.0,45.0,48.0,41.0,44.0,63.0,43.0,70.0,41.0,61.0,52.0,51.0,57.0,53.0,55.0,40.0,42.0,37.0,47.0,44.0,34.0,41.0,41.0,31.0,35.0,30.0,28.0,39.0,46.0,37.0,32.0,40.0,26.0,31.0,27.0,29.0,16.0,13.0,17.0,10.0,9.0,11.0,8.0,5.0,6.0,1.0,3.0,3.0,3.0 M84616,23.0,22.0,18.0,20.0,26.0,29.0,14.0,22.0,22.0,18.0,24.0,22.0,31.0,25.0,34.0,25.0,30.0,37.0,24.0,16.0,20.0,25.0,17.0,20.0,25.0,20.0,18.0,22.0,17.0,20.0,34.0,29.0,26.0,38.0,21.0,23.0,27.0,30.0,20.0,21.0,24.0,26.0,30.0,29.0,28.0,37.0,23.0,31.0,29.0,36.0,34.0,41.0,26.0,31.0,41.0,36.0,38.0,33.0,36.0,37.0,37.0,41.0,38.0,31.0,31.0,28.0,26.0,23.0,27.0,36.0,31.0,18.0,29.0,24.0,15.0,23.0,19.0,28.0,24.0,14.0,11.0,14.0,6.0,7.0,7.0,10.0,11.0,9.0,10.0,4.0,2.0,2.0,4.0,1.0,1.0,2.0 M84618,10.0,24.0,20.0,13.0,20.0,28.0,20.0,19.0,24.0,25.0,23.0,18.0,23.0,26.0,23.0,19.0,29.0,11.0,24.0,26.0,16.0,15.0,24.0,24.0,17.0,27.0,18.0,12.0,29.0,25.0,34.0,25.0,26.0,31.0,27.0,25.0,26.0,18.0,28.0,33.0,24.0,30.0,15.0,16.0,24.0,24.0,25.0,28.0,27.0,25.0,15.0,18.0,31.0,22.0,36.0,24.0,22.0,30.0,38.0,27.0,30.0,24.0,22.0,25.0,25.0,23.0,14.0,19.0,17.0,18.0,16.0,21.0,15.0,20.0,22.0,16.0,12.0,26.0,26.0,19.0,18.0,18.0,18.0,10.0,10.0,19.0,8.0,9.0,13.0,10.0,6.0,7.0,4.0,5.0,2.0,7.0 M84620,5.0,16.0,11.0,13.0,10.0,16.0,14.0,17.0,8.0,16.0,17.0,16.0,15.0,11.0,14.0,16.0,15.0,13.0,14.0,7.0,11.0,16.0,10.0,8.0,15.0,12.0,11.0,16.0,17.0,11.0,14.0,13.0,17.0,13.0,19.0,16.0,17.0,22.0,12.0,16.0,19.0,9.0,17.0,20.0,19.0,15.0,18.0,21.0,21.0,12.0,13.0,10.0,24.0,25.0,22.0,23.0,31.0,26.0,19.0,31.0,25.0,22.0,26.0,27.0,24.0,24.0,25.0,30.0,26.0,18.0,18.0,21.0,21.0,13.0,18.0,17.0,19.0,25.0,13.0,18.0,9.0,13.0,13.0,16.0,16.0,12.0,8.0,4.0,5.0,3.0,7.0,3.0,1.0,3.0,,5.0 M84621,12.0,10.0,16.0,11.0,19.0,14.0,17.0,18.0,16.0,9.0,21.0,13.0,15.0,17.0,22.0,16.0,16.0,14.0,13.0,9.0,15.0,10.0,14.0,13.0,13.0,15.0,23.0,15.0,17.0,18.0,24.0,21.0,25.0,26.0,14.0,24.0,19.0,20.0,18.0,23.0,17.0,19.0,18.0,29.0,27.0,22.0,22.0,17.0,27.0,19.0,15.0,19.0,15.0,16.0,11.0,19.0,17.0,17.0,16.0,11.0,18.0,14.0,12.0,15.0,10.0,12.0,13.0,12.0,12.0,16.0,7.0,9.0,11.0,15.0,8.0,12.0,6.0,10.0,6.0,3.0,7.0,7.0,6.0,6.0,,4.0,8.0,4.0,3.0,4.0,,3.0,1.0,1.0,2.0,5.0 M84627,11.0,11.0,19.0,23.0,13.0,16.0,13.0,18.0,13.0,23.0,26.0,10.0,24.0,18.0,22.0,22.0,17.0,25.0,22.0,14.0,17.0,14.0,11.0,18.0,16.0,18.0,17.0,16.0,10.0,22.0,20.0,21.0,27.0,25.0,25.0,19.0,23.0,27.0,24.0,17.0,25.0,23.0,21.0,21.0,23.0,20.0,24.0,13.0,8.0,33.0,25.0,28.0,31.0,28.0,20.0,26.0,27.0,23.0,26.0,32.0,26.0,25.0,25.0,25.0,23.0,21.0,20.0,27.0,32.0,21.0,26.0,30.0,27.0,31.0,39.0,22.0,18.0,26.0,32.0,16.0,19.0,15.0,21.0,12.0,14.0,7.0,18.0,11.0,11.0,7.0,3.0,2.0,3.0,4.0,4.0,4.0 M84629,80.0,67.0,69.0,64.0,74.0,63.0,69.0,63.0,77.0,74.0,55.0,82.0,75.0,68.0,72.0,70.0,51.0,67.0,64.0,55.0,52.0,45.0,46.0,47.0,46.0,57.0,73.0,73.0,84.0,82.0,103.0,106.0,108.0,100.0,94.0,115.0,112.0,98.0,97.0,98.0,65.0,82.0,80.0,91.0,73.0,88.0,85.0,61.0,73.0,72.0,74.0,82.0,70.0,74.0,96.0,79.0,89.0,73.0,65.0,79.0,78.0,66.0,93.0,72.0,62.0,50.0,65.0,47.0,56.0,29.0,40.0,53.0,39.0,40.0,38.0,29.0,40.0,45.0,35.0,27.0,34.0,26.0,32.0,20.0,16.0,28.0,17.0,27.0,12.0,11.0,9.0,7.0,1.0,8.0,12.0,20.0 M86001,41.0,37.0,45.0,40.0,44.0,48.0,60.0,58.0,57.0,54.0,57.0,53.0,53.0,42.0,59.0,54.0,60.0,43.0,41.0,48.0,35.0,34.0,52.0,33.0,41.0,36.0,43.0,45.0,65.0,63.0,57.0,65.0,54.0,70.0,62.0,56.0,70.0,69.0,58.0,67.0,74.0,58.0,57.0,54.0,59.0,49.0,48.0,29.0,42.0,52.0,44.0,48.0,40.0,40.0,34.0,37.0,33.0,35.0,35.0,30.0,34.0,28.0,29.0,39.0,37.0,27.0,34.0,30.0,29.0,25.0,22.0,26.0,19.0,16.0,17.0,20.0,18.0,19.0,11.0,16.0,13.0,11.0,17.0,10.0,12.0,13.0,8.0,3.0,6.0,6.0,5.0,6.0,5.0,1.0,2.0,7.0 M86002,48.0,45.0,55.0,44.0,44.0,49.0,51.0,57.0,48.0,57.0,44.0,36.0,58.0,52.0,46.0,63.0,49.0,46.0,51.0,39.0,42.0,42.0,35.0,58.0,55.0,46.0,36.0,61.0,79.0,67.0,77.0,57.0,59.0,84.0,73.0,70.0,59.0,67.0,57.0,63.0,63.0,69.0,62.0,53.0,75.0,50.0,47.0,56.0,36.0,39.0,37.0,44.0,41.0,46.0,51.0,39.0,48.0,54.0,49.0,53.0,56.0,42.0,46.0,49.0,48.0,29.0,44.0,49.0,35.0,33.0,33.0,24.0,26.0,20.0,33.0,22.0,24.0,33.0,24.0,23.0,15.0,25.0,18.0,22.0,15.0,26.0,11.0,14.0,9.0,12.0,9.0,9.0,7.0,5.0,5.0,12.0 M86003,64.0,75.0,73.0,94.0,91.0,89.0,100.0,96.0,107.0,113.0,122.0,119.0,117.0,150.0,120.0,137.0,117.0,129.0,135.0,102.0,92.0,102.0,114.0,97.0,113.0,111.0,118.0,120.0,88.0,104.0,91.0,99.0,99.0,99.0,91.0,107.0,102.0,110.0,117.0,127.0,110.0,115.0,122.0,138.0,124.0,124.0,110.0,125.0,91.0,119.0,117.0,114.0,104.0,107.0,97.0,111.0,99.0,96.0,113.0,89.0,102.0,83.0,81.0,76.0,76.0,65.0,78.0,79.0,66.0,52.0,71.0,67.0,67.0,61.0,52.0,58.0,74.0,59.0,62.0,42.0,45.0,55.0,35.0,27.0,25.0,25.0,23.0,15.0,26.0,19.0,15.0,15.0,7.0,8.0,5.0,15.0 M86004,58.0,51.0,43.0,69.0,57.0,65.0,47.0,68.0,45.0,52.0,63.0,58.0,50.0,55.0,48.0,55.0,52.0,55.0,382.0,798.0,840.0,732.0,657.0,718.0,646.0,479.0,307.0,249.0,192.0,168.0,108.0,138.0,93.0,117.0,104.0,88.0,91.0,111.0,78.0,85.0,83.0,71.0,64.0,57.0,76.0,59.0,68.0,61.0,67.0,45.0,68.0,57.0,73.0,64.0,65.0,69.0,71.0,75.0,76.0,87.0,57.0,54.0,69.0,76.0,53.0,66.0,48.0,59.0,61.0,41.0,46.0,44.0,42.0,54.0,43.0,46.0,41.0,70.0,42.0,45.0,46.0,43.0,40.0,33.0,35.0,34.0,33.0,24.0,28.0,27.0,13.0,17.0,10.0,8.0,6.0,16.0 M86005,39.0,31.0,46.0,35.0,37.0,34.0,36.0,32.0,34.0,31.0,30.0,38.0,30.0,21.0,32.0,34.0,32.0,33.0,30.0,37.0,34.0,49.0,114.0,166.0,141.0,91.0,75.0,70.0,83.0,75.0,66.0,65.0,73.0,56.0,54.0,39.0,33.0,48.0,55.0,37.0,36.0,31.0,38.0,45.0,37.0,26.0,13.0,20.0,29.0,19.0,16.0,13.0,22.0,23.0,24.0,18.0,21.0,15.0,27.0,23.0,23.0,26.0,19.0,22.0,22.0,18.0,11.0,18.0,22.0,16.0,16.0,11.0,13.0,17.0,16.0,12.0,13.0,11.0,14.0,10.0,10.0,13.0,9.0,4.0,5.0,8.0,7.0,5.0,6.0,9.0,3.0,2.0,3.0,2.0,2.0,4.0 M86006,33.0,41.0,34.0,56.0,49.0,44.0,40.0,41.0,57.0,47.0,51.0,58.0,44.0,40.0,42.0,58.0,55.0,49.0,49.0,45.0,31.0,55.0,69.0,84.0,65.0,79.0,91.0,78.0,99.0,83.0,74.0,79.0,97.0,76.0,90.0,75.0,80.0,73.0,75.0,72.0,66.0,67.0,55.0,69.0,58.0,54.0,61.0,50.0,36.0,49.0,54.0,53.0,55.0,73.0,58.0,60.0,61.0,65.0,68.0,66.0,63.0,60.0,60.0,44.0,57.0,39.0,32.0,37.0,34.0,31.0,45.0,46.0,35.0,21.0,26.0,35.0,47.0,44.0,42.0,31.0,36.0,34.0,27.0,29.0,21.0,19.0,23.0,17.0,13.0,23.0,9.0,15.0,15.0,6.0,10.0,20.0 M86007,19.0,18.0,16.0,36.0,22.0,32.0,38.0,29.0,22.0,27.0,31.0,30.0,26.0,25.0,29.0,30.0,30.0,34.0,27.0,20.0,19.0,27.0,23.0,37.0,35.0,36.0,43.0,43.0,31.0,43.0,30.0,29.0,35.0,28.0,24.0,43.0,34.0,50.0,39.0,39.0,34.0,32.0,30.0,21.0,37.0,31.0,33.0,25.0,34.0,31.0,28.0,32.0,24.0,39.0,35.0,42.0,48.0,43.0,50.0,27.0,43.0,47.0,42.0,37.0,57.0,38.0,53.0,28.0,39.0,40.0,29.0,27.0,34.0,27.0,33.0,31.0,35.0,39.0,32.0,25.0,37.0,31.0,37.0,18.0,34.0,26.0,19.0,25.0,19.0,11.0,15.0,4.0,12.0,5.0,6.0,15.0 M86008,49.0,45.0,50.0,66.0,56.0,73.0,61.0,69.0,67.0,72.0,78.0,49.0,80.0,65.0,63.0,68.0,70.0,58.0,55.0,41.0,62.0,49.0,71.0,62.0,79.0,54.0,52.0,72.0,75.0,65.0,87.0,60.0,65.0,73.0,74.0,102.0,68.0,97.0,65.0,73.0,65.0,75.0,66.0,77.0,64.0,72.0,55.0,60.0,58.0,45.0,61.0,68.0,71.0,72.0,69.0,68.0,67.0,79.0,59.0,78.0,70.0,66.0,65.0,52.0,50.0,49.0,49.0,57.0,48.0,38.0,35.0,36.0,37.0,43.0,35.0,36.0,31.0,50.0,29.0,36.0,30.0,25.0,26.0,20.0,31.0,22.0,15.0,11.0,14.0,10.0,9.0,6.0,5.0,7.0,5.0,7.0 M86009,64.0,53.0,59.0,54.0,65.0,67.0,62.0,66.0,75.0,86.0,77.0,85.0,104.0,82.0,100.0,68.0,89.0,82.0,153.0,277.0,358.0,411.0,565.0,675.0,760.0,580.0,328.0,278.0,268.0,204.0,164.0,167.0,161.0,151.0,142.0,134.0,99.0,119.0,99.0,121.0,101.0,113.0,95.0,84.0,87.0,105.0,68.0,60.0,67.0,78.0,65.0,45.0,65.0,56.0,59.0,69.0,65.0,65.0,68.0,69.0,56.0,71.0,71.0,48.0,71.0,48.0,64.0,50.0,50.0,36.0,40.0,35.0,44.0,31.0,29.0,34.0,28.0,31.0,30.0,28.0,25.0,19.0,22.0,10.0,21.0,19.0,23.0,19.0,13.0,9.0,9.0,9.0,8.0,8.0,7.0,14.0 M86010,46.0,59.0,53.0,65.0,64.0,59.0,84.0,75.0,90.0,80.0,81.0,86.0,86.0,79.0,67.0,69.0,86.0,90.0,88.0,68.0,76.0,72.0,127.0,126.0,134.0,119.0,142.0,125.0,116.0,92.0,102.0,110.0,104.0,103.0,103.0,119.0,121.0,97.0,107.0,81.0,89.0,81.0,100.0,87.0,82.0,88.0,70.0,62.0,67.0,59.0,61.0,65.0,58.0,77.0,78.0,53.0,60.0,64.0,72.0,66.0,59.0,84.0,59.0,66.0,43.0,53.0,49.0,54.0,42.0,60.0,56.0,49.0,35.0,48.0,41.0,44.0,47.0,48.0,53.0,26.0,29.0,23.0,24.0,25.0,26.0,21.0,13.0,12.0,14.0,11.0,16.0,8.0,6.0,6.0,11.0,28.0 M86012,77.0,57.0,60.0,72.0,79.0,63.0,71.0,76.0,53.0,80.0,65.0,62.0,77.0,47.0,62.0,59.0,44.0,50.0,53.0,64.0,66.0,80.0,90.0,135.0,212.0,146.0,159.0,163.0,146.0,146.0,148.0,129.0,119.0,101.0,99.0,100.0,115.0,86.0,87.0,76.0,63.0,69.0,59.0,72.0,62.0,64.0,50.0,56.0,37.0,52.0,51.0,43.0,44.0,45.0,43.0,42.0,45.0,35.0,47.0,54.0,31.0,34.0,36.0,35.0,28.0,29.0,20.0,27.0,37.0,22.0,27.0,16.0,15.0,24.0,23.0,25.0,23.0,17.0,21.0,16.0,15.0,13.0,10.0,12.0,13.0,10.0,18.0,11.0,11.0,8.0,5.0,4.0,5.0,2.0,2.0,9.0 M86014,102.0,111.0,111.0,138.0,108.0,125.0,141.0,140.0,119.0,148.0,135.0,124.0,134.0,133.0,132.0,147.0,113.0,120.0,126.0,112.0,105.0,84.0,124.0,108.0,136.0,150.0,137.0,173.0,157.0,167.0,172.0,165.0,158.0,175.0,199.0,217.0,178.0,198.0,146.0,190.0,166.0,129.0,150.0,131.0,147.0,147.0,118.0,119.0,122.0,118.0,121.0,121.0,129.0,121.0,142.0,128.0,121.0,148.0,114.0,153.0,117.0,125.0,119.0,121.0,128.0,111.0,79.0,94.0,103.0,105.0,79.0,83.0,88.0,82.0,87.0,76.0,65.0,82.0,81.0,59.0,90.0,61.0,66.0,51.0,51.0,34.0,35.0,42.0,21.0,21.0,24.0,17.0,10.0,7.0,10.0,22.0 M86015,46.0,66.0,63.0,71.0,57.0,81.0,85.0,81.0,82.0,100.0,88.0,99.0,108.0,100.0,89.0,98.0,78.0,85.0,89.0,68.0,65.0,84.0,60.0,53.0,61.0,86.0,79.0,75.0,104.0,73.0,89.0,123.0,101.0,118.0,114.0,123.0,105.0,108.0,125.0,113.0,90.0,123.0,81.0,109.0,103.0,103.0,83.0,81.0,94.0,81.0,92.0,65.0,79.0,82.0,81.0,95.0,71.0,85.0,73.0,98.0,84.0,78.0,74.0,71.0,68.0,55.0,56.0,65.0,67.0,66.0,71.0,72.0,50.0,48.0,57.0,51.0,57.0,51.0,44.0,32.0,51.0,54.0,40.0,31.0,23.0,32.0,32.0,23.0,28.0,20.0,16.0,15.0,23.0,7.0,11.0,28.0 M86016,111.0,106.0,113.0,130.0,133.0,137.0,121.0,155.0,156.0,118.0,154.0,149.0,143.0,141.0,131.0,133.0,142.0,135.0,113.0,106.0,114.0,108.0,140.0,157.0,152.0,170.0,172.0,205.0,199.0,192.0,214.0,162.0,196.0,184.0,186.0,198.0,181.0,167.0,183.0,178.0,168.0,145.0,143.0,124.0,138.0,146.0,118.0,75.0,113.0,97.0,99.0,108.0,121.0,120.0,97.0,123.0,98.0,113.0,116.0,106.0,88.0,102.0,93.0,85.0,77.0,94.0,70.0,73.0,70.0,72.0,59.0,51.0,77.0,57.0,39.0,62.0,43.0,58.0,40.0,49.0,35.0,30.0,40.0,40.0,33.0,30.0,27.0,23.0,25.0,21.0,16.0,14.0,12.0,3.0,7.0,13.0 M86017,36.0,45.0,46.0,47.0,45.0,49.0,51.0,64.0,68.0,64.0,75.0,71.0,66.0,70.0,73.0,57.0,65.0,60.0,56.0,51.0,52.0,54.0,39.0,75.0,66.0,64.0,74.0,72.0,89.0,84.0,92.0,77.0,102.0,79.0,74.0,102.0,97.0,90.0,76.0,70.0,71.0,89.0,83.0,76.0,67.0,72.0,74.0,62.0,50.0,56.0,61.0,49.0,52.0,65.0,68.0,67.0,74.0,60.0,55.0,73.0,65.0,62.0,45.0,63.0,54.0,35.0,37.0,48.0,50.0,30.0,40.0,32.0,30.0,25.0,24.0,36.0,38.0,30.0,37.0,26.0,38.0,35.0,26.0,24.0,18.0,11.0,15.0,16.0,8.0,10.0,4.0,5.0,5.0,5.0,4.0,14.0 M86018,60.0,47.0,52.0,56.0,61.0,68.0,52.0,82.0,73.0,62.0,78.0,79.0,73.0,88.0,83.0,86.0,76.0,85.0,82.0,62.0,50.0,66.0,61.0,50.0,76.0,65.0,86.0,69.0,83.0,71.0,81.0,80.0,83.0,77.0,86.0,104.0,100.0,96.0,104.0,89.0,82.0,102.0,90.0,85.0,95.0,76.0,72.0,58.0,83.0,86.0,78.0,61.0,76.0,74.0,85.0,76.0,77.0,71.0,81.0,80.0,84.0,54.0,65.0,72.0,69.0,56.0,69.0,55.0,44.0,45.0,48.0,41.0,34.0,48.0,50.0,45.0,44.0,57.0,42.0,35.0,40.0,31.0,30.0,24.0,29.0,27.0,29.0,20.0,16.0,20.0,23.0,9.0,10.0,7.0,7.0,15.0 M86019,16.0,12.0,16.0,24.0,16.0,18.0,11.0,22.0,26.0,23.0,28.0,19.0,35.0,27.0,29.0,19.0,26.0,30.0,19.0,14.0,12.0,21.0,18.0,27.0,26.0,16.0,27.0,29.0,29.0,24.0,25.0,31.0,31.0,31.0,37.0,31.0,33.0,27.0,30.0,24.0,24.0,28.0,20.0,22.0,27.0,12.0,14.0,25.0,18.0,21.0,24.0,11.0,22.0,26.0,33.0,27.0,28.0,31.0,20.0,28.0,27.0,21.0,29.0,28.0,25.0,20.0,25.0,25.0,19.0,17.0,21.0,22.0,21.0,16.0,12.0,24.0,28.0,26.0,23.0,19.0,25.0,12.0,16.0,12.0,12.0,13.0,8.0,10.0,5.0,6.0,5.0,4.0,2.0,3.0,2.0,4.0 M86020,37.0,39.0,49.0,49.0,63.0,50.0,56.0,60.0,60.0,77.0,70.0,67.0,90.0,91.0,59.0,83.0,71.0,77.0,71.0,66.0,54.0,48.0,48.0,42.0,32.0,49.0,35.0,50.0,43.0,49.0,58.0,65.0,56.0,80.0,76.0,63.0,85.0,73.0,64.0,69.0,56.0,69.0,68.0,66.0,46.0,71.0,59.0,49.0,54.0,50.0,45.0,45.0,50.0,34.0,38.0,44.0,45.0,28.0,37.0,41.0,45.0,51.0,44.0,34.0,33.0,35.0,31.0,24.0,23.0,31.0,18.0,23.0,26.0,16.0,13.0,10.0,11.0,11.0,18.0,15.0,10.0,8.0,9.0,5.0,6.0,7.0,8.0,4.0,8.0,4.0,7.0,3.0,,2.0,2.0,4.0 M86021,31.0,38.0,44.0,31.0,34.0,31.0,54.0,50.0,44.0,51.0,43.0,41.0,47.0,57.0,56.0,56.0,50.0,46.0,49.0,32.0,44.0,43.0,46.0,39.0,39.0,48.0,51.0,54.0,36.0,44.0,57.0,41.0,39.0,58.0,48.0,50.0,43.0,53.0,46.0,43.0,48.0,55.0,47.0,53.0,50.0,49.0,45.0,43.0,49.0,46.0,39.0,53.0,40.0,61.0,59.0,56.0,50.0,45.0,60.0,51.0,49.0,51.0,47.0,40.0,50.0,42.0,35.0,48.0,36.0,29.0,27.0,38.0,34.0,30.0,39.0,26.0,30.0,16.0,29.0,33.0,29.0,25.0,20.0,13.0,18.0,14.0,19.0,18.0,7.0,7.0,7.0,7.0,4.0,6.0,3.0,12.0 M86027,63.0,52.0,53.0,57.0,69.0,72.0,66.0,68.0,64.0,74.0,67.0,85.0,73.0,76.0,60.0,69.0,62.0,55.0,94.0,95.0,134.0,133.0,166.0,222.0,207.0,230.0,236.0,212.0,207.0,156.0,144.0,127.0,89.0,121.0,127.0,101.0,114.0,111.0,107.0,101.0,78.0,81.0,78.0,72.0,81.0,82.0,65.0,54.0,61.0,61.0,48.0,53.0,52.0,56.0,48.0,51.0,62.0,47.0,46.0,43.0,60.0,60.0,48.0,46.0,48.0,41.0,40.0,45.0,43.0,31.0,38.0,42.0,33.0,29.0,44.0,27.0,39.0,37.0,42.0,25.0,48.0,30.0,25.0,18.0,18.0,17.0,20.0,20.0,19.0,12.0,13.0,14.0,8.0,6.0,2.0,11.0 M86028,13.0,18.0,14.0,20.0,14.0,20.0,18.0,20.0,26.0,21.0,24.0,30.0,27.0,20.0,31.0,21.0,38.0,19.0,25.0,12.0,18.0,21.0,18.0,21.0,17.0,17.0,13.0,20.0,22.0,15.0,22.0,25.0,29.0,20.0,15.0,23.0,21.0,28.0,29.0,19.0,18.0,28.0,18.0,22.0,23.0,25.0,26.0,17.0,15.0,23.0,23.0,19.0,19.0,21.0,16.0,12.0,12.0,15.0,14.0,14.0,13.0,19.0,11.0,8.0,10.0,13.0,17.0,9.0,10.0,10.0,7.0,9.0,8.0,12.0,6.0,13.0,2.0,8.0,9.0,7.0,4.0,5.0,9.0,6.0,9.0,6.0,9.0,7.0,2.0,1.0,1.0,,1.0,1.0,1.0,4.0 M86029,45.0,48.0,50.0,43.0,38.0,60.0,34.0,54.0,50.0,49.0,56.0,51.0,44.0,42.0,47.0,51.0,35.0,47.0,344.0,726.0,860.0,713.0,599.0,528.0,493.0,267.0,242.0,190.0,160.0,126.0,111.0,120.0,103.0,103.0,100.0,104.0,95.0,85.0,77.0,79.0,78.0,63.0,73.0,76.0,51.0,77.0,63.0,64.0,58.0,55.0,45.0,47.0,59.0,54.0,52.0,60.0,53.0,66.0,58.0,42.0,55.0,52.0,67.0,54.0,46.0,55.0,42.0,50.0,50.0,58.0,48.0,44.0,48.0,37.0,52.0,57.0,58.0,49.0,49.0,43.0,47.0,45.0,38.0,35.0,40.0,31.0,25.0,29.0,17.0,15.0,16.0,12.0,12.0,11.0,9.0,17.0 M86030,16.0,18.0,20.0,20.0,25.0,26.0,30.0,38.0,33.0,27.0,24.0,28.0,27.0,37.0,25.0,24.0,25.0,26.0,27.0,25.0,23.0,23.0,25.0,34.0,29.0,34.0,49.0,44.0,33.0,38.0,48.0,38.0,32.0,46.0,30.0,34.0,38.0,38.0,44.0,38.0,37.0,32.0,45.0,32.0,41.0,36.0,26.0,49.0,40.0,38.0,40.0,37.0,34.0,22.0,32.0,26.0,38.0,41.0,34.0,32.0,32.0,26.0,26.0,25.0,36.0,32.0,29.0,23.0,24.0,26.0,29.0,23.0,21.0,22.0,21.0,29.0,14.0,20.0,20.0,16.0,22.0,15.0,14.0,8.0,10.0,9.0,15.0,9.0,8.0,11.0,7.0,5.0,6.0,5.0,4.0,9.0 M86032,43.0,67.0,49.0,63.0,71.0,63.0,85.0,86.0,92.0,103.0,92.0,85.0,101.0,94.0,100.0,103.0,96.0,70.0,75.0,69.0,72.0,75.0,75.0,62.0,83.0,71.0,82.0,96.0,77.0,99.0,97.0,93.0,102.0,100.0,83.0,117.0,116.0,111.0,117.0,100.0,113.0,104.0,91.0,106.0,99.0,97.0,97.0,79.0,58.0,84.0,71.0,74.0,77.0,57.0,62.0,56.0,64.0,67.0,68.0,63.0,51.0,66.0,46.0,54.0,54.0,60.0,46.0,50.0,39.0,38.0,26.0,32.0,29.0,28.0,35.0,36.0,37.0,34.0,21.0,24.0,32.0,26.0,27.0,15.0,18.0,25.0,13.0,13.0,14.0,8.0,15.0,8.0,11.0,11.0,8.0,21.0 M86033,19.0,27.0,21.0,29.0,27.0,33.0,28.0,29.0,27.0,30.0,29.0,33.0,36.0,36.0,27.0,28.0,33.0,35.0,23.0,24.0,26.0,20.0,23.0,30.0,29.0,29.0,22.0,24.0,33.0,35.0,40.0,30.0,40.0,38.0,41.0,25.0,32.0,32.0,43.0,33.0,37.0,30.0,48.0,23.0,36.0,34.0,29.0,23.0,26.0,23.0,31.0,28.0,18.0,27.0,25.0,29.0,31.0,35.0,22.0,28.0,30.0,36.0,30.0,35.0,27.0,15.0,21.0,20.0,24.0,23.0,19.0,14.0,13.0,23.0,15.0,13.0,11.0,17.0,16.0,9.0,9.0,12.0,12.0,3.0,6.0,4.0,6.0,4.0,7.0,3.0,2.0,3.0,4.0,1.0,1.0,5.0 M86034,36.0,44.0,46.0,51.0,47.0,65.0,69.0,68.0,66.0,59.0,64.0,55.0,56.0,77.0,73.0,65.0,66.0,56.0,57.0,56.0,66.0,36.0,57.0,49.0,48.0,46.0,69.0,47.0,58.0,60.0,57.0,68.0,82.0,102.0,78.0,88.0,90.0,73.0,85.0,70.0,78.0,76.0,68.0,72.0,69.0,63.0,47.0,58.0,63.0,52.0,46.0,66.0,48.0,64.0,57.0,61.0,66.0,63.0,59.0,66.0,60.0,61.0,51.0,51.0,57.0,49.0,58.0,58.0,52.0,44.0,57.0,53.0,53.0,41.0,43.0,51.0,49.0,63.0,66.0,41.0,49.0,38.0,40.0,31.0,32.0,36.0,30.0,30.0,21.0,27.0,14.0,20.0,12.0,19.0,5.0,30.0 M86035,54.0,45.0,54.0,58.0,49.0,49.0,61.0,65.0,59.0,61.0,74.0,59.0,59.0,59.0,65.0,63.0,71.0,53.0,44.0,43.0,59.0,46.0,45.0,50.0,44.0,58.0,59.0,51.0,77.0,59.0,67.0,58.0,71.0,57.0,73.0,72.0,67.0,65.0,62.0,79.0,70.0,55.0,46.0,54.0,68.0,60.0,57.0,60.0,36.0,51.0,46.0,44.0,46.0,40.0,54.0,49.0,52.0,49.0,41.0,40.0,51.0,46.0,43.0,41.0,46.0,38.0,27.0,49.0,33.0,35.0,40.0,36.0,15.0,25.0,20.0,19.0,17.0,23.0,25.0,11.0,15.0,26.0,21.0,14.0,19.0,12.0,14.0,8.0,9.0,9.0,4.0,8.0,2.0,7.0,4.0,6.0 M86037,6.0,15.0,13.0,17.0,25.0,10.0,18.0,25.0,37.0,18.0,23.0,26.0,31.0,21.0,28.0,32.0,14.0,25.0,20.0,17.0,8.0,16.0,10.0,19.0,21.0,21.0,20.0,21.0,15.0,21.0,22.0,24.0,36.0,35.0,37.0,34.0,27.0,36.0,27.0,34.0,27.0,27.0,35.0,29.0,27.0,31.0,18.0,19.0,20.0,27.0,11.0,16.0,19.0,21.0,19.0,20.0,37.0,27.0,19.0,22.0,20.0,14.0,21.0,25.0,24.0,17.0,18.0,12.0,14.0,17.0,9.0,19.0,18.0,12.0,19.0,12.0,16.0,14.0,15.0,21.0,7.0,12.0,11.0,7.0,10.0,7.0,7.0,2.0,2.0,6.0,5.0,2.0,4.0,3.0,4.0,6.0 M86038,6.0,9.0,8.0,4.0,7.0,8.0,12.0,13.0,13.0,10.0,14.0,14.0,12.0,19.0,19.0,13.0,12.0,11.0,11.0,10.0,15.0,11.0,7.0,14.0,8.0,14.0,13.0,18.0,15.0,9.0,13.0,16.0,20.0,18.0,10.0,12.0,19.0,25.0,16.0,23.0,19.0,10.0,17.0,19.0,14.0,25.0,19.0,16.0,11.0,12.0,16.0,13.0,24.0,19.0,13.0,14.0,21.0,16.0,16.0,15.0,18.0,15.0,11.0,21.0,16.0,16.0,16.0,15.0,16.0,19.0,10.0,17.0,15.0,21.0,13.0,15.0,22.0,18.0,14.0,14.0,16.0,16.0,13.0,13.0,16.0,13.0,12.0,7.0,9.0,9.0,4.0,7.0,8.0,3.0,2.0,2.0 M86039,21.0,29.0,24.0,23.0,30.0,25.0,26.0,29.0,22.0,19.0,15.0,18.0,21.0,22.0,27.0,21.0,28.0,28.0,20.0,18.0,18.0,23.0,23.0,23.0,14.0,20.0,22.0,33.0,22.0,28.0,30.0,39.0,30.0,22.0,37.0,31.0,33.0,39.0,32.0,34.0,28.0,27.0,28.0,33.0,34.0,33.0,32.0,21.0,30.0,25.0,28.0,34.0,27.0,34.0,46.0,45.0,28.0,29.0,29.0,31.0,38.0,38.0,28.0,25.0,29.0,26.0,28.0,27.0,24.0,25.0,27.0,34.0,40.0,27.0,35.0,22.0,18.0,37.0,40.0,24.0,25.0,27.0,27.0,26.0,18.0,14.0,12.0,12.0,11.0,8.0,8.0,7.0,4.0,6.0,5.0,11.0 M86040,12.0,16.0,16.0,19.0,25.0,21.0,28.0,22.0,25.0,23.0,23.0,25.0,31.0,30.0,23.0,28.0,22.0,19.0,20.0,24.0,15.0,20.0,14.0,12.0,12.0,20.0,20.0,30.0,18.0,32.0,23.0,35.0,38.0,35.0,37.0,24.0,22.0,33.0,35.0,30.0,31.0,29.0,29.0,20.0,29.0,26.0,24.0,24.0,38.0,26.0,20.0,26.0,22.0,16.0,23.0,20.0,29.0,26.0,14.0,16.0,21.0,28.0,10.0,15.0,27.0,17.0,20.0,18.0,16.0,20.0,17.0,14.0,21.0,14.0,19.0,10.0,18.0,25.0,19.0,12.0,19.0,13.0,5.0,14.0,12.0,5.0,13.0,9.0,5.0,4.0,5.0,8.0,6.0,,1.0,9.0 M86041,63.0,77.0,62.0,69.0,67.0,85.0,88.0,71.0,81.0,67.0,69.0,83.0,68.0,73.0,64.0,65.0,61.0,46.0,60.0,55.0,45.0,44.0,64.0,70.0,81.0,75.0,91.0,127.0,77.0,114.0,104.0,110.0,109.0,101.0,102.0,90.0,89.0,83.0,88.0,90.0,98.0,92.0,61.0,68.0,67.0,65.0,70.0,58.0,36.0,55.0,44.0,47.0,40.0,49.0,46.0,47.0,49.0,40.0,55.0,41.0,46.0,42.0,45.0,43.0,40.0,24.0,35.0,35.0,24.0,30.0,28.0,21.0,28.0,15.0,30.0,24.0,20.0,17.0,23.0,16.0,19.0,22.0,10.0,17.0,11.0,17.0,12.0,11.0,9.0,9.0,6.0,10.0,1.0,1.0,2.0,6.0 M86044,15.0,14.0,18.0,11.0,26.0,23.0,26.0,29.0,21.0,25.0,20.0,31.0,25.0,24.0,32.0,16.0,32.0,21.0,30.0,25.0,24.0,29.0,31.0,41.0,47.0,39.0,36.0,50.0,26.0,48.0,39.0,34.0,46.0,43.0,37.0,28.0,26.0,36.0,40.0,31.0,38.0,24.0,41.0,36.0,22.0,30.0,26.0,25.0,28.0,24.0,26.0,16.0,21.0,20.0,21.0,23.0,29.0,15.0,23.0,22.0,33.0,22.0,23.0,19.0,19.0,13.0,16.0,18.0,21.0,11.0,10.0,18.0,13.0,13.0,12.0,12.0,14.0,6.0,6.0,7.0,3.0,6.0,4.0,8.0,1.0,7.0,4.0,3.0,1.0,2.0,4.0,5.0,1.0,,1.0,2.0 M86045,42.0,32.0,42.0,29.0,37.0,34.0,55.0,37.0,49.0,48.0,41.0,49.0,52.0,53.0,53.0,55.0,61.0,61.0,40.0,52.0,51.0,52.0,67.0,57.0,72.0,46.0,60.0,54.0,48.0,54.0,50.0,39.0,58.0,35.0,54.0,45.0,54.0,48.0,54.0,54.0,71.0,59.0,57.0,63.0,63.0,64.0,54.0,60.0,48.0,46.0,49.0,50.0,36.0,45.0,52.0,43.0,35.0,46.0,40.0,36.0,25.0,27.0,31.0,34.0,33.0,27.0,38.0,27.0,25.0,24.0,30.0,19.0,12.0,22.0,20.0,35.0,23.0,21.0,18.0,7.0,12.0,12.0,17.0,13.0,10.0,11.0,8.0,12.0,2.0,8.0,10.0,5.0,4.0,2.0,2.0,14.0 M86046,13.0,32.0,30.0,23.0,22.0,35.0,31.0,33.0,34.0,23.0,30.0,28.0,30.0,41.0,26.0,40.0,33.0,23.0,35.0,19.0,31.0,23.0,28.0,35.0,31.0,34.0,41.0,26.0,36.0,31.0,38.0,53.0,42.0,53.0,46.0,40.0,27.0,51.0,36.0,41.0,34.0,37.0,43.0,42.0,33.0,37.0,42.0,25.0,43.0,27.0,30.0,34.0,33.0,30.0,28.0,34.0,39.0,18.0,36.0,42.0,34.0,40.0,33.0,26.0,29.0,19.0,18.0,22.0,21.0,20.0,20.0,19.0,19.0,21.0,26.0,28.0,23.0,13.0,17.0,19.0,20.0,19.0,14.0,17.0,12.0,14.0,13.0,11.0,11.0,10.0,8.0,7.0,2.0,2.0,6.0,7.0 M86048,57.0,43.0,52.0,46.0,50.0,49.0,54.0,56.0,40.0,53.0,65.0,65.0,60.0,56.0,60.0,56.0,65.0,76.0,60.0,54.0,42.0,52.0,51.0,60.0,63.0,66.0,64.0,59.0,72.0,66.0,72.0,72.0,71.0,58.0,54.0,62.0,68.0,69.0,79.0,77.0,72.0,82.0,68.0,68.0,50.0,64.0,49.0,52.0,54.0,44.0,46.0,41.0,51.0,44.0,69.0,55.0,45.0,51.0,40.0,37.0,33.0,32.0,35.0,35.0,23.0,28.0,27.0,19.0,29.0,24.0,26.0,18.0,22.0,13.0,20.0,15.0,21.0,18.0,23.0,7.0,15.0,16.0,19.0,12.0,5.0,9.0,7.0,7.0,2.0,2.0,1.0,3.0,3.0,1.0,1.0,5.0 M86605,17.0,14.0,18.0,17.0,17.0,14.0,18.0,14.0,26.0,13.0,14.0,19.0,22.0,10.0,26.0,25.0,18.0,21.0,14.0,15.0,13.0,17.0,15.0,15.0,19.0,17.0,19.0,25.0,20.0,20.0,19.0,26.0,16.0,19.0,27.0,30.0,24.0,11.0,21.0,22.0,15.0,18.0,13.0,22.0,20.0,24.0,14.0,24.0,19.0,17.0,12.0,19.0,18.0,20.0,20.0,22.0,31.0,23.0,13.0,16.0,20.0,22.0,18.0,14.0,15.0,10.0,14.0,12.0,18.0,15.0,17.0,14.0,14.0,15.0,19.0,10.0,15.0,25.0,16.0,9.0,16.0,11.0,10.0,9.0,7.0,10.0,10.0,9.0,9.0,7.0,1.0,4.0,2.0,,1.0,4.0 M86610,24.0,33.0,31.0,35.0,29.0,30.0,30.0,29.0,33.0,32.0,31.0,24.0,24.0,21.0,23.0,15.0,18.0,23.0,34.0,59.0,89.0,110.0,168.0,188.0,203.0,183.0,154.0,141.0,126.0,133.0,130.0,88.0,93.0,86.0,81.0,66.0,71.0,48.0,63.0,41.0,33.0,38.0,29.0,30.0,25.0,35.0,18.0,20.0,14.0,13.0,13.0,18.0,15.0,16.0,14.0,12.0,14.0,12.0,12.0,9.0,6.0,16.0,13.0,5.0,8.0,9.0,11.0,10.0,4.0,11.0,5.0,5.0,1.0,5.0,9.0,2.0,3.0,3.0,3.0,2.0,1.0,3.0,3.0,1.0,3.0,,5.0,1.0,1.0,,1.0,2.0,2.0,2.0,,3.0 M86612,35.0,29.0,25.0,30.0,28.0,21.0,22.0,31.0,26.0,26.0,20.0,25.0,35.0,23.0,23.0,26.0,21.0,28.0,27.0,11.0,14.0,29.0,27.0,38.0,34.0,35.0,37.0,39.0,34.0,44.0,41.0,44.0,33.0,45.0,26.0,40.0,38.0,37.0,46.0,26.0,31.0,29.0,28.0,32.0,18.0,24.0,19.0,24.0,14.0,13.0,17.0,14.0,20.0,13.0,15.0,12.0,11.0,6.0,10.0,11.0,6.0,5.0,13.0,12.0,12.0,10.0,15.0,3.0,9.0,8.0,6.0,8.0,5.0,6.0,5.0,6.0,9.0,1.0,4.0,5.0,2.0,1.0,,1.0,2.0,3.0,2.0,4.0,1.0,1.0,2.0,,2.0,,2.0,1.0 M86617,26.0,27.0,23.0,28.0,19.0,25.0,28.0,15.0,23.0,21.0,29.0,22.0,29.0,28.0,21.0,27.0,25.0,20.0,22.0,24.0,25.0,28.0,33.0,53.0,58.0,49.0,61.0,54.0,53.0,53.0,46.0,43.0,46.0,41.0,40.0,39.0,32.0,38.0,38.0,36.0,30.0,23.0,26.0,26.0,32.0,31.0,17.0,22.0,24.0,19.0,24.0,17.0,22.0,19.0,17.0,14.0,14.0,21.0,23.0,18.0,12.0,18.0,15.0,15.0,16.0,16.0,10.0,15.0,18.0,20.0,12.0,19.0,16.0,10.0,16.0,18.0,15.0,8.0,17.0,7.0,8.0,11.0,4.0,9.0,8.0,7.0,9.0,,1.0,6.0,,2.0,3.0,4.0,2.0,3.0 M86622,18.0,17.0,12.0,19.0,12.0,16.0,16.0,9.0,20.0,10.0,12.0,14.0,12.0,11.0,11.0,14.0,19.0,12.0,11.0,15.0,12.0,17.0,15.0,24.0,25.0,26.0,35.0,27.0,30.0,37.0,24.0,29.0,26.0,32.0,21.0,34.0,29.0,39.0,27.0,28.0,27.0,18.0,12.0,14.0,25.0,21.0,14.0,20.0,15.0,14.0,25.0,18.0,20.0,20.0,19.0,24.0,22.0,13.0,16.0,20.0,18.0,27.0,19.0,17.0,15.0,21.0,13.0,9.0,17.0,21.0,19.0,12.0,23.0,15.0,21.0,18.0,13.0,13.0,10.0,14.0,15.0,5.0,10.0,7.0,7.0,7.0,6.0,9.0,6.0,8.0,9.0,4.0,6.0,1.0,7.0,11.0 M86624,85.0,80.0,94.0,84.0,80.0,90.0,73.0,103.0,73.0,96.0,91.0,77.0,73.0,99.0,88.0,68.0,89.0,82.0,59.0,79.0,86.0,101.0,92.0,110.0,137.0,112.0,120.0,145.0,143.0,134.0,120.0,111.0,127.0,119.0,108.0,113.0,116.0,112.0,130.0,109.0,88.0,76.0,86.0,85.0,86.0,87.0,74.0,63.0,75.0,76.0,60.0,56.0,61.0,66.0,79.0,67.0,50.0,59.0,54.0,43.0,47.0,56.0,43.0,31.0,33.0,36.0,38.0,36.0,20.0,37.0,36.0,32.0,20.0,19.0,27.0,23.0,24.0,23.0,16.0,21.0,18.0,20.0,16.0,14.0,5.0,9.0,12.0,6.0,5.0,3.0,4.0,6.0,1.0,4.0,4.0,4.0 M86627,40.0,33.0,44.0,49.0,42.0,46.0,49.0,62.0,66.0,61.0,64.0,71.0,62.0,52.0,76.0,63.0,48.0,51.0,58.0,45.0,39.0,37.0,40.0,32.0,43.0,47.0,45.0,51.0,45.0,47.0,67.0,45.0,54.0,62.0,49.0,56.0,51.0,60.0,74.0,57.0,69.0,69.0,61.0,47.0,58.0,65.0,42.0,36.0,38.0,37.0,34.0,42.0,37.0,28.0,40.0,32.0,28.0,27.0,29.0,22.0,23.0,18.0,20.0,17.0,21.0,18.0,13.0,22.0,13.0,9.0,16.0,10.0,13.0,7.0,9.0,9.0,6.0,4.0,4.0,7.0,4.0,6.0,4.0,5.0,3.0,3.0,3.0,2.0,2.0,1.0,2.0,1.0,1.0,,2.0,1.0 M86633,33.0,45.0,35.0,31.0,39.0,39.0,41.0,37.0,39.0,42.0,48.0,46.0,51.0,43.0,33.0,51.0,46.0,41.0,33.0,35.0,46.0,31.0,45.0,47.0,50.0,44.0,38.0,52.0,49.0,45.0,35.0,42.0,45.0,39.0,43.0,49.0,41.0,40.0,47.0,48.0,45.0,46.0,47.0,46.0,35.0,39.0,40.0,37.0,43.0,30.0,29.0,31.0,43.0,35.0,38.0,34.0,33.0,31.0,28.0,19.0,16.0,19.0,17.0,14.0,13.0,11.0,10.0,11.0,14.0,8.0,16.0,13.0,11.0,8.0,13.0,3.0,13.0,11.0,5.0,8.0,7.0,4.0,7.0,4.0,8.0,4.0,1.0,9.0,2.0,4.0,1.0,1.0,1.0,,5.0,2.0 M86638,30.0,39.0,33.0,41.0,34.0,42.0,35.0,37.0,52.0,41.0,50.0,24.0,31.0,43.0,32.0,38.0,45.0,31.0,37.0,36.0,29.0,30.0,37.0,40.0,45.0,47.0,36.0,33.0,45.0,45.0,58.0,43.0,63.0,69.0,64.0,48.0,54.0,59.0,48.0,55.0,56.0,50.0,47.0,43.0,47.0,55.0,41.0,50.0,45.0,32.0,35.0,35.0,37.0,36.0,42.0,29.0,42.0,49.0,51.0,45.0,43.0,50.0,47.0,52.0,42.0,46.0,35.0,47.0,33.0,33.0,37.0,28.0,28.0,20.0,28.0,21.0,23.0,27.0,23.0,18.0,16.0,15.0,18.0,15.0,10.0,16.0,8.0,17.0,10.0,6.0,9.0,2.0,3.0,3.0,1.0,5.0 Y00060,,,,,,,,,,,,,,,,,,,,,4.0,1.0,1.0,,2.0,1.0,1.0,3.0,4.0,1.0,2.0,3.0,6.0,8.0,5.0,4.0,2.0,6.0,6.0,7.0,7.0,4.0,3.0,4.0,3.0,3.0,2.0,3.0,2.0,4.0,4.0,5.0,2.0,3.0,2.0,1.0,2.0,3.0,3.0,1.0,2.0,4.0,,2.0,1.0,,,,,,1.0,,,,,,,,,,1.0,,,,,,,,,,,,,,, Y00140,14.0,11.0,8.0,12.0,15.0,13.0,13.0,10.0,13.0,9.0,14.0,13.0,11.0,13.0,9.0,8.0,5.0,13.0,8.0,7.0,10.0,6.0,6.0,7.0,9.0,14.0,7.0,15.0,20.0,11.0,14.0,18.0,14.0,7.0,16.0,12.0,15.0,16.0,13.0,17.0,15.0,10.0,14.0,12.0,10.0,12.0,10.0,7.0,9.0,10.0,6.0,10.0,10.0,17.0,20.0,12.0,16.0,20.0,10.0,15.0,14.0,13.0,12.0,9.0,15.0,12.0,11.0,13.0,10.0,12.0,13.0,13.0,12.0,12.0,12.0,6.0,13.0,6.0,15.0,8.0,13.0,10.0,6.0,8.0,5.0,6.0,8.0,8.0,4.0,3.0,4.0,2.0,3.0,2.0,1.0,2.0 Y00996,18.0,10.0,6.0,14.0,13.0,14.0,10.0,21.0,16.0,11.0,10.0,13.0,22.0,11.0,8.0,12.0,15.0,18.0,16.0,15.0,14.0,15.0,19.0,11.0,17.0,13.0,19.0,12.0,15.0,15.0,21.0,18.0,19.0,15.0,14.0,14.0,14.0,15.0,12.0,18.0,20.0,14.0,16.0,18.0,14.0,9.0,8.0,6.0,10.0,19.0,5.0,10.0,5.0,4.0,7.0,8.0,4.0,4.0,7.0,3.0,2.0,,1.0,3.0,2.0,1.0,2.0,1.0,4.0,2.0,1.0,,,1.0,,,,1.0,,2.0,,,1.0,,,,,,,,,,,,, Y04882,16.0,18.0,15.0,14.0,22.0,22.0,12.0,21.0,25.0,11.0,14.0,16.0,16.0,21.0,17.0,19.0,3.0,16.0,16.0,12.0,12.0,14.0,15.0,20.0,22.0,22.0,15.0,17.0,18.0,25.0,26.0,19.0,20.0,26.0,27.0,30.0,27.0,20.0,30.0,25.0,33.0,22.0,18.0,13.0,17.0,22.0,17.0,17.0,13.0,17.0,21.0,25.0,30.0,23.0,23.0,19.0,14.0,16.0,14.0,20.0,20.0,18.0,9.0,17.0,13.0,8.0,15.0,12.0,12.0,11.0,10.0,13.0,11.0,13.0,15.0,21.0,10.0,8.0,9.0,12.0,16.0,13.0,11.0,12.0,10.0,9.0,13.0,4.0,7.0,6.0,7.0,5.0,3.0,2.0,4.0,7.0 Y04884,16.0,13.0,16.0,15.0,10.0,10.0,15.0,13.0,14.0,14.0,11.0,14.0,19.0,21.0,14.0,15.0,23.0,16.0,18.0,19.0,13.0,16.0,15.0,22.0,14.0,22.0,15.0,18.0,28.0,13.0,20.0,23.0,25.0,16.0,14.0,20.0,16.0,16.0,17.0,24.0,17.0,12.0,25.0,13.0,27.0,27.0,16.0,15.0,19.0,13.0,24.0,18.0,30.0,23.0,35.0,25.0,35.0,28.0,31.0,31.0,28.0,25.0,24.0,26.0,22.0,22.0,14.0,18.0,17.0,12.0,16.0,25.0,16.0,15.0,18.0,20.0,25.0,28.0,20.0,13.0,10.0,14.0,6.0,11.0,3.0,10.0,7.0,7.0,11.0,6.0,9.0,8.0,4.0,2.0,6.0,7.0 Y04965,119.0,155.0,163.0,154.0,175.0,125.0,174.0,160.0,172.0,173.0,155.0,168.0,169.0,162.0,167.0,148.0,141.0,131.0,119.0,128.0,137.0,148.0,159.0,178.0,196.0,196.0,262.0,220.0,249.0,200.0,220.0,229.0,226.0,234.0,221.0,240.0,216.0,203.0,209.0,208.0,181.0,160.0,167.0,148.0,135.0,135.0,146.0,126.0,122.0,126.0,97.0,104.0,114.0,95.0,113.0,91.0,94.0,91.0,82.0,71.0,66.0,58.0,70.0,50.0,47.0,47.0,45.0,47.0,46.0,28.0,33.0,37.0,27.0,22.0,33.0,22.0,21.0,25.0,26.0,20.0,18.0,23.0,17.0,20.0,17.0,11.0,11.0,8.0,16.0,5.0,8.0,5.0,5.0,3.0,2.0,8.0 Y04969,22.0,40.0,45.0,36.0,32.0,32.0,53.0,37.0,45.0,44.0,49.0,42.0,39.0,47.0,42.0,34.0,44.0,45.0,39.0,28.0,33.0,23.0,23.0,27.0,24.0,27.0,28.0,35.0,49.0,38.0,36.0,48.0,61.0,48.0,59.0,59.0,57.0,45.0,40.0,47.0,53.0,37.0,44.0,43.0,47.0,28.0,24.0,28.0,19.0,21.0,21.0,22.0,23.0,28.0,28.0,12.0,26.0,17.0,15.0,20.0,13.0,9.0,18.0,21.0,11.0,19.0,12.0,19.0,17.0,10.0,12.0,10.0,15.0,12.0,6.0,11.0,12.0,10.0,5.0,3.0,7.0,4.0,8.0,8.0,3.0,4.0,4.0,5.0,6.0,4.0,1.0,1.0,5.0,1.0,2.0,2.0 Y06218,61.0,60.0,86.0,75.0,80.0,65.0,56.0,65.0,73.0,81.0,64.0,76.0,70.0,60.0,55.0,64.0,51.0,43.0,45.0,50.0,48.0,39.0,36.0,46.0,46.0,64.0,70.0,76.0,72.0,91.0,88.0,84.0,96.0,118.0,112.0,131.0,90.0,90.0,102.0,98.0,109.0,92.0,90.0,67.0,70.0,85.0,61.0,54.0,51.0,67.0,46.0,48.0,62.0,55.0,50.0,65.0,55.0,42.0,54.0,37.0,56.0,51.0,57.0,42.0,51.0,34.0,30.0,32.0,27.0,28.0,28.0,18.0,29.0,23.0,21.0,26.0,22.0,10.0,17.0,15.0,16.0,12.0,13.0,9.0,10.0,9.0,5.0,3.0,8.0,4.0,3.0,3.0,7.0,,2.0,2.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 H81002,44.0,46.0,47.0,40.0,56.0,50.0,45.0,45.0,53.0,42.0,43.0,41.0,47.0,40.0,36.0,46.0,43.0,47.0,44.0,32.0,32.0,39.0,43.0,45.0,45.0,46.0,66.0,44.0,56.0,61.0,60.0,55.0,73.0,94.0,61.0,101.0,82.0,71.0,82.0,82.0,63.0,62.0,74.0,76.0,80.0,74.0,75.0,50.0,59.0,56.0,57.0,57.0,52.0,41.0,56.0,64.0,63.0,59.0,55.0,51.0,39.0,61.0,45.0,45.0,42.0,35.0,38.0,36.0,31.0,43.0,30.0,31.0,41.0,27.0,30.0,27.0,25.0,29.0,24.0,32.0,34.0,23.0,19.0,19.0,9.0,17.0,12.0,13.0,9.0,8.0,7.0,9.0,3.0,5.0,5.0,5.0 H81003,82.0,87.0,92.0,108.0,91.0,107.0,116.0,87.0,117.0,114.0,115.0,133.0,124.0,114.0,121.0,108.0,131.0,100.0,126.0,92.0,92.0,87.0,101.0,86.0,106.0,101.0,111.0,93.0,109.0,109.0,128.0,123.0,136.0,134.0,121.0,134.0,147.0,143.0,137.0,123.0,117.0,146.0,140.0,139.0,153.0,172.0,140.0,135.0,137.0,129.0,137.0,130.0,122.0,146.0,121.0,132.0,124.0,117.0,133.0,126.0,123.0,120.0,150.0,111.0,98.0,91.0,86.0,84.0,94.0,80.0,79.0,84.0,70.0,82.0,86.0,86.0,88.0,90.0,99.0,69.0,64.0,76.0,73.0,50.0,53.0,51.0,48.0,37.0,40.0,30.0,27.0,17.0,20.0,18.0,11.0,30.0 H81004,43.0,45.0,42.0,53.0,55.0,72.0,45.0,48.0,63.0,78.0,50.0,66.0,70.0,83.0,63.0,71.0,49.0,66.0,61.0,55.0,42.0,41.0,54.0,55.0,52.0,49.0,64.0,45.0,45.0,46.0,57.0,46.0,57.0,71.0,77.0,57.0,62.0,83.0,83.0,61.0,76.0,84.0,84.0,76.0,71.0,82.0,66.0,86.0,79.0,68.0,83.0,75.0,76.0,87.0,92.0,106.0,96.0,98.0,121.0,96.0,98.0,89.0,106.0,78.0,82.0,89.0,83.0,79.0,81.0,75.0,84.0,73.0,72.0,75.0,78.0,72.0,78.0,104.0,85.0,82.0,73.0,58.0,77.0,57.0,46.0,64.0,44.0,48.0,41.0,44.0,29.0,32.0,30.0,18.0,17.0,53.0 H81005,32.0,24.0,25.0,43.0,33.0,45.0,33.0,46.0,39.0,42.0,45.0,37.0,29.0,36.0,36.0,39.0,40.0,41.0,38.0,30.0,29.0,31.0,29.0,24.0,34.0,25.0,31.0,29.0,26.0,34.0,26.0,36.0,38.0,48.0,50.0,40.0,39.0,53.0,45.0,55.0,52.0,48.0,46.0,37.0,47.0,35.0,32.0,35.0,42.0,47.0,39.0,40.0,47.0,47.0,50.0,47.0,38.0,45.0,48.0,44.0,36.0,53.0,43.0,38.0,50.0,44.0,50.0,31.0,44.0,28.0,45.0,44.0,31.0,37.0,36.0,24.0,27.0,46.0,38.0,23.0,20.0,34.0,23.0,31.0,19.0,20.0,16.0,16.0,14.0,13.0,13.0,8.0,5.0,7.0,5.0,13.0 H81006,29.0,31.0,31.0,45.0,24.0,31.0,36.0,45.0,43.0,40.0,37.0,52.0,38.0,67.0,51.0,50.0,45.0,52.0,52.0,52.0,40.0,37.0,37.0,53.0,48.0,56.0,73.0,73.0,60.0,56.0,57.0,55.0,69.0,71.0,53.0,57.0,49.0,51.0,40.0,49.0,53.0,69.0,67.0,64.0,69.0,54.0,51.0,63.0,52.0,65.0,67.0,53.0,73.0,59.0,73.0,63.0,41.0,74.0,52.0,46.0,63.0,61.0,63.0,49.0,48.0,64.0,46.0,35.0,44.0,40.0,35.0,39.0,33.0,23.0,33.0,41.0,38.0,31.0,49.0,31.0,28.0,20.0,25.0,17.0,19.0,19.0,23.0,18.0,19.0,12.0,19.0,16.0,15.0,8.0,11.0,18.0 H81009,61.0,60.0,72.0,74.0,58.0,73.0,77.0,79.0,70.0,91.0,104.0,85.0,102.0,88.0,120.0,101.0,89.0,98.0,96.0,67.0,55.0,63.0,69.0,62.0,84.0,77.0,93.0,79.0,92.0,80.0,98.0,102.0,102.0,92.0,116.0,98.0,100.0,120.0,117.0,107.0,120.0,119.0,112.0,113.0,130.0,132.0,129.0,88.0,90.0,104.0,105.0,115.0,104.0,99.0,106.0,121.0,104.0,116.0,106.0,98.0,103.0,102.0,117.0,100.0,104.0,68.0,105.0,85.0,86.0,75.0,69.0,81.0,77.0,65.0,66.0,70.0,86.0,70.0,88.0,55.0,64.0,62.0,51.0,51.0,44.0,43.0,26.0,37.0,37.0,30.0,26.0,21.0,32.0,12.0,12.0,27.0 H81010,82.0,87.0,76.0,96.0,97.0,93.0,118.0,91.0,106.0,120.0,102.0,113.0,111.0,103.0,98.0,96.0,97.0,95.0,327.0,554.0,572.0,510.0,521.0,444.0,368.0,334.0,368.0,306.0,238.0,219.0,192.0,201.0,192.0,209.0,210.0,178.0,204.0,175.0,167.0,158.0,147.0,159.0,140.0,151.0,125.0,108.0,130.0,113.0,100.0,116.0,129.0,113.0,108.0,110.0,94.0,96.0,92.0,89.0,67.0,83.0,85.0,87.0,95.0,82.0,83.0,86.0,86.0,75.0,72.0,69.0,71.0,48.0,70.0,49.0,46.0,56.0,61.0,60.0,56.0,48.0,52.0,56.0,39.0,31.0,28.0,41.0,32.0,31.0,27.0,20.0,22.0,19.0,16.0,23.0,13.0,34.0 H81011,37.0,28.0,38.0,48.0,43.0,47.0,38.0,59.0,53.0,55.0,66.0,55.0,77.0,53.0,61.0,65.0,56.0,55.0,65.0,38.0,32.0,42.0,46.0,37.0,39.0,38.0,41.0,46.0,25.0,35.0,35.0,46.0,34.0,50.0,48.0,66.0,41.0,64.0,70.0,66.0,66.0,59.0,68.0,80.0,104.0,65.0,69.0,71.0,59.0,61.0,64.0,49.0,71.0,56.0,68.0,56.0,48.0,53.0,50.0,62.0,57.0,51.0,52.0,49.0,36.0,43.0,57.0,44.0,47.0,39.0,45.0,29.0,47.0,43.0,44.0,34.0,45.0,46.0,45.0,34.0,41.0,37.0,24.0,18.0,29.0,25.0,21.0,18.0,17.0,14.0,12.0,9.0,10.0,4.0,4.0,24.0 H81015,34.0,44.0,41.0,58.0,49.0,57.0,62.0,68.0,63.0,68.0,63.0,46.0,87.0,86.0,87.0,79.0,91.0,74.0,71.0,49.0,46.0,35.0,46.0,37.0,40.0,32.0,44.0,52.0,47.0,58.0,60.0,52.0,52.0,62.0,51.0,73.0,75.0,63.0,72.0,69.0,83.0,81.0,66.0,84.0,57.0,86.0,76.0,71.0,66.0,84.0,85.0,67.0,79.0,60.0,78.0,67.0,73.0,69.0,86.0,67.0,62.0,71.0,63.0,74.0,67.0,77.0,59.0,56.0,47.0,48.0,45.0,45.0,38.0,48.0,54.0,50.0,54.0,47.0,44.0,42.0,48.0,41.0,33.0,29.0,25.0,24.0,30.0,27.0,18.0,20.0,16.0,14.0,15.0,14.0,6.0,18.0 H81016,23.0,22.0,30.0,36.0,27.0,40.0,36.0,43.0,39.0,53.0,59.0,44.0,57.0,63.0,62.0,83.0,85.0,63.0,60.0,65.0,48.0,57.0,47.0,54.0,47.0,62.0,46.0,38.0,34.0,36.0,39.0,42.0,47.0,40.0,46.0,40.0,44.0,45.0,52.0,41.0,57.0,43.0,44.0,62.0,60.0,54.0,80.0,64.0,71.0,71.0,57.0,60.0,72.0,86.0,79.0,63.0,75.0,80.0,78.0,96.0,97.0,88.0,96.0,66.0,84.0,81.0,74.0,80.0,64.0,71.0,73.0,55.0,60.0,66.0,53.0,66.0,67.0,86.0,85.0,68.0,65.0,60.0,50.0,35.0,29.0,67.0,42.0,52.0,35.0,30.0,33.0,32.0,25.0,11.0,12.0,26.0 H81017,69.0,70.0,82.0,94.0,93.0,85.0,110.0,113.0,88.0,113.0,116.0,120.0,123.0,133.0,134.0,137.0,128.0,126.0,105.0,80.0,80.0,94.0,83.0,102.0,113.0,101.0,135.0,95.0,111.0,111.0,98.0,115.0,108.0,122.0,132.0,121.0,119.0,114.0,107.0,127.0,122.0,136.0,121.0,143.0,134.0,161.0,149.0,143.0,157.0,151.0,151.0,140.0,147.0,146.0,152.0,145.0,119.0,136.0,140.0,140.0,126.0,143.0,126.0,127.0,130.0,115.0,107.0,105.0,111.0,116.0,99.0,97.0,88.0,99.0,87.0,123.0,90.0,117.0,114.0,95.0,74.0,76.0,88.0,63.0,59.0,70.0,65.0,57.0,46.0,40.0,31.0,33.0,36.0,16.0,20.0,59.0 H81019,64.0,62.0,61.0,61.0,68.0,85.0,88.0,64.0,81.0,89.0,70.0,72.0,79.0,72.0,82.0,81.0,71.0,87.0,59.0,66.0,58.0,70.0,56.0,79.0,72.0,92.0,88.0,123.0,107.0,119.0,109.0,122.0,109.0,110.0,133.0,102.0,118.0,120.0,113.0,103.0,92.0,111.0,100.0,120.0,108.0,101.0,91.0,87.0,86.0,103.0,79.0,95.0,76.0,76.0,97.0,82.0,80.0,78.0,74.0,95.0,97.0,68.0,75.0,64.0,60.0,56.0,59.0,57.0,49.0,55.0,41.0,42.0,46.0,46.0,48.0,46.0,46.0,41.0,55.0,33.0,43.0,44.0,27.0,31.0,28.0,27.0,25.0,29.0,26.0,15.0,10.0,12.0,14.0,9.0,3.0,21.0 H81020,54.0,72.0,67.0,69.0,91.0,83.0,100.0,110.0,114.0,113.0,118.0,112.0,119.0,100.0,105.0,102.0,105.0,76.0,76.0,57.0,50.0,60.0,52.0,41.0,63.0,47.0,48.0,56.0,56.0,50.0,65.0,64.0,67.0,81.0,90.0,76.0,90.0,102.0,108.0,118.0,96.0,133.0,135.0,130.0,137.0,152.0,147.0,114.0,123.0,114.0,117.0,100.0,102.0,104.0,106.0,96.0,89.0,76.0,89.0,76.0,93.0,69.0,75.0,79.0,70.0,58.0,68.0,71.0,54.0,45.0,63.0,60.0,51.0,44.0,56.0,56.0,50.0,67.0,58.0,45.0,48.0,39.0,31.0,34.0,32.0,32.0,31.0,27.0,36.0,16.0,19.0,10.0,11.0,10.0,5.0,19.0 H81021,76.0,100.0,93.0,97.0,86.0,82.0,79.0,70.0,88.0,104.0,97.0,87.0,105.0,121.0,186.0,188.0,152.0,166.0,117.0,57.0,60.0,77.0,58.0,54.0,61.0,62.0,84.0,72.0,83.0,105.0,95.0,109.0,114.0,109.0,133.0,130.0,129.0,146.0,152.0,125.0,119.0,146.0,161.0,124.0,123.0,133.0,127.0,114.0,125.0,122.0,118.0,119.0,122.0,113.0,104.0,94.0,97.0,104.0,90.0,96.0,89.0,87.0,88.0,78.0,78.0,89.0,64.0,79.0,80.0,74.0,51.0,70.0,70.0,68.0,78.0,69.0,75.0,81.0,83.0,69.0,72.0,75.0,66.0,44.0,36.0,45.0,44.0,27.0,29.0,35.0,38.0,28.0,16.0,20.0,12.0,34.0 H81022,16.0,19.0,24.0,25.0,24.0,22.0,38.0,27.0,19.0,26.0,25.0,38.0,36.0,32.0,28.0,30.0,23.0,39.0,30.0,24.0,14.0,19.0,20.0,21.0,25.0,18.0,16.0,20.0,15.0,23.0,17.0,22.0,22.0,27.0,28.0,27.0,24.0,30.0,30.0,27.0,31.0,31.0,35.0,27.0,32.0,28.0,39.0,44.0,44.0,37.0,35.0,42.0,48.0,38.0,51.0,35.0,46.0,36.0,48.0,42.0,35.0,35.0,46.0,40.0,38.0,25.0,33.0,35.0,28.0,30.0,32.0,34.0,29.0,22.0,30.0,42.0,26.0,33.0,26.0,25.0,25.0,25.0,22.0,22.0,22.0,14.0,12.0,17.0,7.0,10.0,8.0,9.0,6.0,7.0,3.0,8.0 H81023,40.0,49.0,57.0,52.0,49.0,48.0,71.0,60.0,61.0,53.0,61.0,55.0,58.0,82.0,56.0,56.0,68.0,66.0,60.0,70.0,63.0,43.0,60.0,52.0,78.0,46.0,52.0,44.0,44.0,52.0,54.0,62.0,60.0,52.0,74.0,72.0,78.0,91.0,63.0,80.0,80.0,100.0,52.0,60.0,68.0,81.0,57.0,69.0,73.0,66.0,75.0,56.0,75.0,90.0,77.0,83.0,89.0,90.0,90.0,97.0,88.0,88.0,76.0,78.0,57.0,77.0,81.0,57.0,69.0,58.0,57.0,68.0,57.0,53.0,58.0,50.0,69.0,83.0,57.0,55.0,43.0,59.0,43.0,33.0,34.0,37.0,27.0,29.0,24.0,25.0,20.0,19.0,15.0,8.0,10.0,28.0 H81024,44.0,48.0,61.0,58.0,47.0,57.0,69.0,62.0,67.0,87.0,74.0,81.0,88.0,79.0,88.0,77.0,73.0,69.0,89.0,64.0,64.0,59.0,65.0,59.0,72.0,77.0,79.0,81.0,93.0,78.0,85.0,86.0,105.0,92.0,94.0,88.0,99.0,104.0,98.0,99.0,129.0,88.0,97.0,115.0,113.0,124.0,89.0,88.0,92.0,87.0,80.0,86.0,83.0,74.0,76.0,73.0,81.0,77.0,78.0,83.0,97.0,70.0,84.0,69.0,79.0,59.0,75.0,78.0,64.0,61.0,56.0,53.0,69.0,57.0,55.0,62.0,64.0,56.0,52.0,36.0,37.0,35.0,31.0,25.0,21.0,29.0,23.0,23.0,27.0,20.0,17.0,24.0,16.0,21.0,13.0,29.0 H81025,37.0,45.0,40.0,38.0,32.0,37.0,47.0,47.0,44.0,45.0,59.0,51.0,79.0,76.0,76.0,76.0,70.0,67.0,46.0,47.0,50.0,38.0,56.0,40.0,66.0,49.0,43.0,54.0,45.0,52.0,51.0,60.0,51.0,61.0,51.0,82.0,58.0,68.0,77.0,66.0,73.0,73.0,63.0,87.0,101.0,74.0,65.0,72.0,78.0,70.0,75.0,92.0,74.0,100.0,81.0,74.0,79.0,83.0,74.0,81.0,103.0,76.0,64.0,83.0,63.0,62.0,57.0,96.0,72.0,80.0,61.0,58.0,57.0,58.0,56.0,64.0,64.0,70.0,63.0,62.0,51.0,60.0,46.0,42.0,29.0,42.0,38.0,35.0,25.0,17.0,19.0,27.0,14.0,18.0,9.0,18.0 H81026,58.0,52.0,60.0,69.0,61.0,61.0,56.0,66.0,78.0,61.0,72.0,72.0,56.0,58.0,66.0,65.0,49.0,60.0,53.0,31.0,51.0,40.0,47.0,47.0,49.0,52.0,62.0,55.0,48.0,63.0,78.0,60.0,71.0,88.0,84.0,87.0,87.0,101.0,71.0,77.0,83.0,84.0,91.0,76.0,66.0,79.0,87.0,89.0,61.0,79.0,93.0,78.0,81.0,84.0,92.0,89.0,70.0,91.0,75.0,76.0,80.0,92.0,76.0,62.0,61.0,85.0,65.0,77.0,63.0,52.0,56.0,49.0,54.0,52.0,60.0,52.0,58.0,49.0,48.0,35.0,48.0,61.0,42.0,34.0,45.0,27.0,35.0,31.0,27.0,25.0,21.0,8.0,28.0,17.0,14.0,27.0 H81028,30.0,38.0,51.0,43.0,44.0,35.0,49.0,42.0,48.0,43.0,58.0,45.0,57.0,44.0,65.0,67.0,56.0,50.0,54.0,46.0,51.0,52.0,48.0,55.0,49.0,65.0,40.0,51.0,58.0,70.0,58.0,80.0,60.0,55.0,80.0,68.0,62.0,60.0,52.0,64.0,56.0,62.0,59.0,53.0,68.0,74.0,63.0,55.0,78.0,70.0,90.0,68.0,79.0,91.0,101.0,74.0,98.0,77.0,103.0,103.0,79.0,110.0,93.0,91.0,76.0,68.0,70.0,62.0,72.0,81.0,88.0,67.0,68.0,65.0,62.0,63.0,72.0,57.0,77.0,65.0,53.0,54.0,47.0,47.0,40.0,33.0,31.0,39.0,40.0,21.0,29.0,18.0,19.0,15.0,9.0,35.0 H81029,46.0,49.0,46.0,56.0,47.0,50.0,40.0,57.0,64.0,52.0,47.0,68.0,65.0,60.0,67.0,72.0,64.0,48.0,79.0,111.0,131.0,110.0,114.0,99.0,138.0,136.0,119.0,116.0,117.0,96.0,118.0,117.0,122.0,104.0,98.0,130.0,98.0,111.0,85.0,91.0,94.0,76.0,79.0,93.0,74.0,82.0,89.0,71.0,81.0,81.0,82.0,80.0,84.0,62.0,73.0,79.0,69.0,72.0,70.0,76.0,65.0,69.0,54.0,77.0,49.0,64.0,53.0,40.0,40.0,39.0,56.0,53.0,44.0,35.0,44.0,48.0,50.0,42.0,41.0,38.0,31.0,24.0,25.0,27.0,17.0,27.0,21.0,9.0,10.0,14.0,14.0,9.0,4.0,2.0,3.0,18.0 H81030,153.0,171.0,187.0,197.0,169.0,170.0,149.0,178.0,186.0,176.0,161.0,181.0,153.0,191.0,171.0,146.0,167.0,164.0,142.0,125.0,123.0,129.0,117.0,150.0,141.0,128.0,157.0,185.0,215.0,211.0,218.0,219.0,258.0,267.0,285.0,285.0,296.0,264.0,286.0,234.0,259.0,217.0,190.0,255.0,180.0,222.0,224.0,196.0,183.0,170.0,169.0,174.0,184.0,202.0,186.0,207.0,173.0,163.0,173.0,176.0,167.0,158.0,146.0,143.0,138.0,120.0,136.0,113.0,120.0,95.0,101.0,85.0,102.0,94.0,112.0,109.0,94.0,101.0,83.0,77.0,74.0,55.0,57.0,64.0,55.0,50.0,35.0,55.0,47.0,38.0,28.0,34.0,23.0,28.0,18.0,34.0 H81031,39.0,53.0,38.0,47.0,50.0,61.0,64.0,73.0,67.0,56.0,67.0,76.0,55.0,83.0,68.0,102.0,92.0,76.0,89.0,53.0,55.0,50.0,43.0,52.0,58.0,64.0,52.0,63.0,53.0,37.0,66.0,39.0,73.0,52.0,59.0,54.0,68.0,87.0,69.0,92.0,84.0,71.0,72.0,89.0,89.0,87.0,87.0,79.0,102.0,71.0,85.0,90.0,81.0,101.0,93.0,91.0,107.0,81.0,87.0,85.0,98.0,89.0,81.0,73.0,78.0,83.0,57.0,54.0,65.0,46.0,53.0,51.0,43.0,42.0,54.0,49.0,57.0,58.0,51.0,44.0,59.0,37.0,33.0,26.0,36.0,25.0,21.0,30.0,20.0,17.0,21.0,16.0,8.0,8.0,10.0,15.0 H81032,74.0,74.0,87.0,103.0,92.0,101.0,100.0,128.0,135.0,114.0,100.0,100.0,119.0,115.0,120.0,118.0,111.0,120.0,125.0,82.0,76.0,77.0,61.0,79.0,101.0,76.0,86.0,90.0,93.0,97.0,99.0,98.0,120.0,117.0,126.0,98.0,117.0,145.0,131.0,130.0,168.0,159.0,165.0,152.0,144.0,152.0,145.0,139.0,155.0,106.0,139.0,118.0,127.0,122.0,114.0,116.0,115.0,106.0,111.0,124.0,98.0,101.0,102.0,79.0,79.0,72.0,95.0,69.0,65.0,62.0,75.0,67.0,68.0,58.0,47.0,75.0,67.0,53.0,68.0,55.0,49.0,42.0,37.0,45.0,24.0,38.0,26.0,32.0,21.0,15.0,17.0,23.0,11.0,7.0,10.0,18.0 H81033,121.0,104.0,142.0,115.0,136.0,145.0,123.0,140.0,145.0,115.0,147.0,130.0,121.0,139.0,146.0,116.0,120.0,124.0,114.0,88.0,80.0,93.0,88.0,125.0,111.0,132.0,118.0,144.0,138.0,149.0,153.0,152.0,194.0,206.0,210.0,171.0,158.0,172.0,190.0,183.0,184.0,148.0,150.0,168.0,155.0,166.0,131.0,145.0,133.0,162.0,171.0,139.0,153.0,147.0,127.0,147.0,143.0,134.0,160.0,126.0,141.0,142.0,146.0,116.0,145.0,113.0,107.0,95.0,86.0,84.0,96.0,86.0,83.0,83.0,101.0,78.0,91.0,65.0,113.0,81.0,66.0,56.0,76.0,48.0,39.0,59.0,49.0,42.0,29.0,32.0,25.0,23.0,19.0,19.0,13.0,37.0 H81034,32.0,40.0,38.0,38.0,48.0,41.0,46.0,46.0,59.0,43.0,57.0,36.0,51.0,53.0,43.0,51.0,52.0,50.0,38.0,30.0,38.0,32.0,36.0,37.0,46.0,38.0,41.0,51.0,44.0,39.0,47.0,47.0,48.0,55.0,54.0,56.0,49.0,63.0,60.0,67.0,51.0,65.0,62.0,58.0,67.0,79.0,59.0,51.0,63.0,61.0,66.0,55.0,59.0,53.0,60.0,63.0,67.0,57.0,63.0,58.0,61.0,58.0,50.0,66.0,46.0,37.0,51.0,33.0,56.0,44.0,46.0,31.0,50.0,40.0,38.0,41.0,46.0,62.0,48.0,34.0,39.0,37.0,26.0,29.0,30.0,22.0,28.0,22.0,32.0,24.0,24.0,18.0,23.0,17.0,11.0,27.0 H81035,36.0,37.0,37.0,43.0,44.0,59.0,57.0,61.0,77.0,80.0,76.0,95.0,99.0,112.0,92.0,87.0,98.0,104.0,51.0,60.0,59.0,52.0,59.0,62.0,51.0,62.0,63.0,57.0,67.0,67.0,43.0,62.0,59.0,51.0,69.0,72.0,65.0,78.0,57.0,75.0,90.0,98.0,85.0,98.0,101.0,99.0,105.0,117.0,64.0,86.0,99.0,72.0,93.0,95.0,81.0,68.0,75.0,74.0,75.0,90.0,85.0,72.0,73.0,82.0,73.0,70.0,66.0,47.0,57.0,51.0,53.0,44.0,59.0,32.0,58.0,47.0,50.0,56.0,53.0,30.0,33.0,28.0,31.0,17.0,22.0,27.0,22.0,17.0,14.0,9.0,16.0,14.0,14.0,7.0,12.0,18.0 H81036,41.0,35.0,31.0,37.0,31.0,44.0,49.0,39.0,45.0,55.0,37.0,53.0,62.0,62.0,67.0,47.0,51.0,71.0,46.0,43.0,48.0,56.0,48.0,50.0,46.0,56.0,54.0,52.0,59.0,45.0,73.0,57.0,43.0,66.0,60.0,58.0,67.0,53.0,68.0,59.0,53.0,70.0,66.0,66.0,61.0,65.0,66.0,58.0,72.0,65.0,83.0,77.0,79.0,72.0,61.0,69.0,76.0,60.0,71.0,77.0,65.0,58.0,56.0,64.0,63.0,59.0,47.0,45.0,49.0,62.0,47.0,51.0,49.0,38.0,48.0,57.0,48.0,83.0,51.0,36.0,50.0,43.0,33.0,38.0,38.0,26.0,28.0,32.0,19.0,24.0,22.0,11.0,8.0,14.0,13.0,22.0 H81038,6.0,7.0,7.0,5.0,9.0,12.0,5.0,14.0,12.0,17.0,19.0,15.0,25.0,19.0,19.0,28.0,23.0,25.0,27.0,25.0,15.0,25.0,26.0,29.0,16.0,31.0,17.0,17.0,13.0,23.0,19.0,16.0,25.0,20.0,21.0,7.0,13.0,19.0,15.0,17.0,20.0,19.0,21.0,14.0,22.0,24.0,25.0,27.0,29.0,20.0,26.0,34.0,24.0,32.0,30.0,32.0,23.0,30.0,23.0,24.0,25.0,29.0,21.0,21.0,20.0,20.0,11.0,18.0,14.0,12.0,13.0,11.0,22.0,16.0,13.0,15.0,19.0,15.0,12.0,12.0,13.0,11.0,8.0,11.0,12.0,5.0,7.0,5.0,5.0,3.0,8.0,3.0,3.0,7.0,1.0,10.0 H81041,43.0,48.0,45.0,64.0,51.0,59.0,54.0,56.0,68.0,71.0,79.0,69.0,75.0,86.0,70.0,84.0,76.0,61.0,66.0,48.0,44.0,47.0,30.0,33.0,45.0,48.0,57.0,70.0,75.0,77.0,64.0,86.0,71.0,80.0,83.0,83.0,84.0,107.0,99.0,77.0,82.0,80.0,92.0,91.0,106.0,87.0,79.0,90.0,91.0,86.0,77.0,81.0,69.0,84.0,57.0,54.0,54.0,76.0,64.0,67.0,52.0,65.0,47.0,54.0,62.0,58.0,33.0,41.0,36.0,28.0,35.0,44.0,29.0,33.0,34.0,45.0,43.0,36.0,46.0,36.0,32.0,26.0,28.0,17.0,23.0,20.0,18.0,12.0,12.0,15.0,10.0,6.0,11.0,10.0,7.0,25.0 H81042,91.0,70.0,80.0,91.0,85.0,81.0,112.0,87.0,86.0,117.0,105.0,94.0,111.0,87.0,98.0,119.0,89.0,91.0,101.0,78.0,79.0,84.0,78.0,90.0,96.0,94.0,102.0,103.0,108.0,111.0,143.0,109.0,113.0,113.0,152.0,142.0,124.0,150.0,147.0,133.0,127.0,111.0,113.0,142.0,137.0,116.0,117.0,124.0,116.0,112.0,114.0,131.0,105.0,101.0,102.0,126.0,124.0,108.0,97.0,104.0,84.0,102.0,90.0,92.0,92.0,80.0,81.0,76.0,79.0,71.0,67.0,84.0,64.0,61.0,56.0,68.0,64.0,65.0,65.0,61.0,50.0,41.0,40.0,44.0,37.0,32.0,32.0,38.0,32.0,25.0,20.0,29.0,15.0,10.0,14.0,37.0 H81043,37.0,40.0,38.0,54.0,46.0,51.0,55.0,56.0,57.0,56.0,67.0,53.0,90.0,92.0,93.0,97.0,86.0,78.0,91.0,63.0,54.0,49.0,38.0,53.0,48.0,44.0,34.0,48.0,42.0,50.0,45.0,49.0,59.0,54.0,65.0,52.0,61.0,65.0,57.0,69.0,47.0,67.0,60.0,53.0,80.0,76.0,80.0,63.0,82.0,74.0,72.0,75.0,90.0,84.0,85.0,76.0,80.0,79.0,90.0,86.0,86.0,84.0,84.0,87.0,64.0,76.0,63.0,71.0,55.0,50.0,66.0,52.0,60.0,67.0,47.0,58.0,51.0,68.0,69.0,51.0,51.0,62.0,52.0,29.0,28.0,31.0,30.0,30.0,22.0,16.0,20.0,18.0,20.0,16.0,3.0,27.0 H81044,11.0,17.0,31.0,27.0,19.0,20.0,22.0,26.0,39.0,20.0,24.0,24.0,34.0,26.0,33.0,32.0,33.0,25.0,29.0,22.0,18.0,21.0,20.0,16.0,30.0,30.0,26.0,18.0,20.0,20.0,15.0,28.0,20.0,17.0,22.0,28.0,23.0,24.0,29.0,23.0,39.0,25.0,25.0,34.0,31.0,36.0,25.0,34.0,32.0,27.0,34.0,32.0,34.0,38.0,26.0,36.0,34.0,45.0,37.0,61.0,47.0,33.0,36.0,41.0,33.0,32.0,33.0,39.0,36.0,27.0,24.0,20.0,27.0,33.0,27.0,28.0,31.0,27.0,34.0,27.0,19.0,19.0,27.0,25.0,14.0,20.0,29.0,18.0,6.0,11.0,13.0,11.0,12.0,5.0,5.0,16.0 H81045,53.0,46.0,66.0,45.0,61.0,52.0,62.0,65.0,60.0,51.0,62.0,74.0,61.0,76.0,88.0,75.0,80.0,85.0,71.0,49.0,52.0,47.0,42.0,44.0,46.0,51.0,61.0,56.0,69.0,60.0,58.0,52.0,68.0,89.0,78.0,92.0,80.0,85.0,88.0,89.0,92.0,89.0,74.0,70.0,90.0,87.0,80.0,72.0,82.0,61.0,76.0,64.0,77.0,68.0,63.0,58.0,68.0,79.0,79.0,67.0,71.0,64.0,65.0,52.0,57.0,50.0,52.0,47.0,48.0,52.0,35.0,42.0,41.0,51.0,40.0,51.0,56.0,51.0,49.0,43.0,43.0,39.0,27.0,26.0,21.0,35.0,15.0,14.0,16.0,16.0,15.0,15.0,11.0,14.0,5.0,18.0 H81046,58.0,45.0,49.0,54.0,49.0,48.0,63.0,37.0,48.0,46.0,36.0,31.0,30.0,42.0,32.0,37.0,36.0,27.0,34.0,29.0,23.0,36.0,23.0,36.0,32.0,39.0,51.0,55.0,48.0,56.0,59.0,75.0,73.0,66.0,63.0,91.0,79.0,70.0,49.0,72.0,50.0,41.0,45.0,57.0,42.0,46.0,45.0,36.0,44.0,48.0,35.0,41.0,39.0,41.0,27.0,32.0,28.0,43.0,28.0,40.0,36.0,33.0,34.0,34.0,31.0,30.0,27.0,26.0,23.0,30.0,25.0,26.0,29.0,28.0,38.0,33.0,26.0,28.0,28.0,13.0,22.0,19.0,19.0,11.0,18.0,18.0,17.0,13.0,6.0,8.0,12.0,2.0,6.0,8.0,7.0,5.0 H81048,60.0,52.0,53.0,47.0,64.0,69.0,57.0,64.0,76.0,56.0,92.0,77.0,88.0,109.0,91.0,108.0,82.0,96.0,79.0,56.0,45.0,43.0,46.0,44.0,53.0,62.0,63.0,63.0,68.0,68.0,74.0,89.0,83.0,108.0,91.0,97.0,101.0,98.0,81.0,102.0,106.0,100.0,95.0,76.0,88.0,88.0,75.0,83.0,70.0,97.0,73.0,82.0,70.0,88.0,58.0,70.0,56.0,67.0,55.0,63.0,51.0,60.0,55.0,38.0,48.0,51.0,39.0,26.0,37.0,24.0,27.0,21.0,23.0,30.0,29.0,25.0,38.0,31.0,29.0,20.0,25.0,26.0,19.0,18.0,11.0,14.0,16.0,10.0,6.0,9.0,10.0,13.0,13.0,10.0,6.0,11.0 H81050,61.0,64.0,67.0,74.0,64.0,71.0,80.0,93.0,83.0,92.0,97.0,74.0,85.0,89.0,80.0,83.0,68.0,64.0,55.0,38.0,51.0,39.0,45.0,57.0,65.0,55.0,64.0,56.0,56.0,68.0,57.0,58.0,75.0,77.0,94.0,81.0,108.0,92.0,90.0,97.0,91.0,108.0,100.0,95.0,119.0,93.0,116.0,95.0,87.0,89.0,98.0,70.0,88.0,79.0,82.0,68.0,66.0,84.0,76.0,63.0,66.0,84.0,69.0,54.0,69.0,62.0,57.0,59.0,64.0,46.0,41.0,60.0,63.0,64.0,66.0,52.0,74.0,71.0,63.0,59.0,58.0,53.0,49.0,39.0,32.0,33.0,38.0,34.0,30.0,29.0,29.0,14.0,17.0,14.0,9.0,20.0 H81051,45.0,66.0,70.0,84.0,80.0,82.0,80.0,93.0,81.0,95.0,88.0,93.0,92.0,124.0,95.0,105.0,88.0,88.0,99.0,91.0,121.0,114.0,98.0,105.0,109.0,81.0,83.0,91.0,110.0,89.0,84.0,90.0,82.0,70.0,91.0,98.0,95.0,101.0,99.0,112.0,119.0,124.0,107.0,125.0,114.0,115.0,129.0,111.0,124.0,98.0,117.0,89.0,111.0,111.0,104.0,84.0,97.0,96.0,86.0,88.0,70.0,62.0,61.0,71.0,67.0,59.0,54.0,52.0,48.0,46.0,61.0,49.0,70.0,56.0,45.0,61.0,66.0,69.0,60.0,45.0,54.0,41.0,46.0,37.0,36.0,34.0,33.0,31.0,23.0,24.0,18.0,15.0,15.0,14.0,8.0,29.0 H81052,81.0,84.0,84.0,98.0,97.0,94.0,92.0,88.0,99.0,100.0,89.0,84.0,103.0,98.0,89.0,91.0,127.0,180.0,141.0,96.0,91.0,101.0,69.0,61.0,75.0,92.0,94.0,68.0,98.0,84.0,95.0,97.0,107.0,107.0,105.0,116.0,108.0,107.0,103.0,117.0,108.0,102.0,108.0,119.0,112.0,114.0,92.0,85.0,102.0,114.0,102.0,117.0,115.0,149.0,123.0,106.0,106.0,113.0,120.0,132.0,134.0,113.0,104.0,119.0,108.0,98.0,115.0,102.0,123.0,105.0,109.0,103.0,82.0,100.0,91.0,135.0,113.0,131.0,130.0,101.0,103.0,116.0,90.0,86.0,72.0,51.0,68.0,63.0,63.0,47.0,40.0,34.0,23.0,24.0,18.0,62.0 H81053,35.0,29.0,47.0,45.0,37.0,50.0,30.0,33.0,54.0,36.0,46.0,51.0,53.0,46.0,62.0,50.0,68.0,58.0,51.0,32.0,41.0,35.0,47.0,41.0,35.0,39.0,38.0,47.0,35.0,34.0,35.0,39.0,47.0,50.0,66.0,58.0,39.0,44.0,60.0,39.0,53.0,60.0,56.0,57.0,65.0,62.0,60.0,65.0,52.0,74.0,62.0,70.0,72.0,75.0,77.0,63.0,81.0,59.0,80.0,70.0,81.0,80.0,57.0,52.0,58.0,54.0,54.0,67.0,62.0,53.0,48.0,43.0,43.0,36.0,39.0,46.0,58.0,45.0,50.0,42.0,48.0,35.0,35.0,23.0,24.0,22.0,21.0,19.0,18.0,19.0,10.0,10.0,12.0,2.0,6.0,13.0 H81055,28.0,48.0,46.0,53.0,50.0,48.0,57.0,33.0,53.0,45.0,54.0,39.0,49.0,55.0,52.0,58.0,37.0,53.0,43.0,39.0,27.0,34.0,29.0,37.0,41.0,45.0,60.0,52.0,55.0,56.0,49.0,67.0,67.0,79.0,87.0,84.0,75.0,71.0,69.0,71.0,61.0,65.0,54.0,75.0,60.0,68.0,56.0,52.0,49.0,57.0,55.0,52.0,56.0,52.0,61.0,50.0,53.0,50.0,54.0,66.0,71.0,50.0,54.0,70.0,61.0,36.0,56.0,67.0,55.0,45.0,49.0,35.0,41.0,41.0,29.0,45.0,42.0,42.0,45.0,27.0,38.0,35.0,30.0,29.0,26.0,24.0,32.0,27.0,24.0,17.0,19.0,18.0,15.0,13.0,10.0,20.0 H81056,62.0,77.0,77.0,95.0,91.0,99.0,97.0,105.0,101.0,120.0,88.0,105.0,97.0,100.0,115.0,104.0,96.0,102.0,123.0,68.0,70.0,78.0,69.0,78.0,90.0,80.0,95.0,86.0,74.0,76.0,81.0,66.0,80.0,86.0,91.0,96.0,98.0,101.0,101.0,121.0,109.0,119.0,113.0,107.0,149.0,130.0,124.0,111.0,103.0,119.0,106.0,123.0,118.0,125.0,130.0,128.0,136.0,127.0,122.0,111.0,125.0,121.0,108.0,122.0,107.0,99.0,101.0,109.0,87.0,91.0,82.0,79.0,99.0,88.0,63.0,86.0,88.0,108.0,99.0,69.0,87.0,87.0,70.0,54.0,56.0,63.0,48.0,49.0,44.0,28.0,43.0,34.0,28.0,20.0,12.0,53.0 H81057,42.0,36.0,41.0,51.0,45.0,47.0,50.0,55.0,36.0,49.0,45.0,49.0,51.0,33.0,33.0,48.0,46.0,41.0,41.0,42.0,32.0,28.0,44.0,30.0,46.0,55.0,46.0,44.0,59.0,68.0,55.0,57.0,71.0,82.0,60.0,61.0,68.0,61.0,56.0,76.0,59.0,61.0,58.0,38.0,56.0,60.0,48.0,46.0,52.0,53.0,59.0,39.0,54.0,52.0,57.0,52.0,51.0,55.0,55.0,51.0,59.0,57.0,45.0,61.0,45.0,30.0,46.0,36.0,34.0,30.0,43.0,29.0,23.0,21.0,32.0,31.0,26.0,33.0,36.0,22.0,25.0,32.0,24.0,23.0,13.0,14.0,19.0,11.0,17.0,19.0,15.0,4.0,8.0,5.0,6.0,6.0 H81058,30.0,38.0,41.0,51.0,54.0,55.0,51.0,62.0,48.0,47.0,60.0,60.0,53.0,77.0,76.0,55.0,55.0,52.0,58.0,42.0,31.0,45.0,52.0,33.0,44.0,45.0,59.0,56.0,53.0,45.0,64.0,73.0,71.0,66.0,88.0,87.0,72.0,89.0,93.0,73.0,68.0,67.0,83.0,88.0,89.0,68.0,64.0,76.0,79.0,74.0,74.0,71.0,74.0,72.0,81.0,76.0,75.0,80.0,66.0,62.0,57.0,68.0,51.0,55.0,53.0,48.0,36.0,49.0,38.0,24.0,49.0,44.0,31.0,42.0,44.0,35.0,41.0,52.0,53.0,26.0,30.0,33.0,23.0,20.0,10.0,20.0,15.0,14.0,10.0,13.0,7.0,6.0,6.0,5.0,4.0,15.0 H81061,80.0,98.0,107.0,94.0,96.0,97.0,96.0,90.0,75.0,98.0,108.0,82.0,98.0,71.0,91.0,81.0,97.0,65.0,87.0,48.0,61.0,49.0,80.0,83.0,89.0,89.0,139.0,115.0,130.0,103.0,148.0,145.0,136.0,151.0,143.0,135.0,157.0,140.0,148.0,145.0,134.0,135.0,145.0,125.0,130.0,130.0,101.0,105.0,100.0,94.0,118.0,92.0,94.0,101.0,98.0,91.0,91.0,69.0,84.0,101.0,89.0,77.0,75.0,65.0,76.0,61.0,64.0,48.0,63.0,50.0,61.0,46.0,45.0,39.0,46.0,43.0,32.0,53.0,40.0,42.0,35.0,26.0,26.0,35.0,19.0,22.0,26.0,24.0,17.0,15.0,15.0,16.0,10.0,9.0,8.0,23.0 H81062,69.0,79.0,76.0,83.0,91.0,81.0,104.0,104.0,96.0,114.0,112.0,144.0,121.0,159.0,106.0,114.0,135.0,118.0,117.0,85.0,71.0,75.0,58.0,92.0,75.0,69.0,75.0,84.0,77.0,72.0,71.0,84.0,102.0,107.0,110.0,104.0,103.0,106.0,120.0,130.0,127.0,124.0,131.0,122.0,164.0,145.0,114.0,153.0,154.0,139.0,127.0,147.0,175.0,175.0,132.0,155.0,153.0,141.0,136.0,138.0,139.0,135.0,128.0,122.0,110.0,121.0,114.0,105.0,106.0,97.0,99.0,89.0,93.0,93.0,86.0,100.0,76.0,105.0,114.0,80.0,88.0,73.0,75.0,60.0,60.0,52.0,57.0,41.0,41.0,38.0,29.0,28.0,27.0,29.0,18.0,58.0 H81064,40.0,84.0,58.0,88.0,73.0,77.0,70.0,79.0,89.0,90.0,111.0,86.0,76.0,89.0,81.0,90.0,77.0,85.0,73.0,64.0,72.0,50.0,64.0,50.0,58.0,61.0,76.0,59.0,67.0,77.0,76.0,101.0,91.0,70.0,93.0,104.0,91.0,109.0,113.0,90.0,84.0,91.0,105.0,101.0,111.0,89.0,89.0,95.0,84.0,80.0,97.0,102.0,94.0,107.0,104.0,97.0,94.0,105.0,99.0,91.0,104.0,86.0,92.0,94.0,104.0,78.0,80.0,76.0,89.0,66.0,81.0,74.0,70.0,62.0,71.0,76.0,93.0,78.0,63.0,66.0,69.0,61.0,61.0,39.0,43.0,38.0,43.0,35.0,33.0,28.0,20.0,16.0,16.0,12.0,8.0,37.0 H81065,60.0,62.0,62.0,68.0,67.0,60.0,68.0,78.0,57.0,57.0,71.0,67.0,61.0,66.0,61.0,51.0,52.0,59.0,51.0,41.0,33.0,27.0,45.0,33.0,42.0,43.0,44.0,41.0,50.0,43.0,43.0,58.0,61.0,73.0,76.0,95.0,88.0,99.0,97.0,71.0,102.0,81.0,79.0,65.0,93.0,108.0,80.0,78.0,52.0,61.0,63.0,91.0,60.0,55.0,55.0,50.0,61.0,47.0,64.0,52.0,41.0,54.0,62.0,42.0,43.0,45.0,34.0,50.0,41.0,35.0,41.0,41.0,44.0,40.0,44.0,36.0,57.0,60.0,58.0,39.0,47.0,33.0,40.0,36.0,28.0,26.0,31.0,28.0,29.0,26.0,21.0,17.0,24.0,9.0,10.0,53.0 H81066,71.0,61.0,65.0,73.0,69.0,84.0,77.0,87.0,89.0,91.0,85.0,82.0,62.0,88.0,94.0,94.0,123.0,159.0,117.0,107.0,99.0,108.0,109.0,84.0,92.0,90.0,83.0,89.0,94.0,95.0,84.0,93.0,107.0,113.0,99.0,106.0,116.0,112.0,124.0,98.0,109.0,101.0,105.0,94.0,95.0,116.0,107.0,129.0,107.0,114.0,85.0,112.0,98.0,124.0,110.0,99.0,125.0,112.0,83.0,102.0,111.0,105.0,85.0,88.0,82.0,62.0,93.0,77.0,57.0,58.0,53.0,54.0,55.0,53.0,45.0,59.0,47.0,53.0,55.0,42.0,48.0,40.0,35.0,33.0,36.0,29.0,31.0,21.0,23.0,21.0,22.0,17.0,12.0,13.0,13.0,20.0 H81067,44.0,47.0,52.0,48.0,58.0,48.0,51.0,58.0,71.0,79.0,91.0,89.0,98.0,96.0,104.0,119.0,133.0,162.0,133.0,101.0,89.0,103.0,63.0,81.0,85.0,58.0,54.0,71.0,63.0,51.0,63.0,67.0,56.0,56.0,65.0,52.0,76.0,69.0,56.0,77.0,76.0,68.0,81.0,95.0,89.0,112.0,91.0,97.0,98.0,95.0,80.0,110.0,103.0,90.0,99.0,114.0,98.0,114.0,96.0,75.0,93.0,77.0,78.0,84.0,85.0,74.0,73.0,63.0,60.0,53.0,62.0,78.0,61.0,71.0,60.0,65.0,58.0,70.0,66.0,37.0,51.0,62.0,59.0,40.0,43.0,50.0,40.0,44.0,37.0,37.0,24.0,28.0,18.0,18.0,10.0,32.0 H81068,35.0,35.0,45.0,53.0,42.0,52.0,43.0,52.0,48.0,54.0,62.0,57.0,52.0,63.0,71.0,58.0,56.0,66.0,76.0,51.0,51.0,67.0,55.0,58.0,50.0,55.0,62.0,52.0,44.0,52.0,56.0,58.0,60.0,54.0,51.0,72.0,75.0,62.0,68.0,65.0,61.0,54.0,67.0,67.0,69.0,50.0,71.0,73.0,77.0,77.0,91.0,77.0,115.0,86.0,87.0,79.0,84.0,124.0,93.0,99.0,97.0,99.0,100.0,117.0,111.0,81.0,92.0,63.0,72.0,78.0,69.0,59.0,81.0,66.0,69.0,78.0,75.0,80.0,78.0,65.0,45.0,67.0,51.0,59.0,37.0,43.0,50.0,32.0,25.0,29.0,31.0,26.0,21.0,11.0,12.0,45.0 H81070,38.0,32.0,38.0,50.0,48.0,51.0,53.0,52.0,62.0,67.0,69.0,73.0,54.0,69.0,59.0,71.0,78.0,65.0,75.0,61.0,48.0,55.0,66.0,46.0,64.0,66.0,76.0,62.0,50.0,80.0,56.0,67.0,51.0,64.0,53.0,55.0,70.0,71.0,62.0,82.0,60.0,59.0,65.0,73.0,73.0,73.0,62.0,78.0,81.0,82.0,70.0,78.0,80.0,89.0,98.0,82.0,102.0,106.0,104.0,102.0,101.0,106.0,100.0,94.0,98.0,67.0,102.0,74.0,60.0,65.0,71.0,63.0,58.0,64.0,75.0,69.0,73.0,59.0,69.0,56.0,60.0,55.0,51.0,40.0,29.0,40.0,21.0,23.0,27.0,25.0,21.0,18.0,24.0,13.0,4.0,30.0 H81071,37.0,53.0,51.0,42.0,46.0,53.0,55.0,64.0,57.0,69.0,80.0,77.0,64.0,84.0,67.0,58.0,75.0,75.0,77.0,82.0,76.0,72.0,77.0,64.0,65.0,89.0,71.0,80.0,75.0,75.0,77.0,76.0,63.0,71.0,77.0,82.0,88.0,99.0,84.0,88.0,78.0,84.0,77.0,80.0,85.0,90.0,76.0,62.0,71.0,74.0,60.0,70.0,102.0,81.0,63.0,69.0,67.0,70.0,65.0,69.0,53.0,64.0,54.0,48.0,43.0,49.0,61.0,46.0,45.0,42.0,50.0,47.0,50.0,44.0,39.0,53.0,39.0,38.0,39.0,39.0,30.0,29.0,24.0,14.0,21.0,22.0,15.0,11.0,12.0,15.0,9.0,9.0,6.0,4.0,7.0,15.0 H81072,61.0,66.0,72.0,74.0,78.0,73.0,70.0,81.0,87.0,87.0,83.0,90.0,78.0,88.0,93.0,75.0,126.0,92.0,74.0,61.0,43.0,58.0,62.0,74.0,82.0,67.0,84.0,79.0,64.0,70.0,82.0,98.0,79.0,86.0,106.0,92.0,92.0,99.0,87.0,106.0,92.0,100.0,106.0,105.0,100.0,108.0,113.0,108.0,106.0,118.0,100.0,115.0,80.0,109.0,102.0,95.0,94.0,77.0,100.0,104.0,101.0,99.0,85.0,77.0,87.0,76.0,69.0,78.0,64.0,68.0,57.0,78.0,67.0,61.0,54.0,47.0,49.0,51.0,71.0,51.0,55.0,35.0,51.0,32.0,27.0,29.0,34.0,31.0,20.0,17.0,14.0,19.0,12.0,12.0,6.0,20.0 H81073,82.0,87.0,108.0,97.0,97.0,124.0,144.0,136.0,137.0,153.0,150.0,150.0,187.0,195.0,183.0,160.0,175.0,183.0,148.0,100.0,122.0,116.0,115.0,112.0,103.0,128.0,107.0,92.0,112.0,92.0,134.0,140.0,123.0,141.0,126.0,145.0,147.0,170.0,152.0,190.0,171.0,188.0,191.0,199.0,213.0,201.0,222.0,200.0,206.0,210.0,203.0,207.0,224.0,183.0,223.0,181.0,175.0,166.0,166.0,156.0,167.0,174.0,171.0,132.0,127.0,145.0,126.0,141.0,105.0,111.0,101.0,95.0,107.0,101.0,102.0,104.0,94.0,119.0,112.0,82.0,80.0,74.0,95.0,81.0,64.0,47.0,59.0,65.0,42.0,47.0,24.0,32.0,18.0,26.0,19.0,46.0 H81074,29.0,30.0,30.0,33.0,53.0,35.0,47.0,39.0,43.0,36.0,42.0,49.0,40.0,59.0,45.0,44.0,39.0,46.0,36.0,29.0,28.0,25.0,31.0,16.0,30.0,33.0,22.0,18.0,26.0,26.0,25.0,28.0,32.0,31.0,44.0,41.0,45.0,43.0,54.0,54.0,53.0,46.0,62.0,52.0,49.0,37.0,59.0,59.0,57.0,46.0,61.0,42.0,41.0,45.0,39.0,41.0,49.0,37.0,51.0,43.0,38.0,37.0,33.0,37.0,27.0,34.0,44.0,35.0,31.0,41.0,29.0,50.0,42.0,28.0,29.0,28.0,38.0,30.0,41.0,33.0,30.0,31.0,19.0,26.0,20.0,21.0,21.0,26.0,18.0,9.0,9.0,11.0,10.0,6.0,3.0,17.0 H81076,29.0,29.0,37.0,32.0,41.0,45.0,58.0,55.0,43.0,72.0,51.0,54.0,65.0,65.0,87.0,64.0,77.0,52.0,74.0,59.0,51.0,46.0,49.0,48.0,49.0,43.0,49.0,52.0,58.0,42.0,52.0,46.0,46.0,47.0,48.0,49.0,59.0,52.0,60.0,76.0,53.0,82.0,80.0,74.0,77.0,87.0,79.0,78.0,70.0,68.0,101.0,85.0,107.0,90.0,99.0,104.0,96.0,109.0,112.0,108.0,99.0,111.0,115.0,90.0,87.0,86.0,98.0,91.0,83.0,79.0,66.0,74.0,66.0,81.0,72.0,72.0,84.0,92.0,94.0,89.0,58.0,67.0,73.0,64.0,47.0,48.0,60.0,49.0,39.0,33.0,38.0,27.0,29.0,29.0,18.0,63.0 H81077,22.0,27.0,24.0,16.0,24.0,21.0,21.0,28.0,29.0,34.0,34.0,37.0,44.0,55.0,75.0,116.0,103.0,100.0,87.0,52.0,37.0,43.0,34.0,37.0,56.0,43.0,41.0,30.0,30.0,39.0,24.0,35.0,39.0,28.0,36.0,35.0,32.0,25.0,32.0,33.0,32.0,34.0,44.0,48.0,42.0,49.0,44.0,56.0,67.0,42.0,65.0,49.0,77.0,59.0,58.0,60.0,81.0,69.0,68.0,83.0,77.0,74.0,91.0,67.0,60.0,52.0,72.0,51.0,55.0,40.0,51.0,57.0,45.0,38.0,46.0,33.0,56.0,56.0,50.0,31.0,46.0,31.0,31.0,30.0,22.0,22.0,17.0,22.0,19.0,9.0,11.0,11.0,10.0,10.0,5.0,14.0 H81078,49.0,71.0,72.0,71.0,68.0,72.0,83.0,87.0,87.0,85.0,109.0,138.0,120.0,116.0,129.0,114.0,115.0,114.0,109.0,82.0,73.0,62.0,72.0,81.0,102.0,101.0,77.0,86.0,73.0,69.0,90.0,83.0,69.0,87.0,116.0,87.0,91.0,110.0,104.0,104.0,105.0,105.0,127.0,122.0,140.0,148.0,129.0,124.0,113.0,142.0,132.0,132.0,130.0,138.0,116.0,124.0,135.0,144.0,102.0,107.0,106.0,110.0,96.0,90.0,100.0,73.0,82.0,59.0,95.0,64.0,77.0,64.0,70.0,74.0,62.0,57.0,67.0,73.0,70.0,55.0,55.0,54.0,56.0,41.0,39.0,43.0,44.0,35.0,27.0,28.0,22.0,18.0,18.0,15.0,10.0,49.0 H81080,33.0,37.0,31.0,38.0,40.0,47.0,49.0,42.0,52.0,52.0,52.0,52.0,50.0,63.0,52.0,55.0,71.0,67.0,57.0,40.0,33.0,53.0,50.0,58.0,61.0,47.0,59.0,42.0,36.0,45.0,40.0,35.0,39.0,42.0,55.0,46.0,45.0,56.0,39.0,57.0,59.0,52.0,69.0,60.0,64.0,66.0,61.0,70.0,59.0,64.0,63.0,70.0,71.0,70.0,82.0,70.0,90.0,74.0,97.0,102.0,90.0,94.0,77.0,80.0,77.0,82.0,62.0,86.0,60.0,70.0,57.0,59.0,60.0,75.0,67.0,66.0,75.0,99.0,86.0,68.0,43.0,68.0,50.0,40.0,43.0,36.0,34.0,41.0,39.0,28.0,30.0,31.0,27.0,14.0,12.0,30.0 H81081,48.0,48.0,47.0,45.0,53.0,53.0,62.0,58.0,47.0,58.0,69.0,45.0,66.0,53.0,53.0,58.0,55.0,62.0,52.0,47.0,54.0,51.0,49.0,47.0,47.0,47.0,37.0,51.0,48.0,51.0,61.0,66.0,52.0,82.0,64.0,61.0,73.0,87.0,76.0,76.0,66.0,64.0,70.0,76.0,69.0,74.0,65.0,45.0,58.0,54.0,60.0,62.0,54.0,81.0,54.0,63.0,50.0,68.0,65.0,78.0,66.0,51.0,61.0,60.0,65.0,55.0,55.0,51.0,56.0,53.0,51.0,63.0,36.0,59.0,36.0,51.0,56.0,70.0,61.0,41.0,44.0,35.0,48.0,37.0,29.0,33.0,31.0,24.0,20.0,18.0,23.0,17.0,15.0,7.0,8.0,20.0 H81084,22.0,33.0,32.0,47.0,39.0,44.0,50.0,50.0,53.0,41.0,45.0,69.0,79.0,71.0,78.0,85.0,83.0,81.0,85.0,58.0,52.0,51.0,43.0,50.0,62.0,56.0,34.0,47.0,35.0,46.0,26.0,26.0,45.0,31.0,32.0,49.0,48.0,46.0,34.0,54.0,60.0,51.0,67.0,62.0,68.0,78.0,67.0,81.0,71.0,75.0,64.0,77.0,86.0,76.0,89.0,86.0,76.0,75.0,83.0,90.0,108.0,95.0,77.0,88.0,75.0,74.0,77.0,66.0,62.0,57.0,60.0,55.0,50.0,53.0,71.0,67.0,54.0,55.0,84.0,45.0,49.0,56.0,45.0,31.0,36.0,31.0,48.0,46.0,32.0,26.0,19.0,18.0,16.0,16.0,12.0,27.0 H81085,31.0,46.0,36.0,41.0,59.0,55.0,57.0,51.0,69.0,70.0,57.0,71.0,94.0,74.0,75.0,74.0,72.0,70.0,58.0,50.0,44.0,50.0,61.0,85.0,66.0,69.0,57.0,69.0,64.0,58.0,68.0,71.0,57.0,71.0,77.0,77.0,72.0,72.0,80.0,77.0,73.0,83.0,73.0,88.0,99.0,97.0,93.0,90.0,99.0,101.0,97.0,85.0,104.0,89.0,84.0,98.0,84.0,86.0,87.0,77.0,75.0,79.0,65.0,65.0,56.0,58.0,54.0,43.0,52.0,52.0,44.0,48.0,37.0,46.0,48.0,49.0,43.0,41.0,53.0,37.0,39.0,45.0,41.0,32.0,32.0,27.0,25.0,23.0,20.0,23.0,12.0,13.0,10.0,15.0,10.0,18.0 H81086,12.0,20.0,20.0,21.0,20.0,23.0,26.0,23.0,25.0,32.0,32.0,30.0,42.0,31.0,33.0,52.0,27.0,30.0,22.0,21.0,17.0,17.0,20.0,23.0,29.0,18.0,18.0,21.0,12.0,19.0,23.0,34.0,32.0,27.0,28.0,35.0,27.0,27.0,33.0,31.0,30.0,41.0,35.0,40.0,57.0,38.0,34.0,40.0,49.0,39.0,44.0,41.0,48.0,49.0,36.0,25.0,34.0,32.0,32.0,35.0,29.0,38.0,34.0,20.0,38.0,34.0,21.0,26.0,19.0,24.0,16.0,24.0,25.0,30.0,19.0,30.0,27.0,21.0,26.0,16.0,18.0,11.0,12.0,12.0,5.0,12.0,8.0,6.0,8.0,8.0,8.0,7.0,7.0,2.0,3.0,11.0 H81087,80.0,88.0,90.0,98.0,97.0,91.0,84.0,103.0,110.0,98.0,123.0,93.0,106.0,103.0,110.0,104.0,90.0,95.0,98.0,100.0,69.0,73.0,75.0,66.0,93.0,85.0,118.0,109.0,128.0,97.0,125.0,114.0,127.0,143.0,109.0,135.0,157.0,161.0,136.0,143.0,131.0,126.0,116.0,122.0,136.0,126.0,115.0,111.0,115.0,83.0,78.0,99.0,102.0,79.0,88.0,83.0,85.0,66.0,76.0,83.0,77.0,53.0,69.0,56.0,67.0,75.0,51.0,55.0,58.0,38.0,35.0,36.0,51.0,32.0,37.0,39.0,43.0,34.0,30.0,29.0,25.0,28.0,36.0,21.0,29.0,23.0,19.0,7.0,13.0,14.0,7.0,13.0,12.0,6.0,3.0,28.0 H81089,100.0,101.0,102.0,131.0,121.0,126.0,149.0,154.0,171.0,158.0,173.0,188.0,161.0,170.0,194.0,169.0,168.0,118.0,146.0,105.0,93.0,83.0,99.0,117.0,98.0,112.0,113.0,131.0,112.0,131.0,131.0,132.0,149.0,174.0,163.0,182.0,151.0,177.0,159.0,192.0,166.0,167.0,195.0,210.0,203.0,188.0,193.0,194.0,187.0,177.0,170.0,147.0,140.0,162.0,168.0,167.0,155.0,150.0,136.0,120.0,161.0,133.0,112.0,84.0,90.0,109.0,94.0,88.0,70.0,76.0,87.0,77.0,80.0,80.0,61.0,90.0,80.0,102.0,79.0,77.0,57.0,67.0,65.0,47.0,53.0,45.0,56.0,37.0,41.0,17.0,22.0,27.0,26.0,25.0,14.0,34.0 H81090,65.0,56.0,69.0,63.0,62.0,59.0,58.0,68.0,66.0,75.0,75.0,79.0,73.0,88.0,81.0,88.0,61.0,80.0,133.0,218.0,236.0,189.0,184.0,281.0,275.0,191.0,171.0,166.0,174.0,181.0,134.0,139.0,145.0,141.0,135.0,111.0,137.0,103.0,116.0,127.0,111.0,87.0,102.0,102.0,101.0,92.0,83.0,84.0,86.0,73.0,69.0,81.0,78.0,76.0,83.0,75.0,75.0,72.0,65.0,66.0,83.0,66.0,51.0,62.0,69.0,43.0,49.0,56.0,45.0,39.0,37.0,30.0,39.0,35.0,34.0,46.0,43.0,44.0,37.0,36.0,32.0,17.0,23.0,17.0,19.0,21.0,26.0,15.0,12.0,10.0,12.0,9.0,10.0,9.0,7.0,6.0 H81091,77.0,103.0,97.0,98.0,100.0,90.0,86.0,122.0,107.0,105.0,117.0,94.0,100.0,109.0,98.0,72.0,83.0,73.0,61.0,55.0,40.0,55.0,61.0,68.0,83.0,76.0,74.0,73.0,87.0,71.0,77.0,97.0,99.0,97.0,114.0,129.0,127.0,138.0,141.0,123.0,154.0,136.0,136.0,122.0,138.0,130.0,135.0,110.0,94.0,112.0,100.0,78.0,91.0,76.0,103.0,74.0,70.0,83.0,104.0,80.0,86.0,81.0,82.0,87.0,73.0,58.0,54.0,57.0,63.0,61.0,67.0,46.0,49.0,58.0,55.0,68.0,55.0,57.0,74.0,47.0,64.0,39.0,45.0,36.0,40.0,31.0,31.0,34.0,21.0,22.0,19.0,14.0,8.0,11.0,8.0,15.0 H81094,53.0,54.0,58.0,51.0,71.0,53.0,58.0,63.0,66.0,73.0,66.0,61.0,57.0,70.0,71.0,57.0,61.0,59.0,52.0,45.0,46.0,47.0,59.0,55.0,50.0,45.0,55.0,62.0,69.0,69.0,68.0,66.0,73.0,79.0,81.0,85.0,85.0,79.0,94.0,81.0,98.0,72.0,109.0,82.0,77.0,73.0,66.0,75.0,94.0,62.0,71.0,72.0,82.0,70.0,78.0,72.0,67.0,80.0,74.0,71.0,53.0,71.0,75.0,61.0,63.0,46.0,55.0,46.0,44.0,48.0,42.0,42.0,45.0,37.0,37.0,53.0,37.0,45.0,44.0,38.0,30.0,29.0,28.0,22.0,26.0,26.0,33.0,20.0,18.0,14.0,21.0,12.0,3.0,13.0,7.0,24.0 H81095,9.0,10.0,23.0,15.0,21.0,16.0,21.0,16.0,23.0,26.0,17.0,15.0,21.0,36.0,24.0,23.0,15.0,12.0,9.0,19.0,14.0,18.0,9.0,25.0,16.0,18.0,13.0,20.0,28.0,14.0,17.0,15.0,22.0,22.0,23.0,20.0,21.0,23.0,17.0,26.0,20.0,33.0,21.0,35.0,24.0,25.0,21.0,22.0,37.0,21.0,25.0,28.0,27.0,24.0,36.0,16.0,12.0,25.0,21.0,28.0,15.0,19.0,25.0,19.0,27.0,21.0,18.0,16.0,13.0,11.0,11.0,21.0,17.0,12.0,18.0,16.0,19.0,11.0,16.0,11.0,11.0,17.0,9.0,9.0,11.0,11.0,14.0,12.0,10.0,4.0,7.0,3.0,1.0,3.0,1.0,3.0 H81099,66.0,64.0,74.0,93.0,88.0,77.0,84.0,87.0,81.0,88.0,76.0,88.0,96.0,107.0,86.0,100.0,86.0,95.0,71.0,58.0,64.0,66.0,82.0,65.0,64.0,70.0,73.0,74.0,59.0,66.0,73.0,74.0,67.0,87.0,91.0,86.0,93.0,86.0,108.0,92.0,105.0,102.0,129.0,117.0,127.0,125.0,128.0,101.0,106.0,115.0,111.0,80.0,117.0,116.0,109.0,87.0,105.0,112.0,87.0,98.0,110.0,96.0,94.0,111.0,67.0,71.0,94.0,54.0,65.0,54.0,56.0,59.0,59.0,42.0,45.0,50.0,43.0,56.0,55.0,47.0,48.0,32.0,33.0,27.0,20.0,25.0,24.0,15.0,27.0,10.0,12.0,13.0,8.0,10.0,3.0,19.0 H81103,21.0,25.0,35.0,25.0,38.0,35.0,43.0,44.0,52.0,42.0,53.0,56.0,53.0,53.0,60.0,48.0,51.0,51.0,48.0,34.0,25.0,45.0,34.0,44.0,32.0,24.0,32.0,42.0,31.0,35.0,35.0,36.0,30.0,39.0,34.0,27.0,38.0,39.0,51.0,42.0,45.0,51.0,46.0,56.0,71.0,71.0,49.0,68.0,67.0,60.0,55.0,50.0,48.0,66.0,54.0,54.0,74.0,63.0,76.0,48.0,65.0,65.0,63.0,53.0,56.0,47.0,56.0,42.0,36.0,58.0,54.0,49.0,48.0,51.0,41.0,52.0,41.0,59.0,53.0,40.0,43.0,45.0,29.0,32.0,29.0,29.0,26.0,21.0,14.0,15.0,13.0,11.0,6.0,5.0,6.0,18.0 H81104,51.0,47.0,47.0,54.0,48.0,53.0,49.0,57.0,56.0,58.0,53.0,47.0,47.0,47.0,54.0,50.0,34.0,51.0,44.0,40.0,48.0,35.0,61.0,66.0,60.0,60.0,69.0,62.0,41.0,64.0,60.0,76.0,66.0,73.0,76.0,74.0,78.0,69.0,83.0,59.0,69.0,56.0,84.0,63.0,57.0,51.0,65.0,62.0,53.0,52.0,45.0,50.0,51.0,60.0,58.0,59.0,59.0,60.0,58.0,62.0,55.0,61.0,51.0,55.0,47.0,45.0,51.0,35.0,31.0,37.0,25.0,37.0,26.0,33.0,25.0,35.0,29.0,36.0,31.0,28.0,27.0,28.0,18.0,16.0,16.0,18.0,6.0,14.0,9.0,8.0,9.0,1.0,7.0,2.0,5.0,8.0 H81107,20.0,37.0,27.0,48.0,49.0,44.0,44.0,51.0,46.0,52.0,53.0,55.0,59.0,75.0,79.0,69.0,55.0,62.0,45.0,49.0,28.0,30.0,43.0,35.0,33.0,51.0,30.0,25.0,35.0,43.0,24.0,34.0,40.0,41.0,33.0,35.0,38.0,41.0,42.0,52.0,53.0,55.0,73.0,61.0,59.0,62.0,71.0,76.0,66.0,72.0,64.0,68.0,69.0,73.0,65.0,66.0,69.0,49.0,46.0,62.0,56.0,49.0,57.0,41.0,55.0,44.0,41.0,45.0,32.0,41.0,33.0,33.0,40.0,35.0,33.0,27.0,31.0,22.0,32.0,27.0,25.0,31.0,23.0,15.0,15.0,22.0,19.0,14.0,13.0,5.0,9.0,7.0,4.0,11.0,6.0,19.0 H81109,21.0,32.0,38.0,36.0,30.0,26.0,43.0,35.0,53.0,54.0,42.0,49.0,54.0,51.0,59.0,58.0,71.0,55.0,42.0,39.0,35.0,41.0,44.0,37.0,36.0,35.0,52.0,37.0,32.0,37.0,35.0,18.0,32.0,24.0,34.0,35.0,51.0,32.0,48.0,33.0,52.0,54.0,49.0,57.0,44.0,56.0,58.0,64.0,71.0,56.0,81.0,62.0,57.0,45.0,73.0,50.0,63.0,72.0,60.0,58.0,58.0,52.0,56.0,64.0,57.0,49.0,66.0,43.0,26.0,36.0,46.0,36.0,37.0,42.0,42.0,36.0,38.0,32.0,37.0,33.0,30.0,27.0,26.0,27.0,26.0,28.0,15.0,14.0,17.0,20.0,21.0,4.0,10.0,7.0,4.0,15.0 H81111,18.0,21.0,18.0,30.0,24.0,28.0,24.0,35.0,28.0,31.0,40.0,40.0,46.0,36.0,36.0,30.0,48.0,30.0,30.0,37.0,28.0,21.0,23.0,29.0,35.0,33.0,21.0,30.0,22.0,32.0,28.0,24.0,33.0,47.0,30.0,44.0,33.0,37.0,41.0,35.0,53.0,40.0,39.0,36.0,49.0,49.0,46.0,35.0,32.0,54.0,42.0,44.0,49.0,46.0,48.0,46.0,34.0,41.0,40.0,54.0,49.0,37.0,42.0,40.0,37.0,44.0,41.0,29.0,37.0,28.0,35.0,29.0,27.0,23.0,25.0,25.0,22.0,34.0,40.0,26.0,29.0,25.0,28.0,16.0,23.0,16.0,20.0,13.0,14.0,20.0,14.0,5.0,7.0,4.0,8.0,15.0 H81113,27.0,28.0,33.0,34.0,35.0,38.0,27.0,33.0,35.0,22.0,37.0,32.0,28.0,38.0,35.0,40.0,32.0,41.0,46.0,34.0,38.0,51.0,35.0,42.0,31.0,38.0,36.0,26.0,36.0,40.0,37.0,51.0,42.0,40.0,54.0,47.0,40.0,54.0,39.0,49.0,43.0,39.0,42.0,43.0,38.0,48.0,40.0,52.0,48.0,60.0,57.0,57.0,63.0,53.0,64.0,62.0,66.0,71.0,80.0,66.0,72.0,74.0,76.0,69.0,46.0,56.0,47.0,72.0,61.0,57.0,43.0,43.0,49.0,45.0,44.0,56.0,46.0,66.0,55.0,43.0,49.0,30.0,33.0,29.0,26.0,21.0,17.0,14.0,21.0,16.0,15.0,3.0,10.0,9.0,6.0,6.0 H81116,21.0,30.0,25.0,27.0,39.0,35.0,40.0,36.0,41.0,37.0,41.0,38.0,40.0,24.0,44.0,40.0,37.0,26.0,25.0,25.0,18.0,26.0,25.0,17.0,27.0,34.0,17.0,24.0,33.0,22.0,26.0,30.0,26.0,35.0,35.0,41.0,29.0,38.0,48.0,44.0,40.0,36.0,32.0,44.0,47.0,39.0,46.0,45.0,30.0,25.0,32.0,53.0,45.0,32.0,48.0,36.0,35.0,39.0,53.0,44.0,32.0,52.0,41.0,44.0,40.0,40.0,30.0,46.0,42.0,42.0,29.0,32.0,41.0,40.0,33.0,36.0,40.0,48.0,41.0,30.0,35.0,38.0,31.0,19.0,28.0,19.0,19.0,19.0,20.0,14.0,5.0,11.0,5.0,4.0,3.0,15.0 H81119,110.0,99.0,114.0,144.0,145.0,124.0,144.0,139.0,130.0,121.0,108.0,123.0,132.0,123.0,116.0,136.0,124.0,138.0,121.0,100.0,96.0,83.0,121.0,119.0,121.0,112.0,140.0,119.0,152.0,134.0,133.0,130.0,143.0,183.0,189.0,154.0,171.0,171.0,186.0,186.0,185.0,158.0,150.0,167.0,159.0,152.0,142.0,133.0,137.0,145.0,140.0,152.0,129.0,178.0,147.0,142.0,152.0,144.0,145.0,152.0,135.0,144.0,125.0,134.0,142.0,116.0,110.0,90.0,103.0,79.0,93.0,87.0,85.0,73.0,92.0,88.0,85.0,78.0,75.0,64.0,56.0,62.0,66.0,52.0,40.0,42.0,40.0,38.0,29.0,34.0,26.0,29.0,17.0,10.0,8.0,35.0 H81122,43.0,50.0,34.0,40.0,40.0,42.0,56.0,42.0,55.0,62.0,59.0,52.0,38.0,36.0,45.0,53.0,56.0,44.0,52.0,41.0,35.0,42.0,44.0,42.0,44.0,51.0,55.0,57.0,43.0,69.0,72.0,68.0,68.0,74.0,87.0,71.0,86.0,88.0,78.0,77.0,71.0,70.0,55.0,59.0,63.0,68.0,49.0,43.0,52.0,51.0,52.0,58.0,63.0,45.0,55.0,53.0,47.0,48.0,50.0,39.0,41.0,58.0,46.0,55.0,50.0,46.0,47.0,47.0,34.0,50.0,40.0,22.0,42.0,29.0,40.0,32.0,33.0,32.0,31.0,24.0,36.0,11.0,19.0,11.0,15.0,22.0,18.0,20.0,9.0,10.0,7.0,5.0,8.0,3.0,7.0,12.0 H81123,17.0,24.0,22.0,26.0,28.0,24.0,16.0,22.0,29.0,24.0,29.0,33.0,29.0,19.0,19.0,32.0,24.0,28.0,29.0,18.0,16.0,26.0,29.0,26.0,25.0,29.0,33.0,26.0,37.0,17.0,35.0,33.0,39.0,27.0,32.0,32.0,28.0,34.0,25.0,28.0,23.0,25.0,23.0,24.0,20.0,33.0,32.0,20.0,18.0,28.0,14.0,14.0,13.0,17.0,20.0,17.0,20.0,18.0,12.0,17.0,17.0,14.0,20.0,14.0,15.0,6.0,9.0,10.0,8.0,9.0,7.0,9.0,10.0,6.0,11.0,6.0,7.0,6.0,2.0,4.0,11.0,2.0,4.0,7.0,5.0,3.0,1.0,2.0,3.0,,,,2.0,1.0,1.0,6.0 H81126,36.0,36.0,28.0,43.0,31.0,32.0,36.0,49.0,44.0,41.0,47.0,53.0,60.0,54.0,48.0,47.0,46.0,41.0,49.0,34.0,32.0,39.0,41.0,39.0,48.0,37.0,46.0,49.0,43.0,42.0,35.0,32.0,53.0,43.0,55.0,40.0,51.0,55.0,39.0,43.0,57.0,52.0,45.0,56.0,54.0,51.0,69.0,53.0,53.0,54.0,65.0,58.0,68.0,58.0,60.0,43.0,43.0,39.0,58.0,58.0,68.0,53.0,71.0,55.0,54.0,52.0,61.0,50.0,47.0,28.0,43.0,49.0,38.0,45.0,43.0,39.0,46.0,33.0,49.0,30.0,33.0,29.0,28.0,22.0,27.0,23.0,28.0,16.0,21.0,27.0,14.0,9.0,16.0,16.0,12.0,35.0 H81128,44.0,31.0,28.0,40.0,53.0,44.0,51.0,48.0,54.0,46.0,50.0,48.0,56.0,55.0,47.0,53.0,40.0,46.0,36.0,32.0,35.0,37.0,33.0,52.0,30.0,40.0,42.0,47.0,44.0,55.0,48.0,43.0,42.0,53.0,73.0,61.0,65.0,63.0,63.0,53.0,68.0,69.0,84.0,61.0,59.0,70.0,80.0,56.0,55.0,61.0,59.0,72.0,62.0,47.0,51.0,75.0,61.0,50.0,60.0,58.0,69.0,49.0,54.0,58.0,55.0,65.0,41.0,45.0,46.0,45.0,37.0,54.0,45.0,41.0,34.0,41.0,52.0,49.0,37.0,36.0,33.0,40.0,29.0,20.0,23.0,22.0,22.0,26.0,9.0,10.0,10.0,14.0,12.0,10.0,8.0,15.0 H81129,29.0,38.0,29.0,40.0,31.0,34.0,28.0,32.0,37.0,34.0,32.0,22.0,24.0,29.0,29.0,35.0,29.0,21.0,27.0,26.0,19.0,24.0,27.0,28.0,25.0,34.0,24.0,35.0,32.0,33.0,35.0,33.0,30.0,38.0,33.0,59.0,41.0,35.0,49.0,39.0,35.0,36.0,31.0,37.0,40.0,33.0,43.0,24.0,29.0,40.0,38.0,23.0,29.0,33.0,33.0,38.0,27.0,38.0,32.0,21.0,35.0,26.0,21.0,19.0,16.0,23.0,18.0,33.0,18.0,25.0,13.0,16.0,19.0,12.0,15.0,14.0,14.0,26.0,22.0,17.0,8.0,18.0,11.0,6.0,7.0,6.0,12.0,9.0,6.0,8.0,3.0,5.0,2.0,2.0,2.0,7.0 H81131,25.0,29.0,19.0,26.0,23.0,20.0,21.0,24.0,27.0,19.0,30.0,22.0,20.0,24.0,23.0,25.0,24.0,21.0,25.0,21.0,13.0,24.0,19.0,23.0,25.0,29.0,20.0,35.0,30.0,30.0,34.0,24.0,43.0,38.0,30.0,44.0,43.0,40.0,35.0,40.0,34.0,34.0,33.0,32.0,27.0,32.0,36.0,34.0,32.0,31.0,22.0,24.0,15.0,23.0,25.0,22.0,29.0,30.0,19.0,19.0,31.0,25.0,19.0,21.0,15.0,26.0,21.0,23.0,13.0,12.0,13.0,9.0,22.0,16.0,16.0,19.0,18.0,14.0,12.0,12.0,13.0,9.0,3.0,7.0,6.0,11.0,7.0,5.0,6.0,8.0,7.0,2.0,3.0,5.0,7.0,4.0 H81132,,1.0,1.0,,,2.0,1.0,1.0,2.0,,4.0,5.0,3.0,2.0,1.0,4.0,1.0,2.0,,1.0,,,,2.0,1.0,1.0,1.0,1.0,1.0,2.0,2.0,3.0,1.0,3.0,,2.0,2.0,2.0,1.0,4.0,6.0,1.0,2.0,3.0,1.0,2.0,1.0,1.0,,1.0,1.0,1.0,3.0,,1.0,1.0,,,1.0,,1.0,1.0,2.0,1.0,,,1.0,,1.0,,,,1.0,,,,,,,,,1.0,,,,1.0,,,,,,,,,,1.0 H81133,77.0,125.0,120.0,125.0,144.0,143.0,175.0,174.0,191.0,180.0,190.0,208.0,246.0,206.0,238.0,227.0,235.0,239.0,189.0,159.0,143.0,138.0,171.0,150.0,142.0,154.0,157.0,151.0,147.0,149.0,155.0,149.0,142.0,149.0,182.0,185.0,207.0,195.0,200.0,199.0,219.0,221.0,251.0,264.0,250.0,264.0,211.0,241.0,238.0,208.0,221.0,241.0,242.0,219.0,225.0,219.0,200.0,213.0,230.0,230.0,198.0,216.0,213.0,195.0,182.0,213.0,182.0,169.0,169.0,144.0,168.0,154.0,161.0,144.0,149.0,150.0,160.0,174.0,150.0,116.0,134.0,110.0,100.0,101.0,74.0,88.0,79.0,54.0,57.0,47.0,34.0,31.0,29.0,25.0,16.0,47.0 H81134,38.0,52.0,59.0,50.0,64.0,59.0,58.0,53.0,64.0,68.0,78.0,63.0,74.0,68.0,68.0,63.0,69.0,57.0,58.0,67.0,45.0,71.0,68.0,70.0,82.0,69.0,102.0,85.0,78.0,97.0,102.0,105.0,89.0,74.0,90.0,82.0,107.0,113.0,90.0,111.0,100.0,75.0,103.0,94.0,91.0,86.0,101.0,86.0,101.0,82.0,96.0,77.0,78.0,93.0,95.0,84.0,89.0,72.0,103.0,84.0,96.0,98.0,91.0,75.0,53.0,75.0,68.0,70.0,66.0,55.0,59.0,58.0,41.0,52.0,56.0,61.0,53.0,53.0,81.0,51.0,54.0,43.0,50.0,40.0,40.0,33.0,32.0,34.0,31.0,25.0,18.0,17.0,10.0,12.0,4.0,29.0 H81618,29.0,28.0,36.0,30.0,25.0,33.0,33.0,25.0,29.0,29.0,30.0,41.0,23.0,37.0,30.0,28.0,30.0,40.0,31.0,18.0,23.0,36.0,21.0,38.0,34.0,38.0,55.0,45.0,38.0,44.0,42.0,45.0,42.0,38.0,36.0,50.0,44.0,45.0,45.0,36.0,40.0,44.0,35.0,40.0,27.0,32.0,46.0,42.0,26.0,31.0,39.0,36.0,53.0,35.0,46.0,42.0,29.0,45.0,40.0,31.0,25.0,46.0,36.0,32.0,29.0,38.0,18.0,31.0,22.0,26.0,22.0,32.0,19.0,31.0,20.0,23.0,26.0,30.0,30.0,25.0,33.0,25.0,17.0,16.0,23.0,11.0,11.0,13.0,14.0,11.0,22.0,15.0,11.0,7.0,3.0,13.0 H81632,12.0,24.0,21.0,19.0,15.0,26.0,16.0,24.0,24.0,15.0,26.0,23.0,17.0,19.0,20.0,13.0,12.0,17.0,16.0,6.0,6.0,9.0,17.0,17.0,21.0,15.0,13.0,22.0,16.0,23.0,23.0,26.0,22.0,22.0,24.0,24.0,30.0,29.0,26.0,30.0,25.0,18.0,24.0,21.0,24.0,12.0,18.0,13.0,20.0,22.0,19.0,13.0,15.0,15.0,25.0,19.0,23.0,24.0,14.0,19.0,19.0,14.0,15.0,17.0,8.0,14.0,20.0,15.0,19.0,12.0,13.0,11.0,14.0,18.0,11.0,12.0,19.0,10.0,17.0,8.0,12.0,10.0,13.0,8.0,12.0,7.0,7.0,3.0,6.0,5.0,4.0,3.0,2.0,5.0,1.0,3.0 H81638,154.0,190.0,184.0,181.0,185.0,209.0,235.0,247.0,235.0,251.0,218.0,235.0,253.0,243.0,262.0,248.0,207.0,265.0,213.0,180.0,165.0,155.0,185.0,155.0,181.0,167.0,170.0,191.0,211.0,220.0,217.0,235.0,223.0,276.0,270.0,285.0,304.0,294.0,278.0,273.0,325.0,297.0,309.0,294.0,307.0,292.0,255.0,255.0,203.0,227.0,239.0,240.0,237.0,244.0,241.0,242.0,251.0,245.0,269.0,243.0,234.0,273.0,255.0,225.0,207.0,183.0,224.0,188.0,202.0,194.0,184.0,189.0,163.0,180.0,169.0,180.0,159.0,184.0,182.0,126.0,163.0,119.0,143.0,98.0,79.0,87.0,85.0,78.0,74.0,60.0,55.0,45.0,38.0,19.0,22.0,60.0 H81641,24.0,17.0,24.0,17.0,25.0,25.0,26.0,21.0,31.0,27.0,33.0,31.0,21.0,32.0,20.0,18.0,31.0,30.0,20.0,25.0,22.0,22.0,28.0,36.0,32.0,38.0,26.0,29.0,30.0,41.0,23.0,30.0,35.0,40.0,26.0,23.0,32.0,39.0,37.0,29.0,35.0,23.0,27.0,35.0,39.0,33.0,28.0,27.0,22.0,26.0,18.0,15.0,22.0,23.0,21.0,21.0,16.0,11.0,15.0,13.0,8.0,6.0,15.0,8.0,10.0,12.0,12.0,10.0,12.0,15.0,5.0,10.0,6.0,7.0,11.0,10.0,6.0,5.0,4.0,7.0,3.0,4.0,3.0,4.0,2.0,4.0,4.0,1.0,2.0,2.0,,1.0,,1.0,,4.0 H81642,22.0,23.0,18.0,30.0,22.0,20.0,26.0,27.0,33.0,33.0,20.0,24.0,22.0,22.0,25.0,18.0,23.0,24.0,22.0,21.0,17.0,22.0,15.0,23.0,18.0,28.0,31.0,29.0,34.0,29.0,41.0,33.0,29.0,41.0,50.0,40.0,46.0,43.0,42.0,26.0,33.0,32.0,33.0,32.0,31.0,42.0,33.0,25.0,24.0,27.0,35.0,27.0,27.0,29.0,25.0,38.0,25.0,27.0,20.0,26.0,26.0,28.0,31.0,23.0,17.0,18.0,19.0,16.0,21.0,21.0,14.0,12.0,16.0,18.0,12.0,17.0,20.0,18.0,15.0,11.0,12.0,14.0,9.0,7.0,6.0,14.0,13.0,14.0,6.0,4.0,12.0,7.0,9.0,2.0,5.0,9.0 H81643,15.0,20.0,36.0,28.0,28.0,17.0,36.0,26.0,15.0,24.0,27.0,19.0,30.0,22.0,17.0,27.0,28.0,28.0,29.0,18.0,25.0,27.0,28.0,26.0,39.0,34.0,41.0,46.0,42.0,40.0,31.0,45.0,35.0,43.0,39.0,42.0,32.0,34.0,33.0,46.0,31.0,28.0,36.0,25.0,39.0,34.0,24.0,16.0,19.0,21.0,25.0,25.0,12.0,16.0,14.0,17.0,11.0,15.0,18.0,18.0,10.0,13.0,12.0,9.0,13.0,14.0,8.0,6.0,11.0,8.0,6.0,8.0,1.0,5.0,4.0,5.0,7.0,4.0,6.0,4.0,2.0,2.0,2.0,5.0,5.0,,6.0,3.0,1.0,1.0,,2.0,,,1.0,1.0 H81644,23.0,27.0,34.0,36.0,31.0,38.0,30.0,48.0,44.0,36.0,61.0,41.0,49.0,41.0,46.0,45.0,64.0,47.0,40.0,52.0,41.0,40.0,52.0,51.0,46.0,53.0,62.0,47.0,48.0,59.0,46.0,48.0,51.0,50.0,53.0,42.0,33.0,43.0,53.0,49.0,54.0,62.0,62.0,66.0,66.0,52.0,70.0,69.0,74.0,57.0,53.0,60.0,60.0,62.0,71.0,65.0,63.0,55.0,56.0,72.0,62.0,62.0,56.0,65.0,53.0,44.0,48.0,36.0,44.0,34.0,38.0,34.0,26.0,37.0,45.0,42.0,45.0,47.0,50.0,39.0,32.0,40.0,44.0,31.0,27.0,33.0,24.0,18.0,18.0,19.0,21.0,10.0,3.0,10.0,7.0,35.0 H81656,24.0,26.0,20.0,39.0,28.0,21.0,31.0,21.0,46.0,46.0,43.0,49.0,46.0,38.0,44.0,52.0,36.0,38.0,35.0,28.0,36.0,31.0,35.0,19.0,40.0,41.0,38.0,39.0,40.0,35.0,29.0,41.0,23.0,33.0,28.0,35.0,51.0,40.0,45.0,37.0,43.0,40.0,45.0,52.0,56.0,66.0,40.0,62.0,47.0,45.0,50.0,47.0,59.0,46.0,55.0,39.0,57.0,50.0,50.0,55.0,46.0,47.0,51.0,49.0,59.0,50.0,42.0,36.0,37.0,35.0,38.0,35.0,39.0,48.0,38.0,41.0,48.0,44.0,49.0,22.0,27.0,37.0,28.0,23.0,21.0,28.0,21.0,19.0,10.0,10.0,8.0,9.0,16.0,8.0,4.0,14.0 H81658,21.0,36.0,31.0,26.0,35.0,27.0,36.0,34.0,24.0,35.0,39.0,33.0,26.0,31.0,30.0,32.0,40.0,38.0,36.0,29.0,25.0,22.0,33.0,32.0,41.0,28.0,31.0,41.0,47.0,30.0,22.0,45.0,44.0,34.0,27.0,42.0,38.0,46.0,50.0,40.0,32.0,47.0,34.0,40.0,42.0,44.0,37.0,47.0,42.0,44.0,39.0,47.0,53.0,41.0,53.0,45.0,40.0,45.0,41.0,53.0,47.0,60.0,52.0,31.0,53.0,40.0,41.0,29.0,35.0,42.0,36.0,32.0,31.0,25.0,29.0,27.0,35.0,35.0,41.0,30.0,19.0,22.0,22.0,16.0,19.0,26.0,16.0,11.0,11.0,18.0,7.0,8.0,5.0,3.0,1.0,5.0 H81663,14.0,12.0,12.0,20.0,23.0,20.0,14.0,22.0,23.0,25.0,18.0,29.0,19.0,29.0,27.0,23.0,27.0,18.0,22.0,18.0,7.0,16.0,13.0,21.0,20.0,23.0,19.0,22.0,23.0,30.0,36.0,33.0,40.0,39.0,26.0,34.0,24.0,27.0,33.0,33.0,34.0,37.0,36.0,31.0,35.0,24.0,31.0,15.0,20.0,38.0,23.0,28.0,19.0,32.0,16.0,24.0,23.0,17.0,18.0,17.0,9.0,20.0,9.0,9.0,14.0,11.0,7.0,7.0,14.0,11.0,11.0,10.0,10.0,11.0,7.0,13.0,6.0,11.0,8.0,13.0,11.0,8.0,3.0,4.0,9.0,9.0,8.0,6.0,2.0,5.0,3.0,4.0,3.0,1.0,7.0,4.0 H81672,16.0,17.0,16.0,28.0,24.0,34.0,38.0,36.0,45.0,54.0,58.0,51.0,49.0,56.0,61.0,55.0,52.0,51.0,45.0,30.0,24.0,24.0,27.0,24.0,33.0,25.0,31.0,25.0,21.0,22.0,24.0,18.0,22.0,19.0,22.0,23.0,19.0,31.0,35.0,45.0,43.0,55.0,57.0,58.0,63.0,62.0,57.0,59.0,77.0,57.0,57.0,45.0,49.0,52.0,53.0,54.0,45.0,43.0,43.0,40.0,43.0,31.0,31.0,48.0,29.0,17.0,25.0,29.0,26.0,13.0,31.0,18.0,28.0,29.0,26.0,34.0,23.0,27.0,30.0,27.0,20.0,28.0,24.0,28.0,16.0,19.0,23.0,14.0,13.0,14.0,9.0,10.0,17.0,12.0,9.0,21.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 N81001,10.0,15.0,13.0,9.0,13.0,9.0,24.0,12.0,23.0,22.0,26.0,26.0,21.0,34.0,21.0,20.0,28.0,28.0,14.0,19.0,15.0,17.0,16.0,19.0,25.0,10.0,14.0,15.0,19.0,19.0,19.0,24.0,14.0,15.0,17.0,18.0,24.0,30.0,17.0,19.0,12.0,22.0,26.0,33.0,30.0,22.0,28.0,28.0,22.0,34.0,33.0,25.0,37.0,27.0,46.0,37.0,37.0,41.0,44.0,38.0,45.0,38.0,44.0,51.0,60.0,49.0,44.0,33.0,43.0,43.0,37.0,49.0,42.0,44.0,46.0,41.0,46.0,41.0,49.0,34.0,33.0,39.0,23.0,24.0,16.0,23.0,19.0,18.0,7.0,12.0,14.0,4.0,12.0,4.0,5.0,15.0 N81002,33.0,45.0,42.0,50.0,37.0,49.0,54.0,57.0,55.0,43.0,62.0,77.0,88.0,67.0,57.0,73.0,75.0,67.0,72.0,57.0,52.0,58.0,53.0,39.0,43.0,52.0,51.0,56.0,60.0,51.0,47.0,55.0,61.0,50.0,57.0,58.0,39.0,55.0,66.0,79.0,82.0,85.0,64.0,82.0,69.0,87.0,87.0,83.0,67.0,83.0,81.0,77.0,85.0,96.0,85.0,91.0,96.0,107.0,94.0,91.0,86.0,97.0,87.0,98.0,87.0,73.0,80.0,83.0,84.0,90.0,75.0,80.0,64.0,71.0,83.0,76.0,75.0,105.0,98.0,59.0,79.0,57.0,45.0,40.0,53.0,48.0,53.0,40.0,45.0,29.0,30.0,12.0,15.0,13.0,5.0,32.0 N81005,31.0,41.0,42.0,52.0,43.0,51.0,40.0,53.0,41.0,55.0,52.0,46.0,57.0,59.0,60.0,49.0,59.0,50.0,52.0,55.0,37.0,40.0,39.0,41.0,52.0,48.0,51.0,41.0,58.0,62.0,63.0,50.0,72.0,69.0,60.0,61.0,63.0,62.0,57.0,59.0,68.0,59.0,67.0,60.0,71.0,64.0,61.0,50.0,51.0,66.0,50.0,64.0,79.0,81.0,69.0,66.0,71.0,63.0,79.0,84.0,80.0,70.0,81.0,67.0,78.0,73.0,53.0,55.0,72.0,54.0,55.0,57.0,69.0,55.0,75.0,54.0,63.0,76.0,46.0,41.0,45.0,35.0,31.0,35.0,26.0,30.0,24.0,27.0,26.0,16.0,15.0,14.0,5.0,9.0,6.0,19.0 N81006,11.0,12.0,19.0,17.0,21.0,21.0,21.0,32.0,26.0,19.0,30.0,32.0,21.0,33.0,35.0,27.0,31.0,37.0,31.0,31.0,34.0,22.0,24.0,24.0,17.0,26.0,15.0,18.0,15.0,13.0,18.0,18.0,20.0,23.0,23.0,20.0,28.0,29.0,29.0,24.0,36.0,28.0,29.0,36.0,30.0,33.0,33.0,35.0,28.0,34.0,34.0,36.0,54.0,45.0,56.0,49.0,43.0,46.0,52.0,47.0,49.0,55.0,53.0,43.0,56.0,51.0,47.0,33.0,43.0,43.0,28.0,36.0,32.0,23.0,32.0,42.0,27.0,36.0,32.0,21.0,25.0,27.0,18.0,23.0,18.0,18.0,12.0,9.0,11.0,7.0,4.0,6.0,4.0,5.0,4.0,7.0 N81007,19.0,31.0,36.0,32.0,43.0,44.0,50.0,55.0,60.0,38.0,64.0,62.0,53.0,54.0,49.0,50.0,54.0,57.0,58.0,43.0,42.0,46.0,40.0,49.0,34.0,48.0,48.0,37.0,58.0,43.0,50.0,65.0,50.0,63.0,59.0,45.0,69.0,64.0,65.0,45.0,61.0,61.0,66.0,70.0,69.0,83.0,76.0,56.0,67.0,66.0,59.0,72.0,73.0,63.0,61.0,86.0,93.0,87.0,84.0,74.0,54.0,79.0,72.0,61.0,73.0,69.0,55.0,70.0,53.0,62.0,65.0,57.0,52.0,65.0,57.0,52.0,60.0,85.0,63.0,55.0,41.0,37.0,33.0,30.0,20.0,26.0,26.0,19.0,9.0,19.0,15.0,13.0,7.0,6.0,8.0,3.0 N81008,37.0,45.0,62.0,64.0,37.0,51.0,57.0,80.0,64.0,69.0,69.0,76.0,63.0,75.0,69.0,62.0,59.0,75.0,59.0,48.0,44.0,33.0,49.0,47.0,51.0,58.0,63.0,63.0,60.0,48.0,58.0,76.0,79.0,53.0,97.0,61.0,89.0,75.0,74.0,79.0,59.0,75.0,84.0,80.0,59.0,76.0,84.0,70.0,82.0,70.0,86.0,79.0,63.0,75.0,68.0,93.0,81.0,85.0,57.0,82.0,75.0,89.0,68.0,84.0,73.0,75.0,76.0,52.0,55.0,62.0,65.0,70.0,58.0,70.0,86.0,65.0,82.0,90.0,102.0,64.0,75.0,83.0,62.0,60.0,38.0,35.0,30.0,33.0,32.0,31.0,19.0,22.0,18.0,7.0,13.0,18.0 N81009,27.0,26.0,26.0,32.0,25.0,38.0,34.0,38.0,46.0,42.0,38.0,48.0,52.0,33.0,50.0,56.0,46.0,54.0,44.0,39.0,34.0,40.0,39.0,32.0,37.0,29.0,29.0,33.0,37.0,39.0,32.0,34.0,48.0,40.0,57.0,46.0,40.0,49.0,43.0,51.0,60.0,47.0,53.0,62.0,46.0,59.0,48.0,44.0,52.0,41.0,59.0,63.0,76.0,56.0,52.0,60.0,50.0,55.0,51.0,54.0,53.0,44.0,52.0,47.0,42.0,60.0,37.0,39.0,42.0,25.0,46.0,41.0,39.0,42.0,43.0,38.0,34.0,40.0,31.0,39.0,37.0,31.0,30.0,17.0,32.0,25.0,25.0,33.0,25.0,16.0,13.0,13.0,4.0,10.0,5.0,11.0 N81010,35.0,35.0,43.0,43.0,44.0,36.0,44.0,42.0,42.0,43.0,60.0,41.0,45.0,44.0,45.0,42.0,42.0,45.0,33.0,45.0,38.0,38.0,38.0,36.0,42.0,41.0,44.0,47.0,63.0,47.0,56.0,71.0,70.0,65.0,62.0,61.0,65.0,41.0,60.0,70.0,60.0,55.0,51.0,47.0,59.0,56.0,58.0,49.0,51.0,51.0,62.0,51.0,72.0,53.0,55.0,51.0,68.0,51.0,45.0,51.0,71.0,58.0,58.0,65.0,56.0,57.0,46.0,56.0,46.0,54.0,50.0,44.0,49.0,46.0,56.0,44.0,33.0,48.0,52.0,25.0,31.0,29.0,20.0,27.0,15.0,20.0,13.0,17.0,19.0,18.0,14.0,15.0,14.0,8.0,4.0,24.0 N81011,63.0,57.0,45.0,68.0,72.0,60.0,79.0,81.0,81.0,85.0,88.0,90.0,100.0,95.0,85.0,115.0,85.0,88.0,79.0,78.0,64.0,64.0,64.0,55.0,84.0,66.0,78.0,67.0,81.0,93.0,79.0,92.0,80.0,84.0,107.0,97.0,85.0,97.0,122.0,83.0,115.0,90.0,101.0,86.0,107.0,104.0,102.0,86.0,73.0,91.0,79.0,75.0,106.0,120.0,120.0,108.0,107.0,110.0,113.0,98.0,114.0,99.0,116.0,101.0,89.0,90.0,93.0,94.0,87.0,82.0,68.0,76.0,67.0,84.0,67.0,60.0,73.0,90.0,71.0,50.0,69.0,50.0,38.0,46.0,40.0,26.0,38.0,23.0,18.0,14.0,11.0,11.0,14.0,7.0,1.0,15.0 N81012,35.0,48.0,45.0,60.0,50.0,63.0,70.0,58.0,60.0,75.0,67.0,74.0,83.0,79.0,73.0,73.0,70.0,84.0,76.0,55.0,67.0,50.0,54.0,57.0,73.0,82.0,82.0,79.0,98.0,81.0,75.0,71.0,90.0,94.0,95.0,103.0,95.0,115.0,93.0,115.0,105.0,97.0,98.0,98.0,93.0,98.0,74.0,77.0,68.0,77.0,78.0,85.0,93.0,77.0,86.0,89.0,81.0,81.0,73.0,82.0,65.0,64.0,83.0,72.0,67.0,65.0,69.0,57.0,60.0,50.0,47.0,57.0,48.0,46.0,52.0,41.0,41.0,52.0,50.0,36.0,32.0,24.0,28.0,21.0,19.0,27.0,15.0,23.0,15.0,8.0,6.0,7.0,8.0,6.0,4.0,14.0 N81013,14.0,15.0,23.0,17.0,30.0,32.0,39.0,38.0,41.0,43.0,31.0,45.0,46.0,49.0,46.0,42.0,42.0,36.0,38.0,34.0,25.0,24.0,23.0,26.0,25.0,29.0,26.0,35.0,33.0,26.0,30.0,37.0,33.0,54.0,38.0,49.0,44.0,45.0,53.0,52.0,45.0,68.0,49.0,54.0,53.0,52.0,54.0,42.0,40.0,48.0,45.0,47.0,56.0,47.0,45.0,54.0,46.0,56.0,40.0,52.0,45.0,51.0,46.0,59.0,45.0,51.0,50.0,34.0,51.0,42.0,46.0,37.0,35.0,28.0,34.0,33.0,42.0,47.0,42.0,24.0,23.0,22.0,28.0,26.0,25.0,11.0,14.0,19.0,17.0,13.0,5.0,5.0,4.0,1.0,2.0,13.0 N81014,27.0,32.0,26.0,45.0,39.0,38.0,44.0,62.0,44.0,55.0,52.0,54.0,53.0,73.0,50.0,52.0,67.0,74.0,53.0,49.0,44.0,36.0,35.0,41.0,36.0,39.0,39.0,36.0,47.0,39.0,31.0,31.0,39.0,46.0,36.0,25.0,57.0,47.0,54.0,60.0,69.0,76.0,52.0,80.0,77.0,51.0,79.0,60.0,51.0,55.0,66.0,76.0,81.0,74.0,82.0,81.0,72.0,64.0,69.0,92.0,95.0,78.0,94.0,77.0,63.0,67.0,54.0,64.0,48.0,37.0,68.0,47.0,46.0,50.0,46.0,54.0,55.0,53.0,53.0,42.0,41.0,47.0,38.0,47.0,39.0,28.0,36.0,22.0,12.0,17.0,16.0,12.0,10.0,6.0,3.0,17.0 N81016,162.0,175.0,163.0,168.0,201.0,231.0,203.0,197.0,192.0,197.0,210.0,208.0,230.0,220.0,228.0,210.0,220.0,184.0,178.0,156.0,151.0,146.0,179.0,172.0,187.0,200.0,202.0,258.0,253.0,267.0,306.0,316.0,303.0,250.0,297.0,300.0,290.0,299.0,250.0,263.0,266.0,252.0,263.0,197.0,208.0,200.0,177.0,156.0,173.0,182.0,177.0,184.0,192.0,184.0,187.0,182.0,196.0,208.0,166.0,169.0,158.0,167.0,177.0,152.0,164.0,124.0,123.0,137.0,103.0,85.0,124.0,85.0,75.0,76.0,79.0,81.0,90.0,96.0,87.0,79.0,55.0,59.0,67.0,46.0,27.0,47.0,43.0,46.0,23.0,24.0,19.0,17.0,11.0,10.0,7.0,26.0 N81018,15.0,31.0,24.0,27.0,27.0,28.0,23.0,51.0,43.0,48.0,40.0,36.0,31.0,44.0,49.0,47.0,58.0,47.0,46.0,32.0,30.0,34.0,31.0,38.0,30.0,31.0,30.0,35.0,31.0,29.0,33.0,26.0,36.0,38.0,28.0,32.0,49.0,45.0,41.0,45.0,51.0,61.0,52.0,54.0,36.0,39.0,49.0,54.0,52.0,45.0,57.0,58.0,57.0,60.0,70.0,84.0,63.0,60.0,62.0,73.0,74.0,64.0,60.0,82.0,56.0,68.0,69.0,57.0,52.0,52.0,48.0,44.0,64.0,46.0,63.0,55.0,52.0,67.0,58.0,55.0,38.0,57.0,52.0,39.0,46.0,36.0,32.0,21.0,23.0,16.0,19.0,6.0,11.0,12.0,3.0,16.0 N81019,67.0,61.0,84.0,98.0,91.0,75.0,83.0,88.0,92.0,85.0,105.0,102.0,78.0,83.0,101.0,98.0,105.0,101.0,93.0,82.0,91.0,104.0,84.0,94.0,89.0,109.0,92.0,101.0,113.0,104.0,106.0,115.0,121.0,98.0,132.0,104.0,116.0,111.0,132.0,91.0,102.0,110.0,93.0,88.0,103.0,93.0,95.0,73.0,83.0,83.0,96.0,99.0,108.0,95.0,107.0,100.0,97.0,97.0,99.0,81.0,88.0,80.0,87.0,93.0,78.0,88.0,54.0,74.0,67.0,62.0,62.0,54.0,86.0,65.0,74.0,61.0,66.0,71.0,50.0,50.0,38.0,33.0,33.0,22.0,20.0,19.0,17.0,12.0,10.0,10.0,9.0,4.0,8.0,2.0,5.0,6.0 N81020,31.0,29.0,35.0,39.0,42.0,36.0,31.0,49.0,49.0,63.0,59.0,53.0,72.0,62.0,79.0,77.0,64.0,58.0,50.0,53.0,66.0,56.0,42.0,53.0,56.0,59.0,46.0,51.0,58.0,51.0,58.0,51.0,50.0,51.0,48.0,63.0,64.0,61.0,65.0,59.0,74.0,65.0,55.0,69.0,61.0,76.0,74.0,61.0,75.0,92.0,91.0,85.0,93.0,114.0,93.0,105.0,97.0,96.0,107.0,103.0,101.0,101.0,90.0,87.0,83.0,66.0,66.0,79.0,73.0,77.0,78.0,68.0,74.0,86.0,85.0,81.0,82.0,115.0,116.0,90.0,88.0,88.0,95.0,81.0,61.0,68.0,75.0,50.0,37.0,49.0,31.0,14.0,22.0,7.0,14.0,18.0 N81022,121.0,109.0,122.0,142.0,130.0,139.0,173.0,149.0,164.0,175.0,174.0,162.0,193.0,165.0,205.0,171.0,165.0,163.0,154.0,153.0,117.0,128.0,110.0,137.0,167.0,141.0,135.0,125.0,158.0,131.0,127.0,162.0,170.0,175.0,216.0,188.0,177.0,196.0,204.0,208.0,215.0,198.0,204.0,211.0,227.0,218.0,202.0,210.0,193.0,190.0,225.0,242.0,231.0,251.0,246.0,247.0,272.0,272.0,271.0,272.0,260.0,286.0,288.0,269.0,233.0,222.0,228.0,234.0,235.0,218.0,210.0,221.0,207.0,199.0,226.0,224.0,241.0,237.0,301.0,214.0,208.0,192.0,147.0,149.0,134.0,123.0,101.0,102.0,99.0,94.0,62.0,49.0,44.0,38.0,31.0,106.0 N81024,47.0,64.0,66.0,67.0,54.0,56.0,56.0,61.0,60.0,60.0,53.0,68.0,68.0,66.0,68.0,58.0,71.0,57.0,54.0,66.0,64.0,45.0,57.0,56.0,59.0,59.0,61.0,64.0,70.0,69.0,83.0,90.0,67.0,83.0,73.0,82.0,86.0,90.0,80.0,71.0,72.0,76.0,65.0,71.0,78.0,55.0,59.0,64.0,41.0,65.0,52.0,67.0,49.0,81.0,72.0,82.0,84.0,77.0,78.0,91.0,70.0,80.0,90.0,64.0,75.0,65.0,62.0,54.0,51.0,58.0,45.0,55.0,52.0,37.0,40.0,44.0,43.0,46.0,47.0,38.0,44.0,24.0,29.0,25.0,28.0,28.0,18.0,21.0,16.0,13.0,15.0,7.0,4.0,7.0,4.0,13.0 N81025,53.0,52.0,66.0,60.0,76.0,66.0,65.0,62.0,71.0,56.0,56.0,68.0,56.0,72.0,69.0,72.0,59.0,65.0,67.0,49.0,38.0,46.0,49.0,42.0,42.0,43.0,51.0,60.0,63.0,75.0,62.0,79.0,72.0,79.0,79.0,82.0,82.0,100.0,96.0,109.0,102.0,71.0,73.0,87.0,83.0,81.0,79.0,67.0,75.0,84.0,82.0,67.0,74.0,86.0,76.0,84.0,67.0,70.0,62.0,79.0,76.0,73.0,58.0,60.0,74.0,55.0,59.0,57.0,55.0,57.0,48.0,47.0,55.0,42.0,37.0,38.0,44.0,40.0,51.0,33.0,33.0,33.0,25.0,21.0,22.0,25.0,14.0,15.0,15.0,17.0,8.0,10.0,6.0,5.0,4.0,14.0 N81027,60.0,60.0,63.0,64.0,78.0,53.0,63.0,76.0,69.0,76.0,61.0,66.0,65.0,84.0,62.0,73.0,79.0,79.0,74.0,66.0,70.0,64.0,69.0,73.0,74.0,83.0,73.0,94.0,78.0,80.0,94.0,96.0,80.0,97.0,102.0,92.0,114.0,108.0,76.0,95.0,81.0,80.0,84.0,77.0,86.0,74.0,89.0,86.0,78.0,78.0,85.0,71.0,103.0,109.0,94.0,124.0,123.0,116.0,101.0,113.0,105.0,106.0,105.0,100.0,97.0,90.0,93.0,87.0,99.0,63.0,81.0,78.0,86.0,95.0,90.0,103.0,106.0,116.0,106.0,66.0,80.0,59.0,67.0,51.0,42.0,53.0,40.0,43.0,33.0,39.0,29.0,22.0,21.0,15.0,15.0,32.0 N81028,36.0,47.0,41.0,42.0,45.0,67.0,65.0,61.0,57.0,60.0,56.0,62.0,56.0,65.0,64.0,58.0,59.0,59.0,63.0,45.0,43.0,41.0,44.0,45.0,37.0,30.0,56.0,41.0,40.0,61.0,58.0,72.0,68.0,61.0,81.0,66.0,83.0,80.0,94.0,77.0,87.0,87.0,66.0,89.0,74.0,83.0,69.0,71.0,64.0,50.0,64.0,63.0,58.0,45.0,50.0,57.0,46.0,52.0,49.0,45.0,57.0,45.0,52.0,42.0,48.0,37.0,46.0,48.0,40.0,39.0,45.0,44.0,50.0,37.0,43.0,41.0,40.0,37.0,39.0,21.0,32.0,18.0,18.0,15.0,17.0,18.0,17.0,12.0,8.0,4.0,8.0,7.0,4.0,2.0,5.0,10.0 N81029,42.0,44.0,47.0,50.0,38.0,55.0,66.0,56.0,62.0,69.0,66.0,67.0,73.0,68.0,71.0,62.0,49.0,60.0,83.0,42.0,40.0,48.0,44.0,47.0,55.0,59.0,76.0,81.0,59.0,78.0,82.0,79.0,81.0,95.0,93.0,87.0,88.0,94.0,94.0,82.0,86.0,85.0,89.0,67.0,66.0,75.0,65.0,65.0,68.0,89.0,59.0,76.0,72.0,67.0,83.0,75.0,96.0,104.0,106.0,109.0,114.0,113.0,95.0,96.0,76.0,74.0,66.0,63.0,69.0,66.0,63.0,60.0,54.0,57.0,56.0,70.0,67.0,69.0,74.0,56.0,66.0,47.0,45.0,52.0,43.0,32.0,29.0,28.0,30.0,18.0,28.0,17.0,14.0,14.0,10.0,22.0 N81030,46.0,61.0,48.0,58.0,58.0,48.0,71.0,62.0,82.0,78.0,68.0,84.0,59.0,90.0,85.0,81.0,93.0,63.0,81.0,69.0,53.0,71.0,68.0,75.0,67.0,80.0,60.0,71.0,65.0,85.0,84.0,82.0,72.0,89.0,75.0,96.0,75.0,75.0,84.0,92.0,84.0,91.0,86.0,108.0,94.0,118.0,99.0,93.0,120.0,104.0,108.0,121.0,122.0,127.0,124.0,124.0,137.0,143.0,142.0,143.0,159.0,165.0,125.0,115.0,119.0,119.0,102.0,110.0,126.0,125.0,106.0,101.0,110.0,98.0,121.0,111.0,120.0,129.0,144.0,96.0,115.0,76.0,86.0,71.0,67.0,61.0,56.0,55.0,43.0,41.0,31.0,32.0,20.0,20.0,15.0,38.0 N81031,21.0,12.0,26.0,26.0,22.0,23.0,25.0,22.0,28.0,38.0,31.0,35.0,31.0,40.0,27.0,37.0,26.0,28.0,27.0,26.0,25.0,32.0,24.0,21.0,25.0,20.0,28.0,20.0,18.0,26.0,32.0,26.0,19.0,25.0,34.0,16.0,37.0,36.0,29.0,35.0,35.0,33.0,44.0,37.0,32.0,42.0,34.0,30.0,36.0,33.0,45.0,39.0,41.0,53.0,46.0,54.0,50.0,42.0,59.0,60.0,59.0,55.0,52.0,65.0,45.0,49.0,46.0,50.0,38.0,44.0,25.0,43.0,45.0,56.0,46.0,51.0,42.0,57.0,49.0,37.0,44.0,41.0,36.0,17.0,27.0,22.0,23.0,20.0,22.0,13.0,10.0,7.0,10.0,10.0,5.0,12.0 N81032,112.0,116.0,143.0,156.0,177.0,142.0,173.0,169.0,153.0,179.0,146.0,131.0,148.0,141.0,140.0,160.0,145.0,145.0,130.0,130.0,124.0,118.0,115.0,130.0,135.0,167.0,154.0,153.0,179.0,174.0,174.0,205.0,206.0,222.0,233.0,213.0,203.0,221.0,203.0,199.0,201.0,199.0,161.0,181.0,188.0,184.0,146.0,172.0,156.0,173.0,174.0,178.0,189.0,226.0,212.0,220.0,201.0,212.0,208.0,217.0,214.0,213.0,185.0,190.0,184.0,176.0,164.0,171.0,158.0,153.0,128.0,146.0,148.0,156.0,127.0,139.0,156.0,171.0,156.0,114.0,131.0,116.0,116.0,96.0,90.0,77.0,71.0,66.0,54.0,44.0,34.0,26.0,29.0,18.0,11.0,36.0 N81033,21.0,30.0,36.0,41.0,38.0,47.0,43.0,40.0,50.0,46.0,44.0,43.0,54.0,39.0,48.0,40.0,41.0,49.0,48.0,29.0,34.0,39.0,41.0,33.0,29.0,42.0,52.0,41.0,43.0,27.0,33.0,35.0,40.0,40.0,52.0,53.0,52.0,53.0,42.0,43.0,53.0,42.0,45.0,67.0,56.0,55.0,71.0,55.0,39.0,55.0,66.0,60.0,72.0,65.0,60.0,65.0,62.0,58.0,74.0,89.0,86.0,68.0,76.0,73.0,49.0,66.0,64.0,57.0,49.0,48.0,42.0,45.0,52.0,75.0,54.0,46.0,46.0,59.0,63.0,43.0,58.0,44.0,38.0,43.0,22.0,32.0,26.0,23.0,22.0,22.0,21.0,22.0,14.0,21.0,17.0,29.0 N81034,54.0,50.0,45.0,63.0,62.0,61.0,66.0,63.0,71.0,80.0,80.0,74.0,62.0,79.0,84.0,53.0,65.0,63.0,64.0,67.0,58.0,49.0,43.0,60.0,70.0,82.0,78.0,88.0,95.0,85.0,91.0,101.0,101.0,103.0,108.0,107.0,105.0,99.0,102.0,102.0,96.0,87.0,102.0,116.0,85.0,97.0,80.0,87.0,66.0,87.0,92.0,99.0,97.0,73.0,86.0,69.0,87.0,80.0,72.0,82.0,91.0,82.0,89.0,76.0,80.0,77.0,85.0,97.0,76.0,73.0,60.0,69.0,57.0,75.0,52.0,59.0,53.0,64.0,61.0,45.0,59.0,36.0,50.0,30.0,32.0,32.0,27.0,29.0,24.0,18.0,8.0,19.0,11.0,4.0,5.0,11.0 N81035,48.0,63.0,58.0,64.0,45.0,68.0,65.0,48.0,59.0,59.0,74.0,74.0,62.0,56.0,71.0,75.0,72.0,62.0,75.0,78.0,55.0,54.0,54.0,74.0,61.0,67.0,65.0,76.0,73.0,64.0,66.0,80.0,79.0,75.0,63.0,88.0,83.0,86.0,87.0,69.0,85.0,75.0,70.0,78.0,93.0,65.0,87.0,63.0,65.0,85.0,83.0,66.0,75.0,77.0,91.0,79.0,93.0,108.0,85.0,81.0,81.0,75.0,99.0,84.0,98.0,91.0,83.0,90.0,76.0,75.0,87.0,67.0,64.0,53.0,76.0,62.0,70.0,68.0,67.0,49.0,46.0,43.0,40.0,25.0,23.0,31.0,26.0,23.0,16.0,18.0,15.0,15.0,11.0,10.0,5.0,16.0 N81036,49.0,39.0,40.0,42.0,30.0,43.0,53.0,40.0,46.0,48.0,40.0,47.0,38.0,49.0,43.0,38.0,42.0,30.0,27.0,36.0,42.0,41.0,38.0,42.0,40.0,55.0,61.0,63.0,70.0,77.0,74.0,74.0,84.0,74.0,72.0,61.0,69.0,73.0,74.0,66.0,69.0,67.0,79.0,48.0,49.0,49.0,50.0,56.0,48.0,39.0,34.0,52.0,48.0,51.0,53.0,73.0,48.0,60.0,59.0,57.0,54.0,56.0,52.0,45.0,51.0,46.0,42.0,40.0,42.0,42.0,37.0,33.0,42.0,28.0,39.0,44.0,44.0,36.0,36.0,33.0,27.0,27.0,28.0,20.0,26.0,14.0,14.0,16.0,23.0,10.0,7.0,9.0,8.0,1.0,4.0,8.0 N81037,25.0,34.0,34.0,34.0,34.0,41.0,45.0,38.0,59.0,53.0,55.0,42.0,58.0,52.0,66.0,57.0,55.0,41.0,58.0,34.0,38.0,44.0,39.0,38.0,49.0,44.0,41.0,43.0,42.0,43.0,59.0,55.0,52.0,58.0,76.0,79.0,64.0,68.0,55.0,55.0,62.0,64.0,56.0,51.0,46.0,57.0,38.0,39.0,37.0,37.0,55.0,44.0,41.0,53.0,60.0,70.0,62.0,44.0,60.0,57.0,77.0,61.0,78.0,72.0,77.0,68.0,57.0,63.0,53.0,51.0,30.0,52.0,49.0,36.0,47.0,35.0,41.0,27.0,39.0,26.0,25.0,14.0,30.0,18.0,17.0,20.0,8.0,13.0,11.0,14.0,15.0,11.0,5.0,5.0,5.0,6.0 N81038,26.0,26.0,28.0,31.0,34.0,28.0,37.0,31.0,37.0,44.0,40.0,47.0,50.0,31.0,43.0,50.0,65.0,44.0,43.0,40.0,42.0,39.0,40.0,26.0,37.0,34.0,34.0,39.0,29.0,27.0,35.0,39.0,40.0,53.0,44.0,51.0,35.0,33.0,44.0,39.0,42.0,45.0,44.0,52.0,48.0,46.0,47.0,45.0,39.0,42.0,53.0,49.0,57.0,61.0,77.0,59.0,56.0,62.0,70.0,71.0,62.0,56.0,67.0,59.0,53.0,61.0,56.0,58.0,47.0,54.0,50.0,62.0,49.0,45.0,66.0,41.0,49.0,45.0,44.0,43.0,46.0,27.0,35.0,35.0,34.0,19.0,17.0,16.0,31.0,17.0,11.0,9.0,7.0,4.0,9.0,23.0 N81039,51.0,49.0,59.0,57.0,52.0,48.0,55.0,56.0,72.0,69.0,76.0,59.0,75.0,65.0,74.0,63.0,53.0,73.0,51.0,46.0,63.0,61.0,67.0,46.0,59.0,74.0,57.0,49.0,81.0,69.0,71.0,61.0,69.0,70.0,72.0,74.0,81.0,73.0,81.0,80.0,66.0,67.0,69.0,75.0,79.0,64.0,61.0,69.0,61.0,61.0,60.0,82.0,76.0,84.0,92.0,88.0,93.0,87.0,107.0,112.0,95.0,109.0,83.0,83.0,98.0,75.0,85.0,89.0,83.0,57.0,60.0,78.0,64.0,61.0,63.0,63.0,63.0,61.0,51.0,47.0,49.0,46.0,59.0,41.0,24.0,31.0,28.0,24.0,22.0,17.0,20.0,10.0,11.0,10.0,10.0,16.0 N81040,28.0,34.0,47.0,51.0,45.0,30.0,40.0,39.0,41.0,35.0,39.0,37.0,36.0,47.0,41.0,47.0,45.0,29.0,48.0,35.0,38.0,30.0,33.0,33.0,41.0,37.0,38.0,46.0,44.0,50.0,46.0,45.0,57.0,61.0,59.0,60.0,55.0,53.0,51.0,53.0,48.0,53.0,64.0,51.0,41.0,50.0,36.0,35.0,41.0,36.0,38.0,41.0,41.0,48.0,46.0,52.0,44.0,54.0,42.0,43.0,44.0,44.0,42.0,34.0,43.0,42.0,31.0,35.0,31.0,32.0,25.0,24.0,19.0,21.0,27.0,25.0,18.0,25.0,22.0,13.0,24.0,18.0,12.0,8.0,12.0,13.0,13.0,8.0,1.0,5.0,4.0,2.0,5.0,,3.0,5.0 N81041,27.0,35.0,47.0,40.0,31.0,45.0,40.0,49.0,44.0,34.0,29.0,46.0,50.0,34.0,46.0,57.0,62.0,40.0,48.0,32.0,38.0,53.0,25.0,37.0,43.0,38.0,58.0,50.0,67.0,51.0,44.0,50.0,61.0,72.0,81.0,69.0,67.0,65.0,54.0,60.0,66.0,52.0,63.0,61.0,61.0,54.0,44.0,41.0,42.0,52.0,47.0,31.0,57.0,52.0,67.0,77.0,69.0,74.0,69.0,58.0,70.0,69.0,74.0,63.0,72.0,36.0,38.0,55.0,53.0,38.0,28.0,42.0,40.0,36.0,32.0,33.0,35.0,50.0,45.0,22.0,31.0,38.0,28.0,27.0,29.0,25.0,19.0,19.0,20.0,13.0,20.0,9.0,6.0,5.0,4.0,8.0 N81043,21.0,23.0,22.0,21.0,29.0,27.0,23.0,25.0,25.0,27.0,25.0,17.0,25.0,27.0,29.0,27.0,37.0,24.0,27.0,23.0,15.0,26.0,20.0,25.0,23.0,34.0,25.0,27.0,29.0,37.0,40.0,26.0,36.0,42.0,26.0,26.0,30.0,35.0,42.0,36.0,41.0,35.0,28.0,30.0,30.0,34.0,21.0,23.0,33.0,24.0,31.0,33.0,39.0,52.0,46.0,48.0,54.0,53.0,48.0,51.0,48.0,43.0,42.0,53.0,35.0,51.0,38.0,47.0,36.0,34.0,42.0,31.0,39.0,30.0,35.0,38.0,41.0,58.0,48.0,30.0,35.0,24.0,32.0,19.0,21.0,20.0,22.0,13.0,16.0,12.0,14.0,10.0,5.0,1.0,4.0,7.0 N81044,44.0,53.0,42.0,54.0,55.0,67.0,52.0,53.0,55.0,66.0,45.0,53.0,62.0,66.0,58.0,51.0,58.0,55.0,61.0,50.0,64.0,73.0,54.0,49.0,47.0,70.0,69.0,50.0,85.0,79.0,75.0,74.0,88.0,71.0,79.0,97.0,67.0,86.0,80.0,77.0,66.0,66.0,65.0,67.0,61.0,63.0,55.0,63.0,64.0,71.0,61.0,52.0,54.0,84.0,84.0,71.0,60.0,87.0,62.0,68.0,69.0,74.0,77.0,72.0,58.0,69.0,54.0,47.0,67.0,56.0,47.0,54.0,50.0,50.0,57.0,39.0,51.0,58.0,48.0,38.0,46.0,30.0,34.0,32.0,20.0,23.0,23.0,25.0,22.0,18.0,6.0,8.0,15.0,8.0,5.0,11.0 N81045,37.0,64.0,49.0,46.0,53.0,64.0,57.0,71.0,74.0,80.0,68.0,86.0,63.0,74.0,64.0,79.0,82.0,77.0,77.0,66.0,70.0,60.0,60.0,68.0,69.0,71.0,66.0,66.0,77.0,69.0,78.0,88.0,90.0,104.0,104.0,77.0,98.0,84.0,109.0,95.0,88.0,111.0,97.0,76.0,94.0,92.0,81.0,77.0,68.0,79.0,61.0,92.0,83.0,85.0,94.0,91.0,86.0,100.0,90.0,100.0,114.0,92.0,120.0,107.0,101.0,96.0,88.0,89.0,81.0,69.0,64.0,78.0,65.0,59.0,71.0,51.0,65.0,88.0,70.0,48.0,36.0,63.0,35.0,40.0,35.0,40.0,39.0,29.0,29.0,16.0,21.0,13.0,12.0,11.0,7.0,11.0 N81046,41.0,45.0,44.0,46.0,47.0,47.0,53.0,59.0,52.0,58.0,63.0,71.0,71.0,60.0,50.0,58.0,64.0,53.0,41.0,48.0,48.0,36.0,43.0,40.0,40.0,54.0,42.0,48.0,63.0,59.0,66.0,76.0,66.0,86.0,53.0,75.0,67.0,68.0,82.0,68.0,76.0,80.0,79.0,64.0,74.0,77.0,65.0,60.0,57.0,62.0,75.0,67.0,68.0,72.0,72.0,73.0,57.0,71.0,70.0,55.0,64.0,62.0,66.0,64.0,71.0,51.0,48.0,61.0,59.0,46.0,44.0,46.0,47.0,43.0,51.0,49.0,42.0,63.0,53.0,32.0,40.0,37.0,30.0,28.0,25.0,25.0,19.0,25.0,18.0,13.0,11.0,7.0,4.0,12.0,11.0,17.0 N81047,34.0,33.0,41.0,46.0,57.0,59.0,60.0,53.0,55.0,62.0,49.0,60.0,59.0,46.0,62.0,72.0,72.0,64.0,64.0,53.0,71.0,62.0,67.0,67.0,55.0,53.0,63.0,64.0,72.0,65.0,77.0,67.0,52.0,69.0,70.0,53.0,64.0,78.0,65.0,81.0,74.0,68.0,72.0,97.0,68.0,77.0,85.0,57.0,82.0,74.0,81.0,82.0,90.0,94.0,109.0,91.0,94.0,91.0,92.0,108.0,103.0,79.0,74.0,93.0,86.0,79.0,84.0,83.0,69.0,63.0,71.0,80.0,64.0,72.0,78.0,96.0,84.0,96.0,80.0,44.0,61.0,67.0,60.0,57.0,50.0,57.0,39.0,53.0,29.0,26.0,27.0,15.0,18.0,13.0,9.0,28.0 N81048,57.0,52.0,63.0,53.0,50.0,57.0,76.0,74.0,81.0,73.0,74.0,88.0,77.0,75.0,100.0,94.0,92.0,82.0,84.0,77.0,75.0,67.0,67.0,54.0,70.0,77.0,60.0,77.0,78.0,71.0,68.0,96.0,98.0,84.0,78.0,97.0,111.0,103.0,101.0,99.0,111.0,95.0,102.0,87.0,96.0,100.0,80.0,79.0,73.0,88.0,71.0,92.0,80.0,103.0,87.0,109.0,72.0,77.0,77.0,85.0,87.0,75.0,81.0,78.0,87.0,73.0,66.0,70.0,55.0,77.0,77.0,68.0,55.0,55.0,64.0,71.0,54.0,55.0,62.0,56.0,37.0,33.0,44.0,34.0,34.0,17.0,32.0,26.0,18.0,14.0,10.0,16.0,5.0,6.0,4.0,14.0 N81049,90.0,106.0,92.0,105.0,106.0,117.0,104.0,111.0,118.0,132.0,138.0,120.0,150.0,157.0,143.0,141.0,127.0,135.0,126.0,103.0,111.0,102.0,74.0,112.0,93.0,87.0,101.0,115.0,91.0,107.0,92.0,111.0,137.0,128.0,143.0,144.0,140.0,145.0,129.0,156.0,156.0,154.0,165.0,138.0,151.0,184.0,145.0,157.0,151.0,170.0,155.0,153.0,156.0,163.0,164.0,165.0,169.0,197.0,162.0,172.0,189.0,181.0,205.0,181.0,144.0,157.0,166.0,137.0,127.0,121.0,120.0,147.0,142.0,130.0,150.0,132.0,146.0,174.0,127.0,112.0,101.0,130.0,113.0,87.0,93.0,89.0,78.0,76.0,52.0,74.0,43.0,46.0,41.0,29.0,23.0,78.0 N81050,70.0,87.0,103.0,95.0,92.0,99.0,111.0,102.0,111.0,112.0,116.0,133.0,114.0,111.0,103.0,98.0,119.0,114.0,109.0,82.0,71.0,73.0,80.0,74.0,94.0,89.0,99.0,116.0,125.0,123.0,120.0,113.0,135.0,134.0,134.0,136.0,147.0,138.0,128.0,154.0,125.0,117.0,138.0,103.0,131.0,135.0,101.0,108.0,110.0,106.0,111.0,129.0,126.0,146.0,151.0,115.0,131.0,145.0,121.0,149.0,142.0,145.0,151.0,142.0,130.0,131.0,125.0,116.0,103.0,99.0,104.0,105.0,96.0,101.0,90.0,106.0,95.0,108.0,121.0,79.0,81.0,50.0,66.0,76.0,57.0,51.0,52.0,43.0,51.0,26.0,29.0,25.0,15.0,13.0,16.0,36.0 N81051,17.0,24.0,26.0,33.0,31.0,27.0,35.0,27.0,26.0,38.0,45.0,44.0,31.0,42.0,32.0,41.0,37.0,34.0,26.0,38.0,31.0,26.0,26.0,18.0,26.0,33.0,33.0,26.0,35.0,31.0,30.0,28.0,37.0,42.0,45.0,47.0,35.0,50.0,46.0,50.0,46.0,49.0,55.0,46.0,43.0,45.0,34.0,42.0,27.0,40.0,41.0,40.0,51.0,43.0,55.0,49.0,69.0,56.0,53.0,70.0,64.0,48.0,71.0,58.0,56.0,40.0,48.0,61.0,45.0,46.0,36.0,62.0,32.0,51.0,48.0,40.0,46.0,49.0,59.0,29.0,31.0,35.0,34.0,19.0,21.0,20.0,21.0,13.0,16.0,21.0,11.0,7.0,7.0,3.0,5.0,16.0 N81052,59.0,84.0,71.0,66.0,71.0,66.0,68.0,75.0,76.0,70.0,63.0,61.0,65.0,95.0,74.0,56.0,72.0,58.0,62.0,60.0,44.0,52.0,48.0,63.0,56.0,56.0,67.0,69.0,73.0,76.0,82.0,82.0,75.0,101.0,96.0,99.0,83.0,101.0,78.0,93.0,73.0,79.0,73.0,77.0,87.0,95.0,86.0,75.0,62.0,81.0,91.0,63.0,89.0,85.0,96.0,99.0,94.0,83.0,89.0,79.0,106.0,85.0,78.0,79.0,83.0,88.0,72.0,82.0,67.0,83.0,70.0,88.0,57.0,70.0,67.0,79.0,67.0,93.0,93.0,60.0,50.0,69.0,49.0,42.0,35.0,39.0,34.0,23.0,23.0,25.0,16.0,9.0,13.0,11.0,6.0,19.0 N81053,77.0,80.0,92.0,98.0,105.0,94.0,101.0,110.0,83.0,105.0,103.0,110.0,101.0,112.0,118.0,110.0,116.0,109.0,108.0,99.0,96.0,92.0,71.0,91.0,99.0,132.0,90.0,127.0,120.0,119.0,127.0,142.0,138.0,127.0,133.0,134.0,130.0,147.0,117.0,135.0,121.0,119.0,138.0,118.0,109.0,124.0,94.0,101.0,93.0,74.0,104.0,104.0,106.0,93.0,111.0,103.0,124.0,104.0,94.0,110.0,105.0,96.0,105.0,100.0,98.0,96.0,78.0,90.0,76.0,69.0,69.0,56.0,75.0,53.0,72.0,76.0,53.0,66.0,63.0,56.0,51.0,55.0,50.0,41.0,41.0,30.0,19.0,26.0,21.0,16.0,15.0,7.0,6.0,7.0,9.0,21.0 N81054,29.0,34.0,41.0,41.0,49.0,36.0,40.0,53.0,47.0,44.0,42.0,44.0,71.0,55.0,53.0,51.0,62.0,63.0,40.0,50.0,48.0,52.0,64.0,55.0,52.0,53.0,44.0,64.0,47.0,46.0,58.0,61.0,47.0,64.0,62.0,52.0,51.0,62.0,64.0,77.0,58.0,54.0,58.0,67.0,57.0,64.0,52.0,57.0,52.0,65.0,64.0,77.0,71.0,64.0,71.0,66.0,59.0,66.0,65.0,70.0,46.0,54.0,56.0,63.0,53.0,65.0,63.0,66.0,51.0,55.0,58.0,60.0,50.0,52.0,52.0,48.0,46.0,49.0,35.0,24.0,23.0,17.0,21.0,14.0,8.0,14.0,13.0,8.0,11.0,8.0,10.0,4.0,3.0,3.0,3.0,6.0 N81055,23.0,14.0,27.0,20.0,18.0,27.0,25.0,29.0,35.0,34.0,30.0,35.0,32.0,36.0,41.0,45.0,32.0,43.0,35.0,26.0,19.0,28.0,19.0,29.0,28.0,27.0,37.0,26.0,35.0,31.0,31.0,44.0,35.0,51.0,41.0,41.0,48.0,44.0,52.0,46.0,43.0,46.0,32.0,32.0,44.0,33.0,35.0,31.0,45.0,30.0,43.0,42.0,60.0,45.0,50.0,50.0,54.0,73.0,61.0,51.0,66.0,55.0,68.0,60.0,66.0,58.0,47.0,57.0,52.0,47.0,38.0,52.0,40.0,32.0,36.0,44.0,32.0,44.0,43.0,26.0,34.0,36.0,28.0,18.0,20.0,18.0,22.0,19.0,14.0,14.0,14.0,9.0,6.0,5.0,3.0,9.0 N81056,25.0,42.0,35.0,42.0,41.0,52.0,55.0,48.0,51.0,70.0,60.0,64.0,63.0,53.0,79.0,57.0,74.0,60.0,63.0,52.0,57.0,50.0,52.0,46.0,60.0,65.0,59.0,63.0,65.0,75.0,64.0,66.0,66.0,83.0,81.0,74.0,73.0,78.0,82.0,75.0,79.0,71.0,64.0,67.0,46.0,55.0,57.0,46.0,53.0,49.0,53.0,48.0,63.0,68.0,66.0,69.0,76.0,78.0,85.0,73.0,82.0,59.0,82.0,79.0,57.0,48.0,47.0,53.0,48.0,38.0,37.0,49.0,42.0,37.0,39.0,27.0,30.0,42.0,39.0,27.0,26.0,25.0,23.0,21.0,16.0,15.0,18.0,15.0,8.0,4.0,4.0,6.0,7.0,3.0,4.0,3.0 N81057,36.0,50.0,61.0,63.0,55.0,75.0,56.0,65.0,56.0,79.0,75.0,73.0,84.0,89.0,86.0,84.0,64.0,71.0,70.0,58.0,73.0,49.0,59.0,66.0,71.0,64.0,82.0,68.0,80.0,74.0,105.0,87.0,75.0,89.0,103.0,83.0,74.0,99.0,91.0,75.0,86.0,97.0,83.0,95.0,99.0,73.0,105.0,72.0,66.0,71.0,69.0,73.0,82.0,100.0,96.0,80.0,86.0,103.0,84.0,74.0,69.0,87.0,95.0,94.0,89.0,91.0,95.0,89.0,67.0,88.0,70.0,90.0,66.0,85.0,59.0,63.0,72.0,79.0,74.0,43.0,54.0,57.0,57.0,43.0,40.0,51.0,28.0,29.0,40.0,19.0,15.0,22.0,10.0,11.0,7.0,14.0 N81059,33.0,46.0,43.0,46.0,51.0,63.0,56.0,54.0,61.0,70.0,77.0,62.0,70.0,69.0,98.0,70.0,66.0,90.0,75.0,77.0,52.0,56.0,69.0,58.0,67.0,43.0,59.0,54.0,45.0,62.0,49.0,61.0,59.0,63.0,64.0,69.0,64.0,72.0,80.0,66.0,80.0,89.0,72.0,67.0,65.0,85.0,85.0,72.0,91.0,79.0,85.0,93.0,96.0,101.0,102.0,101.0,107.0,105.0,126.0,114.0,101.0,90.0,93.0,108.0,95.0,96.0,97.0,67.0,70.0,77.0,71.0,65.0,50.0,55.0,67.0,60.0,71.0,81.0,67.0,75.0,64.0,46.0,51.0,57.0,34.0,55.0,44.0,34.0,40.0,26.0,18.0,28.0,15.0,15.0,14.0,27.0 N81060,22.0,23.0,33.0,30.0,33.0,38.0,36.0,32.0,38.0,41.0,40.0,51.0,35.0,50.0,50.0,49.0,47.0,46.0,34.0,32.0,46.0,41.0,50.0,46.0,39.0,28.0,35.0,37.0,44.0,33.0,48.0,24.0,39.0,53.0,45.0,50.0,43.0,47.0,36.0,56.0,54.0,63.0,51.0,53.0,60.0,62.0,51.0,39.0,46.0,51.0,54.0,58.0,59.0,68.0,70.0,60.0,60.0,65.0,59.0,63.0,61.0,60.0,84.0,56.0,66.0,68.0,90.0,65.0,59.0,73.0,63.0,66.0,65.0,62.0,62.0,54.0,67.0,95.0,77.0,73.0,59.0,51.0,38.0,39.0,35.0,38.0,33.0,26.0,22.0,23.0,24.0,15.0,15.0,9.0,8.0,11.0 N81061,34.0,50.0,40.0,53.0,59.0,68.0,60.0,54.0,46.0,63.0,63.0,43.0,58.0,69.0,53.0,59.0,47.0,48.0,48.0,43.0,35.0,48.0,30.0,45.0,47.0,43.0,66.0,67.0,65.0,62.0,64.0,70.0,84.0,90.0,75.0,79.0,74.0,96.0,67.0,59.0,57.0,85.0,61.0,61.0,60.0,46.0,55.0,53.0,58.0,54.0,51.0,76.0,58.0,77.0,63.0,86.0,77.0,64.0,91.0,80.0,66.0,72.0,66.0,77.0,61.0,79.0,55.0,55.0,56.0,48.0,44.0,50.0,61.0,49.0,44.0,54.0,50.0,47.0,61.0,45.0,40.0,26.0,30.0,25.0,14.0,21.0,18.0,12.0,18.0,12.0,14.0,9.0,7.0,7.0,1.0,16.0 N81062,49.0,48.0,51.0,70.0,52.0,74.0,64.0,65.0,61.0,79.0,82.0,78.0,79.0,76.0,67.0,83.0,82.0,74.0,73.0,57.0,58.0,65.0,64.0,48.0,70.0,76.0,84.0,79.0,89.0,96.0,89.0,77.0,99.0,115.0,110.0,88.0,99.0,103.0,100.0,99.0,94.0,91.0,89.0,90.0,87.0,79.0,101.0,68.0,86.0,94.0,77.0,104.0,99.0,113.0,129.0,99.0,110.0,129.0,119.0,101.0,133.0,111.0,129.0,126.0,116.0,103.0,111.0,90.0,92.0,75.0,82.0,81.0,74.0,87.0,78.0,62.0,93.0,120.0,95.0,73.0,77.0,58.0,63.0,56.0,34.0,48.0,43.0,43.0,35.0,39.0,22.0,17.0,21.0,17.0,13.0,20.0 N81063,51.0,53.0,82.0,81.0,67.0,81.0,82.0,70.0,78.0,81.0,66.0,79.0,77.0,104.0,84.0,67.0,67.0,75.0,78.0,64.0,48.0,64.0,83.0,76.0,57.0,82.0,79.0,80.0,98.0,76.0,88.0,103.0,146.0,98.0,102.0,93.0,102.0,92.0,94.0,86.0,90.0,108.0,92.0,95.0,94.0,67.0,74.0,58.0,69.0,57.0,70.0,67.0,69.0,82.0,83.0,87.0,97.0,86.0,76.0,91.0,76.0,76.0,78.0,86.0,75.0,76.0,61.0,62.0,52.0,59.0,46.0,53.0,42.0,48.0,54.0,30.0,52.0,45.0,33.0,38.0,30.0,27.0,26.0,24.0,18.0,29.0,15.0,16.0,14.0,13.0,15.0,6.0,10.0,6.0,2.0,14.0 N81064,27.0,23.0,30.0,31.0,22.0,30.0,31.0,29.0,40.0,45.0,41.0,39.0,43.0,41.0,31.0,57.0,48.0,42.0,49.0,35.0,28.0,24.0,35.0,35.0,38.0,42.0,36.0,38.0,39.0,35.0,33.0,38.0,35.0,48.0,39.0,60.0,60.0,63.0,45.0,48.0,44.0,55.0,46.0,42.0,48.0,48.0,34.0,44.0,50.0,31.0,36.0,40.0,41.0,50.0,39.0,34.0,41.0,45.0,39.0,49.0,47.0,38.0,51.0,54.0,47.0,37.0,40.0,37.0,38.0,35.0,54.0,34.0,34.0,29.0,24.0,30.0,26.0,38.0,35.0,19.0,5.0,17.0,11.0,19.0,14.0,14.0,13.0,12.0,15.0,5.0,7.0,8.0,6.0,5.0,6.0,8.0 N81065,52.0,39.0,48.0,54.0,31.0,45.0,49.0,62.0,49.0,52.0,62.0,51.0,53.0,58.0,62.0,49.0,52.0,44.0,37.0,41.0,36.0,32.0,45.0,53.0,49.0,55.0,57.0,76.0,61.0,68.0,60.0,80.0,64.0,73.0,89.0,81.0,76.0,66.0,83.0,91.0,78.0,61.0,59.0,52.0,73.0,67.0,53.0,49.0,59.0,57.0,38.0,40.0,52.0,48.0,55.0,47.0,49.0,53.0,49.0,53.0,45.0,52.0,45.0,44.0,27.0,38.0,31.0,37.0,25.0,28.0,28.0,21.0,34.0,30.0,26.0,16.0,23.0,23.0,24.0,15.0,20.0,19.0,16.0,12.0,16.0,14.0,18.0,13.0,9.0,8.0,6.0,8.0,6.0,8.0,4.0,10.0 N81066,54.0,57.0,64.0,75.0,60.0,82.0,69.0,81.0,83.0,87.0,79.0,82.0,76.0,74.0,90.0,86.0,73.0,86.0,77.0,59.0,69.0,60.0,77.0,85.0,74.0,91.0,83.0,98.0,96.0,114.0,98.0,97.0,130.0,125.0,116.0,103.0,107.0,116.0,90.0,107.0,89.0,88.0,97.0,99.0,97.0,80.0,91.0,84.0,92.0,77.0,76.0,94.0,97.0,95.0,101.0,99.0,100.0,101.0,109.0,91.0,101.0,103.0,101.0,88.0,70.0,96.0,78.0,72.0,77.0,63.0,87.0,61.0,67.0,62.0,57.0,71.0,55.0,70.0,69.0,37.0,43.0,35.0,31.0,20.0,26.0,19.0,29.0,20.0,13.0,17.0,21.0,15.0,12.0,7.0,6.0,12.0 N81067,29.0,36.0,41.0,50.0,52.0,55.0,50.0,57.0,65.0,56.0,59.0,55.0,55.0,58.0,60.0,69.0,40.0,46.0,45.0,41.0,35.0,41.0,31.0,27.0,38.0,36.0,35.0,45.0,47.0,52.0,49.0,62.0,60.0,68.0,63.0,60.0,67.0,56.0,63.0,77.0,48.0,79.0,53.0,48.0,75.0,56.0,74.0,59.0,39.0,43.0,56.0,75.0,69.0,74.0,60.0,71.0,75.0,61.0,52.0,55.0,51.0,80.0,66.0,63.0,48.0,68.0,51.0,52.0,54.0,48.0,39.0,39.0,47.0,46.0,52.0,44.0,47.0,81.0,57.0,46.0,37.0,29.0,29.0,27.0,14.0,13.0,11.0,16.0,19.0,10.0,11.0,6.0,7.0,4.0,1.0,12.0 N81068,72.0,63.0,76.0,91.0,78.0,77.0,81.0,85.0,86.0,85.0,93.0,82.0,97.0,88.0,100.0,99.0,86.0,87.0,84.0,87.0,68.0,76.0,77.0,71.0,92.0,83.0,87.0,101.0,121.0,106.0,124.0,119.0,127.0,126.0,119.0,124.0,121.0,111.0,129.0,117.0,110.0,93.0,101.0,101.0,78.0,74.0,85.0,68.0,90.0,97.0,86.0,74.0,92.0,104.0,82.0,97.0,120.0,101.0,93.0,100.0,110.0,95.0,100.0,82.0,81.0,86.0,78.0,66.0,68.0,71.0,73.0,65.0,47.0,65.0,64.0,60.0,58.0,61.0,50.0,44.0,40.0,36.0,36.0,29.0,24.0,24.0,27.0,30.0,18.0,14.0,15.0,6.0,10.0,7.0,9.0,11.0 N81069,18.0,18.0,14.0,21.0,17.0,21.0,17.0,22.0,22.0,13.0,13.0,20.0,18.0,17.0,16.0,15.0,22.0,16.0,22.0,20.0,9.0,17.0,23.0,25.0,13.0,21.0,16.0,27.0,21.0,22.0,15.0,27.0,32.0,22.0,30.0,29.0,25.0,22.0,32.0,23.0,30.0,26.0,25.0,22.0,24.0,25.0,24.0,18.0,30.0,24.0,34.0,34.0,33.0,32.0,43.0,35.0,39.0,33.0,38.0,43.0,54.0,60.0,35.0,38.0,48.0,49.0,33.0,33.0,37.0,29.0,19.0,35.0,34.0,31.0,37.0,25.0,24.0,32.0,38.0,21.0,34.0,24.0,21.0,15.0,17.0,14.0,17.0,15.0,12.0,15.0,10.0,4.0,4.0,3.0,,4.0 N81070,48.0,44.0,38.0,57.0,47.0,58.0,52.0,52.0,58.0,49.0,65.0,49.0,58.0,60.0,49.0,60.0,64.0,54.0,62.0,51.0,46.0,45.0,42.0,39.0,48.0,46.0,52.0,49.0,50.0,53.0,61.0,58.0,63.0,83.0,67.0,74.0,73.0,76.0,87.0,78.0,88.0,80.0,65.0,82.0,76.0,71.0,68.0,67.0,48.0,59.0,56.0,72.0,66.0,71.0,73.0,67.0,73.0,64.0,80.0,66.0,59.0,75.0,72.0,68.0,67.0,72.0,65.0,63.0,45.0,44.0,54.0,49.0,55.0,49.0,66.0,40.0,60.0,50.0,54.0,45.0,43.0,45.0,34.0,33.0,32.0,39.0,26.0,27.0,27.0,18.0,14.0,15.0,15.0,8.0,7.0,14.0 N81071,9.0,16.0,16.0,21.0,20.0,14.0,15.0,17.0,20.0,17.0,30.0,18.0,25.0,25.0,17.0,18.0,17.0,21.0,17.0,21.0,20.0,21.0,15.0,15.0,7.0,19.0,16.0,18.0,16.0,25.0,29.0,19.0,21.0,22.0,23.0,21.0,19.0,23.0,26.0,23.0,25.0,21.0,14.0,26.0,28.0,25.0,26.0,24.0,25.0,24.0,29.0,30.0,35.0,34.0,35.0,47.0,40.0,40.0,38.0,35.0,34.0,53.0,47.0,47.0,31.0,30.0,39.0,44.0,37.0,28.0,36.0,28.0,26.0,30.0,38.0,26.0,44.0,33.0,32.0,30.0,23.0,23.0,29.0,14.0,12.0,13.0,14.0,12.0,7.0,5.0,4.0,3.0,4.0,2.0,2.0,4.0 N81072,28.0,33.0,40.0,35.0,33.0,44.0,36.0,50.0,38.0,45.0,43.0,50.0,54.0,52.0,53.0,53.0,39.0,58.0,63.0,60.0,41.0,47.0,46.0,46.0,38.0,34.0,48.0,31.0,50.0,37.0,39.0,51.0,61.0,53.0,54.0,38.0,61.0,40.0,50.0,52.0,57.0,53.0,47.0,55.0,53.0,71.0,47.0,43.0,58.0,49.0,47.0,56.0,57.0,39.0,54.0,42.0,47.0,40.0,43.0,48.0,42.0,58.0,44.0,48.0,49.0,49.0,49.0,54.0,71.0,44.0,57.0,53.0,44.0,53.0,37.0,50.0,36.0,36.0,31.0,22.0,12.0,12.0,11.0,16.0,9.0,13.0,7.0,5.0,3.0,7.0,1.0,4.0,2.0,1.0,1.0,4.0 N81074,31.0,32.0,35.0,42.0,35.0,37.0,33.0,26.0,44.0,35.0,32.0,35.0,41.0,47.0,47.0,39.0,37.0,38.0,34.0,32.0,37.0,29.0,29.0,30.0,38.0,28.0,36.0,37.0,39.0,38.0,38.0,45.0,37.0,36.0,46.0,33.0,35.0,50.0,40.0,45.0,33.0,43.0,40.0,37.0,37.0,31.0,29.0,24.0,40.0,25.0,30.0,22.0,36.0,33.0,41.0,46.0,43.0,39.0,33.0,39.0,38.0,35.0,36.0,22.0,41.0,25.0,22.0,27.0,32.0,27.0,24.0,26.0,22.0,20.0,24.0,13.0,18.0,25.0,21.0,19.0,19.0,11.0,17.0,12.0,9.0,4.0,5.0,6.0,6.0,5.0,6.0,3.0,1.0,,,1.0 N81075,43.0,54.0,66.0,66.0,61.0,72.0,78.0,63.0,65.0,88.0,87.0,74.0,86.0,84.0,100.0,74.0,94.0,99.0,83.0,71.0,54.0,55.0,67.0,58.0,87.0,70.0,98.0,81.0,91.0,90.0,91.0,86.0,100.0,102.0,99.0,90.0,80.0,94.0,70.0,102.0,92.0,73.0,123.0,104.0,98.0,115.0,101.0,99.0,111.0,110.0,112.0,105.0,108.0,114.0,102.0,132.0,106.0,111.0,138.0,134.0,126.0,140.0,138.0,135.0,115.0,112.0,120.0,97.0,106.0,88.0,93.0,103.0,76.0,88.0,96.0,97.0,95.0,107.0,127.0,85.0,95.0,76.0,73.0,66.0,67.0,80.0,59.0,53.0,46.0,47.0,27.0,41.0,29.0,17.0,21.0,51.0 N81077,39.0,40.0,56.0,64.0,50.0,64.0,60.0,63.0,66.0,55.0,60.0,72.0,77.0,85.0,66.0,72.0,69.0,71.0,58.0,56.0,40.0,63.0,44.0,52.0,52.0,47.0,54.0,39.0,49.0,57.0,62.0,64.0,50.0,80.0,76.0,55.0,70.0,76.0,68.0,73.0,69.0,84.0,85.0,95.0,74.0,88.0,75.0,78.0,82.0,65.0,84.0,111.0,83.0,102.0,96.0,92.0,103.0,107.0,108.0,118.0,98.0,117.0,96.0,104.0,84.0,80.0,76.0,95.0,81.0,85.0,74.0,77.0,70.0,74.0,94.0,79.0,94.0,119.0,117.0,83.0,77.0,75.0,64.0,67.0,59.0,50.0,50.0,37.0,43.0,28.0,34.0,17.0,11.0,12.0,12.0,30.0 N81079,28.0,37.0,42.0,48.0,46.0,44.0,30.0,54.0,59.0,56.0,45.0,46.0,60.0,50.0,49.0,54.0,53.0,44.0,45.0,68.0,74.0,88.0,83.0,82.0,59.0,61.0,81.0,67.0,65.0,62.0,62.0,71.0,72.0,67.0,71.0,56.0,70.0,71.0,79.0,53.0,56.0,56.0,66.0,78.0,59.0,65.0,60.0,75.0,51.0,61.0,60.0,51.0,54.0,59.0,69.0,69.0,68.0,61.0,68.0,92.0,75.0,85.0,71.0,71.0,75.0,64.0,61.0,39.0,48.0,47.0,41.0,59.0,39.0,34.0,51.0,40.0,37.0,36.0,42.0,30.0,33.0,33.0,24.0,29.0,22.0,16.0,21.0,23.0,9.0,13.0,13.0,10.0,4.0,3.0,3.0,14.0 N81080,34.0,38.0,30.0,36.0,29.0,50.0,40.0,36.0,40.0,31.0,27.0,37.0,29.0,23.0,24.0,23.0,23.0,25.0,58.0,80.0,104.0,98.0,105.0,90.0,99.0,93.0,121.0,96.0,109.0,111.0,107.0,80.0,81.0,78.0,69.0,78.0,74.0,65.0,57.0,63.0,60.0,46.0,39.0,52.0,51.0,55.0,41.0,40.0,37.0,52.0,45.0,33.0,36.0,38.0,47.0,43.0,48.0,40.0,37.0,50.0,54.0,44.0,49.0,55.0,50.0,38.0,49.0,42.0,48.0,41.0,30.0,45.0,40.0,45.0,40.0,38.0,36.0,35.0,43.0,36.0,26.0,22.0,18.0,21.0,14.0,21.0,15.0,12.0,9.0,14.0,11.0,6.0,7.0,6.0,1.0,5.0 N81081,15.0,21.0,18.0,20.0,21.0,32.0,35.0,36.0,31.0,38.0,43.0,34.0,39.0,25.0,36.0,39.0,45.0,46.0,90.0,135.0,158.0,209.0,151.0,122.0,94.0,126.0,120.0,106.0,105.0,105.0,69.0,71.0,85.0,64.0,61.0,59.0,67.0,68.0,64.0,66.0,55.0,48.0,55.0,53.0,47.0,51.0,49.0,39.0,47.0,39.0,45.0,37.0,46.0,55.0,46.0,57.0,50.0,38.0,47.0,52.0,51.0,52.0,48.0,46.0,49.0,32.0,43.0,51.0,28.0,48.0,36.0,30.0,35.0,40.0,36.0,34.0,40.0,52.0,41.0,24.0,25.0,31.0,32.0,24.0,15.0,17.0,13.0,16.0,8.0,15.0,10.0,13.0,3.0,10.0,1.0,9.0 N81082,51.0,42.0,39.0,59.0,52.0,59.0,59.0,72.0,61.0,64.0,77.0,80.0,80.0,67.0,84.0,87.0,72.0,100.0,92.0,97.0,96.0,91.0,83.0,73.0,77.0,72.0,72.0,71.0,87.0,65.0,88.0,66.0,102.0,97.0,105.0,113.0,116.0,103.0,91.0,100.0,97.0,113.0,94.0,93.0,86.0,102.0,84.0,96.0,70.0,88.0,78.0,84.0,84.0,125.0,115.0,124.0,118.0,95.0,93.0,121.0,126.0,133.0,130.0,104.0,93.0,93.0,89.0,82.0,84.0,92.0,97.0,72.0,79.0,85.0,73.0,76.0,91.0,84.0,92.0,72.0,81.0,63.0,50.0,42.0,38.0,49.0,37.0,37.0,32.0,31.0,23.0,17.0,16.0,17.0,8.0,18.0 N81083,24.0,15.0,27.0,26.0,27.0,37.0,31.0,32.0,24.0,36.0,33.0,41.0,33.0,40.0,32.0,36.0,33.0,39.0,35.0,28.0,19.0,35.0,26.0,26.0,29.0,34.0,36.0,32.0,33.0,28.0,39.0,35.0,24.0,39.0,50.0,41.0,36.0,41.0,38.0,34.0,37.0,38.0,41.0,42.0,32.0,47.0,36.0,29.0,31.0,28.0,39.0,26.0,43.0,22.0,43.0,32.0,28.0,35.0,35.0,28.0,23.0,28.0,30.0,38.0,20.0,19.0,26.0,15.0,17.0,21.0,12.0,16.0,19.0,14.0,11.0,14.0,12.0,18.0,12.0,13.0,12.0,7.0,10.0,10.0,7.0,10.0,6.0,3.0,4.0,6.0,1.0,3.0,4.0,2.0,2.0,6.0 N81084,104.0,94.0,79.0,98.0,96.0,108.0,98.0,100.0,111.0,105.0,107.0,102.0,114.0,107.0,114.0,118.0,101.0,106.0,99.0,84.0,79.0,88.0,76.0,92.0,86.0,99.0,117.0,95.0,119.0,125.0,133.0,146.0,128.0,139.0,136.0,126.0,156.0,142.0,112.0,150.0,152.0,124.0,124.0,109.0,139.0,142.0,108.0,114.0,113.0,116.0,143.0,154.0,165.0,179.0,162.0,165.0,165.0,163.0,174.0,174.0,186.0,163.0,178.0,149.0,153.0,126.0,131.0,127.0,131.0,129.0,115.0,116.0,95.0,118.0,134.0,109.0,134.0,167.0,130.0,107.0,120.0,104.0,85.0,68.0,58.0,52.0,81.0,51.0,38.0,57.0,33.0,23.0,17.0,22.0,19.0,32.0 N81085,35.0,33.0,37.0,44.0,31.0,45.0,42.0,55.0,45.0,49.0,42.0,57.0,67.0,66.0,59.0,57.0,56.0,53.0,50.0,34.0,45.0,38.0,51.0,38.0,43.0,56.0,65.0,66.0,71.0,51.0,72.0,77.0,71.0,78.0,76.0,68.0,89.0,63.0,55.0,68.0,65.0,84.0,62.0,67.0,67.0,67.0,58.0,57.0,47.0,57.0,62.0,62.0,64.0,64.0,68.0,61.0,57.0,63.0,71.0,84.0,72.0,62.0,66.0,69.0,70.0,65.0,51.0,57.0,59.0,45.0,40.0,38.0,47.0,46.0,52.0,51.0,56.0,59.0,57.0,41.0,54.0,43.0,35.0,32.0,36.0,16.0,30.0,41.0,17.0,24.0,18.0,10.0,9.0,5.0,8.0,24.0 N81086,102.0,84.0,75.0,83.0,94.0,87.0,102.0,90.0,117.0,121.0,113.0,105.0,113.0,104.0,109.0,114.0,111.0,111.0,69.0,64.0,66.0,65.0,81.0,77.0,84.0,93.0,80.0,83.0,107.0,103.0,104.0,117.0,108.0,120.0,125.0,121.0,137.0,142.0,125.0,138.0,140.0,138.0,147.0,159.0,144.0,145.0,123.0,119.0,120.0,116.0,107.0,119.0,125.0,125.0,110.0,115.0,107.0,118.0,96.0,127.0,90.0,101.0,83.0,75.0,73.0,74.0,67.0,73.0,52.0,42.0,47.0,50.0,57.0,75.0,47.0,51.0,59.0,63.0,58.0,43.0,48.0,30.0,31.0,35.0,27.0,26.0,29.0,20.0,27.0,19.0,19.0,19.0,10.0,11.0,4.0,18.0 N81087,75.0,90.0,90.0,98.0,94.0,100.0,108.0,138.0,127.0,124.0,159.0,163.0,129.0,144.0,152.0,142.0,133.0,154.0,120.0,118.0,97.0,102.0,85.0,104.0,90.0,97.0,115.0,92.0,102.0,126.0,127.0,135.0,125.0,122.0,161.0,158.0,133.0,180.0,142.0,153.0,156.0,153.0,166.0,200.0,174.0,149.0,182.0,157.0,185.0,157.0,168.0,197.0,167.0,198.0,197.0,176.0,188.0,177.0,203.0,190.0,200.0,178.0,172.0,169.0,167.0,140.0,158.0,155.0,173.0,135.0,129.0,117.0,112.0,145.0,151.0,139.0,165.0,147.0,163.0,116.0,120.0,105.0,89.0,74.0,82.0,79.0,77.0,73.0,55.0,36.0,47.0,35.0,41.0,26.0,21.0,50.0 N81088,51.0,43.0,52.0,53.0,48.0,53.0,46.0,48.0,66.0,50.0,80.0,72.0,66.0,74.0,58.0,60.0,58.0,72.0,57.0,52.0,45.0,46.0,69.0,69.0,76.0,81.0,95.0,90.0,102.0,103.0,109.0,91.0,87.0,94.0,97.0,96.0,110.0,101.0,104.0,79.0,91.0,87.0,98.0,66.0,67.0,88.0,81.0,77.0,69.0,83.0,74.0,84.0,78.0,76.0,90.0,87.0,88.0,103.0,92.0,74.0,71.0,84.0,90.0,79.0,92.0,63.0,66.0,73.0,65.0,67.0,83.0,73.0,70.0,59.0,66.0,65.0,49.0,73.0,53.0,53.0,42.0,61.0,30.0,34.0,28.0,25.0,26.0,32.0,28.0,15.0,18.0,15.0,11.0,10.0,7.0,31.0 N81089,31.0,26.0,28.0,40.0,34.0,35.0,38.0,34.0,46.0,44.0,41.0,45.0,54.0,45.0,52.0,61.0,44.0,63.0,34.0,39.0,38.0,39.0,37.0,48.0,33.0,46.0,46.0,37.0,32.0,49.0,36.0,37.0,53.0,63.0,61.0,50.0,53.0,60.0,54.0,63.0,62.0,55.0,65.0,63.0,54.0,56.0,51.0,45.0,51.0,46.0,53.0,47.0,59.0,67.0,61.0,56.0,59.0,49.0,60.0,55.0,52.0,53.0,51.0,55.0,42.0,49.0,51.0,52.0,33.0,42.0,44.0,38.0,37.0,39.0,47.0,43.0,43.0,45.0,56.0,38.0,31.0,44.0,37.0,19.0,28.0,23.0,22.0,26.0,11.0,28.0,14.0,13.0,7.0,5.0,6.0,16.0 N81090,24.0,28.0,41.0,28.0,20.0,23.0,26.0,28.0,24.0,34.0,33.0,20.0,30.0,31.0,42.0,23.0,29.0,32.0,27.0,24.0,16.0,22.0,22.0,37.0,29.0,24.0,38.0,29.0,39.0,40.0,33.0,32.0,42.0,30.0,35.0,28.0,39.0,42.0,33.0,25.0,37.0,33.0,33.0,34.0,35.0,39.0,28.0,39.0,32.0,49.0,26.0,33.0,47.0,42.0,30.0,35.0,34.0,40.0,36.0,34.0,32.0,30.0,32.0,41.0,32.0,24.0,24.0,21.0,29.0,25.0,23.0,27.0,27.0,31.0,27.0,24.0,31.0,30.0,31.0,24.0,33.0,26.0,20.0,17.0,14.0,14.0,9.0,18.0,15.0,13.0,12.0,5.0,6.0,7.0,4.0,17.0 N81092,71.0,70.0,81.0,64.0,58.0,91.0,80.0,75.0,85.0,72.0,76.0,69.0,92.0,85.0,89.0,69.0,81.0,88.0,58.0,79.0,53.0,72.0,61.0,75.0,60.0,82.0,104.0,86.0,118.0,91.0,94.0,113.0,133.0,122.0,117.0,112.0,115.0,107.0,104.0,114.0,104.0,98.0,97.0,88.0,96.0,105.0,87.0,78.0,71.0,98.0,71.0,89.0,88.0,114.0,106.0,89.0,119.0,110.0,108.0,116.0,111.0,109.0,96.0,112.0,112.0,88.0,95.0,68.0,95.0,59.0,74.0,58.0,59.0,64.0,75.0,74.0,62.0,61.0,53.0,41.0,53.0,44.0,38.0,33.0,43.0,45.0,21.0,42.0,39.0,20.0,15.0,12.0,18.0,25.0,12.0,22.0 N81093,62.0,75.0,69.0,89.0,74.0,85.0,64.0,69.0,96.0,101.0,84.0,77.0,95.0,77.0,98.0,78.0,76.0,96.0,80.0,78.0,82.0,81.0,90.0,78.0,83.0,85.0,96.0,104.0,102.0,113.0,84.0,94.0,112.0,103.0,119.0,99.0,134.0,95.0,109.0,106.0,104.0,101.0,107.0,100.0,98.0,94.0,117.0,98.0,85.0,101.0,83.0,104.0,105.0,94.0,116.0,111.0,125.0,112.0,106.0,120.0,121.0,128.0,125.0,116.0,106.0,101.0,114.0,99.0,107.0,78.0,98.0,83.0,96.0,81.0,101.0,88.0,90.0,85.0,73.0,53.0,53.0,68.0,49.0,40.0,60.0,41.0,26.0,42.0,26.0,26.0,19.0,16.0,21.0,6.0,7.0,16.0 N81096,26.0,29.0,47.0,47.0,49.0,47.0,31.0,52.0,47.0,46.0,63.0,59.0,52.0,48.0,66.0,65.0,53.0,68.0,55.0,59.0,62.0,39.0,32.0,52.0,53.0,50.0,50.0,49.0,53.0,49.0,66.0,65.0,59.0,59.0,51.0,69.0,66.0,72.0,55.0,61.0,65.0,79.0,61.0,68.0,68.0,61.0,51.0,59.0,60.0,54.0,83.0,67.0,56.0,63.0,72.0,47.0,59.0,46.0,48.0,45.0,51.0,70.0,55.0,54.0,52.0,45.0,49.0,46.0,42.0,60.0,57.0,38.0,52.0,64.0,62.0,65.0,53.0,50.0,35.0,18.0,14.0,19.0,11.0,20.0,6.0,7.0,11.0,10.0,7.0,5.0,3.0,3.0,3.0,1.0,3.0,3.0 N81097,36.0,26.0,15.0,20.0,19.0,22.0,38.0,21.0,25.0,23.0,25.0,15.0,31.0,23.0,18.0,20.0,22.0,20.0,21.0,20.0,24.0,18.0,26.0,36.0,32.0,43.0,46.0,30.0,43.0,43.0,44.0,48.0,54.0,46.0,36.0,40.0,47.0,38.0,38.0,39.0,30.0,29.0,29.0,29.0,37.0,28.0,26.0,34.0,26.0,24.0,27.0,23.0,26.0,21.0,22.0,30.0,28.0,28.0,22.0,34.0,30.0,13.0,26.0,18.0,17.0,17.0,13.0,27.0,12.0,16.0,25.0,19.0,13.0,15.0,20.0,11.0,14.0,13.0,15.0,8.0,9.0,10.0,9.0,6.0,9.0,10.0,6.0,4.0,3.0,5.0,1.0,,1.0,,2.0,3.0 N81100,39.0,45.0,38.0,41.0,36.0,44.0,48.0,45.0,65.0,56.0,52.0,50.0,48.0,42.0,63.0,54.0,48.0,41.0,40.0,35.0,45.0,25.0,29.0,38.0,33.0,41.0,41.0,44.0,43.0,31.0,39.0,45.0,65.0,44.0,61.0,47.0,61.0,54.0,57.0,60.0,43.0,50.0,52.0,56.0,52.0,59.0,62.0,50.0,41.0,57.0,44.0,46.0,54.0,57.0,47.0,58.0,49.0,54.0,61.0,60.0,54.0,53.0,57.0,52.0,55.0,38.0,49.0,53.0,48.0,45.0,44.0,46.0,44.0,40.0,42.0,52.0,49.0,58.0,43.0,33.0,31.0,38.0,24.0,28.0,28.0,23.0,12.0,14.0,13.0,13.0,14.0,10.0,5.0,3.0,7.0,10.0 N81101,28.0,31.0,38.0,36.0,42.0,29.0,39.0,44.0,38.0,51.0,28.0,31.0,44.0,41.0,49.0,48.0,41.0,34.0,53.0,31.0,33.0,31.0,35.0,32.0,46.0,29.0,38.0,44.0,51.0,49.0,42.0,56.0,49.0,68.0,77.0,47.0,47.0,53.0,49.0,59.0,59.0,64.0,66.0,53.0,55.0,66.0,58.0,60.0,41.0,58.0,50.0,61.0,52.0,61.0,70.0,76.0,74.0,65.0,60.0,65.0,58.0,70.0,50.0,62.0,45.0,54.0,58.0,36.0,34.0,45.0,27.0,43.0,41.0,44.0,37.0,38.0,36.0,45.0,42.0,43.0,36.0,31.0,28.0,16.0,13.0,21.0,15.0,18.0,23.0,11.0,14.0,7.0,7.0,10.0,3.0,4.0 N81102,15.0,12.0,14.0,17.0,7.0,15.0,14.0,9.0,9.0,7.0,15.0,14.0,7.0,7.0,8.0,11.0,15.0,9.0,22.0,31.0,45.0,68.0,53.0,59.0,49.0,58.0,56.0,54.0,46.0,46.0,32.0,45.0,41.0,28.0,30.0,12.0,30.0,32.0,22.0,24.0,22.0,20.0,9.0,13.0,15.0,20.0,12.0,18.0,17.0,12.0,12.0,14.0,13.0,15.0,11.0,14.0,18.0,15.0,21.0,16.0,11.0,26.0,25.0,24.0,19.0,28.0,14.0,12.0,16.0,26.0,19.0,20.0,18.0,18.0,17.0,22.0,21.0,21.0,15.0,26.0,21.0,30.0,24.0,30.0,31.0,29.0,35.0,31.0,28.0,32.0,39.0,27.0,35.0,27.0,28.0,94.0 N81107,12.0,18.0,17.0,16.0,25.0,24.0,17.0,19.0,24.0,23.0,22.0,26.0,19.0,21.0,22.0,23.0,21.0,17.0,22.0,18.0,24.0,16.0,20.0,18.0,18.0,25.0,19.0,18.0,24.0,17.0,23.0,25.0,22.0,35.0,26.0,32.0,27.0,27.0,28.0,43.0,32.0,31.0,41.0,32.0,21.0,21.0,20.0,26.0,31.0,21.0,24.0,25.0,26.0,28.0,22.0,27.0,25.0,24.0,25.0,34.0,17.0,17.0,29.0,27.0,24.0,14.0,21.0,22.0,23.0,25.0,24.0,16.0,16.0,10.0,18.0,16.0,23.0,14.0,13.0,10.0,12.0,15.0,14.0,6.0,5.0,5.0,3.0,6.0,4.0,2.0,3.0,2.0,1.0,1.0,2.0,3.0 N81108,30.0,37.0,38.0,60.0,49.0,42.0,59.0,47.0,57.0,66.0,76.0,88.0,81.0,78.0,80.0,65.0,74.0,80.0,72.0,41.0,50.0,46.0,44.0,48.0,36.0,35.0,34.0,44.0,39.0,34.0,48.0,42.0,40.0,45.0,61.0,48.0,59.0,48.0,67.0,66.0,63.0,57.0,85.0,91.0,75.0,101.0,92.0,86.0,92.0,82.0,90.0,75.0,92.0,95.0,108.0,77.0,83.0,85.0,66.0,86.0,77.0,90.0,57.0,78.0,82.0,84.0,65.0,70.0,50.0,66.0,51.0,51.0,47.0,61.0,52.0,50.0,59.0,70.0,66.0,54.0,62.0,53.0,36.0,66.0,24.0,32.0,37.0,37.0,29.0,18.0,18.0,20.0,9.0,10.0,8.0,22.0 N81109,18.0,32.0,16.0,30.0,25.0,33.0,40.0,47.0,47.0,47.0,57.0,50.0,40.0,41.0,49.0,39.0,31.0,44.0,38.0,37.0,36.0,35.0,44.0,34.0,34.0,30.0,27.0,36.0,46.0,33.0,37.0,36.0,38.0,37.0,31.0,48.0,48.0,51.0,45.0,40.0,54.0,49.0,48.0,46.0,55.0,40.0,46.0,53.0,47.0,41.0,50.0,59.0,43.0,53.0,49.0,58.0,37.0,45.0,56.0,55.0,56.0,42.0,36.0,47.0,32.0,33.0,32.0,37.0,33.0,32.0,28.0,30.0,25.0,29.0,41.0,24.0,32.0,42.0,34.0,18.0,27.0,23.0,20.0,15.0,14.0,15.0,13.0,13.0,10.0,7.0,6.0,3.0,6.0,2.0,3.0,4.0 N81111,34.0,34.0,25.0,40.0,42.0,42.0,39.0,47.0,48.0,54.0,41.0,36.0,50.0,44.0,50.0,31.0,43.0,41.0,27.0,33.0,32.0,22.0,20.0,25.0,35.0,32.0,37.0,32.0,38.0,34.0,45.0,60.0,41.0,50.0,52.0,45.0,61.0,58.0,58.0,51.0,54.0,53.0,44.0,40.0,40.0,44.0,49.0,36.0,29.0,38.0,44.0,45.0,42.0,46.0,38.0,42.0,55.0,54.0,51.0,55.0,56.0,54.0,57.0,57.0,48.0,53.0,55.0,49.0,51.0,37.0,37.0,46.0,39.0,48.0,36.0,40.0,37.0,51.0,44.0,36.0,35.0,23.0,29.0,23.0,26.0,26.0,17.0,14.0,20.0,15.0,16.0,6.0,12.0,7.0,9.0,20.0 N81113,32.0,37.0,36.0,33.0,29.0,44.0,34.0,37.0,18.0,38.0,38.0,50.0,42.0,44.0,35.0,43.0,37.0,41.0,33.0,32.0,27.0,27.0,31.0,36.0,32.0,36.0,48.0,48.0,53.0,48.0,44.0,56.0,47.0,60.0,49.0,60.0,51.0,61.0,50.0,47.0,45.0,53.0,45.0,47.0,52.0,38.0,38.0,38.0,46.0,52.0,39.0,48.0,52.0,58.0,45.0,58.0,48.0,55.0,73.0,47.0,61.0,51.0,41.0,64.0,53.0,39.0,39.0,34.0,60.0,37.0,31.0,39.0,40.0,29.0,36.0,35.0,27.0,30.0,37.0,19.0,16.0,14.0,15.0,15.0,12.0,7.0,20.0,12.0,11.0,13.0,4.0,5.0,3.0,5.0,,5.0 N81114,23.0,37.0,44.0,42.0,33.0,39.0,55.0,53.0,53.0,65.0,54.0,55.0,52.0,71.0,66.0,49.0,68.0,54.0,42.0,49.0,52.0,39.0,47.0,38.0,50.0,53.0,64.0,62.0,61.0,66.0,57.0,57.0,72.0,73.0,79.0,66.0,63.0,78.0,80.0,71.0,81.0,69.0,69.0,84.0,74.0,62.0,70.0,56.0,65.0,61.0,63.0,74.0,70.0,60.0,65.0,74.0,58.0,74.0,81.0,98.0,73.0,92.0,93.0,88.0,98.0,86.0,87.0,108.0,64.0,65.0,67.0,77.0,66.0,69.0,50.0,52.0,49.0,63.0,65.0,49.0,34.0,32.0,28.0,26.0,22.0,17.0,13.0,19.0,14.0,16.0,11.0,1.0,7.0,9.0,3.0,7.0 N81115,34.0,52.0,45.0,35.0,55.0,56.0,43.0,61.0,55.0,62.0,43.0,60.0,57.0,55.0,52.0,42.0,54.0,63.0,44.0,41.0,37.0,39.0,20.0,42.0,46.0,49.0,46.0,45.0,44.0,43.0,57.0,64.0,52.0,68.0,75.0,71.0,78.0,71.0,69.0,68.0,55.0,77.0,63.0,59.0,64.0,49.0,57.0,50.0,36.0,49.0,49.0,49.0,47.0,40.0,52.0,33.0,58.0,42.0,52.0,43.0,41.0,45.0,61.0,38.0,38.0,43.0,30.0,26.0,34.0,28.0,43.0,33.0,30.0,36.0,31.0,42.0,30.0,40.0,32.0,30.0,24.0,21.0,22.0,20.0,14.0,8.0,8.0,14.0,5.0,1.0,3.0,5.0,,2.0,1.0,7.0 N81117,27.0,29.0,32.0,31.0,31.0,36.0,33.0,32.0,38.0,36.0,41.0,35.0,41.0,44.0,33.0,41.0,50.0,35.0,34.0,26.0,26.0,19.0,27.0,30.0,25.0,29.0,37.0,41.0,34.0,45.0,41.0,54.0,42.0,45.0,38.0,44.0,53.0,52.0,50.0,46.0,38.0,42.0,44.0,51.0,34.0,33.0,38.0,35.0,33.0,32.0,27.0,49.0,32.0,34.0,35.0,40.0,32.0,41.0,36.0,36.0,42.0,38.0,31.0,30.0,34.0,23.0,25.0,27.0,30.0,23.0,29.0,21.0,21.0,16.0,24.0,23.0,29.0,21.0,26.0,10.0,17.0,20.0,13.0,11.0,5.0,7.0,7.0,3.0,7.0,9.0,,3.0,5.0,1.0,, N81118,21.0,28.0,42.0,35.0,35.0,36.0,44.0,45.0,54.0,37.0,37.0,49.0,44.0,53.0,49.0,44.0,54.0,52.0,58.0,31.0,38.0,23.0,34.0,31.0,37.0,35.0,31.0,35.0,48.0,35.0,41.0,60.0,57.0,59.0,47.0,65.0,58.0,53.0,55.0,58.0,59.0,65.0,57.0,58.0,54.0,60.0,48.0,51.0,52.0,46.0,46.0,57.0,73.0,67.0,58.0,67.0,50.0,67.0,70.0,53.0,62.0,77.0,56.0,53.0,69.0,57.0,50.0,60.0,53.0,53.0,64.0,52.0,52.0,50.0,55.0,49.0,44.0,50.0,43.0,53.0,29.0,36.0,38.0,29.0,19.0,15.0,19.0,19.0,22.0,18.0,17.0,8.0,9.0,5.0,8.0,15.0 N81119,26.0,17.0,22.0,34.0,22.0,36.0,29.0,32.0,39.0,45.0,44.0,34.0,47.0,41.0,33.0,50.0,32.0,35.0,30.0,29.0,23.0,28.0,21.0,27.0,14.0,29.0,28.0,34.0,28.0,28.0,33.0,26.0,37.0,48.0,38.0,43.0,42.0,47.0,63.0,45.0,51.0,37.0,35.0,34.0,29.0,32.0,33.0,23.0,32.0,30.0,40.0,27.0,31.0,36.0,27.0,27.0,38.0,25.0,31.0,28.0,29.0,27.0,40.0,37.0,24.0,22.0,23.0,27.0,20.0,25.0,20.0,24.0,19.0,18.0,20.0,24.0,15.0,18.0,26.0,18.0,4.0,15.0,14.0,9.0,5.0,10.0,6.0,9.0,8.0,4.0,6.0,1.0,1.0,1.0,3.0,3.0 N81120,18.0,16.0,24.0,27.0,21.0,27.0,35.0,27.0,33.0,33.0,29.0,35.0,27.0,47.0,42.0,24.0,32.0,53.0,29.0,22.0,28.0,20.0,16.0,20.0,23.0,16.0,19.0,25.0,25.0,18.0,26.0,23.0,26.0,30.0,32.0,28.0,36.0,35.0,45.0,33.0,28.0,23.0,37.0,33.0,41.0,37.0,29.0,32.0,34.0,32.0,52.0,58.0,46.0,51.0,55.0,55.0,45.0,41.0,47.0,46.0,56.0,65.0,42.0,55.0,46.0,47.0,43.0,38.0,48.0,41.0,32.0,31.0,38.0,38.0,32.0,39.0,41.0,33.0,40.0,39.0,24.0,30.0,19.0,21.0,18.0,14.0,8.0,11.0,11.0,7.0,7.0,8.0,6.0,5.0,,11.0 N81121,21.0,34.0,35.0,13.0,23.0,34.0,32.0,25.0,29.0,28.0,19.0,28.0,26.0,35.0,25.0,30.0,33.0,38.0,41.0,56.0,68.0,78.0,70.0,63.0,70.0,78.0,77.0,57.0,78.0,60.0,67.0,61.0,57.0,59.0,52.0,57.0,59.0,51.0,47.0,61.0,43.0,40.0,46.0,53.0,37.0,48.0,46.0,40.0,28.0,42.0,39.0,48.0,41.0,50.0,46.0,41.0,53.0,44.0,41.0,42.0,34.0,30.0,35.0,25.0,39.0,32.0,25.0,38.0,31.0,35.0,24.0,30.0,31.0,21.0,34.0,30.0,35.0,40.0,41.0,22.0,25.0,21.0,17.0,16.0,18.0,23.0,14.0,10.0,10.0,14.0,11.0,8.0,6.0,5.0,1.0,10.0 N81122,29.0,33.0,33.0,40.0,51.0,35.0,39.0,50.0,67.0,68.0,50.0,60.0,52.0,60.0,63.0,62.0,59.0,64.0,43.0,61.0,47.0,57.0,50.0,49.0,47.0,50.0,53.0,68.0,53.0,65.0,57.0,68.0,59.0,75.0,72.0,64.0,70.0,58.0,67.0,64.0,70.0,78.0,85.0,59.0,74.0,78.0,60.0,66.0,50.0,55.0,67.0,76.0,77.0,72.0,94.0,88.0,78.0,80.0,110.0,93.0,101.0,100.0,103.0,86.0,84.0,94.0,86.0,79.0,64.0,74.0,65.0,62.0,62.0,45.0,52.0,49.0,58.0,39.0,44.0,28.0,28.0,18.0,27.0,27.0,19.0,17.0,19.0,15.0,7.0,12.0,7.0,4.0,2.0,4.0,4.0,14.0 N81123,34.0,39.0,49.0,44.0,50.0,40.0,38.0,50.0,41.0,48.0,38.0,39.0,51.0,56.0,61.0,37.0,32.0,44.0,34.0,36.0,36.0,44.0,32.0,46.0,45.0,46.0,44.0,28.0,52.0,51.0,49.0,46.0,62.0,72.0,79.0,62.0,63.0,55.0,54.0,56.0,47.0,44.0,49.0,46.0,36.0,34.0,42.0,30.0,38.0,34.0,41.0,43.0,48.0,48.0,45.0,55.0,52.0,58.0,50.0,61.0,52.0,38.0,46.0,46.0,30.0,29.0,31.0,40.0,17.0,21.0,24.0,31.0,29.0,15.0,19.0,19.0,25.0,16.0,22.0,15.0,20.0,14.0,18.0,12.0,8.0,11.0,10.0,14.0,9.0,5.0,7.0,4.0,2.0,,4.0,2.0 N81125,15.0,22.0,26.0,27.0,25.0,23.0,22.0,36.0,29.0,28.0,35.0,30.0,53.0,37.0,40.0,33.0,39.0,31.0,33.0,33.0,28.0,35.0,62.0,77.0,65.0,36.0,39.0,33.0,44.0,42.0,41.0,45.0,37.0,30.0,48.0,36.0,44.0,40.0,38.0,37.0,40.0,27.0,44.0,38.0,44.0,43.0,42.0,29.0,44.0,41.0,44.0,40.0,48.0,55.0,55.0,54.0,64.0,52.0,64.0,76.0,61.0,55.0,77.0,68.0,48.0,48.0,67.0,64.0,51.0,71.0,54.0,59.0,47.0,59.0,58.0,62.0,49.0,60.0,75.0,41.0,47.0,39.0,34.0,39.0,33.0,46.0,30.0,19.0,25.0,11.0,19.0,14.0,13.0,8.0,5.0,15.0 N81127,24.0,30.0,32.0,41.0,32.0,41.0,45.0,39.0,47.0,43.0,52.0,45.0,47.0,50.0,52.0,55.0,40.0,62.0,49.0,44.0,48.0,28.0,43.0,42.0,41.0,41.0,48.0,63.0,59.0,48.0,64.0,58.0,55.0,52.0,67.0,69.0,63.0,57.0,53.0,56.0,36.0,57.0,50.0,51.0,60.0,51.0,41.0,37.0,38.0,37.0,57.0,58.0,61.0,62.0,77.0,67.0,73.0,70.0,74.0,79.0,77.0,60.0,71.0,69.0,56.0,53.0,62.0,59.0,52.0,40.0,52.0,48.0,34.0,47.0,36.0,49.0,32.0,47.0,47.0,32.0,42.0,30.0,33.0,27.0,32.0,25.0,22.0,20.0,15.0,3.0,15.0,11.0,3.0,5.0,6.0,8.0 N81607,26.0,22.0,25.0,29.0,34.0,26.0,17.0,29.0,34.0,29.0,24.0,25.0,20.0,34.0,23.0,29.0,19.0,34.0,18.0,17.0,23.0,17.0,23.0,19.0,24.0,26.0,27.0,27.0,41.0,29.0,39.0,33.0,36.0,29.0,43.0,32.0,36.0,38.0,30.0,40.0,35.0,25.0,28.0,24.0,18.0,21.0,12.0,19.0,20.0,20.0,13.0,12.0,16.0,14.0,14.0,18.0,23.0,21.0,19.0,24.0,10.0,15.0,18.0,23.0,26.0,19.0,6.0,14.0,10.0,8.0,17.0,12.0,10.0,4.0,6.0,15.0,5.0,7.0,9.0,8.0,9.0,5.0,6.0,7.0,2.0,8.0,2.0,4.0,5.0,2.0,3.0,,,,1.0, N81614,22.0,22.0,21.0,26.0,21.0,25.0,36.0,21.0,23.0,22.0,35.0,31.0,22.0,35.0,32.0,29.0,28.0,23.0,34.0,22.0,22.0,32.0,27.0,23.0,20.0,21.0,31.0,17.0,18.0,27.0,28.0,24.0,26.0,38.0,34.0,34.0,27.0,29.0,37.0,31.0,34.0,32.0,26.0,30.0,34.0,30.0,31.0,32.0,39.0,36.0,48.0,30.0,34.0,37.0,48.0,41.0,43.0,60.0,52.0,52.0,54.0,38.0,65.0,43.0,53.0,59.0,59.0,30.0,46.0,29.0,38.0,38.0,34.0,34.0,41.0,27.0,30.0,31.0,33.0,24.0,29.0,18.0,18.0,16.0,11.0,14.0,11.0,7.0,11.0,4.0,4.0,4.0,7.0,4.0,,10.0 N81619,24.0,15.0,23.0,18.0,26.0,23.0,30.0,31.0,21.0,25.0,30.0,30.0,34.0,28.0,18.0,24.0,31.0,14.0,20.0,22.0,18.0,23.0,13.0,17.0,24.0,25.0,27.0,37.0,30.0,28.0,37.0,40.0,45.0,43.0,31.0,46.0,27.0,54.0,38.0,36.0,30.0,33.0,34.0,29.0,30.0,26.0,22.0,28.0,17.0,14.0,26.0,29.0,19.0,18.0,25.0,19.0,19.0,20.0,24.0,15.0,15.0,15.0,21.0,17.0,18.0,12.0,17.0,17.0,19.0,14.0,17.0,7.0,7.0,7.0,10.0,10.0,9.0,8.0,13.0,4.0,5.0,8.0,2.0,2.0,3.0,7.0,,3.0,2.0,1.0,3.0,1.0,2.0,,,1.0 N81623,40.0,41.0,60.0,56.0,56.0,65.0,48.0,46.0,52.0,56.0,51.0,51.0,60.0,44.0,45.0,50.0,47.0,56.0,48.0,40.0,44.0,49.0,50.0,39.0,60.0,52.0,47.0,53.0,57.0,48.0,65.0,75.0,48.0,63.0,58.0,58.0,68.0,65.0,68.0,56.0,53.0,63.0,57.0,55.0,64.0,58.0,66.0,61.0,58.0,53.0,65.0,54.0,79.0,86.0,92.0,79.0,77.0,80.0,69.0,92.0,78.0,82.0,66.0,61.0,41.0,57.0,45.0,60.0,58.0,43.0,42.0,38.0,49.0,47.0,41.0,36.0,40.0,43.0,40.0,43.0,28.0,34.0,19.0,25.0,19.0,24.0,15.0,13.0,12.0,14.0,15.0,12.0,5.0,5.0,5.0,20.0 N81624,33.0,25.0,40.0,31.0,34.0,52.0,42.0,45.0,44.0,49.0,49.0,54.0,49.0,49.0,49.0,37.0,45.0,52.0,44.0,25.0,26.0,27.0,30.0,32.0,21.0,34.0,23.0,34.0,30.0,30.0,23.0,38.0,38.0,48.0,39.0,51.0,45.0,54.0,42.0,50.0,52.0,57.0,56.0,65.0,39.0,53.0,52.0,45.0,51.0,45.0,62.0,61.0,60.0,65.0,76.0,65.0,78.0,64.0,75.0,85.0,73.0,55.0,88.0,61.0,75.0,65.0,55.0,51.0,55.0,55.0,45.0,50.0,62.0,45.0,53.0,58.0,47.0,73.0,58.0,50.0,51.0,42.0,39.0,25.0,34.0,34.0,31.0,24.0,26.0,19.0,16.0,15.0,17.0,10.0,4.0,11.0 N81626,24.0,28.0,24.0,33.0,21.0,31.0,32.0,33.0,29.0,42.0,25.0,35.0,42.0,36.0,48.0,32.0,25.0,27.0,28.0,23.0,25.0,28.0,28.0,24.0,30.0,25.0,28.0,25.0,47.0,36.0,36.0,31.0,35.0,29.0,45.0,29.0,28.0,54.0,37.0,38.0,40.0,29.0,45.0,30.0,34.0,41.0,29.0,25.0,26.0,28.0,24.0,20.0,37.0,24.0,30.0,23.0,28.0,31.0,24.0,35.0,25.0,21.0,25.0,21.0,31.0,20.0,26.0,21.0,14.0,19.0,23.0,23.0,13.0,16.0,9.0,13.0,12.0,18.0,10.0,8.0,10.0,16.0,7.0,9.0,6.0,5.0,5.0,8.0,3.0,5.0,3.0,,1.0,2.0,1.0,1.0 N81628,66.0,54.0,73.0,64.0,74.0,80.0,76.0,95.0,75.0,94.0,96.0,78.0,91.0,91.0,85.0,78.0,85.0,66.0,58.0,66.0,59.0,60.0,58.0,63.0,60.0,70.0,87.0,79.0,92.0,96.0,89.0,119.0,106.0,104.0,140.0,138.0,119.0,133.0,124.0,114.0,119.0,100.0,109.0,122.0,102.0,103.0,68.0,73.0,70.0,62.0,69.0,62.0,65.0,55.0,58.0,62.0,66.0,66.0,51.0,76.0,70.0,62.0,54.0,58.0,42.0,47.0,56.0,43.0,31.0,33.0,37.0,36.0,31.0,19.0,34.0,29.0,27.0,23.0,29.0,20.0,15.0,23.0,10.0,16.0,10.0,16.0,8.0,10.0,6.0,1.0,3.0,1.0,4.0,,1.0,2.0 N81632,30.0,28.0,33.0,30.0,25.0,33.0,29.0,42.0,26.0,41.0,25.0,36.0,29.0,45.0,39.0,32.0,36.0,30.0,29.0,23.0,30.0,21.0,21.0,27.0,26.0,24.0,27.0,48.0,32.0,41.0,38.0,43.0,42.0,54.0,43.0,50.0,54.0,50.0,53.0,52.0,39.0,41.0,39.0,43.0,30.0,51.0,37.0,34.0,32.0,30.0,41.0,31.0,51.0,35.0,51.0,26.0,34.0,51.0,50.0,47.0,42.0,47.0,40.0,42.0,36.0,33.0,34.0,30.0,17.0,21.0,24.0,26.0,22.0,17.0,24.0,16.0,13.0,19.0,16.0,12.0,13.0,19.0,13.0,11.0,13.0,22.0,12.0,7.0,7.0,8.0,6.0,8.0,3.0,4.0,1.0,6.0 N81637,12.0,10.0,17.0,19.0,17.0,18.0,26.0,14.0,10.0,19.0,16.0,15.0,23.0,13.0,15.0,15.0,11.0,22.0,11.0,16.0,5.0,20.0,12.0,17.0,19.0,23.0,18.0,27.0,35.0,28.0,29.0,26.0,24.0,34.0,28.0,21.0,22.0,32.0,27.0,31.0,31.0,32.0,18.0,23.0,21.0,26.0,22.0,13.0,24.0,23.0,17.0,11.0,19.0,9.0,6.0,15.0,14.0,10.0,13.0,11.0,14.0,11.0,10.0,12.0,9.0,6.0,15.0,7.0,6.0,10.0,5.0,1.0,8.0,8.0,3.0,6.0,5.0,7.0,4.0,3.0,4.0,6.0,2.0,2.0,2.0,1.0,3.0,2.0,,2.0,,,2.0,,1.0,3.0 N81642,26.0,24.0,19.0,19.0,26.0,17.0,30.0,23.0,38.0,16.0,20.0,24.0,29.0,21.0,27.0,26.0,31.0,25.0,33.0,22.0,19.0,23.0,25.0,30.0,23.0,38.0,25.0,38.0,24.0,26.0,44.0,31.0,29.0,38.0,21.0,35.0,28.0,26.0,24.0,29.0,40.0,38.0,34.0,32.0,20.0,23.0,36.0,30.0,40.0,35.0,22.0,29.0,29.0,44.0,42.0,50.0,53.0,33.0,43.0,36.0,40.0,33.0,30.0,32.0,32.0,37.0,25.0,25.0,17.0,24.0,24.0,19.0,24.0,19.0,22.0,20.0,24.0,23.0,15.0,16.0,11.0,13.0,3.0,11.0,7.0,7.0,5.0,8.0,4.0,1.0,5.0,1.0,2.0,2.0,1.0,3.0 N81645,7.0,8.0,9.0,11.0,13.0,13.0,14.0,13.0,23.0,21.0,11.0,8.0,12.0,17.0,17.0,15.0,19.0,13.0,15.0,8.0,10.0,13.0,5.0,14.0,10.0,18.0,15.0,16.0,16.0,12.0,14.0,19.0,16.0,18.0,19.0,21.0,17.0,23.0,23.0,17.0,18.0,25.0,14.0,15.0,14.0,18.0,18.0,15.0,18.0,11.0,18.0,11.0,8.0,7.0,16.0,11.0,9.0,8.0,11.0,15.0,7.0,13.0,10.0,12.0,13.0,13.0,8.0,6.0,6.0,13.0,5.0,7.0,6.0,8.0,6.0,6.0,2.0,5.0,8.0,4.0,6.0,5.0,5.0,2.0,7.0,5.0,,3.0,2.0,2.0,1.0,2.0,1.0,,2.0, N81651,18.0,15.0,16.0,12.0,17.0,18.0,24.0,24.0,12.0,21.0,26.0,19.0,23.0,22.0,26.0,16.0,21.0,17.0,21.0,16.0,19.0,21.0,24.0,20.0,23.0,26.0,33.0,18.0,29.0,31.0,17.0,27.0,37.0,23.0,26.0,28.0,26.0,18.0,27.0,25.0,33.0,25.0,22.0,24.0,25.0,24.0,25.0,26.0,19.0,20.0,27.0,26.0,16.0,27.0,22.0,18.0,31.0,23.0,34.0,32.0,28.0,22.0,23.0,21.0,17.0,14.0,15.0,22.0,16.0,11.0,9.0,15.0,7.0,6.0,15.0,2.0,16.0,9.0,10.0,9.0,4.0,7.0,9.0,4.0,10.0,4.0,1.0,5.0,4.0,4.0,2.0,1.0,3.0,,3.0,4.0 N81655,,,,,,,,,,,,,,,,,,,,1.0,,1.0,1.0,1.0,,,2.0,3.0,1.0,1.0,1.0,,1.0,2.0,5.0,2.0,3.0,2.0,1.0,1.0,2.0,3.0,3.0,5.0,,4.0,,2.0,1.0,1.0,,,2.0,2.0,2.0,1.0,,,2.0,,,,3.0,,1.0,,,,,,1.0,,,,,,,,,,1.0,,,,,,,,,,,,,,, N82001,22.0,18.0,28.0,30.0,27.0,25.0,36.0,37.0,42.0,41.0,37.0,34.0,37.0,61.0,48.0,44.0,45.0,44.0,36.0,32.0,32.0,23.0,25.0,28.0,32.0,26.0,45.0,31.0,41.0,38.0,54.0,40.0,42.0,53.0,42.0,53.0,45.0,45.0,41.0,45.0,63.0,42.0,55.0,56.0,38.0,36.0,33.0,35.0,28.0,33.0,31.0,27.0,37.0,40.0,31.0,30.0,30.0,33.0,38.0,40.0,42.0,37.0,42.0,58.0,33.0,46.0,45.0,33.0,34.0,39.0,32.0,32.0,38.0,30.0,27.0,25.0,25.0,26.0,36.0,19.0,21.0,12.0,12.0,12.0,9.0,11.0,11.0,11.0,5.0,6.0,3.0,5.0,2.0,2.0,3.0,9.0 N82002,22.0,31.0,31.0,40.0,27.0,54.0,37.0,55.0,40.0,38.0,32.0,46.0,41.0,24.0,32.0,38.0,30.0,32.0,33.0,27.0,28.0,22.0,31.0,27.0,30.0,37.0,39.0,29.0,41.0,33.0,52.0,45.0,44.0,45.0,42.0,53.0,51.0,49.0,44.0,42.0,37.0,42.0,36.0,45.0,42.0,29.0,34.0,33.0,26.0,32.0,34.0,25.0,27.0,26.0,32.0,22.0,29.0,28.0,29.0,27.0,32.0,29.0,32.0,32.0,23.0,22.0,22.0,39.0,22.0,27.0,30.0,23.0,24.0,22.0,26.0,23.0,20.0,17.0,18.0,15.0,9.0,7.0,7.0,7.0,8.0,6.0,9.0,8.0,12.0,5.0,8.0,3.0,2.0,,,2.0 N82003,21.0,19.0,21.0,18.0,20.0,33.0,23.0,37.0,21.0,28.0,16.0,23.0,34.0,31.0,19.0,20.0,20.0,26.0,34.0,26.0,23.0,21.0,29.0,30.0,20.0,24.0,23.0,17.0,35.0,16.0,30.0,34.0,32.0,34.0,38.0,27.0,36.0,40.0,34.0,34.0,28.0,34.0,21.0,34.0,27.0,19.0,25.0,25.0,23.0,27.0,29.0,21.0,25.0,31.0,23.0,31.0,30.0,27.0,29.0,19.0,35.0,32.0,34.0,24.0,29.0,22.0,19.0,36.0,21.0,26.0,20.0,16.0,25.0,20.0,14.0,11.0,12.0,23.0,20.0,13.0,8.0,14.0,14.0,12.0,10.0,6.0,8.0,9.0,5.0,12.0,4.0,8.0,4.0,4.0,4.0,21.0 N82004,8.0,12.0,13.0,19.0,20.0,19.0,16.0,17.0,22.0,22.0,23.0,26.0,19.0,18.0,17.0,19.0,29.0,14.0,20.0,20.0,16.0,20.0,12.0,16.0,20.0,26.0,27.0,22.0,25.0,29.0,27.0,23.0,33.0,37.0,19.0,36.0,31.0,29.0,31.0,34.0,20.0,22.0,31.0,29.0,25.0,31.0,24.0,15.0,22.0,25.0,15.0,15.0,24.0,19.0,17.0,15.0,28.0,13.0,19.0,19.0,15.0,11.0,26.0,12.0,16.0,14.0,10.0,7.0,11.0,16.0,11.0,11.0,9.0,7.0,10.0,8.0,10.0,10.0,8.0,2.0,3.0,5.0,10.0,5.0,4.0,5.0,4.0,2.0,5.0,1.0,1.0,1.0,1.0,,,2.0 N82009,34.0,49.0,40.0,45.0,49.0,39.0,43.0,63.0,53.0,55.0,41.0,60.0,45.0,61.0,31.0,47.0,53.0,48.0,42.0,34.0,27.0,39.0,37.0,32.0,48.0,38.0,40.0,46.0,55.0,58.0,56.0,65.0,67.0,69.0,64.0,56.0,65.0,65.0,68.0,76.0,85.0,87.0,81.0,59.0,55.0,60.0,51.0,50.0,48.0,45.0,44.0,58.0,48.0,38.0,65.0,58.0,59.0,49.0,53.0,55.0,63.0,54.0,47.0,47.0,71.0,49.0,87.0,53.0,38.0,57.0,49.0,57.0,42.0,48.0,50.0,46.0,39.0,52.0,54.0,29.0,33.0,29.0,27.0,26.0,21.0,25.0,19.0,21.0,19.0,13.0,14.0,11.0,7.0,6.0,4.0,10.0 N82011,34.0,32.0,36.0,54.0,53.0,48.0,54.0,49.0,65.0,65.0,57.0,53.0,61.0,71.0,51.0,53.0,61.0,65.0,58.0,70.0,55.0,50.0,59.0,54.0,73.0,64.0,77.0,80.0,93.0,72.0,85.0,77.0,89.0,91.0,81.0,89.0,87.0,90.0,83.0,63.0,78.0,71.0,87.0,60.0,74.0,75.0,67.0,66.0,50.0,61.0,68.0,61.0,61.0,74.0,76.0,74.0,59.0,82.0,79.0,73.0,93.0,76.0,81.0,94.0,68.0,93.0,61.0,68.0,76.0,63.0,62.0,49.0,36.0,44.0,30.0,37.0,42.0,52.0,28.0,29.0,40.0,28.0,24.0,40.0,16.0,25.0,18.0,24.0,18.0,13.0,8.0,13.0,10.0,5.0,5.0,9.0 N82014,17.0,20.0,20.0,24.0,18.0,29.0,31.0,27.0,37.0,24.0,24.0,38.0,34.0,23.0,39.0,37.0,50.0,47.0,43.0,39.0,29.0,23.0,38.0,40.0,40.0,37.0,38.0,43.0,34.0,31.0,41.0,38.0,30.0,40.0,37.0,43.0,40.0,46.0,43.0,49.0,52.0,46.0,45.0,33.0,47.0,41.0,36.0,45.0,32.0,31.0,28.0,39.0,51.0,52.0,35.0,62.0,48.0,38.0,48.0,68.0,56.0,63.0,34.0,36.0,45.0,34.0,40.0,43.0,46.0,42.0,40.0,39.0,30.0,30.0,29.0,33.0,29.0,38.0,28.0,21.0,19.0,21.0,11.0,21.0,14.0,22.0,17.0,11.0,9.0,7.0,14.0,4.0,6.0,6.0,2.0,8.0 N82018,48.0,52.0,69.0,75.0,72.0,95.0,96.0,107.0,97.0,113.0,116.0,110.0,103.0,100.0,99.0,92.0,99.0,73.0,87.0,95.0,69.0,75.0,61.0,63.0,69.0,84.0,79.0,72.0,94.0,82.0,81.0,88.0,107.0,96.0,119.0,107.0,129.0,148.0,126.0,132.0,110.0,104.0,92.0,91.0,90.0,112.0,87.0,84.0,82.0,66.0,69.0,88.0,59.0,78.0,87.0,72.0,74.0,68.0,87.0,70.0,94.0,67.0,81.0,90.0,80.0,79.0,77.0,73.0,79.0,63.0,60.0,60.0,37.0,33.0,54.0,39.0,44.0,41.0,45.0,32.0,26.0,29.0,23.0,19.0,19.0,19.0,26.0,18.0,8.0,10.0,13.0,9.0,12.0,5.0,1.0,12.0 N82019,14.0,27.0,30.0,22.0,30.0,31.0,24.0,28.0,31.0,42.0,43.0,44.0,46.0,42.0,37.0,40.0,30.0,45.0,31.0,35.0,33.0,29.0,24.0,24.0,21.0,26.0,23.0,32.0,33.0,20.0,39.0,36.0,47.0,32.0,42.0,58.0,41.0,37.0,42.0,43.0,39.0,33.0,53.0,43.0,36.0,32.0,25.0,26.0,24.0,22.0,24.0,26.0,21.0,26.0,30.0,34.0,21.0,24.0,37.0,36.0,48.0,36.0,34.0,31.0,35.0,34.0,39.0,31.0,21.0,20.0,29.0,24.0,24.0,17.0,25.0,15.0,17.0,9.0,18.0,16.0,14.0,18.0,11.0,16.0,17.0,6.0,8.0,16.0,6.0,6.0,3.0,4.0,5.0,2.0,4.0,5.0 N82022,52.0,55.0,48.0,50.0,54.0,52.0,47.0,41.0,55.0,50.0,55.0,41.0,56.0,54.0,47.0,50.0,43.0,42.0,39.0,57.0,47.0,88.0,69.0,74.0,83.0,101.0,75.0,92.0,95.0,125.0,95.0,93.0,92.0,93.0,64.0,84.0,78.0,87.0,81.0,55.0,56.0,75.0,81.0,75.0,61.0,58.0,56.0,53.0,46.0,47.0,52.0,44.0,42.0,54.0,64.0,48.0,50.0,52.0,59.0,53.0,46.0,55.0,47.0,58.0,49.0,36.0,43.0,37.0,38.0,26.0,45.0,33.0,33.0,25.0,23.0,26.0,25.0,25.0,30.0,20.0,16.0,19.0,19.0,15.0,15.0,14.0,13.0,12.0,9.0,6.0,12.0,3.0,3.0,1.0,2.0,2.0 N82024,38.0,45.0,66.0,64.0,63.0,60.0,66.0,76.0,66.0,72.0,72.0,67.0,66.0,83.0,84.0,76.0,67.0,62.0,79.0,63.0,48.0,67.0,60.0,64.0,57.0,52.0,64.0,68.0,69.0,79.0,74.0,69.0,97.0,90.0,102.0,97.0,95.0,91.0,87.0,83.0,96.0,84.0,63.0,90.0,85.0,89.0,69.0,89.0,87.0,77.0,79.0,80.0,91.0,75.0,89.0,87.0,100.0,93.0,89.0,101.0,88.0,89.0,99.0,92.0,74.0,104.0,75.0,82.0,69.0,79.0,70.0,71.0,67.0,60.0,62.0,55.0,53.0,45.0,43.0,40.0,46.0,45.0,35.0,26.0,25.0,24.0,25.0,29.0,24.0,26.0,21.0,13.0,6.0,6.0,5.0,11.0 N82026,25.0,37.0,26.0,36.0,25.0,34.0,28.0,18.0,26.0,31.0,26.0,36.0,17.0,32.0,35.0,14.0,31.0,26.0,34.0,25.0,35.0,37.0,47.0,28.0,46.0,37.0,50.0,48.0,37.0,51.0,42.0,38.0,50.0,64.0,53.0,42.0,60.0,57.0,39.0,41.0,49.0,43.0,44.0,36.0,44.0,47.0,36.0,37.0,33.0,40.0,35.0,55.0,36.0,35.0,35.0,54.0,42.0,48.0,39.0,48.0,45.0,47.0,35.0,57.0,43.0,31.0,34.0,55.0,34.0,43.0,43.0,35.0,27.0,43.0,26.0,32.0,30.0,27.0,15.0,22.0,19.0,23.0,27.0,18.0,24.0,19.0,18.0,10.0,14.0,17.0,8.0,6.0,5.0,4.0,6.0,10.0 N82033,21.0,21.0,34.0,33.0,23.0,23.0,34.0,25.0,30.0,30.0,43.0,30.0,25.0,31.0,30.0,29.0,24.0,25.0,24.0,21.0,21.0,29.0,25.0,43.0,51.0,63.0,51.0,69.0,70.0,62.0,70.0,65.0,58.0,61.0,64.0,52.0,62.0,39.0,42.0,42.0,42.0,47.0,42.0,43.0,43.0,38.0,38.0,25.0,38.0,29.0,26.0,24.0,21.0,34.0,21.0,26.0,37.0,39.0,26.0,37.0,34.0,42.0,30.0,44.0,32.0,40.0,33.0,28.0,17.0,26.0,17.0,31.0,18.0,29.0,17.0,30.0,21.0,33.0,23.0,23.0,17.0,9.0,11.0,12.0,11.0,9.0,9.0,4.0,7.0,5.0,4.0,3.0,1.0,2.0,,2.0 N82034,14.0,22.0,19.0,24.0,24.0,27.0,32.0,32.0,37.0,32.0,33.0,26.0,35.0,41.0,31.0,29.0,25.0,35.0,27.0,19.0,27.0,31.0,30.0,27.0,32.0,33.0,32.0,37.0,36.0,40.0,47.0,40.0,36.0,47.0,48.0,44.0,40.0,46.0,45.0,53.0,38.0,42.0,33.0,44.0,42.0,27.0,40.0,33.0,22.0,37.0,27.0,34.0,36.0,32.0,48.0,36.0,36.0,38.0,49.0,42.0,52.0,44.0,45.0,49.0,56.0,38.0,34.0,47.0,43.0,26.0,20.0,39.0,27.0,31.0,42.0,41.0,24.0,22.0,21.0,21.0,29.0,21.0,18.0,19.0,14.0,13.0,14.0,11.0,10.0,9.0,8.0,4.0,3.0,2.0,1.0,8.0 N82035,31.0,36.0,39.0,39.0,43.0,50.0,39.0,57.0,47.0,39.0,68.0,45.0,47.0,59.0,56.0,39.0,41.0,51.0,43.0,32.0,29.0,24.0,31.0,34.0,40.0,28.0,37.0,48.0,41.0,37.0,51.0,53.0,53.0,45.0,50.0,55.0,61.0,84.0,62.0,65.0,87.0,60.0,71.0,66.0,58.0,57.0,58.0,54.0,44.0,49.0,50.0,57.0,47.0,55.0,59.0,41.0,54.0,69.0,64.0,58.0,78.0,84.0,64.0,68.0,70.0,61.0,71.0,59.0,61.0,63.0,47.0,43.0,44.0,49.0,39.0,50.0,53.0,39.0,52.0,27.0,44.0,41.0,23.0,27.0,21.0,28.0,27.0,22.0,24.0,18.0,11.0,15.0,13.0,11.0,6.0,12.0 N82036,6.0,9.0,15.0,11.0,15.0,19.0,17.0,24.0,20.0,24.0,21.0,17.0,27.0,24.0,29.0,25.0,26.0,28.0,27.0,21.0,23.0,21.0,14.0,15.0,23.0,17.0,22.0,21.0,25.0,21.0,21.0,21.0,17.0,31.0,22.0,31.0,23.0,26.0,19.0,17.0,21.0,15.0,20.0,24.0,17.0,14.0,21.0,23.0,21.0,16.0,17.0,25.0,29.0,23.0,30.0,29.0,23.0,25.0,29.0,19.0,21.0,22.0,29.0,31.0,23.0,15.0,8.0,18.0,19.0,10.0,17.0,14.0,16.0,20.0,11.0,27.0,11.0,16.0,23.0,13.0,14.0,16.0,18.0,16.0,5.0,8.0,9.0,10.0,7.0,7.0,4.0,2.0,3.0,4.0,1.0,1.0 N82037,45.0,49.0,56.0,48.0,41.0,57.0,62.0,62.0,55.0,63.0,59.0,53.0,64.0,62.0,58.0,48.0,67.0,73.0,64.0,60.0,58.0,66.0,63.0,63.0,53.0,65.0,85.0,77.0,71.0,93.0,99.0,88.0,74.0,97.0,84.0,105.0,92.0,78.0,83.0,77.0,84.0,70.0,72.0,58.0,73.0,77.0,61.0,59.0,58.0,71.0,55.0,61.0,90.0,86.0,91.0,72.0,91.0,75.0,74.0,108.0,78.0,69.0,102.0,96.0,94.0,91.0,78.0,89.0,76.0,65.0,73.0,78.0,52.0,50.0,57.0,67.0,47.0,68.0,44.0,41.0,34.0,32.0,30.0,30.0,21.0,33.0,18.0,24.0,15.0,18.0,14.0,14.0,10.0,10.0,9.0,10.0 N82039,15.0,13.0,22.0,22.0,19.0,25.0,33.0,34.0,17.0,29.0,34.0,24.0,26.0,20.0,19.0,24.0,25.0,13.0,12.0,13.0,17.0,17.0,22.0,14.0,25.0,12.0,14.0,22.0,19.0,20.0,23.0,21.0,27.0,23.0,21.0,37.0,30.0,35.0,21.0,35.0,35.0,28.0,28.0,41.0,34.0,30.0,30.0,22.0,22.0,24.0,24.0,25.0,32.0,23.0,20.0,22.0,21.0,22.0,28.0,23.0,26.0,30.0,37.0,38.0,21.0,14.0,27.0,22.0,20.0,20.0,18.0,16.0,23.0,16.0,19.0,15.0,16.0,12.0,22.0,15.0,17.0,11.0,11.0,6.0,3.0,5.0,14.0,9.0,9.0,4.0,2.0,1.0,4.0,3.0,1.0,3.0 N82041,54.0,73.0,76.0,77.0,95.0,75.0,88.0,105.0,88.0,67.0,93.0,66.0,80.0,63.0,63.0,83.0,61.0,59.0,75.0,63.0,50.0,54.0,52.0,42.0,61.0,60.0,56.0,62.0,77.0,81.0,74.0,85.0,86.0,100.0,98.0,113.0,111.0,104.0,113.0,125.0,117.0,106.0,85.0,106.0,96.0,88.0,71.0,65.0,62.0,88.0,60.0,61.0,74.0,66.0,102.0,78.0,90.0,78.0,74.0,85.0,91.0,91.0,91.0,94.0,76.0,89.0,79.0,84.0,77.0,68.0,61.0,80.0,67.0,56.0,79.0,62.0,52.0,81.0,66.0,25.0,45.0,42.0,46.0,24.0,28.0,49.0,15.0,20.0,25.0,28.0,25.0,25.0,9.0,19.0,12.0,25.0 N82046,39.0,43.0,41.0,44.0,48.0,33.0,39.0,48.0,45.0,44.0,36.0,41.0,47.0,30.0,42.0,32.0,31.0,41.0,32.0,70.0,140.0,150.0,164.0,156.0,146.0,112.0,123.0,112.0,148.0,120.0,125.0,103.0,110.0,97.0,82.0,93.0,83.0,65.0,86.0,71.0,61.0,59.0,55.0,49.0,50.0,51.0,38.0,41.0,33.0,39.0,38.0,35.0,34.0,60.0,45.0,43.0,42.0,44.0,54.0,42.0,36.0,43.0,40.0,46.0,26.0,45.0,25.0,45.0,37.0,31.0,30.0,33.0,33.0,30.0,31.0,25.0,34.0,23.0,32.0,22.0,27.0,16.0,21.0,12.0,25.0,17.0,9.0,14.0,13.0,10.0,5.0,3.0,3.0,1.0,1.0,6.0 N82048,30.0,50.0,34.0,40.0,38.0,42.0,33.0,34.0,40.0,35.0,43.0,35.0,31.0,42.0,35.0,42.0,30.0,36.0,42.0,37.0,25.0,32.0,35.0,34.0,36.0,44.0,30.0,58.0,61.0,39.0,60.0,54.0,62.0,67.0,59.0,62.0,58.0,54.0,50.0,45.0,50.0,53.0,48.0,38.0,43.0,45.0,38.0,43.0,35.0,43.0,50.0,35.0,34.0,35.0,49.0,44.0,40.0,47.0,48.0,57.0,53.0,64.0,57.0,57.0,33.0,47.0,46.0,37.0,43.0,36.0,49.0,46.0,44.0,37.0,47.0,37.0,25.0,36.0,49.0,24.0,25.0,31.0,24.0,16.0,14.0,12.0,9.0,11.0,12.0,12.0,8.0,5.0,2.0,4.0,6.0,8.0 N82049,37.0,39.0,43.0,48.0,46.0,32.0,51.0,52.0,41.0,51.0,39.0,45.0,46.0,35.0,41.0,30.0,26.0,39.0,31.0,31.0,22.0,36.0,40.0,28.0,43.0,42.0,48.0,41.0,51.0,53.0,51.0,66.0,54.0,61.0,53.0,61.0,47.0,59.0,55.0,56.0,55.0,43.0,37.0,34.0,32.0,40.0,41.0,35.0,37.0,40.0,47.0,30.0,22.0,32.0,32.0,28.0,46.0,33.0,37.0,33.0,47.0,43.0,34.0,23.0,30.0,40.0,51.0,40.0,32.0,25.0,21.0,27.0,24.0,27.0,19.0,27.0,21.0,22.0,19.0,12.0,10.0,22.0,13.0,12.0,15.0,8.0,7.0,12.0,8.0,6.0,4.0,,3.0,2.0,3.0,5.0 N82050,6.0,7.0,11.0,10.0,21.0,15.0,15.0,9.0,13.0,15.0,13.0,11.0,13.0,10.0,13.0,8.0,7.0,11.0,8.0,5.0,10.0,8.0,11.0,12.0,9.0,8.0,15.0,19.0,8.0,20.0,12.0,10.0,12.0,20.0,17.0,24.0,25.0,21.0,25.0,17.0,19.0,19.0,18.0,11.0,17.0,12.0,19.0,11.0,11.0,4.0,18.0,4.0,13.0,21.0,14.0,15.0,15.0,13.0,11.0,22.0,17.0,18.0,19.0,14.0,27.0,14.0,19.0,20.0,11.0,4.0,12.0,10.0,14.0,9.0,22.0,14.0,10.0,14.0,8.0,10.0,11.0,12.0,6.0,9.0,10.0,4.0,6.0,9.0,4.0,3.0,1.0,5.0,1.0,1.0,3.0, N82052,20.0,29.0,15.0,39.0,36.0,33.0,36.0,39.0,43.0,36.0,41.0,42.0,35.0,45.0,36.0,35.0,35.0,28.0,35.0,25.0,34.0,22.0,32.0,30.0,32.0,31.0,32.0,35.0,47.0,48.0,45.0,47.0,42.0,44.0,49.0,47.0,56.0,48.0,50.0,47.0,58.0,58.0,36.0,42.0,44.0,32.0,30.0,25.0,21.0,35.0,32.0,24.0,41.0,34.0,42.0,33.0,34.0,36.0,26.0,32.0,40.0,35.0,38.0,36.0,40.0,38.0,30.0,25.0,20.0,36.0,29.0,31.0,26.0,18.0,17.0,19.0,12.0,20.0,13.0,15.0,19.0,15.0,7.0,12.0,10.0,7.0,8.0,13.0,7.0,3.0,5.0,9.0,7.0,1.0,2.0,4.0 N82053,52.0,70.0,69.0,82.0,84.0,77.0,87.0,76.0,93.0,84.0,79.0,89.0,100.0,97.0,89.0,86.0,100.0,103.0,97.0,77.0,76.0,75.0,58.0,80.0,62.0,74.0,85.0,82.0,85.0,75.0,72.0,94.0,102.0,111.0,123.0,113.0,126.0,119.0,119.0,114.0,130.0,101.0,120.0,115.0,112.0,88.0,97.0,88.0,99.0,87.0,84.0,106.0,115.0,94.0,109.0,116.0,110.0,100.0,115.0,115.0,145.0,128.0,120.0,133.0,132.0,115.0,101.0,101.0,101.0,104.0,89.0,88.0,61.0,70.0,79.0,82.0,64.0,63.0,70.0,51.0,40.0,63.0,45.0,34.0,32.0,36.0,40.0,32.0,36.0,21.0,18.0,25.0,13.0,18.0,12.0,27.0 N82054,33.0,30.0,32.0,30.0,34.0,33.0,40.0,38.0,39.0,42.0,41.0,35.0,42.0,41.0,31.0,47.0,44.0,42.0,61.0,57.0,76.0,71.0,48.0,58.0,61.0,59.0,59.0,57.0,59.0,52.0,68.0,64.0,79.0,60.0,64.0,66.0,67.0,72.0,67.0,52.0,51.0,56.0,62.0,56.0,58.0,33.0,42.0,33.0,31.0,38.0,33.0,33.0,32.0,33.0,40.0,25.0,36.0,36.0,28.0,39.0,28.0,24.0,28.0,27.0,33.0,33.0,29.0,26.0,23.0,32.0,20.0,19.0,10.0,20.0,9.0,18.0,15.0,11.0,11.0,11.0,6.0,12.0,6.0,8.0,7.0,6.0,3.0,5.0,14.0,2.0,1.0,5.0,1.0,3.0,2.0,4.0 N82058,28.0,24.0,28.0,21.0,39.0,28.0,39.0,25.0,38.0,24.0,31.0,34.0,31.0,31.0,35.0,28.0,34.0,24.0,31.0,31.0,36.0,32.0,27.0,34.0,35.0,36.0,49.0,50.0,53.0,35.0,43.0,51.0,57.0,45.0,47.0,35.0,51.0,48.0,38.0,45.0,51.0,33.0,37.0,36.0,35.0,38.0,30.0,31.0,28.0,34.0,28.0,31.0,29.0,27.0,41.0,42.0,42.0,47.0,35.0,46.0,42.0,42.0,27.0,45.0,38.0,45.0,35.0,31.0,33.0,35.0,42.0,33.0,15.0,21.0,17.0,20.0,22.0,18.0,21.0,14.0,17.0,18.0,13.0,12.0,11.0,13.0,17.0,4.0,5.0,7.0,3.0,1.0,4.0,2.0,1.0,1.0 N82059,23.0,21.0,31.0,29.0,24.0,23.0,37.0,31.0,27.0,22.0,19.0,24.0,21.0,24.0,20.0,25.0,31.0,32.0,34.0,31.0,57.0,55.0,51.0,66.0,67.0,54.0,54.0,48.0,52.0,45.0,51.0,55.0,61.0,57.0,57.0,49.0,47.0,60.0,54.0,51.0,45.0,32.0,46.0,40.0,41.0,45.0,41.0,27.0,25.0,36.0,32.0,32.0,46.0,44.0,38.0,36.0,36.0,35.0,39.0,32.0,37.0,34.0,31.0,27.0,32.0,32.0,33.0,28.0,32.0,19.0,23.0,21.0,24.0,17.0,27.0,15.0,13.0,17.0,15.0,17.0,16.0,8.0,14.0,7.0,12.0,10.0,6.0,5.0,3.0,4.0,3.0,1.0,2.0,,8.0,3.0 N82062,29.0,18.0,27.0,34.0,34.0,35.0,35.0,51.0,33.0,31.0,39.0,39.0,50.0,39.0,40.0,34.0,29.0,34.0,32.0,28.0,30.0,26.0,30.0,23.0,30.0,33.0,37.0,45.0,51.0,32.0,38.0,45.0,41.0,54.0,46.0,52.0,53.0,57.0,56.0,53.0,50.0,57.0,49.0,67.0,62.0,53.0,58.0,47.0,42.0,38.0,47.0,42.0,35.0,42.0,48.0,60.0,48.0,41.0,43.0,45.0,57.0,48.0,43.0,45.0,43.0,57.0,40.0,56.0,47.0,42.0,44.0,47.0,43.0,50.0,36.0,39.0,37.0,39.0,38.0,18.0,25.0,25.0,14.0,12.0,16.0,15.0,16.0,16.0,12.0,6.0,1.0,7.0,7.0,3.0,7.0,9.0 N82065,16.0,20.0,27.0,18.0,15.0,23.0,25.0,24.0,23.0,28.0,31.0,23.0,26.0,35.0,29.0,22.0,26.0,31.0,32.0,19.0,12.0,31.0,25.0,28.0,33.0,17.0,24.0,27.0,25.0,35.0,27.0,24.0,25.0,28.0,26.0,32.0,30.0,30.0,30.0,28.0,38.0,27.0,35.0,19.0,25.0,31.0,19.0,17.0,24.0,24.0,16.0,18.0,17.0,15.0,28.0,33.0,26.0,17.0,24.0,13.0,25.0,19.0,21.0,15.0,16.0,24.0,24.0,13.0,24.0,16.0,13.0,11.0,14.0,7.0,17.0,9.0,11.0,16.0,11.0,7.0,7.0,9.0,4.0,5.0,5.0,3.0,6.0,4.0,3.0,2.0,2.0,1.0,,2.0,2.0,4.0 N82066,33.0,28.0,48.0,54.0,33.0,45.0,52.0,44.0,45.0,46.0,49.0,40.0,41.0,51.0,43.0,46.0,38.0,40.0,39.0,33.0,35.0,24.0,37.0,36.0,46.0,33.0,39.0,37.0,54.0,56.0,54.0,57.0,64.0,67.0,76.0,63.0,62.0,56.0,69.0,58.0,66.0,79.0,54.0,49.0,45.0,47.0,59.0,49.0,46.0,48.0,48.0,49.0,63.0,53.0,74.0,62.0,59.0,56.0,49.0,73.0,77.0,61.0,68.0,77.0,75.0,73.0,78.0,63.0,62.0,73.0,59.0,65.0,56.0,58.0,66.0,57.0,47.0,44.0,64.0,40.0,43.0,41.0,43.0,38.0,29.0,39.0,32.0,34.0,29.0,22.0,24.0,18.0,8.0,14.0,6.0,21.0 N82067,35.0,28.0,29.0,29.0,31.0,40.0,30.0,23.0,27.0,26.0,42.0,25.0,31.0,19.0,32.0,24.0,26.0,24.0,31.0,28.0,29.0,28.0,36.0,42.0,52.0,56.0,43.0,64.0,60.0,57.0,72.0,56.0,57.0,50.0,58.0,47.0,40.0,32.0,55.0,42.0,37.0,32.0,35.0,22.0,31.0,25.0,31.0,18.0,24.0,19.0,27.0,27.0,31.0,28.0,31.0,25.0,32.0,27.0,31.0,23.0,21.0,22.0,23.0,25.0,14.0,18.0,18.0,19.0,18.0,17.0,15.0,9.0,5.0,14.0,15.0,12.0,20.0,20.0,12.0,15.0,12.0,12.0,6.0,3.0,6.0,3.0,5.0,5.0,4.0,4.0,1.0,1.0,3.0,,1.0,2.0 N82070,44.0,49.0,48.0,48.0,36.0,53.0,46.0,39.0,33.0,52.0,50.0,43.0,52.0,44.0,43.0,56.0,39.0,35.0,49.0,33.0,41.0,53.0,52.0,50.0,51.0,80.0,74.0,80.0,71.0,92.0,70.0,111.0,98.0,87.0,99.0,87.0,83.0,93.0,93.0,73.0,69.0,68.0,57.0,77.0,66.0,77.0,52.0,54.0,57.0,55.0,50.0,56.0,59.0,57.0,73.0,78.0,72.0,60.0,74.0,56.0,73.0,63.0,69.0,71.0,55.0,75.0,66.0,51.0,61.0,44.0,39.0,34.0,39.0,49.0,50.0,43.0,43.0,48.0,42.0,27.0,25.0,20.0,17.0,24.0,20.0,16.0,14.0,8.0,12.0,13.0,7.0,2.0,6.0,2.0,2.0,5.0 N82073,19.0,27.0,38.0,28.0,32.0,39.0,35.0,32.0,21.0,40.0,30.0,25.0,35.0,32.0,31.0,32.0,26.0,26.0,29.0,23.0,33.0,19.0,17.0,33.0,39.0,34.0,42.0,47.0,39.0,58.0,50.0,51.0,35.0,57.0,49.0,49.0,44.0,47.0,66.0,45.0,49.0,41.0,35.0,43.0,46.0,33.0,47.0,40.0,41.0,42.0,44.0,42.0,41.0,49.0,57.0,44.0,44.0,40.0,58.0,51.0,56.0,53.0,45.0,58.0,35.0,37.0,50.0,46.0,42.0,38.0,44.0,37.0,28.0,31.0,30.0,39.0,30.0,39.0,35.0,25.0,24.0,18.0,33.0,16.0,23.0,17.0,15.0,16.0,17.0,7.0,9.0,11.0,10.0,9.0,11.0,11.0 N82074,29.0,30.0,34.0,47.0,42.0,31.0,45.0,50.0,66.0,63.0,61.0,48.0,61.0,61.0,47.0,55.0,45.0,60.0,57.0,47.0,41.0,49.0,55.0,41.0,52.0,54.0,50.0,47.0,63.0,57.0,59.0,65.0,58.0,69.0,70.0,72.0,61.0,69.0,73.0,56.0,69.0,54.0,73.0,70.0,57.0,67.0,47.0,44.0,61.0,57.0,59.0,65.0,66.0,47.0,56.0,61.0,53.0,57.0,69.0,65.0,76.0,75.0,55.0,76.0,59.0,62.0,53.0,58.0,47.0,47.0,38.0,47.0,43.0,36.0,39.0,42.0,30.0,40.0,45.0,26.0,19.0,18.0,23.0,17.0,22.0,12.0,12.0,8.0,11.0,17.0,14.0,10.0,10.0,3.0,3.0,5.0 N82076,59.0,64.0,63.0,63.0,47.0,58.0,57.0,63.0,58.0,61.0,54.0,56.0,61.0,63.0,53.0,69.0,53.0,50.0,55.0,85.0,91.0,73.0,71.0,92.0,89.0,92.0,114.0,121.0,120.0,120.0,103.0,119.0,116.0,97.0,100.0,81.0,102.0,90.0,70.0,100.0,67.0,77.0,71.0,59.0,66.0,52.0,63.0,49.0,47.0,46.0,50.0,39.0,51.0,56.0,43.0,50.0,44.0,31.0,43.0,40.0,41.0,49.0,52.0,35.0,35.0,34.0,25.0,24.0,35.0,38.0,28.0,24.0,29.0,29.0,25.0,28.0,19.0,13.0,23.0,15.0,14.0,11.0,13.0,8.0,6.0,8.0,10.0,7.0,9.0,6.0,4.0,7.0,3.0,3.0,5.0,7.0 N82077,16.0,16.0,12.0,11.0,13.0,16.0,18.0,19.0,17.0,16.0,20.0,13.0,11.0,22.0,9.0,15.0,16.0,20.0,19.0,20.0,9.0,15.0,12.0,13.0,15.0,14.0,20.0,14.0,22.0,21.0,12.0,19.0,15.0,25.0,24.0,25.0,23.0,32.0,25.0,22.0,20.0,30.0,21.0,18.0,19.0,12.0,19.0,18.0,11.0,16.0,8.0,16.0,13.0,20.0,14.0,13.0,13.0,13.0,16.0,15.0,20.0,23.0,19.0,34.0,20.0,11.0,19.0,12.0,16.0,15.0,9.0,9.0,11.0,12.0,5.0,7.0,9.0,9.0,12.0,7.0,5.0,5.0,7.0,6.0,3.0,7.0,5.0,5.0,2.0,3.0,1.0,2.0,2.0,,2.0,3.0 N82078,9.0,12.0,9.0,15.0,15.0,19.0,8.0,22.0,26.0,15.0,14.0,11.0,11.0,23.0,15.0,15.0,12.0,14.0,22.0,10.0,14.0,17.0,17.0,15.0,17.0,12.0,15.0,13.0,19.0,17.0,20.0,16.0,23.0,16.0,12.0,22.0,24.0,35.0,20.0,25.0,20.0,18.0,13.0,15.0,26.0,26.0,14.0,18.0,11.0,15.0,11.0,18.0,20.0,17.0,21.0,16.0,11.0,13.0,24.0,10.0,29.0,19.0,22.0,22.0,21.0,22.0,20.0,28.0,22.0,18.0,17.0,10.0,17.0,10.0,13.0,10.0,16.0,11.0,11.0,4.0,13.0,12.0,10.0,6.0,8.0,2.0,6.0,4.0,5.0,2.0,2.0,1.0,5.0,1.0,, N82079,19.0,33.0,26.0,38.0,27.0,29.0,29.0,27.0,40.0,28.0,29.0,42.0,35.0,25.0,23.0,23.0,22.0,39.0,46.0,63.0,93.0,76.0,55.0,49.0,41.0,42.0,46.0,30.0,32.0,30.0,34.0,44.0,30.0,52.0,42.0,51.0,56.0,59.0,49.0,71.0,67.0,41.0,63.0,64.0,57.0,55.0,47.0,38.0,39.0,27.0,47.0,36.0,32.0,35.0,41.0,48.0,37.0,32.0,29.0,25.0,21.0,28.0,27.0,32.0,25.0,33.0,23.0,19.0,21.0,21.0,13.0,31.0,22.0,17.0,25.0,19.0,15.0,17.0,16.0,11.0,19.0,12.0,8.0,15.0,7.0,11.0,13.0,8.0,8.0,4.0,6.0,3.0,4.0,2.0,,2.0 N82081,22.0,23.0,28.0,20.0,34.0,24.0,29.0,32.0,35.0,31.0,36.0,27.0,35.0,20.0,24.0,29.0,19.0,30.0,46.0,60.0,83.0,81.0,80.0,61.0,67.0,80.0,74.0,66.0,60.0,45.0,54.0,40.0,45.0,52.0,40.0,41.0,50.0,33.0,36.0,41.0,41.0,25.0,49.0,41.0,29.0,33.0,26.0,25.0,37.0,24.0,24.0,24.0,30.0,24.0,31.0,32.0,23.0,31.0,29.0,28.0,27.0,24.0,35.0,29.0,19.0,23.0,22.0,21.0,26.0,27.0,20.0,20.0,19.0,23.0,19.0,20.0,23.0,13.0,18.0,20.0,16.0,6.0,14.0,5.0,6.0,9.0,8.0,3.0,10.0,5.0,3.0,3.0,3.0,1.0,,1.0 N82082,23.0,19.0,23.0,23.0,24.0,17.0,14.0,23.0,23.0,21.0,21.0,22.0,18.0,21.0,15.0,19.0,15.0,15.0,58.0,118.0,142.0,151.0,155.0,175.0,181.0,180.0,197.0,204.0,183.0,157.0,164.0,132.0,100.0,102.0,77.0,86.0,90.0,69.0,69.0,79.0,46.0,52.0,38.0,37.0,51.0,34.0,23.0,24.0,25.0,23.0,31.0,14.0,25.0,25.0,16.0,27.0,20.0,22.0,26.0,21.0,33.0,27.0,28.0,27.0,22.0,32.0,24.0,31.0,28.0,22.0,20.0,15.0,13.0,16.0,14.0,20.0,11.0,11.0,11.0,9.0,10.0,6.0,10.0,4.0,8.0,5.0,2.0,3.0,3.0,6.0,2.0,5.0,,2.0,2.0,2.0 N82083,39.0,42.0,53.0,42.0,47.0,47.0,66.0,55.0,76.0,70.0,73.0,60.0,74.0,60.0,83.0,70.0,81.0,75.0,62.0,55.0,58.0,54.0,62.0,53.0,53.0,54.0,84.0,59.0,79.0,77.0,58.0,73.0,73.0,86.0,87.0,86.0,70.0,74.0,73.0,84.0,88.0,61.0,92.0,67.0,87.0,86.0,64.0,62.0,63.0,63.0,68.0,75.0,77.0,74.0,83.0,81.0,59.0,67.0,79.0,96.0,72.0,69.0,77.0,78.0,79.0,44.0,57.0,66.0,49.0,59.0,44.0,50.0,38.0,40.0,32.0,45.0,30.0,27.0,31.0,26.0,21.0,19.0,17.0,16.0,12.0,22.0,17.0,11.0,11.0,6.0,8.0,3.0,4.0,4.0,6.0,10.0 N82084,27.0,33.0,29.0,21.0,22.0,27.0,27.0,39.0,32.0,31.0,34.0,28.0,38.0,35.0,30.0,27.0,33.0,32.0,24.0,36.0,28.0,24.0,28.0,25.0,26.0,33.0,29.0,30.0,41.0,33.0,29.0,39.0,49.0,45.0,37.0,32.0,44.0,50.0,40.0,44.0,48.0,37.0,41.0,22.0,35.0,40.0,27.0,33.0,31.0,26.0,39.0,29.0,34.0,51.0,38.0,43.0,55.0,38.0,62.0,52.0,38.0,56.0,75.0,68.0,60.0,56.0,51.0,46.0,44.0,46.0,46.0,39.0,32.0,54.0,36.0,41.0,40.0,33.0,39.0,30.0,20.0,17.0,32.0,9.0,17.0,23.0,23.0,16.0,19.0,17.0,16.0,7.0,9.0,3.0,7.0,20.0 N82086,23.0,11.0,13.0,30.0,22.0,17.0,19.0,18.0,26.0,19.0,12.0,20.0,23.0,18.0,21.0,24.0,29.0,23.0,25.0,28.0,19.0,18.0,30.0,17.0,12.0,23.0,28.0,31.0,18.0,25.0,21.0,26.0,28.0,24.0,32.0,16.0,24.0,23.0,28.0,24.0,33.0,26.0,24.0,25.0,27.0,27.0,15.0,30.0,23.0,26.0,24.0,23.0,24.0,24.0,36.0,29.0,14.0,29.0,18.0,32.0,32.0,29.0,28.0,28.0,21.0,28.0,26.0,21.0,21.0,23.0,16.0,20.0,15.0,19.0,16.0,17.0,12.0,13.0,15.0,10.0,10.0,9.0,12.0,10.0,9.0,11.0,5.0,3.0,5.0,4.0,2.0,,1.0,2.0,2.0,2.0 N82087,11.0,8.0,11.0,6.0,12.0,6.0,9.0,14.0,9.0,20.0,9.0,18.0,16.0,13.0,15.0,10.0,15.0,17.0,15.0,8.0,7.0,13.0,7.0,11.0,4.0,17.0,15.0,13.0,15.0,11.0,8.0,10.0,10.0,11.0,20.0,17.0,15.0,21.0,19.0,20.0,16.0,16.0,21.0,12.0,12.0,17.0,16.0,6.0,8.0,10.0,8.0,11.0,13.0,11.0,21.0,10.0,10.0,18.0,14.0,15.0,19.0,15.0,14.0,24.0,28.0,24.0,15.0,14.0,13.0,17.0,11.0,10.0,16.0,11.0,17.0,13.0,7.0,11.0,11.0,7.0,2.0,7.0,9.0,4.0,6.0,4.0,2.0,1.0,3.0,4.0,1.0,1.0,,2.0,1.0,2.0 N82089,27.0,30.0,18.0,27.0,21.0,34.0,38.0,41.0,38.0,45.0,40.0,40.0,23.0,34.0,37.0,33.0,31.0,29.0,40.0,23.0,24.0,29.0,28.0,23.0,22.0,30.0,38.0,41.0,24.0,21.0,20.0,25.0,27.0,25.0,38.0,35.0,26.0,39.0,37.0,28.0,29.0,33.0,17.0,26.0,15.0,23.0,19.0,19.0,19.0,14.0,18.0,16.0,23.0,12.0,11.0,13.0,13.0,10.0,16.0,12.0,18.0,14.0,14.0,12.0,10.0,8.0,13.0,10.0,15.0,10.0,4.0,15.0,7.0,6.0,1.0,5.0,6.0,7.0,5.0,3.0,7.0,2.0,2.0,2.0,5.0,4.0,5.0,,,2.0,4.0,,,,,1.0 N82090,49.0,41.0,37.0,68.0,47.0,43.0,66.0,63.0,57.0,63.0,65.0,53.0,54.0,67.0,53.0,61.0,60.0,51.0,51.0,47.0,61.0,44.0,64.0,60.0,57.0,79.0,73.0,70.0,72.0,66.0,73.0,88.0,65.0,92.0,55.0,81.0,74.0,77.0,88.0,94.0,69.0,59.0,68.0,69.0,74.0,71.0,64.0,62.0,43.0,46.0,58.0,50.0,57.0,62.0,54.0,66.0,55.0,72.0,70.0,72.0,71.0,59.0,71.0,62.0,76.0,68.0,56.0,49.0,63.0,49.0,48.0,48.0,38.0,34.0,34.0,50.0,39.0,40.0,35.0,25.0,20.0,18.0,31.0,17.0,25.0,11.0,18.0,14.0,22.0,15.0,7.0,3.0,14.0,8.0,1.0,8.0 N82091,12.0,14.0,19.0,9.0,10.0,10.0,10.0,17.0,13.0,12.0,19.0,13.0,13.0,14.0,18.0,16.0,18.0,11.0,12.0,14.0,10.0,11.0,11.0,12.0,11.0,18.0,14.0,12.0,26.0,28.0,14.0,19.0,23.0,21.0,16.0,23.0,24.0,19.0,23.0,22.0,25.0,19.0,11.0,13.0,12.0,16.0,16.0,16.0,9.0,8.0,9.0,15.0,10.0,7.0,14.0,15.0,8.0,12.0,7.0,7.0,12.0,7.0,7.0,8.0,10.0,5.0,22.0,10.0,11.0,4.0,9.0,8.0,5.0,5.0,6.0,3.0,6.0,8.0,1.0,4.0,4.0,3.0,5.0,1.0,3.0,3.0,1.0,1.0,,1.0,1.0,,,1.0,, N82092,23.0,33.0,34.0,48.0,48.0,35.0,45.0,51.0,52.0,53.0,35.0,43.0,41.0,49.0,39.0,43.0,46.0,38.0,59.0,107.0,78.0,61.0,57.0,33.0,43.0,43.0,52.0,38.0,43.0,41.0,40.0,44.0,48.0,50.0,53.0,46.0,67.0,71.0,56.0,51.0,61.0,52.0,49.0,37.0,45.0,57.0,57.0,51.0,49.0,36.0,48.0,58.0,39.0,46.0,63.0,48.0,56.0,57.0,64.0,73.0,71.0,72.0,60.0,60.0,64.0,58.0,62.0,62.0,57.0,62.0,36.0,64.0,48.0,47.0,44.0,42.0,48.0,52.0,43.0,47.0,33.0,36.0,38.0,20.0,33.0,30.0,26.0,26.0,12.0,24.0,11.0,9.0,7.0,6.0,4.0,5.0 N82093,17.0,22.0,23.0,31.0,24.0,27.0,42.0,30.0,22.0,29.0,29.0,29.0,16.0,19.0,20.0,23.0,21.0,17.0,25.0,16.0,22.0,25.0,26.0,14.0,26.0,37.0,33.0,43.0,36.0,31.0,31.0,40.0,32.0,52.0,40.0,38.0,36.0,34.0,27.0,23.0,32.0,29.0,30.0,33.0,35.0,27.0,18.0,23.0,22.0,21.0,19.0,34.0,27.0,18.0,35.0,32.0,25.0,19.0,18.0,33.0,36.0,29.0,25.0,29.0,28.0,24.0,21.0,19.0,19.0,20.0,15.0,20.0,16.0,18.0,10.0,20.0,11.0,16.0,19.0,12.0,19.0,13.0,12.0,6.0,13.0,4.0,9.0,11.0,5.0,4.0,6.0,1.0,4.0,,3.0,2.0 N82094,42.0,41.0,27.0,55.0,32.0,46.0,45.0,47.0,44.0,45.0,33.0,53.0,45.0,47.0,49.0,52.0,48.0,54.0,43.0,55.0,50.0,37.0,61.0,53.0,43.0,43.0,34.0,45.0,49.0,47.0,45.0,43.0,62.0,68.0,70.0,71.0,58.0,68.0,68.0,69.0,65.0,60.0,57.0,53.0,58.0,59.0,37.0,40.0,35.0,55.0,36.0,55.0,61.0,61.0,70.0,65.0,66.0,69.0,60.0,70.0,60.0,72.0,63.0,66.0,48.0,58.0,70.0,58.0,58.0,50.0,48.0,50.0,49.0,44.0,41.0,45.0,47.0,52.0,50.0,42.0,29.0,25.0,28.0,19.0,22.0,18.0,19.0,16.0,14.0,10.0,7.0,4.0,7.0,2.0,1.0,3.0 N82095,22.0,22.0,20.0,16.0,20.0,21.0,20.0,24.0,32.0,26.0,28.0,29.0,26.0,40.0,23.0,22.0,43.0,31.0,18.0,34.0,34.0,27.0,27.0,35.0,26.0,30.0,36.0,37.0,29.0,41.0,35.0,30.0,36.0,27.0,31.0,34.0,38.0,46.0,41.0,39.0,38.0,41.0,41.0,30.0,35.0,44.0,26.0,21.0,21.0,43.0,37.0,30.0,26.0,36.0,28.0,25.0,31.0,32.0,35.0,37.0,29.0,26.0,25.0,35.0,18.0,27.0,21.0,17.0,19.0,16.0,19.0,24.0,31.0,18.0,16.0,21.0,17.0,22.0,12.0,11.0,15.0,10.0,9.0,7.0,8.0,8.0,11.0,5.0,8.0,11.0,4.0,3.0,1.0,2.0,1.0,1.0 N82097,35.0,33.0,41.0,41.0,56.0,43.0,54.0,41.0,59.0,68.0,57.0,60.0,54.0,54.0,66.0,49.0,48.0,64.0,59.0,49.0,47.0,47.0,47.0,54.0,64.0,82.0,52.0,61.0,72.0,71.0,71.0,73.0,79.0,67.0,74.0,80.0,73.0,48.0,65.0,69.0,79.0,71.0,71.0,66.0,58.0,64.0,55.0,57.0,58.0,49.0,56.0,55.0,51.0,59.0,59.0,53.0,57.0,52.0,47.0,67.0,59.0,52.0,62.0,40.0,37.0,62.0,41.0,44.0,48.0,37.0,20.0,35.0,30.0,27.0,24.0,24.0,23.0,28.0,26.0,21.0,17.0,11.0,8.0,12.0,12.0,12.0,14.0,3.0,8.0,5.0,6.0,7.0,2.0,3.0,5.0,1.0 N82099,39.0,52.0,50.0,51.0,44.0,63.0,50.0,72.0,56.0,57.0,68.0,69.0,51.0,62.0,56.0,55.0,52.0,55.0,52.0,35.0,54.0,36.0,48.0,57.0,60.0,70.0,67.0,72.0,99.0,73.0,54.0,78.0,78.0,82.0,63.0,63.0,64.0,72.0,94.0,69.0,62.0,67.0,67.0,66.0,51.0,43.0,37.0,36.0,51.0,57.0,35.0,34.0,38.0,39.0,45.0,34.0,39.0,37.0,50.0,34.0,37.0,48.0,35.0,31.0,44.0,31.0,38.0,31.0,21.0,28.0,33.0,26.0,31.0,22.0,25.0,22.0,17.0,28.0,22.0,17.0,15.0,13.0,11.0,5.0,10.0,7.0,7.0,3.0,7.0,3.0,3.0,6.0,3.0,,1.0,4.0 N82101,9.0,9.0,10.0,13.0,17.0,23.0,17.0,9.0,21.0,17.0,16.0,13.0,13.0,14.0,16.0,11.0,14.0,12.0,15.0,8.0,14.0,15.0,14.0,11.0,15.0,19.0,18.0,19.0,19.0,22.0,17.0,27.0,16.0,29.0,26.0,28.0,14.0,25.0,21.0,17.0,17.0,20.0,16.0,16.0,13.0,16.0,14.0,11.0,11.0,12.0,12.0,14.0,17.0,11.0,13.0,22.0,18.0,19.0,17.0,24.0,18.0,18.0,22.0,16.0,24.0,9.0,17.0,10.0,14.0,21.0,10.0,10.0,17.0,16.0,14.0,14.0,13.0,18.0,16.0,8.0,8.0,6.0,11.0,8.0,7.0,10.0,8.0,6.0,3.0,8.0,1.0,1.0,2.0,2.0,2.0,3.0 N82103,45.0,54.0,71.0,61.0,71.0,69.0,68.0,58.0,66.0,67.0,94.0,62.0,72.0,61.0,65.0,74.0,64.0,76.0,45.0,42.0,73.0,60.0,66.0,69.0,92.0,66.0,71.0,87.0,95.0,97.0,102.0,74.0,76.0,94.0,100.0,87.0,84.0,96.0,78.0,82.0,89.0,72.0,71.0,60.0,74.0,67.0,53.0,56.0,41.0,41.0,41.0,58.0,50.0,33.0,45.0,53.0,60.0,56.0,41.0,48.0,49.0,51.0,45.0,51.0,52.0,41.0,38.0,33.0,28.0,32.0,24.0,29.0,25.0,16.0,27.0,23.0,24.0,24.0,23.0,10.0,8.0,16.0,15.0,9.0,11.0,9.0,3.0,6.0,7.0,6.0,1.0,4.0,3.0,3.0,2.0,3.0 N82104,12.0,11.0,21.0,15.0,10.0,11.0,18.0,26.0,15.0,19.0,21.0,22.0,25.0,15.0,18.0,18.0,23.0,22.0,24.0,22.0,14.0,12.0,15.0,26.0,21.0,28.0,27.0,24.0,30.0,29.0,27.0,20.0,24.0,37.0,33.0,27.0,27.0,26.0,20.0,42.0,23.0,35.0,26.0,17.0,21.0,23.0,25.0,20.0,22.0,25.0,16.0,22.0,16.0,25.0,32.0,25.0,31.0,24.0,26.0,38.0,41.0,34.0,40.0,32.0,31.0,33.0,28.0,27.0,32.0,26.0,24.0,18.0,32.0,17.0,20.0,20.0,27.0,21.0,27.0,20.0,12.0,15.0,11.0,4.0,10.0,12.0,7.0,6.0,7.0,5.0,8.0,6.0,8.0,2.0,1.0,4.0 N82106,10.0,9.0,20.0,10.0,24.0,8.0,18.0,15.0,20.0,18.0,17.0,18.0,15.0,12.0,14.0,17.0,20.0,19.0,17.0,26.0,14.0,14.0,11.0,13.0,10.0,13.0,17.0,19.0,11.0,14.0,19.0,17.0,28.0,18.0,29.0,13.0,25.0,28.0,22.0,23.0,28.0,21.0,21.0,28.0,23.0,20.0,16.0,15.0,15.0,16.0,18.0,22.0,21.0,28.0,28.0,13.0,22.0,33.0,34.0,38.0,34.0,21.0,30.0,21.0,24.0,38.0,28.0,36.0,25.0,28.0,27.0,22.0,25.0,26.0,28.0,25.0,24.0,24.0,12.0,16.0,20.0,17.0,14.0,12.0,9.0,13.0,9.0,12.0,6.0,7.0,8.0,4.0,3.0,5.0,,9.0 N82107,11.0,5.0,10.0,3.0,12.0,8.0,11.0,15.0,6.0,5.0,8.0,3.0,7.0,8.0,7.0,5.0,7.0,5.0,2.0,4.0,8.0,7.0,5.0,8.0,10.0,11.0,19.0,15.0,10.0,21.0,25.0,21.0,16.0,27.0,20.0,13.0,14.0,17.0,11.0,12.0,12.0,14.0,17.0,8.0,13.0,12.0,9.0,9.0,11.0,11.0,8.0,7.0,7.0,6.0,15.0,7.0,10.0,8.0,10.0,12.0,12.0,10.0,7.0,13.0,8.0,16.0,12.0,14.0,20.0,13.0,15.0,16.0,13.0,9.0,10.0,12.0,12.0,8.0,4.0,9.0,5.0,6.0,6.0,7.0,2.0,3.0,3.0,1.0,3.0,8.0,2.0,4.0,4.0,,2.0,7.0 N82108,36.0,43.0,53.0,43.0,50.0,47.0,50.0,50.0,39.0,41.0,46.0,48.0,54.0,51.0,41.0,40.0,54.0,34.0,64.0,62.0,84.0,72.0,52.0,59.0,38.0,46.0,40.0,46.0,48.0,49.0,34.0,43.0,52.0,48.0,56.0,48.0,57.0,101.0,60.0,56.0,67.0,66.0,55.0,48.0,72.0,75.0,59.0,62.0,43.0,38.0,57.0,53.0,41.0,62.0,40.0,59.0,51.0,36.0,46.0,36.0,46.0,49.0,56.0,47.0,50.0,42.0,51.0,54.0,48.0,46.0,42.0,38.0,45.0,40.0,45.0,38.0,43.0,33.0,40.0,31.0,28.0,28.0,18.0,18.0,14.0,24.0,17.0,16.0,13.0,21.0,5.0,12.0,9.0,8.0,3.0,19.0 N82109,20.0,17.0,48.0,36.0,28.0,37.0,49.0,41.0,44.0,38.0,33.0,31.0,35.0,40.0,42.0,35.0,34.0,36.0,22.0,23.0,22.0,31.0,21.0,23.0,31.0,37.0,32.0,42.0,36.0,41.0,39.0,35.0,38.0,42.0,53.0,57.0,51.0,47.0,46.0,51.0,37.0,47.0,52.0,23.0,29.0,31.0,24.0,36.0,22.0,27.0,31.0,29.0,29.0,25.0,43.0,44.0,26.0,39.0,40.0,33.0,42.0,23.0,43.0,42.0,31.0,30.0,37.0,30.0,33.0,27.0,22.0,28.0,28.0,19.0,28.0,13.0,18.0,15.0,21.0,10.0,11.0,11.0,10.0,12.0,7.0,8.0,5.0,4.0,8.0,1.0,7.0,2.0,4.0,1.0,1.0,2.0 N82110,26.0,39.0,36.0,33.0,32.0,37.0,65.0,54.0,41.0,57.0,68.0,48.0,62.0,51.0,51.0,55.0,60.0,42.0,38.0,44.0,37.0,39.0,47.0,41.0,49.0,60.0,57.0,47.0,58.0,48.0,60.0,52.0,66.0,75.0,76.0,76.0,75.0,72.0,73.0,56.0,56.0,56.0,57.0,56.0,65.0,59.0,56.0,40.0,38.0,40.0,43.0,51.0,46.0,45.0,41.0,50.0,54.0,70.0,51.0,58.0,46.0,51.0,56.0,68.0,73.0,50.0,55.0,44.0,47.0,41.0,32.0,44.0,27.0,30.0,28.0,27.0,30.0,28.0,26.0,13.0,16.0,21.0,15.0,14.0,9.0,5.0,12.0,12.0,11.0,6.0,10.0,5.0,3.0,1.0,,3.0 N82113,53.0,55.0,55.0,47.0,65.0,68.0,66.0,66.0,64.0,68.0,75.0,65.0,68.0,65.0,80.0,54.0,65.0,67.0,46.0,53.0,55.0,53.0,39.0,57.0,51.0,61.0,73.0,84.0,86.0,72.0,79.0,79.0,76.0,71.0,64.0,64.0,82.0,56.0,84.0,83.0,54.0,74.0,64.0,66.0,57.0,61.0,50.0,54.0,37.0,48.0,43.0,37.0,44.0,39.0,30.0,24.0,39.0,23.0,19.0,29.0,26.0,21.0,28.0,20.0,21.0,24.0,16.0,22.0,14.0,17.0,20.0,14.0,12.0,21.0,10.0,12.0,15.0,11.0,14.0,3.0,6.0,8.0,8.0,7.0,4.0,8.0,5.0,2.0,1.0,2.0,3.0,,3.0,1.0,,6.0 N82115,33.0,49.0,37.0,53.0,32.0,53.0,55.0,41.0,49.0,38.0,55.0,47.0,57.0,35.0,52.0,44.0,52.0,43.0,32.0,57.0,54.0,63.0,49.0,57.0,71.0,71.0,74.0,69.0,102.0,69.0,79.0,75.0,70.0,72.0,71.0,76.0,70.0,65.0,86.0,69.0,74.0,57.0,74.0,64.0,42.0,53.0,39.0,60.0,41.0,52.0,49.0,40.0,46.0,68.0,45.0,47.0,54.0,49.0,45.0,58.0,61.0,46.0,67.0,55.0,53.0,47.0,61.0,43.0,53.0,47.0,40.0,35.0,45.0,37.0,31.0,26.0,35.0,24.0,40.0,30.0,24.0,20.0,22.0,16.0,16.0,13.0,10.0,12.0,6.0,8.0,2.0,2.0,3.0,2.0,2.0,2.0 N82116,39.0,28.0,24.0,46.0,47.0,59.0,51.0,62.0,53.0,50.0,52.0,48.0,53.0,47.0,42.0,47.0,56.0,46.0,52.0,36.0,46.0,41.0,43.0,28.0,51.0,43.0,46.0,52.0,42.0,50.0,44.0,75.0,61.0,62.0,74.0,69.0,66.0,85.0,70.0,72.0,66.0,59.0,58.0,64.0,67.0,57.0,61.0,49.0,43.0,44.0,42.0,45.0,50.0,46.0,51.0,44.0,44.0,45.0,62.0,55.0,63.0,61.0,48.0,48.0,60.0,61.0,49.0,43.0,35.0,34.0,37.0,29.0,28.0,32.0,29.0,19.0,35.0,28.0,24.0,18.0,26.0,15.0,17.0,14.0,13.0,17.0,10.0,17.0,10.0,10.0,9.0,5.0,3.0,2.0,4.0,7.0 N82117,78.0,57.0,67.0,55.0,66.0,57.0,56.0,58.0,73.0,62.0,40.0,48.0,46.0,44.0,44.0,40.0,42.0,56.0,746.0,1853.0,2261.0,2112.0,2139.0,1996.0,1833.0,1476.0,1489.0,1331.0,1091.0,872.0,736.0,587.0,497.0,389.0,394.0,352.0,327.0,256.0,221.0,235.0,198.0,170.0,153.0,137.0,144.0,131.0,105.0,104.0,75.0,88.0,79.0,76.0,84.0,76.0,66.0,70.0,74.0,65.0,58.0,82.0,80.0,65.0,76.0,48.0,51.0,45.0,40.0,48.0,34.0,32.0,40.0,34.0,34.0,21.0,36.0,24.0,25.0,27.0,19.0,20.0,17.0,15.0,11.0,14.0,2.0,11.0,4.0,16.0,4.0,8.0,6.0,5.0,7.0,4.0,1.0,17.0 N82617,19.0,21.0,22.0,19.0,15.0,11.0,16.0,14.0,24.0,13.0,13.0,10.0,14.0,9.0,12.0,14.0,10.0,17.0,88.0,238.0,303.0,305.0,277.0,309.0,324.0,278.0,239.0,222.0,184.0,159.0,147.0,144.0,107.0,100.0,85.0,81.0,69.0,59.0,49.0,53.0,40.0,35.0,36.0,28.0,26.0,21.0,20.0,16.0,11.0,17.0,11.0,17.0,13.0,21.0,16.0,25.0,15.0,7.0,10.0,30.0,21.0,14.0,20.0,7.0,18.0,12.0,11.0,9.0,15.0,11.0,11.0,5.0,9.0,7.0,6.0,10.0,11.0,14.0,5.0,7.0,3.0,4.0,5.0,3.0,4.0,3.0,10.0,2.0,4.0,1.0,3.0,1.0,4.0,2.0,1.0,1.0 N82633,26.0,15.0,21.0,14.0,22.0,24.0,24.0,20.0,19.0,21.0,19.0,22.0,20.0,17.0,19.0,22.0,25.0,18.0,11.0,14.0,17.0,17.0,20.0,17.0,24.0,26.0,27.0,22.0,28.0,20.0,28.0,27.0,30.0,30.0,24.0,15.0,25.0,24.0,27.0,25.0,28.0,34.0,24.0,23.0,18.0,29.0,11.0,22.0,29.0,24.0,20.0,23.0,28.0,22.0,27.0,26.0,23.0,17.0,20.0,21.0,24.0,30.0,17.0,17.0,30.0,21.0,24.0,31.0,31.0,22.0,18.0,18.0,20.0,17.0,21.0,18.0,20.0,18.0,30.0,19.0,15.0,11.0,18.0,12.0,14.0,10.0,7.0,6.0,7.0,13.0,5.0,5.0,9.0,3.0,8.0,12.0 N82641,20.0,9.0,26.0,11.0,18.0,18.0,31.0,21.0,22.0,33.0,29.0,24.0,26.0,19.0,30.0,24.0,22.0,23.0,21.0,25.0,28.0,26.0,31.0,38.0,31.0,43.0,39.0,55.0,48.0,59.0,57.0,55.0,45.0,46.0,46.0,51.0,48.0,46.0,34.0,52.0,53.0,53.0,56.0,40.0,46.0,51.0,39.0,38.0,41.0,30.0,33.0,33.0,32.0,30.0,35.0,41.0,25.0,29.0,25.0,28.0,36.0,23.0,32.0,21.0,30.0,25.0,27.0,28.0,19.0,14.0,20.0,12.0,11.0,21.0,17.0,20.0,13.0,16.0,11.0,11.0,5.0,12.0,7.0,7.0,8.0,10.0,9.0,3.0,3.0,2.0,4.0,6.0,3.0,1.0,3.0,4.0 N82645,51.0,34.0,32.0,47.0,49.0,38.0,46.0,41.0,52.0,33.0,44.0,44.0,45.0,43.0,42.0,30.0,48.0,44.0,50.0,74.0,117.0,130.0,155.0,141.0,154.0,127.0,159.0,145.0,128.0,104.0,101.0,111.0,80.0,81.0,84.0,69.0,57.0,81.0,72.0,57.0,49.0,61.0,50.0,53.0,46.0,47.0,43.0,37.0,32.0,30.0,42.0,31.0,37.0,34.0,36.0,32.0,25.0,27.0,27.0,35.0,37.0,23.0,27.0,19.0,21.0,26.0,16.0,35.0,16.0,20.0,16.0,23.0,17.0,10.0,15.0,13.0,13.0,9.0,8.0,7.0,10.0,13.0,6.0,5.0,6.0,9.0,5.0,3.0,5.0,5.0,4.0,2.0,1.0,,1.0,1.0 N82646,49.0,56.0,52.0,54.0,61.0,55.0,70.0,65.0,77.0,70.0,73.0,87.0,79.0,80.0,71.0,70.0,65.0,71.0,67.0,66.0,47.0,58.0,46.0,51.0,66.0,63.0,64.0,68.0,79.0,67.0,69.0,73.0,76.0,67.0,80.0,70.0,76.0,78.0,64.0,74.0,62.0,54.0,62.0,47.0,54.0,48.0,48.0,43.0,40.0,39.0,31.0,30.0,35.0,37.0,41.0,37.0,34.0,31.0,27.0,32.0,39.0,43.0,34.0,24.0,29.0,19.0,32.0,26.0,25.0,19.0,31.0,22.0,22.0,14.0,24.0,14.0,16.0,14.0,15.0,10.0,10.0,12.0,8.0,5.0,5.0,3.0,7.0,5.0,2.0,3.0,2.0,4.0,3.0,1.0,,3.0 N82648,8.0,14.0,19.0,14.0,10.0,16.0,19.0,10.0,10.0,10.0,12.0,22.0,10.0,14.0,8.0,12.0,9.0,10.0,13.0,8.0,9.0,10.0,15.0,12.0,9.0,18.0,11.0,32.0,25.0,31.0,19.0,29.0,12.0,22.0,25.0,18.0,24.0,21.0,25.0,17.0,17.0,21.0,16.0,13.0,14.0,16.0,17.0,13.0,18.0,9.0,12.0,12.0,14.0,11.0,12.0,8.0,8.0,12.0,14.0,19.0,21.0,8.0,17.0,19.0,14.0,14.0,10.0,13.0,15.0,11.0,8.0,9.0,8.0,4.0,3.0,9.0,11.0,2.0,7.0,5.0,7.0,8.0,7.0,1.0,3.0,3.0,3.0,3.0,1.0,2.0,,2.0,,2.0,, N82650,19.0,30.0,21.0,24.0,34.0,41.0,41.0,32.0,38.0,31.0,38.0,40.0,38.0,46.0,39.0,28.0,31.0,31.0,24.0,39.0,37.0,33.0,32.0,25.0,41.0,33.0,24.0,30.0,31.0,34.0,43.0,51.0,49.0,50.0,37.0,40.0,59.0,40.0,55.0,40.0,54.0,35.0,37.0,36.0,29.0,38.0,30.0,24.0,30.0,21.0,25.0,20.0,21.0,29.0,26.0,20.0,31.0,31.0,28.0,26.0,38.0,26.0,24.0,36.0,33.0,26.0,24.0,26.0,23.0,17.0,15.0,19.0,14.0,12.0,8.0,8.0,7.0,14.0,11.0,7.0,7.0,11.0,2.0,4.0,6.0,3.0,5.0,,5.0,5.0,2.0,,3.0,2.0,2.0,1.0 N82651,16.0,11.0,10.0,19.0,17.0,19.0,27.0,16.0,27.0,32.0,25.0,23.0,25.0,25.0,27.0,34.0,24.0,22.0,18.0,14.0,25.0,13.0,24.0,14.0,34.0,18.0,32.0,31.0,20.0,23.0,29.0,22.0,20.0,30.0,31.0,36.0,39.0,35.0,23.0,28.0,26.0,28.0,31.0,33.0,18.0,26.0,26.0,27.0,23.0,21.0,16.0,19.0,19.0,25.0,10.0,17.0,32.0,26.0,20.0,31.0,24.0,17.0,24.0,26.0,27.0,18.0,15.0,34.0,18.0,21.0,18.0,21.0,28.0,19.0,13.0,15.0,20.0,10.0,15.0,7.0,6.0,12.0,10.0,8.0,4.0,6.0,7.0,3.0,2.0,2.0,3.0,3.0,2.0,,,5.0 N82655,12.0,4.0,9.0,13.0,9.0,7.0,11.0,5.0,10.0,14.0,15.0,14.0,11.0,13.0,16.0,12.0,20.0,20.0,14.0,9.0,9.0,15.0,16.0,7.0,10.0,4.0,13.0,7.0,12.0,10.0,15.0,11.0,16.0,13.0,16.0,23.0,12.0,14.0,13.0,20.0,14.0,17.0,23.0,9.0,21.0,16.0,9.0,11.0,11.0,12.0,8.0,12.0,13.0,14.0,16.0,13.0,12.0,6.0,11.0,29.0,18.0,17.0,20.0,19.0,12.0,14.0,8.0,15.0,18.0,13.0,21.0,12.0,12.0,12.0,14.0,12.0,11.0,13.0,7.0,6.0,8.0,16.0,14.0,6.0,14.0,8.0,12.0,9.0,8.0,7.0,5.0,3.0,5.0,5.0,4.0,17.0 N82662,45.0,44.0,67.0,60.0,79.0,52.0,59.0,55.0,70.0,56.0,62.0,65.0,61.0,63.0,62.0,63.0,71.0,52.0,61.0,58.0,60.0,54.0,54.0,42.0,43.0,48.0,40.0,58.0,49.0,50.0,53.0,67.0,66.0,60.0,56.0,60.0,62.0,55.0,57.0,42.0,61.0,53.0,58.0,42.0,44.0,48.0,47.0,32.0,47.0,30.0,29.0,42.0,38.0,28.0,35.0,34.0,37.0,31.0,33.0,33.0,30.0,26.0,22.0,39.0,33.0,17.0,21.0,27.0,23.0,28.0,17.0,21.0,9.0,17.0,18.0,22.0,19.0,15.0,13.0,11.0,14.0,9.0,10.0,14.0,1.0,7.0,14.0,10.0,9.0,7.0,7.0,3.0,5.0,3.0,1.0,8.0 N82663,30.0,30.0,30.0,37.0,28.0,22.0,32.0,30.0,36.0,24.0,35.0,34.0,21.0,35.0,30.0,24.0,28.0,25.0,31.0,20.0,17.0,16.0,21.0,23.0,20.0,22.0,24.0,28.0,35.0,30.0,30.0,29.0,42.0,42.0,38.0,40.0,50.0,40.0,40.0,43.0,37.0,26.0,32.0,28.0,30.0,30.0,17.0,27.0,25.0,22.0,23.0,19.0,28.0,22.0,32.0,23.0,20.0,30.0,28.0,20.0,42.0,32.0,33.0,29.0,28.0,25.0,25.0,26.0,27.0,28.0,15.0,18.0,30.0,16.0,21.0,12.0,23.0,24.0,15.0,10.0,12.0,13.0,4.0,6.0,11.0,10.0,5.0,8.0,8.0,3.0,1.0,3.0,3.0,4.0,,1.0 N82664,9.0,3.0,8.0,10.0,14.0,12.0,24.0,16.0,12.0,17.0,17.0,21.0,22.0,18.0,14.0,16.0,16.0,14.0,8.0,12.0,13.0,16.0,14.0,10.0,8.0,7.0,9.0,18.0,19.0,12.0,13.0,15.0,21.0,13.0,22.0,22.0,22.0,19.0,31.0,24.0,29.0,20.0,18.0,21.0,31.0,21.0,14.0,16.0,21.0,15.0,6.0,19.0,21.0,21.0,17.0,17.0,18.0,14.0,17.0,14.0,23.0,24.0,14.0,23.0,20.0,15.0,11.0,12.0,8.0,9.0,10.0,13.0,8.0,11.0,9.0,10.0,8.0,7.0,8.0,6.0,10.0,6.0,2.0,5.0,7.0,5.0,2.0,1.0,2.0,5.0,4.0,2.0,6.0,1.0,,4.0 N82668,21.0,24.0,19.0,21.0,27.0,18.0,23.0,38.0,25.0,32.0,19.0,27.0,20.0,22.0,17.0,28.0,16.0,20.0,19.0,19.0,23.0,18.0,25.0,24.0,19.0,26.0,34.0,28.0,51.0,20.0,36.0,42.0,40.0,46.0,34.0,46.0,32.0,36.0,20.0,31.0,28.0,34.0,24.0,21.0,22.0,22.0,14.0,15.0,12.0,13.0,19.0,14.0,19.0,22.0,17.0,16.0,18.0,14.0,23.0,19.0,13.0,15.0,18.0,13.0,13.0,12.0,10.0,13.0,4.0,12.0,7.0,14.0,5.0,6.0,9.0,12.0,4.0,12.0,9.0,6.0,8.0,6.0,2.0,4.0,6.0,1.0,8.0,5.0,2.0,,3.0,2.0,3.0,1.0,1.0,4.0 N82669,7.0,12.0,16.0,22.0,19.0,14.0,21.0,25.0,28.0,17.0,28.0,21.0,22.0,22.0,26.0,18.0,20.0,18.0,16.0,16.0,19.0,13.0,21.0,21.0,21.0,20.0,20.0,27.0,27.0,25.0,24.0,22.0,29.0,27.0,26.0,31.0,25.0,24.0,20.0,25.0,30.0,26.0,20.0,16.0,25.0,22.0,23.0,11.0,20.0,24.0,21.0,19.0,18.0,18.0,18.0,14.0,25.0,16.0,10.0,19.0,16.0,17.0,18.0,17.0,16.0,11.0,18.0,15.0,16.0,22.0,13.0,17.0,12.0,16.0,8.0,15.0,12.0,8.0,14.0,6.0,3.0,3.0,5.0,3.0,4.0,4.0,9.0,6.0,2.0,2.0,5.0,2.0,1.0,2.0,1.0,3.0 N82671,7.0,11.0,4.0,13.0,9.0,8.0,9.0,7.0,16.0,15.0,11.0,12.0,11.0,12.0,8.0,14.0,10.0,19.0,12.0,19.0,11.0,17.0,18.0,16.0,12.0,24.0,21.0,34.0,23.0,24.0,18.0,21.0,16.0,20.0,14.0,15.0,23.0,14.0,16.0,19.0,19.0,18.0,10.0,12.0,16.0,12.0,17.0,8.0,11.0,13.0,17.0,13.0,8.0,9.0,16.0,12.0,12.0,15.0,7.0,10.0,12.0,10.0,13.0,8.0,6.0,9.0,6.0,8.0,10.0,8.0,11.0,7.0,8.0,9.0,4.0,7.0,6.0,11.0,8.0,5.0,5.0,4.0,6.0,5.0,4.0,1.0,2.0,1.0,2.0,1.0,,,,2.0,1.0,1.0 N82676,17.0,11.0,12.0,15.0,17.0,18.0,25.0,21.0,21.0,34.0,30.0,32.0,22.0,21.0,36.0,17.0,31.0,28.0,27.0,20.0,28.0,27.0,12.0,18.0,16.0,30.0,30.0,23.0,21.0,31.0,26.0,21.0,20.0,23.0,26.0,34.0,30.0,32.0,26.0,34.0,37.0,22.0,28.0,25.0,20.0,29.0,30.0,31.0,26.0,23.0,23.0,35.0,24.0,35.0,35.0,27.0,33.0,35.0,31.0,42.0,28.0,32.0,24.0,25.0,38.0,40.0,20.0,30.0,14.0,32.0,20.0,25.0,17.0,14.0,16.0,15.0,13.0,11.0,11.0,4.0,4.0,6.0,8.0,8.0,5.0,5.0,11.0,2.0,4.0,5.0,4.0,2.0,1.0,,2.0,1.0 N82678,10.0,18.0,15.0,20.0,20.0,22.0,22.0,24.0,26.0,24.0,25.0,20.0,29.0,23.0,24.0,18.0,23.0,18.0,24.0,17.0,26.0,13.0,13.0,12.0,16.0,15.0,17.0,13.0,18.0,23.0,23.0,24.0,34.0,30.0,43.0,34.0,24.0,37.0,26.0,28.0,26.0,27.0,26.0,31.0,26.0,16.0,34.0,16.0,19.0,20.0,12.0,12.0,18.0,25.0,18.0,26.0,22.0,12.0,16.0,20.0,14.0,23.0,20.0,16.0,16.0,23.0,9.0,16.0,16.0,13.0,14.0,14.0,10.0,15.0,14.0,2.0,14.0,5.0,6.0,7.0,9.0,6.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,1.0,2.0,2.0,2.0,,, N83001,65.0,77.0,70.0,71.0,88.0,73.0,90.0,80.0,109.0,90.0,73.0,82.0,86.0,97.0,78.0,97.0,97.0,94.0,82.0,90.0,85.0,83.0,82.0,76.0,82.0,94.0,76.0,80.0,80.0,106.0,100.0,117.0,104.0,124.0,108.0,122.0,110.0,121.0,105.0,127.0,105.0,95.0,135.0,92.0,95.0,77.0,92.0,86.0,68.0,89.0,94.0,81.0,99.0,98.0,94.0,97.0,109.0,124.0,97.0,106.0,104.0,130.0,86.0,95.0,89.0,96.0,82.0,70.0,65.0,77.0,58.0,62.0,55.0,66.0,51.0,56.0,43.0,69.0,68.0,45.0,41.0,38.0,32.0,33.0,25.0,31.0,31.0,20.0,12.0,14.0,10.0,13.0,8.0,6.0,5.0,16.0 N83002,55.0,39.0,45.0,49.0,62.0,61.0,53.0,67.0,65.0,63.0,69.0,71.0,81.0,65.0,81.0,79.0,79.0,88.0,60.0,62.0,52.0,63.0,55.0,53.0,62.0,58.0,72.0,51.0,57.0,75.0,74.0,86.0,84.0,89.0,91.0,69.0,92.0,69.0,89.0,90.0,66.0,84.0,82.0,90.0,90.0,85.0,75.0,68.0,64.0,79.0,86.0,76.0,97.0,88.0,84.0,72.0,80.0,88.0,93.0,102.0,81.0,70.0,79.0,84.0,66.0,70.0,53.0,68.0,58.0,72.0,57.0,62.0,49.0,45.0,36.0,38.0,55.0,71.0,52.0,51.0,42.0,27.0,45.0,33.0,33.0,35.0,19.0,26.0,23.0,15.0,18.0,9.0,11.0,8.0,11.0,12.0 N83003,30.0,31.0,34.0,29.0,32.0,31.0,30.0,33.0,30.0,28.0,25.0,33.0,43.0,49.0,40.0,36.0,35.0,30.0,41.0,44.0,28.0,34.0,25.0,42.0,30.0,37.0,42.0,31.0,27.0,45.0,41.0,47.0,47.0,35.0,52.0,34.0,43.0,36.0,46.0,41.0,31.0,47.0,48.0,45.0,28.0,52.0,29.0,31.0,32.0,37.0,54.0,38.0,49.0,57.0,62.0,55.0,58.0,50.0,51.0,59.0,43.0,55.0,54.0,72.0,39.0,45.0,44.0,34.0,37.0,52.0,30.0,57.0,34.0,35.0,40.0,39.0,55.0,47.0,33.0,30.0,38.0,29.0,23.0,22.0,18.0,22.0,29.0,18.0,16.0,16.0,10.0,10.0,10.0,5.0,3.0,10.0 N83005,32.0,42.0,46.0,45.0,35.0,30.0,33.0,45.0,49.0,58.0,46.0,46.0,49.0,47.0,52.0,38.0,49.0,43.0,48.0,39.0,45.0,33.0,53.0,50.0,45.0,44.0,42.0,64.0,60.0,68.0,64.0,80.0,61.0,75.0,78.0,69.0,65.0,58.0,63.0,53.0,54.0,53.0,55.0,53.0,39.0,54.0,54.0,44.0,32.0,50.0,47.0,48.0,52.0,52.0,62.0,50.0,74.0,63.0,71.0,67.0,79.0,79.0,59.0,62.0,54.0,55.0,54.0,51.0,50.0,46.0,45.0,41.0,31.0,40.0,39.0,37.0,43.0,45.0,46.0,36.0,43.0,40.0,23.0,31.0,23.0,33.0,20.0,28.0,18.0,9.0,13.0,17.0,10.0,6.0,3.0,12.0 N83006,8.0,18.0,11.0,24.0,12.0,15.0,14.0,12.0,14.0,12.0,16.0,19.0,22.0,13.0,19.0,16.0,18.0,15.0,16.0,5.0,15.0,11.0,24.0,22.0,17.0,20.0,31.0,27.0,26.0,25.0,15.0,31.0,21.0,28.0,24.0,21.0,25.0,29.0,13.0,22.0,18.0,13.0,18.0,19.0,18.0,20.0,27.0,11.0,17.0,22.0,14.0,24.0,34.0,18.0,21.0,22.0,32.0,26.0,14.0,24.0,25.0,28.0,28.0,17.0,17.0,14.0,20.0,18.0,18.0,14.0,20.0,10.0,10.0,24.0,16.0,15.0,14.0,24.0,20.0,16.0,10.0,16.0,8.0,5.0,9.0,8.0,6.0,5.0,4.0,4.0,2.0,1.0,2.0,2.0,5.0,4.0 N83007,11.0,19.0,15.0,9.0,24.0,8.0,18.0,20.0,17.0,15.0,10.0,18.0,16.0,20.0,20.0,18.0,23.0,22.0,17.0,10.0,14.0,21.0,16.0,16.0,11.0,14.0,17.0,22.0,19.0,17.0,28.0,25.0,30.0,32.0,20.0,24.0,30.0,27.0,17.0,17.0,24.0,14.0,22.0,19.0,24.0,28.0,26.0,10.0,12.0,19.0,23.0,21.0,23.0,16.0,20.0,22.0,15.0,15.0,17.0,22.0,19.0,18.0,18.0,17.0,27.0,19.0,24.0,16.0,15.0,15.0,14.0,12.0,12.0,15.0,17.0,13.0,18.0,9.0,9.0,13.0,9.0,6.0,6.0,9.0,7.0,5.0,9.0,4.0,4.0,3.0,,7.0,,4.0,, N83008,29.0,42.0,44.0,54.0,49.0,54.0,42.0,50.0,51.0,53.0,52.0,52.0,55.0,57.0,50.0,52.0,58.0,55.0,53.0,38.0,36.0,45.0,48.0,37.0,45.0,56.0,39.0,61.0,63.0,42.0,64.0,66.0,70.0,66.0,73.0,53.0,64.0,56.0,54.0,86.0,52.0,67.0,57.0,56.0,52.0,45.0,47.0,36.0,41.0,49.0,54.0,47.0,44.0,50.0,53.0,48.0,73.0,48.0,44.0,47.0,52.0,41.0,52.0,39.0,50.0,57.0,35.0,59.0,39.0,41.0,43.0,34.0,41.0,42.0,26.0,33.0,30.0,30.0,26.0,23.0,20.0,11.0,9.0,10.0,5.0,10.0,10.0,6.0,9.0,6.0,5.0,2.0,4.0,2.0,1.0,4.0 N83009,54.0,55.0,61.0,65.0,63.0,81.0,74.0,68.0,68.0,52.0,69.0,69.0,75.0,71.0,70.0,69.0,62.0,66.0,74.0,76.0,58.0,55.0,69.0,82.0,65.0,56.0,78.0,79.0,83.0,64.0,79.0,79.0,88.0,91.0,95.0,87.0,98.0,88.0,81.0,96.0,76.0,84.0,93.0,90.0,69.0,60.0,71.0,51.0,57.0,59.0,65.0,68.0,57.0,78.0,73.0,73.0,90.0,86.0,64.0,68.0,93.0,94.0,91.0,88.0,97.0,94.0,82.0,96.0,93.0,79.0,71.0,66.0,67.0,63.0,45.0,47.0,46.0,45.0,47.0,27.0,19.0,23.0,17.0,21.0,17.0,14.0,13.0,19.0,14.0,11.0,13.0,7.0,8.0,7.0,8.0,6.0 N83010,22.0,23.0,29.0,29.0,25.0,24.0,31.0,22.0,28.0,28.0,28.0,21.0,42.0,33.0,26.0,43.0,28.0,31.0,27.0,36.0,26.0,29.0,35.0,32.0,33.0,41.0,27.0,31.0,34.0,40.0,44.0,28.0,33.0,41.0,38.0,38.0,40.0,48.0,39.0,27.0,48.0,38.0,35.0,32.0,28.0,32.0,35.0,38.0,34.0,30.0,32.0,51.0,39.0,57.0,64.0,67.0,60.0,46.0,54.0,61.0,64.0,73.0,58.0,50.0,47.0,45.0,49.0,39.0,55.0,33.0,31.0,36.0,31.0,26.0,39.0,39.0,42.0,37.0,46.0,44.0,41.0,41.0,49.0,39.0,33.0,29.0,33.0,40.0,28.0,31.0,21.0,7.0,15.0,12.0,10.0,12.0 N83012,37.0,40.0,27.0,37.0,38.0,44.0,45.0,55.0,53.0,48.0,52.0,49.0,48.0,55.0,49.0,61.0,62.0,47.0,42.0,47.0,53.0,48.0,55.0,52.0,52.0,54.0,65.0,62.0,60.0,49.0,74.0,54.0,72.0,76.0,63.0,61.0,72.0,76.0,70.0,61.0,59.0,58.0,59.0,60.0,52.0,65.0,55.0,65.0,56.0,52.0,64.0,54.0,64.0,82.0,75.0,79.0,85.0,76.0,85.0,95.0,77.0,66.0,80.0,71.0,61.0,74.0,69.0,70.0,67.0,60.0,58.0,68.0,60.0,56.0,65.0,61.0,72.0,81.0,67.0,29.0,47.0,44.0,38.0,32.0,24.0,32.0,23.0,24.0,10.0,12.0,20.0,8.0,9.0,8.0,7.0,12.0 N83013,18.0,15.0,17.0,25.0,26.0,19.0,31.0,28.0,25.0,32.0,34.0,21.0,41.0,27.0,23.0,19.0,29.0,21.0,18.0,17.0,18.0,25.0,29.0,22.0,28.0,26.0,22.0,27.0,28.0,26.0,28.0,29.0,25.0,36.0,38.0,27.0,37.0,39.0,41.0,37.0,36.0,32.0,38.0,22.0,32.0,31.0,30.0,28.0,25.0,16.0,20.0,25.0,25.0,28.0,28.0,35.0,38.0,39.0,29.0,26.0,38.0,43.0,48.0,40.0,46.0,39.0,32.0,45.0,41.0,32.0,28.0,43.0,32.0,31.0,19.0,27.0,17.0,27.0,23.0,8.0,13.0,9.0,10.0,12.0,8.0,10.0,4.0,11.0,10.0,7.0,7.0,8.0,3.0,4.0,1.0,4.0 N83014,41.0,51.0,68.0,63.0,49.0,69.0,66.0,64.0,76.0,49.0,75.0,60.0,70.0,66.0,60.0,64.0,78.0,53.0,65.0,61.0,45.0,54.0,44.0,51.0,57.0,62.0,63.0,54.0,81.0,75.0,75.0,91.0,92.0,98.0,105.0,91.0,76.0,81.0,88.0,71.0,71.0,71.0,80.0,68.0,68.0,51.0,65.0,65.0,48.0,52.0,46.0,51.0,58.0,66.0,88.0,89.0,74.0,90.0,73.0,85.0,94.0,90.0,74.0,75.0,71.0,63.0,67.0,63.0,58.0,54.0,43.0,51.0,36.0,48.0,30.0,40.0,37.0,37.0,25.0,36.0,30.0,26.0,27.0,18.0,20.0,27.0,13.0,28.0,20.0,22.0,18.0,7.0,9.0,8.0,,10.0 N83017,33.0,31.0,35.0,28.0,32.0,28.0,32.0,34.0,24.0,29.0,34.0,36.0,16.0,20.0,28.0,22.0,24.0,20.0,33.0,28.0,33.0,32.0,40.0,29.0,47.0,47.0,57.0,52.0,48.0,56.0,36.0,51.0,62.0,45.0,60.0,52.0,45.0,44.0,55.0,48.0,50.0,33.0,45.0,27.0,32.0,38.0,34.0,27.0,24.0,35.0,29.0,45.0,40.0,47.0,33.0,38.0,46.0,38.0,36.0,26.0,33.0,28.0,22.0,26.0,30.0,35.0,31.0,29.0,26.0,24.0,24.0,31.0,32.0,37.0,43.0,32.0,48.0,32.0,46.0,29.0,24.0,23.0,20.0,21.0,19.0,18.0,17.0,6.0,14.0,7.0,9.0,2.0,3.0,6.0,5.0,4.0 N83018,19.0,39.0,51.0,50.0,59.0,43.0,47.0,75.0,60.0,63.0,65.0,56.0,48.0,66.0,55.0,42.0,48.0,55.0,55.0,49.0,55.0,45.0,43.0,41.0,43.0,66.0,59.0,82.0,66.0,61.0,57.0,60.0,68.0,70.0,68.0,66.0,70.0,53.0,67.0,76.0,71.0,48.0,50.0,52.0,52.0,48.0,53.0,43.0,45.0,31.0,51.0,42.0,53.0,62.0,71.0,69.0,70.0,71.0,68.0,79.0,79.0,59.0,69.0,73.0,49.0,44.0,55.0,48.0,42.0,37.0,33.0,25.0,30.0,23.0,25.0,16.0,29.0,27.0,41.0,40.0,36.0,25.0,32.0,23.0,19.0,25.0,21.0,20.0,19.0,12.0,6.0,10.0,4.0,3.0,,5.0 N83019,17.0,14.0,27.0,18.0,17.0,24.0,27.0,40.0,35.0,31.0,41.0,34.0,34.0,40.0,35.0,37.0,42.0,40.0,43.0,36.0,39.0,37.0,26.0,31.0,28.0,38.0,25.0,33.0,30.0,33.0,29.0,32.0,33.0,40.0,43.0,44.0,32.0,33.0,42.0,45.0,32.0,36.0,39.0,46.0,44.0,48.0,52.0,44.0,46.0,43.0,36.0,58.0,59.0,74.0,52.0,52.0,64.0,47.0,61.0,68.0,58.0,54.0,51.0,49.0,66.0,46.0,48.0,49.0,49.0,47.0,37.0,64.0,50.0,59.0,77.0,53.0,53.0,68.0,49.0,49.0,44.0,51.0,50.0,35.0,39.0,32.0,19.0,25.0,20.0,9.0,9.0,11.0,9.0,2.0,3.0,8.0 N83020,60.0,71.0,68.0,63.0,90.0,80.0,76.0,82.0,101.0,98.0,94.0,90.0,93.0,101.0,84.0,118.0,87.0,99.0,104.0,92.0,77.0,88.0,68.0,85.0,83.0,97.0,94.0,79.0,91.0,91.0,108.0,105.0,116.0,119.0,103.0,95.0,106.0,121.0,115.0,102.0,120.0,105.0,107.0,102.0,115.0,95.0,114.0,99.0,87.0,86.0,111.0,108.0,124.0,140.0,127.0,110.0,135.0,128.0,117.0,120.0,150.0,131.0,135.0,123.0,123.0,114.0,106.0,110.0,103.0,106.0,107.0,90.0,90.0,101.0,98.0,98.0,109.0,111.0,109.0,83.0,78.0,72.0,59.0,42.0,52.0,40.0,45.0,34.0,28.0,30.0,32.0,20.0,7.0,19.0,8.0,19.0 N83021,44.0,34.0,35.0,41.0,27.0,32.0,29.0,43.0,53.0,50.0,46.0,56.0,41.0,38.0,56.0,49.0,55.0,54.0,56.0,48.0,34.0,44.0,40.0,38.0,49.0,36.0,44.0,44.0,49.0,48.0,41.0,53.0,57.0,56.0,49.0,60.0,49.0,49.0,54.0,53.0,46.0,54.0,56.0,58.0,42.0,47.0,50.0,53.0,40.0,45.0,37.0,41.0,56.0,72.0,57.0,56.0,63.0,63.0,47.0,52.0,50.0,61.0,44.0,51.0,45.0,31.0,32.0,37.0,36.0,37.0,42.0,46.0,37.0,35.0,48.0,35.0,33.0,40.0,54.0,32.0,36.0,27.0,25.0,18.0,15.0,18.0,14.0,18.0,15.0,10.0,5.0,3.0,4.0,6.0,3.0,4.0 N83023,24.0,50.0,57.0,50.0,63.0,46.0,72.0,53.0,52.0,64.0,65.0,61.0,62.0,64.0,54.0,80.0,60.0,66.0,67.0,62.0,47.0,56.0,48.0,60.0,54.0,66.0,71.0,68.0,72.0,70.0,73.0,72.0,74.0,74.0,76.0,82.0,70.0,72.0,91.0,62.0,66.0,78.0,67.0,75.0,73.0,67.0,55.0,63.0,61.0,76.0,66.0,67.0,76.0,91.0,79.0,88.0,83.0,73.0,85.0,83.0,69.0,70.0,77.0,67.0,82.0,93.0,61.0,75.0,72.0,69.0,57.0,58.0,53.0,62.0,69.0,66.0,54.0,70.0,58.0,38.0,37.0,54.0,34.0,32.0,32.0,20.0,29.0,23.0,14.0,17.0,14.0,13.0,7.0,3.0,4.0,13.0 N83024,32.0,53.0,54.0,40.0,38.0,46.0,45.0,55.0,40.0,49.0,37.0,45.0,38.0,33.0,47.0,48.0,38.0,42.0,44.0,35.0,41.0,21.0,33.0,39.0,41.0,35.0,42.0,58.0,67.0,46.0,60.0,70.0,65.0,61.0,49.0,82.0,61.0,75.0,59.0,51.0,52.0,48.0,42.0,48.0,42.0,51.0,38.0,37.0,40.0,48.0,40.0,45.0,50.0,49.0,57.0,46.0,49.0,55.0,63.0,56.0,59.0,49.0,57.0,61.0,56.0,57.0,46.0,42.0,38.0,43.0,45.0,49.0,44.0,33.0,46.0,40.0,43.0,56.0,54.0,33.0,33.0,30.0,19.0,23.0,12.0,24.0,21.0,18.0,18.0,10.0,5.0,13.0,6.0,7.0,9.0,8.0 N83025,75.0,100.0,112.0,80.0,72.0,105.0,90.0,105.0,112.0,94.0,91.0,103.0,83.0,106.0,88.0,82.0,105.0,73.0,71.0,86.0,71.0,76.0,69.0,85.0,91.0,95.0,110.0,133.0,121.0,131.0,138.0,132.0,102.0,138.0,140.0,128.0,140.0,134.0,119.0,111.0,115.0,120.0,101.0,103.0,96.0,75.0,103.0,73.0,70.0,65.0,77.0,55.0,72.0,77.0,88.0,76.0,90.0,79.0,101.0,79.0,97.0,86.0,81.0,89.0,81.0,67.0,57.0,68.0,66.0,54.0,47.0,46.0,54.0,37.0,50.0,45.0,41.0,50.0,39.0,30.0,30.0,21.0,21.0,19.0,16.0,22.0,20.0,17.0,14.0,15.0,5.0,4.0,6.0,6.0,1.0,5.0 N83026,10.0,8.0,8.0,11.0,7.0,11.0,12.0,8.0,11.0,11.0,11.0,11.0,9.0,12.0,11.0,16.0,8.0,13.0,16.0,8.0,15.0,10.0,8.0,12.0,12.0,12.0,6.0,10.0,17.0,11.0,12.0,19.0,19.0,15.0,21.0,19.0,14.0,19.0,13.0,14.0,10.0,14.0,14.0,11.0,13.0,10.0,15.0,8.0,18.0,9.0,11.0,14.0,17.0,25.0,18.0,22.0,12.0,18.0,10.0,13.0,24.0,16.0,24.0,12.0,22.0,21.0,19.0,10.0,19.0,24.0,16.0,17.0,14.0,21.0,19.0,16.0,18.0,16.0,17.0,15.0,12.0,10.0,9.0,9.0,7.0,6.0,6.0,4.0,5.0,5.0,,2.0,1.0,,,2.0 N83027,24.0,35.0,37.0,27.0,23.0,37.0,32.0,30.0,43.0,40.0,27.0,34.0,43.0,29.0,35.0,38.0,34.0,26.0,37.0,21.0,25.0,45.0,32.0,29.0,22.0,50.0,48.0,39.0,33.0,46.0,32.0,58.0,59.0,54.0,39.0,47.0,45.0,38.0,39.0,41.0,46.0,56.0,51.0,39.0,30.0,41.0,38.0,29.0,32.0,36.0,46.0,47.0,41.0,38.0,47.0,43.0,43.0,45.0,47.0,49.0,39.0,43.0,41.0,54.0,38.0,43.0,50.0,36.0,27.0,36.0,42.0,40.0,39.0,45.0,40.0,41.0,45.0,40.0,67.0,30.0,37.0,21.0,32.0,24.0,20.0,24.0,18.0,11.0,19.0,20.0,12.0,7.0,7.0,5.0,3.0,6.0 N83028,69.0,90.0,80.0,98.0,123.0,103.0,122.0,102.0,120.0,123.0,120.0,113.0,133.0,122.0,109.0,122.0,117.0,126.0,107.0,122.0,121.0,117.0,111.0,105.0,92.0,132.0,127.0,135.0,147.0,137.0,167.0,150.0,148.0,157.0,161.0,132.0,151.0,143.0,170.0,157.0,124.0,140.0,147.0,140.0,134.0,130.0,134.0,122.0,117.0,121.0,114.0,110.0,119.0,165.0,144.0,121.0,159.0,141.0,177.0,134.0,190.0,150.0,181.0,168.0,170.0,149.0,135.0,133.0,117.0,118.0,103.0,95.0,105.0,87.0,93.0,99.0,72.0,74.0,82.0,55.0,76.0,49.0,53.0,52.0,39.0,46.0,39.0,34.0,34.0,39.0,24.0,19.0,30.0,15.0,22.0,31.0 N83030,16.0,26.0,30.0,43.0,27.0,31.0,27.0,39.0,38.0,29.0,41.0,29.0,42.0,39.0,44.0,38.0,39.0,28.0,25.0,24.0,16.0,25.0,23.0,23.0,22.0,30.0,22.0,25.0,29.0,31.0,42.0,29.0,37.0,52.0,55.0,43.0,55.0,62.0,39.0,49.0,47.0,43.0,34.0,53.0,50.0,41.0,19.0,24.0,21.0,31.0,20.0,29.0,24.0,29.0,41.0,27.0,33.0,30.0,40.0,37.0,44.0,45.0,33.0,41.0,38.0,49.0,36.0,34.0,32.0,35.0,29.0,25.0,25.0,20.0,31.0,27.0,24.0,23.0,25.0,19.0,18.0,21.0,12.0,12.0,10.0,11.0,13.0,14.0,11.0,11.0,10.0,2.0,2.0,3.0,3.0,5.0 N83031,13.0,21.0,22.0,17.0,10.0,19.0,18.0,26.0,18.0,19.0,21.0,18.0,20.0,16.0,18.0,20.0,19.0,15.0,16.0,22.0,18.0,8.0,22.0,14.0,21.0,28.0,13.0,21.0,19.0,25.0,22.0,23.0,29.0,27.0,22.0,38.0,22.0,24.0,20.0,24.0,32.0,31.0,21.0,19.0,26.0,24.0,18.0,12.0,4.0,15.0,11.0,22.0,8.0,12.0,18.0,16.0,16.0,13.0,17.0,22.0,21.0,22.0,20.0,14.0,16.0,13.0,12.0,14.0,11.0,17.0,10.0,10.0,11.0,9.0,8.0,9.0,10.0,11.0,8.0,2.0,9.0,2.0,3.0,4.0,3.0,4.0,,4.0,,1.0,4.0,2.0,1.0,,,3.0 N83032,61.0,73.0,61.0,79.0,71.0,79.0,71.0,90.0,68.0,71.0,84.0,78.0,77.0,77.0,72.0,74.0,88.0,87.0,67.0,79.0,83.0,60.0,62.0,52.0,70.0,87.0,76.0,93.0,91.0,87.0,95.0,101.0,94.0,95.0,99.0,92.0,89.0,98.0,90.0,103.0,90.0,90.0,92.0,80.0,76.0,104.0,73.0,67.0,82.0,73.0,79.0,70.0,76.0,87.0,75.0,70.0,84.0,68.0,68.0,70.0,73.0,82.0,85.0,66.0,76.0,60.0,67.0,77.0,79.0,59.0,66.0,63.0,72.0,53.0,49.0,56.0,50.0,54.0,38.0,25.0,24.0,23.0,16.0,18.0,15.0,16.0,15.0,19.0,10.0,11.0,6.0,7.0,11.0,5.0,7.0,8.0 N83033,22.0,22.0,15.0,35.0,29.0,21.0,32.0,35.0,28.0,37.0,28.0,34.0,36.0,30.0,24.0,30.0,30.0,35.0,20.0,31.0,16.0,24.0,26.0,18.0,30.0,26.0,38.0,29.0,38.0,29.0,42.0,27.0,39.0,36.0,32.0,31.0,35.0,45.0,49.0,40.0,37.0,35.0,31.0,29.0,42.0,33.0,36.0,35.0,31.0,30.0,27.0,29.0,28.0,40.0,40.0,23.0,28.0,45.0,49.0,47.0,45.0,31.0,38.0,48.0,36.0,48.0,49.0,43.0,43.0,37.0,40.0,37.0,36.0,33.0,27.0,29.0,20.0,25.0,22.0,9.0,8.0,9.0,18.0,9.0,6.0,6.0,8.0,5.0,6.0,4.0,4.0,4.0,4.0,2.0,1.0,2.0 N83035,23.0,22.0,24.0,32.0,26.0,34.0,29.0,39.0,28.0,47.0,38.0,42.0,46.0,36.0,36.0,38.0,42.0,45.0,34.0,26.0,44.0,38.0,44.0,40.0,41.0,36.0,47.0,33.0,55.0,44.0,38.0,46.0,50.0,53.0,44.0,45.0,55.0,39.0,45.0,56.0,49.0,44.0,46.0,49.0,47.0,46.0,27.0,50.0,41.0,39.0,44.0,50.0,50.0,64.0,65.0,69.0,54.0,72.0,45.0,60.0,61.0,56.0,44.0,43.0,44.0,40.0,48.0,34.0,31.0,49.0,29.0,30.0,32.0,29.0,37.0,35.0,39.0,38.0,39.0,23.0,22.0,23.0,23.0,18.0,18.0,22.0,15.0,18.0,17.0,8.0,8.0,11.0,10.0,2.0,4.0,14.0 N83041,12.0,8.0,14.0,16.0,19.0,10.0,11.0,22.0,17.0,19.0,23.0,22.0,26.0,29.0,33.0,21.0,25.0,19.0,33.0,18.0,24.0,24.0,19.0,19.0,22.0,20.0,15.0,20.0,14.0,18.0,17.0,14.0,16.0,27.0,23.0,32.0,35.0,22.0,24.0,16.0,27.0,31.0,26.0,29.0,25.0,32.0,26.0,18.0,30.0,18.0,26.0,29.0,22.0,34.0,31.0,39.0,36.0,26.0,31.0,30.0,38.0,31.0,37.0,38.0,31.0,40.0,37.0,32.0,31.0,37.0,37.0,33.0,30.0,31.0,38.0,23.0,50.0,52.0,59.0,36.0,34.0,25.0,28.0,19.0,13.0,14.0,18.0,14.0,8.0,10.0,10.0,9.0,5.0,7.0,1.0,8.0 N83043,18.0,16.0,17.0,15.0,18.0,12.0,19.0,27.0,26.0,22.0,23.0,17.0,34.0,23.0,18.0,25.0,21.0,20.0,26.0,23.0,24.0,22.0,18.0,12.0,21.0,20.0,22.0,21.0,22.0,25.0,24.0,29.0,23.0,30.0,42.0,27.0,32.0,26.0,33.0,32.0,25.0,24.0,21.0,27.0,22.0,23.0,30.0,15.0,21.0,14.0,20.0,20.0,26.0,24.0,28.0,31.0,25.0,20.0,25.0,28.0,39.0,48.0,34.0,31.0,22.0,25.0,27.0,22.0,15.0,19.0,22.0,17.0,18.0,16.0,18.0,11.0,14.0,19.0,15.0,6.0,10.0,17.0,10.0,13.0,14.0,6.0,7.0,7.0,6.0,9.0,9.0,4.0,3.0,1.0,1.0,1.0 N83045,66.0,70.0,65.0,67.0,73.0,66.0,63.0,66.0,59.0,67.0,59.0,71.0,48.0,63.0,51.0,69.0,61.0,60.0,44.0,52.0,36.0,44.0,42.0,37.0,54.0,66.0,75.0,80.0,110.0,96.0,98.0,127.0,103.0,109.0,88.0,103.0,103.0,92.0,85.0,98.0,79.0,72.0,79.0,84.0,72.0,73.0,56.0,53.0,63.0,40.0,48.0,52.0,50.0,62.0,73.0,68.0,57.0,64.0,57.0,43.0,61.0,63.0,63.0,45.0,44.0,52.0,45.0,41.0,36.0,45.0,25.0,36.0,26.0,41.0,29.0,24.0,26.0,25.0,25.0,19.0,19.0,25.0,25.0,8.0,11.0,9.0,13.0,12.0,3.0,13.0,5.0,4.0,4.0,5.0,1.0,3.0 N83047,17.0,29.0,20.0,14.0,27.0,31.0,29.0,26.0,33.0,22.0,30.0,31.0,28.0,23.0,20.0,23.0,26.0,21.0,27.0,23.0,24.0,25.0,22.0,22.0,26.0,24.0,18.0,24.0,31.0,32.0,43.0,33.0,28.0,44.0,45.0,43.0,37.0,42.0,49.0,33.0,39.0,34.0,33.0,22.0,39.0,28.0,23.0,34.0,22.0,21.0,39.0,22.0,29.0,27.0,35.0,40.0,27.0,29.0,41.0,51.0,43.0,48.0,42.0,44.0,40.0,49.0,44.0,40.0,37.0,42.0,27.0,28.0,37.0,30.0,26.0,26.0,28.0,31.0,38.0,21.0,14.0,26.0,16.0,21.0,16.0,11.0,14.0,10.0,13.0,9.0,5.0,6.0,7.0,6.0,4.0,9.0 N83049,10.0,16.0,18.0,16.0,21.0,17.0,19.0,14.0,10.0,13.0,19.0,20.0,23.0,25.0,26.0,22.0,17.0,14.0,33.0,21.0,16.0,14.0,16.0,16.0,26.0,24.0,21.0,26.0,14.0,14.0,16.0,17.0,28.0,25.0,29.0,29.0,13.0,15.0,19.0,22.0,23.0,27.0,26.0,14.0,25.0,31.0,20.0,18.0,20.0,33.0,32.0,26.0,26.0,43.0,43.0,35.0,31.0,41.0,32.0,38.0,45.0,52.0,47.0,31.0,47.0,32.0,33.0,30.0,27.0,29.0,21.0,26.0,25.0,21.0,23.0,31.0,31.0,26.0,32.0,25.0,22.0,34.0,33.0,22.0,12.0,14.0,18.0,20.0,12.0,16.0,12.0,7.0,5.0,4.0,2.0,10.0 N83050,22.0,21.0,29.0,32.0,22.0,26.0,31.0,26.0,40.0,33.0,27.0,27.0,35.0,32.0,27.0,24.0,30.0,22.0,26.0,25.0,23.0,22.0,17.0,21.0,24.0,34.0,30.0,50.0,36.0,34.0,52.0,39.0,45.0,41.0,39.0,46.0,41.0,42.0,29.0,27.0,28.0,32.0,32.0,31.0,30.0,34.0,32.0,32.0,20.0,23.0,30.0,29.0,26.0,37.0,29.0,38.0,36.0,33.0,24.0,35.0,24.0,22.0,22.0,23.0,30.0,15.0,22.0,12.0,34.0,20.0,20.0,16.0,21.0,17.0,14.0,10.0,15.0,13.0,27.0,14.0,15.0,9.0,11.0,9.0,8.0,9.0,8.0,6.0,6.0,5.0,6.0,3.0,1.0,4.0,2.0,6.0 N83053,47.0,48.0,38.0,57.0,32.0,38.0,42.0,47.0,46.0,42.0,37.0,51.0,42.0,55.0,54.0,45.0,49.0,44.0,44.0,47.0,52.0,39.0,48.0,45.0,48.0,46.0,56.0,55.0,78.0,72.0,78.0,53.0,59.0,70.0,69.0,56.0,58.0,70.0,68.0,54.0,54.0,56.0,56.0,62.0,45.0,51.0,62.0,38.0,54.0,33.0,59.0,61.0,77.0,72.0,71.0,56.0,71.0,67.0,81.0,90.0,81.0,73.0,68.0,66.0,63.0,50.0,54.0,50.0,52.0,55.0,40.0,46.0,46.0,45.0,47.0,63.0,38.0,54.0,35.0,26.0,33.0,28.0,21.0,25.0,21.0,22.0,18.0,20.0,17.0,19.0,13.0,10.0,12.0,6.0,6.0,15.0 N83054,18.0,16.0,20.0,18.0,21.0,24.0,16.0,24.0,20.0,19.0,27.0,27.0,22.0,31.0,25.0,24.0,31.0,21.0,30.0,25.0,20.0,23.0,25.0,23.0,21.0,25.0,16.0,24.0,31.0,27.0,17.0,27.0,37.0,40.0,30.0,27.0,37.0,37.0,37.0,25.0,39.0,32.0,23.0,34.0,43.0,21.0,26.0,16.0,24.0,23.0,25.0,31.0,25.0,44.0,37.0,28.0,28.0,32.0,38.0,25.0,25.0,35.0,24.0,31.0,34.0,29.0,22.0,32.0,24.0,23.0,20.0,19.0,17.0,17.0,18.0,23.0,16.0,20.0,17.0,15.0,16.0,10.0,12.0,10.0,8.0,11.0,13.0,3.0,4.0,8.0,13.0,7.0,1.0,2.0,3.0,5.0 N83601,58.0,48.0,47.0,80.0,40.0,64.0,49.0,66.0,66.0,57.0,59.0,51.0,54.0,41.0,57.0,57.0,54.0,40.0,47.0,40.0,44.0,55.0,39.0,49.0,39.0,38.0,55.0,54.0,78.0,66.0,69.0,89.0,69.0,88.0,98.0,73.0,73.0,66.0,74.0,65.0,71.0,57.0,57.0,58.0,53.0,47.0,51.0,41.0,47.0,47.0,32.0,37.0,39.0,43.0,35.0,43.0,52.0,43.0,46.0,55.0,37.0,35.0,52.0,44.0,30.0,52.0,36.0,41.0,42.0,37.0,39.0,37.0,28.0,29.0,21.0,22.0,20.0,18.0,18.0,16.0,6.0,11.0,6.0,6.0,5.0,12.0,9.0,3.0,4.0,4.0,2.0,4.0,1.0,4.0,4.0,4.0 N83603,41.0,48.0,37.0,54.0,42.0,46.0,43.0,26.0,40.0,41.0,28.0,32.0,35.0,42.0,35.0,40.0,29.0,47.0,40.0,28.0,32.0,38.0,41.0,30.0,42.0,44.0,36.0,62.0,66.0,65.0,62.0,78.0,67.0,76.0,58.0,69.0,68.0,62.0,65.0,60.0,48.0,45.0,61.0,53.0,54.0,42.0,44.0,41.0,39.0,36.0,41.0,43.0,39.0,49.0,65.0,63.0,54.0,48.0,50.0,44.0,54.0,54.0,47.0,51.0,30.0,41.0,32.0,40.0,33.0,25.0,36.0,28.0,38.0,26.0,30.0,25.0,29.0,22.0,23.0,22.0,18.0,30.0,25.0,15.0,16.0,10.0,13.0,12.0,16.0,8.0,12.0,8.0,5.0,2.0,1.0,3.0 N83605,26.0,41.0,26.0,49.0,41.0,51.0,47.0,34.0,38.0,29.0,51.0,41.0,37.0,37.0,34.0,27.0,27.0,47.0,38.0,24.0,31.0,30.0,27.0,25.0,24.0,22.0,35.0,34.0,47.0,30.0,42.0,56.0,61.0,58.0,62.0,57.0,53.0,63.0,57.0,60.0,52.0,53.0,52.0,43.0,42.0,50.0,38.0,38.0,32.0,26.0,36.0,32.0,32.0,44.0,38.0,49.0,43.0,40.0,35.0,46.0,41.0,36.0,41.0,44.0,47.0,37.0,23.0,37.0,27.0,32.0,31.0,25.0,28.0,25.0,18.0,22.0,22.0,13.0,19.0,14.0,12.0,17.0,11.0,13.0,11.0,10.0,9.0,7.0,6.0,3.0,5.0,4.0,1.0,5.0,1.0,3.0 N83608,69.0,84.0,96.0,119.0,99.0,94.0,99.0,123.0,95.0,103.0,100.0,101.0,104.0,89.0,107.0,92.0,103.0,96.0,91.0,95.0,100.0,84.0,92.0,78.0,94.0,93.0,87.0,102.0,123.0,110.0,123.0,101.0,122.0,139.0,131.0,144.0,134.0,141.0,110.0,126.0,110.0,132.0,113.0,123.0,112.0,101.0,97.0,90.0,88.0,87.0,96.0,90.0,103.0,93.0,95.0,95.0,88.0,82.0,105.0,97.0,96.0,88.0,87.0,94.0,92.0,95.0,91.0,90.0,76.0,62.0,71.0,84.0,68.0,55.0,48.0,45.0,51.0,40.0,31.0,38.0,33.0,27.0,17.0,13.0,21.0,21.0,19.0,16.0,14.0,8.0,9.0,4.0,4.0,3.0,3.0,6.0 N83609,32.0,28.0,25.0,33.0,25.0,29.0,34.0,34.0,43.0,25.0,28.0,27.0,33.0,33.0,36.0,22.0,30.0,27.0,15.0,24.0,26.0,21.0,20.0,14.0,25.0,33.0,32.0,25.0,37.0,30.0,44.0,35.0,38.0,39.0,42.0,47.0,40.0,45.0,35.0,39.0,28.0,24.0,31.0,33.0,31.0,25.0,20.0,30.0,27.0,33.0,26.0,32.0,24.0,28.0,50.0,29.0,38.0,32.0,37.0,31.0,34.0,35.0,36.0,29.0,31.0,26.0,22.0,34.0,33.0,23.0,21.0,10.0,12.0,13.0,21.0,20.0,16.0,14.0,17.0,20.0,6.0,7.0,10.0,11.0,16.0,15.0,8.0,9.0,11.0,4.0,3.0,3.0,3.0,4.0,2.0,2.0 N83610,6.0,6.0,17.0,10.0,6.0,15.0,19.0,17.0,20.0,18.0,16.0,13.0,23.0,14.0,11.0,7.0,14.0,10.0,12.0,13.0,11.0,12.0,10.0,19.0,7.0,18.0,16.0,18.0,16.0,14.0,16.0,16.0,15.0,19.0,15.0,21.0,18.0,26.0,22.0,18.0,11.0,17.0,14.0,18.0,19.0,12.0,15.0,9.0,12.0,20.0,11.0,11.0,11.0,21.0,15.0,13.0,11.0,19.0,14.0,11.0,19.0,17.0,17.0,15.0,21.0,16.0,19.0,9.0,16.0,19.0,9.0,16.0,9.0,10.0,9.0,7.0,6.0,6.0,9.0,5.0,5.0,5.0,3.0,8.0,3.0,5.0,5.0,3.0,9.0,7.0,5.0,4.0,3.0,1.0,,2.0 N83614,30.0,37.0,33.0,53.0,37.0,31.0,39.0,32.0,40.0,36.0,47.0,35.0,47.0,48.0,35.0,33.0,32.0,46.0,31.0,26.0,23.0,29.0,22.0,26.0,43.0,35.0,35.0,45.0,37.0,44.0,49.0,41.0,53.0,40.0,55.0,64.0,53.0,59.0,47.0,60.0,50.0,48.0,42.0,43.0,41.0,35.0,36.0,29.0,43.0,45.0,35.0,43.0,40.0,40.0,47.0,34.0,55.0,47.0,29.0,45.0,41.0,36.0,33.0,35.0,38.0,38.0,32.0,17.0,40.0,26.0,30.0,29.0,30.0,22.0,29.0,23.0,16.0,23.0,19.0,17.0,17.0,12.0,12.0,13.0,15.0,10.0,14.0,15.0,9.0,11.0,5.0,3.0,6.0,2.0,9.0,7.0 N83619,31.0,24.0,31.0,32.0,37.0,23.0,20.0,27.0,32.0,17.0,38.0,26.0,21.0,18.0,18.0,26.0,28.0,26.0,28.0,17.0,21.0,15.0,24.0,24.0,35.0,32.0,33.0,44.0,46.0,46.0,52.0,55.0,60.0,41.0,46.0,43.0,44.0,46.0,34.0,34.0,27.0,19.0,29.0,36.0,35.0,24.0,21.0,20.0,27.0,32.0,35.0,21.0,26.0,34.0,29.0,39.0,26.0,33.0,34.0,46.0,39.0,36.0,33.0,33.0,36.0,41.0,34.0,28.0,34.0,19.0,29.0,22.0,30.0,26.0,21.0,18.0,22.0,27.0,33.0,20.0,21.0,18.0,14.0,12.0,15.0,17.0,12.0,20.0,8.0,9.0,8.0,6.0,4.0,11.0,3.0,15.0 N83620,16.0,25.0,20.0,19.0,28.0,17.0,23.0,21.0,23.0,17.0,30.0,25.0,24.0,28.0,31.0,19.0,23.0,20.0,19.0,25.0,21.0,17.0,19.0,18.0,22.0,20.0,23.0,29.0,25.0,27.0,31.0,29.0,31.0,44.0,35.0,29.0,48.0,38.0,31.0,28.0,29.0,26.0,27.0,24.0,21.0,24.0,17.0,17.0,15.0,18.0,24.0,19.0,23.0,23.0,32.0,27.0,27.0,13.0,23.0,20.0,26.0,19.0,20.0,22.0,18.0,16.0,18.0,15.0,13.0,10.0,18.0,8.0,13.0,9.0,15.0,6.0,11.0,13.0,14.0,6.0,8.0,8.0,3.0,3.0,6.0,1.0,1.0,9.0,2.0,,4.0,1.0,1.0,1.0,1.0,4.0 N83621,8.0,11.0,19.0,13.0,14.0,9.0,17.0,19.0,17.0,22.0,15.0,16.0,12.0,19.0,21.0,18.0,10.0,12.0,16.0,12.0,16.0,15.0,19.0,7.0,11.0,6.0,21.0,14.0,17.0,23.0,17.0,24.0,27.0,22.0,15.0,20.0,20.0,29.0,26.0,15.0,20.0,23.0,16.0,18.0,15.0,13.0,11.0,12.0,10.0,15.0,17.0,10.0,15.0,17.0,15.0,28.0,21.0,15.0,30.0,23.0,34.0,25.0,27.0,26.0,22.0,23.0,17.0,19.0,22.0,20.0,10.0,13.0,13.0,5.0,18.0,8.0,7.0,11.0,14.0,9.0,10.0,6.0,6.0,3.0,3.0,4.0,8.0,2.0,5.0,5.0,2.0,,,,,1.0 N83622,12.0,10.0,21.0,21.0,20.0,22.0,16.0,21.0,15.0,15.0,10.0,12.0,17.0,15.0,15.0,12.0,20.0,13.0,15.0,15.0,17.0,15.0,15.0,11.0,18.0,13.0,13.0,20.0,19.0,13.0,11.0,20.0,23.0,20.0,28.0,29.0,16.0,19.0,27.0,20.0,16.0,20.0,25.0,20.0,17.0,14.0,17.0,10.0,10.0,16.0,10.0,12.0,14.0,15.0,8.0,17.0,17.0,18.0,22.0,16.0,18.0,20.0,15.0,16.0,21.0,11.0,14.0,12.0,20.0,4.0,11.0,8.0,4.0,5.0,6.0,5.0,8.0,8.0,4.0,2.0,3.0,4.0,4.0,3.0,3.0,4.0,5.0,1.0,2.0,,1.0,,,,, N83633,17.0,21.0,18.0,17.0,15.0,24.0,17.0,27.0,16.0,19.0,17.0,16.0,25.0,25.0,25.0,23.0,19.0,24.0,24.0,24.0,26.0,13.0,16.0,22.0,20.0,29.0,29.0,20.0,28.0,29.0,22.0,27.0,33.0,33.0,27.0,26.0,27.0,35.0,20.0,30.0,21.0,26.0,28.0,24.0,15.0,37.0,23.0,29.0,23.0,20.0,27.0,15.0,29.0,32.0,32.0,29.0,27.0,24.0,31.0,16.0,34.0,27.0,33.0,24.0,24.0,31.0,22.0,30.0,23.0,22.0,16.0,14.0,17.0,16.0,17.0,17.0,13.0,9.0,18.0,10.0,11.0,9.0,13.0,8.0,7.0,13.0,9.0,8.0,5.0,9.0,3.0,5.0,3.0,,1.0,10.0 N83637,18.0,16.0,9.0,15.0,17.0,15.0,15.0,5.0,14.0,13.0,18.0,16.0,25.0,24.0,23.0,22.0,15.0,19.0,19.0,16.0,16.0,15.0,9.0,10.0,22.0,12.0,15.0,17.0,19.0,17.0,14.0,21.0,25.0,14.0,15.0,26.0,30.0,27.0,28.0,26.0,25.0,29.0,16.0,19.0,23.0,16.0,17.0,21.0,20.0,21.0,17.0,17.0,15.0,18.0,29.0,22.0,20.0,31.0,21.0,20.0,22.0,25.0,27.0,23.0,27.0,19.0,30.0,28.0,24.0,18.0,20.0,26.0,10.0,12.0,18.0,16.0,12.0,26.0,13.0,12.0,11.0,14.0,11.0,7.0,8.0,7.0,5.0,6.0,6.0,,5.0,1.0,4.0,4.0,,2.0 N84001,30.0,30.0,20.0,45.0,41.0,39.0,39.0,35.0,45.0,52.0,41.0,43.0,42.0,50.0,36.0,41.0,43.0,50.0,43.0,29.0,33.0,42.0,31.0,42.0,40.0,34.0,31.0,35.0,43.0,36.0,50.0,43.0,50.0,49.0,57.0,71.0,58.0,65.0,65.0,55.0,58.0,72.0,49.0,59.0,49.0,66.0,43.0,45.0,58.0,40.0,53.0,52.0,61.0,63.0,77.0,61.0,81.0,60.0,89.0,70.0,77.0,80.0,80.0,93.0,63.0,78.0,70.0,63.0,61.0,66.0,67.0,62.0,61.0,69.0,64.0,56.0,43.0,51.0,54.0,36.0,35.0,30.0,52.0,26.0,32.0,18.0,21.0,26.0,18.0,19.0,15.0,9.0,6.0,6.0,6.0,22.0 N84002,7.0,11.0,11.0,14.0,15.0,15.0,16.0,14.0,18.0,16.0,12.0,15.0,17.0,17.0,16.0,12.0,14.0,18.0,11.0,12.0,6.0,12.0,17.0,13.0,10.0,13.0,17.0,19.0,15.0,14.0,25.0,18.0,18.0,14.0,30.0,16.0,17.0,16.0,19.0,21.0,18.0,15.0,22.0,17.0,15.0,18.0,17.0,9.0,14.0,16.0,6.0,14.0,17.0,18.0,9.0,10.0,20.0,16.0,13.0,23.0,18.0,9.0,25.0,17.0,8.0,11.0,15.0,7.0,19.0,9.0,8.0,10.0,11.0,9.0,13.0,8.0,7.0,4.0,8.0,5.0,6.0,11.0,3.0,6.0,5.0,7.0,4.0,2.0,3.0,1.0,3.0,2.0,2.0,,, N84003,33.0,37.0,37.0,35.0,34.0,48.0,48.0,36.0,42.0,67.0,43.0,46.0,50.0,65.0,38.0,44.0,54.0,61.0,32.0,50.0,42.0,51.0,40.0,31.0,39.0,54.0,49.0,51.0,45.0,32.0,57.0,54.0,63.0,54.0,49.0,46.0,52.0,58.0,50.0,63.0,62.0,53.0,63.0,51.0,61.0,48.0,59.0,45.0,56.0,54.0,72.0,64.0,73.0,81.0,87.0,54.0,55.0,84.0,73.0,101.0,102.0,81.0,82.0,84.0,87.0,73.0,70.0,66.0,55.0,71.0,63.0,54.0,74.0,59.0,73.0,69.0,70.0,70.0,76.0,71.0,71.0,59.0,57.0,36.0,38.0,51.0,48.0,54.0,37.0,28.0,24.0,18.0,17.0,14.0,9.0,18.0 N84004,20.0,40.0,42.0,46.0,34.0,48.0,37.0,53.0,46.0,46.0,59.0,45.0,51.0,48.0,35.0,51.0,43.0,40.0,55.0,32.0,55.0,43.0,39.0,40.0,47.0,45.0,40.0,52.0,42.0,55.0,52.0,41.0,65.0,57.0,77.0,76.0,56.0,71.0,67.0,45.0,53.0,59.0,51.0,50.0,32.0,62.0,44.0,36.0,45.0,38.0,41.0,44.0,58.0,44.0,53.0,52.0,53.0,56.0,61.0,47.0,71.0,65.0,62.0,70.0,72.0,63.0,59.0,51.0,44.0,45.0,47.0,42.0,25.0,35.0,36.0,23.0,34.0,18.0,38.0,23.0,20.0,21.0,18.0,19.0,9.0,19.0,19.0,20.0,12.0,10.0,9.0,7.0,6.0,12.0,4.0,12.0 N84005,54.0,42.0,40.0,63.0,63.0,54.0,68.0,78.0,60.0,81.0,66.0,76.0,66.0,72.0,65.0,64.0,55.0,67.0,62.0,52.0,53.0,51.0,64.0,62.0,64.0,69.0,72.0,79.0,91.0,79.0,91.0,86.0,78.0,76.0,98.0,101.0,101.0,88.0,104.0,87.0,73.0,71.0,93.0,87.0,74.0,79.0,57.0,69.0,61.0,64.0,78.0,82.0,83.0,67.0,88.0,93.0,92.0,82.0,102.0,102.0,106.0,97.0,123.0,89.0,100.0,91.0,104.0,69.0,91.0,57.0,75.0,58.0,56.0,71.0,63.0,74.0,54.0,55.0,68.0,40.0,47.0,39.0,43.0,40.0,39.0,32.0,35.0,21.0,27.0,19.0,18.0,19.0,16.0,13.0,10.0,20.0 N84006,29.0,37.0,26.0,38.0,44.0,32.0,39.0,41.0,48.0,48.0,48.0,61.0,53.0,64.0,65.0,61.0,78.0,79.0,65.0,48.0,59.0,38.0,62.0,46.0,57.0,55.0,41.0,48.0,50.0,41.0,41.0,45.0,52.0,47.0,61.0,53.0,58.0,50.0,62.0,47.0,57.0,45.0,74.0,59.0,75.0,68.0,80.0,58.0,73.0,70.0,72.0,78.0,84.0,98.0,86.0,84.0,89.0,103.0,85.0,102.0,94.0,95.0,86.0,81.0,93.0,81.0,84.0,93.0,74.0,73.0,87.0,92.0,88.0,87.0,76.0,80.0,89.0,103.0,108.0,89.0,73.0,64.0,69.0,63.0,53.0,42.0,74.0,52.0,36.0,45.0,32.0,28.0,20.0,19.0,7.0,26.0 N84007,23.0,28.0,38.0,43.0,33.0,41.0,25.0,29.0,37.0,32.0,29.0,44.0,33.0,21.0,29.0,27.0,32.0,27.0,33.0,30.0,26.0,40.0,18.0,31.0,35.0,28.0,32.0,25.0,37.0,32.0,32.0,48.0,45.0,45.0,43.0,49.0,52.0,37.0,58.0,43.0,41.0,47.0,35.0,32.0,41.0,28.0,39.0,32.0,25.0,30.0,39.0,36.0,47.0,48.0,33.0,44.0,39.0,48.0,32.0,45.0,50.0,52.0,46.0,41.0,42.0,31.0,42.0,48.0,44.0,31.0,33.0,27.0,30.0,23.0,26.0,24.0,36.0,37.0,27.0,22.0,24.0,19.0,28.0,14.0,15.0,18.0,10.0,11.0,10.0,13.0,12.0,3.0,8.0,2.0,6.0,13.0 N84008,45.0,32.0,39.0,39.0,25.0,54.0,41.0,43.0,42.0,60.0,44.0,50.0,66.0,53.0,43.0,61.0,52.0,47.0,42.0,34.0,36.0,50.0,42.0,46.0,33.0,47.0,41.0,49.0,43.0,44.0,55.0,49.0,53.0,58.0,69.0,56.0,55.0,49.0,58.0,51.0,58.0,48.0,46.0,50.0,68.0,70.0,49.0,51.0,39.0,65.0,62.0,73.0,68.0,74.0,75.0,71.0,69.0,79.0,67.0,87.0,79.0,95.0,84.0,83.0,81.0,68.0,82.0,70.0,76.0,70.0,67.0,69.0,53.0,65.0,64.0,48.0,54.0,50.0,82.0,49.0,49.0,50.0,44.0,47.0,38.0,31.0,37.0,36.0,36.0,27.0,34.0,18.0,9.0,11.0,14.0,27.0 N84010,18.0,23.0,34.0,28.0,31.0,41.0,31.0,25.0,43.0,39.0,36.0,36.0,32.0,35.0,24.0,20.0,33.0,25.0,22.0,24.0,19.0,27.0,19.0,23.0,16.0,21.0,21.0,28.0,27.0,25.0,29.0,36.0,30.0,23.0,39.0,37.0,41.0,36.0,42.0,44.0,48.0,33.0,42.0,48.0,42.0,33.0,31.0,31.0,25.0,29.0,22.0,23.0,30.0,34.0,30.0,39.0,27.0,41.0,36.0,45.0,41.0,38.0,50.0,45.0,46.0,34.0,31.0,47.0,35.0,41.0,31.0,33.0,24.0,40.0,23.0,29.0,26.0,38.0,24.0,30.0,26.0,30.0,17.0,18.0,13.0,20.0,11.0,17.0,11.0,15.0,13.0,7.0,6.0,3.0,2.0,6.0 N84011,17.0,20.0,21.0,28.0,29.0,27.0,30.0,28.0,34.0,22.0,26.0,35.0,39.0,37.0,42.0,28.0,41.0,38.0,37.0,30.0,35.0,21.0,29.0,33.0,31.0,28.0,40.0,28.0,40.0,28.0,24.0,26.0,40.0,47.0,41.0,36.0,35.0,56.0,43.0,47.0,48.0,38.0,49.0,42.0,39.0,45.0,29.0,29.0,37.0,46.0,29.0,35.0,45.0,54.0,40.0,56.0,63.0,40.0,51.0,48.0,36.0,47.0,54.0,37.0,33.0,55.0,43.0,52.0,49.0,38.0,47.0,45.0,46.0,39.0,37.0,37.0,37.0,31.0,22.0,24.0,22.0,20.0,21.0,16.0,24.0,26.0,15.0,9.0,14.0,11.0,11.0,11.0,5.0,3.0,3.0,17.0 N84012,33.0,28.0,37.0,26.0,25.0,38.0,40.0,46.0,50.0,43.0,61.0,49.0,48.0,53.0,56.0,70.0,63.0,57.0,54.0,63.0,37.0,44.0,45.0,51.0,42.0,59.0,50.0,45.0,44.0,46.0,46.0,55.0,55.0,52.0,55.0,50.0,47.0,52.0,64.0,54.0,66.0,59.0,48.0,54.0,74.0,67.0,60.0,45.0,59.0,64.0,56.0,65.0,59.0,76.0,82.0,84.0,82.0,90.0,97.0,110.0,103.0,106.0,88.0,87.0,99.0,108.0,93.0,92.0,100.0,91.0,96.0,93.0,84.0,85.0,93.0,83.0,90.0,103.0,107.0,74.0,77.0,72.0,81.0,56.0,46.0,56.0,39.0,45.0,33.0,22.0,27.0,27.0,18.0,15.0,9.0,17.0 N84013,40.0,36.0,45.0,44.0,57.0,47.0,56.0,59.0,46.0,53.0,54.0,49.0,52.0,60.0,65.0,55.0,50.0,47.0,60.0,51.0,56.0,55.0,53.0,48.0,52.0,36.0,40.0,55.0,45.0,60.0,54.0,71.0,66.0,90.0,65.0,74.0,71.0,71.0,76.0,74.0,67.0,75.0,75.0,65.0,51.0,66.0,61.0,58.0,55.0,65.0,55.0,64.0,68.0,66.0,80.0,77.0,79.0,79.0,80.0,85.0,87.0,94.0,93.0,91.0,92.0,93.0,62.0,85.0,67.0,70.0,73.0,73.0,55.0,52.0,58.0,61.0,64.0,71.0,72.0,51.0,58.0,48.0,58.0,36.0,35.0,39.0,46.0,31.0,26.0,18.0,30.0,20.0,10.0,16.0,9.0,29.0 N84014,11.0,21.0,21.0,18.0,19.0,21.0,18.0,17.0,13.0,14.0,25.0,14.0,16.0,16.0,22.0,27.0,16.0,17.0,19.0,21.0,23.0,19.0,17.0,15.0,19.0,16.0,26.0,20.0,15.0,18.0,26.0,26.0,35.0,24.0,29.0,27.0,15.0,27.0,24.0,20.0,21.0,19.0,20.0,19.0,24.0,27.0,16.0,19.0,14.0,17.0,26.0,30.0,29.0,23.0,27.0,28.0,27.0,25.0,34.0,32.0,39.0,37.0,28.0,23.0,22.0,24.0,30.0,34.0,28.0,22.0,27.0,21.0,14.0,21.0,28.0,20.0,16.0,25.0,15.0,23.0,17.0,15.0,20.0,11.0,10.0,7.0,7.0,8.0,7.0,9.0,6.0,6.0,4.0,5.0,,2.0 N84015,22.0,24.0,22.0,33.0,36.0,41.0,33.0,34.0,30.0,42.0,39.0,36.0,36.0,26.0,38.0,38.0,28.0,30.0,29.0,35.0,26.0,35.0,31.0,17.0,36.0,34.0,28.0,47.0,38.0,45.0,42.0,34.0,51.0,47.0,51.0,37.0,42.0,43.0,42.0,46.0,43.0,51.0,39.0,38.0,33.0,45.0,38.0,32.0,32.0,33.0,36.0,38.0,42.0,38.0,37.0,38.0,43.0,36.0,32.0,42.0,37.0,43.0,43.0,64.0,39.0,49.0,40.0,30.0,32.0,42.0,36.0,37.0,25.0,25.0,35.0,23.0,21.0,23.0,23.0,17.0,12.0,18.0,16.0,14.0,16.0,12.0,13.0,10.0,12.0,6.0,6.0,6.0,5.0,6.0,5.0,7.0 N84016,25.0,25.0,24.0,25.0,23.0,30.0,26.0,37.0,34.0,27.0,32.0,43.0,29.0,33.0,32.0,39.0,33.0,39.0,39.0,25.0,18.0,30.0,25.0,33.0,31.0,24.0,38.0,28.0,45.0,35.0,31.0,32.0,37.0,44.0,41.0,55.0,51.0,57.0,31.0,41.0,36.0,42.0,29.0,31.0,30.0,39.0,39.0,31.0,36.0,23.0,35.0,27.0,38.0,29.0,37.0,43.0,44.0,49.0,46.0,36.0,50.0,51.0,47.0,52.0,44.0,40.0,35.0,42.0,20.0,40.0,31.0,24.0,34.0,25.0,18.0,20.0,23.0,29.0,23.0,21.0,29.0,16.0,9.0,16.0,9.0,8.0,11.0,14.0,8.0,11.0,1.0,3.0,4.0,1.0,3.0,4.0 N84017,24.0,22.0,23.0,24.0,35.0,34.0,28.0,34.0,29.0,37.0,52.0,50.0,42.0,41.0,47.0,43.0,42.0,38.0,39.0,43.0,35.0,52.0,37.0,41.0,43.0,37.0,37.0,33.0,39.0,55.0,46.0,43.0,40.0,53.0,57.0,54.0,48.0,52.0,43.0,52.0,50.0,44.0,58.0,48.0,52.0,55.0,43.0,45.0,43.0,33.0,51.0,64.0,66.0,69.0,48.0,57.0,52.0,73.0,75.0,75.0,92.0,74.0,70.0,73.0,74.0,77.0,88.0,77.0,77.0,47.0,53.0,64.0,58.0,54.0,55.0,62.0,56.0,85.0,70.0,67.0,51.0,51.0,48.0,48.0,46.0,40.0,38.0,35.0,27.0,34.0,22.0,9.0,19.0,14.0,14.0,28.0 N84018,60.0,48.0,53.0,53.0,70.0,71.0,74.0,70.0,67.0,93.0,78.0,83.0,70.0,75.0,96.0,86.0,88.0,71.0,91.0,64.0,53.0,74.0,52.0,53.0,62.0,60.0,75.0,58.0,55.0,58.0,67.0,48.0,75.0,86.0,90.0,71.0,69.0,84.0,72.0,88.0,96.0,85.0,94.0,75.0,85.0,99.0,88.0,92.0,83.0,95.0,74.0,84.0,78.0,102.0,119.0,83.0,108.0,113.0,90.0,97.0,116.0,115.0,114.0,108.0,107.0,80.0,93.0,117.0,84.0,82.0,88.0,112.0,109.0,96.0,96.0,89.0,109.0,119.0,111.0,99.0,114.0,76.0,120.0,79.0,60.0,77.0,62.0,63.0,59.0,28.0,30.0,31.0,28.0,18.0,17.0,39.0 N84019,37.0,37.0,39.0,33.0,38.0,38.0,35.0,33.0,33.0,40.0,34.0,43.0,49.0,47.0,43.0,35.0,28.0,37.0,35.0,27.0,24.0,32.0,28.0,40.0,48.0,37.0,46.0,66.0,48.0,60.0,51.0,49.0,43.0,57.0,44.0,58.0,49.0,44.0,53.0,41.0,44.0,38.0,40.0,46.0,47.0,32.0,40.0,35.0,19.0,34.0,34.0,38.0,41.0,41.0,45.0,31.0,48.0,41.0,54.0,36.0,36.0,38.0,48.0,34.0,28.0,26.0,22.0,29.0,27.0,25.0,24.0,22.0,24.0,19.0,21.0,21.0,26.0,25.0,30.0,8.0,15.0,14.0,17.0,13.0,13.0,7.0,14.0,9.0,8.0,8.0,3.0,2.0,3.0,3.0,5.0,8.0 N84020,36.0,39.0,33.0,44.0,31.0,34.0,57.0,39.0,48.0,45.0,64.0,55.0,50.0,55.0,58.0,43.0,58.0,61.0,63.0,50.0,51.0,50.0,44.0,45.0,44.0,49.0,54.0,45.0,67.0,63.0,64.0,63.0,51.0,58.0,50.0,67.0,59.0,60.0,54.0,78.0,73.0,76.0,57.0,71.0,78.0,60.0,80.0,74.0,68.0,57.0,72.0,68.0,68.0,78.0,78.0,79.0,72.0,85.0,80.0,80.0,80.0,102.0,86.0,86.0,76.0,73.0,76.0,73.0,87.0,74.0,77.0,71.0,63.0,60.0,58.0,65.0,61.0,63.0,72.0,53.0,45.0,57.0,39.0,50.0,31.0,37.0,37.0,31.0,35.0,19.0,13.0,20.0,8.0,12.0,7.0,30.0 N84021,54.0,42.0,45.0,61.0,55.0,65.0,64.0,75.0,65.0,71.0,84.0,68.0,93.0,73.0,70.0,79.0,70.0,69.0,66.0,65.0,60.0,75.0,74.0,81.0,88.0,88.0,82.0,90.0,108.0,121.0,106.0,102.0,116.0,94.0,104.0,117.0,95.0,119.0,108.0,105.0,110.0,116.0,107.0,102.0,96.0,89.0,97.0,84.0,95.0,94.0,91.0,104.0,95.0,105.0,85.0,99.0,96.0,109.0,110.0,96.0,99.0,104.0,90.0,105.0,105.0,101.0,93.0,107.0,87.0,83.0,69.0,79.0,72.0,77.0,68.0,65.0,77.0,91.0,69.0,63.0,61.0,55.0,59.0,51.0,41.0,39.0,43.0,39.0,50.0,45.0,37.0,27.0,33.0,20.0,18.0,46.0 N84023,33.0,40.0,38.0,41.0,35.0,43.0,47.0,32.0,52.0,43.0,45.0,50.0,35.0,59.0,59.0,48.0,55.0,47.0,34.0,53.0,37.0,43.0,43.0,38.0,49.0,60.0,64.0,54.0,66.0,69.0,65.0,59.0,68.0,67.0,49.0,60.0,62.0,55.0,74.0,45.0,54.0,50.0,44.0,37.0,45.0,37.0,54.0,44.0,55.0,45.0,50.0,63.0,54.0,65.0,44.0,54.0,58.0,56.0,60.0,60.0,56.0,52.0,52.0,47.0,56.0,41.0,44.0,45.0,45.0,43.0,36.0,32.0,18.0,37.0,46.0,30.0,38.0,35.0,23.0,21.0,24.0,23.0,23.0,19.0,26.0,14.0,7.0,13.0,11.0,9.0,8.0,5.0,1.0,4.0,2.0,7.0 N84024,20.0,24.0,24.0,23.0,21.0,35.0,31.0,23.0,32.0,31.0,37.0,38.0,34.0,29.0,42.0,37.0,43.0,44.0,36.0,46.0,26.0,43.0,27.0,37.0,28.0,43.0,42.0,39.0,34.0,34.0,38.0,36.0,33.0,35.0,44.0,41.0,29.0,46.0,56.0,36.0,43.0,33.0,48.0,53.0,49.0,48.0,39.0,61.0,44.0,56.0,56.0,52.0,44.0,66.0,76.0,87.0,71.0,68.0,93.0,75.0,92.0,93.0,93.0,85.0,98.0,91.0,83.0,83.0,74.0,80.0,83.0,86.0,80.0,63.0,77.0,82.0,85.0,102.0,92.0,86.0,65.0,68.0,77.0,42.0,55.0,58.0,46.0,51.0,38.0,35.0,43.0,14.0,14.0,14.0,16.0,39.0 N84025,49.0,49.0,51.0,58.0,60.0,54.0,43.0,41.0,37.0,38.0,35.0,50.0,46.0,55.0,45.0,31.0,57.0,37.0,44.0,45.0,45.0,42.0,40.0,39.0,53.0,47.0,64.0,45.0,55.0,71.0,67.0,72.0,83.0,80.0,81.0,72.0,66.0,69.0,65.0,63.0,69.0,60.0,70.0,51.0,63.0,50.0,58.0,47.0,42.0,49.0,49.0,52.0,66.0,58.0,58.0,72.0,67.0,66.0,67.0,86.0,64.0,81.0,60.0,62.0,99.0,82.0,64.0,81.0,74.0,62.0,66.0,91.0,59.0,60.0,68.0,54.0,66.0,101.0,60.0,58.0,38.0,51.0,44.0,42.0,42.0,42.0,26.0,39.0,38.0,32.0,22.0,16.0,26.0,15.0,7.0,23.0 N84027,30.0,37.0,30.0,28.0,29.0,31.0,29.0,36.0,36.0,39.0,37.0,31.0,44.0,36.0,46.0,35.0,43.0,37.0,37.0,25.0,29.0,28.0,34.0,36.0,37.0,45.0,45.0,51.0,56.0,55.0,65.0,57.0,54.0,58.0,54.0,46.0,46.0,59.0,55.0,57.0,58.0,43.0,29.0,46.0,45.0,33.0,34.0,43.0,34.0,28.0,32.0,23.0,35.0,25.0,23.0,46.0,28.0,28.0,26.0,28.0,20.0,21.0,32.0,24.0,24.0,22.0,28.0,26.0,15.0,14.0,8.0,13.0,18.0,21.0,12.0,16.0,14.0,9.0,10.0,11.0,7.0,5.0,14.0,7.0,7.0,4.0,3.0,1.0,2.0,5.0,5.0,2.0,2.0,2.0,,1.0 N84028,32.0,38.0,41.0,48.0,42.0,50.0,34.0,50.0,61.0,48.0,47.0,47.0,51.0,49.0,44.0,46.0,49.0,46.0,38.0,34.0,39.0,39.0,35.0,48.0,50.0,48.0,49.0,46.0,41.0,54.0,67.0,66.0,47.0,57.0,69.0,66.0,64.0,74.0,59.0,70.0,38.0,54.0,61.0,44.0,51.0,53.0,48.0,38.0,41.0,44.0,45.0,41.0,42.0,44.0,54.0,49.0,44.0,44.0,45.0,53.0,48.0,59.0,53.0,38.0,57.0,53.0,38.0,39.0,57.0,38.0,37.0,31.0,30.0,31.0,27.0,23.0,34.0,33.0,35.0,19.0,16.0,22.0,15.0,22.0,13.0,8.0,12.0,15.0,4.0,5.0,7.0,5.0,7.0,2.0,1.0,11.0 N84029,25.0,30.0,23.0,27.0,34.0,24.0,32.0,48.0,42.0,33.0,30.0,34.0,44.0,30.0,36.0,47.0,31.0,35.0,28.0,27.0,32.0,35.0,27.0,41.0,37.0,35.0,24.0,32.0,39.0,29.0,37.0,47.0,43.0,51.0,43.0,50.0,53.0,49.0,43.0,44.0,42.0,39.0,36.0,44.0,40.0,36.0,35.0,28.0,23.0,29.0,19.0,35.0,47.0,38.0,36.0,46.0,50.0,40.0,52.0,46.0,37.0,49.0,39.0,45.0,45.0,45.0,45.0,35.0,40.0,29.0,37.0,28.0,24.0,26.0,19.0,20.0,28.0,28.0,21.0,12.0,20.0,15.0,8.0,14.0,16.0,13.0,9.0,20.0,6.0,10.0,3.0,5.0,2.0,2.0,4.0,3.0 N84034,40.0,43.0,44.0,41.0,42.0,37.0,36.0,34.0,48.0,43.0,48.0,43.0,31.0,48.0,51.0,51.0,35.0,41.0,38.0,45.0,37.0,46.0,49.0,29.0,59.0,52.0,62.0,72.0,81.0,59.0,74.0,68.0,54.0,57.0,68.0,69.0,57.0,60.0,49.0,49.0,47.0,53.0,51.0,62.0,40.0,43.0,50.0,31.0,43.0,43.0,44.0,40.0,42.0,52.0,50.0,52.0,42.0,35.0,52.0,33.0,42.0,47.0,45.0,50.0,40.0,35.0,29.0,39.0,36.0,27.0,33.0,21.0,21.0,25.0,35.0,19.0,19.0,27.0,21.0,19.0,18.0,16.0,12.0,14.0,13.0,17.0,12.0,8.0,5.0,4.0,7.0,2.0,3.0,3.0,1.0,2.0 N84035,9.0,7.0,7.0,18.0,11.0,6.0,13.0,7.0,18.0,18.0,19.0,18.0,19.0,19.0,19.0,15.0,21.0,20.0,25.0,16.0,21.0,20.0,19.0,11.0,19.0,17.0,13.0,17.0,25.0,20.0,28.0,14.0,12.0,15.0,25.0,28.0,18.0,24.0,16.0,17.0,18.0,27.0,16.0,20.0,20.0,20.0,27.0,10.0,21.0,26.0,30.0,25.0,21.0,21.0,27.0,27.0,31.0,30.0,36.0,23.0,38.0,37.0,43.0,36.0,35.0,28.0,25.0,26.0,25.0,33.0,24.0,21.0,22.0,24.0,21.0,17.0,25.0,22.0,28.0,12.0,14.0,13.0,13.0,6.0,14.0,14.0,6.0,9.0,15.0,9.0,4.0,5.0,4.0,6.0,2.0,4.0 N84037,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,, N84038,27.0,25.0,23.0,36.0,32.0,28.0,37.0,40.0,35.0,18.0,43.0,29.0,32.0,30.0,21.0,30.0,34.0,22.0,40.0,36.0,33.0,32.0,35.0,26.0,25.0,31.0,36.0,35.0,44.0,43.0,51.0,43.0,56.0,54.0,47.0,51.0,43.0,50.0,46.0,50.0,40.0,38.0,32.0,38.0,42.0,42.0,34.0,31.0,27.0,29.0,32.0,31.0,29.0,42.0,41.0,34.0,44.0,43.0,43.0,31.0,50.0,41.0,51.0,29.0,51.0,24.0,29.0,32.0,38.0,32.0,34.0,21.0,26.0,23.0,24.0,17.0,23.0,21.0,18.0,14.0,12.0,14.0,18.0,13.0,12.0,5.0,8.0,17.0,12.0,8.0,5.0,6.0,1.0,5.0,,3.0 N84041,33.0,37.0,26.0,33.0,32.0,31.0,35.0,33.0,23.0,29.0,29.0,30.0,35.0,28.0,26.0,22.0,26.0,22.0,27.0,25.0,21.0,25.0,25.0,14.0,30.0,27.0,35.0,17.0,34.0,42.0,55.0,57.0,43.0,53.0,59.0,33.0,43.0,49.0,48.0,42.0,53.0,49.0,42.0,48.0,46.0,35.0,24.0,25.0,29.0,28.0,28.0,34.0,33.0,25.0,35.0,39.0,32.0,45.0,40.0,36.0,52.0,52.0,58.0,38.0,52.0,48.0,55.0,40.0,42.0,34.0,29.0,38.0,23.0,31.0,25.0,31.0,27.0,29.0,28.0,22.0,18.0,16.0,18.0,18.0,15.0,5.0,8.0,9.0,18.0,8.0,4.0,8.0,7.0,3.0,4.0,6.0 N84605,44.0,48.0,43.0,59.0,61.0,59.0,60.0,70.0,57.0,61.0,72.0,63.0,59.0,73.0,62.0,75.0,45.0,54.0,47.0,41.0,46.0,53.0,41.0,43.0,52.0,42.0,49.0,63.0,68.0,62.0,60.0,56.0,54.0,88.0,88.0,78.0,80.0,82.0,76.0,94.0,79.0,65.0,71.0,67.0,61.0,54.0,62.0,50.0,54.0,42.0,44.0,51.0,53.0,55.0,53.0,47.0,49.0,57.0,49.0,49.0,57.0,48.0,42.0,32.0,46.0,44.0,37.0,36.0,27.0,44.0,31.0,25.0,15.0,16.0,15.0,22.0,27.0,15.0,23.0,15.0,17.0,5.0,11.0,12.0,6.0,8.0,8.0,9.0,5.0,5.0,5.0,3.0,1.0,3.0,3.0,2.0 N84613,20.0,14.0,18.0,23.0,22.0,25.0,15.0,24.0,21.0,18.0,18.0,14.0,17.0,25.0,27.0,21.0,27.0,19.0,20.0,17.0,14.0,19.0,29.0,26.0,21.0,14.0,27.0,20.0,16.0,23.0,16.0,17.0,28.0,28.0,27.0,23.0,34.0,26.0,26.0,26.0,25.0,31.0,21.0,24.0,27.0,31.0,23.0,29.0,19.0,19.0,19.0,33.0,28.0,32.0,37.0,30.0,38.0,34.0,44.0,35.0,34.0,28.0,35.0,38.0,41.0,38.0,32.0,40.0,29.0,36.0,34.0,33.0,34.0,32.0,35.0,35.0,42.0,35.0,47.0,29.0,28.0,24.0,21.0,14.0,18.0,31.0,17.0,17.0,17.0,6.0,10.0,4.0,5.0,3.0,5.0,8.0 N84614,10.0,10.0,12.0,11.0,15.0,14.0,8.0,18.0,10.0,14.0,12.0,15.0,17.0,23.0,13.0,17.0,21.0,8.0,11.0,12.0,14.0,12.0,16.0,15.0,7.0,15.0,8.0,11.0,14.0,15.0,26.0,17.0,20.0,18.0,13.0,23.0,18.0,16.0,23.0,14.0,22.0,23.0,19.0,15.0,18.0,24.0,19.0,16.0,10.0,17.0,10.0,16.0,24.0,16.0,19.0,28.0,20.0,26.0,26.0,24.0,34.0,24.0,19.0,28.0,29.0,35.0,26.0,27.0,32.0,35.0,37.0,34.0,28.0,39.0,32.0,19.0,35.0,28.0,27.0,15.0,21.0,17.0,15.0,15.0,8.0,9.0,17.0,11.0,6.0,5.0,6.0,6.0,5.0,3.0,5.0,4.0 N84615,21.0,15.0,15.0,18.0,14.0,12.0,24.0,17.0,16.0,25.0,21.0,30.0,12.0,16.0,17.0,13.0,17.0,15.0,11.0,21.0,14.0,11.0,14.0,25.0,30.0,19.0,24.0,32.0,30.0,31.0,30.0,33.0,36.0,27.0,35.0,40.0,30.0,24.0,28.0,25.0,18.0,28.0,20.0,24.0,15.0,20.0,20.0,15.0,16.0,15.0,18.0,16.0,24.0,17.0,19.0,21.0,24.0,15.0,18.0,17.0,25.0,21.0,26.0,20.0,17.0,14.0,16.0,6.0,17.0,12.0,14.0,9.0,11.0,16.0,12.0,5.0,6.0,9.0,8.0,12.0,4.0,2.0,9.0,7.0,8.0,5.0,9.0,3.0,3.0,1.0,,1.0,2.0,,,2.0 N84617,23.0,27.0,29.0,33.0,31.0,34.0,40.0,42.0,30.0,36.0,32.0,37.0,26.0,33.0,37.0,33.0,38.0,47.0,29.0,19.0,17.0,28.0,16.0,28.0,18.0,28.0,27.0,41.0,40.0,37.0,36.0,38.0,26.0,37.0,54.0,46.0,41.0,43.0,49.0,46.0,55.0,39.0,39.0,33.0,53.0,28.0,26.0,33.0,29.0,28.0,38.0,32.0,26.0,31.0,35.0,25.0,39.0,34.0,32.0,28.0,32.0,34.0,28.0,30.0,30.0,29.0,24.0,32.0,29.0,22.0,29.0,30.0,23.0,30.0,19.0,19.0,23.0,16.0,14.0,8.0,14.0,21.0,11.0,7.0,8.0,11.0,6.0,8.0,8.0,3.0,3.0,2.0,2.0,2.0,2.0,9.0 N84621,45.0,18.0,44.0,37.0,39.0,35.0,50.0,49.0,55.0,57.0,45.0,45.0,49.0,47.0,43.0,50.0,48.0,37.0,31.0,36.0,27.0,35.0,28.0,35.0,42.0,40.0,41.0,35.0,44.0,45.0,45.0,34.0,46.0,51.0,61.0,83.0,67.0,59.0,51.0,57.0,50.0,48.0,58.0,49.0,47.0,49.0,64.0,42.0,41.0,42.0,42.0,47.0,52.0,58.0,51.0,55.0,58.0,61.0,45.0,55.0,56.0,68.0,48.0,73.0,52.0,46.0,52.0,54.0,50.0,42.0,43.0,47.0,58.0,38.0,30.0,36.0,38.0,33.0,42.0,27.0,35.0,28.0,26.0,29.0,22.0,27.0,24.0,22.0,23.0,23.0,11.0,17.0,10.0,11.0,9.0,22.0 N84625,25.0,24.0,23.0,32.0,23.0,31.0,24.0,31.0,26.0,39.0,40.0,35.0,42.0,46.0,52.0,36.0,42.0,47.0,35.0,36.0,37.0,26.0,29.0,31.0,30.0,29.0,31.0,32.0,31.0,32.0,34.0,38.0,38.0,31.0,41.0,34.0,47.0,31.0,45.0,40.0,37.0,47.0,35.0,41.0,50.0,46.0,45.0,31.0,42.0,46.0,36.0,39.0,37.0,58.0,45.0,56.0,45.0,43.0,55.0,40.0,44.0,39.0,44.0,40.0,37.0,33.0,42.0,21.0,26.0,32.0,21.0,29.0,22.0,24.0,26.0,21.0,23.0,30.0,28.0,16.0,15.0,18.0,18.0,18.0,12.0,18.0,9.0,9.0,10.0,6.0,8.0,6.0,11.0,10.0,6.0,9.0 N84626,6.0,2.0,5.0,5.0,11.0,3.0,10.0,9.0,7.0,8.0,5.0,8.0,8.0,4.0,8.0,13.0,8.0,15.0,7.0,4.0,7.0,5.0,10.0,6.0,10.0,4.0,12.0,8.0,9.0,7.0,9.0,9.0,8.0,4.0,9.0,16.0,7.0,7.0,9.0,12.0,10.0,10.0,11.0,6.0,11.0,11.0,10.0,6.0,9.0,13.0,6.0,12.0,9.0,10.0,14.0,12.0,18.0,13.0,17.0,9.0,17.0,24.0,11.0,16.0,17.0,18.0,21.0,11.0,15.0,14.0,20.0,13.0,13.0,14.0,8.0,12.0,14.0,18.0,9.0,11.0,19.0,4.0,11.0,7.0,12.0,9.0,6.0,6.0,4.0,5.0,4.0,3.0,7.0,3.0,3.0,4.0 N85002,51.0,46.0,53.0,59.0,74.0,80.0,66.0,82.0,84.0,106.0,97.0,94.0,99.0,109.0,107.0,97.0,113.0,121.0,109.0,82.0,82.0,79.0,71.0,84.0,81.0,78.0,92.0,92.0,72.0,89.0,85.0,73.0,84.0,95.0,92.0,76.0,86.0,105.0,118.0,104.0,99.0,110.0,100.0,121.0,118.0,125.0,114.0,106.0,113.0,125.0,130.0,126.0,127.0,157.0,139.0,125.0,158.0,155.0,133.0,146.0,170.0,146.0,164.0,163.0,137.0,151.0,122.0,125.0,113.0,137.0,134.0,149.0,132.0,129.0,135.0,132.0,137.0,143.0,146.0,111.0,99.0,99.0,102.0,71.0,96.0,94.0,57.0,64.0,74.0,64.0,52.0,42.0,42.0,28.0,32.0,77.0 N85005,29.0,49.0,40.0,54.0,40.0,49.0,49.0,56.0,51.0,53.0,55.0,71.0,60.0,67.0,61.0,61.0,55.0,74.0,65.0,63.0,59.0,52.0,50.0,58.0,55.0,52.0,63.0,64.0,49.0,54.0,70.0,74.0,70.0,79.0,65.0,85.0,70.0,66.0,59.0,60.0,80.0,67.0,71.0,59.0,70.0,59.0,65.0,54.0,74.0,67.0,68.0,77.0,80.0,77.0,72.0,108.0,75.0,80.0,78.0,93.0,78.0,85.0,80.0,82.0,76.0,68.0,69.0,64.0,63.0,64.0,55.0,69.0,43.0,54.0,52.0,75.0,51.0,63.0,78.0,56.0,47.0,57.0,46.0,39.0,42.0,37.0,35.0,34.0,28.0,23.0,21.0,12.0,10.0,11.0,10.0,12.0 N85006,20.0,24.0,31.0,41.0,35.0,43.0,35.0,43.0,60.0,54.0,50.0,56.0,69.0,59.0,68.0,51.0,59.0,47.0,43.0,46.0,45.0,41.0,34.0,52.0,39.0,30.0,37.0,36.0,39.0,43.0,40.0,47.0,44.0,40.0,52.0,52.0,50.0,59.0,64.0,49.0,66.0,67.0,51.0,79.0,74.0,78.0,49.0,59.0,54.0,69.0,65.0,64.0,67.0,80.0,74.0,76.0,77.0,73.0,52.0,60.0,80.0,69.0,72.0,66.0,59.0,63.0,58.0,61.0,65.0,48.0,61.0,48.0,50.0,70.0,69.0,56.0,62.0,69.0,64.0,43.0,65.0,54.0,49.0,30.0,47.0,44.0,28.0,36.0,21.0,21.0,24.0,12.0,16.0,12.0,12.0,29.0 N85007,52.0,83.0,94.0,108.0,72.0,86.0,92.0,86.0,106.0,91.0,107.0,90.0,95.0,120.0,101.0,112.0,121.0,108.0,90.0,97.0,76.0,94.0,70.0,88.0,94.0,86.0,96.0,88.0,96.0,90.0,101.0,94.0,119.0,114.0,102.0,113.0,126.0,136.0,124.0,114.0,130.0,117.0,89.0,123.0,115.0,127.0,105.0,108.0,112.0,128.0,102.0,132.0,135.0,136.0,161.0,140.0,164.0,156.0,167.0,194.0,192.0,185.0,181.0,173.0,169.0,176.0,165.0,177.0,170.0,139.0,176.0,188.0,139.0,164.0,180.0,162.0,152.0,161.0,196.0,116.0,118.0,118.0,96.0,119.0,95.0,82.0,87.0,77.0,65.0,72.0,46.0,47.0,28.0,32.0,27.0,68.0 N85008,43.0,36.0,53.0,50.0,53.0,67.0,60.0,52.0,57.0,67.0,70.0,61.0,68.0,66.0,69.0,65.0,68.0,76.0,55.0,61.0,54.0,60.0,56.0,52.0,45.0,55.0,44.0,60.0,57.0,62.0,61.0,57.0,54.0,77.0,75.0,76.0,73.0,76.0,88.0,79.0,81.0,81.0,89.0,69.0,92.0,80.0,74.0,71.0,81.0,64.0,89.0,85.0,80.0,92.0,93.0,84.0,90.0,92.0,97.0,108.0,118.0,129.0,89.0,100.0,112.0,98.0,108.0,89.0,88.0,92.0,102.0,104.0,95.0,93.0,101.0,104.0,109.0,113.0,93.0,103.0,71.0,70.0,81.0,54.0,62.0,65.0,55.0,53.0,35.0,42.0,41.0,32.0,31.0,25.0,18.0,39.0 N85012,29.0,26.0,34.0,41.0,43.0,45.0,35.0,54.0,43.0,49.0,52.0,52.0,65.0,57.0,56.0,58.0,44.0,48.0,58.0,34.0,50.0,48.0,39.0,49.0,41.0,54.0,40.0,44.0,40.0,50.0,61.0,51.0,46.0,61.0,65.0,64.0,74.0,75.0,73.0,68.0,56.0,62.0,56.0,62.0,62.0,70.0,46.0,66.0,58.0,73.0,66.0,63.0,65.0,51.0,69.0,44.0,79.0,66.0,73.0,72.0,67.0,64.0,68.0,70.0,54.0,69.0,57.0,69.0,77.0,66.0,63.0,48.0,53.0,58.0,42.0,36.0,48.0,55.0,54.0,34.0,31.0,42.0,37.0,28.0,33.0,34.0,18.0,24.0,22.0,20.0,11.0,13.0,12.0,10.0,5.0,23.0 N85013,30.0,20.0,37.0,21.0,22.0,33.0,31.0,24.0,34.0,37.0,31.0,39.0,41.0,34.0,36.0,39.0,54.0,45.0,45.0,26.0,26.0,37.0,33.0,34.0,30.0,36.0,42.0,31.0,44.0,22.0,43.0,36.0,39.0,45.0,45.0,48.0,45.0,52.0,42.0,48.0,35.0,34.0,43.0,46.0,46.0,51.0,50.0,37.0,44.0,38.0,38.0,53.0,55.0,47.0,48.0,50.0,77.0,61.0,68.0,61.0,63.0,60.0,52.0,62.0,58.0,59.0,64.0,53.0,52.0,57.0,53.0,63.0,57.0,63.0,48.0,64.0,61.0,60.0,65.0,42.0,45.0,49.0,36.0,27.0,31.0,28.0,24.0,25.0,26.0,19.0,16.0,16.0,10.0,8.0,10.0,19.0 N85015,31.0,34.0,16.0,37.0,34.0,30.0,39.0,35.0,36.0,48.0,40.0,47.0,50.0,51.0,51.0,41.0,39.0,49.0,35.0,44.0,44.0,34.0,35.0,44.0,44.0,44.0,42.0,52.0,42.0,52.0,45.0,51.0,45.0,50.0,59.0,58.0,56.0,62.0,60.0,49.0,44.0,60.0,57.0,59.0,49.0,56.0,57.0,42.0,51.0,46.0,57.0,45.0,63.0,45.0,59.0,59.0,64.0,48.0,52.0,64.0,57.0,56.0,55.0,54.0,55.0,47.0,42.0,54.0,51.0,40.0,43.0,29.0,49.0,31.0,34.0,26.0,37.0,40.0,31.0,28.0,24.0,32.0,28.0,12.0,9.0,19.0,17.0,10.0,12.0,10.0,4.0,6.0,7.0,1.0,5.0,5.0 N85016,35.0,38.0,44.0,42.0,39.0,49.0,47.0,61.0,37.0,46.0,46.0,43.0,45.0,48.0,45.0,64.0,50.0,69.0,45.0,52.0,45.0,45.0,40.0,61.0,41.0,62.0,48.0,62.0,82.0,75.0,64.0,72.0,69.0,70.0,76.0,64.0,69.0,90.0,64.0,62.0,48.0,48.0,57.0,64.0,48.0,61.0,42.0,39.0,56.0,46.0,52.0,42.0,53.0,49.0,49.0,59.0,53.0,66.0,63.0,49.0,55.0,54.0,66.0,48.0,42.0,58.0,51.0,36.0,45.0,43.0,53.0,45.0,39.0,35.0,28.0,41.0,27.0,28.0,43.0,32.0,20.0,32.0,26.0,10.0,12.0,18.0,9.0,13.0,7.0,7.0,4.0,9.0,4.0,2.0,2.0,6.0 N85017,16.0,23.0,20.0,23.0,24.0,26.0,36.0,32.0,28.0,35.0,39.0,29.0,40.0,30.0,29.0,32.0,34.0,46.0,25.0,22.0,34.0,34.0,30.0,36.0,28.0,48.0,39.0,30.0,43.0,51.0,51.0,41.0,34.0,46.0,44.0,45.0,43.0,42.0,47.0,41.0,36.0,49.0,40.0,43.0,35.0,35.0,32.0,35.0,30.0,29.0,29.0,30.0,35.0,27.0,37.0,42.0,35.0,48.0,42.0,38.0,50.0,37.0,41.0,28.0,35.0,39.0,24.0,26.0,32.0,27.0,21.0,20.0,32.0,23.0,21.0,21.0,24.0,11.0,12.0,13.0,17.0,16.0,11.0,14.0,9.0,6.0,11.0,5.0,8.0,6.0,5.0,4.0,2.0,4.0,2.0,2.0 N85018,30.0,25.0,23.0,44.0,23.0,29.0,26.0,29.0,27.0,28.0,33.0,25.0,26.0,19.0,29.0,40.0,22.0,43.0,36.0,25.0,27.0,31.0,24.0,27.0,31.0,34.0,26.0,38.0,32.0,31.0,34.0,41.0,24.0,37.0,48.0,34.0,35.0,40.0,47.0,36.0,41.0,40.0,42.0,32.0,38.0,34.0,36.0,28.0,38.0,23.0,40.0,31.0,43.0,52.0,44.0,38.0,56.0,43.0,48.0,50.0,65.0,60.0,51.0,54.0,52.0,44.0,57.0,40.0,42.0,40.0,51.0,31.0,38.0,34.0,41.0,33.0,30.0,30.0,54.0,30.0,32.0,37.0,28.0,31.0,14.0,18.0,24.0,19.0,8.0,10.0,9.0,7.0,4.0,6.0,4.0,13.0 N85019,42.0,45.0,39.0,48.0,39.0,42.0,54.0,64.0,63.0,58.0,50.0,49.0,63.0,52.0,58.0,68.0,54.0,66.0,52.0,43.0,50.0,36.0,55.0,38.0,58.0,64.0,64.0,66.0,82.0,81.0,73.0,59.0,73.0,75.0,56.0,64.0,78.0,63.0,64.0,58.0,55.0,75.0,65.0,41.0,61.0,36.0,60.0,45.0,54.0,41.0,44.0,42.0,56.0,46.0,54.0,41.0,51.0,55.0,54.0,47.0,40.0,53.0,50.0,62.0,54.0,35.0,36.0,39.0,49.0,34.0,30.0,33.0,28.0,30.0,28.0,30.0,22.0,41.0,23.0,24.0,13.0,21.0,25.0,16.0,14.0,18.0,10.0,8.0,9.0,7.0,7.0,5.0,4.0,4.0,1.0,3.0 N85020,67.0,85.0,78.0,79.0,77.0,92.0,95.0,90.0,78.0,83.0,99.0,82.0,96.0,108.0,93.0,75.0,98.0,92.0,79.0,96.0,86.0,73.0,83.0,63.0,89.0,96.0,108.0,108.0,108.0,113.0,115.0,112.0,119.0,122.0,115.0,123.0,127.0,135.0,103.0,113.0,120.0,102.0,87.0,97.0,105.0,83.0,97.0,80.0,76.0,77.0,100.0,85.0,111.0,106.0,104.0,91.0,121.0,123.0,120.0,106.0,107.0,110.0,92.0,105.0,74.0,92.0,87.0,79.0,75.0,57.0,64.0,66.0,63.0,60.0,58.0,58.0,66.0,64.0,44.0,46.0,57.0,48.0,50.0,30.0,42.0,28.0,34.0,36.0,23.0,27.0,17.0,11.0,11.0,8.0,10.0,28.0 N85021,11.0,13.0,11.0,12.0,7.0,12.0,11.0,5.0,6.0,16.0,6.0,11.0,15.0,12.0,6.0,12.0,9.0,7.0,13.0,13.0,12.0,16.0,23.0,20.0,22.0,22.0,21.0,28.0,29.0,34.0,26.0,24.0,20.0,28.0,18.0,23.0,23.0,19.0,17.0,18.0,17.0,24.0,21.0,16.0,16.0,14.0,16.0,15.0,14.0,14.0,13.0,17.0,8.0,18.0,18.0,16.0,16.0,24.0,18.0,18.0,18.0,14.0,27.0,21.0,15.0,10.0,17.0,8.0,8.0,19.0,11.0,10.0,16.0,9.0,11.0,7.0,20.0,13.0,16.0,11.0,6.0,6.0,13.0,5.0,4.0,4.0,6.0,4.0,8.0,4.0,3.0,3.0,4.0,,3.0,4.0 N85022,22.0,26.0,27.0,15.0,34.0,27.0,15.0,16.0,16.0,17.0,17.0,24.0,20.0,15.0,24.0,21.0,26.0,29.0,18.0,21.0,22.0,16.0,20.0,29.0,30.0,22.0,35.0,31.0,37.0,33.0,36.0,33.0,18.0,33.0,33.0,36.0,45.0,39.0,28.0,34.0,31.0,30.0,32.0,32.0,19.0,24.0,23.0,29.0,27.0,29.0,29.0,36.0,26.0,31.0,25.0,25.0,26.0,19.0,27.0,21.0,24.0,35.0,20.0,21.0,29.0,22.0,14.0,19.0,26.0,11.0,22.0,19.0,17.0,29.0,20.0,31.0,28.0,21.0,23.0,20.0,11.0,14.0,14.0,9.0,9.0,5.0,6.0,7.0,7.0,1.0,3.0,3.0,,1.0,1.0, N85023,16.0,30.0,23.0,26.0,31.0,28.0,21.0,42.0,31.0,34.0,21.0,44.0,28.0,31.0,27.0,35.0,39.0,34.0,37.0,36.0,32.0,29.0,30.0,31.0,31.0,20.0,26.0,23.0,28.0,46.0,36.0,33.0,42.0,34.0,37.0,37.0,43.0,45.0,46.0,43.0,31.0,32.0,37.0,31.0,51.0,30.0,27.0,34.0,33.0,35.0,36.0,36.0,31.0,40.0,49.0,47.0,55.0,35.0,38.0,43.0,61.0,42.0,48.0,39.0,42.0,36.0,42.0,26.0,46.0,29.0,30.0,24.0,28.0,40.0,27.0,23.0,27.0,32.0,27.0,28.0,25.0,14.0,20.0,17.0,16.0,21.0,22.0,13.0,6.0,7.0,9.0,6.0,6.0,7.0,5.0,13.0 N85024,49.0,50.0,40.0,53.0,41.0,49.0,37.0,53.0,55.0,61.0,70.0,59.0,70.0,60.0,49.0,55.0,55.0,56.0,45.0,55.0,51.0,49.0,50.0,62.0,63.0,44.0,61.0,71.0,72.0,69.0,62.0,83.0,66.0,79.0,81.0,72.0,82.0,67.0,75.0,69.0,62.0,67.0,75.0,54.0,51.0,53.0,55.0,51.0,55.0,52.0,46.0,41.0,57.0,55.0,78.0,62.0,62.0,72.0,58.0,71.0,69.0,77.0,54.0,53.0,55.0,54.0,50.0,55.0,61.0,55.0,55.0,43.0,38.0,21.0,31.0,25.0,31.0,33.0,43.0,17.0,18.0,26.0,20.0,21.0,16.0,15.0,13.0,18.0,7.0,13.0,7.0,8.0,6.0,4.0,4.0,11.0 N85025,15.0,21.0,23.0,20.0,21.0,23.0,29.0,24.0,38.0,31.0,22.0,34.0,40.0,28.0,34.0,28.0,41.0,36.0,23.0,30.0,29.0,29.0,21.0,35.0,25.0,33.0,21.0,21.0,25.0,38.0,40.0,40.0,37.0,45.0,35.0,42.0,33.0,42.0,29.0,41.0,37.0,41.0,42.0,46.0,37.0,28.0,37.0,35.0,29.0,30.0,42.0,21.0,41.0,42.0,45.0,35.0,37.0,48.0,50.0,55.0,45.0,38.0,51.0,39.0,49.0,48.0,39.0,47.0,43.0,43.0,32.0,30.0,36.0,37.0,34.0,27.0,34.0,36.0,32.0,18.0,25.0,13.0,19.0,16.0,9.0,14.0,12.0,12.0,9.0,12.0,7.0,4.0,2.0,5.0,5.0,8.0 N85027,32.0,36.0,38.0,49.0,41.0,40.0,71.0,55.0,54.0,63.0,53.0,58.0,72.0,65.0,58.0,71.0,57.0,54.0,52.0,49.0,52.0,47.0,48.0,65.0,50.0,48.0,55.0,60.0,72.0,64.0,79.0,52.0,58.0,58.0,61.0,65.0,68.0,74.0,68.0,78.0,66.0,61.0,57.0,56.0,54.0,69.0,57.0,52.0,64.0,42.0,45.0,53.0,51.0,66.0,81.0,43.0,65.0,56.0,67.0,62.0,61.0,67.0,71.0,31.0,56.0,62.0,59.0,71.0,38.0,43.0,42.0,42.0,32.0,47.0,42.0,35.0,33.0,34.0,36.0,22.0,22.0,24.0,23.0,7.0,12.0,18.0,13.0,13.0,4.0,9.0,8.0,5.0,5.0,2.0,1.0,8.0 N85028,44.0,57.0,53.0,56.0,60.0,53.0,54.0,64.0,63.0,56.0,74.0,94.0,75.0,95.0,74.0,88.0,83.0,95.0,65.0,73.0,86.0,67.0,66.0,56.0,89.0,59.0,71.0,60.0,83.0,63.0,76.0,83.0,76.0,79.0,87.0,74.0,86.0,96.0,79.0,109.0,100.0,95.0,68.0,75.0,84.0,73.0,75.0,81.0,66.0,85.0,89.0,74.0,81.0,99.0,108.0,95.0,92.0,85.0,92.0,93.0,93.0,102.0,94.0,96.0,100.0,86.0,109.0,74.0,81.0,77.0,74.0,83.0,77.0,85.0,95.0,87.0,74.0,97.0,79.0,58.0,58.0,43.0,48.0,52.0,45.0,39.0,37.0,24.0,31.0,17.0,20.0,14.0,13.0,8.0,9.0,20.0 N85031,23.0,25.0,25.0,23.0,22.0,21.0,23.0,27.0,23.0,14.0,23.0,24.0,18.0,26.0,32.0,12.0,16.0,26.0,23.0,14.0,19.0,17.0,23.0,24.0,21.0,25.0,28.0,24.0,25.0,23.0,29.0,27.0,26.0,25.0,28.0,37.0,32.0,33.0,19.0,28.0,23.0,28.0,21.0,19.0,23.0,21.0,15.0,15.0,14.0,14.0,17.0,13.0,23.0,24.0,30.0,17.0,25.0,16.0,18.0,26.0,23.0,17.0,24.0,19.0,26.0,18.0,20.0,16.0,27.0,22.0,20.0,11.0,13.0,16.0,9.0,16.0,9.0,12.0,10.0,8.0,7.0,9.0,7.0,5.0,7.0,5.0,5.0,4.0,5.0,4.0,2.0,3.0,,1.0,3.0,4.0 N85032,19.0,20.0,24.0,20.0,17.0,32.0,23.0,27.0,26.0,33.0,30.0,30.0,39.0,36.0,42.0,32.0,28.0,25.0,33.0,23.0,19.0,32.0,22.0,25.0,20.0,25.0,34.0,23.0,18.0,17.0,19.0,37.0,29.0,25.0,29.0,27.0,38.0,35.0,30.0,50.0,34.0,41.0,29.0,42.0,43.0,44.0,30.0,40.0,31.0,38.0,45.0,31.0,51.0,45.0,45.0,48.0,42.0,49.0,44.0,56.0,38.0,61.0,56.0,60.0,52.0,53.0,52.0,58.0,55.0,48.0,50.0,56.0,51.0,71.0,51.0,49.0,48.0,61.0,51.0,37.0,47.0,42.0,51.0,26.0,35.0,33.0,24.0,20.0,18.0,22.0,18.0,15.0,12.0,12.0,9.0,11.0 N85037,38.0,33.0,36.0,36.0,37.0,36.0,34.0,33.0,39.0,36.0,42.0,33.0,53.0,34.0,43.0,44.0,34.0,43.0,32.0,39.0,27.0,32.0,33.0,35.0,35.0,34.0,42.0,35.0,42.0,35.0,33.0,34.0,46.0,51.0,58.0,51.0,50.0,53.0,43.0,55.0,40.0,44.0,34.0,46.0,38.0,37.0,40.0,25.0,32.0,27.0,37.0,37.0,30.0,27.0,43.0,32.0,38.0,30.0,20.0,35.0,35.0,37.0,38.0,30.0,17.0,29.0,34.0,29.0,21.0,20.0,19.0,25.0,24.0,21.0,23.0,21.0,16.0,13.0,18.0,14.0,8.0,13.0,7.0,8.0,15.0,14.0,12.0,12.0,6.0,6.0,6.0,7.0,2.0,5.0,6.0,14.0 N85038,13.0,16.0,25.0,20.0,22.0,11.0,25.0,21.0,16.0,21.0,24.0,27.0,31.0,16.0,22.0,33.0,35.0,30.0,33.0,19.0,29.0,23.0,18.0,23.0,26.0,23.0,21.0,20.0,27.0,36.0,35.0,25.0,26.0,38.0,35.0,27.0,27.0,32.0,31.0,24.0,38.0,36.0,27.0,25.0,22.0,30.0,26.0,21.0,19.0,25.0,19.0,22.0,29.0,34.0,33.0,25.0,27.0,23.0,27.0,34.0,22.0,40.0,36.0,25.0,27.0,23.0,27.0,17.0,13.0,22.0,27.0,25.0,20.0,16.0,10.0,14.0,16.0,18.0,21.0,9.0,8.0,4.0,11.0,5.0,9.0,5.0,3.0,2.0,5.0,4.0,4.0,5.0,2.0,1.0,2.0, N85044,58.0,87.0,105.0,105.0,102.0,116.0,102.0,93.0,116.0,116.0,107.0,121.0,125.0,148.0,128.0,136.0,136.0,138.0,140.0,108.0,126.0,99.0,91.0,99.0,100.0,142.0,121.0,121.0,104.0,117.0,137.0,136.0,126.0,127.0,138.0,144.0,131.0,127.0,126.0,161.0,144.0,168.0,135.0,131.0,135.0,149.0,133.0,132.0,132.0,137.0,127.0,131.0,126.0,164.0,133.0,151.0,160.0,161.0,131.0,167.0,149.0,156.0,151.0,147.0,125.0,134.0,127.0,97.0,111.0,108.0,108.0,101.0,99.0,92.0,92.0,86.0,94.0,127.0,108.0,64.0,85.0,74.0,69.0,54.0,59.0,60.0,42.0,39.0,42.0,27.0,43.0,34.0,26.0,18.0,14.0,38.0 N85046,20.0,21.0,21.0,25.0,20.0,30.0,18.0,24.0,18.0,23.0,27.0,29.0,30.0,24.0,29.0,29.0,36.0,26.0,26.0,21.0,23.0,23.0,24.0,22.0,29.0,26.0,34.0,32.0,24.0,20.0,29.0,37.0,39.0,35.0,30.0,40.0,47.0,38.0,27.0,30.0,29.0,23.0,38.0,33.0,38.0,47.0,24.0,22.0,26.0,26.0,24.0,31.0,37.0,29.0,27.0,29.0,39.0,33.0,24.0,33.0,44.0,33.0,44.0,42.0,37.0,40.0,40.0,31.0,33.0,33.0,49.0,28.0,39.0,31.0,29.0,34.0,31.0,34.0,35.0,26.0,30.0,16.0,17.0,16.0,11.0,16.0,11.0,12.0,15.0,12.0,11.0,3.0,6.0,7.0,6.0,7.0 N85047,26.0,31.0,34.0,47.0,41.0,39.0,50.0,43.0,27.0,34.0,44.0,38.0,36.0,44.0,42.0,36.0,30.0,26.0,28.0,26.0,27.0,35.0,28.0,38.0,31.0,28.0,40.0,46.0,43.0,49.0,52.0,55.0,52.0,43.0,63.0,50.0,54.0,63.0,46.0,52.0,47.0,45.0,41.0,41.0,38.0,50.0,49.0,45.0,40.0,47.0,41.0,33.0,40.0,47.0,42.0,42.0,44.0,39.0,50.0,34.0,49.0,45.0,36.0,41.0,38.0,42.0,26.0,38.0,49.0,29.0,37.0,44.0,44.0,43.0,38.0,25.0,36.0,47.0,37.0,26.0,34.0,28.0,33.0,18.0,19.0,32.0,27.0,20.0,19.0,15.0,13.0,10.0,11.0,6.0,3.0,8.0 N85048,21.0,19.0,16.0,20.0,21.0,22.0,25.0,18.0,24.0,33.0,32.0,27.0,23.0,32.0,30.0,22.0,32.0,37.0,23.0,24.0,24.0,20.0,30.0,19.0,18.0,28.0,24.0,33.0,38.0,37.0,33.0,32.0,31.0,38.0,21.0,38.0,37.0,43.0,33.0,38.0,29.0,25.0,33.0,31.0,27.0,26.0,47.0,30.0,27.0,36.0,37.0,38.0,46.0,31.0,54.0,45.0,35.0,29.0,31.0,33.0,50.0,43.0,47.0,38.0,37.0,43.0,37.0,35.0,46.0,29.0,43.0,28.0,25.0,35.0,34.0,34.0,23.0,31.0,26.0,23.0,22.0,15.0,15.0,6.0,14.0,16.0,10.0,14.0,7.0,7.0,7.0,8.0,3.0,5.0,1.0,10.0 N85051,93.0,70.0,64.0,76.0,98.0,86.0,91.0,103.0,82.0,110.0,96.0,95.0,123.0,110.0,133.0,126.0,107.0,108.0,105.0,86.0,88.0,78.0,91.0,77.0,87.0,90.0,98.0,104.0,110.0,90.0,115.0,131.0,117.0,141.0,135.0,120.0,152.0,132.0,118.0,124.0,122.0,106.0,125.0,117.0,104.0,139.0,98.0,90.0,97.0,114.0,113.0,106.0,121.0,123.0,115.0,130.0,125.0,137.0,135.0,125.0,123.0,127.0,103.0,108.0,109.0,100.0,103.0,97.0,90.0,89.0,77.0,99.0,83.0,89.0,73.0,86.0,99.0,107.0,81.0,66.0,68.0,56.0,59.0,58.0,47.0,39.0,38.0,28.0,23.0,23.0,13.0,17.0,10.0,11.0,4.0,28.0 N85052,16.0,31.0,19.0,23.0,21.0,23.0,24.0,17.0,25.0,19.0,25.0,20.0,25.0,22.0,22.0,21.0,31.0,24.0,15.0,16.0,14.0,14.0,21.0,16.0,31.0,25.0,25.0,27.0,22.0,36.0,45.0,38.0,47.0,38.0,39.0,42.0,36.0,41.0,38.0,38.0,29.0,23.0,33.0,29.0,26.0,33.0,34.0,25.0,19.0,31.0,32.0,15.0,30.0,31.0,28.0,39.0,34.0,38.0,32.0,50.0,35.0,26.0,42.0,31.0,27.0,36.0,23.0,38.0,29.0,27.0,25.0,31.0,30.0,19.0,23.0,30.0,23.0,26.0,24.0,25.0,18.0,17.0,21.0,9.0,13.0,22.0,11.0,7.0,9.0,8.0,10.0,7.0,7.0,2.0,6.0,7.0 N85054,25.0,25.0,18.0,30.0,14.0,26.0,24.0,29.0,30.0,26.0,32.0,35.0,33.0,29.0,37.0,24.0,24.0,24.0,28.0,29.0,27.0,29.0,27.0,23.0,25.0,22.0,23.0,27.0,32.0,24.0,31.0,27.0,34.0,33.0,39.0,31.0,29.0,35.0,36.0,26.0,25.0,50.0,34.0,30.0,37.0,38.0,36.0,31.0,24.0,39.0,33.0,36.0,31.0,40.0,34.0,41.0,38.0,36.0,41.0,42.0,35.0,45.0,37.0,30.0,36.0,33.0,24.0,23.0,30.0,33.0,33.0,26.0,35.0,31.0,35.0,32.0,29.0,27.0,44.0,18.0,20.0,19.0,13.0,21.0,16.0,12.0,11.0,10.0,9.0,12.0,8.0,4.0,3.0,3.0,4.0,5.0 N85057,4.0,6.0,7.0,6.0,6.0,6.0,6.0,9.0,10.0,8.0,11.0,16.0,8.0,7.0,7.0,6.0,7.0,8.0,14.0,8.0,12.0,7.0,4.0,10.0,7.0,10.0,10.0,9.0,11.0,13.0,12.0,18.0,9.0,10.0,11.0,9.0,12.0,8.0,14.0,9.0,13.0,9.0,12.0,8.0,10.0,10.0,17.0,5.0,12.0,9.0,13.0,8.0,9.0,10.0,9.0,8.0,14.0,16.0,8.0,9.0,11.0,17.0,21.0,16.0,10.0,10.0,9.0,11.0,14.0,14.0,14.0,15.0,14.0,16.0,12.0,14.0,10.0,17.0,13.0,7.0,7.0,10.0,9.0,3.0,7.0,4.0,5.0,5.0,4.0,2.0,4.0,1.0,3.0,1.0,1.0,1.0 N85059,19.0,29.0,20.0,21.0,22.0,44.0,46.0,36.0,44.0,53.0,42.0,43.0,51.0,49.0,60.0,44.0,61.0,46.0,40.0,39.0,34.0,33.0,39.0,32.0,36.0,35.0,43.0,34.0,39.0,36.0,36.0,47.0,48.0,46.0,47.0,47.0,21.0,44.0,42.0,46.0,49.0,47.0,52.0,59.0,53.0,63.0,67.0,51.0,49.0,60.0,48.0,59.0,45.0,76.0,64.0,59.0,59.0,63.0,60.0,73.0,77.0,66.0,61.0,81.0,53.0,72.0,59.0,71.0,56.0,64.0,59.0,59.0,51.0,58.0,45.0,55.0,53.0,49.0,59.0,30.0,38.0,32.0,15.0,21.0,22.0,32.0,19.0,10.0,22.0,17.0,14.0,9.0,4.0,8.0,3.0,15.0 N85616,11.0,18.0,17.0,23.0,21.0,23.0,26.0,27.0,30.0,35.0,32.0,25.0,27.0,31.0,31.0,29.0,23.0,24.0,17.0,25.0,24.0,21.0,27.0,23.0,23.0,22.0,29.0,31.0,29.0,27.0,27.0,38.0,43.0,39.0,41.0,27.0,41.0,40.0,35.0,25.0,36.0,38.0,25.0,25.0,23.0,18.0,26.0,27.0,19.0,27.0,26.0,37.0,26.0,27.0,33.0,24.0,34.0,35.0,23.0,32.0,27.0,33.0,24.0,25.0,35.0,30.0,24.0,31.0,26.0,15.0,24.0,37.0,12.0,16.0,20.0,21.0,26.0,26.0,27.0,11.0,17.0,18.0,14.0,13.0,11.0,12.0,6.0,10.0,12.0,5.0,2.0,6.0,3.0,3.0,3.0,6.0 N85617,20.0,23.0,23.0,22.0,27.0,21.0,30.0,20.0,25.0,36.0,23.0,21.0,33.0,21.0,17.0,21.0,17.0,23.0,17.0,21.0,19.0,15.0,12.0,18.0,21.0,19.0,29.0,27.0,17.0,25.0,26.0,30.0,35.0,27.0,25.0,29.0,35.0,44.0,42.0,41.0,32.0,38.0,21.0,32.0,31.0,25.0,30.0,26.0,28.0,20.0,24.0,25.0,38.0,31.0,25.0,32.0,35.0,29.0,32.0,26.0,37.0,45.0,41.0,40.0,36.0,34.0,35.0,40.0,47.0,23.0,43.0,34.0,37.0,36.0,36.0,25.0,33.0,35.0,33.0,35.0,29.0,25.0,23.0,19.0,10.0,18.0,34.0,7.0,17.0,15.0,8.0,9.0,4.0,9.0,3.0,6.0 N85620,17.0,22.0,26.0,31.0,27.0,26.0,20.0,17.0,24.0,24.0,28.0,25.0,31.0,31.0,28.0,30.0,42.0,32.0,26.0,35.0,22.0,32.0,39.0,22.0,46.0,29.0,37.0,31.0,34.0,34.0,32.0,36.0,38.0,31.0,28.0,37.0,47.0,36.0,46.0,37.0,48.0,40.0,47.0,45.0,36.0,34.0,33.0,41.0,29.0,38.0,40.0,41.0,48.0,43.0,47.0,54.0,44.0,42.0,52.0,55.0,65.0,63.0,51.0,45.0,58.0,60.0,37.0,66.0,36.0,46.0,60.0,51.0,55.0,29.0,36.0,35.0,36.0,34.0,44.0,24.0,31.0,27.0,23.0,13.0,12.0,15.0,15.0,11.0,14.0,6.0,10.0,10.0,7.0,10.0,6.0,12.0 N85625,77.0,79.0,92.0,94.0,85.0,110.0,92.0,106.0,118.0,123.0,119.0,94.0,85.0,89.0,112.0,97.0,88.0,95.0,100.0,105.0,73.0,94.0,89.0,81.0,93.0,106.0,107.0,121.0,103.0,128.0,110.0,128.0,142.0,128.0,140.0,133.0,116.0,137.0,116.0,141.0,132.0,105.0,140.0,100.0,92.0,98.0,89.0,82.0,82.0,101.0,97.0,97.0,89.0,100.0,99.0,123.0,98.0,119.0,100.0,96.0,109.0,111.0,109.0,123.0,124.0,96.0,122.0,88.0,92.0,72.0,70.0,77.0,61.0,69.0,62.0,60.0,54.0,70.0,65.0,48.0,49.0,40.0,32.0,44.0,37.0,22.0,28.0,18.0,14.0,10.0,16.0,8.0,14.0,14.0,6.0,18.0 N85629,21.0,16.0,32.0,17.0,14.0,26.0,34.0,25.0,32.0,31.0,33.0,38.0,30.0,29.0,31.0,22.0,32.0,35.0,25.0,24.0,29.0,20.0,28.0,27.0,29.0,32.0,23.0,32.0,27.0,29.0,33.0,37.0,33.0,35.0,39.0,41.0,44.0,35.0,37.0,31.0,41.0,34.0,35.0,28.0,24.0,22.0,24.0,23.0,24.0,31.0,30.0,28.0,39.0,17.0,22.0,28.0,28.0,30.0,26.0,24.0,28.0,28.0,29.0,25.0,19.0,15.0,28.0,20.0,19.0,14.0,12.0,18.0,9.0,22.0,13.0,23.0,16.0,15.0,13.0,9.0,13.0,8.0,2.0,6.0,4.0,4.0,5.0,2.0,,3.0,4.0,1.0,3.0,4.0,1.0,3.0 N85633,30.0,30.0,28.0,30.0,43.0,37.0,34.0,39.0,36.0,35.0,31.0,38.0,35.0,29.0,27.0,25.0,30.0,25.0,21.0,17.0,24.0,20.0,26.0,28.0,29.0,28.0,22.0,44.0,25.0,40.0,39.0,35.0,36.0,44.0,57.0,52.0,51.0,42.0,50.0,35.0,40.0,35.0,32.0,41.0,36.0,31.0,30.0,24.0,25.0,33.0,18.0,27.0,29.0,32.0,38.0,27.0,39.0,30.0,39.0,34.0,41.0,28.0,42.0,19.0,30.0,19.0,24.0,35.0,17.0,23.0,17.0,18.0,25.0,23.0,11.0,16.0,16.0,24.0,25.0,12.0,10.0,10.0,17.0,9.0,6.0,8.0,5.0,8.0,4.0,7.0,5.0,4.0,2.0,1.0,,5.0 N85634,8.0,6.0,4.0,12.0,5.0,15.0,9.0,9.0,13.0,12.0,12.0,18.0,13.0,12.0,17.0,11.0,15.0,9.0,10.0,5.0,11.0,5.0,11.0,5.0,7.0,12.0,12.0,9.0,12.0,10.0,13.0,5.0,9.0,21.0,19.0,13.0,15.0,13.0,10.0,15.0,12.0,14.0,12.0,11.0,9.0,12.0,10.0,6.0,6.0,6.0,6.0,10.0,6.0,10.0,10.0,8.0,14.0,9.0,7.0,11.0,4.0,10.0,13.0,10.0,7.0,18.0,8.0,5.0,11.0,13.0,4.0,10.0,5.0,6.0,9.0,7.0,5.0,6.0,11.0,8.0,5.0,7.0,5.0,10.0,2.0,7.0,9.0,6.0,8.0,4.0,5.0,4.0,1.0,,3.0,3.0 N85640,9.0,14.0,14.0,15.0,19.0,26.0,17.0,16.0,15.0,32.0,13.0,14.0,28.0,17.0,25.0,23.0,28.0,15.0,19.0,20.0,17.0,20.0,17.0,20.0,16.0,21.0,15.0,22.0,14.0,27.0,24.0,33.0,24.0,18.0,25.0,30.0,28.0,19.0,26.0,18.0,29.0,27.0,23.0,16.0,23.0,19.0,15.0,16.0,11.0,27.0,21.0,10.0,13.0,24.0,20.0,22.0,14.0,12.0,20.0,7.0,18.0,15.0,16.0,13.0,13.0,19.0,10.0,14.0,9.0,11.0,5.0,11.0,8.0,9.0,10.0,3.0,4.0,4.0,9.0,6.0,1.0,5.0,3.0,6.0,1.0,4.0,2.0,3.0,1.0,1.0,1.0,1.0,1.0,,,1.0 N85643,22.0,24.0,11.0,22.0,11.0,21.0,25.0,21.0,22.0,22.0,23.0,24.0,24.0,23.0,36.0,27.0,26.0,29.0,27.0,23.0,19.0,23.0,21.0,22.0,22.0,33.0,20.0,26.0,32.0,15.0,23.0,27.0,36.0,19.0,27.0,33.0,22.0,26.0,28.0,28.0,31.0,30.0,36.0,29.0,31.0,22.0,27.0,26.0,27.0,29.0,21.0,30.0,30.0,30.0,25.0,24.0,19.0,21.0,20.0,30.0,30.0,30.0,24.0,29.0,22.0,17.0,25.0,17.0,21.0,20.0,18.0,15.0,22.0,16.0,23.0,15.0,24.0,18.0,18.0,7.0,13.0,16.0,10.0,8.0,10.0,11.0,8.0,9.0,6.0,1.0,7.0,2.0,,3.0,1.0,4.0 N85648,12.0,15.0,19.0,20.0,26.0,20.0,22.0,35.0,17.0,19.0,33.0,28.0,18.0,17.0,29.0,21.0,31.0,22.0,14.0,28.0,16.0,29.0,17.0,25.0,24.0,16.0,20.0,21.0,20.0,24.0,23.0,31.0,42.0,28.0,22.0,24.0,29.0,34.0,43.0,35.0,28.0,25.0,26.0,29.0,26.0,27.0,26.0,23.0,26.0,21.0,22.0,24.0,27.0,30.0,35.0,35.0,28.0,28.0,20.0,39.0,24.0,34.0,26.0,33.0,28.0,28.0,32.0,28.0,25.0,27.0,22.0,17.0,18.0,16.0,22.0,18.0,18.0,19.0,11.0,10.0,12.0,8.0,8.0,11.0,6.0,7.0,3.0,5.0,2.0,2.0,1.0,2.0,2.0,4.0,,1.0 Y00446,11.0,15.0,10.0,14.0,14.0,6.0,12.0,16.0,22.0,13.0,12.0,13.0,12.0,22.0,15.0,20.0,15.0,14.0,16.0,21.0,18.0,13.0,22.0,20.0,13.0,9.0,14.0,10.0,15.0,16.0,18.0,17.0,16.0,23.0,14.0,17.0,22.0,18.0,20.0,12.0,17.0,17.0,15.0,9.0,16.0,24.0,19.0,22.0,18.0,23.0,18.0,20.0,28.0,17.0,23.0,19.0,33.0,22.0,27.0,27.0,19.0,28.0,39.0,24.0,30.0,17.0,25.0,19.0,20.0,24.0,10.0,14.0,29.0,16.0,10.0,12.0,18.0,14.0,13.0,17.0,12.0,16.0,10.0,9.0,9.0,7.0,8.0,16.0,9.0,8.0,9.0,9.0,4.0,1.0,3.0,6.0 Y00475,18.0,15.0,19.0,24.0,25.0,24.0,32.0,31.0,20.0,29.0,30.0,22.0,26.0,29.0,36.0,26.0,33.0,25.0,26.0,19.0,15.0,19.0,26.0,27.0,18.0,18.0,23.0,16.0,27.0,25.0,38.0,25.0,28.0,35.0,42.0,40.0,34.0,41.0,35.0,34.0,40.0,36.0,29.0,31.0,33.0,34.0,45.0,40.0,33.0,31.0,27.0,34.0,40.0,34.0,40.0,36.0,42.0,40.0,40.0,36.0,34.0,36.0,38.0,38.0,36.0,26.0,31.0,41.0,38.0,31.0,30.0,38.0,34.0,38.0,32.0,32.0,52.0,40.0,34.0,25.0,27.0,28.0,32.0,20.0,13.0,17.0,12.0,8.0,8.0,4.0,9.0,6.0,1.0,2.0,3.0,3.0 Y01108,19.0,20.0,20.0,16.0,19.0,19.0,14.0,16.0,16.0,17.0,16.0,21.0,29.0,17.0,21.0,17.0,19.0,27.0,17.0,15.0,12.0,17.0,24.0,16.0,21.0,28.0,31.0,21.0,22.0,33.0,32.0,27.0,24.0,24.0,51.0,32.0,40.0,22.0,26.0,35.0,34.0,26.0,32.0,33.0,26.0,21.0,21.0,28.0,29.0,22.0,16.0,19.0,26.0,23.0,34.0,35.0,27.0,40.0,25.0,22.0,27.0,39.0,27.0,29.0,25.0,17.0,13.0,13.0,11.0,12.0,11.0,15.0,16.0,18.0,12.0,14.0,25.0,11.0,10.0,8.0,7.0,8.0,9.0,10.0,8.0,6.0,3.0,4.0,3.0,4.0,2.0,1.0,1.0,1.0,2.0,3.0 Y02045,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,,,,,,,,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, Y02510,48.0,43.0,39.0,43.0,53.0,45.0,39.0,40.0,37.0,39.0,39.0,35.0,51.0,43.0,40.0,37.0,38.0,33.0,39.0,35.0,35.0,21.0,35.0,34.0,49.0,45.0,38.0,50.0,58.0,60.0,67.0,54.0,77.0,62.0,68.0,69.0,82.0,54.0,62.0,54.0,58.0,57.0,54.0,53.0,63.0,45.0,46.0,28.0,39.0,44.0,46.0,28.0,40.0,41.0,52.0,45.0,44.0,46.0,36.0,33.0,37.0,49.0,37.0,26.0,38.0,30.0,26.0,21.0,29.0,20.0,31.0,34.0,22.0,28.0,20.0,17.0,20.0,23.0,32.0,21.0,21.0,16.0,19.0,13.0,18.0,13.0,10.0,12.0,12.0,10.0,7.0,7.0,3.0,4.0,1.0,10.0 Y04664,15.0,12.0,15.0,24.0,19.0,18.0,20.0,17.0,18.0,18.0,23.0,18.0,26.0,23.0,31.0,28.0,18.0,29.0,21.0,21.0,15.0,12.0,16.0,21.0,26.0,15.0,10.0,15.0,13.0,17.0,18.0,18.0,18.0,21.0,25.0,27.0,28.0,20.0,27.0,31.0,24.0,22.0,32.0,24.0,16.0,30.0,29.0,28.0,20.0,31.0,37.0,21.0,32.0,31.0,39.0,37.0,43.0,25.0,39.0,36.0,36.0,51.0,41.0,35.0,38.0,44.0,31.0,34.0,28.0,41.0,36.0,21.0,31.0,33.0,20.0,26.0,29.0,34.0,40.0,21.0,28.0,25.0,15.0,15.0,18.0,18.0,15.0,19.0,9.0,12.0,4.0,4.0,4.0,4.0,5.0,3.0 Y04925,40.0,45.0,55.0,52.0,54.0,53.0,63.0,46.0,61.0,51.0,64.0,79.0,77.0,69.0,53.0,60.0,63.0,68.0,40.0,50.0,25.0,37.0,38.0,35.0,42.0,42.0,52.0,52.0,64.0,73.0,57.0,68.0,65.0,61.0,55.0,57.0,63.0,67.0,86.0,63.0,78.0,55.0,82.0,80.0,81.0,85.0,82.0,72.0,65.0,74.0,63.0,66.0,53.0,48.0,67.0,48.0,41.0,52.0,45.0,47.0,48.0,35.0,47.0,29.0,35.0,23.0,32.0,26.0,24.0,11.0,25.0,22.0,18.0,19.0,13.0,24.0,12.0,16.0,17.0,13.0,15.0,9.0,11.0,14.0,8.0,14.0,8.0,3.0,6.0,8.0,3.0,3.0,1.0,3.0,3.0,7.0 Y05750,,,,,,,,,,,,,,,,,,,,1.0,1.0,1.0,1.0,,,2.0,1.0,1.0,1.0,1.0,1.0,4.0,3.0,,2.0,1.0,1.0,1.0,,,,1.0,1.0,,,,,1.0,,,,,,,,,1.0,,1.0,1.0,,1.0,,,,,,,1.0,,1.0,,,,,,,,,,,,,,,,,,,,,,,,, Y06620,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,,,,,,,,,,,1.0,,,,,,,,,,,,,1.0,,,,,,,,,,,, Row Labels,Integrated Care Board Name QE1,NHS LANCASHIRE AND SOUTH CUMBRIA INTEGRATED CARE BOARD QF7,NHS SOUTH YORKSHIRE INTEGRATED CARE BOARD QGH,NHS HEREFORDSHIRE AND WORCESTERSHIRE INTEGRATED CARE BOARD QH8,NHS MID AND SOUTH ESSEX INTEGRATED CARE BOARD QHG,"NHS BEDFORDSHIRE, LUTON AND MILTON KEYNES INTEGRATED CARE BOARD" QHL,NHS BIRMINGHAM AND SOLIHULL INTEGRATED CARE BOARD QHM,NHS NORTH EAST AND NORTH CUMBRIA INTEGRATED CARE BOARD QJ2,NHS DERBY AND DERBYSHIRE INTEGRATED CARE BOARD QJG,NHS SUFFOLK AND NORTH EAST ESSEX INTEGRATED CARE BOARD QJK,NHS DEVON INTEGRATED CARE BOARD QJM,NHS LINCOLNSHIRE INTEGRATED CARE BOARD QK1,"NHS LEICESTER, LEICESTERSHIRE AND RUTLAND INTEGRATED CARE BOARD" QKK,NHS SOUTH EAST LONDON INTEGRATED CARE BOARD QKS,NHS KENT AND MEDWAY INTEGRATED CARE BOARD QM7,NHS HERTFORDSHIRE AND WEST ESSEX INTEGRATED CARE BOARD QMF,NHS NORTH EAST LONDON INTEGRATED CARE BOARD QMJ,NHS NORTH CENTRAL LONDON INTEGRATED CARE BOARD QMM,NHS NORFOLK AND WAVENEY INTEGRATED CARE BOARD QNC,NHS STAFFORDSHIRE AND STOKE-ON-TRENT INTEGRATED CARE BOARD QNQ,NHS FRIMLEY INTEGRATED CARE BOARD QNX,NHS SUSSEX INTEGRATED CARE BOARD QOC,"NHS SHROPSHIRE, TELFORD AND WREKIN INTEGRATED CARE BOARD" QOP,NHS GREATER MANCHESTER INTEGRATED CARE BOARD QOQ,NHS HUMBER AND NORTH YORKSHIRE INTEGRATED CARE BOARD QOX,"NHS BATH AND NORTH EAST SOMERSET, SWINDON AND WILTSHIRE INTEGRATED CARE BOARD" QPM,NHS NORTHAMPTONSHIRE INTEGRATED CARE BOARD QR1,NHS GLOUCESTERSHIRE INTEGRATED CARE BOARD QRL,NHS HAMPSHIRE AND ISLE OF WIGHT INTEGRATED CARE BOARD QRV,NHS NORTH WEST LONDON INTEGRATED CARE BOARD QSL,NHS SOMERSET INTEGRATED CARE BOARD QT1,NHS NOTTINGHAM AND NOTTINGHAMSHIRE INTEGRATED CARE BOARD QT6,NHS CORNWALL AND THE ISLES OF SCILLY INTEGRATED CARE BOARD QU9,"NHS BUCKINGHAMSHIRE, OXFORDSHIRE AND BERKSHIRE WEST INTEGRATED CARE BOARD" QUA,NHS BLACK COUNTRY INTEGRATED CARE BOARD QUE,NHS CAMBRIDGESHIRE AND PETERBOROUGH INTEGRATED CARE BOARD QUY,"NHS BRISTOL, NORTH SOMERSET AND SOUTH GLOUCESTERSHIRE INTEGRATED CARE BOARD" QVV,NHS DORSET INTEGRATED CARE BOARD QWE,NHS SOUTH WEST LONDON INTEGRATED CARE BOARD QWO,NHS WEST YORKSHIRE INTEGRATED CARE BOARD QWU,NHS COVENTRY AND WARWICKSHIRE INTEGRATED CARE BOARD QXU,NHS SURREY HEARTLANDS INTEGRATED CARE BOARD QYG,NHS CHESHIRE AND MERSEYSIDE INTEGRATED CARE BOARD ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence NHS Lancashire and South Cumbria ICB,P81005,Little Harwood Health Centre,13744.59389,7.8208,65.4971,69.6721,3.2728,53.4574,69.1542,3.8073,88.0597,3.6067,1.9653,0.6496,1.9107,30.9048,11.4524,15.7717,70.4486,86.8159,0.8881,1.3732,17.0674,0.8293,88.4952,87.055,84.878,92.1951,14.1695,2.0558 NHS Lancashire and South Cumbria ICB,P81022,Witton Medical Centre,12871.13876,7.2693,73.7609,71.7213,3.3694,65.5385,70.2564,3.6564,87.6191,4.3999,2.1383,0.9534,1.1524,32.0347,8.0678,14.496,62.1297,72.5552,0.4073,1.1571,10.8718,0.4192,86.2961,82.3293,84.9206,88.8889,16.9632,2.3975 NHS Lancashire and South Cumbria ICB,P81051,Darwen Healthcare,16424.15408,9.7336,71.6776,74.0625,3.9855,77.5,78.125,3.8004,93.75,4.4916,2.3415,0.8469,8.7003,31.3086,7.1248,19.2086,66.3729,90.2326,0.4982,1.1601,18.046,4.4175,90.622,80.0643,83.7838,88.5135,15.4302,2.1351 NHS Lancashire and South Cumbria ICB,P81058,St Georges Surgery,11259.92568,7.9557,65.0177,70.2564,3.3203,63.6095,73.1707,3.7316,87.8261,2.2248,2.2169,0.4915,2.0154,32.6588,8.7895,12.6793,67.3004,81.6038,0.5317,1.1034,15.6262,0.0864,86.5857,85.5721,78.2609,89.1304,14.3253,2.0965 NHS Lancashire and South Cumbria ICB,P81061,Redlam Surgery,6037.953933,7.2122,67.7215,69.6429,3.836,65.2893,77.3196,4.321,90.625,4.5222,2.7998,1.0803,1.0498,34.4287,10.5249,18.4083,71.9626,84.9741,0.9921,2.1164,17.7927,0.4458,88.1267,87.8049,88.7324,92.9577,16.9219,2.6455 NHS Lancashire and South Cumbria ICB,P81125,Oakenhurst Medical Practice,11431.2563,6.8141,68,70.1923,4.0695,60.7029,70.8333,3.6824,72.1154,4.7383,1.6675,0.7047,1.9488,29.5066,8.7458,15.5831,68.7299,81.5951,0.6849,1.1315,13.8963,0.2055,86.1839,82.2785,88.189,93.7008,14.6785,2.1241 NHS Lancashire and South Cumbria ICB,P81140,Darwen Healthlink,18419.83111,7.6493,69.4656,74.3733,4,70.0214,72.4739,3.8129,82.3077,4.15,2.329,0.6839,4.0298,32.0672,7.8661,18.8129,61.4274,78.6585,0.4323,1.1484,11.2081,0.3772,86.8065,82.0513,70.8108,86.4865,15.0936,1.8581 NHS Lancashire and South Cumbria ICB,P81155,Brownhill Surgery,5374.489246,6.6755,73.0769,77.1654,3.4537,77.2487,88.3495,3.6805,87.6712,4.0762,1.7792,0.9419,0.4927,18.9119,8.7533,17.251,82.963,89.3855,0.3314,0.6105,16.8869,0.2255,91.6831,88.2813,97.2603,97.2603,12.4189,1.7617 NHS Lancashire and South Cumbria ICB,P81167,Stepping Stone Practice,6465.590412,9.793,55.4688,46.3158,1.7757,52.9126,69.0476,3.1928,94.1861,2.6247,2.5269,0.3756,3.4287,42.4423,11.5251,14.6491,74.4624,82.4561,0.6829,1.1439,21.2107,0.7051,90.0579,92.3077,85.7143,92.381,17.1318,1.2805 NHS Lancashire and South Cumbria ICB,P81214,Limefield Surgery,4668.030615,5.3475,68,67.5,2.9207,50,65.625,3.7707,79.6296,2.278,1.177,0.7629,1.2266,28.5062,8.9419,12.2929,59.9548,68.0328,0.5013,1.4167,12.8505,0.2028,88.2353,77.6596,77.7778,80.9524,12.858,1.6565 NHS Lancashire and South Cumbria ICB,P81622,Shifa Surgery,10203.71656,7.0077,50,43.5714,1.0809,55.335,70.3125,2.9264,91.8519,2.7761,0.87,0.3515,1.6656,38.2793,14.4644,10.9939,65.6947,78.8235,0.6503,1.0106,17.8408,0.2387,88.2827,93.4718,87.8661,92.4686,12.1914,1.0546 NHS Lancashire and South Cumbria ICB,P81633,Spring-Fenisco Healthlink,3802.431023,7.4596,69.1729,70.2381,4.5379,79.4643,82.8571,3.7027,94.4444,4.2387,3.118,0.529,5.0865,25.1413,7.7,21.52,67.4566,87.1429,0.4176,1.0301,13.7335,0.5188,91.0734,85.0746,86.9565,93.4783,13.6149,2.1158 NHS Lancashire and South Cumbria ICB,P81683,Olive Medical Centre,6682.768082,6.662,45.0382,47.7778,1.1712,40.3846,63.0435,2.5267,85.8974,1.9985,0.5659,0.3158,2.1836,36.3985,13.3069,9.1854,73.8583,76.1905,0.4738,0.8027,14.7668,0,86.8959,92.0213,83.7838,86.4865,8.8174,1.0528 NHS Lancashire and South Cumbria ICB,P81694,Family Practice,5661.618852,5.511,55.8442,56.6667,1.4218,51.269,65.5738,2.1801,81.25,1.3138,1.4408,0.2085,2.5518,45.6151,7.1713,7.2038,75.6173,89.2857,0.3412,1.2701,8.2617,0.1852,80.7288,85.9649,87.7193,91.2281,21.3718,0.891 NHS Lancashire and South Cumbria ICB,P81704,Blakewater Healthcare,11593.95608,6.9269,64.7482,55.7789,2.694,56.1856,68.6047,3.3921,97.1015,2.2082,1.9332,0.5012,3.2293,33.4785,9.979,12.7271,60.9215,78.4,0.7339,1.4141,14.8522,0.4663,86.3143,90.2954,82.1656,91.7197,15.0836,1.7005 NHS Lancashire and South Cumbria ICB,P81707,William Hopwood Street Surgery,5388.955422,7.1272,51,39.759,1.1575,54.9738,76.3889,2.7191,85.9375,2.7383,1.6351,0.4593,1.4452,42.9794,13.5836,14.2752,75.838,90.1639,0.5695,1.1207,20.6643,0.1546,90.573,88.3562,91.6667,97.2222,14.0977,1.3963 NHS Lancashire and South Cumbria ICB,P81709,Roman Road Health Centre,6466.333338,9.9722,60.9091,55.7895,2.1948,72.8571,73.0769,2.2674,89.8734,1.6414,2.8115,0.5442,5.303,46.4366,7.2966,10.4662,78.4615,91.2281,0.5805,1.5055,18.4596,0.3693,90.6634,93.8272,90.9091,95.4545,29.8781,1.4874 NHS Lancashire and South Cumbria ICB,P81721,Hollins Grove Surgery,2548.39861,8.58,61.1111,65.3061,2.7845,64.4737,73.913,3.8741,84.375,2.7245,2.5424,0.3632,2.775,35.2204,11.3217,12.7522,71.831,90.625,0.1614,1.251,12.0585,0.2373,88.4,89.3939,87.8049,87.8049,19.7636,1.3721 NHS Lancashire and South Cumbria ICB,P81724,Pringle Street Surgery,2587.818668,8.6445,52.1739,41.9355,1.4673,58.9474,70,2.8593,85.1852,2.9318,1.6178,0.3386,3.8913,41.2005,13.9571,11.8134,72.7586,87.5,1.1663,0.9782,21.9083,0.5146,89.3368,94.2857,88.8889,90.7407,16.4369,1.0911 NHS Lancashire and South Cumbria ICB,P81734,The Cornerstone Practice,22429.79942,8.8599,60.2649,54.3909,2.5267,54.2614,63.6667,2.8317,84.375,2.5599,2.3996,0.4626,2.7397,42.8958,8.7325,13.9909,57.9573,77.707,0.6863,1.2811,17.2686,1.1238,85.2298,87.3762,80.1619,87.4494,22.9623,1.7895 NHS Lancashire and South Cumbria ICB,P81771,Primrose Bank Medical Centre,10814.35412,7.0004,60.9023,51.4286,2.9515,51.8987,67.8082,3.3761,77.7778,3.6435,1.947,0.4453,2.0436,36.3339,11.0128,16.2283,68.2222,81.106,0.5075,1.4292,14.52,1.7505,87.4368,87.8151,68.4211,89.4737,14.3918,1.3774 NHS Lancashire and South Cumbria ICB,Y02657,Bentham Road Health Centre,9418.735922,7.5452,65.7895,58.9041,2.8087,60.473,64.7541,2.6865,75.4546,2.3103,2.6621,0.6228,3.8786,41.3674,7.0861,14.2142,54.7739,76.9231,0.7083,1.2944,15.7504,0.5582,86.5789,84.375,83.3333,87.1795,26.6556,1.6608 NHS Lancashire and South Cumbria ICB,P81016,Waterloo Medical Centre,17472.75647,7.4448,59.1512,58.5551,3.046,61.2403,66.3507,3.8775,85.9375,4.2415,3.7952,0.6504,1.5566,52.8437,9.7,16.0616,62.7451,80.2239,0.601,2.0334,16.1095,1.426,87.6905,86.0119,79.5455,86.3636,29.9058,2.4039 NHS Lancashire and South Cumbria ICB,P81042,Adelaide Street Surgery,24011.72445,7.4207,58.1053,50.4854,3.3501,53.5565,59.6,4.2466,86.6279,4.4422,4.0372,0.687,3.9374,60.0073,9.3021,16.2795,61.0396,73.6573,0.5562,1.7667,14.9588,2.5802,86.57,86.0892,71.9048,82.381,29.3949,2.2705 NHS Lancashire and South Cumbria ICB,P81043,South King Street Medical Centre,10860.16177,8.1776,57.9186,53.9063,2.7626,45,60.9091,3.7037,80.3922,4.1066,3.5975,0.425,1.8434,61.1201,8.7514,14.9211,64.988,83.2215,0.5465,1.6697,15.9153,0.3094,85.8545,88.7417,81.7204,89.2473,29.6187,2.1858 NHS Lancashire and South Cumbria ICB,P81054,Marton Medical Practice,12303.03354,9.2261,67.4576,65.8537,3.894,69.4704,75,3.7025,87.8049,4.2997,3.1067,0.7767,2.5191,39.5088,7.5971,18.0551,50.7484,68.7075,0.3085,1.447,13.5452,1.5851,87.8026,82.9596,74.5455,81.8182,19.0336,1.8193 NHS Lancashire and South Cumbria ICB,P81063,St Pauls Medical Centre,18549.49916,8.0359,59.2308,51.6667,3.6567,54.6269,65.8291,3.8712,91.4286,5.541,3.6824,1.0558,3.4147,56.9447,9.6525,18.867,64.2702,82.3204,0.4635,2.0429,17.6495,0.5448,87.5319,85.9935,76.3006,89.5954,28.3284,2.3519 NHS Lancashire and South Cumbria ICB,P81066,Layton Medical Centre,11187.98209,8.0116,64.4,61.326,3.254,62.1324,66.8966,3.6608,88.421,5.0933,4.3141,0.3821,4.5081,46.1807,9.6673,14.8157,61.5231,74.0196,0.4561,1.5407,16.0234,1.3514,83.5155,85.8639,80.7018,88.5965,27.5237,1.9721 NHS Lancashire and South Cumbria ICB,P81072,Glenroyd Medical Centre,19588.95354,8.3431,68.6833,68.9295,5.2841,66.586,67.7419,4.5232,91.2281,7.0682,3.9927,1.075,3.0449,36.1292,9.0871,20.5919,71.0132,84.2647,0.5864,1.7172,19.4754,2.6541,90.6459,82.5243,80.8081,87.8788,17.267,2.6595 NHS Lancashire and South Cumbria ICB,P81073,Cleveleys Group Practice,17804.10333,8.586,72.4382,72.1448,6.0223,73.6527,74.2537,5.5649,87.3418,9.0335,4.1775,1.86,2.6081,24.5545,10.7725,24.6989,71.9592,83.5443,0.5412,1.456,18.5994,2.8839,89.844,83.7449,88.7324,92.0188,14.9571,3.6134 NHS Lancashire and South Cumbria ICB,P81074,Highfield Surgery,17983.36709,7.4652,70.8571,73.2044,4.9967,70.5,72.1014,4.6954,94.7826,5.7199,3.5418,0.992,1.43,37.2738,9.5443,19.3622,71.7579,89.1501,0.5658,1.0655,16.1649,1.9994,88.1778,85.5643,81.407,90.4523,17.063,2.4175 NHS Lancashire and South Cumbria ICB,P81081,Arnold Medical Centre,7493.427219,8.7579,68,68.7075,4.7953,73.0769,74.7826,4.881,90.3846,5.3406,4.6412,0.9248,3.7006,38.1767,8.3679,20.4316,74.5119,87.8229,0.7022,1.8154,17.5357,2.2459,91.1713,81.25,85.3333,93.3333,19.4755,3.0142 NHS Lancashire and South Cumbria ICB,P81092,The Crescent Surgery,10478.68674,9.0568,75.4054,75.5656,6.7462,73.8636,76.25,5.9159,83.6735,7.8062,3.2304,1.2325,2.6768,24.6807,10.5014,25.96,80.6645,91.3307,0.493,1.2974,19.7996,4.0587,92.1265,85.6187,93.7984,93.7984,13.2989,3.6975 NHS Lancashire and South Cumbria ICB,P81115,Bloomfield Medical Centre,24707.40107,8.1776,58.9391,58.6006,3.366,55.303,60.0719,3.7898,77.0833,4.3773,4.4497,0.4783,1.7369,57.7922,9.4585,15.0926,68.3326,79.5455,0.6417,2.0099,16.9873,1.4396,87.2117,85.0123,78.0269,85.2018,31.6402,2.0947 NHS Lancashire and South Cumbria ICB,P81159,Stonyhill Medical Practice,17427.47478,8.5321,67.4274,69.0096,5.444,74.5902,75.2101,4.8177,93.617,5.1017,3.6936,1.1723,2.8751,41.128,9.5512,21.5754,77.0909,93.4292,0.7066,1.2044,19.4385,2.5433,90.1315,86.7209,90.3743,96.7914,17.0032,2.6498 NHS Lancashire and South Cumbria ICB,P81172,Newton Drive Health Centre,15263.13226,7.5165,71.8391,68.5185,3.7834,60.3448,69.1964,2.9344,88.75,4.4161,2.4069,0.5852,2.5506,38.5882,7.6756,17.1695,65.5329,75.2351,0.2967,1.2117,14.0072,1.7853,88.6055,85.5263,84.5588,91.9118,19.7532,2.1349 NHS Lancashire and South Cumbria ICB,P81681,North Shore Surgery,17441.0991,6.9515,67.3307,64.7239,5.3215,73.6967,73.8462,4.583,95.6522,6.7338,3.7504,1.2236,2.5831,33.5165,9.6729,20.9383,68.509,86.3799,0.5865,1.6507,17.0838,1.7512,89.8408,84.1379,80.3922,88.2353,18.713,2.6426 NHS Lancashire and South Cumbria ICB,P81714,Abbey Dale Medical Centre,7804.446549,8.6225,68.6567,63.8889,4.1897,68.3333,71.3043,4.9271,88.4615,7.5632,3.821,1.0893,2.5073,36.477,8.9351,17.4795,69.2579,84.5361,0.4357,1.6759,19.3949,3.1287,90.1616,84.8168,92.5926,93.8272,21.1449,2.7149 NHS Lancashire and South Cumbria ICB,P81010,Withnell Health Centre,4866.272921,8.6842,79.2035,74.5455,5.3144,80.7947,77.1429,3.2066,93.0233,4.9605,1.4952,0.4864,1.8437,9.0712,5.1609,16.5015,71.3137,91.1765,0.4324,0.4864,12.5988,0.0739,90.7799,79.2208,81.8182,95.4545,8.7068,1.8195 NHS Lancashire and South Cumbria ICB,P81033,Coppull Medical Practice,9014.996357,8.6773,71.2375,68.8776,4.7661,78.2979,79.3333,4.4525,90.2778,8.9341,3.0352,1.3671,1.4942,19.0199,8.5458,19.8545,74.2138,89.0675,0.7902,0.8027,17.9298,1.3763,89.7342,85.6522,89.5238,89.5238,15.7506,2.5837 NHS Lancashire and South Cumbria ICB,P81038,The Chorley Surgery,10748.92169,7.7614,70.9265,74.2991,3.9027,68.3908,74.8538,3.8127,86.4583,7.6223,2.2316,0.7205,3.0843,22.3576,7.8898,18.7631,69.0231,83.0721,0.7405,1.2509,17.5705,1.0223,90.1599,81.25,68.1034,90.5172,15.2291,2.1215 NHS Lancashire and South Cumbria ICB,P81044,Library House Surgery,19461.09578,8.2266,70.8333,73.0667,4.8955,70.3633,71.0098,4.3864,93.7107,7.2379,3.09,1.1484,2.5204,21.7014,8.0067,17.895,69.9156,81.6233,0.6038,1.178,13.8364,0.6682,86.9398,84.8889,81.5534,88.3495,16.9113,2.4211 NHS Lancashire and South Cumbria ICB,P81057,Worden Medical Centre,15143.50707,7.1966,71.7573,78.2991,4.9815,74.2718,76.2774,3.7615,86.9565,5.2566,1.8735,0.639,2.7534,21.3191,7.6571,16.5711,50.1397,73.0223,0.5809,0.9585,13.9371,0.335,84.773,81.6994,51.9231,89.1026,15.282,2.0914 NHS Lancashire and South Cumbria ICB,P81062,Regent House Surgery,8797.175596,7.2498,73.3813,76.699,4.6007,71.9149,73.75,4.3524,93.75,7.1087,2.601,0.9803,2.5024,20.6575,7.6826,19.4877,65.2429,78.7879,1.1371,1.2547,15.5722,0.5528,87.2275,87.3171,70.6522,88.0435,13.5164,2.4572 NHS Lancashire and South Cumbria ICB,P81076,Sandy Lane Surgery,12130.39901,7.0959,75.7282,80.3774,4.6022,78.6585,75.8794,4.1705,90.4255,7.4108,1.9291,0.9278,1.7623,18.5069,8.0633,18.4916,64.631,79.1383,0.5695,0.8268,14.9006,1.1829,89.5699,83.0325,83.2061,93.8931,13.2241,2.2139 NHS Lancashire and South Cumbria ICB,P81082,The Ryan Medical Centre,12091.28819,6.585,74.9409,77.0073,5.1046,77.6316,75.6757,4.1554,93.0233,7.1061,2.3247,0.9492,0.8766,16.7,8.0513,19.5467,71.6545,84.492,0.5424,0.9299,19.2613,0.373,90.6629,87.1595,79.6748,95.122,14.6093,2.7702 NHS Lancashire and South Cumbria ICB,P81083,Roslea Surgery,9533.325773,6.8207,76.7213,65.3846,4.565,72.0307,72,3.9478,87.5,7.1804,1.8633,1.1995,1.6778,16.4642,6.6629,19.2267,65.587,75.4808,0.9084,1.2927,14.7163,0.9691,86.3417,76.8362,51.6854,86.5169,12.8817,2.1428 NHS Lancashire and South Cumbria ICB,P81117,Central Park Surgery,5581.580594,7.5456,72.1519,74.7664,3.2422,76.3006,74.4444,3.7109,96.7213,5.7086,2.9688,0.5469,2.482,20.1472,7.7149,15.957,70.6922,88.4058,0.4883,1.0938,13.7503,0.1556,92.0267,75.8929,81.6667,86.6667,15.8107,1.6992 NHS Lancashire and South Cumbria ICB,P81127,The Surgery Chorley,10467.33187,6.8602,71.5232,73.1707,3.4455,72.067,76.5823,3.2944,91.5254,3.9206,1.8336,0.4634,1.6487,21.6773,6.9893,13.7921,61.9217,74.2857,0.7959,1.2392,10.5024,0.2578,84.5874,81.9876,73.7374,79.798,38.8748,1.9242 NHS Lancashire and South Cumbria ICB,P81143,Whittle Surgery,11185.40305,7.4009,76.6265,73.1959,4.7241,78.51,80.2469,3.591,92.4528,5.4683,1.4905,0.6537,2.458,10.8035,6.5805,17.1185,68.0905,83.6022,0.767,0.7496,13.7629,0.1818,90.4076,84.492,82.243,92.5234,8.6924,1.8391 NHS Lancashire and South Cumbria ICB,P81154,Granville House Med Ctre,9146.520345,7.7151,76.087,77.3756,5.2748,80.5556,78.6517,4.574,98.5294,7.0701,2.7542,1.0943,1.9779,13.2929,7.2717,20.2017,61.0706,67.8049,0.2582,0.8607,9.7122,0.1472,87.7871,80.2083,69.7674,79.0698,10.1868,2.4591 NHS Lancashire and South Cumbria ICB,P81171,The Euxton Medical Centre,4539.692338,8.8372,79.4444,80.8333,5.5531,76.5152,78.4314,3.7972,95,8.1198,1.6901,0.5707,2.4009,9.657,6.8031,19.9956,75.5405,85.9649,1.0097,0.9438,14.8908,2.2654,92.6738,74.5614,87.5,91.6667,6.9554,2.1949 NHS Lancashire and South Cumbria ICB,P81180,Clayton Brook Surgery,4453.410174,7.3908,64.486,55.8824,3.1534,61.2069,71.9298,3.9773,91.6667,7.4142,3.2386,2.3011,4.3097,30.263,8.9343,15.7671,67.2304,80.4878,0.7955,1.6193,17.3484,0.0789,89.8854,85.2632,79.1667,81.25,25.0869,2.1023 NHS Lancashire and South Cumbria ICB,P81181,Kingsfold Medical Centre,5492.535691,7.2762,76.3314,68.4211,4.5651,77.439,77.381,3.1936,96.6667,7.6106,2.2727,1.3519,2.8169,17.9715,8.7052,19.0439,73.6375,85.2459,0.6857,1.1168,16.7779,1.2112,90.5183,88.2813,87.0968,93.5484,15.3789,2.547 NHS Lancashire and South Cumbria ICB,P81186,Moss Side Medical Centre,5283.529416,8.588,73.2558,77.9661,4.443,74.1497,72.043,3.9587,89.5833,6.2369,2.4637,2.0215,4.5073,20.6703,9.0461,17.8353,58.6552,79.0541,1.095,1.116,12.2904,0.4585,90.158,80,72.5806,87.0968,17.3913,2.2952 NHS Lancashire and South Cumbria ICB,P81655,The Village Surgeries Croston&Eccleston,10079.52891,7.5528,76.7624,74.4444,5.1015,80.4965,78.6957,3.6496,94.5455,7.136,1.2852,0.7456,1.7146,7.8605,6.1183,17.2471,62.8777,76.9022,0.4121,0.569,12.9437,0.2067,89.7248,78.7234,76.087,89.1304,7.8499,2.3448 NHS Lancashire and South Cumbria ICB,P81687,New Longton Surgery,2364.327756,8.8742,84.375,82.2581,6.5828,82,85.1064,4.6467,100,9.954,2.759,1.7909,1.8412,7.0348,7.9954,21.5392,80.8642,87.6033,0.2904,1.0649,14.9022,4.1704,95.3226,74.1936,91.3043,100,6.5003,3.6302 NHS Lancashire and South Cumbria ICB,P81692,Beeches Medical Centre,2192.064708,7.3309,77.0115,72.2222,5.5882,75,76.7442,3.5294,100,10.0811,1.8628,0.4902,1.3326,8.7228,7.0568,22.2549,78.1609,87.7359,0.3922,0.4412,11.7034,0.188,90.9949,87.7193,72.7273,95.4545,10.3255,2.0588 NHS Lancashire and South Cumbria ICB,P81701,Dr Dawoud's Surgery,3521.183955,8.741,74.1379,71.7949,3.5934,77.907,77.4194,3.7988,77.2727,6.7868,2.6694,1.3689,2.4717,22.8445,8.2989,18.2752,82.0513,93.3333,1.3689,2.4298,16.8412,0.3937,90.8014,85.5263,70,95,15.5054,1.8823 NHS Lancashire and South Cumbria ICB,P81740,Adlington Medical Centre,10645.39929,6.7766,69.0104,68.0769,4.0662,72.327,70.6977,4.0189,94.382,6.4007,1.9102,0.5579,2.3887,14.968,7.2393,16.6903,63.9232,84.0391,0.7092,1.2199,16.4425,0.3124,87.1124,83.1418,84.7458,93.2203,17.2361,2.2128 NHS Lancashire and South Cumbria ICB,P81741,Station Surgery,2353.633166,6.1419,66.1765,72.3404,4.0359,66.2791,69.7674,3.1798,71.4286,4.5431,2.6906,0.3261,1.6188,20.1629,6.1665,14.7982,55.0489,71.4286,0.693,1.1822,9.295,0,87.4239,76.7442,72.7273,72.7273,22.6236,1.4268 NHS Lancashire and South Cumbria ICB,Y00347,Dr R Baghdjian Surgery,5978.886005,6.456,74.5763,71.2,3.4647,77.7778,80.3922,3.5747,94.8276,7.3411,2.5298,0.605,1.3306,22.0405,7.8675,16.9386,87.5513,92.7461,0.5683,0.9899,12.847,0.4025,92.2774,87.8788,90.625,95.3125,16.4787,2.0348 NHS Lancashire and South Cumbria ICB,Y02466,Buckshaw Village Health Centre,9015.120776,6.4397,71.0983,66.6667,2.3366,78.8603,77.8523,1.3834,93.0556,2.9373,0.776,0.7929,1.9898,13.2,4.6745,8.6799,58.4802,82.6446,0.523,0.5567,16.4515,0.1564,89.572,76.7857,86.3636,95.4545,9.3765,0.9448 NHS Lancashire and South Cumbria ICB,P81003,St James' Medical Centre,10443.88892,7.6522,,,5.4537,,,4.1797,,5.4072,2.2128,0.9611,1.3617,,7.8968,19.9151,63.3713,81.6489,,0.9164,,0.9636,86.9796,82.0755,,,10.3671,2.7492 NHS Lancashire and South Cumbria ICB,P81008,Yorkshire Street Medical Centre,8806.923057,8.6251,,,4.6954,,,3.787,,4.6162,3.27,0.6987,1.6598,,8.6198,16.5316,76.501,92.1659,,1.0621,,1.7178,92.5342,78.9474,,,21.1365,1.9145 NHS Lancashire and South Cumbria ICB,P81017,Whalley Medical Centre,13851.37175,7.1993,,,4.6507,,,3.1233,,5.6203,1.5137,0.8014,1.8068,,5.8828,18.0548,75.2988,86.9427,,0.9726,,1.9472,88.5528,83.27,,,7.3036,2.0411 NHS Lancashire and South Cumbria ICB,P81020,Burnley Group Practice,28917.9796,7.0867,,,3.8587,,,3.5534,,3.1219,3.0039,0.6553,3.0596,,8.1445,14.409,52.6823,70.4114,,1.156,,0.9051,80.7917,86.7031,62.7178,,21.0075,2.1003 NHS Lancashire and South Cumbria ICB,P81025,The Richmond Hill Practice,14694.67672,8.3787,,,3.9348,,,4.07,,3.356,3.1876,0.8824,2.6147,,8.5161,14.6264,69.3049,81.9121,,1.407,,0.9737,85.4955,82.8283,,,21.4765,2.0668 NHS Lancashire and South Cumbria ICB,P81027,Irwell Medical Practice,16983.13682,9.0476,,,3.6135,,,3.5004,,4.5934,3.2541,0.8718,1.9967,,8.3326,19.2054,65.0768,85.9223,,0.9982,,0.8621,90.6907,85.3026,84,,19.6659,2.2959 NHS Lancashire and South Cumbria ICB,P81032,Reedyford Hlth Care Group,15676.72063,8.1836,,,3.4156,,,3.6149,,3.5036,1.8786,1.2453,2.8177,,8.7519,15.0359,68.8634,85.6209,,1.0532,,0.7378,91.1541,80.0665,87.1658,,17.9021,2.334 NHS Lancashire and South Cumbria ICB,P81035,Colne Road Surgery,8272.47812,7.2037,,,1.859,,,2.67,,3.8428,2.2458,0.4117,2.3022,,11.4233,12.4142,58.3144,77.7778,,0.9358,,0.5867,84.6721,85.4749,76.5152,,17.7645,1.2976 NHS Lancashire and South Cumbria ICB,P81036,Peel House Medical Practice,21664.30853,7.8931,,,4.3131,,,5.0193,,5.078,2.603,0.9046,2.597,,9.0174,18.472,55.8881,76.3578,,1.3365,,1.3613,87.3048,84.0085,69.0265,,17.6801,2.3929 NHS Lancashire and South Cumbria ICB,P81047,Parkside Surgery,18720.85774,7.1721,,,3.6622,,,3.7365,,3.4152,2.7203,1.103,1.4113,,7.6267,17.0467,73.0237,86.7188,,1.165,,0.5751,87.8226,85.2459,84.9741,,18.5514,2.2494 NHS Lancashire and South Cumbria ICB,P81053,Briercliffe Surgery,8953.748547,7.4752,,,4.0904,,,3.5377,,2.1211,2.0145,0.6142,2.1672,,7.7867,15.379,65.6702,78.1395,,0.7124,,0.3031,89.6635,86.8966,86.0215,,15.003,2.0513 NHS Lancashire and South Cumbria ICB,P81065,The Pendle Medical Partnership,16413.90741,7.3179,,,4.2186,,,3.8587,,4.8912,2.6258,0.7797,1.5446,,7.4314,17.7407,62.1974,77.4319,,1.1196,,0.5695,84.5682,75.5486,,,17.0243,2.2193 NHS Lancashire and South Cumbria ICB,P81069,Pendleside Medical Pract,11733.81755,7.8534,,,4.866,,,3.5342,,5.1423,1.5793,0.7854,1.3909,,6.5744,17.7736,68.0513,85.3933,,0.8964,,1.4925,89.958,78.5388,80,,10.6669,2.4415 NHS Lancashire and South Cumbria ICB,P81070,Pendle View Medical Ctre,8955.889802,8.6234,,,3.7418,,,4.225,,4.1269,2.1435,0.9169,1.5375,,11.0651,16.0079,70.7392,88.9937,,1.1647,,0.2966,90.1461,83.2461,86.2595,,14.9795,2.2426 NHS Lancashire and South Cumbria ICB,P81078,Barnoldswick Med Ctr,12084.20235,8.32,,,4.6713,,,4.0926,,4.4606,2.9017,0.629,1.8983,,7.1041,17.3432,54.8949,73.4491,,0.8386,,0.5936,83.339,77.9528,75.5906,,17.0822,2.583 NHS Lancashire and South Cumbria ICB,P81088,Whitworth Medical Centre,7724.941337,8.7218,,,4.6944,,,3.8576,,4.9796,2.8507,0.6666,2.9166,,8.0532,17.0898,55.9063,77.13,,0.8368,,0.4938,84.586,86.3636,,,17.8223,1.9572 NHS Lancashire and South Cumbria ICB,P81095,Thursby Surgery,9283.872253,8.1423,,,3.6913,,,4.0616,,5.4938,2.3259,1.2034,3.3488,,10.4097,16.2694,70.1101,88,,0.7521,,0.8486,94.4062,86.6953,,,14.3632,2.2333 NHS Lancashire and South Cumbria ICB,P81099,Haslingden Healthcare Ltd,11720.8737,7.7414,,,4.2722,,,3.7729,,4.1724,2.0252,1.4426,0.8875,,7.6286,15.8221,64.7395,79.6774,,0.9525,,1.2893,87.9254,75.1055,85.4839,,13.8758,2.2563 NHS Lancashire and South Cumbria ICB,P81100,The Castle Medical Group,16710.88933,8.5278,,,4.8227,,,4.1198,,5.0093,2.5578,0.8656,0.757,,7.2405,18.7244,74.9326,88.6329,,0.9697,,1.4879,90.4298,84.3023,,,10.7351,2.2844 NHS Lancashire and South Cumbria ICB,P81118,Ilex View Medical Practice,10309.39789,7.836,,,3.2386,,,3.1862,,3.9256,2.1906,0.9643,2.5578,,8.1438,13.9922,65.1794,85.4167,,1.3521,,1.9645,88.4514,86.2245,80,,15.7421,1.6979 NHS Lancashire and South Cumbria ICB,P81123,Pwe Pendle Valley Mill,13728.84856,7.3844,,,2.4617,,,2.9752,,3.0819,1.986,0.37,2.281,,10.0706,12.2782,52.8938,78.1609,,1.1629,,0.7926,78.1748,90.6137,78.2383,,21.809,1.5857 NHS Lancashire and South Cumbria ICB,P81130,Padiham Group Practice,16472.15703,6.4573,,,4.2956,,,4.0931,,3.5543,3.3049,0.9546,2.252,,7.7911,17.1825,61.3624,78.8732,,0.9907,,0.599,86.462,77.5168,71.0692,,19.5253,2.2708 NHS Lancashire and South Cumbria ICB,P81132,Waterfoot Medical Practice,10465.3217,9.6522,,,3.8618,,,3.2289,,4.4024,3.0573,0.6544,1.921,,7.4803,15.6833,84.0686,92.0168,,1.0406,,0.7788,89.2987,82.8571,,,17.7139,1.9846 NHS Lancashire and South Cumbria ICB,P81137,Burnley Wood Medical Centre,8184.310924,8.0968,,,4.0169,,,3.9717,,4.0754,3.0991,0.7522,1.9608,,9.084,15.5559,73.5871,83.8323,,0.9929,,1.1494,88.9337,90.9639,88.2353,,23.2133,2.2868 NHS Lancashire and South Cumbria ICB,P81147,Blackburn Rd Medical Centre,6261.989665,8.0853,,,3.2385,,,3.5133,,6.2343,2.787,0.9225,2.1368,,10.0592,18.1747,75.6545,87.6543,,1.2365,,1.1364,88.8734,85.4167,85.7143,,26.3623,2.159 NHS Lancashire and South Cumbria ICB,P81160,Oswald Medical Centre,18353.10772,6.4856,,,2.9078,,,3.6521,,4.3338,2.4852,0.8578,1.7319,,9.5374,14.6083,66.7535,83.8791,,1.148,,0.8388,86.5672,84.6939,72.3214,,20.3824,1.9049 NHS Lancashire and South Cumbria ICB,P81165,Ightenhill Medical Centre,3274.536274,7.1199,,,3.8941,,,3.8563,,5.8963,3.7051,0.3781,2.6629,,9.2871,17.656,77.1574,91.7808,,1.5501,,1.0774,88.0811,89.7059,86.1111,,23.6652,2.6843 NHS Lancashire and South Cumbria ICB,P81166,Dr Bello's Surgery,3015.093681,7.9933,,,4.1486,,,4.6227,,4.177,2.7657,1.4619,1.9393,,10.9091,17.1474,62.6039,78.0822,,1.1458,,1.3026,91.4462,74.4444,90.4762,,19.8592,2.3311 NHS Lancashire and South Cumbria ICB,P81170,Nelson Medical Practice,9399.066862,5.3592,,,0.957,,,2.8425,,1.9542,0.7296,0.18,1.5324,,11.9617,9.4656,68.3223,83.871,,0.6348,,0.0483,88.4346,85.0622,86.9318,,14.9354,1.2033 NHS Lancashire and South Cumbria ICB,P81182,Richmond Medical Centre,7348.073994,6.5364,,,1.8272,,,2.576,,3.4228,1.7972,0.629,3.1904,,11.1663,10.6485,64.1196,78.8991,,1.4378,,0.4507,88.193,89.0909,85.9813,,18.2167,1.5276 NHS Lancashire and South Cumbria ICB,P81197,Rosegrove Surgery,5769.950348,8.4513,,,3.9405,,,3.5786,,3.5337,2.875,0.4624,3.1726,,7.7021,17.9735,64.7594,77.6,,1.1259,,1.0112,87.869,87.8261,85.4545,,20.015,2.0306 NHS Lancashire and South Cumbria ICB,P81212,Hazelvalley Family Practice,6314.646251,7.5078,,,3.9427,,,3.772,,4.4773,2.4236,0.7169,3.3036,,8.7896,17.3921,59.2683,79.8995,,0.7681,,2.5561,90.2901,87.3134,80.5195,,18.0074,2.3724 NHS Lancashire and South Cumbria ICB,P81218,The Clayton Medical Ctr.,7621.679774,8.0767,,,3.9097,,,3.7508,,2.8968,2.1774,0.7311,2.0117,,8.1552,14.288,58.728,81.875,,1.2397,,0.1976,83.8276,73.4375,,,18.7559,2.1138 NHS Lancashire and South Cumbria ICB,P81620,Slaidburn Health Centre,1390.673421,7.0504,,,4.6735,,,3.8488,,5.1155,1.4433,0.6186,1.6502,,6.3209,19.7938,67.3729,71.1539,,0.9622,,0.1328,89.5181,93.1035,84.6154,,8.8816,2.268 NHS Lancashire and South Cumbria ICB,P81686,Rossendale Valley Medical Practice,2454.080952,5.9126,,,2.1965,,,2.2764,,1.7755,1.877,0.3994,1.6188,,6.9516,14.976,48.1605,55.2632,,0.639,,0.1166,83.3497,86.6667,69.2308,,15.5611,1.5176 NHS Lancashire and South Cumbria ICB,P81699,Higher Heys Surgery,2474.546574,7.5362,,,5.3235,,,3.7173,,2.8604,2.4323,1.1932,1.8508,,6.6999,14.548,69.3798,81.3559,,0.6425,,1.5103,89.8578,76.3158,95.6522,,19.8149,2.157 NHS Lancashire and South Cumbria ICB,P81711,Dill Hall Surgery,2751.758963,7.4699,,,3.5254,,,3.4496,,5.1123,2.2365,0.3791,3.5356,,7.2873,16.376,52.9255,53.5714,,0.6823,,1.4433,91.7489,92.7273,75,,20.915,1.7058 NHS Lancashire and South Cumbria ICB,P81726,King Street Medical Ctr,1985.884339,9.4203,,,3.9172,,,3.6933,,4.3478,2.0705,0.2238,1.5475,,12.1015,13.3744,70.7692,79.5455,,1.0073,,0.6734,91.9075,87.0968,93.9394,,19.6,1.9026 NHS Lancashire and South Cumbria ICB,P81730,Great Harwood Medical Group,9763.457093,6.9951,,,4.075,,,4.0866,,5.9881,2.5932,0.7988,2.5808,,7.9766,19.1943,54.6137,77.8462,,1.1114,,0.7692,88.3646,85.8491,72.6415,,15.8694,2.3501 NHS Lancashire and South Cumbria ICB,P81731,Dr Jehangir (Sh),2558.0182,5.9919,,,1.7385,,,2.9856,,1.4523,0.7181,0.1134,1.193,,12.8296,11.0733,69.0196,81.579,,0.7937,,0.2751,80.989,92.5373,89.7959,,14.0535,1.3983 NHS Lancashire and South Cumbria ICB,P81732,Harambee Surgery,4513.395936,8.1512,,,4.7886,,,3.5375,,1.9598,2.6532,0.5608,1.4036,,5.9085,14.7325,67.9175,77.3333,,0.7118,,0.4182,92.0589,78.2609,79.5455,,11.1111,1.9845 NHS Lancashire and South Cumbria ICB,P81736,Whitefield Healthcare,3882.340614,9.2435,,,1.7119,,,2.8858,,2.8106,1.9809,0.2201,1.1103,,11.7267,11.5676,73.9558,78.7879,,1.1739,,0.5076,88.4244,88,,,17.41,1.1494 NHS Lancashire and South Cumbria ICB,P81755,The Weavers Practice,10560.79681,7.9793,,,4.3483,,,3.4157,,4.6884,2.4045,0.8989,1.3031,,8.7242,17.3371,66.1225,81.1321,,1.1236,,0.4961,89.6484,81.5166,,,17.8065,2.5393 NHS Lancashire and South Cumbria ICB,P81757,Barrowford Surgery,3303.016,6.2575,,,4.4861,,,3.6343,,1.442,2.0727,0.653,4.5272,,5.2387,17.121,83.2,89.3204,,0.5962,,0.1138,89.1779,94.2308,93.1034,,10.1794,1.7036 NHS Lancashire and South Cumbria ICB,P81780,Riverside Family Practice,5790.086418,8.286,,,1.5661,,,2.7229,,1.6634,1.2992,0.2136,2.1351,,11.1869,8.1331,39.951,59.1837,,1.3704,,0.3591,85.3626,88.4298,87.3563,,22.3477,1.1746 NHS Lancashire and South Cumbria ICB,Y02605,PWE Accrington Victoria,3878.831602,8.8358,,,2.7961,,,2.4123,,3.3639,2.193,0.5757,2.7905,,7.6148,11.8969,54.717,82.5397,,0.8498,,0.6296,85.4002,83.0189,73.6842,,23.6555,1.727 NHS Lancashire and South Cumbria ICB,Y02606,Fairmore Medical Practice,5919.298787,6.4979,,,1.8061,,,2.3854,,1.9891,2.215,0.3067,3.8835,,7.7693,9.2861,58.6,91.1111,,1.0905,,2.0756,85.7059,80.7692,83.871,,26.7265,1.5505 NHS Lancashire and South Cumbria ICB,P81015,Lytham Road Surgery,13427.55984,7.5233,77.9904,79.2857,4.9089,68.4834,81.2207,3.6583,91.6667,7.6199,1.7353,1.7744,2.65,15.3245,7.0297,18.7212,68.4154,84.6154,0.5315,1.0944,11.4347,2.2714,92.8913,83.1615,78.0303,82.5758,10.8127,2.3919 NHS Lancashire and South Cumbria ICB,P81018,St Fillan's Medical Ctre,8491.494124,8.4444,80.3226,73.3032,5.8361,76.1506,74.5946,3.6446,92.9578,6.191,1.7389,1.0005,1.7439,11.116,5.793,16.4245,62.7794,74,0.2739,0.798,11.321,2.1656,85.1711,85.5263,61.6438,87.6712,6.3635,2.7275 NHS Lancashire and South Cumbria ICB,P81040,Longton Health Centre,11440.60767,8.0907,81.5851,80.6338,6.6337,81.9231,81.9005,4.3528,96.8254,7.8721,1.9388,1.0359,2.0282,7.4408,7.1057,21.2602,53.6258,75.3356,0.1806,0.7318,13.2692,0.4247,88.6569,80.2469,64.9123,90.3509,7.1266,2.5851 NHS Lancashire and South Cumbria ICB,P81046,Park View Surgery_P81046,7488.739439,6.618,60.9589,57.5758,2.392,49.6324,65.8537,2.6543,82.0513,2.156,1.6049,0.2932,2.9052,37.6686,7.5842,11.4198,43.4783,66.3866,0.5401,2.5617,12.8631,0.6183,82.7918,85.124,52.5641,85.8974,19.7107,1.5278 NHS Lancashire and South Cumbria ICB,P81055,Berry Lane Medical Centre,13304.32324,7.7117,79.3037,79.023,5.0063,79.9007,80.3704,3.4801,92.3611,5.4632,2.0571,0.9732,1.9642,12.073,6.2258,19.4647,67.8724,84.7866,0.4645,0.8332,9.419,0.3123,89.9146,78.9474,78.9916,87.395,10.3215,2.3815 NHS Lancashire and South Cumbria ICB,P81067,The Healthcare Centre,14363.37732,7.1264,76.6204,72.9904,4.1965,74.8731,77.6515,3.4271,90.4762,5.7634,2.0438,1.0724,2.6744,19.9546,8.3253,15.8688,73.3586,86.6812,0.4818,1.2045,15.5038,1.2845,90.1315,85.6164,86.9565,93.7888,9.7193,2.2226 NHS Lancashire and South Cumbria ICB,P81071,The New Hall Lane Practice,8287.310398,4.9864,61.3636,58.1395,2.8138,55.7769,65.7658,2.4655,86.3014,4.7247,2.3402,0.4597,1.7299,44.8293,8.3425,12.7037,61.6162,79.1667,1.2258,1.1283,19.3824,0.1924,85.9244,86.8966,82.5581,96.5116,24.7611,1.574 NHS Lancashire and South Cumbria ICB,P81103,North Preston Medical Practice,12239.00401,7.2019,72.3577,71.3147,4.1746,73.6181,78.6408,3.272,89.375,6.785,2.3,0.5815,2.0108,19.8516,7.6463,16.3166,68.6458,81.1024,0.5555,1.3019,16.8951,1.3312,88.4677,83.6735,73.3871,87.0968,12.9609,2.1264 NHS Lancashire and South Cumbria ICB,P81107,Stonebridge Surgery,8029.887222,7.6361,77.3026,80.9302,4.4652,73.5931,77.7778,2.9441,91.0256,6.6313,1.607,0.9078,1.6957,11.5735,6.0827,16.4745,67.1756,78.6441,0.4416,0.92,13.5958,0.1633,83.548,79.3103,78.9474,89.4737,9.7139,2.0486 NHS Lancashire and South Cumbria ICB,P81119,Lane Ends Surgery,11086.34833,6.4548,64.6825,64.7059,2.9247,63.5135,75.1724,2.6088,79.8387,5.0988,2.191,0.8153,4.4137,27.5022,6.7957,13.0847,50.2392,71.5481,0.7541,1.5999,12.6351,1.1262,86.4341,83.8889,66.6667,87.5,24.4083,1.6509 NHS Lancashire and South Cumbria ICB,P81169,Fishergate Hill Surgery,7363.51326,6.9481,72.067,63.1148,3.3989,56.1475,68,3.4598,80.2817,5.0756,2.0271,0.5335,4.5344,31.8834,8.83,13.3974,60.0829,80.6452,0.5182,2.0424,13.8832,0.5216,91.1551,83.4395,77.0115,88.5057,18.9105,2.0119 NHS Lancashire and South Cumbria ICB,P81179,Lostock Hall Medical Ctr.,6283.120726,7.1966,74.1117,76.087,3.9187,79.2627,80.5085,3.23,96.7742,5.6546,2.7546,0.9182,3.1212,15.7894,7.5536,17.7898,69.7072,83.7564,0.5575,0.8854,22.2335,2.499,91.2275,91.2,86.7647,91.1765,15.7972,2.1151 NHS Lancashire and South Cumbria ICB,P81184,Ribbleton Medical Centre,10792.75501,7.5564,68.9498,63.4731,2.9502,70.3226,74.1007,2.9388,85.567,5.3552,2.9048,0.7149,2.9922,42.7525,8.1163,13.8886,67.6125,87.1287,1.1006,1.1687,19.9785,2.1407,89.2387,82.6531,80.4124,89.6907,28.5128,1.9744 NHS Lancashire and South Cumbria ICB,P81185,Riverside Medical Centre,10480.68142,8.4349,74.4,77.4648,5.0162,84.9231,86.5546,3.3164,97.7273,9.1653,1.8106,0.8037,1.3515,13.3959,6.6421,18.3649,80.7259,90,0.545,0.7575,13.9807,2.1775,92.7831,86.0262,80.1887,93.3962,10.6162,2.0601 NHS Lancashire and South Cumbria ICB,P81196,Issa Medical Centre - Patel,34663.24888,5.5702,63.5171,67.1004,2.4217,61.2877,68.2105,2.5664,78.6543,5.0632,1.5913,0.5787,1.7213,31.5426,8.2963,11.2783,74.1448,83.6141,0.949,1.357,13.7818,0.4539,84.9564,88.6024,89.1688,92.4433,18.3773,1.5624 NHS Lancashire and South Cumbria ICB,P81213,St Mary's Health Centre,13981.83145,5.3797,78.3934,76.3052,2.7584,60.8081,82.4121,1.6058,93.9024,2.6732,0.7721,0.3917,1.9139,22.9942,3.1417,9.1759,63.5321,79.2169,0.1846,0.6266,8.3145,2.3022,91.271,82.8571,76.7123,93.1507,7.0313,1.0015 NHS Lancashire and South Cumbria ICB,P81647,Gutteridge Medical Centre,3914.384515,6.0532,51.8987,58.0645,1.9603,57.1429,67.2414,2.6137,81.1321,2.9217,1.3069,0.2764,1.7596,36.8691,9.9184,11.234,55.5838,64.1509,0.9299,1.2566,10.7238,0.1963,86.0963,96.8421,66.0714,83.9286,14.1096,1.0555 NHS Lancashire and South Cumbria ICB,P81664,The Park Medical Practice,19209.62276,7.5992,68.5771,68.314,3.1309,61.6588,70.5882,2.9155,91.4573,5.2613,2.3965,0.6902,2.5479,30.1908,7.7893,12.9045,65.9586,83.0467,0.5411,1.3087,11.8325,0.6076,86.5925,88.2199,78.8462,87.9808,18.9864,1.5792 NHS Lancashire and South Cumbria ICB,P81685,Dr Ali Guttridge Medical Centre,4294.940893,5.5807,61.1765,62.963,1.765,60,80,2.9497,69.4444,5.9623,1.2814,0.4836,2.7804,35.2653,9.7079,10.4207,69.7222,84.507,1.088,1.1122,19.9568,1.9822,90.9238,86.4865,87.0968,88.7097,19.9856,1.3056 NHS Lancashire and South Cumbria ICB,P81735,Dr A Hussain,3972.366638,6.7479,54.0984,49.0909,1.7361,70.7317,70,2.8067,84.6154,3.1048,2.4306,0.5208,2.621,47.5261,6.3629,8.7674,79.927,86.2069,0.463,1.0417,16.2903,0.1196,87.4296,97.6191,86.2069,96.5517,36.2095,1.1285 NHS Lancashire and South Cumbria ICB,P81748,Briarwood Medical Centre,7894.567578,6.095,70.9957,74.4186,3.5764,77.3279,80,3.1014,94.7368,5.1376,1.6485,1.3132,1.5152,23.4125,6.9167,15.3535,75.1136,85.8448,0.5448,1.1176,13.5145,0.4077,90.6601,80.916,90.411,91.7808,15.6454,1.9559 NHS Lancashire and South Cumbria ICB,P81770,Avenham Surgery,7539.067833,4.4932,53.0303,49.4382,1.469,43.4783,51.7647,2.0947,81.0811,2.4856,1.3738,0.1632,2.4331,42.1377,6.8585,10.5142,63.9045,77.0492,0.4217,1.4146,12.8479,0.3036,86.4326,91.9643,81.3333,92,26.1538,0.9657 NHS Lancashire and South Cumbria ICB,A82003,Ulverston Health Centre (Murray),13107.66563,8.0462,,,4.8393,,,4.166,,2.6611,1.9778,1.1025,1.1705,,7.7372,17.0342,64.8774,83.4952,,0.8248,,0.3283,87.3492,84.3066,,,10.3349,2.4996 NHS Lancashire and South Cumbria ICB,A82005,Ambleside Health Centre,5794.668229,7.1564,,,5.4891,,,3.2665,,3.8808,1.1113,0.5893,1.3686,,4.8799,17.2756,57.2343,73.0612,,0.6567,,1.768,83.9912,86.6667,80.8511,,15.4353,2.3741 NHS Lancashire and South Cumbria ICB,A82007,Duke Street Surgery,14786.4037,9.6467,,,4.1538,,,4.4272,,3.8344,3.0867,0.8114,2.6512,,8.1505,15.6187,79.8764,87.3016,,1.1465,,0.601,90.8867,85.9922,86.9565,,18.7346,2.4253 NHS Lancashire and South Cumbria ICB,A82008,Norwood Medical Centre,15710.00424,7.5857,,,4.088,,,3.5864,,2.8173,2.3658,1.162,0.5573,,8.302,14.4875,46.8374,67.9012,,1.045,,0.1985,81.223,85.3061,87.5,,16.127,2.1986 NHS Lancashire and South Cumbria ICB,A82009,Bridgegate Medical Centre,12176.13253,7.2006,,,4.1501,,,4.1393,,4.1544,2.8492,1.1397,0.8845,,8.6785,16.6326,69.263,82.4363,,0.8816,,0.3782,90.9275,87.4419,82.1138,,14.8948,2.2686 NHS Lancashire and South Cumbria ICB,A82010,Abbey Road Surgery,8365.473158,8.0917,,,4.7542,,,3.7026,,4.7048,1.9994,0.9331,0.9123,,8.2153,18.1576,67.6259,80.6324,,1.1404,,0.2564,82.3699,86.8264,85.7143,,12.4175,2.2956 NHS Lancashire and South Cumbria ICB,A82025,Captain French Surgery,11599.68283,7.7344,,,4.1274,,,3.0274,,2.7243,1.4345,1.1001,0.979,,6.767,14.7232,67.4419,76.5013,,0.9241,,0.2366,80.8011,82.7411,80.8696,,12.7722,2.5169 NHS Lancashire and South Cumbria ICB,A82026,The James Cochrane Pract.,18200.25106,6.69,,,5.0627,,,3.505,,4.0565,1.7983,1.1741,1.3083,,6.5023,15.5948,63.1391,79.661,,0.7846,,0.8108,86.162,83.9237,,,9.8409,2.7834 NHS Lancashire and South Cumbria ICB,A82027,Station House Surgery,10762.18467,7.7759,,,4.409,,,3.8566,,3.5465,2.0689,1.4663,1.8087,,7.359,19.3131,59.362,74.4283,,0.934,,0.4037,87.1026,81.4189,80.8696,,12.7523,2.9627 NHS Lancashire and South Cumbria ICB,A82030,Lunesdale Surgery,6646.247604,8.1245,,,6.1983,,,3.9792,,2.9993,1.2397,1.1785,0.6401,,5.2157,18.1359,62.4709,79.5107,,0.7652,,0.3569,82.2993,80.3922,76.9231,,5.3048,2.9691 NHS Lancashire and South Cumbria ICB,A82033,Waterloo House Surgery,10197.68204,9.1489,,,4.6257,,,5.3189,,2.1306,2.6847,1.2604,1.4562,,10.3782,18.1245,47.5979,65.6051,,1.1596,,0.6556,86.0385,80.9524,,,12.9944,3.151 NHS Lancashire and South Cumbria ICB,A82039,Dalton Surgery,9559.524593,8.1146,,,4.6499,,,3.9145,,2.5722,1.878,1.2445,0.9354,,7.5858,17.1852,56.1102,73.1092,,0.939,,0.075,81.2388,81.5951,89.5238,,11.4171,2.3532 NHS Lancashire and South Cumbria ICB,A82046,Windermere Health Centre,4455.997402,6.2817,,,3.9657,,,2.637,,2.05,1.4105,0.5928,1.4609,,4.9918,14.2273,44.685,69.6809,,0.7155,,0.3435,82.3777,84.2105,,,16.7905,2.1259 NHS Lancashire and South Cumbria ICB,A82053,Nutwood Medical Practice,9474.303705,8.5352,,,7.052,,,5.0371,,5.6664,2.2137,1.6039,1.0275,,6.9007,23.7407,74.3165,84.589,,0.9544,,0.5457,90.5983,71.2871,88.2353,,9.301,4.096 NHS Lancashire and South Cumbria ICB,A82062,Atkinson Health Centre,7972.865459,8.4147,,,4.5199,,,4.0397,,5.2167,3.1954,1.0927,2.1565,,8.4027,17.3344,70.8531,81.7734,,1.1424,,0.1188,90.5492,85.3147,79.2208,,16.3584,1.9868 NHS Lancashire and South Cumbria ICB,A82068,Ulverston Community Health Centre,4934.743675,8.416,,,5.192,,,3.4686,,3.9498,1.8107,0.6981,1.7526,,6.5116,18.8045,59.5808,81.9588,,1.0908,,0.5587,90.3414,78,,,11.1535,2.1379 NHS Lancashire and South Cumbria ICB,A82070,St Mary's Surgery,6761.579075,7.7031,,,5.3004,,,3.7043,,3.1513,1.0089,0.9938,1.313,,5.9361,17.6931,65.7895,78.1711,,0.7529,,0.2854,81.0561,83.1776,92.0635,,11.1624,3.2676 NHS Lancashire and South Cumbria ICB,A82071,Burnett Edgar Medical Ctr,5183.608497,7.8382,,,3.5963,,,3.7881,,1.2034,2.9969,0.959,0.4012,,7.4513,16.9504,71.9626,80.814,,0.9111,,0.1604,86.4941,84.2857,82.3529,,14.8732,2.2537 NHS Lancashire and South Cumbria ICB,A82072,Risedale Surgery,9797.949849,8.1621,,,4.0065,,,3.7241,,4.1993,2.904,0.9142,2.183,,8.6456,17.1417,65.8915,83.5391,,1.2503,,0.5541,90.5063,94.7059,72,,17.137,2.4603 NHS Lancashire and South Cumbria ICB,A82608,Sedbergh Medical Practice,4130.77931,6.9987,,,4.2199,,,2.4454,,3.3869,1.6014,0.6276,1.5475,,5.3037,13.8931,54.2194,72.6191,,0.541,,0.286,90.8815,76.0563,73.6842,,7.2508,2.1208 NHS Lancashire and South Cumbria ICB,A82613,Wraysdale House Surgery,1029.94627,6.1106,,,4.7179,,,4.9029,,1.8299,0.555,0.555,1.1841,,6.19,12.8585,69.3069,86.8421,,0.2775,,0,87.2881,70,,,7.5693,1.7576 NHS Lancashire and South Cumbria ICB,A82629,The Family Practice,4204.390886,6.9459,,,4.3537,,,3.8848,,3.0399,4.3202,1.1052,0.7896,,7.7583,14.7019,55.9078,83.6957,,1.3061,,0.7868,81.6379,90.5882,,,20.3725,1.9089 NHS Lancashire and South Cumbria ICB,A82647,Cartmel Surgery,3562.165005,9.4229,,,6.5823,,,5.538,,6.4121,1.6139,1.8987,0.8646,,6.4459,24.1456,70.3316,85.2632,,0.4114,,0.1577,92.7487,74.3243,88.5714,,7.7583,3.5443 NHS Lancashire and South Cumbria ICB,A82650,Haverthwaite Surgery,3042.59458,6.8855,,,6.2071,,,3.9095,,2.5631,1.0974,1.2346,0.9464,,6.5753,17.7641,62.069,75,,0.6859,,0.3007,84.8018,85.9649,76.1905,,9.9134,2.9835 NHS Lancashire and South Cumbria ICB,A82651,Duddon Valley Medical Practice,5163.087713,7.7154,,,5.1555,,,3.5393,,2.6411,1.473,1.0434,1.2842,,6.7338,16.653,53.1002,78.3784,,0.9411,,0.501,85.213,86.1386,82.6923,,7.7744,2.6596 NHS Lancashire and South Cumbria ICB,B82061,Bentham Medical Practice,8405.892168,9.4541,,,5.4876,,,4.5326,,5.2623,1.9906,0.9549,1.3832,,8.0377,19.7176,53.2967,74.5989,,0.7128,,0.3868,87.0251,82.4645,79.5699,,10.2057,3.4835 NHS Lancashire and South Cumbria ICB,P81002,Lancaster Medical Practice,56897.02195,5.7692,,,2.8198,,,2.4476,,2.5879,1.6398,0.5885,1.6903,,5.1115,10.7995,67.2405,81.1239,,0.9228,,0.3243,85.5825,85.8252,83.3984,,12.2474,1.5733 NHS Lancashire and South Cumbria ICB,P81013,Queen Square Medical Practice,15908.12775,7.1671,,,3.6649,,,3.1404,,2.7832,2.0531,0.9402,2.0049,,6.6693,13.5657,61.2845,76.9231,,1.2664,,0.6962,84.0474,80.9353,76.8212,,12.1511,2.2897 NHS Lancashire and South Cumbria ICB,P81029,Ash Trees Surgery,26641.08881,8.5511,,,6.3908,,,4.5631,,5.0316,1.9776,1.5156,1.4052,,7.4431,19.0995,66.007,79.7964,,0.7011,,0.8013,89.325,79.8611,85.7143,,7.7854,3.0718 NHS Lancashire and South Cumbria ICB,P81113,Park View Surgery_P81113,7089.540571,8.2105,,,5.5212,,,3.9971,,4.8943,1.4091,1.0352,1.3472,,6.9442,17.9296,67.4762,79.6667,,0.5608,,0.4067,91.9267,80,84.4156,,9.513,2.6743 NHS Lancashire and South Cumbria ICB,Y01008,Bay Medical Group,69208.43915,8.0733,,,4.1001,,,4.1239,,5.9296,3.1714,1.4397,3.0002,,9.4241,18.187,61.8563,74.9432,,1.1897,,1.1471,84.3536,81.1368,70.091,,18.5668,2.644 NHS Lancashire and South Cumbria ICB,P81014,Ormskirk Medical Practice,10021.70377,6.8881,78.6885,80.9717,5.4844,67.6923,71.4286,4.108,90.6667,3.9492,1.5246,1.8317,2.289,12.0647,5.5894,17.9037,45.365,66.3136,0.36,0.6988,8.9674,1.58,85.5185,72.4832,57.8313,74.6988,8.2588,2.4034 NHS Lancashire and South Cumbria ICB,P81039,Manor Primary Care,5890.659275,8.4931,64.3836,66.9565,3.0777,67.3684,75.2475,3.0777,88.7324,2.7346,2.633,0.4626,2.0745,37.6175,7.5446,13.1116,74.4076,89.4231,0.6583,1.014,14.1914,0.268,90.3461,89.3617,88.1356,93.2203,22.5755,1.441 NHS Lancashire and South Cumbria ICB,P81041,Parkgate Surgery,9671.942061,7.8189,76.3959,77.1318,4.4817,76.7176,80.3191,3.9058,96.1539,3.5776,2.0838,1.0471,1.0311,11.2442,6.3191,17.1414,68.467,82.0106,0.3456,0.8063,11.8261,0.5536,91.346,77.7027,82.7586,86.2069,9.3709,2.3141 NHS Lancashire and South Cumbria ICB,P81045,The Elms Practice,4928.840134,7.482,79.3814,76,5.9095,74.4,75.2577,4.6521,82.1429,5.5472,2.1165,1.5717,1.8991,11.3192,7.5579,18.2523,72.1683,86.9565,0.461,0.7335,15.5422,1.8128,92.1584,78.0702,90.3846,98.0769,9.4514,2.5985 NHS Lancashire and South Cumbria ICB,P81084,Hall Green Surgery,8985.749871,7.1611,73.5099,77.6699,4.6495,76.3713,80.4878,3.9351,88.0952,5.2024,1.7314,1.0655,1.3737,15.2147,7.3801,19.4455,68.2119,81.6583,0.4722,0.7023,9.4403,0.2794,91.7333,82.3171,88.172,91.3978,7.4601,1.9131 NHS Lancashire and South Cumbria ICB,P81096,Parbold Surgery,6819.470436,7.7783,76.412,77.3869,5.8145,80.5714,80,3.406,88.3721,5.9681,1.7956,0.6556,1.2005,6.7307,6.5687,21.1201,66.3436,83.2853,0.3705,0.6271,11.2502,0.2457,90.3005,72.6667,82.2581,88.7097,5.6375,2.1804 NHS Lancashire and South Cumbria ICB,P81112,Beacon Primary Care,18958.67469,7.0624,65.6189,66.9468,3.7966,73.6082,76.6187,3.7436,89.7959,3.8385,2.7783,1.189,3.6598,23.2784,7.3188,16.9051,74.3887,81.5157,0.6769,1.2596,16.9836,1.226,91.8608,81.8942,82.2581,91.3978,15.9291,2.3898 NHS Lancashire and South Cumbria ICB,P81136,Dr A Bisarya,3347.986218,8.2117,71.9298,74.3243,4.7521,78.8235,77.193,4.4422,96.5517,6.0996,3.5124,0.8953,2.9046,26.682,9.4394,23.1061,79.7753,86.8613,0.9642,0.8265,19.2946,1.7611,90.7787,89.4737,90,95,14.3974,1.9284 NHS Lancashire and South Cumbria ICB,P81138,Burscough Family Practice,2880.224241,8.2486,75.4545,76.8116,4.9343,78.481,78.5714,4.7213,96.9697,5.1783,2.3074,1.9169,1.528,12.8737,8.0638,21.0863,74.3304,88.3562,0.4615,0.3905,16.7657,0.4342,92.9496,88.5246,91.4286,94.2857,8.7158,3.1594 NHS Lancashire and South Cumbria ICB,P81201,Ashurst Primary Care,6198.074388,5.6391,68.3417,70.4545,3.3659,64.467,68.8172,3.1134,76.5625,2.9682,2.2551,0.3366,1.4094,28.6943,7.7036,14.1703,77.3663,92.9204,0.7405,1.0098,15.1185,0.2413,89.7113,82.4561,73.8462,92.3077,15.6101,1.4305 NHS Lancashire and South Cumbria ICB,P81208,Excel Primary Care,20134.2472,7.1585,64.5872,68.8608,3.6553,69.1126,68.3735,3.5999,90.566,4.5808,2.6916,0.648,3.0562,34.2053,8.8341,16.2051,67.6375,85.2423,0.7144,0.9581,14.1768,1.1797,86.2299,85.6796,80.9524,84.8485,20.929,1.9107 NHS Lancashire and South Cumbria ICB,P81646,Lathom House Surgery,4542.480917,8.432,77.2455,79.4643,4.2729,74.5283,75.2809,3.4939,96.6667,4.2825,2.3135,1.4164,1.4748,12.1671,8.2284,19.3815,67.0455,80,0.7082,0.9207,14.776,0.4202,88.7412,82.4742,79.5918,87.7551,8.2379,2.1955 NHS Lancashire and South Cumbria ICB,P81674,Stanley Court Surgery,5720.349958,7.5036,79.7468,79.2899,4.9223,80.8642,78.2946,3.3679,98.1132,3.1099,1.3299,1.1572,2.7106,12.4578,7.5327,19.4819,79.4872,93.9394,0.38,0.6045,16.9784,0.2534,90.7767,79.2079,91.8033,95.082,8.4945,2.3316 NHS Lancashire and South Cumbria ICB,P81695,Aughton Surgery,5786.384453,6.4942,81.25,80.1282,5.3729,75.7396,78.7402,3.6889,90.9091,4.1792,1.5397,0.8661,2.1901,8.4385,5.4129,17.0168,63.0749,80.6667,0.3368,0.7057,10.5887,1.5146,88.3489,77.3196,75.5102,93.8776,6.0907,2.1652 NHS Lancashire and South Cumbria ICB,P81710,Tarleton Group Practice,10220.23675,7.8341,78.3217,81.9495,5.3566,77.0161,79.4521,4.0927,97.8947,6.4061,1.946,0.8125,1.9423,9.1813,8.1689,20.3832,80.4926,91.002,0.4113,0.6019,15.2853,2.5024,90.2131,78.3465,91.7355,95.8678,9.9628,2.7686 NHS Lancashire and South Cumbria ICB,P81006,Garstang Medical Practice,23011.73388,7.6955,78.6026,80.9359,6.093,79.7244,78.7234,4.119,96.6667,6.0948,1.6808,1.2899,1.9296,11.2975,7.6539,18.8703,64.6915,77.14,0.5473,0.8209,10.6071,0.5097,88.9983,78.6885,78.7234,92.3404,9.0773,3.0832 NHS Lancashire and South Cumbria ICB,P81031,Poplar House Surgery,8356.602011,7.2667,73.3542,75.5102,5.1823,75.4717,79.5918,4.8895,95.6522,4.1903,2.8107,1.581,1.5113,22.1225,7.738,21.4464,70.5616,81.7175,0.9955,1.5664,17.1733,1.8167,91.6093,80,81.9277,96.3855,14.2811,2.8253 NHS Lancashire and South Cumbria ICB,P81037,Ansdell Medical Centre,15867.73658,8.3626,78.9474,74.5257,6.916,70.3833,76,5.5344,85.2459,6.5856,2.7631,1.4725,2.134,15.8294,7.9633,23.817,67.243,83.187,0.4302,1.2326,14.8996,1.3126,88.2228,80.1724,86.7647,93.3824,9.1944,3.3008 NHS Lancashire and South Cumbria ICB,P81059,Great Eccleston Hlth Ctr,8548.424735,7.6851,78.8043,80.0847,5.8598,78.7565,79.7688,4.7491,95.4546,5.4236,1.8767,1.1107,1.2257,12.6432,7.1071,21.1669,64.2531,83.815,0.3319,0.4979,18.4005,0.288,85.4482,86.8421,81.7073,95.122,7.7274,2.4895 NHS Lancashire and South Cumbria ICB,P81077,Holland House Surgery,13550.57275,6.551,79.3103,81.9277,7.4741,76.5873,79.4239,5.484,93.421,6.7517,2.8546,1.3778,1.0243,11.7721,7.5952,24.0702,78.045,90.9597,0.2702,0.9185,13.5243,4.2842,90.6201,81.7869,93.9394,97.7273,8.1684,3.1247 NHS Lancashire and South Cumbria ICB,P81079,The Thornton Practice,14427.57911,8.0245,82.4299,79.7222,5.5098,78.2991,77.6557,5.1476,95.122,5.9895,2.4505,1.0634,0.6747,15.9459,8.1622,21.4765,76.873,84.1693,0.4238,0.8168,16.129,1.849,89.81,79.0368,85.4545,92.1212,10.8009,2.8974 NHS Lancashire and South Cumbria ICB,P81086,Broadway Medical Centre,12486.67522,8.0581,69.0751,61.5044,4.251,67.7419,70.7317,4.3725,93.9759,7.8265,3.2085,1.3664,1.5888,37.495,10.0444,19.8785,65.7371,87.1179,0.587,1.1235,20.5626,2.4721,90.4783,84.8297,84.7222,89.5833,18.6541,2.7935 NHS Lancashire and South Cumbria ICB,P81087,The Over-Wyre Medical Centre,15219.28895,7.793,75.9874,69.6721,7.164,74.7788,72.0648,6.5547,93.9394,6.9944,4.4742,1.741,1.8348,16.8378,10.9095,26.1926,72.0402,85.2778,0.383,0.914,19.037,2.7994,88.4921,79.9054,82.8283,90.9091,11.0413,3.8649 NHS Lancashire and South Cumbria ICB,P81089,The Mount View Practice,17115.38236,9.0369,69.4805,59.0909,4.3762,65.8192,69.9115,4.9057,94.2857,6.8733,3.7972,1.2161,4.1607,42.9507,9.6927,19.325,72.6487,85.8025,0.6204,2.0351,20.3039,1.9282,87.831,79.3282,79.4444,91.6667,24.9515,2.5976 NHS Lancashire and South Cumbria ICB,P81128,Kirkham Health Centre,9760.060124,6.7429,78.3237,74.2739,4.3692,72.2222,74.6114,3.5385,85.8586,3.4773,2.6462,0.7692,1.2865,14.4184,7.8805,16.6769,66.0451,76.1062,0.2872,1.0256,12.3296,0.1648,84.6411,81.9149,74.1379,81.8966,12.7387,2.0513 NHS Lancashire and South Cumbria ICB,P81129,Ash Tree House Surgery,11559.98376,9.3722,78.3784,76.5677,5.2966,79.3103,81.0127,3.408,89.6226,3.986,1.9401,0.6353,1.8714,14.3343,7.3463,18.2247,70.1856,83.4587,0.352,1.0902,14.8023,0.6901,92.0369,82.7273,84.252,91.3386,11.0454,2.4552 NHS Lancashire and South Cumbria ICB,P81133,The Village Practice,10469.70299,8.3532,75.2632,78.7402,5.1979,78.5714,76.2626,4.8339,97.1831,5.9387,2.9459,1.0237,2.422,17.7584,9.0492,20.985,74.3234,85.6436,0.3753,1.0009,18.8697,3.4063,91.1284,83.6066,88.6179,91.8699,12.7033,3.0369 NHS Lancashire and South Cumbria ICB,P81149,Lockwood GP Surgery,9828.745828,8.5711,80.3714,76.0331,6.5568,80.0866,82.4176,4.3098,96,5.2326,2.443,1.4404,1.6473,12.7237,6.9164,21.8714,63.5431,75.6881,0.2881,0.8873,14.9086,2.71,90.3101,80.4734,82.6087,89.1304,8.5804,2.5812 NHS Lancashire and South Cumbria ICB,P81150,Parcliffe Medical Centre,16251.5207,6.973,71.2121,66.3492,6.3849,70.9571,71.73,5.3057,92.8571,6.9695,2.7517,1.6395,3.0051,22.533,8.6746,21.6263,63.0901,81.0775,0.7827,1.8043,14.0074,4.3281,89.2037,81.3218,78.5714,91.0714,14.6351,3.4602 NHS Lancashire and South Cumbria ICB,P81157,Fernbank Surgery,12526.11182,6.8399,78.3486,75.5682,5.6505,75.265,76.2452,5.1988,96.4706,5.3226,2.8518,1.1602,1.9659,12.6569,7.8874,21.7518,65.1271,83.932,0.3454,0.868,14.8803,2.5645,86.4153,80.678,86.8613,94.8905,9.7059,2.8164 NHS Lancashire and South Cumbria ICB,P81191,Queensway Medical Centre,10701.13272,7.9726,78.5714,72.5632,6.1268,73.1405,77.8302,4.6504,90.411,5.6695,2.921,1.3498,1.8152,12.1409,7.6234,20.4366,63.674,80.8163,0.3585,0.8542,13.8506,4.1857,91.205,83.5749,79.661,86.4407,9.3735,2.8683 NHS Lancashire and South Cumbria ICB,P81668,Fleetwood Surgery,8269.575535,6.4781,69.2308,61.9048,3.8731,63.4286,73.1481,4.0908,100,3.155,3.2042,0.6377,2.7435,39.6489,10.0465,17.8099,83.3869,91.0377,0.3266,1.3844,19.0476,1.9403,87.6564,90.8537,96.1039,96.1039,22.4529,2.3643 NHS Lancashire and South Cumbria ICB,P81742,Beechwood Surgery,3172.956058,7.6082,72.5664,74.6667,6.6316,77.9661,80,5.8633,100,6.0056,4.0841,1.5366,4.1899,17.5767,11.0548,30.1658,71.4524,89.7959,0.6874,1.1322,18.9013,3.0303,96.6621,76.5432,86.6667,93.3333,15.3486,3.518 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence South Yorkshire ICB,C85001,Goldthorpe Medical Centre PMS Practice,5344.888519,7.2111,65.1316,59.596,3.766,70.3448,65.0602,4.2816,97.6744,4.2375,5.1782,1.1208,0.4461,40.3123,9.1458,19.7041,72.6891,83.6364,0.7173,1.0087,18.9852,0.4961,88.8354,81.8966,75.7576,92.4242,22.3832,2.3537 South Yorkshire ICB,C85003,Ashville Medical Centre PMS Practice,15906.21455,6.9651,69.7861,78.4387,3.3534,76.3341,76.5766,3.8837,95.4887,3.5775,3.2442,1.0372,0.6614,39.1627,8.5319,17.3204,81.0203,85.9297,0.7409,0.9748,21.5252,0.1911,90.6396,85,90.7407,95.679,21.9732,2.3162 South Yorkshire ICB,C85004,Penistone Group PMS Practice,16257.59555,7.5903,79.5556,79.4311,4.9021,83.1486,83.9572,4.0043,92.9688,4.4645,2.0351,0.7003,0.7244,10.8666,7.1954,20.1532,68.4132,80.1775,0.3172,0.6524,15.1305,0.2737,86.2061,83.7143,88.6364,95.4545,7.1373,2.7893 South Yorkshire ICB,C85005,Royston Group Practice,8810.421855,8.5228,70.8955,74.5856,4.0053,76.824,79.021,4.7563,92.6471,3.3594,3.6495,1.199,0.3751,29.692,10.2353,16.9829,66.0287,75,0.7773,0.83,22.1624,0.2169,88.1655,88.0342,86.4,92,16.8054,2.7536 South Yorkshire ICB,C85006,Woodland Drive Medical Centre,6162.675559,6.2077,77.1144,79.5455,4.6761,82.2785,81.4815,3.9624,96,5.829,2.7793,1.0704,2.6083,26.6536,7.4116,19.3239,77.1394,81.9905,0.7887,0.6385,16.9199,0.6219,89.9364,87.8049,93.5484,96.7742,13.8665,2.0657 South Yorkshire ICB,C85007,The Dove Valley PMS Practice,13841.64103,7.8544,72.335,82.4818,3.9339,71.4286,73.7327,4.8154,94.9367,5.3265,4.4164,0.7701,1.7944,38.2925,8.8034,19.5955,71.5035,81.3131,0.7515,0.9371,16.6496,0.9145,85.4866,90.8163,83.0986,90.1408,18.5051,2.5051 South Yorkshire ICB,C85008,Walderslade Surgery,14787.87845,7.019,76.3107,81.3031,4.4851,76.6129,77.3723,4.4311,96.4706,4.929,3.0261,1.1116,1.6273,26.204,10.3047,20.5342,60.5977,75.8763,0.4786,0.7025,19.0161,0.4023,88.2581,89.8172,82.4742,91.7526,13.6146,2.9026 South Yorkshire ICB,C85009,The Kakoty Practice,8243.99959,5.7509,63.8889,64.6018,2.0408,58.1673,69.697,2.9479,86.076,2.3206,2.792,0.9496,2.3206,40.6212,7.1935,12.9252,69.1139,87.7049,0.6944,1.5731,16.2439,0.4055,89.3433,96.875,78.3784,95.9459,32.3035,1.4456 South Yorkshire ICB,C85010,Hill Brow Surgery PMS Practice,19537.31643,7.4183,75.1236,74.5413,4.1158,80.4554,80,4.697,94.6309,3.072,3.4758,1.1156,1.4994,23.9231,8.9179,20.2912,57.604,78.8922,0.5636,0.6928,17.8686,0.3099,83.9681,83.2524,81.2227,89.5197,13.8839,2.8593 South Yorkshire ICB,C85013,Wombwell Gms Practice,13048.41968,8.4598,72.6708,64.9123,3.3569,70.0767,77.2021,3.8493,94.958,5.9537,3.5807,0.8057,1.6373,30.8997,9.2597,15.5134,74.2669,83.7398,0.9578,0.8057,17.8269,0.9,89.5047,87.0871,73.8854,89.8089,17.9124,2.7661 South Yorkshire ICB,C85014,The Rose Tree PMS Practice,11122.30109,6.7295,78.9916,72.2222,4.32,82.8025,80.2395,5.1468,97.4138,6.1504,3.6275,0.9818,3.0426,32.5068,9.753,18.0033,67.0904,78.5276,0.7028,0.6718,20.9454,0.0769,89.7302,88.6667,89.4366,91.5493,16.8592,2.8111 South Yorkshire ICB,C85016,Garland House Surgery,12938.86913,8.8315,76.6585,68.8406,4.3163,79.5322,80.3738,4.5374,94.5055,5.3034,4.0598,0.8403,0.5314,30.7321,9.2021,16.5311,69.5509,80.2817,0.8226,0.9376,21.0806,0.1659,91.5707,87.8594,91.7197,97.4522,13.9378,3.0161 South Yorkshire ICB,C85017,Burleigh Medical Centre,14931.15461,6.8341,70.1333,77.0751,3.2663,65.9367,74.2857,3.9364,93.6937,2.4907,3.3166,0.9632,0.1338,37.3087,8.8681,15.2764,71.1473,87.7493,0.6784,0.9464,18.7217,0.0663,86.7343,89.8413,80,94.5455,21.8495,2.3283 South Yorkshire ICB,C85018,Grimethorpe Surgery,9191.609747,6.5722,73.8589,65.4762,3.9176,75.2033,75.7813,4.1616,97.1698,2.9838,4.2294,0.8676,0.6533,37.0491,10.7807,18.8017,76.3543,88.8393,0.7727,0.8133,23.1462,0.3257,93.2606,86.6995,86.6667,93.3333,18.8827,2.2638 South Yorkshire ICB,C85019,The Grove Medical Practice,12521.12948,6.5022,69.8734,74.6094,3.7106,72,75.9615,4.1022,97.9592,5.0901,3.5242,0.5874,1.8479,30.4294,8.4715,20.2685,65.4015,83.7079,0.4755,0.8391,16.7215,0.1286,87.9758,84.3284,85.2113,95.0704,17.081,2.135 South Yorkshire ICB,C85020,Huddersfield Road Surgery,14222.91044,5.9975,76.5957,77.7429,3.9821,77.9449,78.2946,4.2957,96.0396,4.7407,2.4144,0.8544,1.8736,22.906,8.193,17.5041,74.6479,82.5327,0.5252,0.729,15.2725,0.1585,86.256,85.4839,76.3158,95.3947,12.8655,2.673 South Yorkshire ICB,C85022,Hoyland Medical Practice,14159.92695,7.5622,73.7209,68.9542,3.8052,78.0193,79.1667,3.8992,94.4,2.6259,2.756,0.8456,5.095,26.7909,8.7213,18.8381,62.4128,75.5,0.6185,0.9944,19.3024,0.2115,89.086,85.0993,79.3939,84.2424,13.4922,2.3411 South Yorkshire ICB,C85023,Hollygreen Practice,13551.17455,7.3786,68.1818,62.5,3.5827,74.928,71.8894,4.5754,91.8919,2.9216,4.5032,1.0739,0.4287,40.5986,10.22,18.3918,62.1718,78.453,0.8303,0.8934,19.0863,0.1544,87.7615,87.9562,78.2353,95.2941,20.8311,2.2922 South Yorkshire ICB,C85024,High Street Practice,7691.833015,6.1238,76,72.9412,2.7393,79.5812,74.2424,4.8249,93.8462,2.9362,1.5409,1.0272,0.0565,28.836,8.6294,13.4008,60.3499,73.1429,0.5292,0.7004,18.3324,0.1019,79.5993,86.4,67.0455,80.6818,14.6506,2.1946 South Yorkshire ICB,C85028,Lundwood Medical Centre PMS Practice,4534.10768,4.6212,65.5629,64.9485,3.5125,64.2202,71.9512,5.6153,90,3.0787,3.9188,0.5974,0.4938,36.2705,9.1378,11.3262,53.1646,64.557,0.3823,1.4098,12.5762,0.1115,66.5663,87.3016,70.6897,84.4828,22.3341,2.3178 South Yorkshire ICB,C85030,Wombwell Medical Centre Practice,11075.86924,7.9711,75.3049,68.7243,3.7133,79.5181,82.2917,4.3604,87.156,4.0634,3.783,0.8661,0.9415,30.7565,9.4439,18.4271,75.3149,86.3118,0.5774,0.7665,24.2195,0.1014,91.8467,85.3384,92.4138,95.8621,18.1556,2.2499 South Yorkshire ICB,C85033,Victoria Medical Centre PMS Practice,11931.8603,5.8739,75.6374,77.3077,3.3457,62.9885,75.1196,3.0754,80.198,2.0825,1.8587,0.8195,1.22,24.3188,6.2429,12.5465,58.9064,75.5396,0.8364,0.7351,13.3046,0.14,79.733,83.3333,75.9615,85.5769,15.7868,1.9517 South Yorkshire ICB,C85614,Darton Health Centre Practice,4201.445131,8.7656,75.7353,68.75,4.5796,80.137,75.9494,3.4165,97.8261,2.7509,2.4473,0.8238,0.2116,17.734,7.7887,18.2457,59.1503,80.1418,0.3392,0.7269,17.3821,0,89.3956,79.4872,82.6087,91.3043,13.7176,1.9627 South Yorkshire ICB,C85619,St George's Medical Centre PMS Practice,9674.22385,7.5146,74.4076,70.122,2.5355,73.1788,75.3425,3.6037,96.1905,3.4974,3.3807,0.8099,0.6809,34.414,8.7386,15.4126,75.1381,88.9868,0.6926,0.986,20.4581,0.1415,88.2172,84.264,87.5,94.7917,20.1628,1.9251 South Yorkshire ICB,C85622,Monk Bretton Health Centre Practice,2528.36271,6.47,73.4177,67.7419,3.1165,78.4615,74.5098,3.6585,95.4546,4.2411,3.6585,0.7227,0.2232,29.5062,8.8559,18.5637,61.3773,68.8312,0.542,0.6323,9.4866,0.2101,80.3885,80.7018,80,83.3333,17.4654,2.71 South Yorkshire ICB,C85623,Kingswell Surgery PMS Practice,3887.678328,6.5008,84.2697,80.292,4.2316,81.0976,84.7619,2.6726,97.6191,3.2837,1.1743,0.3645,2.0523,11.145,5.4853,14.4766,67.9214,83.6539,0.2227,0.5872,14.1868,0.1927,88.6186,84.127,91.4286,91.4286,7.4529,1.7008 South Yorkshire ICB,Y00411,Dearne Valley Group Practice,13193.04014,6.9137,70.7463,63.786,2.4226,75.4258,72.2222,3.9659,92.8571,3.1489,4.4745,0.7328,1.6307,42.7698,8.1332,15.372,58.0854,67.9325,0.6811,1.0173,15.9694,0.1032,84.0803,86.2348,70.2128,82.9787,21.9576,2.1209 South Yorkshire ICB,Y04809,Lakeside Surgery,2546.371638,8.3448,67.7419,61.7021,1.6906,70.9302,69.2308,3.2544,82.1429,2.0106,3.2544,0.4227,2.1881,40.9984,8.8337,13.7363,57.0957,86.3636,0.5495,0.7185,21.7031,0.1451,89.1859,93.75,68.9655,93.1034,23.4463,1.5216 South Yorkshire ICB,Y05248,Brierley Medical Centre,3815.491739,7.5867,67.5926,64.1975,3.408,77.1429,71.2121,4.237,96.2963,4.4358,3.8072,1.4431,1.0895,31.0391,8.2249,17.4087,61.4256,81.1111,0.5527,0.6448,14.2023,0.3959,88.5754,92.4051,67.4419,97.6744,20.3513,2.1492 South Yorkshire ICB,Y05363,Bhf Highgate Surgery,3512.631954,7.1772,71.7949,71.9298,3.0109,71.2963,71.4286,2.8507,87.8788,2.4649,3.3312,1.6336,4.1649,31.6164,8.0234,14.0615,55.7377,82.1918,0.9289,1.1211,17.5946,0.2018,88.5763,88.2353,62.8571,94.2857,22.7719,1.7617 South Yorkshire ICB,Y05364,Bhf Lundwood Surgery,3824.781247,7.7264,69.0476,63.3803,2.1994,78.2946,76.1905,2.9619,90,2.7091,2.5807,1.0264,2.5128,40.8883,7.8113,11.8768,83.2402,82.9787,1.7302,1.9355,20.7303,0.0995,96.1929,84.4828,78.3784,94.5946,24.0633,1.9355 South Yorkshire ICB,C86001,Great North Medical Group,19291.27646,7.6884,71.0843,63.6598,4.4995,72.147,74.4186,3.5671,88.5542,6.3769,4.283,1.2091,1.7245,36.9074,9.997,17.6973,78.203,89.9628,0.6497,0.788,19.905,0.8805,89.6607,90,82.8,91.6,19.9572,2.4302 South Yorkshire ICB,C86002,The Ransome Practice,9175.617936,6.1259,65,55.7471,3.0256,72.5564,76.5957,3.4442,81.5534,5.4063,3.1691,0.5262,2.0817,37.3515,10.2615,15.7139,70.367,82.1429,0.6577,0.8969,17.8033,0.2342,91.722,92.7835,80.4688,91.4063,21.5588,1.8775 South Yorkshire ICB,C86003,Hatfield Health Centre,10890.6155,9.0392,71.0843,71.2389,4.0277,74.9049,76.1905,3.9228,93.8776,6.2054,3.734,2.0348,0.3565,28.4473,10.1521,18.5232,62.9105,71.831,0.4615,0.6608,17.9694,0.4065,89.7337,92.1875,83.6735,89.7959,14.027,2.6327 South Yorkshire ICB,C86005,Mexborough Health Centre,5865.860766,8.7326,67.7083,62.6087,4.0197,74.6479,77.5281,3.7941,89.7959,6.4968,3.8556,0.7793,3.6178,40.4591,10.8789,17.1862,78.0675,93.5484,0.5537,0.6358,20.1529,1.8396,90.2377,82.5503,88.8889,91.358,19.1768,2.5021 South Yorkshire ICB,C86006,Regent Square Group Practice,11297.56644,8.8435,70.5882,68.5484,3.7516,69.8225,75.8794,4.012,85.1485,4.9946,2.575,0.3665,0.567,29.7287,9.3586,14.2251,78.3557,88.6926,0.3472,0.9741,18.229,0.122,91.3416,87.451,86.9863,93.1507,17.9304,2.0349 South Yorkshire ICB,C86007,The Burns Practice,17211.30885,7.8608,78.5349,72.2667,4.0052,79.0657,80.427,2.9419,88.7851,3.165,2.9596,0.7621,2.1399,23.6116,8.4718,16.712,69.1342,85.1638,0.4903,0.8625,15.2114,1.9135,88.7797,87.6254,82.0755,92.9245,13.7089,2.1739 South Yorkshire ICB,C86009,The Mayflower Medical Practice,7576.960292,7.6033,77.2277,81.4286,4.2768,82.3232,80.791,3.3729,88.8889,4.9261,2.5229,0.5801,1.4778,12.5935,7.8584,18.7939,67.2956,84.6429,0.3778,0.6071,15.4844,0.7675,87.0406,87.9433,85.2273,96.5909,8.9407,2.5634 South Yorkshire ICB,C86011,Mount Group Practice,14387.80659,8.0123,73.0684,69.1318,3.7134,62.3679,70.751,3.1488,88.6525,4.2233,2.0051,0.8903,1.6676,22.5768,8.807,15.5411,69.3388,85.8448,0.5574,0.9121,13.2953,0.1479,88.4774,85.9649,81.9672,89.071,13.7255,1.9906 South Yorkshire ICB,C86012,The Oakwood Surgery,6148.822654,7.4136,75.1092,75.1724,4.0845,74.6835,80,3.1078,97.561,6.1283,3.605,1.5095,0.6785,20.2341,9.3259,18.629,71.9615,77.0642,0.586,1.5273,12.0595,0.2743,88.4821,87.7698,82.716,87.6543,13.3834,2.1843 South Yorkshire ICB,C86013,The Tickhill & Colliery Medical Practice,10178.78954,7.2701,77.9292,80.4255,5.0407,77.6316,75.1445,3.918,88.1579,4.5486,2.4287,1.3404,0.1787,19.2171,8.3593,22.5455,58.9174,78.1784,0.7561,0.6988,12.7525,0.1746,89.1946,80.2139,78.3019,90.566,9.44,3.013 South Yorkshire ICB,C86015,The Rossington Practice,9608.240783,5.9479,69.258,62.5,4.1391,67.6692,72.7891,3.1525,89.899,3.4478,2.9479,1.0949,0.8428,31.7424,9.9955,15.2328,51.4344,57.2414,1.0588,0.5535,12.7184,0.1517,86.7473,86.0215,82.2581,87.9032,17.2628,1.9011 South Yorkshire ICB,C86016,The Lakeside Practice,9561.762897,8.7439,73.2484,69.1964,3.9825,74.7331,79.3103,3.3479,90.5983,5.6593,3.1619,0.8972,1.0101,30.2495,9.1256,18.337,74.5865,82.948,0.5799,0.5361,19.7592,2.5607,90.1731,87.6596,88.8,96,17.3668,2.4508 South Yorkshire ICB,C86017,Kingthorne Group Practice,14733.63786,5.9235,71.09,62.807,2.8296,67.9775,75.7322,2.2857,79.4521,2.738,1.8933,0.9019,1.0729,27.9361,7.3357,14.0516,79.8698,87.2159,0.3924,0.7917,16.1874,0.2031,89.6575,86.087,88.9571,95.092,21.5789,1.8176 South Yorkshire ICB,C86018,Northfield Surgery,11601.8305,6.5305,66.8605,62.6087,2.9924,62.6623,64.5161,3.3602,80.1724,6.0501,2.9625,0.9444,1.277,32.2477,9.3154,17.457,59.5036,73.6994,0.9146,0.8251,11.9638,0.097,84.4111,85.8696,63.1206,80.1418,19.3575,1.9982 South Yorkshire ICB,C86019,The Scott Practice,17566.274,6.6186,69.6203,65.4434,3.3829,64.5683,70.7407,2.5557,84.9741,6.2294,2.2285,0.7161,2.4619,31.1997,8.1035,15.4763,70.8333,84.1542,0.6791,1.0371,14.8891,0.4138,83.1217,86.5633,77.6042,86.9792,18.3166,1.8211 South Yorkshire ICB,C86020,St John's Group Practice,10580.77399,7.696,68.0135,63.3166,3.8501,68.1004,74.0741,3.1183,86.5169,6.7936,3.0395,1.0132,2.8283,35.7811,10.1849,17.6967,74.6875,82.1918,0.9231,1.0695,19.1302,2.7043,90.8231,88.3636,81.6176,91.9118,18.0797,2.319 South Yorkshire ICB,C86021,White House Farm Medical Centre,7473.245033,7.3681,70.4348,65.1316,4.2073,69.8324,67.2414,3.8824,89.3617,4.3452,5.4906,1.4457,2.3628,22.4233,10.4088,17.4789,47.2292,72.695,0.3249,0.7635,13.336,0.1099,84.1368,85,80.8081,88.8889,16.078,2.6966 South Yorkshire ICB,C86023,Don Valley Healthcare,14930.84417,7.5137,72.0096,65.0327,3.2479,75.5647,80.1587,2.6831,90.1961,5.9206,2.5136,0.7414,1.8576,36.753,8.0789,15.4628,74.2227,83.1354,0.6425,0.7837,17.1303,2.2929,90.9672,87.171,87.5,87.5,19.5641,1.9982 South Yorkshire ICB,C86024,Conisbrough Group Practice,14893.22151,8.4912,71.2941,67.2535,3.5492,73.0667,68.7783,3.852,94.1177,4.8979,3.9109,1.1522,3.1842,35.2167,9.0152,19.4197,61.8894,82.0628,0.8579,0.8999,20.7553,0.3063,86.858,87.0253,83.2298,88.8199,19.1369,2.7586 South Yorkshire ICB,C86025,Frances Street Medical Centre,7706.594037,6.1103,66.3462,59.8639,2.7733,62.2727,68.595,2.788,81.25,4.3393,3.5551,0.4425,0.1793,35.5251,8.4677,12.5092,75.3228,86.0927,0.6491,0.8556,11.3143,0.7359,88.5025,81.2866,95.6989,97.8495,24.5827,1.8587 South Yorkshire ICB,C86026,Edlington Health Centre Practice,5836.271869,6.7055,67.9487,62.6263,3.1765,68.6391,72.5,4.3426,85.4546,4.647,3.2167,0.6434,2.2593,36.6496,9.3948,13.6912,74.4917,87.1429,0.6635,0.8444,15.8408,1.0735,83.965,95.614,81.6901,88.7324,21.0224,1.93 South Yorkshire ICB,C86029,St Vincent Medical Centre,15035.40103,7.5965,73.6308,66.092,2.963,76.2557,78.9474,3.1726,87.5,3.8818,2.4109,0.8316,0.8492,26.0076,8.9691,15.304,79.6739,90.2748,0.3634,0.8316,15.224,0.2723,90.0995,87.8594,88.6598,93.299,14.6521,2.1314 South Yorkshire ICB,C86032,Scawsby Health Centre Practice,5402.105619,6.57,76.1682,74,4.07,77.907,76.7857,2.8383,96.1539,1.5732,1.9636,0.482,0.842,20.8195,9.1226,16.3692,58.3333,78.0347,0.5355,0.5891,13.2285,0.2437,86.0582,91.8605,77.6316,92.1053,12.6186,2.1242 South Yorkshire ICB,C86033,The Nayar Practice,6169.525513,9.6131,69.0909,66.9231,3.8138,71.6578,72.2772,2.823,84.9057,4.5243,4.6551,0.8413,1.0761,37.3415,10.3755,16.1152,64.3432,81.0345,0.7104,0.5609,17.0457,0.528,85.833,82.3529,76.8293,86.5854,22.1093,2.2808 South Yorkshire ICB,C86034,The New Surgery,9307.291384,8.7321,68,61.828,4.3888,70.2479,70.5479,3.8849,91.8605,5.8843,3.9512,0.9414,3.135,40.4432,9.7884,17.0512,75.9434,85.8407,0.7558,1.3524,21.207,0.8632,90.472,83.5681,92.1053,93.8596,23.6204,2.4264 South Yorkshire ICB,C86037,Field Road Surgery,11438.7651,6.6533,68.4211,63.4615,4.0054,64.7687,67.4847,3.9113,84.3137,7.0088,3.6499,1.1086,2.1576,38.4415,10.3766,17.9879,68.4942,77.5568,0.4079,0.868,15.666,0.3351,86.2866,91,78.2895,82.8947,20.0128,2.6459 South Yorkshire ICB,C86038,Petersgate Medical Centre,9554.169519,6.9521,75.4777,67.6596,3.7193,77.7027,77.957,3.1138,91.6667,3.242,3.0165,0.6487,1.6006,24.063,8.9912,17.7749,70.1279,84.127,0.6379,0.6703,18.6924,0.3997,90.3688,85.3933,88.6179,87.8049,15.6295,2.1192 South Yorkshire ICB,C86605,Askern Medical Practice,8448.208539,6.9817,69.2308,57.2254,2.8113,70.8861,73.2394,2.6787,90.9091,5.3176,3.0765,0.4509,0.1334,37.8528,9.411,17.5839,73.2444,87.0647,0.557,0.8222,12.8688,0.0674,89.1884,88.4422,86.1111,94.4444,19.5467,1.5117 South Yorkshire ICB,C86606,Barnburgh Surgery,2468.925397,6.8091,82.6531,82.8125,5.6813,82.8571,87.234,2.6484,100,7.9249,2.7339,0.6835,1.3034,25.1166,6.9851,22.0846,78.2609,89.3204,0.299,0.299,22.5756,1.167,92.5181,74.5098,95.8333,100,8.1703,2.563 South Yorkshire ICB,C86609,Asa Medical Group,19834.88317,6.66,72.9358,69.6629,3.2187,71.9884,76.8571,2.8949,81.4433,5.2396,2.885,0.79,1.5132,18.5464,9.2162,15.6322,60.9654,79.6396,0.5397,0.7065,15.6053,0.9526,89.2807,86.5096,77.2388,82.8358,16.3644,2.0411 South Yorkshire ICB,C86611,Dunsville Medical Centre,6765.24696,8.9869,76.5432,72.1591,2.9434,74.5098,73.7226,3.5753,92.6471,7.3572,3.7448,0.9709,0.6306,22.6705,9.0943,17.3679,78.2468,86.2069,0.601,0.5085,18.8229,0.2105,92.2403,90.6103,89.8876,93.2584,14.161,2.5119 South Yorkshire ICB,C86614,Thorne Moor Medical Practice,11673.32832,8.124,74.6988,67.8414,3.4451,78.2178,79.0419,3.5592,91.4286,4.2778,4.6695,1.2763,0.845,34.3676,10.834,18.2422,81.9695,90.5063,0.7367,0.7471,34.328,0.2859,89.9154,85.6031,87.1795,91.6667,20.9483,2.4074 South Yorkshire ICB,C86616,Denaby Medical Practice,4850.771812,7.3622,65.1376,53.4247,2.6885,71.7949,63.9344,2.1619,91.3044,5.7755,4.7118,0.4712,0.2543,53.4123,10.1108,15.8259,67.8497,89.1304,0.8592,0.9424,11.878,0.7103,88.1653,88.75,85.1852,94.4444,23.8275,1.5521 South Yorkshire ICB,C86621,West End Clinic,5229.607433,9.3445,72.6027,66.3366,2.545,73.8255,70.8861,3.1154,100,4.856,3.6858,0.9653,1.214,32.3818,9.9889,16.2571,77.7429,90.2913,0.8337,0.8556,12.8176,0.1818,91.1076,88.6598,86.5672,89.5522,16.2439,1.6455 South Yorkshire ICB,C86625,Conisbrough Medical Practice,1869.447369,9.5238,59.5238,61.2903,2.3044,75,74.0741,2.0619,93.75,5.6604,2.9715,0.4851,0.5503,37.5932,7.4904,15.2214,72.8155,91.1111,1.2129,1.0916,8.5692,0.1783,91.4157,89.1892,83.3333,83.3333,20.8424,1.8799 South Yorkshire ICB,C86626,Park View Surgery,2446.844568,7.4343,73.6264,73.913,3.7448,79.7468,83.3333,2.2927,100,5.5243,1.6813,1.3756,0.3745,16.1323,7.1793,16.3546,72.4458,80.9524,0.1911,0.4203,13.9513,0.3597,90.5321,68,82.1429,89.2857,10.8655,1.5285 South Yorkshire ICB,Y05167,The Flying Scotsman Health Centre,11196.034,3.8999,50.9677,47.2441,0.927,54.4747,62.8099,1.0649,74.8503,0.5314,1.2488,0.0843,1.4337,43.3318,4.7959,6.4583,62.2086,92.8571,0.4137,0.904,8.3918,0.0935,80.0881,95.0617,72.5275,87.9121,32.6543,0.6665 South Yorkshire ICB,C87002,Dinnington Group Practice,22346.35549,8.7074,77.2606,70.8171,4.6545,79.6358,79.6482,4.1004,94.3299,5.0753,3.527,1.2142,2.1777,24.472,8.7313,20.5792,66.4319,81.46,0.583,0.901,12.1497,1.3486,89.7458,89.4737,90.2985,94.0299,12.5887,2.626 South Yorkshire ICB,C87003,Woodstock Bower Group Practice,13414.13319,7.6808,62.2807,61.991,2.9189,59.3407,68.8172,4.2346,89.0511,3.9377,2.9015,0.8365,0.2257,42.695,9.1242,16.0146,73.5256,90.3846,1.1066,1.4638,19.666,0.0768,86.6046,89.3103,84.7134,92.3567,24.2906,2.1608 South Yorkshire ICB,C87004,Kiveton Park Medical Practice,12127.09535,9.1333,77.6675,72.5694,5.3007,83.046,86.8421,3.6103,96.875,5.1177,2.5909,0.9344,2.638,15.7526,8.1897,18.493,68.4674,82.2785,0.4842,0.5437,17.9171,0.8187,90.9646,85.3175,91.791,91.0448,10.2371,2.438 South Yorkshire ICB,C87005,St Ann's Medical Centre,24015.62746,7.8813,65.8887,67.7582,3.6417,63.6364,67.6923,4.0064,84.3318,5.7929,4.2746,1.2658,1.3046,41.0081,9.6231,16.3958,59.0085,79.1667,0.8689,1.314,16.9663,0.3763,87.3074,91.2791,63.5714,93.5714,20.4296,2.5583 South Yorkshire ICB,C87006,The Magna Group Practice,18054.18822,7.5718,72.093,70.4403,3.7163,71.6024,70.0787,3.5467,92.6966,3.8285,3.8112,0.8952,1.554,40.5338,9.4629,20.2089,66.8018,84.7953,0.651,0.8613,15.8087,0.1427,87.6897,91.0663,93.75,96.1538,20.0511,2.3193 South Yorkshire ICB,C87007,Stag Medical Centre,12694.61842,8.9661,78.3186,75.1678,5.1034,83.8415,80.6034,4.0567,100,2.4128,2.543,1.2283,0.6685,18.6851,8.2397,18.7527,69.9065,81.3499,0.7785,0.8477,14.6229,0.1779,87.0706,87.3832,89.1156,90.4762,8.5327,3.1226 South Yorkshire ICB,C87008,Swallownest Health Centre,16791.40689,8.575,77.1084,72.5641,4.2842,77.1543,77.592,4.2351,94.964,5.7326,2.8582,0.8974,2.1218,20.7751,8.1429,18.8334,66.902,81.4024,0.3934,0.7315,15.7087,0.1721,86.6506,86.8687,75.1269,91.3706,12.6474,2.5324 South Yorkshire ICB,C87009,Brinsworth Medical Centre,10470.55566,7.3875,72.973,68.2028,3.4516,74.5763,77.8947,3.6327,91.6667,4.4297,1.5446,0.9535,1.9795,22.4634,8.5755,15.7418,71.2308,88.0342,0.4386,0.8867,15.3168,0.9252,90.1418,91.9643,89.7059,95.5882,15.5279,2.1644 South Yorkshire ICB,C87010,York Road Surgery,5603.430416,4.9283,66.3934,60,2.4065,70.2703,76.4706,3.3305,92.5926,4.6373,3.2445,0.9454,1.1949,49.2079,10.6704,14.9979,79.7639,91.4286,0.838,0.5587,19.5164,0.1927,89.9945,92.7928,90.411,91.7808,23.3058,1.9768 South Yorkshire ICB,C87012,Broom Lane Medical Centre,16589.80344,7.2451,72.043,76.435,3.6388,69.2771,78.0769,3.5599,89.2046,3.0958,2.9031,1.353,0.7319,29.1495,9.1293,16.4401,58.995,80.8967,0.6503,0.9787,17.6159,0.8161,86.3418,89.1892,74.0385,92.7885,13.1998,2.1018 South Yorkshire ICB,C87013,Parkgate Medical Centre,7900.987601,6.7279,65.6388,70.6667,4.186,73.913,75.8929,3.8616,89.2857,2.3935,4.186,0.7878,1.1481,33.8675,10.7102,16.9756,66.8147,82.3232,0.8804,1.2048,14.2246,0.0389,92.911,96.6667,89.5238,97.1429,20.3956,2.2397 South Yorkshire ICB,C87014,Treeton Medical Centre,8206.75621,6.8304,73.3945,65.6627,3.3934,79.5389,73.7931,2.7775,96.0265,1.3466,2.1383,0.6857,0.8171,23.0019,6.9507,11.2958,67.2111,85.7955,0.4416,0.523,16.19,0.8664,86.1103,86.8853,73.8636,90.9091,12.1356,1.6735 South Yorkshire ICB,C87015,Wickersley Health Centre,7041.095101,8.1019,77.5591,70.5202,4.2457,76.2136,75,4.6542,90.3226,2.0886,2.7867,0.9046,1.0443,18.4043,8.4104,17.6977,60.2784,78.8531,0.5836,0.6857,14.404,0.261,85.9261,88.2353,71.2644,86.2069,9.8236,2.6554 South Yorkshire ICB,C87016,Morthen Road Surgery,12483.46815,7.5061,77.4892,77.8125,4.4798,83.9779,81.4961,4.0473,97.8022,3.2258,2.9947,1.3546,1.1492,16.9631,7.6381,17.5194,71.2384,86.8735,0.4733,0.5875,17.0766,0.8508,89.5105,86.7521,82.8571,93.5714,9.8776,2.4398 South Yorkshire ICB,C87017,Clifton Medical Centre,15811.77401,7.0166,69.6056,66.3333,4.1011,65.7895,71.0526,3.7757,83.0882,3.9765,2.9737,1.188,2.0797,35.8734,9.2909,13.9982,59.3141,77.9614,1.0139,1.0745,14.4329,0.9318,82.8961,88.9262,80.663,84.5304,16.2773,2.3305 South Yorkshire ICB,C87018,High Street Surgery,9005.320598,6.7878,73.4317,79.7927,4.4006,75.2101,78.2895,3.7557,94.8276,2.1988,3.0223,1.2898,1.3936,27.5359,7.7182,16.1229,71.8466,85.5634,0.392,0.6196,9.1669,0.1741,87.2671,88.5714,87.9121,75.8242,12.6449,2.39 South Yorkshire ICB,C87020,Greenside Surgery,6941.740045,7.503,75.3555,75.3247,4.2841,80.6667,81.0345,4.9886,93.3333,5.1916,4.4174,1.2567,1.8137,36.4612,9.375,21.8964,69.1969,87.1369,0.3427,0.9139,21.4464,0.12,90.8327,91.3386,88,96,16.9194,2.7989 South Yorkshire ICB,C87022,Village Surgery,9248.636106,8.0178,76.6393,69.3182,2.5133,80.2048,76.5957,3.2684,95,1.9587,2.6077,1.1681,0.5815,32.8953,9.0416,16.9676,69.6095,93.0769,0.6962,0.7788,23.137,1.2258,91.2325,87.7419,90.0901,96.3964,15.9988,2.2773 South Yorkshire ICB,C87024,Rawmarsh Health Centre,4111.345099,5.8921,67.8261,71.6049,2.6038,72.1805,72.4638,3.274,83.3333,1.3249,3.042,0.4383,0.6625,34.3192,7.7249,14.6687,67.8423,81.6092,0.464,0.7476,13.0176,0.2199,87.0064,94.9153,90.9091,93.1818,19.5645,1.9335 South Yorkshire ICB,C87029,Market Surgery,13342.27247,9.4549,75,76.2238,3.4642,82.5123,79.8165,4.0813,96.1539,2.9785,3.4889,1.3001,2.0241,28.0794,8.7087,16.9588,78.6993,90.6494,1.0286,1.1026,22.1919,0.1289,88.1293,86.3799,86.7925,91.195,15.9668,2.4356 South Yorkshire ICB,C87030,Crown Street Surgery,11288.60634,9.1508,74.4928,75.5556,4.062,77.1626,74.8571,4.1464,94.4444,4.8007,4.6951,1.1711,2.3033,32.201,9.9962,20.0464,63.5153,78.8945,0.6119,0.8968,18.4524,0.1689,88.9744,87.0036,86.8966,93.7931,14.4269,2.7326 South Yorkshire ICB,C87031,Dr Raolu's Practice,4551.302192,8.573,73.7589,67.0213,4.3755,74.7967,78.8732,4.35,95.2381,5.486,3.2562,0.6869,2.0533,33.3538,10.1399,19.8677,73.3959,81.6901,0.7886,0.7632,16.394,1.761,91.255,86.4865,77.9661,93.2203,20.9786,2.6456 South Yorkshire ICB,C87603,Greasbrough Medical Centre,4887.669301,6.7852,64.2202,62.8205,2.7842,72.0588,74.2857,3.6271,94.2308,3.8928,4.1124,1.2261,0.702,40.9553,9.1654,16.8838,76.087,82.5688,0.7152,1.5581,13.8162,0.3546,89.1397,88.8889,79.6296,85.1852,23.4043,2.2222 South Yorkshire ICB,C87604,Thorpe Hesley Surgery,5822.683637,8.1696,76.5258,69.3431,3.6948,83.2432,77.3585,3.0732,90.9091,3.0557,2.4344,0.5007,1.076,24.9576,7.4725,17.2134,71.7576,81.3953,0.4489,0.7251,11.147,0.1252,92.9099,87.8788,86.1538,96.9231,12.4161,1.9164 South Yorkshire ICB,C87608,Shakespeare Road Surgery,6043.088475,6.6667,52.6316,41.9355,1.2139,58.2938,64.9123,2.6329,84.6154,2.4123,1.9832,0.7352,0.5361,53.6058,10.9788,11.113,64.3103,84.2857,0.9916,0.9232,16.3499,0.2691,90.0794,88.806,73.6264,87.9121,29.0864,1.4532 South Yorkshire ICB,C87616,Blyth Road Medical Centre,7079.248409,9.1388,77.0925,70.9877,3.9379,77.5401,76.9231,4.0179,100,2.7589,3.9539,1.7769,1.7993,30.9554,9.0855,14.8551,72.4274,86.4706,0.8804,0.8964,19.0324,0.3314,89.354,90.6977,90.6977,94.186,17.0987,2.5452 South Yorkshire ICB,C87620,Manor Field Surgery,7892.805553,10.0428,75.2101,69.8718,3.6081,75.4545,77.9661,3.9076,91.8367,3.5281,4.421,1.3263,1.8192,33.2236,9.8337,18.9104,65.5546,82.4885,0.8985,1.0839,20.6909,1.1091,87.6802,89.8204,74,94,18.6096,2.4672 South Yorkshire ICB,C87622,Gateway Primary Care,10672.03378,6.4881,61.5,56.7376,1.9011,61.6246,65.873,2.1277,81.8841,1.0762,2.7778,0.7683,0.7521,42.8497,6.7492,10.4905,74.9733,86.9231,0.7585,1.3692,16.4808,0.7887,89.2338,91.3044,86.4078,92.233,28.2297,1.3495 South Yorkshire ICB,C88005,Walkley House & Stannington Medical Centre,15375.90229,7.0937,,,3.9697,,,3.1634,93.9394,3.0781,1.6375,0.8746,1.192,15.4298,5.5593,13.646,68.663,85.192,0.6699,0.8622,9.9132,0.5161,81.3865,81.5126,89.2308,94.6154,10.0679,2.326 South Yorkshire ICB,C88006,Norfolk Park Health Centre,6623.54963,7.5912,63.964,,2.5271,,,3.0144,84.1463,3.6923,3.195,0.5415,1.0414,44.0637,7.9217,12.2383,76.3964,86.1789,0.8303,1.1552,13.5148,0.1305,91.5924,82.3009,92.0635,95.2381,19.2774,2.3105 South Yorkshire ICB,C88007,Porter Brook Medical Centre,17388.85032,4.1845,66.3366,,0.976,,,0.7492,95.2,0.6128,0.4708,0.4777,0.4334,22.3414,1.7743,3.203,73.8776,83.7564,0.2165,0.7904,4.6071,0.2806,74.0535,78.8462,87.8378,91.8919,14.2903,0.543 South Yorkshire ICB,C88008,Forge Health Group,17134.92455,7.5069,60.3279,,2.1694,,,2.8948,70.8791,3.2308,2.4985,0.9672,2.5098,49.5401,9.7199,12.7275,66.4755,83.4356,1.1082,1.7261,12.3391,0.5314,82.0963,86.076,85.7143,91.133,18.9777,1.9007 South Yorkshire ICB,C88009,Foxhill Medical Centre,6994.174815,9.1683,63.8418,,3.6823,,,3.897,88.1579,4.6403,3.0879,0.7431,0.9579,42.9602,9.471,16.6447,65.2963,81.2155,1.1228,0.9577,16.4964,0.2251,89.9061,92.0245,87.9518,93.9759,20.2391,2.4604 South Yorkshire ICB,C88010,Chapelgreen Practice,16312.63415,7.5777,77.2414,,4.8867,,,4.8725,92.1348,6.5372,2.3374,1.0946,0.8784,19.8632,8.6482,19.9703,64.9147,81.3354,0.9463,1.0239,12.7027,1.8444,82.5039,86.6511,77.6042,94.2708,9.171,3.4602 South Yorkshire ICB,C88011,Buchanan Road Surgery,6024.485918,9.2102,63.8655,,2.0485,,,4.1806,85,4.2138,3.8253,1.2124,2.4321,54.8864,9.3585,13.9005,75.0452,83.0357,1.3169,1.505,17.5622,0.1355,86.6861,92.5,80,93.3333,23.9418,2.6129 South Yorkshire ICB,C88014,Norwood Medical Centre,11869.68393,8.6053,65.0602,,3.125,,,3.7192,81.3008,5.1068,3.6202,1.2654,2.6046,52.9091,9.7561,16.9124,68.6259,90.2878,1.6725,1.2874,20.4712,0.4254,88.0347,84.5188,85.7143,92.8571,21.829,2.3548 South Yorkshire ICB,C88015,Meadowgreen Health Centre,22046.4286,8.4666,76.7802,,4.7234,,,3.8932,88.3249,5.9608,2.7689,0.8091,1.307,30.0361,8.3556,19.855,68.6206,84.1936,0.7566,1.2242,15.8096,0.5865,89.8921,84.632,82.7586,92.6724,16.2138,2.7531 South Yorkshire ICB,C88016,Carterknowle & Dore Medical Practice,11576.60547,7.3051,78.8636,,5.3193,,,3.4542,95.0413,5.128,1.3877,0.761,1.0406,9.6947,5.7975,15.0254,76.8284,88.2033,1.1937,0.9251,10.6497,4.496,90.0927,83.7209,94.3396,98.1132,7.7838,2.7007 South Yorkshire ICB,C88018,Tramways Medical Centre (O'Connell),9026.417232,6.8147,73.8832,,4.2751,,,3.7253,93.3333,2.1174,2.2666,0.7742,0.4154,19.6448,6.4995,14.2056,71.8557,87.8378,0.6957,0.763,7.1295,1.7246,86.1156,82.0225,84.2697,88.764,13.3008,3.0408 South Yorkshire ICB,C88019,Gleadless Medical Centre,10136.48321,7.8613,66.3507,,3.0421,,,2.847,82.6531,4.7003,2.7207,0.861,1.9726,49.1494,8.6451,14.8203,53.6053,72.1519,1.125,1.3202,13.8696,0.7275,81.8097,86.6667,80,91.5789,23.9313,1.8712 South Yorkshire ICB,C88020,White House Surgery,8995.41443,8.4996,,,2.5284,,,3.5987,89.0244,4.975,3.4248,0.7492,2.1041,54.377,9.4436,13.9532,70.8749,87.1429,0.9498,1.1505,14.2653,0.592,90.8156,83.6735,86.2745,96.0784,23.9694,2.0736 South Yorkshire ICB,C88021,Far Lane Medical Centre,8340.129292,7.1038,74.5645,,4.4229,,,4.051,93.1035,4.5505,2.3111,0.5578,1.6446,23.0737,7.1857,16.1907,75.5486,85.4962,0.8235,0.5977,12.1028,0.1794,88.2859,83.2215,89.0244,95.122,13.2031,2.7892 South Yorkshire ICB,C88022,Stonecroft Medical Centre,5564.337697,10.0638,79.4737,,4.6929,,,4.3907,89.3617,5.9375,2.3565,1.0272,1.7548,21.4048,7.7873,19.0937,58.4507,81.5126,0.9265,0.6244,9.9279,2.8522,85.5859,77.7778,77.0492,80.3279,11.2343,3.5045 South Yorkshire ICB,C88023,Sothall & Beighton Health Centres,10087.75501,8.5436,75.718,,4.5159,,,3.8665,90.7692,5.3896,2.1819,0.6698,1.3692,18.9896,7.7528,17.5766,64.6853,81.457,0.9742,0.7814,17.2766,1.2405,85.3085,84.7737,76.1062,90.2655,11.9042,2.9227 South Yorkshire ICB,C88025,Birley Health Centre,9571.80884,9.569,75.1773,,2.3791,,,4.2516,95.3488,5.0102,2.9409,1.52,0.1911,24.6589,7.6488,15.3651,64.8725,81.5476,0.727,0.727,9.6792,0.876,89.5368,78.5047,86,85,13.3333,2.7096 South Yorkshire ICB,C88026,Sloan Medical Centre,13015.47054,9.0561,72.191,,3.4048,,,2.4859,91.0256,2.7941,1.7309,0.6197,0.5882,24.1425,7.6064,12.7787,71.9504,83.6735,0.8263,1.4175,13.5846,0.7921,87.9631,87.4477,82.5503,94.6309,14.8784,1.9873 South Yorkshire ICB,C88027,Upwell Street Surgery,5300.741445,7.6771,,,1.4006,,,3.1213,78.125,2.9774,1.7807,1.6807,0.8302,46.3018,10.8508,11.8247,70.8419,86.5385,0.8804,1.6207,15.2591,0.3244,90.2951,87.6106,84.8101,91.1392,19.2817,2.2409 South Yorkshire ICB,C88028,Broomhill Surgery,8164.364011,6.428,79.3443,,4.3587,,,3.0584,93.9024,1.6662,0.8114,0.7386,0.9558,7.1397,4.9611,13.4817,78.9357,85.7868,0.2601,0.749,5.1795,0.4562,86.6215,83.6364,91.0448,94.0299,5.7711,2.8919 South Yorkshire ICB,C88030,Duke Medical Centre,9168.870493,6.6288,62.9808,,2.6073,,,2.8256,83.5616,3.5361,2.1465,0.473,2.757,39.3128,7.8597,12.5879,59.8398,79.8781,0.6185,0.958,11.4924,0.2373,83.8002,88.2682,72.3404,82.9787,20.8801,2.0252 South Yorkshire ICB,C88031,Upperthorpe Medical Centre,12976.25042,6.7564,,,3.0871,,,3.1549,85,2.4059,1.4833,0.8734,1.1837,19.3852,6.0851,11.588,68.9502,83.8554,0.6024,1.2876,9.3543,0.8054,79.7522,84.3434,78.1513,89.916,11.3156,2.5073 South Yorkshire ICB,C88032,Charnock Health Primary Care Centre,6597.3962,6.8127,76.9585,,5.1923,,,3.8811,96.1539,6.2606,1.8532,1.8706,0.8883,19.0706,7.8964,17.3077,72.9136,85.0163,0.5245,1.014,13.9594,0.4389,79.7306,80.7692,82.6087,92.7536,9.628,2.6923 South Yorkshire ICB,C88034,Nethergreen Surgery,7676.364367,7.5571,84.901,,4.2149,,,2.6534,97.9167,3.1046,0.808,0.6443,0.6396,5.2433,4.6859,15.8113,64.3047,82.4451,0.3385,0.8408,4.517,2.4018,79.3676,80.1724,91.3793,93.1034,4.3539,2.708 South Yorkshire ICB,C88035,Firth Park Surgery,11227.53982,6.6897,60.8108,,2.4475,,,2.8136,78.2313,3.6275,1.8404,0.5396,2.1386,51.4337,9.3244,12.1122,66.3198,81.5,0.8383,0.819,14.8078,0.7364,88.3161,85.0467,89.1304,92.7536,17.3891,1.6959 South Yorkshire ICB,C88036,Handsworth Medical Practice,10482.67775,7.5271,79.6721,,3.7676,,,3.702,95.8621,4.3,1.9213,0.5717,1.3407,22.1755,7.6336,16.8604,68.6963,85.1117,0.5998,0.5811,11.6198,0.7107,83.5097,84.5411,91.453,96.5812,12.2966,2.4274 South Yorkshire ICB,C88037,"Baslow Rd, Shoreham St & York Rd Srgies",13342.73182,6.6465,71.0875,,3.8394,,,3.2482,85.1064,6.5671,1.9781,0.7518,1.4942,24.4198,7.2207,19.0365,78.6976,88.1978,0.8102,1.1533,16.2055,0.9125,91.1059,83.9041,91.6667,95.8333,14.1317,2.292 South Yorkshire ICB,C88038,The Mathews Practice Belgrave,6659.489896,6.9533,61.4583,,3.0651,,,3.387,87.1795,3.9379,1.9157,0.4751,1.1462,25.5078,7.9643,15.387,68.0879,83.913,0.9349,1.1801,8.0237,0.4006,80.346,83.4483,83.75,93.75,13.387,2.4215 South Yorkshire ICB,C88039,Ecclesfield Group Pract,10352.39314,11.4243,73.9437,,3.8212,,,4.6897,91.0112,6.1608,3.3812,1.6327,1.3545,32.003,10.4197,19.9398,68.8737,84.8039,1.0653,0.9727,16.5453,2.4579,90.2951,90.2527,87.3134,97.0149,12.5562,3.1265 South Yorkshire ICB,C88040,Oughtibridge Surgery,5587.855068,9.0415,79.646,,3.7099,,,4.0608,100,4.0742,1.9552,0.752,0.55,13.4125,5.4256,16.7948,63.038,83.2558,0.3844,0.5515,8.3316,0.2537,82.5166,86.3158,91.6667,95.8333,6.9601,2.9579 South Yorkshire ICB,C88041,Woodseats Medical Centre,11652.45709,8.1116,,,3.9208,,,3.2957,96.5986,6.1345,1.7209,1.3719,1.6767,15.9863,6.5807,16.438,78.9172,90.5494,0.6575,0.9092,13.8956,0.3861,92.0022,84.6774,94.7368,98.2456,10.898,2.6382 South Yorkshire ICB,C88043,Tramways and Middlewood Medical Centres,9387.939809,7.2555,74.3151,,2.9738,,,2.4658,88.7851,2.4854,1.7732,0.4525,0.8518,18.9891,6.0962,14.3517,73.6079,83.1276,0.8958,0.8404,7.6196,0.1888,87.1789,85.906,93.5484,97.8495,11.6557,2.0318 South Yorkshire ICB,C88044,Manchester Road Surgery,4463.846405,7.9683,83.2298,,4.1549,,,3.4781,97.5,2.0843,1.5416,0.752,0.599,6.578,5.252,12.6152,73.2793,79.0961,0.564,0.8272,5.3426,1.5196,90.6939,75,85,92.5,6.4941,2.3689 South Yorkshire ICB,C88045,Dykes Hall Medical Centre,9226.176869,7.8944,75,,5.4847,,,3.593,92.6471,5.3858,3.2796,0.694,1.6445,19.1482,7.5803,18.8493,74.9424,87.4674,1.0298,1.0186,8.8667,1.7544,89.85,83.0275,89.3204,89.3204,15.7449,2.4513 South Yorkshire ICB,C88046,Beauchief Medical Practice,6208.413358,7.6213,78.8136,,4.128,,,3.0752,98.9691,3.5014,1.122,0.5402,1.243,12.568,5.2422,14.9051,70.7466,85.7143,0.5541,0.845,8.0357,0.6543,89.5637,89.9083,83.0189,94.3396,7.8965,2.1194 South Yorkshire ICB,C88047,Wincobank Medical Centre,8577.180244,8.6051,,,3.4805,,,3.9283,92.5926,4.755,2.9047,0.691,1.9246,33.0436,9.2607,15.6878,73.6041,87.1369,0.8829,1.254,18.6156,0.3193,89.4785,88.0734,91.8182,94.5455,16.6461,2.3672 South Yorkshire ICB,C88048,Burngreave Surgery,8496.237978,7.654,60.2837,,1.8055,,,2.6828,68.8073,3.4178,2.3013,0.267,1.8911,50.6718,9.7362,9.4596,47.3101,66.0714,1.3732,1.6275,13.567,2.0296,85.4561,85.4546,75.9259,87.963,20.208,1.602 South Yorkshire ICB,C88049,Elm Lane Surgery,6577.599138,7.8178,75,,3.7372,,,4.3405,93.2203,6.2821,3.0334,1.1731,2.443,29.504,8.2067,18.9207,77.1205,92.2747,0.905,0.8547,10.8602,0.7177,90.6624,87.3418,89.6104,96.1039,11.9548,2.7485 South Yorkshire ICB,C88050,Jaunty Springs Health Centre,4273.518161,8.6621,80.9524,,4.8873,,,4.5887,88.8889,5.467,3.1768,0.7331,2.0176,23.9241,8.7069,18.4089,59.6869,82.6347,0.9232,0.8146,11.4872,0.23,88.999,82.6531,73.4694,91.8367,13.4645,3.1496 South Yorkshire ICB,C88051,Page Hall Medical Centre,8145.342969,6.9834,53.8462,,1.2463,,,2.635,68.1159,3.1482,0.997,0.914,1.5914,50.4189,10.9768,8.7834,66.881,83.8983,0.8071,1.4481,21.4842,0.3014,86.3889,83.9024,72.2222,94.4444,17.8861,1.5786 South Yorkshire ICB,C88052,Hollies Medical Centre,9152.909617,8.8286,81.9876,,4.3948,,,2.573,94.6154,3.6339,1.1175,1.202,1.4834,11.7879,4.1984,12.3016,71.6,79.6774,0.5071,1.4743,8.8662,4.0237,89.3348,84.127,85.4839,91.9355,9.0889,2.2819 South Yorkshire ICB,C88053,Falkland House Surgery,3300.452728,7.9531,85.7143,,5.5073,,,2.657,92.5,5.0873,1.087,0.7971,2.8501,4.5174,4.917,16.256,80.9055,92.1212,0.4831,0.6763,4.7196,3.2013,92.1993,82.4561,85.1852,92.5926,4.1936,1.8116 South Yorkshire ICB,C88054,Grenoside Surgery,8478.134587,6.9373,73.6301,,4.0804,,,3.7435,92.1053,3.1284,2.3833,0.8735,1.4948,27.1848,7.544,16.858,67.3022,87.4172,0.5366,0.574,17.1675,0.2804,95.7189,87.2483,71.2644,94.2529,10.8486,2.4457 South Yorkshire ICB,C88059,Harold Street Medical Centre,2802.122962,5.9224,50.6667,,1.9578,,,2.8023,69.2308,1.5228,1.5739,0.1919,1.569,33.5059,9.5716,13.2438,52.8571,61.5385,0.6142,1.8426,8.3526,0.2165,69.8582,95,75.6098,85.3659,20.0542,1.382 South Yorkshire ICB,C88060,Sharrow Lane Medical Centre,4068.918773,7.3217,50.6024,,1.5814,,,3.1628,74.5455,3.5551,0.7687,0.3734,1.4622,25.0004,13.1943,10.3888,75.4522,84.8837,0.6369,1.6033,8.1709,0.1866,87.7067,91.8367,89.8876,91.0112,18.0879,1.7351 South Yorkshire ICB,C88062,Rustlings Road Medical Centre,3547.650356,6.7491,81.5385,,3.6716,,,2.0833,97.5,3.4304,0.6807,0.5982,0.4678,6.6694,4.0675,11.4068,70.3271,81.6,0.5157,0.7838,4.5998,1.8152,86.9146,76.7857,76.9231,92.3077,5.6656,1.9596 South Yorkshire ICB,C88069,Clover Group Practice,15663.60733,5.5625,52.2936,,0.917,,,2.6173,73.9796,2.8197,1.2163,0.5731,1.3882,45.2334,10.63,9.7816,56.2646,72.51,0.5859,1.1399,12.6583,0.3591,80.1473,91.0112,70.4167,90.8333,18.4992,1.4137 South Yorkshire ICB,C88070,Shiregreen Medical Centre,9024.882879,7.6871,62.2222,,2.6877,,,3.2051,88.9908,4.3344,2.511,1.1735,2.5456,48.0496,10.6662,14.7382,65.5824,79.0698,1.1609,1.2745,19.3154,0.1676,89.8122,81.9096,85.8333,94.1667,19.8118,2.1956 South Yorkshire ICB,C88072,Woodhouse Medical Centre,16177.16354,10.18,,,4.3471,,,5.325,94.6903,7.0085,3.5171,1.4217,1.4361,32.6061,9.3307,18.0294,73.0398,81.1567,1.5942,1.2244,15.2002,1.677,90.0849,83.8462,87.2832,95.9538,16.9454,3.6733 South Yorkshire ICB,C88073,Heeley Green Surgery,6296.049831,8.0054,71.2644,,2.8818,,,2.8278,88.5246,5.1643,2.4676,0.9546,0.9613,31.74,7.0404,12.7342,64.7569,75.5725,0.9906,1.477,10.7758,0.4434,82.5397,79.6748,72.4138,89.6552,18.583,2.2695 South Yorkshire ICB,C88074,Deepcar Medical Centre,5451.724723,7.8048,72.5714,,3.7405,,,3.9743,93.75,3.1897,2.0456,1.0715,1.333,19.5393,7.8824,15.7023,75.6508,90.8497,0.5845,0.7598,8.2123,0.2751,90.5683,81.4516,90,96.6667,11.612,2.63 South Yorkshire ICB,C88076,Devonshire Green Medical Centre,9579.173797,4.9685,56.4935,,1.9226,,,1.8523,78.6885,2.0478,1.7585,0.1993,1.3469,26.9511,6.4195,8.136,66.1485,81.7391,0.6917,2.3681,9.0434,0.3586,71.5823,79.6748,66.6667,85.0575,17.992,1.1489 South Yorkshire ICB,C88077,Green Cross Group Practice,8903.996898,8.9308,63.9024,,2.7861,,,3.5282,91.7808,4.2415,4.1531,1.341,1.0208,51.6375,9.6429,17.2113,69.8975,79.5181,1.0025,0.9764,16.4027,0.3562,87.8309,84.3434,81.3084,89.7196,22.1527,2.3174 South Yorkshire ICB,C88078,Mosborough Health Centre,7102.159944,7.3505,77.2,,3.953,,,3.6523,94.8718,4.146,2.263,0.6302,1.3111,16.7064,7.2514,17.2443,70.9438,85.4406,0.9739,0.6016,15.9993,0.5612,89.4055,83.6601,86.6667,96,9.8971,2.8932 South Yorkshire ICB,C88079,Crookes Practice,6700.377912,7.6357,77.9412,,2.6419,,,1.3729,94.3182,1.525,0.8422,0.4384,0.5789,10.244,3.6934,8.9294,68.6371,74.5455,0.7153,1.2114,4.8715,0.4825,80.6327,82.5397,73.913,91.3043,9.9201,1.5113 South Yorkshire ICB,C88082,Carrfield Medical Centre,4294.787426,4.6829,61.6667,,1.5271,,,1.5052,65.625,1.9646,1.1998,0.0654,2.9715,31.5239,3.6306,7.1771,62.9496,82.3529,0.589,0.9599,8.3497,0.3745,86.8973,83.3333,85.1852,96.2963,48.5899,1.2216 South Yorkshire ICB,C88083,Selborne Road Medical Centre,2288.136127,7.389,78.4483,,5.4861,,,3.3481,85.7143,4.8954,0.9278,0.6051,1.8061,6.8402,6.6698,18.0315,78.3784,85.0877,1.3312,1.0488,5.038,0.6187,87.5341,80.7692,92.3077,96.1538,5.2189,2.7834 South Yorkshire ICB,C88084,Clover North Darnall Health Centre,3572.463285,7.7618,62.1622,,2.5657,,,3.864,85,4.7228,3.1839,0.1855,0.4107,42.2562,11.9019,14.6522,58.2011,77.0833,0.9274,1.8238,16.4682,0,87.2822,94.2308,74.1379,89.6552,18.3962,2.473 South Yorkshire ICB,C88085,Richmond Medical Centre,10653.79783,9.4992,72.7273,,3.6476,,,4.2538,87.7193,5.4796,3.125,1.087,1.2025,34.1005,8.7103,17.0464,65.3214,86.3481,1.0452,0.9093,14.7855,0.5882,86.9987,84.7328,84.1667,94.1667,16.9561,2.9473 South Yorkshire ICB,C88086,Southey Green Medical Ctr,3275.350913,8.5391,65.2174,,1.6892,,,3.1156,82.6087,3.9474,3.9414,1.2763,0.6579,55.3841,9.5238,15.3904,64.127,72.6316,0.8258,1.0135,15.6377,1.0676,88.6831,86.7925,78.3784,86.4865,24.1346,1.952 South Yorkshire ICB,C88087,Dovercourt Group Practice,10727.57164,8.1802,70.3422,,2.6339,,,3.276,82.5243,4.306,3.8093,0.6313,1.5439,40.3479,8.4158,15.3788,77.316,90.3101,1.1972,1.1863,20.0567,0.2565,89.5028,88.2927,93.8596,95.614,20.8254,2.155 South Yorkshire ICB,C88088,East Bank Medical Centre,8308.710544,11.9544,68.5535,,2.894,,,2.6608,89.7196,3.7401,2.3591,0.3155,2.1912,48.5226,9.7068,13.3589,66.0757,84.375,1.4127,0.9327,23.2339,0.7839,88.7521,92.8571,86.3158,93.6842,21.6692,1.8379 South Yorkshire ICB,C88090,Manor and Park Group Practice,9962.876195,6.313,60.1896,,2.8716,,,3.2043,75.9494,4.3012,3.4015,0.7025,1.6701,49.2013,9.5725,13.0392,79.5662,84.6154,1.1338,1.0722,16.2124,0.6849,84.4537,85.6436,82.5,93.3333,25.1627,2.2307 South Yorkshire ICB,C88091,Barnsley Road Surgery,2657.387583,9.2403,66.129,,3.0794,,,4.1329,94.8718,6.6921,2.8363,0.4052,3.3732,49.6527,10.6166,17.342,77.3481,90.9091,0.5673,0.4052,8.7595,0.2469,91.0186,85.9155,94.5946,94.5946,19.887,1.6208 South Yorkshire ICB,C88092,Valley Medical Centre,10235.28758,7.8028,,,4.6551,,,4.1896,92.9578,4.1577,2.7613,1.0686,1.1087,20.2368,8.8411,19.3504,71.3475,87.5895,0.6454,0.857,14.6907,0.997,89.5918,86.9919,90,92.3077,11.3405,2.92 South Yorkshire ICB,C88095,Mill Road Surgery,6150.010481,7.544,78.4038,,4.7868,,,3.977,100,5.6865,2.3394,1.4396,0.6054,18.993,7.9829,19.201,68.2987,88.4,0.6838,0.6658,12.3027,0.3082,89.9345,83.5821,85.2941,95.5882,8.682,3.5091 South Yorkshire ICB,C88622,Sheffield Medical Centre,2645.929011,5.7605,61.7647,,1.2791,,,1.783,84,3.6364,0.8139,1.0078,1.1655,42.7875,9.0909,12.0543,61.0656,79.1045,0.9302,1.2791,10.8159,0.1984,86.9231,89.0909,88.8889,91.6667,17.7989,1.3954 South Yorkshire ICB,C88627,University Health Service Health Centre,18963.52615,2.4402,,,0.1798,,,0.0099,72.2222,0.015,0,0,1.9867,16.0962,0.254,0.1551,60.3175,,0,0.2216,3.2805,0,85.2174,100,83.3333,83.3333,5.5067,0.0246 South Yorkshire ICB,C88631,Veritas Health Centre,1330.770874,7.3171,,,2.6495,,,4.0761,87.5,4.7885,1.6984,0.2717,0.9577,21.2612,12.8063,15.0136,83.5227,77.7778,0.6114,0.6794,19.6329,0.2037,79.288,86.2745,89.6552,96.5517,15.3846,1.4946 South Yorkshire ICB,C88647,The Thorpe Practice,11243.4061,8.711,73.5897,,4.181,,,4.926,81.3187,6.9055,3.2871,1.1454,1.0886,20.813,9.1245,18.9776,64.2726,79.7066,0.6611,1.0988,14.0832,1.9198,90.2731,86.1446,75.3333,89.3333,16.4909,3.1381 South Yorkshire ICB,C88648,Crystal Peaks Medical Centre,8071.752867,9.0279,75.7475,,5.0316,,,4.9741,93.75,4.8121,3.3209,0.8626,1.8534,25.4219,9.8905,23.0736,65.9415,75.7353,0.7907,1.0351,13.8072,0.2966,89.5129,88.67,82.8571,88.5714,12.5418,3.1484 South Yorkshire ICB,C88652,Greystones Medical Centre,2586.631227,7.8808,80.2469,,2.8993,,,2.278,97.1429,3.8891,0.9319,0.3624,1.0822,5.6824,3.9788,10.6135,68.9103,76.5306,0.9319,0.5954,4.6669,1.9811,90.8093,84,90,95,7.7752,1.8121 South Yorkshire ICB,C88655,The Medical Centre Dr Okorie,1174.780474,6.5116,62.963,,2.5087,,,3.1142,72.7273,5.6416,1.4706,0.346,0.5531,36.5056,14.1304,14.3599,63.2,70.7317,1.0381,0.692,16.1504,0,87.5764,91.8919,91.3043,100,12.591,1.9031 South Yorkshire ICB,Y05349,Clover City Practice,3871.173946,3.2886,53.4884,,0.662,,,0.7377,75,0.5915,0.4161,0.0189,0.5232,27.865,3.7404,4.7853,60,100,0.3405,2.0049,7.3021,0.3086,69.0266,82.6087,73.3333,90,15.2299,0.4161 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence Herefordshire and Worcestershire ICB ,M81001,St Stephen's Medical Partnership,18076.36866,7.8681,72.8086,70.9677,3.9164,69.8816,78.125,2.9772,92.7778,6.5081,2.3055,0.4099,1.8179,23.1719,9.1397,16.0585,65.1093,82.582,0.797,0.7799,15.176,1.5908,90.8917,84.3683,83.0435,93.4783,17.9898, Herefordshire and Worcestershire ICB ,M81002,Elgar House,14363.44236,6.0006,69.7892,73.0496,2.752,61.7063,70.7424,3.0079,85.2459,5.5212,1.9914,0.4425,1.9952,25.4143,7.9675,15.9176,57.8176,81.5217,0.9197,0.6984,12.5301,0.6365,85.8065,82.6748,82.5581,91.8605,18.5494, Herefordshire and Worcestershire ICB ,M81004,Riverside Surgery,15234.93198,6.4081,77.2569,80.4233,5.0913,67.5732,73.9726,3.2528,95.8904,7.5215,1.4335,0.6364,0.8366,17.121,8.1524,18.893,69.6829,82.7526,0.4757,0.6878,14.7068,0.9829,87.2363,82.2917,82.2335,93.401,17.7969, Herefordshire and Worcestershire ICB ,M81005,Northumberland House Surgery,14152.95921,8.1603,71.9258,67.8689,4.3355,72.6636,77.8689,3.5048,96.2963,4.9208,2.696,0.5684,1.1676,28.1284,9.3236,16.2198,64.3255,80.0926,0.8307,0.7068,18.4969,1.1916,89.8202,78.4127,82.5641,88.7179,19.7199, Herefordshire and Worcestershire ICB ,M81006,Severn Valley Medical Practice,18737.79623,6.3639,74.2543,77.0042,4.0685,66.4316,76.0814,2.3421,93.956,4.5047,1.4302,0.4582,1.1588,13.4573,6.861,14.293,56.5632,75.1857,0.7359,0.6989,16.3088,0.9841,86.809,83.4646,77.1689,88.5845,11.9218, Herefordshire and Worcestershire ICB ,M81007,Bredon Hill Surgery,5337.223293,7.3895,83.8583,80.2326,6.3984,77.0992,82.2222,4.0234,91.6667,7.6874,1.7015,0.5495,0.887,9.0721,6.6486,22.6338,68.0162,82.699,0.1241,0.514,11.7001,0.783,87.1656,80.9524,83.9286,94.6429,7.7316, Herefordshire and Worcestershire ICB ,M81008,Spring Gardens Group Medical Practice,18262.47821,5.7912,67.4952,64.2254,3.8024,63.6616,70,2.5008,91.2281,4.9273,2.0396,0.5586,1.9262,22.8179,7.6398,15.2147,67.4419,84.2349,0.4817,1.1479,13.999,3.039,86.0147,82.9327,84.6491,87.2807,21.4109, Herefordshire and Worcestershire ICB ,M81009,Golden Valley Practice,5824.053829,7.2482,77.1784,65.5844,5.1221,78.8618,79.646,3.1886,97.561,6.4876,2.154,0.882,0.6818,20.0458,7.0261,19.1147,74.3064,86.2416,0.4071,0.6954,14.1529,1.1829,90.987,86.4865,70.9091,94.5455,9.5154, Herefordshire and Worcestershire ICB ,M81010,Kidderminster Medical Centre,15575.72001,7.9275,70.4955,60.8392,4.3682,73.7179,80.4348,3.1922,93.7063,6.8335,2.1981,0.623,2.9749,26.6658,8.6701,17.8579,64.7376,83.7891,0.742,0.784,19.678,2.4275,89.9027,80.2031,85.8696,92.9348,20.542, Herefordshire and Worcestershire ICB ,M81011,Ombersley Medical Centre,6063.324399,7.8045,79.4326,74.5946,5.3649,82.7778,86.1111,3.9457,98.5714,7.3185,2.1366,0.5147,1.3994,16.5489,6.5534,22.4267,75.2829,83.737,0.5303,0.5458,9.531,1.648,92.5666,84.375,84.6154,92.3077,9.9139, Herefordshire and Worcestershire ICB ,M81012,Ledbury Health Partnership,13752.42877,7.6521,77.6801,79.8365,5.3899,67.93,72.8571,3.7847,89.3204,6.4941,2.0175,1.0677,1.5516,15.2957,7.4284,18.3271,67.5616,75.3012,0.832,0.7437,17.0241,3.4688,90.242,75.7669,82,92,11.801, Herefordshire and Worcestershire ICB ,M81015,Stanmore House Surgery,10447.87074,9.2084,76.8786,71.3043,4.8379,76.5079,82.3204,3.1609,95.5056,6.9999,2.1445,1.86,1.3597,20.5135,8.6558,19.0263,65.2265,85.8124,0.742,0.9452,16.0393,2.0717,91.6718,81.1024,83.5938,89.8438,11.5799, Herefordshire and Worcestershire ICB ,M81016,Ryeland Surgery,20947.80855,6.9303,77.2152,78.4861,5.4938,70.229,73.7968,3.9501,91.0345,5.9669,2.7443,1.0655,1.3615,23.7173,8.1985,18.3056,66.5541,78.9044,0.7588,0.764,13.9478,0.8849,85.6134,76.7857,83.4101,90.7834,17.5625, Herefordshire and Worcestershire ICB ,M81017,Elbury Moor Medical Centre,11853.02612,6.0986,66.9591,73.5772,3.0457,63.8498,64.4231,2.2702,88.6364,4.3168,2.3994,0.6544,2.1797,32.7257,7.7789,13.0635,54.593,75.5396,0.6302,0.8806,14.5029,1.2814,82.1072,80.531,78.9855,85.5072,24.6973, Herefordshire and Worcestershire ICB ,M81018,Weobley & Staunton On Wye Surgeries,6978.339489,6.4388,79.1908,80.4762,6.1823,76.5957,78.2895,4.4421,97.9167,6.3305,2.8545,0.9006,0.4898,20.8703,7.194,20.1649,71.3714,83.2298,0.2442,0.5801,12.6066,0.8601,90.9685,80.4348,77.4194,93.5484,8.9151, Herefordshire and Worcestershire ICB ,M81019,Winyates Health Centre,18388.93656,7.0056,70.7317,64.6067,3.825,66.4441,72.0307,3.6736,86.3874,5.082,3.0174,0.3814,2.5911,24.7401,9.4439,16.3489,72.9299,85.8561,0.5216,0.645,16.9995,0.3578,85.9039,79.4372,87.7637,91.1392,18.7398, Herefordshire and Worcestershire ICB ,M81020,The Dow Surgery,12102.31044,6.8102,69.1617,75,2.9424,62.8235,71.3542,3.0248,92.5,4.8338,1.9039,0.4863,1.5099,24.7189,8.5658,15.2394,65.6334,78.3562,0.5357,0.9561,12.5092,0.3084,86.6127,86.2454,76.7742,89.6774,17.1417,1.7226 Herefordshire and Worcestershire ICB ,M81021,New Road Surgery Bromsgrove,11573.88361,7.0376,79.1667,83.6538,4.3999,76.455,80.3089,2.884,93.75,4.1917,1.1505,0.8162,2.2414,11.5822,6.082,17.4129,67.2939,76.2125,0.3343,0.4975,12.8663,0.2523,86.9599,75.5319,77.2727,87.2727,8.9578,2.0134 Herefordshire and Worcestershire ICB ,M81022,Haresfield House Surgery,16911.80476,6.4974,73.5675,71.3924,4.2794,66.9368,73.8095,2.6403,90.0498,5.0731,1.1441,0.5501,1.4901,20.0431,7.5513,16.0231,67.3233,85.9862,0.44,0.8306,15.4203,1.5178,89.68,82.5737,92,92.5,16.3449,1.6337 Herefordshire and Worcestershire ICB ,M81024,Much Birch Surgery,5153.241271,7.9523,81.1765,80.4878,6.4058,74.7826,78.5124,3.1737,83.3333,6.7923,1.8302,1.0903,1.2328,19.8954,7.041,19.2173,69.1885,80,0.7594,0.4673,11.6771,1.3947,88.6624,80,90.1961,96.0784,8.4481,2.6285 Herefordshire and Worcestershire ICB ,M81025,New Road Surgery,5122.209374,8.9658,78.4211,74.4186,4.9666,78.7097,78.0952,4.0879,97.7778,5.7896,1.9675,0.4967,1.7416,19.0524,7.5064,16.5234,73.6921,84.1837,0.3438,0.3629,11.3203,0.0437,91.4087,85.3448,89.4737,87.7193,12.8101,2.5215 Herefordshire and Worcestershire ICB ,M81026,Hereford Medical Group,47444.72479,6.4017,74.7209,70.7591,3.9356,62.9332,69.746,3.0479,92.2756,3.5993,2.4512,0.9439,1.2632,18.3293,7.3141,16.0939,57.9322,75.2948,0.632,1.0042,11.9179,0.4435,78.9572,75.0831,84.0319,91.018,17.3618,2.0998 Herefordshire and Worcestershire ICB ,M81027,Hagley Surgery,7787.19747,6.9082,79.6491,78.8018,5.5313,79.0441,83.4171,3.3785,94.2529,6.9875,0.9166,0.9912,0.938,5.4043,5.7597,16.434,63.7722,83.0149,0.3943,0.4689,10.8347,2.8104,91.2932,77.1084,75.9494,89.8734,6.5591,2.2914 Herefordshire and Worcestershire ICB ,M81029,New Barn Close Surgery,8999.195695,6.6529,80.6147,84.8837,7.4374,78.4884,77.6536,4.46,89.7959,9.3674,2.3296,0.6354,0.6742,12.7168,8.2457,23.2839,76.9172,87.9646,0.1993,0.4485,14.2304,1.4427,89.0547,85.3448,86.9159,95.3271,8.2676,2.965 Herefordshire and Worcestershire ICB ,M81032,Cantilupe Surgery,13462.18999,6.7226,77.5378,72.1362,4.996,74.2857,79.2157,3.6717,96.7033,6.2312,2.6011,1.0944,0.9303,14.8603,7.3855,18.9294,67.147,81.135,1.0864,0.9754,17.1141,2.8256,88.4715,80.2817,86.8613,92.7007,13.0933,2.6804 Herefordshire and Worcestershire ICB ,M81033,Great Witley Surgery,6448.465424,6.4719,80.597,81.8584,4.7799,77.4566,82.2222,3.3621,97.1429,3.6965,1.7418,0.4321,0.7103,14.2849,5.7598,16.9457,63.755,83.0116,0.2025,0.4051,11.3963,0.3075,87.6498,85.9813,84.6154,95.3846,8.7665,2.3899 Herefordshire and Worcestershire ICB ,M81034,Salters Medical Practice,9558.949955,6.1658,73.3918,65.7407,5.6426,71.9665,75.7962,3.5763,90.1639,5.1448,2.3274,0.6698,0.9655,18.2072,8.9833,18.7557,61.9968,78.5366,0.6471,0.5563,10.6621,2.3645,87.4397,82.8054,52.8455,91.8699,15.9061,2.827 Herefordshire and Worcestershire ICB ,M81035,St Martin's Gate Surgery,12114.80292,6.5738,74.8201,69.5205,4.1482,67.1458,74.5902,2.4918,89.6825,3.9779,1.5279,0.6069,0.877,16.919,7.9107,13.1301,63.3929,83.0287,0.5569,0.6997,10.3517,1.9382,86.9102,84.9462,78.882,85.7143,14.0117,1.7278 Herefordshire and Worcestershire ICB ,M81037,Thorneloe Lodge Surgery,11664.93127,6.8218,75,80.2817,4.3884,73.4908,75.3425,2.8079,91.5094,2.7581,2.0681,0.6221,1.9367,17.5361,7.8388,16.074,73.1675,88,0.5801,0.9668,9.3186,0.3187,89.1477,79.4872,84.2857,93.5714,13.8055,1.8159 Herefordshire and Worcestershire ICB ,M81038,Upton Surgery,13259.58692,7.4719,78.2828,75,6.5367,77.8547,81.2274,3.8336,95.0617,8.6592,2.0315,1.1959,1.0692,17.3278,8.296,25.344,75.2052,85.1091,0.4341,0.7782,14.2747,4.0819,90.468,78.8462,90.0621,93.1677,10.2615,3.5141 Herefordshire and Worcestershire ICB ,M81039,Whiteacres Medical Centre,12047.23835,7.8407,79.5591,72,5.2238,80.6154,80.3347,3.9221,91.2088,7.7721,2.2546,0.8593,2.5873,15.829,7.5701,21.2098,74.3059,88.872,0.6296,0.9188,11.6119,1.6371,91.7294,77.6224,84.3284,91.0448,10.9901,2.8076 Herefordshire and Worcestershire ICB ,M81040,Stourport Medical Centre,24591.10811,8.3869,74.044,79.3594,5.842,77.4823,78.487,4.1525,93.9394,9.0313,2.4215,0.9898,1.3608,21.7368,9.835,22.9123,68.5867,84.6781,0.7918,0.6583,18.5737,3.0009,89.1247,79.7222,89.697,93.3333,15.2415,3.5494 Herefordshire and Worcestershire ICB ,M81041,Hillview Medical Centre,11057.43844,6.7179,73.1507,83.7302,3.8053,67.9775,74.7475,2.9371,87.1795,2.1959,2.1243,0.9698,1.0807,20.8395,7.8396,16.1171,69.3922,79.3388,0.6281,0.7666,13.141,0.2476,89.6666,84.6995,86.6142,95.2756,14.1598,1.8842 Herefordshire and Worcestershire ICB ,M81042,Tenbury Surgery,10008.17841,6.8648,76.087,76.5125,6.5856,70.4036,74.2424,3.9265,95.2381,8.2334,2.358,1.0595,0.6799,17.5259,8.1825,21.8033,70.4472,83.6331,0.4259,0.5298,13.1289,0.8823,87.7154,77.4809,85.3659,87.8049,12.24,2.6592 Herefordshire and Worcestershire ICB ,M81043,The Mortimer Medical Prac,9549.844915,8.5369,79.9564,72.4739,6.2818,74.6032,77.2277,4.1539,89.6552,7.2844,2.4675,0.6904,0.8972,17.6059,7.6699,19.8755,54.4218,71.1316,0.2717,0.5093,8.1682,0.1356,87.0393,80.4167,89.6226,97.1698,9.3931,3.1919 Herefordshire and Worcestershire ICB ,M81044,Alton Street Surgery,11999.2695,6.9791,75.5467,67.9365,4.3101,69.4006,76.5957,3.528,97.2222,3.6288,2.5982,1.0862,1.0886,18.3067,7.6892,20.2468,65.6058,80.1484,0.9211,0.9298,11.8922,1.5218,83.9768,79.771,82.9457,93.0233,15.2821,2.6156 Herefordshire and Worcestershire ICB ,M81045,Knightwick Surgery,4571.338813,8.9765,83.4646,78.481,5.7315,79.3103,85.5932,3.7074,91.6667,5.9942,1.8036,0.5411,0.6018,16.5364,6.3168,20.481,66.8782,82.0513,0.521,0.4008,12.157,0.8065,89.6873,74.0385,74.4681,89.3617,7.2494,2.9259 Herefordshire and Worcestershire ICB ,M81046,Abbottswood Medical Centre,12928.57271,8.0091,80.7339,77.3639,6.2704,75.5932,77.2549,3.8124,88.3117,5.7816,2.0985,1.1036,0.9009,15.7874,7.5583,20.3746,64.9916,78.6378,0.2843,0.5518,17.8299,1.3331,84.3915,71.6846,82.8571,89.2857,11.8182,2.7506 Herefordshire and Worcestershire ICB ,M81047,Spa Medical Practice,10767.85761,7.7061,72.0117,68.559,4.5539,78.7356,75.5952,3.2462,94.6154,5.6509,2.3372,0.5379,1.3077,18.5969,8.7764,17.4643,64.5638,79.1349,0.575,0.5287,16.3339,3.0096,90.0622,85.2399,82.4818,89.781,15.3576,2.1146 Herefordshire and Worcestershire ICB ,M81048,Nunwell Surgery,10721.18444,7.3998,75.7637,74.3056,5.778,70.9957,75.6477,4.3257,95.5882,4.972,3.3506,1.11,0.6929,21.7972,8.7234,21.5353,66.5821,76.7535,0.6639,0.7988,18.0647,0.9052,87.7245,76.0504,81.5385,93.0769,13.6514,2.8734 Herefordshire and Worcestershire ICB ,M81049,Barbourne Health Centre,10953.37134,6.8623,75.6447,82.2785,4.6704,75.1244,79.703,2.5765,96.0318,5.1674,2.3955,0.8272,1.5816,16.9978,7.242,15.9759,63.5193,75.2193,0.5429,0.991,12.2089,1.4572,85.9844,83.9806,74.1935,91.9355,14.0996,1.9819 Herefordshire and Worcestershire ICB ,M81054,Kington Medical Practice,8661.438451,6.1259,72.5352,74.7253,5.8447,63.1206,70.9924,4.0736,87.7193,5.7318,2.2343,1.8529,2.0931,22.1551,8.0982,20.5313,60.0713,78.961,0.4768,0.6403,17.4046,0.3421,89.1806,72.8723,73.4043,86.1702,13.3344,2.8883 Herefordshire and Worcestershire ICB ,M81055,Cornhill Surgery,5955.445737,8.22,72.9885,74.6154,3.7057,77.4725,80.5825,3.2719,92.4528,7.4514,2.4765,0.47,2.24,29.3601,8.5226,19.5951,65.0616,79.5811,0.4338,0.5965,21.8286,0.2784,90.5939,88.2353,84.2857,97.1429,16.8973,1.7896 Herefordshire and Worcestershire ICB ,M81056,The Church Street Practice,14568.54536,8.7838,71.024,79.1667,5.156,72.1448,79.5276,3.3909,92.6471,7.9048,2.5238,0.9445,1.4136,26.5967,9.697,21.3362,69.6345,80.8682,0.6503,1.0064,17.6323,2.5685,90.1203,85.422,87.2449,92.8571,19.2181,2.3999 Herefordshire and Worcestershire ICB ,M81057,Bewdley Medical Centre,17040.16828,8.5232,75.8527,77.8281,6.7356,79.4721,80.3077,4.813,91.25,9.3211,2.0011,0.8894,1.7106,18.5148,9.2174,24.4769,66.1707,82.7174,0.3662,0.7978,17.0227,2.8011,88.4461,79.9615,90.991,94.5946,11.3173,3.2958 Herefordshire and Worcestershire ICB ,M81058,Merstow Green Medical Practice,11113.12468,7.796,73.4908,67.8715,5.3773,70.3072,70.2564,3.7484,89.8734,8.3729,2.6985,0.9322,1.0689,18.3107,9.6415,19.9882,66.5113,78.8785,0.5691,0.6574,19.5368,2.0387,90.5801,78.6942,69.5652,89.441,18.1766,2.3256 Herefordshire and Worcestershire ICB ,M81061,Pendeen Surgery,8980.9588,6.5259,78.3375,83.0579,5.9879,66.6667,77.7143,3.8967,95.2381,3.8426,2.2626,0.7771,1.5344,17.9102,6.7873,17.7465,66.7535,78.5536,0.5256,0.6742,15.5037,1.3582,85.8241,79.8851,85.8696,94.5652,14.3911,2.7425 Herefordshire and Worcestershire ICB ,M81063,St Johns House Surgery,12758.62135,7.7782,73.5363,79.4964,4.6305,70.0696,77.7778,3.1647,93.6,4.427,1.962,1.0674,2.4677,16.8069,7.2648,16.5,49.8446,73.3788,0.8645,0.9772,12.061,1.7088,88.3631,76.2452,78.7671,86.9863,14.9568,2.1649 Herefordshire and Worcestershire ICB ,M81064,Hollywood Medical Centre,8150.060291,6.4486,80.7432,72.6368,5.4627,81.5126,82,3.9391,94.6809,4.1308,2.2668,0.607,1.1892,11.4284,7.5748,18.8901,75.3832,82.6923,0.5203,0.5326,13.8007,0.5711,92.0766,77.7027,88.0952,94.0476,9.5498,2.4155 Herefordshire and Worcestershire ICB ,M81066,Wargrave House Surgery,9444.717428,6.0109,75,64.7059,4.7253,68.8525,71.0843,3.863,95.7746,3.3329,2.339,1.0868,1.0397,18.0071,7.8492,18.3698,67.9278,81.3776,0.8388,1.1813,14.5706,1.1462,87.6888,76.4368,86.4078,92.233,16.5446,2.3981 Herefordshire and Worcestershire ICB ,M81067,The Surgery Kingstone,5051.680758,7.0579,79.8206,66.9065,3.4792,76.9784,81.7308,3.18,91.3044,4.9662,1.8893,0.7669,1.2824,19.2329,7.5046,17.0408,74.4253,81.3953,0.5612,0.4489,15.598,0.3542,89.5073,86.6667,90.1961,92.1569,10.6608,2.731 Herefordshire and Worcestershire ICB ,M81068,Aylmer Lodge Cookley Partnership,16835.51411,7.3992,74.4485,81.7204,5.6103,76.2864,79.7909,3.5749,96.8504,7.8678,2.6486,0.8089,1.8249,21.7336,9.2727,20.0078,74.8075,87.6543,0.9198,0.8155,14.2949,3.6826,90.3868,76.7391,89.2523,91.5888,14.3781,2.5964 Herefordshire and Worcestershire ICB ,M81069,Davenal House Surgery Partnership,10486.38667,6.75,71.5909,79.2952,5.1214,74.2475,75.1515,3.503,95.5056,7.0444,2.2124,2.0281,1.7394,14.0191,7.8304,18.6316,69.3659,84.5098,0.5121,0.9219,14.5981,2.6179,87.4671,75.4032,83.8983,92.3729,12.497,2.7246 Herefordshire and Worcestershire ICB ,M81070,Churchfields Surgery,12094.43465,7.3028,71.8593,82.0789,5.0093,73.5294,77.4775,3.5285,92.9412,4.9793,1.9039,0.6939,1.6997,15.657,8.562,16.3649,70.453,85.3707,0.6769,0.8462,14.3386,0.5903,84.2436,81.6479,83.1081,91.8919,12.9048,2.3354 Herefordshire and Worcestershire ICB ,M81072,Albany House Surgery,6674.263664,5.6693,73.4375,77.5862,4.1173,72.3684,76.2963,2.9752,94.2308,4.8122,1.5087,0.3102,0.9725,19.7408,6.6843,15.5527,73.6902,82.6667,0.4371,0.8601,12.3072,0.8541,81.7161,84.1667,53.9474,85.5263,14.7338,1.4946 Herefordshire and Worcestershire ICB ,M81074,Pershore Medical Practice,11697.87705,8.0241,76.6376,71.4286,5.9463,73.7037,77.9343,3.9705,95.2941,7.2325,2.7321,0.9926,0.9945,16.1877,8.1271,20.7128,65.5535,80.662,0.4821,0.7752,14.5327,2.3521,86.8043,78.9286,79.5455,87.1212,12.5601,2.8455 Herefordshire and Worcestershire ICB ,M81075,Malvern Health Centre,14216.05719,7.3151,73.8878,76.1006,5.92,69.4767,74.5763,3.5962,94.5055,7.3283,2.1714,1.4552,1.1459,18.2887,8.6525,19.52,67.6676,85.0789,0.5333,0.8381,16.4125,1.1637,85.1477,79.1557,87.1345,92.9825,14.9796,2.9486 Herefordshire and Worcestershire ICB ,M81076,Colwall Surgery,3004.505413,7.5748,79.5031,77.451,6.254,77.0492,78.3784,3.5139,100,4.3245,1.5152,1.2573,0.7654,11.6388,5.4422,20.4384,62.8755,73.8095,0.3869,0.8382,8.6108,1.921,91.0508,69.2308,84,92,7.9295,2.8046 Herefordshire and Worcestershire ICB ,M81077,The Ridgeway Surgery,4865.600307,6.5251,77.8894,82.5758,5.5873,83.4783,80.4124,3.9365,97.4359,3.9176,1.8836,0.4233,1.4063,9.6233,7.0114,21.545,61.3195,74.6939,0.3175,0.5714,12.9834,0.4868,90.5874,75.2688,90.1961,98.0392,9.8462,2.5397 Herefordshire and Worcestershire ICB ,M81078,Barnt Green Surgery,5979.698759,5.7804,84.2657,79.3651,5.8868,80.9249,85.906,3.1905,94.8276,5.3545,1.6028,1.0336,1.7178,5.699,5.2014,16.5818,78.6148,88.3803,0.3445,0.5842,10.1791,0.8038,90.5249,80,82.3529,94.1176,4.4718,2.5315 Herefordshire and Worcestershire ICB ,M81081,St Saviours Surgery,5677.294284,7.3769,74.8815,80.2817,5.8647,77.931,84.2593,3.5601,88.2353,7.159,1.8362,1.3678,1.6538,16.5497,7.9929,23.4401,72.6505,87.171,0.8244,0.9181,16.2664,1.8072,92.6904,78.4615,95.3846,95.3846,13.8616,3.0354 Herefordshire and Worcestershire ICB ,M81082,St. Johns Surgery,14350.70309,7.3511,75.6592,83.7209,4.0136,78.8785,76.1029,2.8146,94.709,4.9959,1.4233,0.545,1.2017,15.0295,7.7572,13.9129,70.4816,85.679,0.545,0.577,16.7325,0.5491,89.1756,79.7428,93.0233,95.3488,12.5912,2.0389 Herefordshire and Worcestershire ICB ,M81083,Hollyoaks Medical Centre,5421.572028,6.0687,75.5319,73.3333,4.8414,78.8618,78.7234,3.5518,97.2973,9.8183,2.0085,2.7484,0.9339,9.2062,8.05,20.4863,82.08,84.593,0.5497,0.6554,10.8279,1.9665,92.92,80.9524,90.1639,93.4426,9.4307,2.6004 Herefordshire and Worcestershire ICB ,M81084,Catshill Village Surgery,5070.924876,5.6008,77.9412,85.2113,4.2116,76.5714,76.7857,2.7429,98.4615,6.1156,1.4334,0.3893,1.1649,13.3162,7.8791,16.9351,66.537,82.7957,0.3716,0.6017,15.009,0.742,81.0394,85.0467,94.0299,94.0299,11.9801,2.3005 Herefordshire and Worcestershire ICB ,M81090,Chaddesley Surgery,3511.570269,7.0165,77.6398,74.3119,6.2766,81.0127,84.5238,3.3229,100,6.2291,1.5621,0.7384,0.7703,16.3655,6.6908,20.7044,69.2308,84.1837,0.3692,0.426,12.7261,0.8577,91.2305,83.5443,83.7838,91.8919,8.3955,2.0733 Herefordshire and Worcestershire ICB ,M81091,Corbett Medical Practice,14189.96523,7.1498,79.0698,75.6684,5.3877,77.4818,81.0169,3.1751,93.3884,4.3897,1.728,1.2082,0.9022,13.4419,7.2071,18.1512,67.478,76.2634,0.5128,0.5901,12.3623,1.0669,85.7007,76.2774,85.6209,86.9281,9.9933,2.3321 Herefordshire and Worcestershire ICB ,M81092,The Bridge Surgery,5728.552566,6.7407,75,69.4444,3.3919,72.6257,78.6408,3.6228,94.2308,3.1997,1.6516,1.3497,1.2492,18.586,7.2076,15.0062,53.6083,80.1205,0.7636,0.8169,13.4341,0.2144,87.4952,77.7778,88.7097,95.1613,13.5658,2.0423 Herefordshire and Worcestershire ICB ,M81093,Belmont Medical Centre,9854.857988,6.8062,72.5753,63.3333,3.6857,72.3032,76.1628,2.7211,92.2414,5.3668,2.6196,0.8935,0.7611,24.0041,8.3377,15.4737,77.7867,84.8375,0.6701,0.792,18.5015,2.4096,88.7128,82.0513,87.8261,93.0435,21.4145,2.3251 Herefordshire and Worcestershire ICB ,M81094,Abbey Medical Practice,9570.571109,7.294,77.5076,69.2982,3.7869,79.6875,79.8913,2.7457,91.6667,6.4545,1.8271,0.9697,0.818,17.9363,7.8652,16.403,78.8508,88.4181,0.4695,0.6226,15.7081,0.7441,90.013,83.9024,90.1786,94.6429,14.8153,1.8883 Herefordshire and Worcestershire ICB ,M81600,Cradley Surgery,3755.909734,9.3591,80.8824,81.5385,5.9487,74.4681,79.3814,3.2051,93.9394,7.4242,2.8205,0.7692,1.8788,15.6688,6.312,23.1795,76.6304,86.9048,0.3846,0.6923,20.4242,1.9807,88.0224,84.0426,91.4286,91.4286,9.0993,2.7436 Herefordshire and Worcestershire ICB ,M81604,Fownhope Medical Centre,6502.529579,7.4988,78.8079,73.5,5.8341,77.0588,80.1325,3.7601,90,7.0286,1.8651,0.8057,1.4021,16.5895,6.9272,20.3969,70.793,84.3844,0.4029,0.7013,12.0439,3.1456,90.9375,73.6842,72.8571,94.2857,8.0877,2.9394 Herefordshire and Worcestershire ICB ,M81605,The Glebeland Surgery,4734.614234,7.4746,78.5714,86.5772,5.1888,80,78.2946,2.9942,100,6.1595,1.3948,1.2832,1.2871,10.3815,5.2572,15.3431,80.0638,92.9293,0.7811,0.5765,9.6759,1.063,90.0625,80.4124,90.4762,95.2381,9.2638,2.3061 Herefordshire and Worcestershire ICB ,M81608,Wolverley Surgery,4075.390509,8.5369,74.5455,73.6842,6.1132,77.8947,77.5281,4.1377,86.1111,8.6609,2.9098,0.8809,1.3423,20.2732,9.5403,20.4752,57.7391,71.875,0.5606,0.4004,15.5002,2.1586,89.5349,68.6441,87.7193,94.7368,10.6134,2.8297 Herefordshire and Worcestershire ICB ,M81616,Crabbs Cross Medical Centre,3072.912496,4.3786,71.9008,67.5676,3.753,78.2609,84.3137,2.6029,97.1429,5.4381,1.5739,1.0593,1.2085,21.2694,8.4916,17.4334,77.9626,88.421,0.5751,0.8777,14.5015,0.3879,94.513,92.1875,97.7273,100,16.6173,1.6647 Herefordshire and Worcestershire ICB ,M81617,Crabbs Cross Surgery,4901.20457,7.8636,75.4491,72.5,3.7726,76.1194,78,3.1165,92.6471,3.579,2.2234,0.2552,2.284,18.4283,7.1065,15.1813,67.4126,80.5085,0.5103,0.6379,17.6595,0.4566,89.2997,81.6327,75.4386,87.7193,14.0257,1.7678 Herefordshire and Worcestershire ICB ,M81627,Demontfort Medical Centre,7537.232746,6.6784,72.766,63.4286,3.0853,71.0438,75.3333,2.2021,93.6709,3.6374,1.6486,0.7772,0.8654,18.1001,6.4264,13.601,58.754,78.125,0.9421,0.6948,11.0736,0.6685,88.3602,76.5217,91.1392,93.6709,21.2778,1.6839 Herefordshire and Worcestershire ICB ,M81629,New Court Surgery,10030.56484,5.6522,77.8082,73.9316,4.4897,73.0612,78.8889,2.7789,94.2029,4.8811,1.7603,0.979,1.1026,16.8851,6.8285,16.0502,74.8488,84.9785,0.3956,0.712,11.3107,0.9097,89.1583,80.3828,91.7526,94.8454,12.1366,1.9779 Herefordshire and Worcestershire ICB ,Y03602,Grey Gable Surgery,5243.539469,7.9993,81.685,84.6591,6.0693,81.8182,83.3333,3.06,91.8919,4.9224,1.5047,0.896,0.7353,10.4232,6.6882,19.6112,69.0632,86.3636,0.2705,0.541,15.625,1.2294,90.625,83.1776,83.6066,95.082,6.9551,2.5359 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence Mid and South Essex ICB,F81011,Kelvedon & Feering Health Centre,7011.059353,8.1003,76.5799,77.7778,4.2564,85.8369,83.5443,3.0236,94.898,5.6183,1.5572,0.4931,1.2593,9.6837,7.2915,16.2471,78.002,90.4215,0.7656,0.7527,14.9822,0.2367,92.3617,82.7586,95.122,96.3415,10.9723,1.8038 Mid and South Essex ICB,F81014,Church Lane Surgery,11760.47819,6.387,67.7233,62.7706,2.4271,67.7804,70.6186,2.693,93.75,3.9218,1.8536,1.1221,1.116,17.5558,8.0491,14.2632,55.7982,77.3196,0.5486,0.8478,10.4262,0.0681,85.2041,90.1345,74.6269,87.3134,17.6351,1.7122 Mid and South Essex ICB,F81020,The Freshford Practice,7131.480924,7.4391,79.2717,71.371,5.0563,80.102,84.2932,3.597,94.9153,4.5683,1.9329,0.3456,1.3096,13.8252,7.2656,18.2796,71.0095,84.7584,0.3968,0.6912,11.0705,0.2421,90.2034,87.5776,80.7229,90.3614,10.0598,2.1505 Mid and South Essex ICB,F81022,Longfield Medical Centre,17109.17091,8.0458,76.2976,72.315,4.3263,80.167,80.1802,3.582,95,6.1381,1.7003,1.3372,1.3947,15.3706,7.6068,17.7225,73.1874,84.6467,0.3449,0.9137,10.3744,0.3431,89.133,86.0724,88.2051,88.2051,13.2672,2.2448 Mid and South Essex ICB,F81030,Fern House Surgery,16917.98694,8.1596,75.8427,82.9333,3.9019,74.8644,76.7677,3.3206,90.7407,5.2035,2.0619,0.7972,2.7434,15.6976,8.7525,17.0043,71.5998,82.1856,0.4076,0.6953,12.1217,0.7506,90.4991,85.3535,86.0987,93.2735,12.0437,1.8401 Mid and South Essex ICB,F81040,Stock Surgery,4924.039354,5.943,77.5,75.5725,5.0804,79.2793,82.3529,3.4727,80.6452,7.1301,1.4148,0.4716,0.7156,13.9071,6.6229,19.3355,75.5167,84.9817,0.4502,0.5573,8.9445,0.3629,86.7642,82.3529,77.0833,91.6667,8.5951,2.4437 Mid and South Essex ICB,F81057,Whitley House Surgery,12850.20287,5.9059,74.9311,69.258,3.3261,71.4542,75.2988,2.1674,87.037,5.1749,1.111,0.7565,1.4229,12.8487,5.6923,11.982,64.8163,82.6722,0.4771,0.9747,10.3583,0.7435,88.0428,84.322,75.6522,86.9565,13.038,1.6903 Mid and South Essex ICB,F81068,The Elizabeth Courtauld Surgery,16731.2763,6.6839,72.6606,82.6531,4.0458,76.2,77.6358,3.413,94.8718,3.6709,1.5757,1.2411,0.5752,16.417,7.5539,13.5244,58.5034,80.033,0.7361,0.9673,10.8386,0.1386,82.7045,85.3035,79.6703,90.1099,15.3936,2.2997 Mid and South Essex ICB,F81071,Rivermead Gate Medical Centre,11541.85237,5.2557,75.6757,70.0935,2.6174,56.5878,73.9583,1.9928,84.2105,1.8542,1.0315,0.6385,0.1686,12.486,5.7016,11.129,60.2301,76.9648,0.1965,0.9754,10.1559,0.1285,85.2761,83.0189,70.0787,81.1024,12.6111,1.1227 Mid and South Essex ICB,F81076,The Tollesbury Practice,4263.255634,5.792,77,71.5447,4.7936,78.6325,80.4348,2.9294,94.7368,2.1197,1.3316,0.6214,0.2415,11.3975,6.6083,17.3768,72.4756,86.9822,0.3773,0.5548,8.7202,0.2218,90.8257,92.5926,93.1818,95.4545,10.9535,1.7532 Mid and South Essex ICB,F81083,Beauchamp House,11370.50524,6.7248,72.3127,65.5022,3.4969,69.163,75.1269,2.5356,89.0756,4.1705,1.5827,0.8535,1.0017,12.5342,7.7785,14.8078,63.0603,80.7302,0.4143,1.0772,8.8725,0.6289,85.6494,84.6491,73.9437,89.4366,13.3046,1.997 Mid and South Essex ICB,F81087,Mount Chambers Medical Practice,14268.91543,6.8098,70.5069,65.2597,3.9625,71.8245,75.4167,3.1803,85.1852,3.9344,1.9112,1.2913,1.1694,16.6598,8.6851,16.4625,60.5911,80.0659,0.5239,0.8633,11.3226,1.1001,89.3313,89.1228,88.7006,92.0904,15.9381,2.0587 Mid and South Essex ICB,F81098,The Writtle Surgery,7970.172747,7.0128,76.7213,71.8447,4.7723,79.646,83.6478,3.6767,86.3014,5.9217,1.7775,0.6574,0.9225,13.181,7.7727,17.5189,60.0187,74.9326,0.2557,0.5844,9.1802,0.236,86.2851,85.8639,67.3913,82.6087,10.6667,2.1062 Mid and South Essex ICB,F81099,Blackwater Medical Centre,13036.51222,7.3251,76.5657,70.2454,3.3115,73.0519,71.8876,3.2453,89.8734,3.8241,2.0283,1.2915,1.2582,15.4589,8.4653,16.6736,71.5646,79.2279,0.4305,0.8776,10.2041,0.0984,82.5171,81.3559,76.5823,90.5063,12.3973,1.7054 Mid and South Essex ICB,F81100,Beacon Health Group-Danbury Medical Ctr,22823.02099,6.9224,75.9627,71.8802,4.1389,69.0507,75.2049,2.7487,90.7258,2.8174,0.997,0.4568,0.9012,9.554,6.8424,15.7293,53.4323,74.9462,0.4727,0.7428,9.1454,0.3893,85.758,84.6995,81.9231,90.7692,9.816,1.9662 Mid and South Essex ICB,F81105,Little Waltham & Gt Notley Surgery,17077.6621,7.7763,79.3269,77.8947,3.2823,78.8288,81.8402,2.4498,91.5179,3.9115,1.1627,0.4976,0.8747,10.5021,7.1269,14.3062,72.2876,85.9477,0.5024,0.5024,11.5745,0.169,91.1887,84.3844,78.2407,92.5926,8.6085,1.5168 Mid and South Essex ICB,F81114,Baddow Village Surgery,12746.45411,7.1759,78.9474,77.2881,3.7967,79.79,82.0084,3.2005,89.2157,5.7802,2.0945,0.8943,1.1832,13.5484,7.3222,19.4148,65.9243,83.7997,0.353,0.7844,9.9117,1.4243,90.8533,82.4,81.4286,90,11.5491,2.4396 Mid and South Essex ICB,F81117,Sutherland Lodge Surgery,9387.407149,5.7624,73.8676,67.8218,3.0213,69.6793,69.7143,2.3972,86.3636,1.6556,1.1689,0.7826,0.5065,12.8343,7.8713,14.6013,74.041,82.4363,0.5349,1.2382,9.5997,0.3424,85.4853,88.0597,77.193,89.4737,15.9872,1.5651 Mid and South Essex ICB,F81119,The Pump House Surgery,7960.881818,7.5255,77.0115,84.3478,4.901,79.661,80,3.3076,87.1429,1.8711,1.6055,1.1227,0.594,12.3986,6.5367,14.0391,58.3519,69.434,0.7243,0.7605,9.3555,0.2271,88.234,92.3077,68.2927,90.2439,10.6475,2.0763 Mid and South Essex ICB,F81122,Chelmer Medical Partnership,32135.78342,6.4322,72.2803,65.2819,3.4257,67.674,75.5064,2.6481,83.9858,2.9334,1.6532,0.8113,1.0624,17.8135,8.081,13.1027,51.1572,64.2183,0.7286,0.8449,9.6321,0.2031,86.8381,83.3333,71.5405,79.1123,15.2931,2.0052 Mid and South Essex ICB,F81126,Burnham Surgery,10133.0226,8.876,73.9759,66.0305,4.5441,80.4688,79.1667,3.8022,87.8788,7.0235,2.2772,0.7213,1.3847,13.7484,9.1189,20.6182,74.6869,86.7769,0.2988,0.7316,11.2775,0.1229,92.5313,90.5738,86.6142,96.8504,13.3284,2.5245 Mid and South Essex ICB,F81130,William Fisher Medical Centre,6305.384544,7.8082,72.807,61.5854,3.9448,74.4048,70.6349,3.0572,89.2857,4.4059,2.4326,1.0848,0.7376,16.4461,8.7934,16.0421,69.5425,87.2038,0.4109,0.7725,12.0215,0.3129,87.4224,78.1513,76.25,83.75,15.5275,2.1039 Mid and South Essex ICB,F81132,Blandford Medical Centre,17499.86582,7.7225,74.4227,68.1234,3.9222,72.2504,74.1611,2.9612,87.3684,2.9842,1.9332,0.8604,0.9353,16.0039,9.0814,15.1023,57.1701,74.3378,0.4526,0.8884,13.7003,1.0796,87.7365,89.3175,71.6667,85.8333,15.9306,1.8494 Mid and South Essex ICB,F81149,The Laurels Surgery,10265.98209,7.4064,77.9951,76.3441,4.488,76.7164,75.6637,3.2697,90.2439,5.7425,1.5856,1.1467,1.2218,11.3838,7.818,17.7013,68.7953,85.1204,0.6987,0.6271,9.9411,0.9576,89.0841,82.4701,90.0826,95.0413,11.3669,2.4187 Mid and South Essex ICB,F81170,Kingsway Surgery,11796.22925,5.606,77.3438,73.9394,3.772,78.5714,79.5367,2.5508,87.6106,5.5526,1.2356,0.8382,0.3571,8.4496,7.0177,14.2207,61.7458,81.2195,0.3252,0.3974,9.9536,0.2697,89.2689,81.8533,82.3944,85.9155,10.4043,1.3513 Mid and South Essex ICB,F81173,Douglas Grove Surgery,6032.70364,8.7214,71.4286,75.2294,2.6802,75.1004,72.093,2.0594,90.5882,4.6526,2.2108,0.3029,1.4347,18.6776,10.0384,13.7644,56.3204,79.0909,1.1811,1.1205,14.3267,0.9709,90.3347,82.5503,81.1111,91.1111,19.3676,1.3477 Mid and South Essex ICB,F81183,The Dengie Medical Partnership,5873.314234,8.073,79.2157,70.0599,4.1516,82.4818,82.2581,3.574,87.8788,6.0398,2.1661,1.1913,0.4926,15.6521,10.4215,22.4549,63.2207,82.7731,0.6318,0.7401,20.2613,0.3754,92.1899,84.8684,76.9231,93.4066,12.2458,2.852 Mid and South Essex ICB,F81193,Witham Health Centre,6531.69312,6.4475,70.9497,76.9231,2.9947,73.0337,80.9524,2.2607,87.5,4.8049,1.7763,1.5267,2.5178,17.2802,9.2395,14.4157,68.323,76.8362,0.367,0.8808,12.0507,0.4517,89.7656,80.292,77.5281,92.1348,17.9492,1.6882 Mid and South Essex ICB,F81635,Collingwood Road Surgery,2323.675859,7.2971,72.4638,84.0909,2.7931,70.4082,69.4444,2.6357,85.7143,3.9155,1.2195,0.3934,3.3488,17.1009,8.18,13.808,47.4576,76.7857,0.1574,0.8261,8.8614,0.4988,78.4314,89.4737,84,92,12.5306,2.1243 Mid and South Essex ICB,F81665,Chelmer Village Surgery,3910.535234,6.8823,77.8689,75.2809,2.6385,75.2632,75.6098,2.3544,98.0392,3.9581,1.0554,0.4262,1.0485,8.8806,6.6477,12.2996,61.0442,77.7778,0.1218,0.8119,10.0917,0.4332,84.3273,80.2632,72.7273,90.9091,9.9237,1.3396 Mid and South Essex ICB,F81674,Wyncroft Surgery,9234.163197,6.6819,82.0755,76.2082,4.0454,77.1588,77.451,2.66,92.7419,6.2645,1.3947,0.8036,0.786,11.5467,8.1724,15.9601,57.8322,75.5034,0.1847,0.5265,9.7203,0.3615,88.5923,81.0127,68.8889,92.2222,34.3619,1.4224 Mid and South Essex ICB,F81683,Blyth's Meadow Surgery,8855.154671,6.2718,71.6,62.6214,2.7588,71.5942,72.2222,2.8507,87.156,3.0067,1.4305,0.7663,0.422,16.1155,7.9544,12.8538,54.1016,78.2051,0.6744,0.8685,12.2247,0.6763,87.013,83.4356,60,86.3636,16.2535,1.4713 Mid and South Essex ICB,F81730,The Coggeshall Surgery,6606.566773,6.7954,78.626,76.6667,5.1752,79.6512,84.3537,3.997,94.3396,5.7806,1.8494,0.5667,0.7732,10.2568,7.3532,16.3311,64.2145,82.9351,0.5369,0.6562,9.1863,0.7304,91.2902,85.5263,89.3939,92.4242,8.7685,2.3266 Mid and South Essex ICB,F81751,The Trinity Medical Practice,4261.068336,7.6026,68.75,62.8319,3.5191,70.922,74.1176,3.1257,85.4839,5.0309,2.0328,0.6995,8.7128,13.1293,8.2526,16.0437,80.0971,82.7586,0.6339,1.0929,12.7038,1.0747,90.1212,90.6977,89.0909,96.3636,13.9925,1.8579 Mid and South Essex ICB,Y00293,Hedingham Medical Centre,8540.86467,7.4685,75.3463,81.9277,5.1362,77.2201,76.1658,3.3272,97.561,6.4003,1.7551,0.603,1.1358,13.2057,7.8483,16.97,77.2017,86.7036,0.4199,0.5599,10.1149,0.3436,90.732,92.0561,82.5243,93.2039,13.0791,2.0243 Mid and South Essex ICB,Y02611,North Chelmsford Nhs HCC,10569.84418,5.6322,74.1071,68.8525,1.724,76.0057,79.096,1.122,92.0502,1.4946,0.561,0.7252,0.5882,10.4826,5.2472,7.1561,66.9318,83.7349,0.3215,0.5542,7.4438,0.2955,87.3773,79.7753,73.3333,88.5714,11.7677,0.8346 Mid and South Essex ICB,Y05023,Silver End Surgery,4715.484883,6.4944,71.4286,79.0476,2.7566,77.4566,79.0123,2.4481,98.6487,3.6673,1.9955,1.3372,1.1959,17.2038,8.8359,13.0014,58.2834,80.916,0.9257,0.6994,10.7095,0.4464,89.0323,84,70.4918,86.8852,15.6122,1.5223 Mid and South Essex ICB,Y06389,SAS Mid and South Essex STP,647.0381061,,,,,20,100,,,,,,,,,,,,,,,,,,,,, Mid and South Essex ICB,F81010,Aveley Medical Centre,12728.85886,5.6376,63.2047,59.2742,2.6865,69.5755,70.4545,2.4998,83.8983,4.0553,2.4024,0.6574,0.8765,25.7813,8.6474,13.8382,72.1678,86.9091,0.7873,0.8116,13.4228,0.0474,86.6245,85,74.8031,95.2756,16.0905,1.5745 Mid and South Essex ICB,F81082,The Rigg-Milner Medical Centre,4705.241242,6.2411,64.9351,61.1111,3.0879,65.1515,76.7123,3.3117,85,10.8002,2.5509,0.8727,2.2104,17.4896,10.1681,23.2267,61.5108,78.4314,0.4923,0.9174,11.6116,0.4264,87.662,87.2483,87.3239,85.9155,14.5343,2.1258 Mid and South Essex ICB,F81088,Southend Road Surgery,2497.583958,7.0175,69.1358,61.8182,3.2556,73.0337,72.7273,2.7377,90.625,8.5486,2.1088,0.5919,2.8182,15.8801,8.2909,19.6818,67.033,77.9221,0.5919,0.6289,13.1517,2.4242,88.352,80.9524,69.697,87.8788,14.569,1.9608 Mid and South Essex ICB,F81110,Tilbury Health Centre,12989.87097,5.7752,62.5,58.1395,2.243,72.4289,74.7312,2.4218,75.9563,4.6093,2.1455,0.4714,0.3737,30.0656,8.2787,13.9781,77.907,89.5349,0.3738,0.7802,8.1087,0.5998,89.6659,91.3793,89.4366,78.169,19.946,1.471 Mid and South Essex ICB,F81113,Dr Abela T Practice,10000.15763,5.3122,68.9189,65.4804,2.5572,74.8691,80.5654,1.3359,83.9744,3.4371,0.7422,0.2362,1.3442,10.2829,6.3766,11.8818,76.9425,91.0112,0.3576,0.4318,11.5832,0.299,84.9901,90.2299,88.1481,91.8519,9.2495,0.9446 Mid and South Essex ICB,F81134,Peartree Surgery & West Horndon Surgery,7517.236462,4.8119,70.1357,64.8148,3.5375,72.0149,77.8571,2.4321,86.0465,6.7056,2.7312,0.5592,0.5004,22.2891,7.5304,16.8292,83.3176,93.1331,0.6633,0.6503,17.8983,0.5772,93.66,89.7436,92.9825,87.7193,14.6906,1.8728 Mid and South Essex ICB,F81137,Orsett Surgery,7472.852955,6.7784,74.4275,71.8085,3.6242,76.8182,76.3158,3.1729,89.3939,5.0093,1.983,1.0804,0.5604,14.5463,7.2542,18.285,73.6338,81.6327,0.1778,0.7112,12.3111,1.8176,90.2088,88.9706,80.7692,89.7436,10.8839,2.1472 Mid and South Essex ICB,F81153,Hassengate Medical Centre,12101.52182,8.5836,76.3496,69.8925,3.8923,81.3107,81.2766,2.9663,85.9504,7.9039,2.1188,0.6278,1.6421,15.0083,8.378,18.881,76.8837,85.9341,0.6042,0.5964,20.4372,2.4611,91.2222,89.5385,88.6076,94.3038,10.8191,2.4563 Mid and South Essex ICB,F81155,Balfour Medical Centre,5068.743582,5.4352,70.9677,64.2202,3.1508,72.1311,74.2268,2.2348,82.5397,6.3769,2.3814,0.4763,1.4091,17.0359,9.66,15.6805,67.2389,81.5287,0.4213,0.7694,9.3146,0.1054,88.1026,86.3248,87.013,92.2078,13.7242,1.8502 Mid and South Essex ICB,F81177,Dr Deshpande Am Practice,4087.208465,5.8735,70.4918,62.6667,2.9547,78.7879,77.9661,2.4508,93.6508,5.1251,1.3284,0.7787,1.2963,16.7523,8.4771,17.6821,76.555,95.1724,0.5268,0.7329,13.9283,1.6232,96.1561,82.0513,88.6792,90.566,15.7214,1.8323 Mid and South Essex ICB,F81192,Stifford Clays Medical Centre,10577.64374,6.5393,72.7003,67.2727,3.5269,76.9231,81.0651,3.5269,81.7204,2.2733,2.5346,0.7073,1.4208,18.1629,8.4795,19.4223,74.9682,88.9435,0.3733,0.7958,13.6768,0.3121,91.8998,88.9503,81.1475,90.9836,13.7093,2.5248 Mid and South Essex ICB,F81197,Sancta Maria Medical Centre,2466.441788,4.1632,66.6667,58.6207,2.5145,72.5275,70.8333,2.1663,100,3.2901,1.9342,0.3482,0.5982,27.9369,8.6999,16.1702,77.3684,86.8421,0.4642,0.6963,10.8176,0.4499,90.5838,93.617,78.125,90.625,17.1638,1.0832 Mid and South Essex ICB,F81198,Horndon-on-the-Hill Surgery,2765.495049,5.322,79.4118,71.831,4.5038,77.5,82.4561,3.5152,82.6087,7.0222,1.3548,0.769,0.0444,12.6325,6.989,17.5394,75.0649,90.4255,0.2929,0.4028,8.9778,1.1254,93.6474,84.6154,68.9655,89.6552,8.8248,2.2702 Mid and South Essex ICB,F81206,Commonwealth Health Centre,5693.338696,6.5037,54.7009,51.0417,2.0754,73,76.8293,2.4213,78.2609,5.473,2.9856,0.3095,0.5212,37.0215,9.2182,13.5081,79.0592,89.1566,0.5826,1.0741,10.7897,0.6102,91.1324,94.6154,89.3939,83.3333,21.3844,1.4018 Mid and South Essex ICB,F81211,Dr Yadava N Practice,4475.575147,5.3777,68.4615,65,2.3305,74.359,85.2273,2.3114,90.3846,2.275,1.872,0.5349,1.375,19.0522,7.6734,12.3591,83.4264,91.8182,0.4394,0.8214,15.675,0.6042,92.3226,68.3333,87.5,92.8571,16.0526,1.2416 Mid and South Essex ICB,F81219,Dell Medical Centre,5062.375782,5.7727,78.6585,74.3363,4.4256,76.2712,85.2632,2.9944,79.1667,6.9349,2.1281,0.5838,2.0355,16.7366,7.0282,18.0603,70.2806,82.8571,0.339,0.6968,16.142,0.7296,95.1797,90.9091,87.5,85.7143,13.8483,2.3729 Mid and South Essex ICB,F81623,Kadim Primecare Medical Centre,2339.128922,5.1461,65.1515,60,3.354,68.2353,73.1707,2.4431,100,4.3321,1.5321,0.2899,0.7736,20.4272,8.612,17.3499,79.9427,85.7143,0.3727,0.7867,11.0366,0.2336,89.6878,89.3617,87.8788,93.9394,14.0368,1.2008 Mid and South Essex ICB,F81632,Dr Yasin Sa Practice,4833.521802,6.2783,62.1359,56.4706,1.9423,75.3555,79.2208,1.805,73.0337,4.6368,2.6094,0.2943,1.7154,28.3107,8.4559,12.9684,73.3102,80.9524,0.8044,0.7259,13.294,0.2996,89.4831,89.8876,87.931,84.4828,20.6218,1.3537 Mid and South Essex ICB,F81641,Milton Road Surgery,7085.82581,4.354,66.4706,62.5,2.1899,67.2956,70.7547,2.0482,78.9474,4.5891,1.3397,1.3912,0.5136,19.7889,6.6732,12.8816,72,84.5714,0.5282,0.7858,7.7535,0.51,85.6551,85.5856,80,74.6667,41.6865,0.9404 Mid and South Essex ICB,F81652,Medic House,5873.493369,7.073,66.6667,58.7629,3.6502,74.4444,75,3.6692,91.6667,8.3251,3.308,3.251,1.1084,30.8105,10.5709,20.2091,77.9703,87.8431,0.6464,0.8935,10.7882,1.6763,92.4932,78.75,88.75,75,18.6769,3.1559 Mid and South Essex ICB,F81669,Derry Court Medical Practice,6455.377826,5.0188,58.0645,54.2056,1.785,74.7604,76.1905,1.7575,81.6667,2.6383,2.1969,0.1922,1.8566,28.6808,6.2908,10.8197,76.9972,85.4839,0.5767,0.7826,12.5269,0.3701,88.5417,89.4118,86.8852,93.4426,19.0907,1.2357 Mid and South Essex ICB,F81697,Dr Devaraja Vc Practice,3280.304647,6.1733,69.3069,62.6866,4.0374,76.4706,80.7692,3.0364,65,8.1874,2.8028,0.6673,3.055,17.1347,8.4439,19.8198,86.9099,91.4063,0.2002,0.5672,22.1589,1.1459,95.6433,86.5854,85,95,16.0109,2.4024 Mid and South Essex ICB,F81708,Sai Medical Centre,10284.50556,5.0284,64,60.2094,1.8773,69.9074,77.5148,1.9206,80.4878,3.2156,1.5226,0.2941,1.1307,35.0352,7.236,14.2054,57.4705,83.7438,0.2768,0.5364,12.3793,0.439,89.5132,87.5,,,18.9134,1.3236 Mid and South Essex ICB,Y00033,Purfleet Care Centre,5515.675537,4.501,60,55.1724,1.24,65.9864,73.8636,1.1958,75.4717,1.4981,1.2253,0.2067,0.7283,24.8236,7.3091,9.8022,69.2185,89.1892,0.3543,0.6791,10.4037,0,84.6194,80.8824,72.7273,83.3333,20,0.8119 Mid and South Essex ICB,Y00999,Oddfellows Hall & St Clements,10411.46779,4.8224,66.6667,65.7143,1.8484,74.0519,78.5276,1.4804,78.2353,3.394,1.5641,0.1506,0.4633,21.7659,6.9036,11.3583,77.1452,86.3014,0.4935,0.7528,10.0197,0.1466,91.0936,91.2752,93.913,84.3478,17.5042,0.8866 Mid and South Essex ICB,Y02807,Thurrock Health Centre,9442.550635,3.7874,58.9928,47.6923,0.9877,65.1741,74.2424,0.8363,79.8942,1.0162,0.6611,0.1673,0.7339,22.2114,5.8235,7.6543,61.0446,97.6191,0.446,0.9319,7.113,0.0992,81.7749,90.2174,88,89,19.8905,0.6531 Mid and South Essex ICB,F81006,Clayhill Medical Practice,6062.455196,6.0096,62.2378,52.8846,2.1735,66.6667,68.1818,2.2454,69.8413,4.9952,2.1196,0.3772,0.6423,36.756,7.5952,12.9693,84.4444,89.0511,2.2813,1.2574,11.6556,0.8283,87.6795,92.3077,92.7273,83.6364,24.233,1.455 Mid and South Essex ICB,F81013,Western Road Surgery,10611.61312,6.5227,79.2105,77.5439,4.0643,79.79,79.9197,2.6524,92.3729,4.573,1.1507,0.555,1.1818,7.4082,5.1625,14.8617,73.1343,79.8337,0.253,0.5305,7.5943,0.1531,88.6644,80.9524,89.011,90.1099,5.5361,2.1954 Mid and South Essex ICB,F81023,Beechwood Surgery,11049.74347,4.7423,73.0435,69.112,2.936,79.249,79.5652,1.8531,88.024,1.8828,0.9304,0.8236,0.7628,10.5672,5.9501,12.1559,77.3838,86.1539,0.3966,0.6482,8.5836,0.1576,89.2219,87.6712,86.7925,90.566,12.025,1.3574 Mid and South Essex ICB,F81025,Dr Gc Chajed's Practice,9347.019014,6.0854,68.9516,67.5676,1.875,70.4545,75,2.2718,86.6242,4.5559,1.5675,0.3869,1.0847,27.3535,7.5838,14.871,72.1912,84.8361,0.4861,0.7341,13.6805,0.1962,89.8483,91.5152,80.7018,79.8246,16.369,1.6667 Mid and South Essex ICB,F81029,Dr Degun & Dr Macaulay,7090.121365,6.2332,67.5393,66.1972,1.9948,65.1297,74.1379,2.0687,86.3636,4.2247,1.7362,0.3694,1.1626,21.6561,6.753,12.9787,74.2268,82.8729,0.5664,0.7388,5.3709,0.2666,92.3803,84.6774,71.4286,85.7143,10.8177,1.4038 Mid and South Essex ICB,F81031,Dr M Aslam's Practice,9003.584141,7.8621,56.6038,55.5556,2.6767,63.1769,61.2903,3.0769,74.7475,6.8709,2.439,1.4009,1.3576,34.8953,8.9966,15.0844,61.8012,77.0833,0.9381,1.4009,13.7914,0.4011,86.6868,77.7251,74,85,22.577,2.1889 Mid and South Essex ICB,F81036,Robert Frew Medical Centre,16931.78068,5.8659,74.6765,74.3073,3.6968,75.9322,78.1609,2.6961,88.172,5.4258,1.575,0.9187,0.8662,12.9109,7.513,15.4818,73.5389,80.8511,0.4539,0.5961,11.3852,0.3452,89.1627,84.0456,80.9045,93.9698,10.5963,1.7281 Mid and South Essex ICB,F81038,Tile House Surgery,13760.52214,6.8714,73.4864,72,4.4456,78.341,81.3492,3.0978,86.014,4.9105,1.7499,0.8713,0.6277,11.4379,6.7797,16.4495,58.4076,74.9049,0.5064,0.8117,9.6363,0.5249,86.6278,84.7328,81.0219,85.4015,11.9769,2.3978 Mid and South Essex ICB,F81041,London Road Surgery,14359.2144,7.0563,75.6637,71.2418,4.9284,76.9932,78.6611,3.6547,93.2886,8.3677,2.1277,0.9336,1.5892,14.296,8.3193,18.2154,76.2387,81.25,0.6369,0.8974,11.1869,1.5798,93.626,79.4203,85.7143,87.4286,11.7626,2.5185 Mid and South Essex ICB,F81045,Dr N Dabas's Practice,3226.056488,5.644,77.9817,75,4.1428,78.6885,76.1194,2.9442,88.0952,6.7154,0.8859,0.5211,0.5984,7.7717,6.0537,17.1444,74.3421,83.6634,0.1042,0.469,6.3165,0.3191,85.34,85.2941,81.25,84.375,6.8525,2.0323 Mid and South Essex ICB,F81055,Mount Avenue Surgery,11840.70538,5.0407,77.6498,73.9812,3.6411,79.3103,82.2222,2.5032,93.5252,2.2766,0.7889,0.8192,0.2009,7.8929,5.4169,14.0484,69.1968,70.303,0.3489,0.6448,4.869,0.1084,83.9034,75.5905,70,77,8.7417,1.7143 Mid and South Essex ICB,F81060,Aegis Medical Centre,5027.70309,6.5763,70.6349,61.5385,1.7132,69.8324,69.863,1.7948,90.4762,9.1059,1.8968,0.5711,0.4952,31.171,9.6661,15.1948,69.8891,82.4561,0.7139,0.6935,18.9271,0.203,89.628,89.0511,85.2941,94.1176,20.7128,1.6113 Mid and South Essex ICB,F81080,The Billericay Medical Practice,10493.61997,8.5808,81.1765,80.5461,4.3822,80.1775,84.4,3.2046,96.6292,5.8885,1.3878,0.572,0.4416,7.1044,5.9311,16.0148,74.7922,78.913,0.4037,0.572,7.266,0.0749,87.0619,84.7619,75.7282,93.2039,6.9426,2.3804 Mid and South Essex ICB,F81085,"Dr A Naeem & Partners,The New Surgery",13614.8205,5.5683,71.5054,64.751,3.297,75.2437,77.7273,2.3653,82.7068,4.3281,1.8349,0.9103,0.5819,11.8123,6.5962,13.697,62.9261,88.0716,0.6522,0.9031,8.6652,0.1599,86.4759,88.1818,65.3846,86.1538,13.3572,1.9567 Mid and South Essex ICB,F81102,Rockleigh Court Surgery,6191.118704,6.0845,71.5789,68.2119,3.8117,70.2128,76.087,2.6345,87.013,3.0335,1.051,1.1631,0.7273,7.648,5.9276,14.9664,65.8824,80.8581,0.3644,0.7007,10.5198,0.9664,85.1128,83.8384,73.3333,86.6667,9.3811,2.102 Mid and South Essex ICB,F81104,Chapel Street Surgery,5137.948165,6.1778,70.7182,73.2143,3.9495,66.4474,71.2644,2.9028,72.5,10.731,1.5008,1.3823,1.6736,12.1711,7.8731,21.9787,67.3835,77.5362,0.2765,1.3823,7.3345,0.7813,90.3759,82.2222,66.1538,95.3846,10.0354,1.8365 Mid and South Essex ICB,F81108,Laindon Medical Group,19564.19123,6.9563,65.8582,62.8947,3.2121,68.4713,68.543,3.0048,89.5604,5.4862,2.2632,0.7253,0.5863,29.9565,8.6861,16.055,72.068,83.6158,0.7253,0.9816,11.2934,0.6034,84.2153,87.7698,89.9563,91.2664,19.2308,2.1923 Mid and South Essex ICB,F81150,Ballards Walk Surgery,12218.00471,5.3812,64.6209,63.1111,2.2344,64.4491,71.9388,1.9729,80.7692,2.4931,1.5609,0.7606,0.3531,30.0101,7.3465,10.8945,75.3199,90.7473,0.4199,0.8795,12.6364,0.2522,86.5265,85.1852,90.625,94.5313,20.607,1.1885 Mid and South Essex ICB,F81158,Dr Nasah & Partners,4543.376642,6.4608,71.7742,62.5,3.5668,75,69.697,3.6979,89.1892,6.7462,3.1209,0.3147,0.9199,37.1022,9.4935,14.1096,55.8758,78.1609,0.5508,1.3113,12.7428,1.2978,87.021,93.5185,83.0189,83.0189,20.9333,2.439 Mid and South Essex ICB,F81163,The New Folly Surgery,6529.220131,8.7629,78.97,69.0476,4.296,73.8095,78.4722,3.02,79.7753,6.5163,1.6305,0.9074,1.2074,11.0434,6.0892,16.3618,56.9361,74.1539,0.5104,0.5671,6.7117,0.9156,86.4601,83.5938,76.1905,82.5397,10.0628,2.1551 Mid and South Essex ICB,F81186,Felmores Medical Centre,7356.97928,5.6735,63.2258,57.5221,2.0315,66.0448,70.8333,1.9889,79.7619,4.1051,1.9605,0.2841,1.9261,35.9346,8.6091,10.797,64.1422,88.4956,0.5825,0.9945,9.8638,0.1039,86.0896,76.6129,83.5294,85.8824,21.6707,1.5059 Mid and South Essex ICB,F81215,Deal Tree Health Centre,9314.549458,5.5675,79.3651,77.907,4.137,81.749,82.5871,3.0467,87.6405,4.4208,1.2126,1.1208,0.5761,9.638,6.3496,17.3324,72.2178,85.023,0.54,0.5808,8.0401,0.1734,87.8759,86.2319,86.6667,96.6667,9.3761,2.0379 Mid and South Essex ICB,F81222,Queens Park Surgery,4424.56851,6.5672,74.0964,76.9841,3.749,78.6982,76.7241,2.2533,92.5,5.2217,1.1461,0.4662,0.2709,9.4362,5.67,14.8601,66.778,89.759,0.1748,1.0101,6.5764,0.2982,84.0986,81.9277,80.9524,83.3333,9.0845,1.5152 Mid and South Essex ICB,F81640,Aryan Medical Centre,4501.016319,7.6851,60.9023,61.3636,2.5049,73.75,77.4648,2.2852,90,4.3898,1.9996,0.1978,1.1121,32.856,8.3262,11.7557,75.4237,90.4762,0.5713,1.2745,17.6178,0.2062,87.3843,90.3615,75.4717,84.9057,23.719,1.4283 Mid and South Essex ICB,F81645,Rose Villa Surgery,4736.102641,7.2256,70.8333,68.0851,3.2655,76.8116,78.3784,2.8396,85,5.564,2.461,0.4496,2.3284,36.9683,10.1518,18.3152,71.4495,78.022,1.1832,1.2305,16.2685,0.8734,93.7104,84.5455,93.9394,96.9697,16.4313,1.964 Mid and South Essex ICB,F81666,Dr Sharma & Partners,3250.168733,6.7967,72.3214,72.8395,2.968,74.1379,74.2424,2.2831,84.6154,6.5249,2.1119,0.4566,0.3299,20.5373,6.9275,14.9829,70.9382,80.6818,0.4852,1.3128,7.6246,0.2288,88.2859,89.0411,88.8889,86.1111,14.3496,1.9121 Mid and South Essex ICB,F81707,Fryerns Medical Centre,4953.495241,4.8868,62.9213,54.9296,1.5557,72.0721,76.1905,1.4608,79.5181,3.0778,1.2332,0.3415,1.5389,36.9287,6.5998,9.391,73.6842,87.1795,0.6071,0.9865,10.5832,0.1759,87.0539,89.5522,82.9787,85.1064,22.083,1.0055 Mid and South Essex ICB,F81711,Knights Surgery,3390.218652,5.3025,66.6667,58.1818,1.5485,70.1987,67.4419,2.293,84.7826,5.8117,1.5485,0.3871,1.0461,30.7104,7.7714,12.2692,69.2983,84.2857,0.8041,0.953,16.079,0.2345,86.5125,86.6667,81.0811,91.8919,18.3562,1.4592 Mid and South Essex ICB,F81729,Matching Green Surgery,3432.399294,6.2353,68.75,65.7895,2.4712,80.6202,81.5385,1.7024,87.0968,5.3539,2.0044,0.1647,0.8983,29.0725,8.0582,14.7996,62.6068,78.8732,0.2746,0.4668,14.2293,0.5819,92.2078,85.7143,81.3953,83.7209,16.6954,1.5102 Mid and South Essex ICB,F81732,Swanwood Partnership,7162.131049,6.7346,70.6422,65.942,3.366,75.8772,75.2212,3.0535,92.1053,5.9874,1.9315,0.6533,1.4247,14.7237,7.8896,17.7532,72.1398,80.0654,0.213,0.9374,10.8927,0.3526,87.8274,87.1622,72.7273,86.3636,14.2018,2.1872 Mid and South Essex ICB,F81737,The Highwood Surgery,2233.039228,4.7,69.2308,68.254,2.0714,77.0833,74.1379,2.2857,94.1177,4.6694,1,0.4286,0.0925,13.0556,5.8663,11.9286,78.0919,82.3529,0.2857,0.5357,8.1369,0.2008,84.4902,78.125,86.9565,95.6522,10.708,0.7857 Mid and South Essex ICB,Y00469,Dr Sims And Partners,15120.31709,8.4067,70.6199,62.8458,3.8705,83.2911,80.8081,3.5501,88.0282,6.0068,3.6175,0.6071,0.665,35.6743,10.2583,16.6625,75.2185,87.1658,0.8517,1.4419,10.0403,0.9981,92.0081,81.3056,79.0698,80.2326,19.8838,2.5297 Mid and South Essex ICB,Y00758,Dr Jo Arayomi's Practice,2555.210219,5.0085,62.5,52.381,2.4735,70.3297,69.4444,1.9238,79.3103,5.1661,1.4527,0.3534,0.6326,37.8671,8.6618,12.4068,74.0601,86,1.1386,1.1779,13.0733,0.4076,87.6516,82.9787,90.3226,87.0968,17.6104,1.0208 Mid and South Essex ICB,Y03052,Langdon Hills Medical Practice,13552.78024,7.9653,70.7775,66.4311,3.0537,75.5179,74.4,2.4694,91.1602,4.8991,1.906,0.7234,1.9633,14.9445,7.5391,15.0668,65.3974,79.3785,0.4591,0.9739,12.5138,0.1704,88.9107,87.1595,91.9463,91.9463,13.8703,1.4816 Mid and South Essex ICB,F81001,Dr Khan & Partners,13015.0436,6.8988,74.4131,77.7027,4.6154,76.9036,77.9221,3.9801,90.7563,5.8378,1.8829,1.3165,1.1599,10.2741,7.9841,16.9996,56.8591,71.4754,0.398,0.7042,11.4072,0.5146,88.4809,80.7692,73.0263,85.5263,11.7417,2.4876 Mid and South Essex ICB,F81007,The Puzey Family Practice,21828.29681,7.3583,73.7879,67.0213,3.5763,74.6082,76.8421,3.3027,85.1429,2.6567,1.9201,1.0113,0.9039,17.6447,7.7122,15.8394,50.8097,64.7668,0.5814,0.7719,9.4968,0.0711,83.1849,79.3872,63.3621,82.7586,14.3163,1.837 Mid and South Essex ICB,F81032,P A Patel Surgery,3599.111019,6.1768,73.3333,71.7647,4.3204,75.5556,75.7576,4.2604,85.1852,2.6899,1.8902,1.4401,1.5631,11.4222,6.8656,16.1116,36.4103,58.5034,0.24,0.9001,7.4518,0.6258,89.1601,75,,,11.9113,1.8902 Mid and South Essex ICB,F81051,Third Avenue Health Centre,8608.350133,6.9536,67.5277,68.8525,3.2705,75.6303,75.5556,3.7066,82.9268,4.5158,2.7447,0.6669,1.5651,26.052,9.1641,19.0073,55.5008,79.9242,0.5387,1.1543,17.0199,0.2222,87.6332,83.2487,79.6296,87.037,19.7362,2.0906 Mid and South Essex ICB,F81061,Conner & Partners,8087.669194,7.4688,76.4505,77.6596,5.4141,83.4171,82.3944,4.1678,93.2203,3.9007,2.9483,1.0587,0.9026,9.783,8.2231,22.3935,67.9744,81.5166,0.1742,0.5495,14.5551,0.4509,90.3702,88.3562,77.3196,93.8144,11.7479,2.4122 Mid and South Essex ICB,F81065,William Harvey Surgery,4081.458398,4.9975,71.3235,71.2766,3.1228,76.4706,74.0741,2.7033,95.122,3.6337,1.2585,0.7224,0.3779,10.2888,5.812,13.3302,52.3596,56.6929,0.1864,0.7224,5.7849,0.0577,83.517,90.4762,,,11.9967,1.1885 Mid and South Essex ICB,F81066,The Greensward Surgery,6338.438779,6.7291,80.2469,80.3681,5.129,89.3491,87.4016,3.7097,96.7213,7.3643,1.8548,0.871,1.124,6.6098,7.4933,19.7581,75.3607,84.2593,0.4516,0.5323,11.5892,0.2316,91.3276,76.7123,95.6522,95.6522,8.0648,2.6452 Mid and South Essex ICB,F81075,The Hollies,14026.35607,6.6914,73.2919,76.3578,3.8616,77.2989,79.0795,3.1238,90.7407,6.0312,1.97,1.4991,0.9974,12.2538,7.7981,18.9546,49.2389,69.0241,0.5651,0.8791,8.7975,0.9599,87.1802,84.8797,60.5096,77.0701,11.2303,2.5901 Mid and South Essex ICB,F81089,Wakering Medical Ctr.,11073.09185,6.7514,75.8974,71.6475,4.3884,75.1701,75.2381,3.3959,94.0594,8.2359,1.7904,0.7687,0.4058,14.6904,7.7059,17.6219,57.2552,66.7476,0.4768,0.6422,8.6894,0.2753,82.3273,82.5532,64.1667,91.6667,12.4289,2.0823 Mid and South Essex ICB,F81096,Oaklands Surgery,13823.27245,7.4813,73.2843,70.9804,4.0706,76.1905,75.6757,3.3447,83.6066,7.2155,3.3079,1.2405,0.4743,24.2113,10.413,20.8123,71.0302,80.1181,0.8086,0.9924,12.4661,0.3698,92.6874,82.5175,75.5814,79.0698,16.1634,2.0123 Mid and South Essex ICB,F81101,Essex Way Surgery,5601.940315,4.9733,75.814,76.7606,3.111,82,82.6087,2.8053,92.1569,1.6502,1.4746,1.5285,0.15,9.8224,6.4195,15.4289,77.2344,78.4906,0.3956,0.5215,9.1727,0.1434,85.57,80,77.7778,88.8889,8.9502,2.014 Mid and South Essex ICB,F81123,Audley Mills Surgery,19944.76356,6.3702,77.7444,76.4192,3.9728,79.2517,77.6316,2.8853,90.0585,2.8049,1.837,1.4549,0.2988,8.1126,6.946,14.6076,61.4389,77.2575,0.5584,0.6025,11.5488,0.4247,86.436,83.871,77.0335,91.3876,9.4985,2.2289 Mid and South Essex ICB,F81125,Church View Surgery,13815.35767,7.1277,74.635,77.2021,4.2589,76.7677,79.7428,2.8439,98.0583,5.5323,1.9053,0.9527,0.2595,7.1581,7.961,18.6747,64.3725,67.5362,0.3432,0.6444,9.8175,0.1753,94.6077,84.7176,75.4286,86.8571,9.8952,1.7792 Mid and South Essex ICB,F81142,Dr Baker & Partners,6287.892449,6.4229,74.3363,76.7123,4.2097,75.419,75,3.4742,95.7447,8.6779,2.0031,1.5806,1.053,10.5772,8.0521,19.4992,67.4661,78.3972,0.5634,0.4069,11.9345,0.3492,89.4052,83.3333,76.9231,84.6154,13.1594,2.2848 Mid and South Essex ICB,F81205,Ghauri Practice,6106.113781,6.8827,68.5,70.9924,4.0794,72.1429,72.7273,3.8791,74.6032,4.685,3.2417,0.7103,0.7385,24.93,11.5646,19.1586,71.0402,79.1262,0.4007,0.601,13.8934,0.8265,89.3189,89.726,70,76.6667,15.4364,2.0215 Mid and South Essex ICB,F81618,High Road Family Doctors,3939.778737,9.5841,75.2137,73.8636,3.7494,79.8507,84.2105,3.3382,90.3846,6.03,2.6851,1.5965,1.1938,10.5876,7.8455,17.344,67.5325,89.8876,0.5322,0.8708,15.9167,0.3088,92.5769,86.0215,91.4894,91.4894,13.9775,2.2738 Mid and South Essex ICB,F81675,The Practice Leecon Way,4794.681722,6.7601,72.7273,71.6981,2.8743,81.2808,76.4045,2.1041,88,3.3038,1.7096,0.7702,1.0602,11.978,6.3107,14.1649,67.2387,76.1062,0.1503,0.9393,9.64,0.2256,92.76,87.3016,88.8889,95.5556,13.6031,1.4466 Mid and South Essex ICB,F81690,Ashingdon Medical Centre,5451.453023,7.1081,76.7327,70.922,4.338,84.5238,81,3.4366,95.6522,3.503,2.6291,0.8451,1.9851,19.3167,7.6781,18.1596,76.6927,79.8995,0.4132,0.77,11.5367,1.2631,92.0592,90.1235,86.8852,85.2459,14.1892,2.2911 Mid and South Essex ICB,F81700,Rahman Practice,4243.511811,5.4555,66.0256,66.9903,1.6605,74.3802,74.6835,3.5192,96.2963,5.9345,2.627,0.7435,2.8449,24.838,8.9237,18.2404,68.5,83.0882,0.6444,0.5452,7.1582,0.0583,86.6973,88.3495,87.5,89.2857,16.2178,1.5861 Mid and South Essex ICB,F81704,Downhall Park Surgery,2946.893185,5.6353,74.3802,74.7253,3.099,77.3723,78.0488,2.2424,94.4444,2.7252,1.0078,0.3275,0.5451,7.6809,5.8265,11.489,65.7217,69.1177,0.3527,0.5291,3.5909,0.0693,88.0163,91.8367,93.9394,87.8788,9.8261,1.3102 Mid and South Essex ICB,F81713,Benfleet Surgery,2348.599788,4.1338,70.4545,75,4.0853,77.2152,78.7879,2.2777,100,4.7111,1.8077,1.4823,0.0889,11.3608,5.4854,16.7751,69.6,82.0225,0.3615,0.3615,11.9556,1.3345,87.231,82.2222,80.7692,88.4615,8.9286,1.6631 Mid and South Essex ICB,F81739,The Island Surgery,8930.096313,8.8272,70,70.5202,4.2045,73.1579,71.6667,4.2631,88.2353,11.0495,4.1166,1.5529,0.5721,25.027,11.0857,26.0328,47.8936,62.9717,0.9229,0.8204,12.462,0.4853,86.9446,84.0816,79.5082,85.2459,16.7989,2.3733 Mid and South Essex ICB,F81740,The Community Practice,8550.770019,6.2428,70,68.6667,4.645,64.4172,73.5849,4.7388,89.7436,5.8922,3.5033,1.0948,0.2594,24.906,9.6792,25.0391,77.368,79.6569,0.5474,0.7976,10.8579,0.153,90.5424,75.2809,65.4206,82.243,16.2656,2.7526 Mid and South Essex ICB,F81003,Dr F Khan Carnavon Road Surgery,6489.926282,6.1135,58.9474,60,2.0887,64.5631,69.0909,2.4394,88.5246,1.9143,1.9611,0.5262,1.1964,29.2933,6.5124,13.1856,59.1592,71.4286,0.6218,1.0842,9.7109,0.2643,79.5036,97.2603,76.1905,80.9524,19.9562,1.2915 Mid and South Essex ICB,F81046,Dr Krishnan & Ptnr - Kent Elms HC,5692.660186,6.5335,69.898,70.8333,4.8986,73.0159,75.8242,4.2296,92.5926,6.9936,2.1148,1.079,0.8258,17.2601,9.1164,23.1981,53.5,71.2727,0.4748,0.9711,6.1161,0.1758,87.6849,84.6154,75.7576,78.7879,12.3195,2.3738 Mid and South Essex ICB,F81081,The Queensway Surgery,25728.56421,7.1531,63.9594,61.8605,3.4987,66.5409,66.5753,3.1275,83.75,4.9157,2.5057,0.9048,2.1042,33.8254,8.4771,16.0503,57.6265,75.0842,0.942,1.8793,14.7943,2.4296,90.3432,86.5169,76.6667,87.7778,23.3229,1.8793 Mid and South Essex ICB,F81086,Central Surgery - Southchurch Blvd,8403.470284,6.3838,68.3983,64.9123,2.5475,70.9302,72.973,3.0165,89.1304,2.9984,1.7998,0.545,1.1183,27.4906,6.5086,14.5374,66.5184,75,0.6084,1.1027,10.1621,0.2969,85.245,84.6847,76,80,16.6999,1.5716 Mid and South Essex ICB,F81092,Dr Sooriakumaran,4915.276016,6.2854,68.2353,70.4762,3.1934,71.9745,77.6471,3.154,80.9524,2.0729,1.4587,0.8673,0.8741,17.9434,8.0995,14.4885,56.9573,73.9796,0.276,0.9462,7.5175,0.1433,84.593,84.5238,,,11.931,2.1486 Mid and South Essex ICB,F81097,The Valkyrie Surgery,19571.06934,5.6194,63.1692,60.0601,2.8003,57.0079,65.1163,2.8119,80.7692,2.9104,2.0466,1.3509,0.3071,24.5321,7.0011,13.3929,63.2133,79.802,1.032,1.7219,11.1298,0.3743,82.9342,86.1314,66.6667,83.908,18.7429,1.7973 Mid and South Essex ICB,F81112,Highlands Surgery,13644.68456,5.8987,78.3058,75.2294,4.6269,80.1386,81.2734,3.1246,95.4546,5.1642,1.7633,0.9028,0.9579,8.215,5.3107,14.4872,70.5686,80.1431,0.3103,0.656,7.8203,0.3772,89.7126,78.4615,86,92,9.7301,2.3628 Mid and South Essex ICB,F81121,Thorpe Bay & Shaftesbury Avenue Surgery,15508.6382,6.0876,70.3571,65.5612,3.6201,77.2541,74.6914,2.806,84.8276,7.2164,2.1585,0.9004,1.1144,13.9768,7.3152,15.9482,69.3427,74.3676,0.5735,1.0916,8.8687,0.3844,88.4712,84.5912,76.7956,87.2928,21.9101,1.6713 Mid and South Essex ICB,F81128,Eastwood Group Practice,16642.76177,5.6756,70.8411,69.5015,4.3315,75.463,77.5665,3.2938,90.5172,2.9283,2.0888,1.5666,0.4715,14.8481,8.4947,17.3462,73.4571,80.5263,0.482,0.8369,8.09,0.2772,92.181,78.4173,79.7619,85.119,11.842,2.1892 Mid and South Essex ICB,F81144,The Pall Mall Surgery,21000.31537,7.531,73.5385,72.591,3.8414,81.3097,83.4146,2.7815,84.5411,4.4824,1.8744,1.879,0.8386,11.9357,5.6212,15.7727,60.8152,82.6882,0.6155,0.9719,10.8664,0.4583,82.3979,82.3944,73.5632,85.6322,10.4971,2.0873 Mid and South Essex ICB,F81147,Dr Navin Kumar,6628.390348,5.411,65.896,64.7619,3.6826,61.4379,75.2809,3.4069,87.1795,3.2842,1.989,2.4025,1.3089,25.4213,8.345,18.7082,62.9921,66.3492,0.8271,1.5557,6.7111,1.5419,87.9178,88.172,76.1905,85.7143,13.3421,2.5798 Mid and South Essex ICB,F81159,Southend Medical Centre,7888.51273,4.9835,51.3274,47.561,1.494,55.7276,60.9756,1.6755,84.7059,1.4801,1.7872,0.4747,1.2885,37.8049,5.7991,8.7685,54.7135,68.9655,0.5864,2.0246,9.2286,0.3927,81.9381,79.7753,82.6923,84.6154,27.7573,1.0472 Mid and South Essex ICB,F81164,West Road Surgery,10778.863,6.8895,63.0662,61.7512,3.5527,66.8605,75,2.7352,79.7619,2.1998,2.3819,0.6762,1.5787,25.7646,8.3185,14.3621,60.786,69.163,1.1203,1.3726,9.8991,0.6571,88.1352,87.8788,73.3333,85.8333,15.866,1.8874 Mid and South Essex ICB,F81176,North Avenue Surgery,2980.068891,7.2998,69.7917,65.0794,3.1933,75.2475,71.7391,2.152,81.3953,2.7039,2.1173,0.5901,2.3434,29.9303,9.2082,14.0576,61.1446,75.3425,0.5901,1.4231,17.215,0.3887,88.5856,97.8261,73.6842,89.4737,20.8353,1.5273 Mid and South Essex ICB,F81207,Dr Bekas Medical Centre,2635.819287,3.558,52.6316,51.3514,1.7551,58.7629,62.8571,2.2621,75.8621,1.5702,1.3651,0.078,2.4534,30.3418,5.4669,10.9594,58.8745,80,0.585,0.858,14.5731,0,81.4732,89.2857,79.1667,91.6667,21.1304,1.092 Mid and South Essex ICB,F81223,Dr Malik - Kent Elms HC,3384.509725,4.2961,69.5652,64.7887,3.3877,70,65.1515,3.2309,84.2105,8.5205,2.0075,0.7842,1.0844,17.7472,9.5456,17.5345,63.2883,84.3478,0.5646,1.0665,8.5593,0.5714,89.5421,69.7917,84.4444,86.6667,15.5711,2.1016 Mid and South Essex ICB,F81613,Dr Kumar & Ptnr - Shoebury HC,9171.382218,7.0695,66.787,62.3711,3.4946,70.4797,73.4568,3.4596,83.5443,6.2768,2.8986,1.0168,1.1399,25.1362,8.7362,17.0641,57.5732,70.4698,0.9467,1.2506,9.6817,0.1758,86.5555,82.0755,73.8739,89.1892,18.0567,2.2324 Mid and South Essex ICB,F81649,Drs. Palacin & Guyler,4760.40657,7.6868,74.375,69.1589,3.3937,74.4526,75,2.5339,89.4737,2.2927,2.3529,0.9502,0.1132,22.8841,8.3171,14.9548,73.9209,85.7143,0.2941,0.543,10.133,0.277,91.8397,84.8485,94.3396,96.2264,13.7556,1.9683 Mid and South Essex ICB,F81656,Warrior Square Surgery,3368.062086,6.4606,54.6512,54.5455,2.5907,69.4118,69.7674,3.2939,69.2308,7.4178,3.1088,1.0363,2.3005,36.348,9.2336,17.9497,78.4689,83.5821,0.7402,1.2583,8.6385,2.0101,91.7384,85.1852,80,92.5,21.3601,1.6284 Mid and South Essex ICB,F81696,The Leigh Surgery,2822.106198,6.5112,71.7172,69.2308,3.6792,77.9412,76.5957,3.0178,91.6667,3.8168,2.0256,0.7855,0.3053,17.9964,8.153,15.4609,39.2492,55.5556,0.9508,0.8681,5.6489,0.1759,79.4444,96.4286,,,14.9849,1.7776 Mid and South Essex ICB,F81744,Scott Park Surgery,2688.80037,7.6095,76.4151,73.913,4.7007,89.8734,90,2.9379,89.4737,8.0872,1.9097,0.5141,0.4089,12.7652,8.5002,15.6812,79.8799,91.4894,0.2204,0.661,16.9468,1.2077,94.629,97.0588,96.7742,96.7742,7.548,2.3136 Mid and South Essex ICB,Y02177,The Practice Northumberland Avenue,7363.360725,6.449,62.8571,54.717,1.6183,69.0141,67.3684,2.072,82.6667,2.2071,2.4501,0.8621,1.4246,41.4251,6.2624,11.1162,71.3424,80.5556,0.8621,1.588,12.8812,0.1737,87.1191,83.9081,89.6552,93.1034,25.1199,1.4065 Mid and South Essex ICB,Y02707,St Luke's Health Centre,7728.341099,7.4778,58.5366,53.1746,2.2915,67.7686,70.2703,2.1141,82.4324,2.5775,2.9125,1.1236,0.7048,33.4335,8.0639,13.2614,66.9261,79.3651,0.961,1.4932,12.3037,0.9818,87.9324,88.7851,72.973,82.4324,21.9662,1.7445 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence "Bedfordshire, Luton and Milton Keynes ICB",E81002,Greensand Surgery (Ampthill),8465.566811,9.2959,79.6875,73.6402,3.9725,82.1114,86.5,2.5289,94.9153,5.1653,1.2844,0.7368,1.1235,8.8201,6.3359,15.5814,77.2025,88.1919,0.1693,0.5277,11.6219,1.6466,83.1304,85.3261,92.2222,97.7778,7.9313,1.5532 "Bedfordshire, Luton and Milton Keynes ICB",E81003,Dr Jl Henderson & Partners,20026.69884,7.8535,75.1623,73.301,3.6175,75.2688,77.3256,2.9254,94.0959,3.4027,1.5707,0.7019,1.0649,12.3326,6.6472,15.658,73.4452,80.1609,0.4958,1.075,10.1008,1.6159,87.7063,81.0651,84.0426,92.5532,13.0014,1.9634 "Bedfordshire, Luton and Milton Keynes ICB",E81004,Salisbury House Surgery,11266.37161,8.1552,72.0109,69.8347,3.1754,76.1905,77.4359,2.7169,95.2381,2.3213,1.9783,0.866,0.8027,12.7808,6.7088,14.4167,71.0567,80.3571,0.3396,1.1632,10.1855,0.2507,88.3848,85.625,85.7143,91.9643,14.329,1.6556 "Bedfordshire, Luton and Milton Keynes ICB",E81005,Bell House Medical Centre,10872.10187,7.4009,60.4167,58.8608,2.4384,53.5433,67.8832,2.6015,84.7222,4.0481,1.1421,0.5076,0.5646,29.2558,12.8983,12.9532,71.1439,79.2727,0.6798,1.26,9.5736,0.3883,84.795,85.9935,74.6193,93.401,13.5797,1.831 "Bedfordshire, Luton and Milton Keynes ICB",E81006,Stopsley Village Practice,9259.157598,5.3428,66.5493,73.2673,3.2585,64.214,74.5562,2.2874,63.6364,1.864,1.694,0.8092,1.2473,20.175,9.4866,15.9258,73.5765,79.5455,0.5287,0.7229,8.2785,0.1134,89.0169,81.6901,78.7879,93.1818,15.4205,1.5753 "Bedfordshire, Luton and Milton Keynes ICB",E81007,Harrold Medical Practice,6224.374485,8.186,78.125,71.5847,6.2509,78.4884,76.9737,3.2322,93.0233,2.7861,1.8905,0.3659,0.8601,9.6004,6.6838,19.8201,67.0265,85.7651,0.2287,0.8538,9.9663,2.3706,86.4909,85.2941,85.7143,90.4762,9.3078,1.9973 "Bedfordshire, Luton and Milton Keynes ICB",E81008,Wheatfield Surgery,13299.04286,7.5019,62.5731,69.3798,2.9033,62.0609,72.1461,2.9273,78.0702,4.5309,2.1835,0.7198,1.262,25.1412,10.6329,15.2124,62.8057,79.8851,0.8478,1.1837,13.1064,0.3792,82.6653,85.8859,77.5,86.5,16.2691,1.7036 "Bedfordshire, Luton and Milton Keynes ICB",E81009,West Street Surgery,12688.65516,6.9868,74.813,72.2628,3.8779,79.3893,86.6667,3.1253,90.4255,2.8071,2.1435,0.8754,1.0742,16.8407,8.1146,17.2216,80.4909,84.4961,0.4663,0.8427,16.1228,0.3149,91.7719,91.7476,93.662,96.4789,13.5737,2.1026 "Bedfordshire, Luton and Milton Keynes ICB",E81010,Dr Whm Matta's Practice,9536.224341,5.9216,62.9268,66.6667,2.7811,45.5072,61.8056,2.8781,85.0877,1.5544,1.1534,0.6899,0.4462,23.5638,10.836,13.8622,63.0846,78.6477,0.7114,0.927,13.6298,0.4098,85.339,83.0409,81.2081,91.9463,12.0938,1.9618 "Bedfordshire, Luton and Milton Keynes ICB",E81012,Greensands (Potton),11993.84659,7.1017,76.8763,63.2399,4.1902,77.3936,75.8621,2.8744,92.8058,1.6076,1.261,0.6814,0.3897,9.3061,7.2432,15.4527,73.2589,85.1441,0.2271,0.6501,9.9377,0.1716,91.1693,82.7586,88.7218,93.985,10.5915,1.6917 "Bedfordshire, Luton and Milton Keynes ICB",E81013,Castle Medical Group Practice,15715.50061,4.6214,68.0101,75,2.4596,52.5038,70.6383,2.3142,83.6364,3.0547,1.8174,0.5937,0.9615,24.0966,6.6185,12.3221,64.6547,75.5627,0.5089,1.048,9.7337,2.0843,85.5548,84.8361,78.9474,91.8129,16.044,1.4055 "Bedfordshire, Luton and Milton Keynes ICB",E81014,Priory Gardens Surgery,16706.08659,5.8273,66.4352,75.8278,2.2995,61.3456,70.4724,2.3157,81.5885,1.4571,1.4589,0.5044,1.1197,18.9446,7.9236,10.3205,59.7419,75.3623,0.5532,0.8406,11.872,0.1392,81.8359,84.2294,74.7573,89.8058,17.0135,1.3884 "Bedfordshire, Luton and Milton Keynes ICB",E81015,Flitwick Surgery,13158.1767,8.1233,78.6517,82.0442,4.2547,75.6381,76.7123,3.2297,95.1923,4.364,1.8957,0.667,1.1902,8.7679,7.8126,16.6047,51.9169,75.77,0.4985,0.7723,11.4101,1.1688,79.7745,89.1157,87.9518,92.1687,11.3441,1.7482 "Bedfordshire, Luton and Milton Keynes ICB",E81016,Lister House Surgery,6149.941217,5.4706,59.0909,51.9608,1.8678,60.3687,78.3505,2.5428,60.2273,5.4989,0.7063,0.8947,0.2123,26.4427,15.9577,15.4607,75.3358,83.1325,0.7848,0.8476,16.1359,0.2287,93.5225,86.6337,90.604,95.302,10.9986,0.9889 "Bedfordshire, Luton and Milton Keynes ICB",E81018,Woodland Avenue Practice,12739.25878,5.436,60.8025,57.3913,2.3061,50.8475,71.1443,3.2425,91.6667,2.0032,1.0757,0.6268,0.6578,21.7532,11.2592,13.5738,49.859,66.9643,0.7507,0.9596,13.4044,0.2446,86.5302,80.3987,54.7511,85.9729,13.2959,1.4162 "Bedfordshire, Luton and Milton Keynes ICB",E81019,London Road Health Centre,20872.97634,6.7905,62.5793,52.1164,2.273,60.9428,68.5131,2.3364,89.0152,2.3061,1.3403,0.5615,1.4005,24.8237,9.8979,12.1214,72.2715,82.9787,0.643,1.2452,14.4039,0.3944,85.5491,85.8824,69.0554,86.3192,20.3709,1.4263 "Bedfordshire, Luton and Milton Keynes ICB",E81021,Queens Park Health Centre,16222.66732,7.999,58.1749,64,2.0482,58.3493,71.0383,2.3124,76.8362,2.6368,1.1819,0.4845,0.7491,24.5489,11.8759,11.0924,58.2478,77.0492,1.1085,1.5269,14.4127,0.9599,91.1002,88.7538,77.6371,90.2954,18.2413,1.2847 "Bedfordshire, Luton and Milton Keynes ICB",E81022,Larksfield & Arlesey Medical Practice,15892.11812,7.2507,76.8953,79.198,3.1364,77.5424,78.8732,2.6188,90.9804,2.6224,1.4261,0.7054,0.8182,7.1279,6.8576,13.2308,53.4107,71.6814,0.3248,0.7866,8.7659,0.6299,86.1527,81.6901,76.7956,86.7403,13.1682,1.4667 "Bedfordshire, Luton and Milton Keynes ICB",E81024,Sharnbrook Surgery,5883.221845,8.72,77.1784,68.7861,5.1148,70.0637,75,3.6977,85.1852,1.5516,1.4009,1.2217,0.8952,9.6684,6.4775,17.0386,59.7938,66.6667,0.4887,0.8308,9.3694,0.8455,88.9865,82.6531,86.8852,90.1639,9.0189,2.5574 "Bedfordshire, Luton and Milton Keynes ICB",E81025,The Oakley Surgery,7586.061974,6.5755,59.1463,59.322,2.461,54.1958,66.6667,2.3948,75.8929,4.0698,1.376,0.6351,0.5109,24.5151,10.7409,14.2763,57.9744,79.0909,0.8733,0.8336,8.3862,0.3602,87.7695,83.8323,77.8689,88.5246,11.8521,1.5216 "Bedfordshire, Luton and Milton Keynes ICB",E81026,Larkside Practice,9551.106752,7.1829,72.7273,66.3366,3.136,69.3182,76.4706,2.8884,89.6552,4.8201,1.8878,0.3611,1.638,20.721,9.434,15.0506,65.8833,80.8889,0.4023,1.0109,14.0306,1.1031,86.3298,85.782,83.2117,92.7007,13.2671,1.5989 "Bedfordshire, Luton and Milton Keynes ICB",E81027,Houghton Regis Medical Centre,12283.55166,4.5443,61.6099,69.2308,1.9499,67.3267,75.6345,2.3293,87.3096,2.4847,1.8437,0.4249,1.1145,24.5736,8.4873,12.4507,49.6788,70.4167,0.5387,0.7663,14.407,0.1863,84.9294,86.4734,70,84.375,21.3724,1.305 "Bedfordshire, Luton and Milton Keynes ICB",E81028,The Blenheim Medical Centre,14737.32256,6.6081,51.5385,45.8564,1.0563,58.9438,71.9298,2.1685,81.8628,1.5823,0.8637,0.3417,1.0431,28.0216,12.6723,9.8484,61.7143,84.3243,1.0314,0.9134,11.5708,0.271,83.2568,89.1975,90.2439,92.3345,13.4367,0.9693 "Bedfordshire, Luton and Milton Keynes ICB",E81029,Putnoe Medical Centre Partnership,17453.68562,7.9724,70.2648,71.7514,3.7595,64.4737,68.8136,2.8827,88.2023,5.2444,1.4786,0.8768,1.0357,18.5525,9.2703,15.2903,63.5794,76.3025,0.4757,1.0774,14.1576,0.938,83.1926,84.1463,77.7778,90.9465,15.1858,2.0173 "Bedfordshire, Luton and Milton Keynes ICB",E81030,Cauldwell Medical Centre,9251.947624,4.8646,50.6667,52,1.4066,52.6971,62.9921,1.4636,78.5714,1.8019,0.8173,0.5988,1.2652,27.3344,7.2156,9.5704,61.0056,79.4643,0.4752,1.5681,10.0575,0.3859,85.293,81.7568,79.4393,90.6542,22.2059,1.0264 "Bedfordshire, Luton and Milton Keynes ICB",E81031,Great Barford Surgery,5071.179161,7.0069,75.4808,69.7842,3.357,73.9437,75,3.357,91.4286,4.0075,1.5922,0.6139,0.4008,12.657,8.0968,18.1278,70.235,84.9162,0.4604,0.8632,11.5512,0.3645,89.2921,82.6531,90.7692,95.3846,9.5355,1.6305 "Bedfordshire, Luton and Milton Keynes ICB",E81032,Lea Vale Medical Practice,42226.60173,5.2251,61.8543,52.4871,1.8142,52.0844,63.7868,1.7991,80.1449,2.348,1.3331,0.5458,1.5034,28.5973,6.8052,10.0977,59.0374,80.7804,0.384,1.2922,12.5985,1.323,82.5766,86.1027,82.5431,93.5345,26.7787,1.1066 "Bedfordshire, Luton and Milton Keynes ICB",E81033,Shefford Health Centre,16981.5204,6.9104,76.6823,81.4815,3.6223,78.1403,80.2597,2.5569,90.1478,2.9266,1.3252,0.9459,0.7484,9.33,7.4206,13.8447,55.7971,70.7071,0.4366,0.66,10.1296,0.8657,85.8182,89.3688,81.4433,92.268,11.554,1.4967 "Bedfordshire, Luton and Milton Keynes ICB",E81034,Toddington Medical Centre,7080.600835,7.4314,74.9077,73.6585,4.3133,81.8182,82.4859,2.9971,84.9315,7.3273,1.694,0.8079,1.0975,9.9457,7.7242,18.3346,74.8846,87.963,0.3779,0.5603,11.7172,0.709,90.7466,84.375,87.6404,98.8764,9.1395,1.9547 "Bedfordshire, Luton and Milton Keynes ICB",E81035,Sandy Health Centre,9133.136807,7.6941,74.7573,70.8738,3.8697,80.0676,80.7018,3.128,91.358,3.0283,1.7736,0.9244,1.1,13.6724,8.37,16.0486,61.9529,69.5082,0.7202,0.9674,14.1771,0.1869,90.7407,88.587,91.5254,95.7627,13.9535,1.9349 "Bedfordshire, Luton and Milton Keynes ICB",E81036,Ivel Medical Centre,12891.35956,7.398,74.4076,72.5632,3.5677,75.2119,75.463,2.8407,95.2096,2.2855,1.8588,0.8245,0.9297,12.4863,7.9943,15.2001,47.6427,65.625,0.6746,0.7945,7.9605,0.2409,82.6632,88.6275,62.0915,79.7386,10.1659,1.6414 "Bedfordshire, Luton and Milton Keynes ICB",E81037,The De Parys Group,38935.9896,7.709,75.2545,76.3514,4.9871,66.6383,75.7697,3.4673,90.8745,4.8573,1.6597,1.0007,1.2426,18.4386,8.3538,18.364,64.6692,77.7489,0.6106,1.5413,11.8892,2.6833,87.4422,83.8184,84.5666,94.0803,14.4836,2.0174 "Bedfordshire, Luton and Milton Keynes ICB",E81038,King Street Surgery,22391.66591,7.6207,70.8101,63.1902,3.8324,61.5603,68.5864,3.1653,84.7368,6.4819,1.67,0.7361,0.8109,18.1949,10.2015,17.9886,48.8291,77.4667,0.7637,1.0674,13.8264,0.4507,86.0567,87.0149,79.3313,88.4498,15.2062,1.9093 "Bedfordshire, Luton and Milton Keynes ICB",E81040,Sundon Medical Centre,9834.263397,5.9975,71.134,78.4314,4.1564,64.094,77.1429,3.4085,81.6092,3.3266,1.8485,1.2608,0.6897,18.4844,9.3758,17.6621,61.257,84.596,0.3633,0.8655,10.764,0.6842,86.5785,81.8653,81.6794,89.313,14.2782,1.9553 "Bedfordshire, Luton and Milton Keynes ICB",E81041,Gardenia Practice,13181.51888,5.6402,56.1644,62.6126,2.0553,56.2992,70.2439,2.465,81.4371,1.2998,1.4589,0.4671,0.7372,28.9691,10.8193,11.2828,69.3354,80.0813,0.6755,0.9342,13.7065,0.0259,82.4465,82.7004,81.0185,90.2778,17.5071,1.4086 "Bedfordshire, Luton and Milton Keynes ICB",E81043,Marston Forest Healthcare,7945.193272,4.8537,74.5968,69.8864,2.7642,69.4149,81.0811,2.3302,90.625,3.1756,1.6038,0.7076,0.9991,9.5515,7.8178,13.9245,69.1164,84.9057,0.4623,0.5849,9.6575,0.8791,89.2617,83.9196,77.8689,92.623,10.1861,1.3679 "Bedfordshire, Luton and Milton Keynes ICB",E81044,Leighton Road Surgery,17273.44975,6.9998,70.2055,69.4872,3.4724,70.8564,68.2353,2.6291,85.8757,2.9789,1.3989,0.5605,1.8435,11.4034,6.3151,13.5622,59.4449,77.8,0.2976,0.9028,10.4038,0.2102,79.5928,88.0282,75,90.625,13.8472,1.508 "Bedfordshire, Luton and Milton Keynes ICB",E81045,Kingsbury Court Surgery,10370.94798,6.3816,67.8832,70.4301,3.4452,72.6496,73.7179,4.1047,86.3248,3.2647,1.9884,0.9056,1.0675,17.2319,8.5409,14.5881,61.803,76.601,0.7284,1.1123,9.6574,0.7783,84.589,88.9423,75,93.1818,17.0154,1.8309 "Bedfordshire, Luton and Milton Keynes ICB",E81046,Dr Sulakshana & Partners,12099.90055,6.5717,78.5872,74.8428,4.8444,70.6422,78.4615,3.3461,84.7826,3.1237,1.9477,0.7575,0.8065,9.5294,7.8331,17.3964,70.8575,84.9722,0.4828,0.6492,8.2381,0.0871,82.4864,87.963,42.5532,88.6525,10.004,2.1641 "Bedfordshire, Luton and Milton Keynes ICB",E81047,Goldington Avenue Surgery,17056.46923,6.5409,76.7857,64.759,3.7386,72.0067,77.1218,2.8586,88.8889,4.74,1.473,1.1297,1.2142,16.5859,6.9451,16.1528,65.451,82.1109,0.4681,1.3918,11.5037,0.806,87.0963,85.7616,79.7546,92.0245,12.8401,1.9161 "Bedfordshire, Luton and Milton Keynes ICB",E81048,Bute House Medical Centre,10552.54275,5.1076,55,49.0446,1.9386,59.9057,71.9424,2.7386,67.6692,2.772,1.2799,0.5647,0.8389,29.2343,11.0271,12.78,61.0922,77.957,0.5835,1.0917,15.076,0.6447,87.0603,83.0645,85.9551,89.8876,17.6055,1.4493 "Bedfordshire, Luton and Milton Keynes ICB",E81049,Priory Medical Centre,7728.787209,6.6402,71.2687,78.6127,3.791,70.7113,76.4286,2.9312,91.5493,3.2346,1.3679,0.7165,0.6598,14.8624,7.7204,15.6201,48.2162,71.8978,0.7817,0.6905,9.7522,0.8386,76.5113,88.6525,80,87.0588,12.4942,1.6545 "Bedfordshire, Luton and Milton Keynes ICB",E81050,Asplands Medical Centre,11472.68437,7.4115,78.2895,71.0191,4.7426,78.0679,84.8249,2.7328,93.3333,3.4506,1.9781,0.7388,0.8016,9.7996,6.2163,17.5961,71.0915,87.1154,0.4052,0.6514,9.5992,0.7982,89.082,90.3553,86.3248,94.8718,9.6879,1.8113 "Bedfordshire, Luton and Milton Keynes ICB",E81052,Kirby Road Surgery,8330.239583,8.6129,71.9298,73.913,4.5332,78.3133,80.7018,3.6511,88.4615,5.3522,2.7444,1.0414,1.3724,16.4921,8.0582,16.246,71.7152,86.3222,0.5391,0.9066,11.6194,0.2068,88.0817,78.5714,85.1064,92.5532,15.6758,2.2299 "Bedfordshire, Luton and Milton Keynes ICB",E81057,Saffron Health Partnership,21048.07741,7.4444,77.7778,72.4551,4.1345,74.8982,79.1866,3.2254,93.3086,3.3936,1.8594,0.7538,0.6107,11.7351,7.6766,15.1811,74.2989,85.6944,0.5574,0.9274,10.4402,1.3711,87.4748,86.8056,86.1905,92.8571,12.2679,1.768 "Bedfordshire, Luton and Milton Keynes ICB",E81060,Linden Road Surgery,7242.826911,7.0215,63.9535,68.3761,3.3904,57.7273,64.8936,3.3741,83.8235,3.3808,1.5811,1.1899,0.4535,25.7445,11.1857,15.7946,56.5385,79.3651,1.3692,1.9234,13.6673,0.6035,89.7546,86.3014,55.7692,89.4231,17.626,1.7767 "Bedfordshire, Luton and Milton Keynes ICB",E81061,"Drs Carragher, Neal & Akhtar",5704.220305,6.3941,79.638,81.6456,3.1898,80.4,81.295,2.4277,93.2039,2.7855,1.1574,0.4093,1.3466,6.271,7.065,13.4086,72.6098,78.4091,0.1976,0.6493,7.969,0.1494,90.9003,91.6667,75.3425,90.411,8.904,1.5949 "Bedfordshire, Luton and Milton Keynes ICB",E81063,Conway Medical Centre,7955.818073,7.6517,47.4453,40.1961,1.0595,55.9271,87.0968,3.6393,77.1186,2.5583,0.6565,0.6104,0.3562,28.8274,17.5146,12.8873,83.0131,82.3077,1.0711,1.025,30.4404,0.6369,98.4204,94.0397,96.2441,97.6526,13.1803,1.5317 "Bedfordshire, Luton and Milton Keynes ICB",E81069,Caddington Surgery,5936.431799,8.5363,72.9592,78.1955,4.2116,73.7226,72.549,3.9521,84.0909,5.2273,2.7944,1.4172,0.8267,15.5939,9.6759,19.4411,70.3235,85.1711,0.2595,0.998,9.701,0.2033,85.0073,90.8333,93.1507,97.2603,12.4336,2.7944 "Bedfordshire, Luton and Milton Keynes ICB",E81073,The Medici Medical Practice,17224.88974,4.0163,55.9078,52.1008,1.4507,53.6585,65.1376,1.6962,75.5365,0.8133,1.3726,0.385,0.582,29.1987,7.5322,9.6083,51.499,71.9457,0.3794,1.1215,8.1922,0.1406,87.2727,85.8757,68.9474,83.6842,20.9395,0.7756 "Bedfordshire, Luton and Milton Keynes ICB",E81074,Houghton Close Surgery,10907.92456,8.7294,78.1327,72.7891,5.1503,80.814,82.6087,3.3225,91.4286,2.8799,1.6314,0.9737,1.3603,8.5481,6.9697,16.1428,67.0198,81.4346,0.4271,0.6577,10.1913,0.9013,84.1781,85.7868,90.7563,94.958,9.8702,2.1609 "Bedfordshire, Luton and Milton Keynes ICB",E81076,Dr Dv Shah's Practice,4999.943459,6.1713,64.9485,83.3333,1.909,64.2512,85.9155,2.8538,81.9672,4.5418,1.3305,0.5399,0.5948,27.7642,12.9581,16.1396,87.2702,93.8462,1.0798,0.8677,22.1952,0.6154,96.1514,95.4546,98.9247,100,14.9754,1.2919 "Bedfordshire, Luton and Milton Keynes ICB",E81612,Drs Mirza Sukhani & Partners,5781.950224,6.8404,58.3942,45.8333,2.0144,56.2189,77.5,2.8034,92.1875,6.417,1.0744,0.9065,0.0914,29.1882,14.6281,15.0411,71.6267,72.8155,1.5948,0.6715,12.2174,0.2486,86.2139,82.266,85.8333,92.5,15.4744,1.1583 "Bedfordshire, Luton and Milton Keynes ICB",E81615,Ashburnham Road Surgery,3450.544442,5.3326,46.9697,37.5,0.8662,56.875,67.3913,1.8046,92,1.7616,0.5775,0.2406,0.5977,31.6635,12.762,9.3118,77.6812,88.0952,0.6737,1.3234,16.3574,0.1126,83.7131,96.1539,92.5926,95.0617,15.063,0.5534 "Bedfordshire, Luton and Milton Keynes ICB",E81617,Dr Ps Bath's Practice,5179.976957,5.6623,72.8261,77.0492,3.6752,72.6744,81.5217,3.5405,86.0465,6.1508,1.751,0.5773,1.2936,20.5995,10.6214,18.857,65.8088,79.2683,0.4426,0.9044,25.5065,0.7198,92.6209,88.7417,88.3721,94.186,14.7066,1.9627 "Bedfordshire, Luton and Milton Keynes ICB",E81631,Malzeard Road Practice,7752.452401,5.3584,44.186,52.381,0.8677,46.2908,65.5172,2.1746,91.0891,1.9588,0.4178,0.4928,0.4063,30.5334,14.0458,10.4446,50.0571,73,0.7284,1.007,7.9077,0.1573,82.3675,88.4058,54.1667,77.0833,11.9645,0.782 "Bedfordshire, Luton and Milton Keynes ICB",E81632,Barton Hills Medical Group,8354.830549,6.8457,71.2727,73.3696,3.7514,65.6489,73.5099,3.3388,89.6552,6.168,1.8757,0.8503,1.015,16.7697,10.188,18.757,73.0472,84.7761,0.5877,0.8253,10.1811,0.3712,89.1422,88.1517,80.1587,92.8571,11.2123,1.9632 "Bedfordshire, Luton and Milton Keynes ICB",E81633,Neville Road Surgery,4041.210284,6.7046,57.8313,51.6667,1.5502,58.6957,71.6667,2.3564,87.7551,1.7498,1.1575,0.4547,1.429,21.0379,11.731,10.5622,60.5991,71.4286,0.7028,0.8681,10.4404,0.4533,90.7173,86.9565,74.0741,81.4815,15.2652,1.0542 "Bedfordshire, Luton and Milton Keynes ICB",E81635,Eastgate Surgery,5250.017668,7.2051,70.6767,73.5849,2.3416,72.5926,76.1364,2.2925,84.0708,1.7716,1.3427,0.393,2.2625,16.0262,7.4309,11.4459,69.6043,83.9161,0.1965,0.655,13.1484,0.2404,90.3693,86.7647,85.7143,98.4127,17.7096,1.2281 "Bedfordshire, Luton and Milton Keynes ICB",K82003,Wolverton Health Centre,14852.23151,6.0558,65.928,59.9206,2.2802,62.5806,69.863,1.7912,89.8148,1.1789,1.675,0.3179,1.7065,24.9091,8.4042,11.3522,62.6374,74.8858,0.6113,0.8375,9.357,0.6534,87.5415,89.6226,84.127,91.5344,20.1429,0.8986 "Bedfordshire, Luton and Milton Keynes ICB",K82009,Stony Medical Centre,17869.6063,6.5148,77.1845,70.229,5.1486,78.8644,80.0948,3.0744,96.2025,3.0017,1.7131,0.889,0.5396,11.1448,7.2166,17.7239,73.8095,82.7161,0.5093,0.6853,8.3867,0.1369,88.3789,89.0805,88.9831,94.0678,12.4192,1.602 "Bedfordshire, Luton and Milton Keynes ICB",K82013,The Red House Surgery,15851.67023,8.7087,73.499,76.435,4.4596,70.5357,77.0428,3.3629,91.4286,1.0695,2.6438,0.9733,0.8111,19.2751,9.2267,17.6133,72.7987,86.2669,0.3922,0.9733,10.5615,0.1187,89.7668,82.3529,87.0968,95.1613,14.6696,1.9175 "Bedfordshire, Luton and Milton Keynes ICB",K82015,Parkside Medical Centre,10445.08447,5.7299,69.2053,69.7561,3.1625,71.978,76.5714,2.7243,88.4615,4.2966,2.3147,0.9716,1.1048,18.4019,9.1261,16.9747,59.8592,78.453,0.7811,0.7811,10.2136,0.4291,87.9873,88.9831,84.0708,92.9204,16.0511,1.5051 "Bedfordshire, Luton and Milton Keynes ICB",K82016,Newport Pagnell Medical Centre,23789.13441,6.2715,75.9211,69.7095,4.5857,75.4986,77.0308,3.0678,96.7033,2.9097,1.6875,0.9997,0.386,10.6282,6.7295,16.1187,60.7585,78.0516,0.4265,0.6237,10.1982,0.48,86.9113,80.0614,76.6393,89.3443,10.8759,1.4812 "Bedfordshire, Luton and Milton Keynes ICB",K82025,Sovereign Medical Centre,12115.57939,6.1221,72.2359,65.283,3.7689,64.1243,69.4175,2.994,92.8571,1.4051,1.8316,0.9687,0.118,17.1209,10.3463,14.0366,34.932,55.3936,1.0567,0.863,6.1354,0.0855,81.4069,82.3232,48,78.8571,12.5391,1.5498 "Bedfordshire, Luton and Milton Keynes ICB",K82026,Whaddon Healthcare,21974.64494,7.3053,70.5224,69.2695,3.085,72.956,75.3709,2.5761,90.1186,2.3299,2.2308,0.7769,1.334,17.7072,9.4921,16.9332,67.8664,86.4697,0.5134,0.8405,12.2948,0.4367,94.5949,90.3226,85.1724,92.4138,16.8201,1.204 "Bedfordshire, Luton and Milton Keynes ICB",K82027,Purbeck Health Centre,5907.824624,5.8854,61.0169,50.4202,2.2064,56.1905,62.8866,2.1566,83.6735,2.3591,1.9575,0.3981,1.19,23.1408,8.6894,14.582,51.7693,76.7241,0.365,0.7963,9.5825,0.1454,81.654,86.9159,83.1169,90.9091,20.2817,1.0949 "Bedfordshire, Luton and Milton Keynes ICB",K82032,Oakridge Park Medical Centre,11223.67666,6.1142,67.7711,62.3932,2.6545,68.9189,72.6316,2.1734,87.7049,3.2681,2.0075,0.2903,1.3546,20.6458,8.9484,14.8403,62.4114,71.4286,0.8047,0.8876,12.5779,0.684,89.3109,79.4521,82.5,93.125,18.493,1.2277 "Bedfordshire, Luton and Milton Keynes ICB",K82039,Bedford Street Surgery,14356.79804,5.2232,61.3445,63.8462,2.1593,58.6491,66.5217,2.1268,84.5238,1.2965,1.6146,0.603,0.7813,17.4473,7.5172,12.6897,53.8941,66.7614,0.5706,1.0699,10.2892,0.0852,87.9917,79.798,72.619,86.3095,19.0689,1.1737 "Bedfordshire, Luton and Milton Keynes ICB",K82054,Ashfield Medical Centre,12658.8191,7.241,55.7093,49.7585,2.6318,54.6703,60.2339,3.2661,85.2273,1.9786,2.4993,0.8804,0.9833,38.8722,10.7921,15.7342,51.3589,78.8546,0.9751,0.9183,11.8961,0.3397,86.1118,77.7778,76.3314,85.7988,21.1376,1.4201 "Bedfordshire, Luton and Milton Keynes ICB",K82057,Cobbs Garden Surgery,7953.606572,7.9717,76.9231,81.1159,5.6512,80.7018,78.2383,3.2791,94.3396,3.6307,1.7791,1.093,0.9863,7.0261,6.1322,17.407,58.7056,76.25,0.3023,0.6047,11.8639,0.9226,87.0312,88.4354,75.3086,90.1235,8.1229,1.9419 "Bedfordshire, Luton and Milton Keynes ICB",K82059,Westfield Road Surgery,8510.119588,7.0597,66.3717,67.5,2.4891,76.3636,77.9528,2.1116,94.7368,2.9688,2.1706,0.5309,0.523,25.9957,8.1515,15.9255,69.1304,74.5,0.3775,0.7668,14.244,0.1136,90.5233,87.1212,84.6939,94.898,17.5466,1.0027 "Bedfordshire, Luton and Milton Keynes ICB",K82064,Fishermead Medical Centre,6482.963106,3.9196,65.493,54.1284,1.8331,53.4014,64.6465,1.5048,89.2308,1.804,1.327,0.1778,0.2949,25.5824,6.8701,10.5335,67.8873,81.6667,0.5609,0.8482,8.2047,0.748,84.5147,93.0556,87.013,94.8052,19.8161,0.9302 "Bedfordshire, Luton and Milton Keynes ICB",K82065,Central Milton Keynes Medical Centre,18272.60371,5.0849,65.0442,53.3546,1.8273,50.1618,68.3019,1.3973,88.764,1.991,1.1683,0.215,0.6561,22.5038,6.8472,11.5945,60.2078,81.2734,0.444,0.8225,10.2288,0.19,82.7525,85.5422,81.4159,88.4956,17.4856,0.8459 "Bedfordshire, Luton and Milton Keynes ICB",K82610,The Grove Surgery,9344.059234,5.2993,54.023,47.0588,1.7023,53.719,62.0968,1.4559,87.5,1.497,1.9263,0.3696,0.8084,40.9847,8.5781,11.3451,61.8353,81.4815,0.6944,0.9632,13.8623,0.1399,86.5309,84.6939,78.2178,89.1089,19.7115,0.8512 "Bedfordshire, Luton and Milton Keynes ICB",K82615,Walnut Tree Health Centre,10673.59818,5.8282,71.0602,66.2116,2.2708,66.6667,75.6554,1.5678,90.625,1.2513,1.1108,0.2461,0.8677,12.733,5.8136,10.9814,59.7036,76.5517,0.3304,0.8577,7.5623,0.1852,86.6855,83.4711,80.8696,89.5652,15.2861,0.8015 "Bedfordshire, Luton and Milton Keynes ICB",K82617,The Stonedean Practice,7045.421831,6.6444,71.8615,72.4551,3.762,76.8966,73.6111,2.4535,95.5224,4.0083,1.9879,0.4152,1.038,10.1573,7.135,16.0544,62.3463,84.4749,0.4152,0.6291,8.5436,0.1737,87.2468,79.6993,90.1235,93.8272,12.5685,1.2708 "Bedfordshire, Luton and Milton Keynes ICB",K82631,Milton Keynes Village Surg,11063.13076,5.6871,72.8972,74.8227,1.9095,68.652,75.265,1.3999,92.9578,1.8077,0.7552,0.2026,0.9206,9.9589,6.0916,9.9036,63.2076,85.2713,0.3009,0.5219,11.0218,0.1797,87.7451,85.8156,81.25,92.1875,9.9381,0.6385 "Bedfordshire, Luton and Milton Keynes ICB",K82633,Westcroft Health Centre,10597.07641,5.2987,70.4918,68.2609,1.85,71.6692,79.0076,1.3295,90.0662,2.3124,0.7275,0.2446,0.9079,11.0644,6.274,10.1279,78.9586,90.6103,0.4892,0.6271,8.7873,0.0995,88.0007,85.7143,94.8148,95.5556,10.3497,0.7964 "Bedfordshire, Luton and Milton Keynes ICB",Y00522,The Village Medical Ctr,3291.10415,6.5653,80.7692,76.4706,2.877,79.4366,83.871,1.9142,90.5172,2.0227,0.7425,0.464,0.534,12.023,6.2958,10.7889,73.9583,83.9506,0.4176,0.6961,13.123,0.5488,90.7227,93.421,82.8571,95.7143,9.4538,0.9629 "Bedfordshire, Luton and Milton Keynes ICB",Y00560,Wootton Vale & Shortstown Surgery,11812.56949,6.4208,75.3205,65.5738,2.5968,77.9184,80.9302,1.5568,93.7931,3.4524,1.1199,0.3754,1.9334,11.5238,6.0954,10.104,69.297,77.0161,0.3077,0.6092,13.1279,0.3786,88.9318,82.6484,84.3284,94.7761,12.6238,1.0584 "Bedfordshire, Luton and Milton Keynes ICB",Y02332,Kingsway Health Centre,16125.71552,5.595,58.5294,60.5932,1.2894,51.3661,70.5882,2.3835,81.7881,1.9182,0.8014,0.3647,0.7479,30.0876,10.4749,9.6111,66.9154,81.3688,0.3545,0.9914,10.2209,0.0918,84.0859,93.1398,74.3243,88.5135,19.0401,0.9812 "Bedfordshire, Luton and Milton Keynes ICB",Y02463,The Town Centre Practice,10679.72646,2.151,49.5238,31.9149,0.4867,39.8844,61.2245,0.9506,79.4872,0.5086,0.5247,0.0913,0.3326,31.6569,4.6221,5.9924,68.6275,78.2609,0.2357,0.8745,8.3725,0.1357,89.7535,90,76.9231,85.7143,25.1872,0.3954 "Bedfordshire, Luton and Milton Keynes ICB",Y02900,Brooklands Health Centre,13620.71911,3.4244,58.6207,54.7739,0.8443,64.2662,65.6716,0.572,84.1463,0.9996,0.3087,0.0545,0.6191,11.2266,4.1606,5.7876,48.7368,66.6667,0.286,0.572,8.3516,0.1591,82.9599,82.2917,66.6667,80.8333,11.6074,0.3586 "Bedfordshire, Luton and Milton Keynes ICB",Y06810,Whitehouse Health Centre,10814.47242,4.8125,69.0196,70.2128,1.5886,66.8135,70.303,1.5187,91.5254,1.4408,0.8748,0.21,1.1355,,6.3406,8.804,51.9685,72.1739,0.3849,0.6928,9.437,0.2076,83.1475,83.0986,75.2066,85.124,21.7399,0.5529 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence Birmingham and Solihull ICB,M85001,Shah Zaman Surgery,6270.099602,8.1026,60.7407,57.5472,3.2406,68.2635,66.3158,3.5961,74.5455,4.899,4.0142,0.5436,0.9964,50.9512,10.0516,15.6805,66.876,84.9558,0.7945,1.4844,14.3925,0.798,89.7904,92.437,83.8235,94.1176,25.4349,1.9444 Birmingham and Solihull ICB,M85005,The Park Medical Centre,8226.810699,7.011,54.8387,62.8866,1.3061,54.5113,72.449,2.4766,69.4737,2.7036,0.9241,0.2218,1.6941,47.3926,12.525,8.3292,67.7536,83.871,0.5298,1.1829,16.9404,0.117,86.9778,89.3939,82.0513,89.7436,10.598,1.0596 Birmingham and Solihull ICB,M85006,Green Ridge Surgery,12384.02708,6.9512,62.5468,46.5969,3.0143,64.3875,68.75,2.6228,79.2308,5.2984,2.2118,0.6068,2.6885,40.3357,9.3489,14.5234,65.3179,75.4579,1.0765,1.6637,12.0262,0.8726,85.552,84.4156,86.3309,94.2446,19.0392,1.6735 Birmingham and Solihull ICB,M85007,West Heath Surgery,17197.94266,7.3195,59.0164,62.5,2.8766,75.0951,72.9282,3.1306,89.4231,6.2247,2.1145,3.6013,2.7819,37.6962,8.6995,14.3455,74.2694,82.0116,0.9863,1.4346,19.4042,1.1247,91.9842,77.7429,87.7301,93.2515,20.8359,2.6375 Birmingham and Solihull ICB,M85009,Hamstead Road Surgery,7024.782678,5.4853,53.9394,55.0847,2.1124,56.9507,71.2766,2.342,89.1892,4.6471,1.1021,0.5511,2.0196,36.5169,12.6782,14.3885,68.8293,83.9827,0.5204,1.4235,11.1961,0.1872,87.362,82.659,91.2698,93.6508,13.0519,0.9643 Birmingham and Solihull ICB,M85011,The Swan Medical Centre,8598.431439,6.9036,69.9074,70.2703,2.6478,64.4628,70.4918,3.1554,68.3333,5.4488,2.8536,0.9192,0.6877,36.4498,10.0468,14.7071,59.9004,82.8996,1.125,1.2073,11.8321,0.1541,88.9475,81.9672,81.982,90.0901,15.3631,1.5503 Birmingham and Solihull ICB,M85013,Church Lane - Khan,4481.103136,6.3968,56.9892,58.7302,2.7121,72.2222,70.9091,3.2891,74.2857,5.5103,3.2891,0.7213,1.3582,51.3786,10.9339,19.3306,73.3577,83.6066,2.6832,1.9619,15.0175,0.4252,90.8497,89.2473,87.7193,94.7368,24.8271,1.6157 Birmingham and Solihull ICB,M85014,Kingsbury Road Medical Centre,4311.371958,7.0032,70.3297,67.1642,2.6844,76.5152,81.3559,2.5217,94.8718,4.4076,1.5998,0.3254,2.1157,46.0275,9.934,12.2289,54.6632,78.4615,0.4881,0.8406,18.1946,0.4513,91.6539,89.8734,87.2727,90.9091,20.7977,1.2744 Birmingham and Solihull ICB,M85016,Hillcrest Surgery,6841.684141,7.1583,62.7451,50.9434,3.1347,68.3908,66.2791,3.2997,80.4348,4.9976,2.7498,0.385,1.3455,44.6073,10.7438,16.2237,77.7931,89.375,0.7883,1.4299,18.3325,0.9777,91.5534,87.1951,92.0455,96.5909,20.9481,1.7782 Birmingham and Solihull ICB,M85018,Yardley Wood Health Centre,12333.62556,9.1452,66.7692,57.0175,3.9852,69.7531,72.6776,3.7898,89.4737,8.1936,2.774,1.133,3.643,34.9023,10.3996,17.6988,65.3465,79.397,0.9963,1.1526,20.8748,0.9623,90.5197,83.3876,80.1282,92.9487,16.8795,2.0414 Birmingham and Solihull ICB,M85019,Tower Hill Partnership,17557.6095,6.9798,67.1806,67.9775,2.6152,63.0303,74.7604,3.1988,79.6117,4.7227,1.2938,0.925,1.204,25.4985,10.7671,14.502,47.1834,64.8115,0.6552,0.925,17.1564,1.1589,90.9464,83.0544,75.1678,87.9195,13.2472,1.7508 Birmingham and Solihull ICB,M85020,Raydocs Newtown,22270.59555,6.5379,44.2815,41.2639,1.3662,45.4425,61.4786,2.1504,64,3.4201,0.9237,0.2742,1.3217,52.306,11.1451,9.8764,48.6761,64.3885,0.7793,1.5923,13.8439,0.4449,79.577,86.3931,75.7009,82.243,16.0157,0.9429 Birmingham and Solihull ICB,M85021,Moseley Medical Centre,4252.448522,5.2578,57.971,50,1.489,62.1495,68.1818,1.4169,73.6842,2.1059,0.7685,0.1201,3.7849,36.2499,5.5227,7.1326,70.4,85.1064,0.4563,1.8012,11.5822,0.5519,89.2825,83.6735,86.1111,94.4444,17.0622,0.4803 Birmingham and Solihull ICB,M85023,Millennium Medical Centre,11601.10322,7.3873,57.1429,63.1285,3.4043,63.7462,68.5535,2.657,81.7391,5.2713,2.5843,0.4463,2.1226,45.6562,9.3707,14.1671,68.1416,82.1277,1.4738,1.4323,12.5246,1.0593,82.791,83.4101,81.746,89.6825,22.1915,1.5776 Birmingham and Solihull ICB,M85024,The Limes Medical Centre,7252.997747,6.6051,42.9752,42.5287,1.2653,53.527,72.2892,2.1894,78.5714,3.1238,0.7393,0.2133,1.2418,52.5844,13.9654,11.7288,57.2022,83.4952,0.7393,1.4217,13.1742,0.1852,86.4347,91.1243,71.7241,87.5862,14.105,0.981 Birmingham and Solihull ICB,M85025,Bath Row Medical Practice,14603.04487,3.1837,53.8071,46.8531,1.0056,42.3776,57.4627,0.9288,80.3681,0.715,0.6982,0.2434,1.2383,33.2354,3.7534,5.8673,67.5573,78.4615,0.1217,0.9736,8.8229,0.1616,68.713,83.6539,76.4045,84.2697,17.4793,0.5637 Birmingham and Solihull ICB,M85026,Ashfield Surgery,16024.52975,6.1536,75.0392,75.1208,5.0803,70.726,75.1553,3.8365,82.7586,4.3073,1.2174,0.9279,1.5235,13.4691,8.1416,19.209,51.7241,66.3623,0.5067,0.6778,12.0045,0.7246,81.011,85.3372,73.9583,87.5,8.132,2.1387 Birmingham and Solihull ICB,M85027,Leach Heath Medical Centre,9789.372329,7.6733,67.7778,71.9577,4.1173,67.0455,69.697,3.3109,84.4444,5.4663,2.3335,0.5498,2.1618,33.3796,9.2556,16.8235,61.0413,79.8479,0.672,1.3195,15.5343,1.0806,89.4378,89.3519,83.6364,90.9091,19.7597,1.9915 Birmingham and Solihull ICB,M85028,Lordswood House Group Medical Practice,25566.32572,6.1919,67.9137,76.4706,3.3756,65.9698,70.2381,2.8405,86.6397,4.413,1.4444,0.4426,0.5881,29.0948,7.8664,13.5747,62.3095,77.8667,0.7202,1.0622,7.4157,3.0721,85.4101,86.653,70,90.7143,13.0088,1.5651 Birmingham and Solihull ICB,M85029,College Green Medical Practice,19799.59077,7.2556,73.7705,72.7513,3.7754,67.2474,76.412,3.0916,87.9195,6.1364,2.017,1.4711,0.5964,25.3201,7.535,15.82,74.1235,86.4011,0.6494,1.2068,16.2391,0.9343,89.5524,77.3779,91.623,97.3822,13.1058,2.1722 Birmingham and Solihull ICB,M85030,St Heliers Medical Practice,19251.12477,6.9128,68.5437,66.756,3.1199,76.129,77.1044,2.8302,86.0104,4.5375,1.8775,0.3343,2.6427,37.4921,9.0416,15.1151,70.117,83.5031,0.6574,1.014,14.8904,2.2113,86.0969,83.0549,85.8369,94.4206,17.6339,1.5656 Birmingham and Solihull ICB,M85031,The Harlequin Surgery,14324.70909,7.9714,69.0909,56.7227,3.0535,69.209,68.5864,3.6716,79.2308,6.8155,3.4871,1.0609,1.1459,45.5146,10.4935,17.8598,67.3077,81.6489,0.9686,1.4483,20.53,0.2005,91.2938,82.5807,87.4251,95.2096,21.4973,2.3524 Birmingham and Solihull ICB,M85033,The Manor Practice,16810.02267,7.0083,77.0492,73.6292,4.5641,71.8805,77.2727,3.0312,91.4474,4.0752,1.4695,0.7146,1.4665,14.9258,6.7267,14.9888,68.89,77.2371,0.7319,0.7319,9.1968,1.7409,87.8515,77.8547,88.75,94.375,9.2363,1.8729 Birmingham and Solihull ICB,M85034,Omnia Practice,16206.63594,7.5967,50.4032,54.9505,1.4665,47.2789,63.0542,1.9041,74.6725,3.1655,1.2063,0.4199,1.3666,48.3778,10.6492,9.686,57.034,67.1795,1.0762,1.0289,13.8903,0.119,83.5402,88.1579,88.3333,94.5833,13.3161,0.9698 Birmingham and Solihull ICB,M85035,Woodgate Valley Health Centre,6254.108417,8.2037,61.2903,63.4615,2.4259,66.8342,74.7368,2.2462,71.4286,3.3821,2.5337,0.5031,0.9835,45.9526,8.2902,14.5912,71.0709,81.7204,0.7008,1.5813,13.6484,0.1715,90.2416,88.3721,82.0513,92.3077,21.0014,1.4735 Birmingham and Solihull ICB,M85037,Kingsfield Medical Centre,10204.54176,7.4434,75.0779,65.7778,4.4632,65.7718,76.5027,3.1039,85.7143,4.8601,1.3914,0.6315,1.5665,24.7401,8.3575,15.7872,80,88.0645,0.6315,0.867,16.5886,1.3734,86.5494,87.2093,85.5856,94.5946,11.3446,1.5627 Birmingham and Solihull ICB,M85041,Bournbrook Varsity Medical Centre,8450.871782,3.6022,68.3673,59.4203,0.9482,40.2174,75.4386,0.8227,66,1.1031,0.3626,0.4602,2.4013,20.1596,2.1009,4.1832,60.8137,81.203,0.1116,0.7042,6.4385,2.8549,88.2877,88.4615,84.7826,95.6522,9.6628,0.6066 Birmingham and Solihull ICB,M85042,Selly Park Surgery,5099.183829,5.7137,73.7931,71.875,3.2415,58.7571,74.3902,2.4845,82.3529,4.1989,0.9705,0.4853,1.642,24.1698,6.237,12.5582,70.7364,83.2061,1.1064,1.2034,11.3066,0.2339,86.4464,80,82,92,13.2557,1.6498 Birmingham and Solihull ICB,M85043,Hawkesley Medical Practice,5943.410901,9.9926,55.6452,47.619,3.1128,64.7482,71.875,3.2972,77.5,4.5483,2.9514,1.2682,2.9907,55.2682,12.6713,18.2845,64.464,75,1.7524,1.4987,19.595,3.1399,92.096,84.8,82.0513,93.5897,26.8175,1.9599 Birmingham and Solihull ICB,M85046,Sutton Coldfield Group Practice,52889.73662,6.2724,76.4945,75.8883,4.3979,69.416,75.8242,3.4754,89.5787,4.0966,1.188,0.7926,0.5598,11.7735,7.1622,15.6017,68.1856,83.139,0.465,0.8416,11.7371,0.4114,78.5521,84.0447,88.0435,87.1377,8.2192,2.1538 Birmingham and Solihull ICB,M85047,Woodland Road Surgery,6986.074848,7.6217,71.2766,73.1884,3.7579,70.2439,75.2212,2.8267,76.8116,3.3016,1.6462,0.4656,1.2698,32.4849,7.9683,15.0981,63.3566,83.4197,0.7981,1.3136,12.5079,1.3187,92.0317,84.4828,88.2353,94.1176,14.4705,1.9455 Birmingham and Solihull ICB,M85048,Church Road Surgery_M85048,14305.98863,7.2144,68.661,70.8,4.0103,66.8539,70.3704,3.2029,74.4186,6.7802,3.1231,0.9937,1.095,34.8553,9.7894,18.4367,62.0583,72.9032,0.6654,0.9671,13.7595,0.4127,88.7563,85.2632,72.5146,91.8129,14.9452,1.943 Birmingham and Solihull ICB,M85051,Firstcare Practice,6892.151592,6.7362,45.7944,49.3333,1.1146,45.6693,64.7887,2.2864,74.2574,2.1794,0.3715,0.2286,2.2183,50.35,13.0608,8.7882,54.4256,65.4762,0.9288,1.5719,13.5824,0.2882,88.5255,91.6667,71.4286,90.2256,14.5388,0.7574 Birmingham and Solihull ICB,M85053,The St.Clements Surgery,7897.103581,7.6449,49.2424,50.5051,1.7806,57.8059,70.5882,2.1547,60.241,3.114,1.2569,0.2245,3.197,51.3182,12.5127,10.1302,60.4811,75.7895,0.7781,1.9303,14.4488,0.0635,90.0798,80.1242,82.5,88.3333,18.7092,0.8679 Birmingham and Solihull ICB,M85055,Selly Oak Health Centre,5655.179039,4.1287,65.2893,67.8161,1.9537,52.549,78.6667,1.8628,97.7273,3.1597,0.8481,0.2423,1.4362,24.2179,6.2547,8.9505,71.4597,84.8485,0.4392,0.9541,11.2983,0.3329,85.6266,88.8889,84.127,95.2381,12.128,1.0904 Birmingham and Solihull ICB,M85056,Weoley Park Surgery,8269.68423,6.061,62.3188,70.1389,3.2989,68,71.2,2.8296,86.25,4.3212,2.1591,0.3621,3.0623,35.9554,8.1896,14.6306,71.0128,77.5862,0.6973,1.0862,15.0561,0.1516,84.2975,85.9873,88.0435,93.4783,17.3844,1.5824 Birmingham and Solihull ICB,M85058,Harborne Medical Practice,14262.5346,4.2863,58.5034,61.4679,2.2132,58.3867,71.6495,1.735,87.9195,3.2973,0.8828,0.6805,1.618,23.9096,4.9765,8.9142,60.2518,80.4094,0.5089,1.0484,8.6036,1.0427,79.6903,81.25,69.0265,84.0708,10.9119,1.1465 Birmingham and Solihull ICB,M85060,The Oaks Medical Centre,15294.91672,7.4565,68.8836,66.9841,3.679,70.5179,76.4925,3.5963,77.4194,4.4619,2.0531,0.8198,1.2686,23.38,9.3274,15.391,53.252,64.4531,0.3583,1.123,11.7585,0.1852,88.7194,81.0734,84.3434,89.899,15.3045,1.9842 Birmingham and Solihull ICB,M85061,Yardley Green Medical Centre,12337.43563,7.5572,50,54.1436,1.5613,62.8205,71.0059,2.4946,68.5315,4.4399,1.4304,0.2268,0.738,47.2094,11.5944,12.1675,77.1667,85.1282,0.9682,0.9594,16.3078,0.1009,91.7223,86.59,86.2434,94.1799,14.8437,1.1426 Birmingham and Solihull ICB,M85062,Shenley Green Surgery,5578.887255,7.1845,70.2532,70.0935,3.0809,66.6667,72.9412,3.0024,78.8462,4.9456,1.7661,0.314,2.434,36.7462,9.031,14.1484,68.5567,84.1727,0.9027,1.2166,15.4842,0.2167,92.0136,86.2069,77.6119,89.5522,12.7294,1.8446 Birmingham and Solihull ICB,M85063,Midlands Medical Partnership,70102.82893,6.43,63.7226,58.2278,3.0055,56.817,69.3918,2.913,82.6568,4.0577,1.7098,0.589,0.9297,35.848,9.0377,13.7588,66.1258,80.1583,0.9188,1.6576,9.8414,1.5043,82.6669,84.08,80.9406,91.5842,18.2367,1.772 Birmingham and Solihull ICB,M85065,The Poplars Surgery,17211.13345,6.4662,66.9811,67.5497,3.546,58.7525,64.6091,2.7987,80.7143,4.524,1.9457,2.5097,1.4488,32.7246,8.2771,15.4882,61.855,78.9104,0.8389,1.565,11.1723,0.5666,85.3817,73.4219,82.0809,87.2832,15.4639,2.1643 Birmingham and Solihull ICB,M85066,Ward End Medical Centre,8078.236351,6.5423,60.3175,59.8361,2.3175,56.25,67.9612,3.2765,87.0588,3.0943,1.7315,0.5061,0.6371,42.7291,11.1806,12.0805,63.5628,77.7108,0.6926,1.0256,11.7765,2.0557,88.3429,85.2459,80.9091,88.1818,14.5243,1.5717 Birmingham and Solihull ICB,M85070,Reservoir Road Surgery,16038.44406,4.9777,59.8616,55.6075,2.4442,54.0541,71.123,2.0185,75.9036,1.4885,1.4386,0.4698,0.788,43.4318,9.0491,9.0355,73.0175,79.6154,0.7634,1.7469,12.1315,0.0537,87.1253,83.913,77.5281,85.3933,15.8914,1.2551 Birmingham and Solihull ICB,M85071,Wychall Lane Surgery,9708.371585,7.621,67.0034,69.3467,4.4577,70,75,3.8227,91.3793,5.4811,2.8266,0.5354,2.4942,34.6981,9.7782,18.8644,65.7556,78.9668,2.3285,0.9588,20,1.3212,89.1239,87.5,79.661,93.2203,15.8409,2.0545 Birmingham and Solihull ICB,M85074,Wake Green Surgery,9108.586766,7.1391,67.7656,60.2273,4.3538,59.0106,68.9189,2.4326,71.9298,3.0358,1.6467,0.3743,1.1572,32.4363,6.6637,12.026,64.2157,79.0541,0.9731,2.6198,9.994,0.5951,82.5614,87.395,77.5,88.75,16.1891,1.3099 Birmingham and Solihull ICB,M85076,Hollymoor Medical Centre,11299.26059,8.5632,68.7805,67.0968,3.0825,70.2703,70,2.6114,86.0215,4.4544,2.4768,0.6192,1.2344,40.7908,9.986,14.7934,60.8247,77.8761,0.7807,0.9692,14.6512,2.7314,89.183,79.0961,80.2548,89.8089,18.7008,1.6961 Birmingham and Solihull ICB,M85077,Northwood Medical Centre,10214.09807,7.8,73.8462,76.5258,4.7138,78.1457,76.4368,3.3986,91.4634,4.2838,1.673,0.8207,2.247,19.2741,7.1983,18.5396,65.6827,82.0639,1.21,0.9996,9.908,2.5341,90.7484,86.3388,86.0759,93.6709,11.6504,1.9466 Birmingham and Solihull ICB,M85078,Oakwood Surgery,9794.417938,8.3468,46.7593,34.7222,1.4799,57.2727,73.0159,2.9315,94.7368,3.0492,0.6598,0.3016,3.2143,41.0478,14.0493,12.7062,53.1463,73.2558,0.7824,1.0086,17.4692,0.597,84.9157,90.2778,71.5596,86.2385,11.5565,0.9992 Birmingham and Solihull ICB,M85079,Eden Court Medical Practice,13625.63587,8.0242,66.0079,62.7451,2.9891,71.0875,77.3256,2.777,73.3766,5.919,2.6131,1.5042,1.222,51.0479,10.1424,16.5654,64.7395,82.3344,0.8389,1.1089,23.7526,1.2682,92.766,80.7971,85.8108,95.9459,21.625,1.8995 Birmingham and Solihull ICB,M85081,The Dove Medical Practice,12239.32909,7.8762,65.343,60.9375,3.4353,63.8095,69.281,2.8771,77.1429,5.8257,2.3725,1.0091,1.8001,42.66,10.5197,15.8884,54.4839,75.8389,0.7407,1.4063,15.8469,0.4069,87.1174,76.6393,68.5315,86.014,20.8006,2.0075 Birmingham and Solihull ICB,M85082,Handsworth Medical Pract.,4763.763838,3.8188,52,65.625,1.1797,62.5,74.5455,2.3042,86.4407,4.2183,0.2765,0.2581,1.9257,42.5321,11.8221,12.7005,78.1351,94.0299,0.4793,0.5161,22.5126,1.3536,89.8802,92.0732,95.1923,97.1154,6.0453,0.8664 Birmingham and Solihull ICB,M85084,The Wand Medical Centre,7637.782371,6.8002,61.8644,53.1915,1.8138,57.1429,72.4138,1.7814,66.1972,3.911,1.085,0.502,2.5281,55.5504,11.3188,12.0648,68.9831,81.2903,0.4211,2.0891,18.5825,0.1937,89.9107,81.6901,89.4737,92.6316,19.6574,1.247 Birmingham and Solihull ICB,M85086,Cofton Medical Centre,11248.09135,8.2388,69.8529,74.7619,3.3908,72.6131,74.4186,2.2921,89.0625,5.8508,2.0269,0.4168,3.0439,31.5408,7.9322,17.0487,65.6124,82.4841,0.7293,0.985,18.4007,1.9677,86.4499,84.9558,87.069,93.9655,16.9913,1.3544 Birmingham and Solihull ICB,M85087,College Road Surgery,12852.65695,6.7771,68.0851,56.5022,2.7736,65.2709,72.3958,2.5439,83.3333,5.6204,2.1818,0.583,1.3315,45.6814,10.0578,14.8838,73.813,92.2034,0.6978,1.1395,15.2115,0.7372,90.9525,85.4671,89.5062,97.5309,18.6336,1.8903 Birmingham and Solihull ICB,M85088,Karis Medical Centre,17844.78074,5.1691,57.7465,64.257,1.9579,51.201,64.3478,2.0032,77.4567,2.7359,1.1317,0.3848,0.8665,35.4753,6.269,9.8744,61.4743,75.2443,0.5319,1.3355,11.237,0.7112,77.5451,82.5083,79.2135,88.2022,16.4005,1.0582 Birmingham and Solihull ICB,M85094,Yardley Medical Centre,2313.743143,3.7428,40.4762,46.4286,1.32,57.6087,65.3846,1.32,77.5,2.3001,0.64,0.04,0.7667,43.1018,7.4313,8,82.4561,89.6552,0.4,1.24,14.3483,0.1764,74.4395,93.1035,88.8889,88.8889,23.5294,0.88 Birmingham and Solihull ICB,M85097,Cranes Park Road Surgery,2221.158426,5.7769,61.6667,62.1622,3.1584,63.5294,66.6667,2.6939,85.7143,2.5459,1.765,0.5574,1.2433,28.8071,8.5965,12.6335,71.4912,93.1818,0.6967,0.836,16.4002,1.0309,91.4498,90.9091,82.1429,92.8571,14.7041,0.836 Birmingham and Solihull ICB,M85098,Rotton Park Medical Centre,4933.433882,4.8135,57,73.0159,1.7138,59.9057,72.7273,1.9962,88.8889,1.2781,0.791,0.1695,1.9408,34.4727,7.239,10.1695,77.8524,89.2473,0.4332,1.1488,16.0947,0.289,76.087,92.2078,94.9153,96.6102,16.5325,0.9605 Birmingham and Solihull ICB,M85105,Victoria Road Surgery,5856.873699,7.7993,63.5593,51.6129,2.9,68.2292,77.1084,2.9,79.7101,5.5133,2.46,1.08,1.1026,38.2128,10.9105,15.08,64.3436,85.4015,1.18,1.48,18.9814,0.9296,91.196,86.7647,90.7895,94.7368,18.4267,1.96 Birmingham and Solihull ICB,M85107,Firs Surgery,3567.735881,7.3821,55.7143,59.0164,2.5495,68.0672,73.6842,2.0396,63.6364,3.4765,2.6395,0.3599,2.6176,49.7797,9.4611,12.0876,67.3077,82.0513,1.1698,1.6497,20.3272,0.1142,91.9626,90,88.6364,95.4545,21.9251,1.5297 Birmingham and Solihull ICB,M85108,Small Heath Medical Practice,6718.566963,6.9084,53.3981,49.3976,1.7401,43.578,56.7901,2.1232,48.6842,3.5865,0.7024,0.3512,1.9604,56.1994,13.0756,10.2012,62.9214,80,0.6066,1.1015,17.71,0.2774,89.6936,87.2483,85.9649,92.9825,12.8812,1.1973 Birmingham and Solihull ICB,M85110,Saltley and Fernbank Medical Practice,10664.41014,5.5617,40.678,41.8605,1.5149,40.3361,60.3053,2.3004,70.5357,2.8636,0.7574,0.187,1.1101,49.2789,12.806,9.482,54.2012,69.2308,0.8416,1.1034,8.6035,1.24,79.9143,88.6719,,,13.9368,0.9164 Birmingham and Solihull ICB,M85113,Bucklands End Lane Surgery,6881.285817,6.1348,61.7647,62.931,2.3565,61.7347,73.9583,2.5008,77.027,4.8144,2.6451,0.513,0.3181,37.9907,10.3815,15.0529,79.7619,90.7104,1.1703,1.1703,15.3977,0.148,90.064,84.3537,89.7959,95.9184,14.77,1.5871 Birmingham and Solihull ICB,M85115,Sutton Road Surgery,2417.895067,7.1197,67.9487,68.6275,3.6485,68.9655,69.0476,3.9568,61.5385,3.2463,1.1305,0.2569,1.0821,32.594,11.8824,15.1593,74.1379,93.6508,1.3875,2.0041,16.6136,0.1166,88.0855,91.8367,94.4444,97.2222,13.4593,2.0555 Birmingham and Solihull ICB,M85116,Fernley Medical Centre,8229.947005,6.8555,52.7027,40.708,1.8059,53.6913,74.7573,2.8989,79.0909,4.2014,0.796,0.3327,1.6339,44.3123,14.1811,13.5678,64.2857,75.7895,0.9267,1.1524,21.7906,0.5982,93.3854,90.0763,88.0682,94.8864,11.6631,1.1168 Birmingham and Solihull ICB,M85117,Bartley Green Medical Practice,6884.280849,7.4602,66.2983,67.4603,3.7069,70.5314,76.5957,2.8357,73.8462,4.9015,2.8528,1.1958,0.6491,40.271,10.0661,13.3926,75.7764,88.5714,1.247,1.4691,13.4512,0.2398,90.7976,87.7698,86.0465,91.8605,20.8782,1.7595 Birmingham and Solihull ICB,M85118,Baldwins Lane Surgery,3035.013864,6.5645,71.1538,64.0625,3.6205,68.4211,73.2143,2.4033,86.6667,3.8645,1.5918,0.2497,2.2709,17.7561,9.6003,16.0425,73.7113,81.746,0.593,0.8739,14.3825,0.1554,91.8573,90.566,87.234,93.617,12.5136,1.5293 Birmingham and Solihull ICB,M85123,Al-Shafa Medical Centre,8619.436223,6.2106,34.6457,35.6436,1.3979,61.5385,76.0417,3.3438,84.8485,3.6087,0.548,0.369,1.4932,49.658,16.7931,9.7741,76.1708,88.5135,0.9282,1.0289,18.4943,0.1066,95.8402,89.8734,82.3256,90.2326,12.0849,1.1295 Birmingham and Solihull ICB,M85124,Bellevue Medical Centre,12658.12225,4.1008,54.5024,48.2517,1.2066,53.8462,63.3588,1.6196,68.8172,2.5704,0.9555,0.2591,1.4928,39.269,6.5931,9.0939,77.45,85.6322,0.2915,1.1175,10.8947,1.545,80.1602,87.3832,89.3204,95.1456,12.6041,0.8017 Birmingham and Solihull ICB,M85128,Balsall Heath Health Centre,6010.719346,8.4593,55.0847,60.6742,2.3875,56.7251,74.026,3.0387,78.7879,4.8566,1.0655,0.513,1.86,53.6877,13.1552,13.0229,69.2168,80.1802,2.2494,2.1113,17.3599,1.1035,89.5381,89.0805,92.0792,93.0693,14.881,1.5391 Birmingham and Solihull ICB,M85136,Druids Heath Surgery,13707.93269,6.6956,56.7901,47.4576,2.551,68.408,67.5325,2.6039,73.4177,3.8993,2.0655,0.5296,3.0436,51.0932,9.5335,12.9226,73.7705,86.0656,0.918,1.6771,19.203,0.3703,89.4056,85.1351,89.3333,94.6667,22.137,1.3064 Birmingham and Solihull ICB,M85139,Alpha Medical Practice,5590.036951,8.1193,41.3793,41.0959,1.0941,51.9417,69.863,2.8656,81.25,3.9808,0.3994,0.191,1.9185,50.4896,16.3385,10.6461,73.7132,84.058,0.6947,1.1289,12.3022,0,88.5363,93.9086,85.6115,90.6475,12.1413,1.1462 Birmingham and Solihull ICB,M85141,Schoolacre Road Surgery,4159.681065,8.8753,66.0194,56.7568,3.5058,68.3168,77.5862,3.8731,75,4.6423,5.7429,0.601,1.2351,46.6303,10.3275,22.0701,79.2593,93.3884,0.8347,1.3022,24.6593,0.417,94.7173,87.6405,83.6735,95.9184,22.9542,2.6711 Birmingham and Solihull ICB,M85143,Jiggins Lane Medical Centre,8798.414775,8.3465,67.6329,60,2.6522,68.2353,74.5902,3.1123,80.6452,5.9098,2.1245,0.5819,0.4147,39.3612,9.1095,16.4141,62.5366,86.1702,0.7713,1.2585,14.2907,0.7297,87.9921,85.5422,68.6275,98.0392,20.1494,1.9351 Birmingham and Solihull ICB,M85145,The Slieve Surgery,8704.077556,6.7461,59.6838,57.1429,2.3661,53.5604,71.7241,3.0672,66.9725,5.1035,0.6682,0.7011,2.0981,26.4895,11.8023,15.2372,62.611,83.7736,0.471,1.2488,11.3127,0.2717,85.7925,85.7143,58.5366,87.1951,10.3746,1.6212 Birmingham and Solihull ICB,M85146,The Khattak Memorial Surgery,5992.055198,5,35.2273,25.3968,0.9408,40.4762,56.6667,2.5912,70.7071,3.0201,0.2806,0.1816,2.5693,48.8419,13.3275,9.424,54.672,77.9412,0.8747,1.2378,16.4976,0.1654,85.1875,94.086,85.5932,91.5254,11.2112,1.0893 Birmingham and Solihull ICB,M85149,Alum Rock Medical Centre,5897.341251,7.5618,34.0659,51.4286,0.8434,55.2764,75.7576,3.8899,85.9375,5.7728,0.8606,0.3442,0.4656,49.2308,17.3824,12.0654,75.6888,80.9524,1.136,1.79,15.8985,0.6197,91.1676,93.5018,92.4658,93.1507,11.8852,1.3597 Birmingham and Solihull ICB,M85153,Weather Oak Medical Centre,3496.212039,5.2741,40,33.3333,1.151,62.0968,75.6098,2.4116,89.3617,3.4175,0.4933,0.4111,1.4487,49.3828,14.0351,11.4004,81.8428,93.617,0.7125,1.2332,22.2883,0.2469,91.6486,96.1539,94.7368,94.7368,12.9672,1.0688 Birmingham and Solihull ICB,M85154,Finch Road Primary Care Centre,4389.020965,5.1816,47.2222,48.0769,1.1035,41.6667,61.7021,3.465,83.0769,5.7609,0.3973,0.1324,0.0924,51.9362,16.9721,11.2779,59.5133,77.9661,0.7945,0.8387,13.5243,0.6452,87.12,91.6256,72.3214,91.0714,10.2692,0.7725 Birmingham and Solihull ICB,M85155,Kingstanding Circle Surgery,7523.560269,7.6447,60.479,53.9063,2.8879,67.5439,73.5849,3.0261,85.7143,3.8095,2.0891,0.4301,1.9255,44.1234,9.4603,13.8403,70.4453,80,0.9063,1.4286,14.9897,0.351,90.7653,86.6667,84.2697,92.1348,22.9939,1.8433 Birmingham and Solihull ICB,M85156,River Brook Medical Centre,9724.064907,7.1124,67.5676,71.0227,2.1643,65.7754,73.8854,2.2645,83.6735,2.5269,1.0822,0.2806,2.5393,29.5252,6.4528,10.1703,71.8097,81.0458,0.491,0.982,8.7576,0.1851,87.4922,78.9809,88.7755,91.8367,19.4797,1.0822 Birmingham and Solihull ICB,M85158,Apollo Surgery,2367.839874,5.3289,66.6667,69.8113,2.9051,70.3125,72.093,2.9051,83.3333,2.2834,2.1789,0.227,1.815,31.1421,9.4525,16.1598,56.8493,82.8125,0.5447,0.5447,13.993,0,91.483,94.8718,80,93.3333,17.2804,1.7249 Birmingham and Solihull ICB,M85164,Newport Medical Group,13225.76847,5.3618,41.3793,34.6405,0.9081,31.8083,55.1471,2.65,62.0513,3.0483,0.4839,0.2903,1.5651,49.5828,11.9062,8.7986,61.5075,71.6577,0.5583,1.2803,14.1776,0.2326,81.9448,85.755,85.9574,92.3404,12.2144,0.9826 Birmingham and Solihull ICB,M85167,University Medical Practice,7634.83524,3.6826,73.1959,76.0563,1.0262,47.0175,79.661,0.6726,69.4444,0.7704,0.1248,0.0832,1.8929,18.4844,1.832,3.7928,71.7949,85.5932,0.1317,0.423,3.4189,0.0744,89.2532,80,73.1707,87.8049,5.0975,0.4022 Birmingham and Solihull ICB,M85170,Gate Medical Centre,5647.800873,7.6092,34.7826,53.3333,0.9559,43.3735,64.8148,4.1943,76.087,2.7763,1.0339,0.3512,0.7008,50.6596,17.7684,11.627,72.837,82.8283,0.7218,1.8728,18.0863,0,90.9695,92.823,86.7188,92.9688,16.862,1.2095 Birmingham and Solihull ICB,M85171,Rowlands Road Surgery,3003.127486,5.4998,65.5172,70.3704,2.0633,60.9524,73.8095,2.6479,75,3.2244,1.3755,0.3439,0.4478,29.8411,9.7668,11.1761,74.902,85.7143,0.7565,1.4787,13.9722,0.3141,86.2281,91.2281,83.7209,95.3488,15.3006,1.1348 Birmingham and Solihull ICB,M85172,Ridgacre House Surgery,14100.6138,7.8821,69.5531,65.7993,2.7432,71.1111,74.3363,2.9821,86.1842,4.8662,1.5055,0.4849,1.7237,31.4832,8.6286,15.8367,58.8367,73.5,0.5718,0.8903,12.4845,0.2188,89.8676,85.8108,78.7356,90.8046,14.9195,1.6503 Birmingham and Solihull ICB,M85174,The Brook Surgery,4509.247053,6.3929,40.2299,48.2759,1.5906,51.8519,63.1579,1.9133,59.2593,3.0006,0.5763,0.1844,2.2352,46.5874,10.5342,9.728,71.5084,85.9375,1.8672,1.752,17.0239,1.5111,90.299,94.5055,89.5522,91.0448,16.5546,1.314 Birmingham and Solihull ICB,M85175,The Hawthorns Surgery,11109.64976,6.2102,78.6207,78.8321,4.666,68.6411,75.3363,3.12,90.411,2.265,0.8807,0.8995,0.7325,13.7309,6.9514,18.5515,53.3194,64.1166,0.4123,0.7308,7.0092,0.2044,81.6056,81.8182,77.8846,86.5385,6.2392,1.9488 Birmingham and Solihull ICB,M85176,Kirpal Medical Practice,5325.194265,5.4416,57.7586,56.6265,1.6691,51.9802,74.3243,2.9347,91.3793,4.2337,1.0822,0.3302,0.8278,43.8457,12.7674,13.8298,74.0399,87.3786,0.6787,1.1005,19.5837,0.1458,90.7583,92.5287,93.3962,92.4528,13.4419,1.1005 Birmingham and Solihull ICB,M85177,Swanswell Medical Centre,7332.942499,8.305,63.8037,44.1667,2.7146,66.5179,70,2.6357,82.1918,4.109,2.3043,0.4419,2.8092,38.1921,9.6403,14.8516,56.0468,80.814,0.6944,1.452,17.5262,0.8134,86.7434,85.1064,80.8989,88.764,18.6169,1.815 Birmingham and Solihull ICB,M85178,Modality Enki Medical Practice,12927.38639,7.6044,47.8992,58.0838,1.4944,59.8214,70.7792,2.8228,54.3689,4.046,1.2307,0.3614,0.8367,46.6604,13.6241,14.9346,73.0268,85.2679,0.7228,3.1061,16.3087,0.8538,82.3514,86.3129,87.5,94.4444,19.5652,1.4065 Birmingham and Solihull ICB,M85179,Maypole Health Surgery Y,5602.358266,8.0977,71.4286,61.0619,3.9619,73.5099,79.7872,3.178,79.5455,7.2182,2.8178,0.5297,2.9197,36.4749,9.6568,15.339,72.6103,81.1111,1.1652,1.3983,18.3293,0.2713,92.0627,90.6977,86.1538,93.8462,16.3727,1.589 Birmingham and Solihull ICB,M85600,Kings Norton Surgery,16519.204,7.8193,66.9811,60.2564,2.7821,72,73.6585,2.2144,90.8163,4.8645,1.6188,0.3294,1.5789,35.2045,7.3627,13.4058,69.8945,85.0993,0.6868,1.4856,16.7564,2.9099,89.1095,76.4,88.7324,95.7746,16.5276,1.1493 Birmingham and Solihull ICB,M85624,Perry Park Surgery,6541.390779,5.6233,67.0455,62.9032,3.0246,57.9439,65.4545,2.6485,76.7123,4.9632,2.0216,0.2978,0.6536,37.3439,8.9289,14.5118,76.2846,89.8204,0.5485,1.0187,11.683,1.0942,87.0008,87.0504,83.1325,91.5663,18.0422,1.6769 Birmingham and Solihull ICB,M85634,Heathfield Family Centre,9863.747587,6.8658,44.1341,45.1327,1.4162,49.2355,72.0721,2.3534,77.3438,3.6646,0.9372,0.427,1.9573,48.1595,12.4677,11.1215,68.8268,80.9249,0.5311,1.3225,18.92,0.3851,84.4677,87.2659,81.25,89.2045,18.1427,0.8539 Birmingham and Solihull ICB,M85642,Cavendish Medical Practice,6117.542369,7.4963,51.8248,69.2308,1.574,57.561,73.494,3.0605,60,7.7258,0.6471,0.3498,0.9399,40.2621,16.0269,16.5093,73.718,88.4146,0.9969,1.1717,15.5663,0.1216,89.8975,89.5425,77.305,82.2695,12.5733,1.3117 Birmingham and Solihull ICB,M85669,Tudor Practice Stockland Green,8321.663466,5.3158,59.2593,51.6854,1.2155,61.039,68.4211,1.3746,73.6264,1.1461,1.1142,0.246,0.3056,45.2995,6.8483,10.4037,69.289,79.3103,0.6077,2.5756,14.0019,0.3096,90.0238,91.1765,79.1045,94.0299,29.0866,0.8537 Birmingham and Solihull ICB,M85670,Greenfield Medical Centre,3457.6034,6.7242,46,48.6486,0.7593,48.2143,64.1026,2.2778,80.5556,1.8075,0.5062,0.1406,1.1002,50.5171,14.1708,8.324,71.5356,79.3103,0.9561,1.1811,9.8232,0.1499,84.5874,87.8049,82.716,90.1235,11.4498,0.8436 Birmingham and Solihull ICB,M85676,Victoria Road Medical Ctr,6043.400193,5.9263,42.5532,42.623,1.2514,43.5146,69.3548,2.2969,74,3.6266,0.4594,0.2218,1.9099,50.1949,13.0059,10.4705,68.7943,75.2577,0.6653,0.9821,17.8326,0.33,92.3878,89.7297,86.6667,90,18.763,0.8079 Birmingham and Solihull ICB,M85679,Charles Road Surgery,5348.311931,5.7279,46.4286,63.4921,1.3419,52.2167,72.5806,2.5619,75.6098,3.3151,0.5751,0.2266,1.2712,48.8842,13.5606,9.6724,71.9486,85.2273,0.8191,1.0457,20.8624,0.3448,91.4286,91.411,86.3636,93.6364,10.3801,1.1851 Birmingham and Solihull ICB,M85680,Cotterils Lane Surgery,2187.450288,3.0594,43.3333,44.4444,0.7803,49.3506,70.5882,1.4826,75,2.5791,0.8974,0.078,3.1067,51.4603,10.8,7.7253,65.2406,54.5455,0.3121,0.9364,20.8675,0,87.2378,86.9565,92.1053,97.3684,18.5882,0.5853 Birmingham and Solihull ICB,M85684,City Road Medical Centre,3138.548938,2.2459,53.8462,70.3704,0.7233,57.6531,78.5714,0.5683,80,1.203,0.2067,0.1808,1.8507,39.4781,6.2768,7.2333,66.5339,96.5517,0.1808,0.6975,16.6564,0.5172,79.8517,88.4615,90.625,90.625,17.6972,0.2583 Birmingham and Solihull ICB,M85686,Dr Kulshrestha Family Practice,1630.706558,5.9764,63.1579,71.4286,1.9881,59.2593,80,2.717,66.6667,4.9957,1.1928,0.3314,1.2059,46.2819,11.8544,18.2903,68.2927,80,0.6627,0.8615,29.888,0,91.0394,91.1111,92.5926,96.2963,17.5665,1.0603 Birmingham and Solihull ICB,M85693,Featherstone Medical Centre,2535.115029,7.4989,60.5634,53.1915,3.1237,67.0213,72.5,2.3124,79.3103,1.6277,1.0548,0.3651,0.9156,26.6853,8.5299,11.4807,65,80.9524,0.6897,1.4199,12.4619,0.237,83.1527,79.5455,84.375,87.5,14.475,1.3387 Birmingham and Solihull ICB,M85694,Garretts Green Lane Surgery,3878.376844,9.0151,67.3913,65.625,2.3451,68.1481,75.9259,2.7917,80,5.5576,2.2613,0.2792,1.4547,36.1935,9.9743,14.4054,72.6058,85.0746,0.6421,0.9771,21.2234,0.1883,90.3605,85.0575,87.7551,95.9184,17.9592,1.2284 Birmingham and Solihull ICB,M85697,Church Road Surgery_M85697,5261.762902,6.0647,55.7692,57.8947,1.9147,64.6707,72.2222,2.3309,67.6471,4.2305,2.0604,0.3538,2.0874,51.4565,11.2657,15.0676,81.9165,92.2078,0.77,1.436,20.4564,0.9397,90.8292,90.9091,94.5205,95.8904,20.946,1.3111 Birmingham and Solihull ICB,M85699,Coventry Road Medical Centre,5473.772095,5.941,31.0345,48.3871,0.9325,52.3256,73.7705,2.3499,77.0492,3.0758,0.4662,0.2425,0.4675,51.245,15.0447,8.5229,82.2622,83.8235,1.0257,1.5293,17.0768,0.0834,81.2741,91.6084,88.4298,90.9091,11.1265,0.8579 Birmingham and Solihull ICB,M85701,Burbury Medical Centre,4470.443722,5.9783,35.2941,27.6596,0.7612,44.186,67.3913,2.2619,80.3571,2.0235,0.2392,0.1522,0.8798,53.4281,14.1915,10.1783,66.6667,88.8889,1.2614,1.3919,14.3695,0.1177,84.2059,94,81.6327,80.6122,13.3597,0.8265 Birmingham and Solihull ICB,M85706,Druid Group - EMC Surgery,14911.82706,7.1813,47.0803,52.551,1.2732,58.3673,72.3164,2.5109,84.7826,3.912,1.764,0.2276,1.1191,46.4671,12.0727,11.402,76.9175,88.6878,1.1807,1.8707,19.6964,0.1454,90.1508,88.9518,87.7551,92.2449,18.1694,1.1879 Birmingham and Solihull ICB,M85711,City Health Centre,2954.976062,5.1249,45.8333,58.8235,1.3381,53.7415,75,1.7544,73.1707,2.6465,0.3866,0.1784,1.5501,32.5675,9.5468,13.0836,68.9744,82,0.6244,1.6652,18.4877,1.4041,89.3591,96.2025,86.2745,92.1569,16.763,0.565 Birmingham and Solihull ICB,M85713,Highgate Medical Centre,5432.846322,7.1041,43.75,45.7627,1.7935,55.0725,75.4386,3.5278,89.5522,4.442,0.6307,0.2956,2.9252,50.1618,15.5851,12.7513,75.6318,84.9462,2.0891,1.9314,16.143,1.938,95.9245,88.8889,95.5752,91.1504,11.8766,1.0445 Birmingham and Solihull ICB,M85715,Soho Road Primary Care Centre,10668.50779,5.3659,53.1915,54.0541,1.4031,47.806,68.75,2.3038,72.2222,1.9126,0.3811,0.2165,0.5667,45.6997,12.2331,10.0208,59.7122,73.3696,0.7535,1.1086,14.4274,0.0804,82.5639,85.3061,78.8462,87.0192,13.807,0.8748 Birmingham and Solihull ICB,M85716,Dr Khuroo's Practice,5419.492742,4.9139,62.8866,53.8462,1.8838,60.2151,70.4225,2.2371,77.4194,2.0258,1.0793,0.3728,1.4996,45.6791,9.2102,10.4592,68.0672,84.2105,0.9027,1.9623,14.654,0.0848,91.2752,89.1566,86.7647,89.7059,24.6819,1.04 Birmingham and Solihull ICB,M85717,Downsfield Medical Centre,5388.859436,7.9617,57.4257,56.962,2.413,60.2484,64.2857,2.7378,77.2727,2.5949,3.8515,0.5336,3.2279,48.2052,8.8765,11.3457,32.2275,61.194,1.0209,1.2761,10.1582,0.3292,84.1549,90.2174,57.6923,86.5385,25.3421,1.5313 Birmingham and Solihull ICB,M85721,Holyhead Primary Health Care Centre,8499.36732,2.1606,39.2593,50,0.5654,61.0272,67.4157,0.7322,86.1789,1.2449,0.2688,0.0185,0.5701,44.7609,6.2808,6.9237,69.0577,86.1111,0.5191,0.5932,12.4724,0.1549,88.9143,93.75,88.785,94.3925,11.9563,0.4078 Birmingham and Solihull ICB,M85722,Naseby Medical Centre,5065.87309,3.1214,29.5775,36.0656,0.7008,33.5025,58.209,1.8509,84.058,0.7025,0.1617,0.1078,0.0753,47.9571,10.9024,4.9775,82.6087,87.5,0.8446,0.7368,12.7697,0.3646,89.8224,91.4634,,,3.7142,0.5391 Birmingham and Solihull ICB,M85730,Ley Hill Surgery,6142.701669,6.678,56.8,60.4651,2.3625,74.5455,72.7273,1.957,78.4615,2.8846,1.6925,0.2468,2.5412,41.4652,6.5105,10.8956,65.3992,80.4348,1.1107,1.3047,14.5376,2.4,88.7846,91.0256,85.4545,92.7273,41.8925,1.0931 Birmingham and Solihull ICB,M85732,Bloomsbury Surgery,2828.90056,5.3971,60.4651,57.1429,1.2028,52,79.3103,1.4932,40.9091,2.5078,1.6591,0.4977,3.0826,51.5687,6.5095,8.8345,79.2135,94.2857,0.6636,0.5807,16.5099,0.1767,96.6616,94.7368,91.6667,95.8333,14.8803,0.9954 Birmingham and Solihull ICB,M85733,Moor Green Lane Medical Centre,6486.961232,7.4264,63.8158,68.6441,2.4688,62.1993,71.8447,2.6652,77.7778,4.4595,1.4448,0.3226,2.2206,28.3202,8.6415,11.5584,70.1556,87.1795,1.7394,1.2905,19.6366,0.4137,90.7895,82.0359,90.1099,93.4066,16.5879,1.3887 Birmingham and Solihull ICB,M85735,Greet Medical Practice,5562.121439,7.7872,47.3684,37.7049,0.7928,53.0702,77.0492,2.1563,96.2963,2.6977,0.4122,0.2378,1.9368,46.0815,13.618,7.7533,72.1461,82.3529,0.8721,1.3477,23.7491,0.1807,90.5787,86.1446,93.2773,89.916,13.0309,0.8562 Birmingham and Solihull ICB,M85736,Acocks Green Medical Centre,5572.32404,5.8799,51,44.1176,1.9828,59.4444,67.7419,2.0972,66.6667,3.0295,1.9828,0.8389,2.4949,40.9039,9.841,12.5834,61.6907,85.5769,0.8961,2.021,14.3585,1.3709,81.8025,92.2222,82.8947,90.7895,19.8212,1.3727 Birmingham and Solihull ICB,M85739,Pak Health Centre,5089.413829,4.4605,31.6456,25.9259,0.8336,51.1628,61.8182,1.9754,61.5385,2.6621,0.2718,0.1269,1.3557,50.2849,10.9615,8.0645,78.8698,92.1053,0.5437,1.3048,13.9512,0.0943,97.5587,89.916,92.2222,96.6667,10.9313,0.6524 Birmingham and Solihull ICB,M85746,Mirfield Surgery,7106.525249,7.6778,51.7544,54.3478,2.74,61.244,63.2911,2.8621,77.1429,3.0893,3.1414,0.192,4.2812,51.8758,10.4097,12.6876,74.883,84.8837,0.9599,1.5707,17.6599,0.5521,86.8658,88.7218,83.3333,92.8571,24.7043,1.274 Birmingham and Solihull ICB,M85749,Aubrey Road Medical Centre,2962.995898,5.4968,39.2157,60,0.8858,60.7143,79.4118,3.0054,88.6364,2.3256,0.5062,0.1265,0.6582,46.7459,14.9785,9.8387,75.9124,97.2973,0.5694,1.2654,17.7271,0.1553,90.3571,89.1304,92.6471,95.5882,12.3571,0.7276 Birmingham and Solihull ICB,M85756,Springfield Medical Pract,2791.661808,6.6068,39.2857,40.625,1.1978,41.7582,70.9677,2.7721,70.8333,3.129,0.5818,0.2396,1.243,40.3542,10.8632,12.2177,57.4324,75.4098,1.5058,1.6427,16.8881,0.4981,72.2488,95,61.5385,80.7692,12.7258,0.8556 Birmingham and Solihull ICB,M85757,Soho Road Health Centre,3651.597673,5.5658,50,60,1.253,58.4337,79.5918,1.8795,74.0741,2.7044,0.4819,0.1446,1.209,45.367,11.8512,11.8795,65.1316,75.6757,1.012,1.253,21.1581,0.1256,92.6512,91.8605,85.1351,87.8378,15.627,0.7229 Birmingham and Solihull ICB,M85759,Nechells Practice,8814.173172,7.8504,50.3817,52.0408,1.3719,50.3731,62.6374,1.9288,62.6374,3.2214,1.2768,0.2717,1.679,53.0884,10.7041,9.6305,53.9474,78.2178,0.8014,1.5077,11.1675,0.1301,91.0373,88.6525,74.0385,83.6538,15.1101,1.3991 Birmingham and Solihull ICB,M85766,Balsall Heath Health Centre (S),4007.600229,6.853,51.7241,60,1.0552,53.7931,73.6842,2.1841,78.5714,2.4734,0.6626,0.1963,0.9275,53.0054,11.5487,8.8589,65,70.7317,1.0552,1.5705,18.4129,0.4149,85.4871,93.421,89.5522,95.5224,16.8696,0.7362 Birmingham and Solihull ICB,M85770,The Sheldon Medical Centre,2321.275098,8.0748,69.7674,75.4717,3.5481,74.6032,76.1905,4.0616,100,4.3925,2.4276,0.5135,2.0536,35.4659,9.6067,16.3866,60.0671,73.5849,0.9337,0.5602,13.4626,0.333,90.4762,89.0909,90.3226,93.5484,13.7673,2.0075 Birmingham and Solihull ICB,M85774,Springfield Surgery,6279.693938,6.2115,52.4752,42.3529,0.9901,44.6809,66.25,1.8408,58.7786,2.5417,0.5299,0.4881,1.4437,38.1087,10.0357,9.2874,48.5904,63.4921,1.018,1.2132,12.9728,0.2264,84.6765,86.9919,79.5918,84.6939,13.5282,0.7949 Birmingham and Solihull ICB,M85778,Halcyon Medical,12130.3526,1.9203,55.8824,49.1228,0.3648,36.3727,56.1404,0.2258,79.5699,0.1583,0.139,0.0116,1.0043,28.0331,1.4886,1.9455,57.4534,71.4286,0.0116,0.3821,5.0216,0,67.2451,82.6087,89.7436,92.3077,14.8507,0.0811 Birmingham and Solihull ICB,M85779,Aylesbury Surgery,3466.194249,7.0719,60.5263,52.459,2.4796,86.0215,86.2745,3.3652,89.1892,4.3827,3.4006,0.673,0.5184,48.8799,11.6225,15.7634,73.224,87.3418,0.5314,1.3815,25.2121,0.5092,96.0071,91.1392,87.234,97.8723,24.141,1.7712 Birmingham and Solihull ICB,M85781,Bordesley Green Surgery,3594.121408,5.7306,44.4444,59.4595,0.9988,66.6667,79.4118,1.7978,92,2.8325,0.4494,0.1748,0.8981,50.0332,14.7873,10.1623,80.7799,83.3333,1.7229,1.1236,26.2867,0.4011,88.8098,91.1111,90.8046,95.4023,13.1494,0.4494 Birmingham and Solihull ICB,M85783,Strensham Road Surgery,5063.487352,6.3784,46.4789,66.0377,0.8435,77.665,92.1569,1.5973,86.2069,2.4682,0.3769,0.1077,0.5976,49.2488,11.2655,8.6683,88.2217,94,1.2922,0.9153,22.6812,0.5388,96.9429,93.3333,96.4286,97.619,11.5627,0.4487 Birmingham and Solihull ICB,M85792,Cotmore Surgery,3791.982666,7.3108,72.1739,68.3544,4.7935,75,75,4.1604,92.1053,3.386,2.6229,0.6633,0.9782,27.6082,9.4635,20.7718,59.6623,70.5128,0.4824,0.8743,13.6945,0.6228,92.8483,79.7468,81.25,95.8333,14.8259,2.2008 Birmingham and Solihull ICB,M85794,"The Balaji Surgery, The Sparkbrook Chc",3766.264118,5.2602,33.9623,30.2326,1.0925,39.0977,60.5263,2.5407,57.4074,2.385,0.3811,0.2795,1.6014,49.3829,13.249,9.248,65.8385,76.1905,0.9146,1.6514,17.7854,0.1333,87.9639,92.1053,77.9221,83.1169,15.6691,0.9909 Birmingham and Solihull ICB,M85797,Hockley Medical Practice,10284.17379,3.7308,48.5294,44.8598,0.9856,53.0928,57.6923,0.7634,74.7573,1.2247,0.5025,0.1643,1.3391,37.2579,4.8014,6.619,42.1053,66.2338,0.3769,1.1595,11.7432,0.0585,83.3412,75.3247,86.8421,93.4211,15.7441,0.4831 Birmingham and Solihull ICB,M85803,Pearl Medical Centre,10047.29692,4.1887,37.963,34.0659,0.8393,65.5556,70.1031,1.3782,88.3871,1.4766,0.4417,0.0972,2.0159,49.4806,9.9639,6.6437,79.3494,84.4444,1.3605,1.0867,26.2969,0.489,94.5777,95.3488,93.6306,96.8153,14.3558,0.4947 Birmingham and Solihull ICB,M88020,Sherwood House Medical Practice,13021.69238,6.0468,66.1654,70.2128,3.4001,58.658,65.5602,2.7973,77.451,3.4169,0.9582,0.3786,0.5395,26.5731,8.8563,12.4411,61.7987,74.6231,0.5641,0.8346,9.4747,0.1585,74.3829,86.9748,81.5642,89.3855,13.5432,1.4991 Birmingham and Solihull ICB,M89001,Parkfield Medical Centre,4118.601381,6.57,73.5714,61.9048,4.2199,77.193,81.6667,3.5813,87.1795,5.6468,2.804,0.6663,3.0116,24.2591,10.1586,20.9606,73.871,79.2593,0.583,0.9162,14.2026,0.3836,90.699,92.3077,87.2727,94.5455,16.4351,1.8878 Birmingham and Solihull ICB,M89002,Kingshurst Medical Practice,7568.980917,7.1539,66.8605,52.459,2.0566,65.625,64.7619,3.1812,82.7161,4.5524,3.1973,0.3695,2.3412,42.5063,9.9513,15.9704,72.2093,89.5522,0.9319,1.1568,18.9031,0.258,90.1273,87.013,72.2222,95.5556,26.653,1.7352 Birmingham and Solihull ICB,M89003,GPs Healthcare,41141.15074,6.6131,77.8354,74.5055,4.1128,73.2607,78.3562,3.026,92.5697,4.5745,1.7626,0.875,0.8409,12.0591,7.6918,16.1787,74.6005,81.0843,0.6708,0.8094,9.1205,0.5178,88.3377,84.1978,83.5267,93.2715,10.248,2.2367 Birmingham and Solihull ICB,M89005,St Margaret's Medical Practice,8885.951087,6.9536,75.9259,73.5751,4.2999,70.7865,77.9141,2.7008,85.8696,4.1569,1.3741,0.6397,0.2203,12.9441,7.227,14.0133,59.9752,74.734,0.6634,0.7937,7.4324,0.6359,86.9186,81.203,79.5918,93.8776,7.7163,2.0611 Birmingham and Solihull ICB,M89007,Richmond Medical Centre,6608.781564,7.5428,67.3684,70.073,3.1658,69.5455,71.1864,2.8124,86.1539,2.2853,1.7059,0.7223,0.1576,18.8821,8.5283,13.6622,57.5323,71.875,0.5686,0.5379,7.7423,0.21,81.9971,83.7838,75.641,89.7436,12.3998,1.5061 Birmingham and Solihull ICB,M89008,Bosworth Medical Group,17768.69109,7.9394,67.4797,53.9568,3.2024,67.957,72.8448,3.2394,80.5195,4.1372,3.4391,0.6361,3.3427,46.6216,9.9095,15.6275,74.1259,85.3904,0.8579,1.4348,10.9098,0.5997,91.9285,83.0769,80.7107,90.8629,22.9973,2.0561 Birmingham and Solihull ICB,M89009,Manor House Lane Surgery,12449.57249,7.645,70.0906,61.2903,3.2348,68.0217,73.9336,3.3429,86.1111,2.0301,2.505,0.4055,1.6401,27.3427,8.906,15.1289,68.5271,79.4345,1.1263,1.1984,12.1344,0.3731,88.0196,86.4734,74.5223,85.9873,15.0931,1.8021 Birmingham and Solihull ICB,M89010,Dorridge Surgery,10485.41795,5.896,81.4356,76.5799,5.0931,78.7671,78.0822,2.8632,97.5,4.7185,0.8076,0.6883,0.6383,5.4225,5.9769,15.206,74.4435,79.4008,0.3304,0.78,6.0178,0.4478,89.3206,77.8409,91.3043,94.5652,6.483,2.5879 Birmingham and Solihull ICB,M89012,Croft Medical Centre,15290.34488,7.2916,60,49.7561,3.4667,70.2632,65.9686,3.4667,82.906,5.8899,3.2172,1.2209,2.0415,45.601,9.5458,15.9879,71.1687,84.1096,1.1853,1.319,21.882,0.6638,90.1723,92.3077,85.1351,92.5676,26.6527,1.9963 Birmingham and Solihull ICB,M89013,Arran Medical Centre,7113.208981,6.833,60.4651,46.3158,1.9452,66.5254,70.1149,2.4477,84.2105,2.4351,2.0587,0.2594,1.32,45.3818,9.2646,12.5628,65.1982,85.1064,1.2644,1.2158,10.6054,0.0614,89.3189,92.6606,79.0123,82.716,25.0976,1.1185 Birmingham and Solihull ICB,M89015,Northbrook Health Centre,12050.50591,7.0463,75.641,67.2414,3.9919,75.5784,78.1513,2.7287,87.6033,3.7328,1.3279,0.7854,0.3723,16.7378,8.1961,14.4292,70.303,73.3766,0.3644,0.6559,12.036,0.1609,93.6274,87.7637,90.5405,93.2432,9.7814,1.7814 Birmingham and Solihull ICB,M89016,Balsall Common & Meriden Group Practice,12325.55351,7.221,79.4179,86.9565,5.073,74.8555,81.203,3.3095,87.6405,4.0918,1.4761,0.8701,0.7361,8.7687,6.4109,17.7129,75.2042,84.629,0.3574,0.8002,7.5526,0.5666,86.6036,83.945,83.4646,93.7008,6.6514,2.3773 Birmingham and Solihull ICB,M89017,Solihull Healthcare Partnership,53897.39003,5.4645,76.2544,77.7683,4.6249,67.9266,76.9231,3.0058,89.6694,3.4744,1.3743,0.9044,1.0261,9.6409,6.8202,15.013,49.9512,68.9923,0.3494,0.7413,10.142,0.5078,84.4111,80.4536,75.4448,92.7046,8.1297,1.8673 Birmingham and Solihull ICB,M89019,Hobs Moat Medical Centre,10852.33343,7.1676,70.903,63.6364,2.5889,67.624,72.093,2.6881,83.4783,2.3951,1.6507,0.6405,1.3138,18.7866,7.5515,12.4932,57.7243,76.9737,0.5412,0.7938,10.2081,0.3265,85.5258,86.4706,81.1966,88.8889,12.1246,1.5696 Birmingham and Solihull ICB,M89021,Coventry Road Practice,5181.286988,6.2415,72.1854,73.3333,4.6561,69.375,79.7468,3.7672,93.1818,4.3546,2.455,0.6138,1.5811,20.3951,9.168,18.8995,67.3622,70.2703,0.5926,0.8889,13.2971,0.5793,88.2408,82.9268,85.9375,92.1875,14.9733,2.2434 Birmingham and Solihull ICB,M89024,Grafton Road Surgery,4406.275779,8.0954,65.6716,62.7907,1.6691,68.3453,66.6667,2.9455,82.9268,3.5298,2.7982,0.3927,0.4097,25.821,9.2207,11.8311,64.2458,72.5807,0.9327,1.2518,11.2512,0.3279,83.7976,70,68.6275,94.1176,20.278,1.6937 Birmingham and Solihull ICB,M89026,The Castle Practice,11886.1487,6.9324,75.493,65.4135,3.8802,79.8834,82.1596,3.4378,90.8257,9.4172,2.5438,0.6452,2.064,30.8127,9.5178,19.0691,71.7825,80.4348,0.5991,0.7281,20.6872,0.2923,95.3409,91.2052,90.9091,100,13.4029,1.7972 Birmingham and Solihull ICB,M89027,Green Lane Surgery,9726.199429,7.2176,62.1622,50.3448,2.9812,61.204,67.4603,2.4905,73.913,2.3423,2.9322,0.4785,0.9369,42.1276,9.9852,14.5626,62.8834,80.8612,0.7238,0.9692,15.6098,0.1214,89.2287,90.625,69.3694,88.2883,23.4102,1.4109 Birmingham and Solihull ICB,M89030,Arden Medical Centre,5150.881335,5.9904,82.1918,82.1192,4.8843,81.5287,85.8209,2.1937,100,4.62,0.9255,0.4456,0.367,5.7093,4.6581,13.9846,76.1827,84.7291,0.8055,0.6341,4.2962,0.221,90.7958,80.8219,84.2105,92.1053,5.1582,1.8509 Birmingham and Solihull ICB,M89608,Hampton Surgery,3314.27744,5.5325,78.0303,84.7826,4.7314,75.4902,80.5195,2.477,88.8889,3.8219,1.0576,0.8906,2.0687,8.0786,5.7507,15.5859,70.098,80.2632,0.3897,0.5566,7.8191,0.5,93.5236,76.2712,86.2069,93.1034,8.3449,2.2822 Birmingham and Solihull ICB,M91642,Queslett Medical Centre,1547.91677,7.2266,60,55.5556,2.4669,69.0909,71.875,3.6703,95.8333,2.1423,1.5042,0.2407,3.596,21.7803,8.2894,14.8616,66.8293,90.4762,0.4814,0.7822,12.9304,0,86.5022,97.0588,80.9524,90.4762,17.9365,1.2034 Birmingham and Solihull ICB,Y00159,Hall Green Health,31576.35445,7.8351,61.705,55.5556,2.4236,58.6784,74.0909,2.714,80.4124,3.9852,1.2973,0.4873,2.1707,32.8692,10.2055,13.3153,62.6474,78.3379,0.9585,1.2457,13.6545,0.2882,87.3341,86.0082,73.8197,84.5494,14.881,1.4006 Birmingham and Solihull ICB,Y00412,Soho Health Centre,5839.461683,6.5317,57.2727,62.0253,1.2933,54.0284,73.9726,3.5179,80,3.7582,0.8967,0.3276,0.9451,42.5479,13.7573,14.1576,68.1754,78.0702,0.5518,1.5348,17.6923,0.1476,91.846,92.7185,87.0968,94.3548,10.8623,1.2244 Birmingham and Solihull ICB,Y00471,Broadway Health Centre,7250.594261,4.6246,48.7805,60.9756,1.5675,45.4861,64.9351,1.6546,81.4815,2.5508,1.2482,0.2758,1.8908,43.7044,7.042,8.7083,63.4,87,1.0305,1.4804,12.7542,1.14,85.5169,90.4,90.9091,94.8052,16.6075,0.9434 Birmingham and Solihull ICB,Y00492,Summerfield Group Practice,7549.08752,3.0993,41.4634,48.1481,0.7309,57.1823,66.2921,1.0279,84.2105,0.81,0.3198,0.0343,2.8673,45.1481,6.5548,6.5212,52.7273,80.9524,0.354,0.7081,16.3454,0,71.4652,92.5,84.8101,92.4051,24.5092,0.5482 Birmingham and Solihull ICB,Y01057,The Health Xchange,1870.877881,4.5701,25,20,0.7746,46.4286,40,1.859,,0.155,2.6336,0.0775,5.3488,46.5993,3.4082,5.3447,43.4783,,0.2324,8.598,7.2868,0,88.5645,100,66.6667,88.8889,60.6474,0.9295 Birmingham and Solihull ICB,Y01068,Amaanah Medical Practice,4542.623245,5.8017,37.5,35.7143,0.894,49.4382,69.5652,2.474,86.1111,1.4101,0.6653,0.2703,2.0402,50.6972,11.1886,6.9855,65.5844,85.7143,0.3742,1.4345,17.3417,0.4093,89.8855,91.1111,75,90.7895,11.2037,0.79 Birmingham and Solihull ICB,Y02567,Hodge Hill Family Practice,6310.930086,5.582,63.9535,50.7246,1.7258,63.0705,70.7692,1.7415,73.8739,2.6147,1.4434,0.3138,0.7893,45.356,9.2477,10.4801,64.0068,86.076,1.0668,1.2551,18.9936,0.4554,92.8771,81.1111,81.9444,94.4444,19.1669,0.957 Birmingham and Solihull ICB,Y02571,Poplar Primary Care Centre,7827.382315,5.2463,68.0272,59.0909,2.4193,73.5537,79.2079,1.5326,76.1468,2.8101,0.608,0.836,2.0642,28.4388,6.1688,9.7403,66.3609,87.8261,0.76,1.5073,10.9107,0.9819,89.9452,82.4742,87.8788,92.4242,12.9127,1.254 Birmingham and Solihull ICB,Y02794,Oakleaf,10613.10637,4.4507,31.068,26.6667,0.7012,45.1754,58.7629,1.4346,70.5357,1.1954,0.266,0.1209,1.4943,49.8285,9.492,5.835,58.679,76.7123,0.4594,0.6689,13.2147,0.3894,84.8004,88.8889,68.4932,89.0411,11.3259,0.4755 Birmingham and Solihull ICB,Y02893,"Iridium Medical Practice, Richmond PCC",24854.02652,6.3503,59.5506,66.9697,2.606,64.1192,73.5593,3.0009,81.0976,4.5401,2.2623,0.5667,2.4492,45.3862,10.8492,12.6725,66.4076,83.7379,1.2589,1.4447,22.401,0.8533,91.5125,85.968,86.2805,93.9024,21.7216,1.4493 Birmingham and Solihull ICB,Y03597,Hamd Medical Practice,6618.428149,6.1047,36.4865,40.2778,0.9514,51.145,70.4225,2.1479,79.8319,2.0184,0.4613,0.2883,2.0843,49.4527,13.6849,8.1303,64.5669,78.5714,0.8217,1.3262,24.4405,0.1842,89.2244,94.5206,76.1905,92.0635,11.9805,0.7208 Birmingham and Solihull ICB,Y05826,The Hill GP Practice,4903.295212,4.6623,40.3846,36.3636,0.641,53.0435,70.8333,1.1378,75.5102,1.3402,0.3365,0.1442,2.2905,42.2489,8.739,6.6186,61.8182,82.1429,0.7051,0.6731,15.156,0.4808,88.4683,86.4865,86.4865,93.2432,13.5578,0.4968 Birmingham and Solihull ICB,Y06378,Heath Street Health Centre,6084.185033,3.1039,37.1429,47.2727,1.1453,52.4793,67.8571,1.6361,55.6818,2.6679,0.769,1.2107,2.0929,,8.2565,8.6715,67.8492,87.3418,0.4581,1.8161,17.5253,0.8114,78.7617,83.3333,80,88.5714,23.8991,1.1617 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence North East and North Cumbria ICB,A84002,The Rothbury Practice,6804.230409,7.9459,81.0959,84.5133,7.0107,75.8929,78.9474,4.7338,100,8.7088,2.5553,0.7207,0.6409,16.6389,8.0082,24.783,52.7193,69.9732,0.6552,0.8681,9.0669,0.364,88.2001,78.2857,75.3247,92.2078,6.531,3.2924 North East and North Cumbria ICB,A84005,Bedlingtonshire Medical Group,14357.82033,8.5852,79.0323,79.2285,4.0632,78.2609,81.2,3.7838,96.875,7.0448,2.5465,0.8621,1.156,23.5461,9.8636,17.8894,71.2588,82.0513,1.0298,0.7424,20.0178,0.3753,90.8888,81.7935,76.2162,93.5135,10.7619,2.5066 North East and North Cumbria ICB,A84006,Alnwick Medical Group,21627.55811,7.589,82.0043,78.7053,5.7467,72.5664,76.0095,4.7182,93.5484,5.7586,2.4121,1.2352,0.5946,15.015,8.3591,20.9988,66.3317,77.3566,0.6097,1.1239,15.3668,0.9389,87.733,81.7822,70.3252,86.9919,9.8647,2.884 North East and North Cumbria ICB,A84007,Ponteland Medical Group,11085.22842,6.1707,78.8419,78.5714,5.812,76.4706,81.7778,4.0464,93.9024,6.6236,1.2507,1.1127,0.3228,8.7398,6.8154,17.9603,61.4993,75.475,0.4874,0.4966,9.2285,0.6817,87.5455,80.9339,75.4717,90.566,6.1163,2.8508 North East and North Cumbria ICB,A84008,Belford Medical Practice,5263.183142,7.9105,80,76.3636,6.5504,81.7204,80.1724,4.4936,100,4.1425,2.6604,0.7825,1.2124,21.4578,8.2123,22.8706,63.8853,75.3906,0.3354,0.8048,16.7467,0.1426,90.897,84.466,60,96.6667,10.8525,3.4652 North East and North Cumbria ICB,A84009,Railway Medical Group,35431.86226,7.6911,73.4824,72.3642,4.1651,65.0575,68.5345,4.0879,95.082,7.0647,2.827,0.7941,1.8125,36.9309,9.8868,17.5575,59.6598,76.1051,1.2058,1.2977,17.5088,2.6739,84.6355,82.9182,75.2525,85.6061,16.422,2.6358 North East and North Cumbria ICB,A84011,White Medical Group,7937.508417,7.5708,82.3881,78.7037,5.6031,80.7018,84.3023,3.6403,94.5455,4.7675,1.3562,1.2729,1.951,8.8535,7.0911,18.9983,72.3169,84.3972,0.5472,0.7138,8.6988,4.2984,89.1874,83.7209,86.3636,94.3182,5.7085,2.6053 North East and North Cumbria ICB,A84013,The Gables Medical Group,8064.385125,7.7052,73.1092,74.8428,3.9182,70.8108,74.4,5.092,95,6.1574,3.5216,1.9353,1.6758,30.4174,11.1068,19.3528,70.4225,79.2035,0.8249,1.3166,23.2073,0.2158,87.3926,88.3721,69.8113,91.5094,17.3872,2.6967 North East and North Cumbria ICB,A84014,Marine Medical Group,16866.56984,8.4835,74.0586,75.8958,2.7206,75.772,75.2066,4.622,92.4812,5.5836,3.4496,1.1724,0.2334,34.4427,9.7428,18.3075,69.6894,80.2273,0.9469,0.9996,17.2642,1.4902,89.8385,86.4078,76.9231,87.6923,14.8573,2.7056 North East and North Cumbria ICB,A84016,Prudhoe Medical Group,6702.501648,8.1155,80.4598,67.9348,3.6722,78.9474,80.2632,3.4706,98.2759,5.4107,2.4914,0.8929,1.1964,13.3992,8.0323,18.3612,69.4981,81.59,0.8785,0.7489,16.4643,2.0165,88.6738,86.3905,89.0244,93.9024,11.3738,1.9729 North East and North Cumbria ICB,A84018,Corbridge Health Centre,7890.219169,7.4373,82.5613,78.481,6.7959,81.5951,81.1765,4.3183,93.1035,5.9872,1.6609,1.2318,1.3087,10.3435,5.7711,17.5363,63.7569,77.3481,0.4844,0.8028,11.5819,0.8518,84.6478,75.7143,80,90.7692,5.8204,3.4187 North East and North Cumbria ICB,A84020,Guidepost Medical Group,10599.38779,9.5108,76.7164,74.8837,5.4829,75,75.5952,5.5826,97.0149,7.901,4.2617,1.3084,2.9368,26.692,11.1455,21.6324,76.1261,83.9109,0.9346,1.0592,20.8408,1.0831,88.3444,78.3051,83.9161,93.7063,12.93,3.377 North East and North Cumbria ICB,A84022,Coquet Medical Group,14892.56209,9.2136,80.6291,76.0204,5.9439,77.2277,74.0741,5.1968,95.0617,6.2562,3.1546,0.9547,2.1314,23.8653,10.1921,21.0028,57.1572,75.6957,0.8634,0.9215,14.9793,0.536,84.1614,81.0881,66.8421,88.9474,15.1589,3.4866 North East and North Cumbria ICB,A84024,Burn Brae Medical Group,11006.85704,8.8355,81.1947,73.8095,6.4113,80.4348,82.1918,3.6954,93.9394,6.853,2.4636,1.4258,1.6002,13.2743,7.0218,21.4355,67.5106,75.1361,0.902,0.8632,12.1058,1.297,89.6564,85.3557,80,90.9091,9.6406,2.9098 North East and North Cumbria ICB,A84025,Cramlington Medical Group,6497.688503,8.6517,75,77.0492,4.5201,79.7468,74.3902,4.8471,92.8571,7.3509,4.0969,1.5772,1.1273,24.9446,10.2386,22.0235,61.3851,77.6042,1.1541,1.2695,17.5669,0.5195,88.7954,80.3468,75.7576,93.9394,15.491,2.6351 North East and North Cumbria ICB,A84026,Well Close Medical Group,10938.22566,8.6332,76.8844,76.8293,5.4513,73.516,67.4286,5.6873,94.7368,6.3967,3.844,1.4499,0.1207,22.3531,9.3837,20.5575,58.8021,69.1304,0.6631,1.2476,16.052,1.2247,88.4691,85.4305,91.2698,92.8571,14.7384,3.2033 North East and North Cumbria ICB,A84027,Bellingham Practice,3531.247795,8.521,79.7872,73.3333,5.3033,83.3333,80.8989,4.1606,93.75,4.9451,2.1975,0.879,0.2404,17.8658,9.7038,22.971,67.0549,79.235,0.5567,1.0255,19.9176,1.0558,87.0172,76.7442,86.6667,93.3333,10.4721,3.1937 North East and North Cumbria ICB,A84028,Seaton Park Medical Group,24639.5538,8.8335,74.7599,72.5,4.6842,70.8995,72.4796,5.1609,94.4444,4.7274,3.2333,1.0467,1.6797,33.0641,10.7064,18.6279,73.1278,80.5901,1.2488,1.2539,19.8066,1.2394,86.8216,84.3854,60.1911,89.4904,17.3886,3.0675 North East and North Cumbria ICB,A84029,Northumberland Health,5494.377996,8.2331,78.0083,77.8523,4.8359,72.5664,76.2376,4.4809,87.8788,5.0723,2.8616,0.5324,0.5256,19.5453,9.7891,21.7613,58.5859,71.9577,0.8208,0.4215,11.3798,0.2869,88.6364,84.9624,65.6716,83.5821,10.8004,2.551 North East and North Cumbria ICB,A84030,Village Medical Group,12779.47665,9.0044,78.1579,79.2969,4.8856,76,79.1045,4.5011,98.0583,5.6621,2.7194,1.0315,0.6316,21.4099,10.0167,19.308,75.8791,84.7032,0.5533,0.8346,21.6219,1.1218,93.0396,86.8421,89.697,96.9697,10.2582,2.9445 North East and North Cumbria ICB,A84031,Greystoke Surgery,11132.77171,7.3973,81.4969,88.4013,5.6893,87.6404,89.916,4.2118,98.8235,6.245,2.2354,0.9402,0.8106,13.9074,6.9794,16.8474,74.4615,84.8684,0.5469,0.7579,15.4698,0.3101,86.5053,86.9955,92.8571,98.2143,6.1459,3.1277 North East and North Cumbria ICB,A84033,The Sele Medical Practice,6386.58535,7.9684,81.7518,79.1908,5.6141,78.8732,84.252,4.0767,100,6.4925,2.2456,1.3128,1.5517,13.2688,7.4074,16.4623,80.6452,90.8333,1.3992,1.1574,15.5982,2.5882,87.7239,80.2721,77.0492,93.4426,9.6608,3.5239 North East and North Cumbria ICB,A84034,Haltwhistle Medical Group,6644.448484,8.4653,79.1045,73.7805,6.3492,81.25,80.1724,5.4654,97.7273,7.3987,3.824,0.7576,3.0238,20.4278,9.5986,23.1782,73.9657,87.415,0.487,0.9921,20.3303,2.3004,90.2714,85.1429,87.6543,95.0617,12.0231,3.6436 North East and North Cumbria ICB,A84035,Riversdale Surgery,6435.304791,8.2365,81.323,78.0488,4.9774,76.3975,76.1905,4.2232,96,6.5941,1.4245,0.8882,0.6251,12.1672,7.9204,17.6303,66.581,78.4672,0.5028,0.7206,14.4384,0.1325,87.5773,87.7301,84.9315,94.5205,9.46,3.1674 North East and North Cumbria ICB,A84036,Valens Medical Partnership,57949.50716,8.5281,77.4887,75.1714,4.3057,72.9941,73.904,4.563,95.7627,6.3466,2.9268,0.8466,0.8431,25.2926,9.1625,18.5566,69.3482,81.6697,0.6914,1.1589,17.8127,1.6535,84.8301,85.2961,79.9699,89.006,14.0338,2.6027 North East and North Cumbria ICB,A84037,Netherfield House,7062.668818,8.6682,75.502,76.9697,4.453,78.7356,80.597,4.553,100,5.614,3.2188,0.6838,0.4563,22.451,10.1313,18.2955,72.0311,81.1225,0.2835,0.8172,15.1557,0.1734,89.7123,91.5254,79.1209,95.6044,10.8903,2.9353 North East and North Cumbria ICB,A84038,Forum Family Practice,9818.522691,9.8156,80.8581,81.9095,4.6259,78.5714,80,3.8967,93.75,6.9387,2.9644,1.0519,1.0607,21.0784,9.5944,20.5833,69.917,87.6812,1.2551,1.1356,20.2711,2.1419,91.4806,82.8829,91.1504,95.5752,9.1929,2.6297 North East and North Cumbria ICB,A84039,Gas House Lane Surgery,7136.478397,7.0405,83.0128,85.0746,5.0775,78.0105,82.4324,3.6015,92.5,5.0814,0.9594,1.2546,0.4072,14.3033,6.864,14.834,65.0587,86.1345,0.7823,0.9594,10.5878,0.8519,86.5446,80.1527,79.7101,94.2029,5.6992,2.7306 North East and North Cumbria ICB,A84040,Humshaugh & Wark Med Grp,3721.758467,8.4081,82.9787,75.4237,6.9025,76.6234,80.2326,4.4004,95.4546,6.7791,2.7322,0.8628,1.3828,14.1575,7.8464,19.8447,80.4388,86.014,0.5465,0.8341,19.0219,1.8649,89.0967,85.1852,82.8571,94.2857,10.3753,3.365 North East and North Cumbria ICB,A84042,Scots Gap Medical Group,2140.248261,7.3367,80.3571,80.2817,5.8451,76.087,79.2453,4.2864,88.8889,4.0427,1.7535,0.6819,0.8984,16.1963,7.9356,17.7301,68.8462,88.4615,0.2436,0.5845,13.5879,0.6672,89.2638,91.3044,84.6154,100,7.5544,2.5816 North East and North Cumbria ICB,A84044,Union Brae & Norham Prac,7786.504928,8.999,75.9644,75.814,5.1859,67.0157,70.3226,4.6687,98.2456,4.1015,3.187,1.5236,0.5211,22.6166,10.0233,19.0942,64.1509,76.7974,0.671,0.7688,18.8771,0.3307,83.8648,77.4194,82.7273,94.5455,14.2949,3.3128 North East and North Cumbria ICB,A84045,Haydon Bridge & Allendale Medical Pract,5618.526557,7.9499,79.3706,70.2247,6.0486,79.661,78.3582,4.0136,95.2381,5.8655,1.7713,1.3002,1.0143,16.4104,7.8517,22.7624,65.4412,80.4688,0.6972,0.8291,13.8258,0.9183,90.406,80.1527,77.9412,94.1176,10.0824,3.5802 North East and North Cumbria ICB,A84047,Branch End Surgery,5304.410551,9.0768,83.4783,79.3548,4.879,80.7692,84.9624,3.5091,96.4286,4.2307,1.4825,1.3511,1.3137,10.1002,6.2706,18.5964,67.663,81.5686,0.9383,0.7131,11.9127,2.1045,90.6844,87.1287,88.2353,96.0784,5.8671,2.721 North East and North Cumbria ICB,A84604,Wooler Health,5543.68073,9.0634,79.5848,77.907,5.9946,77.2277,75.8621,5.0197,93.5484,7.7791,2.8003,0.6015,1.2725,19.8454,9.4694,24.9741,63.5484,74.8175,0.5601,0.7053,18.0072,0.4746,88.5251,82.8947,91.5493,97.1831,11.3128,3.1944 North East and North Cumbria ICB,A84614,The Adderlane Surgery,2242.462438,9.5814,74.6479,50.9804,3.274,78.3333,82.9268,5.1517,100,4.7059,2.8888,0.6259,3.6471,15.9068,9.5515,14.6365,77.0563,84.9315,0.7703,1.1555,14.1765,0.5342,88.8574,88.2353,64.2857,96.4286,14.8601,2.9369 North East and North Cumbria ICB,A84619,Elsdon Avenue Surgery,4602.28219,8.1434,77.9141,75.4902,3.974,79.562,78.2051,4.2148,97.3684,6.0209,3.2515,1.421,0.7563,20.6581,8.5731,17.317,73.7676,86.0927,0.4094,1.0597,18.5573,0.329,87.0067,85.5856,81.4815,96.2963,13.8492,2.7698 North East and North Cumbria ICB,A88001,Victoria Medical Centre,4403.9969,5.2555,68.9076,69.4444,3.737,77.4194,78.5714,4.0916,94.8718,5.9953,3.0551,2.0458,1.482,30.3989,9.1996,16.1757,88.2619,88.6667,0.982,0.9002,20.5456,0.6173,90.6028,84.2857,80.7692,94.2308,15.9315,2.5641 North East and North Cumbria ICB,A88002,Farnham Medical Ctr.,21370.03213,7.5662,70.0627,72.0195,4.426,75.4579,74.4966,4.1157,91.9255,5.4536,3.7351,1.2763,1.3054,35.7164,8.8372,15.4968,71.7062,79.7021,0.7728,0.8782,14.9394,1.1311,90.2389,79.9087,79.2035,89.3805,18.3716,2.2188 North East and North Cumbria ICB,A88003,Marsden Rd. Health Centre,23065.10606,8.4661,76.9928,77.0053,4.9277,77.7542,75.0903,4.3689,98,6.7141,3.4965,1.0905,1.2531,28.875,8.5948,19.5815,63.7719,76.2226,0.6884,0.9815,18.0679,2.1878,93.0105,79.3333,74.5875,91.7492,14.6181,2.4332 North East and North Cumbria ICB,A88004,Mayfield Medical Group,11549.3449,7.6375,72.9231,69.3694,4.6172,74.7368,74.7126,4.1599,94.382,6.0089,3.2451,1.0454,2.5037,33.7597,8.767,17.576,76.9522,89.4915,0.7841,1.089,18.5411,0.3717,85.0885,86.7596,80.4878,95.122,14.7822,2.3957 North East and North Cumbria ICB,A88005,Wenlock Road Surgery,5549.882103,6.8412,66.6667,68.0412,3.4475,69.5313,68.5714,4.4484,95.2381,4.0381,4.2482,0.4226,3.2249,38.8102,11.3743,15.903,80.1347,91.7355,0.6228,0.9787,17.779,0.3908,85.8403,82.2581,84.4156,90.9091,17.0945,1.9351 North East and North Cumbria ICB,A88006,Talbot Medical Centre,10285.88234,7.3871,70.8861,70.8134,4.4871,74.477,78.2895,4.7032,94.8052,8.1838,4.9447,0.9025,2.1089,38.5013,10.0062,15.546,67.7189,74.6888,0.7754,1.0932,20.3179,0.6137,91.3911,84.0741,83.0508,92.3729,17.1599,2.7075 North East and North Cumbria ICB,A88008,Trinity Medical Centre,8405.440738,7.0883,72.0833,75,4.2629,67.5127,74.0385,4.3706,94.4444,5.1575,3.9089,0.631,4.5681,37.7565,8.7748,17.8363,68.6214,79.6791,0.6156,1.3697,20.0037,0.344,89.9126,88.2716,83.1461,92.1348,18.2418,2.1545 North East and North Cumbria ICB,A88009,Dr Thorniley-Walker & Partners,6567.882962,6.6758,76.0163,78.3133,4.8959,78.2609,77.7778,3.3344,91.1111,4.8247,2.2772,0.732,1.7133,20.4003,7.4801,16.5745,82.8165,86.9388,0.6669,0.7157,14.7105,0.4426,89.7959,81.9549,85.7143,92.8571,11.2139,2.1633 North East and North Cumbria ICB,A88010,Albert Road Surgery,4272.285383,7.773,70.2479,71.9512,4.7146,79.5699,82.2581,4.6526,96.4286,6.7994,4.1873,1.3958,3.0804,33.4981,11.6729,20.3474,78.0583,87.9433,0.7444,0.9926,21.6003,0.5996,92.801,83.7398,85.2459,96.7213,14.5358,2.0782 North East and North Cumbria ICB,A88012,Ellison View Surgery,7541.163308,7.8125,71.1934,68.7117,4.4289,77.1574,70.0855,4.1694,96.9697,3.4686,3.4556,0.6814,3.3874,32.0607,8.4069,14.8118,73.386,83.7662,0.7301,0.9572,16.5112,0.2369,89.4645,86.2069,80.5195,92.2078,14.4509,2.2388 North East and North Cumbria ICB,A88013,Central Surgery,22983.47045,8.0747,70.6731,72.2353,3.8359,74.3865,71.3396,3.2618,96.6102,4.628,3.027,0.7307,1.6046,32.0165,8.0497,14.112,61.4953,76.9504,0.7463,1.1064,14.9118,0.1795,81.5862,76.3341,78.7611,88.9381,17.0629,1.884 North East and North Cumbria ICB,A88014,West View Surgery,3313.117254,5.8343,66.6667,62.7451,2.5228,71.0526,76.1905,3.644,91.3044,5.6866,3.8542,0.2453,0.5476,38.158,7.6891,12.0533,78.0919,90.1639,0.6657,1.0161,12.2157,0.2262,85.2368,83.7209,74.2857,100,21.3307,1.7519 North East and North Cumbria ICB,A88015,St George & Riverside Medical Practice,8741.780375,6.5648,69.2308,68.7117,3.833,71.4953,73.7705,3.7919,90,6.4003,3.4771,0.8487,1.7779,37.6722,9.2608,15.7974,71.7345,80.4546,1.0541,1.2594,17.66,0.1061,89.3981,87.1921,69.9029,93.2039,19.8107,1.7112 North East and North Cumbria ICB,A88016,Colliery Court Medical Group,8904.060462,7.3912,78.3333,77.8846,4.8546,79.0323,75.5952,4.2584,97.1015,7.7694,2.263,0.803,2.3369,19.5159,8.721,20.2458,70,79.6407,0.8274,1.1437,17.2231,2.9749,86.5352,83.9662,79.0476,95.2381,10.8291,2.2752 North East and North Cumbria ICB,A88022,The Glen Medical Group,12421.03683,6.6796,75,70.2041,3.8966,77.5862,76.2431,3.4355,95.8333,5.064,2.7394,1.0035,2.468,30.2899,8.1066,13.6968,63.3441,75.6458,0.7775,0.8498,15.4831,0.2575,90.2035,83.5249,67.1875,91.4063,14.9207,1.989 North East and North Cumbria ICB,A88023,Whitburn Surgery,5878.570565,7.6142,78.5714,77.7778,5.3913,78.9116,79.661,4.4804,100,5.5593,2.9931,0.8552,1.6111,16.6039,8.7025,17.6427,57.8445,66.2037,0.5577,0.818,15.8838,0.341,87.9469,89.7059,78.0822,89.0411,8.5989,2.2309 North East and North Cumbria ICB,A88025,The G.P.Suite,6151.132289,7.8136,72.1393,71.9697,4.7577,75,74.7475,5.1322,92,8.5925,4.0969,1.7181,0.8434,35.2425,10.1355,20.2203,71.6556,88.3436,1.0132,0.9471,21.9557,0.4519,90.5931,83.3333,75.7143,94.2857,15.8659,2.6872 North East and North Cumbria ICB,A88601,Imeary Street Practice,4892.450213,8.4389,76.6467,79.8165,3.8109,73.8806,81.9277,3.9074,90.3226,4.8955,3.5697,0.6754,1.9468,29.993,7.7513,18.0897,79.868,90.2778,0.9648,0.7236,18.5514,0.1648,91.7231,85.7143,74.0741,96.2963,12.8527,1.9296 North East and North Cumbria ICB,A88608,Ravensworth Surgery,7465.209211,5.9266,71.4932,71.223,4.2034,75.8427,77.0642,4.1186,93.75,3.7728,3.5254,1,3.4826,33.8023,9.5033,16,72.7517,83.9196,1,0.8814,15.8582,1.0492,90.263,86.5497,78.8235,92.9412,15.7576,2.4407 North East and North Cumbria ICB,A88613,East Wing Practice,5618.758517,7.2493,68.8889,70,4.32,75.5725,69.863,4.0826,100,10.6289,3.8452,1.5428,0.7381,35.8815,9.3084,16.1405,85.3659,88.4354,0.902,1.0919,20.1358,0.4009,90.7037,71.4286,76.7857,89.2857,18.3543,2.5398 North East and North Cumbria ICB,A89001,Deerness Park Medical Group,18194.23301,8.2643,71.7895,67.3981,3.6712,65.7407,72.0165,4.2063,93.7985,5.5049,3.805,0.9587,3.4778,39.2775,8.9476,18.5345,72.3762,81.2236,1.1668,1.3526,16.1614,0.9409,87.0707,87.9214,71.1111,88.8889,16.5386,2.4153 North East and North Cumbria ICB,A89002,Riverview Surgery,9342.218938,4.5272,64.3216,62.6984,2.131,60.084,71.6981,3.0624,94.2857,3.5553,3.768,0.4939,0.5008,44.4422,8.3594,14.5216,61.5558,71.1268,1.1149,1.3266,10.6994,0.3072,83.0354,90.566,69.4737,73.6842,21.7989,1.9052 North East and North Cumbria ICB,A89004,Hetton Group Practice,14681.64826,6.6288,73.6211,68.8811,4.2966,76.0218,76.8182,5.3136,91.4063,7.6544,3.2797,1.1441,2.2649,36.0494,9.5095,20.6441,65.3486,80.7393,1.3051,0.7881,18.5069,0.9333,91.2193,87.8873,74.1176,85.8824,15.6569,2.6271 North East and North Cumbria ICB,A89005,Villette Surgery,7664.165536,7.1642,75.7709,77.7778,4.8716,66.8712,72.8972,5.2082,96.9231,7.1925,3.4544,1.3995,2.0643,32.304,9.6864,21.0452,71.4129,83.2727,1.1869,1.2046,18.9266,1.1844,89.8053,89.3855,69.8795,93.9759,14.3102,3.0647 North East and North Cumbria ICB,A89006,Wearside Medical Practice - Pallion,9323.198792,5.6402,66.2037,67.1053,3.1413,65.3333,71.1111,3.5537,90.5882,3.5064,2.9836,0.5822,2.5501,34.8247,8.6109,15.658,66.0256,77.8895,0.7156,0.9945,17.6685,1.5385,92.9306,91.7582,73.8318,90.6542,15.2109,1.5767 North East and North Cumbria ICB,A89007,Pallion Family Practice,12341.58479,5.9425,73.5294,75.5274,4.0699,68.9266,78.4211,4.7887,96,4.386,2.7586,0.6411,3.1057,31.6055,9.3903,20.9034,51.6886,71.1111,0.8256,1.0199,12.0318,0.2222,85.8778,87.4074,76.2821,88.4615,13.838,2.0495 North East and North Cumbria ICB,A89008,Red House Medical Centre,6752.007743,5.4145,66.4706,69.2913,3.5491,67.4286,77.8846,4.064,91.0714,5.7777,3.8066,0.9378,1.7564,41.314,9.6892,20.7981,65.6017,75.5208,1.2872,0.9195,18.1419,0.0979,91.9244,88.3212,65.3846,89.7436,22.0091,2.0412 North East and North Cumbria ICB,A89009,Herrington Medical Centre,9860.869241,6.8076,76.6355,77.2926,3.6931,80.3797,79.3478,3.6613,95.8763,4.4086,2.3878,1.1886,1.5983,24.6932,7.9968,16.2581,74.7664,83.3803,0.8596,0.6686,16.6223,0.0523,88.9224,84.5771,65.7658,91.8919,13.2241,2.0376 North East and North Cumbria ICB,A89010,Dr Stephenson & Partners,14925.12516,6.9752,76.9392,75.4777,4.7117,78.3784,81.0127,4.4441,95.098,2.5839,2.9438,0.8028,2.2473,26.2396,10.1718,18.3116,78.7687,83.6539,0.6812,0.8921,23.2353,0.1239,92.6008,84.1424,79.3814,92.7835,13.1973,2.4248 North East and North Cumbria ICB,A89011,Joshi Na,5399.2047,6.7804,75.7396,75.6757,4.6512,74.026,78.5714,4.1226,96.0784,5.2213,3.8266,0.9302,1.9613,25.7028,9.9217,16.5539,67.0473,87.0588,1.1417,1.2685,18.4204,0.4627,91.898,87.0229,82.4324,86.4865,13.3766,2.0085 North East and North Cumbria ICB,A89012,Galleries Medical Practice,12189.91101,7.6401,76.6827,72.7642,4.1922,75.7979,74.5763,4.0323,93.2692,2.6806,3.3218,0.524,3.7349,26.3348,9.2693,17.9501,66.7958,81.3084,0.7017,0.8171,19.6276,0.6967,90.0876,88.6275,66.25,90,17.4787,2.1938 North East and North Cumbria ICB,A89013,The New City Medical Group,8360.650779,5.7127,69.0217,68.6957,3.8717,51.9774,74.4444,4.9292,81.0811,7.0649,4.1943,0.8604,1.4212,38.5638,8.2702,19.6989,64.5809,79.3651,0.8962,1.1651,14.9537,0.3613,85.3856,87.0588,65.4762,83.3333,19.1253,2.0434 North East and North Cumbria ICB,A89015,Fulwell Medical Centre,10095.48901,7.721,82.0972,83.5766,6.1756,79.6,81.6143,4.9102,94.7368,7.2155,2.5741,1.1032,1.6387,12.9284,7.4702,21.0469,70.7819,81.1475,0.5408,0.7463,15.1423,0.3952,90.2219,82.0628,77.7778,93.5185,6.43,2.8553 North East and North Cumbria ICB,A89016,St Bede Medical Centre,10479.03379,7.3336,75.7764,76.9585,4.5327,61.5132,75.2941,4.2743,98.5075,5.7741,2.767,0.9259,1.0533,25.4936,6.7903,20.4996,73.8299,83.4625,0.7429,0.7644,14.3274,0.4828,87.0493,85.7868,77.3196,88.6598,12.3027,2.1964 North East and North Cumbria ICB,A89017,Millfield Medical Group,16962.68671,6.0794,70.6237,73.6686,4.0378,64.3443,72.5191,4.0582,91.8367,3.7133,2.9638,0.6186,2.2163,33.966,8.5033,16.2735,59.8808,74.4737,1.244,0.7409,16.7684,0.8615,85.7812,90.2077,76.3441,89.2473,16.5781,2.2636 North East and North Cumbria ICB,A89018,Ashburn Medical Centre,7499.323403,7.1783,66.0819,65.7658,4.1276,58.3815,65.2174,5.0657,90.9091,4.798,3.94,0.6004,2.2727,38.5345,8.8768,17.9925,71.467,89.8148,1.1445,1.257,13.6823,0.7039,85.0142,90.3448,90.5405,87.8378,19.0241,2.4203 North East and North Cumbria ICB,A89019,Bridge View Medical Group,19816.28911,7.6111,70.1521,69.6275,4.3481,67.9592,71.4801,5.3505,95.9184,7.8767,4.9588,1.0754,4.5189,42.079,9.8196,17.8704,64.3929,79.716,1.4272,1.1152,18.9358,3.705,90.3413,89.6552,72.2727,84.0909,20.6721,2.881 North East and North Cumbria ICB,A89020,Forge Medical Practice,10230.18062,6.5564,69.8925,71.6763,3.7326,62.9344,76.0563,4.2416,93.6508,5.3442,3.3141,0.656,2.9993,32.7415,7.6364,18.6517,69.5557,88.0435,0.8257,0.8483,19.6592,0.5687,82.1058,85.7143,73.3333,96.1905,15.625,2.002 North East and North Cumbria ICB,A89021,Kepier Medical Practice,9671.022729,7.3174,74.8408,76.2136,4.6577,76.6917,81.2121,4.8106,96.8085,4.4903,3.0699,0.9174,2.1793,27.6795,9.5403,19.9012,64.8053,76.4351,0.9998,0.9174,18.0342,2.2172,90.0025,90.6122,77.8689,90.9836,14.5615,2.6464 North East and North Cumbria ICB,A89022,Concord Medical Practice,6149.97684,6.4183,74,74.5902,4.4115,75.4717,75.2688,4.7968,97.6191,7.1146,2.9667,0.8284,3.4411,26.3348,9.5752,22.3271,52.0747,66.1539,1.021,1.0981,14.02,0.6471,88.0649,82.5807,72.7273,85.7143,13.79,2.6392 North East and North Cumbria ICB,A89023,"Houghton Medical Group,",9428.092753,6.9208,75.4209,73.6318,4.1565,78.7072,79.0541,4.7677,97.5,7.4916,3.9853,0.5501,2.96,28.2342,9.6041,22.6161,67.6235,79.5455,1.088,0.8802,20.2319,0.4358,92.7674,88.5185,75.4237,94.0678,14.5412,2.4572 North East and North Cumbria ICB,A89024,The Broadway Medical Practice,8495.099672,7.1678,74.8936,75.7764,3.4096,73.9669,77.2059,4.327,96.1039,6.1242,3.5191,1.1365,2.25,33.5095,8.2818,18.8553,69.9381,80.8943,0.7668,0.8353,18.0342,1.0013,91.1834,84.153,72.7273,87.5,14.4801,2.2867 North East and North Cumbria ICB,A89025,Sunderland GP Alliance Medical Practice,10676.99102,5.9217,73.6196,69.0583,3.2123,68.0912,72.3757,4.0397,95.6989,5.15,2.6672,0.7398,1.5125,31.36,7.8085,14.6598,68.365,85.8639,0.6717,0.8664,17.1375,1.6475,86.2755,86.1345,68.9076,88.2353,15.7401,1.7327 North East and North Cumbria ICB,A89026,New Washington Medical Group,8505.514482,6.7385,73.6486,74.3455,5.243,75.4808,73.9726,3.8741,97.9592,5.4054,3.217,0.6845,0.9176,27.9844,9.3565,17.9192,68.7384,84.8485,0.9446,0.9446,14.2142,0.5853,89.6477,87.0057,73.7864,76.699,16.5981,2.3819 North East and North Cumbria ICB,A89027,Springwell Medical Group,7610.350343,9.5388,77.7273,73.8372,4.5766,77.4648,79.1045,4.5455,98.3051,6.7394,3.2067,0.8717,1.3479,34.5462,8.7084,17.4346,76.3301,79.8995,1.1519,0.9651,20.9316,1.9345,91.5278,88.6364,71.9512,93.9024,15.2088,2.3661 North East and North Cumbria ICB,A89028,Grangewood Surgery,7832.623749,7.9246,76.494,76.2712,5.1334,80.7339,80.2721,4.6296,100,7.78,2.6825,0.9395,2.3642,23.0778,8.237,19.0087,84.4526,85.7605,1.0076,0.6128,16.5996,1.6489,90.3624,90.404,77.0115,96.5517,10.9838,2.3693 North East and North Cumbria ICB,A89030,Westbourne Medical Group,7501.75663,7.648,76.2712,75.817,4.5296,79.7235,82.3529,4.8023,92.6471,6.1749,3.5449,0.9847,1.708,27.2047,9.7507,20.5575,77.3551,88.9328,1.0453,1.121,21.6779,0.796,92.0155,87.6289,70.4082,91.8367,16.2757,2.6511 North East and North Cumbria ICB,A89031,Hylton Medical Group,7253.595567,4.8402,67.9245,69.7248,2.8689,52.069,74.1935,2.8983,85.4839,3.5841,2.7659,0.5885,3.5131,32.4246,6.4369,15.0508,59.1485,79.8701,0.8827,1.0152,15.8623,1.334,88.5996,90.9091,69.1176,75,17.1182,1.4271 North East and North Cumbria ICB,A89032,New Silksworth Medical Practice,10613.29197,6.7158,76.7313,77.4194,4.1779,77.0909,77.3869,5.2359,96.1039,7.0302,2.8932,0.7125,2.2208,24.4631,8.0906,19.1623,68.0113,80.3867,0.8421,0.9392,18.5808,1.6949,85.4251,84.9206,71.9298,87.7193,11.9298,2.3966 North East and North Cumbria ICB,A89034,Park Lane Practice,4363.124903,5.4361,74.1573,68.8525,2.1422,61.4907,76.9231,2.3929,86.1111,3.4821,1.4357,0.1823,2.1491,28.7265,6.6147,11.1896,75.7212,93.3333,0.6837,0.98,15.6692,0.5376,92.3077,93.0556,67.3913,91.3043,15,1.3446 North East and North Cumbria ICB,A89035,Southlands Medical Group,11271.40749,5.918,75.6522,75.1037,4.4211,77.3109,75.5319,4.1435,96.2963,3.9282,3.4794,0.7732,1.2048,26.5062,8.6301,17.8826,75.9044,83.4808,0.8922,0.8228,17.3193,0.3349,89.9078,87.5502,75,89.5161,14.8547,2.0123 North East and North Cumbria ICB,A89036,Castletown Medical Centre,2568.370517,5.8941,74.0741,75.4717,4.1096,77.0492,73.1707,4.2513,94.7368,7.172,3.5428,0.3307,1.2828,35.0232,10.5869,18.6112,69.7885,88.8889,0.992,1.0392,15.0437,0.3322,89.5238,84.8485,60,88.5714,15.6284,1.9839 North East and North Cumbria ICB,A89040,Monkwearmouth Health Centre,5687.594303,5.9681,74.0331,77.3585,4.1892,65.873,71.25,5.0961,100,5.0746,3.455,1.1013,0.6219,27.3995,8.5538,20.8378,70.692,79.386,0.7342,0.9069,14.6766,1.1209,83.6404,88.2353,72.3077,84.6154,12.4602,2.7424 North East and North Cumbria ICB,A89041,Happy House Surgery,9800.339718,8.3736,72.2656,70.4545,3.1398,75.6667,75.5102,4.3642,95.0413,2.5899,3.0913,0.7274,1.4597,35.7324,9.3052,17.2869,67.2609,80.7292,1.5032,1.6123,18.7883,0.4115,91.9055,78.4884,63.3929,90.1786,19.9252,1.976 North East and North Cumbria ICB,A89614,Sunderland GP Alliance - South Hylton Surgery,5430.815283,7.9944,69.4444,69.9029,2.9612,72.973,75,4.5624,93.617,7.4581,3.7508,1.2283,1.9553,30.7293,9.9836,20.9037,71.3198,75.7576,0.8335,0.8555,20.7542,2.3438,89.1773,87.7551,75.3623,91.3043,17.7059,2.3689 North East and North Cumbria ICB,A89616,Rickleton Medical Centre,2651.084611,6.3864,82.4074,76.7123,3.7693,85,85.7143,3.5809,94.7368,5.2484,2.4124,0.3392,0.9372,19.3427,8.5146,18.7712,55.1111,64.5833,0.7539,0.7539,21.5089,0.1799,92.7173,90.3226,78.7879,93.9394,8.0019,1.47 North East and North Cumbria ICB,A89617,I J Healthcare,4154.126217,4.8546,71.4286,72.1649,4.6926,67.9612,67.5676,4.5307,78.125,6.0163,3.7487,0.5663,1.9187,26.6582,8.983,20.2805,52.6403,71.2329,0.7012,0.7551,12.8455,0.3454,89.0593,83.4862,72.549,84.3137,15.1589,1.6181 North East and North Cumbria ICB,A89623,Chester Surgery,2901.821086,4.5862,70.5882,73.4694,2.8122,54.0816,69.4444,2.9126,85.1852,1.7969,0.9374,0.1674,0.1254,27.8756,6.7355,10.5792,78.9916,91.0256,0.4352,0.6361,8.1906,0.103,80.9233,87.7551,80.6452,96.7742,10.0813,1.5735 North East and North Cumbria ICB,A82004,Alston Medical Practice,2396.415159,7.2402,76.2712,61.8421,6.0225,79.6296,78.1818,3.7753,84.2105,8.3942,3.3708,0.7191,1.3034,20.1017,8.1443,23.7303,78.4722,83.3333,0.6292,0.8539,23.5141,0.3231,93.806,71.0145,92.8571,96.4286,14.8731,2.7416 North East and North Cumbria ICB,A82006,Appleby Medical Practice,5440.135132,6.8923,78.5714,75.817,6.1945,78.5124,80.531,4.9122,96.875,4.2444,2.0911,0.7497,1.0261,15.885,8.441,22.0162,62.357,83.0579,0.7299,0.8483,18.6334,1.4643,90.3141,82.0313,90.7692,96.9231,10.928,3.2945 North East and North Cumbria ICB,A82012,Brampton Medical Practice,17834.3058,7.1937,80.3898,76.4368,5.9647,78.9873,79.7436,5.431,94.4444,6.7618,1.9566,1.002,1.5182,14.1883,8.1492,19.062,67.0875,84.5054,0.5396,0.8716,15.077,0.955,90.5905,82.563,75.9615,90.3846,8.2123,3.1365 North East and North Cumbria ICB,A82013,Upper Eden Medical Practice,6917.861587,7.408,78.9474,73.1959,5.7419,85.1613,83.7838,4.5633,97.2973,8.7379,2.1306,1.0275,1.8878,20.5686,9.0424,20.1874,75.1752,83.6795,0.3022,0.9368,20.6041,0.2769,91.8095,85.2381,93.4066,97.8022,10.3531,3.0825 North East and North Cumbria ICB,A82014,Caldbeck Surgery,4625.163426,6.9679,79.7414,82.069,6.1299,80,81.982,5.5352,88.8889,5.7903,2.1043,0.8463,0.7825,17.6314,7.2224,22.3239,72.5201,83.913,0.4346,0.7091,14.7105,0.6958,91.8842,83.8983,97.9592,95.9184,6.813,3.591 North East and North Cumbria ICB,A82015,Warwick Road Surgery,11598.37536,5.9032,68.4211,59.4595,3.0135,65.3153,70.2128,3.8552,92.5,4.7414,1.9697,0.3872,3.4278,27.8075,7.4569,13.0808,62.1971,76.5823,0.6229,1.2626,12.8695,0.3378,88.0377,83.2168,67.5862,86.2069,24.052,1.936 North East and North Cumbria ICB,A82016,Carlisle Healthcare,43063.45816,7.2265,76.7632,71.6685,4.8149,78.7145,84.5934,4.5841,94.0217,6.5244,2.3917,0.9388,2.2425,22.7084,8.8215,18.04,70.6518,84.1617,0.6976,1.3139,20.8498,0.7257,89.4524,80.523,85.2761,90.3885,16.1315,2.6172 North East and North Cumbria ICB,A82018,Spencer St Surgery,14614.97011,7.1729,77.2632,72.3926,4.5175,75.7991,77.907,4.1205,94.7368,3.3969,2.1951,0.7716,2.2894,23.5269,7.3417,15.0959,70.1157,87.3638,0.3296,1.4909,18.4179,0.4073,87.9702,88.2143,76.5957,91.4894,14.9162,2.5472 North East and North Cumbria ICB,A82020,Eden Medical Group,17969.59896,8.0191,72.8597,70.2778,4.1349,65.8579,74.1379,4.7515,92.3567,6.8892,2.3939,0.8887,2.5949,24.6237,8.3403,15.5241,68.2485,84.3512,0.6952,1.1486,21.7162,1.0986,89.8672,85.9213,79.1878,87.8173,15.8747,2.4241 North East and North Cumbria ICB,A82021,Castlegate and Derwent Surgery,17464.96774,7.312,79.5256,83.3962,6.0347,80.3347,80.9639,4.2845,95.3704,6.8593,1.6895,1.0049,1.4219,13.4107,7.1823,18.0433,69.2554,82.987,0.4969,0.8116,14.3769,2.2615,91.2335,78.3784,88.601,93.7824,7.3593,2.7606 North East and North Cumbria ICB,A82022,Dalston Medical Group,5405.971602,6.9945,79.0698,77.4648,5.3488,86.8852,79.8165,4.4475,100,8.2381,1.7633,0.6466,2.4524,14.9383,8.5761,19.3182,80.8659,88.5185,0.3527,0.7445,18.0476,0.1507,92.5521,87.5,83.0769,95.3846,7.959,2.9389 North East and North Cumbria ICB,A82023,Distington Surgery,7140.432231,9.3545,77.037,79.1908,5.3507,79.2899,77.6,5.416,97.9592,8.8893,3.1974,0.8646,1.9204,23.8848,9.7947,18.6297,75.4305,85.9779,0.6199,0.8646,16.3928,0.5655,91.9927,86.1386,88.2353,85.8824,13.9072,3.4421 North East and North Cumbria ICB,A82024,Seascale Health Centre,6114.873681,8.1157,77.027,77.9661,6.2067,77.7027,75,5.0567,95.6522,8.7044,2.4184,0.9132,1.7048,14.467,9.7299,20.159,73.9227,86.7596,0.5412,0.5919,17.148,0.8383,90.3516,81.7259,73.8095,88.0952,9.6989,2.7566 North East and North Cumbria ICB,A82028,Castlehead Medical Centre,8342.404331,6.4015,79.3296,75.4098,6.2696,73.1707,81.5789,3.6582,96.2264,5.6309,1.7329,0.9868,0.6986,12.6258,6.225,17.3646,68.8091,77.4026,0.2286,0.7581,7.9363,0.3155,86.5176,77.707,86.4198,92.5926,11.6105,2.9844 North East and North Cumbria ICB,A82029,The Croft Surgery,3675.207475,7.9988,82.5843,80.1802,5.376,80.2632,80.6818,4.8327,90,7.5834,2.8882,0.3718,0.6067,18.7094,9.1303,23.4773,68.9655,80.3279,0.5147,0.4861,18.4698,0.1518,94.3071,79.2793,89.5833,95.8333,8.7719,3.0026 North East and North Cumbria ICB,A82031,Shap Medical Practice,3490.927372,7.9243,77.907,74.0385,5.6032,81.7073,83.9506,4.0723,93.3333,5.8144,1.8065,0.3674,1.4807,15.6971,8.9158,20.4225,70.8738,86.1842,0.3368,0.8573,15.5291,0.9014,95.0103,88.764,89.1304,93.4783,10.0071,2.4189 North East and North Cumbria ICB,A82032,Maryport Health Services,16554.58109,7.7733,69.6498,76.8769,4.5243,73.2143,72.0307,5.0634,97.2477,6.6486,3.4314,1.1802,2.1922,30.2179,11.8421,21.0039,72.8939,84.7973,0.9253,0.9544,26.2337,0.7222,90.9678,85.3557,88.8889,91.8803,16.2193,3.0162 North East and North Cumbria ICB,A82035,Birbeck Medical Group,14989.26438,7.5607,79.4314,77.3537,5.7577,75.5263,77.7778,4.5539,94.5055,9.395,1.6234,0.8874,0.992,14.8871,7.6207,19.1649,68.7803,82.6389,0.4953,1.0043,14.0925,2.8866,86.3409,76.9418,90,94.7059,14.0969,2.6759 North East and North Cumbria ICB,A82036,The Lakes Medical Practice,10906.50857,7.2132,79.4521,83.2215,5.266,81.7629,83.2636,3.972,92.3077,7.0579,1.968,0.7549,0.8647,14.9614,6.5968,16.0227,58.8101,76.4831,0.683,0.8267,14.5806,0.684,91.9432,79.2969,77.2727,86.3636,12.3803,2.7498 North East and North Cumbria ICB,A82037,Silloth Group Medical Practice,5440.425861,6.6763,75.5656,79.562,5.4965,76.0417,72.9167,5.9815,81.8182,9.8365,3.1178,1.5243,1.1525,24.4071,10.3576,27.8291,69.0632,83.2753,0.4619,0.97,22.0584,1.6506,90.7948,80.9783,91.7808,95.8904,12.1862,3.3487 North East and North Cumbria ICB,A82038,Temple Sowerby Medical Practice,4282.086473,7.9736,80.0926,77.3723,5.2588,80,81.1966,3.5617,84.8485,8.8514,1.6132,0.6285,0.9977,15.8925,7.5953,19.8198,74.3119,85.2459,0.5447,0.6704,17.4469,0.7463,91.575,77.6119,96.0784,98.0392,8.7282,2.2837 North East and North Cumbria ICB,A82041,Lowther Medical Centre,16719.298,7.031,73.0038,74.4318,4.3155,73.2843,73.4767,4.8021,94.7826,5.5056,3.0774,0.866,2.1028,27.7085,10.6178,17.6197,77.8292,86.2934,0.8159,0.9805,20.1291,0.5069,90.9014,87.7895,82.3009,91.5929,17.8804,2.7482 North East and North Cumbria ICB,A82044,Fellview Healthcare,26614.70708,7.5104,70.8617,70.1188,4.2065,74.9296,69.7368,4.836,96.2617,6.5634,2.6073,0.8294,2.2618,25.9901,9.4229,17.3068,72.4602,86.0175,0.9698,1.225,22.1688,0.4558,89.5015,84.0382,76.9697,90.303,15.2074,2.7179 North East and North Cumbria ICB,A82045,Wigton Group Medical Practice,9140.411152,7.8485,79.3696,76.569,5.1128,77.0492,77.4869,5.0458,95.7447,4.8737,2.5006,0.5917,0.8146,19.0075,8.8856,17.8053,61.1628,80.6557,0.8261,1.0159,18.3764,0.4505,90.4944,85.3846,90.5172,96.5517,11.9751,2.8466 North East and North Cumbria ICB,A82047,James Street Group Pract,39402.06472,7.038,74.0304,70.6617,4.3737,73.3673,73.7439,4.3373,93.2143,7.6285,2.4477,1.1192,1.4261,30.4045,9.2952,16.145,73.7969,80.8055,0.734,1.0039,19.1919,0.471,89.065,85.0732,80.4721,90.7725,16.3685,2.7146 North East and North Cumbria ICB,A82055,Aspatria Medical Group,7437.250788,8.5616,77.8846,76.2626,5.2452,78.8043,77.4194,5.4584,95.2381,9.9878,3.3831,0.6681,1.3224,22.2377,10.5886,21.1087,72.1488,88,0.5402,0.8671,23.2817,0.4583,93.7631,79.9228,85.2174,93.913,13.3698,2.7719 North East and North Cumbria ICB,A82064,Westcroft House Surgery,6895.627558,8.8048,76.9231,77.8409,4.7852,75.7962,77.0992,5.4254,95.4546,7.8013,3.9259,0.8593,2.2745,21.9489,10.2752,20.0843,72.7848,85.2459,0.4381,0.674,13.328,0.4621,90.1743,87.9828,78.6517,88.764,13.6966,2.8644 North East and North Cumbria ICB,A82075,Mansion House Surgery,8334.097601,8.667,72.4638,81.3187,3.9826,77.7293,76.5152,4.3768,95.2381,2.5769,3.0175,0.6389,1.9119,28.8677,9.6059,16.8547,76.0355,89.3805,0.666,0.9243,22.7265,0.2569,92.321,86.413,90.0901,90.991,13.6541,2.3923 North East and North Cumbria ICB,A82617,Kirkoswald Surgery,2482.427022,8.157,83.1081,83.3333,6.1499,87.3016,82.3529,4.294,94.7368,4.7141,1.4556,0.6186,0.4801,14.2411,7.473,18.9956,66.7464,89.4231,0.3275,0.4731,18.2453,0.6601,90.6458,81.9672,81.25,96.875,6.7637,2.2198 North East and North Cumbria ICB,A82620,Glenridding Health Centre,725.7716727,5.2922,80.4878,75.8621,4.7363,82.6087,83.3333,3.6599,100,2.3399,1.3994,0.5382,0.6158,17.7706,4.8662,18.6222,60,81.579,0.3229,0.5382,13.3005,0.6452,90.5482,81.8182,85.7143,85.7143,11.0849,1.7223 North East and North Cumbria ICB,A82631,Court Thorn Surgery,3713.438199,7.493,81.1429,78.8136,5.3212,88.6598,91.3043,4.4074,85.7143,6.3,1.4512,0.9675,2.2706,14.8145,7.6972,20.8277,63.9683,80.6897,0.5375,0.8062,17.5568,0.8696,90.6716,81.7204,80.9524,97.619,7.2391,3.2787 North East and North Cumbria ICB,A82646,Longtown Medical Centre,4240.528659,8.1592,76.3006,75.7895,5.0027,80,79.1667,4.71,100,7.9713,3.5125,1.1442,2.2868,31.145,11.1147,20.8888,71.875,93.7931,0.5056,0.9846,24.9918,0.7218,93.2186,91.8367,80,95.3846,16.4938,2.7408 North East and North Cumbria ICB,A82654,Warwick Square Group Practice,8720.440429,7.0444,71.3768,71.875,4.39,72.9958,76.3975,4.5714,93.0233,5.6664,2.7325,0.8677,3.5613,24.9439,8.46,17.366,63.3238,80.6122,0.5828,1.2691,19.9114,0.1507,90.6001,81.2834,71.5789,88.4211,16.2109,2.3569 North East and North Cumbria ICB,A85001,Fell Tower Medical Centre,8416.839088,7.6966,75.9542,77.4194,4.0257,80.1688,80,3.4356,89.3939,3.1189,2.1243,0.577,1.6322,21.0108,6.7272,15.2242,70.5287,86.3971,0.6032,0.6557,13.6878,1.4016,84.7193,88,92.1053,97.3684,10.7132,2.2817 North East and North Cumbria ICB,A85002,Bensham Family Practice,5117.048751,6.1497,71.7241,73.3333,4.4852,71.6814,78.0822,4.1284,91.4286,6.4974,3.0836,0.3313,2.1457,33.3534,9.2239,19.7757,69.6721,87.3494,0.6626,0.8665,18.7972,1.0579,90.2737,91.1765,84.2105,94.7368,18.6651,2.4975 North East and North Cumbria ICB,A85004,Longrigg Medical Centre,12571.48013,9.139,72.9798,75.4647,4.3566,75.9146,75.2525,3.8469,89.5833,6.4493,3.7123,0.6636,3.7502,32.9287,10.232,22.3312,69.3867,78.8945,0.6251,0.9617,19.8495,1.8531,90.2673,84.2105,86.5772,93.2886,15.477,2.2024 North East and North Cumbria ICB,A85005,Oxford Tce & Rawling Rd Medical Group,23278.69572,7.1194,65.4902,65.8824,3.5782,70.3072,73.2394,3.6412,88.125,7.0468,3.1717,2.0038,2.0376,35.4845,8.8527,16.9978,65.2359,81.0065,0.8187,1.9065,18.6218,1.3985,88.4162,84.2767,80.8696,93.0435,20.4714,2.7251 North East and North Cumbria ICB,A85006,Glenpark Medical Centre,10747.3587,7.883,73.5974,74.7748,4.5247,75.8389,73.4375,3.4575,93.8272,8.0234,2.5347,0.6893,3.4211,25.5058,8.6276,18.4547,68.3258,80.2395,0.6559,0.8227,16.1417,1.5303,91.2249,85.3448,91.453,96.5812,13.7477,2.7237 North East and North Cumbria ICB,A85007,Fell Cottage Surgery,9729.333355,8.9202,79.3548,80.9091,4.8963,76.6187,75.6906,5.1658,94.5946,5.7,1.8742,1.1128,0.8571,20.759,6.6591,16.5046,63.7282,75.625,0.492,0.9137,13,0.8826,88.0597,77.4011,84.3373,86.747,7.7163,2.8113 North East and North Cumbria ICB,A85008,Birtley Medical Group,18322.67934,7.354,72.5632,74.5856,4.974,73.8661,75.6098,4.2403,90.9836,7.4672,3.0909,1.3442,1.3352,25.6241,9.0258,20.0974,65.7215,83.7432,0.7208,0.8442,18.724,1.9643,87.4526,87.0246,80.5556,96.7593,15.0402,3.0325 North East and North Cumbria ICB,A85009,Crowhall Medical Centre,8062.640768,8.7087,70.4225,74.4681,3.5535,73.7113,73.7705,3.6793,98.3607,6.4584,3.9937,1.2107,3.028,38.1433,9.4625,16.6352,61.639,81.9444,0.7076,1.0063,17.8612,1.1297,89.6839,83.0509,83.3333,91.6667,18.2024,2.2799 North East and North Cumbria ICB,A85010,Chainbridge Medical Partnership,12808.85949,7.8047,78.8945,76.6551,4.4241,78.1163,80.6034,3.6926,98.7952,6.6146,3.0052,1.0399,2.0278,21.4874,8.5855,19.7321,72.1754,83.6957,0.7139,0.9254,18.5209,1.397,86.829,88.8502,84.6154,95.1049,13.0325,2.6262 North East and North Cumbria ICB,A85011,St. Albans Medical Group,10134.15634,8.2287,72.7969,74.7126,4.3171,70.5645,70.5036,4.2372,92.7536,7.7968,3.571,1.8521,1.8947,40.6667,10.3915,20.08,55.5099,76.2887,0.533,1.4257,19.9866,1.8027,92.6771,82.9787,88.7931,93.1034,18.0998,3.1446 North East and North Cumbria ICB,A85013,Millennium Family Practice,5161.16175,7.4639,61.9403,67.5325,4.2729,62.5,69.2308,4.3228,94.8718,3.3275,4.1229,0.5247,2.3935,35.6601,9.4935,21.5892,69.6255,81.1189,0.5997,0.9495,20.9282,0.5205,89.581,93.4579,88.8889,96.8254,20.6791,2.024 North East and North Cumbria ICB,A85014,Crawcrook Medical Centre,21633.04395,7.3863,78.4423,74.8,4.3152,76.7123,75.7212,3.515,93.6782,7.5266,2.4055,0.9917,1.7406,14.5038,8.0484,17.6043,59.8237,76.825,0.486,0.8051,16.8957,1.4646,88.373,82.0619,79.7571,90.6883,10.6377,2.4546 North East and North Cumbria ICB,A85016,Wrekenton Medical Group,15098.27617,8.9374,72.4138,72.6619,3.7761,75.7426,72.973,3.4169,94.1606,5.3628,3.3333,0.9942,3.5121,36.3515,8.9749,17.9114,72.9775,85.1648,0.9023,1.2281,19.1903,1.9136,89.5567,91.0256,76.25,92.5,18.482,2.2891 North East and North Cumbria ICB,A85017,Bewick Road Surgery,8017.567733,5.1967,71.0345,73.4043,2.4115,61.3861,73.2394,2.2689,88.9655,1.7211,1.1669,0.7261,1.9339,33.7765,5.364,10.0998,64.1838,79.7297,0.6223,1.0372,13.5177,0.978,90.5651,86.1702,80,92.7273,9.3576,1.4262 North East and North Cumbria ICB,A85018,Oldwell Surgery,5556.735858,6.9209,75.7225,71.5517,4.1649,72.6619,70.4082,3.9756,97.6191,4.3613,3.8915,0.6311,1.6516,25.2756,8.7344,18.9314,73.1959,80.0905,0.5048,0.8835,11.9742,0.3294,86.3219,92.0354,82.2581,91.9355,16.2952,3.1973 North East and North Cumbria ICB,A85019,Central Gateshead Medical Group,13448.19922,6.8038,68.661,68.5106,3.769,60.7735,67.6923,3.469,86.2069,5.9051,3.2346,0.7782,2.2983,36.9041,8.751,14.1478,63.8516,78.0992,0.8157,1.1251,15.5877,1.0823,84.6703,88.4615,69.1781,88.3562,19.2035,2.7377 North East and North Cumbria ICB,A85020,Whickham Cottage Medical Centre,17682.13519,7.906,82.183,78.0105,5.3124,82.8442,80.9028,3.8792,97.3451,6.0748,1.8409,0.9746,1.2595,15.2735,7.7892,20.6828,64.9853,74.424,0.4714,0.7071,15.3598,1.5371,89.0394,85.09,85.9459,95.1351,8.1608,2.8855 North East and North Cumbria ICB,A85021,Second Street Surgery,4573.683282,3.937,61.9048,63.8889,1.8325,60.9929,73.3333,1.5981,82.2222,2.718,1.5768,0.2344,2.2821,35.5266,4.487,9.5248,63.4465,85.9375,0.4475,0.895,11.3846,1.7073,91.6923,90.566,84.8485,93.9394,12.7637,0.9376 North East and North Cumbria ICB,A85024,Chopwell Primary Healthcare Centre,3168.45313,7.3602,77.451,63.4921,3.7066,72.1519,76.7442,4.4869,100,9.324,3.4725,0.5462,2.3776,35.8962,10.2955,18.8451,75,83.5165,0.6633,1.1315,20.4196,0.7233,91.6264,80.6818,95.122,95.122,23.8228,2.4971 North East and North Cumbria ICB,A85026,Beacon View Medical Centre,6402.48127,7.1442,73.2143,75,3.819,77.0053,78.8462,3.4208,96.3636,7.6505,3.638,0.5068,2.105,33.0189,8.5976,15.2036,85.1852,94.9275,0.9593,1.3575,19.8959,0.9139,95.7143,89.313,89.0411,98.6301,17.9795,2.2805 North East and North Cumbria ICB,A85611,Pelaw Medical Practice,5761.44922,7.8269,76.1905,79.1045,3.7533,78.4946,76.6355,3.1587,98,4.1294,2.7128,0.6132,1.8812,24.0746,8.1319,16.9268,54.0365,73.4266,0.4274,0.8361,14.0858,0.7418,87.8175,91.4286,74.6269,92.5373,13.1511,2.4712 North East and North Cumbria ICB,A85614,The Bridges Medical Practice,9194.499642,6.0316,71.519,66.9725,2.8093,75.7962,78.8235,2.1907,91.0714,4.3299,2.1392,0.6959,3.5346,35.4365,6.2719,12.3196,70.9756,91.9118,0.567,1.018,16.0678,2.7027,92.337,95.7576,85.7143,100,16.065,1.7784 North East and North Cumbria ICB,A85616,Hollyhurst Medical Centre,5473.310537,7.9991,77.1574,74.0157,4.3497,78.626,74.4898,4.5819,89.4737,9.9516,3.8007,0.4645,1.1453,20.1272,10.6999,20.6715,58.7776,74.2857,0.7601,0.7813,16.9763,0.5699,88.7033,89.4444,84,92,13.301,2.6816 North East and North Cumbria ICB,A85617,Sunniside Surgery,4027.4954,9.0832,79.1667,73.3333,4.3042,82.7869,79.7468,3.248,97.7778,7.1571,2.2445,0.713,1.3981,16.0125,7.9329,18.4579,68.3566,81.8898,0.8714,0.6602,16.8442,2.5856,92.6693,84.0426,76.7442,93.0233,10.7677,2.6406 North East and North Cumbria ICB,A86003,Saville Medical Group,32546.50548,3.8603,66.8675,63.1579,1.6641,36.9412,71.6783,1.4311,93.5135,1.3803,1.0192,0.3695,1.6502,25.9656,3.1191,6.6518,62.5053,77.2443,0.3554,0.6967,7.1205,1.3598,78.3461,82.0707,68.0556,84.7222,13.3864,0.8568 North East and North Cumbria ICB,A86004,Prospect Medical Centre,15935.82088,5.0697,62.963,51.9608,2.0762,50.5725,62.9412,2.5151,85.4054,3.8056,1.7946,0.4847,0.4325,42.39,8.9457,10.427,70.8745,88.0866,0.6943,1.1331,11.9443,0.2617,85.5132,88.8525,83.5821,87.0647,17.222,1.6112 North East and North Cumbria ICB,A86006,Roseworth Surgery,5788.346253,8.4116,81.7778,80.5369,4.7347,85.1064,88.6792,3.486,93.8776,6.7469,1.5435,0.7631,0.6228,13.8801,7.2634,18.9039,85.7477,91.453,0.3989,0.5897,12.3936,0.6587,90.1598,87.5,93.5484,96.7742,6.732,1.9598 North East and North Cumbria ICB,A86008,Park Medical Group,12996.9928,6.3595,76.644,72.7891,3.6086,71.1828,75.9657,3.036,91.6667,5.9658,1.7327,0.5952,2.0837,22.2817,7.667,13.8768,66.7327,85.0153,0.8136,0.889,14.1389,0.3122,89.106,84.7619,80.4054,90.5405,11.3405,1.7101 North East and North Cumbria ICB,A86010,Biddlestone Health Group,9948.766273,7.0449,77.0833,72.6744,2.8604,70.2882,80.4348,2.209,92.4051,4.443,1.0384,0.557,1.6605,18.1802,5.938,12.8764,76.0812,89.6104,0.5286,0.9629,13.3737,1.1407,85.3673,88,79.3478,96.7391,15.339,1.3405 North East and North Cumbria ICB,A86011,Walker Medical Group,14868.19919,7.7671,67.033,62.5,2.9434,72.093,70,4.2195,90.2913,7.9554,4.1729,1.0153,1.3748,51.6544,11.1974,21.5164,76.7811,87.4652,1.5369,1.4531,23.725,0.4227,91.2304,90.0763,93.8547,97.2067,24.7659,2.7757 North East and North Cumbria ICB,A86012,West Road Medical Centre,11996.37207,5.6453,59.3607,59.6154,2.024,58.4906,73.913,2.4238,73.6111,3.7475,1.7741,0.8829,0.7296,40.0956,9.5679,11.2277,67.6311,84.7107,1.3577,0.9995,15.8744,0.9249,83.2673,87.4074,79.5181,89.759,22.4158,1.6992 North East and North Cumbria ICB,A86013,Denton Park Medical Group,9084.323168,8.5572,76.2646,73.3333,4.6362,77.7778,78.125,4.6909,96.1539,6.8067,2.9541,0.6701,0.8856,35.9657,10.5578,17.8884,66.7665,82.0261,0.8753,0.93,16.0618,0.568,91.1283,90.3226,84.9558,90.2655,17.6539,3.0635 North East and North Cumbria ICB,A86017,Cruddas Park Surgery,15023.05293,6.8557,65.5488,53.6232,3.5023,60.2151,66.4596,3.6519,86.4,5.2309,3.8103,1.3024,1.8494,49.0654,9.905,13.0852,63.748,80.7547,1.5312,1.8655,16.3274,0.2789,85.535,87.7841,77.2455,87.4251,25.4808,2.4287 North East and North Cumbria ICB,A86018,The Grove Medical Group,12674.55248,6.6461,81.0591,85.0153,5.3045,73.3333,80.8118,3.3701,90.566,6.2574,1.0805,0.8614,0.8782,11.3101,6.2144,14.7801,74.7716,85.9287,0.4685,0.7556,10.2644,2.3045,87.093,86.194,80.5085,94.0678,6.8202,2.3802 North East and North Cumbria ICB,A86020,The Surgery-Osborne Road,12785.61338,5.4888,77.2829,76.7025,3.3812,68.0412,80.0885,2.1314,96.7742,3.2486,0.8091,0.8876,1.0987,9.071,3.7244,10.5543,60.6482,84.9558,0.3562,1.0144,4.9305,0.9274,81.6709,82.1782,82.4176,92.3077,10.883,1.6906 North East and North Cumbria ICB,A86021,Holmside Medical Group,12034.0113,6.3418,74.6667,72.2222,3.832,71.8447,75.7764,3.9015,84.0708,7.3643,2.9981,0.9332,2.4801,37.9635,9.5464,16.5691,60.6156,74.6269,0.8935,1.102,16.9809,0.6457,88.9097,88.5246,74.4681,90.7801,17.5182,2.3925 North East and North Cumbria ICB,A86022,Parkway Medical Group,9087.898149,7.6241,81.4241,82.7751,4.525,77.6923,78.7879,3.909,95.5882,7.2365,2.0611,0.687,0.5533,20.7509,8.2267,18.2895,68.6809,83.1978,0.8647,0.6752,14.3564,0.1589,90.8073,85,82.1782,92.0792,11.4604,2.6771 North East and North Cumbria ICB,A86023,Benfield Park Medical Group,11745.47136,8.3815,73.7654,71.831,3.1127,77.7778,79.6178,3.4664,85.3933,5.1251,2.7994,0.859,0.7688,34.6208,8.2942,18.383,67.1215,74.2857,1.2532,0.9803,14.5577,0.8562,88.5304,82.5203,78.8618,87.8049,16.3743,2.1526 North East and North Cumbria ICB,A86024,Heaton Road Surgery,9176.266762,6.9566,66.8639,62.0968,2.4451,68.5065,70.3704,3.1287,81.25,4.1177,2.5634,0.8808,3.2432,39.5917,6.7423,13.7111,51.7442,81.4208,1.2489,1.3277,12.4324,0.8099,84.9359,85.6322,64.4737,88.1579,21.1008,2.0245 North East and North Cumbria ICB,A86025,Westerhope Medical Group,15547.1584,6.7075,69.9052,68.4746,3.4052,66.6667,72,3.2543,87.3626,4.3632,2.967,0.5172,1.1552,40.5089,9.7101,13.556,70.9385,80.9942,0.7687,1.0058,16.6889,0.2336,90.1699,87.8187,85.6383,92.0213,18.7967,2.069 North East and North Cumbria ICB,A86026,Throckley Primary Care Centre,8231.363522,7.8058,77.8243,76.8786,3.1691,80.0847,76.1538,4.4008,98.7654,4.2887,2.7678,1.3285,0.802,29.3357,9.1907,15.8594,53.9954,84.0741,0.9411,1.0794,20.7985,0.4407,87.9085,83.1579,87.3684,92.6316,14.4525,3.0307 North East and North Cumbria ICB,A86027,Newcastle Medical Centre,9982.507072,1.659,64.1509,60.5263,0.3831,25.1553,65.7895,0.1581,75.6757,0.2062,0.0671,0.0335,0.8396,23.1112,0.8816,1.25,78.2979,84.6154,0.0335,0.2874,3.0636,0.7321,82.5414,85.7143,68,84,11.4652,0.1197 North East and North Cumbria ICB,A86028,Regent Medical Centre,7265.518997,6.3068,71.9149,76.4286,3.11,66.6667,75,2.8564,94.9367,3.7805,1.1612,0.654,0.3648,18.2742,8.5986,15.1895,61.0459,77.6119,0.6273,0.8943,12.386,0.3837,84.8114,84.6154,68.0412,88.6598,11.7936,1.7752 North East and North Cumbria ICB,A86029,Thornfield Medical Group,23071.78558,5.2945,63.9908,67.7419,2.5654,56.4014,70.9821,2.3594,90.0901,3.8165,2.7567,0.3973,2.8581,38.5452,6.9206,11.8458,70.3723,86.5639,0.8976,1.4274,12.612,0.898,88.1628,91.8982,80.6167,88.5463,19.2418,1.6334 North East and North Cumbria ICB,A86030,Betts Avenue Medical Group,12615.84219,8.28,67.8571,61.4035,2.804,73.0871,70.6806,3.6388,92.5,3.7504,3.4846,1.1615,0.3302,40.503,10.2091,13.8203,77.4168,82.7586,1.2886,1.0345,20.1557,0.1053,90.6383,85.159,86.4198,95.679,21.1209,2.1597 North East and North Cumbria ICB,A86031,Fenham Hall Surgery,10615.78971,6.8251,66.2602,56.1497,3.0142,62.9921,72.6115,2.5988,90.5983,5.4849,2.1544,0.57,1.5526,34.6004,8.9409,12.5302,68.2746,82.6484,0.6183,0.8212,15.7165,0.596,85.1832,88.3333,74.8148,88.8889,17.0709,1.71 North East and North Cumbria ICB,A86033,Brunton Park,5498.268631,5.7228,82.1656,78.8136,3.2667,82.243,85.0467,1.5245,94.6154,4.3212,0.4099,0.6021,2.0706,9.3274,5.1364,10.5688,63.4646,85.7895,0.3075,0.2947,9.3446,2.0564,88.1784,80.7339,83.0189,88.6792,4.2979,1.4092 North East and North Cumbria ICB,A86037,Elswick Family Practice,8912.016366,5.9304,56.2092,45.8333,1.414,59.1667,67.0455,2.535,86.6667,3.5093,2.8535,0.7261,1.6247,51.8075,10.399,11.8599,72.9167,85.2174,1.2484,1.2102,12.9001,0.5879,86.5614,93.75,82.4,92.8,24.2369,1.6306 North East and North Cumbria ICB,A86038,Newburn Surgery,7144.433309,8.1233,71.6346,73.9437,3.8245,73.5294,69.6429,3.4603,96.2963,6.2944,3.2947,1.0596,1.1168,32.0138,9.8417,16.7384,71.9899,86.036,1.1424,1.3245,18.6396,1.461,88.9523,86.2069,73.3333,94.4444,17.6088,2.7318 North East and North Cumbria ICB,A86040,St. Anthony's Health Centre,9232.759304,8.6207,60,52.4194,3.2839,61.4754,62.2642,3.3293,84.8837,5.3976,4.4794,1.1501,2.0602,58.8488,10.5178,14.1495,80.9002,91.1504,1.4679,1.362,21.6729,0.8176,88.601,91.3295,84.5361,94.8454,30.201,2.1186 North East and North Cumbria ICB,A86601,Denton Turret Medical Centre,10155.93551,7.2676,76.4516,78.2609,4.136,70.2797,77.8443,3.3779,87.9121,8.4527,2.4526,0.6243,0.6812,31.7798,9.8945,16.3434,59.4894,77.6632,1.0479,0.7804,20.3531,0.5511,89.7703,86.7159,78.125,89.0625,16.465,2.2297 North East and North Cumbria ICB,Y00184,Dilston Medical Centre,7029.694238,3.6138,37.6471,45.7143,0.8526,53.9634,75.7143,1.2842,90.7407,1.6222,0.5684,0.1579,0.2937,39.8434,7.5223,6.5684,74.8252,92.3077,0.5474,0.7579,8.4324,0.7426,89.411,96.9925,93.4579,97.1963,17.4281,0.6316 North East and North Cumbria ICB,A81001,The Densham Surgery,4908.808509,8.6874,70.8955,68.2353,3.8551,69.0909,72.973,3.778,91.6667,5.1936,2.5443,0.5911,1.7419,32.3609,9.6764,16.6281,74.3271,91.4634,0.8224,1.0537,16.6452,0.3681,94.757,95.6044,91.2281,92.9825,14.1187,2.4415 North East and North Cumbria ICB,A81002,Queens Park Medical Centre,23312.10917,7.7407,72.6531,74.5342,4.075,73.4545,75.9563,4.6279,87.5706,5.6351,3.4038,1.0738,1.4451,31.922,8.6829,18.8554,76.6463,84.5839,0.6389,0.9718,18.1194,1.2585,89.3071,89.3843,87.2428,88.8889,16.0021,2.7166 North East and North Cumbria ICB,A81004,Acklam Medical Centre,11853.69154,6.4445,75,78.6026,3.9437,77.6204,82.4561,3.4363,90.625,4.7902,2.4036,0.9704,0.7292,28.024,7.884,15.8462,75.9745,84.2818,0.7923,0.6054,19.0823,0.9693,91.5658,85.7143,90.9774,96.2406,11.6139,2.1633 North East and North Cumbria ICB,A81005,Springwood Surgery,9121.056916,6.8435,80,85.6459,5.6762,76.7327,77.7778,4.1651,92.5373,2.2331,2.4635,1.3206,0.933,15.3982,8.6171,19.9238,72.7117,86,0.673,1.0286,14.6069,1.0837,83.755,91.3907,92,98,8.2754,3.0349 North East and North Cumbria ICB,A81006,Tennant Street Medical Practice,17991.66772,8.072,70.428,70.1754,3.5536,72.8665,70.4545,4.4056,90.2778,3.6972,4.3364,1.2053,1.1712,35.6124,9.7521,18.1491,72.8519,86.5741,0.9282,0.9213,17.21,1.1728,88.4922,90.1515,84.0376,91.5493,18.2155,2.6323 North East and North Cumbria ICB,A81007,Bankhouse Surgery,12354.38364,7.5505,71.5909,72.1774,4.0703,69.1318,75.5208,4.1679,83.6957,4.6925,3.8555,0.8785,1.507,34.4445,8.7355,17.4427,63.331,83.7989,0.7614,0.9468,14.445,0.1222,89.8541,87.4477,66.4063,78.125,18.3514,2.6159 North East and North Cumbria ICB,A81009,Village Medical Centre,9666.508657,7.1913,70.2055,70.8134,2.9209,65.019,74.375,3.3009,89.3333,2.7426,2.446,0.7955,0.5068,35.8658,9.3061,14.5571,72.5275,87.5556,1.4723,1.4961,19.1832,2.1826,85.9002,85.641,91.3043,96.5217,16.3991,2.0423 North East and North Cumbria ICB,A81011,Chadwick Practice,14935.86305,8.1869,70,74.1611,4.1256,73.2955,73.2143,5.1034,97.1963,5.9768,4.0312,1.1322,2.5205,36.3089,9.6574,20.0275,82.7076,94.5946,0.9778,1.1751,16.4628,0.059,91.5194,88.1356,79.8817,91.1243,16.8713,2.6332 North East and North Cumbria ICB,A81012,Westbourne Medical Centre,7151.148581,6.9469,63.0573,60.177,2.1273,60.1064,67.7778,2.9273,75.3846,2.7671,4.4364,0.6364,2.3821,52.647,9.8465,15.5273,68.5792,80.3279,0.6546,1.1091,18.744,0.3448,84.4575,95.3846,68.5714,88.5714,24.9642,1.7455 North East and North Cumbria ICB,A81013,Brotton Surgery,8328.813946,8.277,73.7037,63.0208,4.0179,74.0741,71.1538,3.6391,88.0597,4.0823,3.2197,0.6764,2.6316,29.7228,10.0315,22.9302,72.6375,87.3646,0.8793,1.0146,13.8833,0.6811,91.5911,87.766,86.9565,93.0435,16.3591,2.1239 North East and North Cumbria ICB,A81014,Queenstree Practice,4982.055884,9.6253,70.9302,77.5701,3.7859,75.8333,70.8333,5.1604,97.6191,6.1457,4.3405,0.8199,1.4925,23.2413,9.7886,21.0514,82.9123,89.5,0.627,1.2539,20.3395,0.1033,94.1397,83.7838,86.6667,96.6667,11.0541,2.9178 North East and North Cumbria ICB,A81016,Park Surgery,13943.42239,6.8216,66.4207,66.1202,2.6766,58.4507,69.5035,2.4866,71.0744,2.3697,1.7348,0.5039,2.0373,44.4892,7.2668,10.9129,75.8528,91.3044,0.6444,0.9748,13.4463,1.1075,86.3624,91.0377,74.2188,92.1875,16.6206,1.3631 North East and North Cumbria ICB,A81017,Woodbridge Practice,17513.70703,6.4364,71.4044,76,3.6716,73.7733,74.8634,3.2625,91.018,2.6183,1.6797,0.646,1.0473,18.9506,7.1873,14.9717,67.1558,89.4397,0.3392,0.5491,14.7041,0.2389,84.9113,87.3754,82.2335,91.3706,11.2553,1.9166 North East and North Cumbria ICB,A81018,Bentley Medical Practice,12748.97822,8.3074,69.9208,72.6891,5.3231,73.3788,71.6667,4.1053,90.8163,6.3668,4.5276,0.8839,1.6962,31.6522,10.7571,20.5755,72.1631,86.1042,0.992,1.4241,19.3461,2.7721,87.6876,87.6191,90.4192,95.8084,16.6804,2.8776 North East and North Cumbria ICB,A81019,Crossfell Health Centre,12071.76761,7.6095,63.9456,68.2464,2.3967,65.493,65.4545,3.4606,93.2584,2.1357,3.6286,0.84,1.2288,51.036,9.6344,15.9032,64.0386,85.8757,0.728,1.0416,18.9146,0.528,90.8272,90.7104,78.7402,87.4016,21.5382,1.7247 North East and North Cumbria ICB,A81020,Martonside Medical Centre,9595.178256,7.3308,72.9323,71.8391,2.8289,62.0155,73.2283,3.968,87.9121,3.9653,2.516,1.064,1.6857,32.5908,9.1584,16.9859,66.0232,80.6854,0.6759,0.7886,14.4807,0.8003,83.9639,87.3096,78.7037,91.6667,14.9135,2.1154 North East and North Cumbria ICB,A81021,Normanby Medical Centre,28230.57168,7.5808,73.3506,68.7956,4.4766,71.6738,74.2243,4.0888,88.3534,4.5004,3.4544,0.8724,2.1327,36.747,9.7831,17.329,75.0319,81.5231,0.8988,0.9341,17.8337,0.7855,87.2016,88.746,80.6061,93.9394,25.5044,2.3705 North East and North Cumbria ICB,A81022,Hillside Practice,11068.0381,8.132,72.9443,66.1224,3.8061,73.4848,74.4898,4.3696,97.5904,2.6995,3.5828,0.6911,1.7084,28.1047,9.4804,21.4331,73.7852,83.6676,0.8824,0.8931,15.6886,0.594,90.2574,90.6667,87.3134,94.0299,13.7838,2.5728 North East and North Cumbria ICB,A81023,The Endeavour Practice,11488.01025,4.9435,64.7059,64.5833,1.9677,46.594,64.9123,2.4839,78.8462,1.9838,2.4409,0.4731,2.3565,46.7263,6.2952,10.3333,67.3147,79.7101,0.7312,1.0968,12.8478,0.5999,88.1678,86.2319,60.7143,90.4762,15.423,1.3226 North East and North Cumbria ICB,A81025,The Dovecot Surgery,5668.848879,6.7286,69.8529,65.9091,3.8199,71.7391,72.4638,4.2207,90.9091,3.7092,3.5133,0.9903,0.8605,34.5468,8.1287,15.9632,70.8812,93.5484,0.6131,1.1318,13.8279,0.4287,90.6066,88.764,86.7925,83.0189,15.8187,2.3108 North East and North Cumbria ICB,A81026,Linthorpe Surgery,24656.55879,6.7003,65.3266,67.9389,2.338,54.612,62.0339,3.6878,71.6846,4.3069,3.3214,0.6653,1.5563,43.0419,8.7022,14.1246,59.4978,76.5727,0.781,0.8581,14.2104,2.109,82.379,87.1401,68.7259,89.9614,20.8153,1.9909 North East and North Cumbria ICB,A81027,Yarm Medical Practice,13529.62505,6.4737,79.8599,79.726,4.6548,76.0532,78.2007,3.4023,95.122,2.8456,1.2457,0.8975,0.7506,8.4983,5.6414,16.0873,60.1528,77.7193,0.1808,0.6162,10.9287,0.5708,81.6879,81.4634,79.6748,85.3659,7.1774,2.4312 North East and North Cumbria ICB,A81029,Prospect Surgery,8966.780255,4.5825,63.6364,62.6263,2.209,55.5102,71.4286,2.6426,86.8132,4.2126,2.6968,0.6234,0.652,48.7181,6.9741,11.9257,67.7763,83.7209,0.6369,0.8944,13.8415,0.5217,90.4361,92.0863,76.25,91.25,18.9871,1.5585 North East and North Cumbria ICB,A81030,Borough Road & Nunthorpe Medical Group,18343.80744,7.6127,74.1551,77.2861,1.5707,69.5906,73.2824,3.2903,88.961,4.0841,2.3094,0.9126,1.5957,29.2137,7.948,16.6936,61.5712,82.8125,0.4594,0.8691,12.6392,2.2889,90.9052,87.4286,80.1047,89.0052,11.9807,2.1045 North East and North Cumbria ICB,A81031,Havelock Grange Practice,17106.83147,8.3275,68.1716,68.4713,3.4845,67.6404,68.0851,3.9771,90.7285,4.8765,3.264,0.9924,0.7086,37.3703,8.1854,17.3418,70.2356,88.7984,0.9483,1.1395,19.7762,0.1339,87.5104,87.0432,72.4551,95.2096,21.0406,2.2054 North East and North Cumbria ICB,A81032,The Garth,13028.71042,8.3767,76.1905,81.1881,4.2961,79.4872,76.4192,4.2343,97.1698,2.3435,2.9817,1.3409,2.2044,18.8741,8.4671,17.7929,64.388,82.1206,0.5381,1.0762,14.1573,0.7519,88.6911,82.7206,79.8611,92.3611,11.4595,2.6023 North East and North Cumbria ICB,A81034,Thornaby & Barwick Medical Group,21152.47627,7.839,74.4882,79.4055,3.4635,75.3623,75.7732,3.1697,94.1463,5.0811,2.17,0.976,1.9424,21.204,7.6932,16.1234,73.6517,86.7886,0.5875,0.7107,10.1437,0.5475,89.378,88.6878,72.807,89.0351,12.1843,2.2885 North East and North Cumbria ICB,A81035,Newlands Medical Centre,13024.53568,6.476,63.9871,65.5,3.3815,52.6144,65.8228,3.4317,77.381,4.2761,2.9902,0.5619,0.8755,45.5057,8.4551,14.2083,74.7019,85.5372,0.9833,1.0636,16.7618,0.8921,84.5565,86.6953,70.0787,87.4016,18.0897,2.3079 North East and North Cumbria ICB,A81036,Norton Medical Centre,19886.04792,8.5763,71.6028,66.5803,4.1607,77.7143,77.027,4.0529,91.195,6.474,2.7957,1.2392,1.3099,28.149,8.5621,19.8156,59.1976,81.2874,0.6106,1.2512,17.7958,0.4226,90.3981,87.7069,75.3555,92.891,14.2807,2.694 North East and North Cumbria ICB,A81037,The Erimus Practice,8874.918464,5.8656,56.9767,58.6777,2.7317,51.8672,68.2243,2.7746,76.9231,1.7032,3.8044,0.6579,1.2339,47.2019,8.8059,13.0435,74.2561,83.4532,0.8295,0.9439,9.576,0.8399,90.2586,95.4199,85.8586,93.9394,14.2024,1.4874 North East and North Cumbria ICB,A81038,Hirsel Medical Centre,4807.512415,5.5508,48.913,47.619,2.2053,50,48.9796,3.0192,57.1429,1.554,2.8091,1.3914,0.1807,48.8497,11.7731,10.9478,60.745,66.1765,1.3652,1.1026,12.8298,0.3721,85.5748,82.2222,74.6032,77.7778,18.3175,1.8378 North East and North Cumbria ICB,A81039,Eaglescliffe Medical Practice,10677.90449,8.3694,76.7386,77.7778,4.0922,79.5396,79.0393,3.2272,96.3964,3.6362,1.4722,0.7902,1.5584,9.8109,6.5347,14.963,77.4373,86.7769,0.7153,0.6571,12.2018,0.8525,87.6899,88,88.0734,90.8257,8.8115,2.3039 North East and North Cumbria ICB,A81040,Marsh House Medical Practice,9698.37578,7.4592,72.1068,70.6422,4.6368,77.3946,74.5223,4.3097,94.1177,7.0538,2.6279,0.9694,1.1439,24.1577,8.4381,16.7718,64.881,79.6154,0.5256,0.7942,17.0406,1.4605,87.6516,83.0986,69.7248,83.4862,13.2682,2.441 North East and North Cumbria ICB,A81041,Hart Medical Practice,11493.23057,5.938,68.8776,65.873,4.352,76.5568,69.9454,4.4051,92.4051,5.7548,3.2375,0.9872,0.4861,35.6725,9.2915,18.809,81.6998,90.4153,0.6263,1.0296,22.8091,0.2947,92.2941,93.3921,79.6992,92.4812,17.8134,2.4095 North East and North Cumbria ICB,A81042,South Grange Medical Group Practice,18700.22386,7.5438,66.9291,64.2651,3.3132,75.9494,73.5849,3.3398,85.2273,4.4873,4.1764,0.6507,2.2394,44.4887,10.6015,16.2937,68.0433,84.7619,0.8167,1.2151,13.9339,1.6316,90.7985,89.1892,78.4483,93.1034,22.6512,1.9189 North East and North Cumbria ICB,A81044,Mckenzie House Surgery,22983.30642,7.3615,68.4438,65.8747,3.5274,70.2936,69.0141,3.8923,91.8367,5.1877,3.4587,1.2269,0.4258,34.8839,8.5615,17.2775,72.0091,86.4353,0.7774,1.0101,18.2813,0.6378,87.5575,88.9401,85.4167,91.25,17.1653,2.1524 North East and North Cumbria ICB,A81045,The Coatham Road Surgery,7500.655943,7.9307,67.1296,75.3425,4.0349,77.7778,78.4483,4.2984,92.5926,6.0508,3.6232,1.4328,2.7834,30.3385,9.9901,17.3748,77.0983,87.7828,0.8564,0.9717,16.4986,3.3296,90.7314,87.0588,88.0435,95.6522,17.3964,2.5856 North East and North Cumbria ICB,A81046,Woodlands Family Medical Centre,14899.31183,6.792,69.3735,64.9306,2.7723,62.9921,66.0377,3.7019,77.5,2.0957,2.6256,0.9866,1.0427,31.4699,8.5106,16.7237,55.4924,73.0193,0.5382,0.9948,10.0797,0.2767,87.8676,86.0377,76.9231,88.4615,15.1713,2.4217 North East and North Cumbria ICB,A81048,Zetland Medical Practice,8728.814986,6.9564,75.945,76.5957,5.2752,75.8824,74.1497,4.9893,90.4762,8.1021,2.8878,1.7727,1.7362,17.1087,9.9412,23.96,76.4657,87.3118,0.5004,0.7148,16.1021,4.0265,90.5624,85.9504,65.4206,93.4579,9.465,3.4453 North East and North Cumbria ICB,A81049,Kings Medical Centre,8321.806923,5.5983,63.4021,66.8966,2.4461,78.7037,79.8246,3.8068,88.8889,5.112,4.2043,0.6115,2.22,51.9003,10.3338,15.4716,80.3298,95.092,0.6727,0.9784,18.4929,0.6206,91.4308,92,91,96,20.8768,1.5441 North East and North Cumbria ICB,A81051,Cambridge Medical Group,7848.286754,7.6373,70.1245,74.3902,3.3589,65.368,72.3077,2.838,68.6047,2.6882,2.8791,0.5484,1.5609,28.4189,8.7254,13.6414,73.4069,82.1229,0.617,0.7678,14.3947,0.5138,87.1737,91.9463,70.5263,89.4737,13.5573,1.8234 North East and North Cumbria ICB,A81052,The Green House Surgery,12107.67668,9.0957,74.2105,79.6935,4.1272,74.1722,73.1707,3.6886,93.75,6.7403,3.3197,1.1066,1.5516,29.4224,10.2316,19.2703,62.1302,76.9418,1.1365,0.8773,18.3466,3.1879,89.9615,81.3505,69.9346,94.7712,14.2788,2.4624 North East and North Cumbria ICB,A81053,Woodside Surgery,7616.512026,7.4022,71.1207,62.9371,3.8159,69.8113,73.3945,4.2176,79.5918,4.9719,4.1841,0.7866,2.9956,36.8823,10.0246,22.8117,69.7077,84.188,1.2552,1.6736,22.6337,0.9484,90.9153,87.2093,82.4176,92.3077,21.3492,2.3431 North East and North Cumbria ICB,A81054,The Saltscar Surgery,10237.26762,8.5676,74.3034,76.652,4.5708,78.0769,78.0347,3.7916,96.0526,5.6733,4.187,0.9886,1.7062,30.2661,9.9452,19.4231,61.3957,82.9721,1.2794,1.0235,20.9157,3.7285,91.4909,81.2,90.625,93.75,15.7204,2.5936 North East and North Cumbria ICB,A81056,Melrose Surgery,2902.87395,5.4865,74.5614,77.6316,3.4988,78.4615,82.7586,3.4581,95.2381,4.4577,3.2954,0.3661,0.4953,24.1717,7.6848,22.0505,80.5755,88.8,0.8137,0.5289,19.5641,0.2492,91.9044,95.4546,96.2963,100,10.8509,2.8478 North East and North Cumbria ICB,A81057,Kingsway Medical Centre,10983.35564,8.423,69.9422,73.4615,3.4024,78.7097,76.7196,3.9678,94.4444,4.7967,3.0151,1.005,1.6211,26.198,9.0279,16.9807,68.6115,81.3433,0.6491,1.005,16.7685,1.3151,91.5929,87.2881,86.4,89.6,14.9321,2.4812 North East and North Cumbria ICB,A81058,Coulby Medical Practice,10500.16517,6.6322,73.0408,69.7368,4.0716,76.9759,76.1905,3.9109,94.6237,6.1575,2.7751,1.0822,2.7812,29.3067,8.4218,16.4149,68.9683,80.3987,0.8572,1.0822,14.6396,1.8216,91.3227,81.6327,82.3009,93.8053,12.5562,2.9358 North East and North Cumbria ICB,A81060,The Koh Practice,7186.485009,7.1847,73.2218,73.125,3.7037,74.0331,71.0744,3.9474,82,2.9168,2.7128,0.731,1.4179,33.1285,8.7877,17.5764,78.3092,83.0601,1.332,0.9747,18.8779,1.1994,90.3441,89.6,71.6049,93.8272,15.3999,2.989 North East and North Cumbria ICB,A81063,The Headland Medical Centre,6533.56868,8.1473,64.2105,56.5217,3.1429,78.2051,73.9583,4.2152,88.8889,2.5659,3.1984,0.795,0.0933,37.6292,9.3284,18.6541,78.0516,87.2612,0.795,0.9059,19.011,0.2276,89.0075,87.4016,82.4324,94.5946,18.8716,2.2925 North East and North Cumbria ICB,A81064,The Discovery Practice,10258.63365,4.7636,66.6667,69.5652,2.0582,51.7964,74.7253,1.6779,79.1209,1.3293,2.3826,0.5928,0.2354,46.1154,5.6684,6.8456,65.0099,80.7339,0.4698,0.7494,9.4018,0.6575,91.2568,90.8163,86.8421,93.4211,18.4352,0.962 North East and North Cumbria ICB,A81065,The Eston Surgery,4752.731318,6.8878,66.9421,53.4884,2.08,68.254,69.697,3.3965,93.0233,4.7403,4.7393,0.4476,1.4639,49.1623,10.68,15.9558,87.8505,85.9155,1.0269,0.9742,20.251,0.6061,87.8989,93.5185,91.6667,95,24.6753,1.7378 North East and North Cumbria ICB,A81066,Park Lane Surgery,5174.667728,7.9782,75.9259,74.4966,4.395,78.8462,77.5862,3.4817,86.5385,5.2853,1.3889,0.4757,2.0112,16.0814,6.6068,17.3136,78.8158,94,0.6279,0.5708,16.2769,0.5343,88.3942,89.899,79.2453,94.3396,8.2179,1.7123 North East and North Cumbria ICB,A81067,Alma Medical Centre,13364.99883,8.0871,64.9231,61.7117,1.9936,74.0525,71.0059,2.9501,95.8333,3.1811,4.4431,0.599,1.4883,40.5103,8.161,13.6957,79.3615,88.1081,1.037,0.9655,12.4063,0.1712,90.9357,90.0453,62.1212,94.697,19.1065,2.3065 North East and North Cumbria ICB,A81070,Mckenzie Group Practice,7254.312531,6.5265,70.9877,66.6667,2.6967,73.0233,75.4902,2.7598,100,2.8004,2.8071,0.4731,0.5016,31.3171,6.6067,13.736,72.8022,87.4126,0.4889,1.1355,16.4263,0.2853,86.8348,86.6667,81.3559,91.5254,17.6425,1.5455 North East and North Cumbria ICB,A81602,Dr Rasool,2680.334804,7.5786,78.7234,83.6066,4.6841,75.9259,78.7234,4.9492,100,1.9823,3.2258,0.928,0.5738,21.7279,9.4281,25.5855,68.6957,89.0756,1.1489,0.3977,20.0313,0.0849,90.1082,87.037,75.7576,90.9091,11.8173,3.0049 North East and North Cumbria ICB,A81608,Elm Tree Surgery,12514.38728,6.3776,66.9725,59.0062,1.9523,65.2968,76.1538,2.2374,85.9649,3.0245,2.7125,0.7516,2.218,38.9923,7.4168,16.3614,70.1096,85.0932,0.6565,0.7688,25.0028,0.5666,97.7912,90.4255,82.1138,96.748,24.7851,1.4858 North East and North Cumbria ICB,A81610,The Roseberry Practice,8496.593225,7.8568,73.8182,78.4211,3.466,77.9468,77.6316,3.6537,95.946,4.3847,2.2523,0.6256,2.7524,23.3313,8.3163,14.8273,77.131,90.583,0.5756,0.8634,18.3869,0.3239,89.1004,82.6816,72.6316,94.7368,14.604,2.3023 North East and North Cumbria ICB,A81611,Parkway Medical Centre,9263.410415,6.5233,75.4098,65.8416,4.051,76.4901,73.5849,3.4078,93.6842,3.8234,2.6631,1.1961,2.3085,28.8155,8.7989,17.2083,71.8174,85.8696,0.6883,0.7335,18.1792,1.9965,85.7827,87.7828,84.1121,92.5234,13.9297,2.2117 North East and North Cumbria ICB,A81612,The Patel Practice,4271.450177,6.5982,73.125,63.9175,4.2434,79.3388,77.7778,4.9847,93.5484,4.521,2.1472,1.3292,1.2646,23.4124,8.958,20.8845,79.1356,90.411,0.3579,0.7669,18.5267,0.3446,92.3472,91.3462,82.3529,94.1176,11.0317,2.5818 North East and North Cumbria ICB,A81618,Huntcliff Surgery,12526.38933,7.0217,75.4505,76.1092,4.7427,78.2443,78.7611,4.0357,90.9091,6.3571,2.7985,1.5024,1.4938,20.8952,9.0982,21.4847,76.7372,81.8011,0.707,1.2962,11.3479,2.1719,90.111,80.5556,87.7698,92.8058,9.4455,2.7494 North East and North Cumbria ICB,A81621,Thorntree Surgery,3575.172546,9.0655,50.8475,48.7805,2.3688,59.596,62.1622,2.7697,86.1111,2.4612,3.9723,1.0933,5.0294,67.4074,9.357,10.0948,77.2358,90.3226,1.0569,1.7128,15.3023,1.4063,89.9746,93.5484,63.6364,90.9091,34.6653,2.1502 North East and North Cumbria ICB,A81622,Gladstone House Surgery,7009.774919,7.9778,67.6471,63.1148,2.8191,69.8925,68.3168,3.4171,83.7838,3.1905,3.212,0.9909,0.4016,40.3952,7.9149,15.223,77.4282,87.5,0.9739,0.9055,13.8777,0.5236,91.2771,86.4865,83.3333,89.3939,20.9317,1.999 North East and North Cumbria ICB,A81629,Riverside Medical Practice,8255.397408,8.7053,66.3212,65.6489,2.923,68.0769,73,3.584,85.0575,3.0446,3.4078,0.5729,3.593,38.5198,8.7272,15.3202,69.2308,78.0822,0.8813,1.0723,11.7814,1.0295,88.8722,92.9487,75.2809,84.2697,19.313,2.1005 North East and North Cumbria ICB,A81631,West View Millenium Surgery A,8696.212352,9.6659,74.2537,71.9577,3.5584,83.7004,82.3129,4.1515,93.5484,5.3426,3.5719,0.9166,1.3399,35.4826,8.9967,21.4315,73.913,87.8906,0.647,0.6874,23.2191,0.7072,91.7386,89.785,85,98,16.1182,2.4397 North East and North Cumbria ICB,A81634,The Arrival Practice,2797.828225,3.0705,59.0909,47.3684,1.1272,70.0787,75,0.7407,91.1111,0.4973,0.7085,0.0966,3.2739,59.1518,3.9967,4.6377,66.9118,87.5,0.6441,0.773,10.8578,0.6006,88.8224,83.3333,61.1111,88.8889,19.5634,0.5153 North East and North Cumbria ICB,A83005,Whinfield Medical Practice,13532.2516,7.6411,76.7033,75.817,4.233,78.1671,77.6824,3.6967,98.4615,4.5576,2.8055,1.0067,1.1934,25.9584,9.8193,18.6979,73.5839,84.8837,0.8912,1.2707,22.6543,0.475,91.3723,87.2464,85.2459,95.6284,15.4084,2.3929 North East and North Cumbria ICB,A83006,Orchard Court Surgery,9061.238828,7.9678,74.2857,75.3927,3.8328,78.157,81.3665,3.3566,96.1039,5.9355,2.8804,0.7317,1.7209,26.401,9.8748,18.1417,75.6672,88.1944,0.7317,0.7782,17.9087,1.145,91.6645,86.166,79.2,94.4,14.8048,2.5087 North East and North Cumbria ICB,A83010,Moorlands Surgery,14935.34421,7.149,74.9499,73.9003,4.7726,76.6404,79.1045,3.7221,91.25,4.0058,2.6415,0.8255,1.2018,22.6927,8.573,21.1767,79.6563,89.6861,0.6304,1.0881,18.5361,0.4206,90.5777,85.7616,76.9663,97.191,13.2229,2.2963 North East and North Cumbria ICB,A83013,Neasham Road Surgery,14879.55915,7.1774,68.5039,66.0377,2.3575,70.9812,73.8916,2.6729,84.9057,2.8544,2.8155,0.9385,0.6796,34.0325,8.7937,15.0237,70.7647,84.0532,0.6457,1.0286,15.3981,0.2708,89.9826,81.9853,79.2683,92.0732,21.1094,1.7569 North East and North Cumbria ICB,A83031,Carmel Medical Practice,11826.69625,7.2537,77.6805,81.2709,4.0372,78.5714,79.5652,3.8545,93.4066,4.9127,1.8881,1.0963,1.6199,17.3615,7.7743,18.3938,78.1073,87.7127,0.6352,0.8614,11.837,1.1182,91.458,83.5878,78.5185,91.8519,9.1834,2.7756 North East and North Cumbria ICB,A83034,Blacketts Medical Practice,11660.92677,7.1222,73.4513,74.2489,4.129,71.0383,79.3478,3.0177,88.0734,4.7195,1.9245,0.5511,1.7369,25.6614,8.1663,14.953,77.7604,84.9206,0.7409,1.2649,16.0782,0.9001,88.2676,85.0622,75,92.4242,14.8035,2.0148 North East and North Cumbria ICB,A83040,Clifton Court Medical Practice,14306.66798,7.881,67.1835,65.9176,3.5049,72.7711,76.9608,3.1373,84.5529,4.4401,2.9657,0.8905,1.9088,33.8198,9.2747,14.5098,76.0885,85.7143,1.3235,1.2582,21.0575,1.6173,90.958,84.8993,92.4419,97.093,21.2969,2.2794 North East and North Cumbria ICB,A83047,Denmark Street Surgery,16783.49824,7.2935,70.7627,64.7239,3.6214,69.7531,72.0472,3.2131,86.5854,4.2935,2.5705,0.8568,2.2259,30.0276,8.9924,18.609,60.1852,81.4453,0.7229,1.0509,17.0488,0.6266,89.3575,90.3226,77.7228,92.0792,18.2103,2.1554 North East and North Cumbria ICB,A83048,Rockliffe Court Surgery,5693.140134,7.8796,79.9197,81.7647,4.9717,83.3333,83.8462,3.3198,100,4.1486,1.3441,0.7126,0.5531,11.6868,7.2219,19.3846,81.5678,95.6522,0.6316,0.5668,14.3027,0.5654,93.7354,80.8696,94.2029,98.5507,7.2308,2.2996 North East and North Cumbria ICB,A83070,St George's Medical Practice,5654.59961,6.3892,80.7531,82.5806,5.9008,82.3899,80.1653,4.195,93.75,5.2156,2.0714,1.6536,0.5889,10.9234,8.2935,21.6188,79.6859,88.5017,0.5048,0.4526,15.5205,1.3923,94.9489,91.6129,90.411,94.5205,7.8467,3.0461 North East and North Cumbria ICB,A83641,Parkgate Surgery,5332.199307,6.5876,60,58.5366,2.6338,64.881,68.6567,2.9863,88.6364,2.8721,2.9241,0.8503,1.8538,38.1031,8.3526,14.6827,75,89.2857,0.8295,1.348,18.6162,1.2133,88.2322,81.5534,81.6667,93.3333,28.129,1.8872 North East and North Cumbria ICB,Y00286,The Ravenscar Surgery,3743.684967,7.7922,71.3043,71.9512,3.4905,66.055,70.7692,3.1921,85.7143,4.2354,2.9236,0.5072,1.7991,31.889,8.4627,17.3628,56.9038,77.8846,0.5668,0.9845,14.5053,1.9187,90.5597,95.7143,90.4762,97.619,15.9099,1.5513 North East and North Cumbria ICB,A83001,St andrew's Medical Practice,16498.25274,7.4591,74.7232,67.1429,3.3832,82.4701,77.5,3.9438,94.7368,4.6623,2.7897,0.7123,1.7525,26.454,8.5672,17.6021,65.5481,78.8018,0.6661,1.1343,14.9789,1.653,90.7421,85.3786,83.4171,88.4422,14.6582,2.2225 North East and North Cumbria ICB,A83003,Willington Medical Group,11224.11718,8.3381,75.4617,63.8554,4.7245,74.3295,71.7277,4.7463,90,4.6286,3.2079,1.0366,0.74,34.8376,10.8546,19.8909,65.6454,78.2007,1.4512,1.0366,20.6539,0.5977,90.1618,84.5019,80.9211,88.1579,15.4254,2.8151 North East and North Cumbria ICB,A83007,Blackhall and Peterlee Practice,14132.09632,8.993,74.3902,70.7407,4.6706,77.3333,74.7475,5.9923,95.7746,7.1866,4.4818,1.4409,2.2834,40.2231,9.7303,22.7368,71.2446,87.7359,1.1229,1.2223,21.2595,0.9582,92.1438,89.697,90.1316,94.7368,18.2233,2.862 North East and North Cumbria ICB,A83008,Hallgarth Surgery,6628.104097,8.5835,67.7083,70.9677,3.9003,73.4177,74.7475,4.3759,95.6522,3.5316,4.4711,1.1606,2.2517,42.4418,10.5657,17.8653,73.6773,83.6066,1.1986,1.3508,19.27,1.7898,90.5931,88.6667,86.5854,95.122,21.9959,2.968 North East and North Cumbria ICB,A83009,Bridge End Surgery,8956.183633,7.9786,75,78.3654,5.5611,75.9091,80.7229,4.0171,95.8333,6.1109,2.3098,0.7658,2.0021,20.2981,8.4609,18.8802,64.5704,80,0.5775,1.0921,18.0935,3.564,87.1485,82.8194,80.198,93.0693,12.606,2.9626 North East and North Cumbria ICB,A83011,Claypath & University Medical Group,18358.61563,4.0329,76.8889,78.2313,1.8897,52.1079,77.4336,1.3078,94.3396,1.1281,0.5189,0.315,2.2851,10.9044,2.3179,6.077,69.685,79.6813,0.117,0.4919,5.6503,1.0782,90.1823,80.543,78.3333,87.5,4.3034,0.9718 North East and North Cumbria ICB,A83012,William Brown Centre,20081.19049,7.3235,72.7928,75.1309,3.2097,72.4696,72,4.6468,95.4546,6.9766,3.982,1.0952,1.0891,38.7136,8.9581,19.0111,75.6856,86.6071,0.8357,1.0825,14.0557,0.34,91.5374,88.3562,83.1731,95.6731,18.511,2.5323 North East and North Cumbria ICB,A83014,Belmont & Sherburn Medical Group,6585.458423,7.8694,73.5537,75.4839,3.9083,73.224,73.6434,4.4735,92.3077,2.865,2.4386,0.6137,1.8053,18.4534,9.0329,19.9612,73.3734,86.9198,0.533,0.8075,13.7951,0.2112,90.2041,84.2857,79.0698,91.8605,12.172,2.6001 North East and North Cumbria ICB,A83015,Station View Medical Centre,12012.95545,7.9837,76.8194,78.8845,3.9134,76,80.102,4.3505,89.6104,2.1954,3.4662,1.7687,0.7523,32.1735,10.5455,21.4983,73.7952,82.4176,1.0571,0.9453,14.9112,0.7571,91.0401,87.2093,90.625,96.25,13.3128,2.9783 North East and North Cumbria ICB,A83016,Tanfield View Medical Group,13399.27808,8.7359,72.7488,67.2474,4.1851,75.641,77.512,4.6082,90.5263,6.175,3.9827,1.2693,1.6009,32.209,10.8642,24.301,64.3798,82.7664,0.8738,1.113,22.024,2.513,89.7374,85.0829,87.5706,95.4802,17.2384,2.8238 North East and North Cumbria ICB,A83018,Consett Medical Centre,19013.80256,8.2413,73.6682,71.789,3.8373,72.5773,74.7851,4.3133,95.4955,5.9989,2.7678,1.1988,1.4819,22.6743,9.8425,22.2248,67.2709,84.3583,0.7522,1.1518,20.6398,1.877,90.1927,82.7161,81.6092,91.954,14.4673,2.6092 North East and North Cumbria ICB,A83020,North House Surgery,16168.27271,9.6731,75.4221,62.7566,5.1348,76.7089,73.3591,4.8254,95.7983,6.9623,4.3244,1.0682,2.2444,29.7462,9.9069,23.3608,75.4635,88.3648,0.9725,1.0535,16.5903,2.4274,90.1155,86.5429,87.6847,94.5813,15.8889,3.3962 North East and North Cumbria ICB,A83021,Auckland Medical Group,18285.81155,8.6208,74.4643,67.6393,4.2084,78.2051,77.7397,4.2794,94.5946,4.3689,4.4084,0.9682,1.1285,32.0058,10.7635,19.0989,66.8816,83.0189,0.9875,1.4071,19.8614,0.8163,91.0202,88.6179,87.3518,96.4427,17.058,2.9239 North East and North Cumbria ICB,A83022,The Medical Group,29433.30804,7.916,74.1807,71.9821,3.618,72.8365,72.1248,3.9017,96.3265,3.8634,2.6659,0.8289,0.8385,25.4283,9.7643,17.0892,67.5719,84.4093,0.6049,0.9633,18.5992,0.8849,90.4567,86.7626,73.4694,92.8571,15.1605,2.4493 North East and North Cumbria ICB,A83023,Stanley Medical Group,14707.99498,9.4947,74.2647,67.3993,3.1809,75.5501,77.5785,4.1198,93.3824,5.3402,3.4885,1.0846,1.1867,33.7715,10.4971,18.5593,66.1749,80,1.3436,1.0522,20.3171,0.664,86.2434,87.0886,77.0408,92.3469,18.6762,2.5981 North East and North Cumbria ICB,A83024,West Rainton Surgery,6463.195082,8.4746,75.7991,72.4138,5.6299,75.3247,76.3636,5.0614,89.7959,5.6625,3.521,1.0453,1.6589,26.959,10.6862,22.7765,70.8718,85.0187,0.4768,1.0453,16.8326,1.1433,89.5041,86.5591,79.0698,94.186,13.3162,3.8144 North East and North Cumbria ICB,A83025,Bishopgate Medical Centre,16218.01294,8.4686,72.1893,69.3642,3.9828,75.1861,74.8175,4.3388,94.5946,2.8802,3.1225,1.1496,0.2385,35.8813,10.7805,16.6654,75.4839,85.5297,0.7491,1.1644,16.7125,0.4142,89.753,89.0957,79.2793,96.3964,18.272,2.6404 North East and North Cumbria ICB,A83026,Sacriston Medical Centre,11508.72013,8.1617,71.6667,71.8876,3.7703,74.1573,72.0379,3.9657,93.913,5.0649,2.6159,0.3817,1.4488,23.9861,8.3572,16.3471,58.0464,76.2763,0.9402,0.9123,18.1154,2.4279,89.0825,88.9313,80.1527,89.313,14.2921,2.8579 North East and North Cumbria ICB,A83027,Coxhoe Medical Practice,7392.905359,7.4133,77.5591,80,3.9458,81.746,79.1946,3.8237,96.8421,3.3233,2.2915,0.461,1.1189,19.014,8.9875,16.1085,76.3819,87.5648,0.461,0.9085,20.3407,0.4004,90.2425,90.9575,84.5361,94.8454,12.8231,2.1288 North East and North Cumbria ICB,A83028,Middle Chare Medical Group,10481.56748,7.6683,78.5542,79.5539,5.0691,69.4853,73.2323,4.0808,93.9394,6.4639,2.3379,0.797,1.8885,20.1583,8.9045,20.2125,69.0742,83.6412,0.5632,0.9883,18.5425,1.579,91.0542,83.6502,82.3077,90,10.7341,2.9543 North East and North Cumbria ICB,A83029,Great Lumley Surgery,5904.17126,8.0844,79.0698,79.7297,5.2641,80.2548,82.906,4.3155,100,6.4059,2.1577,1.0417,2.0229,16.0118,8.8574,19.4382,72.6077,78.9474,0.5766,0.8929,18.7683,2.688,93.0184,83.0409,84.058,94.2029,10.7291,3.125 North East and North Cumbria ICB,A83030,Dunelm Medical Practice,13946.85702,7.5663,74.1071,70.5128,3.3146,72.1311,75.7085,3.0758,96.2121,2.8476,2.2121,0.7935,1.9572,21.1177,8.3587,16.3132,73.4092,86.6667,0.7093,1.0393,15.7718,2.0489,88.9425,88.0435,71.1864,93.7853,12.835,2.0295 North East and North Cumbria ICB,A83032,Woodview Medical Practice,3093.511605,10.184,80,80.5195,5.0787,84.4828,80,5.3543,93.75,7.3386,4.2913,1.8898,2.0901,25.4469,10.9845,22.5984,87.1495,90.411,0.7874,0.9843,23.6414,0.6369,94.2876,94.0594,95.5556,100,10.7493,3.6221 North East and North Cumbria ICB,A83033,Pelton & Fellrose Medical Group,10724.89257,8.0654,73.6842,75.9825,3.9609,73.1392,77.095,4.2181,94.9495,5.5831,3.107,0.9054,1.5897,26.0123,9.5388,18.5803,68.4979,79.6196,0.6173,0.7716,17.487,2.7569,88.8745,88.9286,81.5603,89.3617,14.6825,2.4177 North East and North Cumbria ICB,A83035,The Weardale Practice,8043.097214,7.9862,79.2244,70.2128,6.0897,81.6456,78.4091,4.7659,88.5714,3.825,3.0797,0.8361,0.94,19.455,9.0227,24.4287,77.4077,88.7097,0.432,0.9755,19.2707,0.1911,90.9527,87.766,95.098,97.0588,8.2248,3.0518 North East and North Cumbria ICB,A83036,Chastleton Medical Group,10840.27254,6.7893,81.5385,81.5498,6.1964,75.4448,78.2828,4.5742,95.3846,5.5365,1.7731,1.2449,0.4347,9.7099,8.0496,20.3905,74.9372,86.3158,0.4999,1.028,16.3807,1.8857,86.3469,87.7395,94.4444,98.4127,6.697,2.952 North East and North Cumbria ICB,A83037,Bewick Crescent Surgery,15460.65676,8.16,76.0536,73.9837,5.0557,73.4247,72.4638,5.319,93.8776,3.0692,3.3554,1.2639,2.4279,24.879,10.4954,21.0202,67.3573,83.2797,0.6696,0.9103,12.3225,0.9218,91.1468,82.8496,89.7674,95.3488,13.048,2.8739 North East and North Cumbria ICB,A83038,Cedars Medical Group,5692.122719,7.8947,78.2178,68.8312,4.3182,87.6238,85.4839,3.1224,89.1304,4.744,1.8103,0.8636,1.1076,18.4869,7.7034,15.9608,77.1953,85.3535,0.7308,0.7142,18.558,1.6227,93.7149,82.9457,84.375,93.75,11.1088,1.8768 North East and North Cumbria ICB,A83041,Murton Medical Centre,9629.546906,7.9393,74.8148,69.1099,4.2562,70.9821,73.9726,5.7342,100,7.1152,4.5299,1.1222,1.8839,31.7202,10.8952,20.2819,73.5803,85.7678,1.3549,1.7244,21.1606,2.9059,90.2043,87.3984,84.4262,94.2623,16.3591,2.7097 North East and North Cumbria ICB,A83043,Old Forge Surgery,3030.866614,8.1291,76.5101,73.0337,4.8448,77.7778,76.9231,4.3528,100,7.1241,2.7631,0.7192,2.0105,19.2234,10.9099,30.1665,80.1829,90.7801,0.6056,1.4383,20.3671,1.0095,93.4974,84.2105,87.234,95.7447,6.855,3.028 North East and North Cumbria ICB,A83044,The Horden Group Practice,10539.52101,6.5036,71.3333,76.1682,3.9158,77.3438,78.882,4.8581,87.9518,5.5911,4.234,0.9667,0.8531,43.3022,10.0405,18.1351,73.6886,85.0534,0.7587,1.0034,19.9726,0.2043,91.6015,87.4459,84.2975,95.0413,19.2694,2.5086 North East and North Cumbria ICB,A83045,Ferryhill and Chilton Medical Practice,18424.3405,7.7933,71.5044,67.5393,4.0349,69.5652,70,4.9345,89.3443,5.4293,4.3505,1.1413,0.9514,34.0068,9.6944,18.4827,70.2752,84.3284,0.8996,1.336,18.3548,2.5933,90.0254,82.7887,72.1973,90.1345,18.5384,2.9674 North East and North Cumbria ICB,A83046,Barnard Castle Surgery,11876.37307,7.4088,80.2734,78.6145,5.0482,81.2977,81.8548,4.6128,96.4286,3.1813,2.1119,1.0096,0.6959,15.1142,8.7639,19.9148,75.6892,83.7545,0.528,0.9541,16.4476,0.2215,90.2412,81.5094,88.2759,95.1724,9.5026,3.4365 North East and North Cumbria ICB,A83049,Queens Road Surgery,15314.31932,9.0066,78.0399,74.4898,4.1092,81.8868,79.7546,3.2227,95.3333,4.623,2.2794,0.6458,1.2723,20.3932,7.7702,19.9316,71.4286,86.4245,0.6711,0.7788,17.4648,1.9907,91.467,85.6287,86.2637,95.6044,12.1131,1.9311 North East and North Cumbria ICB,A83050,Cestria Health Centre,13374.73439,8.0357,77.9167,81.1594,4.7499,79.7403,82.5926,4.3024,98.9899,5.2389,2.1826,0.8322,0.9613,19.2428,7.809,17.1626,69.6045,84.375,0.3926,0.9657,16.8894,2.8631,89.2885,81.791,79.1946,89.2617,9.3325,3.007 North East and North Cumbria ICB,A83051,Marlborough Surgery,13727.96724,8.5714,76.4128,70.7407,4.8768,75.2874,74.1627,4.7522,95.4955,7.3521,3.4885,1.4773,1.3256,28.4676,9.3572,21.6695,69.7603,77.8481,1.2548,1.0056,21.3434,0.7469,90.5129,89.759,87.3418,93.6709,14.9277,2.3316 North East and North Cumbria ICB,A83052,Bishops Close Medical Practice,10058.48918,8.3029,76.9452,74.1784,4.9977,81.0078,80.3681,5.1356,96.1039,5.187,3.7339,1.1374,0.9559,27.0683,9.1715,20.818,71.6994,74.9254,1.034,1.057,15.1111,3.0264,90.4902,82.6271,87.395,95.7983,14.5553,2.7114 North East and North Cumbria ICB,A83054,Skerne Medical Group,19280.79822,9.1116,76.555,70.9459,4.1902,76.6667,79.1304,4.5678,95.3846,6.124,2.7575,0.8153,1.4309,20.8183,9.1062,19.9317,78.9454,89.3964,0.6354,1.0251,21.1077,2.8564,89.3819,83.4746,85.0877,94.7368,11.5048,2.9313 North East and North Cumbria ICB,A83055,Cheveley Park Medical Ctr,5062.653716,7.7983,80.1047,83.3333,4.54,79.085,82.0225,3.7934,100,4.9447,2.0178,0.9685,1.5006,12.1574,8.1796,18.9467,75.2407,82.5472,0.343,0.908,16.2854,0.4361,89.3617,88.2883,88.5246,95.082,7.7756,2.4818 North East and North Cumbria ICB,A83057,East Durham Medical Group,23916.30674,7.8796,72.1793,69.0045,4.0438,74.5946,73.5211,4.811,87.5,4.7058,4.3123,0.8877,2.404,41.9392,10.9723,19.0959,73.1579,82.3622,0.8274,1.1233,20.5189,0.9251,92.9625,87.0438,75,90.7895,18.8698,2.5041 North East and North Cumbria ICB,A83060,Pinfold Medical Practice,3122.923909,8.9254,78.6765,78.7879,4.6923,81.4286,82.2785,4.1483,100,4.2898,2.3461,0.408,1.7807,22.0555,9.3098,18.0891,77.0975,90.1099,0.646,0.8501,21.4488,0.6406,93.7759,89.7059,88.6364,95.4545,9.2385,2.3461 North East and North Cumbria ICB,A83061,Gainford Surgery,3634.387685,8.3048,79.6512,76.1062,5.4399,81.6092,83.908,3.4693,93.75,3.2005,1.7763,0.6661,1.5023,13.7636,7.2534,19.8446,78.9762,88.0952,0.3053,0.5551,12.3122,0.2019,89.7649,68.0556,95,100,6.5916,2.9698 North East and North Cumbria ICB,A83066,Jubilee Medical Group,13220.52117,7.5391,70.8763,66.7939,3.4587,80.1034,83.0918,3.8981,83.9744,2.8763,2.8402,1.0173,3.7862,32.285,9.1068,16.9027,78.3458,87.7976,0.8219,1.1882,19.6737,0.7959,90.1001,84.2466,80.4878,93.2927,18.5131,2.3844 North East and North Cumbria ICB,A83071,The New Seaham Medical Group,5063.321007,7.5399,77.381,68.9655,3.8891,76.7742,73.7374,4.4048,97.4359,7.4154,3.0297,0.5157,2.3643,27.808,9.399,17.2325,81.0651,92.8571,0.9454,0.8595,22.2192,0.9672,91.4232,91.3386,94.0299,94.0299,13.9959,1.9983 North East and North Cumbria ICB,A83072,Lanchester Medical Centre,4269.272091,7.2866,82.2785,78.7037,5.9509,82.8571,82.5581,4.275,100,5.5936,1.6517,1.7489,0.2083,13.6341,7.6358,23.3665,74.9656,87.234,0.7044,0.8987,17.8518,1.0174,92.792,82.1782,91.6667,95.8333,5.6825,3.3277 North East and North Cumbria ICB,A83073,Drs Lambert & Ng,6792.729299,9.1734,74.5,70.4545,3.8837,68.5535,70.1031,5.4716,94.5946,6.9047,4.0559,1.2244,0.5167,33.5046,11.1574,20.9489,75.3157,85.2679,0.9757,0.9757,22.7572,0.6413,87.5948,84.8958,79.5455,92.0455,18.6925,3.4054 North East and North Cumbria ICB,A83074,Pease Way Medical Centre,13478.37785,8.283,72.0183,67.9054,3.5466,75.827,75.5556,3.6039,95.3846,2.5421,3.2353,0.7617,2.7095,29.6242,9.6184,15.9227,74.4879,84.985,0.8355,1.1631,18.6003,0.3998,88.1243,87.7622,86.1272,93.6416,16.3535,2.621 North East and North Cumbria ICB,A83075,Byron Medical Practice,10412.97864,6.7604,71.4286,69.4444,3.9002,75.0988,72.0497,4.3442,98.1132,7.0346,3.7562,0.924,2.0603,29.3045,10.2903,19.9088,75.3957,84.7584,1.2361,1.032,21.9573,1.0635,90.6456,92.6199,91.6031,96.1832,15.0548,2.4241 North East and North Cumbria ICB,A83610,Wingate Medical Practice Intrahealth,4199.816662,9.6118,74.7826,68.2927,3.7714,80.9091,76.1194,4.6127,85.3659,4.8987,3.9745,0.4932,1.2523,34.2428,9.8182,19.7273,80.7432,82.9546,0.6673,1.3345,21.8048,0.8896,94.4195,95.6989,87.7551,95.9184,16.3221,2.0017 North East and North Cumbria ICB,A83616,Bevan Medical Group,10428.04986,8.4395,74.6622,75,4.5845,75.8621,77.2414,4.7659,96.0526,4.7871,4.5724,0.7016,1.318,39.5707,9.6615,18.3259,80.4229,85.7143,0.8709,1.4636,23.3147,1.1775,93.4057,93.8389,65.2542,95.7627,19.1866,2.4314 North East and North Cumbria ICB,A83617,Browney House Surgery,2815.189929,7.7607,75,62.6667,3.9539,73.9726,84.2105,4.9904,94.7368,4.7269,2.7639,0.9597,0.1836,22.2601,9.2183,19.8465,65.2874,81.7073,1.1516,1.7658,17.3015,0.493,90.7544,90.2778,82.5,92.5,17.3043,3.071 North East and North Cumbria ICB,A83618,Oakfields Health Group,8432.086426,8.2905,80,71.2871,3.4714,80.7377,79.085,4.0105,93.75,6.7217,3.1295,1.5385,0.7127,24.4442,10.3701,20.4997,77.6995,89.6797,0.4734,0.9336,22.0927,2.3236,92.2165,80.2469,83.7607,95.7265,11.648,2.8665 North East and North Cumbria ICB,A83619,Southdene Medical Centre,4459.611793,8.6012,68.0672,70.3704,3.6847,79.646,79.6875,3.7132,94.5946,3.1193,5.0271,0.3999,3.337,41.5638,10.3706,16.3096,76.7347,93.8272,0.7998,1.1711,16.5035,0.6047,92.3892,97.1429,90.7407,96.2963,19.9931,2.485 North East and North Cumbria ICB,A83622,The Haven Surgery,1957.193577,8.958,73.3333,71.1111,4.6334,85.4167,85.2941,4.5161,87.5,7.3916,3.1672,1.1144,4.0512,25.954,12.4123,28.6217,84.5783,93.1507,2.8152,1.173,24.6624,3.8977,97.8214,82.8125,93.75,100,15.8872,3.4604 North East and North Cumbria ICB,A83626,Evenwood Medical Practice,2563.984356,7.8922,73.6264,71.9298,3.4514,84.127,80,5.0409,100,1.9741,3.4968,0.8174,0.3948,32.2497,12.3958,20.5268,86.3402,90.625,0.8629,0.8174,27.4676,0.1026,93.7556,90.7895,90.4762,97.619,19.7324,2.9973 North East and North Cumbria ICB,A83627,Silverdale Family Practice,7259.990419,8.6176,72.3077,69.3431,3.0531,78.0083,78.3784,4.6487,92.9578,5.9493,4.8788,0.583,1.4773,35.4404,9.4266,16.8457,80.1036,87.9699,1.1507,1.258,22.2599,0.1355,92.2808,90.3743,81.7204,94.6237,16.0157,2.4394 North East and North Cumbria ICB,A83634,West Cornforth Medical Centre,3872.521933,10.2057,66.3636,63.7681,4.2453,78.75,76.4706,5.4064,89.2857,5.2584,4.1727,1.3062,1.7226,37.3134,13.1272,22.5689,69.3548,79.3651,0.6168,1.4877,22.8015,2.818,93.532,82.0755,79.6296,92.5926,18.6047,2.7939 North East and North Cumbria ICB,A83635,Bowburn Medical Centre,3910.455631,6.2531,72.5664,76.1905,2.6079,68.2353,74.2424,2.654,94.4444,1.8187,1.7309,0.9462,1.3715,20.1219,7.0716,12.901,73.0942,87.6106,0.3462,0.9924,11.7174,0.2219,88.5318,80.7018,75.5556,84.4444,12.7653,1.6847 North East and North Cumbria ICB,A83636,Leadgate Surgery,6525.954954,7.5425,77.512,72,4.6578,80.6283,78.1818,3.6728,93.2203,5.8417,4.1569,1.1853,0.5863,25.8919,9.5975,23.5225,82.6972,90.4348,0.818,0.818,27.7638,2.0115,92.549,93.2961,82.5,93.75,15.4899,2.7212 North East and North Cumbria ICB,A83637,Villages Medical Group,5164.165117,7.8652,69.0058,65.4867,3.7099,71.9298,69.2308,5.0742,96.5517,6.7826,4.1407,0.7659,1.1015,29.1217,10.3478,21.2063,73.0352,77.027,0.7899,0.742,23.1015,2.6042,90.3648,84.9673,86.7647,91.1765,17.7035,3.0876 North East and North Cumbria ICB,A83644,Annfield Plain Surgery,4369.687667,8.737,73.0159,64.6341,4.2114,79.4643,78.6885,3.7309,91.4286,7.0188,3.3352,1.2719,4.4823,33.3359,11.0922,20.3788,82.8859,93.6,1.0741,1.3002,26.1293,0.8043,94.2421,92.4242,94.9153,96.6102,18.475,2.4025 North East and North Cumbria ICB,A86005,West Farm Surgery,7006.205634,7.4396,70.5556,67.1875,3.6723,73.3624,73.4694,3.2569,92.6471,6.3608,3.2901,1.4124,1.9812,25.4389,9.239,16.9492,67.381,81.6667,1.0801,1.1632,18.7487,1.4947,86.9583,86.9565,90.3614,95.1807,16.0952,2.3264 North East and North Cumbria ICB,A86016,Lane End Surgery,9441.80452,7.0664,80.758,77.686,4.9464,80.0604,81.4815,3.2386,97.8495,5.9197,1.6245,0.8331,1.283,15.9451,8.0532,17.4008,62.6833,83.0619,0.4998,0.7289,14.8247,2.046,85.6102,85.6522,84.5455,92.7273,7.9981,2.2181 North East and North Cumbria ICB,A86041,Swarland Avenue Surgery,6380.897555,7.0336,78.2805,76.7606,4.1112,74.2739,75.4717,3.5282,95.4023,3.4766,1.7641,0.8671,0.8785,16.8661,8.0583,14.322,72.9765,80.7292,0.8073,0.7326,14.1308,1.2831,88.3357,86.2069,92.5926,96.2963,9.8855,2.2425 North East and North Cumbria ICB,A87002,Spring Terrace Health Centre,7724.234605,6.7473,72.9839,66.4557,4.7247,73.2484,69.9187,4.6899,100,6.087,4.3252,1.1638,0.9707,29.9263,10.012,21.1916,58.4117,77.9468,1.0075,1.2854,18.0991,0.348,89.6519,84.3434,79.3478,91.3043,18.238,3.613 North East and North Cumbria ICB,A87004,Collingwood Health Group,29333.46155,8.3107,73.7962,67.2819,4.5975,74.5271,74.6781,4.2869,95.6731,5.2042,2.9873,0.8827,2.0397,27.8773,8.8646,18.0016,65.2542,81.3873,0.8214,0.9849,15.9476,0.9415,89.0507,81.6165,79.878,91.1585,15.1316,2.7912 North East and North Cumbria ICB,A87005,Whitley Bay Health Centre,14751.16571,7.189,79.8872,78.0415,5.221,82.6087,84,4.2463,94.7917,3.2321,2.0929,1.0276,0.868,13.3464,7.1513,15.9879,71.2865,82.4458,0.6347,0.9596,12.2264,0.3016,92.7073,83.5125,88.1481,94.0741,8.714,3.1583 North East and North Cumbria ICB,A87006,49 Marine Avenue Surgery,6547.990106,6.5815,79.3103,75.5102,5.6412,78.2609,80.1653,4.0827,100,6.5113,1.6941,1.3214,0.623,11.6283,7.1684,17.7198,57.9228,78.3051,0.7284,0.9826,11.9574,0.7234,89.2115,85.2113,87.6923,93.8462,9.6863,3.2695 North East and North Cumbria ICB,A87007,Forest Hall Medical Group,19445.80928,7.7027,75.2308,69.7941,3.9751,71.8261,70.5714,4.0579,96.2567,6.9327,3.2684,0.7453,0.912,17.5007,9.1087,18.9146,65.1321,76.1218,0.784,0.8668,17.4587,1.3503,89.1414,83.7786,58.9212,93.361,14.4614,2.501 North East and North Cumbria ICB,A87008,Marine Avenue Medical Ctr,7981.864456,7.0442,78.7755,78.3333,3.8605,83.2753,81.25,2.7642,94.3182,4.439,1.5629,0.8631,1.4542,10.8563,5.7302,13.5993,53.6447,78.4722,0.5365,0.7115,7.3473,0.8706,85.668,73.0769,70.3125,79.6875,6.8195,1.7145 North East and North Cumbria ICB,A87009,Priory Medical Group,16726.86054,7.1914,75.043,69.4444,4.3297,74.9529,72.6688,3.3932,95.2,5.0787,2.1937,0.7184,1.6454,21.7711,7.1122,14.2591,66.0704,78.1106,0.8724,1.1033,16.842,2.0314,86.489,85.061,89.2216,94.6108,13.181,2.6235 North East and North Cumbria ICB,A87011,Beaumont Park Surgery,6343.66852,7.6691,79.8479,79.8851,5.3893,81.3559,84.3972,3.4046,97.3684,5.3689,1.4656,1.2824,2.4216,9.9895,6.7837,18.8397,63.0412,72.4739,0.4733,0.4733,13.5724,0.2884,89.6571,78.6325,81.25,92.1875,5.3555,2.5649 North East and North Cumbria ICB,A87012,Wideopen Medical Centre,8847.408978,8.1058,71.831,67.1717,3.9699,76.1702,71.519,4.7217,93.0233,8.6914,2.9544,1.2002,0.6,21.4601,9.584,19.4804,70.5207,79.6512,1.253,1.0419,18.9395,0.8567,87.2414,80.3089,58.8785,83.1776,13.876,3.1126 North East and North Cumbria ICB,A87013,Bewicke Medical Centre,11739.13605,8.6695,72.3602,67.4009,4.3847,72.8155,72.8916,4.7384,88.2979,6.4685,3.72,0.9005,2.5177,32.5217,10.5034,19.4576,73.7052,80.2589,0.9648,1.072,26.3828,1.9879,92.6432,88.3077,91.7808,96.5753,19.0415,2.7444 North East and North Cumbria ICB,A87016,The Village Green Surgery,14303.13039,7.673,73.1415,71.1744,3.8465,72.8632,74.6479,3.6964,94.2029,4.6936,2.954,0.7661,2.1916,28.1096,7.9101,17.9844,70.5493,85.8521,1.011,1.2163,19.1815,2.0281,90.4102,83.1615,85.6164,92.4658,16.4236,2.2273 North East and North Cumbria ICB,A87017,Woodlands Park Health Ctr,7140.354057,7.9818,80.9717,77.2152,4.8539,80.5687,81.5126,4.0685,97.5309,7.4374,3.3773,1.1153,1.0405,15.566,9.1621,22.306,73.9602,85.6688,0.4398,0.9111,17.9576,0.8853,90.6507,89.3258,91.954,96.5517,9.6824,3.0003 North East and North Cumbria ICB,A87019,Nelson Medical Group,6351.796487,7.0743,70.7447,64.6154,4.4015,69.4805,78.8462,4.2024,90.3226,6.6026,2.848,0.9958,1.3205,30.4563,9.0931,18.562,44.7222,64.1509,1.0157,1.3742,10.4922,0.545,88.907,81.295,60.5634,81.6901,18.2843,3.0074 North East and North Cumbria ICB,A87020,Monkseaton Medical Centre,10289.00974,7.083,81.8444,80.2632,5.1345,76.0504,80.3191,4.0517,93.75,4.5103,1.4437,1.1643,0.1265,10.0923,6.591,15.6014,67.4235,85.6269,0.5472,0.5821,11.9854,1.1779,83.2811,76.0479,82.1429,73.8095,6.7774,2.5498 North East and North Cumbria ICB,A87022,Northumberland Park Medical Group,8810.210131,7.3143,73.9837,73.0337,3.3214,81.7722,81.3793,2.52,96.1539,3.0963,1.8558,0.369,1.2194,20.8903,7.1458,12.0097,70.2981,82.5301,0.6432,0.5377,17.5641,1.2794,91.0213,88.0952,89.3617,94.6809,13.632,1.7081 North East and North Cumbria ICB,A87029,Hadrian Health Centre,25216.17854,7.5186,71.7697,68.3544,4.0307,70.4067,70.6704,3.7733,93.2584,4.4932,2.9429,0.9713,1.5399,29.8357,8.6091,17.2397,66.5428,75.4653,1.0198,1.1364,18.3158,2.1489,83.0879,85.6016,74.6212,88.2576,18.1242,2.603 North East and North Cumbria ICB,A87030,Redburn Park Medical Centre,7437.376394,7.695,70.068,60.9756,3.4636,72.6872,73.3333,2.639,85.7143,4.1411,3.3482,0.5278,6.1131,44.0119,9.3184,15.6853,65.3333,82.5397,1.2535,1.4514,20.1578,1.1056,87.6052,82.3129,88,96,22.9334,2.3256 North East and North Cumbria ICB,A87600,Park Parade Practice,4873.412799,7.0042,79.4872,74.5614,4.7218,76.129,80.3922,3.2232,100,4.8725,1.396,0.698,1.6158,13.8738,7.1268,14.3708,73.3333,85.1429,0.6364,1.0675,11.3103,1.3996,83.9717,80.2198,94.1176,98.0392,7.9311,2.9768 North East and North Cumbria ICB,A87612,Wellspring Medical Pract.,7187.307758,8.9854,75.4545,71.3333,4.3295,76.1905,76.9231,5.0927,93.8462,7.1092,3.0525,1.3861,3.0047,18.5801,9.4435,19.6698,72.164,78.5047,0.841,1.1058,20.9741,2.5621,89.873,86.1244,89.8876,97.7528,13.2336,2.5697 North East and North Cumbria ICB,A87615,Mallard Medical Practice,5343.535589,7.8835,75.4717,69.7248,4.4665,74.0541,74.4186,3.6076,94.6429,5.6802,2.825,1.0307,2.0234,18.3594,8.3034,18.1141,74.4275,84.0491,0.8399,0.6681,17.2355,1.5393,89.9823,83.3333,79.6875,92.1875,13.5479,2.1378 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence Derby and Derbyshire ICB,C81001,Springs Health Centre,12481.45075,7.0984,74.8184,80.1444,4.3277,80.7263,83.3333,4.1266,95.1613,8.4425,3.3922,0.9093,1.6452,21.6267,11.0767,19.6713,58.871,82.3077,0.7257,0.6032,16.1489,2.1877,90.629,80.5,79.6875,90.625,16.0593,2.6491 Derby and Derbyshire ICB,C81002,The Valleys Medical Partnership,13238.24144,7.0031,76.5591,81.6199,4.7161,76.0446,78.6885,4.1266,90.1099,10.0088,2.996,1.1871,1.7155,13.8651,9.678,21.7879,69.7961,82.1732,0.5491,0.8399,17.1748,3.2466,89.4593,84.1232,83.9572,59.3583,11.7764,3.0364 Derby and Derbyshire ICB,C81003,Sett Valley Medical Centre,10593.74096,8.0318,72.5537,80.292,5.4404,75.3472,72.4771,3.8408,94.1177,3.3408,1.797,0.8985,2.5671,14.5778,6.9317,18.6611,66.9525,78.6096,0.3851,0.8788,9.0376,0.6519,88.3888,85.1852,83.0189,92.4528,11.8454,2.7942 Derby and Derbyshire ICB,C81004,Ivy Grove Surgery,11268.45567,7.1523,77.3956,80.5861,5.3978,79.661,79.5238,3.9539,96.3855,6.676,2.0157,0.9497,1.6369,18.4064,7.7999,18.3836,63.4997,76.9585,0.5911,0.6493,18.777,1.8526,88.9717,85.3448,86.9565,92.1739,11.9763,2.5584 Derby and Derbyshire ICB,C81005,Jessop Medical Practice,19115.91075,7.7786,73.871,75.9709,3.965,73.0159,73.9812,4.1495,92.9078,6.517,3.2684,1.2145,1.653,22.0112,8.8421,15.6516,67.8689,78.7449,0.9704,0.9942,18.6732,0.3079,87.0227,77.951,77.9221,91.7749,15.7723,2.7803 Derby and Derbyshire ICB,C81006,Horizon Healthcare,24836.25145,5.4078,62.9699,67.4541,2.1553,55.3794,67.9012,2.4089,72.963,5.1794,1.8974,0.5159,1.0158,34.2153,6.9815,12.276,70.131,82.7664,1.0973,1.3159,8.8798,0.2572,82.045,82.2014,83.2636,92.0502,22.3784,1.5214 Derby and Derbyshire ICB,C81007,Vernon Street Medical Ctr,11860.64207,7.0137,68.8811,69.5,2.4281,60.0823,67.2619,2.7148,85.9259,4.6281,1.7199,0.9274,1.0461,23.4814,6.7738,13.6076,67.5846,83.0904,0.9021,1.3068,12.6374,0.9796,85.3239,79.4118,84.1667,93.3333,16.5431,1.5766 Derby and Derbyshire ICB,C81008,Royal Primary Care Clay Cross,12226.54195,7.4009,69.9438,76.4957,4.2044,74.4755,77.0492,4.6373,95.5752,6.872,3.4625,0.8862,0.7763,27.4046,10.8625,20.7956,73.7143,91.1964,0.7935,0.9687,19.9287,1.0728,89.9666,86.4197,81.3253,95.1807,20.0099,2.7721 Derby and Derbyshire ICB,C81009,Wilson Street Surgery,20981.10958,6.2947,57.9208,60.6383,2.1204,52.901,62.7119,2.5984,83.3333,4.8797,2.3839,0.5515,2.0189,36.2454,7.3834,12.477,60.5526,74.6269,0.9621,1.3176,11.0035,0.5149,75.7282,81.1989,70.2929,87.8661,24.2008,1.5995 Derby and Derbyshire ICB,C81010,The Moir Medical Centre,14114.72638,6.8882,70.7527,75.625,3.8643,73.7913,78.5714,3.0944,96.8421,4.7466,1.6593,0.9941,0.2776,16.9128,7.9374,17.0117,76.0428,84.4621,0.8371,0.7773,17.2846,0.4134,91.0731,87.0175,82.0988,93.2099,15.9671,2.3544 Derby and Derbyshire ICB,C81012,The Surgery At Wheatbridge,18403.12932,8.0115,71.1304,77.6567,3.9047,69.2157,73.8676,3.5193,92.4138,8.1416,2.7106,1.1499,1.3944,22.1896,9.1806,17.6028,72.5627,82.1203,0.695,1.2384,13.5564,0.4948,88.0956,86.3839,81.1966,90.5983,16.3208,2.4073 Derby and Derbyshire ICB,C81013,Baslow Health Centre,4883.760762,9.3013,79.8319,82.6667,5.938,80.198,79.2793,4.6902,100,10.058,1.5921,0.753,1.1596,6.4596,7.1037,22.031,75.4271,87.8327,0.1721,0.7745,12.1502,0.3279,92.7928,76.3889,81.1321,92.4528,5.5167,3.3133 Derby and Derbyshire ICB,C81014,Derwent Valley Medical Practice,13585.90566,8.3469,68.8047,67.6471,3.443,73.2283,75.7895,3.7483,91.8033,4.3094,2.3321,0.7124,0.4417,29.3832,8.2672,15.0271,65.8555,81.0096,1.1788,1.0685,15.8371,0.1789,91.0693,81.25,72.1854,88.7417,20.4755,2.0438 Derby and Derbyshire ICB,C81015,Newbold Surgery,14422.70494,8.0131,74.7412,79.6774,4.2074,73.5632,74.8918,4.1155,96.1539,7.5433,2.2456,0.935,0.7339,24.4517,9.7915,17.4639,69.419,81.8381,0.4508,1.0769,13.2416,0.1956,88.1537,78.7342,74.5856,89.5028,15.9588,2.8383 Derby and Derbyshire ICB,C81016,Peak & Dales Medical Partnership,9262.750223,7.4514,78.436,79.3478,5.6546,78.607,78.1818,4.2807,73.0769,8.7032,1.8395,0.9879,0.7754,10.3384,7.3483,19.9841,61.9228,83.5991,0.4542,0.8175,12.139,1.1241,88.7643,79.2531,79.0476,91.4286,9.5688,3.0771 Derby and Derbyshire ICB,C81017,Arthur Medical Centre,8958.226383,9.3783,78.453,77.7778,4.3374,78.4946,78.4946,3.3759,98.9691,7.26,2.2288,0.9724,1.0352,13.2403,7.3274,17.6117,65.5618,83.7333,0.5572,0.732,15.2864,0.5065,88.0846,84.3902,86.5979,94.8454,10.2978,2.2179 Derby and Derbyshire ICB,C81020,Newhall Surgery,11066.32581,8.0579,73.7245,74.6094,3.9871,76.1905,74.8691,3.4662,96.3415,7.0975,2.6802,0.6345,2.0022,20.6681,9.9277,16.7061,76.9553,83.7349,0.9849,0.5777,12.8642,0.2262,91.0889,82.1782,82.5397,95.2381,14.4333,2.0362 Derby and Derbyshire ICB,C81021,Old Station Surgery,16604.85956,7.3936,72.1992,77.0833,3.9379,79.1075,82.2064,3.2706,95.2381,5.8616,2.8015,0.9911,1.0092,27.7363,8.287,18.4936,68.1314,84.2491,0.892,0.773,19.4181,0.721,89.5498,86.533,78.2383,93.7824,17.6584,1.9227 Derby and Derbyshire ICB,C81022,South Street Surgery,4758.088378,7.8584,74.2647,75.5319,3.7847,74.8031,82.9268,3.1457,86.4865,5.6072,3.3423,0.983,0.8096,25.1387,8.1681,18.8007,72.9097,83.2335,0.9339,0.9585,14.8426,0.4564,90.3307,81.8182,80,90.9091,16.9111,2.261 Derby and Derbyshire ICB,C81023,The Aitune Medical Practice,8630.187641,8.0944,76.129,76.8116,4.3816,78.5088,80.7018,3.4802,83.3333,4.279,2.3035,0.7386,1.3108,16.9493,7.8023,18.7156,72.2037,85.8586,0.8137,0.7762,13.9069,0.3689,90.8506,86.7925,84.3137,93.1373,13.4159,2.4412 Derby and Derbyshire ICB,C81025,Dronfield Medical Practice,10493.30705,7.0514,80.2005,85.2399,4.4625,82.392,83.3333,3.8636,97.3684,7.5297,1.9801,0.879,2.5178,10.095,6.9795,18.3522,75.9777,86.7521,0.3091,0.792,11.5915,0.4982,91.4695,84.8485,82.906,94.0171,7.3504,2.8784 Derby and Derbyshire ICB,C81026,Adam House Medical Centre,7090.343676,7.7185,73.1915,77.5758,4.5384,78.125,79.1367,4.1343,95,8.0121,2.0827,1.9584,2.551,16.1409,7.3175,16.7081,75.1852,86.0377,0.8548,0.7616,11.7158,0.5982,91.5734,79.8817,77.2152,92.4051,12.5452,2.1915 Derby and Derbyshire ICB,C81027,Somercotes Medical Centre,8695.52193,8.4393,73.2601,75,4.2032,77.5194,76.5101,3.5556,95.5056,6.0844,2.6159,0.5968,0.9879,25.3848,9.1584,15.7206,74.1617,86.1607,0.927,0.9143,22.1421,1.035,91.2477,81.0185,87.3874,90.991,16.8779,2.3238 Derby and Derbyshire ICB,C81028,Imperial Road Surgery,8241.700452,7.7809,77.1261,77.6256,5.1216,73.8372,78.9809,3.6465,100,6.0196,1.9394,0.7921,1.6417,14.3593,7.7535,17.0718,60.0827,72.7915,0.6146,0.9287,7.1624,0.2025,88.4208,75.2874,77.1739,91.3043,10.4482,2.6905 Derby and Derbyshire ICB,C81029,Staffa Health,19535.12665,7.8016,71.2264,76.9053,4.208,72.9524,72.5076,4.0564,94.6429,6.7122,2.8908,0.915,1.0108,23.0026,11.0609,17.6303,71.3875,85.0594,0.6178,0.8975,13.3227,0.1089,87.3531,87.5233,86.014,94.4056,14.5112,2.0865 Derby and Derbyshire ICB,C81030,Credas Medical,10393.31777,8.2474,76.6827,78.5992,5.3971,77.3585,78.0105,4.2382,91.2281,8.8118,2.4202,1.7271,1.2951,11.3011,7.8457,21.0772,71.8915,80.6818,0.2613,0.8749,7.4366,0.7395,90.9397,78.4483,80.3571,81.25,9.3337,3.4428 Derby and Derbyshire ICB,C81031,Park Surgery,9783.575144,7.162,74.3034,70.8333,3.877,71.777,74.4186,3.7123,97.8022,5.419,2.9654,0.8347,1.2359,22.3178,8.3367,19.1433,65.8741,85.623,0.8457,1.2411,16.515,1.1439,88.3568,81.0573,73.5537,88.4298,17.4341,2.3174 Derby and Derbyshire ICB,C81032,Swadlincote Surgery,15227.33376,7.5648,71.2766,75.3799,3.5151,69.6682,71.8147,3.5439,97.1015,4.3817,2.73,0.7347,0.9029,19.7954,9.0822,16.9488,72.7992,83.5526,1.0012,0.9148,16.9868,0.1694,85.3038,87.4627,86.3158,92.1053,16.6061,2.4851 Derby and Derbyshire ICB,C81033,Shires Healthcare,19954.89019,8.0262,69.685,73.107,3.7058,69.0249,74.4337,3.5258,90.4192,6.1397,3.5382,1.3035,1.1969,31.9605,10.8692,18.1875,71.6165,87.6091,0.5462,0.9311,13.4919,0.2694,91.4322,89.0947,74.8175,86.1314,21.8576,2.5202 Derby and Derbyshire ICB,C81034,Stewart Medical Centre,11989.11727,8.7165,74.8744,76.087,4.591,76.3158,80.4651,4.0438,97.5309,4.816,2.1703,1.2428,2.3058,18.0448,6.8011,16.3606,72.3468,78.4038,0.5287,0.9924,8.5643,3.833,89.2203,82.6613,78.8991,91.7431,14.0753,2.6618 Derby and Derbyshire ICB,C81035,Village Surgery,13225.46974,7.0673,66.3793,67.5214,3.1667,63.1714,69.6809,3.2934,85.9259,6.3345,2.2209,1.14,1.0702,28.0947,9.3391,15.0904,61.1823,75.4569,1.0049,1.1653,14.1931,0.7585,87.0838,83.5484,71.9298,84.2105,16.207,2.1027 Derby and Derbyshire ICB,C81036,Friar Gate Surgery,5872.278124,4.5828,67.5214,69.3333,2.2584,59.1133,75.8621,2.5263,80.6452,4.0194,1.8373,0.689,0.5521,27.2359,5.5629,13.7608,72.0562,79.3333,0.7464,1.2632,12.2571,0.9524,86.557,92.6316,83.7209,93.0233,16.9938,1.933 Derby and Derbyshire ICB,C81037,Ashbourne Medical Practice,10399.56805,7.4268,78.4897,79.5222,4.3572,79.5053,81.3853,3.168,96.3855,5.0842,1.6376,0.7798,1.087,13.273,6.1121,19.0077,70.7641,85.618,0.6238,0.6531,10.3319,0.625,90.4979,81.7204,80,94.7368,10.0363,2.2809 Derby and Derbyshire ICB,C81038,Whitemoor Medical Centre,12454.41273,8.545,76.1506,79.5181,4.8125,80.226,77.7778,3.2377,92.7083,8.6826,1.8467,1.2471,1.2073,11.222,7.1313,18.1869,75.3129,89.5551,0.5596,0.6795,16.158,0.4669,90.1143,73.6301,83.0882,91.1765,10.0019,2.4702 Derby and Derbyshire ICB,C81039,Eyam Surgery,3548.412739,7.4412,79.096,79.646,6.7811,82.3529,82.9268,3.5172,95.8333,8.0464,2.448,0.8441,1.7881,7.2452,7.1054,20.2307,74.5794,86.413,0.4221,0.619,13.7748,0.4571,90.6977,78.2609,90,92.5,8.1946,2.9544 Derby and Derbyshire ICB,C81040,Park Lane Surgery,6998.965788,6.9658,82.2951,81.0427,5.4089,78.8288,77.1084,3.355,92.5373,6.1713,0.8547,0.5103,1.0881,6.6674,4.838,17.8849,63.4314,82.7225,0.3317,0.5485,9.4979,0.4208,84.696,86.1386,77.7778,90.7407,4.8244,2.5003 Derby and Derbyshire ICB,C81041,Welbeck Road Health Centre,13764.96175,8.1913,72.5301,74.5645,3.5056,77.0718,74.4076,3.7713,92.1739,6.7549,2.2457,0.5828,0.7744,26.7823,11.0191,16.0967,71.2981,86.3768,0.5228,0.8914,18.705,0.2062,85.7039,80.102,79.2135,87.6404,14.8766,2.3828 Derby and Derbyshire ICB,C81042,Mickleover Medical Centre,11481.43504,5.78,80.625,83.5962,3.8151,80.7059,83.6,2.8459,96.5035,6.3732,1.123,0.9615,0.5837,7.8648,6.394,14.8758,58.6658,70.4167,0.4692,0.6923,7.5598,1.1083,88.0795,75.2066,70.4,87.2,7.0035,1.9306 Derby and Derbyshire ICB,C81044,Whittington Moor Surgery,10762.22318,8.9158,73.3553,78.341,4.1177,72.3077,77.1084,3.8923,90.9091,10.192,3.2989,1.1511,2.151,27.3308,10.9462,21.4549,69.6805,83.3828,0.8425,1.5783,21.8276,0.4263,90.883,82.2917,76.5517,91.0345,19.0565,2.6344 Derby and Derbyshire ICB,C81045,Royal Primary Care Chesterfield West,15871.07664,7.3296,70.0637,75.4717,4.2899,71.3592,76,3.7706,89.5238,9.0827,2.431,0.8429,0.8965,24.0987,9.6439,17.6865,72.3428,84.991,1.0913,1.7235,14.6337,2.831,87.817,81.128,80.0995,93.5323,20.4241,2.0998 Derby and Derbyshire ICB,C81046,West Hallam Medical Ctr,4737.855858,7.6495,78.8945,83.2,5.3285,89.0625,85.8586,3.2099,96.7742,9.7567,1.9046,2.2256,1.6979,10.0963,7.2878,23.0045,71.0429,77.6923,1.9474,0.428,15.5601,1.0021,92.7383,75,66.1017,96.6102,6.138,2.6107 Derby and Derbyshire ICB,C81047,Alvaston Medical Centre,14218.10717,8.6283,76.1574,77.1523,4.9987,79.6178,80,4.7297,93.3333,6.7052,2.7163,1.5361,2.6485,21.5976,8.5427,20.9234,67.4132,82.56,1.2757,0.7811,16.6684,1.4561,92.0338,81.1502,80.6667,86.6667,13.1266,3.0287 Derby and Derbyshire ICB,C81048,Appletree Medical Practice,10136.84373,7.4171,80.8858,82.1306,5.6748,80.2198,86.0082,3.6545,93.3333,7.0608,1.2391,1.1852,0.6459,6.3929,5.434,18.5957,69.5652,86.0129,0.4939,0.5747,8.7466,1.4576,88.9012,78.673,86.9565,91.3043,5.4351,2.9631 Derby and Derbyshire ICB,C81049,Kelvingrove Medical Centre,10294.78702,7.2969,74.6914,72.6872,4.3692,75.9375,75.7895,3.559,88.5058,3.5814,2.4308,0.841,1.3128,21.5182,7.7523,16.7282,71.203,84.0532,0.7795,1.0462,13.1532,0.3958,89.3423,85,81.3559,84.7458,15.824,2.3487 Derby and Derbyshire ICB,C81050,The Village Surgery,10667.55284,6.6058,69.0096,69.3396,3.3472,74.6528,75.8824,3.7084,89.1892,8.035,2.4227,1.0307,1.2596,23.8479,10.1584,18.7015,58.7325,80.6452,0.6375,0.8607,11.5354,0.2041,89.762,87.6812,76.3158,90.1316,16.8476,2.1358 Derby and Derbyshire ICB,C81051,The Park Medical Practice,26811.59465,7.3902,75.323,76.4919,3.1406,69.9063,77.6286,2.962,93.5829,5.606,1.7222,0.7861,1.7289,22.7678,6.4861,13.7523,68.7605,84.5184,0.8647,0.5788,13.3174,0.9888,88.1449,80.7356,78.0142,92.1986,13.6643,1.9794 Derby and Derbyshire ICB,C81052,Brooklyn Medical Practice,8028.2164,8.3358,69.8795,71.5976,3.9162,73.3624,73.5714,4.0942,91.5493,4.7667,2.3826,1.1502,1.2847,24.3656,8.4123,15.5553,74.2489,86.7647,0.6299,0.7257,15.906,0.4244,86.31,77.7778,79.1667,91.6667,18.9482,2.5606 Derby and Derbyshire ICB,C81053,Parkside Surgery,11786.77358,6.8549,74.3316,79.6078,3.5845,72.9805,76.7196,3.6971,94.7826,6.7995,2.7775,0.8539,1.9808,23.6963,7.9516,16.3179,60.3387,82.6087,0.8914,0.8258,14.4793,0.2015,88.3616,83.5294,77.6923,90.7692,14.0405,2.5711 Derby and Derbyshire ICB,C81054,Hollybrook Medical Centre,31201.44997,6.7242,68.0365,71.6772,2.5113,68,71.4286,2.9616,90.3308,4.9082,1.7217,0.8352,1.5527,18.5154,8.4446,13.8789,63.8827,80.8664,0.8523,0.8808,13.0619,0.9311,87.2817,77.4194,75.8701,90.4872,16.1708,1.8158 Derby and Derbyshire ICB,C81055,North Wingfield Medical Centre,5612.446473,9.5675,69.3252,74.5283,3.3414,74.1935,74.3243,3.7151,92.3077,8.4416,3.825,1.0991,1.2446,30.6708,11.636,15.9156,74.188,91.3669,0.6375,1.0552,23.5119,0.4983,91.7914,84.7134,50.6024,93.9759,19.9671,2.2423 Derby and Derbyshire ICB,C81056,Clay Cross Medical Centre,8241.012213,9.4726,75.1037,76.7742,4.0329,77.8325,77.8761,3.9553,95.3846,7.401,3.3504,0.9927,1.1092,24.5663,11.6935,18.5668,67.8344,80,0.6049,0.8841,13.8267,0.1402,89.5814,85.4701,83.4783,94.7826,15.4105,2.4818 Derby and Derbyshire ICB,C81057,Willington Surgery,9366.93949,8.6493,79.3427,84.6154,5.8396,81.9444,81.1404,3.431,98.913,7.177,1.6418,0.7766,0.8852,8.5472,6.7799,19.534,75.9066,86.6667,0.6095,0.6292,18.1699,1.3621,91.1103,84.434,89.7959,97.9592,8.773,2.1923 Derby and Derbyshire ICB,C81058,The Brimington Surgery,10748.98085,8.6665,69.8675,75.8794,4.3558,77.2059,81.1321,4.2984,94.1861,10.3535,3.3444,1.3332,1.8238,24.6947,11.1019,19.3426,65.4735,80.117,1.0114,1.586,17.0875,0.2915,90.1817,78.5714,80.5369,92.6174,13.9837,2.8962 Derby and Derbyshire ICB,C81059,Ripley Medical Centre,6753.89796,7.9585,74.2857,77.1429,3.6052,75.2525,76.3158,3.8662,86.7647,6.6614,2.3817,0.9462,1.0371,21.1561,8.3695,17.3246,63.3136,82.9493,1.093,0.8972,15.716,0.5743,89.7549,81.6456,85.5072,88.4058,20.4459,2.4959 Derby and Derbyshire ICB,C81060,Woodville Surgery,10674.13489,7.2387,71.6418,75.3906,3.1569,73.5211,77.1689,3.0919,94.5946,4.6063,2.2284,0.6128,1.5008,18.4691,8.899,16.2396,63.799,80.4054,0.9749,0.7521,15.6777,0.7013,89.182,85.1301,77.0833,90.2778,16.3041,2.0891 Derby and Derbyshire ICB,C81061,Littlewick Medical Centre,19745.51464,7.3711,75.2013,77.1028,4.2261,73.2297,72.6471,3.3425,93.6047,4.9856,2.7881,1.0867,1.9191,22.5365,8.0406,17.1789,72.49,82.3438,1.2184,0.7739,13.4134,0.6622,86.0686,84.4125,89.6104,94.3723,16.3548,2.1789 Derby and Derbyshire ICB,C81062,Hannage Brook Medical Centre,9529.271961,8.7057,76.0192,72.2222,4.9634,80.3738,83.9286,3.3422,93.3333,6.5212,1.9876,0.6773,0.5916,13.4345,6.6035,16.9776,75.1464,84.7305,0.5441,0.8439,11.0439,1.2014,88.6709,82.7751,86.1111,96.2963,12.1575,2.9314 Derby and Derbyshire ICB,C81063,Thornbrook Surgery,9557.370811,7.0089,75.1938,79.6078,4.2396,76.7717,77.4359,4.0603,94.7368,2.9412,1.6347,0.7593,1.6383,11.3518,7.6541,16.8952,69.9592,81.4324,0.4429,0.6328,11.3519,0.4181,80.2571,84.3434,76.1905,85.7143,11.3042,2.7948 Derby and Derbyshire ICB,C81064,Park Farm Medical Centre,13362.60119,7.0824,76.5306,79.3478,5.1401,77.9703,83.4081,3.5658,94.9495,8.8027,1.6924,1.897,0.5544,14.546,6.6009,16.4279,62.695,79.7637,0.8501,0.9761,13.3547,1.4981,87.6796,70.979,82.2581,89.5161,12.2047,2.637 Derby and Derbyshire ICB,C81065,Buxton Medical Practice,9769.8004,6.714,72.6115,74.5192,4.8109,69.708,71.2644,3.6585,88.8889,3.6889,2.6292,0.6042,1.8032,18.3145,7.0187,16.7263,67.0598,83.7662,0.4811,1.2307,10.7777,0.8227,84.3105,84.0206,87.3684,93.6842,15.5379,2.2936 Derby and Derbyshire ICB,C81066,Overdale Medical Practice,11633.45119,7.8578,78.1737,81.457,4.6453,75.9312,77.1429,3.645,96.0396,5.3191,1.6614,1.0003,0.7953,12.1126,6.5368,16.2838,74.5417,84.1518,0.4662,0.746,12.4045,0.2909,83.8679,78.3186,68.9076,93.2773,11.0079,2.5769 Derby and Derbyshire ICB,C81067,Chatsworth Road Medical Centre,10684.83006,7.913,80.6593,86.0068,5.6379,83.0508,85.7798,3.8553,96.7213,7.327,1.6893,0.9431,1.6406,12.2628,8.3608,20.3441,74.2953,84.9894,0.3213,0.9638,12.8038,1.2545,85.8321,80.7531,87.6923,94.6154,7.0588,2.85 Derby and Derbyshire ICB,C81068,Chapel Street Medical Centre,13115.48779,6.4331,73.0077,72.7599,3.701,77.551,77.533,3.1815,98.8889,7.1046,2.2142,0.7994,0.9702,22.5307,7.7206,15.4277,57.3479,75.1606,0.9353,0.6395,12.1577,0.3192,89.3636,83.3333,45.8904,89.726,15.93,2.2222 Derby and Derbyshire ICB,C81069,Riversdale Surgery,13345.19011,8.2707,77.9851,79.0885,5.1178,80.2111,80.6557,3.9997,93.1818,6.804,1.7034,1.3733,1.0701,12.3652,6.8798,16.9443,69.2046,84.739,0.6454,0.818,13.171,2.089,84.418,77.0642,85.9155,92.2535,10.9425,2.7315 Derby and Derbyshire ICB,C81070,Oakhill Medical Practice,4566.956868,7.5797,78.3439,83.9286,5.9919,86.5169,87.5,3.8771,84.2105,7.1198,1.863,0.7301,0.4688,10.5906,7.67,21.0473,76.6727,86.5724,0.3525,0.7049,11.6906,1.6282,92.5492,89.0909,93.8776,91.8367,7.2572,3.7764 Derby and Derbyshire ICB,C81071,Osmaston Surgery,14740.37469,5.9609,59.1837,61.3821,2.2401,53.5332,64.1509,2.9063,78.125,5.1859,1.6105,0.6589,1.1989,37.1484,8.6885,13.7335,48.1095,69.5906,0.981,1.0322,6.9703,0.3625,75.7027,79.6875,66.4835,85.1648,17.7785,1.6691 Derby and Derbyshire ICB,C81072,Lister House Surgery,28525.09839,5.141,63.4948,66.0944,1.9229,49.6416,64.3204,2.0236,82.4257,3.9952,1.0167,0.5814,0.3676,33.8205,7.3462,9.9717,61.2009,81.3559,0.7731,0.864,12.2071,2.2859,79.7187,81.2,74.3119,91.4373,22.9346,1.2635 Derby and Derbyshire ICB,C81073,Macklin Street Surgery,14097.26615,5.7638,67.9878,66.8224,3.1391,54.7414,66.092,2.7356,76.9231,5.6906,2.0659,1.0168,1.1263,28.6731,7.0523,12.9438,58.753,71.9547,0.7182,1.4768,9.7708,0.5844,85.4773,82.7586,71.0145,84.058,19.2059,1.8964 Derby and Derbyshire ICB,C81074,Elmwood Medical Centre,6755.734148,6.8009,73.3871,72.1893,4.7604,73.2143,78.1955,3.9346,93.0233,4.501,2.445,0.6801,1.2329,18.2678,7.5271,17.2442,56.7308,77.2532,0.8744,1.182,12.9354,0.8818,82.9086,83.5443,68.1159,88.4058,14.6984,2.3964 Derby and Derbyshire ICB,C81075,Brailsford & Hulland Medical Practice,5006.214693,7.5514,79.1489,78.882,5.7143,80.3419,81.1024,4.0428,83.7209,8.7777,1.2439,0.758,0.2794,11.7647,6.359,17.4538,69.4657,87.6543,0.5442,0.5442,11.4319,1.2143,90.4731,82.7273,80.7692,90.3846,6.0536,2.2935 Derby and Derbyshire ICB,C81080,Goyt Valley Medical Practice,8201.972703,7.9353,75.9669,79.4979,5.5649,80.543,84.153,3.7301,97.0149,2.8138,1.8832,0.8329,1.3267,10.3151,7.2272,17.5398,73.0327,86.646,0.3501,0.7484,13.8358,2.0492,84.3256,87.5,88.5057,96.5517,10.9005,2.4022 Derby and Derbyshire ICB,C81081,Manor House Surgery,17458.0381,9.9524,75.9812,78.2805,5.0534,79.8493,81.5029,4.2349,91.5584,4.056,3.3215,1.0439,2.3125,16.2124,7.1321,18.968,72.0339,79.402,0.6762,0.86,13.6417,0.8154,91.9905,83.0882,77.6471,95.2941,11.9466,3.2206 Derby and Derbyshire ICB,C81082,Hartington Surgery,3287.364827,7.4584,78.6127,76.5766,5.2487,77.6316,80.9524,3.845,96.5517,3.8339,1.1901,0.4883,0.3195,19.8636,7.5598,23.1614,74.8792,89.1304,0.2441,0.6103,17.3944,1.5326,91.4414,90,92.3077,94.8718,9.5749,1.892 Derby and Derbyshire ICB,C81083,West Park Surgery,16594.24829,7.322,76.5152,76.2887,3.5915,79.7963,81.3291,2.7468,89.375,4.7584,1.6599,0.9097,0.4847,16.8612,6.729,16.1675,77.5492,84.8303,0.6911,0.6321,17.0143,0.5907,91.4332,84.4765,83.5165,92.3077,14.1449,2.2033 Derby and Derbyshire ICB,C81084,Inspire Health,23982.73527,7.5393,74.8977,78.125,4.1995,77.8274,79.7468,3.6656,92.7083,7.3919,2.2513,1.116,1.6172,21.5555,8.9044,19.1264,69.6187,83.4371,0.6302,1.2315,14.4369,0.6771,87.8015,83.6394,79.8611,88.1944,14.0239,2.2321 Derby and Derbyshire ICB,C81086,The Surgery Clifton Road,7978.728452,6.351,78.0186,79.646,5.2683,78.8462,82.1622,3.1585,96.8254,8.0963,1.8659,1.0366,1.0795,12.9179,6.1933,18.4146,74.185,85.3333,0.5976,0.4634,10.62,1.6195,92.3953,80.2548,87.9518,96.3855,10.5733,2.2683 Derby and Derbyshire ICB,C81089,Stubley Medical Centre,6475.576832,9.7035,76.2626,84.8485,6.7648,81.7073,84.1121,4.9123,96.2963,12.3643,2.5968,1.7863,0.8645,9.595,8.5788,19.302,76.646,80.663,0.4797,1.8194,7.8609,3.0571,92.4201,76.7773,84.3373,90.3614,7.8313,4.168 Derby and Derbyshire ICB,C81091,Killamarsh Medical Practice,8579.24458,6.4637,74.5856,82.8326,4.0982,81.07,85.2071,3.7929,97.0149,7.8906,2.0784,0.8807,0.6624,14.0824,10.3698,18.7412,64.2643,80.6818,0.3993,0.6224,17.221,2.5767,91.3146,81.8182,89.0511,89.781,12.2105,2.5364 Derby and Derbyshire ICB,C81092,Evelyn Medical Centre,5938.198701,7.173,81.6176,82.1229,6.8595,79.3893,83.9416,4.3379,97.1429,8.7313,1.4107,0.9522,1.6602,8.1726,6.6559,18.9208,70.9184,84.4291,0.2292,0.7053,8.3624,3.4164,87.356,78.0303,91.5254,96.6102,5.7379,3.2622 Derby and Derbyshire ICB,C81094,Crich Medical Practice,8298.965197,6.9483,80.3618,78.4,4.55,80.9524,80.8743,3.8839,94.2308,4.1182,1.9608,1.1061,0.7013,12.2147,6.6558,16.6792,65.3082,78.5047,0.5153,0.7039,9.4002,0.1377,87.5182,81.0811,77.1084,91.5663,7.5543,3.1171 Derby and Derbyshire ICB,C81095,Emmett Carr Surgery,4835.852545,6.9549,73.3766,79.8246,3.1928,79.6296,80.6452,3.0321,93.75,6.8348,1.9076,0.3815,3.0769,16.6277,9.6502,16.1446,74.0146,84.0336,0.241,0.7028,12.7869,0.3586,87.6114,89.4737,87.5,94.4444,13.6453,2.1285 Derby and Derbyshire ICB,C81096,Crag's Health Care,6956.54841,6.46,74.6479,69.2308,3.602,75.5814,77.7778,4.2315,91.6667,2.5365,3.0425,0.577,0.6664,28.1149,10.504,21.7521,77.3176,83.913,1.1366,0.8393,16.1221,0.1177,89.7409,87.6923,90.5263,96.8421,16.7375,2.1507 Derby and Derbyshire ICB,C81097,College Street Medical Practice,6541.086664,7.3405,69.7436,75.3623,3.0806,70.4762,73.8462,3.5861,92.3077,5.4075,2.7488,0.9637,3.3895,18.3985,7.7741,17.8041,59.2466,76.0956,0.9163,0.7741,9.2672,0.4626,84.8774,81.5069,80.2632,88.1579,16.7764,2.2433 Derby and Derbyshire ICB,C81099,Limes Medical Centre,13440.27807,7.0303,71.464,71.0714,3.6534,75.7282,78.9474,3.8383,92.7711,9.0475,2.7377,1.0451,1.1656,24.6809,10.4393,21.3929,65.3039,83.9207,1.2856,1.2949,14.8091,0.317,90.1423,82.5843,71.3514,92.4324,19.6818,2.8209 Derby and Derbyshire ICB,C81101,Lime Grove Medical Centre,8790.273253,9.0627,74.5399,76.0766,4.8658,75.6303,81.8182,3.4586,93.75,7.9828,1.6697,0.6798,0.1436,15.2925,8.753,16.6011,72.7526,85.3035,0.477,0.8587,15.0467,0.5522,89.3408,82.9167,87.3874,95.4955,13.2572,2.1228 Derby and Derbyshire ICB,C81106,Lambgates Health Centre,7158.698835,9.7127,76.4706,78.7356,4.7505,79.5745,76.5957,3.7891,94.7368,3.5814,3.1104,0.608,2.0964,17.1063,6.9031,18.8463,67.8924,82.1101,0.3959,0.7493,16.3871,1.9014,91.9145,93.1507,81.25,93.75,14.4568,2.149 Derby and Derbyshire ICB,C81108,Melbourne & Chellaston Medical Practice,14003.28538,7.383,79.3103,80,4.3183,77.6151,81.9315,2.8553,96.5517,6.4115,1.5143,0.8662,1.6715,9.5979,6.25,17.1383,61.4515,76.5027,0.5197,0.5582,9.0116,1.4883,90.0896,85.7639,76.1905,93.1973,7.7227,1.9827 Derby and Derbyshire ICB,C81110,Wellbrook Medical Centre,9179.573642,6.909,80.4416,85.4772,3.3887,78.9855,83.105,2.4653,95.122,4.2662,1.2115,0.7794,0.7529,7.4545,5.7223,13.0634,69.8785,84.3648,0.5507,0.4998,16.4103,2.025,85.6805,82.8947,89.5833,93.75,7.7911,1.6689 Derby and Derbyshire ICB,C81113,Mickleover Surgery,5663.350343,8.9833,78.1395,80.4348,4.4687,70.1923,79.2453,2.9528,91.0256,7.1012,1.2001,0.9001,3.098,8.8297,7.0071,17.1009,80,86.4341,0.5053,0.6,13.4782,1.6451,91.2051,80.5556,85.2941,94.1176,7.8351,2.037 Derby and Derbyshire ICB,C81114,Gresleydale Healthcare Centre,11915.39249,8.4145,74.7283,73.1293,2.9356,77.8495,75.7202,2.5553,97.0414,5.6954,1.8861,0.5932,2.2604,16.6049,6.6511,14.5562,54.0491,76.7606,0.4563,0.6312,15.8326,0.7072,88.4355,86.8293,85.4962,93.8931,14.5055,1.9773 Derby and Derbyshire ICB,C81115,Gladstone House Surgery,6103.088853,8.6171,70.2703,73.6842,4.1585,79.3548,77.7778,3.4916,92.1569,6.8307,3.7858,1.3535,0.4299,25.4857,8.626,21.4594,66.2831,77.3333,1.53,1.1377,19.8472,0.9158,89.5776,81.6794,78.5714,90,17.2685,2.55 Derby and Derbyshire ICB,C81118,Derby Family Medical Centre,8104.918758,7.9075,67.4847,71.1864,1.3026,67.9715,84.1584,3.739,81.7391,4.1094,0.6513,0.9287,1.1268,36.0018,15.1825,14.0755,73.0928,84.264,1.0735,0.8805,17.8956,0.3808,92.2904,93.2039,92.973,91.3514,10.7276,1.7127 Derby and Derbyshire ICB,C81604,Eden Surgery,4501.152901,11.0462,76.5152,79.3814,3.5859,87.3239,83.3333,3.0872,96.6102,5.2333,2.3985,0.9024,0.8074,22.908,7.6968,14.3909,71.5164,74.5763,0.6887,0.5224,10.9151,0.7738,89.6677,80.4348,93.75,93.75,13.357,2.7784 Derby and Derbyshire ICB,C81611,Ashover Medical Centre,2658.522513,7.585,79.5082,80,6.5998,75.9259,79.661,3.6341,90.4762,5.6256,1.6291,0.919,1.1639,13.1158,7.1911,18.8805,67.4699,75,0.2089,0.4177,6.9835,0.1429,89.9546,76.7857,82.7586,93.1034,6.1466,3.0493 Derby and Derbyshire ICB,C81615,Cottage Lane Surgery,2688.012345,9.3928,72.0588,68.6275,3.4837,79.4521,78.5714,4.2876,95.6522,4.0161,6.4761,1.7419,2.008,36.15,8.8153,16.7039,72.5857,86.7925,0.8039,1.6525,14.6873,0.7335,93.3962,86.8853,85.7143,92.8571,26.2926,2.5458 Derby and Derbyshire ICB,C81616,Peartree Medical Centre,5067.799984,8.1591,66.3043,71.4286,0.9865,74.0113,90.9091,3.4718,92.7536,2.8978,0.702,0.702,0.079,39.6953,15.3313,12.8439,82.4687,89.8305,1.2142,0.8727,22.9452,0.1524,99.6433,93.75,96.5812,97.4359,10.0927,1.6885 Derby and Derbyshire ICB,C81634,Arden House Medical Practice,4478.686353,8.0457,72.6708,75.6757,4.4342,76.3975,74.7368,2.9489,91.8367,1.9909,2.2062,0.3713,3.2822,14.1912,6.4704,14.6134,71.8133,84.8214,0.8956,1.0703,13.5862,0.2057,85.7272,85.9155,80,93.3333,14.6709,1.8567 Derby and Derbyshire ICB,C81638,Castle Street Medical Centre,4592.431637,7.7673,71.9697,73.7374,4.0314,75.4098,79.7468,2.8272,91.4286,4.5225,2.9581,0.6283,1.4232,29.9899,10.2854,18.3508,69.2443,80.303,0.7853,0.9686,23.308,0.1828,90.4215,83.1579,84.375,92.1875,17.7294,2.4607 Derby and Derbyshire ICB,C81640,Simmondley Medical Practice,3305.079113,6.5272,80.4196,85.4167,4.5479,80.7339,84.6154,4.3892,93.1035,3.0123,2.6177,0.5553,1.0924,11.1099,7.352,18.165,70.4584,88.7755,0.5817,0.5024,15.3261,0.4225,92.0898,86.1111,91.8919,97.2973,8.2432,1.9038 Derby and Derbyshire ICB,C81647,St Lawrence Road Surgery,5411.726658,8.9493,76.9663,81.8898,4.6997,79.3103,80.2083,5.3169,100,12.1186,3.3705,1.0207,0.678,25.3358,10.9562,20.6266,61.693,81.3953,0.3798,0.9969,16.1299,0.7326,90.3119,85.1429,74.3243,86.4865,11.6223,2.7771 Derby and Derbyshire ICB,C81649,Calow and Brimington Practice,9132.490558,8.3276,72.2222,78.2178,4.0998,77.3109,82.8025,3.7377,92.2078,7.599,2.9229,0.7372,0.7024,23.0885,10.8959,18.9602,73.7021,86.2543,1.2545,1.0993,18.311,0.4734,86.8995,88.6719,84.2105,93.985,11.9613,2.5608 Derby and Derbyshire ICB,C81652,Derwent Medical Centre,5018.85985,6.2155,67.1642,64.7059,2.3527,69.7917,76,2.6543,95.7447,2.8427,2.6141,0.3821,2.3609,25.8206,5.7081,11.4418,57.1429,77,0.6636,1.8902,8.0463,0.3056,81.7444,81.3333,73.913,91.3043,20.4446,1.8299 Derby and Derbyshire ICB,C81653,Brook Medical Centre,4120.066828,6.1615,69.5238,66.6667,2.8992,71.6867,85.0746,2.2622,91.3044,4.74,1.3617,0.4612,0.9193,17.9881,6.2712,11.0037,62.3116,76.699,0.571,0.9664,8.7906,0.0698,82.5641,79.2683,80.4878,85.3659,16.0312,1.4496 Derby and Derbyshire ICB,C81655,Family Friendly Surgery,4903.66457,5.5666,66.2069,71.5789,4.1394,71.4286,76.3889,4.5479,95.8333,7.7943,2.9412,1.0349,0.3234,28.3032,12.8402,21.4325,63.5772,79.6512,0.7353,1.1983,18.4994,0.1104,92.5112,82.5503,82.1918,93.1507,16.6773,2.6961 Derby and Derbyshire ICB,C81658,Wingerworth Medical Centre,7286.795339,8.8033,83.3333,84.9741,5.4128,86.6071,86.2069,3.7042,98.8636,8.738,2.1597,0.9021,1.3443,12.0922,7.921,17.947,76.087,89.701,0.4784,0.5741,12.2837,0.4145,93.5467,85.6354,87.6404,94.382,7.5854,2.1597 Derby and Derbyshire ICB,C81662,Barlborough Medical Practice,8589.333929,8.2278,75.6667,79.4521,4.2034,84.9802,86.1111,3.3579,91.358,5.9269,2.2225,1.1958,0.8616,18.2315,8.4126,17.6833,62.9967,78.9063,0.459,0.4107,10.5169,1.3252,83.7655,78.3069,90.6542,92.5234,9.8542,2.0413 Derby and Derbyshire ICB,Y01812,Heartwood Medical Practice,11416.95651,7.8271,73.0769,74.1379,3.2696,73.183,74.6114,2.8983,94.9275,6.2806,2.0831,1.2227,0.4311,20.0546,8.5187,14.9534,62.69,77.0149,1.0506,0.8423,18.5388,0.4487,89.3208,79.7794,77.7778,94.0741,17.2458,2.2099 Derby and Derbyshire ICB,Y04977,Creswell and Langwith Medical Centre,6635.95412,6.4329,67.2316,68.9076,3.0767,67.2043,69.6078,4.0482,89.0411,4.381,3.7424,1.0795,1.1683,33.1502,10.9559,21.7704,60.387,80.7018,0.7377,1.2774,19.007,0.6399,88.4569,88.961,76.0417,88.5417,22.7134,2.6808 Derby and Derbyshire ICB,Y04995,Royal Primary Care Chesterfield,23735.20393,8.5219,66.8285,68.9252,4.1767,69.4974,72.4852,3.9147,97.191,7.4248,3.5216,0.6918,1.2276,31.6499,10.5756,18.1008,73.0416,89.0323,0.6918,1.4254,18.024,2.2536,89.3946,85.8347,80,93.2258,24.3551,2.3635 Derby and Derbyshire ICB,Y05286,Lister House Chellaston,15751.4312,5.7541,70.4871,72,2.6283,68.0535,72.2449,2.1521,91.5966,4.7017,1.5111,0.6527,0.5169,27.365,6.649,10.7544,64.8631,79.845,0.9643,0.8173,14.2447,2.7827,83.9072,81.0909,74.6753,92.8571,20.28,1.517 Derby and Derbyshire ICB,Y05733,Parkfields Surgery,7664.60631,7.3541,65.4255,62.1212,2.8973,68.6275,71.028,2.9834,93.421,5.2928,2.7252,0.6024,1.928,32.9173,7.6951,16.3081,66.7364,81.768,1.2048,1.3483,14.9509,1.3141,89.1701,84.7561,76.8293,92.6829,20.7613,2.2519 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence Suffolk and North East Essex ICB,D83001,Constable Country Rural Medical Practice,10014.41735,7.9941,78.1609,82.7465,6.1657,80.2158,82.5893,4.1198,94.2857,7.5562,1.5903,0.6789,1.4133,8.4913,7.2089,18.8878,75.1519,86,0.3627,0.4929,13.7881,3.1039,84.4423,81.0606,84.4828,93.9655,8.8118,2.4737 Suffolk and North East Essex ICB,D83004,Felixstowe Road Medical Practice,10133.54732,6.338,75.1309,80.695,3.948,74.0132,78.4615,3.5243,90,4.4778,1.6274,0.4622,0.6734,19.4687,9.1534,16.3987,64.3185,81.6121,0.7415,0.6837,13.7406,0.3096,86.2822,84.6154,80.5556,88.1944,13.7587,1.7814 Suffolk and North East Essex ICB,D83006,Bildeston Health Centre,7349.167968,7.2932,81.9209,80.7018,7.1085,80,80.6061,4.4093,98.1132,4.9325,1.5687,0.5229,0.9665,14.1574,6.4798,20.6755,75.5989,83.0357,0.4098,0.5653,7.882,1.728,89.2368,91.3044,81.4815,92.5926,9.0807,2.3601 Suffolk and North East Essex ICB,D83007,Ixworth Surgery,9637.677928,8.9908,77.2021,78.7879,4.8056,75.9184,76.7773,3.5313,94.5206,2.0913,1.9438,0.9719,0.8207,13.0752,8.2594,15.27,57.9535,72.8614,0.3456,0.6264,9.6095,0.2381,88.7258,85.4546,78.8136,85.5932,10.9707,2.0086 Suffolk and North East Essex ICB,D83008,Burlington Primary Care,16716.78249,6.1503,67.0379,68.4564,2.5149,57.5806,64.2553,2.3148,78.6885,4.7121,1.4803,0.4287,1.0824,29.0607,7.4998,13.163,60,81.3239,0.6344,1.2231,12.159,1.1234,81.3795,84.7458,78.7879,89.3939,22.3014,1.4575 Suffolk and North East Essex ICB,D83015,Howard House Surgery,10224.44736,8.31,76.1039,81.1715,4.9544,74.4076,78.7879,5.0129,87.7193,8.9818,3.1316,1.7995,0.7148,18.0886,9.4151,23.9308,68.421,80.6291,0.6544,1.0049,13.203,0.3756,93.8453,73.2852,77.9412,88.2353,14.0111,2.9212 Suffolk and North East Essex ICB,D83017,Needham Market Country Practice,13347.41292,7.431,77.9851,84.5714,4.4837,78.125,76.7528,3.5463,93.5252,6.0508,1.9984,1.1118,1.1417,11.7993,7.3669,18.0438,65.8405,80.2233,0.4796,0.7848,11.2409,3.0102,85.7815,82.2951,88.3117,94.1558,12.4471,2.5289 Suffolk and North East Essex ICB,D83019,Mendlesham Medical Group,7396.495157,7.97,78.9617,83.8298,5.0456,78.3333,78.3626,3.5463,90.7407,2.1939,2.0209,0.4954,0.5757,15.4244,7.4916,17.6271,68.5476,82.6568,0.2347,0.6128,10.4559,0.197,88.9463,86.6667,88.3721,95.3488,10.6017,2.4772 Suffolk and North East Essex ICB,D83020,The Holbrook and Shotley Practice,7939.238,6.1433,76.0807,78.6957,5.0171,75.1295,77.7778,4.2951,92.4528,3.6104,1.2849,1.2971,0.3489,12.6974,7.6467,17.7925,71.9349,88.2927,0.3059,0.6853,12.2876,2.4237,90.5987,87.8613,86.3636,95.4545,8.8615,2.4963 Suffolk and North East Essex ICB,D83024,Ivry Street Medical Practice,12442.43465,6.569,75.8772,82.3529,3.1167,72.6218,78.022,2.8866,96.9388,5.4311,1.2318,0.6975,0.6274,20.0886,6.6408,14.3663,70.8305,83.956,0.5491,0.8014,11.7494,0.2787,91.0625,83.8174,87.9699,95.4887,12.0269,1.8181 Suffolk and North East Essex ICB,D83026,Framlingham Surgery,8826.239801,7.4727,79.7561,85.0575,4.7956,78.8732,79.6209,3.9294,96.875,9.7936,1.5422,1.3415,0.3484,12.4922,7.0257,17.9465,82.7948,90.8894,0.4225,0.7817,10.0903,1.3304,90.9242,85.3982,94.9495,96.9697,9.3167,2.5246 Suffolk and North East Essex ICB,D83028,Leiston Surgery,10469.89297,8.2181,76.7654,80.7547,4.9371,73.6842,76.6304,4.2605,94.8718,7.3134,2.0298,1.2581,1.3713,18.5067,8.3156,19.9281,70.4883,83.6864,0.5497,1.2369,13.5856,0.6358,92.0195,82.8452,89.5652,93.913,14.4947,2.8227 Suffolk and North East Essex ICB,D83037,Hadleigh Boxford Group Practice,15844.68746,9.6085,79.2126,82.1002,5.3497,79.1183,80.2432,4.0881,96.4789,7.7104,1.7317,1.3173,0.7148,11.7476,7.5475,18.7519,74.8042,86.8757,0.6123,0.7731,12.0523,2.2108,91.066,79.1155,89.6739,96.7391,10.92,2.6656 Suffolk and North East Essex ICB,D83041,Debenham Group Practice,8418.355252,8.9189,80.6742,84.0136,5.3624,79.1489,83.7004,3.6339,94.5455,6.8225,1.3328,0.5935,0.6157,12.7565,6.8143,17.6697,69.5554,85.4054,0.4061,0.7393,16.0824,0.6122,93.3675,81.9905,94.0594,99.0099,10.0911,2.2803 Suffolk and North East Essex ICB,D83043,Eye Health Centre,6189.232607,7.9304,78.9091,83.2335,5.0225,73.7931,80.4511,3.7669,95.2381,5.8206,1.8674,1.1591,0.3626,15.7003,7.7184,16.5325,59.8649,76.3066,0.4507,0.66,12.6145,0.5036,86.3918,80.6452,78.6667,85.3333,11.8766,2.6239 Suffolk and North East Essex ICB,D83044,Stowhealth,21495.67919,8.674,77.5714,83.2985,3.8659,76.9923,78.2842,3.1707,96.0432,5.2884,1.8422,0.9255,1.6216,14.6507,7.5481,18.993,68.2145,84.7529,0.7085,0.8547,14.7395,0.8702,90.7003,81.8966,90.2834,93.5223,13.9669,1.8953 Suffolk and North East Essex ICB,D83046,Two Rivers Medical Centre,26697.13004,6.9345,75.5631,81.6393,3.7601,70.7585,79.0514,3.1743,96.8085,6.1752,1.3263,0.9392,1.4611,14.9854,6.7192,14.4612,66.7582,80.6293,0.4915,0.919,13.1667,0.2188,85.8378,84.396,90.4437,94.5392,12.1784,1.875 Suffolk and North East Essex ICB,D83048,Grove Medical Centre,18086.34449,8.2615,78.3887,83.871,6.0205,80.9412,80.5471,5.1842,94.1667,8.9399,2.8234,0.9194,1.0981,16.6797,8.8303,20.3274,71.6164,85.6124,0.605,1.044,17.2533,2.8356,92.0886,86.0153,93.8326,95.5947,14.5011,2.6929 Suffolk and North East Essex ICB,D83049,Little St John Street Surgery,7579.426868,8.3383,79.2079,84.7291,7.2779,79.6407,82.7815,4.6991,97.6744,10.576,1.6619,1.3897,0.6736,10.9452,6.5192,20.2292,73.0325,83.6601,0.5014,1.5043,8.2688,1.7803,90.6133,74.5098,93.0556,95.8333,9.4181,3.1662 Suffolk and North East Essex ICB,D83050,Cardinal Medical Practice,27424.48925,7.2262,70.3617,77.0134,3.4877,70.457,72.8421,3.3223,86.121,6.5677,1.7473,0.6927,1.2564,23.0712,8.2057,16.2049,59.3184,79.1045,0.8788,1.0029,14.8531,0.9302,88.6902,85.1689,86.3372,88.0814,18.9677,1.961 Suffolk and North East Essex ICB,D83051,The Derby Road Practice,17310.04727,7.2626,75.6506,78.2946,3.4676,75.4518,77.439,2.9609,94.382,4.7747,1.652,0.6756,1.0693,20.7254,7.3837,14.3611,67.8098,81.4607,0.7336,0.9342,15.0034,0.0872,90.1686,85.8696,86.8293,93.1707,15.852,1.7787 Suffolk and North East Essex ICB,D83053,Saxmundham Health Centre,9963.168083,7.455,78.271,76.9784,5.3795,77.9736,80.1932,4.5184,88.1579,7.4227,1.9668,0.8824,0.9536,19.037,7.7942,21.38,72.5902,88.8889,1.1269,1.1057,16.3273,0.7781,87.8938,83.6135,88.8889,94.4444,13.1514,2.8599 Suffolk and North East Essex ICB,D83054,The Peninsula Practice,7385.963425,7.7053,80.1105,81.7352,6.3767,71.1268,75.7962,5.415,87.8788,4.5749,2.3524,1.4203,1.5705,18.27,6.722,21.9559,70.0554,82.3383,0.3847,0.8433,12.7177,1.7064,89.3091,86.8613,83.0986,84.507,10.4973,3.2993 Suffolk and North East Essex ICB,D83056,Hawthorn Drive Surgery,10898.15588,7.6037,64.0625,70.9677,3.0294,73.822,75.8621,3.0294,89.2086,3.4487,2.0418,1.2631,2.5897,32.3091,8.3406,13.7607,58.8801,71.5686,0.8927,1.358,12.2158,0.4961,88.9208,81.3559,71.4286,80.1587,22.9283,2.0323 Suffolk and North East Essex ICB,D83057,Framfield House Surgery,13707.90156,7.0348,80.5243,83.844,5.8944,79.5396,82.8467,3.6479,93.8053,6.2193,1.3099,1,1.0088,10.6345,6.5319,18.9014,73.6148,85.0444,0.4155,0.9437,11.8509,0.7451,90.9878,80.1394,91.7293,98.4962,9.1207,2.4296 Suffolk and North East Essex ICB,D83059,Barrack Lane Medical Centre,19044.14213,5.8571,69.5745,71.9764,2.1661,70.3022,76.0135,2.4206,84.6457,4.9577,1.5465,0.4947,1.1354,29.1893,6.7451,13.0878,66.2912,78.4173,0.682,1.0374,12.3124,0.572,85.3041,85.6448,86.5285,90.6736,22.9991,1.6138 Suffolk and North East Essex ICB,D83061,Wickham Market Medical Centre,9169.375276,7.3287,78.1991,82.1818,5.8681,78.0876,82.6923,3.4483,94.8718,6.4263,1.5326,1.3208,0.7604,13.2523,6.5291,16.7776,71.5195,82.3096,0.3327,0.6655,11.8102,1.4928,90.1515,85.0267,85.4167,91.6667,11.5298,2.5106 Suffolk and North East Essex ICB,D83069,Fressingfield Medical Centre,6166.910594,7.6233,80.5825,78.8945,5.6042,84.0278,84.2105,3.7733,96.9697,8.0916,1.9901,0.6209,0.5916,15.5025,6.1663,17.7201,67.3913,80.3509,0.2866,0.7005,13.7786,0.1429,88.5082,83.4711,91.8033,90.1639,10.6791,2.3245 Suffolk and North East Essex ICB,D83073,Dr Solway & Dr Mallick Practice,5164.157829,5.6356,65.9574,70.1031,2.5013,60.9302,67.5,2.4844,78.125,9.3246,1.6901,0.8619,0.531,26.294,7.0499,12.6753,70.2564,91.5152,0.4901,1.1154,7.9014,0.2247,82.3985,78.1955,93.4426,88.5246,18.4691,1.4703 Suffolk and North East Essex ICB,D83074,Orchard Medical Practice,12229.46036,5.6028,66.6667,74.7863,2.8941,60.1124,74.1294,2.1464,89.3443,3.6912,1.5579,0.7062,0.8232,25.4973,6.057,11.7496,71.203,84.1962,0.5608,1.0455,11.0043,0.3676,79.813,81.448,85.1563,95.3125,18.215,1.3848 Suffolk and North East Essex ICB,D83079,Combs Ford Surgery,9751.461638,8.3166,74.7801,82.5,3.9739,73.8007,75.3695,3.6107,98.5075,3.6159,1.8801,1.1217,0.6739,17.0226,7.6324,18.3421,62.1906,76.8229,0.9187,1.1217,14.7486,0.4193,90.3866,83.1461,81.7308,86.5385,15.1454,2.3822 Suffolk and North East Essex ICB,D83080,Martlesham Surgery,5393.808563,7.129,80.083,83.8028,4.236,78.1818,85.0467,3.4964,93.0233,6.6984,1.328,0.6051,0.8683,7.3497,6.7548,18.4737,73.8824,85.9438,0.2017,0.8069,13.7689,0.1824,90.2587,77.8689,89.6552,98.2759,8.6454,1.9667 Suffolk and North East Essex ICB,D83081,Haven Health,9037.310928,7.931,72.1003,79.9127,4.9318,85.6557,86.1111,4.104,95.7143,7.721,2.4368,1.4224,1.1746,22.6758,9.466,18.3281,73.165,81.6393,0.7462,1.3291,19.1806,0.7889,91.1369,81.3765,90.0901,96.3964,19.2509,2.3435 Suffolk and North East Essex ICB,D83084,The Birches Medical Centre,6275.646069,6.0327,76.8519,80.8219,5.0927,73.224,78.8618,4.211,92.8571,6.719,1.2618,0.8969,0.8423,7.21,8.049,17.1329,68.0348,76.7802,0.5929,0.6233,10.7963,0.1376,87.2683,93.7853,88.75,91.25,8.3755,2.2651 Suffolk and North East Essex ICB,Y01794,Ravenswood Medical Practice,15165.38206,7.066,71.748,76.0736,3.906,76.7932,77.5591,3.4003,89.0625,6.3,2.1227,0.9183,1.6687,24.3987,9.1753,16.3694,62.5387,78.7356,0.885,1.0181,18.3041,0.3408,89.9663,84.456,87.0647,93.5323,16.9305,2.0562 Suffolk and North East Essex ICB,F81012,West Mersea Surgery,8867.003951,6.9234,79.4444,80.3571,7.8133,79.2208,78.6585,4.376,94.4444,12.1706,1.917,1.0841,1.6603,12.4996,7.8904,23.2417,71.8826,89.2655,0.8065,0.6478,13.6329,3.4384,88.8934,78.8793,94.6809,98.9362,10.2704,3.0407 Suffolk and North East Essex ICB,F81017,Walton Medical Centre,11429.8143,8.0484,73.201,61.8852,5.9384,71.5084,73.8095,5.7695,85.7143,6.2261,3.621,1.9071,2.0565,28.0371,10.9318,25.0332,61.631,73.8754,0.7604,0.9415,18.7066,0.329,91.8234,84.8375,91.1565,91.8367,15.2944,3.6572 Suffolk and North East Essex ICB,F81019,Mayflower Medical Centre,19691.47281,6.6017,72.1854,65.122,4.2785,73.1405,76.7802,3.5299,87.1345,7.7233,2.4646,1.169,2.2672,28.8931,9.8003,18.2138,68.3486,78.5621,0.6392,1.0595,21.2828,0.4838,89.1968,85.2156,91.6996,94.8617,18.7964,2.3609 Suffolk and North East Essex ICB,F81021,Great Bentley Surgery,12670.68716,8.2588,77.6471,72.9483,5.9527,82.5455,80.8333,4.3521,95.5056,4.5102,2.5088,0.7913,1.324,20.963,9.5122,21.2751,68.7366,80.3213,0.7284,0.8003,14.9623,0.7653,89.2846,88.2784,93.7888,95.6522,11.7565,2.3469 Suffolk and North East Essex ICB,F81026,Caradoc Surgery,11724.09728,8.2332,77.4194,69.1057,7.4925,70.4403,75.4717,6.0423,95.2381,12.1229,2.3928,2.3928,0.923,19.4795,10.1352,26.1631,58.8195,78.0029,0.3021,1.0272,12.3158,0.5277,92.1544,82.2857,86.2319,92.7536,9.9498,3.7221 Suffolk and North East Essex ICB,F81028,Wivenhoe Surgery,7905.233003,6.7575,79.5031,81.6514,4.6748,74.5583,79.1908,3.032,87.5,5.2059,0.9813,0.9372,1.3457,7.6774,5.3267,15.5568,70.2519,87.0712,0.3197,0.7167,11.4857,1.7684,86.8711,84.8485,95.6522,97.1014,9.5136,1.7089 Suffolk and North East Essex ICB,F81037,East Lynne Medical Centre,11690.6899,9.6021,63.0662,55.5556,3.8297,71.4286,77.4194,4.0313,91.7808,8.0395,3.1658,1.4228,2.1242,45.3172,9.9273,20.1684,64.6512,84.4282,1.9564,1.8971,17.4657,0.1402,93.7845,81.25,88.0597,95.5224,21.6331,2.5966 Suffolk and North East Essex ICB,F81042,Colchester Medical Practice,39614.26995,5.6481,71.1274,69.4514,3.8343,71.7456,78.1899,2.5774,91.4508,5.6107,1.7132,0.7011,1.7845,21.8288,6.7464,13.9375,74.2984,87.7414,0.5609,1.16,13.0255,3.0139,87.5386,84.5926,94.4444,96.8254,16.06,1.4634 Suffolk and North East Essex ICB,F81044,The Ardleigh Surgery,7239.491944,7.5716,80.7453,74.7664,5.8785,81,85.9756,3.0054,91.3793,5.2792,2.5553,1.2578,2.3909,14.0648,7.118,15.6627,70.7207,85.0848,0.4104,0.7282,11.7298,0.3475,91.6865,80.5556,92.6829,96.3415,8.068,2.2772 Suffolk and North East Essex ICB,F81052,St Jame's Surgery,22206.96695,8.7179,72.7554,64.9165,6.2,78.3854,81.7544,4.8813,94.4444,6.9572,3.0245,1.5615,2.2266,39.1917,11.6263,25.6856,67.6775,78.5072,0.6692,1.076,21.8542,0.4752,94.0873,83.0443,94.403,96.6418,15.8071,3.1164 Suffolk and North East Essex ICB,F81067,Ambrose Avenue Group Practice,15094.58674,8.1902,76.834,71.4689,4.2799,76.6816,78.853,3.2401,91.5966,3.9724,1.7643,0.9727,1.0471,13.5272,7.1973,16.2809,75.4193,82.235,0.8587,0.7379,10.8867,0.8439,88.9331,84.4358,93.2099,94.4444,10.8428,2.1265 Suffolk and North East Essex ICB,F81069,Winstree Medical Practice,7395.804637,6.377,76.6393,76.9697,3.6028,76.3158,75.7143,2.6743,91.954,2.7201,1.4733,0.6933,1.4969,13.8454,6.6635,15.0303,65.3486,77.0751,0.8048,0.8419,11.1862,0.1618,91.4349,85,93.5897,97.4359,12.1073,1.3495 Suffolk and North East Essex ICB,F81091,East Hill Surgery,9507.746439,6.1942,71.3693,69.8795,3.3497,66.4789,75.9124,2.6077,88.5714,6.0643,2.1495,0.6983,1.3655,22.0752,6.8537,14.9373,77.1896,85.4546,0.5346,1.233,12.2088,2.5464,89.157,89.5288,92.5532,96.8085,16.6287,1.8331 Suffolk and North East Essex ICB,F81095,Abbey Field Medical Centre,21224.7536,6.8601,69.3957,62.0419,2.7674,70.398,75.5776,2.2977,85.9922,4.2557,2.1918,0.6585,2.0329,24.9754,7.5676,12.0643,71.1494,86.1996,0.9992,1.409,15.5226,0.5461,90.4843,89.6277,92.1053,96.0526,22.5177,1.4275 Suffolk and North East Essex ICB,F81115,Creffield Medical Group,27223.58133,6.5015,75.1055,72.7692,4.6438,67.9688,74.6269,3.4793,91.2664,5.4183,1.6396,1.2074,1.1557,15.0734,6.7873,15.9641,62.4235,77.602,0.4215,1.0074,13.6279,0.4002,85.331,81.5175,89.3238,96.4413,11.7111,1.954 Suffolk and North East Essex ICB,F81116,Colne Medical Centre,12235.92349,7.2929,74.4875,69.0391,6.2438,76.6323,78.5047,4.2352,90.9091,7.9886,2.2358,1.5087,1.5363,17.0389,9.0555,20.867,68.1338,82.9392,0.5635,0.8543,14.4848,1.0228,87.1227,84.4985,93.3775,95.3642,14.0111,3.1264 Suffolk and North East Essex ICB,F81133,Tiptree Medical Centre,12362.98256,8.084,79.4372,71.5686,4.4621,79.3313,80.4167,3.1059,95.4546,5.6458,1.7413,0.6363,0.8124,12.1496,8.0705,18.7861,75.9304,84.7751,0.5525,0.7786,10.3777,0.1536,90.512,83.5821,89.8649,93.9189,11.1469,2.0678 Suffolk and North East Essex ICB,F81141,Rowhedge Surgery,9982.267806,3.2225,78.6585,76.4706,1.2291,41.0112,81.7204,1.0223,98.2143,1.4397,0.455,0.4964,0.7695,13.6738,1.6382,4.7982,72.4843,92.0455,0.1832,0.4491,6.0506,1.1106,88.5058,86.076,90,95,15.1957,0.5791 Suffolk and North East Essex ICB,F81156,Ranworth Surgery,12914.34781,9.7256,69.375,60.2941,5.0619,64.539,70.7483,3.476,87.6106,9.4874,3.0741,1.9009,0.7362,45.0502,10.5955,17.7493,65.4546,81.8396,1.5425,1.1297,15.3771,0.2095,92.4427,78.4247,92.3611,97.2222,21.5949,2.6179 Suffolk and North East Essex ICB,F81212,Old Road Surgery,13497.68242,8.4104,57.1006,50.4505,3.3404,69.3069,66.8605,3.9038,76.9231,6.5962,4.3163,1.3583,4.303,48.1608,11.0293,16.722,68.5994,80.8383,1.2677,2.4449,15.7176,0.1766,91.8058,85.4037,78.882,93.1677,31.8634,2.4248 Suffolk and North East Essex ICB,F81213,Thorpe Surgery,8478.14392,7.4756,77.7159,71.9457,5.8965,77.9006,81.761,4.0064,89.8551,7.6578,2.4757,1.1713,1.0734,21.7975,8.1736,19.6326,79.9111,87.7143,1.0382,0.5457,19.2727,0.2481,87.7209,80.597,92.7083,96.875,10.7521,2.4624 Suffolk and North East Essex ICB,F81221,Fronks Rd Family Surgery,5502.029597,7.7101,73.2673,65.625,3.6183,64.5833,67.3684,2.7833,80.8511,7.3372,2.1471,0.6958,2.964,28.7488,7.7034,15.9245,66.0883,74.8503,0.6362,0.7356,12.3664,0,85.5314,85.8407,76.7857,91.0714,17.5527,1.4115 Suffolk and North East Essex ICB,F81606,Harewood Surgery,3028.633834,9.8761,78.7402,76.25,5.9438,87.5,86.8852,3.9986,100,10.1824,3.5303,1.2248,1.0607,21.2123,8.7558,19.2003,79.5824,92.1569,0.5404,0.5043,19.3466,0.7353,93.053,82.7957,100,100,8.2759,2.6657 Suffolk and North East Essex ICB,F81633,Lawford Surgery,4092.444783,6.9601,75,75.2475,4.5294,82.2368,84.4156,2.7618,93.9394,3.5239,1.3036,0.5303,1.7758,15.0137,7.4795,13.6324,67.9739,73.4177,0.6849,0.5303,11.8757,0.0535,88.8837,94.2857,93.8776,95.9184,10.7422,1.4582 Suffolk and North East Essex ICB,F81636,Mill Road Surgery,13699.95883,6.4913,75.4144,70.8904,2.9169,73.2877,79.5455,1.8281,92.0561,4.5101,0.9914,0.5616,0.8776,12.7373,6.0245,11.2436,73.8657,88.3495,0.6877,0.7851,13.0266,0.3423,86.3586,86.8085,91.5493,97.1831,10.3745,1.0888 Suffolk and North East Essex ICB,F81679,Highwoods Surgery,7833.304725,6.5481,70.5882,61.0738,2.6919,69.2857,68.6131,2.3942,86.25,2.5718,1.4883,2.3424,1.0619,15.9563,7.298,13.5887,70.4797,86.076,0.9706,1.4365,10.7848,0.5381,86.737,78.7611,93.75,96.25,15.5319,1.8377 Suffolk and North East Essex ICB,F81681,Clacton Community Practices,27023.36376,10.0261,68.6369,57.9281,6.0075,66.1585,68.3007,6.4093,90.2913,12.7341,5.2542,1.494,0.7534,41.003,13.9478,27.7778,69.9118,83.7434,0.6026,1.0609,19.2218,0.3929,91.6551,85.1141,93.5754,96.3687,19.8531,3.5279 Suffolk and North East Essex ICB,F81716,Tollgate Health Centre,8326.818525,6.6146,73.7778,72.8261,2.6524,77.4869,78.4431,2.0551,94.8148,4.271,1.2553,0.6884,1.6334,13.8214,6.6324,11.6623,60.1942,76,1.063,0.9111,9.988,0.4218,89.4864,79.5775,93.4783,96.7391,12.4535,1.4983 Suffolk and North East Essex ICB,F81741,North Clacton Medical Practice,15086.96172,8.6192,67.1458,60,4.7809,70.229,70.5314,5.2627,81.6092,10.5502,3.808,0.9173,2.2868,34.8793,12.2868,24.0248,72.7414,86.6567,0.6856,1.0284,16.3831,0.7532,93.3833,80.4825,86.6359,95.3917,17.5667,2.6962 Suffolk and North East Essex ICB,F81746,Bluebell Surgery,2842.49677,7.0442,66.6667,59.6491,1.5024,74.375,79.6296,1.476,89.1304,1.4383,1.0016,0.1318,1.1866,15.7694,5.2687,9.1987,59.4427,73.0769,0.2636,1.107,8.5221,0.112,92.0339,96.1539,92.3077,96.1538,16.0265,0.5008 Suffolk and North East Essex ICB,F81757,The Riverside Health Ctr,6699.939116,7.1744,79.9257,74.8603,5.539,82.9268,80.4348,3.0673,95.9184,4.1751,1.2656,1.0721,1.1955,14.5889,6.549,16.9446,68.1416,81.1966,1.0721,0.8934,12.746,1.1542,87.1606,93.1035,92.4242,96.9697,10.0126,1.9804 Suffolk and North East Essex ICB,Y02646,Turner Road Surgery,8400.925999,5.0726,62.6866,56.6667,1.2907,62.5222,68.595,1.2538,89.3048,1.1309,0.8113,0.1659,0.7878,17.113,5.686,7.4214,66.8442,77.7778,0.295,0.7652,11.6518,0.3101,90.4927,89.4737,87.3418,96.2025,15.0388,0.5992 Suffolk and North East Essex ICB,D83003,Wickhambrook Surgery,5599.064414,8.5368,75.5906,82.3171,5.4514,80.1724,77.9661,4.0789,90,6.1215,2.3777,0.8312,1.1878,15.3888,7.5531,18.5386,62.8651,80.8333,0.4446,0.4833,9.1823,0.523,83.2436,92.0635,85.7143,92.0635,9.8928,2.1458 Suffolk and North East Essex ICB,D83005,Angel Hill Surgery,15939.48342,8.593,74.6063,79.4203,4.393,67.4473,77.0992,3.2559,96.8254,6.9425,2.0199,1.1159,0.4271,15.0323,7.8496,17.7343,71.0087,84.1495,0.7628,1.017,8.3829,3.579,88.7322,85.0649,80.6061,89.697,13.6684,2.1682 Suffolk and North East Essex ICB,D83012,Unity Healthcare,21426.33282,7.8038,74.4991,76.9029,3.6308,74.902,80.2985,3.1491,93.038,4.793,2.209,0.7638,0.8769,18.749,9.4792,18.9589,65.7088,81.8477,0.5699,0.6404,14.8399,0.2041,84.3853,84.9885,78.9474,90.5817,16.332,1.6862 Suffolk and North East Essex ICB,D83013,The Guildhall and Barrow Surgery,14964.95176,8.0902,78.5563,78.0645,4.9663,71.6049,79.4466,3.7828,90.1786,7.6475,2.4195,1.206,0.4925,14.1959,8.5067,18.5843,74.9302,83.7681,0.6442,0.8839,11.1668,3.3328,91.4915,83.2487,84.3023,91.2791,13.1737,2.412 Suffolk and North East Essex ICB,D83018,Market Cross Surgery,13989.76184,8.0125,74.4921,74.4027,4.6861,71.3924,72.1739,3.8785,89.5652,3.5885,2.9588,0.8956,2.0676,18.7037,9.4901,17.521,75.0898,85.6046,0.6557,0.8797,15.7754,0.5396,81.7294,87.8136,85.3107,92.0904,17.122,2.0312 Suffolk and North East Essex ICB,D83021,Haverhill Family Practice,17159.1228,6.1409,74.3852,75,3.0673,69.4153,78.0645,3.0193,91.6335,1.982,2.4645,0.6935,0.9978,19.108,8.6968,14.4831,65.8893,79.9242,0.4108,0.6882,17.202,0.5505,85.3757,89.1118,74.7899,93.6975,18.7883,1.5523 Suffolk and North East Essex ICB,D83027,Orchard House Surgery,11162.00963,6.0956,72.4227,75.2688,3.4765,74.9441,76.4444,2.5164,92.3664,1.8022,1.4734,0.6125,0.3544,15.245,5.5522,13.4012,70.5371,80.17,0.2732,0.687,7.9984,0.9271,85.5332,85.8108,86.9159,92.5234,17.1786,1.6555 Suffolk and North East Essex ICB,D83029,The Rookery Medical Centre,13877.43782,6.8937,72.0621,75.0865,4.0914,70.7006,79.2035,2.7088,95.5357,3.0903,2.3349,0.7548,0.9515,15.4135,7.1375,14.1366,76.4068,82.7977,0.4162,0.8042,7.5699,0.7721,85.2221,88.1423,89.375,93.75,18.4974,1.8835 Suffolk and North East Essex ICB,D83033,Botesdale Health Centre,10455.44018,8.7313,81.2903,80.4714,5.3819,77.7293,81.6239,4.0263,94.3662,4.8848,1.9525,0.6677,1.6959,15.135,7.4065,20.4552,62.9228,79.7802,0.4047,0.8093,14.6065,0.5343,91.8398,80.3922,84.2593,93.5185,9.2248,2.2256 Suffolk and North East Essex ICB,D83038,Mount Farm Surgery,14935.18953,8.1261,80.8349,81.7942,4.4486,78.2696,80.2548,3.3284,92.9936,7.0852,1.7026,1.0049,0.9905,10.71,6.8162,16.5013,69.5874,83.4146,0.5953,0.8065,10.8555,3.0344,89.8381,79.8246,78.3439,85.9873,11.5046,2.0227 Suffolk and North East Essex ICB,D83040,Victoria Surgery,11621.4508,7.956,76,80.7377,4.1887,72.093,76.7677,3.5499,92.8571,7.0144,1.9073,1.0038,0.353,15.2495,7.5167,16.3899,70.7447,85,0.8213,0.9856,11.5236,1.7447,87.0827,84.6154,84.2975,93.3884,12.3786,2.0533 Suffolk and North East Essex ICB,D83045,Lakenheath Surgery,5904.084567,7.1196,75.2381,74.6479,4.2662,75.4717,74.7826,3.2088,93.1818,3.2018,2.5889,0.547,0.5483,16.374,9.2721,17.3929,64.8721,83.8863,0.4376,0.5105,17.3465,0.2337,90.6912,86.2069,87.8049,93.9024,15.0874,2.2789 Suffolk and North East Essex ICB,D83055,Woolpit Health Centre,16064.8201,9.1681,80.1515,84.3458,5.707,78.8991,80.4281,3.4803,92.2535,8.4025,2.2703,0.5551,1.0579,10.3717,8.5701,19.0981,76.4059,82.6399,0.3618,0.6611,11.0587,1.1802,89.8667,79.6137,91.7874,96.6184,10.6843,2.289 Suffolk and North East Essex ICB,D83060,Hardwicke House Group Practice,26191.76847,8.3899,75.2887,77.4247,5.228,75.4772,75.2049,3.4009,91.5493,2.6756,2.1593,0.9924,1.5152,17.9576,7.8077,16.9421,69.0017,82.1333,0.5689,1.0049,10.5402,1.7222,90.1015,86.3931,91.5541,91.8919,14.3614,2.1718 Suffolk and North East Essex ICB,D83062,Forest Surgery,9689.514198,7.9967,70.5329,71.2871,6.4427,75.1174,73.6111,4.7958,83.6066,8.161,4.3215,1.1199,1.6227,20.0697,11.6381,21.1462,67.6565,84.6797,0.4216,0.6192,18.2469,4.9622,90.8255,79.0164,85.3147,95.8042,18.9674,2.7931 Suffolk and North East Essex ICB,D83064,Glemsford Surgery,4935.812111,9.5163,77.8846,79.3893,4.2726,77.686,81.7204,4.0376,92.6829,7.6186,3.2044,1.0041,1.5807,14.234,8.4229,20.188,70.7627,79.3249,0.3418,0.7904,15.6776,0.5,90.6404,80.4878,82.5397,92.0635,12.8173,1.709 Suffolk and North East Essex ICB,D83067,Oakfield Surgery,6739.294762,7.2627,74.026,78.4884,4.4557,76.7176,79.6053,2.5851,92.7711,4.9657,1.8836,0.7275,0.7024,13.7099,6.5077,14.6662,72.1591,88.755,0.4287,0.6365,9.8987,0.9287,89.2066,79.4521,87.3239,95.7746,13.9542,1.5589 Suffolk and North East Essex ICB,D83070,Stanton Surgery,6109.750482,8.8719,75.7447,75.8389,5.9958,75,71.028,3.8572,87.2727,6.9649,2.9788,0.7829,0.9686,14.4531,10.1985,23.3913,53.7788,66.0256,0.5347,0.802,14.0221,0.2156,85.3048,84.8485,77.7778,88.8889,13.3009,2.4251 Suffolk and North East Essex ICB,D83075,Siam Surgery,12277.17576,7.2967,76.0664,76.5886,4.3522,76.4075,77.2152,3.1759,92.3729,3.3185,2.361,0.8906,1.6592,18.7234,8.6663,15.5856,64.8252,79.0588,0.5965,0.9914,14.3628,2.4157,90.4762,84.5588,82.5806,92.2581,17.3209,1.6132 Suffolk and North East Essex ICB,D83076,Clare Guildhall Surgery,5652.678143,7.8052,78.4,80.8642,6.0742,81.5789,80.9917,4.4245,93.9394,8.5178,1.7998,0.5812,0.4918,14.1801,8.4089,20.1537,64.4279,79.7048,0.3,0.7874,10.8428,1.0167,89.6002,88.0795,78.0488,95.122,8.1642,3.0746 Suffolk and North East Essex ICB,D83078,The Reynard Surgery,8847.495149,7.1135,75.3623,73.4375,2.7927,74.8744,77.2727,2.2262,93.7008,4.2982,1.7094,0.3081,0.199,16.4459,7.327,12.5721,77.809,87.3096,0.4572,0.5764,11.7803,0.1588,88.5201,74.7059,86.5979,94.8454,15.5126,1.3814 Suffolk and North East Essex ICB,D83610,Swan Surgery,12196.59955,7.6029,78.4615,79.1946,4.8917,73.5577,79.3358,2.8345,92.381,4.9874,1.9708,0.8323,2.1777,15.0801,6.5649,16.1118,62.3905,80.3965,0.9187,1.1071,11.3358,4.4824,88.4112,81.6964,78.6885,90.9836,15.4151,1.8059 Suffolk and North East Essex ICB,Y00774,Brandon Medical Practice,6127.692621,8.363,70.9845,73.7288,5.3922,68.6667,73.0337,3.8462,83.3333,3.3546,3.1109,0.8107,0.5477,20.6356,10.0767,16.9495,65,79.4521,0.6222,0.9993,12.1177,1.592,88.7091,89.5833,88.0952,92.8571,20.8055,2.2059 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence Devon ICB,L83002,Honiton Surgery,18824.6182,9.5334,79.1724,72.9211,4.9634,73.6626,75,4.5559,92.7273,8.4554,2.3393,1.5242,1.2552,14.7772,8.3134,19.5076,69.8258,84.1951,0.8821,0.6923,12.6797,2.2631,88.0492,80.9441,88.8372,93.0233,11.6997,2.9591 Devon ICB,L83003,Queen's Medical Centre,11081.93106,7.5999,67.6871,66.9951,3.5037,57.6687,69.0909,3.7394,85.3333,4.6027,2.428,0.5942,1.4876,24.101,7.2926,12.3963,57.5107,80.2158,0.461,1.3318,11.6465,0.3041,83.523,84.9558,76.6355,86.9159,20.4069,2.592 Devon ICB,L83004,Kingsteignton Medical Practice,11223.28158,7.2169,79.4457,77.551,4.2996,77.1676,81.6143,3.7881,92.3077,5.5668,1.8551,1.1616,0.4479,15.4697,7.8737,16.7042,69.6353,84.2315,0.5721,0.6328,13.4051,1.3514,78.4678,85.3846,86.1314,93.4307,12.7497,2.5746 Devon ICB,L83005,Barton Surgery,17809.97,8.4469,77.9972,71.4922,5.6106,75.853,76.4331,4.5004,93.8144,8.6791,2.9276,1.1301,1.1754,20.6872,9.1476,21.2464,70.9023,85.1064,1.2094,1.2887,17.3348,0.5056,91.0616,81.1245,83.5616,89.4977,15.1297,3.0069 Devon ICB,L83006,Mayflower Medical Group,39942.19484,8.0185,70.6793,69.25,4.1429,67.4789,70.1587,4.5064,92.5926,6.2114,3.9034,0.7963,0.9256,34.6611,9.555,18.089,60.9482,80.5728,0.8395,1.1078,19.0209,1.7143,85.0881,86.5042,76.386,90.7598,18.9007,2.4349 Devon ICB,L83007,Seaton & Colyton Medical Practice,10483.61462,8.0355,79.7826,79.562,6.3851,77.9487,79.6791,5.0992,94.2308,11.147,2.2614,2.5164,0.6846,12.0399,8.2383,23.3234,65.6316,82.2416,0.4434,0.8757,11.0049,4.7567,91.3296,76.3441,77.9661,88.9831,9.5834,3.4586 Devon ICB,L83008,Pathfields Medical Group,20568.62641,8.2992,73.719,68.8119,3.9144,69.9396,71.028,3.9247,92.7885,5.7705,3.868,1.0263,0.2369,24.9255,8.9353,18.3755,77.8085,83.7313,0.8303,1.1552,19.6868,0.4005,91.3148,82.6667,78.5156,95.3125,18.4658,2.2125 Devon ICB,L83010,Ashburton Surgery,6670.37912,6.734,77.931,71.3615,5.5804,78.0612,80.2326,3.4319,78.1818,8.3618,2.274,0.8789,1.2628,17.3976,6.8205,19.88,73.0946,82.1429,0.6138,0.8092,17.6451,4.0162,91.9072,83.5294,87.1429,94.2857,12.1714,2.6786 Devon ICB,L83011,Budleigh Salterton Medical Practice,10002.97738,7.5509,82.8235,73.7705,7.0243,75,80.2469,4.5105,97.0588,6.6648,1.5155,1.6959,0.8175,10.782,7.8429,20.1708,70.1203,78.5235,0.5413,0.9382,9.6162,0.6295,92.0064,77.1429,77.2727,88.1818,8.64,3.44 Devon ICB,L83012,Bradworthy Surgery,3063.411934,8.0417,81.3665,73.913,5.6671,83.3333,82.1918,3.6593,100,2.8736,2.364,0.4534,0.9962,23.1986,8.0377,20.5959,66.2768,84.5529,0.3886,0.6801,9.5785,0.2307,90.2866,86.5672,94.8718,97.4359,10.6423,2.785 Devon ICB,L83013,Brunel Medical Practice,18355.21425,7.4846,75.5102,73.9474,5.3353,67.7824,74.9129,3.8894,89.2562,7.1659,2.6961,1.4522,1.8874,27.1791,7.8123,17.016,59.3621,75.3662,0.7577,1.1365,14.4008,3.978,85.6829,84.8329,80.6283,89.0052,14.8605,3.0244 Devon ICB,L83014,Mayfield Medical Centre,24624.93387,7.998,74.5182,69.1508,5.8852,70.6458,72.1951,4.6595,87.0504,6.9497,2.8854,1.24,0.7627,24.2407,8.8881,19.9256,49.4106,64.9466,0.5628,1.1541,9.864,0.7084,83.486,78.4893,75.9717,85.159,14.5716,2.976 Devon ICB,L83015,Oakside Surgery,8487.996164,6.93,70.8333,75.641,3.685,68.75,74.0157,3.8143,91.25,5.9487,4.1764,0.4267,0.8376,37.7074,8.7584,16.5244,74.318,80.4651,1.2671,0.8275,16.2222,0.7108,90.7623,90.2913,84.5361,89.6907,23.9173,1.9266 Devon ICB,L83016,St Thomas Medical Group,28575.05615,4.2864,73.0769,70.0913,2.3661,52.2373,74.6177,1.8406,94,2.7393,1.1557,0.5374,1.6997,14.321,3.2288,8.4776,55.7229,74.1474,0.3163,0.7705,5.5176,1.7067,84.7934,82.0296,83.5616,90.8676,9.7701,1.1462 Devon ICB,L83019,Elm Surgery,10870.16828,7.3925,76.1394,75.431,4.2896,76.7123,76.1589,5.9527,97.0588,5.1345,3.3161,0.4665,1.7897,23.0101,9.7175,19.3997,64.5951,75.3125,0.4969,0.791,14.0089,0.86,90.3702,87.3199,85.7143,90.4762,15.9392,2.2513 Devon ICB,L83020,Axminster Medical Practice,13884.49764,8.554,80.651,78.7966,5.1487,71.2934,76.5182,4.1363,91.1111,9.6956,2.2526,1.4049,0.8244,16.5063,8.829,23.2164,67.788,75.8883,0.6122,0.9418,11.4286,4.2657,89.148,82.6829,81.7143,88,11.5109,2.5744 Devon ICB,L83021,Dean Cross Surgery,10864.66923,8.141,82.8715,81.4672,5.6393,79.2969,84.3434,4.6442,96.4912,2.8317,1.9501,1.1359,1.1351,12.6243,8.2681,19.2903,73.7426,82.3633,0.5328,0.8645,10.1184,0.4097,88.1981,85.8448,78.0488,90.2439,9.4943,2.875 Devon ICB,L83023,Mid Devon Medical Practice,5787.397834,7.976,76.5343,69.4444,5.5566,75.7813,78.6765,4.2344,97.2222,9.7887,1.8045,0.9648,1.5093,21.0703,7.6988,17.5451,74.8988,88.7967,0.268,0.9469,8.5813,0.3287,88.1227,74.3169,86.3636,93.9394,10.1821,3.1803 Devon ICB,L83024,Barnfield Hill Surgery,8188.102136,7.7468,74.1445,72.1311,4.4898,67.6471,79.5918,2.473,87.8378,3.6973,1.5726,0.6963,2.2242,17.9869,6.5429,14.4898,56.0949,73.9286,0.5042,1.4526,10.0087,0.8184,83.392,82.963,84,93.3333,12.6971,1.8007 Devon ICB,L83025,Wallingbrook Health Centre,7940.921146,9.5078,77.3936,70.2128,4.5565,77.707,81.3953,5.1379,95.7447,7.9994,1.5549,0.8248,0.2714,22.7379,8.0094,19.4294,63.5445,76.1494,0.338,0.7301,15.7273,0.1175,87.1611,83.871,84.9462,91.3978,11.2835,2.9746 Devon ICB,L83026,Torrington Health Centre,5421.758104,7.3562,77.9592,71.1538,4.4591,81.3008,82.6087,5.1958,94.2857,7.2256,2.5979,1.2408,0.2547,19.3417,8.92,19.5812,66.4093,78.1116,0.3102,0.8918,16.9986,1.6858,90.756,86.25,90.2778,91.6667,12.9163,3.0438 Devon ICB,L83027,Croft Hall Medical Practice,9503.191283,7.3618,66.426,56.3218,3.8553,62.3967,72.8571,2.8664,75.5556,5.3426,3.0918,0.363,1.5394,40.4554,6.579,14.6702,54.7844,66.0634,1.3519,1.9151,8.7081,0.7472,84.4349,81.7568,57.5,81.25,24.6565,2.1279 Devon ICB,L83028,St Neots Surgery,12525.88474,9.6698,74.5547,76.2963,2.8861,67.1196,70.6468,4.0071,92.0635,3.4118,3.7158,0.459,1.3737,34.0645,8.8773,14.1571,71.3844,87.4598,0.7414,0.8208,16.3495,0.1609,85.4394,90.5512,81.9444,93.75,19.7608,2.2418 Devon ICB,L83029,Southover Medical Practice,9790.355805,6.4952,72.1612,61.0526,4.4056,71.7391,72.8477,3.6089,92.1875,2.6804,2.583,0.9173,0.7937,33.8096,7.1703,14.6168,57.6052,76.7606,1.0742,1.207,13.1776,0.5282,86.7858,87.5,74.4186,84.8837,18.5218,2.076 Devon ICB,L83030,North Road West Medical Centre,11867.98764,7.4947,64.4444,58.7209,2.9449,55.102,59.2593,3.5549,79.2683,4.1656,3.2709,0.5995,1.4176,40.7298,7.6753,14.5982,65.6941,78.2101,0.9361,2.4401,17.3091,0.8727,87.5034,85.7143,70.6422,84.4037,28.312,1.9142 Devon ICB,L83031,Kingskerswell & Ipplepen Med Practice,12250.4959,8.5794,81.2977,78.0899,5.2531,79.1531,78.9668,3.9669,88.0952,5.1525,2.0043,1.094,0.6038,11.8083,6.713,18.3982,63.2326,78.0069,0.4844,0.6681,8.2621,0.5287,89.5486,82.5758,81.1475,89.3443,9.7019,2.8979 Devon ICB,L83034,Albany Surgery,10383.76396,8.6461,76.4205,67.4797,4.1317,71.2871,73.8693,2.9977,89.1089,6.7294,2.3272,1.1143,1.218,18.4352,7.9518,18.085,61.588,77.9817,0.9664,0.8185,13.097,0.9739,87.6511,82.4268,82.3529,93.2773,16.6939,2.5441 Devon ICB,L83035,Litchdon Medical Centre,17468.00623,8.7732,77.6074,74.0139,5.401,79.6053,80.597,4.8979,90.4459,4.7876,1.8852,0.9881,0.944,19.4859,8.0836,17.0152,66.7745,79.7823,0.5637,1.1093,14.9397,1.3024,83.1796,79.6569,83.1633,90.8163,12.6729,2.8793 Devon ICB,L83036,Topsham Surgery,11653.92097,7.1911,76.7773,78.7234,4.0116,71.6714,76.4423,3.4154,94.3396,2.3394,1.712,0.9624,0.3447,12.6111,6.413,15.5694,55.3375,65.1625,0.6984,0.9113,4,1.1278,84.0282,82.3204,61.1111,82.4074,8.7791,2.6403 Devon ICB,L83038,Tavyside Health Centre,14276.15445,7.7782,78.5942,77.0531,5.1383,73.1928,76.0383,4.6055,96.875,3.7516,1.3795,0.7299,1.7077,18.2165,6.6991,17.86,70.5309,76.8719,0.5109,0.8394,10.8211,1.9082,91.2315,82.2222,89.5522,94.0299,8.8862,2.4743 Devon ICB,L83039,Southway Surgery,6052.623393,7.5592,69.8795,76.4228,3.8522,71.5736,68.0412,3.8347,95.2381,5.6122,2.4864,0.4378,0.7885,28.2519,9.3257,14.0956,61.3527,63.0435,1.0681,0.823,16.0251,1.6008,88.1585,84.5161,87.5,88.8889,17.1912,2.0312 Devon ICB,L83040,Pinhoe Surgery,13893.50809,6.7364,78.341,74.5283,3.3964,75.976,76.8683,2.3642,87.9668,4.8469,1.3839,0.8996,2.1172,13.4144,5.8355,12.8128,60.4154,77.6536,0.5939,0.6574,9.3233,2.2024,89.1944,83.5165,79.1367,91.3669,9.9863,1.5223 Devon ICB,L83041,Westbank Practice,8803.208846,7.7718,77.8711,80.8511,4.4244,79.7794,80.3371,3.7069,97.5309,4.4917,1.5545,0.7066,0.39,12.1016,7.511,16.3931,60.5903,80.0562,0.7827,0.7175,14.6181,0.3792,89.9048,80.5128,80.4598,90.8046,10.8034,2.4568 Devon ICB,L83042,St Leonards Practice,9120.723873,6.5727,75.089,64.7959,3.3133,64.9867,77.0701,2.9393,92.4051,3.2435,1.8176,0.5193,0.8395,17.0373,6.0721,13.388,55.4902,69.145,0.5297,1.5268,9.1834,0.2045,80.9971,81.3559,69.7674,83.7209,15.4377,2.0253 Devon ICB,L83043,Leatside Surgery,14742.73716,7.0173,74.8115,67.1233,5.876,75.6892,74.6988,3.3789,79.0909,5.4565,1.9318,0.7875,0.6861,17.5881,5.3285,14.4713,60.3942,73.8302,0.599,1.3529,10.8161,2.2433,76.6335,75.3086,56.8966,91.3793,11.7326,2.376 Devon ICB,L83044,Blackdown Practice,8554.59589,7.6316,77.0449,73.5178,6.0809,79.5918,82.199,4.058,97.8261,2.5881,2.4738,0.6824,1.2721,15.1133,7.4982,18.7058,63.0053,81.1083,0.2559,0.5971,12.2679,1.022,90.1537,86.2275,89.8876,94.382,10.906,2.5104 Devon ICB,L83045,Bovey Tracey & Chudleigh Practice,15203.94638,7.8736,80.0926,76.7773,5.822,79.3194,77.5,4.286,96.1905,6.1002,2.0927,0.7646,0.7473,12.2063,7.1698,20.5446,63.5705,80.0234,0.5701,0.7378,11.1608,0.7431,89.9013,81.0241,87.8205,92.9487,9.9637,2.8238 Devon ICB,L83046,Devon Square Surgery,9462.115678,6.623,75.2212,72.1239,3.8956,76.3975,77.9006,2.9528,94.1177,3.7997,1.9996,0.6216,0.9885,17.6377,7.1157,15.2196,70.7317,83.8006,0.4144,0.9739,12.6444,0.4715,83.1023,85.5263,92,93,13.5907,2.0825 Devon ICB,L83048,Roborough Surgery,11943.45851,7.7623,79.3839,79.5539,4.2647,78.6982,81.1518,4.5893,93.4066,4.0844,3.1106,0.7844,0.561,17.7082,8.7221,17.6089,62.2126,81.8182,0.4779,0.6311,15.6194,0.2552,90.8675,82.6923,88.4058,92.7536,9.3418,2.6418 Devon ICB,L83049,Moretonhampstead Health Centre,3313.033294,5.6211,80,67.5926,7.1343,75.3247,79.7619,4.0468,100,4.5221,1.9784,1.0492,1.4389,14.4839,5.4915,17.5959,60.6977,76.4331,0.4796,0.8993,7.1257,1.8471,87.8487,80.7018,75.8621,86.2069,10.8819,2.458 Devon ICB,L83050,Northam Surgery,15617.46399,7.4671,76.5705,71.8085,6.0443,75.3165,76.2963,5.4583,89.7436,9.7441,2.4439,1.2489,0.6648,21.2941,8.1427,19.7518,65.7737,81.5825,1.0177,1.0716,13.6144,1.1669,87.2346,78.9855,83.432,89.3491,13.5499,3.9627 Devon ICB,L83051,Cricketfield Surgery,10228.90359,7.9562,75.7426,73.6462,3.9736,77.3649,76.3889,3.7217,95.0495,4.9296,2.0934,1.1436,1.0798,17.4639,7.5336,19.4321,71.7999,80.2575,1.0758,1.0661,16.5024,0.8772,84.6736,85.9375,85.3659,94.3089,15.4831,2.6071 Devon ICB,L83052,Castle Place Practice,13266.42536,6.9915,76,71.0843,3.9811,75.853,75.0943,3.5987,91.954,4.808,1.6644,0.8397,1.8698,19.4518,8.3492,17.2515,62.4142,79.0235,0.5848,0.9672,12.0107,0.4811,85.7394,83.9623,77.439,86.5854,14.59,2.2267 Devon ICB,L83054,Townsend House Medical Centre,7204.833454,8.8316,79.4425,76.7442,7.4354,69.0909,78.5124,6.1171,97.2973,13.4477,3.0761,2.3203,1.1373,12.4478,10.467,26.7534,79.2648,84.1649,0.5625,0.7558,14.3057,4.3215,93.3489,75.6972,78.125,93.75,11.3392,4.3593 Devon ICB,L83055,Compass House Medical Centres,17921.41765,8.2137,78.5987,72.6337,7.1118,72.3926,75.6757,4.728,87.7551,8.2837,2.9106,1.1524,1.0536,20.366,8.3862,23.7917,71.6778,82.8074,0.7375,0.9548,12.1316,3.7619,91.4102,84.9315,83.5,91,11.5161,3.1608 Devon ICB,L83056,Claremont Medical Practice,22541.7277,8.5105,81.0767,74.321,5.1558,73.5751,76.5472,4.219,95,6.503,2.6045,1.1893,1.7465,13.6356,8.2218,19.3608,72.2037,82.4108,0.8106,0.8239,9.7143,1.7216,91.6707,81.8182,,,11.7827,2.9035 Devon ICB,L83057,Fremington Medical Centre,8705.014935,8.5981,80.0546,77.8261,4.7428,74.1935,77.5758,5.893,91.4894,4.7122,1.6025,0.9951,0.3991,13.1193,8.7874,20.8323,58.2833,78.7472,0.4652,0.7754,16.6692,0.232,90.4118,82.2115,89.7959,94.898,9.8019,3.2437 Devon ICB,L83058,Southernhay House Surgery,8328.779742,6.8862,70.8696,66.2338,3.8815,61.2613,68.3333,3.1002,94.3662,2.874,1.9221,0.4092,0.619,20.1102,6.8328,12.1652,63.7108,78.2258,0.7565,1.7609,10.7001,0.797,79.8251,86.7925,75,80.9524,17.2584,1.9593 Devon ICB,L83059,Norton Brook Medical Centre,10133.49725,8.0967,77.931,80.0712,5.3485,72.5191,72.9358,4.2511,93.6508,3.2816,2.7089,0.9095,1.3604,16.1679,6.5763,18.7148,61.7266,77.7336,0.613,0.8898,10.8353,0.5317,87.0739,82.5472,73.1183,84.9462,13.3904,2.9362 Devon ICB,L83064,Church View Surgery,12671.59563,7.5872,80.819,80.5112,5.2176,79.4643,81.4815,4.789,94.8052,3.1683,2.3656,1.1622,0.6928,12.2148,7.7718,17.5157,65.9575,77.2455,0.7254,0.7913,15.0672,0.7134,89.9862,83.3962,81.25,90.2778,9.649,2.7778 Devon ICB,L83066,Mount Pleasant Health Centre,15676.31266,6.452,73.5169,65.4545,3.0307,58.6538,70.0361,2.5188,83.9416,2.8419,1.2307,0.7591,1.5757,15.8041,6.1857,13.175,56.5043,75.4579,0.5233,1.3054,6.8585,0.3009,78.3975,79.2969,80.1282,87.8205,15.0455,1.5872 Devon ICB,L83067,Sid Valley Practice,17966.03828,8.387,81.1141,70.2882,8.065,77.9851,81.4103,5.354,96.1539,8.3696,1.9704,1.7122,0.8152,10.0626,8.0913,23.6581,72.0908,83.0409,0.5436,0.9784,11.0714,1.1906,92.2362,75.4217,65.7895,91.5789,9.8252,3.9 Devon ICB,L83069,Ruby Country Medical Group,16919.64888,8.5514,74.5924,69.7034,5.8464,70.7775,73.6994,5.0595,94.1667,6.7264,2.1721,1.3072,0.8174,26.7807,9.0336,20.4201,54.0875,73.1198,0.6048,0.9625,14.9007,0.2198,88.833,77.931,77.1429,90,12.804,2.9069 Devon ICB,L83070,Buckfastleigh Medical Centre,5096.560234,7.2391,73.3668,70.9924,4.716,72.8571,73.1481,3.7929,93.1818,5.5139,2.3279,1.0436,1.3543,20.1338,7.1736,17.3791,72.9851,86.7347,1.3044,1.6055,9.4559,1.8288,90.7855,77.8947,86.5385,94.2308,14.5681,2.3079 Devon ICB,L83071,Stoke Surgery,10015.03721,7.2657,72.2846,70.5263,4.0589,68.9781,71.1656,3.2986,92.0455,2.8845,3.1392,1.4715,1.5693,36.2776,7.6787,15.1564,70.1232,80.916,1.1036,1.5941,13.1669,0.6062,88.6562,88.3117,76.3441,87.0968,19.6436,2.5751 Devon ICB,L83072,Friary House Surgery,13501.20509,7.1645,70,67.8261,3.4258,62.3932,72.7749,3.2243,83.3333,3.1737,2.271,0.8526,0.2723,30.5304,7.5739,13.308,73.8484,80.8625,0.8061,1.4959,14.939,2.6426,83.9101,87.5912,81.5068,92.4658,18.8282,1.8679 Devon ICB,L83073,Brannam Medical Centre,20313.15321,9.7589,75.976,75,4.8723,71.3355,77.5281,4.3292,93.4066,3.9626,2.82,0.9348,0.851,22.2355,8.1565,14.899,66.4786,79.2011,0.6371,1.3264,13.6157,1.0851,90.4315,83.3333,89.1304,92.1739,16.2102,2.7939 Devon ICB,L83075,South Brent Health Centre,5903.829521,7.7018,81.203,75.8242,6.1877,77.5641,81.4286,4.5985,95.122,3.7472,1.809,1.0482,0.3088,15.9066,6.8707,17.9882,64.3939,73.1618,0.5579,0.7101,14.3092,2.1625,90.9524,81.6,77.0492,91.8033,8.2759,2.4514 Devon ICB,L83076,Wycliffe Surgery,11827.66795,7.2175,71.6463,73.8938,2.4338,78.1991,80.5714,2.8185,91.2162,3.5751,2.9796,0.3579,0.5788,33.4114,7.3508,13.6811,75.5054,84.7737,0.5548,1.029,12.4277,0.2997,89.9106,89.6552,80.3419,90.5983,18.9758,1.6732 Devon ICB,L83077,Heavitree Practice,6966.133378,6.3359,76.0976,68.4564,3.207,66.8942,70,2.3155,98.5294,4.1232,1.7831,0.7553,0.9968,14.5939,6.208,14.9455,69.39,85.1211,0.6315,0.8668,10.95,0.863,89.9461,86.7647,84.9315,93.1507,11.1326,1.7831 Devon ICB,L83079,Ide Lane Surgery,8130.110491,6.559,79.538,78.3251,3.2162,77.0992,80.3681,3.6825,96.4286,5.1657,1.5543,1.2913,1.2299,12.9957,6.7115,15.4113,59.1966,77.2595,0.6935,1.0282,10.8957,0.6361,81.2163,78.4091,77.381,85.7143,10.9712,2.0086 Devon ICB,L83081,Yealm Medical Centre,6727.716186,8.157,82.5784,78.7709,5.438,83.6601,79.7101,4.9282,92.8571,6.4601,2.9971,1.066,0.6761,10.3354,6.2142,18.9402,64.9496,75.6757,0.4171,0.7879,9.5962,1.9381,85.4417,84.6154,73.0769,82.6923,8.7999,3.0589 Devon ICB,L83082,Chagford Health Centre,3163.384846,6.8988,76.7857,71.1538,6.2404,77.9221,85.1852,3.7504,88.4615,5.8781,2.1211,0.707,0.2151,16.4608,5.461,19.4282,67.1674,79.5181,0.5226,0.5226,6.5233,1.5516,89.5435,80.597,88.4615,92.3077,9.0071,2.613 Devon ICB,L83083,Bideford Medical Centre,16369.95614,8.4529,75.3623,70.3242,3.9636,77.0142,77.8502,4.8357,91.2698,4.145,2.5382,0.8982,0.4971,23.2041,7.3763,15.0212,76.6317,86.6554,0.7484,1.1455,13.1644,0.3472,89.2094,81.8942,90.2439,94.5122,15.3346,3.1891 Devon ICB,L83084,South Lawn Medical Practice,8189.259142,6.9973,75.0973,71.134,3.4606,70.4797,79.2208,3.3501,91.7647,5.8956,1.853,1.0553,0.6467,16.3587,8.016,15.5847,73.3037,87.3315,0.5645,0.9817,12.7087,1.0517,88.7071,81.8653,92.6316,96.8421,12.5829,1.8898 Devon ICB,L83085,Amicus Health,18875.88313,7.1783,76.1769,66.5236,4.9195,73.6842,77.0149,3.8455,92.517,6.8054,2.099,0.8516,1.6175,20.2266,8.0277,16.4127,56.6249,75.7576,0.6292,0.9329,11.0134,2.4076,86.7174,77.0742,79.8165,87.6147,15.3282,2.5438 Devon ICB,L83086,Modbury Health Centre,4813.699442,8.0628,82.8685,83.9744,5.6611,80,79.646,4.4683,93.3333,1.9743,2.1229,0.6874,1.4808,13.3804,6.6569,17.3474,67.1642,82.9787,0.1618,0.7279,10.3899,0.3394,89.8581,90,83.0189,92.4528,7.6698,3.0934 Devon ICB,L83087,Okehampton Medical Centre,15559.23828,10.6164,76.2069,74.2021,4.5945,71.9424,79.1096,4.2416,94.5736,6.3545,2.2773,1.0654,2.1728,19.9631,8.5465,20.0826,55.0388,76.8012,0.5926,0.859,11.3316,1.3158,88.6718,80.5289,,,12.8021,2.6635 Devon ICB,L83088,Redfern Health Centre,5192.334393,6.6061,82.1293,85.8896,6.7573,81.3559,82.6087,3.4757,100,2.6953,2.0583,0.6408,0.4797,13.6627,6.2585,18.699,82.7881,94.2308,0.233,0.3883,10.4614,0.6835,91.8638,79.5455,85.1064,97.8723,10.9308,3.1845 Devon ICB,L83089,Knowle House Surgery,13968.49188,9.0218,81.3953,82.0359,4.1957,73.0233,76.0956,3.9071,93.5252,4.3135,2.1089,0.7178,1.3666,20.2457,8.2677,16.2572,67.071,80.1095,0.6512,0.666,16.8634,0.2774,91.0315,84.4595,78.3951,90.7407,12.6028,2.6343 Devon ICB,L83092,College Surgery Partnership,15216.52105,8.7841,79.6875,73.5219,4.5372,80.5616,81,3.7276,95.1724,4.8318,2.3596,0.8472,0.9045,12.7439,8.0279,17.4898,75.7231,87.7581,0.4142,0.866,13.8051,0.5382,90.2659,84.5938,79.0698,91.2791,12.6547,2.2655 Devon ICB,L83094,Dartmouth Medical Practice,8850.032783,8.0546,76.8692,77.907,5.7102,78.0749,83.0601,3.9393,89.5833,5.6038,2.2045,1.4215,0.5324,15.305,6.6343,19.7567,56.9758,76.298,0.5421,0.8433,9.0221,0.8214,84.9046,74.4048,73.8095,88.0952,13.9067,3.5658 Devon ICB,L83095,Coleridge Medical Centre,14711.98962,8.6024,82.8697,83.6283,5.2566,78.1579,80.2326,4.3065,94.8454,6.8749,1.6376,1.3501,0.8039,9.2674,7.2851,18.2636,63.7536,75.6039,0.5,0.6,10.343,0.1904,89.8943,79.3194,77.1605,89.5062,7.869,2.5939 Devon ICB,L83096,Combe Coastal Practice,20511.19837,8.8306,72.8331,69.1684,4.4224,69.2964,72.0627,4.68,83.0645,4.22,2.9044,1.2056,0.844,26.8193,7.258,15.6127,64.1243,76.9655,0.274,1.233,8.3015,0.2096,83.9933,80.8674,70.2439,83.9024,15.8771,3.0688 Devon ICB,L83097,Caen Medical Centre,11864.76323,6.5155,80.574,74.4262,4.3059,75.2688,81.0277,4.1112,90.3226,5.2212,1.4716,1.0667,1.5831,10.5396,6.348,15.5182,56.335,73.6577,0.4516,0.7786,8.9774,1.2179,82.6304,78.3133,75.9259,88.8889,10.4814,3.0289 Devon ICB,L83098,Cheriton Bishop Surgery,5237.065859,6.5964,81.5385,78.2609,6.383,82.3529,84.9558,3.5708,92.1053,8.542,1.5171,0.6846,0.9392,14.9685,6.7609,16.4662,63.5015,80.0926,0.296,0.7771,14.8032,1.8921,89.3342,87.2,85.1852,94.4444,6.7767,2.9602 Devon ICB,L83099,Isca Medical Practice,5600.360268,7.517,73.494,65.4206,2.8939,68.599,74.7253,3.0547,90.6977,5.0011,2.483,0.7145,0.8371,15.7738,7.2716,15.4698,66.8613,80.1105,1.0004,1.0718,13.8871,0.8209,86.8047,82.7869,83.3333,90,12.429,1.8399 Devon ICB,L83100,Beacon Medical Group,41352.56811,7.3785,80.2808,80.11,5.0681,76.0337,77.8791,3.9106,95.5182,5.3232,2.202,0.8531,1.2412,11.7522,7.1854,17.305,63.3292,77.9698,0.5834,0.701,13.2951,0.7622,87.2105,82.0248,75.7174,92.7152,10.9481,2.096 Devon ICB,L83101,Abbey Surgery,16910.043,8.4112,77.9473,81.2227,6.0131,73.9612,74.1176,4.5776,93.1373,2.394,2.3484,1.3826,1.6195,17.523,7.2785,17.9335,63.058,77.6903,0.6417,1.1643,9.5994,0.7182,89.1691,83.2143,66.6667,91.8033,11.9358,3.1951 Devon ICB,L83102,Yelverton Surgery,8128.721356,8.7837,80.1034,82.5397,6.8715,77.7778,79.558,4.603,92.5926,6.4923,2.163,1.2266,1.4168,14.8045,7.7136,21.1422,68.0651,82.2989,0.3957,0.6595,7.9714,3.4713,92.5613,80.6452,85.3933,89.8876,8.3996,3.0599 Devon ICB,L83103,Corner Place Surgery,19197.04398,8.4963,71.9685,65.6934,5.4977,73.7327,76.2376,4.2927,88.2353,7.8668,2.912,1.4686,0.7159,28.6542,9.2006,21.338,66.6127,76.3186,0.7029,1.161,13.3072,1.9761,89.0884,80.123,88.1818,91.3636,17.0369,2.8367 Devon ICB,L83105,Castle Gardens Surgery,7276.438372,9.8765,77.439,72.5962,4.7926,77.7778,79.085,4.5728,94.4444,4.8944,2.345,0.9234,1.0563,19.7214,8.5819,18.3497,66.9831,79.6053,0.3224,0.7328,12.8873,0.2766,90.1344,78.453,90.9091,94.3182,12.6108,3.5908 Devon ICB,L83106,Wooda Surgery,10256.84038,8.5586,75.75,69.8039,4.0869,77.2894,78.3784,4.9963,91.9355,6.2533,2.1932,0.8773,1.5045,24.3656,8.0683,16.7219,62.3647,80.3867,0.9201,1.3373,15.5024,0.1579,89.1936,80.2575,76.4151,89.6226,15.4035,2.7816 Devon ICB,L83111,Chilcote Practice,19709.45558,9.1686,74.2623,70.2899,5.9189,74.7596,76.6892,4.5211,88.2353,6.6656,3.3975,1.3711,1.7305,30.3678,7.9487,19.4957,58.561,70.9319,0.6755,1.4112,12.6342,2.3074,88.1907,82.6331,80.5556,90,17.1036,3.0565 Devon ICB,L83112,West Hoe Surgery,7964.859969,7.2805,74.5763,73.2394,5.5363,62.5641,75.7282,4.4464,93.1035,3.579,2.4914,0.3806,2.2392,36.3554,6.8861,18.4256,62.5616,69.9605,0.4325,1.6609,12.1148,0.4091,90.0993,86.7188,87.6923,93.8462,16.3201,2.7163 Devon ICB,L83113,Budshead Medical Practice,8644.518702,8.9878,70.8155,68.4524,3.2821,69.2308,71.4286,3.6154,83.1169,3.2073,3.7821,0.3462,1.9075,40.0235,9.5863,14.359,60.1704,82.8729,1.4231,1.2564,16.7286,0.8979,90.0945,86.0335,72.1154,85.5769,24.7935,1.859 Devon ICB,L83115,Whipton Surgery,4905.72709,8.311,73.8095,62.7907,3.8915,65.9218,77.7778,3.581,84.3137,4.6286,2.6496,0.3519,1.9401,23.219,8.4015,14.3863,71.7431,82,1.3869,1.1799,14.5233,1.9108,92.2204,87.069,78.1818,90.9091,21.0771,2.1942 Devon ICB,L83116,Woodbury Surgery,4794.594671,7.5876,80.083,74.1935,5.6467,82.3529,84.3478,4.279,95,7.941,1.9148,0.508,1.593,8.745,7.3412,17.839,79.3296,85.7868,0.9965,0.7229,16.0961,1.2668,92.0439,84.058,90.7407,98.1481,8.149,2.4424 Devon ICB,L83118,Chelston Hall Surgery,19457.3087,6.7883,71.1974,63.5714,3.4658,65.9498,68.4971,3.2961,91.6667,5.2098,2.4748,0.8268,1.1386,30.1123,8.0138,16.8857,59.6327,72.8707,0.9691,1.1334,14.7737,0.6558,88.9286,82.8784,78.1991,85.782,17.2113,1.9054 Devon ICB,L83120,Channel View Medical Group,19411.46951,8.8311,79.8795,78.373,5.6985,78.5366,79.3872,4.438,92.5532,5.0695,2.7302,1.1211,0.7947,14.0192,7.9177,21.8414,75.2183,83.2016,0.8713,0.9294,14.962,0.3157,86.5082,80.6202,88.8889,97.2222,12.513,3.3575 Devon ICB,L83127,Redlands Primary Care,16272.25902,7.986,77.5701,77.6224,4.7882,73.6264,76.8769,3.7078,93.4783,6.5335,2.1179,1.0006,0.6837,16.7342,7.3362,16.7588,72.2839,81.3354,0.8778,0.9208,12.3072,0.8807,88.2326,80.292,81.4607,88.2022,13.092,2.4555 Devon ICB,L83128,Bramblehaies Surgery,6828.12833,8.1032,73.5075,72.7749,4.1145,71.1864,72.2973,3.5819,89.2857,3.541,2.0772,0.8921,1.2623,13.9172,7.8612,14.8202,49.6054,76.1062,0.7057,0.6258,9.2623,0.2854,89.792,76.0563,74.4186,79.0698,16.3584,1.9707 Devon ICB,L83129,Hartland Surgery,3168.839545,9.4777,78.3217,71.2766,5.3083,82.8571,84.507,5.0115,95.6522,5.1677,2.5387,0.3957,0.7101,23.6669,7.9019,21.1342,57.8616,76.8293,0.0989,0.9232,17.0809,0.4271,90.7387,72,89.4737,94.7368,11.3894,2.9344 Devon ICB,L83131,Pembroke Medical Group,30206.54235,7.7878,71.8491,65.727,5.7056,66.4296,72.1116,4.4291,90.2174,8.1823,2.7425,1.1605,1.1141,24.6218,8.1889,20.8417,52.0411,72.0894,0.998,1.6517,12.3706,2.5141,88.4977,77.1831,71.9136,85.4938,16.2019,2.963 Devon ICB,L83134,Wyndham House Surgery,3952.761141,7.6435,79.2135,77.1186,4.9301,77.3196,82.4176,3.939,85.7143,1.9964,1.5248,0.7878,0.5445,14.1191,6.095,17.4333,71.8367,80.6122,0.1779,0.6353,7.7435,0.2367,82.9404,91.3793,82.7586,86.2069,10.4976,2.9733 Devon ICB,L83136,Haldon House Surgery,6457.575827,7.8886,75.3138,68,5.2785,74.8428,76.7677,4.7283,86.8421,9.2555,3.5935,1.1864,1.4239,16.1336,8.8348,22.1286,74.6639,86.875,0.9801,1.3583,9.8861,2.2145,91.3391,79.0816,84.3373,93.9759,16.3571,3.0433 Devon ICB,L83137,South Molton Medical Centre,13204.88625,8.4069,75.8803,77.6567,4.3409,76.2215,78.5978,5.0075,96.8421,9.027,2.2538,1.2459,0.7603,21.5591,8.9564,19.2763,55.7987,75.5408,0.4127,0.7857,15.8599,0.7568,83.983,77.7506,88.5542,94.5783,12.5862,3.2378 Devon ICB,L83143,Hill Barton Surgery,3555.568404,6.7696,76.1905,75.7895,3.2114,75.3086,83.5443,2.2971,97.6744,3.5644,1.3604,0.4237,0.5941,12.984,6.3942,13.314,72.5207,85.8407,0.3122,0.4014,11.6832,0.558,76.1328,95.3846,85,90,10.2266,1.3827 Devon ICB,L83146,Catherine House Surgery,4868.585818,7.3303,75.3769,71.4286,5.3991,76.6234,79.6117,3.1583,75.7576,6.7696,1.4938,0.5762,1.3642,17.9516,5.5796,15.1088,63.3459,77.8409,0.6189,1.4298,13.1017,2.4523,90.1038,78.7234,88.8889,94.4444,12.8625,2.7315 Devon ICB,L83147,Lisson Grove Medical Ctr.,12706.08286,6.3547,74.8619,69.2,2.549,68.9908,77.4648,2.8223,89.3805,2.5473,1.7732,0.9161,1.1893,20.3615,6.0981,11.3114,72.1903,86.5385,0.5763,1.2412,15.4345,0.327,91.3448,82.8571,83.0645,93.5484,17.2033,1.618 Devon ICB,L83148,Chillington Health Centre,4189.302565,7.6795,81.407,84.0708,7.2354,85.1351,85,4.7246,100,9.1369,1.8899,0.675,0.3162,16.023,7.0219,25,68.429,80.6818,0.486,0.648,14.1954,1.1587,90.0616,79,76.3158,97.3684,8.7703,3.3477 Devon ICB,L83607,Old Farm Surgery,5918.938851,9.3068,73.9796,64.1379,4.1456,75.3012,73.4513,3.5148,88.5246,6.825,4.398,0.5047,2.1674,30.4799,9.6635,16.907,71.579,79.2135,1.1355,1.1355,15.4715,0.4818,89.8556,86.6667,81.8182,96.1039,20.862,1.9286 Devon ICB,L83616,Sampford Peverell Surgery,2092.49138,7.7788,82.2222,74.6032,4.7904,81.3559,87.7551,3.1223,100,3.9467,1.7536,0.8982,0.7467,16.8169,7.7772,15.6972,69.5971,82.9787,0.5133,0.941,9.92,0.4472,89.4779,73.1707,79.1667,91.6667,10.2419,2.0103 Devon ICB,L83624,Devonport Health Centre,9730.184793,8.2928,66.1905,61.7021,2.0288,64.4366,70,3.0557,91.2621,3.6887,3.5442,0.2505,1.4399,45.3012,7.8968,11.6969,74.4246,81.579,0.3757,1.6656,19.4467,0.3826,83.5423,91.5152,85.8696,93.4783,26.7749,1.8284 Devon ICB,L83628,Imperial Surgery,6542.607112,9.1282,76.2115,69.1824,5.4357,77.3481,78.6325,3.6521,96.2264,5.3652,2.1743,1.8855,0.7752,16.7037,7.9048,16.8167,56.768,74.4361,0.7134,1.5967,11.5667,2.9028,89.9292,82.6087,85.5072,92.7536,19.0103,2.531 Devon ICB,L83639,Wembury Surgery,2984.147257,6.7301,85.0746,86.9048,7.4308,80.303,88.1356,5.6782,100,6.2812,2.6639,1.0165,2.0383,7.7662,6.3348,28.0056,86.4094,87.6847,0.4557,0.9814,13.4775,2.3171,91.7543,91.6667,92.3077,92.3077,5.5144,4.1711 Devon ICB,L83646,St Levan Surgery,9452.251422,8.3407,72.3577,72.9885,2.5614,67.9739,72.2581,3.4507,91.1111,2.0325,3.2729,0.4506,0.7528,35.2036,8.3494,13.6013,77.7892,82.9412,0.8775,1.5416,15.1762,0.104,86.7964,84.8101,78.7879,89.899,23.57,1.7432 Devon ICB,L83648,Peverell Park Surgery,18180.79109,4.8859,81.2968,78.5256,2.3697,51.7327,79.4776,1.687,93.8356,1.8697,0.8336,0.4366,2.2607,22.0473,3.1405,6.5772,57.5428,72.2372,0.2937,0.52,8.3775,2.919,81.8833,81.3636,82.6087,89.5652,9.0695,1.1154 Devon ICB,L83651,Adelaide Street Surgery,5716.992976,7.3412,58.3333,59.7015,1.4832,51.7857,56.6667,2.6292,92.1569,1.5701,4.4944,0.427,0.8279,54.3334,7.6056,10.2697,65.8416,66.0377,1.2135,3.1461,13.0174,0.1634,87.5,87.013,74.4681,89.3617,39.0585,1.7978 Devon ICB,L83655,Wonford Green Surgery,6691.230299,5.5202,64.3836,53.3898,2.1811,54.8387,65.9794,1.7946,91.0256,2.2407,2.2225,0.3865,2.2768,26.0078,7.9116,9.4147,45.6229,53.4091,0.4003,0.8835,13.0285,0.663,77.5281,92,65,80,23.2948,1.27 Devon ICB,L83657,Teign Estuary Medical Group,5708.211994,7.3711,79.5181,74.2331,5.5274,72.5926,80.8333,3.6097,86.1111,3.8453,2.1245,1.0904,0.978,14.842,6.9451,20.0602,71.301,78.7986,0.2632,0.7708,10.3801,0.9009,90.746,79.5918,79.2453,90.566,12.6255,2.6697 Devon ICB,L83663,Black Torrington Surgery,3287.567334,7.9122,77.707,71.134,5.9672,68.9655,74.2857,5.5984,87.5,7.4902,2.2796,1.2404,0.7451,24.5109,9.0874,22.226,68.0162,79.8817,0.6369,0.771,8.2745,0.2862,89.9946,81.4433,87.8049,90.2439,8.9306,3.2518 Devon ICB,L83666,Buckland Surgery,3824.564825,9.4906,72.8682,66.6667,3.55,78.0303,82.6087,3.2,98.3051,4.3294,4,0.825,1.8229,24.5164,8.3761,15.55,62.3047,78.1818,1.3,0.85,14.3555,0.6821,93.3131,81.6092,91.4894,93.617,20.0382,1.9 Devon ICB,Y00568,Foxhayes Practice,3758.428127,6.0816,68.2353,63.2353,1.8373,69.1429,78.6885,2.151,86.1111,2.9485,1.6357,1.5684,1.669,18.5085,5.2169,11.0464,77.1357,85.2632,1.21,1.2772,11.5438,0.8511,89.6646,82.5397,91.1765,88.2353,23.2084,1.2996 Devon ICB,Y02633,Bow Medical Practice,5508.230344,7.5077,76.2846,70.122,5.5057,72.3926,73.2283,3.4001,95.8333,3.5624,2.0193,0.5005,1.4966,18.6808,7.4298,18.8816,64.3193,70.6612,0.7249,0.6559,14.5447,0.2454,81.8551,81.8182,73.8462,84.6154,12.1867,2.2782 Devon ICB,Y04662,Cranbrook Medical Practice,3298.390345,9.1563,74.5455,69.3878,1.2137,81.685,81.8182,1.0431,91.4729,0.8092,0.5689,0.0759,1.7299,14.7759,3.8843,6.3342,60.3175,68.421,0.2845,0.4931,9.2913,0.2801,88.1026,95.4546,82.6087,91.3043,14.2987,0.512 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence Lincolnshire ICB,C82076,The Welby Practice,6933.387375,7.0773,77.8816,71.4286,5.7263,79.1667,81.7073,3.6351,96.4286,7.9249,1.8807,0.8421,1.6909,9.3294,6.8403,23.5228,54.7711,78.2946,0.1965,0.6175,16.3279,1.4554,87.1899,76.6871,72.973,97.2973,7.9943,2.3579 Lincolnshire ICB,C83001,Heart of Lincoln Health Group,26985.69448,4.7896,67.1506,60.1626,1.9534,46.7742,66.7722,1.6284,76.6667,3.2718,1.2966,0.5044,1.3607,29.4509,4.4413,9.0592,62.6588,80.2966,0.3385,0.8531,7.4469,0.1357,81.1707,86.3905,67.9426,88.5167,15.3036,1.063 Lincolnshire ICB,C83002,Navenby Cliff Villages Surgery,8712.254471,7.0633,79.2614,81.7797,4.4378,80.7829,79.235,3.9066,95.2381,3.7907,2.1691,1.328,0.6015,7.7881,7.7953,15.7371,64.4764,83.2589,0.2877,0.5423,7.6095,0.188,83.1664,80.2198,77.3196,94.8454,8.1126,2.3462 Lincolnshire ICB,C83003,Beechfield Medical Centre,18704.91505,6.0433,70.6468,59.9068,3.7251,65.6042,72.0994,2.8399,81.3131,8.1549,1.7519,1.1018,0.9754,14.892,7.453,17.2929,54.7132,70.9091,0.6086,0.8252,15.0863,3.175,85.203,77.9297,59.5918,79.1837,24.0671,1.8671 Lincolnshire ICB,C83004,Liquorpond Surgery,11134.48235,5.3887,64.9275,62.5,3.4166,54.7486,65.8768,3.1187,85.8586,5.0049,1.8309,1.0513,1.2189,22.3062,7.6326,16.2155,67.1972,85.9606,0.4205,0.6308,13.6231,3.0303,86.0266,77.8169,78.4173,91.3669,25.6346,2.3653 Lincolnshire ICB,C83005,Spilsby Surgery,8934.18233,9.0782,74.2938,67.1296,5.1747,76.7442,78.8462,5.3226,97.7778,9.4016,3.2796,1.4651,1.0589,26.8808,10.9772,22.7688,69.0196,84.2482,1.9624,0.9677,15.2735,0.4643,88.3105,77.551,92,94,13.4328,3.4946 Lincolnshire ICB,C83007,Lakeside Healthcare Stamford,26634.72443,7.8869,76.4033,74.1641,4.8358,69.9363,76.0148,3.5089,88.3838,7.6715,1.5259,1.2126,0.6092,10.5604,6.8547,16.0702,71.0251,83.9537,0.3796,0.7003,9.4585,0.8901,85.2417,82.6162,86.8966,93.4483,12.603,2.2631 Lincolnshire ICB,C83008,Swingbridge Surgery,6857.552925,7.3485,73.9583,67.1756,3.6577,76.4463,75.9259,3.0713,93.8272,7.2188,3.0434,1.0331,4.2156,21.7575,8.4081,17.4787,58.92,79.0698,0.3351,0.8376,21.4139,2.2898,87.7174,81.9277,85.3659,95.122,19.8511,1.7172 Lincolnshire ICB,C83009,Lindum Medical Practice,10002.65747,7.7558,69.8039,61.6216,3.5994,70.4918,70.068,3.0317,93.6842,7.5004,2.4299,1.056,1.6635,33.0205,8.1255,15.2152,64.0267,84.9315,0.897,1.408,16.4891,1.4372,88.1018,83.0986,77.5701,91.5888,20.5541,2.0325 Lincolnshire ICB,C83010,Parkside Medical Centre,16753.46998,4.2597,63.5271,54.918,2.6024,49.6361,60.5263,2.4991,68.1373,4.0608,1.5284,0.6712,1.2281,22.727,6.0567,11.6125,70.6534,85.3273,0.4131,0.6299,11.7068,1.978,84.8302,82.0847,71.6763,89.0173,22.8227,1.642 Lincolnshire ICB,C83011,Millview Medical Centre,12223.61341,6.5926,75.8772,70.5502,5.165,79.7784,79.2829,3.7624,94.6237,9.4483,2.3597,1.1634,0.8906,13.1705,8.9506,18.8531,63.7249,84.0741,0.4868,0.9076,14.3003,2.3717,90.9105,79.2793,84.8485,93.3333,10.3709,2.4505 Lincolnshire ICB,C83013,Ruskington Surgery,8485.250228,8.1113,78.1065,77.8261,5.8172,78.4314,80.663,4.3188,92.0635,9.4103,2.4175,1.0073,1.5429,13.7139,8.6496,23.3191,62.9032,80.5328,1.1584,0.5037,17.4763,2.717,88.6818,83.2536,86.6667,96.1905,11.9604,2.3042 Lincolnshire ICB,C83014,Boultham Park Medical Practice,10861.91109,7.9608,71.4734,63.3188,3.8194,76.2178,76.087,3.4384,84.5361,5.9436,2.9717,1.0953,1.2831,29.8832,8.1158,16.0492,70.8991,89.6883,0.8191,1.1906,16.6929,4.1212,89.9307,87.6652,93.4959,95.935,19.2553,2.1145 Lincolnshire ICB,C83015,Swineshead Surgery,9155.215654,7.9357,75.6477,69.7095,4.8322,82.243,83.815,4.5998,93.4426,10.8086,2.3115,0.7318,2.6257,21.3213,10.2511,24.2653,83.6397,92.3414,0.3601,0.7666,24.4235,2.8147,93.0496,83.2827,88.806,97.0149,13.4033,2.5787 Lincolnshire ICB,C83018,Cleveland Surgery,13719.77677,8.118,66.4935,55.3114,3.4703,71.916,76.1261,4.0841,78.8618,8.8761,2.8237,1.3423,3.5233,37.568,9.4621,18.3172,61.8995,85.2459,0.7202,1.2359,22.6764,0.495,91.7866,83.9437,74.269,94.7368,22.2503,2.128 Lincolnshire ICB,C83019,Beacon Medical Practice,30498.85762,8.9791,68.2692,63.593,5.1884,59.6154,70.362,5.7215,81.6092,12.5977,5.0552,1.0846,1.7981,45.5456,12.5643,23.7454,56.5501,68.7867,0.864,1.0156,18.1013,0.7857,89.7146,85.3194,62.1687,89.6386,23.1589,3.704 Lincolnshire ICB,C83020,Caythorpe & Ancaster Medical Practice,9600.128535,7.0583,77.0455,73.7201,5.9542,78.2258,84.3478,4.1064,91.4286,9.0638,2.2893,1.1601,1.4318,11.603,8.3967,24.2994,65.2313,83.3333,0.3798,0.6878,18.9741,2.7854,90.1884,82.7586,91.2698,96.0317,8.9077,2.6281 Lincolnshire ICB,C83022,Munro Medical Centre,20379.28962,5.5224,73.5905,68,4.115,79.0087,85.8268,3.5821,91.6667,9.0995,2.2478,0.994,0.3403,14.6751,7.7571,19.4152,74.0431,85.1815,0.8642,0.7164,19.0025,3.5597,93.1239,82.9431,85.5596,92.4188,20.4449,2.2299 Lincolnshire ICB,C83023,Sleaford Medical Group,17284.19446,6.3109,73.9264,74.7204,4.8947,70.6967,76.6017,3.6839,96.0938,8.4103,2.5535,1.1247,2.0303,13.7815,8.089,18.3221,76.8169,90,0.7001,1.096,19.2809,3.1445,89.0715,86.2921,69.4444,96.7593,14.447,2.3297 Lincolnshire ICB,C83024,The Glenside Country Practice,3578.731031,7.9966,77.5148,69.2308,5.4142,81.3187,78.6517,3.5192,92,6.4868,1.6243,0.6226,0.6423,14.2479,7.0298,20.8988,74.3548,85.5263,0.2707,0.5956,15.7033,1.5704,91.9206,89.8305,84.6154,97.4359,13.5326,1.7596 Lincolnshire ICB,C83025,Richmond Medical Centre,17187.88303,6.4939,77.6144,75.7075,4.669,79.5883,81.8444,3.8525,90.0662,9.6307,2.6085,0.833,2.2046,10.4215,8.0269,16.8676,72.5968,87.9333,0.7563,0.8768,14.9341,3.4206,91.8031,81.9355,87.6847,93.5961,9.6245,2.2304 Lincolnshire ICB,C83026,The Deepings Practice,23517.14714,8.6467,79.056,76.7062,5.8659,79.9383,81.9066,4.1983,94.4724,7.2645,2.0971,0.9631,1.0846,9.2786,8.5353,21.5251,66.5519,78.8514,0.3961,0.6004,15.3323,2.615,93.6338,85.92,83.4416,93.1818,10.5108,2.4639 Lincolnshire ICB,C83027,Horncastle Medical Group,11310.96365,8.1635,75.885,67.5768,5.4948,74.8031,78.3784,4.9828,92.4731,8.3835,2.0483,1.0832,1.3914,20.3625,8.8837,21.0143,55.5556,69.9248,0.5318,0.8863,11.6732,1.0908,86.7009,80.9062,72.2222,88.8889,12.3582,3.5943 Lincolnshire ICB,C83028,Holbeach Medical Centre,8653.12335,7.6964,72.3684,68.0203,4.2209,79.5122,84.0764,4.3356,88.2353,12.036,2.4484,1.2752,2.5159,20.9121,11.014,21.6016,70.9265,87.1041,0.4846,0.5993,20.4224,0.6686,91.944,80.3987,89.4737,94.7368,17.8756,3.2772 Lincolnshire ICB,C83029,Branston & Heighington Family Practice,5056.596248,7.858,73.7705,77.2727,4.5802,76.2238,73.2143,4.0908,95.122,9.322,2.2509,1.0178,1.0896,11.4502,7.9035,18.5751,60.1695,65.5602,0.2545,0.92,11.5739,1.0309,89.8519,75.7576,67.2414,81.0345,9.5612,2.7794 Lincolnshire ICB,C83030,Billinghay Medical Practice,5923.751377,9.4236,74.6725,71.4286,4.2437,79.3651,77.8761,4.8083,95.5556,8.1638,2.9589,0.9149,0.3786,25.4174,10.7577,20.3426,74.8227,84.4221,1.0317,0.6229,26.0057,2.7149,93.7867,81.5287,91.7647,97.6471,13.946,2.1413 Lincolnshire ICB,C83031,Nettleham Medical Practice,13328.56011,9.5512,78.8973,82.0359,6.1205,80.4878,83.5341,4.7948,97.8723,9.5284,1.9846,1.0638,0.4122,9.8337,8.8805,19.0919,74.158,84.1874,0.5319,0.651,13.171,1.3068,90.8069,83.8384,83.7209,97.093,8.661,2.7705 Lincolnshire ICB,C83032,Merton Lodge Surgery,8868.924516,6.8848,74.1144,68.8073,5.3731,70.1299,74.6667,5.3447,94.5946,11.3916,3.312,1.3078,0.6058,29.7802,10.4205,22.1748,73.6527,81.8414,0.9524,0.725,17.163,0.6434,88.3844,77.8196,84.9558,93.8053,14.5736,3.3547 Lincolnshire ICB,C83033,Hibaldstow Medical Practice,4161.503178,8.6822,75.5814,73.8739,4.9326,83.1461,82.9268,5.0674,100,10.1059,3.1267,0.7008,0.5454,17.8398,10.1808,25.4178,74.0988,88.1443,0.3235,0.7547,23.5483,0.501,87.8746,93.1818,66.0377,98.1132,13.1252,2.8571 Lincolnshire ICB,C83035,Hereward Medical Centre,11559.69435,7.6782,75.7353,70.3571,5.0466,80,78.1116,3.6581,91,7.1748,2.0452,1.139,0.6873,9.5141,8.4418,19.862,66.8461,80.9793,0.4573,0.6901,17.3904,1.9653,90.0831,84.4885,90.6667,94.6667,12.9212,2.3279 Lincolnshire ICB,C83036,Gosberton Medical Centre,8438.36963,8.8026,75.8904,74.4493,5.6104,76.1682,81.761,4.5623,96.7742,10.0722,2.2195,1.0234,2.9916,17.397,10.1174,21.1221,42.8999,64.8,0.6042,0.7275,15.0932,2.8391,89.4424,80.9524,70.3125,82.8125,13.7235,3.0703 Lincolnshire ICB,C83037,Welton Family Health Centre,8710.437379,7.6856,78.8618,78.6822,4.3903,79.2115,79.0244,3.2079,93.2584,5.4921,1.6554,0.4524,0.9624,10.6495,6.8417,15.9984,71.8014,85.3261,1.3469,0.5758,10.2528,0.2499,91.8504,86.0335,88.0435,94.5652,7.8627,2.0049 Lincolnshire ICB,C83038,The Glebe Practice,8272.417824,7.6602,78.5326,75.3138,6.2085,80.9302,80.8743,3.829,94.0299,8.6888,2.1621,1.1837,1.513,11.9865,8.0657,21.8867,75.1079,88.3886,0.4952,0.7972,19.4092,0.6821,89.87,77.2093,82.906,95.7265,9.1896,2.7902 Lincolnshire ICB,C83039,Moulton Medical Centre,6045.964481,9.8349,77.8986,76.5027,6.2556,78.8618,79.1367,4.8615,97.0588,10.8522,3.2887,0.6613,1.1335,17.7744,11.3184,23.0027,81.7629,86.6667,0.697,0.5362,23.1108,3.4049,91.0256,84.0909,87.8788,93.9394,10.7006,3.0384 Lincolnshire ICB,C83040,St. Peters Hill Surgery,15716.76051,5.9841,71.0317,67.5926,4.5365,70.0913,77.6062,4.2318,88.6793,6.7232,2.3021,1.1646,1.6314,18.6547,8.5176,19.8185,63.9226,79.4034,0.6703,0.9615,15.9265,3.3872,82.8345,84.2105,85.8586,94.4444,16.4594,2.099 Lincolnshire ICB,C83041,The Woodland Medical Practice,8431.342954,7.6215,72.1429,62.7778,4.5763,71.1934,72.6619,3.7688,90,10.5338,2.5894,1.5639,1.2318,22.8655,8.6115,17.2542,76.0246,89.4595,0.6153,0.8717,18.6671,4.2861,90.5213,87.9227,77.8846,93.2692,15.493,2.551 Lincolnshire ICB,C83042,Marsh Medical Practice,8293.231328,10.3752,75.7493,69.5652,6.9108,78.4722,76.8293,6.1872,91.2281,12.837,6.2168,1.0927,2.0351,25.0366,10.1992,33.5647,82.2668,89.5105,0.6645,1.1223,18.0901,2.5531,92,85.9375,91.8919,97.2973,12.3613,3.736 Lincolnshire ICB,C83043,Market Rasen Surgery,11387.84006,9.7282,73.3888,66.0256,4.0331,68.9394,68.6957,4.4516,82.6667,4.9369,2.378,1.1985,2.0134,18.2276,8.7074,16.7412,69.588,84.4706,0.7039,0.799,12.6721,0.1266,87.5207,82.6271,85.2113,95.7746,12.818,2.5492 Lincolnshire ICB,C83044,Caskgate Street Surgery,13701.79355,8.1446,65.7895,53.7037,3.7601,65.7963,70.1422,3.7684,79.646,7.3892,2.7951,1.0565,1.7192,41.0364,9.1312,16.2882,50.1569,68.7671,1.1314,1.2894,14.8105,0.5188,88.4396,88.3117,66.0377,81.761,23.3528,2.1878 Lincolnshire ICB,C83045,Hawthorn Medical Practice,22582.41764,8.2417,66.6242,66.3951,5.1555,61.6505,66.5698,5.4984,91.3793,11.1174,3.8548,0.8868,0.6891,42.1873,10.799,22.2656,67.968,81.2744,0.8159,0.9105,12.1932,0.7672,87.9485,82.5617,51.0274,87.3288,20.6081,3.169 Lincolnshire ICB,C83046,The Heath Surgery,5367.298165,8.244,74.0196,71.831,3.9786,80.8081,84.1667,3.009,91.8367,5.7421,1.8054,0.5851,2.5083,11.462,7.1035,15.4798,67.1177,90.3743,0.4514,0.8024,16.107,0.489,88.959,85.2174,87.5,96.875,12.7907,1.8723 Lincolnshire ICB,C83048,St. Johns Medical Centre,12525.16981,7.0783,73.8579,71.223,3.8584,77.5556,77.7311,3.4747,92.1053,5.7896,1.9476,0.9738,2.7306,18.6564,7.5914,17.0417,62.8108,79.3478,0.4574,0.7599,14.7603,3.2562,89.8602,84.5238,75.5102,90.4762,18.5074,1.9329 Lincolnshire ICB,C83049,Dr Sinha & Partners,9727.409635,5.8247,72.3926,66.5072,3.7503,52.9412,73.0263,3.6598,97.2222,6.3146,2.7649,0.6234,1,27.7681,7.7103,17.9369,54.9575,66.6667,0.2815,0.5429,11.2247,0.8534,84.5665,83.5165,86.4662,92.4812,10.061,2.3829 Lincolnshire ICB,C83051,Abbey Medical Practice,8644.427512,4.7874,56.5476,47.9675,1.8459,46.0274,57.6577,1.9262,82.5581,2.3584,1.9606,0.3784,1.3416,34.874,5.8388,10.2729,62.5964,84.7458,0.2522,1.4905,7.9791,0.3233,74.4103,89.4737,70.1299,85.7143,28.093,1.4561 Lincolnshire ICB,C83052,The Ingham Surgery,3676.523871,7.5974,74.8466,76.5217,4.6445,81.25,85.3933,3.2434,96.9697,3.124,1.5049,0.493,2.8716,18.0843,8.3229,18.1889,73.6842,80.916,0.4411,0.5968,19.4383,0.2684,93.1335,91.5493,83.6735,95.9184,12.4881,1.6087 Lincolnshire ICB,C83053,Colsterworth Surgery,2486.876067,7.8415,73.7374,70.3125,5.3999,78.7879,81.1321,3.8571,95.8333,9.7358,3.2481,0.8932,1.5166,16.0676,8.1029,24.5635,62.5807,80.7143,0.8526,1.0962,12.8669,2.5162,86.1437,92,90.625,93.75,12.7949,3.0451 Lincolnshire ICB,C83054,Bourne Galletly Practice Team,13985.10164,7.9668,77.7351,71.5847,5.1012,76.9723,78.3217,4.0228,95.4839,6.9199,1.9982,1.0057,2.4098,9.8183,7.7507,16.0844,66.2379,84.9558,0.6352,0.5095,15.1201,2.6145,89.0254,82.3009,85.7955,95.4545,11.0398,2.5076 Lincolnshire ICB,C83055,Stickney Surgery,6548.533171,9.4487,76.0252,71.0784,5.9439,78.9474,77.3723,4.6987,94.5946,7.3147,2.7727,0.9464,0.8872,25.745,10.5765,19.6414,56.9926,66.3793,0.6475,0.4649,19.0655,0.4718,93.0771,82.2917,92.0455,98.8636,12.1107,3.2542 Lincolnshire ICB,C83056,East Lindsey Medical Group,15970.8343,9.6265,75.2351,74.0291,5.52,71.547,73.5294,5.0553,92.233,8.315,2.2671,1.387,0.2456,23.4145,8.3808,18.6721,69.7629,77.3885,0.8449,0.9294,12.8196,3.7205,89.8332,79.3651,80.7487,89.8396,12.6597,2.936 Lincolnshire ICB,C83057,Kirton Medical Centre,7847.528835,6.4082,75.8755,66.1111,3.7657,72.4138,72.4138,3.2734,95.3488,4,2.1413,0.9476,0.6825,20.1029,8.0169,13.3522,62.1065,76.0618,0.3077,0.6399,12.4921,2.3425,89.4529,86.6667,69.1489,91.4894,18.589,2.0059 Lincolnshire ICB,C83058,Washingborough Surgery,8863.819098,6.8702,78.4946,80.5085,5.3152,79.3578,79.6703,4.3156,96.1539,6.6336,2.5047,1.3405,0.1559,7.6175,7.4769,17.0273,71.5377,87.7806,0.4469,0.5174,14.9114,0.3119,87.5479,82.2857,91.7526,94.8454,8.7601,2.6223 Lincolnshire ICB,C83059,Greyfriars Surgery,13011.28428,5.3621,67.9587,55.7895,2.9789,60.7516,68.595,3.3668,86.5546,5.487,2.2469,1.2223,0.9191,23.3342,7.8118,15.5676,71.4951,81.3726,0.4831,0.8051,16.2566,0.1454,84.7038,84.2767,82.0988,91.358,26.2091,2.2469 Lincolnshire ICB,C83060,The Sidings Medical Practice,16289.43502,6.0589,64.4401,55.7423,3.0143,57.1691,65.9864,3.4226,70.229,5.8757,2.4859,0.7506,1.8778,23.6917,8.5359,16.4765,63.5631,80.1961,0.6605,0.7266,13.5231,2.8838,85.4765,84.8411,66.9604,84.5815,24.2895,2.1857 Lincolnshire ICB,C83061,North Thoresby Surgery,9514.847391,7.5086,79.5506,76.4706,6.0395,84.0796,81,4.9354,90.4762,7.1074,2.5836,1.1262,0.5749,13.1429,8.0325,20.2606,74.1103,84.3284,0.3754,0.5741,10.1908,0.4102,91.7164,86.8996,85.2459,94.2623,8.4423,2.948 Lincolnshire ICB,C83062,Church Walk Surgery,5859.611445,7.8489,73.7991,73.6486,5.0586,79.5031,82.2581,4.0259,96,7.7074,2.4681,1.0327,0.5458,13.2125,9.1144,16.4887,62.8734,85.7741,0.6126,0.7177,16.9869,0.2908,86.1695,80,87.6712,93.1507,11.9512,2.328 Lincolnshire ICB,C83063,Long Sutton Medical Ctr.,20234.27856,7.3195,72.7403,63.9269,5.7813,75.3807,80.6854,5.7751,87.3016,6.8748,2.8534,1.1042,0.9252,24.5093,12.2761,20.9106,64.0575,79.7001,0.397,0.9801,15.9759,2.1088,91.4484,79.7639,70.2703,94.5946,16.0199,3.3683 Lincolnshire ICB,C83064,Marisco Medical Practice,22390.37812,10.0529,68.2844,67.14,7.1936,65.7143,67.4658,7.285,95.082,12.0209,5.9349,1.5681,1.0906,46.5569,15.9243,27.3047,73.7612,86.6438,1.0548,1.1603,21.684,3.3051,91.7697,81.7422,79.4667,94.4,20.1587,3.8957 Lincolnshire ICB,C83065,Littlebury Medical Centre,9367.212462,7.6746,72.7273,67.1111,4.4676,73.7052,73.5294,4.3076,86.2069,8.8194,2.4566,1.4625,2.0513,20.998,9.8028,19.2642,73.4118,87.1046,0.8112,0.7884,11.7778,2.3181,91.3101,83.3333,78.2609,92.029,17.9642,2.8679 Lincolnshire ICB,C83067,The Medical Centre,6568.329629,7.2097,82.4242,78.7037,6.9513,81.0811,84.2424,4.7341,100,7.5492,2.0524,1.0487,0.7871,9.4146,8.2863,18.8464,74.3456,84.8185,0.4794,0.4195,13.3632,2.595,91.6889,80.8989,92.4051,97.4684,5.8458,2.6217 Lincolnshire ICB,C83072,Minster Medical Practice,10954.61408,6.0143,76.2295,74.5098,4.7691,81.4815,83.9024,3.3093,96.8254,5.4924,1.6297,1.0198,0.1263,28.1425,8.0075,14.857,77.5832,88.0814,0.4799,0.9598,9.4066,0.1632,89.1692,81.7352,93.1034,95.6897,13.3923,2.1696 Lincolnshire ICB,C83073,Cliff House Medical Practice,7239.820664,5.9749,64.8649,62.1212,2.3112,67.8233,72.2222,1.9367,87.1795,3.2299,1.459,0.7876,0.5728,22.1647,4.7791,11.6721,52.3481,71.6667,0.4648,1.175,8.5282,0.5474,81.7743,74.4186,63.7931,87.931,18.5741,1.2912 Lincolnshire ICB,C83074,Willingham-By-Stow Surgery,5201.612232,8.3706,79.3249,74.6753,5.6891,83.9286,82.0755,4.7875,95.4546,11.1195,2.4259,1.1808,0.1753,17.1173,8.5757,23.8944,74.2664,86.7841,0.3006,1.0949,17.9564,1.0515,90.0997,77.1812,91.3793,98.2759,11.2188,3.0915 Lincolnshire ICB,C83075,Vine Street Surgery,10013.71072,6.2731,75.6374,76.2295,4.0906,77.2727,79.397,3.6117,93.1818,8.0413,1.5564,0.9678,1.0191,15.8894,8.366,18.1882,79.0778,89.7297,0.3492,0.6286,12.3788,2.7609,90.3728,82.1561,87.8049,95.122,11.5727,1.9755 Lincolnshire ICB,C83078,Brant Road & Springcliffe Surgery,8781.794763,7.4737,72.093,67.3171,3.9353,74.7475,73.8095,3.1996,88.764,6.4354,1.8729,1.5496,1.6298,19.3731,8.4112,16.3657,75,84.1954,0.8361,0.8361,14.8767,1.3371,87.5884,87.5622,82.7586,93.9655,16.6822,2.1405 Lincolnshire ICB,C83079,Glebe Park Surgery,5764.457943,7.1364,68.7861,72.9508,3.0181,75,75.5102,3.2193,92.4242,6.7562,2.3474,0.8887,0.6607,22.6403,7.4066,15.2918,76.1039,84.507,0.4192,1.2911,16.9651,0.7897,91.0774,83.3333,77.2727,93.9394,15.0238,1.727 Lincolnshire ICB,C83080,The Harrowby Lane Surgery,5592.047363,6.8615,77.619,67.5676,3.8598,74.7312,77.193,3.7755,83.6735,4.2375,2.3765,1.0113,1.6778,17.6929,8.8969,17.9167,72.4824,85.1675,0.5057,0.7753,14.046,1.9959,88.2332,85.1852,87.8378,93.2432,15.5488,1.9215 Lincolnshire ICB,C83082,Birchwood Medical Practice,10736.91878,6.997,72.6471,65.9389,4.1346,72.4234,79.096,3.5096,94.7826,5.6393,2.4423,1.6154,1.3491,25.2177,8.6878,16.5192,67.344,81.1765,0.7019,1.0865,18.4492,3.6072,89.6431,84.7826,90.3226,95.9677,17.8436,2.1346 Lincolnshire ICB,C83083,The New Coningsby Surgery,7845.138098,8.0439,72.956,65.5502,4.6235,72.8814,76.9737,3.9778,90.1099,8.9062,2.4667,1.0332,2.6166,18.2226,10.8229,20.031,56.1016,76.0606,0.5166,0.762,21.1604,0.5605,87.9057,83.1276,77.6,93.6,16.7733,2.3505 Lincolnshire ICB,C83085,James Street Family Practice,14633.18504,8.2502,72.7273,75.731,4.8716,74.1047,77.9923,4.2882,87.8505,8.6799,2.879,1.4319,1.5909,24.7251,8.0496,19.1605,70.8419,80.7229,1.3183,1.0304,9.6567,2.526,92.3378,86.6279,74.375,86.25,15.6406,2.8714 Lincolnshire ICB,C83611,The Bassingham Surgery,5743.45617,7.4659,77.9817,73.125,3.5252,78.6957,80.4348,2.5324,88.8889,3.8954,1.2806,0.7626,0.1669,9.8668,6.0208,11.741,68.2663,85.8824,0.9784,0.6043,9.0707,0.3986,86.3438,87.2549,80.3279,91.8033,8.5145,1.3094 Lincolnshire ICB,C83613,Caistor Health Centre,5570.973009,8.1629,73.3051,76.1589,5.3476,74.6154,76.6667,4.2972,76.6667,6.8398,2.2727,1.2796,2.5272,17.864,9.7533,19.1177,75.1576,86.0577,0.4775,1.1268,15.349,0.6709,91.3146,79.1139,86.4198,92.5926,11.8188,2.521 Lincolnshire ICB,C83614,Sutterton Surgery,3984.35422,8.4075,72.7273,66.0377,5.9149,78.1609,76.3158,6.136,100,11.4834,3.5932,0.4699,0.9434,25.7028,10.1706,24.9585,61.2466,80.6061,0.8016,0.691,12.3292,2.4543,91.5432,81.9444,86.4407,98.3051,13.1844,3.1233 Lincolnshire ICB,C83617,Abbeyview Surgery,8335.318058,7.6183,77.0149,78.6957,4.4611,77.972,75,3.4722,91.4729,6.3757,1.9009,0.6153,1.3955,16.8057,9.0039,18.6353,65.6316,81.7204,0.3736,0.6153,13.5449,2.2773,90.455,82.8829,87.5,93.75,13.4579,2.0767 Lincolnshire ICB,C83626,Brayford Medical Practice,9006.951379,5.0434,67.0213,60,2.1544,64.0969,71.3115,1.5361,90.8257,2.7863,1.3235,0.3285,1.7517,23.6095,5.0279,7.777,72.2222,80,0.3961,1.3235,15.8947,0.5722,84.8549,85.2174,86.25,93.75,23.3941,0.8985 Lincolnshire ICB,C83634,Tasburgh Lodge Surgery,5628.598593,8.4866,78.125,76.1194,6.55,82.5243,84.2105,5.974,93.1035,13.7107,4.4591,1.4082,1.2327,14.0807,10.2666,24.3226,73.3164,79.8867,0.6827,0.9174,13.7359,4.7911,92.651,80.102,94.5946,95.9459,9.7713,3.6697 Lincolnshire ICB,C83635,Woodhall Spa New Surgery,6325.588221,8.4064,78.7986,76.4706,5.4412,75.2066,78.0488,5.3493,100,10.379,2.2794,0.9191,0.2584,18.5755,10.2449,18.5294,73.6842,89.5131,1.0846,0.7721,20.3273,1.0801,90.3908,84.7716,88.3721,91.8605,9.4548,3.511 Lincolnshire ICB,C83641,Trent Valley Surgery,5082.254755,7.2967,74.2718,69.3548,5.7791,78.3505,74.7126,5.5596,100,10.9687,3.1456,1.8532,0.7407,14.8678,9.4015,20.7754,65.6968,85.4271,0.6828,1.6094,13.2194,0.4709,92.0158,81.0219,78.3333,95,10.8297,3.487 Lincolnshire ICB,C83643,Binbrook Surgery,2852.148063,8.5529,74.4526,66.6667,5.1431,78.1818,82.4561,4.6039,85.7143,8.3977,3.4011,0.6636,0.8687,25.4159,9.9237,22.0241,76.4172,86.6667,0.4148,1.0784,18.8224,1.0799,90.2619,76.3158,87.1795,94.8718,13.2057,3.1107 Lincolnshire ICB,C83649,Market Cross Surgery,4788.661635,8.978,75.2212,73.5849,4.9399,77.7778,80,4.0488,93.3333,3.591,2.0728,0.5812,0.5945,15.2516,7.3633,16.1759,66.8168,81.6568,0.5812,0.8136,12.5803,0.392,86.4088,88.8889,89.2857,94.6429,10.7242,2.0535 Lincolnshire ICB,C83650,The Wragby Surgery,4316.603737,9.4465,74.7312,65.2174,4.8469,78.4314,72.619,5.2041,93.75,10.5021,2.2449,1.2245,1.3472,24.0933,9.6794,19.9745,68.792,78.0749,0.3316,1.0204,16.4115,0.1933,90.1813,83.3333,90,96.6667,10.2541,3.0867 Lincolnshire ICB,Y01652,The New Springwells Practice,6842.723559,9.178,79.4118,70.098,7.0445,82.2222,86.3636,5.7328,95,10.3786,2.7045,1.0688,1.6145,17.6407,9.1151,22.2348,83.3959,94.1368,0.5344,0.7935,19.3734,3.1312,96.3089,82.266,84.7059,97.6471,9.6679,2.7692 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence "Leicester, Leicestershire and Rutland ICB",C82001,South Leicestershire Medical Partnership,21324.80205,7.4375,78.6026,83.7025,4.4625,78.7293,79.9603,2.8544,94.6342,5.2677,1.4272,0.788,1.356,6.6989,6.6126,15.2649,63.6707,79.4785,0.3015,0.7679,8.7055,0.5148,87.7417,79.5604,71.5517,87.5,8.9719,1.986 "Leicester, Leicestershire and Rutland ICB",C82002,Countesthorpe Health Centre,9473.32684,6.8154,80.2381,77.2563,3.6655,81.25,81.9005,2.9505,95.5357,2.7822,1.6653,0.7331,1.2052,8.1963,7.1571,16.2277,73.6131,84.4961,0.3077,0.5702,11.0723,0.2208,91.0165,84.0426,82.5,96.6667,9.828,1.6834 "Leicester, Leicestershire and Rutland ICB",C82009,Market Harborough Medical Centre,27389.09077,6.6972,76.5482,79.1367,4.6003,70.124,74.0214,3.1763,88.4477,6.0434,1.6106,1.1959,1.1815,9.4874,6.6474,16.2859,72.0499,80.6809,0.3906,0.9436,8.011,5.0737,87.5339,78.6667,89.547,94.4251,10.4659,2.2535 "Leicester, Leicestershire and Rutland ICB",C82010,Oakham Medical Practice,14664.96616,6.6411,77.6991,77.628,4.9476,69.0773,74.8276,3.5721,95.7895,6.541,2.2635,1.2085,1.1825,8.6189,7.9457,20.0507,70.1079,83.3716,0.3939,0.9748,13.9668,0.6609,89.4975,74.4246,87.9781,93.4426,11.2247,2.7642 "Leicester, Leicestershire and Rutland ICB",C82013,Bushloe Surgery,12990.41993,7.8068,73.3491,65.7143,4.3482,71.9512,76.7442,3.4817,91.6667,3.8072,2.4278,1.1866,1.5445,15.5682,9.5331,19.2194,71.7081,82.1366,0.6635,0.9134,16.7831,3.5714,88.9039,79.5107,81.8182,93.0481,14.0733,2.381 "Leicester, Leicestershire and Rutland ICB",C82016,Long Clawson Medical Practice,8034.711557,7.1365,78.0645,79.0698,5.1637,81.383,78.4091,2.9769,90.4762,3.7107,1.7635,0.9453,1.1909,10.7887,6.2074,15.5474,63.1518,79.0795,0.3809,0.5079,12.2713,1.435,83.7215,85.2174,72.4638,69.5652,10.6058,1.6084 "Leicester, Leicestershire and Rutland ICB",C82021,The Central Surgery,7551.674844,6.3799,66.9261,65.9218,3.1963,61.4458,75.1724,2.8631,67.2131,5.7939,1.3082,1.2465,0.5168,10.249,8.5296,15.5621,53.4386,79.9465,0.5183,1.1848,8.7066,0.4218,85.1362,77.4011,62.5,87.5,10.4057,2.098 "Leicester, Leicestershire and Rutland ICB",C82022,The Billesdon Surgery,6378.253317,6.9416,77.2436,75.3695,5.1798,76.7956,83.8509,3.5542,94.5946,3.6956,1.4465,1.0883,0.6887,8.9452,7.144,18.818,63.5189,81.3889,0.248,0.8128,13.3042,0.3508,89.9511,82.7869,79.4872,93.5897,7.9414,2.3557 "Leicester, Leicestershire and Rutland ICB",C82025,The Wycliffe Medical Practice,10320.9795,6.7126,77.3494,77.5735,5.377,79.5302,83.1858,3.1949,86.3636,5.3631,2.0348,0.8655,1.4302,9.1087,7.5154,20.4401,70.9392,80.2656,0.3038,0.6261,12.9162,0.7139,85.4235,72.0721,77.3438,92.1875,10.5675,2.1821 "Leicester, Leicestershire and Rutland ICB",C82038,Latham House Medical Practice,35372.44197,7.9057,74.2582,74.7497,4.3482,72.9337,73.8397,3.2038,95.3704,5.4946,1.9365,1.0078,1.4792,13.4197,8.3059,17.8734,67.9718,83.2869,0.4862,0.8167,14.167,2.9109,83.2541,78.3908,78.4615,93.4066,15.4266,2.2041 "Leicester, Leicestershire and Rutland ICB",C82039,Kingsway Surgery,9296.051954,5.1366,70.1299,63.3929,3.1097,69.6809,79.8883,2.8783,88.1944,5.0024,1.453,0.6293,1.9724,14.1105,9.903,17.8529,65.8831,81.1268,0.3054,0.7774,13.8664,0.9739,90.0931,84.6457,85.5346,85.5346,13.7355,1.4808 "Leicester, Leicestershire and Rutland ICB",C82042,The County Practice,11964.56059,6.0243,76.1317,76.25,4.6945,78.8204,78.7402,3.1245,95.3704,2.5988,1.6866,0.8938,1.122,12.7571,7.9062,15.3272,64.785,86.7769,0.4197,0.7306,12.6199,1.1473,86.6011,87.4459,83.0189,89.3082,11.4101,2.1607 "Leicester, Leicestershire and Rutland ICB",C82044,Empingham Medical Centre,8836.724398,9.3664,81.5461,76.259,5.9067,81.2274,79.1111,3.5855,90.2174,4.5314,1.5233,0.9534,0.7875,8.4226,5.3644,17.4611,72.9899,84.1584,0.2591,0.5907,13.0132,1.1802,93.084,77.9412,86.0759,92.4051,8.8093,1.9896 "Leicester, Leicestershire and Rutland ICB",C82048,Rosemead Drive Surgery,4336.266326,5.4938,69.7531,62.3762,3.8875,69.8529,80.4878,3.7586,95.122,3.1686,1.3316,1.0095,0.4297,10.2322,12.3578,20.0172,68.6567,80.1527,0.4725,1.0739,12.3255,0.049,91.9809,83.9695,84.6154,93.4066,7.7113,2.4484 "Leicester, Leicestershire and Rutland ICB",C82055,The Limes Medical Centre,13139.67365,7.4674,76.6544,77.8075,3.9568,84.2723,81.6949,3.0645,94.8276,4.915,2.0199,0.9685,1.8865,8.6563,7.0427,17.4876,70.935,84.1071,0.2767,0.7056,11.0989,0.2747,85.0861,79.2254,77.707,92.9936,10.481,2.0199 "Leicester, Leicestershire and Rutland ICB",C82056,The Glenfield Surgery,12746.41795,6.1417,76.4133,82.8829,4.6564,76.5403,79.4007,4.0195,96.1539,2.8196,1.3658,0.7997,1.8944,9.7582,7.7317,19.6447,59.0211,69.9422,0.5591,0.6298,6.961,0.827,86.55,89.7321,64.1509,92.4528,10.5024,2.1655 "Leicester, Leicestershire and Rutland ICB",C82066,Forest House Medical Ctr,14733.75878,6.5688,74.5868,75.2294,3.579,73.8137,79.3893,2.8389,95,3.7467,1.4619,1.4619,1.48,9.8784,8.0375,14.9591,64.8604,78.4038,0.4428,0.6976,11.6607,0.2581,90.6267,79.4118,82.9146,88.9447,10.4294,1.923 "Leicester, Leicestershire and Rutland ICB",C82067,The Croft Medical Centre,7620.818979,6.9265,73.1392,63.3803,3.1935,57.037,69.6429,3.4297,88.2353,3.4612,0.8883,0.641,0.7644,8.0792,10.7097,18.4527,63.0933,71.8377,0.3486,0.641,9.1722,0.8124,87.8717,82.7586,75.8621,89.6552,7.5958,1.9566 "Leicester, Leicestershire and Rutland ICB",C82068,Northfield Medical Centre,11972.4038,6.931,75.4023,74.4108,4.4973,81.2672,81.0573,3.0227,92.2414,6.7538,2.2975,1.1732,1.4665,11.3244,8.3596,18.3477,70.012,86.1592,0.4563,0.831,14.4154,1.5659,91.4482,82.5545,83.4395,94.2675,12.1875,2.1916 "Leicester, Leicestershire and Rutland ICB",C82071,Wigston Central Surgery,13564.28994,7.2591,73.348,70.8333,3.4853,69.6262,76.9231,3.0662,86.4865,4.7488,1.6177,0.8971,1.178,15.5378,9.5247,16.875,66.3934,81.6014,0.3676,0.8456,13.3444,2.0571,86.9912,81.9572,72.8643,89.9497,13.4209,1.9706 "Leicester, Leicestershire and Rutland ICB",C82077,The Uppingham Surgery,11448.11973,7.0022,81.7829,79.8246,4.6088,79.5222,86.4662,3.2626,89.4737,6.3559,1.8847,0.7444,1.251,9.2084,6.2975,19.4409,78.5253,87.1022,0.3009,0.6177,11.4205,1.1026,91.6071,78.2258,93.3884,97.5207,9.2738,2.2173 "Leicester, Leicestershire and Rutland ICB",C82078,The Jubilee Medical Practice,11206.24804,6.308,75.4967,76.3934,4.3351,80.5014,84.7737,3.4915,96.8421,5.3213,2.1717,0.9188,1.7908,12.9485,9.2856,18.7772,65.9575,83.7662,0.568,0.8353,10.8064,0.3707,89.5032,82.0189,86.0606,94.5455,11.3656,2.155 "Leicester, Leicestershire and Rutland ICB",C82079,South Wigston Health Ctr.,7575.733672,7.2744,67.2566,61.3924,2.9232,71.3636,68,2.8239,83.9286,4.6441,2.5401,1.192,0.5872,20.6645,8.6301,15.3257,65.9314,73.4849,0.4967,1.2204,14.3772,0.3232,82.1922,76.2195,84.6154,93.4066,18.9058,2.0718 "Leicester, Leicestershire and Rutland ICB",C82098,Hazelmere Medical Centre,6798.157279,7.6306,75.5725,76.9231,4.0444,74.2081,77.7778,2.827,96.0526,4.4545,1.6232,1.0686,0.9077,11.5071,7.886,18.2605,71.4971,86.039,0.2705,0.7845,12.3718,0.1875,91.1854,83.4437,91.1111,95.5556,14.0993,1.9478 "Leicester, Leicestershire and Rutland ICB",C82109,Husbands Bosworth Medical Centre,4540.364768,6.7895,76.699,80.4348,4.961,75,79.2793,3.0006,95.7447,6.1438,1.5803,0.8602,1.2385,10.9008,6.3249,18.9238,76.4624,81.579,0.5401,0.5401,10.102,3.5818,89.5314,80.531,83.6735,93.8776,8.5258,2.2805 "Leicester, Leicestershire and Rutland ICB",C82112,Severn Surgery,7516.843193,5.5667,67.7165,67.4877,2.1136,55.9406,72.1925,1.8343,81.3333,3.3129,0.7542,0.298,0.7675,7.3195,8.005,10.9404,72.8953,80.0995,0.3631,0.6518,9.5165,0.1917,90.4038,85.8025,84.5528,95.122,7.4947,1.1173 "Leicester, Leicestershire and Rutland ICB",C82611,The Masharani Practice,5582.445322,6.7112,71.9457,72.9032,3.691,81.5534,83.5714,2.2564,91.5493,4.5309,1.7633,0.9115,2.1144,9.0625,6.6654,16.5421,74.2762,84.689,0.4184,0.6127,14.7253,0.2131,94.6296,88.5714,87.3016,96.8254,12.7476,1.7035 "Leicester, Leicestershire and Rutland ICB",C82631,Enderby Medical Centre,5595.125859,7.327,73.9796,70.5882,3.2808,76.0456,76.7442,2.0801,92.9578,3.6746,1.3123,0.4886,1.4077,11.2054,6.8673,13.4301,73.43,82.0896,0.349,0.8795,11.755,0.8732,91.2447,80.1587,90.1408,94.3662,13.9312,1.4379 "Leicester, Leicestershire and Rutland ICB",C82649,Market Overton & Somerby Surgeries,5191.756431,6.8865,82.8,85.8896,5.7781,75.3425,79.5276,3.4521,89.0909,6.226,1.5322,0.5538,0.7018,11.4686,7.1668,17.9066,68.9521,82.7411,0.9784,0.5538,12.633,1.4195,92.5364,73.1482,83.6066,91.8033,9.1443,2.0676 "Leicester, Leicestershire and Rutland ICB",C82005,Groby Road Medical Centre (Id Patchett),10782.54753,5.4192,64.0152,63.2353,1.3637,65.0602,74.269,2.5016,86.4662,3.1733,1.8875,0.7315,0.2693,30.549,8.8421,14.1967,57.3833,61.8868,0.6593,0.7767,9.4731,0.0891,82.4334,86.9767,88.0282,90.8451,19.4225,1.4179 "Leicester, Leicestershire and Rutland ICB",C82008,Oakmeadow Surgery,9764.473839,7.7526,67.9825,71.345,2.8575,67.0103,75.8865,2.8925,89.7196,4.9778,2.8691,0.4899,2.7876,38.9733,9.5267,15.1621,74.8571,87.6,1.1313,1.178,11.5944,0.2431,88.1341,87.1921,81.8898,94.4882,20.9124,1.8195 "Leicester, Leicestershire and Rutland ICB",C82018,Parker Drive Surgery,13767.46311,6.4851,59.4104,60.2837,2.7802,62.3967,73.3945,3.1691,82.7869,5.0325,1.6998,0.7059,1.3451,29.1567,13.2954,15.1253,72.6005,82.4675,0.7419,1.138,17.083,0.3934,86.5398,87.8161,90.8127,93.9929,16.6697,1.779 "Leicester, Leicestershire and Rutland ICB",C82019,Sturdee Road Health and Wellbeing Centre,6069.507518,5.9347,64.7399,70.1754,2.1044,71.0145,74.7253,2.2222,93.75,1.4929,2.5926,0.4209,0.1583,37.769,10.4144,13.8552,71.7172,79.2308,0.4882,0.7239,14.0692,1.092,90.6655,81.3187,80,92.2222,21.0892,1.3131 "Leicester, Leicestershire and Rutland ICB",C82020,De Montfort Surgery,15034.64775,2.4119,55.5556,60.4938,0.4168,29.9517,63.6364,0.352,80.5195,0.4335,0.2871,0.1945,0.66,24.7982,1.675,2.7138,54.8446,79.4872,0.1158,0.6437,5.6054,0.4045,82.7225,79.4118,74.5763,94.9153,20.3149,0.2269 "Leicester, Leicestershire and Rutland ICB",C82024,Spinney Hill Medical Centre,18718.26515,4.774,53.3626,43.9909,1.267,70.0284,76.0933,3.0332,95.4286,5.0115,0.3504,0.5567,0.7176,27.7317,17.0851,17.5658,62.6052,78.2705,0.6287,0.9071,14.1639,0.1134,84.6768,92.4849,88.2556,92.9188,5.6808,1.4158 "Leicester, Leicestershire and Rutland ICB",C82030,Downing Drive Surgery (Ajj Bentley),6691.68973,7.6352,75.1852,63.8889,3.6819,73.2323,83.9695,4.0795,98.1132,3.6396,1.2224,1.4138,0.6126,13.7881,13.0087,21.8999,77.8578,86.1702,0.5007,0.8689,10.3964,0.4556,96.014,85.2381,95.4198,96.1832,6.3772,2.106 "Leicester, Leicestershire and Rutland ICB",C82031,Johnson Medical Practice,12292.94266,5.5727,57.3718,48.3051,1.7999,58.087,68.0952,2.1652,85.8639,2.0038,0.9202,0.4195,0.9363,23.3713,11.4658,11.5028,75.1507,83.5749,0.4804,0.9067,18.8109,1.5316,90.313,87.0629,91.6667,97.0833,13.177,1.1232 "Leicester, Leicestershire and Rutland ICB",C82033,Humberstone Medical Centre (Ip Jones),11045.60551,6.8981,65.0847,61.8605,2.0162,60.1942,69.8864,2.4605,62.8788,2.6271,1.6403,0.786,2.7762,29.0365,10.5435,13.0201,77.8471,83.0579,0.6749,1.3328,10.8179,0.5633,91.4237,89.6266,82.2222,93.8889,13.5266,1.3328 "Leicester, Leicestershire and Rutland ICB",C82037,East Park Medical Centre (Rp Pandya),9925.004691,4.7605,54.6632,51.1013,2.0247,60.8571,75.3012,3.7292,93.9394,6.361,0.5462,0.7534,0.7624,25.5638,18.9442,19.6252,79.2882,86.4865,0.5085,1.017,15.4188,0.6755,90.7877,89.6175,93.3735,97.5904,6.4792,1.309 "Leicester, Leicestershire and Rutland ICB",C82046,Saffron Group Practice,19190.35027,6.3265,60.0446,65.7576,2.3859,63.1068,67.2662,2.6971,89.3082,3.6819,2.6913,0.7261,1.5736,42.6825,9.5784,14.2577,67.382,80.9019,1.0604,1.6079,14.3687,2.1593,83.9575,86.0892,80.9322,90.2542,21.687,1.7347 "Leicester, Leicestershire and Rutland ICB",C82053,Hockley Farm Med Pract (A Nana),13488.63844,7.696,62.4138,51.5982,2.9761,63.4409,68.1319,2.5066,86.8217,4.0475,3.915,0.868,3.6355,48.8009,9.9051,14.7564,68.6111,77.8761,0.868,1.4438,16.7838,0.4853,87.1751,85.348,84.9057,91.8239,26.0719,1.7803 "Leicester, Leicestershire and Rutland ICB",C82059,Westcotes GP Surgery (One),1582.992872,2.6775,50,40,0.8139,35.7143,45,1.3022,86.3636,1.1716,0.7596,0.4341,0.4135,29.5783,5.3851,10.2008,40.8163,63.4146,0.217,0.9767,5.2378,0.2359,81.685,85,75,81.25,20.8333,1.1937 "Leicester, Leicestershire and Rutland ICB",C82060,The Practice-Sayeed,3265.869437,6.0309,47.4359,37.5,1.0714,56.8493,70.5882,2.8333,96.4286,3.6706,0.381,0.1905,0.6944,27.228,14.7182,11.4762,76.8692,85.1852,0.4762,0.7381,10.582,0.1029,90.2191,89.4737,82.0225,93.2584,10.9183,1.0238 "Leicester, Leicestershire and Rutland ICB",C82063,East Leicester Med Pract(S Longworth),12173.37763,5.7107,49.5082,61.4035,1.9651,45.5172,58.8235,2.2717,83.5616,3.7111,1.5092,0.5974,0.9529,29.7892,11.6249,13.8186,65.5616,81.7857,0.5345,1.1005,14.1224,0.426,83.0709,83.5484,75,89.4737,14.4781,1.4306 "Leicester, Leicestershire and Rutland ICB",C82073,Merridale Medical Centre (Rp Tew),14707.27506,5.2157,62.5767,49.1935,1.9647,52.7372,63.3028,2.1195,76.5823,3.0601,1.8705,0.3432,2.3586,33.1515,7.4525,11.2502,71.6596,86.8,0.5383,0.9824,9.5397,0.266,82.999,84.8361,61.7284,90.1235,21.2939,1.2381 "Leicester, Leicestershire and Rutland ICB",C82080,Shefa Medical Practice,4611.585638,8.2604,49.0741,41.6667,1.4044,62.2754,75,2.8707,76.4706,4.2565,1.0326,0.5989,1.6584,31.2842,14.7697,14.2297,74.9583,87.7778,0.6402,2.0653,13.9304,1.5083,90.3681,88.8199,90.4762,94.2857,15.5181,1.4457 "Leicester, Leicestershire and Rutland ICB",C82084,Dr B Modi,3012.644355,4.626,54,57.7465,1.4955,68.9076,70.9677,2.5395,89.1892,3.692,1.0158,0.3668,0.3868,26.7318,13.4556,14.7009,83.7472,83.3333,0.7054,0.8465,15.225,0.253,87.3766,87.6191,96.9697,96.9697,10.2269,1.693 "Leicester, Leicestershire and Rutland ICB",C82086,Fosse Medical Centre,9562.893388,4.1561,66.5049,52.5316,1.7152,70.6294,82.7338,1.5738,88.9764,3.1859,1.6115,0.3016,1.9851,35.9527,7.6266,13.8536,82.3928,87.9433,0.3581,0.9518,16.8729,0.4669,92.9608,91.3514,89.916,94.1176,23.5543,1.1026 "Leicester, Leicestershire and Rutland ICB",C82088,Horizon Healthcare,8976.703201,5.5619,53.3113,47.7612,2.037,46.9101,65.1429,3.1871,81.1111,5.3257,0.7407,0.3899,0.9661,25.1898,15.5212,16.9591,57.1812,72.8,0.6725,1.3353,10.3542,1.7549,92.9869,94.7761,88.0478,92.4303,9.9216,1.4815 "Leicester, Leicestershire and Rutland ICB",C82092,Aylestone Health Centre,4035.46292,5.4308,66.6667,63.3803,3.242,75.4286,79.661,2.2374,88.4615,3.9965,1.5753,0.3196,1.9693,28.0508,7.455,13.3333,75.5144,90.8163,0.3425,0.7991,9.3252,0.0728,89.97,87.013,89.5833,93.75,19.181,1.6438 "Leicester, Leicestershire and Rutland ICB",C82094,Beaumont Lodge Medical Practice,6881.705985,6.4031,62.9213,65.4412,2.5196,69.7479,75,2.3313,91.5663,4.092,2.0851,0.4199,0.3702,36.3736,10.5504,13.9878,64.9704,86.7769,0.6227,0.9123,14.9065,0.0956,85.6482,85.3659,73.5294,94.1176,18.1395,1.2019 "Leicester, Leicestershire and Rutland ICB",C82099,Al-Waqas Medical Centre,3725.244011,5.597,43.5897,38.4615,1.1719,58.4906,70.7692,3.3854,84.9057,4.0751,0.4991,0.3038,0.8209,26.5748,15.9977,12.8038,81.5175,90.7895,0.6293,0.8247,18.5283,0.9926,92.6944,90.8046,89.0909,95.4545,9.9688,1.2153 "Leicester, Leicestershire and Rutland ICB",C82100,The Hedges Medical Centre (Sa Bailey),7092.248814,9.086,64.5963,63.1148,2.6568,72.2222,70.6522,3.1781,90.625,3.1314,2.9763,1.5134,1.1572,43.3865,9.6043,15.8904,67.1485,86.9565,1.0089,1.5974,13.4332,3.0288,85.4902,80.315,73.75,95,23.4536,2.0683 "Leicester, Leicestershire and Rutland ICB",C82107,Cossington Park Surgery,7588.53442,4.6183,57,52.0548,1.6488,56.5625,63.5659,2.648,91.5493,4.5026,0.5746,0.687,1.0219,30.7397,16.0019,15.326,78.6389,92.3077,0.5871,1.324,12.007,0.7299,89.609,95.3571,92.5743,95.5446,9.0163,1.324 "Leicester, Leicestershire and Rutland ICB",C82114,Dr U K Roy,2263.582996,3.7037,59.1837,40,1.8341,51.0638,53.3333,2.0734,86.3636,4.2274,1.2759,0.2392,1.069,30.5428,7.8998,12.9984,66.323,85.7143,0.1595,0.9569,8.6978,0.1479,78.709,83.8235,93.1034,96.5517,26.4803,0.7975 "Leicester, Leicestershire and Rutland ICB",C82116,Highfields Surgery (R Wadhwa),4273.272731,4.2143,43.6782,44.2308,1.409,51.3966,69.3878,2.7971,82.9787,3.7008,0.8833,0.3786,1.6011,31.5508,13.4591,13.3123,72.7437,83.5443,0.5889,1.2829,18.5039,1.1494,83.3449,86.3946,91.3462,92.3077,15.4648,1.4932 "Leicester, Leicestershire and Rutland ICB",C82119,Narborough Road Surgery,2554.626246,4.0732,55.7143,52.5,1.5113,63.3333,79.4118,2.283,97.6191,2.79,0.4502,0.418,0.5181,24.0635,11.1811,14.5659,79.8429,85.9155,0.3537,0.6431,8.7684,1.4652,88.2006,93.3333,92.4528,94.3396,13.2045,1.0611 "Leicester, Leicestershire and Rutland ICB",C82124,Victoria Park Health Centre,14957.26778,3.0162,72.3757,72.6667,0.5819,36.9335,76.0563,0.4307,84.8214,0.4348,0.1889,0.1058,0.9761,20.7192,1.6412,3.1398,65,84.6847,0.102,0.4761,5.6312,0.2392,71.0823,79.4872,72.5806,90.3226,11.5284,0.3098 "Leicester, Leicestershire and Rutland ICB",C82610,The Parks Medical Centre (B Hainsworth),6441.857072,3.5041,59.6774,54.2553,1.9638,59.7458,62.1951,1.8104,55.3192,2.9837,1.6263,0.1381,1.0624,47.3786,8.1051,11.6293,65.9159,85.8696,0.7825,0.6751,10.5109,0.1262,87.6124,89.899,60,88.5714,19.7851,0.8438 "Leicester, Leicestershire and Rutland ICB",C82614,Asquith Surgery,4057.263325,7.2665,67.7966,69.0476,2.4473,63.4146,78.0822,2.4261,84.6154,2.5505,0.7023,0.7874,1.5415,14.4628,9.1435,14.386,66.6667,79.375,0.6172,1.1917,7.6514,0.8296,87.8981,85.3659,79.3651,90.4762,8.3705,1.3833 "Leicester, Leicestershire and Rutland ICB",C82620,Dr S Shafi,1687.876024,2.1376,50.9091,50,0.9251,36.2637,64,1.8062,47.0588,2.4896,0.3084,0.2203,0.3112,26.6501,10.2828,12.467,36,48.4849,0.1762,0.5727,6.7427,0.1805,87.0728,85.2459,78.9474,84.2105,20.921,0.7049 "Leicester, Leicestershire and Rutland ICB",C82624,The Practice Beaumont Leys,8560.030208,5.0203,53.5714,49.1525,1.3431,51.5942,63.8889,1.495,66.9811,1.883,1.8337,0.7709,1.7497,48.2761,8.8499,10.6984,69.3529,84.5361,0.8059,1.1096,14.031,0.393,84.5294,89.0625,73.5294,92.1569,22.9694,1.1796 "Leicester, Leicestershire and Rutland ICB",C82639,Westend Medical Practice,10082.70993,6.1436,66.1922,55.5556,2.4945,66.2371,79.1908,1.8001,83.9286,4.2859,1.7361,0.5757,2.1257,25.4413,8.5802,14.1813,66.2921,79.7386,0.5757,1.0691,12.1912,0.3958,87.2698,85.4701,74.6479,93.662,18.1779,1.398 "Leicester, Leicestershire and Rutland ICB",C82642,Highfields Medical Centre,8450.765188,4.684,49.3671,37.7143,1.2354,56.6085,68.4211,2.7674,89.4309,2.8583,0.4052,0.3459,0.5407,29.3466,15.8294,13.1647,79.4851,89.8438,0.5634,0.9389,15.3727,0.6063,92.2939,97.0588,90.7631,95.1807,9.2233,1.186 "Leicester, Leicestershire and Rutland ICB",C82643,Community Health Centre (Zs Osama),11069.15805,5.3147,40.2985,42.1875,1.1482,46.0317,60.6383,2.2891,83.237,3.2866,0.2383,0.3538,0.9578,31.5088,15.7947,11.749,79.5822,89.5105,0.5127,0.7727,17.4514,0.3714,94.5919,88.4712,96.1905,96.5079,5.7532,0.8521 "Leicester, Leicestershire and Rutland ICB",C82651,Broadhurst St Med Pract (Ks Morjaria),3265.74889,3.0748,56.8,53.9474,1.783,71.4286,77.5862,2.3773,92.5926,4.7229,0.9819,0.5168,0.3464,26.2214,17.8827,17.3643,76.3538,85.5932,0.5943,0.6977,14.6096,0.4451,92.7239,88.2759,94.7368,95.614,5.0015,1.292 "Leicester, Leicestershire and Rutland ICB",C82653,Westcotes GP Surgery (Two),1575.740175,2.1889,44.8276,34.7826,0.7527,39.1892,59.0909,1.0753,66.6667,0.8581,1.3441,0.2688,0.4621,34.7941,5.6975,8.2258,35.3384,60,0.3226,0.6989,5.3465,0,77.2816,100,64.7059,70.5882,27.4074,0.5914 "Leicester, Leicestershire and Rutland ICB",C82659,Dr R Kapur & Partners,2253.581176,4.0118,47.4576,41.8605,0.9592,64.1509,79.4872,2.2611,94.1177,3.4041,0.5481,0.2056,0.3095,30.6744,16.8398,14.8339,90.201,94.2857,0.4796,0.8907,19.0539,1.3477,93.5518,98.8889,92.3077,96.1538,9.1904,1.062 "Leicester, Leicestershire and Rutland ICB",C82660,St Peter's Med Centre (Mansingh & Mehra),6700.320465,6.4366,46.6258,42.0561,2.3538,65.0655,72.043,3.6732,84.058,6.3154,1.3643,0.9745,0.9511,24.897,11.8098,16.4768,82.7134,83.7838,0.5697,1.6192,16.6635,1.9531,85.629,78.5124,90.8333,94.1667,15.5075,1.8591 "Leicester, Leicestershire and Rutland ICB",C82662,Walnut Street Medical Centre,6773.53972,2.6642,41.9355,33.3333,0.7454,47.2973,64.3836,0.8448,83.9623,1.7378,0.4348,0.1367,0.45,25.0378,6.4402,6.8332,55.5336,84.0909,0.3479,0.6957,12.0093,0.0806,77.4324,80.9524,80.7692,89.7436,16.0733,0.5839 "Leicester, Leicestershire and Rutland ICB",C82667,The Charnwood Practice,7246.213146,5.4568,58.2418,52.2727,1.691,61.2903,65.5462,2.3023,89.7727,4.9869,1.1577,0.5983,0.558,30.8568,15.1583,14.7112,72.9424,88.6793,0.3902,1.1577,11.9268,0.0925,93.0571,88.3065,92.2619,96.4286,11.6489,1.4048 "Leicester, Leicestershire and Rutland ICB",C82669,The Surgery @ Aylestone,3806.568637,5.8706,64.9485,61.9718,2.1663,74.7059,77.2727,1.6306,91.2281,3.3985,1.351,0.2562,0.9624,28.2679,7.6855,11.1344,72.8155,81.8182,1.2113,1.1414,8.421,1.8197,91.7519,81.8182,85.4167,85.4167,19.7163,0.7221 "Leicester, Leicestershire and Rutland ICB",C82670,Inclusion Healthcare,1688.62577,8.6907,22.2222,,0.7901,47.619,40,1.8059,,1.017,2.9345,3.0474,3.0509,34.9174,3.7246,4.9661,50,,1.3544,8.8036,10.7345,0,89.8039,50,66.6667,66.6667,67.1765,0.5643 "Leicester, Leicestershire and Rutland ICB",C82671,Dr Gandecha & Partner,5680.318063,2.1813,52.2013,38.1356,0.6718,64.9231,68.5185,1.7782,97.3333,2.2952,0.2239,0.1317,0.2346,29.1603,14.4911,11.3277,87.4372,93.75,0.2371,0.382,6.4165,0.8197,90.9204,94.2529,92.6136,97.1591,3.5882,0.6454 "Leicester, Leicestershire and Rutland ICB",C82676,St Elizabeth's Medical Centre (Ja Wood),7058.606337,6.1909,61.9048,51.2821,2.2849,63.1579,72.449,2.5247,79.1209,2.0778,1.7066,1.0578,1.1247,26.4067,10.6415,14.1185,63.5204,76.0369,0.8463,1.1143,10.2173,0.4098,88.5071,81.0219,73.1481,88.8889,21.844,1.4951 "Leicester, Leicestershire and Rutland ICB",C82680,Rushey Mead Health Centre,5261.676818,5.3459,55.7823,59.375,2.0608,45.2941,66.6667,2.561,85.7143,2.7566,1.2605,1.2805,0.6399,25.6639,11.2218,15.8263,66.7205,73.2558,1.0004,1.1205,9.4511,0.7163,82.15,89.5652,78.022,89.011,11.676,1.6807 "Leicester, Leicestershire and Rutland ICB",Y00137,The Willows Medical Centre,32844.17805,5.6546,61.7329,65.669,2.3363,55.4585,68.6235,2.4068,79.1237,4.6506,1.6137,0.9125,0.9155,31.6409,10.2167,14.0364,66.3784,74.4344,0.542,1.2738,14.2718,0.4112,85.7983,85.3846,70.625,90,80.1656,1.6872 "Leicester, Leicestershire and Rutland ICB",Y00344,Leicester City Assist Practice,1001.247957,1.0475,60,40,0.4624,74.1935,66.6667,0.3303,100,0.3086,0.0661,0,3.5494,31.8449,3.7178,2.7741,66.6667,,0,0.6605,6.0185,0,87.013,100,90,90,20.6977,0.1321 "Leicester, Leicestershire and Rutland ICB",Y02469,Heron GP Practice,8611.635763,4.8314,45.122,37.3134,1.2426,51.5306,58.209,1.4596,56.5217,2.3979,0.6805,0.286,0.9619,36.1396,11.3855,10.5128,61.287,74.7126,0.4438,1.0454,9.3824,0.3166,81.6107,87.8049,68.5185,89.5062,11.2914,0.7298 "Leicester, Leicestershire and Rutland ICB",Y02686,Bowling Green Street Surgery,6776.050688,3.1978,51.4286,30.1887,1.0165,48.9655,51.7857,0.7502,60.5263,0.6976,0.605,0.0605,1.7515,29.3236,4.0088,5.5784,67.4779,77.7778,0.0968,1.0528,8.8318,0.213,87.3589,82.2222,66,88,20.7332,0.2904 "Leicester, Leicestershire and Rutland ICB",C82003,Greengate Medical Centre,10261.68054,6.4843,75.8105,70.318,3.885,76.4535,83.5556,3.1684,94.2529,4.3655,1.0705,1.1569,0.7811,9.509,8.6659,16.9645,74.4376,86.747,0.4144,0.5698,11.1385,0.3006,90.8225,83.8057,79.2683,87.8049,8.3017,2.1497 "Leicester, Leicestershire and Rutland ICB",C82007,Castle Donington Surgery,10140.38793,8.7619,77.4869,64.751,4.084,80.1205,80,3.7231,93.3884,5.9684,1.6146,1.1397,0.9333,12.5352,7.0054,15.595,66.1303,80.1187,0.2944,0.6078,12.8241,0.1897,85.8482,85.4271,83.0357,89.2857,12.2571,2.3839 "Leicester, Leicestershire and Rutland ICB",C82011,Pinfold Medical Practice,11974.98282,5.753,69.1429,61.2335,3.4264,60.4545,74.8691,2.6614,90.9091,3.9772,2.0754,0.7813,1.7699,21.2471,8.3685,15.6507,59.7911,72.1228,0.5046,1.2208,10.6602,1.452,87.0987,85.8736,82.2785,91.1392,16.0229,1.7742 "Leicester, Leicestershire and Rutland ICB",C82012,Ibstock House Surgery,10793.39693,8.7162,74.2857,72.1805,4.1912,78.4,80.1843,2.8111,95.7627,3.7304,2.4023,0.5963,1.7523,14.0349,8.4996,17.8124,59.4708,77.3365,0.3493,0.6133,17.6951,0.4129,91.1292,82.0175,83.5526,92.7632,14.6009,1.84 "Leicester, Leicestershire and Rutland ICB",C82014,Castle Medical Group,17010.42804,8.4048,78.2194,81.4988,4.2573,80.6452,82.7684,3.0473,93.7888,6.656,1.8983,0.7937,1.9585,11.5874,7.7229,16.7795,68.9093,82.5397,0.3719,0.6883,11.6462,0.8284,91.1283,86.8932,86.0335,92.1788,9.5755,2.0093 "Leicester, Leicestershire and Rutland ICB",C82017,Measham Medical Unit,14735.65688,7.1305,76.3819,81.5085,4.2251,75.1678,77.3292,3.172,94.958,4.5149,1.5733,0.5392,1.0651,13.3975,7.9676,16.5958,60.8962,78.2258,0.3553,0.59,13.3673,0.1112,84.3354,81.8182,82.9016,89.6373,12.4527,2.4361 "Leicester, Leicestershire and Rutland ICB",C82026,Bridge Street Medical Practice,8251.118055,6.6831,76.8953,67.2316,3.2992,62.0553,72.6619,2.842,92.7536,4.7382,1.6681,1.2604,0.679,17.6052,7.8924,14.8276,65.7609,73.9286,0.4819,1.2727,14.0486,0.2441,90.1971,80.7292,83.1776,92.5234,14.6006,2.1253 "Leicester, Leicestershire and Rutland ICB",C82027,The Old School Surgery,7014.010786,6.5993,77.8598,68.7151,4.265,78.75,77.2059,2.9686,95.0617,6.2274,1.8149,0.9982,1.0516,9.3878,8.0787,16.2173,77.9979,87.6712,0.2593,0.6611,9.1029,1.9108,89.0448,84.7368,91.0112,94.382,10.2817,2.0871 "Leicester, Leicestershire and Rutland ICB",C82028,Markfield Medical Centre,7299.153765,7.5655,79.1946,79.6954,5.3227,78.2383,78.3784,3.8279,98.3051,6.4787,2.4867,1.0618,2.1987,9.922,9.2931,20.9276,61.6522,77.8736,0.461,0.8103,11.7657,1.7515,89.9062,83.6539,85.4369,94.1748,11.3011,2.6823 "Leicester, Leicestershire and Rutland ICB",C82032,Dr Nw Osborne's Practice,6918.728428,7.9949,78.3784,76.7956,4.0946,80.2575,78,3.1964,97.7528,3.5524,1.651,0.7,0.8506,10.6153,7.0994,17.4217,77.0243,86.1027,0.2906,0.7661,14.3429,1.6536,90.8,78,84.6154,87.1795,11.4686,1.7963 "Leicester, Leicestershire and Rutland ICB",C82034,Quorn Medical Centre,8363.110444,6.4842,78.655,78.4232,4.3698,76.6102,78.9216,2.4529,85.8696,3.7822,1.4222,1.1337,1.1042,8.0618,5.1971,13.8102,60.5016,77.5457,0.3298,0.773,11.4228,0.3867,83.5614,70,89.0411,90.411,8.1314,1.9891 "Leicester, Leicestershire and Rutland ICB",C82035,Park View Surgery,7830.186491,6.3492,72.9258,68.4564,3.2091,63.8132,70.9677,2.9691,85.5073,4.5777,1.6804,0.7454,1.5567,19.6593,8.5268,14.6052,64.0523,81.5126,0.6696,1.415,11.2207,1.0232,84.6154,84.3434,90.4762,96.1905,18.1957,1.8067 "Leicester, Leicestershire and Rutland ICB",C82041,Charnwood Medical Group,11719.43686,6.3668,71.0938,63.4241,2.9577,65.0602,73.1132,2.8074,96.7391,2.8316,1.7161,0.514,0.5465,15.5352,7.8017,12.068,56.0594,72.8435,0.5852,1.0676,11.3463,0.2138,82.9348,82.9959,75.5102,84.3537,14.0288,1.9217 "Leicester, Leicestershire and Rutland ICB",C82043,Station View Health Centre,11364.60387,6.609,75.6477,67.433,5.0484,74.4745,74.5455,2.6173,93.3333,3.1311,1.7301,0.9582,0.9393,14.9167,7.86,16.3251,68.4678,81.5951,0.3993,0.7985,10.0086,1.0468,85.9747,82.5641,75.1825,89.0511,11.8869,2.1649 "Leicester, Leicestershire and Rutland ICB",C82045,The Surgery,7248.69123,7.2247,72.4138,66.092,3.1329,71.7241,73.2394,2.3276,91.5966,4.0889,1.9502,0.5662,1.7708,16.8275,8.0038,14.3684,64.7186,80.2752,0.4152,0.7046,11.1397,0.1745,91.2898,82.0144,81.3187,93.4066,18.0088,1.4721 "Leicester, Leicestershire and Rutland ICB",C82047,Maples Family Medical Practice,10559.70452,8.0712,76.1155,67.3004,4.2089,72.3724,77.619,2.9528,91.3462,5.3494,1.8841,0.6937,2.0942,14.9776,7.4699,15.5699,74.9064,83.4356,0.7312,0.9093,10.824,0.9478,90.6172,79.646,90.8333,93.3333,14.2161,1.9029 "Leicester, Leicestershire and Rutland ICB",C82050,Dr Nr Pulman's Practice,13834.08488,7.3982,69.869,65.1757,3.9132,70.0913,72.8682,3.0594,93.6508,4.0362,2.1487,0.8751,0.1935,17.4814,8.7549,17.1612,42.7424,58.5321,0.6546,0.7044,13.1903,1.4032,84.7235,86.0927,69.0608,76.7956,17.6541,1.7147 "Leicester, Leicestershire and Rutland ICB",C82051,Newbold Verdon Medical Practice,11197.1203,7.9552,78.4114,70.7395,4.9086,79.3103,77.7778,3.4709,90.2913,5.6762,1.5993,1.157,1.322,10.4463,7.5833,18.6644,66.764,82.1577,0.3913,0.5445,10.1773,2.1914,87.6458,80.9524,80.5755,92.0863,8.653,2.2714 "Leicester, Leicestershire and Rutland ICB",C82052,Dr Am Lewis' Practice,3937.108303,7.5123,77.027,63.5417,4.7336,78.0952,79.4521,3.5955,84,5.5313,2.509,0.776,0.4375,14.9478,9.5048,20.6932,79.5666,89.6104,0.4656,0.7243,19.1563,0.0541,90.3884,81.1881,91.2281,96.4912,15.716,2.4573 "Leicester, Leicestershire and Rutland ICB",C82054,The Burbage Surgery,11586.18509,8.6589,77.2523,80.9028,4.4956,80.274,82.4074,2.9971,92.3077,9.1821,1.5655,1.2641,1.8716,11.0716,8.6464,19.2968,66.0205,78.0399,0.4186,0.72,8.9856,1.8664,85.8543,83.6991,82.5806,94.8387,9.8041,2.2352 "Leicester, Leicestershire and Rutland ICB",C82061,Barwell & Hollycroft Medical Centres,13384.72056,8.4915,71.4286,73.1544,3.356,79.017,82.2511,2.3265,94.6108,4.8406,1.9422,0.6794,1.5022,16.6274,8.2006,14.5838,76.2472,91.1357,0.8167,0.7343,13.1073,0.6753,88.2743,81.5047,90.8046,94.2529,16.7207,1.654 "Leicester, Leicestershire and Rutland ICB",C82062,Barrow Health Centre,7829.248744,7.0757,78,70.339,4.9087,75.6654,80.1105,2.7169,98.8235,4.4854,1.8151,0.5936,1.8701,7.9739,6.6694,17.2945,67.5084,79.5107,0.2854,0.879,11.2486,1.088,89.3562,81.6994,73.6264,92.3077,10.3623,1.7237 "Leicester, Leicestershire and Rutland ICB",C82064,Forest House Surgery,12597.78693,9.2821,74.6102,72.0539,4.6871,80.4071,77.6744,3.2143,93.0435,6.6913,1.6356,1.4566,1.3961,13.7372,8.9996,17.9022,57.744,76.0736,0.6835,1.2125,8.576,1.3232,85.8321,75.3799,77.5,91.875,13.2357,2.1239 "Leicester, Leicestershire and Rutland ICB",C82070,Woodbrook Medical Centre,9949.017729,7.0372,70.7792,59.4059,2.6853,63.9785,69.697,2.8345,87.9121,4.7446,2.0233,0.8392,0.8854,18.3714,9.1348,15.6457,65.5275,77.7108,0.6154,1.4266,14.79,0.2915,87.2589,84.7518,83.5526,92.7632,17.839,1.9301 "Leicester, Leicestershire and Rutland ICB",C82072,Broom Leys Surgery,8236.591679,8.0505,72.0588,65.2406,3.7731,78.3582,79.1946,3.4149,90,7.6236,2.197,0.8955,2.2037,20.7625,9.2965,17.6119,73.9796,84.9498,0.406,0.7403,18.9399,1.775,93.011,86.6142,90.4,96.8,17.1938,2.0896 "Leicester, Leicestershire and Rutland ICB",C82075,Castle Mead Medical Centre,10520.26198,7.5683,77.5,64.9254,4.4866,80.0623,80.6763,3.4441,94.0171,9.1754,1.7407,0.6051,1.296,13.8228,7.011,18.1607,70.1434,85.8513,0.5585,0.9029,11.4692,1.1281,87.7821,82.3045,88.9831,94.0678,11.6511,2.3923 "Leicester, Leicestershire and Rutland ICB",C82082,The Centre Surgery,5493.528802,6.8698,71.5152,65.3846,4.2152,64.3275,72.9412,3.4017,95,5.3153,2.0891,1.1278,1.0586,16.4388,8.6494,19.7079,54.67,83.6502,0.5546,1.0353,17.0946,0.9955,89.3491,80.5755,78.5714,92.8571,18.112,2.2555 "Leicester, Leicestershire and Rutland ICB",C82091,Birstall Medical Centre,9504.295709,6.1291,63.786,62.1469,2.4278,66.5672,73.3766,2.8037,89.3443,4.8256,2.5029,1.0098,1.4662,29.4682,9.5685,15.6193,74.2857,86.6221,0.8701,0.9024,10.3203,0.2601,89.0879,84.5494,91.0448,91.791,17.2754,1.5576 "Leicester, Leicestershire and Rutland ICB",C82093,The Orchard Med Practice,10066.17726,7.4238,79.5918,81.6199,4.06,75.9162,79.2829,2.367,99.0566,2.106,1.5085,0.5697,1.0077,5.9472,5.8858,15.1328,75.4717,81.9484,0.3771,0.5938,10.5099,0.4739,88.2645,82.0809,84.5455,93.6364,10.1794,1.8695 "Leicester, Leicestershire and Rutland ICB",C82095,Alpine House Surgery,8424.144786,7.0661,78.8462,77.3913,4.3059,76.1566,77.8351,2.8596,100,4.7494,1.6983,1.1066,2.5339,10.6091,7.0168,16.117,61.608,76.0989,0.5369,0.9313,9.7757,0.8416,83.6504,79.1411,73.6842,94.7368,11.9104,1.9722 "Leicester, Leicestershire and Rutland ICB",C82096,Hugglescote Surgery,8513.763496,7.9538,73.8806,69,2.6485,78.2967,80.6061,2.679,91.1565,2.787,1.8743,0.4176,1.4333,15.0955,7.3008,14.9231,73.1489,85.5932,0.4686,0.601,17.5581,0.4233,90.0128,90.9722,85.8491,92.4528,15.0007,1.5178 "Leicester, Leicestershire and Rutland ICB",C82097,Charnwood Surgery,1929.178618,7.1429,71.4286,74.4681,2.9593,81.7204,85.7143,2.3839,87.8788,2.9503,1.4797,0.2055,2.5362,11.8407,7.645,15.1254,69.6078,95.1613,0.2877,0.7809,14.648,0.2384,92.0283,82.2222,83.3333,96.6667,14.519,1.1919 "Leicester, Leicestershire and Rutland ICB",C82102,Manor House Surgery,4350.846898,7.9786,80.8411,83.6735,4.1607,80.4511,81.4159,3.1974,100,4.7501,1.3732,0.5124,1.1191,12.7653,6.0398,17.7905,58.2133,71.2644,0.4304,0.3689,9.3758,0.6108,87.6348,85.2632,86.6667,84.4444,7.8007,1.7832 "Leicester, Leicestershire and Rutland ICB",C82103,Dishley Grange Medical Practice,6832.688565,6.3327,72.428,68.4848,3.2926,65.0602,69.697,2.8279,85.1064,4.8092,2.3633,0.6771,1.3452,12.7436,10.0083,16.0515,59.8394,83.0986,0.3585,1.2215,13.7548,0.2784,86.2172,87.8307,76.5217,92.1739,13.5944,2.0048 "Leicester, Leicestershire and Rutland ICB",C82111,Campus View Medical Centre,7882.771317,2.3737,77.7778,66.6667,0.1961,22.8669,73.3333,0.1177,100,0.1315,0.0112,0.1065,0.629,12.7538,0.4968,0.6948,68.3168,95.6522,0.0953,0.2409,1.0865,0.3571,79.8144,81.8182,77.7778,88.8889,5.9549,0.1065 "Leicester, Leicestershire and Rutland ICB",C82120,Whitwick Health Centre,3640.794068,8.2457,77.4194,67.9612,3.9268,76.1468,76,2.5013,100,4.8429,1.8289,0.7262,1.5052,15.4101,8.4866,21.1404,73.5385,80.1471,1.0759,0.6186,19.7644,0.2964,94.7451,86.3014,79.1667,91.6667,14.065,1.9634 "Leicester, Leicestershire and Rutland ICB",C82121,Heath Lane Surgery,14560.62836,7.5752,71.2665,71.5116,4.1043,71.7895,74.8092,3.1504,90.7407,6.5331,2.2973,1.0815,0.8446,17.8926,8.6044,17.1425,75.5272,85.1852,0.3896,0.8397,16.7012,1.637,90.6115,85.2071,79.1045,85.0746,17.3041,2.1428 "Leicester, Leicestershire and Rutland ICB",C82600,The Banks Surgery,5337.220511,6.5879,72.4719,73.4848,3.5691,80.2752,76.7857,2.3037,96.8254,3.5655,1.671,0.5354,1.9167,13.0473,6.6788,14.1791,67.0423,81.7073,0.5354,0.941,12.8607,0.4061,88.5309,78.2178,80,90,17.0956,1.379 "Leicester, Leicestershire and Rutland ICB",C82627,Silverdale Medical Centre,6705.160633,4.8795,71.1864,71.0526,2.7285,70.8333,83.1933,3.1048,92.9412,4.0554,1.3172,0.8065,2.0363,17.4741,12.1499,18.1317,77.5046,88.0478,0.3495,0.914,19.319,1.1032,95.4637,89.5522,89.9281,95.6835,14.5877,1.5591 "Leicester, Leicestershire and Rutland ICB",C82628,Groby Surgery,3021.735337,5.8806,76.7123,77.5281,3.2759,74.2857,77.6119,2.7676,96.7742,2.2269,1.412,0.5083,1.6967,6.8768,7.6387,17.4809,63.9676,76,0.4801,0.7625,9.4026,0.3883,91.1515,87.7551,75,92.5,11.0554,2.1463 "Leicester, Leicestershire and Rutland ICB",C82634,Ratby Surgery,4780.233484,6.6187,72.9885,71.0744,3.3255,75.1269,77.3196,2.5706,94.7368,2.9827,1.5639,0.6471,2.659,11.8524,7.4446,15.9446,62.6344,81.1189,0.3236,0.9348,14.659,1.284,84.7807,82.8571,91.3793,96.5517,16.1927,1.5999 "Leicester, Leicestershire and Rutland ICB",C82644,Dr Mk Lakhani's Practice,4036.995634,7.1509,77.305,74.7475,3.0926,84.3243,88.6076,2.3869,94.1177,3.9923,1.6812,0.3113,1.3216,12.944,8.881,15.3591,70.607,81.579,0.4774,0.851,14.6751,1.2492,92.7583,83.0189,84.7458,94.9153,14.6086,1.868 "Leicester, Leicestershire and Rutland ICB",C82650,Desford Medical Centre,4676.158093,8.0091,76.9231,73.913,4.0054,78.0488,79.3478,3.1734,96.2264,4.8412,1.8189,0.6966,0.8321,10.8918,7.7132,15.1896,66.1264,85.7143,0.2322,0.4644,8.3712,1.7299,90.225,80.7339,82.4561,91.2281,11.7099,2.1478 "Leicester, Leicestershire and Rutland ICB",C82656,Field Street Surgery,2827.109518,7.3387,64.3678,60.3774,2.1662,78.4314,76.7442,2.4503,95.4546,2.7803,2.1662,0.5682,1.0939,14.5218,7.7338,15.8381,71.164,76.4706,0.6037,0.9943,8.8879,0.4803,88.6054,70,75,90.625,17.7398,1.598 "Leicester, Leicestershire and Rutland ICB",C82678,Thurmaston Health Centre,6132.759508,6.6644,64.9746,65.2174,3.0725,65.1376,72.3214,3.5576,92.3077,5.145,1.6494,0.7762,1.2316,19.4657,13.4457,20.4075,69.3994,78.4038,0.469,1.0349,14.3226,0.0838,89.9928,89.3519,73.6842,89.4737,11.3197,1.7303 "Leicester, Leicestershire and Rutland ICB",Y00252,Dr Sjc Clay's Practice,2536.32953,9.5611,78.7611,76.6234,5.0096,83.908,82.8125,2.9223,100,5.612,1.2845,1.124,1.6673,8.8997,5.6248,14.3866,87.3199,95.0495,0.4496,0.7386,10.9801,1.4255,91.5423,74.1379,95.8333,95.8333,8.6449,1.991 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence South East London ICB,G83001,Manor Brook PMS ,12895.39844,5.8316,71.261,63.0189,3.4505,72.6496,78.6026,2.5073,88.1356,2.1096,1.7656,0.4192,1.0548,22.0746,6.8948,15.761,73.4591,84.1096,0.4676,0.9997,12.2478,0.2986,90.6361,82.5581,92.1053,94.7368,11.2162,1.6285 South East London ICB,G83002,The Westwood Surgery,8908.626649,4.7072,75.6272,81.1518,3.6117,71.9653,75.3086,2.4527,80.4878,3.9675,1.6558,1.7179,1.1583,10.9463,7.9106,14.8712,73.6603,91.3691,0.445,0.7555,12.981,0.8639,87.469,84.5304,88.3929,94.6429,13.1821,1.6248 South East London ICB,G83004,Barnard Medical Group,14921.81491,5.6852,75.7085,81.5476,4.857,74.1627,76.8657,3.1849,84.9206,5.5053,1.7445,0.8107,1.0956,13.4601,8.0932,18.6681,57.4909,66.6154,0.5212,0.76,11.1192,0.977,84.9638,83.7662,69.0476,84.5238,9.8234,1.9182 South East London ICB,G83006,The Albion Surgery,16051.36791,5.6797,76.7782,79.8834,4.0703,70.5993,75.8621,3.1687,91.716,4.1717,1.9579,0.702,1.2289,13.4593,7.6568,17.0348,67.7141,82.8869,0.5281,0.7084,11.9977,0.7072,85.8954,80.9798,91.0112,91.573,11.2111,1.8162 South East London ICB,G83009,Bellegrove Surgery,10781.96722,4.3416,78.0627,80.5344,4.3377,70.4651,76.9565,2.7497,85.8333,4.7034,1.4542,0.6018,0.8552,12.4661,7.3001,15.4785,76.1234,85.0416,0.56,0.4931,17.1459,0.7736,88.8191,78.3505,86.5079,92.0635,10.6859,1.9557 South East London ICB,G83010,Northumberland Heath Medical Centre,15884.99095,5.8578,70.2703,68.7296,3.4543,71.8427,71.9697,2.8563,83.2061,2.9945,2.6031,0.9005,1.9753,22.4009,9.4209,15.8858,58.1484,75.4258,0.5488,1.0834,17.6693,0.4477,87.4143,85.6655,82.1782,92.0792,16.9237,1.8784 South East London ICB,G83012,Gallions Reach Health Centre,15639.34501,4.8235,67.7249,61.2698,2.5359,63.5714,72.549,1.7923,77.7778,4.3307,1.3919,0.375,1.3932,24.4979,9.8477,16.7789,61.9862,80.8743,1.1122,1.2966,20.0336,0.4881,85.2908,81.0559,83.4061,93.8865,14.7634,1.4427 South East London ICB,G83013,Blackheath Standard PMS ,8145.864114,5.6262,63.9344,59.2308,2.7072,61.9048,74.3802,2.0613,81.4286,2.3035,1.5803,0.4535,1.4905,21.2667,6.6309,14.7176,71.1316,82.439,0.3985,1.3742,11.6362,0.3412,84.6785,80.6122,83.7838,90.5405,16.4161,1.4292 South East London ICB,G83015,Eltham Palace PMS ,8529.169236,4.7458,64.3979,59.3103,3.0162,66.25,66.1765,2.3725,81.4433,3.5476,2.057,0.3912,1.5134,26.1585,8.0102,13.1499,67.9042,83.0918,0.53,1.1358,15.8666,0.4124,87.5042,87.4214,74.7368,86.3158,17.2754,1.6785 South East London ICB,G83016,Royal Arsenal Medical Centre,10603.18023,4.3528,66.8224,62.7329,2.3602,64.1791,72.9032,1.4428,77.551,4.2437,1.3538,0.285,1.7834,21.1714,6.541,11.9879,76.5612,82.3009,0.9797,1.1133,14.7078,1.8182,84.6696,80.1887,88.8889,93.1624,13.102,0.8906 South East London ICB,G83018,Lakeside Medical,18346.48629,5.0724,65.1832,58.7021,2.4065,65.2174,74.1433,1.6619,78.1726,2.8001,1.5216,0.6421,1.6744,28.0743,9.1303,12.1621,53.4019,69.6683,0.5288,1.0684,16.8294,0.4857,86.8781,77.707,75.6863,82.7451,16.6775,1.3436 South East London ICB,G83019,Plumstead Health Care PMS,17471.75248,5.8318,65.8683,58.8076,3.2048,62.5436,74.0741,2.5463,80.829,2.2295,1.8815,0.5394,0.5316,23.8962,9.7292,15.1333,66.6178,71.3897,0.8153,1.223,14.2733,0.8153,84.2797,89.1608,80.2521,81.0924,16.9087,1.3672 South East London ICB,G83021,Vanbrugh Group Practice,16403.26478,3.9739,71.885,64.4898,2.0016,64.9855,71.4894,1.2616,89.6154,2.7429,1.0913,0.1384,2.1481,22.4236,3.7442,8.5334,69.1751,80.543,0.3993,0.9742,8.9756,1.7012,81.9501,82.4742,87,92,11.3002,0.8464 South East London ICB,G83024,Ingleton Avenue Surgery,4465.335793,4.2428,72.3684,81.4815,1.9231,74.2515,75.2809,2.1277,85,1.775,1.2889,0.3887,0,10.7229,7.1355,10.0246,61.2903,67.7966,0.2455,0.4705,12.8426,0.223,83.5701,64.6154,60.5263,81.5789,12.9864,1.207 South East London ICB,G83025,Welling Medical Practice,11631.97425,5.3787,74.5721,79.8611,4.9876,70.8215,77.5934,3.1295,87.6289,3.1152,1.8937,0.5779,0.9443,13.3464,8.8818,15.7095,72.8582,83.5979,0.3112,0.7468,14.5555,0.4195,87.0497,84.3434,89.7436,94.2308,12.8876,1.7514 South East London ICB,G83026,Triveni PMS ,8517.943582,4.6326,59.589,50.8065,1.9742,59.0395,71.3115,1.4454,77.4775,2.5577,1.4454,0.2115,2.338,29.4767,9.3063,12.9025,57.7778,79.6296,0.5875,1.1986,19.4414,0.4995,89.0805,84.6154,77.7778,88.8889,19.2275,1.1163 South East London ICB,G83027,Everest Health Partnership,19881.70226,4.872,62.0985,59.5506,2.6599,57.973,61.7089,2.1333,75.5981,1.4966,1.9433,0.2986,1.7586,27.9909,7.6128,12.002,63.9738,84.4327,0.4614,1.2105,14.5517,0.2593,83.815,84.9624,82.1596,91.5493,17.031,1.1345 South East London ICB,G83028,Bexley Group Practice,12493.45328,3.8874,70.2312,72.2656,3.2201,59.0734,69.5853,2.4003,91.875,1.6314,1.3442,0.4505,0.9731,16.1978,8.8456,15.5096,71.3953,86.579,0.4653,0.9306,13.8619,0.1642,90.3887,88.9474,93.6416,91.9075,16.5923,1.1817 South East London ICB,G83029,Plas Meddyg Surgery,6787.981659,4.7879,80.6306,77.6471,3.9366,79.2793,81.8182,2.7542,93.1507,1.9608,0.9042,0.7372,1.0411,8.1004,6.4428,13.5346,74.1655,87.3239,0.2504,0.5564,9.1272,0.7029,83.2637,70.297,88.0597,89.5522,7.2234,1.6553 South East London ICB,G83030,All Saints Medical Centre PMS ,6943.229991,5.1829,65.2174,63.1068,2.8887,72.4528,82.6531,1.7549,82.3009,3.9232,1.5686,0.3106,1.8594,24.9899,8.4155,12.9834,66.3408,85.8333,0.761,1.6928,19.8815,0.3425,90.8224,88.5965,83.75,91.25,18.4671,1.0405 South East London ICB,G83031,Abbey Wood Surgery,8209.595562,4.9581,61.2745,54.7297,3.1171,60.9665,74.6377,2.7023,72.6191,4.6737,2.1405,0.4147,1.8002,32.7232,11.8886,16.6288,73.6364,82.5175,0.7358,1.3378,17.6216,0.4155,89.7795,85,92.4242,84.0909,17.9427,1.913 South East London ICB,G83033,Dr Davies & Partner,5522.462847,6.1108,76.2136,76.1538,4.6611,74.3017,82.6531,3.4158,92.6471,3.7617,1.6011,0.8895,1.2829,10.2686,8.6033,17.826,69.837,81.203,0.6583,0.3558,11.4373,0.8323,90.7172,80,87.013,97.4026,8.7891,1.9392 South East London ICB,G83039,St Marks PMS ,11255.91811,6.7143,62.9787,53.4031,2.685,65.6566,71.7514,2.0725,80.8333,3.6283,1.3885,0.4288,1.1113,26.7653,9.599,13.5069,75.2294,83.871,0.7351,1.8275,14.7811,0.3917,91.0689,88.1188,88.4058,94.9275,18.8684,1.0107 South East London ICB,G83044,Fairfield PMS ,13006.33088,5.2045,69.8529,56.1644,2.8177,69.7588,75,1.9287,80,3.0412,1.643,0.2461,1.5876,28.8252,7.5297,12.4058,72.7599,84.5238,0.5318,1.3652,13.3711,0.5066,89.4885,90.0901,91.8519,91.8519,17.3648,1.3573 South East London ICB,G83046,Bursted Wood Surgery,6129.837227,5.7197,75,73.3333,4.0938,74.5763,75.9259,2.5847,84.507,4.9819,1.7017,0.6903,1.9888,14.4361,7.1911,16.4874,73.8771,84.5304,0.5619,0.8509,16.8743,1.2075,91.5402,80.1802,82.8571,91.4286,11.9876,1.5572 South East London ICB,G83047,Station Road Surgery_G83047,10130.18515,4.6784,77.8125,76.824,4.2376,76.9697,81.6327,2.1782,83.5165,2.1794,1.3861,0.5248,1.2214,11.6367,6.8782,12.3168,73.4874,78.5075,0.3861,0.8416,7.5799,0.2928,89.6777,83.3333,88.4615,92.3077,9.8902,1.4951 South East London ICB,G83049,Lyndhurst Road Medical Centre,12122.91387,6.4528,76.9679,72.4576,4.6424,78.6223,77.8351,3.1746,92.4658,5.7186,2.1079,1.4593,1.8196,13.8562,7.7624,17.2896,81.0085,89.98,0.4608,0.7169,16.0186,0.4998,90.9552,80.5668,90.7692,96.9231,10.4793,2.2529 South East London ICB,G83052,Belvedere Medical Centre,17662.94557,5.4781,68.2713,63.8554,2.9562,68.5393,72.4138,2.2254,86.5217,3.8241,1.6165,0.4041,1.4585,20.1648,8.8369,14.4486,63.5949,80.1435,0.4872,0.8304,16.6897,0.4619,87.9694,87.2222,79.7414,91.3793,13.9512,1.467 South East London ICB,G83053,Bexley Medical Group,20072.90087,5.2052,70.1521,73.5516,3.3951,72.6692,76.3689,2.2345,81.5069,4.6174,1.5459,0.6453,1.7475,16.0836,8.2346,14.3607,71.7701,85.1171,0.6453,0.9921,15.1467,0.2827,88.4758,80.8081,76.9231,93.1174,13.7863,1.4736 South East London ICB,G83057,Woodlands Surgery_G83057,10913.63202,5.4969,77.0408,85.0746,5.229,75.8794,77.2512,2.7831,92.5676,1.932,1.6335,0.7433,0.6225,10.7813,6.8312,12.4028,73.9964,80.826,0.3371,0.4322,10.1213,0.4639,90.1646,91.4773,92.562,95.0413,9.8196,2.0311 South East London ICB,G83058,Primecare PMS (South Street),9570.370717,6.8313,63.2979,62.5,2.4441,61.4341,72.7891,1.636,90.9091,2.6094,1.153,0.207,1.0794,23.297,7.9986,12.8609,68.0272,82.9457,0.3942,1.153,9.0618,1.1806,83.4987,92.7632,78.9474,88.7218,12.28,0.9461 South East London ICB,G83060,Glyndon PMS ,7917.662398,3.7296,62.0112,50,1.955,60.8856,72.9508,1.5935,89.0411,1.161,0.9775,0.2544,1.7942,29.7861,10.7605,13.1628,63.6566,76.7442,0.616,1.2855,18.1706,0.046,89.1689,86.1702,80,78.3333,18.4239,0.9239 South East London ICB,G83062,Slade Green Medical Ctr.,11050.69991,3.8847,64.2157,56.9892,1.8519,61.3734,68.0851,1.0199,81.6327,1.2081,1.2077,0.2594,2.5283,27.6202,8.8217,10.3328,50.8555,60.1942,0.6799,0.9215,17.6983,0.2151,85.3844,77.5,71.9697,89.3939,17.122,0.9483 South East London ICB,G83065,Burney Street PMS ,12620.45929,3.6568,65.7993,63.2558,2.2277,56.5107,71.2919,1.1612,76.3158,1.412,0.9024,0.2146,1.8231,21.1146,3.5057,7.0239,57.3069,72.2581,0.2083,0.9655,6.4081,0.5386,72.8309,83.3333,72.5,86.25,11.9512,0.6879 South East London ICB,G83066,Sidcup Medical Centre,23315.50118,5.2643,72.3133,78.1638,3.6272,68.741,75.1445,3.0578,79.0698,4.7753,1.7817,2.248,0.6625,15.9816,8.601,16.6045,63.2213,76.5914,0.6037,1.0111,8.8006,1.9747,85.5063,75.9091,69.4444,78.9683,11.8425,1.9731 South East London ICB,G83067,Valentine Health Partnership,32564.34827,4.6161,58.4104,49.5726,1.6927,65.5003,71.3362,1.3165,84.4262,1.4516,1.2194,0.21,1.4598,29.0224,7.4692,10.9021,68.7926,82.6613,0.652,1.6143,19.1518,0.5999,84.8689,90.8163,79.0831,87.6791,17.9915,0.9623 South East London ICB,G83628,New Eltham and Blackfen Medical Centre,8646.756198,4.444,67.382,74.0113,2.8502,77.3067,75.9259,1.8677,84.058,2.6974,0.8171,0.3405,1.3552,12.6775,7.0585,12.393,54.9098,62.3188,0.2821,0.6226,11.6758,0.1957,83.4696,85.9155,78,86,12.4556,1.0895 South East London ICB,G83630,Riverside Surgery,12765.79864,3.9504,63.0508,56.6964,2.9252,63.7681,67.1362,2.1389,77.2414,4.9031,1.1402,0.4404,2.2027,26.7401,10.6604,12.9197,67.5,80.2956,0.5976,1.1245,19.2418,1.0035,85.7364,73.6655,88.0829,91.7098,16.6547,1.4312 South East London ICB,G83631,Abbeyslade PMS (Dr Chand),4708.092811,5.481,72.807,62.766,2.6619,69.6133,81.8182,1.6558,82.3529,3.2258,0.7546,0.2934,1.1828,24.6843,9.8997,11.3393,62.069,87.5,0.3982,1.3624,17.4731,0.0733,88.8502,86.4197,80.2632,89.4737,14.3153,1.048 South East London ICB,G83633,Conway PMS ,5057.704665,3.5532,63.5036,65.9574,1.6549,59.7345,74.0741,1.7782,85.7143,1.4635,0.6514,0.1056,1.1577,20.8065,9.7372,12.5,71.885,77.381,0.4401,0.8627,11.7082,0.0676,81.1699,75.8621,,,12.1565,0.7923 South East London ICB,G83635,Waverley PMS ,4630.947284,5.8555,65.2482,67.0213,2.4451,53.2895,76.4045,2.6941,85.1064,3.0127,1.4942,0.2943,2.0177,22.5078,12.343,20.9192,55.8081,67.4242,0.4981,1.3584,15.6993,0.1228,88.2322,87.1287,72.2222,82.2222,13.0235,1.132 South East London ICB,G83641,Plumbridge Medical Centre,2775.93488,6.25,49.2537,57.1429,1.8983,54.8148,71.1111,1.7696,100,0.8318,0.7079,0.1931,0.5293,25.5838,10.9697,13.4813,65.2956,70,0.5792,0.8687,12.0227,0.2532,84.5309,94,82.1429,83.9286,10.4183,0.9331 South East London ICB,G83642,Crayford Town Surgery,9830.701688,4.7851,67.1429,59.0643,2.9206,69.8851,71.25,1.8098,79.2208,3.2669,1.6375,0.2394,1.3248,20.9119,7.3226,12.257,51.8817,54.2683,0.4884,1.0246,13.7621,0.7184,80.7052,87.0968,72.7273,86.3636,15.6185,1.1299 South East London ICB,G83647,Mostafa PMS ,7312.412432,4.4752,63.0303,54.0323,2.0802,56.3333,70.6897,2.1074,72,3.5238,1.4956,0.3127,1.0694,25.8312,10.1444,14.9422,64.6045,81.4159,0.9517,1.4548,12.9909,0.3426,86.0583,82.1192,80.3922,89.2157,13.3976,1.5636 South East London ICB,G83651,Woodlands Surgery_G83651,5603.135055,5.098,57.1429,55.4348,2.2621,52.9412,62.5,2.0031,91.1765,2.7557,1.6405,0.3626,1.691,24.1774,7.5335,12.7785,60.48,75.6522,0.5008,1.0534,11.7119,0.4802,79.7172,89.5833,78.5714,82.8571,15.9318,1.0706 South East London ICB,G83654,Bannockburn Surgery,5292.088121,3.4509,64.9123,60.9195,1.9463,62.5551,77.1084,1.4028,87.234,4.0314,2.0691,0.1403,1.4334,25.747,8.9585,13.94,78.5814,84.2105,1.4378,1.1047,20.3807,1.2414,89.2621,91.579,94.3662,95.7746,17.5122,1.3326 South East London ICB,G83673,Elmstead Medical Clinic,5755.004951,5.925,60.6557,65.5914,2.5981,64.9123,71.7647,1.9358,88.2353,4.0009,1.783,0.3566,1.1462,24.145,8.1058,13.3979,69.1412,85.2941,0.5094,1.1887,12.2189,0.7069,88.0342,87.1287,90.2778,94.4444,19.3534,1.1207 South East London ICB,G83680,Eltham Medical Practice,26351.07173,5.0052,70.3329,64.8077,3.7305,64.9254,69.0265,2.5853,88.2353,5.6058,1.5605,0.5318,0.7594,23.0414,7.0779,14.2852,67.6817,78.9873,0.3727,0.8385,11.9011,1.8544,89.5647,83.9081,84.3511,87.4046,14.8752,1.5916 South East London ICB,G84001,South View Partnership,12528.80662,4.8296,76.2887,73.6111,3.6541,68.2785,72.9323,2.3948,89.6296,2.9261,0.8225,0.6915,0.9906,10.687,5.7732,12.0542,68.4996,82.7676,0.4367,0.8153,9.6588,0.3337,84.7427,84.1026,79.646,92.9204,10.4275,1.4413 South East London ICB,G84002,Dysart Surgery,11077.46234,4.072,72.5753,75,2.9586,68.4022,78.3784,1.7444,90.9091,4.0086,0.8914,0.584,0.8562,9.0561,5.5556,10.5279,74.5336,82.5503,0.3381,0.707,6.4701,1.8682,81.5679,84.153,77.551,88.7755,10.652,1.2449 South East London ICB,G84003,Links Medical Practice,12209.42852,5.9216,66.4495,64.2241,2.4463,64.186,68.4211,2.2885,83.0769,3.2761,1.8325,0.4384,1.0579,29.648,7.9683,12.0737,74.1438,79.4258,0.4647,1.2977,13.4456,0.1904,82.7191,87.2449,89.8438,93.75,19.0481,1.4029 South East London ICB,G84004,Stock Hill Surgery,10606.05427,6.3206,79.3566,77.2152,5.6201,79.6875,80.1047,4.2514,86.5672,8.6913,2.0116,1.1406,1.2524,10.7907,7.171,18.9859,59.8784,73.2039,0.3111,0.6118,12.4483,0.4847,87.4599,79.4574,85.0467,92.5234,12.296,2.4264 South East London ICB,G84005,Derry Downs Surgery,6010.967095,5.683,72.7273,68.6441,3.9641,74.375,72.6415,3.3665,76.5957,2.7826,2.5697,0.7968,2.0621,24.9923,8.619,16.0159,58.804,80.198,0.5179,0.8964,18.3354,0.4395,89.4243,84.6154,69.2308,84.6154,18.8281,2.1912 South East London ICB,G84006,Summercroft Surgery,10238.96957,5.8761,81.1671,79.4007,5.6502,74.6212,80.1843,3.6308,94.3396,7.2077,1.0913,1.1423,0.4349,8.485,6.3195,16.3794,70.5461,79.5501,0.3978,0.7241,8.177,1.3693,82.9612,81.407,81.8182,87.5,7.7696,2.0806 South East London ICB,G84007,Poverest Medical Centre,8865.763645,5.6546,72.093,74.8768,3.3493,74.2537,74.7126,2.6771,87.1795,11.7683,1.5606,0.7323,1.8842,22.3013,8.0169,14.8499,72.3108,82.8326,0.4202,0.9604,17.1274,1.7555,89.3116,84.0909,84.375,93.75,14.5012,1.6927 South East London ICB,G84008,Manor Road Surgery,5588.716704,4.3215,73.3333,77.037,3.4371,72.0165,78.6325,1.8645,87.3016,2.1978,0.6647,0.4377,0.5691,10.7358,4.8312,9.987,71.3415,74.1936,0.2108,0.5837,6.7896,1.0071,85.7688,91.9355,80,88.8889,10.0349,1.297 South East London ICB,G84009,Family Surgery,4099.183375,4.9197,79.7101,78.022,4.8187,78.5714,83.1169,3.8407,100,8.9424,1.5983,0.9542,1.3666,8.8171,6.8723,14.8616,76.1124,84.6939,0.4055,0.4532,9.3583,0.551,91.0765,80,92.3077,97.4359,9.0724,2.0754 South East London ICB,G84010,Chislehurst Medical Practice,21676.08343,6.2083,77.3585,76.9653,4.6175,75.5528,78.6307,3.0068,88.8889,5.6863,1.6645,0.8343,1.1844,9.6819,5.9501,14.4391,66.7432,83.9185,0.2437,0.6443,9.5593,0.6963,85.7768,84.7418,87.5622,90.0498,16.3504,1.8834 South East London ICB,G84011,Eden Park Surgery,7628.523868,5.9562,74.7082,80.4878,3.437,78.3394,82.0106,2.1818,87.7551,1.4622,0.8328,0.5865,2.6904,11.5326,5.9644,11.7419,72.4051,78.673,0.4106,0.6686,9.285,0.5491,87.7689,86.4078,94.5205,94.5205,10.122,1.7009 South East London ICB,G84013,St Mary Cray Practice,4576.112183,5.3515,67.0213,62.6667,3.2664,64.5161,62.1212,2.8067,81.8182,5.9126,2.0566,0.5807,2.153,30.6271,9.0708,16.7433,68.4492,79.3893,0.6291,1.4033,17.5771,0.5534,90.5414,89.0909,80,88,19.7927,1.7663 South East London ICB,G84015,Station Road Surgery_G84015,10755.44466,4.8338,80.6236,82.9032,5.2291,79.1045,80.4598,3.4183,83.6066,3.1399,1.1456,0.9054,0.4216,7.2316,6.5023,14.4124,75.2432,86.4802,0.1755,0.7483,8.4434,0.2445,89.938,90.2703,93.2692,96.1538,6.7192,1.9679 South East London ICB,G84016,London Lane Clinic,13911.40376,5.3008,71.0112,74.7573,4.7815,69.9374,72.3247,2.6107,80.7018,4.086,1.3342,0.7212,1.0305,13.8302,6.2345,14.4887,59.387,72.2348,0.4183,0.9808,6.8459,1.5017,80.5343,81.7352,83.0645,87.0968,10.6622,1.428 South East London ICB,G84017,Addington Road Surgery,8552.529014,5.2744,78.0564,79.638,4.7761,78.8136,85.0515,3.0622,82.5397,5.026,1.2569,0.6284,1.2916,8.2601,6.6722,16.9219,63.6949,80.916,0.5256,0.6399,10.9926,0.6222,88.7508,88.6905,86.2069,91.954,8.0601,1.7368 South East London ICB,G84018,Cornerways Surgery,7744.913619,4.8023,76.4045,76,5.1978,67.8295,71.8121,2.8037,78.5714,5.8165,1.0114,0.9474,1.6728,8.4354,5.8984,15.1197,64.6342,81.4404,0.3713,0.6785,8.3333,0.8014,79.2513,86.2319,77.2727,87.8788,7.8365,1.7411 South East London ICB,G84019,Broomwood Health Centre,13014.76162,7.5221,69.2042,69.9571,3.1138,72.0988,76.8116,2.908,79.562,6.7253,2.4248,0.5816,1.9449,31.5318,8.3563,15.3364,63.278,82.8358,0.4832,1.1274,19.1213,1.3054,90.4457,81.2749,86.6142,89.7638,18.7657,1.5838 South East London ICB,G84020,Chelsfield Surgery,8859.710577,5.1852,80.1242,78.125,4.1587,75.8865,78.4211,2.7583,91.0112,7.679,1.3792,0.5835,1.6131,9.4958,6.5632,14.7146,74.8515,86.7374,0.2758,0.5092,11.3718,0.7448,90.1066,83.1522,90.9091,95.4545,9.2405,1.8778 South East London ICB,G84023,Southborough Lane Surgery,10546.36867,6.2334,76.2658,76.9231,4.3991,76.3407,78.6408,3.3493,86.5169,6.5456,1.5397,0.7699,0.7819,13.9266,6.5045,14.977,60.2667,81.2332,0.3399,0.9198,13.5326,0.9673,90.7459,85.782,90.625,93.75,10.5122,2.0396 South East London ICB,G84024,Bromley Common Practice,9375.462849,5.1987,70.7113,74.5856,3.4459,69.4915,72.7273,2.1574,88.6364,5.3013,1.2495,0.5076,1.4094,14.989,5.8629,11.2066,66.3697,78.8,0.4881,0.82,12.2576,0.74,81.9256,92.0245,85,87.5,12.4091,1.4057 South East London ICB,G84025,The Park Practice,9605.799216,5.8056,64.7959,62.0879,2.4096,68.6684,71.0227,1.6026,82.4176,1.6609,1.7618,0.1819,2.6776,25.5519,7.3917,10.7411,64.7268,68.932,0.7274,1.8641,14.9341,0.2323,84.4152,88.6957,73.9583,86.4583,19.2838,1.1025 South East London ICB,G84027,Elm House Surgery,18050.13563,5.2181,76.5653,77.3585,3.737,73.9295,76.2274,2.2103,88.755,2.3354,0.9829,0.5837,1.9515,10.9994,5.187,11.6999,66.8285,72.7088,0.1896,0.9629,9.9559,0.976,83.208,84.2324,77.3333,89.3333,10.6072,1.2274 South East London ICB,G84028,St James' Practice,7328.734481,6.6677,77.2532,76.506,4.1277,75.7813,76.2238,2.6099,85.5263,6.2336,1.1915,0.9645,0.9455,13.0241,6.5548,15.3333,65.3333,80.0781,0.5957,0.8369,13.938,1.2792,88.2965,83.0769,77.6119,85.0746,12.2798,1.6879 South East London ICB,G84029,Robin Hood Surgery,5118.526434,4.7493,65.6934,64.2857,3.6345,63.8462,67.4699,2.7259,65.2174,6.284,1.6154,0.4543,1.0876,23.7588,8.9964,15.371,77.4257,79.8077,0.4543,1.9687,19.6677,0.0614,86.3344,94.3925,92.5926,92.5926,16.8347,1.4134 South East London ICB,G84030,Forge Close Surgery,5680.168928,6.3352,79.8246,80,4.4739,78.2857,81.4103,2.6072,90.9091,6.0823,1.4347,0.6634,1.4675,6.8235,5.0293,15.0108,72.9917,81.6733,0.3394,0.5245,8.5731,0.5146,82.7273,85.2941,93.3333,95.5556,6.7538,1.7279 South East London ICB,G84032,Knoll Medical Practice,14057.45519,6.0269,79.3765,76.6323,4.4647,69.5473,78.6008,3.1674,88.4058,4.9058,1.3844,0.9567,1.9842,12.368,7.9742,15.0613,55.9564,67.6519,0.2609,0.7683,10.4032,0.5053,81.7985,83.6502,81.8182,88.961,9.132,1.8845 South East London ICB,G84033,Pickhurst Surgery,7438.3972,4.6455,77.6371,80.9524,3.7809,74.5704,76.5823,2.2457,92.7928,1.4998,0.8135,0.6874,1.2326,7.241,5.7431,12.7521,73.031,74.9091,0.126,0.5041,9.3852,0.3084,82.9355,86.3636,78.5714,88.5714,8.2938,1.2259 South East London ICB,G84035,Tudor Way Surgery,6785.568261,5.3168,78.6611,75.7396,3.7096,72.5352,74.6575,2.1251,93.1818,5.0726,0.6756,0.651,1.1006,7.8275,5.6447,13.4136,73.4394,82.1818,0.2334,0.5036,7.1941,0.197,84.1387,83.1858,89.2308,89.2308,7.234,1.0318 South East London ICB,G84039,Norheads Lane Surgery,3165.137647,6.0905,79,77.1429,3.929,83.5938,80,2.3681,76.1905,6.7159,1.3186,0.7535,1.7933,10.819,6.6944,15.366,77.2532,97.1429,0.3767,0.4306,11.4627,0.4573,87.8576,87.3016,88.2353,94.1176,13.1397,1.1572 South East London ICB,G84040,Ballater Surgery,9313.313381,5.998,77.1739,79.1045,3.7493,68.9487,75.8621,2.6833,85.2459,6.117,1.1303,0.5238,1.725,13.2389,5.7053,11.4593,74.5322,87.7193,0.3033,0.5789,9.5547,0.4497,87.9221,73.9884,94.186,97.6744,9.3393,1.3876 South East London ICB,G84041,Gillmans Road Surgery,3813.13259,6.5168,65.3846,60.3175,2.2578,63.4146,69.4915,2.0226,84.2105,2.9151,1.0113,0.3528,2.3131,24.7186,7.3589,11.3829,48.7981,67.6471,0.3763,0.682,12.1673,1.8851,79.7278,85.4839,72.7273,88.6364,14.844,0.8467 South East London ICB,G84604,Highland Road Surgery,6906.028133,3.816,63.5897,64.5669,2.2977,64.0351,69.0265,1.6359,81,3.1156,0.8492,0.2747,0.5852,12.7461,6.8217,10.5145,68.6944,80.3571,0.3497,0.7617,10.0427,0.1645,79.4985,83.3333,84.1463,87.8049,10.4738,0.7118 South East London ICB,G84607,Wickham Park Surgery,5413.316062,5.7067,79.2746,76.2238,4.4167,77.957,80.3419,2.6536,85.4167,2.8302,1.6029,0.8014,1.2129,12.6265,7.1049,14.39,66.0287,83.4254,0.5165,0.7836,11.7026,0.2642,91.0674,86.9565,82.1429,91.0714,10.789,1.7631 South East London ICB,G84609,Bank House Surgery,3768.209331,4.6075,79.1667,74.359,4.803,79.1304,81.4286,3.3729,78.9474,6.3418,1.8349,0.5397,0.4339,12.0773,6.8579,16.5947,80.8036,86.2275,0.9714,0.6206,8.0441,0.2516,89.4086,91.4286,92.3077,94.8718,10.8328,1.646 South East London ICB,G84621,Whitehouse Surgery,3517.280126,5.3631,70.7071,74.3902,2.6197,74.8344,74.026,1.9767,91.6667,3.5514,1.0955,0.5001,1.4019,7.9413,5.8932,12.5268,63.6119,67.7419,0.3572,0.5716,10.81,0.6826,86.1048,81.25,80.5556,88.8889,10.7786,0.8335 South East London ICB,G84624,Anerley Surgery,2815.208037,4.6037,53.7313,59.0909,2.8766,68.5714,70,1.1733,72.7273,3.1847,1.2112,0.4164,0.6824,25.5567,7.7269,11.355,81.9672,98.2143,0.6056,1.2112,23.5214,0.1224,82.6693,86.6667,88.2353,97.0588,14.4161,0.757 South East London ICB,G84625,Oakfield Surgery,6985.638905,4.6656,61.8182,61.2245,1.8544,76.9231,75,0.9478,84.9558,1.012,0.9615,0.1923,1.3436,25.0767,5.2832,7.4863,75.1468,88.2353,0.3846,1.0714,13.1914,0.1354,91.5254,95.082,91.0714,89.2857,18.9345,0.8654 South East London ICB,G84627,Green Street Green Med Ct,6828.887402,5.4283,77.3946,80,3.0236,82.7586,85.7143,3.149,88.5246,3.3757,1.1286,0.6688,1.0614,9.3682,6.3775,13.4875,76.6621,84.4156,0.1951,0.5713,7.7258,0.186,78.3704,85.9813,89.3939,89.3939,8.9938,1.5327 South East London ICB,G84629,Sundridge Medical Centre,6020.415545,3.9986,71.7391,69.2982,3.3033,74.6324,76.7857,2.1021,84.3137,2.9902,1.1064,0.8851,1.5867,15.9274,5.9824,11.0953,73.4266,91.5385,0.2371,0.9957,11.8999,0.4594,90.158,85.2941,97.9592,95.9184,10.1764,1.2644 South East London ICB,G84630,Crescent Surgery,2942.210861,5.4957,65.8824,63.4921,2.8821,64.8649,75.4386,2.1697,84.2105,4.0816,1.9106,0.5829,1.6243,23.3244,7.418,12.3381,65.6535,80.7692,0.4858,1.1658,13.3694,0.8781,84.7878,91.0714,77.7778,83.3333,15.7624,1.263 South East London ICB,G85001,Forest Hill Group Practice,10562.1189,6.4411,71.2538,71.9665,3.7414,64.3192,71.6279,1.8194,89.3617,3.3486,1.2222,0.4012,1.5923,16.9191,5.5908,11.8679,75.8263,88.7324,0.5505,1.1849,10.4086,0.5614,85.3239,86.1635,85.7143,94.0476,12.8826,1.1756 South East London ICB,G85002,Streatham High Practice,18785.6911,4.014,59.2885,49.1597,1.3056,55.6491,64.8855,0.7132,84.3066,1.8643,0.4715,0.133,1.6948,22.9626,3.8961,6.008,77.0864,88.8,0.1813,0.677,7.9956,0.1595,80.5694,82,92.9078,96.4539,14.5828,0.4674 South East London ICB,G85004,Modality Lewisham (Ml),39821.55458,6.4202,66.0836,62.2711,2.85,66.2898,71.6049,2.2375,72.3238,5.1265,1.8183,0.5989,1.1209,22.5206,9.1666,13.5558,59.8319,76.9325,0.7731,1.5271,10.9785,0.2817,84.3665,82.016,81.6701,91.2424,16.5001,1.6877 South East London ICB,G85006,The Acorn & Gaumont House Surgery,10442.24909,3.3588,50.8621,52.6316,1.8837,59.0909,71.4286,1.2078,59.2593,6.34,0.831,0.2327,0.1938,33.5443,12.6563,15.2465,62.3674,78.1457,0.3989,1.4848,24.5709,0.1659,88.4938,85.4772,87.4286,94.2857,12.0407,1.0194 South East London ICB,G85011,Clapham Family Practice,17929.95674,4.1475,62.2581,62.5984,1.7336,58.6858,69.3227,0.7099,85.7143,1.4407,0.5553,0.2125,0.9803,23.0377,3.7483,7.1035,68.0784,84.6939,0.198,0.9272,6.3208,0.1163,73.2322,79.3939,90.1639,93.4426,13.1399,0.6761 South East London ICB,G85013,Dr Rs Durston's Practice,9609.599381,4.9596,66.2602,68.4211,3.647,75.076,78.1065,1.8864,67.2727,4.2686,1.3605,0.4116,1.3594,28.1869,8.7842,14.4392,71.2466,73.1707,0.5602,1.7377,14.9674,0.6053,86.9041,85.7143,86.1789,91.0569,16.8451,1.3605 South East London ICB,G85014,Streatham Common Group Practice,11277.29496,5.3881,63.5739,62.2727,3.1239,61.4719,69.7917,1.8691,78.9474,4.7759,1.0004,0.5704,1.8646,20.7675,7.5019,12.4342,66.0103,76.7068,0.43,1.2373,10.0207,0.9249,74.8095,84.8039,83.3333,90.4762,13.5493,1.0179 South East London ICB,G85015,The Qrp Surgery,10399.84059,5.7721,57.3123,54,2.6064,58.0214,68.2081,1.705,78.4314,2.1277,1.5639,0.5322,1.1407,29.8305,8.4304,12.9344,60.5181,73.4513,0.5539,1.8897,12.484,0.1941,78.1067,83.2298,76.9841,88.8889,16.3194,1.5747 South East London ICB,G85016,Herne Hill Group Practice,14136.50557,5.2037,67.2634,64.486,3.1272,69.6093,73.2026,1.4043,94.8276,3.6746,1.0923,0.3966,1.7361,20.8815,5.091,9.8433,61.5564,85.1528,0.4681,1.4628,9.311,0.1242,82.2357,84.0909,89.916,94.958,16.7868,1.1248 South East London ICB,G85019,Trafalgar Surgery,3861.247142,4.4608,62.5,58.9041,2.5579,62.3288,78.8732,1.3193,79.1667,3.631,1.6155,0.377,0.6869,32.127,9.5882,12.601,67.4473,78.0488,0.1885,1.077,20.4449,0.2632,85.6653,84.7222,94.3396,94.3396,13.0099,1.1039 South East London ICB,G85020,Kingfisher Medical Centre,14077.93294,3.3995,49.4253,48.9247,1.5309,59.0419,65.3409,0.7812,76.3359,1.2974,0.8127,0.1701,1.1469,26.9866,4.7663,7.9443,49.7786,66.6667,0.2646,1.1025,10.3649,0.1564,71.7429,86.5248,80,88.8,14.3141,0.693 South East London ICB,G85021,Prentis Medical Centre,6324.437003,5.1073,59.2593,65.5556,2.7086,65.6627,74.4186,1.9068,86.9565,5.8596,0.8451,0.8451,2.5555,23.7859,9.5529,14.9729,77.6801,83.6066,1.7768,4.5721,18.4564,0.2999,88.2789,87.6033,87.3239,92.9577,17.7473,1.8418 South East London ICB,G85022,North Wood Group Practice,17091.07876,6.1234,62.1359,65.4286,2.8579,62.0168,69.3939,1.6644,70.2703,4.5365,1.5289,0.6,1.331,26.0329,7.7757,14.5797,66.719,69.0544,0.6516,1.4773,11.9398,0.526,75.3949,76.1006,85.4054,89.1892,15.2138,1.4515 South East London ICB,G85023,Lewisham Medical Centre,13276.27736,4.3032,60.7438,51.0638,1.7584,59.7516,64.6739,1.1678,81.4815,1.6573,0.9505,0.2784,1.7308,23.4001,5.3049,8.5817,49.5853,70.3911,0.2037,1.0184,10.5641,0.0655,79.5135,84.4156,77.3109,89.0756,17.0352,0.8215 South East London ICB,G85024,Sydenham Green Group Practice,17543.18671,7.1062,64.2523,64.497,2.9078,60.6529,68.1672,2.5897,81.1024,3.0456,2.3691,0.4089,1.3111,27.2546,7.8189,14.1559,52.242,76.9697,0.8113,1.6421,11.8811,0.1902,76.624,86.8966,77.4566,88.4393,16.8254,1.5772 South East London ICB,G85025,Brixton Hill Group Practice,11462.42381,4.703,63.1336,64.0625,1.9377,58.6957,67.1958,0.8968,78.3133,2.1551,0.8968,0.2963,1.315,25.8138,4.9611,8.0311,57.2241,74.1936,0.4244,1.3052,7.6979,0.5984,72.1446,80.1527,83.6957,89.1304,18.5823,0.8488 South East London ICB,G85026,Clifton Rise Family Practice,5044.918926,5.5091,59.2308,59.1837,2.8609,71.345,84.0909,1.7077,73.6842,4.9141,1.1533,0.7984,1.101,30.7126,12.8253,18.5185,69.163,70.7792,0.9758,1.3972,16.5145,0.1272,86.1993,82.3529,82.7957,90.3226,15.5025,1.7299 South East London ICB,G85028,Stockwell Group Practice,14034.62166,5.1744,56.2874,51.711,2.992,54.6314,68.2819,1.528,56.7568,2.3476,1.272,0.616,1.9672,32.472,8.3349,14.48,71.542,77.9264,0.528,1.576,12.8514,0.1267,82.6303,87.2247,81.1765,87.0588,20.1374,1.488 South East London ICB,G85029,Falmouth Road Group Practice,14696.24299,4.0079,64.3902,55.4878,1.2293,62.2416,74.2515,1.052,80.531,2.166,0.656,0.1832,1.6493,31.0333,4.578,7.1809,69.0388,74.4361,0.1714,1.1111,7.4849,0.1798,82.6185,86.8293,89.1473,95.3488,11.5831,0.6383 South East London ICB,G85030,Parkside Medical Centre,6474.213436,3.0836,49.6241,54.0816,2.0086,62.4506,72.1154,1.0362,74.5098,3.1921,0.9405,0.3188,1.3929,30.1265,7.8581,10.3778,71.843,76.9231,0.271,1.084,13.1167,0.164,83.8476,87.9121,83.3333,91.0256,12.4151,0.829 South East London ICB,G85031,Dmc Chadwick Road,6826.845014,6.1105,60.2649,60.4839,3.1095,75.3247,73.5537,1.4271,83.75,4.4561,1.0666,0.3455,1.9664,23.6323,6.5656,12.1076,67.3193,76.0563,0.5107,1.2618,13.0254,0.2988,84.1401,87.3134,86.5672,95.5224,14.4134,1.4121 South East London ICB,G85032,Torridon Road Medical Practice,12429.19403,5.5074,67.5516,63.806,2.9165,65.977,75.2066,1.8827,85.0467,3.8681,0.9666,0.6976,1.9658,23.8092,9.321,15.2211,69.8539,80,1.1346,1.681,18.6641,0.7664,87.631,71.8045,88.8158,92.1053,14.7806,1.3784 South East London ICB,G85034,Nexus Health Group,84177.32142,4.4382,58.2897,57.2977,2.541,51.1579,67.6923,1.4169,72.6351,3.444,1.6546,0.3139,1.1501,28.5354,7.3906,11.7016,67.0356,84.1104,0.4386,1.4011,12.4568,0.4492,79.8727,84.4394,88.4058,92.6421,15.5395,1.2186 South East London ICB,G85038,The Lewisham Care Partnership,53998.01102,5.3881,64.188,59.8402,2.6511,66.1783,73.6458,1.6671,85.6643,1.9913,1.0652,0.4394,1.5282,25.1551,6.5552,10.9737,63.6618,78.3871,0.5299,1.3477,10.9889,0.3451,81.3144,81.201,81.0916,87.3294,15.8965,1.1686 South East London ICB,G85039,Paxton Green Group Practice,19369.46058,5.7366,67.7966,64.7668,2.9898,64.6541,67.033,1.6802,75.6219,3.4441,1.1792,0.3757,1.2463,26.4963,6.8039,11.474,70.1706,81.4136,0.5948,1.0853,12.5771,1.2758,77.0093,80.6122,92.4324,95.6757,15.2298,1.3514 South East London ICB,G85040,Queens Road Surgery,15423.81457,4.9743,62.963,53.4161,1.2157,66.8919,71.5232,0.7391,72.7941,2.8649,0.9256,0.221,2.4075,33.3643,5.4117,8.7518,68.4492,86.8966,0.2418,1.2157,10.0795,0.1215,85.4006,76.4398,83.3333,92.0635,18.0143,0.7391 South East London ICB,G85041,Palace Road Surgery,8318.710453,4.8623,62.4434,60.4938,2.8686,64.0625,70.7792,1.3153,78.0822,2.0414,1.165,0.3883,1.7825,26.4107,8.1418,13.0152,62.7601,74.6032,0.5261,1.403,15.6155,0.8576,85.1678,89,84.1584,94.0594,16.3341,1.2527 South East London ICB,G85042,St Giles Surgery,6903.076963,5.1828,60.3053,61.7391,2.0849,70.8589,73.7864,1.0118,86.7925,4.0704,1.0271,0.2913,0.9534,29.2307,6.6449,9.8881,69.5122,83.0986,0.3219,1.4717,14.9248,0.2611,90.5553,84.9057,90.3226,93.5484,16.4859,0.8738 South East London ICB,G85044,Valley Road Surgery,5336.345177,6.0269,70.9677,69.4915,3.5862,79.638,82.8571,1.73,88.3333,3.2909,1.1173,0.4325,2.3695,22.0985,6.3922,11.7138,78.7431,92.6606,0.5046,1.4597,12.2422,0.7576,86.8433,85.3333,92,96,15.4628,1.1894 South East London ICB,G85045,Hetherington Group Practice,9419.407058,6.4963,63.0332,61.1111,3.0688,65.544,72.1854,1.4145,69.3878,3.9967,1.3906,0.2517,1.7347,26.2331,6.2294,10.7648,67.0588,78.9474,0.4915,2.3496,10.866,0.3153,81.0167,87.5862,87.1795,92.3077,16.6558,1.4865 South East London ICB,G85046,Lee Road Surgery,10867.75098,5.3785,73.2203,63.7931,3.2119,69.2308,74.8899,2.1041,94.2029,2.5925,0.6695,0.6934,0.6828,14.9731,3.6168,10.6878,60.1602,75.1462,0.1355,0.8847,4.4231,0.5831,76.2821,76.9912,69.2308,73.8462,12.3278,1.4745 South East London ICB,G85047,Knights Hill Surgery Suite 1,11225.7464,4.7803,59.3023,53.2051,1.9149,66.343,71.519,1.0258,84.375,1.9659,1.0344,0.2565,1.6401,26.3465,4.7558,8.4117,52.7877,79.4326,0.5215,1.3421,10.0033,0.2407,82.7161,83.7607,84.3373,86.747,17.6177,1.1284 South East London ICB,G85051,Elm Lodge Surgery,6671.09482,4.778,76.4706,73.2673,4.0826,74.5161,79.0323,1.6193,90.625,1.4682,0.5018,0.479,0.9543,12.4797,4.109,9.716,80.7463,81.8681,0.2281,0.5588,4.6249,0.2553,83.8006,87.8788,91.4894,95.7447,7.3766,1.186 South East London ICB,G85052,Old Kent Road Surgery,9966.154734,3.983,51.1364,49.6774,1.5253,54.5254,73.0061,0.9881,87.234,2.101,0.7675,0.1727,0.9669,31.0078,6.6745,10.1593,73.4064,89.0909,0.2494,1.0169,15.9126,0.2377,84.0983,88.4298,93.8053,97.3451,13.4384,0.6523 South East London ICB,G85053,Hurley and Riverside Practices,21303.09905,3.7373,59.3458,52.2796,2.3346,43.3188,61.3982,1.0479,82.7869,2.465,0.7561,0.1592,0.9163,27.7243,4.4177,7.7954,68.9119,84.0183,0.3228,1.0479,8.6301,0.4797,75.217,87.3077,88.0952,92.8571,13.8736,0.8092 South East London ICB,G85054,Lambeth Walk Group Practice,10837.51461,5.5099,65.5738,54.4944,3.2823,58.7537,67.6829,1.6468,64.1026,3.3463,1.3495,0.7891,1.7267,26.9371,7.4461,13.4149,66.6667,81.7352,0.4803,2.0471,11.886,0.394,80.8434,85.8824,86.7925,90.566,15.6824,1.6926 South East London ICB,G85057,Downham Family Medical Practice,7445.977775,5.9339,66.1417,63.5659,2.0138,71.4286,78.125,1.2936,66.6667,4.8829,1.3964,0.1764,1.2407,32.7501,8.4666,12.7444,68.7915,90.3509,1.2054,1.029,21.8331,0.0571,93.9732,87.5,92.5926,97.5309,18.8831,0.7791 South East London ICB,G85061,Woolstone Medical Centre,9362.515629,5.8831,66.8203,63.9344,3.1191,73.1132,76.25,1.6812,85.4369,1.5306,1.2941,0.3761,2.0822,24.7157,6.913,11.9013,74.0158,83.9572,0.4646,1.46,15.706,1.4739,86.2399,83.2,89.1304,93.4783,16.1416,1.1946 South East London ICB,G85073,Vassall Medical Centre,7534.556442,4.7344,54.1667,56.5891,2.3108,62.6404,75,1.2593,91.2281,2.1952,0.9347,0.4414,1.3943,29.0827,6.1096,9.8533,75.569,90,0.3765,1.3501,10.7387,0.2428,77.6588,82.7586,88.1579,92.1053,16.5894,1.2333 South East London ICB,G85076,New Cross Centre (Hurley Group),9657.594445,4.3487,57.868,53.3333,1.7437,60.4444,76.2195,0.847,80.5195,2.7504,0.8569,0.2093,1.2048,29.4661,7.0676,10.3826,63.9583,80.4878,0.4982,1.385,14.9203,0.0386,84.6663,88.1944,85.3448,91.3793,16.072,0.7274 South East London ICB,G85083,Sandmere Practice,11498.04662,5.0722,51.4286,58.0645,1.9502,58.08,71.7172,1.3109,82.2581,2.5685,0.6474,0.2185,1.5611,27.54,8.3896,15.229,59.988,72.381,0.2023,0.7849,16.7272,0.0579,72.6351,86.0082,90.7514,94.2197,10.4152,0.9791 South East London ICB,G85084,Penrose Surgery,14081.70632,4.0767,55.122,58.046,1.5413,53.3958,68.4524,1.0887,71.4286,2.0598,1.0166,0.2099,1.0337,30.6403,5.2174,8.3295,61.579,80,0.2624,1.1871,10.6836,0.4444,81.4112,84.9246,87.6923,90.7692,15.2642,0.7411 South East London ICB,G85085,Grove Medical Centre,11414.9816,3.9597,59.0164,52.4691,1.7385,58.3679,73.6196,1.065,81.6667,1.3056,0.924,0.2584,1.5338,27.3828,5.2903,7.5959,53.5593,76.4706,0.5012,1.159,9.1117,0.0413,78.2843,83.9695,80.7692,88.4615,16.4032,0.7674 South East London ICB,G85086,The South Lambeth Road Practice,8969.824749,4.5072,61.7143,61.6541,1.7434,60.5263,70,1.0213,75.9259,1.9816,0.6499,0.1547,1.5503,27.9285,5.4611,8.7786,77.9133,89.3805,0.3198,0.9903,9.3251,0.8036,87.714,90.0901,90.3614,92.7711,18.9935,0.9387 South East London ICB,G85087,Silverlock Medical Centre,15602.28461,3.9313,68.9815,53.0055,1.4033,63.2787,78.5714,0.7755,78.5714,2.6753,0.9232,0.1416,2.34,29.6679,4.7578,7.724,64.9956,80.5085,0.2523,0.9294,11.2334,0.1478,89.0848,81.579,91.2698,96.8254,16.1493,0.5724 South East London ICB,G85091,The Three Zero Six Medical Centre,5318.312123,4.2373,61.5385,66.2162,1.8307,75.718,76.8116,0.8103,95.283,2.6569,0.7503,0.2701,1.0974,17.0309,4.6699,7.563,75.7437,94.0299,0.1801,0.9004,10.7239,0.416,85.1432,85.7143,92.6829,95.122,12.1593,0.6002 South East London ICB,G85096,The Vale Surgery,9736.718179,4.6599,55.6034,56.25,1.7109,62.3529,70.5882,1.6475,87.7778,1.4535,0.6246,0.4255,1.1872,21.299,10.8736,12.9447,72.4192,81.3665,0.4798,1.0953,12.7372,0.2282,80.2601,90.7104,90.9091,97.4747,14.0946,0.9143 South East London ICB,G85100,Beckett House Practice,7931.354027,5.2832,55.2795,52.9412,1.8123,63.3484,71.7557,0.8888,85.3659,2.9968,0.7619,0.2193,2.1865,29.6772,4.7613,8.5075,75.0755,77.3333,0.3232,0.9927,11.8199,0.6191,71.77,77.4194,86.9565,91.3043,18.0936,0.8427 South East London ICB,G85102,The Vauxhall Surgery,8656.653208,3.2612,55.9633,51.6484,1.3175,60.223,70.7317,0.7905,64.5833,1.7822,0.6429,0.1686,2.4491,28.1638,3.8752,7.167,54.0269,73.8095,0.2213,1.0329,5.5651,0.7189,80.3022,88.5058,78.6885,83.6066,16.7733,0.6429 South East London ICB,G85104,Ico Health Group,11517.06786,6.7244,58.9655,56.3319,2.5288,64.3052,66.1836,2.2336,78.4091,2.8991,1.9581,0.3837,0.983,31.4584,10.3655,15.458,51.1503,66.6667,0.5805,1.1906,16.6231,0.1423,91.8977,89.3401,71.0692,85.5346,18.1927,1.5547 South East London ICB,G85105,Vesta Road Surgery,6335.756211,4.2951,63.3333,62,1.6761,71.0602,78.7879,1.2122,82.0513,1.4668,0.5687,0.6136,1.3018,21.9083,5.0663,9.2487,65.0096,78.9474,0.2844,1.1673,9.5343,0.1868,87.8353,90.9091,84.3137,94.1176,14.5145,1.3319 South East London ICB,G85109,Clapham Park Group Practice,16974.95747,4.8484,68.9189,63.2411,2.2353,68.3386,75.9184,0.9627,84.3931,1.8233,0.672,0.2574,1.763,20.4834,3.7942,7.4588,66.3723,85.9223,0.2907,0.8769,6.9426,0.8563,82.6691,79.6791,84.2975,93.3884,13.0922,0.7912 South East London ICB,G85114,Wells Park Practice,13174.97007,6.0363,65.7143,66.8085,2.9205,78.8043,79.5745,1.9391,88.535,2.4051,1.3692,0.5857,1.6339,26.0782,7.911,12.3229,76.1905,88.4615,1.0368,1.757,16.4096,1.5752,93.2263,85.5073,90.5405,95.2703,14.4294,1.2347 South East London ICB,G85119,Sternhall Lane Surgery,7050.002168,5.2059,58.6207,55.6818,2.0157,71.1268,70.5128,1.1787,91.0448,2.3513,1.2812,0.615,1.2676,27.8765,7.8649,11.0523,71.7602,80,0.4441,1.5203,14.3938,0.4129,89.468,90.7407,87.6712,94.5205,17.86,1.0762 South East London ICB,G85120,Triangle Group Practice,7209.621264,7.2353,68.2292,57.6923,2.585,70.8812,75.7353,1.678,78.6885,3.5982,1.8292,0.514,1.6867,30.154,9.3156,13.3182,75.0332,91.4063,0.8617,1.7082,16.7729,0.1852,88.5346,84.7222,86.3158,88.4211,16.9925,1.421 South East London ICB,G85121,Parkview Surgery,9927.058449,5.2594,57.8231,54.3103,1.6886,67.0146,71.0526,1.3836,79.3103,1.4974,0.7408,0.9914,1.4838,29.039,6.9727,10.8618,64.3029,80,0.5556,1.4054,15.7228,0.2059,84.5767,82.6446,89.2308,90.7692,20.0786,1.2093 South East London ICB,G85123,Binfield Road Surgery,9920.962506,4.4579,57.3604,54.7297,2.0553,65.4717,72.4638,1.1149,75,2.8479,0.7562,0.2715,1.8245,28.7735,5.4576,8.7058,70.1644,82.243,0.223,1.2991,10.6464,0.1658,79.2308,78.5185,82.9268,90.2439,15.6851,0.6786 South East London ICB,G85125,Park Medical Centre,7182.328088,4.9453,67.5676,58.4071,2.8344,59.9237,69.697,1.8312,76.4706,4.1982,2.3248,0.5733,1.6912,31.5449,8.0705,13.9172,59.8676,80.6723,0.5892,1.3217,15.38,0.4507,90.9264,85.8333,87.3418,93.6709,17.3827,1.3694 South East London ICB,G85127,The Corner Surgery,6647.214674,3.9302,56.1983,53.4653,1.7254,59.816,69.2308,0.9752,76,3.5238,0.9602,0.2551,1.2097,27.8543,6.3616,9.4674,73.1579,85.2459,0.5251,1.5904,12.6929,0.2316,79.6523,86.7347,92.8571,95.7143,17.0782,0.7352 South East London ICB,G85129,The Deerbrook Surgery,6611.299947,5.0297,58.4071,56.6667,1.8128,66.7532,75.7895,1.0612,65.1515,3.2885,0.6632,0.1916,2.7405,25.1148,5.8072,8.7546,61.1969,84.2105,0.5306,1.5623,8.5219,0.2679,83.1162,80.198,88.1356,88.1356,24.5679,0.899 South East London ICB,G85130,Mawbey Group Practice,11067.73583,4.437,61.0619,60.9195,2.3345,59.0517,70.9302,1.5079,73.75,2.7158,1.3534,0.3815,1.2988,28.5642,6.2141,9.5558,62.5414,75.5102,0.2816,1.4624,9.0275,0.6022,80.5861,84.9398,83.1776,85.0467,14.498,1.1718 South East London ICB,G85132,Tessa Jowell GP Surgery,14053.26686,4.5512,66.6667,66.9492,1.8232,69.0647,72.9958,0.9541,85.514,2.2511,0.9606,0.2091,1.0727,19.8976,4.8636,8.1161,55.6701,65.1429,0.3267,0.8822,7.5985,0.3663,86.9862,82.8947,81.6514,88.9908,12.5444,0.6339 South East London ICB,G85134,The Lister Primary Care Centre,8165.947016,2.9133,46.2428,58.6207,1.8726,56.9579,74.6479,0.9363,74.026,3.6308,0.6406,0.2094,0.8769,31.2014,10.1119,12.7141,69.5005,56.044,0.271,1.195,15.8615,0.1333,76.5718,88.4058,82.9457,86.0465,14.1099,0.9363 South East London ICB,G85135,Minet Green Health Practice,13795.10647,6.1813,57.3209,57.8125,2.6607,60.5809,69.469,1.3768,61.0526,2.9463,1.3261,0.3801,1.8517,32.7459,9.1736,13.7427,65.2322,82.2086,0.5321,1.5457,11.11,0.1607,79.4196,78.5366,84.6626,88.9571,17.8746,1.1403 South East London ICB,G85136,Waterloo Health Centre,11555.82057,3.5622,62.2642,46.1538,1.9801,41.4734,63.1944,1.0441,65.6716,2.278,0.6624,0.18,1.4287,22.6609,3.6773,7.7261,59.3256,77.4194,0.2448,1.1017,7.2784,0.4804,72.4712,77.0642,83.5443,88.6076,12.6923,0.7129 South East London ICB,G85137,Brockwell Park Surgery,7851.548896,5.2836,74.0506,65.1852,2.116,73.7705,77.3438,0.8781,91.453,1.8368,0.857,0.1693,1.4563,23.7145,3.5872,6.369,74.8106,89.1892,0.328,1.259,7.2947,0.4601,79.9145,93.0556,89.1304,93.4783,14.4078,0.8675 South East London ICB,G85138,Albion Street Group Practice,14142.01369,4.2788,66.0777,57.6577,2.3467,56.9544,74.0196,1.5666,82.906,2.0457,1.3428,0.2494,1.4082,20.827,4.3204,9.5147,69.6536,86.875,0.4028,1.0423,8.9016,0.5178,99.5804,88.6905,92.5926,95.3704,16.6368,0.8313 South East London ICB,G85623,Bermondsey Spa Medical Centre,11831.38183,4.4989,59.5349,51.7647,1.8313,58.5448,70.122,1.3539,89.5522,4.1762,1.7966,0.1823,0.4478,26.7874,6.3355,9.0609,74.9727,80.6202,0.4426,1.2324,11.206,0.1489,84.016,77.551,87.5,93.3333,15.9127,0.92 South East London ICB,G85632,The Villa Street Medical Centre,8701.804176,3.551,58.2192,64.1221,1.3421,62.0172,72.5191,1.0584,84.8101,2.6847,1.5276,0.2728,1.0215,32.8697,5.6491,10.1037,63.787,83.9506,0.6001,1.0475,12.8994,1.1856,84.7364,84.0426,87.8049,95.122,17.1698,0.7201 South East London ICB,G85633,Novum Health Partnership,24158.07566,4.5652,59.2975,52.0619,2.256,59.2342,68.7671,1.5354,73.741,1.9511,1.2528,0.4427,1.3591,29.9803,8.4529,12.0055,47.3464,64.8379,0.7818,2.4256,13.283,0.1634,77.9358,81.2903,78.3784,85.7143,15.1659,1.2152 South East London ICB,G85642,Blackfriars Medical Practice,7783.959043,4.0377,66.879,54.8673,2.2923,45.977,66.9725,1.1838,89.4737,1.8158,1.1946,0.2906,1.4004,22.4015,4.3842,7.5549,72.8333,91.1765,0.0753,1.0977,8.4263,0.6579,79.1767,79.1209,90.9091,95.4545,12.2024,0.8179 South East London ICB,G85644,The Gardens Surgery,5929.601745,5.9184,73.2026,74.6479,3.4023,73.7705,78.7879,1.2386,93.5484,3.9212,1.3014,0.3293,1.9703,19.0329,4.9867,10.7557,70.364,88.0734,0.5174,1.2386,8.6923,0.965,84.9321,78.4091,88.8889,97.7778,10.4548,1.1602 South East London ICB,G85647,The Exchange Surgery,6524.954337,4.6997,60.5839,63.4921,2.6391,70.3704,76.1538,1.4495,81.8182,4.7972,0.9299,0.2735,1.5186,23.0447,7.1757,10.8437,76.0058,93.8144,0.8478,1.2307,11.3374,0.9514,85.0446,90.2985,93.2432,97.2973,16.1279,0.9025 South East London ICB,G85651,The Dulwich Medical Centre,6519.41027,5.0538,63.0872,62.5899,3.167,67.7536,74.026,1.2724,80.6452,4.4625,1.1311,0.3393,1.2828,17.6459,6.4298,11.2965,69.8225,73.1707,0.3959,1.2866,9.9729,0.4825,76.6503,82.1705,86.1538,93.8462,12.6921,1.1593 South East London ICB,G85662,The Streatham Hill Group Practice,7436.895162,4.384,59.4059,58.9404,2.7172,58.5443,70.5882,2.0747,84.3137,3.7451,1.0842,0.348,2.0979,23.2832,7.4831,14.0276,70.9071,84.0278,0.3748,1.5393,12.1678,0.4626,74.7185,87.8049,87.9121,92.3077,17.212,0.8165 South East London ICB,G85673,Springfield Medical Centre,6125.746422,4.9993,57.3913,58.6538,1.3839,55.5891,65.0943,0.9702,70.1754,2.9809,0.6706,0.2283,1.9113,29.367,7.6246,10.0442,65.4264,69.4915,0.7419,1.4553,10.8539,0.1893,78.2772,78.5047,68.6747,81.9277,16.797,0.8132 South East London ICB,G85674,Grafton Square Surgery,4891.074908,4.3944,65.8824,56.9231,1.6467,66.1939,70,0.9849,95.8333,2.9078,0.4925,0.1539,1.4894,19.79,3.1239,5.9095,69.2308,82.6087,0.1847,0.6771,5.5142,0.0958,74.0067,86.5672,92.8571,96.4286,10.8601,0.6156 South East London ICB,G85681,The Lordship Lane Surgery,5135.678574,3.6884,53.6364,55.6818,1.5412,59.3607,68.6047,1.112,75.3247,3.6408,0.6438,0.2731,1.1651,21.1259,9.3802,9.286,73.0198,84.7222,0.2731,1.073,15.0485,0,73.9752,78.9474,88.5714,87.1429,14.5664,0.5853 South East London ICB,G85685,The Nunhead Surgery,10456.43725,6.1426,65.4028,57.7778,2.3057,77.6442,77.2152,1.2956,85.4167,2.2799,1.3834,0.4941,0.8378,28.1555,6.8105,10.134,69.2308,85.2071,0.538,1.5042,12.2785,0.5019,88.4799,84.5455,86.9565,91.3043,18.0437,0.9881 South East London ICB,G85690,Herne Hill Road Medical Practice,7220.779889,5.6255,63.2,58.1197,1.9586,61.5385,68.8073,1.0557,77.4648,3.7268,1.0418,0.1945,1.3659,29.1895,5.6027,9.1679,59.1623,78.1609,0.4306,1.5974,11.3659,0.1813,77.4284,81.8966,96.6667,100,18.0792,0.8335 South East London ICB,G85695,Akerman Medical Practice,6555.526357,3.5034,48.6486,44.4444,1.2575,57.5,61.1111,0.6427,66.6667,3.5962,0.4471,0.1956,2.2093,30.0878,5.0416,7.5031,73.9044,91.4286,0.5449,1.2016,9.5791,0.3511,69.1384,88.421,81.0345,86.2069,15.7195,0.6567 South East London ICB,G85696,Vale Medical Centre,14305.77628,5.5291,65.9574,67.1233,1.8977,73.43,74.0426,0.7706,85.2,1.0328,0.7833,0.5222,1.7021,23.8177,4.6457,7.5145,53.0754,74.4186,0.3248,1.1017,10.8155,0.1452,78.2562,83.1933,84.6154,89.4231,14.1471,0.7642 South East London ICB,G85698,Amersham Vale Training Practice,14403.86289,4.3132,60.3015,61.236,1.24,62.9847,81.0345,0.9127,88.2883,1.3157,0.9001,0.1637,1.3663,30.3811,4.5367,6.7728,59.8352,78.0952,0.214,1.0826,10.5834,0.1156,82.4016,86.1111,87.8505,91.5888,19.5673,0.5728 South East London ICB,G85705,The New Mill Street Surgery,5330.375498,3.9952,71.6814,60.6742,2.8194,64.1791,71.0843,1.0754,97.0588,2.7616,0.8284,0.2471,1.3729,15.3118,2.9375,7.8913,82.438,91.5254,0.2616,0.5377,5.3022,1.0094,88.7309,87.6923,93.5484,96.7742,10.8818,0.654 South East London ICB,G85706,The Old Dairy Health Centre,4976.093794,6.1077,74.3056,69.9187,3.5768,76.7544,77.0492,1.6062,88.7097,2.5542,0.8445,0.3643,1.202,18.016,4.8964,10.25,72.6916,83.6364,0.2153,0.7948,5.7094,0.668,85.6376,76.9231,89.7436,92.3077,9.2744,1.126 South East London ICB,G85708,Dr Curran & Partners,9506.631779,4.5973,64.2458,66.2069,2.1443,67.6783,80.7143,0.8559,88.6076,1.7596,0.8289,0.2433,1.667,22.9874,3.633,7.1628,66.2338,84.3137,0.1802,0.928,6.5857,0.0444,86.6995,79.2079,86.8852,93.4426,12.8922,0.8019 South East London ICB,G85711,Deptford Surgery,10306.49536,3.6522,54.717,52.9412,1.0751,62.4235,68.5393,0.5756,87.395,0.9352,0.5249,0.1016,1.2534,29.2455,3.0806,5.0368,54.8913,72.093,0.2201,0.8889,7.9252,0.1438,78.7169,80,83.3333,92.5926,17.6989,0.3979 South East London ICB,G85715,The Lister Practice,11625.75941,4.1897,59.9138,53.0928,1.7411,61.0018,71.7277,0.9564,70,4.1133,0.7765,0.237,2.1517,31.4362,8.3605,12.2691,77.1614,81.4159,0.5231,1.3405,18.2846,0.132,82.6008,82.8194,90.3614,93.9759,13.203,0.9891 South East London ICB,G85716,Oakview Family Practice,6027.206486,6.1557,66.1017,63.964,2.0144,70.073,78.0952,1.3429,73.1183,1.7776,1.9185,0.2878,1.0622,33.0358,7.482,10.04,77.9385,90.6667,0.7994,1.0392,17.1689,0.3296,88.9177,77.0115,89.5522,92.5373,18.3022,1.1671 South East London ICB,G85721,301 East Street Surgery,7067.86198,4.0694,54.4872,59.375,2.4871,63.2959,76.9231,1.2865,76.7442,4.0673,1.2865,0.3288,0.9096,33.4061,8.339,13.7936,76.3039,86.747,0.486,1.4294,21.1773,0.0472,78.2861,84.9624,93.617,93.617,14.6496,0.9148 South East London ICB,G85722,Woodlands Health Centre,10208.86691,8.137,62.5,57.2464,2.2412,75.4826,76.4286,2.1709,93.7888,3.8227,1.1457,0.392,3.0452,27.1411,7.9995,12.6231,72.4868,90.9836,1.397,1.7588,19.9948,0.8146,92.0333,94.2105,88.9831,95.7627,16.8809,1.0452 South East London ICB,G85724,Edith Cavell Practice,17398.51917,4.5946,60.2941,58.498,1.5173,58.7127,70.2602,0.7774,87.4346,2.6627,0.4308,0.1639,1.4367,22.8175,4.7224,8.3778,74.1242,90.1235,0.2857,0.9085,8.1877,0.1518,84.2229,82.1429,96.2264,98.1132,16.4973,0.7024 South East London ICB,G85726,Brunswick Park Family Practice,7703.237491,5.2436,58.7571,62.5,1.7248,69.9387,76.9231,1.0376,64,1.2038,0.9972,0.2291,0.7586,29.186,8.5235,11.4405,76.6887,89.3617,0.4177,1.4553,15.9796,0.2027,90.9166,80.8989,87.3684,94.7368,16.7901,0.9702 South East London ICB,G85727,Nightingale Surgery,5835.092529,4.7737,67.4242,58.0357,2.802,67.0175,73.7864,1.8221,79.7619,1.4,1.0106,0.3369,1.2147,21.5919,7.0981,9.9066,56.8628,72.093,0.5206,1.2249,12.9504,0.2902,82.4531,92.6829,84.375,93.75,14.2449,0.8881 South East London ICB,G85736,Deptford Medical Centre,3941.342853,5.2943,50,53.5714,2.0214,58.642,78.6885,2.5085,93.9394,2.7492,1.6318,0.1461,3.4139,29.1521,11.5213,11.7876,69.4954,81.25,0.414,1.0716,16.1631,0.3697,89.24,92.9293,89.4737,93.4211,14.0453,1.2421 South East London ICB,Y00020,The Grantham Centre Practice,8034.552045,4.4643,59.2357,59.6491,2.0224,58.9286,72.1154,0.9274,82.3529,0.8228,0.6704,0.2346,0.6358,28.7436,5.9145,8.581,63.5528,71.3044,0.3575,0.9386,8.4279,0.1938,74.808,74.6988,82.3529,89.4118,14.301,0.8268 South East London ICB,Y02811,Cator Medical Centre,11058.49384,6.0392,70.6667,72.3618,2.2821,75,72.9469,1.5872,91.7051,2.275,1.1924,0.458,1.7634,15.9494,5.6022,9.373,53.7698,68.7151,0.2843,1.145,11.2986,0.6301,83.0752,84.3972,75.5319,89.3617,13.178,1.0265 South East London ICB,Y02974,At Medics,10382.77351,3.0368,56.3492,50.3937,0.9269,66.0883,71.1268,0.5842,92.8994,1.9552,0.2882,0.0467,1.902,23.6625,5.6183,9.0746,75.5048,92.3077,0.3583,0.5998,15.1419,0.1454,90.2879,88.7755,92.3077,97.4359,13.2382,0.3817 South East London ICB,Y03063,Hetherington At The Pavilion,8145.882567,4.5824,55.4745,53.3981,2.0966,56.7198,67.2727,1.128,59.5238,2.6109,1.1403,0.2084,1.8389,31.5672,6.4817,9.7965,69.1983,94.3182,0.3433,2.4277,9.6996,0.2198,80.389,88.5965,89.2857,92.8571,17.9554,0.9441 South East London ICB,Y03755,Greenwich Peninsula,11952.22436,3.7418,57.6471,50,1.8852,61.5885,68.9394,1.3745,92.7007,2.4699,0.8788,2.7265,1.5833,22.398,4.8196,7.3081,62.0329,72.6974,0.2103,1.2393,7.6269,0.6226,85.7186,73.057,64.2105,76.8421,14.8216,1.6524 South East London ICB,Y06345,Bromleag Care Practice,5292.77056,6.4167,43.75,41.6667,16.0779,,28.5714,17.0872,,30.6417,7.7145,54.0735,1.3699,,22.4946,61.3554,77.5148,82.9912,2.0908,6.4888,11.4636,4.1334,99.4306,65.4639,74.5763,59.322,3.7066,24.5133 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence Kent and Medway ICB,G82002,St James' Surgery,9377.471175,6.6567,72.5694,73.057,4.0891,76.8116,75.4967,3.0614,94.2308,3.8256,2.2934,0.5517,3.6957,26.8978,8.0096,14.3444,69.3015,86.5546,0.7573,0.8762,12.0976,0.5641,90.5769,89.8204,85.8586,91.9192,17.4412,1.9364 Kent and Medway ICB,G82006,Dartford East Health Centre,14644.54043,5.5229,68.435,69.7279,2.5291,65.6357,68.8645,2.0425,85.0829,4.0562,1.7096,0.3778,1.338,21.5768,8.3783,15.8279,63.4321,77.6316,0.525,0.6851,18.3504,0.2443,83.752,89.4737,73.1579,86.8421,15.0832,1.4278 Kent and Medway ICB,G82007,Church Lane Health Centre,8099.127856,7.799,74.0385,68.1373,6.3148,72.7273,76.0563,4.9639,93.3333,7.0515,3.7857,1.4923,2.5393,24.5493,11.067,21.8505,55.0848,70.8207,0.6912,0.9582,13.1531,0.5613,84.8945,77.3109,80,88.6957,16.634,3.3773 Kent and Medway ICB,G82013,Amherst Medical Practice,12538.87904,6.4945,78.9047,78.5294,5.5567,78.9954,81.5884,2.3989,93.8356,5.0128,1.3621,1.2469,1.5914,7.4581,5.2858,16.0941,65.4357,80.2181,0.4608,0.5557,6.4362,0.844,87.4399,82.3529,73.3945,88.9908,7.3524,1.9042 Kent and Medway ICB,G82014,Woodlands Family Practice,19657.10357,6.2013,69.0311,65.0831,3.2085,71.4286,73.8028,2.442,92.5926,3.8962,1.6608,0.5061,2.6147,23.9715,8.8817,13.1142,52.7265,66.3291,0.5651,0.6584,14.8922,0.1299,77.8221,83.0808,76.1364,79.5455,16.3987,1.2235 Kent and Medway ICB,G82015,Pencester Surgery,13775.83832,5.763,65.051,65.3386,3.3099,57.2115,60.6796,2.6542,84.1667,4.0889,2.217,0.9446,2.4671,30.3995,8.0566,13.3255,46.743,72.9032,1.21,1.2881,9.1901,0.4698,83.0324,80.3922,65.1899,86.0759,24.3198,1.7564 Kent and Medway ICB,G82016,Kingswood Surgery,10963.64704,5.7489,79.7059,76.5182,5.0343,76.2712,76.7544,2.3728,92.7928,4.0581,1.0736,0.6586,0.9454,8.7535,5.8544,13.7586,61.9137,69.281,1.0014,1.3353,7.2977,1.7312,86.8865,77.1242,81.9149,85.1064,7.9369,1.7232 Kent and Medway ICB,G82018,Sun Lane,6591.25157,5.2672,73.444,70.7483,6.482,64.5161,67.2727,4.0259,88.5714,2.6518,1.8837,1.4035,1.9943,18.7083,7.9504,17.7101,68.6901,78.0781,0.3878,0.7756,9.6647,0.2034,87.4844,80.5825,55.7143,90,12.413,2.6408 Kent and Medway ICB,G82019,Edenbridge Med Practice,13143.1353,7.0278,77.8539,77.1704,4.8421,74.5283,77.2201,2.8764,93.2515,5.2886,1.7532,0.9259,1.7113,16.1007,6.8923,15.6952,57.4386,71.8391,0.4933,0.7438,8.3922,1.2048,86.9434,80.6584,72.6563,84.375,13.3439,2.2389 Kent and Medway ICB,G82020,The Grange Practice,14705.19779,7.3063,73.0952,69.4631,4.7395,71.5711,72.766,3.8606,89.3939,5.2917,3.2957,0.6278,2.4484,31.3888,8.497,17.4435,50.8406,67.8715,0.6827,1.2084,12.2322,3.1309,85.7614,83.391,80.5031,88.6792,18.7452,2.409 Kent and Medway ICB,G82021,The Shrubbery Surgery,17728.20242,4.9826,71.875,68.272,3.6712,70.0917,71.5719,2.363,89.372,7.4979,1.8444,0.4302,1.5749,20.1508,8.0471,12.1626,59.8089,74.6964,0.3359,0.5952,9.8256,0.8461,85.0048,74.6736,68.3673,81.6327,15.1405,1.4732 Kent and Medway ICB,G82022,Speldhurst & Greggswood Medical Group,8841.769652,7.3068,75.5474,75.1295,4.8431,72.5904,75.7576,2.4587,91.2281,5.4299,1.685,0.6253,2.3869,14.0115,7.2653,14.3175,68.5904,78.5714,0.7312,0.9856,8.2635,3.2074,90.1598,82.8221,73.9583,86.4583,13.8825,1.6744 Kent and Medway ICB,G82023,Sheerness Health Centre,8208.608736,7.4969,68.6275,63.3333,2.9233,77.8243,75.2212,3.0081,92.8571,5.6369,2.6409,1.1439,2.3243,42.5442,9.3288,14.7154,67.5277,78.6026,0.6496,0.9603,15.3185,1.3209,89.7646,80.7692,76.087,92.3913,25.5977,1.7794 Kent and Medway ICB,G82024,Greensand Health Centre,16418.77867,7.0077,78.3784,75.4144,4.8465,73.2075,78.6441,2.7979,92.0455,6.861,1.7887,0.8158,2.2152,12.2125,7.3911,15.2647,62.8938,74.732,0.5499,0.7312,13.7682,2.0033,87.9319,82.0375,77.7778,86.6667,12.1128,2.0305 Kent and Medway ICB,G82025,The Wells Medical Practice,16996.79995,5.4636,72.0617,63.9798,3.9526,66.2011,70.7989,1.9788,93.6047,2.729,1.3377,0.5351,2.4215,10.8187,5.9335,12.4281,48.1256,61.4754,0.4543,1.1762,7.0724,0.8482,76.4932,82.3755,52.9412,78.8235,13.1729,1.6557 Kent and Medway ICB,G82026,Grovehurst Surgery,7859.739491,6.3584,74.9004,74.7312,4.5153,73.3096,78.7097,2.5016,90.8163,4.902,2.2139,0.9006,1.6445,19.6643,9.149,17.7486,64.6911,81.448,0.6254,0.6004,18.501,0.9807,90.8935,81.9876,72.4771,88.9908,13.9699,1.7261 Kent and Medway ICB,G82027,Faversham Medical Practice,14020.96667,6.5489,71.8447,75.8621,5.0071,73.7226,74.6429,3.2813,95.2,5.2826,2.5142,0.7315,1.6673,22.6688,8.1749,16.875,66.0606,84.3137,0.5611,0.696,6.8796,2.3077,86.2001,80.456,72.2892,87.3494,16.3088,2.358 Kent and Medway ICB,G82028,The Cedars Surgery_G82028,25029.97036,6.077,69.8187,67.033,4.444,71.0292,74.9425,2.888,86.8167,4.3874,2.2159,0.8473,2.3009,21.3034,8.3732,15.8004,61.6203,71.0145,0.4318,1.055,19.1811,0.6984,89.221,84.2887,63.1579,87.8289,25.6965,2.2322 Kent and Medway ICB,G82031,Bower Mount Medical Practice,11109.24273,5.4354,75.976,75.9825,4.6173,74.7126,79,3.0449,92.1348,6.0047,1.7724,1.118,2.3594,14.72,7.9731,16.6333,67.4265,75.1064,0.6908,0.9726,10.4104,0.4731,87.7019,81.7021,81.8898,90.5512,11.6957,2.1269 Kent and Medway ICB,G82032,Pelham Medical Practice,15862.27714,4.9545,64.8241,59.8566,2.9479,57.3055,65.812,2.8876,84.0909,3.952,1.628,0.469,2.2608,25.2126,9.375,16.3942,63.0817,78.1676,0.804,0.938,12.486,0.2386,84.477,83.0721,66.0194,85.9223,17.1496,1.8156 Kent and Medway ICB,G82035,The Chestnuts Surgery,10694.18675,5.406,72.7273,75.9091,5.0973,76.5957,80,3.3412,91.453,4.3478,2.3066,0.8828,2.2716,24.5458,8.4114,17.1618,47.8883,71.5329,0.7499,0.7784,19.1988,0.5991,91.3963,83.0769,72.5191,88.5496,16.6825,1.7276 Kent and Medway ICB,G82036,Balmoral Surgery,12843.28131,5.6594,76.0618,73.4756,4.925,71.5719,70.9957,3.5377,94.8718,6.2918,2.6186,1.0492,1.735,18.1048,8.6817,17.4282,64.5099,75.9466,0.7283,1.0578,9.6154,0.2904,84.0533,86.9301,78.7671,85.6164,14.1717,2.4885 Kent and Medway ICB,G82037,Hildenborough Medical Group,16011.13129,6.8876,77.7184,76.8856,5.6375,77.2429,79.5455,2.7796,88.0342,6.3378,1.5282,0.8483,1.2464,12.1023,6.9669,17.4298,73.0364,81.5822,0.5355,0.7942,8.2868,1.7306,86.0838,80.9524,81.7647,90.5882,10.2408,2.1359 Kent and Medway ICB,G82038,St Richards Road Surgery,12218.04772,6.9421,78.3599,70.2422,5.4892,67.7741,68.4211,3.7638,91.1111,6.9156,3.887,0.9101,1.7232,18.4375,8.8727,19.9943,66.8128,79.1016,0.9955,1.0713,15.0488,0.4466,89.7449,84.7909,78.3217,93.007,16.2147,2.7209 Kent and Medway ICB,G82039,Newton Place Surgery,18578.21264,7.1012,74.6411,76.082,4.9067,70.1299,73.6986,2.7311,94.9685,5.7197,2.191,0.8024,2.8725,21.4975,6.877,16.839,70.5882,82.1782,1.0904,0.7561,13.6679,4.327,84.6197,80.2083,75.6614,91.5344,13.0329,1.9802 Kent and Medway ICB,G82041,Grosvenor & St James Medical Centre,12839.24214,5.7406,70.3209,62.6761,3.7832,61.4203,71.4815,2.2086,89.2562,4.2287,1.3377,0.6619,1.6547,10.3375,5.9143,12.5827,49.1334,68.2672,0.5434,1.0033,8.1772,1.3699,80.8288,83.1169,67.3077,79.8077,13.7178,1.9369 Kent and Medway ICB,G82042,Tonbridge Medical Group,15608.68729,5.9527,72.5572,76.6571,3.7157,74.034,78.1145,2.0174,90.9091,2.8946,1.4361,0.7523,2.0509,13.2968,7.3748,14.2703,53.2115,72.326,0.53,0.701,11.8909,2.4153,81.2162,88.4615,70.5263,86.3158,14.9734,1.818 Kent and Medway ICB,G82044,Springhead Health,21723.63045,4.8129,62.2642,58.1717,2.269,60.2436,64.3505,1.725,82.3344,4.2494,1.3004,0.5352,3.0206,24.8436,7.8021,12.5083,57.5487,69.7802,0.8448,0.7254,16.0472,1.5496,82.7343,85.5978,73.9496,88.2353,18.1892,1.1677 Kent and Medway ICB,G82046,Summerhill Surgery,7314.936124,7.4804,69.0476,62.5,5.5076,69.7674,63,3.5912,95.3488,7.37,4.4544,1.105,2.9007,37.0774,10.4061,20.4075,66.269,78.4615,0.7597,1.0704,12.7632,1.8197,89.727,92.5926,82.2222,92.2222,21.7622,2.5725 Kent and Medway ICB,G82048,Horsman's Place Surgery,10333.81414,5.1341,63.197,61.7347,3.6281,68.2848,69.8113,2.5961,78.0488,6.1097,2.1399,0.4997,1.9186,22.3572,9.5933,14.8164,59.717,76.9737,0.9885,1.2492,18.9278,2.121,84.6117,89.2377,77.0992,91.6031,17.0385,2.053 Kent and Medway ICB,G82050,Sydenham House Medical Centre,22826.87338,5.4936,69.5935,72.2101,3.4329,62.3632,69.6891,2.7422,85.6589,3.463,1.5397,0.52,1.7656,23.3934,7.8555,13.5568,49.6529,69.1667,0.3778,0.9831,11.5029,2.1889,86.0497,83.0049,59.507,83.8028,17.4475,1.5438 Kent and Medway ICB,G82051,City Way Surgery,12980.26678,6.1688,70.9677,74.7036,3.4257,70.8972,74.1627,2.5122,94.1177,5.5601,1.8901,0.5198,2.7041,22.7556,9.0647,15.2859,60.694,70.7865,0.4804,0.9372,11.9303,1.5873,86.139,86.8421,80.7018,88.8889,16.076,1.3388 Kent and Medway ICB,G82052,The Limes Medical Centre,21754.63009,6.556,64.1026,62.3529,3.0969,62.442,62.5455,2.4787,79.7235,2.5907,2.7587,0.4141,1.9674,44.5291,7.4573,14.8431,53.5559,73.431,0.6066,1.4056,15.6567,1.2267,76.6774,82.1818,58.1818,78.6364,22.5091,1.6447 Kent and Medway ICB,G82053,Woodchurch Surgery,5742.825953,8.0617,77.2727,78.5235,6.0414,81.5603,79.1304,4.2886,90.566,7.54,2.7224,2.107,2.3183,19.6817,7.6786,20.9211,74.7031,89.2857,1.0256,0.7272,15.3275,0.9754,89.2363,90.0763,87.0968,91.9355,9.8634,2.6664 Kent and Medway ICB,G82055,Weald View Medical Practice - Hawkhurst,9460.851084,6.3023,75.969,68.5185,5.8626,77.821,78.4404,2.8499,90.4762,5.1935,2.0051,0.6005,1.6387,12.6105,7.0515,16.8855,67.5933,73.5,0.5089,0.7634,10.9542,0.6087,89.3169,85.0267,78.2178,90.099,11.7889,2.1476 Kent and Medway ICB,G82056,The Wellcome Practice,11450.4065,5.357,69.6165,76.3713,3.8812,66.3317,71.9626,2.709,77.9661,6.1998,1.7453,1.1201,1.6848,15.4054,8.4823,17.9908,65.1263,82.4054,0.547,1.094,16.6942,1.2742,84.9297,80,82.2368,90.7895,12.6999,1.9536 Kent and Medway ICB,G82057,St Georges Medical Centre,14861.97617,6.9691,67.5115,66.791,5.1238,71.987,65.1042,3.786,91.6667,5.9724,3.6949,0.6735,3.7745,46.674,11.78,18.5202,66.4858,67.0213,0.7918,0.7281,17.6525,2.0899,89.8494,89.2655,76,87,23.7398,2.2752 Kent and Medway ICB,G82058,Aylesford Medical Centre,7175.870862,6.0301,76.1261,75.7962,4.5746,79.1262,83.8462,2.5204,92.0635,4.7844,1.9231,0.845,2.1648,17.7202,9.1366,16.9726,66.2959,80.4511,0.9324,0.8159,13.8621,1.0993,91.439,86.9231,78.125,89.5833,14.8174,1.6608 Kent and Medway ICB,G82059,Warders Medical Centre,16828.03882,6.8099,75.2197,80.344,4.9778,73.8977,78.5714,2.6512,96.5986,6.0502,1.4825,0.6547,2.1242,12.737,6.6772,14.5601,70.1132,86.2121,0.5032,0.6655,11.6587,1.9753,90.7881,85,85.3801,90.6433,9.8073,1.9478 Kent and Medway ICB,G82060,Northgate Medical Practice,20768.71613,5.913,71.7472,68.75,3.7175,56.5337,67.1186,2.5697,90.7317,3.344,1.8659,0.5621,2.1978,19.566,6.117,13.7459,55.0199,72.5732,0.7794,1.4171,8.7499,0.9181,80.4369,79.6296,75,89.5,18.206,1.6627 Kent and Medway ICB,G82062,Parrock Street Surgery,2626.606601,4.2266,61.9718,60,2.0644,73.4177,79.4872,2.725,85.7143,1.4352,1.9406,0.4955,1.4864,26.6126,10.4892,14.7812,66.436,71.0145,0.4129,1.2799,14.6079,0.1125,81.6444,90.4762,82.5,92.5,16.3752,1.3212 Kent and Medway ICB,G82063,Sandwich Medical Practice,14363.8829,7.0526,77.3927,72.4409,6.9611,74.8408,77.3381,4.0575,94.9495,7.154,3.0183,0.9475,1.3722,17.0821,8.2407,20.7916,59.5416,78.5592,0.5043,0.7412,13.9969,0.5207,87.072,80.0587,82.9268,86.5854,11.1695,2.598 Kent and Medway ICB,G82064,Dashwood Medical Centre,11609.65064,6.5171,68.9441,64.455,4.3878,67.3854,66.8539,2.5588,84.6154,5.0055,2.9947,0.3317,4.5516,33.4043,7.5668,15.7411,72.2665,80.7143,0.417,0.9287,19.0897,0.4496,88.3622,83.1111,79.0909,87.2727,22.2401,1.7722 Kent and Medway ICB,G82066,Northdown Surgery,15528.51329,6.9666,64.8318,67.5556,4.1612,64.6919,68.9266,3.276,84.5638,6.0561,3.3256,2.1178,1.9474,40.438,9.0431,17.4305,66.0773,75.3448,0.8852,1.4477,20.6933,1.793,89.0479,76.6562,69.9387,87.1166,22.6533,2.6142 Kent and Medway ICB,G82067,Old Road West Surgery,9805.771099,5.6899,74.0132,65.9091,3.9877,66.8852,74.7253,2.3607,93.8272,2.41,1.0634,0.5317,2.2908,19.991,8.4943,15.6955,75.5804,82.7476,1.1697,0.7125,12.7119,0.8282,91.4899,90.9722,72.9508,90.9836,14.1408,1.4994 Kent and Medway ICB,G82069,White House Surgery,10970.92801,5.8959,76.7241,67.5105,3.5738,69.5761,75.3769,2.4132,90,4.2306,1.6784,0.6179,1.9249,20.032,7.9156,13.1096,52.4777,72.2714,0.501,0.7682,10.0566,0.1605,77.7197,83.7209,74.8252,91.6084,14.7019,1.5615 Kent and Medway ICB,G82071,Whitstable Medical Practice,45107.33024,7.6241,78.346,80.7003,6.3137,78.3319,79.2842,3.3366,92.6254,4.2163,2.4091,1.1221,1.1383,14.4985,7.6596,17.409,66.0265,75.1455,0.5015,0.8565,10.8889,0.5706,90.9245,83.2947,78.8,90.2,12.8777,2.2466 Kent and Medway ICB,G82073,Meopham Medical Centre,9392.574502,5.7537,78.0303,77.4908,5.2005,78.4452,80.5687,3.1183,79,3.125,1.4914,1.0265,1.6827,9.392,7.2205,15.5046,71.0438,78.6925,0.3293,0.5811,11.863,2.2366,89.5338,90.3553,80.9091,90.9091,8.5235,2.5663 Kent and Medway ICB,G82074,Bearsted,13943.94781,5.6908,80.1075,80.9783,4.8611,80.9524,82.3529,3.0828,89.4737,5.8466,1.2786,0.8243,1.265,8.3561,6.5146,17.4455,57.412,79.5827,0.5062,0.5062,8.1982,1.1212,76.8228,81.4035,88.6525,92.9078,7.1082,1.96 Kent and Medway ICB,G82076,Mote,9652.976653,6.1321,71.1744,72.9858,3.4872,71.9136,74.1379,2.3692,91.3386,4.9225,2.2462,0.359,1.0789,22.6783,9.232,15.6718,54.8673,77.8947,1.1385,0.8308,14.3898,1.2251,85.5122,84.8039,75.2,82.4,14.9629,1.5487 Kent and Medway ICB,G82077,The Elms Medical Centre,13850.9304,7.0394,70.8716,72.4638,4.1922,72.987,68.3938,3.0214,82.0988,5.0502,2.3254,0.8843,1.8298,22.1409,10.1457,18.1119,64.8376,69.9531,0.3275,0.6141,11.721,0.4397,88.7703,88.0435,71.8232,85.6354,14.7777,1.6704 Kent and Medway ICB,G82079,Westgate Surgery,12728.80826,6.5217,77.5414,71.1191,5.8451,74.8252,80,3.7993,83.3333,4.7456,4.0234,0.5261,2.302,22.9368,8.5861,19.2401,71.2112,86.1809,0.4092,1.1106,18.8053,0.5084,90.0221,85.4701,88.1481,95.5556,12.3035,2.4744 Kent and Medway ICB,G82080,Ashford Medical Partnership,31247.95952,5.5933,67.6108,71.6828,2.8653,68.0391,72.1612,2.0779,92.5848,3.9527,1.6349,0.5468,2.0858,21.9961,7.6532,11.6032,58.9569,77.933,0.4894,0.9132,13.1381,0.9221,81.1755,84.6749,86.2595,92.3664,17.0977,1.4436 Kent and Medway ICB,G82082,Sturry Surgery,15040.47626,4.7592,69.3827,69.3603,3.1923,52.9226,66.5272,1.6653,84.2466,3.0047,1.4428,0.505,1.8918,18.8204,5.7519,10.3403,64.4461,81.1209,0.6312,1.2625,8.7915,0.4411,82.0509,77.9904,69.1729,87.9699,17.5101,1.4128 Kent and Medway ICB,G82083,Thornhills Medical Practice,14882.81526,6.6412,74.6237,78.012,4.8741,74.2072,76.1364,2.7611,88.75,5.4823,2.113,0.4726,1.6135,16.32,9.2254,16.4045,61.6101,76.1589,0.4186,0.6481,13.3588,0.6877,86.2185,81.9527,74.2574,87.1287,15.4915,1.8025 Kent and Medway ICB,G82085,Snodland Medical Practice,12142.65117,6.2004,68.9189,73.3591,3.4302,72.8643,73.43,2.8073,83.9416,6.6178,2.2342,0.706,2.6769,20.1577,9.2948,15.2076,62.5348,81.2658,0.7475,0.8057,12.6195,0.7182,87.0804,83.1169,74.2515,85.0299,18.0187,1.8356 Kent and Medway ICB,G82086,The New Surgery,11548.94556,6.6819,68.7688,60.3376,3.6975,60.9756,61.0811,2.6313,81.9048,4.9384,2.9835,0.3619,1.7969,31.1957,8.2604,12.4719,45.0772,70.7113,0.7923,1.1054,11.7241,0.5122,82.2788,83.8863,71.6667,85,21.0119,1.5455 Kent and Medway ICB,G82087,New Hayesbank Surgery,17114.88008,7.82,75.7009,76.5013,4.4242,68.0532,70.7547,2.7123,91.7198,6.4126,2.062,1.0171,1.6434,17.1713,8.3843,17.5912,59.7045,66.7171,0.7114,0.8559,14.5525,2.6494,87.4307,85.6397,80.8889,92.4444,13.9815,1.9509 Kent and Medway ICB,G82089,Brewer Street,9394.302763,4.9837,71.8213,72.7723,4.0866,75.5627,79.878,3.0373,88.6364,5.9951,1.7561,0.3755,0.8507,19.6823,8.3589,15.6947,76.9765,85.1852,0.8063,0.9609,10.2079,1.0033,85.8612,86.1539,87.6106,92.9204,17.2586,2.1096 Kent and Medway ICB,G82090,The Heron Medical Practice,21257.31689,7.3604,72.9839,75.5319,6.2791,69.4143,71.9764,4.2323,86.1314,7.2741,2.9177,1.5032,3.0015,20.2767,9.843,23.458,66.7604,78.2101,0.8598,1.0983,14.1155,4.0332,89.8181,82.5046,73.5507,89.4928,15.5059,3.195 Kent and Medway ICB,G82091,Guildhall Street Surgery,11012.39061,6.0229,63.1387,57.5269,3.3048,59.8837,65.1316,2.703,86.4078,5.0013,2.6622,0.6324,2.0501,36.6481,8.503,13.4231,60.9346,84.9594,1.0404,2.0706,16.2575,0.8323,83.6894,81.6239,80.6452,89.5161,26.9321,1.9584 Kent and Medway ICB,G82092,Westerham Practice,8000.021358,6.0932,75.8308,75,5.8724,73.5294,75.9162,3.0691,87.5,6.6196,1.7521,0.7854,1.381,12.3551,6.4716,16.6385,64.0777,79.2507,0.3625,0.8579,7.8205,0.9429,89.9277,80.5882,78.2051,93.5897,11.8828,1.9937 Kent and Medway ICB,G82093,Len Valley Practice,10525.54736,6.6972,73.9024,74.7292,5.7051,74.8227,75.1196,3.5791,86.9159,6.8245,1.9505,1.102,2.4158,16.4486,8.4526,19.2998,72.5143,85.5,1.0045,0.7997,14.5549,0.7409,89.7525,84.8249,86.7188,88.2813,12.2375,2.3308 Kent and Medway ICB,G82094,Charing Surgery,10689.3016,7.009,74.9409,76.8966,5.0009,81.2698,85.5319,3.8503,92.0792,6.97,2.2377,0.7157,2.9471,20.1424,7.3273,18.9346,68.0387,82.6484,0.5979,0.6976,14.1192,2.6109,90.0364,84.5833,84.0336,93.2773,11.5785,2.4914 Kent and Medway ICB,G82095,Thorndike Partnership,13290.73469,6.3229,72.1354,72.5694,4.4559,72.7941,74.477,3.0788,92.233,6.4229,1.9549,1.385,1.9763,23.3814,8.758,16.4068,71.1761,78.0093,0.6173,1.3455,12.3715,2.1753,90.2208,87.0769,90.5882,94.1176,13.8722,1.8045 Kent and Medway ICB,G82097,Jubilee Medical Centre,16906.81986,6.4204,76.7947,77.5457,5.678,75.8865,76.2069,3.4991,87.7359,7.1656,1.929,1.4804,1.5809,11.2022,8.0097,18.271,63.6811,75.4579,0.5447,0.596,11.0343,2.6516,88.4423,82.2888,74.7191,80.3371,9.8219,2.4545 Kent and Medway ICB,G82098,Blackthorn,8145.183076,7.5817,77.3504,75.1479,4.3383,70.9677,81.5068,2.6735,97.6471,6.9522,2.2238,0.9114,2.6692,14.1843,8.5139,18.1796,68.7606,88.9937,0.5712,1.8107,14.7734,1.8159,89.4499,84.7368,88.2353,94.1176,11.4684,2.078 Kent and Medway ICB,G82099,The College Practice,31322.53044,5.0894,67.9949,67.0391,3.2271,63.3438,71.7573,2.1677,80.0539,4.588,1.3962,0.6736,1.6591,18.7754,7.1365,13.536,65.4446,80.1463,0.5726,1.1084,12.0931,1.3046,82.955,83.677,77.4481,89.0208,17.5136,1.4635 Kent and Medway ICB,G82100,Highparks Medical Practice,14876.69198,6.5568,75.7353,72.973,4.6161,78.8913,80.2048,3.2638,94.4099,6.6079,1.918,0.5786,1.6173,15.2113,8.0287,18.7764,61.2254,79.4224,0.4811,0.6437,12.3091,2.1573,90.442,84.6753,81.4208,89.6175,11.6617,1.7944 Kent and Medway ICB,G82105,Bethesda Medical Centre,25027.76623,5.4285,70.6625,66.9811,3.8278,63.3117,66.2338,3.0087,84.8168,5.9639,2.8196,0.9136,2.3352,42.5426,8.7457,18.2988,61.9677,77.661,0.8349,1.1657,15.6627,2.26,84.4429,80.5139,81.0484,92.3387,22.2665,2.2368 Kent and Medway ICB,G82106,Riverside Medical Practice,6195.270578,5.7482,75.5981,75,3.3141,80.2372,78.7879,2.1205,89.8876,4.6626,1.2358,0.323,1.4262,13.7073,6.996,16.1775,64.2418,82.3864,0.5056,0.4213,12.324,1.6706,88.3486,82.3077,75.7576,83.3333,12.0298,1.3481 Kent and Medway ICB,G82107,Minster Surgery,9848.855593,7.0188,76.4563,74.9035,6.3318,79.9145,80.2139,3.5616,87.3239,6.7477,3.034,0.4067,3.6077,19.6,9.0286,21.6555,64.1983,74.8201,0.5496,0.6376,13.3752,0.3255,92.4225,82.5532,92.1875,89.8438,11.4014,2.6712 Kent and Medway ICB,G82108,King George Road Surgery,6047.247105,6.9203,69.8413,68.9922,4.0316,76.9231,80.2083,3.2253,86.0465,9.2772,2.7106,0.4632,2.1375,23.126,10.6264,18.6825,73.8392,83.0097,0.8578,0.7549,21.3971,1.9188,93.0124,88.2653,86.9565,96.7391,17.7017,1.4754 Kent and Medway ICB,G82110,Town Medical Centre,5797.828041,5.0038,74.0741,71.3287,3.4667,72.1739,76.4286,1.979,90,3.3462,0.8983,0.5614,1.4892,6.9704,5.3932,12.4772,72.3301,80.0738,0.2526,0.8702,5.4973,0.5859,79.1166,83.3333,74.0741,81.4815,7.265,1.5579 Kent and Medway ICB,G82111,The Cedars Surgery_G82111,13095.07066,7.3309,78.0822,73.0539,6.824,78.2288,78.0992,3.8203,91.0256,7.6478,3.2214,1.1615,1.8127,17.5119,8.4685,20.7078,69.6366,80.2083,0.4628,0.9256,14.5661,1.4089,90.943,85.2399,87.9699,93.985,12.2965,2.8221 Kent and Medway ICB,G82113,Stonecross and West Drive Surgery,8871.884969,6.5386,67.4074,68.2796,3.6257,71.5827,73.7179,2.8252,91.5663,7.2527,2.2366,0.671,1.8803,28.093,9.6864,16.0094,59.0062,71.2446,0.6474,0.9653,14.6545,1.9925,87.8029,81.3636,81.6,88.8,17.5782,1.495 Kent and Medway ICB,G82114,Ivy Court Surgery,16710.70711,6.3937,76.9795,78.1038,5.748,74.8588,76.8519,4.0685,93.0435,8.5968,1.9919,1.0806,1.6976,15.9057,7.5083,20.2057,61.1491,72.4479,0.4166,0.7095,7.4677,0.6527,90.6058,82.8418,78.8043,96.1957,11.3251,2.5778 Kent and Medway ICB,G82115,New Dover Road Surgery,10378.94688,5.2541,71.885,64.7059,4.7628,69.97,77.3585,2.996,83.1858,5.3167,1.5652,1.0467,1.7761,17.7247,6.9081,14.7974,71.3551,82.9333,0.5281,1.3828,9.3714,4.0287,84.0714,83.2512,79.646,90.2655,13.6122,2.3718 Kent and Medway ICB,G82117,High Street Surgery,9596.707917,6.0171,75.1773,77.2487,4.3848,67.3267,73.9437,2.9232,88.5714,3.2845,2.6396,1.2107,3.4254,26.2165,7.8363,15.2269,69.8694,84.5679,0.949,1.0471,10.8824,1.1574,90.7921,87.7778,76.699,85.4369,17.9224,2.0179 Kent and Medway ICB,G82118,Woodlands Health Centre,12687.66,6.5382,75.5814,77.1523,4.7077,75.4762,78.9272,2.7443,89.6552,3.6141,1.9709,0.5578,1.7506,12.3427,8.0466,15.7445,72.4244,77.621,0.4611,0.8032,11.4165,1.183,80.6094,83.4677,78.3439,83.4395,13.4182,2.1047 Kent and Medway ICB,G82119,Park Surgery,27477.38706,8.2245,74.0984,73.8916,5.4248,70.9285,73.9326,3.724,88.5168,6.8192,2.7731,1.5625,3.5491,19.7808,8.8526,20.4926,68.1961,83.859,0.8504,1.2693,14.7492,3.4177,90.2596,82.0919,81.4103,91.3462,15.187,2.97 Kent and Medway ICB,G82120,Borough Green Medical Practice,13549.09371,5.5685,77.8399,78.2258,5.2465,73.2026,76.6871,3.0072,83.0882,5.6918,1.3229,0.9099,1.0799,10.6802,6.0883,16.7204,65.815,75.7098,0.2517,0.5873,7.1533,1.0004,81.9584,86.755,81.4286,86.4286,8.0644,1.9553 Kent and Medway ICB,G82121,Sandgate Road,14269.20983,8.1936,74.3271,68.4887,5.464,75.8883,72.9167,3.8163,87.6923,5.5471,2.2929,1.3835,2.1195,21.2832,7.4505,18.988,58.9335,72.5962,0.8083,1.2902,13.672,2.8342,87.229,83.5766,78.7234,87.9433,12.7827,2.6349 Kent and Medway ICB,G82122,Swanscombe Health Centre,32887.78937,4.229,64.4205,61.3191,2.5489,69.6281,66.0532,1.7613,85.7658,3.3662,1.6296,0.59,1.2989,22.5372,7.3979,13.1827,61.97,78.1627,0.4124,0.7446,10.6799,0.9689,83.2001,87.3518,75.2089,86.6295,16.2878,1.1656 Kent and Medway ICB,G82125,Otford Medical Practice,10463.83826,6.0637,77.2251,77.0677,5.3125,77.1341,80.8889,2.9368,90.4762,5.8916,1.4553,1.1835,1.867,10.3397,6.3345,16.1217,62.4354,76.2397,0.3682,0.6049,8.6082,1.3589,88.402,77.8302,81.4433,80.4124,9.4328,2.2267 Kent and Medway ICB,G82126,East Cliff Medical Practice,17885.84618,6.9118,73.2231,65.4229,5.0849,71.179,69.7368,3.5426,92.126,6.3362,2.9941,0.5291,2.0777,31.0524,8.3196,17.997,58.1934,71.1604,1.0454,1.1164,13.5369,2.0073,86.5046,81.6901,75.2632,92.6316,16.1247,2.0972 Kent and Medway ICB,G82129,The Glebe Family Practice,5000.11826,5.5456,75.1295,71.2121,5.2519,78.4173,86.1702,2.7541,96.9697,5.8048,2.3698,0.5978,1.161,27.2356,10.3018,20.6447,66.9845,83.5938,1.1102,0.5978,16.9393,0.7411,92.2406,90.1639,85.1351,89.1892,15.1866,1.4304 Kent and Medway ICB,G82135,West Malling Group Practice,16802.28847,5.2519,75.8794,77.8539,4.2376,75.1814,77.75,2.1784,91.498,3.0645,1.2298,0.3861,1.5291,9.9257,5.4472,11.2493,59.9361,70.6004,0.3194,0.5577,8.9177,0.411,81.0903,82.8,70.4403,87.4214,9.7795,1.3871 Kent and Medway ICB,G82137,St Andrews Medical Centre,9064.533726,6.3776,74.5902,69.6809,4.1519,78.3626,82.6347,2.0404,90.9091,3.9403,1.4415,1.1471,2.1651,11.1392,6.8816,14.4249,72.4395,81.8444,0.5888,0.9238,9.8575,0.977,89.4478,80,88.0435,93.4783,11.6974,1.9389 Kent and Medway ICB,G82138,Ash Surgery,4951.720815,7.1184,76.6839,72.093,6.9976,70.0935,76.6355,3.5863,82.7586,6.2663,2.3398,1.1152,2.1321,19.3483,8.0749,21.0365,66.6667,86.6109,0.5686,0.6998,12.0905,0.4576,89.3222,79.4872,87.7193,92.9825,11.5124,2.1212 Kent and Medway ICB,G82139,Maidstone Rd Chatham Surgery,3737.664959,6.042,72.4138,68.6047,3.6019,72.4138,78.3784,2.8595,100,5.8905,1.9797,1.1548,2.5641,23.9134,9.6115,16.7446,70.1432,85,0.6324,1.2373,13.8254,0.2705,89.8365,77.8846,76.3636,92.7273,11.9515,1.6497 Kent and Medway ICB,G82140,University Medical Centre,7304.895108,3.4105,75.6522,73.2558,1.152,51.497,72.973,0.395,95.4546,0.3582,0.2304,0.079,2.8367,10.5258,1.2739,3.2124,62.2871,87.013,0.1185,0.5727,4.8618,0.9702,84.5172,80,87.5,91.6667,8.8424,0.3094 Kent and Medway ICB,G82141,Yalding,6716.217326,6.2402,74.9004,72.093,4.3843,75.2525,77.4648,3.2073,77.7778,4.9927,2.2216,1.0299,2.4323,16.5944,7.2587,16.8015,66.7394,78.6667,0.5738,0.6179,11.8142,0.4982,90.0527,86.5079,77.4648,91.5493,14.8109,1.8979 Kent and Medway ICB,G82142,Wye Surgery,8887.157387,6.6395,77.3481,78.6822,4.7803,73.0375,76.2136,2.6623,92,4.8116,1.4945,0.6334,0.8952,13.7266,5.837,16.1322,71.801,85.7143,0.4454,0.6532,8.9146,2.1387,88.6515,88.4849,78.4091,89.7727,9.6819,2.1576 Kent and Medway ICB,G82143,Lowfield Medical Centre,6806.12647,6.0783,70.7865,70.1493,2.9534,75.2768,78.9474,2.2257,87.6923,4.7295,2.2257,0.8132,2.4844,21.9254,9.0399,15.5514,79.6009,94.6809,0.6135,0.6563,19.286,1.2222,92.1434,93.8776,90.4255,94.6809,16.4071,1.4981 Kent and Medway ICB,G82147,Oak Hall,7098.666632,6.3715,76.0135,74.0113,6.0664,73.2283,76.0684,5.0985,96.9697,5.7629,3.6467,1.1061,1.8048,23.039,10.9667,23.7988,52.5071,71.5625,1.1925,0.916,11.9565,0.8414,90.6233,82.3204,80.3922,92.1569,14.8251,2.8344 Kent and Medway ICB,G82150,Newington Road Surgery,7669.106823,7.0333,68.4466,59.1549,3.0442,65.7658,70.2703,2.3981,91.6667,6.7067,3.834,0.4595,3.1373,39.0324,9.3934,15.9678,63.2524,77.5758,0.4308,0.9765,13.4886,0.2956,90.1182,84.5679,65.9794,85.567,24.4437,1.3785 Kent and Medway ICB,G82152,Rusthall Medical Practice,6700.481882,7.0492,77.4648,78.6667,4.7221,82.8431,88.4615,2.7197,90.9091,7.0094,1.6139,0.9564,1.8101,11.5656,7.509,16.7065,73.9076,86.4353,0.5081,0.8069,9.7246,2.7114,93.1298,81.6327,88.7324,91.5493,12.0066,2.4507 Kent and Medway ICB,G82154,Thames Ave Surgery,6045.160279,7.778,79.6117,76.7606,5.3042,82.659,82.4074,3.4401,87.931,7.5238,1.6607,0.7795,0.6408,13.0603,8.6601,18.9798,75.392,88.3161,0.1356,0.4745,14.3861,0.2568,90.1203,79.8701,76.6234,90.9091,9.0927,1.881 Kent and Medway ICB,G82155,Waterfield House Surgery,6466.621047,6.8865,75.7709,73.6842,5.22,68.7179,73.8095,3.1753,88.8889,7.8207,2.1221,1.8587,2.6392,9.8289,7.3877,18.4634,61.3155,73.5593,1.2547,0.8674,13.6037,5.1453,91.4084,83.5526,64.6154,89.2308,10.1275,2.4009 Kent and Medway ICB,G82158,Howell Surgery,4486.94012,6.2805,75.2525,71.7391,5.1459,76.259,79.8319,2.7458,80.4348,6.3614,1.4977,0.576,1.7831,12.0504,6.3138,17.0315,64.0416,78.972,0.2112,0.3456,8.7711,0.3714,87.3311,87,89.1304,95.6522,9.6055,2.1313 Kent and Medway ICB,G82160,Oaklands Health Centre,14391.56486,7.5002,80.4921,74.1573,7.2168,75.4513,76.6537,4.6304,90.9091,6.4576,2.0858,1.2014,0.9534,17.0499,7.9728,22.4095,69.7125,84.2818,0.6341,1.0846,13.0037,1.1665,91.3521,77.2894,74.4828,91.0345,11.4101,3.0035 Kent and Medway ICB,G82161,Reach Healthcare,22804.13287,6.9136,72.3554,70.6478,4.0931,74.9292,73.7913,2.8192,92.3767,5.0567,1.8718,0.4323,1.9675,16.5208,8.8621,16.0826,64.9075,83.0743,0.3909,0.4829,14.3948,2.2652,83.8588,82.9659,83.9161,88.8112,13.2168,1.6648 Kent and Medway ICB,G82162,Orchard Family Practice,5583.740256,6.564,78.5714,72.4638,5.8494,81.0811,82.3529,3.6487,86.8421,9.1511,2.0463,0.8494,1.5607,15.9449,8.9633,20.9846,78.9539,83.4507,0.7336,0.8301,22.0856,1.5053,87.5672,83.5443,78.8732,94.3662,10.8397,2.4131 Kent and Medway ICB,G82164,The Vine Medical Centre,11987.64556,6.7883,73.4568,74.1803,3.3323,64.7166,72.1154,2.0128,82.3529,5.3168,1.5283,0.9766,2.3798,15.0337,6.8375,13.5903,69.1943,84.9711,0.6486,1.0288,13.4196,1.2453,87.57,88.2883,85.0394,95.2756,16.7592,1.5208 Kent and Medway ICB,G82165,Hawkinge and Elham,9931.484726,6.6073,77.3006,69.4915,5.363,76.1589,79.7872,2.8801,97.5,5.3155,1.7777,0.9932,3.3656,15.093,7.8654,18.84,73.6,86.6499,0.7449,0.9336,18.2315,1.0055,90.4487,81.5,87.2881,94.0678,10.9903,2.1154 Kent and Medway ICB,G82170,Lamberhurst,2850.829317,5.9572,77.5194,67.033,5.6778,79.4872,81.8182,2.5518,82.7586,5.0098,0.9888,0.4466,1.8787,12.1867,5.6757,15.4067,59.3668,80.7692,0.3828,0.6061,8.8063,0.5799,91.2721,82.0513,88.8889,92.5926,10.1569,1.6906 Kent and Medway ICB,G82180,Maidstone Rd Rainham Surgery,4925.287303,7.1601,79.0576,79.8387,5.6823,79.8507,82.9268,2.8619,95.082,5.5356,1.4309,0.5599,2.7166,13.6514,8.1286,21.1323,75.7882,85.3982,0.5599,0.6222,13.9672,1.0129,91.0417,91.8605,89.8305,91.5254,11.0222,1.6798 Kent and Medway ICB,G82184,Waltham Road Medical Centre,1734.395972,6.104,79.1045,62.7907,5.6196,90.9091,85.1852,5.1153,87.5,11.2737,3.7464,0.9366,1.8072,27.7738,11.6695,23.8473,90.1961,96.0526,0.5043,0.6484,26.506,1.0029,93.4555,90.7407,91.6667,95.8333,17.8082,1.2968 Kent and Medway ICB,G82185,Dartford West Health Centre,8583.077254,5.8858,75.2852,75.8974,4.3386,68.1208,74.2138,2.9148,83.1325,6.1847,1.3453,1.0202,1.3414,14.762,8.1596,17.4776,64.1525,79.4479,0.6166,0.6502,10.5196,2.0017,85.5097,83.4952,84.1121,91.5888,10.4811,2.0964 Kent and Medway ICB,G82186,Hamstreet Surgery,7450.787318,7.3201,77.4194,77.3148,5.6712,77.451,77.7108,3.59,85.9155,6.934,1.6649,0.7414,1.422,19.6742,7.7312,20.6686,72.8827,85.7616,0.6374,0.4813,17.2232,1.7905,90.7847,82.9114,82.9787,94.6809,12.3823,2.2243 Kent and Medway ICB,G82200,Wateringbury,9367.857986,6.6708,75.7835,79.3103,4.5782,76.8546,77.8302,2.7859,90,4.6925,1.6852,0.4189,1.9511,11.5473,6.8735,14.7867,60.1142,75.3425,0.7013,0.6721,15.7446,1.5039,89.5411,80.4233,67.9612,86.4078,11.0971,1.919 Kent and Medway ICB,G82203,Court View Surgery,10014.44059,5.6973,69.145,69.2308,3.3011,67.8947,68.0233,2.3433,81.1966,5.1522,1.7761,0.3162,2.1956,26.7304,8.0059,13.5856,62.3568,79.9163,1.2739,0.716,12.4875,1.1193,83.1916,87.3016,75.4237,90.678,19.6323,1.2089 Kent and Medway ICB,G82205,St John's Medical Practice,6948.938073,5.1142,71.0145,68.9873,3.2413,64.6865,67.5159,1.8945,91.2088,4.191,1.3924,0.525,0.8904,9.1257,6.2584,9.8494,56.8389,72.6829,0.2967,0.856,7.6451,0.5697,73.1223,78.7234,71.7949,84.6154,11.7897,1.6092 Kent and Medway ICB,G82211,Aylesham Medical Practice,8019.276327,6.374,71.1934,68.5714,4.0787,73.1449,74.2647,2.5977,96.6387,6.253,3.7509,0.3399,2.2492,24.4434,7.9535,15.7805,54.7753,72.8448,0.5341,0.7162,15.3773,1.0101,84.2297,87.6543,83.6957,94.5652,17.9944,1.5052 Kent and Medway ICB,G82212,Pilgrims Way Surgery,7523.330516,6.0574,65.9218,66.9065,2.3072,75.0693,77.2358,1.7274,91.4474,2.7066,1.4198,0.3195,1.1669,21.647,8.6196,11.8079,66.5153,82.906,0.4378,0.5916,11.6694,0.225,90.833,83.7398,83.3333,95.098,13.0264,0.9584 Kent and Medway ICB,G82215,Marden Medical Centre,6825.071484,6.9771,76.2646,70.3297,4.7933,79.8319,80.7947,2.4165,94.7917,4.792,1.6638,0.5546,2.1464,17.5907,7.2028,16.1231,68.5451,85.7143,0.3169,0.4358,14.5924,0.8623,89.3528,84.6154,87.013,92.2078,13.6734,1.7298 Kent and Medway ICB,G82217,Harbour Medical Practice,3629.276275,4.9011,66.3636,58.9041,2.3192,70.5036,72.1311,2.8437,95.4546,3.496,2.402,0.4694,3.2883,29.6048,7.4175,13.9978,57.5472,72.2892,0.6074,0.8835,15.5071,0.2288,86.6162,88.8889,65.8537,85.3659,22.1027,1.3805 Kent and Medway ICB,G82218,Braeside Surgery,8692.945139,4.8902,79.7619,77.2455,5.1422,77.6316,75.5906,3.4398,89.5833,3.3284,2.106,1.1934,1.1165,12.5009,6.302,15.0579,68.6099,88.8889,0.1931,0.7897,9.6482,0.9066,87.8231,81.25,,,9.3374,2.6325 Kent and Medway ICB,G82219,St Peter's Surgery,4939.908438,7.1717,79.2553,81.3008,6.7908,78,78.5714,4.2244,87.0968,5.7795,2.8163,0.7268,1.8325,17.3999,8.7652,23.802,69.4957,82.5532,0.6359,0.8631,14.0682,1.5887,91.233,89.3805,89.4737,94.7368,9.7712,2.4983 Kent and Medway ICB,G82224,Old Parsonage Surgery,2858.661212,5.3987,77.3333,69.0909,4.88,76.0417,85.567,1.7673,96.5517,4.4815,1.8465,0.211,1.0141,15.9182,5.7253,13.321,70.4918,84.6154,0.4221,0.7122,8.8649,0.283,90.2952,76.9231,75,93.75,10.4259,1.6355 Kent and Medway ICB,G82226,Wigmore Medical Centre,4657.693453,5.1407,76.5363,75,5.072,79.2593,82.9545,2.9848,95.2381,8.1143,1.8785,0.6262,2.2965,10.1634,9.7254,20.8933,79.4538,84.9138,0.6053,0.4801,13.8556,0.4554,93.9456,90.5405,90,97.1429,9.4498,1.6281 Kent and Medway ICB,G82227,Lydden Surgery,5672.722153,9.3819,79.6875,81.8713,7.0403,78.8079,76.378,4.3625,95,6.4442,2.9615,0.798,2.5399,12.5482,7.9161,21.3158,73.2906,84.2105,0.4788,0.3901,14.5046,0.7143,92.407,87.2181,73.913,95.6522,7.499,2.2876 Kent and Medway ICB,G82228,Canterbury Medical Practice,22636.40753,5.98,76.6216,72.407,4.529,70.0831,78.8177,2.6195,91.9643,3.7663,1.4613,1.1458,1.6481,14.8865,5.7815,14.6498,59.8809,76.4846,0.4234,1.0005,8.4263,1.5977,86.1706,80.4954,88.0597,94.0299,10.7207,1.7726 Kent and Medway ICB,G82229,Sutton Valence Group Practice,6710.813246,6.4658,76.4479,73.3333,3.8075,70.7207,78.8079,2.4266,85.7143,2.5046,1.3139,0.4826,1.0185,16.4364,7.2966,13.8222,51.2563,64.6809,0.3486,0.5497,7.4971,0.5491,83.7084,86.0656,80.4878,87.8049,12.0083,1.7026 Kent and Medway ICB,G82231,London Road Medical Centre,7483.14436,6.7898,76.6667,78.882,4.8608,80,85.1852,3.3913,92.8571,2.6558,1.8793,0.4239,1.84,20.7347,7.302,17.3661,72.0219,75.7962,0.5511,0.6924,13.0359,0.1271,89.1968,84.4262,91.0256,91.0256,14.0911,1.5261 Kent and Medway ICB,G82232,Manor Clinic,11327.30775,5.874,64.6667,58.4541,4.1809,66.9753,70.1657,2.7528,84.3374,4.3057,2.9908,1.0038,2.392,31.5727,8.1202,14.509,63.8544,84.7826,1.2626,1.7075,13.3437,0.4717,86.1525,88.6487,84.6154,85.4701,19.5052,1.8524 Kent and Medway ICB,G82233,St.Werburgh Medical Practice,9005.011107,7.4202,67.128,64.186,2.9826,78.5047,78.4091,2.555,94.8454,2.6965,1.7416,0.3441,2.3288,25.2874,7.6696,13.4842,74.0608,80,0.5214,0.6987,14.5581,0.1496,83.9381,86.0294,88.2353,86.2745,17.1079,1.0533 Kent and Medway ICB,G82234,Phoenix Medical Practice,5489.225946,6.8769,72.3926,76.5625,4.1272,78.4689,73.7864,2.7872,94.382,5.3634,1.3579,0.3037,1.5092,16.1968,8.2189,14.1326,71.145,85.2941,0.3752,0.4645,15.3703,0.2976,86.3008,84.5529,91.0448,94.0299,12.7442,1.4829 Kent and Medway ICB,G82235,Old School Surgery_G82235,4807.062439,7.2342,74.6411,70.922,5.433,75.7576,80,3.2088,82.0513,4.9222,2.0055,1.1668,1.6253,14.1848,6.5125,16.7366,56.0117,72.0339,0.6016,0.6381,13.0717,1.0778,83.4563,76.7857,71.1538,84.6154,16.7351,2.4977 Kent and Medway ICB,G82600,Eastcourt Lane Surgery,2299.676227,5.8329,72.4138,67.8571,4.226,78.6885,75.5556,3.0694,100,5.2632,2.758,0.8007,2.3269,23.1297,8.9569,19.8399,77.0774,86.5979,0.5338,0.5338,12.41,0.8089,90.3986,83.9286,90,96.6667,12.3602,1.1566 Kent and Medway ICB,G82604,The Medical Centre Group,14653.70602,6.1233,71.6312,71.0611,3.5326,79.096,79.0441,2.4709,93.9759,5.9139,2.2006,1.2934,0.9459,19.1127,8.8753,16.4211,75.1232,86.9732,0.5148,0.8043,14.1372,0.5631,90.9105,85.5153,88.7755,96.4286,17.0915,1.8982 Kent and Medway ICB,G82631,Bryant Street Medical Practice,8201.7786,4.3166,54.1237,59.6899,2.2274,66,70.2703,1.7623,88.6598,5.7809,1.542,0.2325,3.8758,38.3041,8.6015,14.9431,79.5037,88.7218,0.7221,1.077,13.2206,0.7469,86.7738,88.1657,81.3725,83.3333,23.0943,0.9179 Kent and Medway ICB,G82634,The Meads Medical Practice,10864.8778,6.5706,69.7183,73.913,3.7835,77.6042,77.6536,2.6707,92.7632,5.791,1.9318,0.8724,1.4124,21.6952,8.5311,14.2259,61.4374,83.2237,1.736,0.7122,15.2189,0.5294,90.0599,80.8333,81.8841,92.029,16.9784,1.4689 Kent and Medway ICB,G82635,Pump Lane Surgery,2272.614624,5.2451,77.9221,77.551,4.7685,84.127,84.6154,3.9352,96,6.0365,1.4815,0.6482,1.0251,15.1528,9.4276,19.3056,69.1756,81.8841,0.5556,0.5556,8.656,1.3944,92.4018,74.0741,80.6452,90.3226,7.6882,1.4815 Kent and Medway ICB,G82641,Wallis Avenue,6730.27308,6.91,63.3028,60.6383,2.3099,69.6429,70.8861,1.4999,88.4892,4.9563,1.9499,0.765,4.4323,32.0705,7.7864,12.0744,63.3864,80.7018,0.54,1.08,21.7031,1.5374,92.468,73.0769,76.8116,72.4638,21.5273,1.2599 Kent and Medway ICB,G82647,Temple Hill Surgery,20430.14906,4.4181,66.8354,64.8276,2.5471,65.4348,68.8976,1.7169,83.2317,3.4189,1.1587,0.577,1.4587,23.7624,7.328,12.7498,56.1758,75.395,0.7365,0.8021,10.6198,0.8671,85.5057,85.342,75.122,89.2683,14.948,1.2947 Kent and Medway ICB,G82648,Rochester Road Surgery,3535.727283,4.1207,60,57.377,1.7722,55.3191,71.6981,3.443,88.2353,2.7933,0.5823,0.3544,1.676,24.4093,13.9587,14.2532,52.6749,75.3247,0.2785,0.9367,20.2432,0.258,87.5086,90.3509,61.7284,86.4198,10.6226,1.1392 Kent and Medway ICB,G82650,Mocketts Wood Surgery,10443.35291,7.4369,77.5,78.2101,6.9338,81.9383,84.7368,4.0948,80.3922,5.5497,2.173,0.6006,1.5028,18.3864,8.4728,17.9188,75.1843,82.381,0.9391,0.8736,17.4796,2.1828,93.9896,75.8974,83.0508,89.8305,11.2197,2.7735 Kent and Medway ICB,G82652,Church Road,3085.680283,8.0451,74.5763,70.6667,7.0075,78.7879,81.0345,3.754,95,8.4306,3.0747,0.8581,1.5997,15.8489,8.6177,21.8448,74.2678,93.985,0.1788,0.8581,15.2616,0.3997,90.482,87.6712,81.5789,94.7368,12.2265,3.7898 Kent and Medway ICB,G82658,Sellindge Surgery,4956.209542,6.5719,78.3505,78.1955,5.2156,80,78.8462,3.0601,94.8276,6.4982,1.8476,0.6928,1.4681,16.3836,7.3484,17.5327,69.6721,79.3296,0.9815,0.5004,10.5656,1.3036,89.4815,76.7857,83.0508,88.1356,11.1111,2.0593 Kent and Medway ICB,G82665,Martello Health Centre,7592.295789,7.8431,77.1127,69.6429,7.4198,73.1481,73.2759,6.177,88.8889,8.3872,4.322,1.5025,1.8758,27.1628,13.0175,25.895,59.944,75.0769,1.5396,1.2243,15.4377,0.9762,89.2115,84.9765,80.1724,89.6552,15.1387,3.58 Kent and Medway ICB,G82666,Birchington Medical Centre,16914.7152,6.9405,73.1707,68.4932,7.1363,76.1905,76.1317,4.9168,85.5073,6.6824,4.0074,1.3255,3.7407,18.941,10.7506,24.1446,68.9715,80.0708,1.0173,1.0018,12.9018,0.7896,91.8929,79.1569,85.9649,90.7895,14.6627,3.3832 Kent and Medway ICB,G82679,Apex Medical Centre,6502.845631,5.5923,69.5431,73.8806,3.2606,65.4167,74.5455,2.5711,87.013,4.3269,1.6231,0.3735,3.1435,23.3338,9.0711,15.5559,66.8838,78.3951,1.5082,0.7038,21.838,0.8721,84.2399,89.5105,67.0455,88.6364,17.3584,1.3789 Kent and Medway ICB,G82681,Malling Health Four,5914.01927,6.4531,75.3555,72,3.7695,71.8062,70.8333,2.3686,83.9623,2.5279,1.3865,0.6066,0.8736,11.5173,7.7528,14.948,54.6379,64.1129,0.7077,0.5633,5.9108,0.8582,84.1131,75.2381,71.7949,76.9231,11.8684,1.9064 Kent and Medway ICB,G82682,The Om Medical Centre,7666.140804,5.5339,63.9269,63.3987,3.4955,58.4112,57.5,2.8401,76.1905,4.4751,2.5634,0.3059,4.2863,40.9593,9.4903,14.5208,62.3153,62.1622,0.7719,0.7865,9.7054,1.5526,86.7714,83.2258,56.8627,82.3529,23.4951,1.3108 Kent and Medway ICB,G82684,New Lyminge Surgery,4693.995832,6.9585,82.1101,79.7101,6.6924,83.3333,79.0476,3.0673,96.7742,4.0544,1.9091,0.6864,2.6944,13.9303,6.423,18.2754,64.4757,87.3239,1.2227,0.8151,10.0077,0.6496,91.0388,81.0811,81.25,89.5833,7.6923,2.7456 Kent and Medway ICB,G82687,Vel Surgery,10449.57655,7.0274,69.4352,69.0476,3.7009,74.3945,71.519,2.9321,81.25,7.4993,2.9321,0.4612,2.736,41.3739,10.1716,17.9662,74.3983,87.1698,1.0543,0.6919,18.1457,1.5716,92.1935,88.1356,83.9695,90.8397,23.797,1.3617 Kent and Medway ICB,G82691,Langley,3367.002076,6.6227,78.9474,74.3902,5.0833,84.5455,80.3279,3.0383,94.1177,7.2562,1.9281,0.6719,2.6833,18.3579,9.1384,16.6229,73.5608,89,0.4966,0.6719,14.1723,0.7369,93.1774,87.8788,90.9091,95.4545,11.3878,2.2495 Kent and Medway ICB,G82693,Memorial Medical Centre,16941.05566,6.5877,77.2636,76.1111,3.8548,74.4102,78.3505,2.7332,92.5714,5.9647,2.013,0.7202,2.2216,22.2302,8.4784,16.2751,69.4611,80.5461,0.8028,0.8855,14.1586,1.4205,91.1624,82.4658,74.2718,91.7476,14.9259,1.5643 Kent and Medway ICB,G82696,Manor Road Surgery,3079.949327,8.7052,73.7864,66.129,6.2317,72.8571,74.359,3.8059,95.4546,9.6872,3.3459,2.5931,1.4127,19.8756,10.0798,23.8812,84.9188,88.5714,0.2928,0.9201,22.1998,0.9983,94.3778,84.9315,86.1111,100,15.0543,3.4295 Kent and Medway ICB,G82697,The Churchill Clinic,10534.51178,6.2782,66.7883,60.6796,3.4236,70.411,69.7674,2.786,84.6154,4.6084,2.7369,0.363,1.3981,27.5506,9.4579,14.2142,64.739,79.902,0.4611,1.0889,12.7767,0.8343,87.7576,85.0877,80.4348,90.5797,35.8139,1.2949 Kent and Medway ICB,G82698,The Medic Care Surgery,3683.285654,5.3087,68.2927,69.2308,3.4965,75.2066,73.8462,2.6627,88.8889,5.2221,2.1517,0.3228,2.4076,23.4722,8.5456,15.4384,73.5683,78.3333,0.8069,0.6724,11.5293,0.403,90.3341,91.4634,87.234,97.8723,20.2003,1.7214 Kent and Medway ICB,G82700,Buckland Medical Practice,11972.29289,6.399,71.8421,73.251,5.5608,77.707,78.5714,3.3972,91.2281,6.6107,3.5301,0.6738,2.0636,22.7625,8.6787,18.2293,81.4815,88.5321,2.0687,1.2621,21.9556,0.4494,93.8804,89.2989,93.3333,97.037,19.5841,2.2585 Kent and Medway ICB,G82702,Green Porch Medical Partnership,7066.630969,5.5713,60.8696,65.2482,2.5813,64.1694,65.0407,1.6009,83.3333,4.3456,1.2782,0.5709,3.6719,24.6868,6.7878,13.2291,68.5089,79.4393,0.5833,0.7694,15.6476,0.3125,80.2518,84.4037,79.7297,95.9459,17.6822,1.0549 Kent and Medway ICB,G82708,Marlowe Park Medical Ctr.,3653.427017,5.2871,64.2857,70.2703,2.4631,82.5,81.5385,1.9939,93.2203,3.9474,2.3692,0.305,2.0677,25.6011,7.3208,12.8079,66.7343,77.3585,1.126,0.5395,13.3772,1.2744,83.1788,77.0492,86.3636,88.6364,21.1208,1.1729 Kent and Medway ICB,G82711,Borstal Village Surgery,4167.112832,6.4722,73.3871,76.1364,3.162,77.7778,81.3333,2.798,86.2069,3.8969,1.3421,0.5232,3.1775,19.513,6.3936,14.4905,53.5354,66.9014,0.2957,0.8417,8.5132,2.3971,91.1019,75.7576,80,85,15.1085,1.4786 Kent and Medway ICB,G82719,Matrix Medical Practice,15262.66133,5.9311,69.5565,70.2312,3.7326,69.9301,74.552,2.5911,88.2076,3.8637,1.9025,0.3503,1.712,6.5019,9.1394,15.9932,51.4312,71.5884,0.604,0.7489,11.2848,1.8325,86.1315,87.2131,69.9115,78.7611,16.1656,1.4254 Kent and Medway ICB,G82721,Parkwood Family Practice,3557.245821,7.1058,77.305,78.022,4.5614,81.3187,74.6269,3.3041,100,8.2572,2.0468,0.4094,1.7217,12.2207,10.4318,19.2398,77.9245,90.625,0.5848,0.4678,18.9389,0.5488,92.9117,83.871,94.5455,94.5455,9.198,1.1404 Kent and Medway ICB,G82729,White Cliffs Medical Centre,10423.44976,6.0099,70.1538,75.3425,4.7888,66.7722,73.2143,3.1343,88,7.3247,2.6924,0.8941,1.7403,27.777,8.9053,17.9632,64.8818,74.1936,0.6063,1.1818,11.2468,1.3105,90.1096,87.8431,62.1212,90.9091,21.3766,1.9114 Kent and Medway ICB,G82730,Kingsnorth Medical Practice,9839.423111,6.15,77.8098,79.7834,3.4334,78.8372,79.0123,2.1159,92.4812,4.0071,1.3015,0.4471,2.9455,13.2805,6.7568,15.107,74.6426,82.6855,0.5829,0.4951,14.9563,1.9478,93.0219,92.5926,86.7769,93.3884,9.504,1.4452 Kent and Medway ICB,G82733,Orchard End,3391.362764,6.6856,73.5537,73.6842,4.2699,79.1667,86.4198,1.4969,93.9394,4.2908,1.1043,1.0798,2.6596,13.9446,5.3864,10.5521,69.5385,81.9048,0.6626,0.8589,6.8794,0.7638,82.5941,85.1064,75.8621,89.6552,8.0578,1.6687 Kent and Medway ICB,G82737,Long Catlis Road Surgery,9974.272535,5.27,72.3333,71.1538,2.9243,72.2772,70.7182,2.3586,91.8699,6.2008,1.1401,0.322,2.5683,11.6338,7.9777,14.8216,51.5523,69.4969,0.4352,0.5657,9.2203,0.2557,88.6224,80.9917,34.1085,85.2713,13.9798,1.2359 Kent and Medway ICB,G82741,Princes Park Medical Centre,25107.13306,5.2002,64.4928,61.0209,2.3888,58.7612,66.4,1.5768,78.5882,3.9859,1.4488,0.8929,2.1991,19.4496,6.948,10.684,54.1713,81.0127,1.1523,0.876,12.2051,0.6793,85.6762,80.4054,69.6864,83.9721,17.7447,1.1186 Kent and Medway ICB,G82744,Maritime Health Partnership,37007.73274,5.159,66.3925,66.1859,3.1017,67.7715,74.9042,2.1893,88.0851,3.8053,1.433,0.9755,2.8281,33.0799,7.5898,12.5055,73.412,81.8728,0.9344,1.0987,13.3845,1.1105,88.2575,78.6992,85.0374,88.0299,17.9597,1.2001 Kent and Medway ICB,G82753,The Kings Family Practice,7708.727566,4.441,58.2192,59.322,1.7988,67.0251,70,1.6807,73.75,2.1378,1.2736,0.2363,3.1792,40.7338,7.3365,10.2153,62.2695,73.9726,0.6565,1.0242,13.9777,0.4826,82.0577,88.7755,86.0759,81.0127,24.163,0.6828 Kent and Medway ICB,G82754,Hadlow Medical Centre,3567.832294,6.9581,70.229,68.0851,4.9338,74.7475,73.0769,3.0448,95.6522,7.5106,2.6501,0.5075,1.4104,14.7016,8.0875,16.7184,70.7692,88.4058,0.5075,0.874,12.0945,0.8223,89.8826,81.1111,88.0952,90.4762,13.7517,2.2272 Kent and Medway ICB,G82763,Napier Road Surgery,2747.335277,4.612,66.6667,62,2.5153,69.1589,78.0488,2.1754,100,5.5022,1.4616,0.4759,0.9607,28.0305,9.0164,13.0184,69.8413,92.6471,0.3059,1.0877,17.5983,0.6586,90.4159,85.4839,89.4737,92.1053,20.3765,0.9517 Kent and Medway ICB,G82768,Lonsdale Medical Centre,6845.601018,6.0961,73.6559,67.1533,4.5323,70.8487,74.6154,2.2387,88.5714,6.0542,1.3185,3.0078,1.487,8.6851,5.7118,12.512,60.8483,77.5168,0.3434,1.3322,6.3728,3.1634,76.5821,72.3577,72.7273,72.7273,10.4928,2.5958 Kent and Medway ICB,G82780,Gravesend Medical Centre,15589.78177,4.4639,59.9379,54.2308,1.9829,61.8401,68.2819,1.9649,77.4892,2.3078,1.252,0.3175,1.6913,27.8919,7.9801,11.7415,59.1981,79.5455,0.7189,0.9525,13.6252,0.2158,86.8704,88.1944,79.8969,81.4433,19.5669,1.1981 Kent and Medway ICB,G82790,Old School Surgery_G82790,5617.103131,5.9762,71.4286,73.0769,4.9968,72.9282,76.5152,2.3393,90,3.0951,1.4163,0.557,0.7388,16.2749,6.1201,12.4125,61.2957,74.7191,0.3024,0.7638,5.032,0.2988,80.6671,79.2683,77.7778,90.7407,11.3545,1.5436 Kent and Medway ICB,G82796,Broadstairs Medical Practice,7905.031797,6.0749,73.2087,72.0588,4.9763,74.3243,75.7764,3.0937,95.3846,5.9637,2.475,0.4213,1.0127,17.9176,8.4668,19.6024,54.022,62.6623,0.4213,0.8162,10.4967,0.493,87.8884,74.4681,79.3814,91.7526,13.183,2.2512 Kent and Medway ICB,G82799,Sheppey Healthy Living Centre,16825.9212,5.8492,73.3855,72,3.7063,73.0496,72.4409,3.059,88.2716,6.7122,2.2693,0.3201,2.0036,46.7818,9.9901,17.7563,79.0106,88.1643,0.6474,0.6474,14.9454,0.2206,92.2324,80.5063,87.7828,91.8552,16.5825,1.5366 Kent and Medway ICB,G82802,Canterbury Health Centre,5543.353709,3.811,66.9492,62.963,2.026,60.8,77.027,1.2727,84.4828,2.0165,0.8182,0.3117,1.7906,15.494,3.9756,8.3247,62.5698,79.8077,0.2208,0.8182,9.7112,0.8772,90.5234,82.2581,71.7391,86.9565,17.1236,1.0909 Kent and Medway ICB,G82808,"Oakfield Health Centre, Practice 2",10178.639,6.0722,67.5781,64.2157,2.7778,75.1445,71.5116,2.1236,83.8462,6.5011,2.033,0.7951,1.8594,25.5394,8.8785,14.221,60.9115,79.4118,0.7246,0.8253,16.2595,0.5884,88.4411,83.3333,71.3115,90.9836,18.75,1.9022 Kent and Medway ICB,G82809,Downs Way Medical Practice,16044.71904,5.2731,79.6848,77.6413,5.0969,74.8918,77.8462,2.8153,84.6154,2.4785,1.3371,0.8464,0.8515,10.9083,6.762,14.4934,71.1924,79.0732,0.3251,0.2944,8.3099,0.1986,83.214,80.2575,81.5951,86.5031,9.3498,1.9382 Kent and Medway ICB,G82888,South Park Medical Practice,4937.148301,5.8963,74.6269,71.5447,3.9822,69.6078,73.8462,2.0149,95.3846,6.6794,1.1265,1.3644,1.3614,7.0018,4.3541,11.1693,74.6331,85.022,0.238,0.7298,4.4033,1.6927,84.2293,77.1084,88.5714,91.4286,7.0829,1.6341 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence Hertfordshire and West Essex ICB,D81047,Ashwell Surgery,7254.866841,3.5452,77.6398,76.9231,4.0024,76.3393,76.4706,2.3917,95.7143,4.3902,1.2569,0.6833,1.0366,9.5894,5.771,14.277,68.0587,80.9859,0.2929,0.5735,7.2713,0.2077,78.9023,84.6154,90.3226,96.7742,8.4149,1.7572 Hertfordshire and West Essex ICB,E82002,Wrafton House Surgery,10016.10214,5.1455,63.4538,71.978,2.931,59.2405,72.8395,2.3832,86.2745,3.1516,1.6817,0.6439,1.6184,17.5788,7.4563,13.6075,57.5865,73.7024,0.6246,1.0379,16.3178,0.4562,80.594,86.5497,75.8621,86.2069,17.4624,1.749 Hertfordshire and West Essex ICB,E82005,Stanmore Medical Group,48298.8953,6.5245,70.9052,67.9612,3.0206,69.6537,73.3853,2.4659,92.4497,1.6486,1.7112,0.7841,1.2408,18.1699,7.823,13.5252,68.2679,83.6923,0.7174,0.9801,11.0516,0.6662,85.6288,86.8351,88.5159,92.7562,15.7051,1.623 Hertfordshire and West Essex ICB,E82006,The Limes Surgery,8120.767234,6.4855,75.188,78.0749,5.6708,78.733,80.3797,3.3896,89.4737,2.5015,1.8301,0.8635,0.7258,14.1414,6.9502,15.4659,75.9407,81.7338,0.6444,0.7346,11.4731,0.0559,90.4116,88.3929,84.1463,90.2439,13.4788,2.1137 Hertfordshire and West Essex ICB,E82007,Hanscombe House Surgery,10506.71161,6.4946,78.934,71.7314,3.8052,75.4923,78.4553,2.1687,94.5946,1.9395,1.0645,0.5799,0.4671,8.6913,5.1182,13.7115,70.9277,80.3922,0.4131,0.6038,8.3367,0.3514,87.2527,86.3014,84.0909,92.0455,9.0421,1.4458 Hertfordshire and West Essex ICB,E82008,The Nevells Road Surgery,12119.00317,8.253,75.7669,78.0702,3.9739,75.4673,77.2727,2.9478,93.5714,1.5438,1.5652,0.8522,0.3443,17.4733,8.0767,13.8174,70.3925,82.7338,0.7913,1.2087,11.4283,0.2819,83.0323,89.1892,92.3077,96.9231,13.5984,1.9044 Hertfordshire and West Essex ICB,E82018,Lister House Surgery,13504.41767,4.4112,70.8709,73.9496,2.4753,63.3508,73.0769,1.8308,87.8571,2.0516,1.2137,0.4663,0.8981,16.99,7.1831,11.8966,57.2359,78.7535,0.7337,1.0285,17.399,0.1383,85.5676,88.2353,79.021,90.2098,16.8261,1.4811 Hertfordshire and West Essex ICB,E82019,Bridge Cottage Surgery,15203.76799,6.4187,77.4716,70.024,5.0902,77.4194,78.9773,3.2986,88.5714,4.7063,1.3389,0.8538,0.4809,7.6157,5.8956,16.1503,61.4205,83.5821,0.5951,0.6921,7.3,0.0783,87.571,82.3755,74.1007,86.3309,8.4203,2.225 Hertfordshire and West Essex ICB,E82021,Much Hadham Health Centre,6487.881782,6.5744,80.7843,74.5946,6.1438,80.2198,84.106,3.0122,83.7838,4.6137,1.4166,0.7009,1.7047,10.4543,5.8053,17.3129,73.6443,88.7029,0.6859,0.507,9.357,0.5525,89.0826,86.0215,91.8033,96.7213,9.4698,2.0877 Hertfordshire and West Essex ICB,E82023,Burvill House Surgery,10224.81794,4.2688,66.5306,70.6806,2.26,55.5556,66.2791,1.9522,82.8358,2.4604,1.45,0.5751,1.4491,17.3399,6.037,11.5188,58.2986,78.0269,0.4941,0.9721,9.6643,0.3876,78.9933,80.6061,81.6514,88.0734,19.052,1.3933 Hertfordshire and West Essex ICB,E82024,Wallace House,14828.72258,6.5638,72.2458,64.4886,3.8839,74.1284,80.9969,2.3944,85.9155,3.3629,1.3198,0.7919,0.9708,9.8487,5.7968,14.3917,64.119,77.6042,0.4651,0.949,9.7468,0.4302,87.3836,81.0345,84.0909,90.1515,13.3385,1.8162 Hertfordshire and West Essex ICB,E82035,Knebworth & Marymead Practice,13332.61006,6.7646,72.1311,67.2414,3.7277,76.0181,76.1317,2.9596,93.3333,2.5318,1.8224,1.2727,0.6069,13.2504,6.9478,14.233,75.5311,75.2381,0.6853,0.9037,11.3218,0.2869,86.9292,84.2795,76.1538,83.8462,12.9203,2.3194 Hertfordshire and West Essex ICB,E82038,The Buntingford & Puckeridge Medical Practice,17968.65772,7.5219,77.1151,72.7626,4.1079,80.4795,79.81,2.7618,90.2703,3.0574,1.3759,0.7103,0.9052,8.606,6.621,15.2444,69.1503,84.8529,0.5017,0.6159,10.1025,1.2158,79.259,88.3333,82.0652,92.9348,9.9452,1.6094 Hertfordshire and West Essex ICB,E82040,Peartree Lane Surgery,22026.39819,6.2246,72.9134,62.4724,3.5114,71.5232,76.8595,2.6707,90.1786,3.4827,1.9554,0.627,0.9917,16.8219,7.4408,13.4417,63.6205,78.3557,0.7803,1.3052,10.1647,0.312,81.5454,87.4055,64.6091,87.2428,16.6592,1.9508 Hertfordshire and West Essex ICB,E82041,The Garden City Practice,10792.09218,6.3489,74.4108,73.4783,2.7805,74.6392,75.3555,1.7086,92.9487,4.4044,1.1364,0.5239,1.3848,12.3948,5.9853,12.6612,58.6811,77.748,0.4997,0.9349,11.0475,0.0752,85.2784,79.0055,79.6117,91.2621,11.4679,1.2653 Hertfordshire and West Essex ICB,E82042,Abbey Road Surgery,10585.81046,5.6743,62.7049,55.8974,3.3491,62.9121,72.5275,2.6278,73.9583,3.8391,1.7931,0.7317,0.8283,26.9879,8.6985,14.0251,76.1644,82.3308,0.5359,1.2057,12.2272,2.1389,84.0401,85.2941,82.2581,83.0645,19.2269,1.8343 Hertfordshire and West Essex ICB,E82044,The Portmill Surgery,12808.73264,7.8428,80.5139,73.0303,4.0676,78.2895,84.6154,2.2006,99.1667,1.8158,1.3772,0.9299,0.5201,9.644,6.0319,14.1194,70.6447,79.8493,0.4543,0.9015,9.405,0.2344,85.139,87.7907,87.3016,91.2698,8.5908,1.9309 Hertfordshire and West Essex ICB,E82053,Bancroft Medical Centre,15733.22367,6.3738,74.0741,66.7692,2.7694,79.9145,82.1918,2.0977,98.5222,1.3467,1.437,0.9525,0.6243,11.0887,5.8099,11.7161,73.913,85.7143,0.5175,0.947,7.456,1.2496,88.0804,84.0796,90.6667,93.3333,10.0496,1.481 Hertfordshire and West Essex ICB,E82056,Shephall Health Centre,9320.818179,6.8728,70.2797,72.2772,2.8993,75,75.1445,2.5839,88.6793,2.867,2.1261,0.5087,1.374,20.1717,7.6673,14.1302,61.7306,81.3433,0.763,0.7731,13.2778,0.1818,87.0375,89.9329,82.0755,88.6792,17.2907,1.4853 Hertfordshire and West Essex ICB,E82058,Potterells Medical Centre,11296.93762,3.3058,76.2048,65.7407,2.1541,52.521,78.2383,1.5318,86.5854,1.2826,0.724,0.5864,0.7842,14.0869,3.5413,8.2635,70.5714,83.9879,0.1257,0.365,6.0739,0.3569,85.4097,84.8684,92.3077,97.8022,10.7222,1.0472 Hertfordshire and West Essex ICB,E82061,Amwell Surgery,13866.28322,6.931,75.2969,78.6207,4.1375,76.9565,79.4239,3.1916,90.7692,2.606,2.0363,0.9387,1.348,15.6626,7.1581,15.4091,68.097,83.0798,0.7149,0.7149,14.5938,0.5241,91.1863,86.4754,83.0065,92.1569,15.8866,1.8557 Hertfordshire and West Essex ICB,E82062,Hall Grove Group Practice,16306.48107,6.0594,78.2609,78.3641,4.9731,78.2779,81.2102,3.069,89.1026,4.2213,1.9291,1.1149,1.3577,14.2318,6.8923,16.2282,71.509,84.5912,0.595,1.0335,12.8433,1.9053,88.6,82.069,91.875,95,12.6126,2.2798 Hertfordshire and West Essex ICB,E82063,The Maples,11694.41047,5.9864,74.0385,69.3227,3.0908,76.1506,77.027,2.1002,84.8837,2.9832,1.4345,0.4834,0.9415,19.8233,6.8636,12.6803,70.1824,81.7109,0.5944,0.7053,11.6259,1.7455,87.0922,84.8958,88.8889,93.1624,15.4651,1.4899 Hertfordshire and West Essex ICB,E82067,Church Street Partnership,13756.4756,6.0384,77.3196,71.1538,3.9449,69.5733,80.303,2.7482,92.126,3.0528,1.2027,0.6555,0.5075,6.3359,5.3992,11.8107,70.0203,75.7764,0.5412,0.6615,7.9615,0.2335,86.1093,86.8293,83.9695,93.1298,11.8055,1.6658 Hertfordshire and West Essex ICB,E82074,South Street Surgery,18061.23013,6.3167,76.7055,69.5175,3.7161,66.8552,78.9604,2.392,91.1504,3.4083,1.1938,0.5427,0.7857,6.553,4.7109,11.7126,72.0372,83.8415,0.5079,0.7554,9.9106,1.8791,87.0971,76.7025,82.9114,91.7722,12.264,1.3675 Hertfordshire and West Essex ICB,E82075,Regal Chambers Surgery,12688.09257,7.9933,77.8082,70.5426,4.3252,74.5995,78.2979,3.2439,90.3509,2.9421,1.9495,1.0971,1.1008,10.7648,6.9836,14.5146,66.8433,72.7799,0.5288,1.3496,10.5274,0.694,88.2313,90.9953,81.8898,90.5512,11.5281,2.2573 Hertfordshire and West Essex ICB,E82079,Cromwell Medical Centre,9031.706097,6.5905,70.0893,61.5854,2.9583,77.9141,80.5556,2.8014,76.8519,2.8449,2.1851,0.7172,1.4521,21.1099,8.4679,13.8167,51.6196,75,0.5603,1.2102,12.5648,0.7194,90.1524,90.2299,90.566,87.7358,20.1629,1.6697 Hertfordshire and West Essex ICB,E82081,Cuffley and Goffs Oak Medical Practice,11627.57263,5.8549,79.4872,74.7801,5.5472,80.2111,85.4167,3.2693,84.5529,3.3617,1.1427,0.6281,1.5675,9.0811,6.5153,17.9431,63.1609,77.9412,0.4692,0.6054,10.5855,3.0868,89.8486,83.6283,82.2034,93.2203,9.4825,1.9676 Hertfordshire and West Essex ICB,E82082,Birchwood Surgery,16701.28896,8.6709,72.2628,77.0548,3.6367,81.761,83.1933,3.1448,91.1392,3.7113,2.0907,1.2298,0.9738,17.4776,8.6915,17.1293,65.953,70.7171,0.8696,1.0102,8.8509,0.1542,82.1306,90.9871,82.9493,92.6267,13.0979,2.1873 Hertfordshire and West Essex ICB,E82086,King George & Manor House Surgeries,21434.37514,6.6755,72.0395,76.7281,2.9512,62.8877,73.8579,2.4169,89.313,3.2125,1.2805,0.6572,1.5929,18.5346,6.8075,12.7375,62.4743,81.7863,0.6275,0.8353,11.3802,0.8396,82.4177,85.4447,91.342,96.9697,13.8364,1.5519 Hertfordshire and West Essex ICB,E82088,Hailey View Surgery,9523.616812,6.5586,76.5125,78.1095,4.5102,83.8284,85.4749,3.1194,94.6237,5.858,1.6591,1.1425,0.7387,13.4488,6.9427,14.6036,73.3216,84.6154,0.5663,0.606,11.0679,0.5243,89.4713,80.5556,89.4737,94.7368,10.8179,1.9074 Hertfordshire and West Essex ICB,E82090,Park Lane Surgery,9830.139248,5.7847,79.1557,79.1506,4.7207,81.7869,82.6087,3.3317,89.7959,5.4022,1.3696,0.7285,0.753,11.0249,6.669,16.3672,82.8894,88.565,0.3983,0.5148,10.6131,0.1279,89.2629,89.9522,93.1034,94.2529,9.0776,1.8553 Hertfordshire and West Essex ICB,E82092,Dolphin House Surgery,14886.5568,7.8012,73.7179,66.7665,3.6152,78.3217,77.5862,3.2065,90.4459,4.3373,1.3581,0.9683,1.3569,8.8086,6.4606,14.486,76.8481,88.9088,0.6099,0.8048,9.4902,0.857,89.6056,82.7068,89.404,92.7152,12.5254,1.9554 Hertfordshire and West Essex ICB,E82093,Bedwell Medical Centre,13551.60885,6.0187,68.8776,64.2336,3.3416,72.1491,77.5229,2.5624,85.1852,3.9155,1.9255,1.004,0.9886,22.2391,8.6832,15.3668,66.3302,83.3788,0.6369,0.7792,16.4954,1.7074,89.6126,89.6057,85.7988,93.4911,18.1083,1.8431 Hertfordshire and West Essex ICB,E82099,The Baldock Surgery,12707.10354,6.8074,74.2857,81.4696,4.3046,79.2079,79.9257,2.8827,96.9072,2.4536,1.3287,1.2821,1.3695,11.3503,6.3385,15.3846,67.0249,75.7638,0.5361,1.2121,9.8716,0.5277,88.0416,80.4124,88.2353,90.7563,11.5973,2.1756 Hertfordshire and West Essex ICB,E82100,Central Surgery,12173.65498,7.2856,77.193,75.5034,4.4111,79.5824,82.5911,2.7848,88.6179,3.4341,1.2253,0.5792,0.4759,8.8985,6.3934,15.2235,69.7837,82.4268,0.3416,0.557,12.0567,0.4864,85.3182,82.439,93.6508,96.0317,11.2023,1.8417 Hertfordshire and West Essex ICB,E82102,New River Health,16753.74199,6.8759,76.3441,69.2118,3.6606,76.4521,79.4444,2.4227,91.579,4.1097,1.2539,0.8023,1.1453,8.6601,5.9666,13.5533,76.9552,84.3602,0.5579,0.7704,8.3002,1.779,89.5769,79.0614,80.1242,92.5466,10.0968,1.6683 Hertfordshire and West Essex ICB,E82111,The Symonds Green Health Centre,5367.488591,4.8557,70,75.4902,3.1227,67.1875,78.3133,2.2876,78.5714,1.3495,1.9426,0.8715,1.0005,19.0039,7.5636,13.1627,65.1007,71.3178,0.817,0.817,11.4472,0.4386,95.4188,91.3044,87.3016,95.2381,17.6621,1.3435 Hertfordshire and West Essex ICB,E82115,Stockwell Lodge Medical Centre,11039.70262,6.6879,70.1847,68.1992,3.9125,71.3376,77.8302,2.8988,84.2105,3.7919,2.0747,0.6631,1.2601,17.8166,7.9358,14.1057,64.0136,79.5455,0.6063,0.8242,9.8938,0.1146,88.1244,82.9146,74.1935,94.3548,15.3367,1.7999 Hertfordshire and West Essex ICB,E82121,Watton Place Clinic,4410.815063,8.2552,76.0638,69.6,4.3161,77.8523,76.4151,3.2125,92.6829,2.6838,1.3205,0.2562,1.1847,8.3796,5.8375,18.2105,69.1885,82.7411,0.3942,0.3745,7.9787,0.6611,83.2946,95,71.4286,85.7143,11.3755,2.1285 Hertfordshire and West Essex ICB,E82123,Warden Lodge Medical Practice,10591.33313,6.2459,73.3108,73.0594,5.2582,73.4177,81.1828,2.963,88.2979,4.1753,2.1388,0.939,0.7627,19.5429,7.8931,16.2754,59.8534,77.1855,0.5112,0.7616,9.9922,3.5191,88.3094,81.1594,65.1376,87.156,14.2738,2.0136 Hertfordshire and West Essex ICB,E82133,High Street Surgery,7980.824539,4.1779,70.5202,55.9701,2.5676,71.9298,75.5906,2.1253,81.3008,1.4722,1.5233,0.344,3.6326,20.6276,7.3144,13.0344,70.1439,84.141,0.5037,1.1425,12.642,0.3828,91.5908,91.6667,80.4598,91.954,19.7302,1.2654 Hertfordshire and West Essex ICB,E82626,Whitwell Surgery,2695.971028,7.0497,69.1589,65.3846,4.2126,76.1364,79.7101,2.8753,90.4762,3.9534,1.9726,0.3009,0.7075,11.8458,5.7131,16.65,62.7249,69.7248,0.3343,0.5684,8.7807,0.3687,85.8991,97.6744,74.0741,88.8889,12.0739,1.8389 Hertfordshire and West Essex ICB,E82638,Stanhope Surgery,6947.512395,5.2013,69.3878,57.3643,2.8508,72.0755,75.2,1.8708,82.7957,2.2261,1.3363,0.4306,0.7743,25.5052,7.4194,11.7001,60.8087,84.1379,0.683,1.2621,11.8273,0.1013,88.7562,86.6667,89.1892,91.8919,21.4774,1.4254 Hertfordshire and West Essex ICB,E82654,Helix Medical Centre,6581.820625,6.7977,75.2747,71.3235,2.7239,75.4342,83.4586,1.6746,88.2353,3.5213,1.1659,0.318,1.9754,6.6226,4.6158,10.3763,75.3071,80,0.424,0.6041,5.0243,0.4047,85.1679,89.6907,85.4545,94.5455,9.9606,1.1341 Hertfordshire and West Essex ICB,E82661,The Garden City Surgery,7858.771784,6.7678,67.8218,68.9655,2.2736,65.3595,69.2857,2.4948,96.7391,1.6404,2.1875,0.934,0.347,18.627,7.5993,10.9746,54.7584,71.4286,0.7865,1.0692,9.0852,0.1463,79.2356,87.931,70.3297,80.2198,18.2572,1.4747 Hertfordshire and West Essex ICB,Y02639,Spring House Health,7354.85236,6.2786,74.6753,71.7742,1.9141,78.6364,81.6,1.1607,90.5983,1.5098,1.0079,0.3665,0.527,15.9151,5.6374,9.8453,70.8625,83.4862,0.3054,0.6312,13.2175,0.5266,90.1,86.076,81.9444,87.5,15.9455,0.6923 Hertfordshire and West Essex ICB,E82001,Rothschild House Group,37703.53121,6.242,78.9973,80.1541,4.9434,76.4386,80.7269,2.792,94.4584,4.7939,1.302,0.5779,1.8407,8.3619,5.2471,15.965,73.7,81.8656,0.5083,0.6197,10.8355,1.2556,88.4776,84.1463,79.2169,92.7711,8.655,1.6594 Hertfordshire and West Essex ICB,E82004,Hatfield Road Surgery,3878.415221,4.2408,51.25,57.4074,1.8164,61.1607,66.6667,1.74,89.3939,2.556,0.6501,0.1147,0.9981,10.6852,7.6035,8.6807,53.8462,68.8312,0.5736,0.8031,7.3028,0.2536,72.9579,90.9091,80,85,11.5852,0.6501 Hertfordshire and West Essex ICB,E82009,Lincoln House Surgery,16496.24777,5.1674,72.4227,64.9254,3.4276,67.3203,73.0594,2.2368,91.9643,5.1967,1.1316,0.75,2.6531,13.9096,6.3934,14.6118,66.5156,79.6053,0.5921,0.9737,13.2738,2.4942,86.9314,84.4,76.2963,81.4815,13.1653,1.3553 Hertfordshire and West Essex ICB,E82012,Fairbrook Medical Centre,15216.81932,6.0332,67.6712,71.7857,3.9401,74.7573,77.3279,2.7962,84.4828,4.5683,1.8924,0.7485,1.3796,19.6357,8.8307,14.3836,67.6596,80.8674,0.7344,1.151,14.317,1.6511,85.6577,84.2593,83.815,92.4855,14.8258,1.6382 Hertfordshire and West Essex ICB,E82013,Bridgewater Surgeries,31573.6812,5.8997,70.4042,67.7258,2.4781,71.7129,79.0787,2.263,88.6256,3.21,0.9293,0.7257,0.8772,15.5879,7.7647,12.0493,73.8298,87.811,0.5823,1.0096,13.8666,0.6186,89.8859,89.2919,83.1202,94.3734,14.5429,1.3481 Hertfordshire and West Essex ICB,E82014,"Lodge,Highfield & Redbourn",18243.89888,7.0219,77.1963,77.8302,4.1492,72.3502,78.803,2.5075,85.0299,4.7162,1.5015,0.8709,2.1722,10.7051,6.0212,13.8038,68.7412,81.1617,0.961,1.1862,12.9811,1.2635,87.3802,85.3503,80.1136,92.0455,9.9877,1.6166 Hertfordshire and West Essex ICB,E82015,Suthergrey House Medical Centre,9586.693027,5.384,66.5428,76.4103,3.1668,63.964,74.2138,2.8186,84.7059,3.2894,1.295,0.6203,1.2385,14.6974,7.2142,14.0385,59.776,72.0779,0.5224,0.9794,12.0256,0.8457,82.1754,85.7143,73.2673,88.1188,12.1816,1.6868 Hertfordshire and West Essex ICB,E82017,Garston Medical Centre,10880.88189,4.6315,67.0034,76.9585,2.7194,74.1525,79.0323,2.0456,79.6053,3.6998,1.1527,0.3572,0.643,14.6738,7.6684,12.7445,75,88.8112,0.3653,0.6251,11.131,0.1851,86.2411,88.2353,88.5714,92.8571,13.5384,1.1689 Hertfordshire and West Essex ICB,E82020,Consulting Rooms,7819.36788,5.8992,57.0707,61.3636,3.183,64.6288,69.6429,2.7153,74.1379,3.8201,2.5192,0.7543,1.3549,20.5625,8.9696,16.1412,60.9393,65.4822,0.9051,1.1917,15.5439,0.1681,82.4878,86.2595,87.5,91.6667,17.7536,1.6896 Hertfordshire and West Essex ICB,E82022,Fernville Surgery,18309.09638,5.4021,70.0665,71.5152,3.6197,66.3295,75.1724,3.1503,78.2828,5.1985,1.759,0.8484,1.7592,17.6797,7.3383,13.506,67.6329,85.5238,0.6052,1.0803,12.1347,1.0311,82.7269,83.6257,82.6316,90,16.167,1.5384 Hertfordshire and West Essex ICB,E82027,Parkfield Medical Centre,12993.82339,5.1731,71.5736,75.9857,5.0223,71.599,81.1966,2.8765,86.3636,7.5477,1.4998,1.0614,1.5713,11.6261,6.6383,16.2052,72.4394,82.504,0.4922,0.846,11.7097,2.5931,88.4899,86.4964,88.3721,96.124,11.8249,2.292 Hertfordshire and West Essex ICB,E82031,Maltings Surgery,14673.24861,6.3696,72.6862,73.7892,3.0644,66.573,73.8739,2.0298,91.791,2.7946,1.1245,0.5567,1.32,9.7007,4.7573,10.3121,51.796,76.0181,0.596,1.029,6.7406,1.876,72.4802,78.5388,66.6667,83.3333,10.823,1.1639 Hertfordshire and West Essex ICB,E82032,Bennetts End Surgery,15822.19879,6.2913,72.0497,65.1163,3.0741,76.6337,82.7206,2.6915,87.5,5.1615,1.8095,0.681,0.7909,16.8042,9.0486,13.5028,69.5094,86.2162,0.6226,0.882,18.5065,0.1241,86.2023,87.6106,82.1782,91.0891,15.5018,1.563 Hertfordshire and West Essex ICB,E82037,Village Surgery,13274.49746,5.633,81.1475,78.3708,5.3319,81.352,81.761,2.7721,92.3077,3.9234,0.9069,0.6689,0.405,5.9027,4.9368,13.5966,75.0516,86.9499,0.283,0.6432,6.4799,0.3412,88.1397,91.0314,85.7143,88.5714,6.8006,1.7944 Hertfordshire and West Essex ICB,E82043,Schopwick Surgery,15383.1961,6.3468,68.4549,77.5316,4.9085,76.378,79.4466,3.9563,88.6076,7.7413,1.1601,0.9522,2.0372,12.1845,8.059,15.8318,72.8794,85.5096,0.6504,1.0125,13.717,3.4144,87.9115,84.0102,80.3468,91.9075,10.1924,2.0117 Hertfordshire and West Essex ICB,E82045,Watford Health Centre,17540.89678,4.6019,56.3187,53.4884,2.0865,60.8696,74.1667,2.2557,82.381,2.4667,1.4611,0.6306,1.04,18.589,8.3636,11.6682,69.2267,84.8,0.6716,1.2868,13.9569,0.8219,78.5281,87.2283,82.8125,92.1875,18.4859,1.1022 Hertfordshire and West Essex ICB,E82046,Vine House Health Centre,11756.36078,6.8893,73.822,72.4907,4.6102,75.4658,76.8182,3.4508,94.0476,7.8409,2.118,0.6756,1.1659,12.0978,7.7122,18.0208,61.4388,71.4617,0.6573,0.7668,11.0184,1.8483,85.2585,83.5249,80.8696,92.1739,12.6197,2.0632 Hertfordshire and West Essex ICB,E82050,Grove Hill Medical Centre,5202.129255,6.3843,72,57.6923,2.8515,72.2826,70.8861,2.6745,84.6154,3.9191,1.9666,0.354,1.7162,22.1904,9.0381,16.9912,73.6093,96.7033,0.5506,0.826,19.2367,0.1196,89.0153,87.234,92.4242,96.9697,18.1703,1.5339 Hertfordshire and West Essex ICB,E82051,Everest House Surgery,15345.36905,5.8464,70.5069,70.8475,3.4733,74.1379,75.3304,2.3291,83.0688,4.4768,1.8077,0.6771,1.6064,18.3763,8.5373,14.6513,60.0114,80.5353,0.8463,0.8599,15.1685,1.0341,88.5139,85.0365,79.5455,89.2045,15.6926,1.476 Hertfordshire and West Essex ICB,E82055,Midway Surgery,12933.72677,6.8365,81.6514,78.8079,5.1186,75.6219,84.3511,3.6645,91.8919,4.3263,1.2999,0.8152,0.8392,7.932,6.3616,15.3852,67.3814,82.1942,0.3231,0.705,10.8998,1.2511,87.068,83.8462,78.8618,91.8699,7.3571,2.0783 Hertfordshire and West Essex ICB,E82059,Grange Street Surgery,9316.440546,6.6646,76.8953,78.8991,4.1484,74.8571,80.8612,2.3787,97.8947,3.3811,1.5604,0.8658,0.833,8.679,5.3259,13.3016,62.069,77.9661,0.5043,0.8088,7.9383,0.7483,86.9324,92.5926,71.4286,79.2208,8.3561,1.4367 Hertfordshire and West Essex ICB,E82060,Parkbury House Surgery,17596.11838,5.6973,77.5652,79.4811,3.4916,74.023,78.628,1.8498,96.6245,1.57,1.0311,0.6638,0.9178,8.3228,4.4207,11.1387,60.5144,75.4682,0.3054,0.7833,6.9957,1.0584,83.4107,84.6535,83.8028,89.4366,8.221,1.2081 Hertfordshire and West Essex ICB,E82064,Chorleywood Health Centre,6099.091641,6.3076,74.8879,74.8466,4.6213,79.9043,83.6601,3.1177,89.5833,5.2926,0.6898,0.8277,1.8515,4.4444,4.9915,13.9192,77.2152,84.8993,0.3035,0.6346,8.2969,0.8393,93.01,88.0734,86,92,5.7605,1.8761 Hertfordshire and West Essex ICB,E82066,Haverfield Surgery,3227.267431,5.6034,73.2143,70.4545,4.2749,79.3388,82.8947,2.8139,86.6667,3.1313,1.5152,1.1364,1.1785,9.7243,5.526,14.5563,73.8342,86.1842,0.5141,0.487,10.3704,0.79,90.1621,87.931,87.0968,93.5484,8.9552,1.434 Hertfordshire and West Essex ICB,E82068,Gade Surgery,10932.54788,5.5225,72.6098,71.6364,4.0228,70.8861,77.1784,2.7199,92.1739,3.6027,1.1971,0.513,0.6412,7.7232,5.9944,13.2981,69.6343,77.6,0.741,0.7248,9.139,1.175,87.1051,80.4348,70.4762,82.8571,9.5065,1.6531 Hertfordshire and West Essex ICB,E82069,The Elms Surgery,6640.290842,4.0066,57.0313,68,2.0068,61.8932,63.2653,1.5984,86.9159,1.1685,0.525,0.4784,1.4682,12.4323,6.2574,9.1238,73.4158,83.7037,0.455,0.6767,11.1461,0.4899,81.9936,79.4393,85.5422,95.1807,12.3687,0.9451 Hertfordshire and West Essex ICB,E82070,Woodhall Farm Medical Ctr,2924.442626,4.5115,58.9041,68.0851,1.5253,60.5839,64.8649,1.7389,75,1.7594,0.8847,0.3356,1.0638,16.8396,7.4909,9.6705,51.5901,73.5294,0.5491,0.9152,12.4795,0.1121,78.6885,73.1707,84.6154,82.0513,15.5033,0.9762 Hertfordshire and West Essex ICB,E82071,Elms Medical Practice,12349.24451,6.0983,79.5259,79.4872,4.4479,77.027,80.826,2.6971,94.9045,3.5097,0.9345,0.6033,1.0854,5.7044,4.3178,11.581,65.7451,82.1053,0.3016,0.5619,7.0829,0.5232,85.8007,83.4146,83.6735,88.7755,6.1892,1.5497 Hertfordshire and West Essex ICB,E82073,Manor View Practice,41717.67154,5.2715,67.7333,67.1533,3.0771,66.8452,72.6761,2.4449,85.5311,4.5582,1.3371,0.6214,1.3027,12.3753,6.6133,13.0111,62.7749,78.5047,0.735,0.8443,13.9317,1.3137,84.7462,86.1578,84.5982,91.9643,20.9543,1.2964 Hertfordshire and West Essex ICB,E82077,Davenport House Surgery,9721.401721,5.84,80.7163,81.5603,5.2705,73.9018,77.7778,2.4326,97.1429,1.5631,0.7797,0.577,0.7917,4.8068,4.3305,10.354,69.3478,82.8431,0.5458,0.4366,5.1969,0.7432,88.4733,84.4262,88.3117,93.5065,6.4994,1.7776 Hertfordshire and West Essex ICB,E82078,Highview Medical Centre,9757.925485,6.3383,71.6612,75.9091,4.2453,70.7865,77.5401,2.8603,82.6087,2.6243,2.1979,1.0538,1.8925,14.1381,7.0402,15.4958,69.3929,78.4916,0.5118,0.833,9.1219,0.9909,88.4854,83.3333,88.4615,92.3077,13.8726,1.7965 Hertfordshire and West Essex ICB,E82083,The Colne Practice,10312.69605,6.192,71.3018,64.898,3.6858,72.8659,74.8792,3.0957,94.4444,4.9467,1.78,0.7449,1.1154,8.8198,7.5705,15.7009,62.2168,81.3953,0.4934,0.8223,10.2934,0.465,85.7596,80.4762,81.8966,92.2414,11.5548,1.9155 Hertfordshire and West Essex ICB,E82084,Harvey Group Practice,12116.96609,5.7347,72.8947,76.7606,3.2925,72.6721,75.6458,1.7633,91.453,3.6595,0.9574,0.6337,1.5158,8.1607,5.0343,13.466,65.3538,78.9934,0.5993,1.0332,13.4721,0.6383,87.1402,87.3333,91.3462,92.3077,8.3284,1.1985 Hertfordshire and West Essex ICB,E82085,The Red House Group,17225.12646,5.7079,74.8447,72.5055,4.3295,75.3497,78.125,3.2406,86.3905,3.275,1.0837,0.5997,1.1005,9.6565,5.923,14.0144,66.4799,79.8859,0.5576,0.6892,8.5654,0.5065,86.5515,88.6364,79.2453,89.3082,9.5411,1.5466 Hertfordshire and West Essex ICB,E82091,Parkwood Surgery,18391.0201,6.228,73.5135,75.443,3.8145,68.323,73.2308,3.2876,85.2632,6.2974,1.9539,0.9056,1.55,13.8486,6.7828,16.9045,48.6081,70.4698,0.5214,1.0318,13.3037,0.692,85.182,79.1005,71.3483,86.5169,12.8183,2.0527 Hertfordshire and West Essex ICB,E82094,The Manor Street Surgery,10473.32667,6.2435,77.3585,78.4173,4.1825,78.803,77.4194,2.1561,95,2.9732,0.6566,0.7376,0.9013,6.1745,4.4617,12.3855,67.9889,82.4324,0.2351,0.5836,8.2358,0.7824,88.6279,80.8,81.9444,88.8889,8.0957,1.6536 Hertfordshire and West Essex ICB,E82096,Sheepcot Medical Centre,10736.05974,6.7471,70.997,72.6141,3.502,71.7742,75.8621,2.8845,86.7257,2.9046,1.4561,0.728,1.3989,12.7922,8.1956,14.1738,58.0431,75,0.5437,0.7373,11.2745,0.6204,86.3191,80.4124,78.7879,86.3636,11.596,1.5759 Hertfordshire and West Essex ICB,E82098,Annandale Medical Centre,7921.407779,5.9596,76.4925,72.8205,5.6059,72.7273,80.9524,2.9,92.3077,3.9094,1.2817,1.1911,0.4787,10.8486,6.961,15.1605,78.1553,84.438,0.4014,0.8804,10.6271,0.6338,89.7552,85.7143,86.25,91.25,9.7056,2.175 Hertfordshire and West Essex ICB,E82105,Abbotswood Medical Centre,4679.317055,5.7281,67.7966,69.8925,3.3895,67.8161,71.4286,2.2186,91.3793,4.7002,1.4174,0.3081,1.8639,13.9024,8.1611,13.6812,65.3501,84.4037,0.6984,1.0682,13.128,0.2532,84.6623,89.7959,70.1754,87.7193,15.3866,1.2531 Hertfordshire and West Essex ICB,E82106,New Road Surgery,11489.03419,6.3088,76.3473,75.6522,4.0891,77.6812,79.798,2.8539,89.7727,3.9885,1.1884,1.1509,1.8629,4.8741,6.4395,14.9528,58.7522,79.5045,0.3649,0.5989,8.395,0.6974,90.5249,77.5,74.2268,91.7526,8.1747,1.9463 Hertfordshire and West Essex ICB,E82107,Summerfield Health Centre,9404.317363,6.8676,69.4737,74.0196,3.2376,77.6243,80.3371,2.6733,92.5,4.6957,1.7624,0.505,1.1739,12.2202,8.4412,13.1881,64.1243,77.4074,0.6238,1.0099,12.5048,0.3137,84.8655,82.8431,85.9504,91.7355,15.1883,1.5248 Hertfordshire and West Essex ICB,E82113,"Colney, Coleridge House & Bricket Wood Medical Centres",5932.109239,4.3433,65.9091,68.3333,2.2395,67.1756,72.0339,1.6136,76.1905,1.3954,0.8763,0.3756,1.5948,10.4295,7.0191,9.5006,46.2898,55.5556,0.3895,0.7512,10.203,0.0867,72.8145,83.5616,78.6667,82.6667,16.0192,0.8485 Hertfordshire and West Essex ICB,E82117,The Grove Medical Centre,13111.7843,5.4136,64.6429,66.6667,3.101,74.7984,77.1144,2.1569,86.4662,2.0174,1.42,1.1207,1.3078,19.2401,7.5934,12.2582,66.7451,81.9876,0.5373,1.2588,11.9931,0.2563,81.5272,83.7696,77.4436,89.4737,15.3968,1.4584 Hertfordshire and West Essex ICB,E82124,Attenborough Surgery,31268.08904,5.6025,67.8998,69.3878,3.5663,65.5602,73.7794,2.6314,85.0283,4.7267,1.3281,0.8328,1.687,13.9506,7.706,12.9961,65.8747,84.535,0.5387,0.873,16.048,2.8247,84.6975,83.2558,78.1513,90.4762,13.2272,1.3498 Hertfordshire and West Essex ICB,E82129,Kings Langley Surgery,13922.13281,5.7628,75.4564,67.6966,4.1968,76.7717,78.1759,2.7059,89.8438,3.9977,1.0377,0.578,0.8175,7.8926,5.6636,13.3719,65.4047,87.8968,0.2693,0.7553,11.7397,0.8886,83.8442,83,85.0394,92.126,10.486,1.5894 Hertfordshire and West Essex ICB,E82643,Archway Surgery,2479.669587,6.1514,75.8242,80,2.3863,75.2941,76.9231,2.3863,92.3077,2.4977,1.044,0.2983,1.4801,7.7756,5.0114,13.6465,66.787,73.0337,0.1119,0.5966,7.3081,0.0873,80.5659,85.1852,75,85,9.9005,1.4169 Hertfordshire and West Essex ICB,E82652,Gossoms End Surgery,2872.213872,4.6582,70.9302,72.2222,4.1049,78.2609,70.8333,2.8086,84.3137,5.2863,1.358,0.4938,1.8022,8.4227,7.2194,15.7099,79.1667,88.8,0.3086,0.8025,10.9732,2.6619,85.7143,91.6667,93.75,96.875,11.6355,1.6667 Hertfordshire and West Essex ICB,E82655,South Oxhey Surgery,4171.310096,6.2701,64.6465,65,2.3863,75,75.7143,1.8146,85,4.2953,2.1377,0.4723,1.7499,20.2195,9.25,13.0003,63.2743,85.9155,0.3231,1.0937,14.1903,0.2425,90.6931,90.8046,86.5385,90.3846,16.5933,1.2926 Hertfordshire and West Essex ICB,E82657,Little Bushey Surgery,6375.225503,5.8165,66.6667,68.5714,5.6217,75.3769,79.8387,4.0178,93.3333,7.1089,1.5881,0.9052,1.0099,9.0368,8.6482,16.087,80.9192,86.1017,0.3653,0.7782,11.4059,1.5666,91.3771,88.7417,85.7143,94.8052,9.6143,1.6039 Hertfordshire and West Essex ICB,F81004,The Eden Surgeries,8508.543416,7.0895,77.1676,73.0769,3.6439,84.375,82.8704,3.4739,92.1569,4.4896,1.4342,0.7224,0.8187,10.6741,7.003,17.8795,67.2727,81.2672,0.2443,0.5737,10.5506,0.3259,90.8794,81.592,85.8696,96.7391,10.2958,2.0397 Hertfordshire and West Essex ICB,F81009,The Gold Street Surgery,10344.91802,6.0215,76.5013,72.0472,4.8299,74.9254,78.5047,3.101,93.2692,3.7012,1.4545,1.0885,1.0886,8.1189,6.1328,15.3403,68.5761,79.3407,0.4757,0.8965,7.8377,1.9284,89.9703,87.1166,82.4742,91.7526,10.0927,1.9484 Hertfordshire and West Essex ICB,F81015,Crocus Medical Practice,11083.57224,8.1697,73.9953,68.7919,4.0131,76.5743,78.3088,2.652,93.5484,3.3367,1.8462,1.0092,1.0359,8.1878,5.3207,13.6431,76.227,85.4546,0.4772,0.7823,10.9163,0.674,85.8491,81.5029,85.2632,91.5789,9.6308,1.8306 Hertfordshire and West Essex ICB,F81027,Lister Medical Centre,21285.80909,6.1951,64.4444,65.1685,2.6302,73.456,75.3247,2.379,82.2878,5.646,1.8009,0.6208,1.087,23.1581,9.1876,15.677,62.6439,81.7886,0.4881,0.8104,15.7391,0.5601,84.229,85.6557,75.3571,90.3571,19.524,1.2606 Hertfordshire and West Essex ICB,F81034,Newport Surgery,8468.156688,7.0965,80.6971,74.9004,5.6347,82,82.5243,3.3702,95.2381,3.7905,1.5841,0.8399,0.5001,8.2057,5.7525,16.5426,67.4957,83.0769,0.2339,0.606,8.5022,1.4515,90.8493,82.3944,92.3077,94.8718,9.5294,1.9881 Hertfordshire and West Essex ICB,F81043,The Limes Medical Centre,20085.23279,6.3008,72.9483,70.7424,4.089,73.1429,74.9354,2.8961,89.6739,3.2834,1.8054,1.5099,0.8358,14.5876,7.2682,15.4264,62.3835,75.2404,0.4514,0.7899,9.6975,0.1635,87.9859,82.7381,70.4225,88.7324,11.0292,2.1439 Hertfordshire and West Essex ICB,F81047,The Hamilton Practice,11888.20794,7.9753,70.977,66.6667,3.8603,73.8786,72.9167,3.1601,87.2181,5.0521,2.0379,0.8259,0.7068,23.2159,8.5138,15.8183,57.8799,73.7752,0.6015,0.7721,11.7381,1.1307,87.7348,88.8446,76.6917,87.218,18.3371,1.984 Hertfordshire and West Essex ICB,F81048,Loughton Health Centre,10513.54317,6.0054,70.9199,65.019,4.1017,69.6078,77.2926,3.2872,85.8696,2.7234,1.6681,0.7654,1.4453,14.2268,7.3363,17.0739,55.1005,70.4036,0.2159,0.9911,9.8184,0.2927,85.8773,81.9767,62.1622,89.1892,12.6591,1.8153 Hertfordshire and West Essex ICB,F81049,Ongar Health Centre,13162.20505,6.3267,72.8632,69.8462,4.6365,80.274,79.7753,3.6071,76.8595,6.3348,1.7446,1.0295,1.2394,17.0142,7.2156,18.6798,71.7149,80.3787,0.3536,0.6916,10.2892,1.325,90.1634,83.6879,96.063,92.9134,12.4234,2.4519 Hertfordshire and West Essex ICB,F81053,Stansted Surgery,11853.25347,6.4289,74.8588,70.8171,3.5386,72.54,77.5229,2.3377,93.6508,2.7251,1.1769,0.9607,1.3676,8.0723,5.5746,13.4417,55.4313,77.5176,0.1841,0.6805,7.9914,0.5438,84.3572,82.7161,70.7071,83.8384,12.7638,1.345 Hertfordshire and West Essex ICB,F81056,Old Harlow Health Centre,10986.68889,7.676,73.5211,71.6599,3.5929,75.7009,79.5812,2.6814,86.5591,4.9552,1.7788,0.4867,0.7623,15.1727,7.2892,15.0797,69.8893,86.2464,0.292,0.6814,11.3117,0.0721,86.4078,85.5,81.8966,94.8276,13.1846,1.7257 Hertfordshire and West Essex ICB,F81062,Chigwell Medical Centre,8899.081171,4.7625,66.129,58.5227,3.1557,70.0637,77.5641,2.9327,87.9518,2.1687,0.8698,1.3715,0.2977,14.5102,8.6798,13.0464,77.601,82.7196,0.3345,0.8475,7.6683,0.2152,89.1773,87.4172,73.9837,89.4309,13.0845,1.55 Hertfordshire and West Essex ICB,F81072,"High Street Surgery, Epping",7339.327498,5.8591,74.1935,71.8391,2.9579,78.6232,80.4054,2.5281,83.9623,7.2362,1.4158,0.632,0.8448,12.9551,6.5396,13.6519,70.5251,84.7107,0.1896,0.6068,8.6707,0.0323,89.8455,88.9655,73.3333,89.3333,11.0632,1.5548 Hertfordshire and West Essex ICB,F81078,Church Langley Medical Practice,9751.866935,5.8228,71.1744,70.5882,2.4897,80.0915,79.8995,1.9574,88.4146,5.1118,1.305,0.2318,1.5176,13.0954,6.9325,14.5433,74.1958,83.7121,0.3262,0.5151,13.9662,0.1372,91.7517,91.4141,72.807,93.8596,11.9045,1.1332 Hertfordshire and West Essex ICB,F81090,Angel Lane Surgery,10564.8894,6.3408,73.6842,73.6434,4.3024,78.1513,80.9756,2.3017,88.7097,2.172,1.4696,0.7436,1.418,11.1128,6.5972,14.5981,60.8409,64.6789,0.2213,0.602,11.3437,0.1057,81.7192,84.3537,76.7677,83.8384,10.9491,1.5138 Hertfordshire and West Essex ICB,F81106,The Ross Practice,11269.29228,7.1095,68.3007,68.9655,3.3802,74.7368,77.7143,2.9176,87.5969,5.5397,1.8129,0.812,0.6583,23.496,8.5509,13.908,75.4401,81.4286,0.7742,0.9914,16.3706,0.681,89.4138,79.9065,76.7442,86.0465,20.5491,1.5013 Hertfordshire and West Essex ICB,F81118,John Tasker House Surgery,12712.23042,6.9094,76.9723,72.9412,3.9843,71.0468,75.8621,3.0072,86.9565,2.8759,1.3556,0.757,1.3314,10.532,5.3104,14.7674,59.7231,68.6598,0.2821,0.6262,5.8495,0.2193,87.1552,82.7103,76.5766,81.982,10.7161,2.1332 Hertfordshire and West Essex ICB,F81120,Nuffield House Health Centre,13691.02227,5.6425,71.0938,69.8842,3.1044,79.9107,80.9045,2.8159,84.8921,2.9004,2.148,0.6376,0.9568,23.6223,8.5742,14.4592,65.9924,82.0433,0.9412,0.9412,15.5487,0.0455,83.0672,85.3659,80.2395,95.8084,19.8668,1.6243 Hertfordshire and West Essex ICB,F81131,Thaxted Surgery,8525.097644,8.1609,75.9036,69.9571,4.8392,77.6119,82.1053,3.3146,95,4.7528,1.5578,0.906,1.4148,10.6713,6.6017,17.3241,76.3819,82.8877,0.3535,0.7182,9.4093,0.8346,90.2491,85.3261,89.6552,97.7011,11.4138,1.9777 Hertfordshire and West Essex ICB,F81136,The Loughton Surgery,11810.97336,4.5809,71.6923,62.7907,2.4565,70.6503,73.7288,1.8963,87.7193,3.6184,0.9912,0.7829,0.7311,15.032,5.1465,9.6035,54.6667,58.885,0.273,0.6177,7.0887,0.1855,84.0604,88.1081,60.5769,79.8077,12.549,1.099 Hertfordshire and West Essex ICB,F81152,Forest Practice,11791.37528,6.1292,70.0288,64.7059,4.0657,71.5909,73.2719,2.431,82.0896,4.2445,2.0413,0.9656,0.6296,18.0252,6.5697,13.1374,60.0328,83.6364,0.5082,1.2367,10.9205,0.29,84.4111,86.2745,83.6538,91.3462,14.2573,1.6686 Hertfordshire and West Essex ICB,F81165,Palmerston Road Surgery,4009.002695,5.9145,74.6914,68.1818,3.8802,73.9394,77.4194,2.0456,82.6923,2.8361,0.9701,0.8014,0.3676,8.2052,4.2913,12.7583,73.5608,87.5,0.0422,0.6116,6.2237,0.2096,86.3177,93.617,80,86.6667,8.0551,1.2231 Hertfordshire and West Essex ICB,F81169,Kings Medical Centre,7198.261061,5.4944,75.7576,65.3409,3.5914,76.1194,79.8742,2.8528,86.25,4.5792,0.8533,1.1972,0.7895,7.7574,6.2267,13.971,74.1894,83.4356,0.2675,0.8406,10.2005,0.6851,90.2174,84.9624,79.4521,91.7808,9.184,1.6429 Hertfordshire and West Essex ICB,F81181,Addison House - Haque Practice,22019.70744,4.8066,63.9847,59.1512,2.1093,53.9095,67.2026,2.4344,81.672,1.6,1.4632,0.522,1.3859,24.1291,7.5193,12.6086,59.5303,77.551,0.3722,0.907,9.1493,0.1138,85.3185,80.1829,67.7165,86.2205,20.0439,1.2964 Hertfordshire and West Essex ICB,F81184,Abridge Surgery,4213.821353,6.2452,75.5952,74.3363,4.5739,81.7391,83.5294,3.3943,75,1.1481,1.6611,0.9629,1.413,18.4985,6.2391,17.7901,66.087,81.7073,0.313,0.8907,8.8902,0.1554,89.6296,87.931,64.4444,88.8889,10.431,1.9259 Hertfordshire and West Essex ICB,F81216,The River Surgery,4676.581928,6.0764,73.7705,65,3.3505,77.7778,81.9149,3.4398,78.9474,5.3551,1.3625,2.8367,1.1274,12.2587,7.1803,15.1664,72.2917,90.4523,0.4691,1.2732,12.1477,0.9594,91.8309,81.7308,80,90,10.5853,2.0103 Hertfordshire and West Essex ICB,F81619,Sydenham House Surgery,3791.79346,4.9818,62.3932,66.6667,1.9136,67.5862,72.549,1.9654,87.5,1.3288,1.8361,0.3362,0.3407,24.1067,8.6839,13.1627,64.3204,80.4124,0.2327,0.5431,9.54,0.0785,82.6667,81.25,76,82,19.0379,0.9827 Hertfordshire and West Essex ICB,F81725,Maynard Court Surgery,10050.29313,6.3148,65.251,62.3711,2.9023,70.5128,77.7778,3.169,65.0943,3.993,2.5715,1.6752,0.6185,18.5596,7.9428,16.1652,71.8776,86.9281,0.3628,0.9176,10.3119,0.2561,90.1937,87.3684,84.6154,91.3462,19.2349,1.7392 Hertfordshire and West Essex ICB,F81749,Market Square Surgery,15539.07506,6.3844,66.3529,66.1074,2.8411,76.8061,78.5425,2.8754,74.4444,4.6644,1.6744,1.2009,0.8424,21.2648,8.4032,15.5641,79.5,88.2479,0.2951,1.0637,14.0463,0.4413,90.47,87.3457,90.5882,94.7059,18.2023,1.6676 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence North East London ICB,F82001,Halbutt Street Surgery,5720.744453,4.0857,58.5586,64.6465,1.9296,68.1818,74.4898,1.2864,72.3077,3.4618,1.1848,0.1354,0.7154,34.6276,9.1237,13.1009,70.6569,77.5281,0.5247,0.8125,20.6324,0.2594,85.758,91,90.1235,91.358,15.6867,0.7955 North East London ICB,F82002,Haiderian Medical Centre,6537.166674,5.4517,77.2727,81.7073,6.4492,76.4706,76.6917,2.7233,89.6552,7.3611,1.1372,0.5686,2.3923,7.895,6.7528,17.5221,84.0807,89.6057,0.3292,0.404,10.6551,1.4242,90.5521,82.4561,96.9697,98.4848,7.8178,2.05 North East London ICB,F82003,Dr M Fateh's Practice,5932.724959,5.5843,64.8,71.5789,2.6114,61.2613,73.8636,2.014,82.7586,0.9146,1.3313,0.256,1.0084,28.8743,10.0183,11.9986,60.7509,86.3248,0.3755,0.8875,14.9156,0.0631,88.2741,90.3226,91.7647,94.1176,15.9066,0.9558 North East London ICB,F82005,Dr M Goyal's Practice,7310.065714,4.1556,65.2893,73.1959,2.1961,65.493,76.0417,1.4066,76.4706,3.2278,1.6937,0.4163,1.684,35.7138,8.9121,12.387,66.5764,88.7097,0.6746,0.7894,20.4892,0.4044,90.3872,86.2385,90.1099,90.1099,17.6911,1.0765 North East London ICB,F82006,Cranham Village Surgery,12921.43968,5.6738,81.0185,85,5.2069,80.3324,82.9268,2.9608,91.1765,7.7326,1.4372,1.4137,0.5136,6.9957,7.6219,17.4664,78.0787,83.3581,0.3141,0.3377,10.6686,0.4802,91.9086,89.3238,93.5714,97.8571,6.5094,2.4268 North East London ICB,F82007,The Green Wood Practice,12299.73754,5.2155,74.1206,81.7121,5.0108,75.0789,80.6604,2.9541,82.3529,5.1699,1.7482,0.7572,1.1817,14.2916,7.9281,15.6493,65.8179,77.5132,0.5516,0.8694,9.6694,0.3515,83.0328,86.5801,80.7339,84.4037,11.3576,2.1688 North East London ICB,F82008,Maylands Healthcare,15853.04664,5.4271,75.8945,83.0946,5.8101,77.0936,82.3741,3.4419,86.0656,5.6097,1.9343,0.8531,1.3399,13.2611,10.0917,20.2471,76.1815,83.9874,0.7208,0.5663,15.8642,3.1738,91.3183,87.1233,84.8039,88.2353,11.6876,2.4932 North East London ICB,F82009,North Street Medical Care,21392.26713,5.4477,69.0813,73.8035,3.4503,67.2302,73.7003,2.3179,86.5471,1.6116,1.383,0.9204,0.967,18.7883,8.5425,12.4036,61.2526,75.5738,0.4144,0.8385,10.9899,0.5174,85.2721,84.6429,77.907,88.3721,12.7121,1.2674 North East London ICB,F82010,Petersfield Surgery,9775.765094,5.595,60.9649,69.8795,3.2103,69.0625,73.5714,2.355,84.4037,4.9488,2.9994,0.2578,3.5991,28.8387,9.0645,15.6063,61.9089,74.7368,0.5272,1.2068,12.6125,0.3755,87.5885,81.0811,85.4369,92.233,17.4701,1.6403 North East London ICB,F82011,St Edwards Medical Centre,11056.03655,5.3691,66.9091,74.7475,3.9701,69.146,75,2.3033,81.982,1.3149,1.8992,0.3435,0.9669,20.1486,8.892,14.8803,56.3683,68.1672,0.5354,0.9698,17.2232,0.4892,86.1759,87.3333,79.3893,87.0229,15.7401,1.7072 North East London ICB,F82013,Western Road Medical Centre,17836.90732,4.4727,72.9459,79.4366,3.1732,68.2284,76.0135,2.2849,86.7841,3.1478,1.0838,0.7989,0.4637,14.0838,6.6421,12.6034,67.2121,77.0627,0.4413,0.676,7.6026,0.6572,85.798,79.6552,79.5455,88.0682,11.5733,1.7151 North East London ICB,F82014,Kucchai,8731.46408,5.6965,66.3317,73.6111,2.8023,72.1612,75,1.9603,81.4815,3.1415,2.2234,0.5526,1.6673,30.103,8.9673,12.1431,74.9667,83.7209,0.8157,1.0262,18.5328,0.2467,91.1165,94.0171,96,97,20.5515,1.4867 North East London ICB,F82015,Hedgemans Medical Centre,5568.334177,5.2589,62.7273,72.2222,2.8254,69.5,80.2326,1.5822,90.2439,1.4378,1.8271,0.1884,1.3386,35.4789,10.3231,14.1458,88.0882,98.5916,0.4144,1.1302,19.5588,0.4124,91.0193,88.6076,95.122,96.3415,20.4646,0.8099 North East London ICB,F82016,Central Park Surgery,7313.809546,5.4458,64.6707,73.8462,2.5719,68.5714,72.1739,2.1331,87.8788,4.4028,1.8457,0.2723,2.2705,30.7792,9.7005,13.767,68.7661,82.5758,0.5144,0.8472,17.0385,0.0978,80.4589,80.6452,86.1702,89.3617,17.8132,1.4675 North East London ICB,F82017,St Albans Surgery,9308.473465,5.9703,61.658,69.5364,2.7102,62.4615,70,1.9458,79.5918,3.8342,2.6871,0.278,1.2469,33.617,10.4982,16.354,71.4512,84.7682,0.5791,0.8108,18.6097,0.2035,88.8378,88.9571,92.3664,93.8931,19.352,0.9266 North East London ICB,F82018,Barking Medical Group Practice,10487.4023,5.7362,63.964,69.2737,1.8018,63.6364,76.6467,2.0357,71.7742,3.4826,0.693,0.2772,0.9487,26.2662,11.9361,11.0101,75.3731,81.9096,0.8576,0.8316,15.5502,0.2705,90.0376,88.2784,90.6863,92.6471,12.0724,1.2214 North East London ICB,F82019,The Upstairs Surgery,7057.63287,6.1489,68.0233,72.9323,3.6421,58.2979,72,2.473,85.3333,2.4914,1.3339,0.4796,1.4373,23.3463,12.1247,14.5084,57.4667,71.5596,0.6145,0.6145,20.6209,0.089,88.8393,89.8649,74.1935,85.4839,12.9401,1.3639 North East London ICB,F82021,The New Medical Centre,10021.35826,5.3472,71.875,78.5047,4.7687,73.8739,77.6596,2.2417,91.6667,2.5928,1.2431,0.4993,1.0041,11.33,8.0647,14.9786,65.6601,79.0997,0.3872,0.6623,9.0874,0.0793,84.3385,90.3615,78.4483,88.7931,11.2107,1.7832 North East London ICB,F82022,The Rosewood Medical Centre,15186.83166,5.7152,72.7273,76.8997,4.5878,77.9545,80.4428,2.697,89.6552,5.826,1.7369,0.4984,2.0536,15.1517,9.1663,18.2631,69.0816,82.7068,0.4617,0.7622,15.5057,0.3509,89.7097,84.7619,83.5897,90.2564,13.224,1.4877 North East London ICB,F82023,High Street Surgery,3766.61972,4.1182,66.1017,70.6667,4.9097,70.339,75.4098,2.7088,93.3333,4.2177,1.6084,0.4797,0.1701,18.3242,10.2625,17.7483,77.2074,93.662,0.8183,0.6772,15.1361,0.5587,89.7898,82.0225,93.2203,89.8305,16.1199,1.1287 North East London ICB,F82025,Dr Bk Jaiswal's Practice,6061.106999,4.3292,59.322,66.6667,1.8993,64.0496,68.9655,1.6185,93.4426,3.5372,1.4368,0.3633,0.2282,33.1795,8.6046,12.5186,68.7591,84.9315,0.4955,0.4459,16.0429,0.3932,87.8896,94.6237,92.2078,89.6104,15.5073,0.9744 North East London ICB,F82027,Dr P Prasad's Practice,2287.189429,4.2163,64.7059,70.4545,3.5647,44.8718,66.6667,2.3921,78.5714,6.8327,0.985,0.3283,1.4476,21.716,12.7574,15.8068,58.0524,67.1429,0.5629,0.7036,13.0284,0.5195,83.2237,73.0159,86.0465,90.6977,11.9816,1.5009 North East London ICB,F82028,Wood Lane Surgery,10506.90515,4.8116,75.7679,76.5258,3.6087,74.0741,79.096,2.2602,70.6349,5.7897,1.4055,0.4653,2.3696,17.2422,8.9552,15.793,71.1624,83.8006,0.3894,0.7123,15.5124,1.2856,88.3238,87.4459,85.1064,92.1986,14.6629,1.6334 North East London ICB,F82030,Lynwood Medical Centre,15918.74841,5.4881,67.2634,73.9583,3.1199,68.1818,73.7903,2.413,93.2099,6.8886,1.9644,0.8768,2.1516,19.6978,9.9215,13.8458,65.919,78.0093,0.537,0.7817,13.7064,0.203,89.1734,82.8645,77.4194,87.0968,15.1649,1.5498 North East London ICB,F82031,Dr Sanomi,4885.394746,5.8868,75.3968,76.087,3.9557,74.6575,78.2051,2.5194,78.2609,6.2519,1.9072,0.3767,0.9919,24.5977,9.8995,15.6817,73.1844,82.9457,0.6122,0.5887,19.8978,0,94.4261,94.1177,85.4839,87.0968,13.7687,1.295 North East London ICB,F82033,Dr Vm Patel,3678.359242,5.0435,79.7101,85.2273,5.4509,75.9615,89.8305,3.5674,96.2963,3.2011,1.4555,1.0845,1.1134,9.851,8.3705,17.5799,73.9407,86.8056,0.6279,0.4566,13.0132,0.7029,90.7969,88.4058,85.4167,93.75,7.4363,2.597 North East London ICB,F82034,Victoria Medical Centre,6401.613295,3.2537,56,63.9344,0.6423,59.6491,72.3077,0.7952,81.7204,1.4231,0.6729,0.0306,0.7115,31.6877,7.1944,7.7688,71.9917,84.6154,0.2294,0.6423,12.0553,0.0975,90.7785,93.5484,95.7746,95.7746,10.5657,0.5047 North East London ICB,F82038,Dr Sz Haider's Practice,5546.546034,5.0269,52.9915,70.2128,2.1961,60.5405,70.1149,1.676,74.1936,2.3526,1.7145,0.2119,0.793,31.231,11.051,10.6145,73.8494,82.1918,0.3275,0.6357,17.0764,0.0664,87.1535,88.4615,80.7229,92.7711,17.7443,0.6742 North East London ICB,F82039,Dr P & S Poologanathan,4168.006248,3.7357,66.6667,78.3133,2.178,64.4172,77.7778,2.0141,80,5.2728,1.2646,0.1874,1.5022,21.805,11.8624,13.2553,73.5849,80.8989,0.5621,0.7728,16.493,0.6839,91.5351,93.3333,79.4872,91.0256,13.448,1.1007 North East London ICB,F82040,John Smith Medical Centre,3772.834051,3.0054,56.5217,60.4651,1.3065,57.2254,70.2128,1.4372,82.9268,1.7442,1.0975,1.0975,0.7866,35.2063,7.1237,9.6943,70.1299,87.3016,0.3658,0.8623,15.7319,0.2821,85.4546,86.4865,85,92.5,19.3611,0.6533 North East London ICB,F82042,Aurora Medcare,19037.14247,4.5683,59.589,63.4615,1.8295,60.7595,70.632,1.2846,87.5,2.4419,0.9497,0.095,1.2695,34.535,8.7902,10.7818,66.0537,84.8276,0.5798,0.8098,18.4877,0.0733,89.7343,87.3563,89.4737,90.2834,14.9095,0.8148 North East London ICB,F82045,Chowdhury,3824.296668,4.8567,65.0485,72.0588,2.4936,66.6667,76.6667,2.607,85.2941,1.4858,1.3318,0.5951,0.2764,15.8605,6.4208,13.6583,76.2319,78.8321,0.4251,0.7651,5.9433,0.2101,82.425,73.6842,85.2941,85.2941,8.6043,1.8135 North East London ICB,F82051,Laburnum Health Centre,12238.43104,5.0911,59.2437,66.1376,2.2071,54.4811,61.5819,1.8452,78.6667,4.7676,1.5891,0.3178,1.2008,33.6997,10.1872,13.4722,56.9277,60.101,0.5385,1.2448,15.0517,0.4222,81.5035,85.0187,79.8817,80.4734,20.8141,1.3596 North East London ICB,F82053,Upminster Medical Centre,1924.236836,5.0842,73.5294,78.0822,4.0495,73.5294,70.1493,2.473,63.6364,4.5159,1.2365,0.5255,1.4543,8.3209,7.374,18.6399,75.9834,79.1667,0.2164,0.7728,12.744,1.9048,90.9335,78.9474,80,88.5714,10.4451,1.4529 North East London ICB,F82055,Hornchurch Healthcare,10605.3879,4.9591,78.852,79.8206,3.5956,76.6529,82.1622,1.9104,88.4393,3.9169,1.0845,0.634,0.8487,10.4859,6.7476,14.2321,73.8095,82.3204,0.317,0.5339,8.0296,1.5667,89.7585,83.0509,86.087,89.5652,11.1041,1.3598 North East London ICB,F82604,Marks Gate Health Centre,5934.499006,4.2677,59,57.6471,2.0966,64.4737,69.1358,1.6498,77.9221,3.3777,1.4436,0.4812,0.9369,35.8026,9.5146,10.7407,70.709,82.0225,0.4296,0.6702,18.8363,0.2227,88.2153,90.1099,87.1795,93.5897,13.9858,1.1858 North East London ICB,F82607,South Hornchurch Medical Practice,5769.017849,5.3555,77.305,75.7282,3.6766,73.5849,76.087,1.7947,91.8919,5.172,1.2894,0.4182,1.1545,18.3971,10.1795,15.9261,75.656,85.9649,0.7667,0.6273,16.3934,1.0058,90.0804,93.0769,83.3333,86.9048,14.1509,1.0629 North East London ICB,F82609,Dr Pm Patel,5445.449929,5.6876,76.6467,81.4159,5.2265,70.5128,77.6596,2.8418,80.7692,8.1825,2.1065,0.5962,1.762,10.7293,9.2447,20.1709,61.0738,71.1111,0.3378,0.7353,13.5409,2.6434,88.4875,84.6154,83.0986,81.6901,10.3114,1.9078 North East London ICB,F82610,Dr Gupta,2857.712448,4.8467,69.7674,81.3559,3.7261,70.5263,72.549,2.626,93.5484,4.5921,1.7388,0.3194,0.8471,17.7707,10.289,14.1945,79.1667,93.1818,0.3194,0.5678,20.1516,0.367,90.4762,87.5,90.9091,90.9091,14.3873,1.6324 North East London ICB,F82612,The White House Surgery,8651.381084,5.1531,56.1086,62.2642,2.098,48.5417,64.8276,2.0636,77.1084,2.1859,0.9888,0.3181,1.3733,26.6538,12.288,11.8057,66.6388,83.0509,0.5245,0.8856,16.4111,0.0735,88.0091,92.2764,88.3721,92.093,23.8205,1.0576 North East London ICB,F82619,Harlow Road Surgery,4177.363515,4.1093,63.8298,66.6667,2.4291,72.093,76.1905,2.4064,89.5522,6.0597,1.8388,1.3394,1.7015,20.6989,9.2811,15.5732,73.7958,82.0359,0.3178,0.6583,14.2687,1.5492,90.0393,87.8505,86.4407,91.5254,16.656,1.5891 North East London ICB,F82624,Upminster Bridge Surgery,4537.719119,6.9212,80.3797,83.3333,4.3913,79.8561,85.3659,2.4396,97.4359,3.3727,1.7193,0.395,1.2684,9.6742,9.7727,18.7965,78.1967,89.4472,0.4182,0.5576,16.4889,0.4306,92.8975,84.2593,92.0635,95.2381,7.4497,1.5799 North East London ICB,F82625,Abbey Medical Centre,7005.407124,5.389,53.2787,59.596,1.834,62.7832,73.2673,1.5006,82.4176,2.999,0.7952,0.1924,1.2538,30.1427,10.9396,10.9786,78.3784,94.9367,0.3335,1.103,21.1454,0.3552,90.3711,90.7285,96.8504,96.8504,14.3887,0.6028 North East London ICB,F82627,Rainham Health Centre,6922.229799,4.4264,64,68.5393,1.9379,63.4538,70.5128,1.3453,79.8077,4.1014,1.3133,0.2402,0.7277,22.6936,8.9154,7.9436,59.3985,45.3608,0.3203,0.7047,12.8776,0.2576,89.6444,86.2385,72.973,79.7297,16.2858,0.8648 North East London ICB,F82630,Chase Cross Medical Centre,8029.565452,5.8136,67.619,73.2026,3.0981,67.1587,68.7023,2.4096,78.6517,5.821,1.9992,0.2913,0.6603,20.375,9.3766,14.3387,74.7178,84.264,0.4369,0.6752,14.7524,0.078,89.8851,78.1818,88.2353,88.2353,17.6298,1.4961 North East London ICB,F82634,Heathway Medical Centre,5552.719103,3.0271,61.3208,64.2105,1.7869,62.0818,70.6522,1.3242,76.3441,2.3286,1.2444,0.1755,1.0895,33.2351,6.5309,11.6943,63.9706,83.0189,0.4148,0.5265,17.0263,0.2857,90.0817,94.2029,76.1905,90.4762,21.2698,0.9572 North East London ICB,F82638,Modern Medical Centre,6910.556478,4.4392,66.9118,73.8739,2.8464,63.4969,73.7864,1.5109,91.7526,4.3036,1.0522,0.5261,1.1258,21.3913,7.3955,10.6435,82.4508,89.0625,0.4991,0.7285,15.8162,0.4444,90.7019,89.3805,93.75,93.75,15.3182,1.0927 North East London ICB,F82642,Gables Surgery,7377.489691,5.2162,52.8302,61.9048,2.0487,62.0072,66.6667,1.8688,79.5455,3.9035,2.0349,0.2215,1.716,34.7365,9.4305,11.6556,64.698,75.2577,0.8444,0.9828,19.0081,0.2052,89.5484,87.5,76.5306,85.7143,18.4895,1.3012 North East London ICB,F82647,Dr R Chibber's Practice,4224.285594,3.9165,47.0588,57.3529,1.4217,50.5682,65.5738,1.4818,88.8889,3.2234,0.5607,0.1001,1.3187,27.9343,11.8459,9.8518,75.4386,75,0.3204,0.6808,14.7985,0.0799,78.3748,87.156,92.4051,93.6709,9.8944,0.7008 North East London ICB,F82648,Ingrebourne Medical Centre,3951.536517,4.5573,60.6061,73.5294,2.3666,72.6619,75.4098,1.6566,73.4694,2.2752,1.6566,0.1841,1.9908,28.9879,10.0805,11.7539,74.0158,83.3333,0.2893,0.9729,12.6911,0.1822,89.7168,86.7647,85.4545,90.9091,16.2593,0.9203 North East London ICB,F82649,Berwick Surgery,5032.901679,6.0847,70.625,72.5664,5.9645,74.8299,81.7204,2.4834,93.3333,7.7835,1.7738,0.4435,0.7272,16.824,9.686,18.8027,80.531,91.1765,1.0865,1.1087,15.7016,0.7357,90.6191,85.1852,94.3662,95.7746,12.4968,1.9069 North East London ICB,F82650,Dr Aa Ansari's Practice,8550.228583,4.6814,52.1472,61.157,1.2027,59.8485,76.0331,1.6637,81.5069,2.9136,0.912,0.1102,0.9394,30.4056,9.9627,9.1602,74.2586,88.7324,0.2806,0.6615,14.8809,0.1882,85.8429,92.4051,90.3448,95.1724,17.7352,0.7116 North East London ICB,F82660,Tulasi Medical Centre,21819.72061,5.4442,60.0962,68.1034,2.3099,67.0984,73.0303,2.0042,85.5856,4.5266,2.0576,0.6406,1.2961,33.578,12.4189,15.4511,64.8725,72.2222,0.7279,1.2472,21.3501,0.9677,89.5067,86.8853,87.5339,91.5989,16.2375,1.2229 North East London ICB,F82661,Green Lane Surgery,3506.667884,3.4401,58.3333,67.1875,2.0531,56.7073,64.2857,1.0387,91.3044,1.1254,0.628,0.1208,0.3537,29.085,8.1064,10.3865,84.4784,94.5946,0.4589,0.5314,14.2765,0.3083,82.3156,87.1795,87.7551,91.8367,12.3804,0.7488 North East London ICB,F82663,Dr Marks Practice,4074.700627,3.3983,67.9245,73.1343,2.8142,53.0488,67.7966,1.3828,69.0909,1.2191,1.2615,0.2669,2.0944,16.9089,5.4079,11.1111,42.1196,48.8889,0.4367,1.213,5.9706,0.2447,64.8829,70.8333,88.5714,88.5714,16.8664,1.3343 North East London ICB,F82670,Abbamoor Surgery,4161.567278,6.4583,57.5,63.0769,1.8357,72.2222,75.8065,1.2238,74.5763,2.9158,1.3415,0.2589,0.6958,31.1702,9.079,8.6609,69.2082,85.1852,0.306,1.012,13.4526,0.5176,90.06,79.1045,85.1852,92.5926,23.8197,0.9179 North East London ICB,F82671,Straight Road Surgery,4109.206858,4.0816,63.0137,69.8113,2.8717,70.4348,72.9167,2.4529,72.973,5.5311,2.4828,2.064,2.0842,29.4137,10.9929,14.7173,67.6845,86.8687,0.7777,1.3461,17.3547,0.5882,89.5884,79.4521,82.6923,82.6923,17.1307,1.8247 North East London ICB,F82674,Cranham Health Centre,5142.199676,5.6954,79.3103,81.25,4.8789,80.7107,83.3333,2.1213,98,8.95,1.4319,2.0682,2.012,8.4235,8.0282,17.0939,82.4128,83.1541,0.3359,0.7248,15.5874,4.9261,91.7157,80.1471,89.3939,90.9091,8.3448,2.2627 North East London ICB,F82675,Billet Lane Medical Practice,3740.926485,5.2136,73.2824,81.5217,4.8644,76.9912,80.8219,2.5999,91.1765,6.4107,1.3699,1.0623,0.9942,10.0763,8.5473,14.118,81.8428,81.6177,0.615,0.671,13.3699,1.5336,91.2599,80.2198,87.7551,87.7551,9.9598,1.8731 North East London ICB,F82677,Dr A Moghal's Practice,7652.908488,5.7098,64.2336,69.6721,2.5,70.7641,78.2609,1.6451,82.2034,3.1888,1.5415,0.1814,1.9679,33.1145,10.0678,11.943,64.9208,94.0594,0.4793,0.6477,25.0729,1.0776,91.6525,93.3333,92.7928,95.4955,16.4687,0.9715 North East London ICB,F82678,Dr Km Alkaisy Practice,5670.061479,5.4388,50,69.0476,3.1626,71.9298,75.9494,2.3669,77.0833,5.5391,2.5097,2.6321,1.8822,33.2406,12.8279,18.486,63.786,74.0113,0.7958,0.9794,17.5585,0.6862,90.3518,85.6,88.2979,88.2979,17.9214,2.3465 North East London ICB,F82679,Dr Dp Shah's Practice,5584.239225,3.6449,64.9123,75.5102,2.1675,59.447,76.8421,1.5779,80.9524,2.257,1.2311,0.2601,0.8982,29.0757,9.054,12.953,69.012,89.8734,0.5722,0.8497,18.1023,0.13,90.0415,93.75,89.7436,91.0256,15.0434,0.9364 North East London ICB,F82680,Highgrove Surgery,9861.905145,7.1099,61.6114,66.0606,2.4474,60.4762,72.4832,2.4272,76.0331,5.2436,2.528,0.2014,2.1054,31.0802,8.9013,17.5244,73.4266,89.8204,0.705,1.41,23.3713,1.3317,90.2493,97.0588,88.8889,94.0171,18.9734,1.4201 North East London ICB,F82686,Ashton Gardens Surgery,3713.623909,4.2054,66.6667,67.6056,1.7399,48.8889,68.75,1.4499,66.2338,2.819,0.3569,0.2454,1.0683,23.8129,8.5465,11.064,67.4779,77.2727,0.6246,0.5577,13.2048,0.6597,76.895,84.6154,84.2105,87.7193,15.8487,1.1153 North East London ICB,F84003,Lower Clapton Group Practice,17633.96096,6.1467,57.6271,58.7629,3.1497,72.8916,76.4045,2.6949,77.4194,3.105,1.4645,0.3678,1.4337,34.0352,7.837,13.5883,82.2572,90.0398,0.6085,2.0062,13.3213,0.1391,90.4345,95.6395,90.5028,93.2961,19.2283,1.6584 North East London ICB,F84004,Market Street Health Group,14043.59197,6.0671,63.0037,53.304,1.9712,65.3361,75.1174,2.1169,86.4286,5.0517,1.4726,0.8974,0.6594,30.4557,10.8367,14.3197,67.9315,79.3991,0.5292,1.5493,22.043,0.2874,91.6436,92.6154,89.5735,92.4171,15.3674,1.2732 North East London ICB,F84006,The Shrewsbury Centre,15200.50834,4.1473,58.5987,54.8673,1.1814,58.8326,77.2277,2.1718,90.3382,3.6721,0.388,0.2548,0.8309,27.284,13.4486,13.5692,70.4988,82.7731,0.4228,0.8108,19.273,0.1051,94.3476,93.6681,94.051,95.7507,10.0449,0.6776 North East London ICB,F84008,Barton House Group Practice,13253.17527,6.394,65.8065,55.5133,3.0755,67.2253,72.8745,2.1719,85.5769,2.6629,1.5585,0.6217,2.297,26.4261,6.4665,11.7301,77.9676,82.3771,0.514,1.9398,11.119,0.2283,88.7123,86.7925,90.8257,93.578,17.32,1.3347 North East London ICB,F84009,Stratford Village Surgery,11425.90568,3.8512,60.8696,49.3333,1.5277,60.6015,74.3243,1.1847,83.7607,2.8666,0.7015,0.1481,1.4976,28.8399,5.3236,8.0203,71.1497,81.3084,0.3741,0.9665,12.9916,0.2236,87.9608,88.5542,91.8182,93.6364,13.0478,0.5846 North East London ICB,F84010,St. Bartholomews Surgery,9673.07507,4.2511,63.8889,55.1282,1.3097,59.8425,75,1.8141,77.5701,4.5007,1.1933,0.1552,0.6234,28.9919,10.0688,11.0303,70.1245,78.6127,0.6112,0.9313,19.8479,0.2458,91.0942,93.1193,90.566,98.7421,14.3787,0.7664 North East London ICB,F84012,Albion Health Centre,9485.773001,4.7712,52.3438,43.299,1.3615,48.1752,74.1573,1.7679,90.7563,2.7742,0.9246,0.2642,1.6108,33.6023,11.0283,8.545,68.421,63.8656,0.508,1.7375,13.3342,0.3427,83.8254,95.0249,80.5882,82.3529,17.754,0.7925 North East London ICB,F84013,Stamford Hill Group Practice,14833.30588,2.7714,52.8889,55.3571,1.3794,45.5268,67.0968,1.3059,36.2173,1.7614,0.4636,0.1583,0.5705,29.8266,5.6704,5.9416,81.3199,89.172,0.3222,0.8367,12.9504,0.4418,87.9108,91.875,86.7925,95.283,8.7863,0.5936 North East London ICB,F84014,Upton Lane Medical Centre,8055.232862,5.1387,52.7273,50.4587,1.1494,67.509,82.4742,2.1382,83.3333,4.8667,0.4326,0.2719,0.682,29.0472,13.5283,12.8909,75.9865,85.2564,0.3337,1.1865,17.9169,0.1532,91.9806,94.8052,81.8713,88.8889,13.125,0.8404 North East London ICB,F84015,Kingsmead Healthcare,6489.893834,5.004,53.2374,49.5495,2.5896,62.7451,76.9231,2.477,71.7391,5.4325,1.4825,0.2815,1.4773,40.3858,11.3817,16.6072,87.7806,96.3855,0.5442,1.6138,24.994,0.3043,92.1549,92.3567,94.6237,95.6989,17.659,1.4637 North East London ICB,F84016,The Mission Practice,12493.55812,5.8224,57.767,53.6913,1.9841,55.1155,73.4266,1.6832,86.5385,3.7939,1.3579,0.4066,1.6673,30.7954,7.4216,8.8307,60.2725,80.303,0.4716,1.8865,10.5531,0.1962,84.4504,93.0556,84.3972,90.7801,17.09,0.9758 North East London ICB,F84017,Star Lane Medical Centre,20964.41095,4.5967,56.2334,56.2701,1.8602,58.3607,71.0884,1.4959,78.6667,3.7803,1.224,0.1554,1.0283,35.0977,7.2375,10.4765,64.1198,77.7273,0.4177,1.3308,15.6838,0.1488,83.5779,87.6106,89.4737,90.7895,19.2011,0.9277 North East London ICB,F84018,The Nightingale Practice,13527.56962,6.2213,61.215,51.3228,2.1246,71.8507,77.2021,1.857,71.4286,2.5425,1.0055,0.3649,1.5357,33.5252,6.5952,10.1525,75.5369,83.4254,0.6082,1.8002,14.4513,0.2474,89.2012,88.6256,93.2773,95.7983,19.2421,1.0866 North East London ICB,F84021,London Fields Medical Centre,11277.98164,5.0189,60.8466,50.2959,2.0818,59.2715,73.0539,1.7574,68.8312,2.3504,1.1265,0.2523,1.9872,32.6569,5.6378,9.3097,70.8791,82.1138,0.3605,1.6132,9.7863,0.0783,80.7172,92.638,91.6667,94.0476,19.7545,0.9553 North East London ICB,F84022,Stratford Health Centre,8022.241226,3.9544,57.971,48.6726,1.2766,54.4843,76.699,1.1885,94.3662,3.1197,0.8804,0.1871,0.9709,27.3431,5.9065,7.4062,62.5641,79.5455,0.3301,0.7263,10.8867,0.3995,91.6034,82.9787,88.5057,90.8046,18.9788,0.7153 North East London ICB,F84025,Gough Walk Practice,11781.80578,3.9064,51.7241,45.7627,1.3571,43.038,62.6087,1.7959,76.8657,3.1544,1.0645,0.5038,1.713,31.9534,9.5346,8.4593,76.8226,84.4262,0.642,1.3652,14.0171,0.1329,82.8467,89.7638,88.4615,91.7582,14.7837,0.8614 North East London ICB,F84030,Ruston Street Clinic,3799.123382,5.2617,58.3333,61.7021,1.8873,68.0203,77.2727,1.9648,90.7407,4.031,1.241,0.4395,2.0465,30.143,6.7464,8.5574,68.6347,81.6667,0.4395,1.2151,10.6357,0.4837,82.4663,91.7647,88.6364,93.1818,16.98,1.0858 North East London ICB,F84031,Jubilee Street Practice,16179.92586,5.8293,55.7851,54.9133,1.7648,55.4775,73.9645,2.0188,84,4.3848,1.5434,0.5861,1.2026,31.5129,9.6272,9.397,75.9336,84.8739,0.5014,1.4522,11.0766,0.2189,88.8115,92.7224,84.8485,91.342,18.0729,1.2829 North East London ICB,F84033,Somerford Grove Practice,12080.53475,5.1298,57.4899,51.9231,2.1278,56.8058,71.2195,2.2629,79.5181,2.5704,1.1061,0.304,1.4528,31.8896,7.0857,11.3485,81.3278,87.7698,0.6248,1.4439,15.6152,0.2846,86.06,91.1017,91.2698,92.8571,18.2637,1.1568 North East London ICB,F84034,St Stephen's Health Centre,14152.89037,6.602,62.5468,63.1579,2.3435,64.4182,78.4615,2.1136,83.7209,4.4722,1.9653,0.3708,1.2938,29.1319,8.3218,9.7375,65.8515,86.3095,0.801,1.5055,11.6914,0.2068,82.0318,91.7563,92.3529,95.2941,19.1898,1.105 North East London ICB,F84035,Richmond Road Medical Centre,18450.68587,4.0998,57.5,50.3817,0.9522,69.457,74.4,0.5598,90.0901,0.8862,0.3828,0.0574,0.9817,31.1607,2.2166,3.3829,80.0979,89.3617,0.0957,0.7512,4.4256,0,88.6239,90.3846,88.2353,89.7059,17.8924,0.3445 North East London ICB,F84036,The Cedar Practice,8554.606685,5.0233,61.4907,50.3937,1.6317,58.9912,68.75,1.7037,73.7705,1.9136,1.1878,0.192,1.6322,35.0296,5.7199,9.6941,75.3825,91.0112,0.228,2.0156,11.7631,0.1052,82.1122,91.8182,87.3239,90.1408,18.5041,0.9238 North East London ICB,F84038,Beechwood Medical Centre,4540.240975,4.1815,59.0909,49.1525,1.9577,60.6936,73.6842,1.7989,73.6842,3.7094,1.4021,0.3175,0.9583,32.886,9.0079,11.4286,83.0688,94.4444,0.582,2.0635,19.9073,0,92.5532,94.1177,91.0714,92.8571,22.1109,1.0053 North East London ICB,F84039,Goodman's Field Health Centre,28812.35873,3.3316,51.2367,42.0561,0.8187,56.1247,70.8696,1.0386,82.3899,1.7807,0.4368,0.1099,1.194,29.4617,6.4992,6.1301,78.1818,86.3309,0.3211,1.0617,7.1777,0.0743,85.8981,93.8636,78.3198,93.2249,13.3452,0.4455 North East London ICB,F84044,Harley Grove Medical Ctr.,7142.728049,4.8553,60,58.2278,1.4112,50.3614,74.6835,1.1922,81.4433,2.6751,0.8881,0.2433,1.2624,28.4896,7.8132,7.202,79.4574,86.8421,0.4745,1.0219,9.3478,0,79.4689,96.063,89,94,18.3448,0.7907 North East London ICB,F84047,Custom House Surgery,10766.23242,4.2314,64.3678,63.5838,1.5499,65.7957,78.3626,1.5794,74.359,4.2147,1.4224,0.2158,1.2272,37.8529,7.8624,12.115,72.093,78.6325,0.569,1.5499,19.1397,0.0415,91.0591,86.1446,81.6667,91.6667,18.6468,1.0202 North East London ICB,F84050,Boleyn Medical Centre,10879.23006,4.8281,51.9553,42.9577,0.8678,53.2833,72.7273,1.4783,76.7442,2.5015,0.5295,0.1471,1.241,28.4554,10.2544,8.6637,56.8332,69.2308,0.353,0.8678,14.403,0.0788,87.9668,91.635,76.5,90,13.7327,0.6031 North East London ICB,F84051,Strouts Place Medical Centre,8185.297808,3.6605,53.4884,47.1698,1.0026,52.1739,68.5185,1.2846,90.7692,1.1056,0.8146,0.1044,0.7998,33.5659,5.3843,5.8068,74.5455,77.0492,0.2507,1.2741,6.3162,0,82.7964,89.2157,86.2069,91.954,16.768,0.5118 North East London ICB,F84052,Essex Lodge,17115.50659,6.5853,60.3896,61.4786,1.6541,60.7387,73.0612,1.8154,86.9767,3.8217,1.5646,0.1433,0.9251,30.7711,9.0413,11.3878,76.5561,84.0426,0.5136,1.7915,16.3179,0.0259,89.2941,89.1599,87.7358,91.5094,15.7654,0.9316 North East London ICB,F84053,Greengate Medical Centre,7958.9322,4.305,53.012,59.8361,1.7846,52.1739,71.3115,2.4699,88.6793,4.0623,0.9828,0.194,2.0231,30.6222,10.8582,12.5178,52.7523,76.0417,0.3233,1.319,16.8754,0.0899,81.1449,83.8384,70.229,80.916,16.3868,1.1897 North East London ICB,F84054,The Limehouse Practice,11706.52942,6.2968,59.6939,48.6667,1.8451,50.7772,71.1409,1.6744,78.9855,3.2177,1.1054,0.1626,1.2446,28.3496,7.9644,8.6239,74.5816,85.7143,0.634,1.4224,12.051,0.2029,88.4814,89.4009,88.8889,92.3611,17.9142,0.699 North East London ICB,F84055,The Grove Road Surgery,3360.900683,3.4109,56.8966,58.3333,1.9752,57.2816,75.6757,1.2661,93.3333,1.8752,0.6584,0.3292,0.5567,26.6325,6.2573,7.5462,78.4232,78.9474,0.5824,0.6331,6.8854,0.1227,80.4564,96.3636,89.7436,89.7436,17.4358,0.709 North East London ICB,F84060,Athena Medical Centre,5510.474005,5.6467,53.913,51.1111,2.0012,60.0897,72.619,1.5257,74.359,2.8505,0.6935,0.4161,1.1682,32.2989,7.6959,11.9675,67.2878,83.4711,0.2972,1.3077,12.5234,0.2048,84.2593,93.8144,86.6667,85,19.2379,1.169 North East London ICB,F84062,The Chrisp Street Hth Ctr,15800.07308,5.9695,58.3673,60.9626,1.8676,55.303,77.6471,1.9556,73.8095,3.5627,1.4955,0.3925,1.5971,36.9641,9.4675,9.1487,74.5847,87.8378,0.6632,1.306,17.0586,0.0991,90.3266,91.6388,84.9515,89.8058,16.0665,1.0827 North East London ICB,F84063,The Dalston Practice,6806.810678,4.6094,53.2258,47.8261,2.2345,60.2985,77.5281,2.0142,80,3.7341,0.7711,0.2518,1.6758,34.9959,7.9047,10.5114,80.7757,85.3333,0.6294,1.5106,11.1111,0.1316,84.2828,92.9032,92.3077,94.8718,23.5447,0.7238 North East London ICB,F84069,Well Street Surgery,16444.65501,5.6087,61.4334,48.7805,2.1806,64.5864,75,1.6587,71.5517,3.1809,1.5729,0.286,0.9113,35.0768,6.3165,10.0236,76.8481,80.7018,0.6292,1.9733,12.6796,0.1105,85.8385,91.4414,89.9225,92.2481,20.96,0.9723 North East London ICB,F84070,Lathom Road Medical Centre,8050.283792,4.0462,61.6541,52.8302,1.5439,55.4974,75.4902,1.7957,71.2766,4.3551,0.4927,0.1861,0.9462,27.5886,10.667,11.4092,77.9915,87.7359,0.6022,0.9635,19.2431,0.113,90.458,94.9309,91.2752,93.9597,13.9196,0.7555 North East London ICB,F84072,De Beauvoir Surgery,11081.63767,3.6237,59.6774,49.5495,1.3447,61.1111,75.2066,0.7342,82.6772,1.3091,0.796,0.1546,1.8455,31.7344,3.2183,5.9042,68.2609,78.3784,0.3169,0.8501,6.6,0.0521,78.7279,89.1089,94.7368,94.7368,17.2036,0.626 North East London ICB,F84074,The Graham Practice,11127.21144,5.8446,56.015,50.5495,1.5513,55.1559,70.5128,3.216,77.9661,5.6327,1.0894,0.3312,1.2687,27.3084,12.5297,13.1776,71.1364,82.2917,0.4881,1.194,18.0138,0.1341,89.2308,89.3401,90.583,93.722,12.3927,1.2114 North East London ICB,F84077,Newham Vicarage Practice,9115.068115,3.5994,55.7471,57.2414,1.4438,55.1648,74.2424,1.3422,75.2,2.925,0.8948,0.244,0.7125,28.3208,7.2083,11.0625,70.5515,81.1024,0.4169,0.9863,14.875,0.0459,90.3955,84.9673,90,91.8182,16.8114,0.7524 North East London ICB,F84079,The Wapping Group Practice,9449.774557,4.6506,65.534,56.5517,2.1609,64.8425,75.8865,1.4378,92.7083,1.4982,0.6979,0.1514,0.681,15.7028,4.4876,7.7609,80.3398,85.8586,0.1934,0.6979,7.0532,0.4254,83.4108,93.5484,93.1034,97.7011,12.5084,0.6727 North East London ICB,F84080,Fountayne Road Health Centre,7006.348721,6.1493,51.0791,56.5657,2.2911,59.2593,73.8095,1.9638,41.4634,2.7675,1.2514,0.4236,1.4233,30.8823,9.0179,13.2846,81.3356,87.7359,0.4236,1.0782,18.3975,0.1884,86.8581,92.1569,89.3939,92.4242,15.2915,0.8086 North East London ICB,F84081,The Spitalfields Practice,12589.54729,4.4805,54.9133,44.6281,1.3856,38.7826,64.8649,2.2315,78.5714,3.1346,0.8095,0.2479,1.7754,29.2518,8.1065,7.6934,63.7266,66.2162,0.3792,1.4074,8.2909,0.5027,77.6104,92.5466,81.0811,88.1081,14.9146,0.8897 North East London ICB,F84083,Bethnal Green Health Ctr.,9513.090844,5.8904,61.9632,52,2.1774,49.652,67.7966,1.9942,79.6875,2.8723,1.7139,0.636,1.516,31.7816,8.2994,9.7014,60.5615,68.421,0.4312,1.5091,10.7181,0.0921,85.4121,92.3977,66.3934,91.8033,20.1587,1.024 North East London ICB,F84086,The Forest Practice,7384.787266,6.2403,61.3636,57.4627,2.1196,65.4167,81.8966,1.8857,87.6712,6.1561,1.111,0.3801,1.1588,27.6012,10.0965,14.0915,68.5366,83.3333,0.4385,1.301,18.595,0.715,94.6834,89.1566,93.3962,94.3396,17.0798,1.0671 North East London ICB,F84087,Harford Health Centre,10248.63209,4.8985,49.6552,41.5929,1.4462,52.9833,74.5614,1.9418,83.3333,3.4052,0.9203,0.3337,1.7486,33.3101,11.4858,9.375,69.0683,78.6885,0.9203,1.8406,15.685,0.0508,93.363,91.9643,77.4011,87.0056,14.4678,0.8596 North East London ICB,F84088,Plashet Road Medical Centre,6906.181249,4.3249,54.955,51.2821,1.1691,51.3208,63.1579,1.8232,88.421,2.6669,0.6402,0.1253,1.3945,28.473,10.1033,10.3827,72.4843,83.6364,0.4036,0.8768,18.8426,0,92.519,94.7761,94.8276,96.5517,14.7837,0.849 North East London ICB,F84092,Glen Road Medical Centre,13146.43681,4.422,57.5875,57.5342,1.507,58.8333,70.4762,1.6344,85.7955,4.1195,1.1957,0.1769,1.6259,31.5035,8.5874,12.6433,69.3628,80,0.5802,1.0754,16.9803,0.1204,85.0455,86.4662,92.973,95.6757,16.1913,1.0047 North East London ICB,F84093,Tollgate Medical Centre,17015.04538,4.367,59.4086,55.0633,1.9971,59.3037,73.3788,1.8071,77.2512,3.0029,1.004,0.1628,1.0635,29.7343,7.0739,10.0776,75.9486,85.4167,0.5861,1.1288,16.2102,0.2267,81.8304,89.4366,86.1538,92.3077,20.3557,0.9606 North East London ICB,F84096,The Lawson Practice,17489.65666,4.6614,60.7595,47.4708,1.8973,59.901,77.6371,1.879,63.1579,2.9131,1.7021,0.2623,1.2235,34.4628,6.6557,9.5046,80.0879,81.25,0.543,1.7021,13.0144,0.3926,90.4052,85.4369,90.566,88.0503,18.7871,1.153 North East London ICB,F84097,Claremont Clinic,12444.46915,6.3539,57.438,49.1525,1.5782,53.75,71.25,2.1763,82.4859,4.5311,0.9137,0.2326,1.209,28.7282,10.0161,11.8365,66.3681,81.2183,0.4153,1.4038,18.2769,0.0348,88.596,90.8772,83.908,94.2529,13.6149,0.922 North East London ICB,F84105,The Lea Surgery,11912.19461,4.953,59.8985,60.241,1.5296,67.0569,76.4706,1.2617,85.8824,3.2997,0.8555,0.216,1.4402,37.1991,7.407,9.5403,79.6907,85.8209,0.3111,1.0629,15.5417,0.0372,86.1369,92.4324,96.2406,97.7444,17.5487,0.821 North East London ICB,F84111,Abbey Road Medical Practice,10307.67322,4.4424,58.011,59.7484,1.8969,66.0465,76.129,1.8111,89.3617,4.0288,1.0295,0.2478,2.3221,30.1302,8.6454,11.5242,76.2251,86.9159,0.5815,1.1724,17.5897,0.3387,90.4482,90.8213,92.4138,95.1724,19.4359,1.039 North East London ICB,F84114,City Square Medical Group,10698.14281,4.3636,55.3459,53.0435,1.3437,54.9603,69.8113,1.8379,76.5517,4.3298,1.0143,0.5115,0.9598,28.4797,11.4052,10.8193,78.4787,85.2941,0.5115,1.6732,11.757,0.2762,88.7534,91.8919,81.4634,90.7317,14.1458,0.9103 North East London ICB,F84115,The Statham Grove Surgery,8227.283176,5.9536,71.6578,58.1699,2.9859,71.2446,76.8707,1.9138,91.7647,1.7982,1.3489,0.2536,1.908,25.5614,4.4251,7.5167,78.5838,86.3014,0.2882,1.1183,7.234,0.2288,88.6547,87.7359,90.7407,90.7407,18.1607,0.9915 North East London ICB,F84117,Queensbridge Group Practice,10804.76002,5.7463,64.7059,55.4286,2.3892,58.6011,76.3314,1.9431,77.6316,1.9946,1.2392,0.466,1.6074,33.147,5.7853,8.8034,69.4482,78.6207,0.2379,1.3483,7.5326,0.0751,81.5852,89.6774,73.3333,85.5556,16.751,1.1897 North East London ICB,F84118,Wellington Way Health Centre,10588.29031,5.2921,52.3077,57.1429,1.4054,58.0858,74.4898,1.3517,90.3846,2.6405,0.9131,0.2238,1.8558,30.2007,7.1796,6.8212,74.6291,78.4091,0.4386,1.6382,9.1623,0.1697,83.3812,91.8605,91.0112,89.8876,19.1537,0.5729 North East London ICB,F84119,The Heron Practice,12995.78567,5.5542,61.6327,49.2754,2.0195,59.4354,72.6316,1.6235,75,2.5015,1.1008,0.198,1.0859,35.0314,6.0708,9.646,78.9184,86.6142,0.5861,1.5126,12.4006,0.068,86.7935,89.3617,89.7436,93.1624,16.51,0.9345 North East London ICB,F84121,E12 Health,14594.78774,6.4254,53.75,44.2623,1.389,68.2292,72.043,1.9946,87.9828,4.3989,0.836,0.6912,1.111,29.7301,11.9629,11.0394,73.7898,87.013,0.7044,1.3429,20.6034,0.2209,90.706,91.5601,93.2331,96.2406,10.6681,1.1125 North East London ICB,F84122,Xx Place Health Centre,17296.648,6.4289,55.9387,48.2234,1.454,57.6517,74.1935,1.8075,79.4595,2.7969,1.2829,0.5303,1.4728,31.9228,8.9434,8.5586,66.4081,79.717,0.5816,1.625,10.005,0.0585,84.5999,92.7273,86.3636,91.7355,14.4614,0.9921 North East London ICB,F84123,Suttons Wharf Health Centre,14116.79738,3.1715,61.4815,58.0952,0.9336,43.2914,73.2673,0.6884,74.3802,1.0653,0.6154,0.0782,0.8534,28.37,3.5681,3.8594,69.5455,80,0.2921,0.8605,6.886,0.1113,83.6124,87.3239,88.2883,90.0901,13.605,0.3599 North East London ICB,F84124,The Project Surgery,4627.620615,4.978,52.9412,55.5556,1.3325,67.2414,80.3279,1.1562,94.3396,2.8536,0.8231,0.1176,1.6771,30.305,7.3873,9.3082,72.4444,84,0.4899,1.7245,15.7947,0,90.412,92.6471,86.4407,88.1356,15.7774,0.6859 North East London ICB,F84601,Elsdale Street Surgery,8252.011858,5.3064,53.5714,50.7937,2.0532,63.1436,70.8661,1.5925,91.8033,2.5658,1.1582,0.3159,1.9812,36.3428,5.9115,9.6078,76.161,89.2857,0.4475,1.6715,12.0169,0.314,80.6076,95.3271,87.3239,92.9577,20.3019,0.9081 North East London ICB,F84619,The Riverside Practice,5659.116074,5.1728,52.8736,50.7463,2.0345,65.5556,70.7692,1.8989,92,2.9698,0.5038,0.2519,0.5599,34.1479,6.464,9.7268,82.151,95.3846,0.6007,1.3176,13.6076,0.4558,86.7637,99.0196,90.9091,90.9091,19.6832,1.1044 North East London ICB,F84620,The Wick Health Centre,9587.171889,5.782,54.9708,46.9697,1.9683,71.0256,75.4098,2.1528,66.25,3.9204,1.1441,0.3568,4.0259,40.3882,7.7369,11.7358,81.7319,83.7838,0.5167,1.9314,18.5917,0.0475,87.5198,90.625,92.8571,94.898,20.1309,1.1072 North East London ICB,F84621,Sandringham Practice,5646.655278,4.8713,51,43.2432,2.1489,63.7168,76.0563,1.6837,95.4546,3.1987,0.9748,0.4431,0.8652,35.4759,7.4496,11.7413,83.7417,81.4815,0.6203,2.016,16.5443,0.083,88.1275,92.7711,87.2727,90.9091,20.5567,1.3292 North East London ICB,F84632,The Greenhouse Walk-In,2358.266144,5.3808,25.9259,25,1.8212,55.1724,62.5,1.9868,,1.8212,3.7252,0.0828,4.9669,35.9781,5.7119,10.4305,45.5285,100,0.4967,8.3609,12.6656,0.2558,87.4031,63.1579,69.2308,84.6154,59.043,0.8278 North East London ICB,F84635,Shoreditch Park Surgery,8461.913923,4.3463,62.963,50.9091,1.8576,54.9356,71.7949,1.264,70.9677,1.5075,0.9892,0.1759,1.1826,31.927,5.088,8.8261,69.7055,85.5556,0.4177,1.4289,10.7602,0.0531,86.672,90.5263,80,85.7143,21.7804,0.7584 North East London ICB,F84636,The Surgery (Barretts Grove),6532.125447,3.9895,55.1282,50.7937,1.4982,67.8414,76.5625,0.9548,83.8235,1.5924,0.47,0.1469,1.475,31.4539,4.1098,6.4777,79.6954,87.234,0.2938,1.1751,9.8056,0.0935,79.1298,91.1765,93.1818,95.4545,15.5548,0.6316 North East London ICB,F84640,The Neaman Practice,9067.040148,3.4509,69.403,55.5556,3.0083,63.1148,69.3431,1.9459,92.8571,2.6292,0.5259,0.2735,0.9874,15.7666,2.7454,9.635,76.9124,83.7564,0.0842,0.9046,4.6269,0.5864,81.9989,92.2078,85.3659,92.6829,8.0231,1.0729 North East London ICB,F84641,Birchdale Road Medical Centre,3322.126446,5.1072,52.5641,48.8372,1.9706,58.8235,73.6842,3.6177,90.9091,6.5011,1,0.4118,1.1322,28.6696,14.3682,16.5882,75.5467,88.5246,0.5294,1.3824,23.2652,0.116,91.7715,94.9045,94.9367,96.2025,11.707,1.6177 North East London ICB,F84642,Lucas Avenue Practice,11375.54178,3.4262,51.5723,43.8095,0.6399,52.6563,68.932,1.2317,87.1508,1.8317,0.234,0.0963,0.5662,27.9386,7.0384,6.6882,70.3297,77.4194,0.1789,0.7087,9.8493,0.1019,85.5278,92.3077,85.3659,94.5122,10.8117,0.406 North East London ICB,F84647,Roserton Street Surgery,9139.231505,3.0996,56.7568,51.1364,1.3431,49.931,70.2128,0.8322,85.4167,1.6152,0.6015,0.0906,1.8764,19.4597,4.1163,5.4301,70.8968,79.4118,0.2142,0.7581,7.5539,0.0622,79.0076,83.9081,82.5,88.75,13.7142,0.5686 North East London ICB,F84656,Docklands Medical Centre,7499.938546,3.7072,62.8788,61.3861,1.4429,55.102,72.043,1.0747,94.5652,2.0694,0.6667,0.0896,1.9993,16.0728,4.1251,6.946,74.6082,88.3333,0.3184,0.8658,8.5116,0.1208,81.5618,92.9204,89.3939,93.9394,13.6491,0.5573 North East London ICB,F84658,Sangam Practice,9829.206393,5.2452,57.8947,56.5789,1.2639,58.2609,80.5556,2.899,93.2692,4.5973,0.9128,0.2207,1.0885,28.1437,15.5203,15.5783,67.3132,82.6087,0.6119,1.0031,22.6661,0,91.6787,91.5408,85.4167,91.6667,10.6264,1.1837 North East London ICB,F84660,Dr Cm Patel's Surgery,2245.674882,1.9718,78.125,80,0.6564,80.1587,88.2353,1.0174,95.5556,1.4258,0.2626,0.0328,0.0385,27.3523,7.2031,8.7627,88.2813,100,0.0985,0.3282,16.7245,0.271,84.5725,100,100,100,12.1031,0.1969 North East London ICB,F84666,The Ruiz Medical Practice,5567.680309,3.8543,55.6818,58.0247,1.3703,56.7114,73.494,1.1392,81.5385,2.9345,0.7099,0.0495,1.2313,33.1581,6.9866,9.0639,69.5985,80.7692,0.3467,1.1392,12.3333,0.0891,82.5559,97.561,80.597,85.0746,14.1867,0.8585 North East London ICB,F84668,The Clapton Surgery,5100.821915,3.3029,48.3516,45.5882,1.1056,64.5833,75.8065,0.9571,29,2.22,0.363,0.165,0.3062,32.704,8.0813,9.1584,81.5476,94.1177,0.4951,1.0066,19.4948,0.666,93.9416,93.1818,95,95,9.0094,0.5446 North East London ICB,F84669,Newham Medical Centre,9701.625196,4.4021,57.3964,54.2636,1.398,66.1137,76.1905,1.7358,91.5385,3.9694,0.4504,0.1783,0.9739,28.7119,11.4909,10.6493,76.2827,81.3726,0.638,1.0696,17.6035,0.0911,96.3469,94.5313,89.8936,95.7447,12.5774,0.8163 North East London ICB,F84670,Westbury Road Medical Practice,5782.768577,5.0318,47.6744,37.0968,0.9459,57.6132,77.4194,2.0653,85.3659,3.3517,0.3311,0.1892,1.5124,29.9656,13.4581,11.2092,77.5076,88.6793,0.3626,0.8513,18.3119,0.0881,94.9176,94.012,93.9394,97.7273,14.1156,0.6149 North East London ICB,F84672,First 4 Health Group - E7 Health,7456.506812,5.1868,59.8485,53.271,1.847,70.2454,76.9231,1.5981,86.2069,4.224,0.7598,0.2489,1.1167,27.1916,8.6262,11.1344,77.058,90.8257,0.393,1.1658,18.2716,0.0596,93.9094,85.2941,90.2913,95.1456,14.9754,0.9563 North East London ICB,F84677,East End Medical Centre,7323.728654,7.6853,57.4194,48.7179,1.8381,63.8783,73.7864,2.5116,83.6957,6.4452,1.0944,0.5051,1.1983,28.0801,14.0767,15.1677,77.3885,87.0504,0.5192,1.7118,21.3508,0,96.4897,91.0394,92.7632,95.3947,11.6246,1.2628 North East London ICB,F84681,Balaam Street Practice,8421.962074,4.0624,55.3957,58.1197,1.091,56.0976,70.5357,1.091,77.6699,3.3948,0.8499,0.0888,2.4248,32.9603,8.4339,10.6685,67.624,76,0.7992,1.5223,20.4494,0,92.2161,89.781,86.2745,94.1176,16.8749,0.6216 North East London ICB,F84686,The Surgery (Cranwich Road),6305.046409,1.3385,46.8354,41.8182,0.8043,39.9123,62.7451,0.8156,24.8366,1.0548,0.0793,0.1246,0.3815,29.3017,4.5533,4.2705,84.4118,94.5946,0.623,0.589,16.0458,0.6438,85.4852,94.7368,87.1795,94.8718,4.539,0.3172 North East London ICB,F84692,The Hoxton Surgery,7883.26469,3.7848,62.3932,48.9796,1.5856,63.2568,77,1.1218,70.9091,0.8341,0.9708,0.0863,1.153,30.8872,4.0729,6.6336,79.0614,85.2459,0.356,0.9708,7.9971,0.2548,83.53,95.7143,75,87.5,16.6726,0.6364 North East London ICB,F84694,The Surgery (Brooke Road),4189.643673,5.3087,49.1228,51.1628,1.1354,68.1388,72.093,1.2639,80,1.3242,0.5784,0.15,0.8583,29.4172,4.978,7.3479,76.3333,74.4186,0.4285,1.2639,10.618,0.1319,80.3217,100,94.4444,97.2222,21.4012,0.2785 North East London ICB,F84696,Tredegar Practice,6020.112105,6.5401,62.766,62.5,1.7137,56.9554,71.6418,1.2894,94.3396,3.2406,1.6321,0.1632,2.459,27.7937,5.2731,7.4751,62.5616,82.6923,0.3754,1.0609,9.3976,0.1745,79.0806,89.3617,92.4528,96.2264,17.2503,0.914 North East London ICB,F84698,Aberfeldy Practice,10082.75191,3.5632,53.125,51.1364,0.7573,50.5797,66.6667,0.845,85.7143,1.6596,0.5739,0.1515,0.9996,32.7675,5.6932,4.6632,83.213,90.3226,0.2312,0.9805,8.521,0.1415,86.6369,93.75,96.3303,98.1651,14.9326,0.4464 North East London ICB,F84710,Island Health,12253.47772,3.8796,58.9041,61.2717,1.8779,45.6491,65.4321,1.4292,82.6923,2.9189,0.9114,0.1588,1.1578,17.9293,5.3192,7.5532,62.0332,81.5385,0.3245,0.9321,6.8325,0.2104,81.0405,90.9091,85.8333,91.6667,12.7671,0.7249 North East London ICB,F84716,The Allerton Road Surgery,5681.560966,4.1292,48.7179,39.6552,1.659,65.8915,68.4211,1.3511,54.5455,2.6592,0.838,0.5473,1.5862,28.6398,5.047,6.7727,83.4395,90.2439,0.6328,1.3511,10.5902,0.6931,90.3994,90.2778,82.5,92.5,13.0009,0.8038 North East London ICB,F84717,Royal Docks Medical Practice,11411.014,3.696,57.3034,58.7097,1.3159,55.7627,71.4286,1.3813,83.6066,3.0987,1.3322,0.1226,1.414,28.5021,6.1688,8.7454,62.6253,83.3333,0.4495,1.0707,14.1396,0.0896,82.0669,92.1788,89.9083,90.8257,16.0461,0.7683 North East London ICB,F84718,The Blithehale Medical Centre,12789.25904,4.7351,55.0898,47.9675,1.2438,65.46,76.0331,1.5443,80.2721,2.341,0.9154,0.1957,1.5523,30.8075,7.2389,6.4356,58.9651,75.5556,0.3424,1.712,8.7515,0.0917,86.0519,90.873,82.5581,83.1395,17.2138,0.7826 North East London ICB,F84719,Latimer Health Centre,5651.695964,3.3427,44.2623,46.1538,2.1101,62.3932,72.2222,1.995,73.6842,2.0635,1.7648,1.0167,0.3855,36.2663,7.9042,12.4305,80.79,85.7143,0.9591,1.4579,22.9025,0.1962,78.9446,92.0792,88.4058,89.8551,14.2545,1.5154 North East London ICB,F84720,Healy Medical Centre,6782.018214,4.8292,54.0146,48.1132,2.2808,53.6946,69.7917,2.8465,31.0811,5.6837,1.3968,0.389,1.1647,34.637,9.8946,13.1895,69.8113,80.9091,0.4067,1.8918,13.324,0.1223,84.9484,91.4474,91.1392,92.4051,18.4462,1.5382 North East London ICB,F84724,Woodgrange Medical Practice,15842.70112,5.0046,52.8958,50,1.1715,62.9681,75,1.7091,87.0536,2.8628,0.7187,0.1868,1.0644,30.4797,8.0237,8.3362,77.3097,90,0.5773,0.9677,13.4625,0.1167,92.4078,91.7808,91.9811,95.7547,12.6609,0.8149 North East London ICB,F84729,The Manor Park Practice,4387.569224,4.6823,50,43.1373,1.0449,67.2515,83.0189,2.3971,82.7586,8.8597,0.5122,0.2663,0.711,30.6387,15.9188,10.8994,73.9479,93.9394,0.4712,0.8195,20.0438,0,90.8375,94.9612,90.5983,92.3077,13.013,0.758 North East London ICB,F84730,The Vicarage Lane Surgery,9392.072298,3.2501,53.4884,41.7808,1.2057,42.2374,62.1622,1.3577,68.3168,1.5744,0.7194,0.0811,1.2245,28.6573,6.4783,9.3718,74.6864,89.5833,0.4357,1.3273,11.3333,0.0439,89.765,91.5888,85.2941,90.1961,16.8614,0.5876 North East London ICB,F84731,St. Katherine's Dock Practice,1747.194045,3.3866,73.7705,59.4595,4.0262,63.8889,75,1.1704,100,2.8821,1.264,0.4214,0.8749,11.2971,3.8915,11.5637,82.0277,90,0.1873,0.5618,8.595,0,89.6154,83.3333,78.5714,100,9.0285,0.8895 North East London ICB,F84733,Health E1,1607.302903,5.5019,29.4118,25,0.6757,42.1053,60,1.9305,,1.2548,3.2819,0,5.1158,33.8546,4.6332,7.6255,52.5641,0,0.8687,9.3629,14.6718,0,92.0091,66.6667,88.8889,88.8889,57.9566,0.8687 North East London ICB,F84735,The Azad Practice,7727.041469,4.7921,59.4406,48.6957,1.6613,67.2673,80.9917,2.0678,89.5349,3.0834,0.6041,0.2556,0.3409,28.5021,13.1918,10.6413,75.4831,88.6364,0.5925,0.6738,24.1401,0,91.0121,93.5644,96.2963,95.0617,13.7122,0.697 North East London ICB,F84739,E12 Medical Centre,3896.43865,6.4497,73.7705,68,0.9309,72.3958,91.2281,1.7874,97.0149,2.6215,0.1676,0.0372,0.8341,25.5047,14.8633,11.7483,96.0461,95.8333,0.2793,0.5586,18.899,0.3119,92.7885,98.2143,100,100,4.7705,0.4282 North East London ICB,F84740,Newham Transitional Practice,4347.765827,3.2488,48.6486,41.5094,1.5166,52.381,81.1321,1.9599,80,4.6032,0.8866,0.1167,2.0333,29.7074,10.4573,12.3892,70.7364,80,0.35,2.3798,23.2985,0,91.234,92.6316,83.5616,93.1507,31.1165,0.8166 North East London ICB,F84741,Dr T Krishnamurthy,2394.939692,4.1255,58,48.6486,2.0656,52.809,68.75,2.6326,100,8.6155,0.8506,0.1215,1.5438,28.1163,13.8726,15.4314,74.5981,90,0.324,1.0936,21.5139,0.1592,93.2203,93.3962,91.8367,95.9184,7.9962,0.9721 North East London ICB,F84747,The Barkantine Practice,19847.73145,2.9955,53.8983,42.0233,0.9679,64.5341,66.6667,0.9427,86.7435,1.7603,0.4174,0.09,0.8824,17.561,4.6351,5.192,75.8828,90.1786,0.295,0.8491,7.3881,0.0489,75.4401,91.3534,88.9447,93.4673,10.3928,0.3958 North East London ICB,F84749,Carpenters Practice,20993.41203,3.1286,50.8696,40.5263,0.7771,56.6693,71.1443,0.8572,79.4425,1.8853,0.4166,0.1122,1.1138,30.1485,5.1994,6.0928,77.453,90.4762,0.3365,0.9093,9.5902,0.1283,86.3668,90.9091,88.1517,91.4692,11.8245,0.4086 North East London ICB,F86001,The Firs,10833.88181,5.2509,62.4413,63.7931,1.9925,66.2083,70,1.5423,76.6667,4.3868,0.7855,0.2491,2.1015,26.4372,6.7182,10.2021,61.5385,80.2817,0.4407,1.1112,12.4828,0.0381,83.632,85.7924,78.7611,89.3805,18.5615,0.8334 North East London ICB,F86004,Handsworth Medical Practice,15613.63347,5.8993,75.737,75.8523,2.8992,73.1164,76.5823,2.2009,89.7436,5.509,0.8853,0.4988,0.9341,19.3212,5.8986,13.0619,72.2585,82.8431,0.3616,0.9228,9.5729,0.3346,81.0978,83.5341,81.4286,88.5714,13.2269,1.2594 North East London ICB,F86005,The Penrhyn Surgery,8307.648463,4.9557,66.2338,67.4242,2.2135,70.2273,72.5191,0.9332,83.0882,5.022,1.1068,0.1302,0.2837,24.3578,5.0559,8.4744,69.7467,79.0909,0.3798,0.6836,12.782,0.5216,82.7819,81.25,82.0896,89.5522,17.4166,0.651 North East London ICB,F86006,Dr Phillips and Patel,7028.054911,4.8506,56.2914,60.3175,2.2053,59.8639,72.5806,1.2621,73.0769,2.4663,0.8044,0.4161,0.9795,27.2201,8.1897,12.552,70.0777,79.6993,0.2497,1.068,10.3901,0.1444,79.6436,86.6071,85.0575,85.0575,16.4361,1.068 North East London ICB,F86007,The Forest Edge Practice,14343.60345,5.7555,63.5542,60.3113,3.0726,66.8459,72.807,2.1129,92.6829,4.1907,1.0027,0.5229,1.5479,22.9134,7.523,13.3004,71.9174,81.4935,0.573,0.9812,14.3841,0.5371,86.839,81.2227,85.6164,91.0959,16.3871,1.2821 North East London ICB,F86008,Gants Hill Medical Centre,10029.12881,3.7982,61.5385,63.2353,2.012,48.1633,70.6349,2.2175,88.0342,3.7879,0.3425,0.7106,0.4437,13.5606,9.4436,12.1747,77.2809,82.5658,0.5394,0.7192,15.6602,1.1157,85.6082,86.383,89.3491,93.4911,13.8677,0.9675 North East London ICB,F86009,The Palms Medical Centre,7427.805063,5.2227,61.991,64.1509,2.2505,48.2353,68.6131,2.1828,73.4375,1.5481,0.6372,0.4338,0.7576,15.887,11.2356,13.3812,54.023,54.902,0.5152,1.1931,9.7991,0.1505,82.3287,93.7008,76.378,83.4646,9.3906,0.9761 North East London ICB,F86010,Fullwell Cross Medical Centre,14773.97829,4.2226,69.4823,64.7687,2.7995,52.6403,67.5781,2.4376,74.4186,3.6152,0.7935,0.438,0.6052,16.9981,9.9595,11.4708,68.5495,76.9437,0.7173,0.8506,12.6291,0.9232,86.2384,90.3727,78.75,87.9167,13.9529,1.0792 North East London ICB,F86011,The Manor Practice,11370.68925,4.3858,48.6486,53.75,2.276,44.713,66.2162,2.3691,68.2927,5.0675,0.9311,0.8897,1.0441,30.2743,9.47,11.9077,63.6917,76.3636,0.6207,1.8001,13.56,0.1745,81.0423,81.405,85.9155,89.4366,15.7492,2.4209 North East London ICB,F86012,Rydal,9938.826215,5.5794,75.2941,82.1862,4.0253,75.7353,83.6449,2.6344,88.3117,2.0936,1.2013,0.6744,0.2284,13.0838,6.0951,14.4573,76.1523,88.2353,0.5163,0.8535,6.9534,0.5682,87.9006,87.9433,90.2174,89.1304,9.7293,1.3909 North East London ICB,F86013,The Broadway Surgery,5507.177148,5.0524,74.7191,79.2308,2.0818,71.5953,79.6748,1.9792,91.0256,4.7539,0.8357,0.4545,0.8984,10.5918,5.5321,10.9368,76.2063,88.2759,0.1466,0.6451,10.9489,0.1317,90.6662,86.3636,84.0909,90.9091,10.2364,1.2168 North East London ICB,F86018,The Ecclesbourne Practice,10405.21642,5.1313,63.9676,72.1053,2.6865,62.0419,75.9777,2.3812,69.1489,7.3954,0.9566,0.3358,1.1268,22.412,9.1257,14.0226,72.2609,80.2632,0.4986,1.7503,10.6204,0.0316,86.6113,82.3741,81.1594,92.029,17.007,1.4348 North East London ICB,F86020,Glebelands Practice,5638.20919,5.6882,75.1412,80.4878,3.8455,77.6471,81,2.2649,97.3333,6.4972,0.7496,0.6518,1.1501,10.2527,5.2779,14.2578,79.7888,88.2076,0.2118,0.7007,9.7861,1.1168,91.337,89.4737,95.6522,97.8261,8.6957,1.2221 North East London ICB,F86022,Ilford Medical Centre,13995.31217,4.7085,54.7703,54.359,1.8929,44.0141,64.7727,2.1785,90.604,4.0316,0.9299,0.5911,0.9611,24.1855,11.8051,11.869,75.2744,82.3529,0.7107,1.3284,11.1338,1.1023,81.8679,89.8701,89.7727,91.6667,13.3714,1.2487 North East London ICB,F86023,The Evergreen Surgery,10578.89954,5.823,73.6,77.957,3.6256,69.2488,75,1.953,90.4348,3.6788,0.8412,0.8605,1.0339,11.333,5.212,13.7774,74.2584,83.1579,0.3577,1.2279,7.057,0.4847,84.7258,84.1727,87.6543,88.8889,9.9952,1.5856 North East London ICB,F86025,Oak Tree Medical Centre,15537.21059,5.0216,55.0162,53.5088,1.1315,56.0056,70.9524,1.7608,75.0973,1.6863,0.6458,0.1601,0.71,20.0704,9.3467,8.9419,70.6667,79.4872,0.4857,0.7783,12.4547,0.1023,84.8079,89.2116,86.8,90.4,14.9627,0.8556 North East London ICB,F86026,The Forest Surgery,6943.858194,6.0994,65.0888,66.4179,2.1169,54.1833,69.7479,2.0589,70.8861,5.0342,0.8699,0.4495,1.166,22.4201,7.6979,9.3084,74.8106,85.9649,0.5655,1.0294,9.069,0.5324,89.9643,85.7143,75,81.25,14.5398,1.2324 North East London ICB,F86028,Chadwell Heath Surgery,9878.087606,4.8515,60.6796,65.1163,1.7072,62.6147,75.3086,1.671,83.0645,1.9941,0.4245,0.9755,1.1271,17.5963,10.9078,10.8933,59.4321,70,0.4516,0.7768,14.8997,1.1179,89.5284,87.7301,87.931,91.3793,11.3754,1.0117 North East London ICB,F86030,Queens Road Medical Centre,7110.685489,6.1704,55.0847,61.1111,1.2372,70.4268,84.2697,1.9176,94.4444,4.0032,0.433,0.1856,0.2859,27.2261,9.1236,9.9839,76.4286,83.1776,0.4701,0.6062,10.3574,0.2359,84.0104,93.4673,94.5946,98.1982,13.7535,0.6186 North East London ICB,F86032,Wanstead Place Surgery,8768.945414,5.5202,72.0588,77.4869,3.8955,65.7224,72.093,2.6994,85.4167,4.9673,1.1303,0.6474,1.8088,11.7472,6.1401,14.2544,65.966,80.3333,0.2524,0.9986,7.8336,1.4605,79.9043,83.125,83.75,93.75,10.2398,1.5472 North East London ICB,F86034,"Green Lane, Goodmayes Medical Practice",6130.947291,4.7034,58.5185,67.3077,1.739,53.2374,73.0337,2.4112,88.6364,2.2591,0.7307,0.3069,0.4441,23.6262,10.2033,11.8954,75.2125,81.4815,0.7307,0.8476,12.1838,0.3659,88.41,86.7188,81.9048,87.619,13.2274,0.9353 North East London ICB,F86036,The Allum Medical Centre,14558.12219,4.8387,65.4494,63.2959,2.5522,64.8214,71.2551,1.6506,84.0237,2.8758,0.6658,0.3606,0.6175,22.5347,7.2074,11.901,68.3155,75.4546,0.9085,1.498,12.65,0.024,88.024,90.4348,86.1842,92.1053,15.7895,0.9224 North East London ICB,F86038,Sma Medical Practice,11151.66443,5.5434,49.4898,50.3067,1.4607,60.5381,71.25,2.1826,76.259,4.6724,0.5435,0.2208,2.4657,28.9833,10.0928,10.1486,74.7672,88.4298,0.5011,1.2569,20.367,0.4469,90.2226,91.4474,88.7006,90.3955,13.3674,1.0871 North East London ICB,F86040,Dr A Arif,4973.007832,3.8092,50,52.8571,1.1615,49.0826,59.7222,1.5189,93.3333,1.7217,1.0365,0.1608,0.5739,32.9645,10.7696,9.6676,77.7551,92.1569,0.3038,0.8399,12.9603,0.2994,90.6475,91.3979,94.6237,90.3226,11.5403,0.9114 North East London ICB,F86042,Balfour Road Surgery,4760.099199,4.2166,58.4158,59.4937,1.2394,66.6667,78.8732,1.3699,93.3333,2.8733,0.2609,0.1957,0.4525,20.6082,12.4861,10.4207,81.7699,93.2432,0.2935,0.6686,20.5204,0.6955,89.8585,94.2308,94.5455,94.5455,9.8337,0.636 North East London ICB,F86044,Crawley Road Medical Centre,9593.918467,3.9651,54.7771,50.8065,1.3401,62.3506,70.5882,0.851,75.6944,2.6482,0.4011,0.225,0.7167,25.4044,5.7514,8.1874,68.2256,90,0.3717,1.1836,10.7021,0.0969,77.5905,86.2903,80.6818,81.8182,19.2415,0.538 North East London ICB,F86045,High Road Surgery,2139.322754,4.7668,58.5366,50,2.0945,68.5714,73.0769,2.1919,89.4737,4.674,0.8281,0.4384,0.3462,27.3023,7.8812,12.6644,82.9596,94.5946,0.4384,1.7048,17.5418,0.1832,82.9757,94,92.5926,100,19.6894,1.169 North East London ICB,F86057,The Willows Practice,7515.328945,5.2842,63.0682,61.7021,2.8474,61.194,68.7023,2.5216,71.134,3.3388,1.3316,0.2975,1.4231,21.7403,8.7918,12.9338,79.9451,84.8649,0.51,0.765,14.0668,0.5314,83.5202,81.6901,85.2632,93.6842,15.3027,1.1333 North East London ICB,F86058,St James Medical Practice Limited,14862.38739,4.2413,57.7519,61.4679,1.6146,65.5602,68.4932,1.358,88.4956,2.7373,0.7009,0.1627,0.5394,26.9187,6.5369,9.2058,62.2441,84.8684,0.582,1.0889,11.553,0.1439,85.7915,89.2116,86.5385,89.1026,16.5634,0.6947 North East London ICB,F86060,Newbury Group Practice,12943.36133,4.6184,64.4951,63.2035,1.8367,51.5625,68.7204,2.0254,81.25,3.8321,0.4529,0.4592,1.2691,15.7335,12.3596,10.8945,70.2332,83.2117,0.4403,0.8555,14.1423,0.126,89.1053,91.8575,89.2361,88.1944,10.2792,0.8932 North East London ICB,F86062,Grove Surgery_F86062,7121.116365,4.6682,58.9404,63.4783,1.8741,59.0226,68.5185,1.9886,78.6667,3.4101,0.8155,0.2575,1.0177,26.33,8.0183,11.2589,62.1662,76.9912,0.3863,1.2017,12.5692,0.051,84.0132,92.7536,84.2697,87.6404,16.9002,1.0014 North East London ICB,F86064,The Elmhurst Practice,4561.42579,5.8824,72.4638,76.1062,4.2553,69.4118,78.1818,2.0434,93.9394,3.9539,0.9269,0.4424,0.8379,11.33,6.4383,14.6408,72.9927,78.2313,0.3371,1.0322,9.3742,0.2243,86.7342,92.1053,93.0233,93.0233,10.6832,1.2218 North East London ICB,F86066,Southdene Surgery,7502.634528,4.7909,72.1154,75.9494,2.9213,67.4051,75,1.9645,88.2353,3.0157,0.9695,0.5358,1.3154,11.4824,5.8526,12.272,67.7165,82,0.2679,0.9312,10.5871,0.4105,85.0464,86.7347,78.4615,87.6923,12.3821,1.2502 North East London ICB,F86074,Leyton Healthcare 4th Floor,13305.02292,4.9993,61.0487,60.9865,1.8219,75.5594,80,1.8151,73.5849,3.5545,0.7494,0.2544,0.5603,26.0137,7.7493,10.416,75,84.4311,0.385,1.2307,10.4885,0.8365,88.2455,83.0143,91.1243,89.3491,17.1146,0.8182 North East London ICB,F86078,The Ridgeway Surgery,7941.466519,5.8411,72.7642,76,4.2708,70.8543,79.5918,2.5893,85.4167,6.1052,1.2054,0.5952,1.4724,20.3546,6.5144,16.4435,66.9868,80.1471,0.2976,0.8036,9.6068,0.4357,86.6452,79.8246,70.5882,85.2941,13.4155,1.503 North East London ICB,F86081,Kenwood Medical,5827.145046,4.8819,60.8696,64.9573,2.3963,55.9184,78.7037,2.3963,89.3939,3.5364,0.5392,0.3744,0.1538,14.2913,12.7407,14.857,72.5686,81.0526,0.4493,0.6889,11.8201,0.9078,87.8153,89.8734,86.2595,93.1298,9.7246,1.0484 North East London ICB,F86082,Ilford Lane Surgery,6047.867721,5.8338,56.4885,58.5106,1.5713,53.0364,70.3704,2.687,77.6119,3.9346,0.5343,0.2357,0.5448,24.5173,13.6652,13.6864,76.4016,89.4231,0.4086,0.88,24.6368,0.7246,87.9837,92.4242,92.126,94.4882,12.3543,1.1942 North East London ICB,F86083,The Eastern Avenue Medical Centre,5709.254403,5.7204,66.6667,65.6716,2.1814,47.9452,72.3214,3.484,82.7586,2.8441,0.5179,0.5493,0.4963,13.3775,14.1112,17.3729,66.702,71.9512,0.204,0.9573,12.9796,0.7954,86.8991,94.6237,91.2162,91.2162,8.8477,1.2555 North East London ICB,F86085,Hainault Surgery,3347.79673,3.6608,55.4217,55.7377,1.5652,55.7143,68.5185,2.2197,86.8421,2.8945,0.7968,0.1423,0.1765,18.9871,10.2716,11.0985,65.1786,79.6296,0.5122,1.1952,13.0251,0.377,88.0621,88.8889,87.7193,96.4912,14.2807,0.996 North East London ICB,F86086,Dr Dhital Practice,6053.340725,4.912,54.7826,58.6207,1.6008,52.6718,63.6364,1.5528,77.7778,2.8596,0.5283,0.1601,1.7114,28.3544,7.5037,8.42,72.8448,85.4839,0.4802,1.4887,12.5217,0.0668,78.0315,87.9121,89.5522,89.5522,15.0624,0.7684 North East London ICB,F86087,Goodmayes Medical Centre,6523.638622,3.9443,63.2258,65.0485,1.7653,59.3333,79.3478,1.927,94.6667,3.2565,0.5121,0.4447,1.109,19.4169,11.955,11.6831,68.0628,80.5825,0.4986,1.2532,12.9027,0.1644,88.58,90.6667,90,95.3846,9.7446,0.795 North East London ICB,F86088,The Lyndhurst Surgery,5174.042939,5.292,50,56.25,2.1657,54.0404,63.6364,2.0664,79.5455,5.8514,0.7352,0.3378,1.2658,27.7464,9.4642,13.8883,68.3938,72.5,1.1524,1.1524,16.7184,0.1943,72.4209,87.5912,73.3333,85.3333,15.9174,0.9338 North East London ICB,F86607,Addison Road Medical Practice,16009.81837,5.8907,63.6704,69.6203,2.3615,73.2378,79.2829,1.3113,86.1004,3.9279,0.5637,0.4272,2.4723,26.0851,6.0024,9.3094,58.3878,80.7292,0.5696,1.4537,10.6824,0.1547,89.5749,85.5422,90.3448,91.7241,14.6599,0.89 North East London ICB,F86612,The Fullwell Avenue Surgery,3025.261096,5.8843,68.6747,67.1642,3.4515,51.3274,64.4068,2.7985,92,5.006,0.7152,0.4664,0.9138,17.9521,12.1923,15.8271,62.5616,74.7573,0.3731,0.4042,14.1836,0.0911,86.0837,94.1861,93.3333,93.3333,12.2866,1.5547 North East London ICB,F86616,The Old Church Surgery,8598.25231,5.912,71.5054,75.3623,2.7347,78.1609,84.375,2.2653,91.9643,5.7018,1.0329,0.8568,1.885,21.8862,6.9714,11.8662,78.8991,89.5161,0.0587,0.8568,13.3198,0.5645,91.5912,90.3846,91.954,95.4023,14.4038,1.3028 North East London ICB,F86621,Dr Mohammed Green Man Medical Centre,6511.614193,4.7294,63.6364,58.6957,2.2286,60,68.6747,1.6857,81.9048,3.3118,0.5571,0.1429,0.7147,22.321,5.9769,8.6,79.3774,87.5,0.2429,1.0714,7.3209,0.1739,83.1729,93.9655,93.75,96.875,16.9703,0.7857 North East London ICB,F86624,The Heathcote Primary Care Centre,2894.326983,4.8263,70.297,77.9412,2.307,60.177,76.6667,2.3993,70,1.1974,0.4922,0.2768,0.1931,13.2674,10.694,12.3347,88.6364,95.6989,0.3076,0.8305,13.3256,0.0841,90.8511,94.5455,92.7273,94.5455,9.4693,1.0766 North East London ICB,F86625,Ll Medical Care Ltd,6185.72677,4.5593,52.6667,54.2373,2.5013,54.2056,71.5686,2.467,62.7907,4.7128,0.8909,0.3426,1.0941,27.9608,9.4351,11.8383,74.3986,80.7339,0.6339,1.3192,15.6954,0.4978,81.8873,87.8378,82.5581,86.0465,18.6144,1.2164 North East London ICB,F86626,Dr Shantir Practice,6361.517655,4.0973,57.8947,58.8889,1.2867,62.7219,68.0412,1.351,88.7931,2.2523,0.3731,0.1029,1.3514,25.242,6.1114,7.7972,70.019,84.8101,0.2573,0.772,10.5772,0.3025,83.2827,84.4444,88.7324,85.9155,19.2991,0.4503 North East London ICB,F86627,Churchill Medical Centre,15856.60667,6.5043,69.2708,68.5246,3.0752,65.4348,74.2308,2.5838,80.1653,6.5418,1.5115,0.5585,1.6681,24.5612,7.5815,14.8027,64.5885,79.6875,0.5733,1.5711,16.019,0.2038,87.5453,84.1155,83.1169,92.2078,18.0532,1.586 North East London ICB,F86637,Seven Kings Practice,4909.924007,6.1331,65.7718,68.0412,2.5138,62.8931,75.641,2.6569,91.1765,2.8329,0.5927,0.4088,0.8756,19.8818,12.3222,13.2843,64.4161,77.451,0.3066,1.0423,13.366,0.3652,90.979,91.2698,81.8182,91.9192,9.1723,1.9007 North East London ICB,F86638,The Microfaculty,4971.173467,5.2874,65.0407,71.5909,2.6389,67.6471,75.9036,2.5746,89.1892,6.4366,1.1586,0.8153,0.493,23.9629,9.2578,15.5332,77.7397,87.1429,0.6436,1.1371,14.1879,1.8111,87.6321,95.7983,94.0299,95.5224,12.2494,1.2229 North East London ICB,F86641,The Shrubberies Medical Centre,6641.575298,5.7435,72.2826,78.7671,2.8537,70.5094,75.3731,1.6272,90.1786,1.8136,0.7772,0.34,1.8136,12.1764,5.34,10.2975,76.257,90.1515,0.34,0.5586,10.3723,0.3155,85.2821,85.5422,88.5246,95.082,11.7515,1.0686 North East London ICB,F86644,Waltham Forest Comm & Fam Hth Serv Ltd,9335.838231,4.926,61.9792,63.3987,1.8563,64.0449,75.974,1.9772,82.4324,4.7128,0.9117,0.6481,0.725,26.8896,7.3871,12.3352,57.8719,70.297,0.3515,1.406,13.3575,0.1902,79.7019,84.8315,80.7692,83.6538,17.6838,1.0435 North East London ICB,F86650,Lime Tree Surgery,7839.750308,5.4587,56.2874,57.0313,1.9647,57.9104,68.8525,1.49,76.4045,3.7488,0.7911,0.2242,0.6498,26.0386,8.1854,8.6498,74.2806,84,0.4351,1.49,13.1456,0,78.7218,88.3721,85.7143,85.7143,17.3344,1.0285 North East London ICB,F86652,The Drive Surgery,6400.938491,6.4578,59.0604,56.1905,1.9233,57.9137,73.3333,2.9125,88.75,5.1041,0.5358,0.9067,1.7557,17.8654,13.1153,12.6666,77.8796,86.076,1.1677,1.0441,18.8778,2.1335,90.0935,89.7436,93.2331,91.7293,10.6013,1.1815 North East London ICB,F86657,York Road Surgery,7298.758085,3.2804,54.8611,55.9633,1.2825,46.8835,72.381,1.5913,86.4583,2.1393,0.2494,0.2494,0.3186,23.0442,10.4594,9.6663,70.5964,86.0215,0.3563,1.3063,9.5281,0.2145,77.7208,93.8776,90.3704,91.8519,11.5084,0.6769 North East London ICB,F86658,Queen Mary Practice,4697.694933,4.6444,66.9231,72.449,2.4821,58.9091,71.0843,1.6825,85.9155,3.1385,0.4331,0.3332,1.3204,12.2795,7.4732,10.578,58.8123,78.7611,0.4331,0.6164,7.5758,0.3859,82.7161,84.6939,83.8235,89.7059,11.5611,0.8163 North East London ICB,F86664,Larkshall Medical Centre,8686.840514,4.8188,65.2582,66.2651,2.2426,72.7273,81.2903,2.1486,84.8485,5.2821,1.1154,0.364,0.9004,22.1078,7.2073,10.3792,59.8592,72.4138,0.3992,1.0567,12.2599,0.4162,84.4921,83.7209,84.2105,84.2105,15.6357,1.1859 North East London ICB,F86666,Harrow Road GP Centre,15457.32782,5.3833,56.3433,51.5556,1.7296,72.0544,78.8288,1.2186,82.2086,4.035,0.7993,0.3931,1.5595,27.6239,7.5909,12.88,66.5003,82.2086,0.511,1.4151,16.2967,0.0571,91.0913,87.3016,88.4615,92.8571,23.1431,0.9303 North East London ICB,F86679,Higham Hill Medical Centre,5607.949616,5.3183,61.4458,65.3846,1.4126,74.6753,78.8235,0.9059,85.9813,3.27,0.3992,0.0307,0.4088,28.7259,5.5578,7.5388,71.9027,84.6154,0.3685,0.6295,12.5281,0.2353,80.42,90.4762,90.7407,90.7407,15.7926,0.5527 North East London ICB,F86689,The Bailey Practice,3771.901443,5.0038,77.2152,69.697,2.4342,78.0992,75.7576,1.195,97.2973,3.4149,0.9515,0.0443,1.5715,25.37,4.1617,6.9927,75.1799,86.8421,0.3541,0.6196,7.948,0.1028,91.3553,85.3659,88,96,9.961,0.7081 North East London ICB,F86691,Clayhall Clinic,10101.42613,7.0938,65.7244,71.5686,3.1178,69.9482,79.5699,2.6318,95.0413,5.2607,0.862,0.6603,0.6384,15.3589,11.3858,15.7176,64.3678,78.5714,0.4493,0.8803,15.0609,0.2499,90.576,86.7596,88.0208,94.2708,11.688,1.2471 North East London ICB,F86692,Mathukia's Surgery,9606.891443,5.2914,50.9524,54.6053,1.1825,60.6635,69.9301,2.1606,74.8252,3.0713,0.4001,0.2756,0.4958,24.9227,13.7817,10.8118,67.3675,85.2459,0.3379,0.818,17.5212,0.1618,87.0194,89.6907,93.3921,92.0705,10.7523,0.7735 North East London ICB,F86696,Francis Road Medical Centre,6403.895481,4.6604,56.4815,50.6024,1.5763,60.8,67.8571,1.3589,76.087,2.7466,0.3669,0.1359,0.6532,22.189,5.8649,8.2892,59.9222,68.9189,0.4213,0.8153,8.1058,0.0718,80.3209,95.4128,,,18.0697,0.7338 North East London ICB,F86698,Cranbrook Surgery,4890.608298,6.3818,65.7895,63.7363,1.6052,58.498,77.381,2.1678,75.3247,3.359,0.5461,0.4137,1.1553,15.5323,14.9254,11.8319,72.8643,88.1356,0.3972,0.6785,19.1057,0.3314,91.0638,91.3907,95.0355,97.8723,9.9434,0.6785 North East London ICB,F86700,Kings Head Medical Practice,4211.871554,7.0727,66.6667,67.1429,5.6629,70.6349,76.6667,2.6197,76.6667,10.9927,2.2757,0.688,4.497,22.6304,7.5385,19.3437,78.8909,84.3023,0.4499,1.1643,10.1599,4.1058,87.9641,83.0357,88.6364,90.9091,12.5889,2.3287 North East London ICB,F86701,Kiyani Medical Practice,4022.803122,4.265,63.6364,61.0169,2.0802,61.8182,69.8113,1.3534,79.0698,5.2978,0.5514,0.2506,0.8464,27.9897,8.7953,12.6817,77.0455,84.8485,0.5263,1.7043,16.9279,0.0988,88.1679,94.9495,92.4528,94.3396,18.8068,1.1028 North East London ICB,F86702,St Clement's Surgery,4636.946655,5.9036,64.5161,63.2911,2.3334,48.5876,63.7681,2.6908,78.9474,2.0932,0.4625,1.6397,0.2791,18.6688,13.1369,13.8743,75.1503,85.0932,0.5676,1.0931,16.2713,1.0907,90.3628,88.3929,93.4066,94.5055,9.1975,1.2823 North East London ICB,F86705,Langthorne Sharma Family Practice,3014.95138,4.0772,58.3333,61.8182,2.2164,72.6115,78,1.6915,83.3333,3.6409,0.6416,0.1458,1.3786,27.4916,7.335,10.5279,68.0124,79.4872,0.2625,0.6708,13.8565,0.2364,88.2088,92.4528,90.2439,95.122,19.4152,0.6124 North East London ICB,F86707,Fence Piece Road Medical Centre,5916.454693,4.5087,60.2649,61.157,2.4328,69.6154,76.7857,2.1625,92.6471,7.2475,1.0212,0.2403,0.8009,17.3136,9.0665,9.8213,77.551,86.9565,0.7208,0.7359,10.7052,0.675,89.2663,88.0383,91.3043,92.3913,11.6857,0.6908 North East London ICB,F86708,Claremont Medical Centre,3000.256689,6.6815,59.4595,65,2.5668,72.8155,81.6667,2.0394,90,5.4965,0.6681,0.3516,1.2855,27.6237,9.2335,13.7834,76.338,86.4865,0.5626,1.301,15.4699,0.1107,90.3404,87.5,87.8049,90.2439,13.4335,1.1603 North East London ICB,F86712,Hampton Medical Centre,3251.200303,3.4737,53.8462,59.5745,2.3403,59.7765,75,1.2941,93.75,3.9138,0.4956,0.2753,0.6634,20.4986,7.6444,10.7654,78.6585,95.2381,0.3855,0.5507,10.8789,0.3448,88.8247,94.3662,88.6364,95.4545,14.3857,0.7434 North East London ICB,F86731,Aldersbrook Medical Centre,4313.265397,5.8078,68.6567,73.0337,3.1217,74.3316,73.6842,1.8475,87.0968,3.0003,1.0618,0.361,1.3763,17.232,6.6522,11.7222,81.9565,83.6957,0.3185,0.722,14.2031,0.2677,90.2014,87.5,91.3043,95.6522,12.1261,1.444 North East London ICB,Y00090,The Doctors House,7512.091462,6.0463,56.6474,60.8696,1.901,69.9681,80.1587,2.4869,92.6829,4.4084,0.6098,0.5141,0.2784,20.8871,11.177,12.4821,72.5951,80,0.7532,1.088,15.5143,0.1821,90.2955,88.7805,90.5797,94.2029,13.8187,1.3271 North East London ICB,Y00155,Grove Surgery_Y00155,8555.006911,4.3919,52.6316,57.2581,1.3561,53.5469,63.5659,1.2354,89.0625,2.9482,0.2322,0.4459,0.3654,19.6237,8.3364,8.8705,70.2864,83.7607,0.4273,0.771,10.155,0.8084,85.3118,94.702,88.0597,92.5373,11.659,0.771 North East London ICB,Y00312,"The Robins Surgery, Harold Hill Health C",4826.612912,5.1665,65,72.7273,2.0838,68.7151,76.7442,1.8499,95.122,1.3569,1.1269,0.1701,1.1504,30.6711,8.1299,9.8448,54.4335,54.386,0.4678,0.8931,10.7965,0.1523,80.5641,80.3279,78.8462,65.3846,15.7412,1.5522 North East London ICB,Y00403,Trowbridge Practice,7696.497518,4.2248,54.0541,46.4789,1.0608,63.41,65.3333,0.7113,82.6087,1.1417,0.5866,0.1123,2.4151,37.0263,3.1001,5.4786,74.5192,78.2609,0.3245,1.1731,6.9526,0.0966,79.398,96.4912,92.3077,92.3077,19.7625,0.3619 North East London ICB,Y00918,Granville Medical Centre,6493.018661,6.7009,64.5349,71.5517,2.6304,66.1417,81.8182,3.2731,94.9367,3.0065,0.3587,0.5082,0.4021,19.5902,13.7944,13.0474,69.1257,82.2695,0.4185,1.2255,21.0073,0.1009,92.4582,96.6292,92.1429,95,10.7972,1.1209 North East London ICB,Y01280,Shifa Medical Practice,1998.217138,2.4576,42.1053,60.7143,0.63,57.4713,70,1.092,84.2105,2.1158,0.294,0.042,0.0557,34.0629,6.7465,7.4339,85.8896,85.7143,0.252,0.546,25.6682,0,80.5405,80.7692,91.6667,91.6667,14.7932,0.504 North East London ICB,Y01291,Chingford Medical Practice,10538.23769,5.5747,72.51,69.9507,3.332,75.4011,80.4348,2.3403,84.2105,8.5791,1.0115,0.8132,2.475,23.0002,7.6234,14.647,70.0087,83.0303,0.5157,1.0611,15.209,2.3383,92.2253,84.7926,87.3874,94.5946,16.2943,1.5966 North East London ICB,Y01719,Prime Practice Partnership,8410.633236,4.2286,53.913,61.5385,1.2025,64.4501,68.4685,1.1023,77.4436,1.2384,0.913,0.4231,0.3292,33.619,7.7716,9.0413,73.1544,92.5373,0.4788,0.7572,19.6269,0.2341,88.2058,86,87.7551,89.7959,18.2953,0.9242 North East London ICB,Y01795,The Oval Practice,6264.208078,4.6017,62.0968,67.3267,1.5955,59.9315,71.5789,1.1787,96.1539,4.4361,1.1787,0.1294,1.7108,30.8916,9.9668,12.7066,70.802,88.3721,0.5462,0.6612,19.3555,0.1235,94.7291,78.1513,91.8367,92.8571,25.0071,0.7618 North East London ICB,Y01839,Sinnott Medical Centre,7318.406772,6.896,56.7376,60,2.0763,66.9697,68.8073,1.6384,84.8485,3.7857,1.1017,0.2542,1.902,29.4822,8.0628,10.6215,65.2632,77.0115,0.3672,1.3277,17.4287,0.1156,85.9634,87.4016,83.1169,85.7143,18.6055,0.9181 North East London ICB,Y02575,Omnes Healthcare Ltd,17912.0673,2.8153,55.6017,62.0536,0.7908,69.5329,73.9837,0.7954,80.5112,2.0561,0.4571,0.3428,0.9328,35.2278,7.7255,8.6808,67.9415,81.8182,0.2469,0.6034,16.4225,0.2426,90.2044,83.945,82.2785,88.1857,15.6819,0.5988 North East London ICB,Y02928,The Practice Albert Road,18488.84688,3.1307,60.1852,52.2167,0.9329,64.1593,73.5,0.7051,79.3696,2.0484,0.4949,0.0745,1.6997,24.1209,4.0525,6.0001,72.0894,83.5616,0.2058,0.7577,9.599,0.0343,79.986,88.8889,84.4961,93.0233,12.9991,0.3942 North East London ICB,Y02973,Kings Park Surgery,7599.975292,4.5734,66.9065,67.5439,1.7274,73.2394,73.6842,1.032,82.7381,2.0012,0.7515,0.101,2.0478,19.3686,5.5947,7.2126,70.2163,88.0952,0.3926,0.7067,11.3249,0.1172,88.1998,89.5349,76.8116,89.8551,15.4248,0.6955 North East London ICB,Y02987,At Medics - The Loxford Practice,26420.28619,2.8185,53.1847,50.3731,0.7905,51.1706,65.4676,1.0903,77.5891,1.4473,0.3029,0.3301,0.9516,24.9273,7.2735,7.3203,65.0939,85.8974,0.3392,0.8208,9.3814,0.088,82.1268,89.1358,86.9919,93.4959,13.3865,0.5785 North East London ICB,Y03023,St andrews Health Centre,28136.77921,5.4642,52.2659,52.5292,1.1422,59.8394,73.7643,1.4625,80.9745,2.4121,0.6799,0.1481,1.9196,31.165,7.6982,7.4515,57.7994,78.3251,0.4835,1.2933,8.8029,0.0669,89.1692,92.4188,87.3684,92.1053,30.3143,0.6769 North East London ICB,Y03049,Spring Hill Practice,16019.19605,3.7657,49.569,42.9319,1.5798,62.4642,71.2121,1.6164,43.578,2.2998,0.7197,0.2562,2.266,30.3298,6.1701,7.9475,77.2806,88.6525,0.4697,1.3968,14.4754,0.193,86.0861,88.0597,87.6812,89.8551,17.8155,0.7624 North East London ICB,Y04273,Liberty Bridge Road Practice,14124.70553,3.7374,61.7647,59.7122,0.7746,67.6271,78.4722,0.4969,87.2881,1.1662,0.1705,0.0341,1.7871,27.1655,2.7489,4.4135,74.9714,100,0.2923,0.5261,8.0534,0.1008,87.8442,89.3617,92.9412,92.9412,13.053,0.341 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence North Central London ICB - 93C ,E83003,Oakleigh Road Health Centre,9471.006642,5.5502,73.9865,76.8182,4.3306,70.4301,79.0576,2.6329,86.0465,3.8452,1.3724,0.6709,1.4355,14.0295,6.5272,13.0934,55,75,0.4473,0.9657,11.5099,1.963,89.01,82.7586,71.5789,87.3684,12.742,1.535 North Central London ICB - 93C ,E83005,Lichfield Grove Surgery,5416.522325,4.0443,67.7419,58.5859,2.8218,58.2237,71.2766,2.0693,86.8421,2.9863,1.0817,0.7368,1.0805,12.5059,5.3551,9.3745,67.7273,82.9114,0.3762,1.0346,10.7269,0.9737,79.691,82.8283,87.7551,93.8776,12.8794,1.2698 North Central London ICB - 93C ,E83006,Greenfield Medical Centre,7130.154405,4.2944,64.5714,59.1549,3.7161,56.2278,69.2308,2.4029,82.5397,3.1088,1.411,0.5448,0.8981,23.0204,6.6633,10.9388,77.7219,88.7097,0.5868,1.1456,10.7427,0.5745,88.4766,82.8283,76.0563,84.507,16.4305,1.2294 North Central London ICB - 93C ,E83007,Squires Lane Medical Practice,5085.389813,4.2776,63.5762,58.1818,3.339,57.3604,71.875,2.9638,86.6667,1.8381,1.5007,0.5065,1.4891,19.1281,9.453,14.5001,65.7807,74.8538,0.2626,1.2943,11.7497,0.4327,75.317,84.4037,77.2152,84.8101,15.7975,1.4069 North Central London ICB - 93C ,E83008,Heathfielde Medical Centre,6643.064115,4.2848,66.3793,61.0169,3.723,61.9048,66.2577,2.8327,88.8889,3.651,0.4625,0.3237,0.5302,9.2217,5.1164,10.7643,73.5426,79.3893,0.1387,0.5203,6.2263,0.6903,74.1875,83.1933,81.6667,91.6667,6.7332,1.3296 North Central London ICB - 93C ,E83009,Phgh Doctors,10658.99508,4.0038,66.8712,59.9174,4.9058,56.5315,69.2641,3.0862,95.9184,5.4547,0.521,0.8337,1.627,11.1414,5.0542,11.3267,56.7889,76.4852,0.3206,1.1784,5.9032,2.4351,83.3937,79.5122,85.8696,90.2174,8.4292,1.5711 North Central London ICB - 93C ,E83010,The Speedwell Practice,11549.93496,4.1497,70.0906,72.2467,4.264,65.6118,78.4211,2.8037,88.8889,3.7134,0.8511,1.0431,1.7782,14.2384,6.8362,12.8505,66.2306,78.5489,0.6759,1.8525,9.8431,2.1707,86.0386,84.434,83.4711,93.3884,13.4793,1.6021 North Central London ICB - 93C ,E83011,The Everglade Medical Practice,10089.98732,4.5186,57.513,53.6585,1.8602,55.5556,65.8683,1.5287,74.7899,2.2583,1.234,0.1658,1.9955,30.4022,7.5868,9.5589,70.4883,82.2917,0.663,1.3261,11.8174,0.5967,84.4785,85.6287,81.8182,90.0826,14.5018,0.9025 North Central London ICB - 93C ,E83012,The Old Court House Surgery,10070.88969,4.9539,71.0884,67.1498,4.5337,68.4636,75.7895,2.5096,81.3084,4.7187,1.4149,0.8262,1.2276,14.7874,6.7895,14.1692,57.1291,72.7545,0.506,1.136,7.8772,1.8858,82.3449,83.4254,73.7374,83.8384,11.1692,1.7763 North Central London ICB - 93C ,E83013,Cornwall House Surgery,5362.630336,3.5906,68.3544,76.9912,3.5562,65.1982,73.2673,2.3141,91.4894,3.2337,0.7317,0.6466,1.4736,12.0052,5.4623,10.7878,56.25,70.5882,0.5275,1.1741,6.7131,0.4822,76.8755,86.4583,82.0513,84.6154,12.2342,1.3783 North Central London ICB - 93C ,E83016,Millway Medical Practice,19451.60695,5.2832,68.6833,65.625,3.9909,68.4758,73.6573,2.8084,88,4.113,1.075,0.5375,2.0041,12.885,6.4805,12.6221,67.3923,81.7292,0.4658,0.8869,10.7778,2.91,88.5698,85.7143,80,92.093,9.766,1.4557 North Central London ICB - 93C ,E83017,Longrove Surgery,17946.42354,5.773,70.3971,66.3342,4.4151,68.0921,77.1978,2.6001,84.106,4.2303,1.4395,0.7453,1.5272,13.4291,6.9963,15.1001,66.9227,79.3345,0.7681,1.0696,12.146,1.6851,82.6847,82.4926,76.2162,90.2703,11.1936,1.5931 North Central London ICB - 93C ,E83018,Watling Medical Centre,17004.10046,4.3984,64.1851,60.929,3.1044,55.6338,66.3522,2.3269,86.5854,3.6657,0.862,0.3775,0.7006,20.7279,8.1015,13.7585,67.0588,78.4394,0.3944,0.7268,9.7445,0.5635,80.8043,88.4615,84.6847,94.1441,12.3543,1.3691 North Central London ICB - 93C ,E83020,St. Georges Medical Centre,10448.87593,4.1762,69.6154,63.5897,3.1384,62.069,73.3333,2.4893,82.5397,2.9134,0.7394,0.4929,1.5044,15.8659,6.3244,11.7236,67.2,81.1258,0.3861,1.257,10.838,1.955,87.7796,86.7347,89.1892,94.5946,14.0839,1.2323 North Central London ICB - 93C ,E83021,Torrington Park Group Practice,12906.07947,4.4487,67.3295,69.8842,3.4965,59.9585,69.6581,2.5414,89.2473,4.2138,0.9156,0.5841,1.8313,14.2049,6.25,12.6598,55.7545,70.7657,0.4262,1.4049,7.5318,0.6804,76.9412,81.8605,77.1186,83.0508,12.9819,1.3575 North Central London ICB - 93C ,E83024,St andrews Medical Practice.,11055.99787,4.9623,70.8333,76.4228,4.214,65.1659,72.3214,3.0781,86.1789,3.2047,1.448,1.0578,1.199,10.3364,6.3192,12.616,58.397,76.9042,0.4075,1.0665,6.5511,1.7187,81.1742,80.9524,70.0935,85.9813,8.9968,1.7428 North Central London ICB - 93C ,E83025,Pennine Drive Practice,7533.422311,4.9876,62.7907,58.7097,3.1732,59.3407,68.6567,2.0867,72.6027,4.0258,0.8026,0.4692,0.8806,24.422,8.0179,12.1867,54.5689,60.4762,0.7161,0.9631,9.3883,0.6476,79.8011,86.25,71.4286,82.6531,12.6963,1.4446 North Central London ICB - 93C ,E83026,Supreme Medical Centre,4113.412672,3.4131,63.1944,62.3656,4.1015,56.1644,67.5,3.3902,78.7879,3.9977,0.6638,0.4267,1.7832,11.9864,8.2293,11.5932,64.9596,76.2712,0.2608,1.0669,6.6437,1.9394,71.9697,84.7826,78.5714,85.7143,8.4737,0.9957 North Central London ICB - 93C ,E83027,The Practice at 188,9802.728091,2.9435,50.5682,47.3282,2.7257,49.8592,60.6061,2.1806,83.3333,2.1422,0.6651,1.679,2.0777,15.6288,6.797,11.0881,61.8915,82.8859,0.5233,1.7663,7.0848,0.9901,72.1341,76.3158,77.451,86.2745,13.2757,1.3628 North Central London ICB - 93C ,E83028,Parkview Surgery,6027.756852,5.0379,56.129,60.5263,2.2341,63.6,72.381,1.9981,76.1194,3.2522,1.3845,0.1259,2.7277,26.638,9.6608,11.4852,63.8847,77.4648,0.3776,0.8968,12.5053,1.2849,86.0291,86.0656,81.5217,90.2174,15.3545,0.9912 North Central London ICB - 93C ,E83030,Penshurst Gardens Surgery,6583.104279,5.1368,65.3266,62.7737,4.4814,51.6807,65.1786,3.1325,83.6066,5.0867,0.7644,1.289,1.1115,13.238,8.5534,14.5234,70.0428,80.9702,0.7044,1.0192,9.2502,2.537,83.3455,77.3973,83.7209,90.6977,9.3191,1.4239 North Central London ICB - 93C ,E83031,The Village Surgery,5514.341059,5.1273,70.1863,66.6667,4.41,71.2389,75.9615,2.4238,79.4872,3.5182,1.2624,0.4713,1.5757,15.1977,5.98,12.4895,74.3816,84.0909,0.6228,0.8248,9.4971,1.6362,85.4858,91.6667,78.8462,92.3077,12.6275,1.4812 North Central London ICB - 93C ,E83032,Oak Lodge Medical Centre,16487.02939,4.357,57.9832,57.2368,2.2753,51.2931,66.6667,2.0219,56.6474,2.4531,1.0926,0.5463,1.0002,22.3096,7.9288,12.2888,68.4521,83.1746,0.5576,1.2221,12.6889,0.7874,80.6208,85.9016,77.4194,87.5576,15.9593,1.2728 North Central London ICB - 93C ,E83034,Colney Hatch Lane Surgery,5164.864997,5.5152,67.5,55.0459,3.4374,66.2857,74.7573,2.1335,73.3333,4.3788,1.7187,0.3754,2.091,18.6588,8.5204,12.2086,66.6004,73.913,1.2051,1.4816,11.5129,0.6293,82.6625,72.043,63.9344,80.3279,14.1309,1.6397 North Central London ICB - 93C ,E83035,Wentworth Medical Practice.,16548.52016,4.6921,67.5439,72.434,3.5826,64.4189,74.9226,3.0078,86.3354,3.9225,0.9346,1.2837,1.417,13.1074,8.6787,13.0895,65.5848,80.9231,0.4028,0.9722,12.9655,0.852,84.3999,83.7209,71.7213,91.8033,14.2441,1.3428 North Central London ICB - 93C ,E83038,Jai Medical Centre,10065.55671,4.404,60.9091,63.1902,3.4326,54.27,70.8333,2.8174,82.4324,5.1546,1.3277,1.263,1.4274,19.3575,9.3542,14.4322,71.7172,84.7262,0.788,1.2414,13.9307,2.2306,87.0823,85.5556,89.2086,93.5252,15.6469,1.8782 North Central London ICB - 93C ,E83039,Ravenscroft Medical Centre,4357.82172,3.1426,64.2857,50.6494,2.992,52.1912,62.8571,2.1371,95.122,2.3289,0.53,0.4274,2.1022,15.9354,5.157,9.2836,64.2353,78.8136,0.3077,1.0087,7.6463,0.4882,79.678,89.2857,80.8511,85.1064,14.8463,1.3336 North Central London ICB - 93C ,E83041,Wakemans Hill Surgery,3768.754415,3.9161,53,58.0645,2.4321,64.5833,75.4386,1.9281,76.9231,4.6661,1.1174,0.5478,1.3945,20.2365,8.1924,13.716,68.7861,81.3084,0.5697,0.8545,12.1749,1.559,79.7055,90.1099,85.2459,88.5246,18.8137,1.0298 North Central London ICB - 93C ,E83044,Addington Medical Centre,10314.48593,3.7932,69.2308,67.4528,4.0066,67.9144,71.9577,2.4798,85.5263,3.237,1.6088,0.6353,0.9891,14.8356,6.9189,11.7328,51.2139,63.2143,0.7275,1.4243,7.3603,0.7289,80.471,82.1656,62,85,13.2733,1.3936 North Central London ICB - 93C ,E83045,Friern Barnet Medical Centre,9116.94388,4.8253,63.5628,77.2021,3.139,66.8435,76.9663,2.4279,89.2473,4.0078,1.219,0.5486,1.08,17.618,8.9219,12.2714,70.5263,81.3953,0.9041,1.1378,14.2095,0.498,83.486,84.1861,90.625,92.1875,13.3139,1.4019 North Central London ICB - 93C ,E83046,Mulberry Medical Practice,8094.843576,3.9446,56.9444,57.485,2.8664,50.1567,69.8718,1.9612,69.4444,3.0038,1.0445,0.4178,1.2103,21.3651,8.3847,13.2413,71.7733,80.8511,0.2901,1.0561,12.161,0.714,77.9827,84.0491,84.6847,94.5946,14.2245,1.3578 North Central London ICB - 93C ,E83049,Langstone Way Surgery,7207.328322,4.0827,64.7399,61.0687,3.3141,67.0623,75.6303,2.2574,83.3333,3.2253,0.8526,0.7805,0.9533,15.0334,6.776,10.927,57.6758,74.6479,0.4083,1.1167,7.7375,2.3778,73.419,78.0142,60,88.75,11.0512,1.1527 North Central London ICB - 93C ,E83050,East Finchley Medical Centre,6442.90739,3.9463,73.3668,70.8075,3.1857,68.2927,77.6316,1.4322,95.7447,1.8224,0.6425,0.2543,0.7388,10.8956,4.3317,9.3696,55.4913,66.2983,0.2677,0.7362,4.3343,0.3396,71.0822,87.8788,71.1111,86.6667,12.4082,1.3251 North Central London ICB - 93C ,E83053,Lane End Medical Group,13834.759,4.9529,64.3045,75.8197,3.6392,56.6337,64.467,3.0407,86.2637,5.1884,0.8187,0.4884,1.0542,14.2819,7.8458,11.5162,55.5997,71.0843,0.8737,0.9906,11.9168,3.6652,80.6126,85.8586,59.0361,85.5422,11.1121,1.5066 North Central London ICB - 93C ,E83600,Adler Js-The Surgery,4793.226873,2.3143,59.0476,75.7576,2.3054,55.0239,64.4068,1.3943,92.5532,3.8946,0.1657,0.6902,0.5462,13.6439,5.6713,6.7642,73.5065,86.6667,0.5246,0.6212,7.0292,1.3169,91.9344,85.8824,86.6667,95.5556,3.9288,0.9525 North Central London ICB - 93C ,E83613,East Barnet Health Centre,10919.03232,5.1068,74.6224,70.5179,4.4101,67.7665,75.3425,2.2762,83.4587,3.6142,1.4137,0.5424,1.0391,15.3117,6.7416,13.3902,73.8793,83.526,0.4712,0.9336,8.5046,0.9595,87.4059,86.631,83.3333,87.2549,11.8033,1.6893 North Central London ICB - 93C ,E83621,Brunswick Park Medical Practice,9227.609361,5.3284,70.3971,75.6219,3.6718,68.3007,74.8634,2.6985,88.6076,5.2386,0.9732,0.5751,1.155,13.6294,7.8087,15.0077,72.6744,80.6154,0.8405,1.117,14.5057,0.9156,86.368,89.3204,87.619,88.5714,12.6048,1.3603 North Central London ICB - 93C ,E83622,Temple Fortune Medical Group,7714.140599,3.5584,64.9038,57.8231,3.3333,58.3799,70.5426,2.3517,86.9565,5.3014,0.3668,0.9817,1.9097,12.0123,5.4346,11.0356,58.7819,80.1262,0.1834,0.9925,7.3536,2.0893,79.3311,78.1022,93.0556,81.9444,10.1973,1.4779 North Central London ICB - 93C ,E83637,Colindale Medical Centre Lp,8567.746969,2.6762,61.4943,51.4706,1.3862,65.812,76.378,1.3006,87.8049,1.9949,0.3423,0.1797,1.7911,20.6411,5.6652,9.1298,74.9462,90.5109,0.3166,0.5562,10.8966,0.8516,80.3518,84.7561,94.1176,97.0588,15.6372,0.676 North Central London ICB - 93C ,E83638,The Mountfield Surgery,4312.472683,4.5899,70.6587,69.5238,4.989,68.7861,71.134,2.765,90.4762,2.7626,0.5009,0.4809,2.0657,11.7082,6.3621,14.1054,73.9852,80.2469,0.1803,0.8014,7.9891,1.0516,85.335,90.7895,95.5556,91.1111,6.3473,1.7632 North Central London ICB - 93C ,E83639,Rosemary Surgery,4889.736604,4.3448,57.6271,71.7647,1.8249,61.5635,70.1299,2.033,87.5,3.5859,0.4642,0.3041,2.3906,15.1544,8.365,12.1338,56.1162,72.1154,0.3202,0.6883,13.7156,0.8856,80.9596,86.4,72.5,83.75,10.5221,0.7204 North Central London ICB - 93C ,E83649,The Hodford Road Practice,3525.272413,3.5114,64.8352,68.6567,2.7934,56.0209,70.7692,2.277,84,3.3682,0.5399,0.3756,0.9872,15.874,5.2934,9.3427,74.5981,80.4598,0.2582,0.939,6.6202,1.4938,84.0617,83.6066,87.8788,90.9091,12.869,0.8216 North Central London ICB - 93C ,E83653,The Phoenix Practice,10351.84647,4.4497,60.6557,64.2458,3.0746,53.1317,71.5116,2.4877,94.0678,3.5459,0.8497,0.7358,1.7616,16.0305,6.7778,11.2474,61.6172,77.5244,0.5694,1.13,7.9214,1.2199,78.0201,85.7798,71.4286,84.8214,13.7672,1.5329 North Central London ICB - 93C ,E83668,Dr Sp Talpahewa,3183.422475,3.9568,62.8319,65.4321,1.6505,62.9921,73.6842,2.0388,90.3226,1.5069,0.5097,0.3155,1.5672,17.0826,11.7246,10.8252,68.5279,75,0.4854,0.5097,16.3653,0.1468,84.7297,92.4051,88.3117,96.1039,10.3419,0.9466 North Central London ICB - 93C ,F83002,River Place Health Centre,11567.80746,6.0274,62.6168,61.6216,2.5508,60.4569,74.7126,1.6359,78,1.9314,1.6359,0.4436,1.9093,29.0996,5.7209,8.9464,67.0303,83.2168,0.5083,1.3586,9.1822,0.4389,82.7464,78.3784,85.567,91.7526,15.798,1.1645 North Central London ICB - 93C ,F83003,Park End Surgery,7593.985927,4.0892,67.3913,56.2874,4.182,61.3372,65.8065,2.3262,90.9091,2.5893,0.9279,0.8135,1.6816,10.6363,3.242,12.0758,78.1065,85.0365,0.178,1.3601,4.4345,0.4685,84.2643,94.7368,84.8485,90.9091,9.2188,1.5635 North Central London ICB - 93C ,F83004,Archway Medical Centre,24854.10015,2.2063,46.2366,39.1813,0.7797,40.8408,52.7778,0.405,80,0.3942,0.3596,0.1552,0.8586,29.3967,1.5381,2.8349,50.9375,64.2202,0.1703,0.6699,2.8764,0.2548,88.8624,77.0115,73.6111,81.9444,14.15,0.3369 North Central London ICB - 93C ,F83005,Gower Street Practice,9068.555559,1.4598,57.8947,46.5116,0.6753,22.3856,50,0.2039,100,0.3293,0.1019,0.0828,1.8725,19.5698,0.7737,1.9368,73.3333,79.5918,0.051,0.4842,1.498,2.7299,76.6234,79.1667,82.3529,88.2353,7.5721,0.172 North Central London ICB - 93C ,F83006,Ampthill Practice,15962.89222,5.3935,58.5075,50.9653,2.4129,46,63.7131,2.2596,73.6842,2.443,2.0996,0.4932,1.7818,31.3978,7.7535,12.3842,56.8541,62.9091,0.6465,2.0396,9.3445,0.1924,82.5636,87.9859,76.7568,88.1081,33.9778,1.1731 North Central London ICB - 93C ,F83007,Roman Way Medical Centre,4645.660324,7.2045,60.6383,50.6849,3.5355,56.25,68.1818,2.0696,72.2222,5.3618,2.6444,0.8048,2.7632,32.0076,8.5966,14.3145,76.5,78.5714,0.5174,1.8396,11.8421,1.0682,83.2997,79.5699,,,20.311,1.4085 North Central London ICB - 93C ,F83008,The Goodinge Group Practice,13901.04192,5.7855,62.9371,52.9412,3.0029,54.6961,70.1571,1.9775,68.3761,1.7488,1.8717,0.3988,1.6039,29.8458,6.2404,9.9528,53.2692,63.388,0.9277,1.6276,10.1449,1.2119,81.5917,83.5052,65.8333,85,19.8411,1.3916 North Central London ICB - 93C ,F83010,Islington Central Medical Centre,19951.90991,5.1409,64.3979,64.1935,2.6908,52.9757,65.8863,1.126,79.7928,2.0251,1.021,0.3387,1.644,23.8784,3.6956,8.6546,74.4063,84.5638,0.396,1.2166,6.5135,1.3274,77.5938,81.2834,,,13.4361,0.8015 North Central London ICB - 93C ,F83011,Primrose Hill Surgery,7465.020272,3.6262,61.9718,49.6855,3.5856,54.8718,69.1275,1.4392,95.082,2.3715,0.9181,0.3226,1.3907,14.4896,3.0787,9.8635,73.5341,84.1463,0.2233,1.0422,5.2701,0.1512,79.6585,85.9155,86.4865,94.5946,11.4493,0.9802 North Central London ICB - 93C ,F83012,Elizabeth Avenue Group Practice,9238.518859,5.6273,66.3415,62.1622,3.7156,62.9834,75.6303,2.4058,76.1905,2.6177,2.7399,1.0425,1.5799,27.7584,4.9686,12.5635,58.493,76.4331,0.7752,2.4058,19.5012,2.1901,80.7145,79.646,76.2712,88.1356,17.4147,1.8311 North Central London ICB - 93C ,F83015,St Johns Way Medical Centre,14211.35476,5.9411,64.6865,58.7755,2.8507,63.9515,74.1071,1.6245,82.963,2.3721,1.7573,0.4452,1.9641,29.892,5.8383,10.0359,61.9503,76.1506,0.5701,1.726,11.1111,0.4615,80.2129,79.5181,79.8246,87.7193,17.119,1.2418 North Central London ICB - 93C ,F83017,Hampstead Group Practice,18319.26463,4.6359,57.672,49.0446,3.4201,51.1158,64.5902,1.7509,84.6154,2.8301,1.3582,0.9818,1.4344,16.1167,4.5799,11.3457,76.5663,83.0952,0.3982,1.5655,7.4998,0.7755,81.7286,81.8533,92.8,96,11.8193,1.4673 North Central London ICB - 93C ,F83018,Prince Of Wales Group Surgery,10233.44513,5.9198,55.1351,49.3243,3.0718,54.3417,69.3431,1.8693,78.2609,2.1609,2.036,0.6191,1.6491,28.1333,6.8874,12.2157,65.4846,76.6667,0.7263,1.8336,8.3878,0.2957,82.2489,89.2308,86.0215,94.6237,19.6838,1.3097 North Central London ICB - 93C ,F83019,Abbey Medical Centre,14036.59018,4.565,54.2662,48.6607,2.9695,52.9118,70.6977,1.9249,91.8367,3.2409,1.4698,0.6267,2.7458,22.5602,6.4651,12.9598,69.4619,80.3922,0.5148,1.8205,9.3536,0.2304,89.8451,82.9876,84.252,89.7638,13.8658,1.3878 North Central London ICB - 93C ,F83020,Adelaide Medical Centre,12186.17428,4.6528,61.2319,49.2683,3.5083,55.102,65.9794,2.1426,90.9091,2.7641,1.4341,0.9902,1.0693,15.878,4.993,11.8225,68.7324,86.875,0.4353,1.4597,6.3553,0.318,90.0929,89.9329,80,86.6667,12.1935,1.4085 North Central London ICB - 93C ,F83021,Ritchie Street Group Practice,17196.77171,4.0689,62.0579,61.0442,2.3139,49.1559,65.9483,1.2881,72.043,1.5199,1.2531,0.2565,1.4151,25.1991,3.642,7.8161,64.1577,78.2222,0.3497,1.5329,6.0404,0.0751,76.8065,82.3864,74.7573,87.3786,14.1643,1.0375 North Central London ICB - 93C ,F83022,Caversham Group Practice,18267.75096,5.9304,65.0407,55.7823,2.9688,68.2864,71.1111,1.6382,82.7068,1.6528,1.7446,0.5441,1.2816,22.9442,4.992,10.2372,68.8164,83.4375,0.5204,1.6796,7.8087,0.2344,86.9043,88,76.6129,88.7097,16.5636,1.3661 North Central London ICB - 93C ,F83023,James Wigg Practice,25067.22814,5.4159,59.9606,52.4631,3.0117,56.1951,72.2078,1.714,72.973,2.2916,1.8124,0.4028,2.2378,25.3571,5.7828,11.0937,62.2803,73.5294,0.5504,2.3002,9.4083,0.6726,81.8725,88.3803,83.7563,89.3401,17.9777,1.1993 North Central London ICB - 93C ,F83032,St Peter's Street Medical Practice,11016.94625,4.4001,65.0407,63.0769,2.3866,52.126,71.5847,1.432,79.2079,1.2785,1.4149,0.3239,1.8038,25.2261,3.6764,7.3815,70.3504,80.6452,0.2813,0.9888,6.5213,0.0978,78.8729,88.2979,80,89.2308,13.7522,1.0143 North Central London ICB - 93C ,F83033,Barnsbury Medical Practice,5251.751656,4.9416,59.2593,62.7451,1.6238,48.4962,65.9574,1.6238,64.8148,2.0131,1.1485,0.2772,1.4513,32.3945,5.5568,9.2673,60.5128,83.3333,0.5149,1.2079,9.1526,0.5134,83.4054,88.8889,,,19.2755,0.9109 North Central London ICB - 93C ,F83034,New North Health Centre,1722.045388,4.1037,65.1163,62.5,4.2194,40,57.8947,2.391,100,2.4775,1.6878,0.211,0.6757,26.7998,4.0268,11.0408,61.4035,79.0698,0.5626,0.9845,2.9279,0.1799,68.75,90.9091,90,80,19.9587,0.8439 North Central London ICB - 93C ,F83039,The Rise Group Practice,6047.454505,6.7067,63.5802,55.4688,2.8112,66.8449,73.913,2.1797,70.5882,1.6853,1.7111,0.5704,0.917,31.9681,7.0223,12.5484,60.835,66.3717,0.7945,1.976,10.9294,0.1095,82.3392,82.1918,89.2857,92.8571,18.7781,1.7519 North Central London ICB - 93C ,F83042,Gray's Inn Road Medical Centre,7980.125019,2.8452,53.3981,51.4286,1.3707,43.5743,69.1176,1.0661,85,0.9881,0.7966,0.2577,1.9262,23.6976,3.7614,7.3102,57.4007,78.5714,0.2577,1.4644,5.7286,0.2266,82.0914,90.6667,87.2727,92.7273,15.5521,0.6795 North Central London ICB - 93C ,F83043,Ridgmount Practice,9694.84619,1.1722,66.6667,64,0.4396,45.7265,61.9048,0.1941,66.6667,0.1778,0.1199,0.0343,1.4339,23.8415,0.5958,1.1133,85.443,91.8919,0.0171,0.2512,1.5543,1.8779,95.5285,88.8889,91.6667,100,4.6626,0.1541 North Central London ICB - 93C ,F83044,The Bloomsbury Surgery,7325.110602,3.1809,60.5769,56.338,1.4419,36.25,63.2353,0.9572,90.3226,0.9926,0.6543,0.1454,2.4814,25.7119,3.0559,6.2886,71.5536,83.871,0.206,1.0663,5.5374,0.1559,78.7026,82.5397,90.2439,97.561,15.8831,0.5574 North Central London ICB - 93C ,F83045,The Miller Practice,9902.097643,5.895,71.0425,59.0909,3.5239,62.1868,72,1.5148,92.5926,1.6858,1.4181,0.838,0.8616,22.0794,4.2193,8.0039,71.6586,87.0968,0.3331,1.4611,5.1074,0.3617,81.3998,84.466,88.8889,90.7407,12.3064,1.214 North Central London ICB - 93C ,F83048,Brunswick Medical Centre Uhpc,8388.279067,3.0757,50.7692,40.9639,1.6227,46.875,71.4286,1.1191,62.7907,1.6422,0.7386,0.2238,2.7121,23.4062,4.0394,7.274,64.9215,77.9221,0.4141,1.5779,6.4693,0.3155,83.5973,87.234,84.4828,94.8276,12.0445,0.6267 North Central London ICB - 93C ,F83050,Fortune Green Road Surgery,3079.466769,3.8301,48.3871,45.614,3.3117,48.5915,57.4074,2.3522,62.5,3.3656,1.269,0.2786,1.5396,15.2984,6.8352,14.3299,63.6126,81.4815,0.3714,1.0833,7.2682,0.4488,70.7726,91.5493,82.8571,88.5714,15.6395,0.8976 North Central London ICB - 93C ,F83052,Brookfield Park Surgery,4091.230597,5.7094,62.2642,50,2.8787,57.7465,68.8312,2.1523,89.6552,3.23,1.8025,0.5381,2.2839,23.4571,4.8522,12.2142,74.6594,85.0575,0.5381,1.9101,8.646,0.2318,83.8626,90.1961,89.2857,92.8571,19.0828,1.2107 North Central London ICB - 93C ,F83053,Mildmay Medical Practice,8195.978136,4.9519,54.7445,60.5042,2.224,58.5714,69.2308,1.6484,82.1918,2.7466,1.1905,0.641,1.6698,29.4754,5.6688,8.8959,63.7153,87.5,0.3925,1.753,11.9538,0.8538,85.2694,80.8696,81.8182,89.3939,20.0097,1.2951 North Central London ICB - 93C ,F83055,West Hampstead Medical Centre,19063.37673,3.8878,60.1399,50.4032,2.1642,54.4195,60,0.9798,94.1177,1.1748,0.614,0.2656,2.1438,15.655,2.5971,6.4228,67.5523,83.691,0.2439,1.1452,5.2214,0.8519,78.8216,86.8056,80.7229,89.1566,16.3636,0.5922 North Central London ICB - 93C ,F83056,The Mitchison Road Surgery,9745.806153,4.8959,56.4815,52.5773,1.2425,66.6667,69.8925,0.7257,72.9167,0.92,0.8052,0.1093,2.8049,30.6758,2.7136,5.0298,65.5405,85.4839,0.3082,1.1531,6.4849,0.1406,83.8244,88.8889,85.7143,90.4762,16.0276,0.6362 North Central London ICB - 93C ,F83057,Parliament Hill Surgery,7962.248509,5.0602,66.6667,56.6038,2.9843,60.3015,69.7368,1.4798,91.8919,1.9549,1.3195,0.3083,1.5811,18.6497,3.1401,10.5808,68.75,82.6087,0.2836,1.3565,5.8933,0.0842,84.2784,87.3016,94.2857,94.2857,14.3118,0.8509 North Central London ICB - 93C ,F83058,Holborn Medical Centre,9331.221412,2.7621,61.9718,62.2449,1.7966,28.481,71.0843,0.8897,69.697,1.173,0.8384,0.308,1.3471,22.7537,2.7143,6.1254,74.7541,89.6226,0.231,0.9753,4.0689,0.1689,78.7538,90.8046,84.7826,91.3043,14.6043,0.5133 North Central London ICB - 93C ,F83059,Brondesbury Medical Centre,23085.04876,4.8241,48.75,42.7152,2.274,52.8855,62.5418,1.7187,78.125,2.6583,1.4631,0.2953,2.9236,26.0374,5.5822,10.5416,65.7945,79.6552,0.639,1.8774,11.2365,1.6971,75.4034,84.29,75.6345,90.3553,21.4123,1.0885 North Central London ICB - 93C ,F83060,The Northern Medical Centre,9080.279243,5.2387,59.6386,54.6154,2.7328,51.1222,69.9187,1.7586,80.3279,2.4558,1.5435,0.6959,1.5406,27.8384,5.3179,9.9696,46.3902,64.9635,0.9995,2.1382,6.3453,0.8146,77.5223,78.6325,,,16.3205,1.3917 North Central London ICB - 93C ,F83061,Museum Practice,5384.519663,3.7234,62.931,58.1395,2.8476,48.4962,72.8395,1.8861,92.3077,2.2898,1.6087,0.4438,1.925,21.2094,4.0709,11.7789,76.1553,94.7917,0.4253,2.2559,8.1864,0.3311,87.5733,88.0597,89.6552,96.5517,13.6973,1.054 North Central London ICB - 93C ,F83063,Killick Street Health Centre,12958.61642,5.9486,58.8785,68.1818,2.3329,50.7764,78.1065,1.3353,75.1825,2.0546,1.4689,0.5341,1.5363,28.7124,5.0119,8.1533,73.8548,88.1119,0.4713,1.3903,9.6992,0.951,84.3768,90.625,80.9524,91.4286,17.2024,1.1311 North Central London ICB - 93C ,F83064,City Road Medical Centre,9207.439384,3.7046,58.3942,56.1404,2.1218,49.3421,70.5357,1.1763,69.7674,1.5828,1.77,0.3408,2.3292,25.8886,4.1831,7.9486,65.7763,75,0.3298,1.0114,8.8663,0.2707,80.9504,84.7059,59.6774,82.2581,16.0652,0.9455 North Central London ICB - 93C ,F83615,Cholmley Gardens Surgery,6523.328716,3.3381,57.3964,47.0588,3.791,63.7681,70.8661,1.2882,89.7059,2.4881,0.638,0.3558,0.7987,12.2873,3.298,10.0233,69.0252,87.2928,0.2454,0.9447,5.6827,0.1649,77.5631,91.8033,84.8485,93.9394,9.7713,0.9201 North Central London ICB - 93C ,F83623,Keats Group Practice,10356.50275,3.3705,63.5542,49.8024,3.5636,58.2661,63.4921,2.1502,87.7551,2.5498,0.5864,0.624,1.3189,7.7798,3.0096,10.4278,66.0019,81.4371,0.218,0.8571,4.7284,0.3257,76.2674,82.7586,88.6792,94.3396,8.3079,1.2255 North Central London ICB - 93C ,F83624,Clerkenwell Medical Practice,13624.1301,3.2701,63.0769,52.349,1.4856,46.6591,72,0.731,76.5432,0.6859,0.7664,0.1415,2.1355,22.5981,2.5768,4.7103,63.5488,75,0.1828,0.9197,6.6395,0.556,79.1143,92.3077,78.2609,88.4058,13.7819,0.56 North Central London ICB - 93C ,F83632,Queens Crescent Practice,7489.095866,5.5055,57.037,47.3118,2.399,49.6454,71.7647,2.232,73.4694,2.9105,2.3838,0.577,2.8926,30.1352,7.5793,12.8606,66.9837,79.2793,0.7592,2.0346,11.714,0.7203,80.9772,87.2181,87.9518,95.1807,20.0356,1.3969 North Central London ICB - 93C ,F83633,Daleham Gardens Health Centre,3828.612428,3.1689,53.8462,43.2432,1.9834,57.4468,60,1.3978,76.9231,0.9358,0.6611,0.2645,1.8717,9.9671,2.3358,6.5735,63.6364,80.6452,0.1511,1.1145,4.1667,0.477,74.2508,93.1035,77.7778,88.8889,10.87,0.68 North Central London ICB - 93C ,F83635,Kings Cross Surgery,7702.264611,3.1365,50,38.2979,0.658,47.6895,57.7778,0.6804,71.1539,0.9175,0.4238,0.2788,2.1731,29.7074,3.0092,3.5802,61.0714,78.0488,0.145,1.0819,3.8392,0.2554,80.9307,86.1539,80.8511,89.3617,10.1796,0.4238 North Central London ICB - 93C ,F83652,Amwell Group Practice,11007.15832,4.2616,64.7959,63.0573,2.3082,60.4839,74.1722,1.4309,73.2558,1.4726,1.2435,0.2555,1.5701,26.2917,3.0664,5.8257,68.4729,86.6667,0.2555,1.252,6.9924,0.3628,81.8271,92.5926,81.8182,90.9091,14.0905,0.7921 North Central London ICB - 93C ,F83658,Belsize Priory Medical Practice,5996.527985,4.619,55.9322,45.3488,2.5753,54.9801,66.2651,1.6621,82.1429,2.2861,1.9178,0.4018,2.1503,24.5082,6.9212,12.4018,76.3293,84.375,0.8585,2.2648,11.4079,0.1984,89.607,86.8853,83.0508,91.5254,19.1194,1.1507 North Central London ICB - 93C ,F83660,Highbury Grange Medical Practice,8864.262917,5.0076,60.6742,51.049,2.7524,60.6436,68.8742,1.5193,84.5238,2.2746,1.189,0.2532,1.3676,21.549,6.0694,8.6535,61.2308,76.4706,0.4624,1.6514,7.8984,0.1996,76.0449,90.2439,76.5432,83.9506,16.6352,1.0239 North Central London ICB - 93C ,F83664,The Village Practice,11678.56696,4.4346,61.2245,49.1667,1.6364,63.5634,73.1707,1.0909,78.5047,1.0109,1.0194,0.1699,1.9901,34.104,5.2297,6.5457,60.3659,78.9474,0.3666,1.9315,10.4349,0.345,87.7687,83.6207,77.1739,88.0435,17.363,0.6886 North Central London ICB - 93C ,F83665,Swiss Cottage Surgery,12786.94756,3.9252,52.7426,44.4444,1.9943,46.4094,63.5945,1.0652,92.3077,1.5555,0.8344,0.3669,2.0621,14.3661,2.7442,6.9535,73.5772,85.8639,0.5622,1.2368,5.2016,1.442,74.5144,88.0734,86.2069,91.3793,13.0317,0.5918 North Central London ICB - 93C ,F83666,andover Medical Centre,7407.274723,5.6754,51.7857,44.7059,2.318,60.1124,67.4699,1.5946,68.75,1.966,1.6684,0.9892,1.2154,32.8668,6.2611,9.3164,67.1206,83.7607,0.6201,1.314,9.1868,0.4679,84.7379,84.3137,90.9091,89.3939,19.7508,1.0483 North Central London ICB - 93C ,F83671,The Beaumont Practice,3455.967793,5.1047,55.0725,53.8462,2.008,58.2781,65.3061,1.4829,68.5714,1.3693,1.3284,0.4325,1.5215,31.8843,7.6488,9.6386,66.9173,91.3044,0.4943,1.5755,10.4983,0.1134,77.3723,86.6667,81.5789,86.8421,18.4819,0.9577 North Central London ICB - 93C ,F83672,St Philips Medical Centre,9544.351599,1.1919,50,40.625,0.5355,26.791,50,0.1847,100,0.0929,0.0185,0.0123,1.3071,21.9097,0.5139,1.0341,70.3947,100,0.0123,0.6894,1.8832,0.3273,65.9698,80,75,87.5,10.0718,0.0739 North Central London ICB - 93C ,F83673,The Medical Centre,6380.111273,4.6154,52.8926,51.9608,2.5164,67.128,76.8421,1.2246,75,2.7381,1.5601,0.4865,1.7064,28.922,7.8082,12.2295,74.0741,81.4815,0.6039,1.9292,15.4365,0.4046,93.8572,93.1373,87.5,88.8889,16.381,0.9898 North Central London ICB - 93C ,F83674,The Junction Medical Practice,10006.68432,6.1151,58.5153,48.2759,2.8699,65.7431,75.5952,1.7611,76.8116,3.3438,1.9785,0.5979,2.5016,24.6569,6.4906,12.3927,66.2766,76,0.4674,1.4567,9.1389,0.1684,80.8914,75.4601,87.6289,84.5361,16.4335,1.4241 North Central London ICB - 93C ,F83678,Dr Segarajasinghe,2909.573606,6.2115,63.4146,66.0377,3.2683,62.0253,76.7442,2.542,60,4.4841,2.8143,0.5901,1.0265,25.7155,9.0812,15.1611,67.509,77.193,0.4993,1.5434,11.1291,0.3386,86.2911,86.5385,67.8571,78.5714,20.7107,1.6795 North Central London ICB - 93C ,F83680,Sobell Medical Centre,4538.7738,4.4663,55.9524,48.3333,1.9823,51.9149,73.2143,1.1851,85,2.8325,1.379,0.4525,1.0802,30.438,6.1784,10.9244,71.1712,80.9524,0.7542,1.4652,9.0735,0.5731,82.9835,87.3239,87.234,91.4894,21.9952,0.7111 North Central London ICB - 93C ,F83681,Partnership Primary Care Centre,9859.354238,4.9427,55.3763,47.7612,2.1396,47.0874,67.7165,1.5123,66.1017,1.2441,1.5683,0.3585,1.2441,31.5321,6.5265,9.8913,74.5152,79.5031,0.5153,1.5011,6.836,0.3659,80.8462,83.4862,78.7234,78.7234,17.2787,0.7281 North Central London ICB - 93C ,F83683,Somers Town Medical Centre,6801.274573,4.8551,56.25,37.5,1.2857,55.2795,69.2308,1.3462,80,2.065,0.8925,0.2572,3.0885,32.3712,6.6193,7.669,65.7143,75,0.4235,1.4219,8.8167,0.276,91.035,96,88.8889,87.5,12.7256,0.8622 North Central London ICB - 93C ,F83686,Stroud Green Medical Centre,7695.80951,4.6217,54.8673,49.4253,1.665,64.8374,71.7647,0.8325,72.2222,1.1201,0.7101,0.1959,0.9941,27.3185,3.7542,6.55,59.8712,73.913,0.3306,1.0284,5.3346,0.1931,79.3069,82.1429,77.551,85.7143,21.9378,0.4775 North Central London ICB - 93C ,F85002,Medicus Health Partners,101772.7761,5.0729,64.0611,69.3119,3.0975,62.4963,72.377,2.0718,68.4917,3.981,1.1391,0.6557,1.0373,34.4288,9.1621,14.5537,70.3993,82.4561,0.6482,1.1733,12.6481,0.446,86.7974,86.3136,83.3858,92.2047,16.7714,1.1851 North Central London ICB - 93C ,F85004,Eagle House Surgery,14662.12649,6.4391,64.5892,58.0292,3.4348,70.0224,76.3485,3.0913,72.5664,5.224,1.8423,0.6167,1.9326,33.2681,11.9965,18.6651,74.3243,80.6616,1.0226,1.4754,19.8993,0.7336,89.7611,84.7185,85.9649,90.7895,18.8398,1.6081 North Central London ICB - 93C ,F85007,Lawrence House Surgery,18729.38901,4.5057,56.9048,66.2614,2.737,63.8365,70.8333,1.8266,78.2313,3.5124,1.3506,0.47,1.9474,35.697,10.0199,13.8335,66.3551,79.4521,0.6783,1.9516,15.0956,0.2241,82.1166,82.7848,81.3665,89.441,20.5775,1.0115 North Central London ICB - 93C ,F85008,Staunton Group Practice,13175.01888,4.6608,58.2043,54.902,2.8792,52.3179,70.9544,2.133,63.8554,2.9133,1.1273,0.4299,1.965,30.4933,8.9054,12.717,73.2887,83.4821,0.7867,1.7599,14.0287,0.6116,79.076,86.9388,88.6364,93.1818,21.9454,1.3382 North Central London ICB - 93C ,F85010,Keats Surgery,5594.605554,5.4801,61.5385,73.2673,2.9663,73.5099,84.5238,2.134,65.2174,4.3374,0.8323,0.3841,1.9545,30.2529,10.8456,18.1391,78.0204,80.3681,0.8536,1.3871,17.3494,0.1161,89.7857,83.1858,87.6543,95.0617,18.851,1.131 North Central London ICB - 93C ,F85013,Tynemouth Medical Practice,9885.686181,5.3713,58.7379,55.8011,3.0078,67.0077,77.0588,1.1691,69.6629,4.0505,0.8715,0.4039,1.8858,38.4592,8.7549,13.1576,63.7209,76.6871,0.6589,1.5092,14.0638,0.7672,84.0553,84.153,80,89.6,17.776,1.1585 North Central London ICB - 93C ,F85014,Highgate Group Practice,15065.61868,5.005,70.0913,59.9407,4.0712,65.374,70.7006,1.6855,92.7928,1.5767,0.8131,0.6113,0.7743,14.1517,3.3062,9.0505,67.0557,76.6423,0.1959,1.0326,5.265,0.5792,76.2202,81.3433,81.25,91.25,9.7222,1.2997 North Central London ICB - 93C ,F85016,Cockfosters Medical Ctre,6824.096214,3.79,72.5,68.3544,4.4971,62.7193,73.6842,3.0926,82.2581,4.5606,0.7093,0.8512,0.8911,12.5962,6.8092,14.3425,61.6231,74.2958,0.3689,0.8086,5.8711,0.5814,81.3529,83.2061,80.5556,94.4444,10.3046,1.3761 North Central London ICB - 93C ,F85017,Charlton House Medical Centre,7909.785778,5.6296,53.3708,48.9051,2.5702,61.8357,72,1.9868,85.4167,5.4981,1.4033,0.3627,1.3985,38.8624,11.2241,17.0136,64.3763,77.4436,1.1668,2.239,21.7433,0.8519,84.9467,82.9897,,,20.7596,1.2141 North Central London ICB - 93C ,F85019,Morris House Group Practice,16305.16384,6.0761,57.2193,68.8889,3.0143,59.6491,72.0137,1.9938,67.0808,3.7864,1.1152,0.4596,0.8829,40.7392,9.685,12.6656,68.6358,77.5862,0.7097,1.2639,18.3717,0.6576,78.481,86.0248,81.106,90.3226,21.6912,1.2639 North Central London ICB - 93C ,F85020,The Woodberry Practice,9116.926612,5.2997,72.1854,66.3462,3.4426,75.1462,76.0638,2.2439,84.5455,3.5226,0.8709,0.4713,1.4323,14.8105,6.9115,12.9303,65.4922,75.7576,0.4713,0.8402,10.529,0.4919,89.093,82.0359,80.2083,93.75,13.8797,1.168 North Central London ICB - 93C ,F85023,The Ordnance Unity Centre For Health,12615.24969,3.9176,61.9565,59.7484,1.9507,62.0629,69.8225,1.2211,72.6852,2.1232,0.7142,0.1843,2.0126,33.6541,7.7239,10.1144,64.5921,83.5938,0.4915,1.1366,13.7897,0.1556,80.4219,82,69.6296,95.5556,19.293,0.6682 North Central London ICB - 93C ,F85025,White Lodge Medical Practice,14329.87098,5.2781,73.5065,76.0417,3.951,78.508,81.9231,2.2468,78.8044,3.5834,1.1408,0.3617,1.6505,18.213,6.2842,13.6547,62.4434,79.0865,0.626,1.1895,11.1915,0.8338,87.4393,87.2549,73.8095,93.6508,14.8593,1.5373 North Central London ICB - 93C ,F85028,Bruce Grove Primary Health Care Ctr,7802.715699,3.4,50.7538,50.6944,2.4658,58.2569,67.6692,1.5342,86,4.5775,0.6849,0.411,0.5907,39.2056,10.2991,13.589,70.1439,84.1772,0.8767,1.6849,23.2158,0.3648,85.358,82.2086,88.7097,92.7419,20.4018,1.0411 North Central London ICB - 93C ,F85029,Abernethy House Surgery,13553.62208,5.9016,75.3117,76.5734,4.8446,71.7703,77.1186,2.8402,84.3137,5.4986,1.5418,1.2254,1.4877,17.4305,7.3391,15.8078,72.3257,85.1703,0.8034,1.1848,9.1375,0.5243,83.5401,81.4815,67.3913,92.029,11.0165,2.1829 North Central London ICB - 93C ,F85030,Somerset Gardens Family Health Centre,17452.50372,4.4676,53.9185,68.8,2.4498,58.4711,69.3878,1.8539,56.2092,2.9806,1.4714,1.0962,1.9902,40.8577,10.3819,16.9573,55.0305,75.0742,1.2433,1.8539,16.28,0.3825,84.444,85.5705,79.9087,89.0411,20.3438,1.8171 North Central London ICB - 93C ,F85031,Westbury Medical Centre,11889.34561,3.1933,57.2581,50,2.2794,59.9251,72.2222,1.7565,70.7071,2.8849,1.0049,0.3186,0.6246,32.827,6.9827,12.5163,74.0713,89.6714,0.3431,1.2255,13.1456,0.1538,83.9144,90.1478,88.5496,93.1298,25.5538,0.9641 North Central London ICB - 93C ,F85032,Southgate,8890.343557,3.7481,65.6,59.2391,3.0731,64.5604,72.9412,2.6019,84.6939,1.7825,0.6351,0.881,0.8457,14.6042,7.1282,12.436,71.8676,79.3478,0.3381,0.6761,8.3919,0.2074,82.5238,89.404,87.619,92.381,9.5507,1.0039 North Central London ICB - 93C ,F85033,Winchmore Hill Practice,20402.47063,5.4099,73.6486,74.7628,4.7161,77.6667,78.6704,2.7468,85.3147,4.6388,0.9093,0.6549,1.583,12.0305,6.9883,15.5666,75.7172,80.6996,0.5512,1.0742,7.306,0.7076,85.464,85.8191,84.2593,93.9815,11.8558,1.715 North Central London ICB - 93C ,F85034,Arcadian Gardens Surgery,7493.054152,4.025,59.7633,57.8125,2.0643,64.8649,72.5664,1.7417,78.8462,2.7821,0.6838,0.3742,1.3211,25.6618,7.9766,9.7794,71.7908,87.4016,0.6709,1.4966,12.3407,0.2978,84.9109,87.7551,89.6907,90.7216,19.3598,0.8257 North Central London ICB - 93C ,F85035,Highlands Practice,11334.0553,5.1296,72.0588,64.7727,3.5565,73.0964,76.2712,2.9304,77.1084,3.1396,0.7304,0.8435,0.6346,12.0428,6.6922,13.2087,58.0282,75.9912,0.1913,0.7652,7.2033,0.201,81.5473,83.9378,61.9048,85.7143,10.2243,1.4174 North Central London ICB - 93C ,F85039,Rainbow Practice,7780.100379,3.9717,55.1471,62.7273,1.7539,64.2857,73.4694,1.3296,70.4082,1.5994,0.5941,0.3536,1.1118,36.3747,9.1048,10.7072,75.814,83.9286,0.3395,1.3013,16.2668,0.1165,89.5002,84.2105,89.2473,96.7742,19.4145,0.8628 North Central London ICB - 93C ,F85044,The Bounces Road Surgery,6838.585641,4.5032,60.1351,65.7658,1.8617,61.6858,77.6699,1.7878,59.3023,2.7832,0.6058,0.3251,1.7711,34.5737,10.0248,12.8694,70.5416,83.3333,0.4285,0.7536,12.4368,0.6054,81.7422,89.4309,82.6531,93.8776,19.2354,0.9161 North Central London ICB - 93C ,F85046,Hornsey Park Surgery,9518.207617,3.5801,47.2441,44.6602,1.2076,58.8997,65.6863,0.7859,79.2793,0.9681,0.4696,0.0863,1.5338,28.8865,4.4389,7.121,53.7555,70.3125,0.3738,1.3034,7.0271,0.0585,71.4471,85.5556,76.3158,84.2105,25.6363,0.4505 North Central London ICB - 93C ,F85058,Nightingale House Surgery,7168.472924,5.9012,66.129,72.6619,2.7084,71.9828,81.1966,1.941,61.1111,2.2705,1.2188,0.4815,1.0583,32.6072,10.2869,14.1439,69.8331,84.4721,0.6922,1.4294,17.9912,0.5942,89.2014,85.7143,87,92,19.9057,0.9028 North Central London ICB - 93C ,F85060,Havergal Surgery,5861.030505,4.3987,54.0323,51.0638,2.236,47.3896,65.5556,1.9166,80.9524,2.5381,0.7276,0.4082,1.2479,29.4696,8.403,11.9965,73.9372,84.4444,0.7276,1.5084,11.6963,0.3729,82.407,81.1321,90.6667,90.6667,22.4682,1.0648 North Central London ICB - 93C ,F85061,Christchurch Hall Surgery,2887.386622,5.2054,69.6078,59.2593,4.0998,62.1359,74.2857,1.3666,77.2727,2.3858,0.9566,0.3758,0.7279,21.5758,4.2265,10.5569,71.9368,78.5714,0.5125,1.0249,6.6721,0.9061,78.3729,84.375,90,85,11.8931,1.1958 North Central London ICB - 93C ,F85063,The Muswell Hill Practice,13188.78155,5.1551,75.9465,73.3945,3.9981,72.7273,79.288,1.2292,89.0411,2.0957,0.639,0.4199,1.2251,12.5723,2.9249,8.562,63.7401,79.8508,0.1826,0.712,6.7031,0.8723,81.4717,78.3505,89.8305,94.9153,9.824,1.0649 North Central London ICB - 93C ,F85064,Stuart Crescent Health Centre,7077.689595,4.4869,55.8442,51.3274,2.5199,63.6086,70.297,1.7654,80.4878,2.5367,0.4413,0.3844,0.9346,29.5578,7.3086,9.6099,70.3704,83.3333,0.4556,1.324,8.0107,0.8767,79.6241,87.8049,84.5238,88.0952,20.3921,1.1817 North Central London ICB - 93C ,F85065,Stuart Crescent Medical Practice,3383.916024,5.4748,58.1395,53.9683,3.5509,55.6391,72.7273,2.2073,81.25,3.1981,1.1196,0.3519,1.014,31.3212,8.1797,11.9642,78.4247,86.5854,0.7038,1.1516,15.5616,1.5369,87.8481,84.7222,85.3659,92.6829,20.6975,1.3116 North Central London ICB - 93C ,F85066,Bounds Green Group Practice,16954.19244,4.9785,65.102,62.8788,3.2599,62.8719,73.7838,1.5216,85.4962,1.4107,0.7344,0.3593,0.738,18.6389,5.3631,9.8642,61.9895,75.6447,0.2695,0.8665,8.1701,0.392,76.0155,85.0746,82.1656,89.172,16.532,0.9035 North Central London ICB - 93C ,F85067,The 157 Medical Practice,5412.281085,5.3113,55.1724,64.7059,2.5452,63.6364,70,1.788,85.1852,3.5018,1.1148,0.61,1.2926,28.3313,7.6797,14.0093,73.7037,80.9524,0.6731,2.0825,13.631,0.5249,78.0784,86.8687,87.0968,91.9355,20.367,1.0307 North Central London ICB - 93C ,F85069,Crouch Hall Road Surgery,7370.248041,5.3048,71.3147,63,4.1692,75.2841,78.0749,1.8354,91.1765,1.4867,0.7658,0.4497,0.481,17.5762,4.255,9.4688,76.4423,80,0.3525,0.8144,5.9758,0.7309,82.9539,85.3333,90.566,94.3396,12.8205,1.2398 North Central London ICB - 93C ,F85071,Fernlea Surgery,11720.47725,3.4066,51.1962,46.5909,2.1268,60.2041,68,1.3771,55.8282,2.5183,0.8393,0.3504,1.8914,32.4593,6.1553,8.8983,63.9572,84.0764,0.4971,0.9371,11.9541,1.5462,75.5665,84.5745,87.156,90.8257,18.7825,0.9697 North Central London ICB - 93C ,F85072,Grovelands Medical Centre,9708.764325,4.3778,67.6157,64.1791,2.4998,59.6685,70.1087,2.2898,71.4286,1.5337,0.9899,0.6099,0.8853,20.2224,9.3132,12.7687,51.38,61.4925,0.3,0.9799,10.5985,0.1969,82.5327,89.5954,86.4662,94.7368,15.9294,1.2099 North Central London ICB - 93C ,F85615,Tottenham Health Centre,5857.933078,5.0507,47.9339,50.4854,2.1728,55.9322,70.4762,1.7382,72.3404,4.9455,2.503,0.4346,0.7407,41.3546,9.7535,15.1399,70.232,74.7368,1.0777,1.3732,18.6928,0.9798,85.0337,85.2941,88.764,91.0112,27.2302,1.2168 North Central London ICB - 93C ,F85623,Grove Road Surgery,4768.5377,3.8678,52.8846,54.023,1.6481,64.1618,72.9412,1.6704,73.3333,3.0786,0.8909,0.4454,2.7815,33.8257,9.6026,13.0512,66.0156,82.4324,0.7127,1.2027,20.875,0.148,92.012,88.1188,69.5652,94.2029,20.6496,0.9354 North Central London ICB - 93C ,F85625,Bincote Surgery,6638.288927,4.5946,71.7073,77.6398,4.4039,72.4576,80.6897,2.7877,88.7097,4.1682,0.6524,0.6673,0.7562,15.2198,8.2057,14.6352,69.7548,83.7945,0.5931,0.5931,14.5334,0.2236,87.6634,93.5714,83.5294,92.9412,11.3135,1.4087 North Central London ICB - 93C ,F85628,Dowsett Road Surgery,5179.929472,3.9462,55.5556,52.5,2.2699,60.1064,69.3333,1.4577,79.0698,3.8253,0.9996,0.479,1.1889,35.1405,7.6688,12.4948,68.7243,88.5965,0.5623,1.2078,15.5337,0.3734,82.4942,73.6264,89.2857,92.8571,22.6462,1.0621 North Central London ICB - 93C ,F85634,East Enfield Medical Centre,8754.320193,4.6275,56.3536,54.2254,2.0896,62.6781,73.7226,1.82,78.4946,3.0979,1.0898,0.2921,1.9904,33.9134,11.1079,10.8977,74.9699,79.8561,0.5505,0.9662,14.8908,0.7005,89.3802,94.8357,93.2432,97.2973,18.5669,0.8651 North Central London ICB - 93C ,F85640,Cheshire Road Surgery,6194.023165,3.4907,58.156,59.633,2.686,61.3559,70.6422,2.1694,79.4118,2.2307,0.7231,0.369,1.1426,24.8153,6.4719,10.3011,67.6056,69.2308,0.5903,0.8707,9.6482,0.8231,74.386,84.0708,82.6087,88.4058,16.6667,1.2102 North Central London ICB - 93C ,F85642,The North London Health Centre,8970.202698,4.3431,66.4,60.6383,3.3947,60.3715,69.7143,2.7317,80.8824,3.032,1.3487,1.143,0.6722,18.1446,6.9102,12.9958,61.6568,66.7808,0.4686,1.3602,7.3656,0.6173,78.9117,83.6735,68.4783,88.0435,15.7976,1.383 North Central London ICB - 93C ,F85650,Morecambe Surgery,6003.380761,4.3926,59.5745,70.5882,2.7111,65,75.5319,2.5212,80.9524,4.2115,0.967,0.6044,1.5135,28.9026,11.9483,15.3514,72.9917,85.6287,0.5008,1.0706,16.2974,0.9004,88.8684,90.566,86.7925,96.2264,16.8398,1.3642 North Central London ICB - 93C ,F85663,Latymer Road Surgery,5441.335968,5.5761,61.9048,68.6869,2.9565,62.4277,76.7442,2.1957,65.2174,5.6761,1.5652,0.4565,3.0885,32.634,10.2208,14.6957,78.9279,88.8889,0.6522,1.8044,19.1152,0.5249,89.7847,90.5172,87.5,90.2778,17.7839,1.5217 North Central London ICB - 93C ,F85666,Dr Me Silver's Practice,4360.899945,6.0905,55.4455,68.6047,2.5052,59.0909,65.3846,2.2986,77.1429,4.6269,1.8079,0.3874,2.1831,38.1196,13.1032,15.2376,74.9507,83.1325,0.8006,1.2913,17.8234,0.1549,86.9093,88.5714,80.7692,85.8974,18.7678,1.5754 North Central London ICB - 93C ,F85669,West Green Surgery,18984.62865,3.6907,48.0159,47.8873,0.9804,61.9892,71.8487,0.9759,95.1807,1.101,0.5214,0.1025,1.1275,30.3124,4.414,7.5576,61.9912,82.8283,0.2852,0.9135,6.733,0.2753,76.0171,87.8307,85.8065,87.7419,25.6252,0.4501 North Central London ICB - 93C ,F85675,The Alexandra Surgery,5376.241977,5.6266,57.6923,67.2414,3.739,64.3243,75,2.0894,86.4865,4.3702,0.8981,0.6598,1.143,18.8418,9.2335,11.0704,77.5641,97.0588,0.5315,1.5029,16.8983,1.3744,82.566,83.9286,87.6543,90.1235,14.015,1.0631 North Central London ICB - 93C ,F85676,Boundary House Surgery,5752.637693,4.9361,58.7786,68.3673,2.585,67.1569,85.2273,1.9342,72.1312,5.0459,0.9581,0.5965,2.028,33.4323,11.8064,15.1844,80.9257,90.5512,0.7773,1.0304,22.8151,1.2821,91.5929,85.9259,90,97,19.1284,0.8858 North Central London ICB - 93C ,F85678,The Town Surgery Ltd,3850.875916,4.9577,66.2791,70.8333,2.6479,70.7182,80.8219,1.819,91.9355,1.583,0.6908,0.3684,1.4038,21.4465,8.9921,11.2825,70.0234,82.5397,0.3914,1.1052,12.8435,0.3345,85.6026,93.6508,86.4407,91.5254,13.5981,1.1052 North Central London ICB - 93C ,F85682,Chalfont Road Surgery,6755.534803,5.5683,63.6905,64.0288,2.9825,69.8198,76.5152,1.8699,76.5625,3.887,0.8809,0.1854,1.9034,36.3643,12.4583,16.3962,77.1338,94.6429,0.68,1.3445,19.455,0.4902,86.9355,96.6443,94.4,98.4,28.8392,1.0508 North Central London ICB - 93C ,F85687,Oakwood Medical Centre,8363.763679,4.8977,67.6617,59.8726,3.7104,76.2887,79.1946,2.6555,89.6552,4.6451,0.9822,0.8003,1.325,16.359,8.0493,12.162,73.7333,87.747,0.8852,1.4793,12.184,0.9326,90.0583,92.4419,88.2353,96.0784,17.0165,1.2368 North Central London ICB - 93C ,F85688,Rutland House Surgery,9342.10912,5.4023,70.632,67.6724,3.7061,71.5762,74.2358,1.9078,88.75,2.781,0.8763,0.6664,1.484,16.1672,4.7854,9.5299,63.1773,77.5862,0.356,0.7759,9.1493,0.7947,84.2863,84.1667,78.3784,90.5405,11.169,0.8946 North Central London ICB - 93C ,F85697,The Old Surgery,1998.065976,4.8864,54.5455,58.6207,3.5146,53.2258,77.7778,2.6359,90,4.6438,0.9885,1.1532,2.799,26.716,10.6692,16.9687,71.9665,88.5714,0.8786,2.0868,18.7023,2.0033,90.2375,91.2281,93.9394,96.9697,23.0595,1.0434 North Central London ICB - 93C ,F85700,Arnos Grove Medical Centr,7173.834158,3.8034,52.2727,42.5926,1.9859,52.4457,56.8807,1.4011,90.6667,2.5223,0.6214,0.2802,1.9071,21.5683,5.6095,8.7963,71.6194,83.7398,0.4752,1.5595,11.3811,0.54,80.234,90.5172,79.7297,94.5946,18.2543,0.7066 North Central London ICB - 93C ,F85701,Gillan House Surgery,12672.59828,5.2495,57.7236,53.0303,2.5453,57.1181,66.8367,2.6379,69.9454,3.564,1.2495,0.8484,2.1642,19.4456,7.1107,11.9938,74.4168,92.9368,0.5708,1.5889,11.9627,0.9304,83.6313,89.7338,84.4444,94.8148,19.5586,1.2264 North Central London ICB - 93C ,F85705,Js Medical Practice,12830.19911,4.5026,57.1429,65.3061,2.0978,69.7495,77.3481,1.5379,79.562,2.7596,0.836,0.3312,1.4091,35.6472,7.6612,11.4274,68.8394,82.7225,0.623,1.6719,13.4162,0.2717,85.2975,89.372,,,21.8658,0.8991 North Central London ICB - 93C ,Y00057,Angel Surgery,13499.9387,3.2702,54.1818,56.3319,1.8487,60.9881,72.766,1.3469,69.5652,1.2366,0.5942,0.1585,1.1306,36.428,9.8666,10.894,67.768,70.6587,0.3169,0.7725,14.133,0.2172,85.2947,91.0995,81.3636,91.3636,12.9024,0.7131 North Central London ICB - 93C ,Y00316,Woodlands Medical Practice,5065.830109,4.7745,66.3793,59.1398,2.8248,64.574,74.2268,1.4989,79.1667,2.7852,0.9224,0.442,1.4415,15.9496,6.0279,10.4535,65.3061,80.5825,0.6533,1.0953,8.1603,0.8506,79.0743,94.4444,64.4444,88.8889,14.3208,1.1337 North Central London ICB - 93C ,Y00612,Green Cedars Medical Centre,4947.899154,3.7748,58.9744,54.1667,2.1508,64.0884,77.0115,1.99,88.8889,3.2233,0.5226,0.4422,0.9958,35.0383,10.4397,12.5427,75.9704,83.1325,0.3819,1.1859,14.3606,0.0708,90.9195,93.0693,89.8734,91.1392,20.3353,0.9246 North Central London ICB - 93C ,Y01066,Hanley Primary Care Centre,10008.27787,5.1048,60.1695,44.898,1.4596,65.3846,74.7475,0.7651,88,1.6371,0.8154,0.2919,2.3824,31.7024,4.072,6.2311,65.3986,83.5821,0.3121,0.9966,7.4282,0.2468,82.7355,89.5833,83.6066,90.1639,13.5969,0.5738 North Central London ICB - 93C ,Y01655,The Vale Practice,7826.651227,4.8854,68.8235,59.1195,2.5855,65.7658,76.3636,0.8845,93.1035,1.1014,0.554,0.1652,1.3049,19.4352,2.5322,6.2986,57.1675,78.2609,0.1944,0.9526,5.8662,0.3328,79.0225,82.4561,86.8421,89.4737,12.8292,0.6804 North Central London ICB - 93C ,Y02117,St Ann's Road Surgery,17207.37842,4.1135,53.3546,51.5385,2.0725,59.3476,69.0476,1.4768,77.2358,2.9386,0.8005,0.3351,1.8997,31.6734,7.8878,11.7027,65.6663,81.3636,0.6019,1.4644,11.4351,0.3273,80.3647,85.6716,78.744,90.8213,17.9843,0.999 North Central London ICB - 93C ,Y02986,Cricklewood Health Centre,4253.253648,2.9521,46.0317,40.678,1.0813,52.8369,68.254,0.6179,82.9787,1.6529,0.6179,0.0579,1.2279,26.0181,4.7285,5.8699,57.3826,66.6667,0.251,1.062,9.7993,0,77.5665,80.4878,,,20.6235,0.5406 North Central London ICB - 93C ,Y03035,Queenswood Medical Practice,20947.93144,6.043,69.8492,59.8291,3.7214,67.9864,74.6637,1.8011,86.6667,2.2638,1.4711,0.495,1.5149,19.3988,5.5108,11.4116,67.3263,80.1435,0.5362,1.3657,8.6979,1.5539,80.0043,83.4615,80.2326,87.7907,15.2057,1.1732 North Central London ICB - 93C ,Y03135,Bridge House Medical Practice,8516.215515,3.9649,55.615,48.951,1.8184,43.2367,60.2837,1.1324,69.2308,2.1785,0.6206,0.3593,1.6834,25.6392,5.065,8.4821,71.2919,81.579,0.7513,1.176,8.912,0.4708,64.2016,90.9836,85,92.5,21.7862,0.6533 North Central London ICB - 93C ,Y03402,Evergreen Primary Care Centre,20163.29966,4.3546,57.1802,60.8833,1.8987,57.3092,67.5585,1.68,66.7969,2.9064,1.004,0.2634,2.2429,37.9245,9.7291,12.3863,54.8791,76.7442,0.3728,1.2973,16.9741,0.3233,79.3853,90.9091,70.979,93.3566,21.5648,0.7903 North Central London ICB - 93C ,Y03663,Hendon Way Surgery,7234.473551,3.3403,55.0633,50.3759,1.6227,47.1883,61.9403,1.6984,84,1.6933,0.4544,0.2705,1.1839,19.3808,6.5907,9.563,63.3333,82.8358,0.4111,0.7464,9.9532,0.6434,76.078,90.8163,75,88.0435,14.0285,0.7032 North Central London ICB - 93C ,Y03664,Dr Azim & Partners,6942.059736,3.4386,55.1136,51.8797,1.9187,54.3243,70.7692,1.519,78.7234,2.0492,0.6624,0.3312,0.8762,17.741,6.4908,9.9703,56.5035,79.7468,0.651,0.8566,10.1752,0.7529,73.989,82.4074,81.6092,81.6092,16.0244,0.8566 North Central London ICB - 93C ,Y05330,Tottenham Hale Medical Practice,4003.598717,3.5663,52.1739,51.1111,0.8763,60.3834,68.1818,0.6037,78.9474,0.6501,0.3895,0.0779,2.2192,32.5057,3.2294,4.4985,75,86.6667,0.4674,0.7984,8.2493,0.3257,83.871,97.0588,85.1852,88.8889,17.977,0.2921 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence Norfolk and Waveney ICB,D82001,Holt Medical Practice,17041.9993,8.3602,76.5499,75,6.445,72.9373,74.3506,4.3953,93.8272,7.6993,1.9441,1.2749,1.2517,19.6745,8.6166,20.8847,68.9837,84.9829,0.486,1.0284,14.5504,0.3074,89.8649,77.3537,91.623,97.9058,11.2379,3.3528 Norfolk and Waveney ICB,D82002,Grove Surgery,13206.50622,6.4875,68.593,68.231,3.6251,66.0333,72.4576,3.3761,85.7143,4.115,2.1315,0.5679,0.5906,23.697,6.8742,15.0836,81.0233,91.1392,0.809,0.8635,15.395,0.1245,86.3489,89.8305,85.6164,95.2055,23.6876,1.867 Norfolk and Waveney ICB,D82003,Beaches Medical Centre,29049.52574,7.7321,67.1249,67.931,4.9023,70.494,73.8255,3.8001,92.7273,6.2191,3.5255,1.2296,0.4209,29.9367,9.7051,16.6368,57.4198,70.5029,0.772,1.2296,11.7746,3.2216,86.1602,76.9231,67.7419,78.2258,18.6176,2.3557 Norfolk and Waveney ICB,D82004,Cromer Group Practice,16141.87294,8.737,75.4839,76.0331,7.3173,72.3485,73.93,4.8672,89.2857,7.3768,3.2558,1.5868,0.864,23.805,9.7002,23.7853,61.6809,72.4269,1.1675,1.4306,14.2979,0.7295,87.6861,80.5851,61.2903,90.3226,13.9885,3.2969 Norfolk and Waveney ICB,D82005,Sheringham Medical Practice,12210.64405,9.4452,77.2102,78.2918,6.9581,72.3757,76.7568,5.2159,86.3636,8.2853,2.9927,1.7422,0.3677,16.4092,10.0024,24.5511,66.37,78.5912,0.8016,1.0368,9.1801,0.6024,90.3221,74.9186,86.2319,94.9275,11.4026,3.8157 Norfolk and Waveney ICB,D82006,Chet Valley Medical Practice,9024.023957,6.0102,79.4805,81.6733,4.3989,80.2575,82.199,3.1357,87.3239,5.8084,2.0277,0.964,0.3212,15.328,7.7106,16.8421,62.5335,82.4561,0.9751,0.9086,12.5402,0.2207,88.6437,81.6327,83.871,89.2473,10.0899,2.7368 Norfolk and Waveney ICB,D82007,East Norfolk Medical Practice,29865.04299,7.9176,64.4254,63.0824,3.6507,70.3166,73.8255,3.5355,90.583,6.0694,3.615,0.8064,2.0379,44.2938,9.6602,19.0442,68.7851,82.6484,0.7985,1.7082,16.4017,2.8456,88.4128,84.5008,87.6751,92.7171,27.078,2.2961 Norfolk and Waveney ICB,D82008,St Stephen's Gate Medical Practice,19982.48684,8.5497,76.8608,71.3235,4.1328,71.0123,79.4118,2.6107,94.1667,3.995,1.707,0.7822,0.7123,23.2742,6.4556,14.7289,71.4831,82.7536,0.613,1.4586,11.0994,0.8227,89.9071,80.9816,88.2353,95.7219,14.6124,2.357 Norfolk and Waveney ICB,D82009,Stalham Staithe Surgery,8827.351561,8.3917,72.6817,74.0586,5.4339,76.1006,78.1065,4.0687,95.2381,4.7589,3.2171,1.176,0.5692,24.3712,10.7076,24.1011,73.6462,85.9297,0.8651,1.0138,18.2767,0.6965,91.383,87.6238,77.4194,80.6452,14.7108,2.6899 Norfolk and Waveney ICB,D82010,Grimston Medical Centre,6386.293338,10.0255,79.2829,84.0491,6.0177,83.4711,80.6452,5.3763,100,8.203,3.5276,0.6414,1.1399,22.3357,10.4056,23.0334,72.5134,87.4126,0.9998,1.0187,18.194,0.4775,93.3271,81.3187,88.6364,94.3182,11.1845,3.7917 Norfolk and Waveney ICB,D82011,Castle Partnership,18396.96135,7.5576,72.1311,68.306,3.969,69.7749,73.913,2.9159,90.0709,4.7639,1.7212,0.9852,1.3018,24.2708,7.0263,14.8115,67.848,81.6144,0.8719,1.2966,10.9265,1.2302,89.6366,75,83.1522,91.8478,17.4406,2.1911 Norfolk and Waveney ICB,D82012,Magdalen Medical Practice,14649.38883,8.3217,74.0385,72.9825,3.8405,78.9279,80.5785,3.0111,88.6179,5.5697,2.2374,0.8782,1.0613,23.2783,7.1303,16.784,70.4989,82.8014,0.9549,1.1431,12.5149,1.3124,88.926,83.0565,89.1156,93.1973,16.0643,2.2513 Norfolk and Waveney ICB,D82013,Old Catton Medical Practice,7159.915511,6.9509,75.5814,77.8409,3.15,74.8299,76.6917,2.7986,94.1861,4.6002,1.5992,0.7027,1.4471,12.7624,6.7637,14.6232,73.8854,80.7547,0.63,0.8965,10.9673,0.3583,89.4426,80.9524,95.122,89.0244,13.9994,1.7204 Norfolk and Waveney ICB,D82015,Bridge Street Surgery,10360.30676,8.2283,74.4318,82.1429,5.6743,75.5869,77.9762,4.5818,96.0526,5.2309,2.8313,1.2688,0.6817,21.0513,10.4704,21.6635,72.1094,81.7376,0.5874,0.5874,14.8859,0.4399,90.0061,82.197,88.6364,93.9394,13.0411,3.172 Norfolk and Waveney ICB,D82016,Market Surgery,11345.76858,8.2619,77.1167,79.4224,5.3353,79.7048,81.8182,3.8363,90.5882,3.8471,1.8935,1.5779,1.1077,16.0197,7.9628,18.7673,62.6214,76.5727,0.6607,0.8777,14.1615,0.7933,89.8874,69.7674,91.0569,92.6829,11.2188,2.6035 Norfolk and Waveney ICB,D82017,Trinity & Bowthorpe Medical Practice,10829.91198,8.4512,69.0096,65.4206,3.1915,66.8317,71.9298,2.825,88.2353,4.1596,2.2975,0.5721,1.4394,24.9487,7.569,15.1082,56.2101,69.7509,0.8493,1.2605,18.3158,1.0159,86.2394,83.5749,74.1935,95.9677,17.5441,1.8058 Norfolk and Waveney ICB,D82018,Hellesdon Medical Practice,11661.26618,6.8397,77.037,76.5568,3.9308,77.8816,80.6604,3.8767,95.4546,5.9253,1.3884,1.2261,0.8932,12.7486,7.878,16.7057,78.8922,84.5261,0.577,0.4418,11.6218,0.1157,89.3115,74.1525,85.0746,91.0448,12.1626,1.8392 Norfolk and Waveney ICB,D82019,The Millwood Partnership,22297.86215,8.6393,74.8428,73.9806,5.3544,81.7204,80.3109,4.2744,95.9732,6.3057,3.2147,1.1764,0.5593,22.7089,9.34,19.0244,77.851,86.8512,0.5882,0.9482,14.8792,3.4783,89.4272,77.1825,79.5222,58.0205,13.3412,2.6975 Norfolk and Waveney ICB,D82020,Orchard Surgery,11548.2965,8.4821,72.2222,72.5,4.228,76.4012,78.866,3.3969,89.2157,7.2295,1.9604,1.31,0.9292,19.8088,9.0087,17.6619,68.7458,84.1667,0.7498,0.7679,19.5014,2.735,88.0447,75.3788,86.8966,95.1724,16.1198,2.3128 Norfolk and Waveney ICB,D82022,Lawns Practice,7804.427783,7.2157,71.5827,70.2857,4.346,69.802,76.087,3.1481,92.1875,2.1137,1.8526,0.8915,0.3187,17.078,8.6424,17.983,79.5038,86.8132,0.599,0.8358,14.1923,0.1724,86.6057,85.4962,90.625,96.875,15.6219,2.3541 Norfolk and Waveney ICB,D82023,Roundwell Medical Centre,12752.21042,6.9165,76.3085,71.7557,3.1032,70.3636,73.1818,2.4051,93.9394,2.8469,1.2993,0.4631,1.7099,13.6667,7.4493,13.325,66.1664,79.2208,0.6428,0.7257,13.6079,0.3967,87.5239,83.913,80,92,12.9292,1.7002 Norfolk and Waveney ICB,D82024,Taverham Surgery,7522.589788,8.121,79.2254,79.7101,4.6706,77.9661,81.7143,3.2325,94.2308,4.9469,1.3397,1.2291,1.4198,9.2539,7.1175,16.1504,60.6275,74.2331,0.7498,0.7621,13.0175,0.5956,89.633,80.7947,69.6629,91.0112,9.6783,2.028 Norfolk and Waveney ICB,D82025,Hoveton & Wroxham Medical Centre,11450.11381,8.2853,78.2135,77.8182,5.5455,72.6908,79.2929,4.643,90.3226,4.748,2.5271,1.5142,0.5393,17.1579,8.9663,19.986,75.0892,84.9662,0.9126,0.7621,14.2673,0.2751,88.1857,77.7344,80.2817,90.8451,11.2841,3.0786 Norfolk and Waveney ICB,D82026,Lakenham Surgery,9847.954471,8.8329,69.9248,70.6897,3.4285,69.1083,74.4681,3.0463,79.4872,3.318,2.3269,0.652,1.8689,27.1858,7.6357,12.6349,68.2558,77.6515,0.7307,1.821,11.5114,0.2653,89.6291,84.2424,85.2632,91.5789,18.4438,2.0796 Norfolk and Waveney ICB,D82027,Heacham Group Practice,10607.40762,9.1082,76.9608,83.5341,6.6869,75.6944,72.4551,5.976,93.1818,10.9751,3.4224,1.935,0.5525,19.6176,10.5489,28.0111,71.956,80.9932,0.6187,0.8819,16.4551,0.3033,90.6417,81.5436,83.2061,96.1832,11.8014,4.5676 Norfolk and Waveney ICB,D82028,Ludham and Stalham Green Surgeries,7608.019581,8.2322,75.5853,78.5714,6.9376,85.8333,82.4,5.5943,97.0588,8.9373,2.7036,1.4793,1.3161,20.7559,9.9844,22.8193,64.8536,81.8653,0.6802,0.8332,17.0693,1.9177,88.6232,86.0697,84.0426,92.5532,11.6743,3.4688 Norfolk and Waveney ICB,D82029,Drayton Medical Practice,18440.68607,9.2435,78.2923,78.692,4.8844,81.4208,83.0688,3.3697,94.9045,4.6242,1.3978,1.3234,0.9288,11.3966,8.0514,15.6258,77.2146,84.4,0.6112,0.7069,11.2434,0.8353,91.0064,78.3641,90.8297,96.9432,10.1679,2.3917 Norfolk and Waveney ICB,D82030,Reepham & Aylsham Medical Practice,9174.910457,9.2128,80.4296,78.2101,6.091,80.3828,84.0206,3.4694,95.6522,6.3175,1.7849,1.1379,0.2799,14.6647,7.458,17.1687,74.4048,88.7052,0.6917,0.8032,15.6338,0.4415,92.4957,76.4103,89.4231,95.1923,10.842,2.5324 Norfolk and Waveney ICB,D82031,Parish Fields Practice,8937.397784,7.453,76.8997,71.8447,5.1058,72.0524,75.7764,4.1697,92.1875,3.6636,1.7384,1.0819,1.0962,16.9499,8.2989,19.4748,72.9381,85.6164,0.62,0.8753,16.7893,0.2976,88.1916,79.7753,88.785,95.3271,15.4752,2.7595 Norfolk and Waveney ICB,D82032,Brundall Medical Partnership,8720.035886,9.4088,78.1609,79.4521,4.6883,80.5687,81.8182,3.5287,95.8333,3.9832,1.7332,1.6459,1.2878,10.8233,7.8321,17.5187,72.8407,88.7052,0.4738,0.7481,10.9164,0.2183,90.4053,82.1918,85.8696,90.2174,10.3519,2.4314 Norfolk and Waveney ICB,D82034,Attleborough Surgery,17876.56198,7.2836,74.247,73.8426,4.659,75.7519,75.9644,3.3348,95.0311,3.9729,1.789,0.9296,0.7035,14.2853,8.24,17.0684,63.7881,72.5361,1.108,0.8215,15.128,0.1732,87.4876,80.3618,79.717,89.6226,13.1739,2.2538 Norfolk and Waveney ICB,D82035,Upwell Health Centre,12689.10353,9.3214,71.3376,76.9231,4.4838,73.0375,76.1905,4.6488,88.2979,3.8496,3.3468,0.7702,0.5914,29.3418,10.7477,20.64,72.6111,82.9268,0.5593,0.6327,22.919,0.1464,91.3,88.4058,88.5057,94.8276,15.6361,2.9158 Norfolk and Waveney ICB,D82036,Old Mill and Millgates Medical Practice,8540.567012,7.7069,82.0442,82.0084,5.3286,82.9268,82.2917,3.4479,94.7368,4.8546,1.1754,0.8956,0.6583,10.1487,6.7659,16.4446,63.7201,77.0235,0.5261,0.6045,9.2704,0.3235,91.4429,82.9546,94.2529,97.7011,8.4631,2.3732 Norfolk and Waveney ICB,D82037,Long Stratton Medical Partnership,11236.1998,7.9305,78.5714,79.8013,5.0264,80.5112,81.9328,3.706,96.5909,5.2569,1.7518,1.0211,0.4426,13.5744,8.8123,16.3292,71.9495,80.8858,0.493,0.7835,14.13,0.0913,88.1112,81.1808,85.7143,94.8052,10.8826,2.2711 Norfolk and Waveney ICB,D82038,Wells Health Centre,3944.643781,8.428,75.3247,71.7172,5.827,77.6316,77.6316,4.7951,86.6667,9.5646,2.4279,2.1851,0.6781,21.9887,9.0973,20.7891,61.7284,81.9096,0.6373,1.1229,12.3126,0.7499,93.3007,77.1429,84,94,16.3694,4.0971 Norfolk and Waveney ICB,D82039,Mattishall Surgery,8972.82657,10.3782,78.2946,76.378,3.1978,78.7037,79.5699,4.3216,94,8.3345,1.9233,1.6568,0.774,15.3435,9.2833,21.5966,70.3013,84.8936,0.7183,0.7763,17.5536,0.6961,83.4978,75.2137,85.2459,96.7213,10.7897,3.0124 Norfolk and Waveney ICB,D82040,Wensum Valley Medical Practice,12483.0906,7.5373,62.5468,57.6923,2.1241,58.8496,65.9218,2.211,85.0746,2.075,2.7243,0.2606,1.6621,37.9068,7.9108,10.5022,53.5778,78.7736,1.1924,1.3266,14.3447,0.057,81.7472,80.9278,74.1259,93.7063,26.6706,1.5003 Norfolk and Waveney ICB,D82041,School Lane Surgery,11137.01919,7.1208,68.5294,70.4918,3.7717,70.5539,78,3.1598,85.2273,5.9851,3.105,0.6027,0.9879,24.1243,8.7178,15.6438,71.8519,83.1956,0.7306,0.5936,16.3354,0.8563,89.881,87.0722,92.0863,92.0863,21.8403,1.8448 Norfolk and Waveney ICB,D82042,E Harling & Kenninghall Medical Practice,8829.161469,8.1687,77.5726,78.8235,5.4433,74.6725,79.602,4.1112,93.5484,3.2505,1.8718,0.7924,1.0974,16.3929,7.7945,16.8006,55.9787,73.3533,1.0795,0.4938,10.8348,0.1346,84.9879,84.6995,80.8511,90.4255,11.2186,2.6298 Norfolk and Waveney ICB,D82043,Watlington Medical Centre,7586.0579,6.6255,73.5395,82.4121,5.1267,76.7956,75.6944,4.0574,90.4762,3.0486,2.036,0.4248,0.1241,19.3824,9.6063,18.6759,74.0513,82,0.7031,0.6445,12.212,0.4376,90.9259,82.4324,90.1961,94.1176,11.2914,2.9295 Norfolk and Waveney ICB,D82044,Vida Healthcare,37387.25274,8.134,71.8831,77.2049,4.271,64.1638,70.8955,4.284,86.7704,6.5254,2.4936,1.1556,1.6393,24.8076,10.4609,20.3945,76.6442,86.4898,0.6022,0.8431,19.3043,2.8815,88.0363,81.8083,74.9035,95.1737,16.5084,3.3302 Norfolk and Waveney ICB,D82045,Wymondham Medical Partnership,18035.70239,8.6808,77.812,78.1938,4.0744,79.5414,77.748,3.0622,92.5466,5.9479,1.4489,0.894,0.6254,11.6748,7.7715,16.8011,69.0349,77.8443,0.6834,0.709,13.8502,0.7562,89.8514,76.8692,80.3922,94.6078,9.9603,2.2093 Norfolk and Waveney ICB,D82046,Church Hill Surgery,4659.834,7.8997,79.902,75.1938,5.111,81.8182,79.1667,3.4297,100,8.6356,1.9502,1.1432,1.1099,16.8291,8.8196,20.7128,75.8717,86.4734,0.6053,0.6501,22.8749,0.1675,94.6909,80.1887,90.4762,98.4127,11.447,2.7572 Norfolk and Waveney ICB,D82047,Oak Street Medical Pract.,8043.187949,7.7238,70.8861,68.8406,3.5038,70.2222,75.4717,3.1647,89.7436,1.441,3.2778,0.5086,0.9026,28.7457,6.9145,13.2523,62.7235,75.8294,0.7347,2.2888,11.7973,0.0706,82.1998,80.1724,74.026,92.2078,18.74,2.091 Norfolk and Waveney ICB,D82048,Thorpewood Medical Group,11890.2132,7.9469,72.2084,73.1618,3.9119,75.3281,79.386,3.2627,92.9293,2.5351,1.2985,1.0355,1.7308,16.8235,7.1529,17.4063,68.9677,82.7458,0.6164,0.9698,10.5885,0.1174,86.0235,77.8351,68.9922,87.5969,13.038,2.0792 Norfolk and Waveney ICB,D82049,Litcham Health Centre,3666.276734,7.7101,78.1818,78.3019,5.1681,79.5181,81.9277,4.3901,92,6.2878,2.1395,0.3612,1.6812,20.1276,10.1124,19.0331,81.391,90.1961,0.3612,0.4724,21.2845,0.3631,93.9668,93.578,96.4286,100,10.7756,1.6393 Norfolk and Waveney ICB,D82050,Theatre Royal Surgery,9722.742894,7.7566,73.9394,73.6364,5.0216,72.9839,76.4045,3.7246,93.75,6.25,1.8069,1.4854,1.0528,19.6959,8.7809,19.0999,74.1936,87.6106,1.0864,0.7649,15.1919,0.3016,89.0635,81.8182,87.5,96.0938,16.2703,2.8822 Norfolk and Waveney ICB,D82051,St James Medical Practice,20598.18919,8.1298,70.1031,76.8229,3.8486,66.1538,67.3684,3.6832,86.7925,4.4056,2.56,0.8895,1.4685,28.7111,8.6779,15.8846,65.7945,77.3392,1.1061,1.1118,14.3287,2.2021,85.9342,80.8184,82.4561,92.5439,21.0324,2.3833 Norfolk and Waveney ICB,D82053,Mundesley Medical Centre,7546.447655,11.3795,75.8621,75,6.7507,71.6667,76.9231,6.578,88.4615,9.149,3.8501,2.02,1.2785,23.0561,11.2078,24.7238,80.8271,89.6739,1.8819,1.5021,20.2557,0.6793,91.0424,76.1506,91.5094,93.3962,14.0435,3.9019 Norfolk and Waveney ICB,D82054,Fakenham Medical Practice,18331.32078,8.358,76.0355,75.463,5.6597,74.9367,75.6494,4.8191,91.3462,6.3235,2.1496,1.2898,1.2296,21.3476,9.3941,19.52,56.2923,77.2121,0.4813,0.9946,16.3739,0.3069,82.5332,81.2362,82.8054,89.5928,15.1062,3.0673 Norfolk and Waveney ICB,D82056,Elmham Surgery,10706.84665,6.8032,79.7753,77.6596,5.2007,78.8793,80.6604,4.2307,92.1875,5.7281,2.4043,1.7439,0.5716,17.6401,9.1589,20.5139,62.9477,81.3433,0.7739,0.6191,15.9294,0.17,85.975,79.3103,82.9457,87.5969,10.6452,2.7655 Norfolk and Waveney ICB,D82057,Campingland Surgery,9797.452378,8.9934,73.6527,81.4634,6.2744,74.7312,79.1367,5.2511,88.3333,8.6119,3.7162,1.5619,2.4037,25.054,11.1338,22.876,62.987,81.7987,0.4713,1.0368,14.2789,0.968,90.1621,84.5614,92.2481,95.3488,14.9568,3.4738 Norfolk and Waveney ICB,D82058,Coastal Villages Practice,21179.75482,8.4445,74.9721,72.4453,5.3209,78.7724,77.4869,5.4175,97.5904,7.0781,3.769,1.6543,1.0197,21.6168,11.3945,25.1208,63.612,77.3157,0.7902,0.8925,15.2288,2.1264,88.3278,82.3052,68.3077,89.8462,13.0152,3.5018 Norfolk and Waveney ICB,D82059,Birchwood Medical Practice,13677.12679,9.4996,76.4479,75.9146,4.8173,76.7742,79.0984,4.3991,94.3182,4.1046,2.3501,1.288,1.2877,20.7065,9.7721,19.7625,69.023,85.0722,1.0621,0.9116,14.2555,0.2116,90.8522,84.2809,83.0508,95.4802,14.6363,2.6344 Norfolk and Waveney ICB,D82060,Bacon Road Medical Centre,5308.575548,7.8162,66.4179,68.0851,3.6528,67.2956,75.3247,3.0987,77.7778,5.8792,2.7088,1.5391,1.4497,25.1266,8.6705,14.0571,68.4418,84.2697,1.3544,1.3134,14.2819,0.5152,91.7612,77.1429,77.4194,91.9355,19.1286,2.3805 Norfolk and Waveney ICB,D82062,Coltishall Medical Practice,9056.773178,7.0247,78.4703,78.8136,5.6343,79.4239,81.768,3.3896,93.421,8.8166,1.8479,1.2244,1.3638,12.9224,8.5057,18.49,63.4535,76.2557,0.3968,0.7142,10.1116,0.9844,85.9083,80.1724,84.0708,92.0354,10.6097,2.5167 Norfolk and Waveney ICB,D82063,Watton Medical Practice,14964.97299,6.7695,71.1656,67.5,3.7458,58.6047,68.4211,3.8516,89.7059,4.4762,2.4901,1.3474,0.6542,22.2759,9.6305,19.2367,70.6322,83.5655,0.9029,0.7336,14.6251,0.0959,86.5001,81.8697,91.0891,94.5545,18.4395,2.3632 Norfolk and Waveney ICB,D82064,Humbleyard Practice,19384.3738,6.7697,78.5515,77.686,4.6052,75.7823,79.0404,3.4562,91.8367,6.0791,1.2927,0.8169,0.4836,8.7588,6.9269,14.6326,64.7497,81.7319,0.5027,0.6419,9.9016,0.603,90.1857,75.7709,89.7196,94.3925,7.9982,2.0333 Norfolk and Waveney ICB,D82065,Manor Farm Medical Centre,9760.173523,7.8275,76.6129,81.0185,5.9907,76.7677,77.7778,4.9858,94.1177,8.7385,2.4221,1.0693,1.3231,23.9354,11.2279,21.8758,66.1882,87.3874,0.7601,0.9276,20.6,0.7541,89.4984,77.9412,88.1481,94.8148,15.0266,3.1306 Norfolk and Waveney ICB,D82066,Paston Surgery,8246.935404,9.7512,76,75.5319,5.0231,75.3086,74.3056,4.7548,96,4.4133,3.4431,1.4011,1.1384,20.7517,9.7975,22.0897,67.7419,81.6121,1.4905,1.1626,18.7566,0.4178,90.7403,80.791,91.3462,97.1154,15.1335,3.1898 Norfolk and Waveney ICB,D82067,The Park Surgery,18013.68304,8.3309,65.1332,63.1757,3.4312,79.4433,79.5082,3.3485,96.6443,5.0458,3.1487,0.7234,1.4256,50.3125,9.7686,14.9718,75.5643,86.0349,1.1575,1.1575,15.4484,2.1951,88.8817,82.3529,87.4419,90.2326,28.0343,2.3564 Norfolk and Waveney ICB,D82068,Howdale Surgery,8914.84455,7.5605,75.3012,84.3137,5.909,72.0379,75.3333,4.5384,98.1818,6.6615,2.8834,1.2283,1.2607,19.6282,9.3102,19.2009,69.3744,80.9179,0.4267,0.6465,16.1245,0.202,86.1041,80,77.9817,90.8257,12.0923,3.0385 Norfolk and Waveney ICB,D82070,Great Massingham Surgery,7222.429384,8.7333,74.7541,79.6875,5.4324,81.0458,80.4054,4.3397,91.8919,3.7901,2.7318,0.843,1.6244,23.4309,9.0993,19.8096,65.8317,77.4908,0.4839,0.7649,17.4197,0.2663,91.0854,83.4356,82.5,95,12.4865,3.0284 Norfolk and Waveney ICB,D82071,East Norwich Medical Partnership,14759.92496,8.0139,77.5047,79.1304,4.9026,82.3389,82.1818,3.449,95.9677,2.2565,1.4194,1.1588,0.5872,13.876,8.47,17.6701,67.6406,79.6855,0.816,1.0491,13.665,1.1246,91.0318,81.3492,71.7391,89.6739,12.2114,2.3039 Norfolk and Waveney ICB,D82072,Burnham Surgery,5129.739035,7.9022,75.3623,78.3333,6.7463,78.8235,75.9036,5.9995,100,3.5419,2.6388,0.8464,1.371,23.9328,8.6699,22.355,68.2109,82.7206,0.7468,0.8464,11.6253,0.1226,91.9895,84.4037,90.9091,98.1818,12.8724,4.4561 Norfolk and Waveney ICB,D82073,The Lionwood Medical Practice,14275.66981,7.7121,72.5248,71.4777,3.2151,76.1818,79.1165,2.6123,98.6207,2.4761,1.9332,0.8384,0.811,23.5758,6.1756,12.5,72.591,84.8635,0.6513,1.1918,11.5866,0.4463,88.9179,80.5825,87.9699,94.7368,15.9577,1.7461 Norfolk and Waveney ICB,D82076,Lawson Road Surgery,9162.299697,9.1613,78.4553,74.8663,3.4364,79.2169,81.1688,2.9059,93.1035,3.1087,1.6951,1.0955,1.6177,19.9061,7.4378,14.0683,61.8085,75.3571,1.0724,1.4068,12.8007,0.3928,86.3766,83.4437,82.6087,89.1304,15.5416,2.1333 Norfolk and Waveney ICB,D82078,Heathgate Medical Practice,9214.430658,7.9054,81.5657,79.7753,5.3027,82.4176,83.945,3.4336,97.0149,5.0761,1.3409,1.0057,0.6933,8.7786,6.8324,16.9951,72.0065,82.8375,0.447,0.7314,10.6599,0.6178,86.4755,79.4595,86.3636,89.7727,8.8696,2.3872 Norfolk and Waveney ICB,D82079,Feltwell Surgery,6197.713907,8.9753,74.1803,77.8481,5.3374,77.3973,76.9231,4.2519,95.5556,9.113,2.8225,1.1399,1.2136,19.054,11.2639,24.2084,64.8402,79.0124,0.4342,0.7237,20.3884,0.3263,91.7995,83.871,87.7551,96.9388,13.2821,2.6597 Norfolk and Waveney ICB,D82080,Blofield Surgery,8348.581148,8.8631,80.3859,78.5047,3.9751,82.6255,83.7989,3.5635,96.4706,3.6999,1.5759,1.376,0.5949,10.4477,7.0571,18.417,59.1837,73.5897,0.6821,0.6704,11.9124,0.3286,88.5132,79.8701,78.8235,89.4118,9.1819,3.0107 Norfolk and Waveney ICB,D82084,Harleston Medical Practice,9014.502768,7.1176,75.3501,75.9259,5.4895,80.203,82.1656,4.3005,100,6.5065,2.1376,0.8854,0.5074,16.5704,8.2757,19.3018,73.9859,89.0306,0.683,0.6957,11.2073,0.2547,90.2192,78.866,90.4762,91.4286,13.9709,3.0104 Norfolk and Waveney ICB,D82085,Hingham Surgery,7534.421897,8.152,79.4798,79.5652,5.275,82.4742,82.1229,3.4419,96,2.9108,1.5166,0.7781,0.2386,17.9408,7.6645,20.6515,63.2911,82.1192,0.633,0.5934,12.4066,0.1781,89.2461,82.1429,89.6552,96.5517,9.3645,1.8067 Norfolk and Waveney ICB,D82087,Prospect Medical Practice,7359.128665,6.6799,60.9272,61.4035,2.41,68.5185,72.2772,2.4387,97.3684,3.4716,2.7399,0.5881,0.9136,37.7923,7.6315,11.39,64.636,85.124,1.2624,1.9366,13.7036,0.7641,85.4666,85.7143,77.5,83.75,29.7355,1.6354 Norfolk and Waveney ICB,D82088,UEA Medical Centre,9674.019905,4.1197,79.6296,73.4694,0.4245,43.2229,75,0.1415,89.0411,0.0973,0.039,0.0049,1.285,16.135,0.7814,1.3808,63.6364,75,0.0439,0.4782,4.2953,0.2725,81.8015,100,81.25,93.75,9.2986,0.083 Norfolk and Waveney ICB,D82096,Woodcock Rd Surgery,8523.70725,7.2295,63.4921,62.5899,2.8002,71.0191,70.0855,2.6948,88.764,4.0117,2.437,0.4218,3.4122,36.2249,7.5128,11.0018,67.4055,84.8837,0.8553,1.0428,13.1417,0.2066,86.4303,85.625,83.3333,94.7917,27.8136,1.3825 Norfolk and Waveney ICB,D82099,Southgates Surgical & Medical Centre,17138.20213,5.9097,62.1381,66.573,3.0452,58.8235,64.2633,3.0743,77.7108,2.885,2.036,0.493,0.47,31.2146,7.4143,13.2947,61.5185,79.1328,0.7483,0.9455,12.4223,1.6286,88.8744,82.5153,81.4815,90.4762,27.8227,1.8504 Norfolk and Waveney ICB,D82100,Shipdham Surgery,4811.69306,8.4809,74.4076,75.3731,4.8628,76.5766,81.6327,3.9036,97.2222,6.9067,2.3199,1.6284,1.0667,16.3812,8.7863,22.8642,76.6954,89.7196,0.7361,0.87,20.4,0.2954,90.7895,80.5556,81.5385,95.3846,11.4982,2.1414 Norfolk and Waveney ICB,D82104,Acle Medical Partnership,10195.14736,8.8713,78.91,76.8683,6.4136,80.1653,79.6296,4.0269,97.2222,5.5938,2.0818,1.1671,1.2014,16.0666,7.9338,20.5236,56.1905,75.9336,0.8201,0.8411,15.968,1.5762,89.1701,79.0909,69.7479,91.5966,10.4129,2.4708 Norfolk and Waveney ICB,D82105,St Clements Surgery,8007.610682,8.2186,74.1497,79.798,4.1437,77.4194,75.1724,3.3938,89.8734,7.3455,2.1573,1.0655,0.4427,25.058,10.734,19.1002,77.261,89.6907,1.0129,0.4604,17.2979,0.1762,92.8553,86.2222,74.3802,97.5207,14.5706,2.1573 Norfolk and Waveney ICB,D82106,West Pottergate Med Prac,5463.381928,5.2995,71.3287,66.3265,2.7925,72.8395,77.5,1.7989,93.1035,2.8175,1.3192,0.7881,0.7554,24.3239,4.923,9.6796,78.8372,85.9259,0.514,1.1821,10.4328,0.1682,88.3536,79.3651,86.0465,97.6744,17.3158,1.4562 Norfolk and Waveney ICB,D82600,Fleggburgh Surgery,2138.701811,7.6332,76,73.7705,5.3191,77.5,76.9231,4.0957,80,5.9925,2.9787,0.5319,0.437,20.4754,7.635,20.9575,68.6901,80.2469,0.6915,0.6915,9.2385,0.543,87.0833,83.7209,86.9565,86.9565,12.956,2.1809 Norfolk and Waveney ICB,D82604,Boughton Surgery,3826.118337,8.4181,72.1519,78.7879,5.3095,79.2683,83.1325,4.3708,86.2069,2.3378,3.1094,0.5867,0.5932,20.9094,9.2951,20.5339,67.6749,81.8714,0.4694,0.616,11.6539,0.5417,93.1493,84.2105,91.4894,95.7447,12.379,3.0801 Norfolk and Waveney ICB,D82618,The Woottons Surgery,5848.610419,7.6897,80.6867,84.4156,4.8602,80.5405,78.3333,4.0475,96.3636,5.2115,1.9994,1.3166,0.461,11.9684,7.7699,17.2464,69.7436,85.4093,0.5039,0.6177,15.2536,2.5918,91.2071,76.7442,84.507,94.3662,9.7547,2.8771 Norfolk and Waveney ICB,D82621,Plowright Medical Centre,7982.005272,8.7155,74.2671,80.8511,6.2258,78.6164,80.303,4.6152,95.122,9.379,2.385,1.2545,1.7505,22.6075,11.5567,22.8124,66.2138,81.0298,0.3717,0.8983,19.3661,2.4219,89.1613,81.3853,85.5769,94.2308,14.057,2.9735 Norfolk and Waveney ICB,D82624,Windmill Surgery,6681.615469,7.6664,76.9231,78.2123,3.3171,83.6806,81.1688,2.2156,92.381,1.9021,1.2392,0.8887,1.0405,12.6817,5.392,13.118,62.704,76.8421,0.4506,0.7761,10.5511,0.302,87.8805,82.3529,72.8814,88.1356,12.1489,1.427 Norfolk and Waveney ICB,D82628,Aldborough Surgery,4274.87619,8.6027,76.0976,74.4186,4.129,75.5814,81.6327,4.0774,75,6.9328,2.7871,1.0839,0.7803,20.0419,7.9229,21.3936,70.2161,84.5304,0.3871,0.7742,14.0456,0.0439,90.3382,78.4091,76.087,95.6522,9.6572,2.6581 Norfolk and Waveney ICB,D83002,Alexandra & Crestview Surgeries,18435.27152,7.6356,71.4286,70.5167,4.2733,67.6275,70.8661,3.6089,86.3309,6.2597,3.2441,0.7687,2.412,40.2034,10.129,17.7708,61.0745,82.0132,1.1074,1.5308,15.6699,2.7538,87.4502,76.8322,65.2361,87.1245,23.2779,2.3647 Norfolk and Waveney ICB,D83009,Beccles Medical Centre,22115.04587,7.9557,78.9343,79.7688,5.8348,79.9163,78.7013,4.876,93.4959,7.2987,2.3504,1.1649,1.3605,19.1659,9.3184,19.4268,68.685,76.8802,1.1649,1.1958,15.8782,1.4955,91.2861,79.9314,80.2817,92.2535,12.6692,2.9535 Norfolk and Waveney ICB,D83010,Longshore Surgeries,8091.980185,8.7293,75.6757,71.2121,5.707,71.9424,72.6619,5.3583,89.7436,4.9505,3.3608,0.9987,0.5317,24.0816,11.5839,22.194,51.676,73.9264,0.4597,1.2207,18.5735,0.2937,85.8381,79.0476,80.1724,90.5172,14.6091,3.6145 Norfolk and Waveney ICB,D83011,Bridge Road Surgery,14241.76707,9.3103,77.2374,77.0642,5.6693,78.4566,78.6008,4.7883,95.122,7.6856,2.9529,1.2481,0.9025,21.8637,8.9637,20.3687,60.255,73.7374,0.6363,0.9299,17.2441,2.8339,86.8037,83.6207,85.0299,88.6228,12.4436,2.6674 Norfolk and Waveney ICB,D83016,Victoria Road Surgery,12838.34039,6.7868,77.0574,73.5632,5.2233,79.3814,80.5,4.2329,91.4286,6.9405,2.9621,0.9064,0.8078,28.9819,9.9136,18.2863,69.3571,83.0303,1.1867,1.2147,21.1856,1.8189,91.5541,83.1615,85.119,97.0238,16.6577,2.3827 Norfolk and Waveney ICB,D83022,Sole Bay Health Care,6462.245343,8.7629,79.4613,73.8636,6.9429,76.6355,79.4872,4.6041,96.7742,4.9306,2.1915,1.1971,0.4909,16.571,7.2091,20.0737,71.2987,83.125,0.5157,1.0681,12.4653,0.3747,87.9708,79.0476,82.8125,84.375,11.471,3.1676 Norfolk and Waveney ICB,D83023,High Street Surgery,14388.43937,8.7736,72.0988,70.0375,4.0566,69.4118,71.0145,3.6318,92.1569,8.2443,3.8734,1.1579,2.3333,38.0933,10.3589,17.9425,60.7488,81.7269,1.1745,1.0662,18.4071,1.4112,90.0751,83.2877,84.6591,97.7273,19.9382,2.3157 Norfolk and Waveney ICB,D83030,Kirkley Mill Health Centre,9183.906238,7.5713,62.1399,61.5894,3.9983,69.3396,73.913,3.3413,79.7101,5.0918,3.4112,0.4753,1.8705,43.1921,9.6223,16.5665,63.8469,78.125,1.3561,2.2927,16.1933,1.413,91.4873,76.6304,67.3077,89.4231,30.369,2.0271 Norfolk and Waveney ICB,D83034,Bungay Medical Centre,13513.08143,8.6,76.6537,76,5.1206,78.1046,77.9592,4.1152,90.5882,6.4313,3.0417,1.4399,0.7507,20.317,8.9542,19.6473,69.6429,81.7544,0.656,1.1161,15.3784,1.0837,87.6252,76.9492,84.0237,91.716,15.1558,2.8627 Norfolk and Waveney ICB,D83035,Cutlers Hill Surgery,12134.21717,7.4499,79.4444,74.4409,5.9994,80,80.8612,4.5778,95,7.047,2.1704,1.0046,1.1409,19.7103,7.8057,18.9271,76.603,87.9473,0.8625,1.1942,12.4609,1.4461,89.1257,79.6296,89.6,92.8,11.9544,2.8149 Norfolk and Waveney ICB,D83047,Rosedale Surgery,16938.12237,8.4362,77.8731,78.5354,4.8378,80.9013,80.5461,3.7839,91.6667,7.6293,2.2094,1.1047,1.1545,20.3315,9.4157,18.748,67.0246,76.0446,0.8698,0.946,13.8388,2.3076,91.4445,74.5958,76.8182,88.1818,13.8979,2.203 Norfolk and Waveney ICB,D83608,andaman Surgery,7754.76885,7.1776,75,74.7191,5.1577,81.9876,82.3529,4.3965,94.8718,7.4796,3.6508,1.3671,0.6438,23.687,10.4143,19.7452,58,80.9969,0.8078,1.1496,19.6743,2.8492,90.8114,73.9796,88.4211,93.6842,15.2493,2.5478 Norfolk and Waveney ICB,Y00297,The Hollies Surgery,4965.407024,7.8833,70.7006,76.1468,3.1661,66.2338,73.0337,3.2278,82.9787,5.0717,1.6447,0.8018,0.3186,21.3888,9.2452,15.3577,81.9897,85.9756,0.3701,0.9046,21.402,0.4601,87.4327,82.2034,67.6471,95.5882,19.4652,2.5699 Norfolk and Waveney ICB,Y01690,School Lane PMS Practice,5384.899539,5.4133,62.6984,60,2.1608,66.1597,69.4737,1.8132,82.5,2.2913,1.2844,0.6044,1.4346,24.6039,5.2343,9.9124,59.5628,79.4393,0.68,0.7555,15.0827,0.6039,86.6438,83.3333,89.1304,91.3043,31.5415,1.0124 Norfolk and Waveney ICB,Y02751,Norwich Practices Health Centre,9768.871774,5.8379,60.2564,53.211,1.6324,54.1593,60.5769,1.6596,85.7143,1.3028,1.1608,0.7708,1.7588,27.3873,4.495,7.2368,56.0305,79.7203,0.6257,1.3875,9.7709,0.383,84.2144,70.6522,78.0822,90.411,20.7419,1.1517 Norfolk and Waveney ICB,Y03222,St John's Surgery,7211.47967,8.182,70.8487,80.5714,3.79,87.5706,85.9375,4.0541,93.75,6.2916,3.3396,0.7766,0.9504,28.4275,11.6288,18.8568,75.3731,84.7826,0.8854,0.5126,17.5442,0.1917,94.1694,84.375,81.7391,97.3913,14.1226,3.0289 Norfolk and Waveney ICB,Y03595,Beechcroft and Old Palace,7566.610668,8.1667,72.4444,70.068,3.6022,79.5745,78.3784,3.8605,87.0968,3.9512,2.9564,0.7893,0.7723,23.1382,8.9039,15.4707,63.5392,77.9661,1.4495,1.4925,15.9483,0.3298,89.2778,86.3309,82.9787,94.6809,18.0374,2.3106 Norfolk and Waveney ICB,Y05291,Toftwood Medical Centre,4381.681166,8.4318,77.7778,75.2688,4.7126,82.9268,82.1918,3.3309,88.3721,5.8069,1.8258,0.8882,0.4584,15.266,8.2831,19.8125,69.2437,84.6154,1.283,0.7155,20.5073,0.2189,91.0382,86.5979,83.3333,88.8889,14.1469,2.566 Norfolk and Waveney ICB,Y06275,Nelson Medical Centre,6482.049208,8.1619,54.9383,55.1402,2.3524,67.6617,75.8621,2.9605,89.3939,4.514,3.4086,0.5601,1.2177,50.1211,10.0536,15.3625,69.895,85.4369,0.8481,1.6323,16.8801,1.15,85.6526,88.1579,84.6154,93.4066,30.7153,1.5362 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence Staffordshire and Stoke-on-Trent ICB,M83001,Horsefair Practice,12600.69151,5.9897,70.7944,63.6691,4.4315,77.3842,78.0822,3.9917,90.2256,3.1351,3.0871,1.0954,2.3435,17.5493,9.439,21.2033,73.2496,86.5703,0.7137,0.6556,17.8523,0.1782,88.5684,86.7596,83.815,93.6416,14.8335,1.8174 Staffordshire and Stoke-on-Trent ICB,M83016,High Street Surgery,7859.684821,7.1439,73.9394,81,5.2298,76.5306,77.1429,4.3077,97.4026,6.3186,2.2158,0.6469,1.0309,15.557,8.795,20.2863,73.8707,82.8986,0.4542,0.7019,10.6917,0.5063,90.5919,85.3801,83.5052,90.7216,11.011,2.4773 Staffordshire and Stoke-on-Trent ICB,M83033,Hednesford Medical Practice,7377.992573,5.8695,69.6078,80.7407,3.5174,74.5968,70.6422,3.1686,95.4023,3.8782,2.9361,0.8285,3.3527,21.6739,8.484,16.2791,70.0903,76.4957,0.4797,0.7558,13.0482,0.7645,86.9797,86.3636,83.7209,91.8605,17.0917,2.0494 Staffordshire and Stoke-on-Trent ICB,M83048,The Nile Practice,10118.13385,6.1765,73.9766,75.4464,4.1205,77.3852,80.2469,3.485,89.7436,3.5229,2.2653,0.6458,1.0377,17.9979,8.6336,16.8922,75.0958,83.965,0.4203,0.5433,9.6592,0.4079,90.4913,90.7692,83.3333,88.8889,13.326,2.009 Staffordshire and Stoke-on-Trent ICB,M83063,Norton Canes Health Centre,3699.787552,6.9611,67.2,62.7907,3.7308,79.8507,73.2394,3.209,100,6.1163,2.3219,0.4435,1.9385,21.0456,9.5207,16.5667,77.2812,84.6939,0.4696,0.7305,19.4185,0.348,89.1304,89.4231,83.6364,94.5455,13.8023,1.5654 Staffordshire and Stoke-on-Trent ICB,M83107,Alderwood Medical Practice,7300.146463,7.6923,67.5676,75.1678,4.5794,74.5192,75.8065,3.6396,89.5522,5.1698,2.3568,0.6712,1.5118,21.7181,9.1343,16.6617,60.3027,77.907,0.7757,0.7011,16.4614,0.4741,88.5383,85.2761,90.2174,93.4783,15.3652,2.1778 Staffordshire and Stoke-on-Trent ICB,M83109,Dr Manickam & Partner,4163.948131,8.0102,69.2913,77.2727,4.0063,76.9231,76.1905,3.5846,100,6.2337,2.135,2.1086,2.252,19.8935,7.6476,18.6083,74.635,86.7089,0.7117,0.8698,14.9151,1.6645,88.9585,92.7711,86.6667,93.3333,14.9062,1.845 Staffordshire and Stoke-on-Trent ICB,M83129,Heath Hayes Health Centre,10624.18455,6.7499,70.1897,74.2308,4.3526,73.7569,71.0145,3.9792,89.6825,3.8785,2.5952,2.1034,2.0946,17.6653,7.5692,17.1371,55.914,79.1878,0.6101,0.8742,14.8233,1.7481,86.8266,82.906,68.9076,88.2353,12.8279,1.9213 Staffordshire and Stoke-on-Trent ICB,M83130,Red Lion Surgery,4410.652536,7.6328,69.7842,77.551,4.9508,71.6814,78.75,4.1172,97.1429,6.6322,2.7027,0.5304,1.9775,20.9537,9.3825,18.7421,58.0645,76.6304,0.6567,1.1114,11.7432,0.1088,89.2383,88.5714,85.7143,91.0714,14.453,2.5006 Staffordshire and Stoke-on-Trent ICB,M83139,Moss Street Surgery,5695.87791,7.1201,70.2857,76.378,4.6947,76.129,75,4.2918,94.1177,6.7027,3.4858,0.7858,1.7186,26.5663,9.3321,18.8999,74.0741,89.6774,0.7052,1.1687,18.684,0.4617,91.9422,89.0411,83.5616,91.7808,15.9839,1.894 Staffordshire and Stoke-on-Trent ICB,M83608,Quinton Practice,5659.776101,5.8906,71.5909,78.125,4.4937,84.8684,80.9524,3.9439,91.4894,5.439,2.2184,0.5309,2.0512,16.5782,8.1758,16.2495,77.561,93.3884,0.7774,0.5499,16.0636,0.1222,94.673,83.6207,89.7059,94.1176,12.8036,2.3891 Staffordshire and Stoke-on-Trent ICB,M83616,Dr I Rasib & Partners,5369.273927,7.7453,66.0377,75.8929,3.7669,74.6835,78.8889,3.2176,97.561,5.5302,2.7663,0.569,3.3662,21.9731,8.27,13.4981,78.3486,86.014,0.981,0.6671,12.5751,0.4965,90.5011,78.4,90.625,98.4375,17.4403,1.6873 Staffordshire and Stoke-on-Trent ICB,M83637,Chadsmoor Medical Practice,4903.848693,7.2082,66.6667,76.8421,2.975,68.2353,70.8861,2.8519,90.6977,1.9251,2.6672,0.6771,2.6108,28.0824,7.6346,14.8338,55.9865,80,0.4924,0.7386,13.6603,0.2957,87.0647,80.2326,57.8947,85.9649,21.4091,1.4362 Staffordshire and Stoke-on-Trent ICB,M83638,The Colliery Practice,14618.67381,7.0417,71.6356,79.8365,4.6437,72.1983,73.1034,3.3189,93.3333,4.1168,2.7193,0.4811,3.3039,20.8356,8.3548,15.3884,66.8708,81.0219,0.8297,0.6624,18.2327,0.5087,87.3002,85.7605,75.5319,91.4894,13.8209,1.9872 Staffordshire and Stoke-on-Trent ICB,M83698,Southfield Way Surgery,4000.767839,6.5895,70.297,81.0127,3.483,77.1739,77.9412,4.3996,93.75,7.1959,2.7498,4.8579,1.6321,17.124,8.9312,17.8124,75.9305,91.1111,0.4277,0.9471,10.7567,0.5894,90.8338,79.7619,82.3529,90.1961,14.57,2.2304 Staffordshire and Stoke-on-Trent ICB,M83703,Brereton Surgery,5580.831135,7.1456,74.8634,76.1194,4.2315,77.7108,77.8846,3.4988,100,3.3929,2.7294,0.5312,1.8111,18.4822,8.0678,16.743,64.7697,78.9773,0.5496,0.6961,18.3173,0.3947,91.784,83.6735,84.8485,95.4545,15.0961,2.1799 Staffordshire and Stoke-on-Trent ICB,M83717,Norton Canes Surgery,3344.112483,6.4656,76.1468,68.2353,2.4135,78.5714,73.9726,2.8694,90.9091,1.0132,1.3677,0.3754,0.1351,19.0486,7.7874,13.9179,76.4846,85.7143,0.4559,0.295,10.6383,0.1452,86.0421,78,90.9091,95.4545,13.7483,1.3408 Staffordshire and Stoke-on-Trent ICB,M83719,Rawnsley Surgery,4464.902256,6.1809,70.1863,75.8929,4.0128,66.9014,70.2381,3.2832,89.1892,5.5853,2.28,1.4136,0.4796,17.0942,9.0123,20.1778,68.9065,77.7778,0.4788,0.6156,11.7348,0.3279,86.1032,92.5926,93.3333,91.6667,14.9352,1.5276 Staffordshire and Stoke-on-Trent ICB,M83727,Norton Canes Practice,4169.757943,6.0184,70.4819,85,4.4691,76.6667,72.973,3.358,92.1053,6.1665,2.4938,0.3951,0.6683,18.0458,9.982,18.8889,77.686,82.5,0.8642,0.5185,14.5201,0.5886,88.5301,91.3044,82.8125,90.625,11.7859,2.1481 Staffordshire and Stoke-on-Trent ICB,M83738,Aelfgar Surgery,7451.839912,6.591,75.1004,78.4884,5.0514,75.6345,79.2308,3.9338,94.2308,6.3677,2.8163,1.4603,0.8969,18.3123,8.6634,21.5318,60.8538,75.8721,0.7301,0.7301,18.3498,0.4837,90.5251,75.7764,80.2198,87.9121,14.0898,2.3991 Staffordshire and Stoke-on-Trent ICB,Y02354,Sandy Lane Surgery,10425.14822,7.4944,72.5,71.1628,4.4202,73.7762,74.7126,4.3248,93.0556,4.6947,2.7136,1.484,2.8485,19.0635,9.2963,17.7337,72.6703,84.0909,0.477,0.795,16.7348,0.0999,89.7447,82.6613,72.5191,88.5496,15.3693,2.12 Staffordshire and Stoke-on-Trent ICB,Y02594,Essington Medical Centre,2773.016446,7.5076,77.2727,82.7586,3.8367,78.125,88.8889,3.2031,97.6191,6.7442,2.2527,1.5488,3.907,18.6088,7.657,17.4938,68.6813,81.9549,0.1408,0.4576,12.4651,0.8318,91.5527,88.0597,70.9677,83.871,11.0708,2.3583 Staffordshire and Stoke-on-Trent ICB,C81018,Dove River,8912.664722,6.9825,76.7442,73.5632,5.5755,74.4681,77.1144,3.5938,97.5,6.869,1.5226,1.03,1.7884,13.3794,8.1034,20.6113,77.2822,86.2069,0.3695,0.515,14.6999,0.5503,84.3087,79.2952,79.7872,94.6809,8.6865,2.3175 Staffordshire and Stoke-on-Trent ICB,M83010,Gordon Street Surgery,9799.591383,5.4825,55.0459,55.9006,2.0927,60.0998,69.2308,2.0646,78,4.4719,1.098,0.5818,1.2231,29.2363,9.4851,11.4302,65.6863,77.7778,0.3754,0.6194,14.4987,0.3625,87.4926,86.6973,83.3333,93.0556,18.4378,1.0041 Staffordshire and Stoke-on-Trent ICB,M83013,Yoxall,4764.537548,5.4358,76.1682,85.5172,6.7362,76.2887,77.5862,4.3025,84.6154,5.3218,1.5863,0.8692,1.6219,9.6643,8.8677,18.6658,70.5512,81.6964,0.565,0.3042,11.3786,0.7815,85.4768,82.243,81.8182,90.9091,7.0464,2.4555 Staffordshire and Stoke-on-Trent ICB,M83026,Carlton Street Surgery,16312.20884,6.0835,64.0884,71.9101,2.1582,58.2633,68.2403,2.2589,81.1448,4.0291,1.4929,0.7884,1.2309,25.9629,7.6085,11.82,67.6871,81.7143,0.5927,0.7436,11.5214,0.3043,87.136,87.3457,82.6087,94.5652,16.829,1.2972 Staffordshire and Stoke-on-Trent ICB,M83027,Trent Meadows,10073.8792,7.802,76.9444,84.0909,4.4926,73.7609,81.3084,3.2812,96.1165,5.3973,1.7837,0.4865,1.2207,13.0869,7.9958,16.301,78.9205,88.4615,0.3815,0.496,15.1867,0.3671,90.5029,81.7814,86.7188,93.75,9.9403,1.7646 Staffordshire and Stoke-on-Trent ICB,M83035,Alrewas,6344.469538,6.9048,80.1394,78.125,4.7079,79.6117,83.3333,3.5589,88.7324,4.9642,1.163,1.0789,0.4894,7.2902,6.9007,14.3758,75.3181,91.6667,0.2662,0.4484,11.8161,2.283,82.906,73.913,83.3333,88.8889,6.8762,1.7795 Staffordshire and Stoke-on-Trent ICB,M83037,Tutbury Health Centre,8192.227327,5.9564,79.1277,76.7857,4.7681,78.5714,80.1105,3.843,93.8462,6.0082,1.7317,0.7117,1.0474,11.5424,7.5456,18.3252,61.6667,75.3623,0.5575,0.4389,11.5508,0.9313,79.7246,80,89.1304,93.4783,8.7597,2.0282 Staffordshire and Stoke-on-Trent ICB,M83042,Bridge Surgery,11547.95751,7.4239,74.3529,69.7917,3.9873,70.7407,74.4186,3.2849,90.8046,3.2565,1.9294,0.9103,1.4143,18.4214,9.2608,17.7303,74.7187,78.2135,0.8905,0.7124,10.9936,0.203,87.6126,81.5,84.7222,94.4444,13.1851,2.2559 Staffordshire and Stoke-on-Trent ICB,M83051,Wetmore Road Surgery,13249.7,8.3333,71.2846,73.2143,4.2095,64.3902,70.7763,3.6347,90.5512,6.3783,2.2343,0.7043,1.6722,20.8697,9.6314,18.9023,64.9206,80.6742,0.9795,0.931,21.2877,3.6221,88.5445,85.0416,80.3468,92.4855,17.5367,2.1533 Staffordshire and Stoke-on-Trent ICB,M83059,Abbots Bromley Surgery,3718.346148,7.0036,83.237,83.1858,6.2022,83.7209,81.3187,4.5131,95.4546,8.9776,2.0322,0.6598,1.2469,11.0016,7.8062,19.4774,82.8877,89.8305,0.3167,0.2639,12.5312,0.714,87.9843,83.4952,89.3617,97.8723,7.6699,2.0586 Staffordshire and Stoke-on-Trent ICB,M83065,Barton,6819.580127,7.5254,76.9759,79.798,5.88,81.4815,76.7857,3.0423,93.2203,6.0101,1.6644,0.5866,1.1111,8.2914,7.8542,18.5812,68.5024,87.4618,0.2865,0.5048,12.5421,0.412,88.7787,87.6471,85.1852,92.5926,7.9216,2.3738 Staffordshire and Stoke-on-Trent ICB,M83073,Stapenhill Medical Centre,10611.01164,6.1852,69.0625,76.3033,3.3407,65,69.4915,3.531,83.1325,1.5976,2.1144,0.814,1.1355,23.1684,7.8268,12.7075,58.661,81.2261,0.666,0.7612,7.4333,0.2538,87.0968,90.0662,73.1481,96.2963,20.0329,1.9875 Staffordshire and Stoke-on-Trent ICB,M83074,Balance Street,13943.73952,7.3846,74.9027,75.9003,4.8497,78.9082,79.8635,3.3716,97.3913,2.9348,1.5133,1.0629,1.312,14.5539,8.0707,16.8086,60.4167,74.031,0.4505,0.732,14.3202,2.1277,82.6295,89.4161,83.7989,93.2961,11.6915,1.9709 Staffordshire and Stoke-on-Trent ICB,M83641,Mill View Surgery,2070.056179,4.6663,67.1642,70.2128,4.2604,72.2222,67.5676,3.3988,86.6667,5.8752,1.7712,2.9679,1.272,14.9959,8.1065,21.2063,75.4491,84.4037,0.9574,0.9095,16.2326,2.4202,88.0359,76.9231,76.9231,100,12.4434,3.1115 Staffordshire and Stoke-on-Trent ICB,M83680,Northgate Surgery,6365.649903,7.5407,77.3663,75.5952,4.2995,75.9825,77.7778,2.53,94.3182,2.9653,1.828,0.8628,1.8556,14.718,7.275,13.6297,67.4126,73.7327,0.4972,0.585,13.6984,1.2746,85.9666,76.0684,81.6901,88.7324,10.3929,1.7549 Staffordshire and Stoke-on-Trent ICB,M83681,All Saints Surgery,8501.785419,4.9457,42.6036,40.5405,1.4626,40.4432,50,1.8437,81.3559,3.9304,0.9682,0.412,1.0608,28.1108,7.8209,8.8372,66.5742,81.7518,0.7519,0.6695,10.5671,0.4318,78.2391,85.946,72.1739,87.8261,22.4357,0.7828 Staffordshire and Stoke-on-Trent ICB,M83718,Peel Croft,3992.074336,5.4127,67.9612,61.9718,3.6761,59.7484,68.3333,2.8068,89.4737,4.6432,1.8132,0.3477,2.3683,29.1477,8.069,13.0899,77.5463,88.421,0.7452,0.6955,16.3602,0.4026,92.5977,92.6829,91.6667,97.9167,23.5752,1.5897 Staffordshire and Stoke-on-Trent ICB,Y00078,Winshill,5349.66536,6.2749,72.7273,64.5161,3.1898,66.4804,72.7273,2.2505,100,2.7097,1.8787,1.1937,4.1807,23.1198,7.112,11.9765,72.0339,77.8571,1.3699,0.8024,15.3032,0.7229,89.4009,83.0769,69.8113,88.6792,21.1771,1.546 Staffordshire and Stoke-on-Trent ICB,M83005,Heathcote Street Surgery,6350.159107,5.5147,68.8995,68.8525,4.5393,62.8571,64.8936,4.1144,94.2857,3.1925,3.419,0.9272,3.4038,27.6669,10.8127,22.3682,60.4255,81.6514,0.734,0.8886,19.7887,0.4382,85.6299,89.6296,85.7143,92.3077,20.2598,2.7043 Staffordshire and Stoke-on-Trent ICB,M83007,The Village Surgery,8062.470412,7.154,66.3793,69.6203,3.3842,67.4699,74.2857,3.5966,96.875,4.7746,2.2827,0.5309,1.97,19.9952,9.8636,18.0093,76.3914,81.4815,0.7299,0.8892,15.1586,0.2434,88.9764,87.1429,83.6364,89.0909,11.9451,1.5395 Staffordshire and Stoke-on-Trent ICB,M83011,Werrington Village Surgery,8719.157642,8.6968,74.8503,81.7352,6.013,78.972,75.4717,4.491,94.7368,5.5987,1.9586,1.3847,2.1051,13.1978,9.3013,21.3947,63.1621,82.6667,0.4741,0.5863,11.8692,0.6733,82.3743,77.0925,80,91.3043,9.6389,2.6946 Staffordshire and Stoke-on-Trent ICB,M83012,Leek Health Centre,8905.524107,7.7912,76.2658,80.3922,4.5131,70.5882,72.2222,3.6792,93.3333,4.2064,3.1028,1.3613,1.1486,18.0759,7.8509,17.6233,66.4423,86.6499,0.7113,0.9321,12.0525,0.2818,86.7265,83.2335,69.7917,89.5833,14.051,2.4651 Staffordshire and Stoke-on-Trent ICB,M83015,Madeley Practice,7947.785034,7.9852,78.3439,81.4286,5.0111,82.1782,84.0491,3.6931,98.2759,7.0538,2.2054,0.7569,1.9883,11.7285,8.4229,18.7525,75.2269,82.9851,0.2219,0.5481,16.017,0.3945,91.4017,76.1421,92.8571,95.9184,9.5362,2.9231 Staffordshire and Stoke-on-Trent ICB,M83017,Ashley Surgery,4848.118227,7.6701,80.0847,82.1918,5.7131,73.9837,77.1429,3.6547,93.4783,5.5819,2.1634,0.5671,1.221,12.5569,8.2182,22.0752,67.1801,83.0918,0.3151,0.5461,14.8517,0.3875,89.9858,85.8407,83.6066,93.4426,8.9141,2.6885 Staffordshire and Stoke-on-Trent ICB,M83023,Kidsgrove Medical Centre,10344.49559,6.999,76.6304,76.3485,5.7047,77.3234,77.7778,3.6666,98.718,3.6912,3.6881,0.8951,2.2225,20.4853,9.5611,20.1661,56.4746,78.481,0.647,0.7225,15.5446,0.2754,90.7803,85.8407,75,85,13.982,2.4695 Staffordshire and Stoke-on-Trent ICB,M83025,Miller Street Surgery,7380.765188,6.1845,71.3693,77.7778,4.7392,67.8161,74.4,3.6737,94,2.6847,2.2424,1.479,1.5738,18.9764,8.8478,19.2112,67.4646,81.6609,0.6043,1.1291,13.7012,0.4001,82.5762,87.234,67.3913,91.3043,13.3309,2.7195 Staffordshire and Stoke-on-Trent ICB,M83034,Silverdale Medical Centre,14651.45635,8.1088,71.2871,76.2963,4.596,72.1763,74.1784,4.0277,95,5.8386,3.401,1.4373,2.5318,24.7,9.6626,18.9688,50.7515,74.2593,0.7103,1.1448,15.3663,0.4358,86.1388,80.1829,74.8503,85.6287,18.1719,2.7325 Staffordshire and Stoke-on-Trent ICB,M83046,Biddulph Valley Surgery,10755.24932,8.5013,75.7576,80.3774,5.0267,74.7126,75.8454,4.8831,90,4.2873,2.4005,1.2105,2.9937,14.9799,8.5554,20.3632,66.2698,78.2241,0.4411,0.6053,14.5004,1.7122,85.0286,84.0164,81.3953,90.6977,10.7468,2.9852 Staffordshire and Stoke-on-Trent ICB,M83054,Audley Health Centre,10211.89794,8.6253,75.5668,78.7313,4.7448,78.9969,78.9954,3.4085,97,5.4362,2.8275,0.949,1.4324,15.4243,8.6025,20.5771,71.2471,80.4071,0.368,0.8231,12.5161,1.7245,91.549,88.189,83.2,87.2,12.631,2.6823 Staffordshire and Stoke-on-Trent ICB,M83056,Wolstanton Medical Centre,11885.45236,7.5905,78.481,79.6154,4.7373,75.8621,79.3427,4.0851,96.8421,6.9569,2.9348,0.9239,2.0127,15.8303,8.6496,22.1015,56.9118,85.6597,0.4982,0.5254,14.7123,1.663,91.5155,81.1912,82.5758,94.697,13.246,2.6359 Staffordshire and Stoke-on-Trent ICB,M83067,Lyme Valley Medical Centre,8521.498694,6.161,67.4603,72.8324,2.2035,62.7907,74.6377,2.5116,90.1235,1.4687,2.0021,0.9478,0.4176,20.654,6.5786,13.5292,75.0276,86.076,0.391,0.9715,8.7689,0.2608,89.6311,87.037,78.8235,87.0588,15.949,1.6349 Staffordshire and Stoke-on-Trent ICB,M83071,Park Medical Centre,12717.86113,7.9601,77.0213,76.7974,5.7322,70.8589,73.75,4.172,95.1807,5.8727,2.7559,1.0769,2.224,18.6896,8.3603,20.6478,66.7201,84.9023,0.5257,0.8904,14.7176,1.4844,85.4712,84.2466,82.3529,90.1961,12.4019,2.9509 Staffordshire and Stoke-on-Trent ICB,M83079,Dr J Greig & Partners,10588.93912,8.1871,77.7778,73.6626,4.41,75.6554,74,3.6733,92.2078,3.0556,2.3385,1.2814,2.233,18.4214,7.4948,20.1068,52.1893,74.0899,0.4698,0.9397,12.8101,0.9515,89.2155,85.4054,82.243,90.6542,12.5787,2.819 Staffordshire and Stoke-on-Trent ICB,M83084,Dr Robinson & Partners,7483.027581,7.6587,72.2892,79.5181,5.3258,79.7872,82.8125,3.8456,96.2963,5.7753,3.2504,1.2666,3.1941,19.2625,9.3658,23.3328,79.2562,90.9091,0.3357,0.6409,14.299,4.218,92.8302,83.9572,92.6316,97.8947,12.1663,2.3653 Staffordshire and Stoke-on-Trent ICB,M83089,Biddulph Doctors,11869.72349,8.0955,74.186,84,5.5566,78.0142,76.699,4.3177,98.8372,7.2228,3.0325,1.1649,2.3511,15.2812,9.7159,22.2818,70.2559,88.5768,0.453,0.7581,18.8765,1.7571,88,87.6471,86.5854,91.4634,11.9935,2.5333 Staffordshire and Stoke-on-Trent ICB,M83096,Dr Ks Upton's Practice,6160.24692,7.9112,74.1071,82.1918,5.1501,80.8511,78.6325,3.2211,100,6.0534,2.293,1.0919,1.3572,16.3981,9.5715,20.9463,72.6027,84.3636,0.455,0.7279,12.7531,0.4702,90.3583,87.4016,79.7619,86.9048,13.5047,2.6024 Staffordshire and Stoke-on-Trent ICB,M83103,Dr P Craven's Practice,4650.405587,7.2789,78.0749,85.124,5.5544,79.3651,82.1053,3.7315,100,6.6129,2.2303,0.6648,2.6556,15.9038,9.6442,21.7457,78.4906,90.8676,0.6005,0.6434,16.2978,0.7375,92.2257,85.9259,92.1875,98.4375,9.3742,2.7021 Staffordshire and Stoke-on-Trent ICB,M83108,Dr Do Yates' Practice,8267.041863,7.8609,76.6187,81.8653,4.7289,78.5047,80.3797,3.4634,91.6667,5.9885,2.4111,1.1056,1.1485,16.7158,8.2483,19.3819,71.5168,86.6044,0.7859,1.3721,15.9639,0.3154,92.837,74.8663,84.6154,94.5055,13.2367,2.6642 Staffordshire and Stoke-on-Trent ICB,M83121,Tean Surgery,6341.329133,7.2497,81.1808,83.9286,6.611,74.1497,78.8618,3.8898,92.6829,5.4997,1.3523,0.7012,2.2472,11.5143,8.3285,23.7229,71.8924,79.5918,0.4508,0.5342,10.4869,0.3127,89.7936,93.2432,83.5443,88.6076,7.7287,2.4708 Staffordshire and Stoke-on-Trent ICB,M83122,Waterhouses Medical Pract,2997.675807,7.1821,77.6224,79.3814,4.7852,75.6757,76,4.0365,100,7.086,1.2044,0.4557,1.7118,17.0177,7.4293,22.1029,61.9744,90.9091,0.2604,0.651,12.3408,0.1256,90.9977,94.4444,80.5556,94.4444,10.5607,2.3763 Staffordshire and Stoke-on-Trent ICB,M83140,Higherland Surgery,5531.473522,6.6336,76.25,76.1468,4.5057,73.6486,77.1084,4.5911,92.1053,4.4724,2.776,1.4948,2.7584,19.6406,8.7659,15.0117,77.7351,83.5165,0.9182,1.5588,14.5421,0.2114,92.5522,85.9649,82.2581,87.0968,14.6875,2.5625 Staffordshire and Stoke-on-Trent ICB,M83141,Kingsbridge Medical Centre,8848.786779,7.5107,79.2332,83.4906,5.6237,77.3946,83.7349,3.093,95.2381,6.2526,1.8108,0.8098,2.1498,13.5585,7.6944,19.5366,73.6079,87.7934,0.3712,0.7086,12.5474,4.3344,91.0009,86.6337,85.3933,95.5056,9.4278,2.7893 Staffordshire and Stoke-on-Trent ICB,M83640,Alton Surgery,2732.497914,6.2524,80.4878,83.9506,6.2128,80.3279,84.127,4.4271,100,4.7033,1.5253,0.8185,1.978,11.2653,8.308,23.0655,67.086,79.021,0.2604,0.7441,10.0659,0.7979,91.3595,84.127,94.1176,97.0588,6.2684,2.939 Staffordshire and Stoke-on-Trent ICB,M83670,Keele Practice,4914.207721,4.2191,77.4648,80,1.1401,56.4103,71.7391,0.8361,89.2857,0.9314,0.2914,0.1774,1.8359,12.0637,1.6678,4.2564,71.9858,85.1852,0.2407,0.4434,3.8202,0.4571,82.6004,81.579,80,85,4.2328,0.5954 Staffordshire and Stoke-on-Trent ICB,M83691,Betley Surgery,1914.881412,5.6657,80.8989,78.1818,5.3092,79.4872,77.5,3.6672,90.9091,4.9367,1.04,1.2589,1.8987,9.5913,8.0929,22.1127,52.2034,66.0551,0.0547,0.7116,8.3544,0.1878,80.9645,63.8889,76,92,7.3289,3.4483 Staffordshire and Stoke-on-Trent ICB,M83697,Milehouse Medical Practice,3781.401785,6.0079,67.0732,68.4211,3.5628,75.2212,79.5918,2.9891,92.5,3.5178,3.1703,2.1135,1.0277,29.9854,9.6498,13.587,77.2037,87.6033,0.5435,0.936,13.6759,0.7401,90.4088,90.2439,89.1304,93.4783,18.1568,1.9928 Staffordshire and Stoke-on-Trent ICB,M83701,Talke Pits Clinic,5201.274987,7.8885,73.5099,72.2772,4.3324,75,71.6049,3.6881,92.9825,5.5801,3.2659,1.6441,1.7956,22.847,9.4587,18.8625,59.4841,84.7368,0.6221,0.8665,13.7293,0.5308,84.1612,82.5397,83.0769,89.2308,16.3651,2.8438 Staffordshire and Stoke-on-Trent ICB,M83723,Loomer Road Surgery,30170.30483,6.3377,66.2393,68.4105,3.2548,61.8252,63.9098,3.4144,83.0769,4.6419,3.6832,1.5539,0.9392,31.0248,10.3011,18.6342,66.0242,83.6025,0.7392,1.0121,17.855,0.4077,86.5034,84.0668,72.3577,91.8699,39.9137,2.4023 Staffordshire and Stoke-on-Trent ICB,M83006,The Westgate Practice,30361.47696,6.0869,77.5846,81.7931,5.3005,77.4332,78.2456,3.151,93.7294,3.348,1.4828,1.0926,0.3951,10.8673,6.7975,15.8721,62.9268,79.3696,0.3317,0.7967,10.4549,1.2007,82.7591,81.7343,,,9.3318,2.1657 Staffordshire and Stoke-on-Trent ICB,M83018,Gravel Hill Surgery,8794.498646,6.3874,73.4463,75.2066,5.4976,76.6234,75,4.1406,98.5294,6.4708,1.7165,1.1018,0.7488,11.8629,7.7278,18.128,67.7591,81.5668,0.5915,0.4639,11.783,1.0454,90.8287,81.7259,85.1485,92.0792,8.9139,2.4124 Staffordshire and Stoke-on-Trent ICB,M83030,The Langton Medical Group,13329.85028,7.7706,75.1663,71.0692,4.5987,73.6973,76.779,3.8199,92.0354,4.2976,1.8024,1.2906,1.9793,13.4963,7.7118,16.7483,62.3104,79.9632,0.5192,0.7343,13.4244,0.8785,87.9035,82.4561,84.2767,94.3396,12.4799,2.1214 Staffordshire and Stoke-on-Trent ICB,M83031,Russell House Surgery,6628.536766,7.2529,77.0115,80.9524,6.568,78.2609,80.7692,3.9534,95.6522,8.6223,1.7956,1.5278,1.5918,10.3079,8.1851,26.2561,79.7077,85.1191,0.2678,0.63,11.9576,4.0835,91.2579,83.0409,79.5181,91.5663,7.9667,3.2446 Staffordshire and Stoke-on-Trent ICB,M83032,The Aldergate Medical Practice,14327.16419,7.4484,73.3906,66.1585,4.3828,71.5909,72.3022,3.2638,94.0299,4.5229,1.8291,0.7388,2.0269,19.5099,8.3829,15.2643,74.5994,86.6817,0.7532,0.8249,14.0998,0.6017,87.259,83.5777,90.2299,93.6782,13.1964,2.3528 Staffordshire and Stoke-on-Trent ICB,M83062,Laurel House Surgery,13756.03781,8.1862,74.3649,67.6471,4.6864,73.8667,74.7899,4.3393,88.3929,4.7418,1.712,0.9941,2.241,19.4433,8.1363,16.8205,61.9224,73.4774,0.718,0.8205,15.7257,1.3229,86.0697,81.7308,71.7949,82.0513,13.4799,2.4615 Staffordshire and Stoke-on-Trent ICB,M83072,Salters Meadow Health Ctr,13039.14071,7.8571,75.9574,69.5793,5.1278,74.7664,75,4.7603,92.7928,6.1345,2.5054,1.211,1.6868,14.2552,10.8232,20.912,70.9296,82.8927,0.3758,0.6681,14.749,0.6682,91.2313,85.1282,85.5072,92.7536,13.1144,2.4136 Staffordshire and Stoke-on-Trent ICB,M83088,Hollies Practice,16136.73609,7.2404,73.3212,66.1499,4.6878,67.1053,72.3333,4.0654,90.3846,6.9155,2.0294,0.7845,1.8739,19.6726,8.3521,17.4609,47.6879,66.9368,0.4863,0.7067,15.8303,0.3374,81.2338,84.1492,,,13.6815,2.2823 Staffordshire and Stoke-on-Trent ICB,M83093,Dale Medical Practice,6771.375744,6.2665,72.2892,74.2857,4.9306,77.0186,76.259,3.9632,91.2281,7.1646,1.7632,1.6539,0.6288,12.5708,7.4402,16.3364,78.4702,92.9619,0.5929,0.5461,13.9863,0.7569,88.076,75.8621,91.6667,84.7222,11.217,2.7617 Staffordshire and Stoke-on-Trent ICB,M83097,Bilbrook Medical Centre,8876.917728,6.7668,75.8842,73.1278,4.5262,72.0137,71.7391,2.9209,89.6907,3.1698,1.5608,1.1148,0.6117,14.519,7.2565,13.6009,50.7214,69.906,0.4905,0.5128,8.5639,0.2848,82.1166,85.1064,65.9091,76.1364,10.2652,1.7057 Staffordshire and Stoke-on-Trent ICB,M83110,Heathview Medical Practice,15328.07087,5.9559,65.9708,61.9672,2.8472,72.3164,71.6049,2.8794,89.8204,3.5224,2.2159,0.612,1.3312,21.2573,7.6835,12.6449,67.3124,81.3505,0.4445,0.7601,10.5093,0.0359,88.7217,83.9416,75.7225,89.5954,17.4086,1.5009 Staffordshire and Stoke-on-Trent ICB,M83111,Riverside Surgery,2659.620051,7.7661,67.1053,61.7021,3.3935,67.5,71.4286,4.768,75,5.0926,3.1787,1.1168,1.5946,23.9873,9.128,18.4708,54.7753,62.1622,1.6323,0.945,18.57,0.7503,88.3272,86.7647,81.8182,87.8788,17.3769,1.933 Staffordshire and Stoke-on-Trent ICB,M83113,Dr Khare's Surgery,2566.741445,6.6931,66.2162,59.6154,3.6364,73.1707,82.0513,3.0165,77.2727,1.3565,2.686,0.2479,1.1937,25.7919,9.3184,13.1818,64.7687,81.579,1.281,1.157,13.4563,0.4814,85.5422,83.7838,87.8788,90.9091,18.75,1.1157 Staffordshire and Stoke-on-Trent ICB,M83117,Crown Medical Practice,8723.584972,7.1656,71.2418,65.5,3.6188,63.8298,66.879,3.3191,95.946,4.112,2.3741,0.7491,2.2456,22.3606,8.7914,15.593,52.8596,73.3668,0.4495,0.7952,17.1624,0.4476,80.5175,81.4371,73.8739,88.2883,16.3157,1.6941 Staffordshire and Stoke-on-Trent ICB,M83125,Claverley,3331.680843,5.7598,72.956,76.9231,5.5687,79.4872,84.1463,3.3294,76.4706,5.4186,1.591,1.208,0.9031,15.0933,7.1992,19.3577,73.161,87.6623,0.1473,0.2652,7.4679,0.3727,86.8293,84.2105,87.5,95,8.5043,1.8857 Staffordshire and Stoke-on-Trent ICB,M83132,Lakeside,5070.171053,6.8736,72.332,78.0645,3.9818,76.9663,73.6364,2.5847,86.4865,3.2755,1.3622,1.1002,1.3059,9.3136,7.3573,17.6912,66.1408,78.836,0.4366,0.751,8.4993,0.5938,88.6211,89.8876,79.6875,81.25,10.0164,1.7464 Staffordshire and Stoke-on-Trent ICB,M83148,The Peel Medical Practice,14488.94222,7.8117,72.6415,66.6667,4.0218,70.7071,73.0769,2.9268,90.1961,4.9208,1.7423,0.9504,1.9788,21.1831,7.6022,15.5706,64.561,74.8092,0.427,0.8195,16.6535,0.8036,84.5313,77.7004,78.6207,92.4138,16.6367,1.8732 Staffordshire and Stoke-on-Trent ICB,M83617,Darwin Medical Centre,23071.58449,7.8875,76.0055,78.1716,3.9928,74.2254,77.5,3.6783,92.8571,6.9911,2.2367,0.8781,2.5229,13.939,8.1129,17.7624,62.2145,76.1488,0.5548,0.9087,15.4098,0.4352,88.7581,78.4071,79.8535,93.7729,14.0787,2.062 Staffordshire and Stoke-on-Trent ICB,M83668,Tamar Medical Centre,4916.542114,6.3505,71.2871,73.8806,4.3053,75.2874,77,2.9159,96.2264,2.5879,1.409,1.2916,0.4883,11.4064,8.6423,15.5577,78.2813,82.5807,0.6458,0.7241,6.8359,0.2802,89.4781,75.2941,90.3226,93.5484,13.0861,1.683 Staffordshire and Stoke-on-Trent ICB,M83693,Tri-Links Medical Practice,5914.147939,6.3248,72.3404,66.9118,2.835,71.8147,71.9008,2.0451,94.6903,4.5403,1.2976,0.3244,3.1025,22.4394,7.0352,11.1848,74.4444,87.6712,0.536,0.6488,14.5479,0.1832,89.6868,87.931,84.2857,84.2857,16.5241,1.2271 Staffordshire and Stoke-on-Trent ICB,M83715,Featherstone,4662.761036,6.9301,72.1311,83.8462,4.0623,79.7468,78.2178,2.2635,92,2.3315,2.4252,0.4648,2.7927,20.7338,9.2148,16.3703,79.3985,81.3793,0.3031,0.7074,13.7074,0.2001,91.5374,84.3374,86.3636,89.3939,13.8156,1.6775 Staffordshire and Stoke-on-Trent ICB,M83009,Brewood Medical Practice,11049.06555,6.797,73.9224,68.7097,5.2435,76.9517,77.3663,3.8915,85.7143,3.2878,1.8544,0.9318,1.5401,11.9681,7.959,20.5901,55.8912,69.783,0.3563,0.4842,9.6341,0.6584,89.7396,80,84.2105,91.7293,9.8031,2.5486 Staffordshire and Stoke-on-Trent ICB,M83020,Cumberland House,9743.726436,6.8114,74.6702,74.3083,4.984,77.0115,77.3399,3.5115,96.875,5.1997,1.5035,1.5446,2.0723,12.9543,7.3937,18.2268,70.066,81.0811,0.3913,0.7517,15.4107,0.4066,91.7491,82.2335,88.2353,94.1176,9.7023,2.7392 Staffordshire and Stoke-on-Trent ICB,M83022,Hazeldene House Surgery,8399.173763,6.9783,81.6,80.4255,6.4743,76.9231,74.7253,3.7516,92.1569,4.1068,1.6311,1.3551,0.9933,7.5197,8.2979,25.8846,70.603,82.5902,0.1882,0.5521,13.358,0.7152,88.8341,77.4567,90.099,93.0693,7.8157,2.6976 Staffordshire and Stoke-on-Trent ICB,M83024,Castlefields,8073.972175,7.7792,76.0714,77.0492,4.1825,75.5639,77.7027,3.253,88.172,2.5806,1.6999,0.5626,1.8782,16.083,7.6378,15.8616,62.1106,76.1589,0.4036,0.8071,15.8498,0.1774,88.3231,88.2759,82.9545,88.6364,13.3521,2.1157 Staffordshire and Stoke-on-Trent ICB,M83036,Rising Brook,9481.061142,6.8873,69.5502,71.9048,3.8974,67.3611,72.956,3.6662,94.7917,3.0975,2.4001,1.167,2.3162,19.7949,8.3586,14.4666,60.9901,74.0132,0.6165,0.7487,11.4134,0.218,89.6543,78.8889,67.2566,83.1858,17.3919,1.8166 Staffordshire and Stoke-on-Trent ICB,M83044,Stafford Health and Wellbeing,13544.64589,6.5578,71.6883,74.9091,3.7975,70.0205,71.4286,3.1043,85.0932,2.9489,2.3207,0.9268,1.8749,17.7358,7.3981,15.5365,50.8728,74.8908,0.4521,1.1227,14.707,0.8893,83.0282,81.4346,75.3425,82.8767,18.475,1.9213 Staffordshire and Stoke-on-Trent ICB,M83045,Penkridge Medical Practice,10706.65002,7.3281,75.5981,76.4045,5.5771,72.5424,73.1707,3.6171,92.3077,3.664,2.4903,0.8617,1.2098,12.6314,7.89,17.754,64.523,76.7391,0.4166,0.6723,11.4645,0.4457,86.4148,92.4107,63.4146,80.4878,9.9252,2.282 Staffordshire and Stoke-on-Trent ICB,M83049,Holmcroft,11075.7266,7.3881,72.7273,78.2787,4.3157,66.3492,69.697,4.1548,81.25,3.6805,2.3282,1.1547,2.7052,14.5094,8.8858,18.5027,62.2407,79.9607,0.5489,0.8991,14.0485,0.4697,84.9074,82.0611,74.8252,83.2168,13.5577,2.5175 Staffordshire and Stoke-on-Trent ICB,M83050,Wolverhampton Road Surgery,10592.83827,5.7328,71.0448,74.6667,4.5534,64.9231,69.1429,2.9934,89.1566,3.9786,1.8038,0.5753,1.0214,16.7426,6.8828,14.8401,72.093,79.703,0.3998,1.0043,8.6461,0.9953,83.8845,81.579,65.3061,81.6327,15.9795,2.2036 Staffordshire and Stoke-on-Trent ICB,M83052,Weeping Cross Health Centre,17870.33119,6.3547,75.2773,78.5388,4.06,71.4286,76.7507,2.518,94.4186,4.2825,1.3119,0.6721,2.0827,9.7855,6.8023,14.5461,66.8614,83.1152,0.267,0.3959,10.8231,1.0348,81.0222,82.9843,76.8868,90.566,10.6141,1.7907 Staffordshire and Stoke-on-Trent ICB,M83057,Mill Bank,10619.92691,6.7125,74.772,69.2982,4.1951,68.7324,72.8261,3.186,90.4348,3.7183,1.9247,0.9997,1.4711,17.5452,7.393,16.2011,75.4703,89.3827,0.3737,0.6353,17.7922,0.8008,89.9614,85.2381,85.4701,92.3077,15.3974,2.177 Staffordshire and Stoke-on-Trent ICB,M83069,Mansion House Surgery,15779.11318,8.0558,77.969,78.1407,5.476,76.6885,76.9968,5.4824,90.7895,5.0279,2.0767,1.1566,1.6026,12.7878,7.6887,20.0831,59.4651,74.5333,0.6006,0.7284,14.6359,0.4822,86.3435,80.9769,82.4859,89.2655,9.9702,2.639 Staffordshire and Stoke-on-Trent ICB,M83070,Gnosall,7875.493772,6.9506,76.2463,81.1659,6.0015,71.7703,76.1364,3.6979,91.8367,4.2016,1.273,0.6911,1.0504,10.2782,7.0706,18.6833,66.6667,80.1061,0.3516,0.6183,11.682,0.5366,86.5208,81.8182,80,95.5556,8.7532,2.4127 Staffordshire and Stoke-on-Trent ICB,M83092,Crown Surgery,8213.416044,6.3911,77.3684,81.25,5.7486,76.1261,76.1658,4.4193,97.3333,2.9151,1.4342,0.548,0.9578,11.6166,7.6078,19.8811,61,76.5432,0.3848,0.618,10.6052,0.2413,84.7986,83.5366,65.9794,86.5979,8.7453,2.7169 Staffordshire and Stoke-on-Trent ICB,M83004,Mayfield Surgery,11805.52433,8.9183,73.2877,72.043,5.8511,79.7414,82.9897,5.5044,94.3396,7.617,3.7599,1.582,2.8739,28.5211,11.2199,26.4059,63.3854,79.1102,0.3684,0.7043,19.7101,0.7573,89.0032,85.2507,87.0588,94.7059,11.6346,2.8064 Staffordshire and Stoke-on-Trent ICB,M83014,Trent Vale Medical Practice,10729.39454,7.7778,66.3934,71.1111,3.1627,60.0575,67.5159,3.4161,92.3077,4.8419,2.3518,1.0137,2.4406,28.2817,8.6968,17.2225,66.3309,85.4369,0.6082,0.8312,13.9221,0.3665,88.0255,86.3636,74.2188,85.9375,17.8425,2.0476 Staffordshire and Stoke-on-Trent ICB,M83021,Furlong Medical Centre,12256.72172,7.8145,59.3333,59.4059,3.7535,66.3551,69.8324,3.634,85.4369,5.0718,3.2756,1.0354,3.2287,38.2232,10.8369,19.4743,69.2167,81.3665,0.6969,1.364,20.7322,0.4316,89.6077,87.5,90.8537,93.9024,20.3667,1.9912 Staffordshire and Stoke-on-Trent ICB,M83028,Glebedale Medical Practice,14024.14432,7.2622,68.8705,68.6192,3.3502,70.9184,72.1393,3.2816,82.0896,4.168,3.3673,0.8483,2.1277,39.2028,10.4431,17.9248,69.7285,80.3324,0.694,1.0282,16.2248,1.0261,86.4554,87.5,69.4444,89.4444,20.8968,2.0907 Staffordshire and Stoke-on-Trent ICB,M83038,Orchard Surgery,11967.92955,7.0845,72.4051,76.5385,5.2052,71.5753,74.6341,3.776,89.2857,5.4898,2.0087,1.41,2.1768,24.4591,8.6126,21.69,58.8653,79.6029,0.6277,0.705,13.6467,4.2114,90.6659,81.9188,78.5185,85.1852,14.8666,3.0034 Staffordshire and Stoke-on-Trent ICB,M83047,Meir Park & Weston Coyney Medical Pract,7211.851825,6.6101,71.1864,71.8121,4.2393,73.0964,70.339,3.6981,93.5484,7.869,3.3073,0.6464,3.558,26.4613,9.2293,22.0685,68.2243,81.0997,0.6013,0.7817,16.7169,3.7337,89.495,90.4523,,,14.2128,2.2249 Staffordshire and Stoke-on-Trent ICB,M83061,Millrise Medical Practice,9628.359558,8.3333,69.8305,72.8643,5.3841,79.2627,78.9474,4.2233,97.2222,6.4112,3.3218,1.1237,2.9869,22.7439,9.1504,21.2892,68.5714,81.5851,0.5557,0.568,16.2317,3.301,91.3805,84.2742,83.4862,92.6606,12.5127,3.1242 Staffordshire and Stoke-on-Trent ICB,M83066,Hartshill Medical Centre,7847.230463,6.0231,73.1278,74.2138,2.9915,65.2459,75,2.7778,96.3415,3.5872,1.6717,0.6662,1.1378,21.226,6.8799,18.2504,74.4454,88.9362,0.4148,0.6662,13.4166,0.8903,89.3224,89.2308,58.0247,96.2963,12.5587,1.8477 Staffordshire and Stoke-on-Trent ICB,M83068,Belgrave Medical Centre,16037.97251,7.0244,67.4528,67.3139,3.7857,69.5745,77.0161,3.0541,89.7727,4.5626,2.5708,0.7182,3.3167,32.1195,10.4079,16.2908,74.3056,85.4015,0.6511,0.7182,14.5828,0.5797,89.9775,89.5349,82.2511,94.3723,17.561,1.8056 Staffordshire and Stoke-on-Trent ICB,M83075,Norfolk Street Surgery,21601.85051,4.9115,56.6343,62.212,1.6975,49.0591,65.1515,1.8937,80.9689,2.3293,1.4424,0.4612,2.0454,37.7813,8.8048,9.4196,56.6998,78.8961,1.0401,0.9714,16.9312,0.6352,90.6215,90.3509,83.2061,96.5649,18.7735,1.3394 Staffordshire and Stoke-on-Trent ICB,M83076,Harley Street Medical Ctr,10197.88609,5.6721,57.5269,69.5652,2.4013,51.4815,65.9574,2.5135,77.6316,3.6966,2.4237,1.0211,3.4261,39.0537,6.7126,12.7132,54.7516,82.6087,0.5723,1.1445,12.0428,0.4047,83.4799,81.7204,75.2577,87.6289,17.6912,1.8851 Staffordshire and Stoke-on-Trent ICB,M83090,Dunrobin Street Medical Centre,6421.778601,6.2956,68.1818,65.8333,4.5376,75.7353,72.8261,3.9441,76.9231,7.9991,3.1591,0.919,1.5675,31.5646,11.8667,22.5349,72.6013,86.1925,1.57,0.9382,15.1452,0.3705,88.4587,89.5028,85,95,17.5101,2.3741 Staffordshire and Stoke-on-Trent ICB,M83094,Brook Medical Centre,16304.43762,6.5746,71.4286,74.1538,4.1589,76.7033,78.2101,2.9608,90.1515,4.3018,2.5133,0.964,2.292,32.1564,8.6825,17.5239,58.5127,78.0439,0.4613,0.8332,21.3858,2.935,87.322,86.9841,82.7957,87.0968,19.2043,2.0175 Staffordshire and Stoke-on-Trent ICB,M83100,Meir Primary Care Centre,4919.454743,7.3369,76.3889,73.4694,4.8716,80.9917,80.5556,3.7437,95.8333,4.9658,2.6638,1.0079,2.1707,29.3938,9.7647,20.9743,64.5358,79.7235,0.432,0.7199,19.9227,0.3259,91.9904,80.198,85.7143,88.8889,12.3557,2.4238 Staffordshire and Stoke-on-Trent ICB,M83102,Potteries Medical Centre,8312.92326,6.2664,63.6364,72.7273,3.1103,75.6098,75.8929,3.1388,85.8586,5.3025,3.8665,1.0843,2.0291,44.5134,9.2261,17.6487,75.7062,82.2857,0.8275,1.013,21.2098,0.565,91.9101,87.2928,78.4946,94.6237,23.6498,2.1544 Staffordshire and Stoke-on-Trent ICB,M83123,Birches Head Medical Ctr.,10246.34533,7.892,68.6833,74.6193,3.8941,70.6745,72.0497,3.187,96.9697,6.2926,2.7543,1.0975,5.7478,32.4646,8.771,18.0456,67.108,84,0.9392,1.0236,18.8913,4.7869,89.5146,88.4444,77.2358,87.8049,21.1719,2.0051 Staffordshire and Stoke-on-Trent ICB,M83126,Longton Hall Surgery,9713.369521,9.1039,71.9101,71.1957,3.8836,76.8382,79.4326,3.6767,93.6842,5.2322,2.9949,0.6939,3.7616,32.2214,9.5013,18.578,69.2675,87.4074,0.7061,0.7305,19.1641,0.3817,93.425,86.1244,83.0508,92.3729,17.5344,2.2157 Staffordshire and Stoke-on-Trent ICB,M83127,Cobridge Surgery,7438.679165,4.4462,61.0169,62.2222,1.4919,41.3919,63.75,1.9988,80.1802,2.7789,1.7381,0.3621,2.5171,46.3296,8.6751,10.197,71.4522,78.5714,0.3621,0.7677,14.8006,0.2591,86.7587,89.0909,73.5632,90.8046,20.552,1.1877 Staffordshire and Stoke-on-Trent ICB,M83138,Drs Shah & Talpur,6862.965442,6.2614,79.7153,79.661,4.1836,77.2947,79.8387,3.2426,96.2963,5.0908,1.9253,1.5924,1.565,16.7295,8.2107,18.0515,72.0365,88.8462,0.6225,0.5646,14.3911,0.4017,91.0562,87.2483,87.2093,94.186,10.222,2.1569 Staffordshire and Stoke-on-Trent ICB,M83143,Goldenhill Medical Centre,6168.751358,9.8571,70.3947,67.8571,3.4398,68.3616,77.1084,3.5348,89.2857,4.9677,3.4018,1.5013,4.9925,33.2159,10.1442,18.6431,61.6322,80,0.5131,0.9312,16.8654,0.5584,93.4135,88.0597,64.6341,90.2439,18.2045,2.0144 Staffordshire and Stoke-on-Trent ICB,M83146,The Moorcroft Medical Ctr,18412.88174,6.3093,62.4309,67.5676,3.6574,57.377,62.5592,3.1887,90.9605,3.6178,2.5282,0.7883,3.0969,46.2783,9.5562,16.1707,64.3288,80.3097,0.8948,1.0866,13.4009,0.9263,88.1381,89.8256,73.2984,82.199,20.9638,2.0808 Staffordshire and Stoke-on-Trent ICB,M83601,Brinsley Avenue Practice,7695.254153,7.4328,74.0586,76.7123,6.9744,81.5789,78.5714,5.0176,93.0233,7.5755,3.2781,3.9806,2.6384,13.3571,9.5455,21.9602,60.7889,77.3836,0.4683,0.7861,9.9141,2.5336,91.2674,67.1642,84.375,85.9375,6.9538,4.0475 Staffordshire and Stoke-on-Trent ICB,M83619,Honeywall Medical Practice,3823.028609,7.9657,73.5849,69.0141,2.3624,67.2269,76.2712,2.1608,92.3077,3.025,3.5437,1.4117,0.7302,27.4966,8.0839,14.866,76.8675,89.1089,0.3457,1.2388,11.8568,0.6102,92.9882,89.6552,81.8182,90.9091,15.2632,2.1031 Staffordshire and Stoke-on-Trent ICB,M83624,Cambridge House Surgery,4142.402425,7.5181,73.1481,71.2329,4.3331,76.1905,82.1429,3.4727,100,5.6115,3.9336,1.1063,2.0511,37.7312,12.4236,21.85,75.5444,86.8421,1.4136,0.9527,20.5108,1.0109,93.1669,87.8788,82.2581,91.9355,22.5393,2.059 Staffordshire and Stoke-on-Trent ICB,M83625,Prima Care Surgeries,12430.77941,6.0695,68.0982,72.1154,3.3109,57.3529,71.4286,2.654,89.0756,3.2449,2.1214,0.6391,3.0771,41.0539,8.4523,15.711,71.2938,80.0699,0.5503,0.9409,14.6022,2.012,89.3985,89.5238,79.0541,88.5135,21.8335,1.793 Staffordshire and Stoke-on-Trent ICB,M83627,Apsley Surgery,9556.04738,4.5968,59.0278,61.4583,2.4217,63.2997,69.6629,2.481,82.8571,4.0273,2.1724,1.5195,1.0393,43.1908,9.8803,11.669,71.1111,82.5688,0.6529,1.3533,13.2998,0.632,84.9942,89.7436,81.1475,92.623,19.9292,1.6975 Staffordshire and Stoke-on-Trent ICB,M83632,Trinity Medical Centre,5215.230349,6.7951,79.7753,78.1513,5.3495,81.5287,82.2222,4.0219,95.6522,6.4256,1.5619,1.1128,2.6631,14.3827,8.6998,17.8055,63.8177,81.4286,0.9957,0.8005,15.2455,0.4971,94.4112,86.9863,83.3333,90.9091,9.4546,1.8352 Staffordshire and Stoke-on-Trent ICB,M83650,Tunstall Primary Care Centre,14038.2814,6.3134,67.3333,67.4757,2.6334,58.5513,65.9341,2.6708,82.7273,3.7337,2.7306,0.8828,4.2774,33.7812,8.8654,14.2889,54.0223,81.6327,0.6135,0.7556,17.2018,0.3527,89.6452,89.3701,64.2424,84.8485,19.9284,1.4439 Staffordshire and Stoke-on-Trent ICB,M83661,Adderley Green Surgery,8110.83808,5.6701,63.4921,63.4328,3.0083,72.0339,74.7826,2.5934,85.5422,3.3314,2.4007,0.8743,2.0027,35.1567,9.637,15.7676,70.0541,90.6475,0.7113,1.1559,18.9293,0.3167,92.4308,95.1049,81.9149,86.1702,21.9144,2.0599 Staffordshire and Stoke-on-Trent ICB,M83682,Lucie Wedgwood Health Ctr,7546.755317,7.0387,65.3409,67.8261,3.6122,60.8247,71,3.4274,91.1765,4.6677,3.8475,0.588,2.5597,40.6275,10.6086,16.5323,75.7212,86.1842,0.9241,1.5961,19.0364,1.4912,88.5429,86.0927,87.7551,90.8163,24.0994,2.1337 Staffordshire and Stoke-on-Trent ICB,M83709,Baddeley Green Surgery,5692.710581,7.6279,80.1802,83.871,4.5518,82.3529,80.916,3.6518,97.7778,4.7266,1.8345,0.848,1.9076,16.423,7.0352,19.3493,76.2513,92.1788,0.5538,0.6577,16.8292,2.9977,93.0798,81,92.1875,98.4375,9.6747,2.4403 Staffordshire and Stoke-on-Trent ICB,M83711,Trentham Mews Medical Centre,4127.064932,8.098,79.3548,81.1321,5.4998,80,77.5,3.8925,92.8571,5.1809,2.0593,1.3059,1.9007,13.6726,7.8556,19.9648,67.6819,87.2549,0.3516,0.5274,13.1514,0.3704,91.9925,85.4167,86.6667,95.5556,7.0596,2.888 Staffordshire and Stoke-on-Trent ICB,M83713,Meir Medical Practice,5689.336831,5.9928,67.4556,67.2727,2.9122,66.443,67.4699,4.1374,89.7436,6.2021,2.9725,0.8636,0.9444,35.0199,9.6693,16.1478,67.5466,89.375,0.6628,0.9239,11.0771,0.4564,86.2116,87.1429,61.1111,86.1111,18.1886,2.4704 Staffordshire and Stoke-on-Trent ICB,M83725,Blurton Medical Centre,4501.370962,6.3235,60.8696,53.9683,2.5694,68.3453,68.6275,3.1089,91.6667,3.2636,3.2888,0.4368,5.1082,42.1641,8.6428,13.3864,65.8643,84.375,1.0534,1.1819,17.6304,0.37,91.5559,95.0617,79.5918,91.8367,29.9542,1.5673 Staffordshire and Stoke-on-Trent ICB,Y02521,Willow Bank Surgery,11500.83753,7.0289,64.6288,63.3136,2.6243,76.0814,77.6978,2.2808,95.3271,2.9789,2.0231,1.0211,2.2843,35.7465,9.9961,11.9095,71.8985,87.5,1.0116,1.0879,17.4726,0.9733,91.0079,86.9565,76.0563,83.8028,20.2272,1.6414 Staffordshire and Stoke-on-Trent ICB,Y02867,Middleport Medical Centre,6304.61697,6.238,59.7701,63.1579,2.3173,54.6961,64.5833,3.008,75.8065,3.4341,3.4091,1.2478,5.1952,48.382,8.86,13.369,63.3397,79.7468,0.6685,1.6934,15.0572,0.3707,90.8178,85.8407,60.3448,87.931,30.5481,2.3841 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence Frimley ICB,H81013,Bartlett Group Practice,26696.96101,6.9568,76.4972,78.9474,3.4738,72.6141,73.2283,2.8878,93.8462,4.0199,1.2745,0.8791,1.6853,9.7539,7.2466,14.9333,61.1876,75.7009,0.353,0.5437,12.4822,0.4416,83.929,86.0324,78.0576,87.0504,11.0434,1.7299 Frimley ICB,H81027,Farnham Park Health Group,15450.6712,5.8919,76.7717,74.7851,4.2581,71.673,79.288,2.8877,86.1314,4.4902,1.5233,1.088,1.3551,8.5772,6.0823,14.4328,71,80.2752,0.6175,0.7469,12.196,1.2514,83.3996,78.777,70.922,88.6525,10.3519,1.7762 Frimley ICB,H81039,Park House Surgery,6252.981187,6.0397,76.5258,72.6667,3.83,78.4404,80.315,2.7636,91.7808,4.9165,1.562,1.0213,1.52,8.8908,6.9177,16.176,70.2101,85.4478,0.2854,0.6308,9.5515,2.1779,89.6368,83.3333,84.2857,88.5714,11.8317,1.8624 Frimley ICB,H81040,Station Road Surgery,7938.868636,7.0876,76.0504,76.5714,3.733,65.625,79.4872,2.5192,93.8462,2.7939,1.4772,1.3512,1.8579,8.3652,7.5622,16.3747,68.7558,81.7391,0.6642,0.6413,12.2678,0.6966,90.8622,90.5109,84.6939,90.8163,11.1807,1.7405 Frimley ICB,H81047,Runnymede Medical Practice,11309.99719,5.1344,73.2984,73.2283,4.572,71.4706,78.3186,2.9563,90.1409,2.215,1.1946,0.7735,1.0498,10.3178,6.0678,14.2489,70.2542,79.4979,0.2578,0.7391,8.6605,0.4453,88.8038,84.8101,90.7407,91.6667,12.9436,1.8649 Frimley ICB,H81069,Park Road Group Practice,19541.72568,5.5822,75.7235,76.1364,3.7299,73.444,79.8429,2.722,91.0448,3.4962,1.1788,1.4308,1.8243,8.8435,7.3606,14.6045,56.8,73.7084,0.5624,0.6614,11.5052,0.5453,86.8602,80.2564,81.3559,84.322,11.2651,2.0112 Frimley ICB,H81075,Upper Gordon Road Surgery,11027.19932,6.7079,71.9346,73.6059,4.3649,65.5612,75.5365,2.8986,90.625,4.7177,1.4663,0.8696,1.3151,10.3386,6.6227,14.2455,55.0363,76.9767,0.5797,0.9122,12.7857,0.9358,84.2556,84.4037,89.6552,92.2414,12.6817,1.8159 Frimley ICB,H81082,Camberley Health Centre,8902.65363,5.4028,72.093,64.7887,3.5908,64.2651,71.0227,2.8849,84.0909,3.6688,1.6471,0.8286,0.6659,12.3812,7.6247,12.8696,62.1259,78.2007,0.665,0.6036,13.557,0.7063,84.0408,83.6158,89.2857,93.75,14.1122,1.5243 Frimley ICB,H81088,Downing Street Group Practice,12234.14772,5.7915,78.7383,71.777,4.4275,69.1954,75.8333,2.8463,98.0952,3.6518,1.5381,0.6038,1.3584,7.6854,5.2948,13.5125,71.0738,82.7789,0.2875,0.8553,9.9233,2.2351,84.5164,87.9581,81.3084,89.7196,10.3433,1.7969 Frimley ICB,H81110,Holly Tree Surgery,5335.678372,6.4782,82.6291,79.4702,5.9482,78.882,79.2593,3.2299,95.3488,4.0587,1.0074,1.3431,1.2645,5.297,5.0729,15.7179,55.4113,63.4483,0.3358,0.7036,7.0977,0.9,86.6023,80.303,81.3953,81.3953,6.4854,2.0947 Frimley ICB,H81130,Lightwater Surgery,13019.82772,5.5645,79.9632,78.4062,4.2327,77.8723,80.1829,2.5029,88.024,2.5273,0.9501,0.6749,1.0421,5.2251,5.2921,14.4739,71.8883,70.8185,0.1442,0.3407,9.7727,0.2836,88.4406,84.375,86.6071,91.0714,7.4888,1.507 Frimley ICB,H81615,Farnham Dene Medical Practice,11270.57291,6.2117,82.5243,77.1084,4.4187,75.0538,79.932,2.3377,93.578,3.8245,0.881,0.9087,1.3824,6.6765,4.7293,12.0144,53.5688,73.5661,0.4925,0.6798,10.3677,1.7479,86.2306,83.0409,77.7778,84.4444,7.8451,1.5885 Frimley ICB,J82015,Giffard Drive Surgery,8555.122582,6.452,77.6515,70,3.5008,74.4615,75.817,2.9266,89.3204,1.4444,2.0983,0.4638,1.3603,14.2914,9.3543,15.3506,66.7838,80.5556,0.3203,0.6405,15.9164,1.8874,91.4293,88,82.3529,86.5546,14.2147,1.513 Frimley ICB,J82049,The Oakley Health Group,27528.19092,6.7425,81.1594,78.0172,5.0755,78.0065,79.0146,3.4638,95.5172,5.4614,1.4763,0.7314,1.1942,6.3541,7.6088,16.8789,69.2148,83.4065,0.4029,0.5824,16.0042,1.6535,90.4511,85.3896,81.759,93.8111,10.8147,1.8386 Frimley ICB,J82066,The Cambridge Practice,22027.69854,5.3473,67.8288,71.9647,3.3896,69.6864,71.9895,2.3803,92.3913,3.7284,1.9739,0.6029,2.1949,18.2651,9.3736,16.8989,71.0801,77.9904,0.5404,0.8262,15.4666,1.2614,89.9173,89.9083,89.5238,93.9683,15.8442,1.38 Frimley ICB,J82067,Voyager Family Health,16697.66497,6.3606,75.0455,78.4173,2.8023,74.212,77.6836,2.7817,95.3704,4.2617,1.5976,0.5532,1.4942,11.9085,7.222,13.9238,54.3119,72.5146,0.2947,0.6153,13.0774,1.3315,80.8743,83.2418,80.4124,91.2371,13.0078,1.6545 Frimley ICB,J82099,Richmond Surgery,12134.56741,6.8064,78.9604,77.8523,4.1986,77.7778,80.4511,2.5551,96.9925,5.2231,1.1644,1.3374,2.0062,4.151,5.3808,15.6431,72.8664,85.5828,0.2861,0.5057,6.2435,1.6486,84.5887,84.1122,92.1569,94.1176,7.6512,1.537 Frimley ICB,J82110,Hart Health Partnership,23711.03237,6.2195,79.1914,74.6795,4.2909,75.0842,77.7778,2.7437,93.3628,3.6318,0.9648,0.8491,1.0477,4.6,5.6459,14.7463,63.3126,75.8319,0.2772,0.7508,7.607,0.7066,84.3865,87.4667,76.5217,86.5217,17.0704,1.6104 Frimley ICB,J82120,Alexander House Surgery,10388.57566,5.9544,77.1331,77.7251,4.2363,79.5918,81.9209,2.8477,95.4023,5.3864,1.5194,1.3282,1.6393,10.6681,8.4478,16.7639,74.9216,86.9231,0.5937,1.1169,15.6169,3.4074,95.5068,84.6847,90.8333,95.8333,10.3807,1.8213 Frimley ICB,J82125,Jenner House Surgery,8003.956003,5.5127,74.2754,74.2268,3.4672,67.5182,75.817,2.7007,98.4615,3.44,1.7397,0.4988,0.691,14.3709,8.9442,16.837,75.226,81.6547,0.4745,0.6813,14.6312,0.9703,88.9821,89.4737,90.3614,96.3855,14.0025,1.3625 Frimley ICB,J82142,The Border Practice,10574.2273,5.481,73.3542,69.5853,2.388,77.221,74.1379,2.1275,93.3333,2.8314,1.5283,0.5037,0.9029,15.3805,8.5504,13.4335,73.8897,86.722,0.3473,0.5992,15.2826,1.3907,86.591,92.4419,89.1304,96.3768,15.8537,1.2591 Frimley ICB,J82178,Princes Gardens Surgery,11403.83629,4.1255,74.0214,69.6833,2.7435,63.7097,75.7062,2.0764,93.662,4.4981,1.6094,0.5754,2.0721,20.2371,9.1265,15.8356,67.7649,76.3533,0.4503,0.959,18.3361,3.2159,91.3497,89.3805,80.2548,92.9936,17.8642,1.4009 Frimley ICB,J82181,Mayfield Medical Centre,9507.6492,5.6371,74.3191,69.0722,2.855,67.4095,72.7273,2.3244,87.8788,2.8148,2.2182,0.8172,1.2407,23.2237,11,17.3848,70.5465,77.2926,0.3502,0.9446,17.1692,1.737,90.1961,94.0594,84.3137,92.8105,17.6108,1.5708 Frimley ICB,J82198,The Wellington Practice,5252.229418,4.5972,68.3673,59.2105,2.1196,71.3178,77.6316,2.0657,94.382,4.6125,1.7604,1.5269,1.9258,19.6142,9.251,15.3224,55.7747,76.2238,0.4491,1.0598,15.7632,1.4976,90.9195,83.4783,81.8182,88.3117,16.4179,1.8861 Frimley ICB,J82628,Crondall New Surgery,5177.23243,7.4382,81.6092,77.5194,5.4662,81.4433,83.3333,2.9954,97.8261,5.5887,1.1169,2.3016,1.1487,5.6388,5.8504,16.1787,72.8528,85.1974,0.2369,0.4062,11.0669,5.4191,90.5256,74.7748,86.9565,95.6522,7.4307,2.0308 Frimley ICB,J82630,North Camp Surgery,5208.750608,4.7505,66.129,60.1942,2.1087,71.6172,69.8925,1.3433,92.3077,2.5233,1.2965,0.2655,0.7653,13.0354,6.5811,9.8407,70.7182,80.4598,0.7498,1.0622,12.637,0.798,84.381,95.0617,89.4737,94.7368,14.811,1.109 Frimley ICB,K81001,The Waterfield Practice,14027.0135,6.0705,74.0476,71.885,3.2731,72.1582,73.3577,2.2204,91.2442,2.9858,1.04,0.7401,1.395,11.7056,6.0755,11.976,58.8235,71.5278,0.3509,0.6763,16.5525,0.5132,81.5407,90.0474,79.8507,88.0597,13.1144,1.3207 Frimley ICB,K81010,Kings Corner Surgery,6201.594889,5.5312,78.7402,76.0204,5.1222,67.1717,74.3169,2.7328,93.1035,5.4884,0.975,0.6729,1.2924,4.3669,5.071,13.6776,73.9427,79.4677,0.1648,0.563,9.2313,0.9473,80.5165,79.6117,83.0189,86.7925,8.8678,1.9638 Frimley ICB,K81015,Woodlands Park Surgery,3370.085297,5.0388,80.4688,76.4706,1.663,74.7967,80,2.439,100,3.1284,1.0809,0.4989,0.4315,9.9901,7.3995,18.071,78.8256,86.6667,0.1663,0.6652,10.9673,0.1448,95.0123,88.6793,91.8919,94.5946,12.2477,1.2749 Frimley ICB,K81018,Linden Medical Centre,9468.430738,6.8454,77.1605,79.5556,4.8799,78.0059,81.9095,3.2533,94.898,6.5465,1.1099,0.8516,1.8514,7.5961,6.1438,14.678,79.3133,90.2439,0.4402,0.622,9.136,1.4238,89.998,85.946,91.5789,95.7895,8.346,1.9711 Frimley ICB,K81019,Ross Road Medical Centre,4305.222243,4.9645,67.3913,65.625,2.5093,69.7479,78.1818,1.8216,87.013,2.8509,1.2082,0.3346,2.3194,12.6492,6.7335,10.0744,74.0088,95.4546,0.5948,0.7993,10.0749,1.0084,87.0907,79.7468,90.3846,92.3077,18.0791,1.0781 Frimley ICB,K81020,Claremont Holyport Surgery,18029.03984,5.9252,73.8574,73.5369,3.6288,68.1614,72.1557,2.7922,94.3182,4.8539,1.1446,0.7134,0.963,9.0543,6.355,12.6726,73.4289,84.8855,0.3593,0.811,7.8141,0.3044,86.711,85.5385,84.4444,93.3333,11.9471,1.5244 Frimley ICB,K81021,Datchet Health Centre,9624.281803,5.4334,72.7545,79.7414,4.5603,71.5152,81.5385,3.8267,82.9546,4.2584,1.0905,0.7733,1.5174,13.2522,7.8382,16.8534,66.2111,80.94,0.3668,0.6841,10.8419,1.3646,84.8608,89.1509,88.9831,93.2203,12.6596,1.7944 Frimley ICB,K81024,Langley Health Centre,20240.92661,5.3044,59.0909,63.5294,2.2316,68.3353,73.1148,2.5982,87.5969,3.6188,1.1995,0.4119,1.0575,20.8383,9.5736,12.4344,70.5805,81.6068,0.4572,0.6835,15.0743,0.1867,88.4656,90.4977,87.541,92.7869,14.2397,1.0954 Frimley ICB,K81028,Magnolia House Surgery,7769.200162,4.8421,72.9167,71.6667,5.2531,68.9362,76.1194,2.903,94.7368,2.1366,0.9464,1.1804,0.8438,4.1583,4.8571,13.1221,64.4419,77.2603,0.117,0.6806,7.0087,0.3881,78.6759,79.8387,63.4921,84.127,6.7568,2.0098 Frimley ICB,K81030,Ringmead Medical Practice,39845.33288,6.4456,75.4858,78.6579,4.2053,72.009,77.5372,2.7378,95.122,5.1498,1.5761,0.809,2.0771,12.9104,7.5949,16.9569,63.2951,75.4323,0.4341,0.6438,11.0708,0.4675,84.1162,83.5013,76.4706,88.671,23.1275,1.4996 Frimley ICB,K81034,Crosby House Surgery,10789.53568,5.2331,60.274,59.0361,1.9924,55.3488,72.0779,2.5569,90.5109,3.7987,0.8883,0.2989,1.4379,25.5062,9.2534,13.3239,64.8494,84.3602,0.4981,0.8634,15.9674,0.2455,84.1024,92.2179,96.3636,96.9697,14.7096,1.1124 Frimley ICB,K81036,The Cedars Surgery,10767.60706,6.4229,68.6007,70.1357,3.1473,68.0435,77.6596,2.6572,96.4912,5.2399,1.4963,0.7395,1.6173,10.6899,6.5794,13.0106,68.5859,89.759,0.5332,0.9717,10.3181,0.6505,85.9125,87.5598,89.3805,94.6903,14.2673,1.8058 Frimley ICB,K81042,Cookham Medical Centre,7294.471547,8.1795,77.5862,79.3269,5.9236,78.2222,78.8043,3.7445,91.5493,6.3776,1.3525,0.8266,1.3352,5.9641,5.4,15.6168,69.1094,83.3333,0.3006,0.7138,9.5507,0.8955,87.3975,87.2181,83.871,91.9355,8.5866,2.1916 Frimley ICB,K81043,Herschel Medical Centre,16119.08332,6.3221,62.6168,59.7656,2.1694,62.3129,74.3902,2.9487,81.1927,4.8979,1.1225,0.4653,2.7023,23.5729,10.679,13.0801,73.7874,81.672,0.8666,1.4017,21.5415,1.4259,91.4135,84.058,86.5672,89.9254,17.5909,1.1923 Frimley ICB,K81046,Lee House Surgery,7279.225271,5.9834,76.7857,75.4491,3.5795,75.5034,81.6993,2.8485,94.7368,5.3292,1.7268,0.5042,1.4098,7.8772,5.9597,14.3055,77.7654,87.9167,0.2773,0.6932,10.581,0.3739,90.2597,84.6715,91.6667,90.2778,11.1951,1.8906 Frimley ICB,K81060,Binfield Surgery,9679.279387,6.095,80.1105,82.7068,3.6431,76.8374,79.2208,2.0302,91.7241,0.8554,0.666,0.5858,0.7198,7.0844,5.0134,10.9934,59.4914,74.3494,0.1846,0.5055,5.5915,0.3416,77.6464,82.1782,78.5714,84.5238,8.4014,1.1716 Frimley ICB,K81066,The Symons Medical Centre,10019.3525,5.5155,72.619,76,3.2999,75.718,78.0702,2.5311,98.7013,2.5236,1.0971,1.4513,1.2672,7.6361,6.1801,11.9731,51.1834,69.8925,0.4406,0.6393,5.5995,0.396,81.8849,76.9784,66.9903,84.466,10.5437,1.5031 Frimley ICB,K81068,Sheet Street Surgery,8543.003868,5.3967,74.0854,74.8988,4.988,73.4426,77.619,3.0494,93.0233,4.2629,1.1544,0.7079,1.3117,7.8787,6.4395,15.1928,69.6558,82.4742,0.3267,0.8168,10.0997,0.6863,86.7696,82.9268,78.022,86.8132,11.0984,1.5901 Frimley ICB,K81074,Clarence Medical Centre,11086.36502,3.6889,73.741,76.4977,2.8687,54.2,72.5118,1.6655,92.8571,3.5395,0.5157,0.2845,1.5701,7.5508,3.2596,8.6771,74.4354,84.3137,0.0533,0.4327,4.663,2.0332,80.9408,80.8989,88.3721,90.6977,8.5779,1.0254 Frimley ICB,K81075,Farnham Road Practice,32190.17457,6.021,57.8873,57.404,2.2751,63.1988,68.4739,2.4348,85.8025,3.5506,1.6001,0.4912,2.0422,23.3363,9.9137,14.1269,65.6273,82.439,0.8166,1.2174,14.611,0.5762,83.4821,87.3887,82.7731,94.7479,22.1271,1.3048 Frimley ICB,K81076,Green Meadows Surgery,9074.483005,6.0484,79.5082,77.8626,5.9484,73.3624,78.3186,3.8325,89.7959,4.1737,1.1875,1.533,0.8036,5.458,6.659,18.86,57.2231,77.4451,0.1619,0.6153,9.0214,0.3349,79.7544,79.0961,84.375,88.5417,7.3878,1.9972 Frimley ICB,K81082,The Village Medical Centre,9637.55255,4.2748,63.5965,69.3182,2.4073,70.6468,79.0698,2.262,90.0826,3.3913,0.9629,0.2634,1.7511,19.2435,7.8001,10.347,64.2285,82.2695,0.4451,0.7267,12.6403,0.1297,83.4037,81.9588,,,12.443,1.0447 Frimley ICB,K81083,Bharani Medical Centre,14876.25721,4.711,57.9767,60.8696,1.7261,68.9716,85.0299,2.8067,88.8372,3.6954,0.5165,0.5641,0.8679,23.3261,13.3632,10.5199,79.9543,89.4068,0.3806,0.9106,15.2389,0.1785,90.9932,92.987,91.3174,95.509,11.3135,1.2504 Frimley ICB,K81084,Rosemead Surgery,6501.777724,7.0016,78.6325,75.7576,5.1893,73.7589,77.037,3.0494,96.5116,7.2179,0.9496,0.8693,3.1005,7.1885,5.529,17.4134,71.5285,80.7309,0.749,0.9496,10.5351,3.4783,88.7919,77.2358,87.931,86.2069,8.0701,2.1934 Frimley ICB,K81085,Shreeji Medical Centre,8340.67064,4.3361,51.4423,56.391,1.202,61.2903,74.2574,2.3606,85.8209,1.4547,0.2707,0.2274,0.2078,23.0148,12.9907,13.5896,72.8921,85.5263,0.5523,0.8771,15.3505,0.1793,89.1775,90.9575,83.5106,86.7021,7.3153,0.9421 Frimley ICB,K81086,Manor Park Medical Centre,10679.29085,6.8101,66.4311,67.1795,1.8654,59.447,85.1613,4.3467,90.2778,1.8321,0.6247,0.3123,0.5725,24.0199,16.4624,14.2721,68.8312,83.3977,0.5466,1.1539,19.4206,0.2247,90.5035,88.7531,92.4731,91.0394,10.1296,1.5964 Frimley ICB,K81087,Easthampstead Surgery,5947.998671,6.2332,68.6667,76.5217,2.5589,63.1783,67.3077,1.6749,90.1235,1.3195,1.3338,0.3257,2.3346,14.7753,6.2363,12.0968,52.5836,69.6721,0.4187,1.1787,10.8404,0.2101,83.3472,85.7143,81.4815,83.3333,17.9914,1.3027 Frimley ICB,K81094,Great Hollands Practice,3552.121647,4.3153,64.2105,71.875,1.7853,70,83.0508,1.8305,96.1539,2.7598,0.8362,0.2486,1.145,14.8204,8.1556,10.6667,80.6616,86.076,0.4068,0.5876,14.9149,0.2331,86.0687,94.0299,92.1569,90.1961,17.2814,0.791 Frimley ICB,K81097,Redwood House Surgery,5000.522339,5.0734,74.5455,77.7778,4.048,72.2222,78.0952,2.3499,85.3659,4.0888,0.8405,0.6861,1.3629,7.8016,6.4202,13.4305,69.1508,79.1262,0.4117,0.4803,9.4526,0.9292,88.218,92.4051,86.7925,86.7925,11.4208,1.2178 Frimley ICB,K81607,Cordwallis Road Surgery,2583.112014,7.177,51.5625,57.1429,0.7724,55.5556,81.5789,3.6542,90,3.3481,0.3565,0.3565,0.2017,11.7995,15.7602,15.1515,76.3158,83.6957,0.713,1.0101,19.8467,0.1284,96.5966,90.9091,97.4684,96.2025,10.8571,1.3666 Frimley ICB,K81608,Dr Nabi,4324.159341,3.8819,52.2727,58.0645,1.1044,52.459,70.9677,3.0808,81.8182,3.6745,0.3488,0.2713,0.4724,22.3863,14.3553,13.1757,64.3436,79.3651,0.3875,0.775,17.2441,0.1773,87.7432,94.2308,58.8785,78.5047,10.3226,0.6782 Frimley ICB,K81610,Forest Health Group,28275.35883,6.1384,71.9774,74.7801,3.8426,70.9477,74.6141,2.5821,91.3433,5.4835,1.312,0.5996,2.5581,13.0756,6.9103,14.7868,73.5325,85.4658,0.5093,0.6931,17.2705,0.9407,82.2355,85.641,88.0399,90.3654,13.8459,1.5151 Frimley ICB,K81616,Kumar Medical Centre,4824.679457,7.4225,54.2636,67.0732,1.8746,60.3865,78.2609,3.4247,92.1875,0.8766,0.4867,0.1622,0.7344,22.807,13.7971,13.951,77.93,92.3077,0.9733,0.739,16.5601,0.3378,89.0463,96.2687,88.6957,93.0435,7.6817,1.1355 Frimley ICB,K81630,South Meadow Surgery,12823.47957,6.7379,74.0541,74.4275,3.5136,72.1133,73.8197,2.9245,91.5966,4.9098,1.3984,1.4338,1.6465,10.965,6.5847,14.0048,73.0482,88.8,0.3407,0.8589,15.242,1.3848,87.7137,86,78.7402,93.7008,13.2301,2.023 Frimley ICB,K81645,240 Wexham Road,6504.822586,5.0926,56.4103,63.0435,1.7384,67.5926,75.2941,2.0018,85.9375,4.3338,0.3819,0.1712,0.8272,23.6665,10.7231,11.9847,74.8139,85.5769,0.5268,0.6717,16.4719,1.314,94.9712,94.5946,85.9504,95.0413,15.5939,0.7902 Frimley ICB,K81655,Ascot Medical Centre,5418.283873,6.3285,73.5955,70.5882,3.5116,73.3333,74.7967,2.341,92.1348,3.4328,0.9649,1.3603,1.9412,6.6373,6.4178,12.9706,67.9936,86.4583,0.3796,0.7593,11.1157,0.8522,84.8106,87.3563,92.7273,96.3636,10.7217,1.6292 Frimley ICB,K81656,Crown Wood Medical Centre,5571.73914,7.0642,72.7273,72.0339,2.4284,75.265,78.0952,1.514,89.1304,1.5956,1.2442,0.2398,2.3935,11.9098,7.6408,13.0565,64.359,81.3187,0.3148,0.5696,15.8007,0.2637,90.4451,81.4815,73.3333,89.3333,17.5998,1.0793 Frimley ICB,K81657,Evergreen Practice,4360.597121,4.4743,63.8095,63.75,1.5868,62.0072,71.0526,1.3138,90.1409,3.1347,0.836,0.2389,0.956,15.8216,6.0473,7.7461,70.1456,80.9524,0.3071,0.5119,12.8057,0.5393,80.9054,93.6709,88.4615,96.1538,14.9244,0.5801 Frimley ICB,Y00265,Chapel Medical Centre,11651.99266,3.6772,60.5839,55.1724,1.1288,59.973,70.2479,1.2141,85.7143,1.3344,0.5119,0.0984,2.2596,24.2626,6.6479,7.0547,69.3798,88.3721,0.6694,0.7088,18.5037,0.5136,90.1849,92.1986,85.7143,92.517,19.6881,0.5644 Frimley ICB,Y00437,The Orchard Surgery,8814.483769,5.2637,60.804,63.6943,1.7001,73.0415,75.3333,2.023,93.3333,2.8219,0.8833,0.2279,1.2224,19.1312,10.1171,12.6603,78.793,85,0.3609,0.7598,14.4213,0.0755,86.3317,84.6154,79.3548,89.0323,11.925,0.8738 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence Sussex ICB,G81001,Hove Medical Centre,9029.072481,7.8826,74.0072,71.4286,3.4569,68.5121,76,2.8353,91.358,4.4791,2.0611,0.6543,1.5849,20.353,6.9947,14.5474,72.0529,79.1429,0.6325,0.807,8.5722,0.3557,90.1678,85.5491,81.25,92.7083,14.2726,1.8321 Sussex ICB,G81006,Ardingly Court Surgery,7562.934975,6.4082,62.9213,52.1008,4.155,56.917,65.4206,2.9522,88.8889,4.6028,2.7023,0.4686,1.8127,33.7683,5.2502,12.3087,54.4495,73.6,0.8123,2.3899,9.0812,3.6941,86.9692,86.9565,80.3571,85.7143,22.6052,1.7338 Sussex ICB,G81011,St Peter's Medical Centre,19570.46419,7.6915,59.6987,61.8421,2.7134,56.4607,69.6165,2.4394,83.1683,2.1854,2.4658,0.3635,1.359,27.8166,5.5158,9.9947,62.0733,71.4286,0.7429,2.0601,8.6251,0.2168,77.2803,84.5361,75.1553,88.1988,24.7087,1.3962 Sussex ICB,G81014,Carden Surgery,7483.615847,6.7033,74.1935,73.125,3.0468,72.6923,73.6486,2.3633,89.0625,3.1018,1.981,0.7067,3.5449,16.2322,5.3875,11.1678,52.5102,73.1278,0.614,1.0195,11.7639,0.5828,88.5217,78.5714,81.6901,91.5493,16.8846,1.4249 Sussex ICB,G81018,Preston Park Surgery,9472.900368,6.5409,76.8707,83.3333,3.3976,72.1854,80.2419,1.5429,86.4197,3.0717,1.1572,0.4842,1.586,14.307,3.4881,9.2245,66.2959,77.3333,0.4596,1.19,5.6716,0.5954,85.5922,83.4952,85.1852,90.7407,17.1201,1.1572 Sussex ICB,G81028,Park Crescent Health Centre,11354.27012,6.7791,66.436,61.6935,2.4561,62.0763,70.5179,1.9342,91.2088,2.4651,1.6271,0.4221,1.021,25.1559,4.6453,9.4865,69.9522,80.6283,0.4605,1.2587,8.5633,0.1517,82.1488,81.6901,73.4043,88.2979,24.4562,1.228 Sussex ICB,G81034,Charter Medical Centre,26026.81624,5.8934,70.8108,66.6667,2.7664,68.9815,73.951,1.9147,87.9167,2.4992,1.1378,0.5819,0.2755,15.3506,4.0222,8.8778,69.921,77.931,0.4876,1.167,5.9351,0.282,82.92,78.8462,73.4104,83.237,15.1028,1.258 Sussex ICB,G81036,Warmdene Surgery,8428.077211,5.836,78.1145,85.6502,4.4134,78.4672,83.0688,2.6265,89.7059,6.9901,1.3132,1.141,1.3499,11.26,5.9217,16.943,64.2546,77.5176,0.4413,0.8611,10.0642,1.3962,90.2016,77.5956,79.4872,89.7436,10.585,1.9806 Sussex ICB,G81038,Stanford Medical Centre,14300.15068,4.8764,71.3178,79.9296,3.0191,61.3419,77.7778,1.6315,89.2562,3.251,1.1437,0.58,1.1914,19.6064,3.8515,8.7322,68.5555,81.8436,0.542,0.9215,7.9658,0.682,78.8424,80.9524,85.9813,90.6542,16.4952,1.0787 Sussex ICB,G81042,Beaconsfield Medical Practice,11280.79424,6.5961,77.0455,80.5233,3.392,74.5263,77.8816,2.465,85.8696,2.7725,1.0277,0.6252,1.0288,11.4086,4.3,11.599,64.5589,69.0691,0.5246,0.9702,5.0044,0.2307,82.4667,74.2138,68.6047,83.7209,11.7293,1.3079 Sussex ICB,G81044,Montpelier Surgery,5328.692785,5.458,71.3514,71.7557,3.1419,66.2021,77.5,1.718,84.6154,1.2461,1.0215,0.2476,0.6923,18.6039,2.5201,7.5994,82.3529,87.9518,0.5108,1.1299,5.4863,0.1808,83.3395,88.8889,80,92,18.0928,1.006 Sussex ICB,G81046,Portslade Health Centre,11656.01843,6.7599,73.0458,64.3836,3.6656,72.7735,71.875,2.8151,88.2979,3.5071,2.3303,0.7144,1.874,23.0721,7.8535,13.4547,46.5918,70.4478,0.5783,1.1567,13.2014,0.5462,84.1956,84.3882,79.8507,91.791,16.7803,1.8456 Sussex ICB,G81047,Seven Dials Medical Centre,6052.824939,5.3952,67.6923,66.6667,2.7195,63.6364,69.5652,1.6909,85.3659,1.277,1.0568,0.2818,1.6554,16.3907,4.1236,10.3142,74.2044,82.963,0.3523,1.5781,6.0697,0.2742,79.1439,79.4521,86.9565,95.6522,21.9713,1.0427 Sussex ICB,G81054,Pavilion Surgery,11182.25717,6.4503,64.1509,62.0192,2.895,59.6817,66.1376,2.1886,90.566,2.9657,1.9399,0.4079,2.3881,30.9834,5.9335,12.7935,51.8095,69.4915,0.388,1.6813,9.2747,0.5058,72.3027,77.7027,62.1053,85.2632,20.0503,1.6813 Sussex ICB,G81065,Woodingdean Medical Centre,9279.582114,8.0959,77.4834,75.7991,4.3085,74.8092,74.1573,3.7883,93.9024,6.3716,2.567,1.3118,1.4942,17.238,7.6271,17.1548,67.3024,80.5289,0.9273,0.9499,11.6014,0.2811,90.407,75.5869,73.4694,91.8367,12.9816,2.4878 Sussex ICB,G81070,Trinity Medical Centre,22458.40341,4.9737,67.5676,65.7787,3.3893,64.8621,74.1525,1.9757,89.5954,3.1295,1.2524,0.9465,1.2666,16.5462,4.2197,9.8867,60.5336,73.6931,0.4712,1.5376,5.9977,0.3524,81.3865,81.9923,74.1497,82.9932,16.1789,1.5086 Sussex ICB,G81071,University Of Sussex Health Centre,10396.3924,2.2429,68.9655,61.9048,0.2274,20.607,59.0909,0.0629,90,0.0785,0.0484,0.0048,1.52,19.5821,0.5192,0.6385,47.541,60,0.0194,0.4257,1.4122,0,50.1625,88.8889,72.7273,81.8182,15.0592,0.0919 Sussex ICB,G81073,Mile Oak Medical Centre,8118.26312,9.4368,76.5487,69.7802,3.1796,82.9508,80.4598,2.9215,91.6667,4.9538,2.8159,0.5749,1.318,21.4643,7.8791,16.0038,73.559,84.1328,0.9386,0.9738,18.0124,0.2249,92.2267,82.4859,81.6327,93.8776,16.9039,1.7599 Sussex ICB,G81075,The Avenue Surgery,6301.563492,8.0544,62.2378,54.386,2.417,62.8141,66.6667,3.4553,78.7234,2.6649,2.8596,0.3404,3.1455,37.4228,9.4352,12.5957,61.3377,71.6535,1.0383,1.583,15.1813,0.1657,83.1875,89.1304,82.716,95.0617,21.4739,1.583 Sussex ICB,G81076,Saltdean and Rottingdean Med Practice,13212.06026,6.471,77.1536,69.2308,5.2069,70.3704,75.5102,3.9962,93.75,6.0547,1.4798,1.464,1.3621,10.5422,6.4954,15.3201,62.5367,73.6014,0.4827,0.9496,8.1631,0.2064,87.3952,82.8244,86.0465,95.3488,8.9058,3.007 Sussex ICB,G81083,Wish Park Surgery,7091.421427,5.5999,70.3125,68.4211,3.2384,73.2075,78.9116,2.3112,89.8305,3.5948,1.3169,1.3303,0.4128,16.3091,5.0483,10.5079,62.4348,80.6763,0.4434,1.1556,7.7743,0.2525,87.9708,75.4386,80.7018,92.9825,15.4187,1.8543 Sussex ICB,G81613,School House Surgery,5186.837769,5.2002,58.7302,52.9412,2.6811,50.2924,59.7403,2.401,67.5,5.5137,2.2409,1.3806,2.6233,29.5775,7.7347,10.7643,57.0423,82.1429,0.9604,1.6807,10.6145,0.0615,75.8275,86.7188,83.0508,93.2203,24.7836,1.5406 Sussex ICB,G81638,Wellbn Healthcare,21598.49068,6.1913,61.8534,53.2468,1.8491,55.5718,65.9148,1.4003,85.3333,2.1442,1.2881,0.2708,1.5041,19.8146,3.7034,7.6283,61.7008,70.0637,0.8046,2.0231,7.1803,0.3852,75.83,82.0084,65.035,86.7133,20.6566,0.8317 Sussex ICB,G81646,The Haven Practice,1833.919746,5.6388,77.7778,75.8621,3.7272,74.4186,80,1.6027,92,2.9103,1.2672,0.1864,1.3359,12.4684,2.9661,9.3179,69.7778,84,0.2982,0.5218,7.2519,1.7635,89.7872,82.3529,80,100,11.2511,0.8573 Sussex ICB,G81656,Regency Surgery,5534.848036,5.2402,59.1837,54.2553,3.82,54.2714,62.6506,1.6529,88.8889,3.0237,1.8366,0.2388,0.6961,32.7199,3.8217,10.1561,63.5193,78.1609,0.6061,1.5427,5.6559,1.3408,74.1905,79.3103,78.125,87.5,18.7412,1.4692 Sussex ICB,G81663,Links Road Surgery,5114.012051,6.2978,76.9231,70.7692,3.041,69.9387,77.0642,2.8056,84.8485,2.6796,1.8638,0.7259,1.8497,22.2969,6.8022,14.0867,67.9181,84.8485,0.5886,0.824,10.268,0.23,85.7143,82.4176,87.037,90.7407,16.3094,1.8638 Sussex ICB,G81669,Broadway Surgery,2727.782588,8.7518,61.6438,51.0638,3.2479,72.2222,70.7317,3.9799,54.5455,5.5948,6.2214,0.5947,3.4158,46.0186,11.1047,21.226,57.8431,67.8571,1.0979,1.7841,12.3086,0.1214,91.6755,89.0625,67.5676,86.4865,26.7548,1.3724 Sussex ICB,G81689,Arch Healthcare,3112.676436,12.3853,27.2727,25,0.6468,56.4103,60,1.9405,0,0.4024,5.8862,0.1941,2.4816,40.8487,4.4059,7.8267,47.1074,,1.3583,12.2898,9.658,0,91.8966,93.75,61.5385,84.6154,78.9922,1.229 Sussex ICB,G81694,Ship Street Surgery,2551.52373,4.1438,62.7451,52.7778,2.6828,45.7516,62.8571,1.6767,78.5714,2.4258,1.1737,0.1341,3.0051,26.3664,3.5676,7.5453,52.1978,69.7674,0.0671,1.5761,5.7205,0.2594,70.4918,87.8788,64.7059,82.3529,25.2706,1.006 Sussex ICB,Y02676,Brighton Station Health Centre,6848.173984,3.5194,56.7568,50.8772,0.8194,45.9165,59.0164,0.4668,77.5,0.5109,0.4668,0.0207,2.3548,24.2766,1.6694,2.7798,61.0236,92.8571,0.1141,1.141,3.3433,0.1789,67.0496,86.2069,76,88,21.0852,0.2282 Sussex ICB,Y06007,Wellsbourne Healthcare CIC,8111.244128,8.13,62.3711,60.7595,2.0637,58.1921,70.4698,2.6887,88.5417,3.1549,2.0519,0.4245,1.2261,44.5598,7.343,11.5212,69.2029,81.8792,0.967,1.5094,14.683,0.3905,89.618,86.7089,79.3478,90.2174,23.9051,1.7807 Sussex ICB,H82003,Meadows Surgery,9271.439974,8.3168,78.3133,75.7085,4.3724,76.0606,79.0244,3.5917,96.3964,8.2082,1.7568,1.0638,1.9829,8.9841,7.2395,15.2059,75.5017,84.5304,0.3904,0.6149,11.6332,0.8646,85.2916,80.0813,90.8257,94.4954,10.7341,2.0105 Sussex ICB,H82004,Cowfold Surgery,4650.246053,7.3078,78.3019,72.3404,5.5117,76.1538,76.3158,3.08,89.4737,2.5767,1.3171,0.7092,1.2515,11.714,6.4118,16.6363,64.366,78.7879,0.5066,0.77,8.3681,1.0154,87.8755,85.9155,87.7551,87.7551,10.06,1.9656 Sussex ICB,H82005,Cuckfield Medical Centre,9767.239376,7.3919,77.8788,73.0924,3.3497,77.4403,77.4336,2.4015,95.0311,4.0607,1.0414,0.4508,1.169,8.7032,4.9645,13.0178,75.1475,86.5204,0.4275,0.6839,8.7982,1.6386,90.9338,82.6347,81.1765,96.4706,10.1533,1.601 Sussex ICB,H82006,The Petworth Surgery,6242.474375,7.2578,74.5174,76.0479,5.8244,72.0779,71.5385,4.6896,97.7778,5.0388,2.3531,1.8358,1.2547,17.0668,8.1613,20.01,68.1395,82.5959,0.7176,0.8845,10.3565,1.9786,86.1891,79.3548,76.3889,87.5,11.1531,3.0207 Sussex ICB,H82007,Westcourt Medical Centre,15623.37516,8.1688,79.8942,71.7452,5.3316,73.7463,73.3333,4.7916,94.6809,6.4604,2.5631,1.2473,1.1944,14.9999,9.8944,21.6763,58.3779,74.4627,0.6237,0.829,16.8838,1.4296,89.4674,81.7568,83,91.5,10.5611,3.164 Sussex ICB,H82009,St. Lawrence Surgery,16244.41991,8.1264,75.0923,82.4873,5.1462,75.6705,76.8546,3.0755,91.7293,5.1959,1.6443,1.0231,2.0844,13.2984,8.018,17.4909,71.3964,83.589,0.4629,1.1267,15.8007,2.8322,88.1191,81.117,85.4054,92.4324,12.3134,2.1681 Sussex ICB,H82011,Strand Medical Group,15794.90455,7.7441,73.8889,71.0811,3.8356,69.7531,73.6655,3.1921,96.3504,3.8428,1.4527,0.5798,0.5839,18.1739,8.4418,15.3998,67.548,76.8443,0.6308,0.8665,6.5809,0.6779,76.922,77.3256,83.4171,89.9497,15.6315,1.9815 Sussex ICB,H82012,Leacroft Medical Practice,12943.57363,6.417,62.4585,53.0233,1.9004,71.3514,74.8603,2.822,92.8571,4.233,1.6789,0.3429,1.2362,21.9274,9.9123,12.0026,65.5989,80.3279,0.8145,0.8645,13.8603,0.3028,89.239,83.3333,83.1731,93.2692,16.6886,1.3074 Sussex ICB,H82013,Langley House Surgery,14052.80514,6.6365,74.8614,69.2982,4.6278,72.5926,78.8235,3.1934,96.1539,3.9405,1.2683,1.2381,1.073,13.5734,6.6976,16.3672,71.6198,83.0861,0.4303,0.8304,13.7872,1.0738,89.9029,82.4627,74.8148,91.8519,9.6819,2.295 Sussex ICB,H82014,Coppice Surgery,14476.65555,8.0366,79.3878,74.3827,6.118,74.5098,76.4463,4.437,93.7008,6.2534,1.9081,1.4386,1.4649,14.0377,8.6226,19.3837,61.7831,75.3442,0.6057,0.9465,9.6228,1.7169,89.521,77.2727,79.4118,90,11.5892,2.7031 Sussex ICB,H82016,Bersted Green Surgery,14143.93347,7.1855,69.0789,66.3265,4.0015,59.3897,67.4419,3.7429,81.3953,4.2329,2.2062,0.9205,1.712,22.5377,9.7115,17.9688,71.1123,84.5098,0.4869,1.2096,15.0503,1.083,87.3577,83.8542,82.0513,92.8205,21.008,2.1605 Sussex ICB,H82017,Park Surgery_H82017,22371.91971,7.1114,75.4148,71.3675,4.8767,70.7055,72.9529,3.6692,95.6522,7.8015,1.624,1.975,0.5332,9.7576,7.3651,16.1558,69.2503,80.4766,0.5897,1.0437,8.4043,0.5653,84.7335,78.4736,72.1739,86.9565,9.9176,2.4945 Sussex ICB,H82020,Bognor Medical Centre,10857.90678,4.548,54.8276,43.6275,2.7428,39.0909,46.7836,2.6686,70.7692,1.698,2.4569,0.4977,0.8613,30.9227,6.648,11.3206,51.9324,71.3693,1.2496,1.8638,10.2498,0.4665,72.163,84.2857,71,83,30.9153,1.5673 Sussex ICB,H82021,Arundel Surgery,6726.284561,6.8245,77.1429,70.202,6.0181,84.1379,85.034,4.4434,86.8421,2.8311,2.3698,0.9666,0.9132,15.5203,6.9003,21.0789,64.0767,77.0083,0.5769,0.8107,8.0183,0.3811,89.1206,83.2,87.3239,94.3662,9.6181,3.165 Sussex ICB,H82022,Steyning Health Centre,11893.74797,6.9641,77.8455,74.8466,6.3586,79.2593,79.5367,3.9804,83.9081,6.4012,1.518,1.1047,0.5791,9.5257,6.8376,17.8192,66.4491,81.9277,0.3289,0.9023,9.4209,1.5865,90.8798,78.125,93.3884,95.8678,8.8577,2.6564 Sussex ICB,H82023,Adur Health Partnership,36729.57667,7.2637,77.6675,83.0303,5.2434,75.2269,75.762,3.728,93.6027,5.6563,1.9563,1.0966,1.92,13.9529,7.8938,17.4496,66.986,81.896,0.3582,0.9782,10.4407,1.4189,87.8688,80.5094,78.6925,87.1671,13.3274,2.1519 Sussex ICB,H82025,Woodlands&Clerklands Partnership,16293.60454,6.2845,75.4639,73.7288,3.5524,70.3704,74.2574,2.9109,86.5672,2.941,1.4585,0.5386,1.1174,16.4674,7.7375,13.0658,71.0035,86.2921,1.1438,0.702,17.1025,0.3945,89.152,85.6164,85.0267,95.1872,16.0733,1.6461 Sussex ICB,H82026,Saxonbrook Medical Centre,15723.45169,6.4975,67.3317,59.0214,2.4699,62.8297,74.6082,2.3237,89.1403,1.8644,1.6332,0.242,0.7962,14.5911,6.9945,12.3545,80.0924,88.1119,0.5242,0.8115,8.3931,0.4416,89.6903,80,83.6735,90.8163,13.344,1.0132 Sussex ICB,H82027,Rudgwick Medical Centre,3451.149806,6.3584,81.0127,76.4151,4.325,74,78.4091,2.675,97.1429,4.3257,1.3,0.675,0.3499,9.8156,5.4355,15.1,75.9815,84.2105,0.2,0.45,8.8104,1.6811,91.2702,87.931,84.8485,93.9394,8.8555,1.675 Sussex ICB,H82028,The Courtyard Surgery,12602.91274,5.6209,76.8041,67.7903,2.9097,69.1622,74.6667,2.2163,91.8367,1.9819,1.0045,0.5184,1.2865,9.5438,5.2909,11.5611,77.4308,90.1333,0.3175,0.8165,8.3362,0.422,89.8367,86.9318,77.6786,94.6429,10.9424,1.2961 Sussex ICB,H82030,Pulborough Medical Group,13466.36997,7.4655,78.3784,73.8462,6.0854,75.076,77.8547,3.7029,93.6842,5.4303,1.5176,1.1306,0.5502,10.9846,7.006,17.581,69.5447,78.115,0.3794,0.774,5.9895,0.305,85.9576,85.2273,76.9784,90.6475,9.3666,2.8303 Sussex ICB,H82031,Loxwood Surgery,5821.40083,7.1778,77.9783,74.5946,5.3025,77.5148,80.8219,3.0919,91.2281,3.5072,1.5683,0.6572,0.7896,10.6644,6.3245,15.7282,74.6787,90.5455,0.2987,0.4332,10.4297,0.6096,85.7534,85.5769,93.5484,98.3871,9.1763,1.6878 Sussex ICB,H82032,Riverbank Medical Centre,12711.50053,6.5473,74.606,75.9563,5.4886,74.9263,75.1773,3.8397,93.1818,4.1924,1.7252,0.8168,0.3902,13.3042,7.0737,17.3206,72.1472,88.2629,0.2366,0.771,7.804,0.454,89.7214,87.3239,92.029,94.9275,11.8978,2.5802 Sussex ICB,H82033,Gossops Green Medical Ctr,7298.316659,6.5665,67.2986,59.8684,4.0645,66.1871,71.0744,2.7452,94.0299,4.0461,2.2255,0.4131,0.6026,20.2031,8.3037,14.8188,69.079,69.5,1.0528,0.8396,7.5069,1.5108,86.8791,81.0458,80.2083,92.7083,16.9698,1.5725 Sussex ICB,H82034,Lime Tree Surgery,29230.33456,7.5803,78.3534,81.9464,3.9059,72.8117,73.2342,4.4784,93.1707,3.7794,2.1269,1.1377,0.7103,14.7161,8.1164,18.2072,62.1554,78.5216,0.6594,0.8841,9.0144,0.3679,87.2528,79.879,86.2687,93.4328,10.2595,2.5617 Sussex ICB,H82035,Lindfield Medical Centre,10505.29838,6.6819,82.1256,75.3571,5.1044,81.2081,79.8283,3.1509,93.1373,3.6946,1.3504,1.1883,0.7165,5.9936,6.3583,18.2391,71.5609,80.2568,0.3061,0.5942,6.6167,0.7159,83.111,75.8794,71.5686,91.1765,6.961,2.4037 Sussex ICB,H82036,Orchard Surgery,9914.013526,8.9435,77.4096,75,6.1036,73.6402,75.4386,4.0203,95.6522,5.0308,1.4978,0.991,0.9901,9.6116,7.2929,18.3784,71.1894,81.0865,0.6532,0.9347,8.8306,0.2684,86.5339,86.0825,86,90,10.527,3.0631 Sussex ICB,H82037,Selsey Medical Practice,16041.25088,7.247,74.3178,66.3102,6.2614,73.741,74.502,4.8401,93.3333,8.2959,3.9321,1.3976,1.1092,17.4086,11.3544,22.724,76.0692,82.0577,0.5685,0.908,17.9943,0.2228,92.2512,84.9699,86.6379,92.2414,16.695,3.5294 Sussex ICB,H82038,Flansham Park Health Centre,14041.52181,8.2098,79.7468,75.2113,6.2031,75.625,79.2157,4.2011,92.5926,8.2049,1.9034,1.1982,1.9236,12.85,9.1448,20.2245,63.0193,80.9524,0.728,0.819,14.6139,0.5794,91.3095,80.0937,66.6667,89.7849,10.8101,2.9195 Sussex ICB,H82039,Park Surgery_H82039,12219.10111,8.2546,73.5369,80.8118,5.2714,74.2515,71.5736,3.8296,92.8571,3.6248,2.0663,1.0469,0.8093,25.2156,9.4847,17.1733,61.3221,74.3304,0.4959,0.8633,12.6297,0.8998,90.4424,84.898,79.8561,88.4892,16.4814,2.149 Sussex ICB,H82040,Modality Mid Sussex,27572.31198,6.6263,76.4603,71.1615,4.8628,70.6977,73.5099,3.2857,86.9889,7.4954,1.7546,0.8313,1.4581,6.304,7.0465,17.447,58.9051,74.3912,0.5323,0.7426,8.3146,0.8098,83.2849,78.1711,75.2508,87.6254,10.7129,2.1751 Sussex ICB,H82041,Victoria Road Surgery,14977.79218,7.4215,71.0843,76.0656,4.6294,67.1756,68.2171,3.0338,92,4.6009,2.1823,1.0232,1.8368,21.9047,8.5485,17.6159,69.5831,83.237,0.9087,1.7101,13.9262,0.949,91.9051,85.2941,87.4286,94.2857,17.2013,1.9033 Sussex ICB,H82042,Cathedral Medical Group,14388.75496,7.059,70.3297,65.9091,4.1544,61.1111,69.9153,3.123,81.5534,3.2565,2.0555,1.0602,0.8748,15.7995,7.5171,14.4392,58.1025,73.2975,0.9016,1.3992,11.5018,0.4592,83.0922,84.8797,77.9874,89.9371,15.9127,2.1998 Sussex ICB,H82043,Grove House Surgery,14312.24453,8.2654,78.75,75.8621,7.8714,72.7679,76.6055,5.7849,88.4058,2.5028,3.4477,1.5134,1.0052,13.6687,10.6119,21.9038,71.3007,85.4546,0.5015,0.7343,13.0065,1.5163,91.0328,83.7921,86.4583,93.2292,9.5707,3.779 Sussex ICB,H82044,Dolphins Practice,10079.57349,7.0114,75.2778,68.8976,4.1221,74.1935,76.3889,2.8828,96.5116,3.6353,1.3022,1.3022,0.5065,6.9683,6.4809,13.4351,61.6171,72.6191,0.2515,0.916,7.2032,0.4397,86.6462,74.2424,75,81,8.9427,1.9668 Sussex ICB,H82045,Worthing Medical Group,26167.31651,7.8575,66.5041,66.8224,5.1254,71.7115,72.8767,4.1831,91.9753,6.4628,2.0368,2.9268,0.9982,22.0336,8.3489,17.3988,63.0757,79.2062,0.6425,2.113,10.8893,3.6258,89.4986,71.0801,80.9701,86.9403,19.2971,3.3218 Sussex ICB,H82046,Broadwater Medical Centre,11397.53987,8.2769,74.3655,73.4266,4.1416,75.5208,77.1429,3.5723,93.75,2.8431,1.7408,0.5445,0.7698,14.7103,7.6086,15.172,63.4965,83.1296,0.858,0.9735,9.5864,1.1791,89.1591,83.6576,81.7518,88.3212,13.1208,1.947 Sussex ICB,H82047,Bridge Medical Centre,10454.4416,7.001,77.2277,78.5047,3.359,78.043,81.5476,2.7032,96.8,4.6952,1.3294,0.6293,1.3219,15.1629,8.7891,14.7744,73.5251,83.9228,0.7534,0.8508,16.7635,0.9147,90.2472,84.8361,91.7241,95.1724,13.8943,1.4003 Sussex ICB,H82048,Avisford Medical Group,13388.16609,7.2771,77.7778,71.7514,5.871,77.7049,77.7778,4.5291,94.3396,5.8578,2.5329,1.4845,0.6652,15.3493,9.0605,21.0434,65.1475,78.4162,0.5955,0.8219,13.2149,0.7457,90.4986,77.1772,81.0345,91.954,12.0499,2.5832 Sussex ICB,H82049,Parklands Surgery,10925.84341,6.1628,75.2717,69.4118,4.3188,64.2424,75,2.8221,86.747,3.322,1.5057,0.8115,1.2279,14.4044,6.6536,11.3335,73.443,77.3399,0.577,0.9828,11.172,1.8531,89.486,79.6703,72.5664,84.0708,11.7857,2.3623 Sussex ICB,H82050,Ifield Medical Practice,10399.12616,6.4175,66.4151,60.5405,3.6919,63.5171,70.9677,4.1461,87.5,6.5422,2.0296,0.2899,1.7045,21.0872,8.6441,13.3565,77.4222,81.4159,0.6959,0.9471,16.4808,1.756,83.2954,85.8209,81.0606,87.8788,18.9019,1.4497 Sussex ICB,H82051,Lavant Road Surgery,12495.0414,7.3915,77.8022,81.7881,4.3946,74.0525,76.8559,3.312,95.4955,2.9285,0.9944,0.9864,1.5939,13.9894,5.4796,14.1059,74.6764,82.218,0.5774,1.0425,7.2684,0.7736,81.0583,82.4859,82.6923,89.4231,9.972,2.3095 Sussex ICB,H82052,Pound Hill Medical Group,15769.82804,6.0992,77.6316,67.9144,3.9914,72.5458,75.1634,3.0824,91.5033,6.6578,1.0488,0.4603,0.7742,9.9904,7.6979,13.3085,70.0055,81.3705,0.5128,0.6002,8.8624,0.8611,84.6164,82.4,77.665,93.9086,10.1847,1.7888 Sussex ICB,H82053,Furnace Green Surgery,7796.453994,6.8702,76.7347,72.327,4.5918,67.0543,79.3388,3.1789,95.5882,7.2353,2.0921,0.6928,0.9791,16.2474,9.0028,15.7316,78.5227,91.0072,0.8559,0.8695,14.0392,1.0038,91.5233,88.0952,94.8454,95.8763,11.5273,2.3502 Sussex ICB,H82055,Billingshurst Surgery,12621.4756,7.1396,77.5424,71.3864,4.4763,73.7226,76.6187,3.0779,92.6667,4.0291,1.4993,0.9299,1.2915,11.7004,6.3837,15.714,55.0181,75.6654,0.5622,0.7425,13.497,1.5326,80.3243,80.5861,76.5625,89.0625,13.3056,2.0255 Sussex ICB,H82056,Newtons Practice,12311.78266,6.3749,73.4247,69.084,4.8247,68.9579,75.1073,2.9793,90.2778,3.7184,0.8301,1.4748,1.1827,7.3124,6.2651,14.1407,67.0905,78.634,0.3409,0.8894,10.1618,2.5411,87.49,78.4314,80,86.6667,9.4655,2.2678 Sussex ICB,H82057,Mid Sussex Health Care,18674.99529,7.0684,78.1032,73.5812,4.5769,78.3694,78.2022,3.1276,87.2928,5.6209,1.1735,0.6311,1.1695,8.2274,5.2641,15.7317,65.4442,67.5082,0.3039,0.7293,7.3035,0.4511,88.1291,82.5301,72.0497,87.5776,7.9928,1.87 Sussex ICB,H82058,Maywood Health Care Centre,19041.4666,7.2841,72.0508,64.3038,4.1721,67.8766,71.7391,3.3207,90.4762,4.2817,2.2649,1.5042,1.06,23.2817,8.2736,16.223,57.6609,77.454,1.1353,1.3226,13.3054,0.7123,85.334,81.0096,72.9358,88.0734,19.5685,2.2422 Sussex ICB,H82059,Willow Green Surgery,13964.38427,9.1878,80.6324,74.9216,6.9345,75.3676,76.5487,5.4092,95.2381,6.5001,2.4652,1.4454,1.1093,14.4493,9.5634,23.8982,71.3511,84.507,0.5498,0.9222,9.662,3.2035,89.5755,82.3529,84.5238,93.4524,10.0566,3.0948 Sussex ICB,H82060,Henfield Medical Centre,10508.22293,8.7284,77.6498,74.1259,6.4327,76.6129,77.13,4.1062,94.6667,6.9946,2.247,1.4914,1.7037,10.3028,7.7298,19.7057,66.9896,80.8194,0.6661,0.7059,14.7571,2.3247,87.3714,80.8943,80.3279,91.8033,9.4387,2.3365 Sussex ICB,H82061,Selden Medical Centre,9898.796475,7.7344,70.6714,66.3366,4.4085,60.3279,67.9558,3.3895,91.0448,3.1721,1.6283,0.5871,2.8255,21.608,7.2311,16.7922,57.0518,73.5632,0.7864,1.6837,13.1814,1.0858,90.2958,83.6066,82,87,17.3799,1.9606 Sussex ICB,H82063,Moatfield Surgery,15064.77152,8.3234,74.6589,72.0222,5.4771,78.1609,78.8779,3.9895,95.1515,7.6447,1.8485,0.8278,1.6605,7.4998,7.1748,19.232,72.973,83.2675,0.4792,1.0207,8.71,4.521,83.3763,80.0493,84.472,92.5466,10.9246,2.9688 Sussex ICB,H82064,Southgate Medical Group,10916.65837,7.8254,72.5322,75.8824,2.6848,75.1648,79.8658,2.2167,90.7143,4.5624,1.5102,0.6094,2.5954,21.2936,7.9963,11.5782,78.6642,82.4034,1.2718,0.9273,15.142,1.3766,92.7878,88.2051,90.2256,96.2406,18.3452,1.3689 Sussex ICB,H82065,Ball Tree Surgery,16862.72202,8.8597,75.3817,63.3238,5.0272,74.9398,70.3557,4.8879,95.9596,7.7298,2.8617,0.9539,1.9239,19.4671,10.6214,21.167,63.2046,80.8132,0.9191,1.0444,15.947,1.3282,84.3317,75.6335,85,90.4545,15.0042,2.3952 Sussex ICB,H82066,Fitzalan Medical Group,18833.48076,7.7588,66.9202,62.0397,3.8667,59.6457,60.6498,3.8667,94.8905,4.3009,2.897,1.203,1.5841,28.1308,10.1331,16.547,55.9427,73.8769,1.0986,1.6633,16.4231,0.6996,85.4161,79.3548,82.2314,91.3223,23.3246,2.455 Sussex ICB,H82067,Tangmere Medical Centre,7159.247213,8.8802,76.2295,69.8225,4.0072,80.2867,83.7209,3.8151,93.578,6.0844,1.7027,0.9858,2.167,15.6077,7.5509,18.8708,79.2453,91.3726,0.6785,1.4595,23.7706,4.1002,92.1797,84.7953,92.8571,92.8571,14.2541,1.9076 Sussex ICB,H82070,Glebe Surgery,14024.62389,6.9514,82.9228,77.0449,6.0813,76.5079,80.2083,4.2998,93.0233,6.8367,1.744,0.9697,1.3244,10.3735,7.5468,22.0552,70.159,82.6633,0.5638,0.654,9.8434,0.7548,88.2324,78.9634,79.1946,96.6443,8.9167,2.7588 Sussex ICB,H82072,Silverdale Practice,11809.74996,7.5164,79.669,74.7508,4.426,78.1116,83.1325,2.5091,97.7528,5.0042,1.3026,0.5477,2.3905,7.9019,6.7762,13.0116,72.9105,80.8612,0.3997,0.5921,11.7012,0.8528,88.5586,80.5195,81.8182,92.4242,8.6212,1.6653 Sussex ICB,H82076,Cornerways Surgery,3996.878451,7.0062,80.8642,85.3211,6.4242,75.2475,77.2727,4.3086,90.4762,7.6336,2.193,0.5676,1.2519,10.717,7.117,22.4974,70.8006,77.4468,0.3096,0.903,13.6183,1.3592,91.3808,80.6452,94.2857,97.1429,7.971,2.4768 Sussex ICB,H82077,The Croft Surgery,12124.91908,7.6241,75.3747,72.0497,4.4497,83.8356,78.7879,3.5042,90.2439,5.1514,1.6051,1.2634,2.2415,14.0591,8.2483,17.7831,75.14,88.4956,0.8025,0.9376,20.7236,3.0548,95.1565,81.6901,88.535,96.8153,11.6404,2.4791 Sussex ICB,H82078,Southbourne Surgery,10047.37128,7.3449,78.2609,74.7292,4.4723,81.5287,82.2967,3.4743,86.4078,3.719,1.61,1.2428,1.6057,11.1049,6.8222,16.0625,70.7978,85.5422,0.386,0.7062,10.6021,2.2658,91.5593,75.3927,83.0189,90.566,10.6834,2.3256 Sussex ICB,H82084,Brow Medical Centre,8059.402776,7.3572,75.9615,71.1656,5.2257,67.0833,76.1194,3.8988,91.6667,9.0756,2.052,1.9562,2.7059,9.2154,7.9257,19.2066,68.8474,82.9932,0.9166,1.2859,14.2185,6.0959,89.1122,79.4872,94.1176,96.4706,11.8045,3.3105 Sussex ICB,H82087,Barn Surgery,5406.609193,6.9375,84.0517,83.9695,9.0792,70.1754,73.8095,6.9187,100,9.1191,2.2891,1.5432,1.3791,9.4173,10.4895,31.43,49.6287,61.3527,0.3344,1.1317,7.4866,1.7157,88.7995,72.7891,83.3333,85,7.3641,4.6039 Sussex ICB,H82088,Bewbush Medical Centre,5962.706724,7.7618,57.7143,52.7559,2.0587,68.0328,70.0935,1.9679,88.5246,3.9665,1.5592,0.0908,0.7973,23.6585,11.4873,12.4584,58.9077,68.5185,0.5147,0.8477,11.5806,0.1638,83.493,93.9189,92.7928,90.991,18.115,0.9991 Sussex ICB,H82089,Riverside Surgery,8795.111541,6.8175,77.8116,71.8487,3.674,77.0992,78.4615,2.3784,93.913,3.1715,1.3632,0.3964,1.0895,9.7979,5.4493,14.7443,69.6471,81.2,0.3577,0.9088,14.5624,0.3492,90.3746,78.9474,84.0909,93.1818,12.6483,1.2376 Sussex ICB,H82091,New Pond Row Surgery,9976.777198,7.6423,74.2138,71.2329,4.4191,76.5734,76.3006,3.7546,91.3979,6.0557,2.204,0.6867,2.0638,19.676,9.0176,20.1351,57.2049,75.7437,0.6313,1.0079,15.6008,0.6315,90.121,77.0833,83.7398,91.8699,14.8315,2.2483 Sussex ICB,H82092,Village Surgery,9153.074308,7.0241,78.3476,73.3607,3.616,79.2717,78.9216,2.5987,93.8144,4.2043,1.3502,0.5087,1.1758,7.8574,5.8316,14.7508,75.1539,89.1525,0.5364,0.6011,9.9881,0.2389,90.4909,86.5497,71.8447,94.1748,9.8499,1.6739 Sussex ICB,H82095,Witterings Medical Centre,11886.58106,8.0323,78.3505,74.0864,6.3886,73.494,77.3756,4.0948,83.3333,7.8047,1.9147,1.7441,0.5324,14.5351,8.0354,20.4076,67.291,82.5228,0.4265,0.872,15.6547,2.1658,90.3686,82.3741,81.4815,89.6296,11.2622,3.0047 Sussex ICB,H82096,The Orchard Surgery,6289.31059,7.4314,70.9524,70.4,4.8781,76.5823,80.2198,4.3125,95.2381,7.2533,2.8279,0.9367,3.0494,20.8464,10.5885,19.3708,77.8835,87.451,0.6893,0.9544,15.3126,1.5103,90.8779,88.5168,94.5652,96.7391,15.7346,2.4214 Sussex ICB,H82098,Coachmans Medical Practice,9745.994408,6.7379,62.8458,53.4031,2.3204,66.581,69.8795,2.1279,84.6774,3.0099,2.4263,0.1733,0.6744,27.0042,8.9055,12.5843,74.1583,84.0336,0.4525,0.7029,14.1127,0.201,83.7071,89.011,82.0144,90.6475,20.1648,1.0591 Sussex ICB,H82099,West Meads Surgery,10443.94562,10.0925,73.6508,68.8119,5.5401,73.5577,78.1457,4.6673,88.6793,7.4273,2.8712,2.8712,1.2528,19.7099,9.9132,23.7541,71.5042,86.1261,1.0372,1.7455,19.0455,1.6854,92.2872,79.5367,87.7049,92.623,14.0292,3.4151 Sussex ICB,H82100,Northlands Wood Surgery,7385.159066,7.1075,78.9474,74.5455,3.6374,71.9298,77.5362,2.3693,93.75,3.9121,0.9677,0.6563,0.9377,7.7027,5.7712,12.2025,70.4706,72.0648,0.6007,0.8565,7.0623,1.0309,83.6389,82.3009,76.8116,84.058,9.7846,1.4572 Sussex ICB,H82615,Ouse Valley Practice,8080.044062,7.1836,77.4809,72.8723,3.5986,78.2738,83.7349,2.9239,91.3044,5.0651,1.1995,1.2959,1.5705,12.8773,6.0627,13.5483,72.7551,82.807,0.2892,0.6533,11.2479,0.5352,89.9825,78.5235,72.7273,88.3117,9.9443,1.9814 Sussex ICB,H82640,Holbrook Surgery,13140.91364,5.7525,78.8732,75,3.5819,77.572,78.4091,2.4108,96.0318,2.8167,1.0715,0.4298,1.4866,8.452,5.3544,14.6951,66.5089,78.7746,0.5357,0.5544,7.9415,0.088,89.7931,80.2326,75.7813,91.4063,8.6983,1.2833 Sussex ICB,Y00351,Langley Corner Surgery,12357.41523,7.0534,69.6049,76.9231,3.244,72.5173,77.6042,2.8508,97.7612,5.206,2.0234,0.8847,1.3455,19.9849,8.5493,14.8521,71.1347,82.3529,1.0158,1.024,16.3838,1.8668,89.6494,81.6901,85.5346,91.8239,16.3516,1.663 Sussex ICB,G81002,Grove Road Surgery,6863.57309,6.3094,64.7343,64.9254,4.2843,65.2632,71.5596,3.6027,93.0233,6.7601,1.9961,0.6978,1.4596,21.6281,6.7173,14.4758,60.5816,79.1209,0.5355,1.7202,13.0593,1.4914,85.3768,73.5043,78.6885,93.4426,17.5992,2.1909 Sussex ICB,G81003,The Lighthouse Medical Practice,20980.83586,8.0916,73.2026,69.6742,5.4842,65.392,70.5882,3.6599,89.5833,6.5716,2.1937,1.3128,2.8957,24.2813,7.7869,18.1632,57.4413,70.7127,0.915,1.5572,8.6028,4.1151,86.2944,81.6626,77.5,85,16.3059,2.9211 Sussex ICB,G81004,Downlands Medical Centre,12842.9554,7.5401,78.2805,73.8351,6.3351,81.1024,80.9045,4.9445,90,10.2455,2.4819,1.3037,2.0422,13.2011,8.8118,21.69,71.7264,78.3404,0.5311,0.7726,10.4865,1.5232,92.1773,81.4332,87.4126,90.2098,9.9881,3.2255 Sussex ICB,G81008,Stone Cross Surgery,15744.33481,7.0994,75.4128,68.6649,5.3274,76.9953,76.8953,3.5631,92.4812,6.527,2.5982,0.7168,1.2832,15.4327,7.8736,16.1613,60.4945,75.4125,0.448,0.8753,8.0582,0.6608,81.482,78.6585,80.3681,92.0245,11.8577,2.1571 Sussex ICB,G81012,Bridgeside Surgery,7696.272393,8.1296,76.1062,70.2532,5.1673,78.1095,81.6667,4.0323,93.421,9.5777,2.7927,1.4486,1.8288,20.2103,9.4592,19.086,67.049,83.0721,0.672,1.1798,16.9683,0.8532,90.9036,75.6098,80.6452,91.3978,14.5421,2.5836 Sussex ICB,G81016,Quayside Medical Practice,11550.47637,7.5753,69.0808,68.254,3.9698,71.2,70.297,2.8419,88,4.0472,2.2647,0.5062,1.4738,26.4538,8.2131,14.9023,62.2357,75.4237,0.6838,1.2167,12.0961,0.5598,82.3434,82.0755,59.7015,82.0896,18.9277,1.794 Sussex ICB,G81017,Seaside Medical Centre,13236.14879,6.4812,69.0667,62.6866,4.1571,70.4545,76.8889,2.8394,96.7391,5.9793,3.1455,1.1137,2.6818,25.462,7.6584,14.9452,57.5343,82.4798,0.8076,1.6577,13.3987,1.1436,90.4211,81.07,74.2647,83.8235,18.0265,2.1593 Sussex ICB,G81019,Beacon Surgery,10587.07909,8.1539,77.6224,73.7762,4.7349,76.5957,75.9657,2.8391,95,2.4434,1.6302,1.1448,1.289,8.168,6.509,17.2726,72.3451,83.3962,0.4213,0.7785,7.6328,0.4455,91.1274,81.2081,90.6542,89.7196,10.438,2.2804 Sussex ICB,G81021,Foundry Healthcare Lewes,27588.23733,6.7656,76.4652,77.3263,4.9686,70.8845,74.8068,3.0485,87.931,4.0624,1.6364,1.0862,0.8099,13.9668,5.4124,13.9844,54.2575,72.1327,0.4906,1.349,7.812,0.2882,85.4627,81.5981,84.4444,88.8889,11.8646,2.176 Sussex ICB,G81022,Sovereign Practice,16293.16068,7.379,75.448,71.2366,4.6278,72.8365,76.6784,3.581,86,7.3064,2.3346,1.0743,2.0188,21.6413,9.1212,18.0704,58.3923,72.6006,0.7162,1.0123,13.9708,1.09,90.6817,83.7017,85.9296,93.9698,14.0203,2.307 Sussex ICB,G81023,Martins Oak Surgery,8466.448091,6.8006,80,73.5537,5.3015,76.7773,76.1111,3.7381,90.566,8.9696,1.8808,1.2578,1.4925,16.1221,7.0262,20.3362,69.6483,82.7014,0.5995,0.8346,11.0218,4.0111,90.1895,79.0909,93.4783,97.8261,10.8071,2.8565 Sussex ICB,G81024,Ashdown Forest Health Centre,9361.751704,5.6248,72.5581,63.245,5.0347,61.1511,67.4797,2.7199,69.863,5.8755,1.5625,0.8102,0.9246,10.4388,5.251,15.2392,63.7221,79.4686,0.5208,0.897,4.3773,0.2938,87.8404,80.7018,61.8421,96.0526,9.6616,2.3245 Sussex ICB,G81029,Seaford Medical Practice,21776.1396,8.1038,77.3399,76.2397,6.9963,73.4091,74.7126,4.4908,94.9153,8.0242,2.7124,1.5771,1.2544,13.8138,8.5454,21.6431,61.5356,76.5,0.481,1.2304,10.0883,1.0106,87.8751,84.7826,82.3276,93.1034,11.8052,3.6016 Sussex ICB,G81030,Belmont Surgery,7724.127638,5.7791,77.6786,70.6897,5.5437,75.3425,78.3069,2.9551,91.0448,6.0346,1.3002,0.8865,1.1342,10.917,6.2437,16.5485,49.0779,61.3208,1.0402,0.6738,7.3869,1.3568,87.5745,72.0238,80.7692,92.3077,10.3695,2.4468 Sussex ICB,G81031,Harold Road Surgery,24103.8003,6.7205,74.3243,78.9855,5.6243,68.9165,71.659,4.3194,88.8199,6.6516,3.2937,1.1701,2.826,28.1503,8.4524,19.0254,57.9196,66.3636,1.2568,1.3339,11.3517,1.0493,89.9339,79.9235,77.821,89.1051,28.0457,2.8025 Sussex ICB,G81032,Victoria Medical Centre,29500.36137,6.266,71.5757,74.4444,4.8486,62.5,71.6535,2.8925,96.1957,5.5413,1.81,1.4271,1.7702,14.0884,6.3274,14.2743,62.5586,74.5292,0.6161,1.3714,10.6171,2.9596,85.7723,77.6493,77.8182,88,14.2521,2.4017 Sussex ICB,G81037,The Meads Surgery,8878.997173,7.6439,76.5537,71.9828,3.9996,75.8007,79.3103,3.1156,95.946,6.1551,1.326,0.7223,1.8119,10.9655,6.8319,16.7853,73.366,84.6847,0.2372,0.8624,9.4991,1.1665,91.2432,86.5031,91.1111,94.4444,13.2209,2.1453 Sussex ICB,G81039,Little Common Surgery,24511.89072,7.065,80.5075,74.4597,7.3879,72.1823,75.0716,6.0246,94.3089,8.9813,3.0948,1.9844,1.4671,18.0069,9.4279,25.819,62.5981,81.1258,0.4233,1.2148,12.2855,3.5023,91.7885,77.5701,86.1314,94.5255,10.2204,4.1282 Sussex ICB,G81040,Woodhill Surgery,3259.083162,6.2679,79.1139,74.5098,4.8961,80.9524,81.1765,3.3096,91.3044,5.8148,1.5591,0.7385,1.0446,8.1411,5.7279,15.5088,67.7966,82.4675,0.1915,0.7385,6.4763,0.1616,91.2593,84.3137,77.7778,96.2963,8.0372,2.2702 Sussex ICB,G81041,Sidley Medical Practice,17663.46044,8.3573,73.0627,64.5714,5.3292,71.2366,74.7126,4.2908,86.9565,7.2831,3.3677,1.399,1.8668,25.9172,9.0469,18.8577,67.3661,77.6119,0.7933,1.363,12.1122,1.332,90.8152,79.9479,85.1064,89.8936,16.0413,3.1586 Sussex ICB,G81043,Rotherfield Surgery,6647.184218,7.5684,70.0337,67,5.0392,71.6981,77.439,2.6885,88.3333,3.9419,1.8779,0.5269,1.9041,8.8728,5.831,16.2659,52.7099,78.327,0.3378,0.8781,11.0573,0.4357,85.7876,79.6296,62.5,85.9375,13.3963,2.0535 Sussex ICB,G81048,Carisbrooke Surgery,11131.62797,5.4027,71.7277,62.5468,5.4774,70.7819,73.301,3.5845,82.1429,6.0488,3.1823,1.2895,1.4567,37.177,8.2259,16.7751,67.0157,81.25,0.6743,1.5971,9.434,0.423,86.1054,71.4976,79.4393,87.8505,17.3449,3.0048 Sussex ICB,G81049,Manor Park Medical Centre,7323.004041,8.0025,70.9163,64.6707,4.892,70,66.1654,3.3054,95.7447,5.9397,2.9528,0.8961,2.5275,20.0943,8.577,17.4673,61.7813,75.1656,0.6464,1.1459,13.089,0.5215,88.098,77.1605,75.8621,85.0575,15.304,2.3065 Sussex ICB,G81050,Arlington Road Surgery,14291.45689,7.787,75.7447,70.9779,6.6201,67.2297,71.9368,4.2183,96.8254,10.5006,2.2969,1.5197,1.8656,18.5913,7.5224,21.8865,64.3513,76.9634,0.6026,1.4498,10.6025,3.6797,90.3511,79.1667,85.9259,91.8519,11.0679,2.9782 Sussex ICB,G81051,Rye Medical Centre,8725.406134,6.7369,75.1351,67.8112,7.5202,74.359,74.4048,4.5733,95.4546,8.7258,3.2527,0.7923,1.8226,26.3314,8.7534,24.5343,50.963,71.0843,0.5838,1.112,10.0645,1.4452,85.3861,77.0408,85.7143,92.8571,14.7673,2.933 Sussex ICB,G81052,Fairfield Surgery,4316.287977,7.6678,75.2525,67.9389,4.9552,73.0337,77.6699,4.2001,100,7.5839,2.1001,0.991,1.1559,13.2672,6.4606,21.9679,65.4596,74.6479,0.3068,0.7079,10.4314,3.7712,83.5919,83.9081,82.5,92.5,9.0434,3.2091 Sussex ICB,G81055,Saxonbury House Surgery,9989.960754,7.2928,79.9479,71.9008,5.944,80,81.6754,2.9564,86.0465,6.2319,1.9191,1.4523,1.5203,8.2866,7.6703,20.3838,72.9443,84.2451,0.8506,0.9959,11.2577,0.3142,90.7917,83.1111,83.9623,96.2264,10.6933,2.5415 Sussex ICB,G81057,Sedlescombe & Westfield Surgeries,7293.348005,7.8947,75,75.7732,7.0729,75.3623,78.3217,5.1626,84.3137,8.277,2.8892,0.7736,1.6141,17.5403,9.1517,23.7449,63.986,75.8333,0.742,0.8683,13.1381,1.2712,89.9296,83.9572,77.907,90.6977,13.1359,3.426 Sussex ICB,G81059,Hailsham Medical Group,12840.82737,8.2015,73.3668,65.5431,5.017,66.8693,69.4175,3.8808,89.1892,8.5906,2.9368,1.0314,3.5857,20.825,9.224,20.951,56.007,70.3264,0.6381,1.4247,17.1921,3.2188,89.6674,79.2683,80.3797,89.8734,15.7933,2.8407 Sussex ICB,G81061,Chapel Street Surgery,6413.503236,7.5977,68.75,65.4135,4.0981,67.4157,69.8113,3.7286,89.5833,3.7304,2.7545,0.6382,3.5184,25.6153,8.1701,15.435,56.5395,71.8919,0.3527,1.3604,13.12,0.9334,85.5244,80,69.863,87.6712,19.6855,2.133 Sussex ICB,G81074,High Glades Medical Centre,21406.95709,7.1226,70.9677,63.5934,4.3419,70.3237,70.2941,4.0138,80.3371,3.7409,3.0896,1.121,2.1524,31.3651,8.5438,16.5199,49.8752,62.8849,0.9296,1.6132,9.5448,1.8394,85.2674,76.5133,67.5214,73.5043,18.1205,2.3842 Sussex ICB,G81077,Collington Surgery,22615.77435,7.1522,73.4748,66.2393,6.1293,72.3542,74.7059,4.7339,86.4662,6.2142,3.0223,1.5648,1.7438,19.8376,9.294,22.1105,68.9012,77.0588,1.2259,1.6326,12.2938,2.8826,89.3674,77.7336,85.5469,91.4063,15.3627,3.1974 Sussex ICB,G81082,Oldwood Surgery,5447.539696,6.6848,77.13,68.5897,4.8146,78.0347,80.4511,2.8567,86.7925,6.3821,1.653,0.995,0.7952,14.7798,6.6544,16.9475,72.3353,90.0453,0.3852,0.5778,11.0693,3.0019,90.2909,78.0702,92.9825,96.4912,11.7461,2.1184 Sussex ICB,G81085,Ferry Road Health Centre,4571.052022,7.1987,72.561,60,4.4597,69.6078,71.25,4.1539,87.8049,5.2988,2.7523,0.9174,2.2797,27.4869,7.9794,19.9286,63.6364,75.3769,0.9429,1.0958,12.5385,0.761,87.7376,90.3615,89.5833,95.8333,19.008,2.5739 Sussex ICB,G81086,Bird-In-Eye Surgery,6922.600265,7.1525,78,73.3333,3.6027,75.2252,74.2105,2.5862,88.1356,2.7725,1.2995,0.6819,1.1154,10.5862,6.3267,13.0983,57.0567,68.7831,0.8878,0.6819,10.325,0.1965,87.1169,90.3226,74.6479,90.1408,10.9751,1.6727 Sussex ICB,G81087,Northiam Surgery,7653.58344,6.6088,81.0585,77.13,5.7256,73.0496,75.1592,3.6609,88.3721,4.8697,1.8744,0.864,0.8684,15.7455,7.4087,16.7814,74.7939,88.2155,0.5418,0.7322,8.0538,0.3977,90.2299,86.1111,92.3077,94.8718,9.3962,3.0019 Sussex ICB,G81088,Heathfield Surgery,21223.5536,6.5468,77.7027,76.2712,4.9772,73.262,76.3975,2.9479,94.9685,5.9605,1.4397,1.0329,1.0716,10.7186,6.616,16.0329,65.1136,78.6164,0.681,0.7313,6.8534,0.3672,86.3044,79.2271,85.8491,91.9811,17.458,2.468 Sussex ICB,G81089,South Saxon House Surgery,3515.470364,5.5355,70.6422,59.7403,3.489,76.4228,80.597,2.87,93.75,4.5389,2.9263,0.5628,2.1423,29.7776,8.4709,15.6443,74.1201,82.1918,0.6753,0.9285,13.7618,0.8793,90.0404,78.8732,83.3333,90.4762,18.147,1.8289 Sussex ICB,G81095,Hastings Old Town Surgery,30088.91355,6.2626,65.5172,64.9837,3.9291,66.6667,69.574,3.3085,83.3333,5.3868,2.8508,0.7563,2.4964,29.8337,7.5163,16.4456,58.6,76.6216,0.6516,1.5592,10.9018,0.6008,83.7791,76.5289,81.3149,88.2353,21.6932,2.3505 Sussex ICB,G81096,Sedlescombe House,3123.790315,5.7407,74.0741,66.6667,3.7496,75.9494,75.4098,2.5822,100,6.1992,2.5822,0.3891,0.9833,29.3052,7.7477,17.8281,72.9665,89.5349,1.1673,0.9197,14.6216,0.0755,84.7942,79.2453,84.375,87.5,16.9485,2.2639 Sussex ICB,G81098,Quintins Medical Centre,12163.25435,6.9147,74.6512,69.5341,5.0453,74.3363,71.4286,3.5414,93.913,5.3233,2.0375,1.3422,1.5195,15.7279,7.4953,16.7125,60.1615,77.7969,0.3962,0.7924,11.0647,0.98,88.2077,74.6269,76.1194,88.0597,10.3438,2.2558 Sussex ICB,G81099,Old School Surgery,11097.87763,8.1604,78.355,78.1362,7.8485,80.7882,79.8122,5.3761,94.1177,12.477,2.1673,1.9043,1.9243,13.7178,7.354,23.293,69.2999,78.5388,0.6944,1.2309,14.4258,4.5455,90.1052,81.0277,87.7358,98.1132,10.4034,3.8296 Sussex ICB,G81100,Havenshealth,21730.45945,7.8256,73.1214,75.0547,4.6752,68.9119,70.3911,4.0993,88.8268,7.4298,2.581,1.246,0.7198,19.3133,9.7116,19.2241,61.7541,74.9438,0.6282,1.3193,12.6936,0.6113,87.3882,80.4348,84.2491,88.2784,13.7423,2.5863 Sussex ICB,G81102,Buxted Medical Centre,15639.64741,7.1924,77.3756,71.5576,5.0642,75,76.3889,3.1401,90.8397,7.9076,1.7612,1.7361,1.606,12.5634,6.0874,17.5744,57.5192,73.6034,0.4513,0.727,7.8847,0.6149,89.3225,74.613,62.2222,86.6667,10.6871,2.3378 Sussex ICB,G81104,Park Practice,14301.8852,8.2028,72.2222,63.5135,5.1224,73.9024,75.8621,3.5505,93.2203,8.8209,2.5416,1.1731,0.9301,24.5735,8.7555,18.3624,65.8919,76.9076,1.0088,1.2904,14.7115,1.5325,88.7154,80.4154,80,87.5,16.1507,2.5104 Sussex ICB,G81614,Groombridge & Hartfield Medical Group,4869.001886,6.4547,75.5656,71.4286,4.7044,70.7143,75.3968,2.7148,96.875,3.8988,1.7665,0.5206,1.2768,11.7768,5.2219,14.8382,74.062,83.7838,0.2417,0.688,6.156,0.3009,80.8824,77.381,75.6098,92.6829,8.6097,2.1755 Sussex ICB,G81634,Herstmonceux Integrative Health Centre,5220.537679,7.7038,79.668,71.8563,5.5643,78.3951,80.9524,3.3246,91.9355,5.8224,1.9248,1.4348,2.4224,15.9674,6.4902,15.3106,48.5757,75.9615,0.28,0.7524,10.2422,0.6606,88.0293,85.2632,82.3529,94.1176,8.2417,2.5722 Sussex ICB,G81641,Priory Road Surgery,3933.974775,7.5827,66.9643,64.6341,3.9403,77.2358,73.1343,3.1523,86.3636,3.193,2.5612,0.394,3.0116,38.5056,7.6214,16.4931,67.7228,87.6543,1.4073,1.6324,14.1509,0.2308,88.2623,81.25,90.4762,92.8571,23.9739,1.9983 Sussex ICB,G81658,The Station Practice,21340.80931,7.5274,64.466,65.8402,3.0228,59.7598,64.6667,2.8511,86.5672,6.7092,2.8622,0.5426,2.7791,40.493,7.6886,15.0252,70.6973,84.5982,0.7363,2.148,14.9765,2.0884,87.7026,81.6121,80.402,93.4673,27.2254,1.7384 Sussex ICB,Y00080,Harbour Medical Practice,7191.650753,6.2007,76,69.5187,4.9327,78.5714,75.188,3.1042,91.4894,4.7504,2.112,0.9922,2.2802,19.1896,8.7053,18.1148,60.7458,78.7645,0.2551,0.7654,13.5948,0.8135,85.9225,84.2767,87.0968,93.5484,11.4375,2.6081 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence "Shropshire, Telford and Wrekin ICB",M82002,Mytton Oak Medical Pract.,10108.39063,7.444,78.1768,78.8845,4.4192,67.4497,78.2828,2.9063,90.7895,6.2608,1.2641,0.8162,1.5406,11.8924,6.0002,14.7905,55.1259,74.3315,0.6171,1.055,8.7626,0.5892,94.7036,81.0976,66.2651,81.9277,8.6358,2.1499 "Shropshire, Telford and Wrekin ICB",M82003,Stirchley Medical Practice,26078.31543,6.6474,69.1761,66.0643,3.182,68.0825,72.2084,3.1537,85.2399,5.0814,2.5108,0.6995,2.3351,35.4933,9.1851,15.5784,51.8746,78.798,1.0634,1.0795,12.5718,1.4126,83.621,82.5175,76.1194,88.3582,20.767,2.0054 "Shropshire, Telford and Wrekin ICB",M82004,Bridgnorth Medical Practice,19911.77773,6.6487,73.5931,72.0982,6.223,75.2577,74.7826,4.5763,92.7835,7.9095,2.1956,1.5789,1.3971,15.2406,7.6696,18.0153,61.2098,77.327,0.4502,0.7894,9.7941,2.1478,88.3215,78.8863,72.5738,93.6709,11.1596,3.0714 "Shropshire, Telford and Wrekin ICB",M82005,Plas Ffynnon Medical Ctre,10678.18268,7.0454,72.7034,79.2969,4.9926,73.0612,73.6842,4.2343,93.9024,6.4882,2.2857,1.0428,2.5876,18.6991,8.084,20.3918,56.6758,75.8547,0.5583,0.7689,15.4366,1.1504,84.6289,84.127,75.6303,89.916,12.8655,2.7702 "Shropshire, Telford and Wrekin ICB",M82006,Riverside Medical Practice,13804.21463,7.6512,67.2775,68.9516,4.2606,61.678,71.6418,3.4731,93.6508,7.4107,1.8982,0.9201,1.2105,18.7268,7.1505,15.8985,67.9515,76.7892,0.5222,1.0859,12.3118,2.25,79.7356,84.669,88.9706,94.1176,18.8203,2.5448 "Shropshire, Telford and Wrekin ICB",M82007,Charlton Medical Practice,16607.40381,7.2586,72.0322,70.7042,3.9217,82.1012,83.3333,3.3344,92.3567,6.8721,2.7537,0.6852,0.2065,22.8482,9.7768,22.1664,75.1344,83.6634,0.4568,0.7961,15.363,0.6741,91.6833,86.4078,90.991,93.6937,14.6987,1.9902 "Shropshire, Telford and Wrekin ICB",M82008,Church Stretton Medical Centre,8580.154979,8.1759,80.4071,79.7468,6.8522,74.2424,80.1205,4.8804,95.2381,10.3388,1.5942,1.4543,1.7656,14.2561,6.889,28.3317,66.1042,81.2971,0.4055,0.6852,11.8021,1.2394,89.2041,75.1381,81.3333,86.6667,8.0349,4.3071 "Shropshire, Telford and Wrekin ICB",M82009,Dawley Medical Practice,12830.67112,7.0921,68.7845,63.9344,3.9445,70.6231,73.6559,3.5643,94.2623,6.0808,3.3267,0.96,3.7916,34.1632,9.3346,15.4358,56.6719,74,0.6748,1.1501,14.4152,0.4996,87.8279,83.1746,82.6667,88.6667,20.3898,2.7279 "Shropshire, Telford and Wrekin ICB",M82010,Market Drayton Medical Practice,19212.29304,6.7616,74.3243,71.167,4.2137,68.4314,72.1557,3.4721,91.2752,4.7127,1.7248,1.0338,0.5891,19.3555,8.1436,16.6133,63.7563,81.0026,0.5,0.8034,11.2828,0.2923,82.4449,86.2694,49.3213,90.9502,13.6385,2.59 "Shropshire, Telford and Wrekin ICB",M82011,Shawbury Medical Practice,4929.677715,7.7549,77.0492,75.4237,5.593,79.5276,81.5217,3.9757,95.8333,8.7676,1.6397,1.0108,2.316,16.2026,9.2295,17.8796,57.5,76.5306,0.5616,0.584,6.2586,0.5579,91.6771,87.6712,6.25,89.0625,10.5617,3.8185 "Shropshire, Telford and Wrekin ICB",M82012,Donnington Medical Practice,15457.77298,6.7247,69.821,74.3151,3.3545,67.1815,72.0648,3.2727,90.5556,4.7884,2.0045,0.75,2.2059,25.6171,9.3334,13.4315,60.6516,79.4118,0.5795,1.0636,18.3734,0.2174,82.9898,86.9681,82.4742,91.2371,19.7498,2.4204 "Shropshire, Telford and Wrekin ICB",M82013,Westbury Medical Centre,3067.491487,6.1639,76.4706,72.8814,5.9432,72.3404,72.093,4.1344,82.3529,5.5579,1.9195,0.443,1.188,20.2245,7.9345,19.9336,47.6309,60.4317,0.2953,0.8859,8.1884,0.5867,80.5257,90.9091,38.8889,83.3333,10.1368,2.8424 "Shropshire, Telford and Wrekin ICB",M82014,Station Drive Surgery,10527.61603,7.3064,76.3819,75.7576,6.2628,68.9956,68.2692,4.5058,93.4426,8.2399,1.8109,1.4552,2.3051,19.3967,7.3761,21.1275,64.3279,74.9175,0.5713,1.2181,9.4626,1.9492,88.9159,76.3566,76.4151,85.8491,13.0661,3.1476 "Shropshire, Telford and Wrekin ICB",M82016,Radbrook Green Surgery,11321.80737,7.6451,81.7757,83.5766,5.899,79.5053,85.3774,4.1888,92.2222,7.147,1.5182,1.3536,2.1348,10.779,7.0543,17.5873,71.0623,81.5412,0.439,0.6494,11.7879,2.0532,88.5569,77.8689,79.6296,90.7407,7.3384,3.1004 "Shropshire, Telford and Wrekin ICB",M82017,Clive Medical Practice,5165.054337,7.629,80,78.3217,5.4774,78.1818,78.0952,4.1134,100,8.6282,1.9608,0.8738,1.6289,14.1725,8.3396,19.7144,56.0345,72.0524,0.2771,0.4902,7.7373,0.5104,88.9957,81.3333,75.4098,86.8852,8.0127,3.7511 "Shropshire, Telford and Wrekin ICB",M82018,Beeches Medical Practice,7188.409659,8.7063,79.4007,79.1908,5.5863,77.2487,78.3582,3.9278,93.4426,4.8969,1.0911,1.9639,1.4709,10.6376,7.1378,16.8752,71.7494,78.9809,1.1493,0.7274,10.0807,0.6408,88.8554,83.4532,90.2778,91.6667,8.5866,2.8659 "Shropshire, Telford and Wrekin ICB",M82019,Much Wenlock & Cressage Medical Practice,8540.444574,6.8635,78.6082,72.3577,5.6695,78.7709,79.7753,4.2551,91.4286,9.6408,1.4616,1.108,2.3563,17.6773,7.0332,20.2145,64.412,82.3672,0.3065,0.5186,11.2787,2.2207,88.0552,82.7751,74.5098,91.1765,8.4897,3.1235 "Shropshire, Telford and Wrekin ICB",M82020,Knockin Medical Centre,4005.869527,7.7081,76.3441,79.6748,6.13,77.7778,80.2083,3.6435,94.8718,6.6531,2.2649,0.5662,1.4526,16.3025,6.8371,20.9257,60.0289,72.6115,0.4185,0.4431,16.2987,0.7596,91.9771,82.8947,72.5,90,8.7267,2.3388 "Shropshire, Telford and Wrekin ICB",M82021,Albrighton Medical Pract,9989.445684,8.1839,75.3886,75.8065,7.4087,80.303,80.4348,5.4347,91.8367,5.2691,2.1525,1.9979,1.9671,11.781,8.8787,22.2024,74.493,80.1709,0.3211,0.4995,14.8518,1.4907,93.5671,79.5652,83.9623,90.566,8.5742,3.9957 "Shropshire, Telford and Wrekin ICB",M82022,The Caxton Surgery,14552.78369,7.0916,70.495,76.2463,4.2684,62.6866,70.4626,3.1712,94.1606,6.7837,2.2439,0.8848,2.0168,19.6983,8.1731,16.5216,56.1992,74.9487,0.4601,0.9415,10.3195,2.2511,84.2725,84.0116,16.6667,86.7816,17.3519,2.5696 "Shropshire, Telford and Wrekin ICB",M82023,Prescott Surgery,7214.248876,7.5673,78.6667,83.0189,5.3465,77.4359,79.5322,3.0891,91.5493,6.0591,1.505,0.4488,1.9317,13.4085,5.9023,18.6931,61.5584,81.9923,1.0297,0.6073,9.6252,0.9399,88.1247,88.7931,73.8462,92.3077,8.5239,2.4951 "Shropshire, Telford and Wrekin ICB",M82024,Brown Clee Medical Centre,3976.118568,6.7997,78.6458,69.6,6.5956,78.6517,79,3.5008,100,4.3791,1.6489,1.1416,0.8098,19.248,6.3704,18.4932,67.8245,78.022,0.3805,0.4059,14.3071,1.0796,91.1497,74.3902,87.1795,82.0513,9.6718,2.4099 "Shropshire, Telford and Wrekin ICB",M82025,Churchmere Medical Group,22141.06615,7.5924,76.2246,77.9599,5.0807,71.5084,72.8132,4.0058,95.625,9.0235,2.4825,0.9207,2.2719,19.0761,8.2616,19.4987,54.8197,74.6734,0.3808,0.7568,15.5765,0.8365,89.1182,85.025,84.9421,91.8919,12.6896,2.926 "Shropshire, Telford and Wrekin ICB",M82026,Cambrian Medical Practice,14230.21809,7.7069,71.8163,72.5,4.6912,70.8455,75.3968,3.3185,94.1748,7.9766,1.9232,0.9805,1.8801,18.4267,8.1375,19.8959,60.936,81.0855,0.9352,0.7995,11.4203,3.0407,85.9571,83.965,52.1212,87.2727,12.6369,2.2777 "Shropshire, Telford and Wrekin ICB",M82028,Wellington Road Surgery,15046.66207,7.2707,78.6325,75.8186,5.1687,80.203,80.4878,3.8009,96.6667,8.8054,1.4401,1.2034,1.3701,11.7269,8.2689,18.7085,73.6228,85.064,0.3288,0.5853,13.5406,0.7373,88.1025,86.7117,90.625,93.75,8.9942,2.6369 "Shropshire, Telford and Wrekin ICB",M82030,Pontesbury & Worthen Medical Practice,11480.23097,7.9657,79.386,77.2414,6.4315,74.3494,77.4194,3.8436,95.9596,9.1267,2.4633,1.1214,2.2354,14.9666,7.7002,18.3073,66.064,77.9661,0.738,0.6326,12.2886,1.6875,88.2778,81.8493,8.1301,87.8049,10.4225,2.7988 "Shropshire, Telford and Wrekin ICB",M82032,Severn Fields Medical Practice,17422.30597,7.5025,71.7602,67.8063,3.1289,71.9361,76.0563,2.9113,87.2093,6.3052,1.7056,0.9057,2.8886,22.1703,7.1073,13.3447,50.1967,74.2857,0.4705,0.9293,12.2407,0.6594,84.9002,78.4153,73.5294,82.3529,17.2511,1.982 "Shropshire, Telford and Wrekin ICB",M82033,Bishops Castle Medical Practice,6202.384481,7.7755,76.8559,77.9412,4.8767,75,80.3922,4.2515,94.1177,7.8975,1.5184,1.1611,1.6593,21.9858,6.7483,19.9,53.6905,71.5329,1.054,1.0718,8.9057,1.9152,90.4859,76.3889,80,68.3333,10.0674,3.3226 "Shropshire, Telford and Wrekin ICB",M82034,Claremont Bank Surgery,8338.364063,8.2042,77.3006,74.4395,4.8051,76.2557,82.0809,3.5016,100,4.4485,1.6613,0.5367,1.9537,15.7372,6.6806,18.4792,59.856,70.7463,0.2173,1.0479,8.3258,0.8827,89.6746,80.2721,68.75,90,10.6941,2.5559 "Shropshire, Telford and Wrekin ICB",M82035,Wem and Prees Medical Practice,13253.14071,7.5527,77.0428,73.8095,5.0886,73.1788,77.9468,3.8904,92.7083,7.0329,1.9698,0.9849,1.1722,18.8953,7.8752,19.3697,56.4103,74.5731,0.7058,0.673,15.4068,1.2742,85.0151,81.25,28.6667,83.3333,12.6632,2.6674 "Shropshire, Telford and Wrekin ICB",M82038,Shifnal & Priorslee Medical Practice,11267.83556,6.424,74.4578,75.4266,4.2774,81.9477,82.2314,2.9529,96.5278,3.5185,1.27,0.9895,1.2552,12.3589,6.952,14.4371,59.2983,82.0094,0.2649,0.6077,10.8816,1.8248,88.1457,83.3333,70.5426,79.845,9.919,2.0725 "Shropshire, Telford and Wrekin ICB",M82039,Wellington Medical Practice,16850.54219,5.0217,64.859,67.0139,3.4419,48.8421,58.5774,2.9464,80.1527,7.4464,1.8432,0.6738,1.0358,26.0477,8.5997,18.3061,41.686,57.0261,0.7333,0.9976,7.6177,3.3048,80.2016,84.9879,16.3366,84.1584,18.2912,2.0546 "Shropshire, Telford and Wrekin ICB",M82040,Marysville Medical Pract,5970.271709,7.6662,75.8454,73.8255,3.4294,74.8744,76.2963,2.8337,87.931,5.3302,1.5134,0.805,1.253,16.347,6.022,15.4404,51.2258,67.2131,0.7567,0.9499,12.8481,0.695,86.1196,84.5455,88.8889,87.037,14.4914,1.8194 "Shropshire, Telford and Wrekin ICB",M82041,Cleobury Mortimer Surgery,7227.95506,6.802,77.1513,77.5229,6.6685,82.3529,86.1446,3.8365,89.7436,6.7198,1.8694,1.1998,1.991,16.7423,8.5967,18.4012,62.0352,79.1246,0.2372,0.5301,29.9818,1.4945,90.3824,77.1739,54.5455,94.3182,9.3284,2.9576 "Shropshire, Telford and Wrekin ICB",M82042,Woodside Medical Practice,6882.887453,6.4712,64.1026,67.5926,2.7904,66.6667,71.5789,2.3961,90.2439,8.0796,2.4113,0.8038,2.051,46.9437,8.9692,15.7871,74.4076,86.802,0.546,0.8493,15.3304,0.3455,87.8192,84.7561,90.3614,97.5904,25.2507,1.6985 "Shropshire, Telford and Wrekin ICB",M82043,Ludlow - Portcullis,8764.611324,8.5436,75.9207,71.1628,5.703,73.0159,75.3247,4.3364,90.7407,10.5395,2.8647,1.1695,1.5637,19.7533,8.4246,20.6965,59.4714,75.6818,0.7622,1.0381,15.8405,1.6072,90.3241,76.1468,81.6327,92.8571,12.442,2.9303 "Shropshire, Telford and Wrekin ICB",M82046,Craven Arms Surgery,4574.961414,7.9093,75.5556,76.9231,4.8355,69,69.3333,4.2124,84.0909,8.9004,2.3181,0.6979,1.4277,22.5378,8.655,18.6191,62.5448,79.3651,0.7228,1.0718,13.3657,2.0069,86.9893,89.3617,63.4615,94.2308,16.7154,3.1406 "Shropshire, Telford and Wrekin ICB",M82047,Marden Medical Practice,11468.015,7.8283,78.2278,76.7273,4.7966,77.3639,78.733,3.4901,95.5752,6.3656,1.4464,1.5118,2.2981,13.9203,6.8014,15.8735,66.2983,80.1843,0.7186,1.1478,12.4325,1.4213,90.8664,78.8546,67,81,10.2154,2.7436 "Shropshire, Telford and Wrekin ICB",M82048,Belvidere Medical Pract.,7149.304176,8.6345,76.9874,77.8481,4.2717,79.5122,85.6,3.366,98.4615,7.1171,1.4491,0.7698,1.2147,17.39,7.9115,15.3208,74.4764,86.4542,0.7396,1.0113,11.5772,2.1254,91.4677,80.4878,82.8947,94.7368,13.9332,2.4151 "Shropshire, Telford and Wrekin ICB",M82051,Broseley Medical Practice,5114.681033,7.0903,76.8519,76.5152,5.1882,75.8065,76.0417,4.2739,95,4.1537,2.1263,0.4678,0.9605,17.0393,8.0707,18.435,65.4303,79.7928,0.3615,0.5741,14.5379,0.4924,90.1061,84.6939,81.3559,93.2203,12.4623,3.2745 "Shropshire, Telford and Wrekin ICB",M82056,Linden Hall Surgery,12820.60612,6.8472,78.7575,77.5,4.6004,69.0773,77.9264,3.0603,92.6606,5.9767,1.1816,0.7701,2.0827,11.5381,6.358,14.3388,62.6082,77.0492,0.1593,0.5576,9.4478,0.5114,84.4574,80.8725,81.1189,93.007,8.2712,2.1176 "Shropshire, Telford and Wrekin ICB",M82057,Hollinswood Surgery,5744.922733,5.1453,70.6806,70.4,2.9808,55.3506,66.9811,2.2867,86.25,2.6362,1.3611,0.2178,1.5014,21.703,6.669,11.4605,58.4329,62.9214,0.2178,0.5717,7.4895,0.1366,75.3435,85.9375,62.1622,89.1892,15.9132,1.1161 "Shropshire, Telford and Wrekin ICB",M82058,Hodnet Medical Practice,4257.11027,7.7386,77.2973,76.0331,5.7758,84.7059,83.5165,3.2555,92.3077,10.5617,2.1528,1.6802,1.5568,19.7621,10.1454,23.917,76.4124,82.7586,0.21,0.4463,15.9951,0.3822,92.2842,77.0492,8.7719,92.9825,10.8542,3.1242 "Shropshire, Telford and Wrekin ICB",M82059,Shawbirch Medical Centre,15586.4709,7.6556,80.9359,87.7828,4.7535,75.8929,80.3371,3.3145,92.4138,7.6418,1.68,0.56,1.5139,13.331,8.3031,16.7871,63.1092,77.7566,0.4233,0.6772,17.198,0.3701,90.1612,80.9045,86.2434,94.1799,9.3676,2.3312 "Shropshire, Telford and Wrekin ICB",M82060,South Hermitage Surgery,9154.825031,7.8883,76.7974,79.9107,4.9559,80.2372,82.1622,3.2846,95.2381,6.0062,1.0678,1.0562,1.4132,15.27,5.7446,14.5079,53.7931,75,0.5223,0.9633,11.9559,1.4441,82.8668,81.8182,84.9315,90.411,12.1478,2.3793 "Shropshire, Telford and Wrekin ICB",M82601,Alveley Medical Practice,2736.833087,7.4967,75.6757,74.2424,7.4968,84,84,4.7393,100,8.054,1.8527,1.6372,0.7504,14.5553,9.4153,21.7579,84.8485,90.1409,0.3016,0.6894,11.7559,1.2213,91.5379,84.3374,82.3529,97.0588,8.7812,4.1792 "Shropshire, Telford and Wrekin ICB",M82606,Ironbridge Medical Practice,5031.860149,7.8556,75.3488,76.25,4.0824,79.0698,76.5957,2.7337,96.2963,4.7555,1.0388,0.4009,2.0764,20.2283,6.1704,14.9991,68.7758,83.3333,0.9477,0.6743,14.2443,0.4039,88.6103,88.421,88.6792,94.3396,10.7111,1.5491 "Shropshire, Telford and Wrekin ICB",M82616,Court Street Medical Practice,8830.558208,7.0477,69.1057,72.4138,3.81,75.6972,73.3813,2.7252,91.1111,6.4402,2.5532,0.6218,1.6058,39.0347,9.4859,15.7296,69.9899,70.4082,0.8996,0.8864,14.4185,0.1708,89.7765,78.7565,82.1782,95.0495,21.1359,2.4342 "Shropshire, Telford and Wrekin ICB",M82620,The Meadows Medical Practice,3342.085257,9.4167,78.5714,76.9231,7.7896,80.5556,78.5714,4.3389,100,6.4152,1.6057,0.6491,0.6998,21.6456,7.027,21.5921,72.807,87.5,0.3075,0.9566,11.1586,1.4752,88.2441,75.3846,45.7143,94.2857,9.5829,2.9382 "Shropshire, Telford and Wrekin ICB",Y01929,Teldoc,51861.64203,6.6667,66.2861,69.6559,2.8724,70.8609,74.7858,2.5716,88.5246,3.1877,1.633,0.4239,1.9376,26.2539,8.0401,12.6289,61.1752,78.4519,0.4485,0.9405,11.6331,0.7808,86.2423,85.6545,68,82,17.5465,1.6141 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence Greater Manchester ICB,P82001,The Dunstan Partnership,12322.53691,7.7949,72.7829,77.0925,3.7646,70.8589,77.6536,3.4453,93.5484,7.8226,3.9098,1.6839,2.7778,37.2138,10.3242,18.7071,67.5938,85.5297,0.7355,1.3452,23.0942,0.4428,92.045,87.6506,89.2086,93.5252,18.5281,3.0001 Greater Manchester ICB,P82002,Pikes Lane 1,8595.827666,6.3954,59.7285,64.0845,3.377,57.4561,62.8099,3.323,83.6364,6.1573,3.1069,0.905,2.6044,38.0174,10.8154,15.5478,59.6218,79.7619,0.5673,1.2563,14.4878,0.1462,88.031,87.1429,50.8197,83.6066,21.0294,2.4044 Greater Manchester ICB,P82003,Kildonan House,15104.88231,7.3183,71.2274,77.0308,3.8637,74.6562,74.7508,2.6648,93.617,6.17,1.4595,0.5147,1.9757,20.6259,7.2804,17.644,66.0199,80.2846,0.6255,0.9057,12.7692,0.0824,89.7031,82.2951,60.2564,83.9744,12.0323,1.7331 Greater Manchester ICB,P82004,Swan Lane Medical Centre,10159.74251,5.532,59.9057,65.4088,2.0016,46.6859,65.4412,2.8126,87.7863,4.9739,1.4576,1.2523,1.7754,39.1419,12.8877,12.6771,73.7673,91.4027,0.5748,1.1805,22.4743,0.6121,95.8981,89.1304,89.8876,94.382,11.5745,1.6526 Greater Manchester ICB,P82005,Stable Fold Surgery,7619.341654,7.5562,74.7212,79.235,3.8126,76.8889,78.8321,2.87,91.5254,4.0069,2.3776,0.7456,0.8117,17.6557,8.3063,15.6162,71.4773,89.5652,0.3939,0.8863,15.3368,0.1946,92.3409,81.1024,84.4444,93.3333,13.4331,2.1525 Greater Manchester ICB,P82006,Dr Malhotra & Partners,9608.374202,7.9642,70.7746,73.913,4.1441,71.3311,72.093,2.9279,93.9759,4.8862,2.4775,1.1824,3.5119,22.7874,8.6004,16.4752,65.4237,84.0989,0.4617,1.0586,14.9223,1.0935,89.4662,79.703,88.0734,90.8257,13.309,1.9932 Greater Manchester ICB,P82007,Kearsley Medical Centre,16357.42796,6.6735,68.8525,72.8758,2.9306,66.7421,70.8,3.1662,76.9231,6.7541,2.9895,0.9351,0.0937,30.2326,9.3032,16.8544,57.9424,68.7651,0.7069,1.0529,20.0937,0.1314,88.2721,84.9858,61.5789,77.3684,18.1917,2.5992 Greater Manchester ICB,P82008,Stonehill Medical Centre,18241.53269,7.179,65.5172,63.7681,2.8036,65.4076,71.3675,3.0703,85.5263,6.4943,3.2002,0.6018,0.5937,42.4333,9.6979,14.9138,67.8765,86.2687,0.8548,1.3813,19.9489,0.4291,90.8465,84.4737,87.1921,92.6108,20.8348,2.2361 Greater Manchester ICB,P82009,St Helens Road Practice,8412.747274,7.2314,69.0909,68.7075,3.2909,64.6018,73.4513,3.8855,85.7143,7.1677,2.1156,0.5946,2.9256,31.2511,10.1982,15.4038,74.6591,89.3162,0.719,1.0232,20.0037,0.2988,93.1877,85.4369,87.2727,94.5455,14.0253,2.406 Greater Manchester ICB,P82010,Dalefield Surgery,8973.766653,6.8203,63.5468,60.5634,3.0562,57.2464,66.6667,2.6528,89.916,5.9459,2.4205,0.6235,1.7605,39.4839,9.2891,13.154,73.4091,85.2041,0.5135,0.9413,18.5351,1.2048,88.5466,87.6543,75,87.5,18.408,1.5892 Greater Manchester ICB,P82011,Tonge Fold Health Centre,8115.142526,7.9679,72.2689,75.9259,4.4146,67.757,74.6154,3.5814,91.2088,5.6323,2.5873,1.0671,1.6013,34.3922,9.9982,14.2231,71.5749,84.8958,0.5701,1.0525,14.7616,1.2274,91.1161,84.6591,88.5417,90.625,15.6558,2.3388 Greater Manchester ICB,P82012,Dr Earnshaw & Partners,7606.421647,6.487,62.5,66.6667,3.523,56.1576,67.0103,3.2914,80.3279,6.1777,3.1426,0.612,1.0002,42.7826,9.2445,13.8769,60.7504,73.9726,0.6616,1.6375,17.9251,1.9928,85.6046,81.1765,75.5814,90.6977,24.4805,2.481 Greater Manchester ICB,P82013,Lever Chambers 2,4417.609576,7.015,55.2083,60.6061,1.6271,52.5424,59.6154,2.8808,83.3333,5.2556,2.5073,0.3468,2.4669,42.7008,12.0309,15.4174,60.8871,73.1707,0.8269,1.4137,21.0225,0,88.2311,86.1111,81.8182,89.3939,20.1308,1.4671 Greater Manchester ICB,P82014,Spring House Surgery,7098.417999,7.1257,74.0741,78.0645,4.2592,70.7182,75,3.6158,78.2609,7.1777,2.053,1.1491,2.3613,25.0094,8.0961,18.1707,70.0109,87.3606,0.5669,0.858,16.2481,0.1984,92.1053,81.7073,82.5,92.5,13.6771,2.2982 Greater Manchester ICB,P82015,Unsworth Group Practice,21033.82698,7.5574,74.6719,77.5,4.4898,77.5835,78.3455,3.4727,92.4731,7.2258,2.1504,0.8524,1.5206,16.0715,9.0754,17.5038,67.0007,81.8056,0.5957,0.8331,15.8465,0.1864,89.9149,75.793,78.5211,87.6761,11.4477,2.4217 Greater Manchester ICB,P82016,Harwood Medical Centre,13275.86514,7.1676,74.1706,75.2727,5.0821,73.4104,72.8111,3.6839,91.8699,6.9134,2.428,0.8791,1.8864,23.1889,7.7998,16.6443,64.2326,80.3536,0.3349,1.0214,15.0498,0.2648,92.1411,77,72.6496,85.4701,13.3313,2.9136 Greater Manchester ICB,P82018,The Alastair Ross Medical Practice,7831.757325,7.1397,67.7249,62.5,3.2667,71.0843,73.2759,2.7705,92.8571,4.2545,3.5562,0.4824,2.0526,42.9219,10.0748,12.3363,65.6168,86.4662,0.6478,1.213,20.8434,0.0872,93.3605,87.5,86.2745,97.0588,23.9399,1.654 Greater Manchester ICB,P82020,Little Lever Health Centre 1,4937.82113,6.532,64.9123,70.8333,2.6782,59.6026,72.1311,3.1102,89.1892,4.2902,1.7063,0.648,1.8428,32.0358,11.3475,17.3218,64.4018,80.8,1.0367,0.7559,16.2684,0.2725,91.7894,92.5373,88.6076,93.6709,16.3087,1.3391 Greater Manchester ICB,P82021,The Oaks Family Practice,7769.94393,7.4685,71.9048,75.4967,3.5553,67.1111,72.8,2.991,90.7692,6.7563,2.2573,0.9735,2.9823,29.3009,8.1478,15.1665,53.726,79.0124,0.5926,0.7619,17.1024,0.5972,92.8664,82.2368,70.8861,92.4051,14,2.3843 Greater Manchester ICB,P82022,Halliwell Surgery 1,5760.893823,7.3345,58.1197,65.4321,2.5145,59.6591,76.8116,2.6741,85.9375,3.7544,1.8759,0.479,2.5744,43.1741,10.3077,12.0535,74.6063,91.6667,0.7583,1.0577,18.2891,0.138,96.1025,82.3529,91.4286,95.7143,16.9214,1.9158 Greater Manchester ICB,P82023,Mandalay Medical Centre,8692.213805,8.5028,77.937,79.9145,4.4614,72.549,77.5401,3.4525,81.1594,6.3868,2.1522,0.8743,1.477,13.3345,7.0687,17.4196,67.4281,79.8387,0.6502,0.6165,15.0301,0.382,89.2262,80.8743,82.6087,91.3043,8.4937,2.4661 Greater Manchester ICB,P82025,Burnside Surgery,4919.643498,7.0847,65.9259,75.7895,3.178,61.3333,68.8312,2.8814,75,4.4077,2.161,0.3814,1.4601,29.9085,10.2786,13.3475,61.9522,87.5,0.5085,1.2288,14.4077,0.2946,90.5385,79.2079,81.4286,90,14.7203,1.8009 Greater Manchester ICB,P82029,Halliwell Surgery 2,4451.85795,7.1323,59.5745,67.1642,3.6158,55.9322,63.3333,3.0638,90.6977,5.5175,3.8366,0.69,0.6131,44.3688,9.5456,15.098,65.6319,81.25,0.8556,1.4353,17.995,0.5761,89.9025,92.2222,83.6735,89.7959,24.0696,2.1529 Greater Manchester ICB,P82030,Deane Medical Centre,4164.037826,4.3052,47.2973,44.186,1.1836,52.4823,54.0541,2.7701,92.5,2.4975,1.1332,1.511,1.7212,41.6189,12.2755,10.8789,76.4873,81.0127,0.3777,0.9318,15.6598,0.2132,91.1029,92.233,67.1233,83.5616,15.6138,1.3095 Greater Manchester ICB,P82031,Heaton Medical Centre,10455.64157,7.6088,74.344,81.0277,3.7403,74.4615,79.0179,3.1585,87.1287,6.1745,2.041,1.0528,2.1332,21.1419,7.7622,14.9889,74.0741,83.9895,0.3417,0.9051,14.6599,0.4543,91.2097,85.7741,82.3009,93.8053,9.912,2.235 Greater Manchester ICB,P82033,Bradford Street Surgery,2430.317555,4.7619,58.8235,59.375,3.232,62.2951,70.8333,2.1708,82.8571,3.3333,2.0261,3.1838,2.6786,42.5274,11.6539,14.7612,73.8589,78.4615,0.2894,1.9296,21.0119,0,94.7637,82.2222,78.9474,86.8421,20.1166,2.1225 Greater Manchester ICB,P82034,Edgworth Medical Centre,3680.564549,7.0427,80.2632,78,4.6702,80.531,81.1765,3.0343,92.5,5.5022,1.9261,0.8971,1.6635,9.7657,6.127,16.095,75.1634,87.4172,0.3166,0.5541,11.3564,1.5873,91.4451,70.9677,75,84.375,9.6576,2.4011 Greater Manchester ICB,P82036,Little Lever Health Centre 2,3237.757322,5.9685,72.449,74.6032,5.3541,75.9494,76,3.6598,90,6.361,2.9482,0.8133,2.1892,23.8177,11.1564,19.9255,68.6747,80,0.7455,1.0505,19.7026,0.312,93.9271,85,90.1961,96.0784,15.5797,2.6093 Greater Manchester ICB,P82037,Fig Tree Medical Practice,5456.517035,7.6783,65.7143,61.5385,3.1698,76,77.6471,2.9557,94.4444,7.9343,3.4697,0.5569,1.1218,41.8097,10.6595,14.7355,74.3945,88.1818,0.7282,1.2851,22.7086,0.9709,90.5894,85.4015,89.1892,94.5946,18.6836,2.206 Greater Manchester ICB,P82607,Crompton View Surgery,6365.251868,8.1141,72.0779,70,3.1966,73.2057,78.9474,2.547,85.5263,6.008,2.4615,0.5128,1.0013,33.2188,8.5176,17.3675,72.5352,90.8537,0.4615,0.8376,18.3356,0.6979,89.4805,86.4286,93.0556,98.6111,19.2469,2.1026 Greater Manchester ICB,P82609,Shanti Medical Centre,5110.096025,4.8378,47.2527,54.2857,0.8159,54.2222,65.1515,1.5503,90,1.5032,0.8812,0.1142,1.6941,39.8434,9.6419,8.502,66.9422,83.7838,0.3264,0.6201,15.8196,0.0874,91.499,95.8904,87.1795,91.0256,11.5008,0.5548 Greater Manchester ICB,P82613,Spring View Medical Centre,5424.165871,7.3303,70.7317,70.6897,3.4725,72.3926,75.5319,2.6336,89.4737,4.4132,2.5166,0.4877,2.6134,25.4985,9.5006,17.6551,61.0526,79.3103,0.5267,1.1315,20.4142,0.244,92.0601,89.0756,82.4324,91.8919,15.3937,1.8923 Greater Manchester ICB,P82616,Beehive Surgery,3796.921652,5.379,53.3333,38.4615,1.0511,46.2585,68.5714,2.1755,90.6977,2.2836,0.8067,0.22,0.5157,41.7523,11.6697,10.8042,80.4348,96.4286,0.8311,0.66,23.9779,0.1342,88.8889,93.421,87.5,95.3125,15.3234,1.0022 Greater Manchester ICB,P82624,Orient House Medical Centre,3373.921506,5.4485,54.4118,60.3774,1.7033,50.8333,66.6667,2.0604,90.4762,1.6988,0.989,0.7418,0.6178,35.516,10.7854,8.9011,71.0037,81.8182,0.467,0.8791,15.5985,0.1026,88.3781,92.0635,72.2222,88.8889,14.2107,1.4835 Greater Manchester ICB,P82625,Charlotte Street Surgery,2048.463849,2.7269,36.5854,59.2593,0.8561,54.1176,70.3704,1.7122,89.4737,1.2911,0.3669,0.3669,0.939,45.6501,13.4934,7.0526,78.3951,100,0.2446,0.8969,20.6573,0.1957,92.0611,95.4546,94.7368,97.3684,11.0333,1.0192 Greater Manchester ICB,P82626,Halliwell Surgery 3,5816.905258,7.1134,59.1304,65.1163,2.0571,47.5904,61.4286,2.117,87.2727,4.4984,2.1969,0.3795,1.9084,47.3808,10.7239,12.4426,61.9048,87.395,0.7989,1.3182,19.711,0.1425,91.3661,91,83.3333,93.0556,18.2225,1.7775 Greater Manchester ICB,P82627,Cornerstone Surgery,3941.222798,6.5056,72.7941,77.0833,2.4294,73.913,77.6316,1.9584,88.6364,3.7368,2.4541,0.4958,1.5011,28.1301,6.5553,13.9812,68.6508,83.3333,0.3223,1.0164,16.9594,0.207,92.3169,75,80,94.2857,15.3264,1.4874 Greater Manchester ICB,P82629,Dr M Dakshina-Murthi,2145.059555,5.4802,56.8627,62.5,2.0369,66.1538,75,3.0068,92.6829,1.7219,1.6004,0.2425,1.6582,39.9177,14.1243,11.6877,78.5,97.561,0.388,1.1639,22.1301,0.1499,95.6085,90.4762,95.2381,95.2381,15.5298,1.0669 Greater Manchester ICB,P82633,Great Lever One,2775.166632,5.4196,56.6667,65.8537,1.3655,63.3333,72.7273,2.249,91.4286,4.4432,2.008,0.7229,1.9199,41.7596,11.588,14.8996,77.4295,90.3846,1.0442,0.8434,21.0093,0.4286,93.0864,83.0769,92.3077,92.3077,19.6027,1.7269 Greater Manchester ICB,P82634,Wyresdale Road Surgery,4452.487392,8.0093,62.3853,69.4444,2.4402,59.5588,75.4098,3.4115,91.6667,4.5741,1.9664,0.4501,0.3786,39.1555,13.4305,9.2869,56.9132,85.1852,0.5449,1.6584,19.8738,0.2252,92.3852,89.3443,83.6066,91.8033,14.905,1.8242 Greater Manchester ICB,P82640,Al Fal Medical Group,4635.846795,6.7059,48.3146,60.6557,0.9043,50,70.9091,2.8336,89.0625,3.008,1.0852,0.2814,1.3053,40.904,14.1196,10.1085,75.9912,89.7959,1.1254,0.9043,21.3678,0.3784,89.6864,91.0345,82.1053,87.3684,13.3532,0.8441 Greater Manchester ICB,P82643,Bromley Meadows Surgery,5877.30445,7.0396,81.1159,83.4254,3.3567,79.8319,83.2258,2.3525,86.6667,3.3093,1.3207,0.6191,1.3378,9.3337,4.8429,11.9549,67.192,84.7953,0.3164,0.3852,12.9379,0.0693,91.5623,89.2857,82.6923,90.3846,7.0263,1.472 Greater Manchester ICB,P82652,Farnworth Family Practice,4873.015414,7.834,63.3028,66.2338,3.5117,69.7987,72.0588,3.3923,98.2759,5.0176,2.1739,0.4778,1.7258,41.4015,9.1223,13.1629,65.3153,85.0467,0.5733,0.8122,17.3858,0.1504,90.4331,82.1053,78.1818,83.6364,17.763,1.9111 Greater Manchester ICB,P82660,Deane Clinic 1,3375.218865,6.0324,58.1081,56.25,2.1703,67.2,75,2.0868,88.6364,3.3708,1.8086,0.1391,0.3487,37.6027,12.1235,13.5225,75.8621,78.4314,0.4452,1.3356,26.1527,0.2188,90.8778,87.9121,86.6667,95,22.2911,1.6138 Greater Manchester ICB,Y00186,3D Medical Centre,1443.51403,4.5483,45.8333,52.9412,0.9787,40.678,62.5,2.3028,92.3077,1.467,0.806,0.1727,0.652,43.1305,11.1376,8.578,64.7482,90,0.2879,0.5757,19.2339,0.3559,95.2507,89.6552,92.3077,92.3077,20.621,0.6333 Greater Manchester ICB,Y02319,Bolton General Practice,7665.440192,3.22,51.7241,51.8519,0.6687,55.6667,63.7931,0.9143,89.8148,0.3605,0.8188,0.1228,1.6885,50.0122,5.5938,5.0355,63.9665,81.8182,0.3412,1.2555,15.4809,0.1134,91.7945,95.122,87.5,94.6429,21.9752,0.5595 Greater Manchester ICB,Y02790,Bolton Medical Centre,7400.712205,4.4937,54.2553,61.1111,1.061,55.1852,71.4286,1.4055,85.9504,1.6052,0.7717,0.1929,3.1478,43.9072,8.4148,7.9923,64.2166,84.127,0.3721,0.7579,20.9506,0.0806,92.3886,94.5055,89.0244,93.9024,17.7667,0.8957 Greater Manchester ICB,Y03079,Bolton Community Practice,16546.78326,6.7673,65.4846,69.4915,2.7353,59.4545,64.8221,2.7876,85.5769,5.0098,1.8475,0.7703,1.6728,27.0188,9.7349,14.1533,52.7149,64.5,0.6659,1.273,13.5858,0.6001,88.8797,79.1789,57.4766,81.7757,14.1522,1.7431 Greater Manchester ICB,Y03366,Olive Family Practice,5410.389844,5.0831,46.9136,61.2903,1.0893,54.1872,63.1579,2.215,88.6598,3.4492,0.7081,0.7625,1.8431,43.6311,12.1274,8.6964,68.8679,78.1818,0.817,1.3798,17.8778,0.388,93.1718,90.8397,83.871,90.3226,13.7095,1.1983 Greater Manchester ICB,P83001,Fairfax Group Practice,13244.87723,6.5255,71.0811,72.3077,3.3093,75.1786,76.9231,2.4273,88.3436,4.5071,1.2756,0.7289,2.6894,22.3679,6.7735,13.4048,65.9517,80.1153,0.5102,1.0934,10.7484,1.1328,84.9495,83.871,83.7037,90.3704,12.8382,1.6109 Greater Manchester ICB,P83004,The Uplands Medical Practice,7731.57322,5.8792,65.6863,73.3766,3.4046,69.2308,70,2.8286,81.9672,3.5275,1.6895,0.6016,1.5915,23.0355,7.1831,12.7224,65.7444,75.7447,0.448,0.9343,12.5677,1.6553,83.384,77.8626,69.0476,79.7619,14.9525,1.4463 Greater Manchester ICB,P83005,Townside Surgery,5722.631938,8.7601,66.6667,70,4.9233,65.2482,72.9412,4.2413,90.9091,9.2784,4.6036,1.0443,2.6289,28.8487,8.7189,23.6573,71.5976,81.8868,0.8099,1.1083,10.7474,1.2452,87.8441,85.034,83.3333,90.9091,17.0421,2.4936 Greater Manchester ICB,P83006,Ramsbottom Medical Practice,7411.067364,6.5431,74.4444,78.3505,3.9855,75.3731,74.2857,2.9921,90.2778,5.9771,2.0351,0.8116,2.4541,13.7408,6.3241,15.8086,66.9238,75.3731,0.3392,0.8601,9.1087,0.8661,84.2286,85.7143,73.6842,93.4211,11.0004,1.8292 Greater Manchester ICB,P83007,Radcliffe Medical Practice,11604.44719,7.34,64.0569,73.7624,2.7945,66.1836,67.2316,2.5319,76.9231,4.9523,2.2693,0.5345,2.8989,30.1194,7.7636,14.8162,53.4867,69.3966,0.3939,1.0221,12.6706,0.2023,86.8127,85.0746,79.0323,91.9355,20.5183,1.5942 Greater Manchester ICB,P83009,Blackford House Medical Centre,8336.2601,7.3121,76.5677,84.8168,5.1018,78.9474,80.3922,3.6589,93.3333,5.3152,1.5202,1.0178,2.0539,18.0839,8.3978,17.1219,77.0363,83.871,1.1981,0.7086,8.6234,0.2766,88.6986,85.8824,91.8367,95.9184,8.3446,2.2932 Greater Manchester ICB,P83010,Monarch Medical Centre,3856.398248,7.8493,66.3934,70.9302,2.555,62.6087,70.4225,3.153,82.3529,4.8671,2.5007,0.5708,2.3818,29.6951,10.5674,17.1242,55.5147,76.7442,0.6795,0.8154,19.0542,0.3834,92.6224,90,88.1356,94.9153,19.6985,1.495 Greater Manchester ICB,P83011,Unsworth Medical Centre,7952.192383,7.2895,71.2598,74.5665,4.5687,71.028,74.6377,3.7519,82.5397,6.0406,3.1151,0.9138,0.6249,23.6279,8.2494,16.2952,63.1342,79.3103,0.443,1.066,12.359,0.6123,88.3443,83.4197,79.1209,91.2088,13.8091,2.3813 Greater Manchester ICB,P83012,Tower Family Healthcare,48480.65386,7.6328,73.4491,75.6098,4.3538,70.3247,72.6522,3.4954,87.9717,5.3839,2.1347,1.2537,1.7998,16.2049,8.1697,16.0772,61.9844,78.772,0.5682,1.126,14.9916,1.1345,81.7942,79.7743,71.6522,85.7391,13.4684,2.4147 Greater Manchester ICB,P83015,Ribblesdale Medical Practice,8601.943872,8.0236,70.6827,76.4706,4.6607,62.3318,73.7226,3.9929,90.2439,5.9615,2.671,0.7904,1.4779,27.101,9.2669,17.5252,75.9391,85.7143,0.695,1.3764,16.556,0.9577,87.4763,83.6634,82.4074,92.5926,15.5853,2.5756 Greater Manchester ICB,P83017,Woodbank Surgery,6426.454967,6.4046,72.449,73.6434,4.3142,69.7778,78.1818,2.7813,88.0597,3.005,2.1334,0.9008,2.1294,21.6482,6.304,14.2067,63.6483,80.292,0.5531,0.9798,13.8906,0.432,86.1234,85.2273,80.9524,90.4762,17.0849,1.7541 Greater Manchester ICB,P83021,Peel GPs,10651.99006,5.9036,63.6986,66.3462,3.5775,58.1871,67.2619,3.0522,82.9546,4.4127,2.1901,0.555,2.3466,31.8719,8.2654,12.6251,63.0085,74.1936,0.6045,1.1297,13.2126,2.3611,79.7431,87.156,66.9355,83.0645,18.0077,1.8432 Greater Manchester ICB,P83024,Knowsley Medical Centre,4830.249651,6.8782,58.4,65,2.6911,55.3191,74.2857,3.4147,94.1177,4.6472,2.0805,0.9498,3.1555,32.4294,10.9822,12.7544,54.0598,69.7917,0.882,1.2212,16.0356,0.3894,88.8064,87.931,78.3784,93.2432,16.1181,2.0579 Greater Manchester ICB,P83025,St Gabriel's Medical Centre,7697.124262,5.1491,68.0952,69.6296,2.557,59.7744,72.0721,2.05,80,3.7315,0.7715,0.5401,1.2327,20.5093,7.1557,11.0438,70.6683,84.0206,0.7054,0.8487,12.5104,1.3611,89.4186,82.9457,84.3373,91.5663,7.9733,1.1022 Greater Manchester ICB,P83027,Greyland Medical Centre,1854.755873,4.5887,79.2208,74.4186,2.9979,63.6364,79.4118,1.6595,100,4.8703,0.3212,0.4283,0,20.6731,7.2191,12.0985,45.9302,68.5185,0.2677,0.7495,13.093,0.1192,82.2547,87.5,81.8182,95.4545,11.21,1.0171 Greater Manchester ICB,P83603,Red Bank Group Practice,11982.53894,7.3657,72.2714,81.0811,5.5139,77.305,76.7956,4.0859,94.0476,7.6266,2.9289,1.4801,1.9768,27.1829,9.3891,18.3448,84.3863,91.906,0.7401,1.3342,17.4723,0.3801,88.513,82.392,89.2086,94.2446,14.908,2.8768 Greater Manchester ICB,P83605,Whittaker Lane Med Centre,7918.454979,7.0446,70.5,68.1159,3.1678,76.9784,76.1905,3.1678,93.2584,5.4945,2.0467,0.8474,1.2511,22.4618,6.8737,11.3414,69.7778,81.5385,0.5736,1.447,12.4429,0.6309,88.7789,80.3922,85.3333,93.3333,11.9617,2.0336 Greater Manchester ICB,P83608,The Elms Medical Centre,6973.189763,7.0745,66.8508,73.4848,4.0227,70.0935,72.7273,3.3901,93.8776,3.8775,1.9465,0.9895,1.9089,23.9528,8.335,16.545,74.702,81.8868,0.6326,1.3788,9.9423,0.4559,89.9929,81.1189,75.8621,89.6552,15.1444,2.0762 Greater Manchester ICB,P83609,The Birches Medical Centre,3704.419622,7.0724,70.4,70,3.2787,73.4375,75,2.472,92,5.239,1.4832,0.4684,2.0956,22.0006,6.8453,14.7281,71.0692,85.3933,0.4424,1.171,13.556,0.7571,84.9146,90.625,85.7143,95.9184,13.4414,1.4832 Greater Manchester ICB,P83611,Walmersley Road Medical Practice,3736.898457,4.5045,42.6829,43.75,0.626,51.0345,62.7907,1.7157,73.8636,1.4159,0.7651,0.4405,1.3829,39.1727,11.9509,6.9557,79.4118,71.4286,0.7188,0.5333,10.5367,0.3061,84.8341,88.8889,90.2778,86.1111,12.729,0.8115 Greater Manchester ICB,P83612,Mile Lane Health Centre,5500.793873,7.0211,80,79.6875,5.6111,78.8079,77.451,4.2467,97.2973,6.5452,2.4597,1.6718,2.0619,14.6571,7.8617,18.8509,77.3224,87.9518,0.5573,0.9224,10.3093,1.2937,89.0272,76.0274,87.6923,95.3846,9.2817,3.4589 Greater Manchester ICB,P83620,Garden City Medical Centre,5220.798097,8.0744,80.402,82.9457,6.0263,83.6879,86,3.4378,93.9394,3.4524,2.3256,1.0718,1.966,12.3428,6.3552,18.1395,75.0708,89.0052,0.4044,0.5258,12.1074,0.3722,90.0222,78.0822,88,96,10.8054,2.1234 Greater Manchester ICB,P83621,Huntley Mount Medical Centre,3748.641457,9.3487,57.8947,60.2941,2.6339,61.6071,71.1864,2.9812,82.2222,2.5934,2.8365,0.4342,2.8604,45.6561,8.9787,13.6324,67.7665,85.7143,0.521,1.1577,12.5095,0.3527,83.9552,92.8571,86.9565,93.4783,24.3151,1.9392 Greater Manchester ICB,P83623,Longfield Medical Practice,5109.102124,8.6678,69.3878,74.3119,3.5875,78.0822,79,2.6269,87.7551,5.4449,2.0192,0.8822,1.7646,22.4329,6.6286,14.1541,75.2197,89.5425,0.6273,1.1762,13.2342,0.2588,83.4501,86.8132,86.5385,92.3077,12.5267,1.7448 Greater Manchester ICB,Y02755,Rock Healthcare Limited,9820.688889,5.6751,62.1622,58.7719,1.5305,59.2677,61.7647,1.3774,76.875,1.7819,1.2448,0.1531,5.3029,35.6344,6.4869,7.5809,55.4094,76.2712,0.6122,1.5407,12.345,0.209,81.9756,83.4952,62.6506,86.747,21.1003,0.8877 Greater Manchester ICB,P85002,St Mary's Medical Centre,8609.25321,7.1792,66,67.1533,3.2135,57.8475,68.2692,2.9394,88.4615,5.9304,3.2592,0.792,3.9666,48.2553,9.2007,15.9306,55.3241,79.1209,0.8072,1.2641,19.3856,0.3956,88.0943,89.441,85.8824,92.9412,24.1797,1.9799 Greater Manchester ICB,P85003,The Chowdhury Practice,6049.001588,7.1924,52.7027,40,0.7628,70.9821,84.2105,1.7639,95.0617,3.1279,0.9376,0.3019,1.4706,48.9211,14.7371,9.9952,64.8084,85.4546,0.8581,1.2236,14.4491,0.8219,92.3684,94.6154,90.0763,96.1832,14.2857,1.0806 Greater Manchester ICB,P85004,Chadderton Medical Practice,5613.954149,7.3813,76.0563,74.1935,2.7186,73.5751,85.8974,2.9437,95,4.0812,1.9913,0.4156,1.6601,34.5705,13.0415,14.5801,76.4873,80.1471,1.1602,0.9178,18.4459,0.6229,92.5234,92,96.4286,100,16.6387,1.7836 Greater Manchester ICB,P85005,Leesbrook Surgery,10149.1399,8.8206,78.7115,72.549,5.1842,81.2721,78,4.1495,95.7983,6.6085,2.4496,1.1192,1.8991,18.099,7.2515,19.5333,60.0975,81.8841,0.4751,0.7497,14.7055,1.3084,90.6035,86.6973,89,95,11.2803,2.3862 Greater Manchester ICB,P85007,Oldham Family Practice,4611.852832,7.3067,62.8866,63.4921,2.7127,63.2813,76,3.0287,88.1356,3.8773,2.66,0.4477,2.7141,43.33,10.6228,15.802,69.9219,81.8182,0.5794,1.1325,17.6948,1.9675,91.2817,86.3158,89.6552,96.5517,21.9503,1.7382 Greater Manchester ICB,P85010,Woodlands Medical Practice_P85010,15248.85551,7.1434,74.2291,78.481,4.2941,73.7991,75.5102,3.4424,85.443,5.4809,2.1435,0.724,1.1449,25.0955,9.4166,16.2041,70.914,86.7612,0.6033,0.9511,16.6682,3.1837,90.1655,88.0886,92.7835,95.8763,14.2804,2.2784 Greater Manchester ICB,P85011,Ch Medical Practice,14121.84551,6.8867,70.2065,73.8956,3.4394,66.2791,70.6186,3.1253,81.761,6.4227,2.6742,0.9424,2.5206,32.8635,8.756,16.4398,70.2191,79.5455,0.733,1.0552,20.2067,1.0019,86.7921,86.8421,67.2956,90.566,19.8962,2.0701 Greater Manchester ICB,P85012,Oldham Medical Services,6273.242499,7.7205,62.8319,63.75,1.9031,71.066,76.3889,1.9207,96.5517,5.0456,1.7797,0.2115,1.217,46.9768,10.8008,11.1013,73.7132,87.2093,0.511,0.8106,16.4807,1.1054,93.0774,92.7083,91.5663,96.3855,22.1493,0.9515 Greater Manchester ICB,P85013,The Royton & Crompton Family Practice,24357.20085,6.8316,74.0554,77.1481,5.0483,78.9308,78.3217,3.5274,90.8108,7.2839,2.4096,1.0491,1.4399,21.4653,8.5816,18.6358,65.0961,81.829,0.6093,0.8704,17.8469,1.3612,91.2035,85,91.844,93.617,13.0235,2.4875 Greater Manchester ICB,P85014,Hopwood House Medical Practice,6761.765656,8.0231,66.6667,63.0631,2.9416,56.6372,71.134,2.2688,85.4167,4.1579,2.6913,0.8136,2.646,40.8879,8.7575,13.3938,69.3227,90.2913,0.8293,1.1892,20.7896,3.0572,89.5028,88.8889,88.6076,96.2025,20.2861,1.7994 Greater Manchester ICB,P85015,Alexandra Group Med Pract,8681.379874,6.6895,61.8182,64.0625,2.4954,52.2388,66.3462,2.8482,66.6667,5.174,2.1296,0.8623,0.6851,44.8772,12.1571,10.9747,59.0574,78.2609,0.7055,1.0321,20.1911,0.4819,86.0669,90.8257,78.7879,87.8788,15.3152,1.6985 Greater Manchester ICB,P85016,Saddleworth Medical Practice,13302.58838,6.8306,78.6689,75.25,5.9473,80.2817,78.6624,3.4077,98.0769,3.7741,1.7864,0.9757,1.2955,9.6406,5.5845,17.1103,59.736,81.8342,0.3157,0.6744,9.8713,0.3934,86.231,82.2727,86.9565,96.5217,7.3258,2.432 Greater Manchester ICB,P85017,Oak Gables Medical Practice,10993.794,8.7316,74.8571,68.3983,4.7727,67.5889,71.5909,4.2641,92.3077,6.7092,2.5433,1.1255,1.8369,24.4409,9.0792,17.8355,60.0647,74.4526,0.8225,0.9416,16.506,0.3129,83.1737,65.5572,82.5,86.6667,13.9866,3.0195 Greater Manchester ICB,P85018,Danson Family Practice,5301.737767,6.7029,59.0164,72.6027,3.3158,67.6259,74.2424,2.7448,98.1132,5.9885,2.4155,0.6588,2.149,40.6859,10.4067,11.7699,78.0702,90,0.9442,1.2956,18.1662,0.3989,83.8144,85,92.7536,94.2029,19.4034,2.5472 Greater Manchester ICB,P85019,Royton Medical Centre,6774.560951,7.8245,72.3958,62.4113,3.5511,75.5656,77.1186,2.904,94.5206,5.8659,2.3832,0.6944,2.6426,26.1527,8.146,17.1875,73.1654,78.4091,0.5051,1.0101,20.2402,0.4772,90.0709,86.7925,82.6667,92,16.8425,2.036 Greater Manchester ICB,P85020,Springfield House,9080.815343,6.8657,66.0944,71.519,2.8363,60.0791,71.223,3.0408,86.5169,6.4474,3.0919,1.0604,0.9919,37.4559,7.831,15.1399,52.7041,80.1653,0.7155,1.2521,15.8043,0.5822,86.7209,81.5029,76.6667,92.2222,21.1545,2.0187 Greater Manchester ICB,P85021,Greenbank Medical Practice,11189.16127,7.8403,65.6109,60.6061,2.1317,59.8383,72,2.5073,86.2745,5.1861,1.8124,0.5353,2.0355,44.3748,10.4916,12.4237,75.8859,90.9639,0.817,1.2865,20.0182,1.8372,90.6131,90.8046,86.875,91.875,19.6686,1.8124 Greater Manchester ICB,P85022,Lees Medical Practice,4925.351319,6.7457,67.1642,67.033,3.0938,67.2222,70.6667,2.8942,93.9394,3.962,1.5769,0.519,2.747,33.3071,8.4587,13.5729,60.034,89.1304,0.3792,1.1377,16.878,0.6325,88.7432,90.3226,83.3333,93.3333,19.4326,1.9361 Greater Manchester ICB,P85026,Quayside Medical Practice,18474.08707,8.2573,72.7955,75.5155,3.9958,76.5233,73.6364,3.4512,87.0787,6.0683,2.8393,0.8077,1.8151,30.2445,7.6193,17.0726,58.1835,73.1449,0.4406,0.8934,14.4593,1.8622,85.1807,87.7238,87.234,93.617,14.581,2.1784 Greater Manchester ICB,P85601,Jalal Practice,3487.489718,8.5655,56.0606,60.4167,2.1886,61.7647,80.4878,2.9289,78.7234,4.9719,1.9633,1.1265,2.3346,45.1927,12.5477,15.095,65.0246,85.7143,0.8368,1.1265,17.3368,2.0179,90.0092,90.7217,87.5,91.0714,17.979,1.9955 Greater Manchester ICB,P85605,Littletown Family Med Pract,7211.913196,7.785,65.2778,66.3551,2.2649,62.4113,80.4348,2.2384,87.1795,4.723,1.4702,0.3444,1.5061,42.5818,13.2825,13.351,68.7778,92.5926,0.649,1.1523,25.5671,0.5814,92.1136,90.9548,88.5496,95.4198,18.0449,1.1788 Greater Manchester ICB,P85606,Moorside Medical Practice,6214.844282,6.5308,69.5364,72.8814,2.3541,79.5652,81.3725,2.195,95.2941,5.7924,2.2745,0.8589,4.5435,30.7968,6.7076,12.9951,62.6248,84.4828,0.5726,1.1611,21.3394,0.5084,90.1563,89.8148,82.4561,94.7368,18.8302,1.4952 Greater Manchester ICB,P85608,Perkins Practice,3373.878547,8.6284,63.6364,70.1754,3.1587,71.7391,75.5556,3.0046,73.6842,6.6568,4.8151,0.4623,1.3807,50.424,10.6744,17.604,79.8544,91.1111,1.5408,0.7319,22.929,2.4859,91.8406,92.5926,90,92.5,28.443,2.0801 Greater Manchester ICB,P85610,Medlock Medical Practice,7523.353177,6.8351,63.8418,64.7059,2.3715,69.6203,70.5357,2.3167,87.3418,5.0865,2.1796,0.6306,1.6099,34.2424,6.8849,12.159,72.1449,80.4734,0.5894,0.9596,12.5707,1.3164,86.1972,90,80.3571,92.8571,17.0143,1.5079 Greater Manchester ICB,P85612,Werneth Medical Practice,3672.888483,6.523,44.2308,28.5714,1.0989,45.3237,56.25,2.5118,76,4.0698,1.0466,0.2878,2.0349,45.469,13.6962,11.8001,69.9029,82.0513,1.3082,1.3867,14.0988,1.5221,89.1101,90.7563,93.4211,96.0526,13.6872,0.9681 Greater Manchester ICB,P85614,Village Medical Practice,4147.28559,7.602,69.5652,62.8205,3.0869,74.4526,80,2.62,84.4444,5.236,3.2685,0.7523,3.5136,26.7243,8.2681,15.227,65.121,73.6264,0.5707,1.0636,15.8801,0.5364,87.7646,76.4045,77.2727,90.9091,20.7712,1.9455 Greater Manchester ICB,P85615,Kapur Family Care,11733.33824,7.1042,52.514,53.5433,1.2859,55.6306,72.9508,2.275,75.2525,4.223,0.849,0.4121,2.5741,44.8302,13.4304,9.9984,50.6482,64.6617,0.9397,1.4095,16.6904,0.4301,90.6038,90.4908,86.2595,91.6031,14.4095,1.0633 Greater Manchester ICB,P85622,Jarvis Medical Practice,10258.86673,5.135,46.5839,48.1481,1.1675,47.5949,61.6162,2.2112,61.7347,3.3347,1.2648,0.6987,2.1917,48.3469,12.7921,8.5088,53.9929,78.8618,0.7253,1.3621,17.8836,1.8655,89.0876,90.0763,80.7292,92.7083,30.1924,1.1852 Greater Manchester ICB,P89006,Pennine Medical Centre,10787.08961,8.2161,74.3341,78.2456,3.8106,76.7507,78.9474,2.8772,95.8763,4.3722,1.8496,0.6851,1.8844,18.4211,6.599,18.9245,59.2593,83.9572,0.2655,0.6251,12.7885,2.2995,88.5266,91.3242,89.0909,90,11.1022,2.1408 Greater Manchester ICB,Y02753,Hill Top Surgery,6663.208485,7.4001,60.5505,61.1765,1.9275,71.831,71.831,2.3559,74,4.3228,3.2126,0.4283,3.3534,50.302,8.0723,11.1547,70.0917,85,0.8031,1.3921,17.0553,1.3783,93.8334,89.2157,81.8182,94.5455,25.5319,1.3743 Greater Manchester ICB,Y02827,John Street Medical Practice,4829.835006,6.6869,46.5517,34.0909,0.8997,52.5253,67.4419,2.0145,78.3133,3.0522,0.7237,0.4303,3.0244,46.9243,12.7342,9.1923,68.1293,86.4865,1.0953,1.3886,16.6482,0.5083,91.5405,95.3125,92.1348,96.6292,15.8868,1.1735 Greater Manchester ICB,Y02875,Lindley House Health Centre,4634.929212,5.4988,58.7302,54.902,1.2888,64.8485,76.087,1.6945,90.1961,1.9237,1.2172,0.2148,3.0712,50.9535,8.2784,8.4964,53.0121,79.1667,0.8115,0.5967,21.5997,0.232,91.2067,92.4528,78.7234,91.4894,23.0411,0.9069 Greater Manchester ICB,Y02933,Hollinwood Medical Practice,8971.685878,6.213,62.6582,64.4628,2.5149,70.5521,73.0769,2.2962,86.0465,5.0742,2.7214,0.5224,4.2803,45.3331,8.6706,11.3109,64.3636,83.0189,1.0691,1.2514,18.6918,2.0202,91.4439,91.3514,77.5281,93.2584,24.2102,1.543 Greater Manchester ICB,P86001,Milnrow Village Practice,8279.590038,8.2864,75.3968,78.7356,4.6954,77.7778,81.6327,3.6606,96.5116,5.7267,2.3283,0.6856,3.8659,24.3237,7.4949,18.4711,62.9073,83.1169,0.6209,1.0865,20.8373,1.5761,92.4142,80.814,79.0698,91.8605,16.0642,1.9402 Greater Manchester ICB,P86002,Dr Gwd Bhima,2059.215472,10.5372,61.2245,52,3.2342,65.3061,69.5652,4.8512,92.8571,6.8106,2.458,0.7115,1.0797,45.5967,12.1312,16.7529,67.6191,87.7551,0.8409,1.229,24.4186,0,89.039,89.2308,86.6667,100,18.2813,2.0699 Greater Manchester ICB,P86003,Edenfield Road Surgery,11659.80712,6.9245,72.2488,77.7778,4.4721,72.0779,80.7018,3.5221,86.1386,7.766,1.6401,0.95,2.6658,18.9609,8.8104,17.6376,63.9113,83.9583,0.5646,0.8693,15.8405,0.3276,84.7002,87.4252,90,94.2857,10.4453,2.4019 Greater Manchester ICB,P86004,Peterloo Medical Centre,10224.83689,7.5091,73.3553,75.1196,4.3073,73.6842,76.2195,3.3072,83.9286,5.2639,2.4548,0.966,2.3587,30.1985,7.6967,15.5018,73.9677,92,0.4546,1.0001,16.5396,0.7213,89.7365,84.2697,86.4583,95.8333,14.3976,2.1821 Greater Manchester ICB,P86005,Yorkshire St Surgery,7334.120285,6.4721,63,59.8425,3.0351,66.0287,73,2.9233,93.8462,3.2933,2.9872,0.7987,1.2013,38.3874,9.2758,13.6262,71.8539,82.4561,0.7668,1.3419,18.082,1.387,88.6807,88.4058,79.7753,86.5169,21.8658,1.7412 Greater Manchester ICB,P86006,Ashworth Street Surgery,18896.98495,8.6525,69.8376,65.2027,3.2991,64.2978,73.1518,3.2089,81.9444,4.6339,1.5624,0.673,3.1552,36.845,9.3988,14.7287,59.0139,76.5237,0.5949,1.2619,13.1267,0.8568,85.828,83.9329,73.3333,88.4444,16.24,1.935 Greater Manchester ICB,P86007,Wellfield Health Centre,16508.20004,6.8396,61.8037,65.5431,3.1645,58.9404,68.8372,3.2966,75.9777,6.1528,3.1424,0.8884,3.2147,40.9336,10.0978,15.0514,66.9931,82.8026,0.6975,1.7621,16.4838,2.6904,89.4206,85.7477,79.602,91.0448,20.3213,2.3862 Greater Manchester ICB,P86008,Mark Street Surgery,12411.94783,6.7222,62.406,63.4409,3.0697,58.6402,70.3448,3.1095,77.027,4.5229,3.0399,0.8146,2.4292,42.0063,9.623,13.0439,70.255,83.4646,0.6358,1.4703,16.065,0.2191,88.993,85.1852,80.2817,90.8451,17.9203,1.8279 Greater Manchester ICB,P86009,Castleton Health Centre,12378.20163,8.4974,68.75,71.8894,4.1276,71.7718,73.6196,3.8215,94.1748,6.7782,2.8636,1.4121,2.6157,34.2561,9.6838,18.9098,60.2999,76.1155,0.6024,1.3627,16.9769,3.018,90.2606,86.2543,68.0556,84.7222,16.967,2.5082 Greater Manchester ICB,P86010,The Junction Surgery,8621.12177,7.6885,70.438,65.4255,3.6242,67.9577,68.4564,3.5538,89.7959,5.4822,2.1112,0.5864,2.8854,25.5337,7.5785,14.966,60.9108,82.4324,0.3871,0.9266,17.1602,0.9372,86.6313,84.6561,73.913,91.3043,14.5289,2.0291 Greater Manchester ICB,P86011,Longford Street Medical Centre,10395.1845,6.2393,68.6747,71.7073,4.7182,74.4094,75,3.7883,85.2273,6.3513,3.2832,1.148,1.548,34.3489,9.6797,18.9645,69.5087,85.0746,0.7806,1.3776,17.4045,0.6331,91.0263,73.7052,79.6875,89.8438,17.0557,2.273 Greater Manchester ICB,P86012,Woodside Medical Centre,10501.5112,8.0913,68.0328,65.6627,3.3322,68.8623,74.2647,2.8467,88.8889,6.1271,3.5308,0.6179,4.385,42.2959,8.7608,13.4724,72.0798,80.3571,0.9048,1.2137,17.7204,0.938,88.8523,88.1517,70,95.4545,21.2463,2.3833 Greater Manchester ICB,P86013,Healey Surgery,6506.432334,7.0451,65.9686,74.2188,3.392,66.4948,77.5701,3.36,83.7209,2.4131,1.632,0.336,1.5746,28.7508,9.6463,13.232,51.809,61.0294,0.544,0.848,13.9264,0.2591,82.3895,91.6031,79.7753,92.1348,14.1829,1.504 Greater Manchester ICB,P86014,Croft Shifa Health Centre,8724.180803,8.1551,47.2603,54.902,1.5809,45.4225,71.1111,2.6716,87.8261,3.1554,0.9191,0.3922,0.6822,49.357,14.8653,11.4338,58.7455,76.9231,0.723,1.2623,13.3208,0.1121,82.411,92.3767,66.6667,83.3333,13.8639,0.8456 Greater Manchester ICB,P86015,Rochdale Road Medical Centre,5778.990079,6.1778,66,57.4257,2.3967,68.4211,72.5,2.0947,80,3.1864,2.5288,0.3963,3.0187,32.7778,6.8316,13.2289,62.5874,79.0698,1.0379,1.0568,17.7767,0.4553,84.7336,78.6667,75,91.0714,20.628,1.5097 Greater Manchester ICB,P86016,Heywood Health,10723.69573,7.445,65.2174,67.6923,3.6878,69.3103,66.8831,3.2127,89.2857,4.4454,3.0656,0.7579,3.1628,37.6872,8.5473,15.9163,55.4622,77.4194,1.1425,1.3348,17.6505,1.1995,86.3686,85.2041,83.6364,90.9091,22.7525,2.2511 Greater Manchester ICB,P86017,Inspire Medical Centre,5010.117515,9.3961,44.4444,46,0.9762,67.2414,80.8511,3.0136,93.9394,3.2354,0.8277,0.4669,1.5138,50.6455,13.9266,10.5688,83.9161,94.2029,1.1036,1.2733,28.5545,0.4474,93.1381,96.0265,93.617,93.617,15.0086,1.0611 Greater Manchester ICB,P86018,Littleborough Group Practice,9783.57077,8.1154,73.6486,79.397,4.8778,75.6554,76.8293,3.557,100,7.2495,2.5258,1.3903,2.5228,23.5637,8.0429,18.561,62.0253,82.5444,0.475,1.2281,13.2811,0.7785,90.5821,80.4255,85.8491,93.3962,12.8453,2.8386 Greater Manchester ICB,P86019,Durnford Medical Centre,11257.5212,7.358,73.1429,77.0925,4.611,69.0625,72.4719,3.5344,85.8491,4.9828,2.2852,0.9852,2.9617,31.8338,8.4023,17.1136,73.5931,82.6087,0.5992,1.1781,12.9528,2.0976,89.262,89.4737,80.3279,94.2623,17.2284,2.1836 Greater Manchester ICB,P86021,Pennine Surgery,3937.074351,7.4728,69.4215,78.0488,4.1818,79.0476,76.9231,4.1539,97.0588,6.8597,2.3697,0.92,2.2406,23.9632,8.626,19.487,70.8408,80,0.7806,1.1151,13.4436,0.9015,90.5251,82.2222,90.9091,95.4545,14.6249,2.5091 Greater Manchester ICB,P86022,Stonefield Street Surgery,9562.509014,7.5012,75.2381,79.1304,4.0219,79.6226,80.8511,3.7363,79.2208,7.0038,2.5137,0.777,2.2446,24.4442,7.9073,17.2532,67.3793,84.6154,0.6513,1.0283,17.5593,0.1347,90.2022,84.507,84.6154,94.2308,16.102,2.2052 Greater Manchester ICB,P86023,Hopwood Medical Centre,9557.36079,8.2567,73.1225,73.743,3.8377,76.5396,74.8299,3.1339,88.8889,5.4357,2.2432,0.8907,3.2787,28.8341,7.8754,17.704,69.1015,80.083,0.5498,0.8247,15.2574,3.1856,91.3176,90.2062,84.1584,94.0594,15.61,1.9134 Greater Manchester ICB,P86026,The Dawes Family Practice,9061.449417,6.9601,67.3077,66.4516,4.2573,57.8313,72.3577,3.3272,76.6667,7.6897,2.5282,0.8122,2.5179,36.903,9.0179,17.5531,65.2174,83.7838,0.5109,1.1527,17.4889,0.8038,87.1628,81.7259,64.7059,86.2745,18.1996,2.2662 Greater Manchester ICB,P86602,Heady Hill Surgery,4179.120402,9.616,65.7658,64.1975,3.3363,79.0909,80,3.664,75.8621,5.1166,3.1278,0.4766,3.1603,36.5999,8.879,15.4007,71.0762,87.3239,0.6851,1.1915,14.7479,0.4591,91.6888,84.8101,80,88.8889,22.3259,2.2937 Greater Manchester ICB,P86606,Family Practice,5794.153292,5.4517,58.4,56.1798,3.0152,70,66.6667,3.2855,87.6923,6.0248,4.1173,0.603,1.8018,48.7901,8.2967,14.1194,78.9474,87.3239,0.7486,1.31,19.9606,0.2075,94.707,93.3884,88.2353,94.1176,22.8057,1.5804 Greater Manchester ICB,P86608,The Village Medical Ctr.,4414.895661,6.2303,74.3902,75.4386,3.5812,78.3217,77.7778,2.8513,95.3488,3.3456,2.9653,1.1861,1.3326,24.2359,7.5028,16.6287,62.5,82.3009,0.4562,0.8896,15.7925,0.2225,90.1415,78.75,77.551,91.8367,13.4923,2.0757 Greater Manchester ICB,P86609,The Dale Medical Practice,2550.495868,6.3389,50,58.0645,0.8758,55.5556,65.625,1.9905,86.6667,2.4739,1.035,0.2787,0.9896,48.8106,13.5584,9.594,73.7327,95.8333,1.2341,1.4331,24.409,0.1727,83.7762,98.2759,86,92,13.8172,1.035 Greater Manchester ICB,P86614,Dr A Hamid,4667.25661,8.4712,60.5634,65.3846,1.2215,74.6988,88.6792,3.0228,95.082,3.6518,0.3106,0.3106,0.5551,49.1425,16.0903,10.9731,76.9392,96.2264,1.0145,0.9524,20.5375,0.1027,90.8754,92.3529,93.75,92.8571,13.0673,0.5797 Greater Manchester ICB,P86619,Dr Mb Ghafoor & Partners,6984.399115,6.0163,51.2821,71.4286,1.1923,76.0563,84.9315,2.8737,95.5056,4.2173,0.5044,0.1223,1.1482,48.0332,16.6953,7.5665,70.4955,82.3529,0.2904,0.9477,16.295,0.145,91.8592,90.7489,,,10.987,0.8713 Greater Manchester ICB,P86620,Windermere Surgery,3104.996466,6.6125,57.8125,58,1.844,70.8738,68.2927,2.305,90.9091,2.9155,3.1915,0.3901,3.9359,44.0448,8.4689,13.3688,42.73,67.5,0.4965,0.9575,17.9786,1.1984,88.7432,88.6793,66.6667,87.8788,25.7569,1.2766 Greater Manchester ICB,P86624,Trinity Medical Centre,4654.504045,8.806,70,74.7573,5.1883,78.8618,81.6092,3.3878,97.4359,4.056,3.2694,1.0424,1.6633,24.2588,8.3214,19.1187,74.7024,91.8519,0.3554,1.2556,16.691,1.2169,91.3689,91.6667,90.566,94.3396,15.5256,2.4876 Greater Manchester ICB,Y00726,The Hive Health Centre,5890.720454,8.0917,68.3871,66.6667,3.9761,75.9804,74.1573,2.8917,93.9394,5.7267,3.2894,0.4157,3.4649,30.9563,8.4006,16.6275,71.0127,90.7692,1.5905,0.994,13.8835,4.0601,90.6324,89.9225,87.6923,93.8462,17.9559,2.205 Greater Manchester ICB,Y02718,Birtle View Medical Practice,4684.496198,7.7482,68.3673,63.2353,2.9455,79.6296,76.3636,3.0428,85.0746,5.3613,2.9942,0.4869,5.8608,38.6671,7.6444,14.3379,70.5051,90.4255,1.0954,1.2171,20.7459,2.1867,95.5265,79.5699,90.6977,95.3488,22.5044,2.1178 Greater Manchester ICB,Y02720,The Kingsway Practice,4060.774478,6.5739,61.4035,50.9804,1.8364,65.8824,68,1.5671,77.7778,3.2361,1.4692,0.1714,4.1252,45.5003,7.4792,9.0108,76.8769,91.4286,0.7346,1.2243,19.9858,0.3745,93.2945,95.8333,87.8049,95.122,21.3274,1.1753 Greater Manchester ICB,Y02721,Kirkholt Medical Practice,5244.499174,6.8949,56.4516,53.0612,1.5341,64.7668,72.093,1.9066,96.0526,3.2869,2.2792,0.3945,3.4529,50.1132,7.9169,10.4975,63.9908,86.0465,0.6575,0.8328,20.5843,2.5791,90.0089,91.5493,88.8889,93.3333,26.7889,1.2273 Greater Manchester ICB,Y02795,Middleton Health Centre,5142.137585,6.2216,60.4651,48.4848,2.0561,68.1159,73.0159,2.3884,76.1194,3.5172,2.5338,0.4569,4.6708,37.3222,7.4392,11.9834,66.6031,90.566,0.3115,1.0384,14.6314,1.1474,88.5403,86.7347,85.4167,91.6667,21.7197,1.4746 Greater Manchester ICB,P87002,The Poplars Medical Practice,13304.24398,7.2539,71.3904,74.0602,4.1555,71.6495,76.5258,3.5322,86.4865,5.3911,2.3721,0.7186,1.9339,27.3957,8.6601,15.5052,72.3973,84.29,0.606,0.8917,16.5514,1.6201,89.4006,87.6325,76.3158,90.1316,14.0146,2.2076 Greater Manchester ICB,P87004,1 Salford Medical Practice,12102.17906,3.7178,67.4074,55.8824,1.2866,53.4694,54.0816,1.3559,71.7949,1.2582,1.2095,0.1079,2.3416,40.9609,3.4354,5.0231,69.0018,85.1852,0.1849,0.7088,9.8209,0.2402,79.9432,88.3495,75.8065,91.9355,13.8636,0.624 Greater Manchester ICB,P87008,Walkden Medical Centre,10184.34888,7.315,74.6154,73.8636,4.2442,78.5933,81.5603,3.4569,88.5714,4.4872,2.9435,0.5705,2.735,31.5683,8.432,16.4746,61.5652,80.6122,0.6731,1.0724,16.8661,0.6684,89.3411,82.1256,76.1468,90.8257,13.4568,2.0993 Greater Manchester ICB,P87015,Pendleton Medical Centre,8234.752123,4.5627,63.0252,54.6512,2.0098,47.9167,58.2278,2.4118,84.7458,2.4364,2.3671,0.3126,2.613,47.08,6.2314,9.4834,73.4317,85.2632,0.4169,0.9975,10.6109,0.1318,84.9368,93.6937,72.3077,93.8462,19.6273,1.6079 Greater Manchester ICB,P87016,The Sides Medical Practice,13393.95986,6.3855,76.9752,81.4465,5.0229,79.6729,81.25,3.2084,95.5752,4.581,1.4456,0.6933,1.6006,14.055,6.7893,18.7491,68.5347,82.0771,0.5827,0.6269,12.6943,0.8362,88.9343,83.0189,84.058,92.7536,6.8962,2.4266 Greater Manchester ICB,P87017,The Limes Medical Practice,6076.335782,7.8049,69.7143,73.2283,4.8338,71.6049,72,4.0685,79.5918,5.5473,3.5045,0.8459,1.5174,30.7167,9.0775,18.6908,65.7253,87.2483,0.6244,0.6445,17.3881,0.9519,90.3226,85.7143,80,90.7692,14.0829,2.1954 Greater Manchester ICB,P87019,Silverdale Medical Practice,15385.14146,5.8595,67.7249,68.4,3.3313,68.9278,67.9426,3.5013,76.8,3.9166,3.339,0.5024,1.8898,32.759,9.2031,15.3347,61.5679,80.7229,0.5642,1.1748,16.4692,0.3654,86.6766,88.6435,67.5824,86.8132,18.7488,2.0096 Greater Manchester ICB,P87020,St Andrews Medical Centre,18673.79685,7.4471,70.989,55.9486,2.8751,71.9735,77.551,3.2149,92.3077,4.3095,2.8122,0.4341,3.067,34.7289,7.9493,13.2809,85.2626,92.9412,0.6606,1.252,15.6103,0.0753,86.718,87.1149,91.0526,92.1053,19.6898,1.9818 Greater Manchester ICB,P87022,Mocha Parade Medical Practice,2802.7225,6.1469,56.1644,62.7907,4.4682,53.0303,61.1111,5.051,50,1.8508,4.6139,0.3885,5.4945,45.3046,8.8889,16.9014,52.1886,74.5098,0.2428,1.1656,12.782,0.2418,84.5455,94.7368,75.8621,93.1034,22.2916,2.4284 Greater Manchester ICB,P87024,3 Springfield House Medical Practice,13871.55379,7.1764,63.9576,47.4747,3.0129,64.1469,66.2722,2.7255,87.8571,3.8526,2.83,0.3744,4.4333,38.6656,8.4381,13.2445,79.8926,89.9083,0.7837,1.3236,19.8213,0.3631,88.7207,88.3817,71.5278,94.4444,23.3559,1.7851 Greater Manchester ICB,P87025,The Lakes Medical Practice,10657.02203,6.9082,71.2121,74.8691,3.2112,66.3366,71.6049,2.8763,92.9204,3.6698,1.7435,0.4827,2.5524,28.5886,8.3073,15.2285,72.5954,81.3559,0.6501,0.9456,16.1397,1.6093,84.9803,88.9868,62.2951,92.623,15.8326,1.9208 Greater Manchester ICB,P87026,Newbury Green Medical Practice,15759.00971,5.7224,58.5714,56.4767,2.6262,51.6667,60.6936,2.186,58.7912,4.6222,2.5427,0.3795,1.7384,43.8055,7.7712,13.5408,63.07,85.4626,0.6376,1.2372,14.705,0.471,84.4481,87.6712,83.5616,92.4658,19.4843,1.4649 Greater Manchester ICB,P87027,Langworthy Medical Practice,18488.30305,4.994,58.3658,62.7219,1.4655,45.8571,63.8889,1.7859,88.0952,1.1979,2.2376,0.2364,3.4342,43.7535,3.9192,7.6741,62.0204,85.3261,0.3782,1.2029,8.8452,2.4266,72.7363,92.1569,65.625,85.9375,17.6837,1.1713 Greater Manchester ICB,P87028,The Gill Medical Practice,10839.84876,7.5165,69.9187,72.9282,3.5692,75.4617,78.5235,3.7157,94.9153,5.4195,2.8051,0.4919,2.4771,33.3731,8.7027,17.9611,72.3571,87.9747,0.5966,0.9839,21.8284,4.7315,92.1053,86.8313,68.0328,91.8033,16.9325,2.69 Greater Manchester ICB,P87032,Orient Road Medical Practice,6411.712902,5.9294,71.2821,71.6418,3.9572,67.9426,75.4717,2.9212,83.8235,4.9608,2.9382,0.7982,2.968,26.888,8.3508,14.5211,73.9706,85.7143,0.3057,0.7643,15.5607,0.3705,89.0953,84.2105,82.1918,95.8904,11.8648,1.9361 Greater Manchester ICB,P87035,Ordsall Health Surgery,11074.49104,4.6137,63.0952,48.1481,1.9255,57.9245,57.8125,1.8631,90.625,1.6027,2.0503,0.2496,2.4873,35.5577,5.0253,8.9588,70.1226,79.6296,0.3387,1.0786,12.7068,1.6667,86.7358,89.2086,86.0465,93.0233,17.5788,0.9806 Greater Manchester ICB,P87040,Sorrel Bank Medical Practice,11407.32796,7.2323,67.9054,67.1642,3.3413,65.9722,73.5849,4.7619,80.6818,3.0717,4.421,0.5342,3.6776,35.9628,7.7819,13.1265,67.6874,83.1731,0.6023,1.2842,14.33,0.1782,88.7109,87.1508,90.1961,96.0784,18.9098,2.4094 Greater Manchester ICB,P87610,The Mosslands Medical Practice,14201.56603,7.3909,70.2128,74.2754,3.8655,72.1839,76.087,3.5562,87.069,4.9418,3.1929,0.5334,2.1975,26.8852,9.5429,16.4901,76.7559,89.0856,0.3247,0.9509,17.5599,0.5716,89.8482,87.1951,89.3855,96.0894,17.7275,2.3889 Greater Manchester ICB,P87613,Cleggs Lane Medical Practice,5314.913201,5.4563,60,58.0645,2.1594,76.8362,68.5185,1.8255,71.875,1.9133,2.6046,0.4007,2.1365,52.078,9.0169,10.4853,74.0291,93.2203,0.423,0.846,20.0574,0,90.9551,93.6508,88.8889,90.7407,21.9255,1.1131 Greater Manchester ICB,P87620,1 Monton Medical Practice,10230.76253,6.1009,66.2222,57.5,3.7603,77.0667,73.3333,2.9377,87.037,3.235,2.6066,0.4059,3.1399,29.7134,7.2023,11.7616,58.9714,73.4513,0.5448,0.9828,12.3148,0.1318,85.6717,86.7816,77.0833,87.5,14.9838,1.6772 Greater Manchester ICB,P87624,Ellenbrook Medical Centre,4791.588687,7.7352,81.8182,80.9524,3.6501,81.25,79.1667,3.055,88.6793,4.9707,1.5076,0.5158,2.3197,14.4421,6.9235,14.3622,72.6368,87.6033,0.615,0.4364,12.0316,0.2042,91.7149,74.7253,76.4706,94.1176,6.2059,1.6267 Greater Manchester ICB,P87625,Dearden Avenue Medical Practice,3232.660437,9.219,64.1791,67.9245,2.7229,74.4681,75,2.5737,81.25,4.8706,4.2521,0.2984,1.7758,50.8809,9.6919,11.8986,74.5645,90.625,0.4849,1.0817,21.5119,0.2564,92.2742,88,92.1053,97.3684,26.4911,1.8277 Greater Manchester ICB,P87627,Orchard Medical Practice,2998.525176,6.3101,78.5047,79.7297,3.6665,77.9661,82.2581,2.7499,93.1818,4.0438,2.0994,0.4435,1.5873,15.5898,7.1747,16.3808,75.5319,91.6667,0.2366,0.6505,15.2683,0.0792,91.5711,86.6667,86.1111,94.4444,9.2056,1.7741 Greater Manchester ICB,P87630,Cherry Medical Practice,3885.980068,6.4,67.9012,64.0625,3.1479,78.0702,80,3.0843,93.1818,5.2838,4.07,0.4134,1.7467,50.5626,10.906,14.2448,81.5461,87.234,1.3037,0.9221,24.9345,0.3315,95.5323,94.2529,89.3617,97.8723,32.5044,1.6534 Greater Manchester ICB,P87634,Clarendon Surgery,13113.40974,6.4371,62.4413,61.745,2.6796,56.6667,56.25,3.1213,86.0465,2.6875,3.4845,0.373,3.2993,47.3847,7.1615,11.0424,75.6073,89.781,0.3632,1.7079,13.8692,0.8105,89.6128,85.8757,61.1111,88.8889,20.2796,1.7668 Greater Manchester ICB,P87639,Cornerstone Medical Practice,4387.913148,4.7317,60.8108,54,1.3768,61,64.2857,2.2487,82.0513,2.3407,2.5012,0.2754,3.7225,44.1697,5.5401,7.9165,70.5502,83.3333,0.2295,0.7802,11.9853,0.7762,84.9409,91.5254,83.7838,91.8919,22.6345,1.1014 Greater Manchester ICB,P87648,Dr Davis's Medical Practice,4819.111411,1.5154,50,63.3333,0.6165,36.0947,60,0.4624,34.0909,1.4419,0.1695,0.1541,0.8111,34.201,3.5386,3.8533,69.3396,86.8421,0.3545,0.7706,9.6125,0,85.3688,94.1177,81.8182,95.4545,4.4808,0.3853 Greater Manchester ICB,P87649,Chapel Group Medical Centre,6888.634582,5.7525,72.6316,57.2464,3.6244,68.2243,71.028,3.6088,91.7808,6.0683,2.6715,0.6093,2.8083,27.7232,9.1579,15.3101,75.8534,87.8307,0.4218,0.8592,17.8123,0.5396,87.2535,90,81.1765,94.1176,17.8087,2.2809 Greater Manchester ICB,P87651,Limefield Road Medical Practice,3841.133191,1.8527,54.3478,60,1.5478,48.7805,70,0.8292,25.1748,1.6685,0.0737,0.1106,1.2236,32.5566,4.0656,4.9383,69.4915,84.375,0.6265,0.8108,9.01,0.1658,85.4271,65.5172,71.4286,90.4762,3.6639,0.3317 Greater Manchester ICB,P87654,3 Lower Broughton Medical Practice,14906.59019,5.1318,57.3077,56.4706,2.2192,51.3742,59.8639,2.6819,60.8108,2.4907,3.393,0.2742,2.7966,48.9045,7.2997,11.49,69.1723,82.8026,0.4284,1.2681,12.7485,0.1323,80.2649,88.0531,83.3333,94.4444,22.7875,1.568 Greater Manchester ICB,P87657,(Irlam) Salford Care Ctrs Medical Practi,4690.318419,8.2569,66.9725,57.3034,3.1829,74.2424,77.1429,3.4177,100,5.005,4.096,0.4696,4.1432,26.4723,9.7458,16.3058,80.6262,93.8597,0.4174,0.887,21.5446,0.5618,90.6764,88.2979,92.8571,98.2143,21.5643,2.2176 Greater Manchester ICB,P87658,The Willows Medical Practice,3880.181576,4.5752,64.7887,66,2.3237,59.2105,73.6842,2.1577,95.7447,5.2428,2.6279,0.4149,1.6186,39.9657,6.0333,10.4564,71.1539,87.8788,0.6639,0.9129,12.1042,0.3542,87.6415,92.0635,75.7576,93.9394,18.5724,1.3001 Greater Manchester ICB,P87661,Manchester Road East Medical Practice,2586.911752,6.3448,63.8298,63.8889,2.2862,76.1905,72.7273,2.0745,62.069,4.1342,2.4132,0.2117,1.438,47.0424,8.8563,12.8705,83.0258,87.8788,0.6351,1.0161,17.5554,0.4934,93.8942,91.6667,89.6552,100,25.4948,0.9314 Greater Manchester ICB,Y00445,Salford Primary Care Together,23209.36242,5.6488,56.7123,50.1916,1.8363,54.8593,60.4255,2.4235,75.2066,2.5735,2.7121,0.2638,3.5736,47.3148,7.876,10.112,64.525,81.0427,0.4578,1.5078,12.9275,0.1716,78.3807,89.2046,82.7434,91.5929,23.2945,1.5427 Greater Manchester ICB,Y02622,Blackfriars,11105.68154,3.3982,54.8387,47.9167,0.579,57.5274,46.9388,0.3062,74.4681,0.2506,0.1797,0.0133,2.6344,27.9213,1.2645,1.8303,71.1111,80,0.0532,0.5258,3.1355,0,63.4659,100,58.3333,87.5,14.3879,0.1997 Greater Manchester ICB,Y02625,Care Homes Medical Practice,6893.199243,9.2282,21.9512,25,11.2416,100,42.8571,19.547,,24.245,14.094,62.7517,1.2584,37.5691,23.7416,52.7685,73.4043,89.7959,2.6846,8.7248,17.1141,3.9831,99.7494,56.6265,80.7018,92.9825,7.3555,22.2315 Greater Manchester ICB,Y02767,The Height General Practice,6210.362534,4.405,64.9485,61.5385,1.3665,64.8208,68.4932,1.5217,85.2632,2.1281,1.382,0.2329,4.6074,30.0261,4.7977,8.2143,71.6776,85.7143,0.4658,1.0248,10.6818,0.0762,84.8999,88.8889,54.7619,83.3333,17.7083,0.9627 Greater Manchester ICB,P88002,Marple Bridge Surgery,6047.615121,7.9826,81.1808,87.1508,6.7896,85.0932,86.4662,3.8321,89.7959,3.9807,1.3516,1.2244,1.6812,9.0282,5.748,19.0491,82.4719,92.5325,0.2703,0.5088,9.2367,1.7078,91.1607,84.4037,96.3636,98.1818,5.3021,2.9575 Greater Manchester ICB,P88003,Manor Medical Practice,12185.62378,8.8976,70.297,77.2277,3.9207,74.3363,75.6579,4.3764,95.098,3.8412,3.4121,1.1868,3.4896,33.4188,8.9985,17.4314,68.8923,84.0979,0.7418,1.3246,15.1823,0.3893,95.7088,80.9717,84.375,94.5313,16.1595,2.8823 Greater Manchester ICB,P88005,Family Surgery_P88005,12699.61974,6.9346,68.1034,58.7302,3.082,72.4138,75.4808,3.6101,82.4074,3.237,2.8396,0.7012,2.1725,28.8621,7.9713,15.1848,63.8298,84.593,0.2597,0.909,15.881,0.4479,86.3802,90.1186,86.1314,92.7007,18.0528,2.0518 Greater Manchester ICB,P88006,Marple Cottage Surgery,11358.57589,7.5461,80.0995,82.8996,4.5189,90.2941,87.3786,3.3869,93.578,3.9987,2.0124,1.7249,0.9745,15.1078,6.5532,20.0791,76.1851,90.2808,0.4402,0.8714,15.625,1.024,93.4775,85.6436,89.6226,92.4528,9.528,2.4886 Greater Manchester ICB,P88007,Cheadle Hulme Medical Group,12722.13392,6.5529,76.3326,77.9553,3.8632,78.3664,79.3103,3.2792,96.8992,1.993,1.0907,0.8515,1.5015,9.6471,6.9321,15.2769,69.3069,75.3153,0.2815,0.6544,7.9006,1.4532,79.9163,83.6449,86.5248,95.0355,7.3507,2.2307 Greater Manchester ICB,P88008,Heaton Mersey Medical Practice,7440.645931,9.0829,73.3577,69.7917,4.4654,78.5467,81.4103,3.0364,93.5065,2.9249,1.4765,0.8454,1.5072,14.1915,6.3548,12.7173,73.5732,83.9695,0.4763,1.0717,8.163,1.3241,89.3174,83.3333,83.75,90,8.6214,1.81 Greater Manchester ICB,P88009,Woodley Village Surgery,3442.436537,6.4854,72.8972,73.8462,3.5272,77.8846,74.5455,3.651,92.8571,2.5437,1.4542,0.3713,0.5695,24.1585,6.1308,16.3057,73.5803,77.0492,0.6807,0.3404,8.8459,0.8436,80.3908,87.6923,80.6452,87.0968,11.9445,1.9802 Greater Manchester ICB,P88011,Heaton Norris Medical Practice,13806.08765,6.0618,64.723,59.6413,4.1224,69.589,72.6776,3.6894,94.7368,3.7163,3.5388,0.7435,2.9074,37.0956,8.8127,14.3718,60.0962,74.9104,0.7812,1.5529,15.8617,2.241,88.1556,85.6,66.9118,86.7647,21.3473,2.2777 Greater Manchester ICB,P88012,Beech House Medical Pract,8700.683852,7.1362,78.2759,83.4197,5.4426,81.3043,83.5616,4.6723,96.9697,5.0531,2.4119,1.288,1.5714,12.816,7.9587,18.7903,73.8274,87.2038,0.4925,0.8587,9.6287,1.0867,90.9643,82.5397,91.3043,95.6522,9.3385,2.8539 Greater Manchester ICB,P88013,Caritas General Practice Partnership,14056.68435,6.9653,71.8004,79.0476,4.8355,74.8744,76.1905,3.534,93.0233,4.3742,2.6662,1.2148,1.4091,22.8632,8.5654,16.8731,64.9884,81.9951,0.6153,0.8362,12.692,2.6847,86.6468,85.0365,84.375,91.875,13.9483,2.4217 Greater Manchester ICB,P88014,Adshall Road Medical Prac,5620.644242,8.5393,71.6981,71.4286,4.0308,79.6178,77.0833,3.7399,86.3636,3.6769,3.1166,0.8103,1.9161,26.7578,8.975,15.749,75.1656,86.3636,0.4987,1.2259,16.5199,0.675,89.6069,89.6226,79.1045,95.5224,16.6709,2.1193 Greater Manchester ICB,P88015,Bramhall Health Centre,11351.14032,6.1302,80.0926,80.8874,5.9671,78.9634,81.8565,4.1215,98.7654,4.3491,1.2331,1.2249,1.7778,5.8069,6.2785,18.5053,74.2782,86.0955,0.2979,0.7117,11.1892,3.8567,88.8788,85.1163,81.982,93.6937,5.2774,3.1284 Greater Manchester ICB,P88016,Bramhall & Shaw Heath Medical Group,15127.56799,7.1789,71.7647,67.3203,4.0729,68.913,75.0943,3.6606,90.6542,2.8585,1.9243,0.8247,2.1072,22.5091,7.8815,14.295,73.7909,83.8565,0.8681,0.9911,13.2203,2.209,87.1884,85.5513,83.9744,91.0256,14.1077,1.9677 Greater Manchester ICB,P88017,Chadsfield Medical Practice,8184.30851,7.6777,74.2188,79.7619,5.5914,83.9779,81.6794,4.8718,96.2963,5.2269,2.9831,1.3341,2.2323,19.2188,8.8415,20.4167,79.2,93.6464,0.5247,0.9144,13.6298,0.555,90.3081,85.9375,92.3913,96.7391,9.4892,2.9831 Greater Manchester ICB,P88018,Park View Group Practice,10797.79357,7.6112,68.4783,58.4541,3.1439,73.9241,77.3006,2.9492,85.4701,2.7778,2.4917,0.5451,1.7518,28.965,8.5545,15.5538,66.4157,80.7407,0.8663,0.7592,15.0776,1.7624,91.8184,83.1776,64.1667,90.8333,16.8077,1.7325 Greater Manchester ICB,P88019,Alvanley Family Practice,6383.214301,6.7267,74.0506,71.0526,4.0219,77.8325,74.2574,3.594,79.4521,4.0573,2.396,1.4034,3.0871,26.5814,7.9148,16.8236,59.3711,75.5319,0.5648,0.8044,10.6285,0.8193,89.5149,87.0504,76.1194,89.5522,13.6559,2.3447 Greater Manchester ICB,P88020,Cheadle Medical Practice,11924.91255,7.4403,71.2291,75.3086,4.3587,71.1055,72.2222,3.6437,96.2264,2.8553,1.6194,1.0423,2.1523,18.3128,7.7087,17.0988,63.1169,80.2247,0.6547,1.0165,9.5068,1.3523,88.8261,83.6066,68.8889,88.1481,10.0997,2.5411 Greater Manchester ICB,P88021,Marple Medical Practice,7756.429798,7.9799,76.7442,79.7546,4.7323,79.2929,77.3438,4.4428,93.3333,4.1888,2.1129,0.9986,1.679,14.6541,6.8622,17.4964,76.2887,86.0119,0.6223,0.9696,11.93,0.9239,89.7079,83.1169,88.5714,88.5714,9.41,3.4732 Greater Manchester ICB,P88023,Heald Green Health Centre 2,7059.227189,6.5564,75,71.0938,4.1318,69.4215,77.3585,3.6102,91.25,3.9713,1.455,1.0844,1.9227,15.3061,10.0142,16.6918,69.3878,83.5088,0.4255,0.8373,14.2857,0.9649,91.2269,88.587,87.037,89.8148,9.9031,2.1963 Greater Manchester ICB,P88024,Gatley Medical Centre,9642.212494,7.6882,77.492,75.4545,4.5638,77.7108,83.0409,3.5332,87.5,3.0965,1.0305,0.8931,1.8782,12.9851,8.6179,15.1143,73.5702,83.6788,0.373,0.7557,10.4442,0.891,90.3337,89.6104,85.2713,92.2481,7.8537,2.1494 Greater Manchester ICB,P88025,Hulme Hall Medical Group,9978.235203,6.4488,76.6234,78.2609,4.5662,76.7296,79.6117,3.4502,97.2222,3.569,1.4694,1.023,0.8575,11.2897,7.1567,15.0377,74.9796,86.0406,0.5952,0.7533,12.0278,1.0581,88.6522,86.8545,88.3929,94.6429,8.6619,2.1668 Greater Manchester ICB,P88026,Heaton Moor Medical Group,52823.79159,7.302,71.475,65.625,3.7108,77.1314,77.9082,2.9135,94.3089,3.3576,1.8887,0.7436,2.3624,21.0132,6.581,13.5907,72.0113,82.0283,0.5735,1.084,10.6011,1.1455,85.7436,87.171,74.6032,91.6667,13.9241,1.8221 Greater Manchester ICB,P88031,Bracondale Medical Centre,5678.846574,8.5633,77.9141,74.8148,3.5973,81.6038,83.1858,2.645,92.3077,3.1725,1.9926,0.4937,1.6303,19.6454,6.7881,16.4169,55.8018,78.6585,0.723,0.7935,12.7341,0.8596,90.9239,83.5165,78.1818,94.5455,9.4923,1.8339 Greater Manchester ICB,P88041,The Village Surgery,6540.731171,6.0292,82.4219,82.1839,4.4132,81.5094,81.8182,2.9216,94.4444,1.312,1.0602,0.9122,0.768,5.5917,4.7769,13.3753,65.6171,79.7251,0.1849,0.6657,7.488,0.5912,88.3777,83.7838,78.8462,92.3077,5.0837,1.8984 Greater Manchester ICB,P88042,Finney Lane Surgery,7276.921855,6.9123,76.2136,72.9927,4.8095,71.3004,79.8077,3.8976,83.1169,4.3279,1.8679,1.3237,2.8789,15.4587,10.2569,16.1053,61.0341,72.8477,0.6177,0.956,15.6149,1.5721,89.0443,81.7647,85.8586,93.9394,8.7729,2.3533 Greater Manchester ICB,P88043,Brinnington Surgery,14819.43261,9.0176,58.3333,65.8228,3.2333,80.4035,82.3529,3.508,92.0863,3.0551,4.0681,2.2295,3.7292,62.1459,9.5533,16.7054,68.4327,86.9369,0.9615,1.5321,21.3282,2.9251,90.715,84.141,89.6,93.6,27.7352,2.4197 Greater Manchester ICB,P88044,Bredbury Medical Centre,5252.124328,7.1269,76.087,70.6522,3.9286,78.3951,77.1084,3.8866,97.8723,4.1991,2.1429,0.8193,2.9549,27.7386,9,17.605,71.4919,85.0932,0.5252,0.8193,15.9409,1.6411,92.2529,88,86.1538,96.9231,16.2017,2.0378 Greater Manchester ICB,P88606,Springfield Surgery,5906.161438,6.2628,73.2484,77.2727,3.8468,77.8302,84.2697,3.431,93.3333,4.913,2.4259,1.2996,1.6524,17.0614,8.034,15.266,80.3681,89.083,0.3812,0.8317,18.0657,1.4198,95.4996,73.913,80,93.8462,11.6255,2.7205 Greater Manchester ICB,P88615,Vernon Park Surgery,3926.515615,5.8203,60.5769,66.1538,2.9982,69.9029,80,3.4222,91.6667,3.9238,1.9382,0.4543,1.5695,39.8831,10.5999,15.2635,74.7153,87.6923,0.9994,1.0297,14.1629,0.1619,92.4273,84.8837,89.0909,98.1818,20.2851,1.6959 Greater Manchester ICB,P88623,High Lane Medical Centre,7253.508175,7.8003,76.9492,77.2487,5.2862,79.5812,79.6053,3.7074,96.2264,2.1849,1.7339,0.6625,0.8908,9.7914,6.8427,17.2822,70.4494,82.4405,0.3806,0.6484,6.4538,0.2506,89.475,75.4237,83.7838,95.9459,7.2852,2.5374 Greater Manchester ICB,P88625,Archwood Medical Practice,9036.521563,7.405,73.0769,76.3819,4.6944,80.3419,77.3585,4.0744,96.4912,3.9913,2.7964,1.1641,2.7644,23.0861,8.2696,17.6136,74.2555,85.4701,0.4429,0.987,15.2353,0.8508,91.0579,84.9462,87.3684,90.5263,13.8648,2.3662 Greater Manchester ICB,P88632,Stockport Medical Group,19383.94553,8.0345,69.5,63.3441,2.7283,73.121,74.0214,2.6188,93.3014,3.2062,2.2572,0.7341,2.2599,30.7356,7.2549,13.5923,75.175,92.8994,0.63,1.3861,17.3941,0.5955,87.7481,83.1395,84.7826,93.4783,18.2854,1.9449 Greater Manchester ICB,P89002,The Brooke Surgery,19956.23957,8.3391,69.8113,59.4164,3.307,71.8085,73.0519,3.4735,66.6667,2.4422,2.5017,1.0845,4.3041,30.693,7.8392,14.8548,47.3263,70.6633,0.9341,1.1167,13.4588,2.484,84.7355,86.612,55.914,85.4839,18.0566,1.7663 Greater Manchester ICB,P89003,Albion Medical Practice,12343.46792,7.2386,68.3616,59.3074,3.6895,63.2075,70.0599,4.2339,84.9462,2.7774,2.6915,0.9476,3.3608,36.3299,10.0588,18.1149,61.9208,81.1688,0.7762,0.8569,13.8745,0.3755,88.8914,91.7647,82.5688,90.8257,16.765,1.8952 Greater Manchester ICB,P89004,Awburn House Medical Practice,7270.593547,6.3363,78.4247,73.5135,5.4803,81.8182,81.1594,5.0911,90.6977,3.3396,2.6467,0.8407,2.5746,25.7381,7.8836,17.2194,68.5811,82.5688,0.4048,0.794,14.7015,0.1563,91.1181,81.8841,89.0411,94.5205,12.0346,2.6779 Greater Manchester ICB,P89005,Lockside Medical Centre,8670.274107,8.6912,75.4098,79.096,3.7219,77.7003,76.6234,3.4945,95.122,3.8587,2.0464,0.9335,1.5871,27.0721,7.8959,17.8554,75.3635,90.1575,0.5744,0.5984,13.241,2.2395,91.1117,89.0173,88.172,95.6989,13.3234,1.9148 Greater Manchester ICB,P89007,Staveleigh Medical Centre,8293.07163,7.9253,68.8034,76.3514,3.3854,76.4228,80.6723,3.9105,90.9091,3.1029,2.805,0.9534,0.1034,30.2073,8.5081,18.4469,81.7685,92.0168,0.7047,0.7876,19.7725,1.4447,90.2272,87.3494,86.6667,97.7778,18.3596,1.9621 Greater Manchester ICB,P89008,Ashton Medical Group,21674.89228,6.2942,62.5926,53.1915,3.3886,58.4838,65.3595,3.4629,88.2759,3.6984,2.9257,0.6629,1.9349,36.4147,9.2865,16.5257,54.1988,72.9391,0.9371,0.9886,8.989,1.062,79.2381,89.9767,75.7576,86.1472,18.1033,1.9314 Greater Manchester ICB,P89010,Medlock Vale Medical Practice,8650.456463,6.3892,69.8305,64.8241,4.6799,72.7273,72.619,3.5888,94.2029,4.5072,2.971,0.6047,1.1268,26.6622,9.1691,18.7853,64.685,79.4702,0.4864,0.8282,14.5374,0.0868,89.0601,85.2217,55.5556,88.8889,12.313,2.3794 Greater Manchester ICB,P89011,Gordon Street Medical Centre,5712.350008,7.5598,63.6364,55.0562,2.7728,52.9412,65.3333,3.7503,72.549,3.3573,2.8127,0.4189,1.8918,39.9208,11.5767,13.7044,49.4038,75,0.8179,0.8378,19.3179,0.2699,88.1166,91.6667,68.6747,91.5663,17.1074,1.157 Greater Manchester ICB,P89012,Clarendon Medical Centre,8691.025428,9.4231,66.2447,67.5159,4.1063,67.2897,67.6692,4.7667,72.4138,4.864,4.4365,1.1486,4.0713,33.2186,9.2776,18.191,59.801,80.916,0.962,1.4645,16.4655,0.8669,89.3406,83.9196,55.4348,86.9565,19.5459,2.4982 Greater Manchester ICB,P89013,Hattersley Group Practice,6200.276531,8.4882,55.6338,53.4653,2.3038,70.8333,69.1358,3.729,85.1852,2.1322,4.139,0.5076,4.371,55.3472,8.9412,16.4779,60.989,80.1724,0.82,1.1714,12.0203,0.1812,86.3,91.5888,68.4211,82.4561,26.8263,2.1476 Greater Manchester ICB,P89014,Haughton Thornley Medical Centres,14619.00477,8.031,69.697,71.0938,3.6376,67.3423,72.5962,3.5438,73.9726,4.2456,2.9805,0.9857,2.2292,32.6661,9.8238,16.1856,66.152,81.2987,0.7901,1.1656,19.4447,0.6267,90.8419,85.7988,83.5443,93.038,18.3855,2.0731 Greater Manchester ICB,P89015,Millgate Healthcare Partnership,23883.03578,7.3491,71.6954,67.551,4.1826,71.3615,71.2195,4.2266,90,2.9969,3.0085,0.6311,2.0562,27.7221,8.317,16.2851,61.1347,71.2737,0.6653,0.8414,12.6387,0.6273,89.1061,85.439,81.1715,84.5188,15.7283,2.6661 Greater Manchester ICB,P89016,Donneybrook Medical Centre,10144.09892,8.8926,65.8088,62.5,4.5032,68.254,73.5294,4.2829,79.7101,3.8338,4.1116,0.7954,2.0856,32.6522,12.8174,20.6192,65.8482,81.2317,0.8199,1.2849,14.0469,0.9001,87.06,88.5496,76.5823,88.6076,17.5299,2.3617 Greater Manchester ICB,P89018,Denton Medical Practice,9699.566819,8.1884,63.6735,57.485,4.1585,65.6151,68.5714,3.7553,84.466,3.9144,3.0987,0.7718,2.9468,31.1791,8.3839,17.3597,68.155,85.9375,0.7488,0.7372,17.9299,0.9456,90.1828,89.7674,85.5769,93.2692,18.4477,2.3039 Greater Manchester ICB,P89020,HT Practice,9861.620297,5.6273,57.8059,57.5342,2.8839,65.3061,65.5738,3.5796,87.8049,4.0503,3.3898,0.8475,1.5209,38.8514,11.501,15.6463,56.9405,71.9101,0.5818,0.8601,10.448,0.0729,83.5077,89.4009,58.3333,83.3333,18.3949,1.6949 Greater Manchester ICB,P89021,Dukinfield Medical Practice,12759.13127,8.0425,73.0659,76.7932,4.1898,73.0978,75.5319,4.1352,93.0435,4.1244,3.1719,1.2906,2.2137,30.9496,9.2172,18.7676,69.4378,87.5318,0.8543,0.6907,15.4608,0.3803,90.8978,85.1351,88.3721,92.2481,17.4542,2.363 Greater Manchester ICB,P89022,King Street Medical Centre,3950.730158,5.9273,61,63.2353,3.4652,67.5676,66.6667,4.1871,87.8788,3.4896,3.3208,1.0107,2.1447,37.9631,8.1033,15.8244,57.4737,76.7123,0.3754,0.9241,8.3242,0.3937,80.2721,92.5926,,,22.6928,2.0214 Greater Manchester ICB,P89023,St Andrew's House Surgery,6835.282057,6.6856,72.8205,73.8806,4.4377,70.0565,71.2963,4.276,86.6667,4.5374,3.8448,0.6647,1.7181,29.9902,7.3139,19.3856,62.71,81.7204,0.6288,1.0061,14.2291,1.1102,90.2957,88.3721,66.129,96.7742,17.7729,2.8746 Greater Manchester ICB,P89025,Town Hall Surgery,3520.315975,6.9638,69,63.0137,3.548,68.0851,67.1875,3.9093,73.0769,2.6951,3.1538,0.6899,2.1319,34.5978,9.0476,19.9409,62.3782,79.7872,0.9198,1.0513,13.3548,1.0492,90.4422,85.4839,78.9474,86.8421,17.123,1.5112 Greater Manchester ICB,P89026,Grosvenor Medical Centre,7311.773642,9.3847,68.6364,69.5364,4.584,73.9535,74.3802,3.9821,82.0896,2.995,3.4265,0.9106,1.9458,29.667,9.2652,19.2777,75.9384,84.7619,0.9415,0.9261,11.9039,0.7713,90.8497,90.5882,87.9518,90.3614,18.0373,2.0991 Greater Manchester ICB,P89029,Market Street Medical Practice,7127.923078,4.8951,68.1159,60.9589,3.1836,61.9048,70.1613,3.4605,92.8571,2.5957,3.0914,0.6306,2.1599,29.7837,9.4739,20.2246,62.8205,95.9641,1.4611,0.9843,13.2247,0.3722,85.7042,81.3665,57.6087,90.2174,14.4354,1.9379 Greater Manchester ICB,P89030,West End Medical Centre,5078.829565,6.9949,60.4478,58.4416,3.3265,62.6087,67.2131,5.3736,84.8485,4.462,3.8383,0.6909,1.1392,40.1995,11.5888,17.5537,65.1877,81,0.7421,1.1259,9.9051,0,78.7764,87.5912,61.9048,93.6508,18.9214,2.0215 Greater Manchester ICB,P89602,The Smithy Surgery,3999.592287,8.7086,71.519,75.6757,4.4019,75.4545,71.7647,3.8063,94.1177,4.1283,2.6152,0.5697,2.5405,22.0357,6.8395,17.7369,54.9372,74.2188,0.725,0.4143,11.1782,0.6183,88.2883,86.5854,70.9677,83.871,13.435,2.7447 Greater Manchester ICB,P89609,Stamford House,5575.489705,6.4129,61.6541,55.5556,2.7804,69.697,72.8395,3.009,93.0556,2.6745,2.9518,0.2285,3.515,39.163,9.9474,16.4731,68.7335,83.1776,0.7808,0.9332,12.6083,0.2516,92.9704,90.2655,85.3333,94.6667,18.8527,1.295 Greater Manchester ICB,P89612,Mossley Medical Practice,2110.76266,8.3686,72.0588,78.4314,4.2705,79.2208,84.4444,2.669,100,2.2272,2.5356,0.2224,3.3964,22.8435,6.6265,17.5267,55.814,78,0.6228,0.5338,17.1492,0.4667,87.8312,82.3529,66.6667,95.2381,17.6408,1.8683 Greater Manchester ICB,P89613,Waterloo Medical Centre,3608.07094,6.931,66.3158,58.4615,2.6308,75.2137,78.4314,3.1333,94.9153,3.7305,2.0101,0.2956,4.8536,32.3461,10.1928,15.8439,75.4967,89.1566,0.5616,0.5025,13.6783,0.2783,90.981,92.8571,88,96,16.3855,1.5075 Greater Manchester ICB,P89618,Pike Medical Practice,2734.570955,9.3349,71.5909,58.0645,2.7941,81,73.4694,3.7868,77.7778,1.934,2.8309,0.6618,2.0755,26.7392,7.9328,14.7794,75.3582,88.6793,0.625,1.0662,10.7076,0.101,91.1713,90.625,86.6667,93.3333,17.5553,1.9853 Greater Manchester ICB,Y02586,Ashton GP Service,5442.021545,6.5452,51.7241,48,1.0921,61.2245,77.0833,2.0985,80.2198,1.7549,1.3705,0.5353,2.9557,49.439,8.6327,8.8651,58.0053,75.7576,0.8779,1.0278,14.0086,0.3559,89.4546,88.1579,84.6154,92.3077,21.2895,0.8994 Greater Manchester ICB,Y02663,Droylsden Medical Practice,4192.037977,6.25,72,62.3377,2.3002,71.4286,78.3333,2.118,79.4118,2.2107,1.9813,0.6832,3.251,28.819,6.7409,13.0039,50.1006,83.7838,0.5466,0.6149,14.3043,0.6178,87.037,87.931,56.7568,83.7838,17.9519,1.4803 Greater Manchester ICB,Y02713,Guide Bridge Medical Practice,5023.534686,7.6749,72.1154,64,2.2449,72.6368,79.0323,2.7229,69.3548,2.3883,2.1617,0.4157,3.3436,31.348,7.2576,12.3051,59.3449,76.7123,0.4365,1.0185,14.8075,0.3922,87.5078,89.4737,75,85.4167,14.5178,1.2471 Greater Manchester ICB,Y02936,Millbrook Medical Practice,3101.536955,6.7914,66.6667,67.8571,2.3081,76.2238,75.9259,1.6685,79.0698,1.6871,1.307,0.5006,1.9939,26.1598,6.3558,12.5973,49.7525,89.7959,0.3893,0.9177,14.0721,0.8231,88.8519,72.093,60,86.6667,20.9457,1.2514 Greater Manchester ICB,P91003,Park Medical Practice,7103.946937,8.7367,73.617,80.1136,3.9858,77.381,80.1282,2.6572,93.8776,3.886,1.2907,0.4808,1.0848,9.0413,5.9545,14.6527,64.7587,70.0375,0.4176,0.6833,9.0026,0.5675,86.0292,78.3784,60,85.7143,9.9406,1.9486 Greater Manchester ICB,P91004,Altrincham Medical Practice,6709.132911,5.9211,73.6842,77.7778,3.4471,75.2239,82.0313,2.073,94.9367,3.2114,1.2319,0.6634,1.1888,8.1222,4.2269,10.9927,71.1888,81.2207,0.1658,0.8173,6.0985,0.6889,85.498,77.7778,77.0833,89.5833,8.948,1.3504 Greater Manchester ICB,P91006,Urmston Group Practice,14423.04669,9.4114,76.7338,71.1538,4.4553,78.7081,79.0123,3.6035,96,4.1596,2.4576,0.8896,2.1414,14.6691,7.2569,16.3136,67.4364,77.8947,0.5956,0.9423,9.3614,1.1745,89.1411,87.2612,81.1594,90.5797,11.5148,2.141 Greater Manchester ICB,P91007,Timperley Health Centre (Westwood),6133.878781,6.7462,70.2128,75.5556,3.8829,81.3725,79.1667,2.5208,94,7.3544,1.3308,0.7828,0.8261,13.5235,7.004,16.1735,76.9134,87.2881,0.7046,1.0177,7.4149,1.5409,91.984,78.4,75.3623,91.3043,10.8729,2.0667 Greater Manchester ICB,P91008,Shay Lane Medical Centre (Kelman),5559.35227,5.729,74.7863,79.1139,6.0409,71.6129,79.8387,4.0435,88.2353,5.5657,1.2829,1.0393,0.6072,6.3887,6.2984,14.6963,62.1835,78.3883,0.2923,0.9256,8.2574,1.7073,86.4603,89.9083,85.7143,91.0714,5.4614,2.4683 Greater Manchester ICB,P91009,Davyhulme Medical Centre,12462.05058,8.9138,75.122,71.3262,5.5037,73.6677,77.4775,4.7602,92.5,8.5064,2.5025,0.8886,1.688,13.0567,7.986,20.5912,67.712,83.0601,0.4534,0.9158,13.6702,2.2121,91.5302,88.3721,75.9398,90.2256,10.7992,2.9377 Greater Manchester ICB,P91011,Shay Lane Medical Centre (Patel),4626.604481,5.2243,77.7778,81.6794,5.3618,81.0127,88.9908,3.0664,97.9167,5.61,0.771,0.4205,1.1799,6.1537,5.4717,12.546,78.8955,88.0383,0.2278,0.5257,7.7248,0.2027,90.326,85.8696,93.4783,95.6522,5.1031,2.1202 Greater Manchester ICB,P91012,Primrose Surgery,8364.398115,9.4622,75.6554,70.8995,4.9571,74.0741,76.3889,3.5906,95.5224,6.6953,2.5724,1.0852,2.2263,14.9808,7.1045,19.0113,76.2943,88.3648,0.6565,0.7771,12.1537,2.5124,88.1393,81.4815,84.3373,87.9518,11.0266,2.4652 Greater Manchester ICB,P91013,Boundary House Medical Centre,12257.07909,6.4867,71.028,72.5322,3.8584,78.6241,78.7234,2.814,96.6292,2.955,2.063,0.6301,1.037,26.4186,7.2628,14.5533,63.2364,78.2609,0.5007,1.0186,13.3921,0.5685,89.4204,82.3834,86.3248,92.3077,15.0923,1.6487 Greater Manchester ICB,P91014,Washway Road Medical Centre,15443.53026,8.1048,73.3906,77.4691,4.385,75.2166,77.4306,3.1452,94.8529,5.1662,1.8383,0.9222,1.4033,10.9494,6.179,13.3627,72.0365,80.8472,0.5741,0.9283,12.5039,0.9426,82.3255,82.9932,91.5493,94.3662,9.1259,1.9726 Greater Manchester ICB,P91016,West Timperley Medical Centre,7499.864096,6.199,77.5424,78.7356,3.7475,76.2712,81.25,2.9384,91.8605,5.3753,1.9057,0.5643,2.2159,10.7399,6.2255,13.4036,67.7228,82.7309,0.4897,0.692,11.9371,0.7216,88.9704,82.1192,86.5854,92.6829,8.8349,1.7673 Greater Manchester ICB,P91017,Bodmin Road Health Centre,8824.80709,7.4899,72.5564,77.095,4.5125,76.6892,80.2817,3.228,93.5484,5.0603,2.0328,0.8265,1.5152,16.6205,6.4689,15.1011,62.6195,71.5686,0.4468,0.9606,9.5028,0.9074,82.4719,85.7143,62.5,85,11.6669,2.2116 Greater Manchester ICB,P91018,Delamere Medical Practice,14807.83618,7.1215,68.599,74.5033,3.1076,68.0284,72,2.8458,88.7417,4.3519,2.2552,0.5302,1.7391,22.7567,7.0869,13.7593,41.841,68.9655,0.4094,1.3625,10.1088,0.3715,83.8064,82.4176,65.8065,80.6452,16.2183,1.7518 Greater Manchester ICB,P91019,Partington Central Surgery,4508.55558,9.6435,61.9048,46.4789,3.8808,62.5,63.4615,4.3454,89.1304,4.4355,4.0175,0.41,3.9956,44.1384,7.8523,14.4848,46.1039,72.0588,1.0659,1.0112,11.0337,1.8456,83.9463,85,60,85,25.5967,2.405 Greater Manchester ICB,P91020,Limelight Health & Wellbeing Hub,11734.41224,6.9507,51.4423,56.5517,2.4705,64.2651,73.2824,2.8874,69.8113,5.3649,1.6267,0.6812,2.288,38.0996,10.0658,14.2538,68.5666,85.1675,0.6507,2.501,18.146,0.5072,84.7447,86.2816,86.1111,92.3611,16.652,1.6572 Greater Manchester ICB,P91021,Firsway Health Centre,15508.78835,8.3578,73,73.8506,4.7153,75.5319,78.2007,3.7697,91.0891,6.2839,2.0544,0.8022,1.9632,16.4724,6.9929,18.5091,63.9556,85.3742,0.3848,1.05,19.0159,2.9837,90.7142,87.6161,89.9371,93.7107,12.6237,2.2761 Greater Manchester ICB,P91026,Partington Family Practice,7663.837268,8.6014,64.5349,49.6063,3.8915,73.4884,70.5263,3.3102,89.0244,6.0771,4.2952,1.2433,1.3723,43.7297,8.3867,13.16,72.8943,77.7778,1.1142,1.2595,18.4491,0.6582,87.7943,86.3946,90.411,97.2603,22.6711,2.5351 Greater Manchester ICB,P91029,Flixton Road Medical Centre,12402.44335,8.0496,72.3944,72.8346,4.1584,78.3505,74.0566,3.0732,89.4231,4.0382,2.8475,0.9029,1.6175,14.7803,6.7474,14.7582,55.7604,79.8995,0.764,0.9115,13.8406,1.1944,86.9492,84.2795,79.3103,89.6552,12.027,2.3613 Greater Manchester ICB,P91035,Conway Road Medical Practice,11725.89242,7.5205,73.4637,74.8936,4.193,79.1667,80.829,2.8689,93.985,6.8606,1.5676,0.8827,1.0921,13.163,5.7958,14.002,72.7014,86.0412,0.3957,0.9664,12.6986,3.3122,88.2418,86.8996,87.7358,94.3396,9.3787,1.9633 Greater Manchester ICB,P91603,Barrington Medical Centre,6008.030662,6.2738,78.3069,77.5362,4.18,74.6032,77.6,2.4383,96.3636,5.8717,0.9057,0.5155,1.3008,9.0888,5.1755,12.8605,76.4296,88.3495,0.4459,0.8499,11.8699,0.3881,86.6188,87.037,96.2264,98.1132,8.2244,1.7556 Greater Manchester ICB,P91604,St Johns Medical Centre,14778.98396,6.126,76.5595,81.383,5.1914,77.6447,79.2169,3.3664,88.8889,3.294,1.2048,0.9213,1.469,7.2758,5.0569,13.8082,60.7533,73.8439,0.2717,0.7383,6.1866,0.7062,85.3249,81.7073,76.4228,92.6829,6.4075,1.8958 Greater Manchester ICB,P91617,Family Surgery_P91617,2150.052251,4.8701,70.1493,74.4681,2.3883,73.5294,73.1707,2.1957,84.6154,2.8571,0.7704,0.7704,0.0985,11.6533,4.2254,8.0894,74.5455,84.4444,0.1541,0.5778,6.9458,0.6158,90.4951,96.875,81.25,87.5,12.1393,1.3868 Greater Manchester ICB,P91623,Village Surgery,7171.205297,8.4334,82.7068,83.7989,5.2057,83.0435,86.3309,3.1558,96.7213,6.1301,1.6453,1.0115,1.4726,10.0803,6.2931,16.5071,60.8094,77.193,0.4046,0.7148,9.7603,0.2881,87.8189,85.8108,82.0896,91.0448,9.5292,2.1038 Greater Manchester ICB,P91627,Lostock Medical Centre,9260.976557,6.646,65.368,68.75,3.6475,70.2265,71.5232,3.3349,84.8485,4.4932,2.0959,0.9379,1.2103,23.7364,7.6706,13.9301,58.9744,75.4386,0.2432,0.9264,8.941,0.4071,86.1032,83.1395,72.6316,78.9474,15.5979,1.9685 Greater Manchester ICB,P91629,North Trafford Group Practice,15098.82666,7.7149,56.3253,50.5976,2.3587,71.9023,78.6026,2.7595,85.4305,3.3838,1.6557,0.3745,2.4495,27.3768,9.4223,13.6728,62.6179,78.777,0.3942,1.3929,15.3704,0.3808,88.6115,89.9135,92.1296,95.3704,14.4779,1.2221 Greater Manchester ICB,P91631,Riddings Family Health Centre,2854.981413,5.3231,80.4348,87.5,4.1306,79.1667,86.7925,2.5419,96.9697,7.1595,1.3287,0.6644,0.2335,8.4394,5.8576,15.078,85.5392,87.7193,0.2022,0.6355,10.0778,0.4109,93.6828,83.0189,96.2963,96.2963,5.7065,1.762 Greater Manchester ICB,P92001,Medicentre,5952.787158,9.1282,75.6345,78.8321,4.8521,75.9036,76.1468,4.2323,97.4359,7.0986,2.2136,1.1688,1.9671,19.188,9.5711,21.6398,74.7138,83.5249,0.7261,0.7438,18.2168,0.1566,86.685,78.5311,91.6667,95.2381,11.6912,2.6032 Greater Manchester ICB,P92002,Braithwaite Rd Surgery,5637.206643,5.809,73,82.1705,4.8109,76.7742,77.3196,3.9767,100,2.145,1.8623,0.7565,0.9559,15.355,8.3852,19.3986,64.8418,70.2247,0.6014,0.9893,13.6162,0.0431,90.1061,88.4615,75,92.6471,7.5987,2.2502 Greater Manchester ICB,P92003,The Dicconson Group Practice,11318.89473,7.3182,70.6452,73.1818,4.1219,67.0927,70.5202,3.6369,92.8571,5.6666,2.9623,1.5286,3.1554,29.2364,9.4688,18.9964,73.3333,85.241,0.6852,1.1491,18.4065,1.2679,90.2817,84.669,53.3784,89.1892,14.9638,2.2665 Greater Manchester ICB,P92004,Dr Tun & Partners,9007.278481,5.6223,71.1462,73.0994,4.2907,65.625,67.6923,4.4208,93.9394,3.1019,2.2884,1.0142,0.5786,26.1112,9.5708,18.4891,56.5338,79.0088,0.7021,0.8972,14.7059,0.2124,85.9592,85.7868,63.7255,83.3333,17.3248,2.0153 Greater Manchester ICB,P92005,Zaman,4940.595354,7.8098,78.1022,76.5957,4.6501,83.7398,82.8571,4.9348,81.0811,5.6687,2.1115,1.0913,1.5058,23.5128,9.4449,21.3523,81.8908,89.9329,0.4033,0.5694,21.5825,0.4374,93.0322,93.2203,71.1864,94.9153,12.5108,2.7758 Greater Manchester ICB,P92006,Dr Ahmad & Ptnrs,7764.11308,8.0806,72.7723,79.1367,4.1289,70.5882,70.0935,4.5985,96.8254,8.1021,3.1412,1.0848,1.0655,33.9036,11.9921,19.6729,74.3642,89.2241,0.8582,1.263,18.838,1.1311,90.3026,83.9662,59.6491,96.4912,17.3663,2.2992 Greater Manchester ICB,P92007,Old Henry Street Medical Centre,7869.179239,7.7218,69.6035,71.6981,3.8159,73.1707,76.0331,4.3913,87.234,4.8381,3.5887,0.9994,1.6755,33.8455,9.4903,15.748,73.7725,87.8049,0.5906,0.9843,15.9074,0.7491,89.9704,88.2051,78.2609,95.6522,20.1822,2.4379 Greater Manchester ICB,P92008,Bradshaw Medical Centre,10253.84498,9.4296,75.9322,76.2376,4.3433,77.0428,78.0645,4.9278,98.6667,8.3451,2.5441,1.1575,2.1253,25.9194,10.2952,19.9748,72.3596,85.7843,0.6647,1.0887,18.0929,3.2165,92.2847,81.4935,79.1045,94.7761,13.2341,2.7504 Greater Manchester ICB,P92010,Beech Hill Medical Practice,13440.97032,8.4023,73.6364,78.7162,4.392,73.0556,78.0269,4.3587,88.4956,5.7682,2.5835,1.1584,1.424,24.0862,9.0382,20.11,76.6818,87.3853,0.6501,1.0918,19.0589,0.83,92.4711,87.1508,63.253,96.988,11.1599,2.5085 Greater Manchester ICB,P92011,Sullivan Way Surgery,10165.84012,7.6801,70.4545,67.3575,4.1541,64.7773,70.6667,3.9915,93.3333,5.2181,2.6401,1.2638,3.749,31.9027,9.3452,18.0806,68.349,82.2464,0.9384,1.2012,16.2663,1.4178,87.6125,79.7468,46.1538,91.453,17.4398,2.4274 Greater Manchester ICB,P92012,High Street Medical Centre,5181.354191,7.7465,69.7987,74,4.1108,65.9259,66.2791,4.2672,95,8.1508,2.2565,0.6256,2.1347,23.4452,9.516,21.2913,62.4511,80.6452,0.5585,0.8266,17.9928,0.1572,89.6825,84.5161,73.1343,94.0299,16.0852,2.3682 Greater Manchester ICB,P92014,Standish Medical Practice,13408.40026,6.6566,76.8212,80.0623,4.6342,75.1163,76.6284,3.5871,96.1039,4.3151,2.0201,0.9952,1.3496,11.501,8.0171,19.2945,64.545,82.6235,0.3639,0.8466,11.3753,1.1252,87.1525,83.8384,58.0247,91.358,7.8891,2.124 Greater Manchester ICB,P92015,Aspull Surgery,6878.491914,7.2711,73.7991,77.1242,4.757,81.0651,79.8319,4.9439,94,6.3048,3.1431,0.8835,1.6935,21.2424,9.6585,19.9286,78.3315,93.2,0.4927,0.8835,21.6486,0.6442,92.4522,82.7957,87.3563,90.8046,10.3644,2.4975 Greater Manchester ICB,P92016,Pennygate Medical Centre,20882.52755,8.6002,73.9496,76.3889,3.8645,74.3243,72.0238,3.9182,94.1489,4.5844,2.7105,0.9232,1.4795,25.4666,9.17,17.4333,67.2388,80.6338,0.8373,1.0574,15.7368,0.5698,89.9059,85.1931,66.5414,87.594,14.3401,2.3939 Greater Manchester ICB,P92017,Shevington Surgery,13412.65018,8.5489,79.0099,85.5072,5.156,78.6704,79.6364,4.2941,96.7742,6.4826,1.4873,0.9153,1.2836,10.6365,8.5207,20.9748,67.6208,84.168,0.4271,0.6636,18.0349,1.2267,89.9702,81.7143,70.9091,93.9394,6.4364,2.5399 Greater Manchester ICB,P92019,Pemberton Surgery,12240.49472,7.182,65.3992,63.0208,3.7732,66.474,72.7848,3.4941,84.0336,4.3033,2.3101,0.9529,2.9237,36.271,9.0999,16.71,72.312,90.4153,0.9048,1.338,17.9218,1.5156,87.8339,83.5165,58.0882,91.1765,19.1458,2.0021 Greater Manchester ICB,P92020,Sivakumar & Partner,4908.124183,8.5197,77.2973,81.3559,4.3043,81.1688,76.7442,3.5636,98.0769,5.5345,2.0621,0.3804,2.5019,14.4816,8.483,19.0991,68,83.1169,0.4204,0.5205,17.488,0.29,91.5071,82.4428,86.6667,95,10.25,2.1822 Greater Manchester ICB,P92021,Newtown Medical Practice,7500.436054,7.7115,73.399,66.1871,4.5019,76.8817,71.9626,4.3675,90.3846,7.1998,2.5869,0.8063,1.4484,33.6021,12.2466,21.485,77.0633,86.9198,0.6551,0.7559,23.7825,0.4704,93.6744,86.7257,57.1429,91.9643,17.2039,2.3518 Greater Manchester ICB,P92023,Brookmill Medical Centre,10678.57139,6.9574,72.8435,67.6991,3.5086,72.9927,76.8786,3.9513,93.5065,6.1582,2.435,0.9851,2.3178,30.0493,8.2668,17.8639,65.52,81.8681,0.7416,0.808,16.3455,0.324,89.1358,82.5112,63.2479,88.8889,15.5719,2.601 Greater Manchester ICB,P92024,Kumar Family Practice,4962.658946,8.48,75.6098,76.9912,2.4674,75,76.1364,3.6911,93.3333,4.12,2.0662,0.6419,3.4334,23.3471,8.009,14.9248,66.7712,83.0189,0.8024,0.7623,15.59,0.486,87.0507,84.8739,75.8621,86.2069,13.625,2.3671 Greater Manchester ICB,P92026,Longshoot Medical Practice,9146.9241,5.7945,70.5882,65.7609,3.7168,69.697,76.5517,3.7037,88.3117,4.6263,2.1277,0.8537,1.1031,31.9648,8.7796,15.3927,62.1815,78.534,0.6436,1.0507,15.3112,0.5902,85.4307,84.153,55.4455,84.1584,18.1575,2.2459 Greater Manchester ICB,P92028,Elliott Street Surgery,5484.558241,7.6444,75.4967,78.5047,5.0292,69.1358,70,3.4641,96.0784,5.4867,3.1511,1.0434,2.163,23.5963,9.2641,16.9658,84.816,88.8199,0.5217,0.6678,18.5439,0.2691,91.6233,87.6033,66.6667,93.9394,14.7716,1.6903 Greater Manchester ICB,P92029,Westleigh Medical Practice,5113.268707,7.4781,72.5191,68.0851,2.8114,72.2222,78.3784,3.5467,88.3721,4.8595,2.7465,0.6055,2.1067,33.2809,9.1685,15.2898,87.4791,94.4444,0.5623,0.9299,18.9888,0.3179,93.124,90.7407,74.6032,95.2381,19.8133,1.795 Greater Manchester ICB,P92030,Dr Seabrook,4566.18754,5.9109,72.6027,74.7368,3.2852,69.6774,71.7949,2.7376,84.2105,5.3562,2.0587,0.4599,1.7943,25.3386,8.3377,17.8055,66.0237,83.4532,0.6132,0.7446,12.5067,0.8596,87.6525,90.5172,64.4068,91.5254,14.7549,1.6426 Greater Manchester ICB,P92031,Platt House Surgery,4938.882318,7.1483,69.2308,75.6757,2.1983,73.3333,71.1864,3.6483,87.2727,5.376,2.058,1.4967,1.1779,32.612,9.0259,13.1899,72.2973,84.1667,0.3508,0.725,14.92,0.1352,88.7981,85.8586,43.6364,89.0909,17.7025,1.6838 Greater Manchester ICB,P92033,The Surgery,5050.10318,7.197,72.9412,76.6355,2.6993,69.1781,72.619,3.5428,88.0952,3.1709,2.8469,0.3163,3.7212,25.0329,8.4706,16.744,60.7353,71.0526,0.6116,1.0122,14.0199,0.1564,87.4658,95.2381,64.5161,85.4839,18.209,1.6027 Greater Manchester ICB,P92034,Bryn Cross Surgery,6549.225804,8.2886,74.7748,76.875,3.4532,79.1946,79.6748,4.984,100,7.2498,2.6878,1.0146,1.1548,20.3187,8.999,22.5881,73.2213,82.8794,0.5162,0.7476,19.9102,0.0735,92.8118,86.0335,84.6154,93.5897,10.7032,3.0082 Greater Manchester ICB,P92038,Saxena L,2822.071569,6.3102,78,81.5385,2.5673,85.0467,81.1321,2.9743,100,3.3121,1.7533,0.407,0.7582,12.1843,7.098,15.8109,71.028,84.4156,0.5636,0.3444,19.992,0.249,95.1049,79.5455,87.5,93.75,8.0967,1.6594 Greater Manchester ICB,P92041,Ashton Medical Centre (SSP Health Ltd),9145.314527,6.5741,70.1887,73.1844,3.4318,75.2688,75.5102,3.4084,95.6044,4.9935,1.7626,1.4708,4.0209,20.5752,8.5718,15.4547,65.7426,71.656,0.677,1.3424,10.4514,0.1466,84.5156,78.8462,66.9643,85.7143,14.7059,2.1361 Greater Manchester ICB,P92042,Dr KK Chan & Partners,11132.8525,9.3037,71.8182,73.991,4.5745,74.9091,70.4545,4.7588,93.75,5.9837,3.8157,0.9865,1.8031,30.2932,9.7275,18.8184,70.6355,84.7411,0.6938,1.2141,19.8745,2.7805,90.4265,82.5623,89.2086,94.2446,15.7227,2.6667 Greater Manchester ICB,P92602,Foxleigh Family Surgery,2747.728828,7.5862,70.4225,71.1111,3.6159,67.4419,75.6757,3.3347,89.2857,6.2564,2.5713,0.9241,2.1872,32.1749,7.6071,17.5573,72.5,92.2078,0.5625,1.366,19.5829,0.7726,89.9517,86.7925,75,92.8571,20.5013,2.3704 Greater Manchester ICB,P92605,Dr Anderson & Dr Ahmed,6947.212912,6.6752,73.7624,78.6207,3.3299,81.7881,82.0313,2.7706,97.479,2.35,1.4178,0.4032,1.7833,13.9363,6.1927,12.0838,72.6658,81.579,0.7154,0.5073,11.2,0.0769,86.738,81.6327,81.8182,87.8788,9.1743,1.3267 Greater Manchester ICB,P92607,Grasmere Surgery,9270.863473,8.6,72.4638,79.2079,4.3069,75.4032,77.4834,4.106,91.7808,6.5866,2.3481,0.992,1.9083,29.3568,9.2415,16.7755,66.474,80.8725,0.7283,0.8162,16.3589,0.1137,92.3916,85.5073,74.2574,92.0792,14.1136,2.3857 Greater Manchester ICB,P92615,The Avenue Surgery,5699.360458,8.8248,70.0599,75.4386,3.5452,74.8344,76.6667,3.6267,86.9565,6.0606,3.097,0.9984,0.4879,34.2895,9.1829,14.9348,75.3356,89.0511,0.6724,0.8354,17.2573,0.3017,89.7176,80.8696,72.7273,93.9394,16.551,2.0375 Greater Manchester ICB,P92620,Ince Surgery,9440.824683,6.9102,60.4278,66.4286,2.6519,64.8276,64.1667,2.5124,86.2069,3.385,2.0556,0.4187,4.4965,37.8177,7.4971,12.0036,56.1187,68.6131,0.6218,1.1039,11.2833,0.1281,81.5678,89.6,80.2326,82.5581,25.1158,1.3196 Greater Manchester ICB,P92621,Premier Health Team,4522.776326,8.3997,69.8413,68.5393,3.9477,74.6154,78.8732,3.2696,85.3659,4.1891,1.986,0.775,2.6631,29.8183,8.7123,14.604,78.7575,94.2308,0.8234,1.2352,20.4369,0.3121,90.0379,88.6598,66.6667,92.5926,16.8775,1.8164 Greater Manchester ICB,P92626,Meadowview Surgery,6880.983852,9.2864,74.3169,80.315,4.0074,77.561,75,3.9235,87.8378,7.3109,2.7331,1.224,2.5853,31.0655,8.9958,18.4272,70.771,84.3478,0.4527,1.0396,20.6824,0.7411,91.2729,87.6344,69.6203,97.4684,15.4737,2.2804 Greater Manchester ICB,P92630,Golborne Surgery,2813.392385,5.8052,67.3469,67.6923,3.0884,65.9091,66,3.4079,90,4.0523,1.8814,0.497,2.1351,22.8217,8.7462,15.8325,58.9812,78.0822,0.9585,1.0295,12.854,0.3591,84.1294,83.6066,77.5,85,17.8352,1.5974 Greater Manchester ICB,P92633,Bee Fold Medical Centre,3486.357511,6.3519,70.7865,72.7273,3.1905,71.5447,66.6667,2.7526,89.1304,2.3948,2.127,1.0009,3.4376,29.7895,6.7356,14.1383,65.4971,79.0909,0.5317,0.5943,12.978,0.2646,86.875,77.7778,66.6667,93.9394,17.7293,1.6265 Greater Manchester ICB,P92634,Mesnes View Surgery,5195.171546,5.9762,71.875,73.3333,4.5028,63.2258,79.2683,3.4144,90.6977,6.423,1.9206,0.4695,1.4978,25.7731,7.2969,17.0508,80.3406,86.2745,0.7256,1.131,18.0249,0.3665,90.4365,82.8283,58.4906,96.2264,10.9434,2.1554 Greater Manchester ICB,P92635,Dr Vasanth,2620.107515,7.4393,70.7317,75.4717,3.4483,76.9231,70,4.5168,93.3333,5.9298,1.7484,0.2914,0.1151,31.7522,8.8636,19.6697,63.7195,80.5195,1.0199,1.1171,13.7018,0.2075,87.0215,87.7193,79.3103,96.5517,17.7766,1.9427 Greater Manchester ICB,P92637,Astley General Practice,3395.927238,7.7744,77.3585,80.2326,3.6036,79.8701,83.1169,2.3273,98.2456,2.3392,1.6016,0.3253,3.0539,16.3949,6.4661,12.9379,68.9038,85.7143,0.7007,0.7007,13.9051,0.3906,88.8889,89.0909,58.3333,91.6667,10.7213,1.0761 Greater Manchester ICB,P92639,Shahbazi Ss,2998.65002,7.7057,65.5556,71.875,3.0393,74.7475,66.6667,3.2706,77.4194,4,2.0152,0.4295,3.4167,22.0537,7.6386,15.9234,74.1026,83.6957,0.6277,0.6607,14.1667,0.4352,83.731,87.037,76.4706,88.2353,15.1939,1.8831 Greater Manchester ICB,P92642,Marus Bridge Practice,5750.67941,10.4722,69.6629,80.1418,3.6885,81.3953,81.982,3.6699,97.7778,6.2428,4.6759,0.5961,1.2068,21.7092,9.8785,19.9516,79.5806,89.697,0.5589,1.2481,18.4962,0.5475,92.3695,80.5031,98.7342,100,12.3512,2.0119 Greater Manchester ICB,P92646,Dr Vardhan's Surgery,3252.799198,6.531,77.9661,84.5238,3.9227,80.8696,75.3846,2.7857,90.4762,3.7024,2.2172,0.4264,0.0719,13.0426,8.0497,16.2877,72.766,88.3495,0.4832,0.5401,10.7836,0.0685,91.1923,86.4407,61.5385,94.8718,9.3015,1.9329 Greater Manchester ICB,P92647,Hawkley Brook Medical Practice,5497.915041,8.1218,77.3438,84.2697,4.6287,86.2069,87.3016,4.468,97.2973,7.9371,2.7322,0.9322,1.5721,20.0528,9.2046,23.4973,73.2442,77.4436,0.4822,0.7715,18.4049,0.3911,93.8788,82.8571,79.3478,94.5652,9.4773,2.3787 Greater Manchester ICB,P92648,Slag Lane Mc,5310.47957,7.412,79.8742,81.3559,3.2774,81.0526,81.9149,3.2965,97.3684,5.1886,1.7149,1.2195,0.6246,18.3785,8.6905,15.8918,85.0812,93.6306,0.7431,0.8003,16.6467,0.249,93.5608,86.5546,76.2712,98.3051,8.9313,1.8102 Greater Manchester ICB,P92651,Lowton & Platt Bridge Surgery,5881.407291,7.457,64.4068,72.4409,3.0337,70.0565,76.0417,3.5548,90.4762,2.9212,1.6937,0.2978,3.6223,26.6623,8.5721,15.1684,62.2807,83.2061,0.6886,0.8189,17.2237,0.1949,86.0738,81.3084,69.5652,91.3043,17.1602,1.9728 Greater Manchester ICB,Y00050,Lilford & Pennington Park Surgery,7524.31369,7.3102,68.8525,65.6716,3.0224,72.314,74.3363,3.2104,91.6667,4.3991,2.9501,0.6652,1.666,34.5452,9.464,14.8952,74.1535,81.25,1.1714,1.0701,15.1816,0.2593,89.8753,84.7561,84.2105,94.7368,19.6718,1.6052 Greater Manchester ICB,Y02274,Rivington Way Surgery,4319.467251,7.8896,59.4203,60.7143,1.9341,63.6364,59.6154,1.7773,94.1177,1.9167,1.9603,0.183,3.5385,37.5682,8.6722,9.3832,71.6012,82.1429,0.5489,1.5944,17.2134,0.1126,83.7622,88.4615,84.4444,93.3333,25.0529,1.0978 Greater Manchester ICB,Y02321,Poplar Street Surgery,6269.750222,6.9992,69.2308,70.6522,2.7743,70.852,71.6216,2.7743,93.421,3.3149,1.8318,0.7469,2.6183,31.1125,7.5396,12.3422,69.5507,84.9462,0.7114,0.907,15.9741,0.5468,89.4551,88,65.9574,89.3617,18.3019,1.5472 Greater Manchester ICB,Y02322,Leigh Family Practice,9936.06533,6.2675,60.5769,55.1282,1.8847,62.7566,67.6923,2.5427,82.0313,3.3954,2.3196,0.6468,4.14,38.6541,7.6484,11.1743,52.6252,69.9454,0.5241,0.7583,11.4222,0.1914,81.857,83.0065,62.9213,83.1461,21.5462,1.4832 Greater Manchester ICB,Y02378,Bryn Street Surgery,6959.492849,8.2908,69.0355,72.4638,3.8505,72.3618,71.5517,3.4638,92.8571,4.5325,2.4166,0.5317,2.8252,21.1431,9.244,19.9613,73.1035,84.8214,0.6283,1.0633,14.1057,0.6449,89.9576,90,82.5581,98.8372,15.2904,1.8205 Greater Manchester ICB,Y02885,Marsh Green Medical Practice,4526.695342,6.0807,62.5,61.2245,1.2987,69.375,66.6667,1.6364,90.7692,2.8701,1.8442,0.2338,2.6435,49.316,7.3225,9.1688,65.6347,80,0.7013,1.5584,14.4638,0.1372,89.8582,91.0714,72.973,89.1892,28.1461,1.013 Greater Manchester ICB,Y02886,Leigh Sports Village,3897.743856,6.2548,72.3404,70.8333,2.5561,71.0059,72.7273,1.8395,90.9091,3.4504,1.1228,0.2389,2.8598,24.221,6.2424,11.849,66.0592,80.7018,0.4061,0.6211,13.8639,0.1592,85.1829,90.7407,70.2703,86.4865,13.6978,1.1945 Greater Manchester ICB,P84004,Five Oaks Familiy Practice,11174.64308,6.3569,61.7778,66.0131,2.7923,67.3846,70.1493,2.8924,83.7209,3.3544,3.3152,0.3894,1.942,50.7742,8.3695,13.3052,63.2173,82.7068,0.5006,1.6353,16.5956,0.1127,85.5845,89.5735,86.9159,91.5888,20.8705,1.7243 Greater Manchester ICB,P84005,The Vallance Centre_P84005,9665.448363,1.6628,55,54.8387,0.5311,20.3046,71.4286,0.5105,80.5556,0.7361,0.3173,0.069,0.7871,32.5037,1.8735,2.8351,61.9632,82.3529,0.138,0.2552,3.1193,0,90.5109,86.3014,75,86.3636,7.4416,0.3035 Greater Manchester ICB,P84009,Ailsa Craig Medical Centre,11879.84472,6.7337,47.6923,50.7246,1.6145,51.7401,64.2857,2.2803,82.0896,2.6402,1.473,0.283,2.3877,41.7979,9.5456,10.3279,71.4412,83.6364,0.6575,1.4564,18.1445,0.5272,82.0006,88,86.8571,92,16.7331,1.007 Greater Manchester ICB,P84010,The Borchardt Medical Centre,10945.76106,5.8297,61.039,70.303,2.3357,65.2582,69.5035,2.0343,85.7143,1.9123,2.4298,0.7158,1.1262,32.8775,5.8382,8.8906,75.5155,86.3095,0.518,1.3468,10.0422,0.5684,75.7806,85.2349,90.5263,91.5789,18.8722,1.1678 Greater Manchester ICB,P84012,Northenden Group Practice,11162.09446,7.8951,69.0323,68.1159,4.0844,63.1579,69.375,3.7173,87.3239,3.101,2.765,0.5966,2.2629,29.8363,8.6022,17.531,65.0478,75,1.0555,1.8357,15.5888,0.1645,88.6986,87.5622,83.6207,89.6552,15.9743,2.1799 Greater Manchester ICB,P84014,Rk Medical Practice,7273.313919,6.9071,57.2414,67.7778,2.5321,63.4518,61.1111,3.2955,68.1159,3.7583,3.6306,1.0613,3.7837,51.9642,8.5622,14.0197,43.0693,68.7075,1.0985,1.3033,11.097,0.1851,83.4405,86.4865,67.1642,74.6269,22.2595,2.1039 Greater Manchester ICB,P84016,Levenshulme Medical Practice,8836.924969,7.5266,56.5217,64.9123,2.1335,60.6322,68.932,2.2976,87.0229,3.1388,1.8928,0.2516,2.4462,38.7437,9.2834,10.9737,70.7373,82.963,1.0175,1.1926,11.7448,1.0643,83.7505,89.3048,78.8618,90.2439,14.0707,1.1379 Greater Manchester ICB,P84017,Ladybarn Group Practice,13123.49215,7.3356,65.343,68.018,2.882,62.1795,65.3061,2.4826,85.124,3.2559,2.4669,0.3524,2.8668,35.1194,7.3252,12.0918,57.4174,74.0741,0.9398,1.4958,10.3409,0.5556,84.6136,84.2593,82.2222,88.1481,19.1379,1.2765 Greater Manchester ICB,P84018,Mauldeth Medical Centre,3163.795727,5.0706,55.5556,55.5556,1.3398,45.3782,59.0909,1.5282,73.6842,1.6173,1.0676,0.1256,1.5262,26.2618,2.7413,6.0289,59.7403,75.4386,0.314,0.6489,3.8497,1.1887,72.8589,90.9091,71.4286,80.9524,11.5858,0.9211 Greater Manchester ICB,P84019,Valentine Medical Centre,14104.18309,7.0293,63.1399,51.9417,3.2502,60.8247,66.4804,2.9086,88.7851,4.308,3.0933,0.6741,2.0503,48.083,8.3843,12.9732,72.7575,90.0498,0.591,1.2558,16.8294,0.5357,87.0677,93.1559,91.9708,94.8905,18.565,2.0406 Greater Manchester ICB,P84020,Peel Hall Medical Centre,11928.2402,5.9125,57.0136,62.2517,2.2762,62.9121,65.8537,2.3895,90.2439,3.4794,1.8334,0.4429,3.2437,50.2803,7.7843,10.3821,58.2005,78.4615,0.8961,1.4317,19.6978,0.5787,82.2126,79.6512,85.9813,92.5234,21.5644,1.4008 Greater Manchester ICB,P84021,The Maples Medical Centre,11457.66165,7.5698,62.1622,68.8623,2.6029,68.2451,75.5725,3.0349,89.7436,3.9711,3.4345,0.4752,3.4249,41.8431,8.578,13.8568,72.4199,84.2767,0.8964,1.6093,15.5595,0.897,89.922,91.8782,78.3784,89.1892,21.0078,1.6417 Greater Manchester ICB,P84022,Kingsway Medical Practice,6777.476065,7.9718,67.8363,55.8333,3.9673,71.5556,69,3.5265,85.8974,4.6085,1.9364,0.7084,2.5489,31.2721,8.552,13.5548,73.9003,81.0056,0.3936,0.9918,15.4772,4.4132,86.9424,93.007,94.8718,97.4359,15.2407,1.8419 Greater Manchester ICB,P84023,Surrey Lodge Practice,8051.440036,5.3045,66.1654,59.1837,1.6865,43.9024,71.0843,1.4395,93.3333,1.8301,1.2569,0.3867,2.7808,35.8529,5.0502,6.8858,71.3504,86.0215,0.6016,1.2354,10.2436,0.8822,76.8704,91.3386,87.6712,95.8904,14.9082,0.8701 Greater Manchester ICB,P84024,Bowland Medical Practice,11295.2593,9.3843,63.2743,68.5535,3.6024,69.2557,72.7273,3.1446,94.5652,3.4369,3.6386,0.3374,2.9504,44.0931,8.3962,16.5181,54.3787,70.9302,0.8313,1.6747,15.6466,0.8034,87.5041,88.5058,77.7778,87.8788,19.1542,2.1325 Greater Manchester ICB,P84025,St George's Medical Centre,9184.101492,3.6861,67.5978,64.1221,2.2766,63.7993,74.3119,2.1213,78.6517,4.8073,2.6517,0.6338,1.1135,48.1048,7.3626,11.6414,80.1609,83.1169,1.3711,1.4875,17.1792,0.4521,91.0067,86.8217,83.9506,90.1235,17.3986,1.2159 Greater Manchester ICB,P84026,Dickenson Road Medical Centre,8616.926242,5.257,40,40.404,0.9029,47.4576,67.3684,2.1103,75.2137,1.9727,0.7506,0.2067,1.3925,43.8907,11.6913,10.062,72.7273,82.0513,0.9029,0.7941,15.2306,0.095,74.8916,93.7198,86.7925,91.195,15.1947,0.805 Greater Manchester ICB,P84027,West Point Medical Centre,7824.298611,6.0527,59.2357,52.6786,2.2756,55,70.4762,2.6062,81.7308,3.2464,1.1187,0.3178,2.5568,37.108,9.8239,14.2258,67.4847,77.305,0.7755,1.284,15.7275,1.1341,89.7517,89.5062,81.8182,93.6364,15.2976,1.3094 Greater Manchester ICB,P84028,Gorton Medical Centre,12119.56534,5.5383,57.1429,53.6424,1.9976,59.7765,62.7737,2.6262,67.5676,3.645,3.0927,0.4157,2.902,50.3878,8.156,12.6851,61.553,78.9744,0.8315,1.3993,18.1831,0.1499,87.0765,88.75,73.913,85.2174,18.9799,1.2371 Greater Manchester ICB,P84029,Benchill Medical Practice,15035.44753,9.3918,58.9641,59.375,3.1846,56.7839,64.4737,3.2128,79.6748,3.7629,3.6073,0.883,3.5615,55.6909,9.3673,13.5181,45.5493,77.0833,0.7891,1.86,17.6567,2.6566,89.5788,85.259,71.4286,85,27.6064,2.2922 Greater Manchester ICB,P84030,New Collegiate Medical Centre,14327.61311,5.1337,62.931,62.9834,1.7123,66.3244,75.4286,2.0678,86.9318,4.4988,1.2842,0.4861,1.5062,42.1127,9.3046,9.7657,76.3298,82.5688,0.3918,1.2915,13.9352,0.2212,89.2947,93.2862,94.0541,97.2973,13.4542,1.1826 Greater Manchester ICB,P84032,Drs Hanif & Bannuru,7058.188426,6.3215,60.1307,60,3.0323,65.4822,73.7864,3.5732,79.7468,3.021,2.9995,0.377,1.9046,48.717,7.4877,15.8007,67.9398,83,1.6883,0.8523,15.0832,0.9636,89.9867,95.0495,77.6119,92.5373,20.4874,1.8522 Greater Manchester ICB,P84033,Beacon Medical Centre,5387.349004,7.2383,64.3478,48.6842,1.7793,62.4204,67.1642,3.0405,76.7442,4.5387,3.0856,0.5631,4.7464,47.7016,7.3157,14.5045,65.4386,86.4865,0.8784,1.4865,13.7348,0.4418,85.9006,82.8947,89.3617,93.617,19.577,1.5766 Greater Manchester ICB,P84034,Barlow Medical Centre,14120.69785,5.8092,71.2919,63.7681,3.4061,71.4689,71.1934,1.9018,93.9597,2.8965,1.064,0.6054,1.3173,17.7351,4.2303,9.5212,66.9336,77.5974,0.3119,0.9295,6.968,0.8353,76.4678,80.8081,90.8163,93.8776,9.0191,1.4371 Greater Manchester ICB,P84035,Bodey Medical Centre,14089.21837,5.9441,57.3883,60.3659,1.9886,49.5463,65.4412,1.9055,84.8101,2.6281,1.6324,0.3206,2.0226,28.4204,4.1061,8.1147,64.2542,77.7778,0.5046,1.0744,7.6846,2.0894,67.6958,87.6033,88.0734,94.4954,17.2244,1.0388 Greater Manchester ICB,P84037,Ardwick Medical Practice,7643.617493,4.85,55,56.3218,1.9673,47.7366,69.0476,1.9825,74.4681,3.0221,1.9219,0.3935,0.9432,42.154,7.6313,9.2161,51.7034,89.0909,0.5751,1.6495,12.7238,0.9864,75.6075,84.8214,77.7778,87.5,16.1968,1.2863 Greater Manchester ICB,P84038,Ashville Surgery,12785.76924,7.5711,65.0407,63.6364,2.3747,61.5873,70,2.0807,77.6978,1.8529,0.9046,0.3845,2.617,27.9285,5.6691,9.4987,46.4815,61.6667,1.3343,1.5982,7.9943,0.6094,75.8108,90.1639,81.982,84.6847,14.315,1.2439 Greater Manchester ICB,P84039,The Range Medical Centre,10192.97771,6.2035,49.1979,51.4493,2.0065,50.2778,64.0625,1.7124,75,3.5819,1.4497,0.4307,1.5041,39.4715,7.4498,11.0726,53.2222,75.974,0.5358,1.5653,11.3576,0.779,70.4368,88.7097,74.4898,87.7551,21.5655,0.8404 Greater Manchester ICB,P84040,Conran Medical Centre,9357.511347,6.0155,60.1351,50.4348,2.1929,69.5817,75.9259,2.1929,83.7209,3.5983,3.3096,0.5112,2.4491,55.0667,8.7703,14.1127,65.5098,88.189,0.5112,1.3723,18.5946,0.555,90.8176,90.8333,87.234,93.617,21.4234,1.2377 Greater Manchester ICB,P84041,Cornerstone Family Practice,8861.646759,5.2509,61.4458,61.6,1.9903,62.6712,66.9725,2.6665,72.4138,4.0489,2.3475,0.4848,2.2226,44.5997,7.4657,12.6563,68.0975,86.1539,0.37,1.161,12.2502,0.1872,86.7676,82.3129,80.7229,89.1566,15.8346,1.4162 Greater Manchester ICB,P84042,Florence House Medical Practice,12922.57034,4.8454,62.605,51.9774,2.2147,59.6026,66.4557,2.1278,69.863,3.1037,2.4318,0.608,1.7496,48.1368,7.2217,10.9693,40.1852,69.3989,0.608,1.0075,10.8448,1.6274,88.819,83.9779,68.75,75,16.1364,1.1812 Greater Manchester ICB,P84043,Cornishway Group Practice,12227.24056,7.6106,63.5071,66.2338,2.7849,57.1802,60,2.6924,74.5098,3.9437,2.8774,1.1715,2.8846,50.2612,8.0923,13.4313,59.4153,79.8611,0.9043,1.4901,16.9314,2.1774,81.4628,91.8033,82.3009,90.2655,24.7842,1.7367 Greater Manchester ICB,P84045,The Park Medical Centre,6702.504594,7.0949,60.8392,65.3846,2.6542,66.4921,73.2558,2.9215,89.4737,5.9345,3.3225,0.3246,1.8961,43.1851,8.7452,15.2186,65.8284,78.5124,0.9166,1.814,14.3561,1.3173,87.494,86.7257,85.2941,91.1765,22.5876,1.3176 Greater Manchester ICB,P84046,Cheetham Hill Primary Care Centre,15226.5377,6.3041,47.7612,47.8261,1.6955,56.6292,70.7692,1.9084,95.1724,2.8763,1.2065,0.2287,0.8867,45.8395,9.9831,9.2737,70.5882,84.7619,0.4258,0.8832,13.5056,0.2227,76.6638,93.8272,78.1421,85.7923,16.1273,0.9857 Greater Manchester ICB,P84047,Droylsden Roadd Family Practice,8082.458729,6.2477,64.0449,63.2479,3.6136,61.4973,65.3061,4.1869,80,5.3349,4.2912,1.6157,3.8139,51.635,9.1559,16.1571,54.809,74.8538,0.9382,2.4496,13.9614,0.716,85.5922,86.5031,82.0513,93.5897,29.319,2.328 Greater Manchester ICB,P84048,Tregenna Group Practice,9256.306587,9.3288,66.5049,73.1034,4.2594,70.2041,71.9626,3.4397,81.1594,6.1167,4.4643,0.5562,1.4029,46.6036,9.2113,17.3888,68.6553,81.8182,2.137,1.4783,19.248,1.6942,91.0821,89.5833,91.2088,97.8022,25.8411,2.1224 Greater Manchester ICB,P84049,The Avenue Medical Centre,14233.43064,7.973,69.7068,53.7815,3.4284,62.6289,68.0203,3.3564,82.0313,5.3452,3.9953,0.6119,2.6905,45.8506,8.9413,17.1961,63.6476,83.2776,1.5207,1.3048,18.9643,0.6486,89.3564,90.6355,84.3972,90.7801,19.7299,2.6546 Greater Manchester ICB,P84050,Mount Road Surgery,9839.247445,6.5338,55.9211,39.0625,2.1229,55.1829,63.2,1.8145,81.6514,2.5519,2.1229,0.2016,0.9549,53.0383,8.3026,11.3259,56.8628,76.1364,0.842,1.1741,13.6483,0.0502,88.7738,90.4762,79.5918,88.7755,21.4184,1.0436 Greater Manchester ICB,P84051,Eastlands Medical Centre,6897.908127,5.9951,64.6259,66.0377,2.0687,63.3803,67.4157,2.7349,84.3374,2.0153,2.9804,0.526,1.6215,48.5361,7.6469,13.7272,61.2573,74.7475,0.4383,1.4025,16.7941,0.1738,86.6381,95.0495,84.375,90.625,17.4788,1.5428 Greater Manchester ICB,P84052,West Gorton Medical Practice,9486.009843,5.5251,64.0719,60.1563,2.5013,68.9286,75,2.7674,88.3495,4.2324,3.2065,0.2661,1.901,55.931,9.4768,14.4891,61.9703,80,0.6919,1.1043,16.4455,0.6188,86.2122,89.441,91.0891,92.0792,18.5495,1.4236 Greater Manchester ICB,P84053,Ashcroft Surgery,8083.664247,6.9391,56.4935,58.5586,2.1298,67.8689,71.8447,2.3883,84.0426,3.3216,2.4375,0.2708,2.2038,38.2472,8.37,12.8155,58.8299,77.9661,0.7756,1.5512,18.5723,0.3377,80.5147,90.1409,87.3786,93.2039,17.9339,1.4773 Greater Manchester ICB,P84054,Whitley Road Medical Centre,9342.367961,7.0376,61.6915,61.4815,3.1255,57.3333,66.9811,2.8563,78.9474,4.4042,2.9012,0.5085,2.1544,58.5812,9.7355,14.2814,74.1463,91.8519,1.0618,1.5254,16.797,0.1336,89.6377,87.7301,90.625,92.7083,19.6989,1.8693 Greater Manchester ICB,P84056,Princess Road Surgery,5118.924647,6.6821,58.8785,48.75,2.4412,46.7066,63.7681,2.8117,74.5098,3.0217,1.8309,0.5885,3.7913,41.2747,9.1062,10.898,45.0122,62.9214,1.6783,1.1988,9.6921,0.4072,80.7261,81.1111,59.322,74.5763,17.5069,1.1334 Greater Manchester ICB,P84059,Lime Square Medical Centre,9227.344319,6.3874,64.9425,65.1163,1.9746,65.5172,72.1739,1.8794,81.6327,3.9064,2.1173,0.3806,4.5359,43.3473,7.3869,13.1438,72.1124,88.8889,0.6542,0.797,17.2397,0.2773,87.9375,89.5161,89.5349,94.186,16.7581,1.3203 Greater Manchester ICB,P84061,Brooklands Medical Practice,7272.363797,8.11,70.5584,75.5396,3.8231,79.7357,76.4706,2.9969,90.4762,5.4755,2.3651,0.4536,3.6229,32.5651,7.7686,15.7946,65.2071,76.1539,0.972,1.2312,15.0268,1.2641,89.5636,89.4737,88.7324,95.7746,16.1322,2.0736 Greater Manchester ICB,P84064,New Islington Medical Centre,10024.34887,4.7487,58.6777,55.2941,1.3455,69.2188,68.9189,1.5496,78.6885,0.9885,1.5589,0.1299,2.9756,47.8689,3.1558,5.8458,66.1922,82.3529,0.3619,0.9001,8.2951,0.1464,86.959,96.5909,84.6154,96.1538,17.1518,0.7794 Greater Manchester ICB,P84065,The Singh Medical Practice,5846.745466,6.0118,65.6566,52,2.7128,65.7303,73.4375,1.772,84.9057,4.0218,1.9689,0.2625,3.9311,52.8632,7.4195,12.1418,64.8703,77.7778,0.5688,1.247,19.0505,0.3399,90,93.2432,91.4894,95.7447,18.0552,1.0939 Greater Manchester ICB,P84066,David Medical Centre,8681.308338,7.6829,57.2973,49.2754,2.6028,58.3333,61.6667,2.7574,85.9375,2.6427,2.5255,0.5412,1.9413,37.0028,8.8514,13.1298,50.3464,67.9739,0.6571,1.2112,10.5547,0.4228,79.5031,86,66.3366,77.2277,19.5017,1.4947 Greater Manchester ICB,P84067,Hazeldene Medical Centre,9157.15626,6.2187,70.2128,61.9318,3.6629,65.9341,72.6027,3.2193,87.013,4.5528,2.5475,1.2548,2.7831,33.5709,7.2299,15.6781,71.9636,83.5341,0.9126,1.2548,15.1705,0.9665,87.3914,89.0323,90.1235,93.8272,17.1372,2.3067 Greater Manchester ICB,P84068,Chorlton Family Practice,20172.90603,7.3028,68.5662,74.3056,2.9482,68.75,72.2772,2.0394,88.1057,3.0172,1.565,0.3281,1.9768,22.0827,5.5444,10.7111,61.4625,71.9388,0.6517,1.2635,8.849,0.5106,79.8211,87.3457,83.871,89.2473,13.8987,1.3123 Greater Manchester ICB,P84070,Newton Heath Medical Centre,10343.39747,5.5317,65.9459,64.2857,2.2768,59.8131,65.8537,2.2529,77.6786,1.9448,2.3841,0.4887,2.8109,54.909,7.3937,12.0515,54.6591,71.7557,1.1086,1.5973,14.8717,0.1305,82.3529,88.1188,80.2326,89.5349,18.878,1.5973 Greater Manchester ICB,P84071,Wilbraham Surgery,4590.889207,7.6609,76.1538,68.5185,3.0625,77.0925,78.7234,1.6537,97.2973,1.7191,0.735,0.3879,1.3317,23.4216,4.108,10.4941,67.4365,81.4815,0.9187,1.2046,6.8281,0.4219,89.8792,92.8571,91.6667,95.8333,10.9748,1.0617 Greater Manchester ICB,P84072,The Robert Darbishire Practice,23557.82191,3.5982,53.0806,46.0526,0.5278,31.3285,60.274,0.7287,77.1845,0.6117,0.4948,0.09,1.3443,37.8768,3.2862,3.5567,59.5644,77.6923,0.4738,0.6597,5.142,0.2906,77.61,86.2559,84.4828,90.8046,12.908,0.4138 Greater Manchester ICB,P84074,Wellfield Medical Centre,11815.93052,5.6242,50.2732,52.518,1.3925,50,60,2.7938,88.8889,2.3479,1.4102,0.2749,3.6983,43.9251,9.3126,11.5211,59.4203,76.9841,0.3814,1.2772,11.5207,0.041,70.2573,91.0638,86.8421,90.7895,17.162,1.286 Greater Manchester ICB,P84605,Fernclough Surgery,2904.891303,6.2768,50,41.6667,1.6426,68.0556,72.7273,2.3395,85.7143,3.7415,2.7875,0.7964,1.9728,60.3361,8.6755,13.34,82.0513,82.3529,1.0951,2.8372,20.7483,0,89.6502,91.6667,92,92,27.1947,1.4933 Greater Manchester ICB,P84611,The Vallance Centre_P84611,7630.836589,3.5815,65.5629,60,2.0377,53.7879,71.8447,1.666,80,2.7728,1.3072,0.3076,1.5138,40.9749,6.7349,10.5472,69.326,79.1667,0.7689,0.8971,7.9287,1.0158,91.0386,88.7324,83.5294,94.1176,12.2371,1.0253 Greater Manchester ICB,P84626,Wilmslow Road Surgery,4993.410118,5.1986,75.7576,56.5217,1.2933,53.7118,79.5455,2.19,80,1.149,0.7415,0.1724,1.7645,35.9318,7.3999,8.3635,78.5714,86.2745,0.7932,0.7932,13.6643,0.225,92.0412,97.0297,95.7143,98.5714,11.3641,0.5518 Greater Manchester ICB,P84630,The Arch Medical Practice,16041.00158,3.4959,48.3516,48.8889,0.97,34.1243,60.6299,0.7797,73.1707,1.2156,0.7434,0.1405,2.4312,31.6238,2.491,4.6825,55.4113,72.4771,0.1813,0.8839,5.8519,1.094,82.4949,83.9416,86.8421,92.1053,18.2884,0.4125 Greater Manchester ICB,P84635,The Whitswood Practice,5265.050683,6.4186,52.1127,55,0.9351,55.6561,67.2414,1.2595,65.7895,2.2697,0.9733,0.4962,1.2668,45.0368,7.2002,8.3015,72.6542,91.9355,0.7061,1.4504,17.4188,0.106,86.3749,92,88.4615,96.1538,17.3258,0.5725 Greater Manchester ICB,P84637,Dr Khan's Practice,3417.809619,7.3387,60.8108,54.902,2.3005,71.875,71.4286,2.9475,92,7.6292,3.5227,0.7549,4.0077,48.3926,8.9269,16.427,77.3171,89.3617,1.0065,1.5097,24.6741,0.591,90.7647,96.0526,91.8919,94.5946,20.3996,2.0848 Greater Manchester ICB,P84639,Fallowfield Medical Centre,2972.449643,4.2796,44.4444,52.7778,0.8397,44.4444,65.625,1.8575,86.6667,1.4332,0.687,0.2036,2.6909,29.7585,6.6994,6.4886,73.0089,89.6552,0.3308,0.7888,7.5168,0,78.8321,96.2963,77.2727,84.0909,15.1464,0.4071 Greater Manchester ICB,P84644,Parkside Surgery,6114.792586,7.0935,38.8889,42.4242,0.669,50.6276,71.0145,2.0783,91.1504,2.6349,0.8826,0.1281,1.2129,44.0735,13.4226,9.0392,68.5374,78.7234,0.726,0.3986,18.256,0.4587,85.138,96.4539,81.3953,85.2713,11.1873,0.8541 Greater Manchester ICB,P84645,Park View Medical Centre,8005.541854,7.6798,61.2245,59.8039,2.3644,45.3441,61.2245,2.7736,82.5581,2.8486,2.137,0.6972,1.8656,40.1389,9.4132,11.5944,64.7335,78.7402,1.1519,2.0764,13.8816,0.3817,84.5813,89.5161,81.5217,89.1304,16.6441,1.4247 Greater Manchester ICB,P84650,The Alexandra Practice,6843.401501,7.6733,63.5135,63.7097,2.5665,62.9921,76.9912,2.7365,80.8219,3.0569,1.2832,0.9586,1.9081,32.3744,8.5599,12.415,52.3238,63.9706,0.5257,1.6079,15.0506,0.4244,87.1435,82.8947,85.7143,88.0952,12.7065,1.4533 Greater Manchester ICB,P84651,Northern Moor Medical Practice,6201.982172,7.8134,68.1416,66.25,2.3968,73.3591,73.8462,1.7841,92.6829,1.9184,2.0184,0.2163,2.9759,37.3635,5.9152,12.0562,62.2951,88.1356,0.9191,1.8021,15.1254,0.312,88.0025,88.4058,86.6667,93.3333,20.0678,1.2795 Greater Manchester ICB,P84663,The Neville Family Centre,6310.994426,6.7396,62.1849,46.7391,2.0222,60.793,72.619,2.1475,89.2308,2.0691,1.8969,0.2148,1.6459,44.3584,5.4436,10.8089,72.6236,83.3333,0.2863,0.8948,12.5323,1.4483,81.2675,91.4286,77.5,87.5,18.8147,1.2706 Greater Manchester ICB,P84665,Al-Shifa Medical Centre,3449.039104,4.4048,40.7895,46.3415,1.3833,45.0331,61.1111,1.3079,86.3636,1.6751,1.006,0.1006,2.3931,33.237,6.708,9.9346,62.7119,63.4146,0.2264,1.333,7.1194,0.1066,64.4828,79.0698,81.8182,81.8182,17.1843,0.4527 Greater Manchester ICB,P84669,Cornbrook Medical Practice,14634.60442,3.9494,54.9669,50.8333,1.1406,47.0075,56.1983,0.7705,62.6984,1.1045,0.898,0.1153,1.2944,35.6723,3.8746,4.5444,58.457,78.6667,0.2488,1.2862,8.3222,0.4824,80.6202,89.2562,80.8511,91.4894,18.755,0.4672 Greater Manchester ICB,P84672,Woodlands Medical Practice_P84672,3828.340854,7.166,64,69.2308,3.1903,70,70.3704,2.6403,87.5,3.7729,1.9527,0.4951,3.9526,22.8231,6.994,19.0319,64.1766,81.5534,0.5776,1.0451,12.5404,0.2513,85.6858,84.6154,86.8421,92.1053,14.4029,1.7877 Greater Manchester ICB,P84673,Ancoats Urban Village Medical Practice,14528.19974,5.4346,57.3171,53.3333,1.7092,71.6667,69.3069,1.3418,88.4058,1.8352,2.2414,0.1199,3.1722,43.0759,3.7299,8.6207,56.0078,76.2712,0.2474,1.6417,7.0337,0.334,84.3931,90.6667,79.4872,89.7436,22.3556,0.9071 Greater Manchester ICB,P84678,Didsbury Medical Centre - Dr Whitaker,12768.75383,6.8365,70.2509,74.8858,2.6445,71.7208,73.1481,1.7298,98.5185,2.1297,0.9583,0.4916,2.1963,18.251,3.5631,7.8838,78.7214,83.105,0.3485,0.8774,7.2025,0.8788,80.4556,85.5172,87.2093,94.186,9.1767,0.9334 Greater Manchester ICB,P84679,Willowbank Surgery,2632.234303,5.2121,60.9756,50,1.779,64.4737,85.7143,1.9195,83.871,2.8497,1.9195,0.2341,0.9067,54.946,7.5174,11.985,84.2795,92.5926,0.9363,1.4045,18.1995,0,89.3519,91.6667,90.4762,95.2381,25.6827,1.3577 Greater Manchester ICB,P84683,The Doc's Surgery,7393.207885,2.8794,71.6981,59.6491,0.8967,38.56,58.3333,0.6252,75,0.5116,0.2715,0.0905,1.7444,27.0961,1.7269,3.8911,56.1485,69.0476,0.0411,0.6005,4.0171,0.3066,64.3933,92.3077,43.75,81.25,13.0573,0.3866 Greater Manchester ICB,P84684,Jolly Medical Centre,5629.666368,7.6351,45.2174,52.5,1.4981,53.9171,76.4706,2.7437,82.0896,3.5858,0.9763,0.202,3.5634,38.8339,13.3889,13.3311,70.1513,87.6923,0.7406,1.1109,19.2066,0.2943,87.4134,87.4252,93.3333,95.8333,13.3137,1.2624 Greater Manchester ICB,P84689,Longsight Medical Practice,13278.02261,5.4735,48.6339,40.146,1.2557,51.1727,70.1493,1.7474,71.1268,3.0785,1.0287,0.2269,1.5696,45.6993,9.036,9.3722,72.3732,88.1482,0.7716,1.112,15.1595,0.2794,86.511,90.458,91.8129,95.9064,13.1518,0.8926 Greater Manchester ICB,P84690,Dam Head Medical Centre,3601.564796,5.0349,58.7302,54.5455,2.0171,65.7143,69.0476,2.5299,77.4194,4.2837,2.2564,0.4444,1.5661,53.4108,8.2995,11.1111,63.3803,75.6098,0.8889,1.265,12.6209,0.123,91.9436,84,80,94.2857,21.2229,1.5043 Greater Manchester ICB,Y01695,Mp Victoria Mill,5036.740193,5.0577,50.7463,58,1.6302,65.9459,68.8889,1.4112,69.0909,1.3203,2.7981,0.1947,1.6347,61.4262,5.6176,8.2968,75.7009,95,0.7786,1.1679,14.7438,0.2451,85.566,84.2105,91.4286,94.2857,19.4809,0.8273 Greater Manchester ICB,Y02325,Charlestown Md,6093.424624,4.8267,60.5263,37.7049,1.4114,62.5592,62.2951,1.4302,82.2581,1.4913,2.07,0.3576,2.4855,50.582,6.9355,8.3553,56.4039,76.3158,1.0538,1.4114,14.0569,0.1894,86.7885,86.2745,76,88,21.2265,1.1103 Greater Manchester ICB,Y02520,Simpson Medical Practice,5854.361665,4.7345,58.4416,46.6667,1.2978,56.5217,66.2162,1.2803,80,1.4745,1.6135,0.1228,2.2644,47.2988,7.9001,9.5931,62.3274,72.5,0.5963,1.4206,16.9563,0.1759,84.1158,86.6667,72.3077,90.7692,17.1,0.912 Greater Manchester ICB,Y02849,City Health Centre,9149.249835,2.586,61.4286,56.1404,0.6091,59.9016,58.3333,0.2492,82.8125,0.2827,0.1454,0.0208,1.6662,27.562,1.2426,2.1389,59.0604,90.9091,0.0277,0.5468,3.6968,0,70.0483,88.8889,81.8182,90.9091,13.666,0.1523 Greater Manchester ICB,Y02890,Hawthorn Mc,5085.123128,6.9783,53.8462,43.1373,1.3342,62.9771,74.4681,1.6952,79.7619,1.4428,0.8005,0.1884,3.6578,34.07,6.5187,7.079,69.8565,78.7879,0.9104,0.9575,13.4119,1.5385,90.8567,91.8605,91.6667,96.6667,16.0647,0.8005 Greater Manchester ICB,Y02960,New Bank Health,6421.494666,4.5707,49.2537,49.0566,0.9514,43.9394,62.963,1.2122,67.7419,1.121,0.844,0.0921,1.1418,45.6486,7.6484,6.5367,65.5941,54.5455,0.5217,1.9488,11.9784,0.1094,82.9563,87.5,86.3014,93.1507,15.9377,0.4757 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence Humber and North Yorkshire ICB,B81004,"Eastgate Medical Group, Hornsea",15572.77219,7.8198,74.7664,76.178,7.1342,72.6923,73.3083,6.1093,92.8571,7.6646,3.5913,1.4043,1.6885,20.47,11.5572,26.3336,66.7978,82.2469,0.5407,1.033,16.0216,1.503,90.0258,84.2767,77.0925,88.9868,13.1724,3.0103 Humber and North Yorkshire ICB,B81006,Humber Primary Care,20166.71394,8.8086,74.4898,74.092,5.9594,71.6511,73.7024,7.235,88.3721,8.0397,3.9638,1.399,1.4647,30.6344,11.179,22.7061,68.8141,76.8879,0.9052,0.9464,17.0315,1.3863,91.1637,83.0795,77.9923,87.2587,14.79,3.4769 Humber and North Yorkshire ICB,B81009,Market Weighton Group Practice,8484.681966,7.9496,77.4194,81.6239,4.3118,78.2609,79.3651,3.8172,97.8947,5.396,1.6774,0.6452,1.6295,9.6854,7.8282,18.3548,53.3333,79.2717,0.6882,0.7312,9.5232,0.1443,87.8318,81.8182,92.4528,95.283,10.6634,1.828 Humber and North Yorkshire ICB,B81013,Montague Medical Practice,8424.816494,5.5267,67.0683,80.3371,3.1801,61.2676,68.3871,3.5461,85.5263,5.2858,2.5852,0.7779,1.1635,22.7463,7.7805,14.0471,72.0906,80.9339,0.6063,0.9723,12.8842,0.1589,84.3367,80.5,68.2692,84.6154,23.0522,1.7273 Humber and North Yorkshire ICB,B81024,Willerby and Swanland Surgery,10014.54835,6.1376,83.1019,84.2294,5.4506,82.4219,83.7321,4.3449,97.4684,3.0818,1.0373,1.4483,0.4841,5.1621,6.9419,20.5304,66.4021,74.2321,0.3719,0.4599,11.4417,0.4842,89.9296,90.2062,84.9057,89.6226,6.0202,2.3975 Humber and North Yorkshire ICB,B81025,Holderness Health,42894.60252,7.3795,75.4765,83.9454,6.02,78.0401,76.7045,5.4268,97.1564,3.9961,3.474,1.0425,1.1999,35.3572,10.8577,23.5809,64.3626,80.7629,0.6989,0.6519,17.2122,0.2697,81.645,83.558,,,12.6448,2.7516 Humber and North Yorkshire ICB,B81029,The Snaith and Rawcliffe Medical Group,10762.41352,8.5147,76,85.2564,4.7886,84.1463,83.3992,4.0725,95.5752,8.0582,2.3727,0.604,1.8774,11.4887,8.0991,20.8369,69.4569,84.0686,0.4573,0.4055,14.3234,1.278,91.5335,87.5817,85.8156,95.0355,10.744,2.5108 Humber and North Yorkshire ICB,B81034,Leven & Beeford Medical Practice,12225.75241,8.6295,78.6596,80.5233,6.3931,78.7879,77.8689,5.3933,93.1507,7.7852,2.3941,0.6139,1.9151,12.402,9.4665,21.0646,67.2804,82.4351,0.4823,0.3683,15.6432,2.2054,89.4911,80,80.3571,90.4762,9.6651,2.5783 Humber and North Yorkshire ICB,B81037,The Park Surgery,16020.56583,9.6115,79.1855,80.4706,6.0956,81.7935,80.9677,5.1037,96.0784,7.8754,2.6955,1.1288,1.1088,14.4918,10.071,23.028,73.2762,83.7297,0.4447,0.4926,17.1694,4.0795,90.3007,76.0956,88.7324,93.4272,11.3668,2.9349 Humber and North Yorkshire ICB,B81041,Gilberdyke Health Centre,6402.58096,7.4111,76.7176,88,3.5886,76.1628,79.7101,4.1653,100,7.654,2.6434,0.8491,0.8802,11.7145,9.1304,19.9295,78.5066,72.7273,0.2403,0.5928,15.2315,0.2944,90.1086,75.3623,88.5057,93.1034,13.517,2.371 Humber and North Yorkshire ICB,B81042,Manor Road Surgery,14169.36552,6.83,83.3622,81.8182,5.434,80.7692,82.6241,4.0388,96,5.9546,1.946,1.0574,0.3446,10.8137,7.2444,18.0643,63.121,78.6184,0.6168,0.8812,11.4321,0.7267,91.0805,87.7359,93.007,97.9021,8.72,2.1589 Humber and North Yorkshire ICB,B81051,Old Fire Station Surgery,11074.87002,6.3101,82.8974,84.466,6.7681,79.5082,80.7692,4.4958,93.8462,5.8644,1.8237,0.9557,0.1808,10.2021,7.2163,17.6614,61.4458,79.089,0.3803,0.7412,9.2881,0.4138,86.96,77.0161,84.6154,94.8718,7.0511,2.3503 Humber and North Yorkshire ICB,B81061,The Ridings Medical Group,41328.5953,6.5845,79.2496,81.8792,4.9389,82.5431,83.792,3.7342,92.381,5.8056,1.9348,1.0909,0.8077,6.6073,7.7024,18.8409,69.5444,83.3156,0.3436,0.5304,12.5146,0.7813,90.3976,81.5939,86.0952,94.0952,8.4732,2.0743 Humber and North Yorkshire ICB,B81068,Bartholomew Medical Group,18286.14687,6.2217,71.7172,80.3483,4.5517,64.8506,64.6688,4.1368,95.7746,4.8654,2.8299,0.8012,2.8979,22.4621,8.1206,17.8827,68.5782,85.1914,0.7899,0.7785,13.1117,0.1838,92.3067,87.1212,84.9765,93.4272,18.9977,2.1593 Humber and North Yorkshire ICB,B81069,Drs Reddy & Nunn,35815.26661,8.7713,72.9201,69.4181,5.5836,71.5596,74.7082,5.9274,83.4171,6.5568,4.2232,1.2146,1.351,34.2819,11.0121,23.0893,70.0899,82.6772,1.2744,1.3118,22.9668,3.4059,90.7616,86.2845,75.8242,92.0879,19.093,3.3786 Humber and North Yorkshire ICB,B81082,North Beverley Medical Centre,5632.918379,7.0968,80.2281,83.0601,4.7634,81.25,83.9506,3.7614,93.617,2.782,0.9558,0.9095,1.297,8.0505,6.8569,14.7063,63.7807,81.2261,0.2775,0.4162,11.7669,0.249,88.5627,81.1475,88.7097,93.5484,6.1632,2.2815 Humber and North Yorkshire ICB,B81088,Howden Medical Practice,7473.037509,7.1148,77.193,87.5556,4.2553,80.3493,81.9209,4.5415,95.5224,6.9978,2.2148,0.7092,0.7709,10.9778,7.8886,19.8333,76.3424,84.7896,0.6221,0.4106,14.8555,0.3075,89.9703,85.3333,89.4737,94.7368,9.4694,2.3392 Humber and North Yorkshire ICB,B81092,"The Medical Centre, Driffield",12547.0751,9.9782,77.6753,84.1954,5.6213,78.7234,75.4647,5.3631,94.6809,7.3215,2.4817,1.0993,3.0153,14.894,8.752,19.9201,71.0456,77.2296,0.6329,0.5746,12.4244,3.8027,90.9772,75.1412,78.5276,74.2331,9.7302,2.9647 Humber and North Yorkshire ICB,B81100,Dr Ac Milner,4610.458925,6.9179,83.9161,85.8696,5.5218,81.8966,81.6901,5.2299,97.4359,4.829,1.9217,1.5082,0.2999,12.0047,8.4373,16.1275,57.6642,78.9683,0.3649,0.6081,9.2981,0.5938,92.3389,74.0741,82,96,8.0279,3.1136 Humber and North Yorkshire ICB,B81101,Greengates Medical Group,23500.34644,7.2276,78.3092,80.9677,4.7139,75.9701,77.4951,3.7367,95,5.0032,2.0836,1.0805,0.525,12.5257,7.8856,17.5083,59.5124,81.0526,0.5381,0.7146,9.4026,0.4616,84.587,79.8095,79.7753,90.6367,10.7112,2.3204 Humber and North Yorkshire ICB,B81619,Park View Surgery,2777.471572,6.2568,79.4393,83.0769,4.757,86.9565,84.3137,2.7577,100,5.4008,1.1375,0.6894,2.4432,13.6652,7.0976,19.2003,92.3788,97.5807,1.172,0.7928,24.5607,4.6964,95.7241,78.8462,93.3333,90,8.9569,1.6891 Humber and North Yorkshire ICB,B81653,King Street Medical Centre,7965.564055,7.4915,78.6477,79.6703,5.397,76.699,82.7586,4.3338,92.5926,7.338,2.4899,1.6824,0.4687,14.5006,9.0067,18.0619,74.7014,82.4228,0.5384,1.5074,14.9507,0.6044,92.6424,74.359,86,93,8.6748,2.786 Humber and North Yorkshire ICB,B81666,Dr Mitchell,2090.484705,6.443,83.6735,83.5821,5.6079,88.8889,90.9091,3.8527,100,3.8249,1.0274,0.7277,1.3588,4.8532,5.6275,17.423,83.0986,83.7398,0.1712,0.4709,6.0393,1.5212,94.2689,84.4444,95,65,4.0741,2.1404 Humber and North Yorkshire ICB,B81008,East Hull Family Practice,42640.37696,6.6169,69.6994,72.2424,3.7152,67.7009,70.4036,3.694,88.1119,4.3706,3.384,0.8241,0.8039,37.755,9.312,15.8863,66.6466,81.4778,0.7526,0.8374,13.3144,0.8686,86.6745,86.2595,72.2334,85.3119,28.3586,1.8072 Humber and North Yorkshire ICB,B81011,Kingston Health (Hull),11593.2495,7.4291,71.7262,73.7069,3.9505,78.2353,77.957,3.5377,91.3044,3.223,3.3117,0.6388,2.1487,38.3614,9.3977,16.9615,67.3586,76.8997,0.6584,0.8058,13.3916,0.1533,89.4547,89.6861,71.1268,86.6197,18.6096,1.5723 Humber and North Yorkshire ICB,B81017,Kingston Medical Group,21293.14983,4.6894,57.3209,53.3333,1.7977,55.1325,63.3166,2.1256,80.4348,1.327,2.7475,0.5371,0.4864,52.7961,6.658,10.0119,61.4839,77.3756,0.6275,2.0352,10.1716,0.1452,81.5464,88.0342,72.8261,86.413,24.2701,1.0232 Humber and North Yorkshire ICB,B81018,Orchard 2000 Group,11018.71687,8.3247,62.9771,66.6667,2.8328,66.7742,64.6667,4.0177,87.8505,3.2588,4.1254,0.4739,1.0815,52.4281,9.9986,15.8552,48.2344,76.9912,1.0233,0.8509,15.9914,0.3345,89.5399,87.7273,83.0769,87.6923,28.7182,1.5511 Humber and North Yorkshire ICB,B81020,The Sutton Manor Surgery,9470.063675,6.9614,78.5235,71.7703,4.4681,78.9256,77.2455,4.4931,94.4444,5.4206,2.9162,0.8761,2.0561,31.7955,10.7022,19.7247,72.9483,83.0769,1.214,0.8135,17.9283,0.7082,91.2453,87.3418,81.8182,90.9091,13.5628,1.9524 Humber and North Yorkshire ICB,B81027,St Andrews Surgery,10140.31221,5.3513,60.3922,67.8363,3.2206,63.6015,68.0556,4.0382,85.2941,3.7248,4.1249,0.7308,1.1206,50.111,8.9766,14.79,63.1472,77.512,0.8423,1.2882,18.3554,0.2046,81.3714,88.3495,83.4862,90.8257,28.042,2.1553 Humber and North Yorkshire ICB,B81032,Wilberforce Surgery,6784.332772,5.0062,50.4854,53.5211,2.1677,55.9829,67.2131,1.9205,82.8947,1.7661,2.6051,0.3423,0.4587,50.7026,7.6906,9.8878,50,60.4167,0.8177,1.8064,11.1927,0.3867,80.0734,90,63.4921,73.0159,29.6407,0.9317 Humber and North Yorkshire ICB,B81035,The Avenues Medical Centre,6912.621231,5.3838,75.641,81.0458,3.8979,70.8171,77.2358,2.6772,88.8889,4.0123,2.8853,0.5965,1.161,25.0554,6.7611,15.12,51.4518,75.5459,0.43,1.0126,9.5954,0.2168,88.9063,85.3448,78.6667,89.3333,13.3423,1.7617 Humber and North Yorkshire ICB,B81038,The Oaks Medical Centre,9322.635521,6.8263,70.3448,73.822,3.6231,69.962,71.831,4.4021,83.5294,3.2784,3.8704,0.878,3.0764,37.6112,10.1627,16.4338,57.4305,69.9301,0.7914,0.7543,11.2182,0.9647,86.0005,84.1122,74.1667,83.3333,16.3269,2.2382 Humber and North Yorkshire ICB,B81040,Dr Jad Weir & Partners,18554.75729,6.757,67.0213,70.2454,3.5388,71.0938,77.5194,4.0276,96.6667,3.2513,3.6496,0.8538,1.8923,47.6841,10.0718,15.5892,61.1111,75,0.7951,0.6387,14.7256,0.8922,90.1343,90.8602,79.3722,86.9955,26.6672,1.6423 Humber and North Yorkshire ICB,B81046,The Bridge Group Practice,10646.8149,7.7233,63.197,63.4409,3.5321,66.6667,71.9178,3.7385,87.3563,2.0589,4.7018,0.6766,1.8936,53.9866,10.2125,17.2936,62.5,84.4262,0.5963,1.5023,19.0111,0.231,91.7423,90.6736,81.6794,90.0763,30.6562,1.9495 Humber and North Yorkshire ICB,B81047,Wolseley Medical Centre,9043.386156,8.0695,63.2287,66.8966,2.923,71.8876,75.5906,3.0678,89.5349,3.3733,3.1863,0.553,0.3081,45.7834,9.5551,14.4042,72.6688,88.8199,0.711,1.343,13.8664,0.2219,86.9417,85.2459,82.7273,90,24.0246,1.6195 Humber and North Yorkshire ICB,B81048,Modality Partnership (Hull),59562.11288,6.4954,73.227,77.1044,3.5432,64.5918,72.1443,3.1859,78.2074,4.0346,2.8338,0.599,1.0004,31.7503,8.0381,15.7857,55.4699,75.7726,0.6743,0.7584,15.1161,0.6153,87.5696,82.4278,74.3976,88.7048,17.9852,1.6376 Humber and North Yorkshire ICB,B81052,Princes Medical Centre,7600.727982,4.1517,63.0058,63.7795,1.8828,59.7523,67.2,2.0459,54.9451,1.756,1.4434,0.2259,1.2857,36.7982,5.9195,11.8112,68.1088,84.8485,0.2385,1.0669,15.5378,0.2646,82.5496,84.375,75.7143,92.8571,26.1085,0.7908 Humber and North Yorkshire ICB,B81054,Clifton House Medical Centre,10551.24251,6.0939,63.7584,64.467,4.1844,69.7872,72.549,4.684,90.3226,5.3707,4.3592,0.8244,0.8802,42.8822,10.4176,14.9388,75.3099,78.9474,0.4372,1.4739,15.605,0.4895,88.6952,88.5932,87.6923,94.6154,22.663,2.0859 Humber and North Yorkshire ICB,B81074,City Health Practice Ltd,15519.84949,6.5576,69.958,70.6667,4.0766,68.7179,75.3191,3.8913,87.037,4.5333,4.702,0.6254,1.7656,44.1527,9.5874,17.7656,69.8041,83.3693,0.6254,0.7721,12.9891,0.126,90.6056,85.4489,77.0833,88.0208,38.4457,1.9997 Humber and North Yorkshire ICB,B81075,Hastings Medical Centre,3873.419124,7.8425,75.3623,76.4045,4.6962,79.3814,77.2727,6.0757,88.4615,3.5204,4.4321,0.7338,3.2416,27.3472,9.6518,21.808,54.9053,70.9877,0.7044,0.8512,12.3737,0.3589,84.0173,84.3137,66,82,13.0406,2.2307 Humber and North Yorkshire ICB,B81085,Burnbrae Medical Practice,5704.664447,6.9019,77.2277,78.7234,2.8492,76.8362,76.5766,3.8113,91.8033,2.4335,2.6827,0.6476,0.7886,27.6589,8.9151,17.9834,54.6753,81.1881,0.407,0.5735,9.4863,0.432,88.6329,84.5455,64.3836,87.6712,14.4452,2.0722 Humber and North Yorkshire ICB,B81097,Delta Healthcare,2784.444466,5.7209,68.2927,71.1538,3.5845,68.932,81.3953,2.9261,95.4546,4.1289,3.4016,0.8778,0.6352,34.0556,8.1166,17.9225,55.8747,84.1122,0.7681,0.5487,10.5263,0.2997,91.0017,87.5,87.5,93.75,21.5859,1.5362 Humber and North Yorkshire ICB,B81104,Campus Health Centre,5047.800435,4.281,72.3684,75.9259,1.0018,51.8797,77.3585,0.8064,92.8571,0.8942,0.6842,0.281,0.7741,24.2054,2.325,4.4716,55.9871,66.6667,0.1588,0.5376,6.4594,0,88.7097,83.7838,89.2857,96.4286,11.7144,0.4887 Humber and North Yorkshire ICB,B81112,James Alexander Family Practice,15396.86413,6.9508,66.0767,62.8692,3.0486,72.3831,76.3819,3.5193,85.3659,4.4648,3.4962,1.4741,2.4465,44.2266,9.1373,15.4202,73.9902,79.1209,1.2117,1.0033,20.1325,1.2258,89.9421,82.8571,65.2695,84.4311,35.3286,2.0607 Humber and North Yorkshire ICB,B81119,Goodheart Surgery,7534.211814,5.0539,64.7059,55.6391,3.4557,77.7273,82.1429,3.9494,97.1015,2.8121,4.8596,0.3857,2.0838,47.3083,9.3378,15.6125,60.2549,80.5369,1.2188,0.9411,13.7973,0.2286,90.2362,87.6923,92.9412,90.5882,25.5796,1.3422 Humber and North Yorkshire ICB,B81616,Dr Gt Hendow's Practice,3259.917845,6.4787,78.1609,74.6032,3.7077,78.0488,75.8621,4.8841,96.9697,2.5862,2.7451,0.6061,1.1343,39.3638,9.6487,17.2906,63.5854,82.8125,0.6061,0.8556,14.2468,0.6695,94.1799,89.7059,90,87.5,14.2479,2.246 Humber and North Yorkshire ICB,B81631,Drs Raut and Thoufeeq,5008.208334,6.1009,67.1329,60.6742,3.6822,71.3333,71.2329,3.2946,90.9091,3.5413,3.9836,0.2153,1.5739,44.1219,9.4147,21.3824,53.4231,80.3922,0.7106,0.4307,10.0337,0.3734,87.8023,95.9184,61.9048,85.7143,26.9645,1.3351 Humber and North Yorkshire ICB,B81635,Laurbel Surgery,3778.666026,7.0092,81.8713,86.7347,4.5596,85.1064,82.0896,5.0694,100,3.2324,3.0586,0.9346,1.395,20.5016,10.4503,26.0833,61.9048,83.3333,0.5098,0.2549,19.5645,0.0564,91.6962,87.5,89.4737,98.2456,7.3999,2.1524 Humber and North Yorkshire ICB,B81645,East Park Practice,2708.286633,6.4054,71.0526,76,2.3793,71.4286,77.2727,2.6278,88.2353,2.4368,2.3793,0.2131,0.7356,34.7955,7.5147,12.5355,66.8853,75,0.4617,0.7102,12.6897,0.1182,88.6,85.7143,82.7586,89.6552,13.1074,1.2074 Humber and North Yorkshire ICB,B81675,Haxby Group Calvert & Newington,14346.37777,5.518,65.2632,64.9289,1.609,56.6138,62.5668,2.4029,76.8786,1.6108,2.3462,0.2906,1.7039,40.2708,6.7082,11.1001,49.5965,73.8916,0.4324,1.0278,7.486,0.1941,79.4814,87.1287,51.145,80.916,26.8782,1.0845 Humber and North Yorkshire ICB,Y02747,Haxby Group Hull,14166.02795,5.774,71.1475,68.8797,1.3951,76.6749,74.7619,1.5716,89.1239,1.4012,1.2958,0.4136,1.1429,27.4883,6.4643,9.1756,54.9268,74.6914,0.579,0.5404,9.456,0.2118,87.9185,86.0335,56.1644,88.3562,17.1941,0.8382 Humber and North Yorkshire ICB,B81003,Beacon Medical,14264.58848,7.749,75.0503,75.9259,4.1033,79.558,78.2427,4.1033,94.6237,6.7091,2.6601,1.0843,1.1404,24.4469,7.8577,17.1308,73.6875,80.7047,0.4135,0.6085,10.3773,0.2308,90.7864,81.791,92.053,89.404,14.6053,3.019 Humber and North Yorkshire ICB,B81012,Dr Ap Kumar,4063.340438,7.8615,67.7165,61.039,3.8627,70.7865,73.3333,4.1692,92.5926,5.7463,4.6291,0.7664,1.903,42.1302,8.9701,23.8504,81.5951,89.6825,0.9197,1.4715,14.6642,0.4937,92.2881,86.8421,89.5833,95.8333,25.7387,2.6364 Humber and North Yorkshire ICB,B81015,Clee Medical Centre,18674.04845,7.9276,67.0669,68.1934,4.0594,73.5887,74.7634,3.7002,92.7419,7.8965,3.7361,0.9939,8.1865,31.6004,8.9365,17.7763,73.7839,86.6873,0.8502,1.0538,19.9941,2.5202,91.6677,91.1308,86.1607,93.3036,21.7278,2.6883 Humber and North Yorkshire ICB,B81016,Pelham Medical Group,10898.7942,6.3279,72.6688,68.1818,4.1858,71.5543,73.1429,2.8295,88.7097,6.5596,2.2734,0.5464,2.358,36.5964,7.7731,13.8062,68.6463,81.8519,0.5952,0.9757,19.7291,2.5732,90.5456,86.076,70.6897,91.3793,22.5767,2.2149 Humber and North Yorkshire ICB,B81030,Scartho Medical Centre,26469.24565,7.1487,76.0638,70.9571,4.8083,74.7788,81.4499,4.4795,95.7447,9.2683,2.5891,1.163,1.0158,14.1467,8.6487,19.603,76.2314,86.8545,0.5836,0.7767,12.7382,3.1894,91.3429,84.0483,80.5471,91.1854,23.0676,3.2384 Humber and North Yorkshire ICB,B81031,Fieldhouse Medical Group,22796.86096,6.6338,74.5098,55.2817,4.4887,79.8732,79.2453,3.5835,94.8718,7.5333,2.6266,0.5816,1.2691,28.9348,8.3157,17.2936,72.3354,87.5844,0.5206,0.6754,20.2538,1.1016,91.2391,87.0079,90.1515,94.697,28.6622,2.303 Humber and North Yorkshire ICB,B81039,The Roxton Practice,37128.70817,7.4976,70.0833,56.1275,3.6663,70.6449,71.2871,3.6721,91.8129,7.2781,2.8426,1.0616,1.8752,29.0582,9.4668,17.0147,71.9686,87.1219,0.8296,0.9427,18.1168,0.1778,86.8655,81.7215,88.125,93.75,20.1091,2.8977 Humber and North Yorkshire ICB,B81087,Birkwood Medical Centre,8868.563068,6.6973,71.9298,70.2564,3.4397,76.9547,76.9737,3.177,94.6429,5.1659,3.0644,0.5003,1.5341,32.528,9.0881,16.3227,68.599,81.4815,0.7505,0.788,10.2849,0.2328,90.5309,87.6238,84.1121,91.5888,14.693,1.9762 Humber and North Yorkshire ICB,B81091,Littlefield Surgery,5381.230279,5.9766,76.3285,80.7407,4.1218,88.75,90,3.9176,100,8.3847,2.5251,0.4085,0.9824,28.2298,6.4771,15.9488,76.681,96.25,0.7984,0.5756,20.6534,0.2901,94.146,85.8407,94.2308,88.4615,14.6363,2.0238 Humber and North Yorkshire ICB,B81108,Dr A Sinha,4979.066871,8.7768,74.5342,76.3636,3.5738,70.6294,70.2381,3.9027,94.5455,4.8156,4.1,0.7454,2.5041,27.0597,8.4847,15.1283,51.6423,81.6901,0.8112,1.1182,13.3737,0.1562,85.5079,90.7217,83.0508,93.2203,18.0435,2.3241 Humber and North Yorkshire ICB,B81606,Stirling Medical Centre (Mathews),5012.441695,6.3632,64.3939,60.2273,2.4118,65.035,69.863,2.4801,95.3488,4.7886,3.0717,0.6143,1.3597,44.4915,9.0485,12.4687,64.3836,77.2727,1.4562,1.2059,16.7011,0.9247,89.913,91.5663,91.0714,96.4286,27.0247,1.7975 Humber and North Yorkshire ICB,B81642,Dr Oz Qureshi,5180.551238,7.1117,77.3684,76.2295,4.763,74.3363,80.4598,4.8786,93.9394,8.0507,4.8555,1.6185,2.2608,20.7591,9.6122,22.6358,64.8907,84.2105,0.4856,0.948,16.322,0.5806,92.4404,88.3212,84.8485,95.4545,14.0318,3.3295 Humber and North Yorkshire ICB,B81655,Greenlands Surgery,3031.968063,6.3154,76.5306,43.0556,3.5692,74.2857,75.8621,3.1586,97.6191,4.7815,3.2533,0.6633,1.2366,32.2472,6.3994,15.2243,76.6332,86.9048,0.8844,0.4422,11.5416,0.2634,92.5841,83.6364,89.2857,92.8571,17.5758,2.1478 Humber and North Yorkshire ICB,B81656,Raj Medical Centre,7217.377689,9.1657,60.1156,55.5556,2.6316,61.9469,59.4059,3.1668,92.5532,3.0039,4.8766,0.6691,0.6629,46.8241,8.6277,11.6711,66.5676,65.1786,0.9813,1.1448,13.8181,0.0503,88.0279,83.3333,88.4615,91.0256,27.5674,1.9923 Humber and North Yorkshire ICB,B81663,Core Care Family Practice,2902.350993,7.8808,71.1538,74.2424,2.7689,70.6522,72,3.5854,75.8621,5.4586,3.0529,0.568,1.3423,27.3673,8.5398,15.8325,62.5317,76.4706,0.852,1.1005,9.7539,0.2791,90.4221,95.7746,88.8889,94.4444,21.4774,2.4849 Humber and North Yorkshire ICB,B81665,Healing Partnership,2050.607388,6.3257,80.6818,73.2143,4.3166,89.0411,88.0952,2.7507,94.7368,2.9567,2.0313,0.5502,0.5808,13.003,6.7398,14.981,74.4027,95.082,0.3809,0.8887,13.6748,0.1018,92.5561,94.4444,83.3333,91.6667,8.8633,1.7774 Humber and North Yorkshire ICB,B81697,Weelsby View Health Centre,2944.321418,8.7733,67.0213,67.6471,3.3155,82.3529,78.1818,3.2799,96.4286,3.7293,2.9234,0.5348,1.0589,38.0944,8.9964,15.5437,75.8427,83.75,0.713,0.7843,17.081,0.4429,93.9513,91.3044,91.1765,97.0588,22.4146,2.5668 Humber and North Yorkshire ICB,Y01948,Open Door,3915.038121,5.1461,39.3939,34.7826,1.2597,43.4783,52.1739,1.666,90.4762,1.3541,2.6412,0.1219,0.9529,62.9032,5.1015,6.1357,53.7931,66.6667,1.9098,2.5193,8.2247,0.6608,83.4123,100,75,85,50.9146,0.8533 Humber and North Yorkshire ICB,Y02684,Quayside Medical Centre,4509.780404,5.7921,46.1538,48.2759,1.281,49.6599,54.902,2.2685,76.9231,1.4301,3.9498,0.2936,1.2557,55.276,6.5038,9.4743,53.9394,80,0.854,0.854,11.2313,0.6205,93.4122,90.9091,77.1429,91.4286,44.6763,0.9608 Humber and North Yorkshire ICB,B81005,The Central Surgery Barton,17455.18686,7.8926,76.087,87.2483,4.1271,72.2581,72.3032,3.7852,93.985,6.556,2.8949,0.737,0.8051,18.7062,9.227,20.7358,62.8753,74.344,0.5601,0.6309,12.2134,0.4801,90.524,85.8871,81.07,95.4733,12.6401,2.2699 Humber and North Yorkshire ICB,B81007,Winterton Medical Practice,10340.11682,7.6309,76.3341,72.7273,4.5756,78.7755,74.6544,4.2897,90.1639,5.2124,2.5023,0.8273,0.8301,17.1115,9.0284,19.569,66.9818,84.5977,0.5209,0.9396,9.3018,0.4955,90.3436,88.3817,84.7328,94.6565,13.7348,2.5227 Humber and North Yorkshire ICB,B81022,Cambridge Avenue Medical Centre,14586.13929,8.5536,72.9885,84.2105,5.4678,69.6275,73.1061,4.9257,93.4066,6.375,3.3225,1.1695,0.673,19.0245,8.884,21.7395,61.256,76.2551,0.3485,0.9604,10.3945,2.5174,87.1912,78.8571,79.3103,87.931,12.3369,2.7262 Humber and North Yorkshire ICB,B81026,Ancora Medical Practice,21593.00709,6.4638,69.1928,77.9126,3.3578,67.378,71.8266,3.751,82.8326,5.0137,2.5269,0.7325,1.511,29.2444,8.1593,16.0317,69.8106,86.2676,0.4326,0.9046,17.0018,0.2797,89.6272,87.3362,84.3621,90.535,24.947,2.2123 Humber and North Yorkshire ICB,B81043,South Axholme Practice,15153.02867,6.3396,77.6488,76.1693,4.8368,73.7838,78.2738,4.5412,93.3333,3.9312,1.5451,0.6449,0.4422,11.4117,8.4975,18.6215,75.1047,89.8876,0.2083,0.5105,15.2665,0.0382,87.0254,86.3014,93.0851,96.8085,9.952,2.6266 Humber and North Yorkshire ICB,B81045,Ashby Turn Primary Care Partners,13904.61143,6.4091,74.6606,67.354,3.3034,73.7705,76.2332,4.2816,89.8305,3.4089,2.9907,0.7377,1.2934,26.4795,9.8118,18.9785,71.2783,82.618,0.8178,0.9381,14.5278,0.038,88.8478,86.5714,84.6154,89.011,18.0579,2.3653 Humber and North Yorkshire ICB,B81063,Bridge Street Surgery,7881.803264,7.4037,78.9157,77.9279,4.7778,79.4286,79.878,4.9306,87.7551,4.8865,2.2222,0.8611,1.4972,16.3929,8.9579,21.3056,56.5289,79.6296,0.7778,0.6528,9.2794,0.0518,90.6302,82.0652,88.1188,96.0396,10.9416,2.4722 Humber and North Yorkshire ICB,B81064,Church Lane Medical Centre,10811.41788,7.0541,73.3129,83.6364,3.4847,67.5676,72.093,3.8006,84.6847,4.4686,2.2211,0.8687,1.7023,25.5051,9.4756,14.9358,75.8148,89.9135,0.3653,0.8588,9.2753,0.339,88.3537,88.2813,81.1189,95.8042,16.5513,1.9546 Humber and North Yorkshire ICB,B81065,Trent View Medical Practice,12212.55493,6.8927,70.3463,69.2053,4.1726,69.7674,72.0524,4.4668,88.5417,4.4712,3.0314,1.1858,1.1151,19.0806,9.4404,18.117,57.2976,69.7624,1.3998,0.6865,14.3445,0.2026,87.5517,87.8571,75.3012,88.5542,14.1249,2.4875 Humber and North Yorkshire ICB,B81090,The Oswald Road Medical Surgery,4800.762545,7.2861,69.0141,75.7576,3.3377,57.8947,69.5122,3.6411,92.8571,8.2401,3.2727,0.8236,1.4461,29.2876,10.7862,17.7937,73.1343,88.0795,0.6285,0.7586,13.3424,1.0291,91.1307,86.0465,88.1579,94.7368,19.6177,2.059 Humber and North Yorkshire ICB,B81099,The Kirton Lindsey and Scotter Surgery,10641.212,7.6571,76.6147,85.0847,4.2987,73.3564,74.0088,4.2133,86.8421,3.4335,1.784,0.7781,1.1098,14.5589,7.6949,17.9161,63.9288,80.7963,0.7022,0.6832,12.0347,0.2486,87.2213,84.9558,81.4516,83.0645,11.0457,2.3534 Humber and North Yorkshire ICB,B81109,Riverside Surgery,13045.19259,6.1698,75.1515,76.489,4.2319,68.0851,74.3697,4.8778,86.8421,3.6623,1.971,1.1263,1.2973,16.4327,8.8797,17.1346,61.2698,65.587,0.9689,0.911,13.6813,0.1361,83.8764,82.0069,75.9259,81.4815,12.2665,2.8571 Humber and North Yorkshire ICB,B81113,Cedar Medical Practice,10307.41267,8.3083,71.0526,78.0488,3.7551,75.8278,77.0186,4.476,76.1468,4.0038,2.6361,0.8715,3.6199,28.5912,9.3758,18.2806,73.0466,85.8553,0.6025,1.0114,12.5463,1.1414,90.7959,88.0184,88.189,91.3386,20.605,2.195 Humber and North Yorkshire ICB,B81118,West Common Lane Teaching Practice,8388.031816,6.1749,70.8502,79.1667,4.0362,70,75.7353,4.0744,88.1579,6.4243,2.6611,0.6366,4.0505,32.9479,9.4802,17.316,75.5009,84.7328,0.4838,0.6366,22.1614,0.5654,89.7254,84.8624,93.5185,97.2222,20.5375,2.3173 Humber and North Yorkshire ICB,B81617,The Birches Medical Practice,9400.796177,5.5911,58.2011,55.3957,2.2285,51.8414,64.4628,2.6763,76.8519,3.5015,2.166,1.0726,1.4312,32.9292,8.1889,11.9754,67.0157,84.6154,0.604,0.8643,14.1587,0.5147,82.8708,88.0829,87.156,95.4128,27.6178,1.7703 Humber and North Yorkshire ICB,B81628,Barnetby Medical Centre,2956.374207,5.8522,76.087,77.907,4.8968,80,80,4.2672,93.3333,6.3323,2.0287,0.7345,1.1475,16.8484,10.151,20.007,59.0308,84.7458,0.5247,0.6996,7.9473,0.1351,85.1129,84.4444,86.3636,86.3636,10.6391,2.3435 Humber and North Yorkshire ICB,B81647,West Town Surgery,3352.545958,6.9163,76.7123,82.2917,4.0411,75.2809,73.2394,3.7524,100,2.0695,3.2393,0.3849,0.9371,18.5362,8.7692,17.864,85.0427,88.764,0.3528,1.796,16.9075,0.5246,91.0967,87.6923,95.2381,100,14.5406,2.3092 Humber and North Yorkshire ICB,B81648,The Killingholme Surgery,1649.62797,7.0627,69.863,34.0426,3.6205,80.4878,84.375,3.5581,85.7143,3.7262,3.4956,0.3121,1.0646,23.5671,9.488,19.3508,74.2958,92.3077,0.2497,0.5618,11.5589,0.1374,92.7607,82.9268,83.3333,95.8333,20.595,1.6854 Humber and North Yorkshire ICB,Y02787,The Oak Tree Medical Practice,6511.442211,3.6671,52.6316,39.2857,0.848,41.806,54.5455,1.5456,67.2566,0.8874,1.2994,0.2189,1.2017,36.8844,4.0656,6.9211,67.6289,80.9524,0.4651,0.7249,6.3783,0.3226,73.9742,86.1539,75.6098,92.6829,33.4375,0.766 Humber and North Yorkshire ICB,B81036,Pocklington Group Practice,16946.93524,6.7026,80.8163,79.798,5.013,80.4067,80,3.4177,93.4783,2.4722,1.7034,0.5191,1.5294,9.8821,6.3784,15.9204,73.0632,88.2522,0.4597,0.6111,11.9982,0.7587,90.7312,81.2287,86.3636,91.4773,8.5324,2.5525 Humber and North Yorkshire ICB,B82002,Millfield Surgery,7785.505218,6.4007,80.597,81.8182,5.9359,78.3505,79.8851,3.6539,90.3226,6.1957,1.6884,1.0289,0.4426,11.4047,6.5615,17.5175,72.051,86.0465,0.7255,0.8046,12.423,1.8448,89.8238,78.2895,81.0127,91.1392,9.7538,3.0999 Humber and North Yorkshire ICB,B82005,Priory Medical Group,53756.37507,6.7618,72.4837,74.1302,3.5421,67.0335,70.6844,2.6806,87.6209,4.8571,1.5261,0.6269,1.4667,14.091,5.9529,13.3035,65.8409,77.1919,0.5515,0.99,14.2312,2.0375,82.3605,78.2039,75.6,81.6,14.8952,1.8379 Humber and North Yorkshire ICB,B82018,Escrick Surgery,6021.821758,6.5542,80.8081,79.6954,4.7435,80.625,80.3681,3.5074,93.2203,5.3734,1.0816,0.5099,0.9079,7.893,6.9576,17.0736,79.4152,86,0.2472,0.3554,11.2099,0.8231,83.8017,84.1379,75,96.875,6.1161,2.8121 Humber and North Yorkshire ICB,B82021,Dalton Terrace Surgery,9275.279913,7.3118,77.4194,78.0591,3.9795,75.731,80.7882,2.6872,85.7143,4.882,1.8462,0.5026,0.9838,10.9504,5.0535,16.0103,68.9684,82.7298,0.5744,1.4462,8.3374,1.1098,86.7521,83.4532,77.027,83.7838,9.4809,2.1231 Humber and North Yorkshire ICB,B82026,Haxby Group Practice,36089.95463,6.954,80.137,74.3309,3.9731,76.9565,77.5281,4.2066,90.9091,3.324,2.1351,1.016,0.6201,10.5551,7.3173,17.9304,60.4574,78.238,0.4762,0.7886,11.2599,1.4953,84.0826,81.9444,82.4176,84.8901,9.9979,3.1906 Humber and North Yorkshire ICB,B82031,Sherburn Group Practice,9509.574617,7.8963,78.2609,80.4082,4.1923,78.9757,78.4314,2.9144,95.7143,3.4421,1.5078,0.5424,0.9021,9.6389,6.2653,13.3952,59.2308,72.8223,0.3218,0.6252,13.6024,1.109,85.9059,77.6398,77.7778,87.7778,10.3877,1.8847 Humber and North Yorkshire ICB,B82033,Pickering Medical Practice,12055.97044,8.6919,80.9074,81.25,5.7526,75.5906,82.377,4.7406,92.5,9.1655,2.0604,1.4131,0.6927,14.2628,8.5091,21.0502,69.1801,80.721,0.7476,0.8387,19.7059,1.8225,88.9763,77.8481,78.6765,90.4412,10.4453,3.3823 Humber and North Yorkshire ICB,B82041,Beech Tree Surgery,16172.42748,8.6484,79.0507,77.75,4.5687,78.678,78.8644,3.6075,82.3529,5.1904,2.2906,0.9549,0.5947,12.5887,8.0018,16.702,55.5941,72.4085,0.4681,0.7739,14.4435,2.2821,86.2654,80.4233,77.6042,85.9375,10.7975,2.7462 Humber and North Yorkshire ICB,B82047,Unity Health,10867.74531,3.8356,78.6127,74.359,1.1615,30.7563,80.7692,0.9252,91.8367,0.953,0.5266,0.2953,0.9685,8.2513,1.7402,4.5327,72.3539,84.375,0.1083,0.4331,4.4748,1.2388,90.1258,78.3784,90.3846,94.2308,4.61,0.7185 Humber and North Yorkshire ICB,B82064,Tollerton Surgery,3308.291537,7.7289,80.1282,82.7273,5.3901,73.6264,82.4176,2.7234,100,6.2521,1.5886,0.3688,0.7815,8.7022,5.8961,18.8653,72.1925,89.4231,0.6525,0.7376,12.7421,1.2764,92.1647,83.0509,87.8788,90.9091,6.7932,2.4397 Humber and North Yorkshire ICB,B82068,Helmsley Surgery,3810.662756,7.9679,79.7546,77.8846,5.3454,78.022,80.5195,4.6053,100,9.2208,1.864,0.9594,0.487,14.4991,7.529,19.3531,75.6048,81.4286,0.4386,0.7401,13.8312,0.5163,90.465,80.3419,86.3636,93.1818,10.969,4.3311 Humber and North Yorkshire ICB,B82071,The Old School Medical Practice,6690.257096,7.1151,84.345,78.7129,5.4928,78.125,79.0123,3.2584,96.1539,6.2193,1.2635,0.4655,0.3437,5.5124,5.5681,15.8931,63.5955,80.3279,0.3591,0.3724,9.0344,2.9043,80.7026,76.1539,80.3279,85.2459,4.5455,2.6067 Humber and North Yorkshire ICB,B82073,South Milford Surgery,9865.436663,7.8392,80,79.9228,4.1417,80.2857,81.9512,3.6462,93.1373,6.021,1.8231,0.4768,0.4623,11.481,7.7459,17.7636,63.4338,78.0749,0.2805,0.5516,15.7749,0.2419,89.562,87.7119,81.746,92.8571,10.066,2.5524 Humber and North Yorkshire ICB,B82074,Posterngate Surgery,18115.98244,7.4816,78.6297,79.6253,4.1546,74.2089,76.3231,3.6032,90.2564,5.5604,1.9328,0.6585,0.5387,15.9908,7.5445,14.5787,65.3215,77.3649,0.423,0.7281,13.8676,1.8729,83.1768,78.2297,83.8384,89.899,14.2144,2.527 Humber and North Yorkshire ICB,B82077,Kirkbymoorside Surgery,6256.479363,7.4543,79.0698,81.383,5.2597,78.7234,79.1667,4.5388,97.2973,4.141,1.8188,1.1798,0.443,14.7228,7.7451,21.4157,68.3049,79.0323,0.508,0.9831,15.8513,2.1959,92.7996,76.259,84.7222,87.5,8.6778,3.3262 Humber and North Yorkshire ICB,B82079,Stillington Surgery,3781.417981,6.8647,84.9162,82.8829,6.6882,80.6818,85.8824,3.5187,96.2963,9.4891,1.531,1.0475,1.1742,12.7974,6.0976,18.5334,80.5785,90.7767,0.4298,0.5103,9.0765,1.9712,90.58,82.5,91.1765,85.2941,7.1717,3.2769 Humber and North Yorkshire ICB,B82080,My Health Group,18335.89509,7.9552,80.6803,79.9197,5.7783,78.119,77.5561,3.877,94.0397,5.2114,1.6942,1.0569,1.1205,7.1976,6.5198,17.4677,60.7875,78.6134,0.4833,0.6639,9.9147,1.116,88.6076,78.6842,72.9885,89.0805,8.2376,2.9104 Humber and North Yorkshire ICB,B82081,Elvington Medical Practice,6570.8168,7.9903,81.8505,79.0816,5.7111,79.1209,80.6061,3.7798,88.8889,4.8042,1.1588,1.1312,1.6242,5.2518,5.9218,16.554,63.1175,79.5848,0.3311,0.5518,9.9846,0.738,85.4281,74.8092,77.0492,91.8033,5.2806,2.7866 Humber and North Yorkshire ICB,B82083,York Medical Group,41179.55984,6.455,75.317,74.0196,3.1894,67.1746,72.9378,2.6336,93.3131,3.2059,1.7431,0.6785,0.677,13.6641,5.4328,12.5232,60.5174,75.4153,0.366,1.1226,10.8243,1.6994,78.0562,79.9705,76.0563,85.0704,13.554,1.9953 Humber and North Yorkshire ICB,B82097,Scott Road Medical Centre,11079.09035,8.3725,78.2278,76.1194,3.8621,77.5819,78.3654,3.3242,96.7213,5.095,2.4689,0.6084,0.7933,19.4355,8.2296,16.1538,66.4581,84.6154,0.6437,0.8729,18.7039,1.9198,90.3287,83.9216,88.6525,90.7801,17.7561,1.984 Humber and North Yorkshire ICB,B82098,Jorvik Gillygate Practice,22803.06652,6.1022,75.9358,77.0992,3.4808,70.9474,75.5507,2.51,88.4615,3.1302,1.2826,0.6275,0.7941,12.7477,4.8107,12.5696,67.6722,86.4754,0.2881,1.1011,10.6925,1.4387,82.1403,83.0946,84.8315,90.4494,11.6253,2.0561 Humber and North Yorkshire ICB,B82100,Front Street Surgery,8611.277711,8.9334,79.4798,77.7778,3.6266,77.5862,79.3296,3.8103,93.9394,5.1029,2.4504,0.6003,0.7941,15.4906,7.5029,17.0791,71.7411,86.8687,0.3063,0.8209,12.6471,3.0726,88.8327,82.1622,91.954,94.2529,12.6103,2.7322 Humber and North Yorkshire ICB,B82105,Tadcaster Medical Centre,8961.811291,10.025,79.4521,83.7945,3.752,83.2714,84.8039,3.7199,97.561,3.8609,2.0631,0.4703,0.1587,10.902,8.1888,19.1983,73.452,85.9335,0.31,0.5665,13.0239,0.3714,90.5259,87.6106,93.6364,97.2727,8.7599,2.5334 Humber and North Yorkshire ICB,B82619,Terrington Surgery,1596.7994,7.1743,79.0698,76.9231,4.8723,79.0698,78.5714,3.2086,83.3333,7.8966,0.9507,0.5348,1.0768,12.9508,5.5675,18.6572,79.3991,90.1235,0.1783,0.4753,10.0503,0.4329,88.7786,76.4706,84.6154,92.3077,6.4754,3.2086 Humber and North Yorkshire ICB,B82004,Nidderdale Group Practice,10514.5291,7.1935,81.6327,77.8462,6.2185,77.2201,79.7619,3.8797,95.2941,6.7115,1.2199,0.6971,1.2563,11.9553,6.7245,20.1504,62.1803,78.1982,0.321,0.6329,6.6674,0.4676,89.785,74.1667,84.2105,84.2105,7.0975,2.3847 Humber and North Yorkshire ICB,B82008,North House Surgery,9455.127808,6.9315,77.0718,75.9825,6.1616,74.5192,79.235,4.6557,94.5455,6.816,2.6095,1.4025,0.7376,11.9888,7.7576,20.3127,65.1391,87.5229,0.6553,0.7242,14.4789,1.4174,89.8,82.6667,81.7308,96.1538,9.438,2.9774 Humber and North Yorkshire ICB,B82010,Ripon Spa Surgery,7617.996152,6.5486,75.4325,71.7073,4.7565,77.0213,76.0736,4.2934,91.8033,7.0623,2.1655,1.0389,0.9581,11.9343,7.1233,16.6479,74.4399,84.7701,0.3255,0.9138,12.0229,0.1691,89.5674,83.0097,87.0588,94.1176,11.3646,2.2907 Humber and North Yorkshire ICB,B82011,Sherburn Surgery,5588.973688,9.2038,77.4319,78.7356,4.7722,78.4722,79.2593,4.1442,91.4286,7.2527,3.3728,0.6997,1.2773,19.4687,8.8374,20.5777,64.3923,83.2536,0.592,0.7894,20.2208,0.7092,92.3723,80.921,80.5556,86.1111,10.5274,2.5475 Humber and North Yorkshire ICB,B82012,The Leeds Road Practice,13273.52158,7.0044,80.4469,80.9278,5.168,78.6967,80.5556,3.2875,96.2617,5.7874,1.1403,1.9672,2.2915,6.2856,4.6284,16.7645,71.3333,83.0532,0.4401,0.7269,6.4481,3.5032,88.8232,79.6296,88.7755,92.8571,5.8392,2.4207 Humber and North Yorkshire ICB,B82013,Moss Healthcare Harrogate,18506.83114,5.9883,74.3885,76.6734,4.3038,68.8623,75.1256,3.1259,90.3448,3.2607,1.8935,0.8747,0.8587,11.4596,5.7163,14.4817,67.6326,81.9672,0.4473,0.9741,11.5955,1.0161,84.2657,79.0164,85.2941,94.7059,14.0305,1.9034 Humber and North Yorkshire ICB,B82014,Kingswood Surgery,6619.780089,6.0644,78.0269,78.4722,4.0825,64.9533,75.4098,3.2485,83.0769,3.2914,1.595,1.4486,0.6655,10.8498,6.0939,14.4718,69.8457,80.0725,1.1267,0.6585,12.5899,0.2804,82.0918,78.9916,78.3333,91.6667,10.7312,2.3705 Humber and North Yorkshire ICB,B82016,East Parade Surgery,7765.716696,7.114,71.5385,73.9362,4.1487,67.0103,74.5342,2.7338,93.8462,6.4895,1.7986,0.8034,1.0718,11.7489,6.3269,17.482,65.2557,80.8642,0.7794,0.8873,10.5271,1.1061,81.4454,73.1844,84.4156,89.6104,12.7033,1.9904 Humber and North Yorkshire ICB,B82017,Whitby Group Practice,15900.68047,8.3946,76.0433,72.0102,5.3318,72.2892,74.2475,4.9341,92.7835,8.6889,3.3508,0.8469,2.1203,24.7935,8.2336,21.9972,64.962,83.7359,1.0384,1.2961,14.894,0.8187,89.1423,81.2195,83.908,91.3793,14.8098,2.8574 Humber and North Yorkshire ICB,B82019,Topcliffe Surgery,3124.987357,6.9478,79.7297,72.449,3.5617,86.5672,86.25,2.6713,92.5926,4.2807,1.6572,0.4452,0.3219,11.1758,7.2358,15.533,66.9884,79.0909,0.1979,0.371,14.9018,0.5938,89.912,80.2632,92.3077,94.8718,10.0729,2.0282 Humber and North Yorkshire ICB,B82022,Great Ayton Surgery,6211.029339,8.7819,79.5367,82.0359,6.2203,78.9474,80.1527,4.511,93.3333,2.8441,1.7445,1.1278,1.5778,10.178,7.3762,19.0485,69.8113,83.1858,0.3348,0.652,9.4872,2.1957,84.6132,82.4428,89.3939,96.9697,7.4074,3.6828 Humber and North Yorkshire ICB,B82023,Catterick Village Surgery,6423.9919,6.7714,76.4192,74.2515,3.2176,76.6304,78.125,3.568,94.0299,5.4883,2.5964,1.1309,0.8676,14.08,10.3674,18.748,67.4974,83.1776,0.6849,0.6212,21.7918,0.3634,93.1035,82.6667,90.8163,95.9184,17.1183,2.6123 Humber and North Yorkshire ICB,B82024,Eastfield Medical Centre,10809.40669,11.3946,77.2334,69.2946,3.9014,75.8993,76,4.6838,88.172,5.2936,3.1726,0.4073,1.4712,34.9444,9.7273,18.9496,73.6768,86.0399,0.8146,0.9646,20.638,0.3546,85.6107,86.0377,87.0229,91.6031,18.3892,2.9153 Humber and North Yorkshire ICB,B82025,Derwent Practice,20952.53748,7.4793,76.2563,78.0718,4.5052,72.5806,75.8294,3.533,96.6292,5.7777,1.9206,0.8915,0.3698,16.8798,6.5101,15.7016,52.4361,76.3321,0.6639,0.626,12.1909,0.3573,76.7679,76.7442,71.2919,79.4258,12.1738,2.2573 Humber and North Yorkshire ICB,B82027,The Spa Surgery,14147.79111,6.7994,73.6196,72.7528,4.5365,74.942,78.4247,3.4658,94.8454,4.211,1.9583,0.8594,0.6399,10.672,6.3106,15.5255,69.708,84.4643,1.0566,1.2398,11.0246,0.5472,85.2384,82.2314,85.1563,93.75,12.5636,2.0287 Humber and North Yorkshire ICB,B82029,Doctors Lane Surgery,3037.464975,6.1681,83.5227,79.4643,5.3637,85.7143,84.1463,3.7916,100,3.5069,1.8804,0.8631,0.673,12.3586,8.0939,24.291,69.378,78.2609,0.3699,0.3391,11.8668,0.1585,87.2763,92.5373,95.3488,97.6744,7.5485,2.7744 Humber and North Yorkshire ICB,B82030,Dr Akester & Partners,5910.976339,8.1666,78.6713,75.8065,5.587,78.5185,75.5102,4.2845,94.8718,5.0861,1.5596,0.7541,0.5066,12.9735,6.9124,20.1714,66.1765,82.5939,0.3942,0.6684,12.5228,0.3027,89.9035,89.5161,88.7097,95.1613,8.8132,2.5364 Humber and North Yorkshire ICB,B82032,Church Lane Surgery,11860.4729,6.9591,80.0399,76.5896,5.0964,79.5107,81.4394,4.0043,92.9134,6.3529,2.0932,1.1252,0.3232,10.2456,6.8264,17.0597,63.6656,82.0513,0.3558,0.6205,8.2921,0.2169,86.6999,82.5203,84.8,92,8.596,2.3331 Humber and North Yorkshire ICB,B82034,Quakers Lane Surgery,6977.451948,7.5598,80.625,75,5.3121,79.7203,80.9524,4.2718,96.1539,5.0832,1.8916,1.2926,0.8777,11.8538,7.9408,24.9054,69.7465,88.7955,0.3468,0.8827,12.196,0.457,91.9179,88,93.6709,92.4051,8.8262,3.3575 Humber and North Yorkshire ICB,B82035,Scorton Medical Centre,3684.274888,6.5651,80.8917,81.4815,3.9166,84.2697,82.5581,3.8602,92.5926,5.0637,1.7188,2.2823,0.7042,9.8996,8.1619,20.6255,72.7915,83.1325,0.8453,0.8171,15.9289,1.1665,91.9789,78.5714,93.0233,97.6744,9.3142,2.9022 Humber and North Yorkshire ICB,B82036,Park Street,8163.552657,8.3827,77.1127,75.8621,4.3575,77.7251,79.0123,3.8079,85.9649,7.4056,1.9628,1.1123,2.9558,12.3875,8.0443,18.503,73.3458,83.871,0.4711,0.7851,17.4618,1.0556,91.381,82.0652,89.011,97.8022,12.9052,2.4339 Humber and North Yorkshire ICB,B82037,Filey Surgery,12237.04546,9.0412,77.4737,82.8571,6.128,75.2809,76.5957,6.9024,89.7959,9.918,3.3558,0.6734,0.6768,24.7741,10.8704,26.4871,78.489,87.0607,0.5836,0.8979,19.6928,2.5182,87.2314,74.5636,84.4156,74.026,13.5979,4.321 Humber and North Yorkshire ICB,B82038,Central Healthcare,28290.9438,8.4024,70,66.8919,3.946,71.4483,71.3043,4.2295,94.1463,4.2361,2.3707,1.0672,0.4275,31.4309,8.2266,15.6854,66.9158,80.1325,0.8034,1.1893,15.0255,0.3322,84.8166,79.682,81.1502,89.1374,16.8974,2.4456 Humber and North Yorkshire ICB,B82042,Lambert Medical Centre,8796.420509,8.1094,77.027,72.9084,5.6617,76.6234,78.125,3.8444,97.0588,8.6908,2.3416,1.1766,1.6068,13.7321,8.7011,18.4296,75.692,89.4366,0.4543,0.7106,14.0701,0.9713,87.084,75.0916,83.3333,90.3509,11.92,3.1221 Humber and North Yorkshire ICB,B82044,Stokesley Surgery,9566.168366,6.3547,80.543,80,6.0977,79.4258,78.125,4.8202,88.6793,3.952,1.299,1.1809,1.2121,11.6807,7.0278,19.5599,76.4662,89.6342,0.3757,0.7622,12.6641,0.2652,91.4505,86.9792,89.5238,96.1905,6.7664,3.0918 Humber and North Yorkshire ICB,B82045,Central Dales Practice,4173.151262,7.3697,79.0795,81.25,5.1356,80.4598,82.0755,4.4876,87.0968,5.1352,2.1838,1.1039,0.3551,12.9457,6.7966,20.5424,74.4012,86.1702,0.264,0.48,13.0292,0.2769,81.9672,66.6667,90.9091,97.7273,8.2428,3.6477 Humber and North Yorkshire ICB,B82046,Staithes Surgery,3806.64184,6.3737,75.4717,72.8261,5.5413,77.9221,80,4.5804,88.4615,3.4862,2.4984,0.6086,1.781,28.0693,9.4361,21.3965,72.8571,83.3333,0.2883,1.6336,18.454,0.2971,91.4395,76.3158,76.087,93.4783,12.9841,3.0429 Humber and North Yorkshire ICB,B82049,Thirsk Doctors Surgery,7759.122339,6.4826,80.1858,68.2028,5.2252,75,80.2469,3.9768,95.1613,8.0583,2.2008,0.9009,1.3482,13.7343,7.4648,18.2883,73.8205,87.6471,0.7336,0.8237,17.4028,2.241,89.2746,81.0526,89.8876,96.6292,11.8696,2.5997 Humber and North Yorkshire ICB,B82050,Mowbray House Surgery,22521.07581,7.4698,78.8172,75,5.5318,79.115,77.9221,4.2983,95.5128,5.1972,2.3869,1.0969,0.6468,13.082,8.4328,19.919,69.4262,83.8772,0.6544,1.0075,10.6723,2.6248,86.1513,82.6742,84.1328,92.9889,10.1316,3.1872 Humber and North Yorkshire ICB,B82054,Scarborough Medical Group,19087.26425,8.9223,76.4706,77.4336,5.6385,74.4186,78.7425,5.9089,89.4231,7.4122,2.5682,1.2037,1.1433,21.5362,7.8991,20.8097,63.8601,77.5354,0.6565,1.326,8.4494,2.8801,88.0592,71.0468,84.375,86.4583,10.2998,3.6174 Humber and North Yorkshire ICB,B82057,Springbank Surgery,6075.597085,7.1628,79.9296,76.4398,3.8091,80.5556,77.9874,3.0253,97.2603,7.056,0.9488,1.2101,0.3425,9.6282,6.1027,15.2778,69.3807,83.2636,0.33,0.4676,7.0389,0.5271,91.1129,83.8235,74.6269,91.0448,6.8407,1.9114 Humber and North Yorkshire ICB,B82059,Church Avenue Medical Group,11659.40889,7.4457,74.6512,79.2857,5.2875,77.9553,77.3756,3.8636,93.5065,4.7247,2.3762,1.1246,0.9884,12.4046,7.3207,18.7466,75.2339,86.6379,0.517,0.8344,12.8272,0.729,88.0034,79.2373,91.7355,95.0413,12.5898,2.3671 Humber and North Yorkshire ICB,B82060,Eastgate Medical Group,13430.40067,6.9408,76.2208,75.4658,5.0386,76.1039,77.381,4.3834,90.991,6.404,1.9811,1.2792,1.8407,11.8081,7.2954,17.5025,73.147,87.1238,0.7566,0.9984,12.5587,1.3877,88.1988,81.4189,85.5072,91.3043,12.716,2.4179 Humber and North Yorkshire ICB,B82063,Ayton and Snainton Medical Practice,10355.59637,8.9741,79.8337,81.5068,5.2743,83.4081,80,5.6013,97.9167,9.0728,1.9198,0.7279,0.2486,12.3647,7.9248,23.481,80.1643,90.9962,0.538,0.654,17.2508,0.3917,89.7564,81.9398,90.8333,81.6667,7.1814,3.3544 Humber and North Yorkshire ICB,B82066,Glebe House Surgery,10170.2815,7.0991,80.4396,74.4898,5.741,81.3043,79.7357,3.841,96.4286,7.0844,1.6946,1.2427,0.6229,10.2039,8.918,20.6532,75.0502,81.2016,0.6368,0.5238,18.7737,0.7137,88.9954,80.4511,94.697,94.697,10.4639,2.8448 Humber and North Yorkshire ICB,B82067,Stockwell Road Surgery,7633.003612,7.6001,79.6774,78.5047,5.1822,81.8966,83.4356,3.5451,93.9024,4.419,1.9818,1.3663,1.1621,10.4202,6.8367,15.4973,65.4661,84.7619,0.5662,0.8986,16.682,2.071,92.171,80.3798,87.1795,96.1538,10.7443,2.4495 Humber and North Yorkshire ICB,B82069,Beech House Surgery,7697.210254,6.9197,79.1277,81.0427,5.2519,78.607,83.9506,4.2496,93.75,7.6862,1.7774,1.323,0.729,10.2748,7.7719,17.6934,68.5626,82.3529,0.7885,0.5746,13.4073,0.1329,91.9436,78.8889,85.7143,93.4066,10.1888,2.2451 Humber and North Yorkshire ICB,B82072,The Friary Surgery,5547.253719,6.9707,77.4704,78.1457,5.4683,75.2066,75,4.6151,96.5517,4.2952,2.2106,0.892,0.6626,11.6936,8.0478,19.4105,64.2667,78.0877,0.6011,0.7756,10.6923,0.7763,88.4316,80.4511,85.2941,88.2353,10.5703,3.122 Humber and North Yorkshire ICB,B82075,Mayford House Surgery,10305.5086,7.8893,79.9076,69.8925,5.3836,78.7402,80.9091,4.2344,89.2857,7.9221,2.5469,1.2217,1.3638,13.5147,8.773,22.4557,74.1379,86.037,0.5487,0.9628,13.1044,2.3086,90.8721,84.6416,88.2813,92.9688,11.2218,3.6753 Humber and North Yorkshire ICB,B82078,Leyburn Medical Practice,6513.414903,7.7132,83.1361,80.3922,6.8104,75.1938,81.7568,4.3933,100,6.2163,2.0252,0.9146,0.9864,11.8724,7.9778,26.9639,77.7065,87.6238,0.5226,0.6696,16.9179,0.5427,90.6353,84.9398,94.8718,97.4359,9.9238,3.74 Humber and North Yorkshire ICB,B82086,The Danby Practice,5673.469561,7.67,78.9272,79.1411,5.5863,82.6446,80.3279,4.2637,94.1177,3.7705,1.7568,0.6514,1.2491,23.9433,6.604,20.8843,67.0175,84.2365,2.1911,0.8883,12.9308,0.9306,89.6836,81.1765,82.3529,94.1176,13.1987,2.2898 Humber and North Yorkshire ICB,B82088,Brook Square Surgery,11817.87138,8.1881,70.4735,65.7258,3.5002,66.5625,76.7327,4.4035,72.043,6.4113,2.7286,0.9221,1.6256,32.0831,7.5773,17.1528,75.0177,88.6473,0.7057,1.0915,17.1763,0.5149,87.7731,82.1561,90.3226,79.0323,19.6611,2.1453 Humber and North Yorkshire ICB,B82091,Park Parade Surgery,6934.921087,6.7884,78.7149,74.4565,4.7309,77.8547,81.4103,2.9457,90.7407,5.7787,1.1859,0.9309,0.4944,10.0914,4.9641,14.8687,69.8565,80.303,0.5228,0.7396,8.9462,0.6597,91.006,87.1795,91.0714,94.6429,7.3775,1.9255 Humber and North Yorkshire ICB,B82101,Sleights and Sandsend Medical Practice,5984.860238,8.4436,78.7879,78.0488,6.0501,79.0323,80.3419,5.4528,91.4286,7.2254,3.237,0.8863,1.5629,19.967,7.913,24.2967,73.922,87.108,0.289,0.8863,14.8131,0.7547,92.4348,78.344,90.3226,91.9355,9.2678,3.4104 Humber and North Yorkshire ICB,B82104,Harewood Medical Practice,6664.303077,6.8219,74.2138,67.8322,2.6461,77.8409,79.3893,1.7028,90.6475,2.6813,1.2495,0.6615,0.7738,12.451,7.5432,11.9319,72.4824,82.5,0.3308,0.4043,18.1933,0.1876,90.6423,80.9917,92.4051,94.9367,15.7498,1.4455 Humber and North Yorkshire ICB,B82106,Hackness Road Surgery,5268.978431,9.0031,81.9444,78.7234,5.6338,80,88.1188,5.2761,94.7368,8.4241,2.1462,0.8943,0.9035,16.8016,7.9811,22.0434,82.6544,88.8889,0.626,0.6931,15.865,2.3529,94.9146,79.661,87.2727,61.8182,8.7323,2.8169 Humber and North Yorkshire ICB,B82609,Ampleforth Surgery,3835.569248,9.2439,79.0576,79.845,6.0199,84.5238,83.5052,3.9552,93.5484,5.8988,1.6169,0.6716,1.5213,14.5241,5.7298,18.3085,65.0089,79.1908,0.1493,0.7214,12.729,2.6062,90.1996,78.2609,93.75,100,5.8688,2.9602 Humber and North Yorkshire ICB,B82622,Reeth Medical Centre,1673.312634,7.8484,84.3373,79.6296,6.7885,80,78.0488,3.6554,100,6.5934,2.4151,0.6527,0.293,16.7908,7.2105,27.0888,81.3456,92.0455,0.1306,0.9791,15.3114,1.2987,92.8839,71.7949,94.7368,94.7368,7.3919,2.8721 Humber and North Yorkshire ICB,B82628,Hunmanby Surgery,5037.957947,9.0471,77.13,81.7518,5.5285,77.2727,71.5789,5.0658,96.1539,9.05,3.0687,1.3639,0.3373,21.3693,10.22,27.2285,61.1958,76.6038,1.0473,0.6819,14.5587,3.5384,92.7547,77.931,77.7778,84.127,11.3868,3.7019 Humber and North Yorkshire ICB,Y02669,Castle Health Centre,5867.758225,7.6141,61.4035,51.2195,1.2154,55.3191,63.7681,2.4728,72.2222,1.8011,2.2842,0.1467,0.3654,45.1326,5.9856,10.1844,65.6613,90.9091,0.8801,2.0956,15.5312,0.5189,82.439,73.4375,75.6098,85.3659,34.114,1.3621 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence "Bath and North East Somerset, Swindon and Wiltshire ICB",J81083,Sixpenny Handley Surgery,3966.809912,7.1717,81.1594,85.4962,5.8394,77.2727,77.8846,4.5499,92.5926,3.5354,1.4842,0.8029,0.1783,18.5426,6.0482,17.0316,71.9466,84.0909,0.365,0.438,10.0119,0.3036,89.52,80.8219,91.4286,97.1429,7.9866,3.0657 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83001,Merchiston Surgery,15185.95382,7.5697,74.2747,72,5.1098,69.0104,75.8491,4.0715,90.3846,5.6697,2.6698,1.2904,0.8433,14.7725,9.7075,20.8099,61.7661,71.6779,0.5785,0.927,12.389,3.5942,89.3451,86.9318,78.5714,84.6939,11.8364,2.388 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83002,Westrop Medical Practice,40125.24139,7.3384,72.8445,66.6667,3.1203,71.9977,73.5372,2.495,91.3919,3.6346,1.5046,0.3987,0.4475,12.0359,7.287,14.6574,66.1148,82.479,0.5771,0.7072,14.6289,0.8044,82.755,83.8628,74.6939,91.8367,13.8863,1.5067 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83003,Harcourt Medical Centre,14573.76117,7.4754,80.9129,74.6795,5.9595,75.5208,78.8618,4.717,89.5833,5.3251,2.2703,1.2655,0.9126,14.3171,7.6545,18.2773,62.1072,79.6053,0.5292,0.8974,10.6501,2.2687,88.9209,78.4127,62.987,81.8182,11.0068,3.3211 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83004,Whiteparish Surgery,7452.025259,9.6001,83.0508,78.125,5.5072,75,80,4.1404,93.8776,4.8804,2.3851,1.6079,0.1445,9.6131,5.4165,19.2684,66.1597,83.9378,0.3082,0.5494,11.2699,1.3814,88.157,66.9355,85.7143,90.4762,7.6321,3.3097 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83005,Barcroft Medical Centre,10592.87247,6.6751,77.8082,71.875,4.5558,77.4105,78.9474,3.725,96.8,4.3655,1.7529,0.8765,1.0128,11.972,8.1827,15.0461,74.9422,87.1795,0.63,0.6208,15.5646,1.3834,89.3014,82.2134,70.8661,90.5512,14.3827,2.3829 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83006,Purton Surgery,10682.65378,6.8384,77.724,73.1707,4.6011,74.0864,75.8475,3.3036,92.1348,4.2844,1.73,1.1503,0.4635,11.6938,7.3203,13.8585,47.1664,62.3786,0.4785,0.6442,7.981,3.0618,84.3346,81.3953,57.6,77.6,11.1614,2.2545 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83007,Hathaway Surgery,14932.3095,8.4297,74.7346,68.144,3.3742,75.969,78.7781,2.9218,95.5556,4.5594,1.5206,1.3572,1.3812,12.9724,7.5025,14.6905,65.5647,68.8337,1.0242,1.0368,11.1198,0.677,88.2288,84.2657,73.2955,86.9318,14.1226,1.7091 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83008,Lovemead Group Practice,19015.03478,7.165,76.5189,68.8525,4.0086,70.6337,72.1448,3.2324,94.5455,6.0647,2.2673,0.8732,1.0759,16.795,8.4859,15.3858,72.9753,80.8096,0.8477,1.0009,12.6289,0.6599,89.7393,89.3709,91.4286,97.551,15.8585,2.0477 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83009,Ridgeway View Family Practice,15035.62734,7.853,77.6699,71.7877,4.8974,76.484,79.2517,3.4614,93.0233,6.933,2.1066,1.2938,1.2076,11.8707,7.8987,18.7699,71.131,83.3113,0.4809,0.779,15.0144,3.4965,87.1552,84.3501,83.0409,91.2281,10.0552,2.4724 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83010,Porch Surgery,11730.45327,7.825,75.2404,73.0496,2.1959,78.4884,79.476,3.5152,93.9189,3.0979,1.7363,1.2086,0.3859,13.0699,7.7289,15.5928,69.4941,78.8934,0.4086,0.7916,7.9644,0.4214,89.9207,88.2609,85.1563,92.9688,11.8129,2.3066 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83011,Giffords Primary Care Ctr,15529.63024,7.167,75.6007,76.8571,4.5181,75.6691,73.2143,4.4904,93.985,6.5902,2.4978,0.8718,0.7341,16.0934,9.4841,21.1098,59.2157,77.2487,0.4913,0.8372,16.2012,1.2675,88.4744,82.6829,80.597,91.0448,15.9589,2.65 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83013,Box Surgery,7523.864271,8.1041,78.4053,73.0769,5.4321,81.3084,80.117,3.7627,86.6667,6.0688,2.4785,1.0145,0.7487,10.2997,6.6352,16.5404,67.6823,77.7778,0.3082,0.7192,13.3163,0.8922,89.5021,81.9876,84.7222,91.6667,8.1019,2.2473 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83014,Castle Practice,14388.10513,6.8497,74.946,63.3333,3.3843,72.7273,74.6269,2.9931,90.9502,3.6314,1.7822,0.6706,0.4654,15.1788,8.2038,12.9161,69.4186,84.7222,0.3229,0.6085,12.7223,0.3688,86.1856,81.0458,78.9474,91.8129,15.72,1.7449 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83016,Trowbridge Health Centre,29830.33601,6.8802,74.153,66.39,3.6411,69.3452,71.1636,2.6775,88.2353,2.7489,1.8094,0.7028,0.7752,17.2056,7.7226,14.631,49.0305,67.7094,0.6583,0.8872,9.7259,0.2922,82.6141,82.3171,81.5341,92.3295,16.6185,1.8953 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83018,Avenue Surgery,19989.39318,7.2856,78.2369,71.2215,5.0661,74.8016,76.0526,4.3152,94,2.8447,2.4977,1.3495,0.6549,14.7284,8.7666,18.1042,63.2255,74.5355,0.7129,0.936,15.7515,1.6228,90.5347,77.8607,69.6356,88.664,14.3632,2.9113 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83019,The Orchard Partnership,13314.02974,7.7525,79.4783,74.9326,6.8842,77.6271,80.0712,4.6708,88.1579,5.8437,2.2296,0.8463,0.6966,15.089,7.2564,18.8705,63.0252,78.8668,0.3825,0.6917,13.7287,2.3436,86.8404,78.5211,80.1527,90.0763,11.3798,3.4177 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83021,Salisbury Medical Practice,23878.77869,7.5484,77.5482,84.0385,3.7036,77.4752,78.1903,3.3428,94.7598,3.5945,1.9755,0.8724,1.1371,16.0913,7.2465,13.8243,63.9969,78.5047,0.6711,1.2541,13.8877,0.5849,86.8346,80.9417,81.1475,91.3934,14.2009,2.1852 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83022,Old Town Surgery,7874.518186,7.6485,73.8462,73.8462,3.186,69.2308,76.8786,2.0704,89.2473,4.3785,1.2336,0.472,0.9848,12.738,5.5877,14.2566,66.094,83.8565,0.6758,1.2336,10.1145,1.682,87.5353,79.1367,86.4198,91.358,10.2918,1.3087 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83023,Avon Valley Practice,7937.261334,7.6384,77.5216,73.2759,5.1213,79.1045,78.3333,4.5797,90.6977,5.4819,1.9072,0.6593,0.7895,11.5971,8.2757,16.4469,83.1099,92.8058,0.3532,0.4592,19.8421,0.4701,88.7983,84.507,88.1188,96.0396,12.0169,2.3311 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83024,Priory Road Medical Centre,10336.15408,7.4002,67.5,65.1282,3.0773,64.1379,68.8312,2.7696,91.6667,6.9279,2.8949,0.946,0.7633,34.1374,10.757,18.9765,74.1791,85.2308,0.832,1.0941,19.5215,2.4345,87.0227,88.3268,78.7671,89.0411,20.0142,2.2909 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83026,Three Chequers Medical Practice,26001.94171,7.6998,77.2776,78.956,5.3428,76.5672,76.3374,4.4209,96.7391,5.2811,1.8312,1.1943,0.636,13.6022,7.0777,17.3357,70.4437,85.4184,0.7291,1.3284,10.262,0.9261,90.0737,78.9575,88.4921,95.2381,12.3409,3.1554 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83027,Hawthorn Medical Centre,14207.23512,8.6335,67.4242,69.7842,3.4306,63.2701,66.8182,3.2962,90.5797,5.5544,3.0274,0.7193,1.7145,29.0137,11.0266,17.6034,66.5927,87.0588,1.0908,1.0513,19.1197,2.2958,83.2233,80.5634,84.5411,89.8551,19.2674,2.0473 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83029,Tinkers Lane Surgery,9097.087889,9.815,72.997,65.7407,4.2856,76.1538,78.2857,3.5353,96.8254,5.8123,2.0007,1.0572,1.1905,12.8204,9.1563,19.5635,68.5782,80.1339,0.5684,0.6139,15.2661,2.553,86.0779,81.4286,80,90.4,12.1095,2.3076 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83030,Bradford-on-Avon and Melksham Health,19321.34663,6.7661,78.2322,70.5285,5.7157,75,78.4416,3.4794,96.5035,7.4348,1.6658,1.0953,2.0214,10.6785,6.6609,17.6363,71.1762,83.3162,0.3668,0.8558,13.2083,0.2996,89.6033,83.22,88.9474,94.7368,8.9153,2.3077 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83033,Whalebridge Practice,14401.5434,4.5197,62.753,63.0058,2.3335,45.0575,60.6667,2.0272,91.4063,3.0512,1.0451,0.2613,2.0454,23.3308,10.8262,12.6047,70,86.6109,0.3063,0.5856,16.0244,0.6724,87.7509,82.5243,79.6178,91.0828,12.3101,1.3695 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83034,Lansdowne Surgery,7799.373725,8.6269,77.1812,73.6041,5.8004,78.9809,83.1081,4.5944,95.6522,7.1552,2.9433,0.7179,0.6757,15.4945,9.9169,22.4982,60.1576,71.2941,0.3877,0.9045,12.474,0.138,87.4905,84.0909,84.2593,90.7407,13.5741,2.771 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83035,Abbey Meads Medical Pract,12867.79716,7.0813,71.1816,67.8445,2.6841,72.0081,77.5591,2.2006,92.6667,1.7785,1.8362,0.2593,0.4961,23.8142,8.1024,13.1684,68.1564,82.8358,0.6588,0.6167,19.1987,0.2127,86.6807,86.6071,84.2767,94.9686,15.7232,1.2334 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83036,Ashington House Surgery,9939.075463,7.3241,76.3224,71.0526,3.6609,73.9003,76.8844,2.7967,90.3846,3.755,1.2333,0.3302,1.4704,16.1165,9.0046,17.6248,73.913,87.7193,0.5826,0.8448,17.171,1.0007,89.5443,88.5845,92.029,95.6522,13.6784,1.5537 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83037,Kennet and Avon Medical Partnership,16973.51433,6.6883,75.4386,75.4386,5.5941,67.7665,70.8791,3.5173,92.4731,3.7744,1.614,1.3363,0.6315,12.4491,6.31,17.1584,62.4402,81.1644,0.833,0.8215,8.3981,1.767,84.4955,79.5527,70.7317,80.4878,10.6803,2.1578 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83038,Kingswood Surgery,27924.27252,5.1917,61.3946,49.5455,1.6614,48.8735,59.9496,1.7884,93.6102,3.0778,1.8484,0.2011,0.477,34.6055,10.6301,11.8452,63.8312,72.7924,0.6244,0.8995,13.7104,0.4905,85.3268,85.9073,77.8523,87.2483,16.8363,1.0018 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83039,Northlands Surgery,13808.18209,8.7492,77.2541,73.1118,4.0254,74.8299,76.9231,3.0465,92.4051,4.5513,2.0383,0.8475,0.4873,15.5971,8.743,16.6496,74.7475,81.6901,0.5918,0.6502,15.8146,0.3922,90.1919,86.5455,90.0552,94.4751,14.0567,1.8776 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83040,Westbury Group Practice,23712.57101,7.0044,75.3056,66.7247,3.4699,75.1316,74.569,3.3131,94.3478,4.8634,1.6875,1.0686,0.191,15.0659,8.0595,15.9426,52.6334,73.5071,0.6148,0.8334,11.6268,0.2941,87.0452,82.4111,75.1773,86.5248,15.3846,1.9722 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83041,Malmesbury Medical Partnership,14075.9672,7.7097,79.5796,77.4554,4.0233,75.8465,78.3333,3.1479,94.7826,5.9804,1.3551,0.7735,0.6077,10.0238,6.7163,15.8952,66.9392,77.2334,0.2518,0.5516,14.0729,2.1892,90.2311,81.194,78.6585,90.8537,8.3645,2.4883 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83042,Rowden Surgery,18005.59135,6.3483,78.9223,72.8538,3.6983,76.5079,79.0634,3.0407,95.8549,5.2103,1.5519,0.8575,0.863,13.3236,8.2825,13.7146,70.1079,76.9697,0.5155,0.8312,11.9405,1.4028,89.0466,82.2115,88.3621,95.2586,11.2631,2.0096 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83043,Downton Surgery,6935.69838,6.9989,79.7297,70.6186,5.8902,69.186,73.7589,5.1816,94.8718,7.0507,1.3434,1.24,0.6892,8.8849,7.255,21.243,48.1744,65.3422,0.2067,0.6495,8.0756,3.0663,90.2861,83.3333,36.3636,76.6234,11.4534,2.7753 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83045,Ramsbury Surgery,8821.716317,7.4728,79.6117,73.8983,5.1418,80,82.3276,2.9153,93.1507,2.2929,1.4676,0.9086,0.3276,7.9202,5.6807,15.3055,74.9354,78.7634,0.2097,0.5092,9.0137,0.2415,90.9124,88,77.907,86.0465,8.3571,1.857 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83046,Spa Medical Centre,14960.9572,7.8549,76.5714,75,4.4888,81.6993,79.7909,3.453,94.2675,4.5226,1.9093,1.3406,0.8177,15.4204,8.6986,16.7569,69.2105,80.5217,0.5755,0.7448,16.7788,0.2798,90.0152,82.7476,80.3191,92.0213,13.4551,2.0853 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83047,Eldene Surgery,8273.351984,7.6972,72.0149,63.8889,3.0734,73.1183,74.6575,2.8582,91.4286,4.438,2.033,0.3827,0.5643,20.7377,9.455,16.2162,73.4489,86.1539,0.574,0.7415,20.9547,0.3177,92.3379,84.127,90.0826,95.8678,14.188,1.6384 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83048,St Melor House Surgery,6560.938659,9.5292,73.5931,67.5497,3.7668,77.3913,77.7778,3.1792,87.7193,2.2529,2.2299,0.8739,0.4733,12.7081,8.7395,15.3985,81.6195,88.1148,0.4972,0.8136,17.6448,0.4804,92.8217,83.4711,90.8046,93.1034,15.5769,2.0793 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83049,Southbroom Surgery,12631.49475,7.8314,73.6726,71.3376,3.685,74.5665,79.8419,3.3018,95.4023,7.6183,2.2012,1.0843,1.2288,15.2508,7.7479,15.3432,63.8808,74.5059,0.9946,1.0109,11.1407,1.1722,85.5491,78.8591,75.8865,87.234,15.76,2.1278 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83050,Patford House Partnership,13214.69851,7.5641,74.9533,70.7254,3.795,78.06,77.9141,2.8766,88.189,3.56,1.3505,0.4659,1.3952,12.9706,7.6149,15.2475,61.3624,77.0686,0.3511,0.7428,16.2016,0.8708,89.3548,81.2749,83.5366,90.8537,10.9295,1.7017 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83052,Sarum Health Group,10507.15225,6.7197,69.5783,60.5809,3.0982,67.2802,75.3769,2.8366,85.8974,2.9559,1.6268,0.3842,1.2171,14.4757,6.3475,12.2129,68.7843,87.2146,0.3924,0.9319,16.0074,0.4902,89.7072,89.3617,82.243,95.3271,16.0966,1.6431 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83053,St James Surgery,7556.450978,7.7165,76.5101,74.2424,4.2426,77.9904,81.0127,3.2771,89.8305,5.9076,1.6318,0.5847,0.33,15.5027,7.9466,18.4254,65.3437,80.1242,0.5711,0.8839,11.1386,0.2232,88.3287,80,79.0698,91.8605,13.716,2.1213 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83055,New Court Surgery,9667.934156,8.5675,77.0053,73.3333,4.2675,75.1678,78.3251,3.5144,90.4762,5.5101,2.2794,0.9439,0.695,11.68,8.7691,18.6163,75.9862,82.3961,0.3012,0.7933,18.826,1.71,91.2593,80.3279,89.313,93.1298,10.4633,1.9781 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83056,Market Lavington Surgery,5140.646644,6.8373,80.6691,74.2857,4.6591,80.1527,81.7518,3.4988,94.7368,2.1931,1.6601,0.7676,0.688,11.0044,7.5324,16.4763,62.0057,77.2093,0.3927,0.7497,12.4704,0.2699,86.6283,74.1177,87.6923,93.8462,10.3139,1.7851 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83057,North Swindon Practice,18715.13934,6.3545,75,68.3721,3.3809,72.0445,74.5098,2.9205,91.4141,3.6074,2.0444,0.9801,0.501,13.6104,8.4187,17.2805,53.9555,70.1872,0.5346,0.8267,12.3567,0.5593,81.0715,82.9082,78.903,89.0295,12.71,2.0048 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83058,Tisbury Surgery,4342.672495,8.4458,82.3256,77.037,7.7456,78.125,79.8077,5.4985,86.3636,8.0791,3.4425,1.793,1.1017,16.1578,7.1529,22.6871,69.3215,85.2399,0.5738,0.9324,15.6497,3.4497,91.5076,79.8165,88.6364,95.4545,12.0861,4.1119 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83059,The Lawn Medical Centre,8500.771712,7.5264,78.2918,81,3.8521,76.2821,82.0988,3.1437,93.4783,5.4438,1.9925,0.6199,0.6049,14.158,8.4666,16.4158,63.3601,80.4945,0.5535,0.7084,14.4887,1.7068,88.4163,84.6939,83.6207,92.2414,9.6444,2.0589 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83060,Mere Surgery,5451.597312,8.5314,82.6446,82.5806,5.1829,78.8991,79.1304,5.3862,93.1818,6.313,2.3171,1.1585,0.216,14.6645,7.462,20.5691,68.9557,83.3866,0.5285,0.752,8.0653,0.3915,87.931,80.1653,79.6296,92.5926,11.4448,3.1301 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83064,Ridge Green Medical Practice,9728.613694,7.166,73.9946,70.0375,2.6732,73.8318,76.5487,2.4546,95.2381,1.3576,1.303,0.2438,0.5912,12.4929,7.0853,15.0303,67.8616,81.8182,0.5464,0.6893,13.4224,0.1738,84.2739,89.9408,86.7769,87.6033,13.0241,1.2946 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83601,Burbage Surgery,3738.506804,7.4638,82.1053,76.9231,6.0062,81.4815,83.8095,3.0629,96.4286,3.6951,1.5554,0.5982,0.4073,11.1233,7.0467,18.6169,73.7013,83.3333,0.6222,0.4786,8.7285,0.5988,91.0818,81.6667,88.6364,95.4545,8.5441,1.8665 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83603,Jubilee Field Surgery,4253.975726,6.6738,80.5556,74.1722,5.6844,78.3333,78.9063,3.0577,96.9697,3.2522,1.0671,0.5951,1.142,11.7933,6.1305,15.5141,54.9153,73.494,0.3899,0.5336,7.2244,1.9314,85.3224,87.3418,80.4348,89.1304,7.7037,2.0727 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83609,Cricklade Surgery,3196.711051,7.5743,79.2593,77.2152,4.0189,83.3333,86.7647,2.8073,100,4.87,1.1525,0.6501,0.6957,10.3306,7.4729,19.2376,89.7143,91.2698,0.5024,0.9752,12.6694,2.5917,93.5502,84.2105,94.5946,100,9.3318,1.714 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83615,Old School House Surgery,3301.845192,7.754,77.9874,72.2222,6.323,79.0698,82.4176,3.4178,94.4444,3.3805,1.7944,0.5412,0.5864,12.0778,6.6462,18.0291,71.6024,85,0.4272,0.9969,10.9693,0.3844,92.3492,85.4839,79.3103,86.2069,10.8064,1.9937 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83618,Tolsey Surgery,2931.562451,7.7415,78.7234,76,4.9548,83.5294,82.9545,3.3809,87.0968,5.6463,0.9618,0.5538,0.8168,10.4424,5.8164,16.3801,70.9302,84.0909,0.3206,0.2915,10.6534,2.0293,88.6329,90.1961,96.4286,100,8.058,2.1277 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83619,Courtyard Surgery,2950.300959,5.5012,81.8841,74.2268,6.1198,83.3333,85.8974,3.8086,87.5,5.7471,1.1719,1.7578,0.2682,11.84,8.2513,17.3828,74.8092,80.1418,0.651,0.7813,19.6552,1.1183,94.0832,74.359,94.8718,97.4359,9.4406,2.8971 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83625,Lodge Surgery,7038.044979,6.8743,81.3115,71.4286,4.3541,78.5978,79.8995,2.291,91.6667,4.9598,1.4034,0.7917,0.4828,9.7985,6.5321,16.5647,73.7339,81.0185,0.5758,0.7317,14.2063,0.7973,91.9067,86.2385,83.75,91.25,10.1951,1.4993 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83629,Silton Surgery,2412.460479,6.384,79.661,69.1176,5.5856,75.5102,79.1667,4.6847,100,2.0505,2.3423,1.0811,0.4732,15.3374,7.3652,18.5135,52.6846,81.4159,0.1802,0.7658,9.306,0.3754,85.4181,85.7143,82.6087,100,8.6729,2.5676 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83630,Hindon Surgery,2621.489153,7.2601,84.4961,79.0123,8.0824,82.4561,81.0345,4.6355,83.3333,6.0634,1.8621,1.2282,0.7463,18.0982,6.5808,20.7211,71.9008,79.375,0.3566,0.9113,7.2761,2.4088,90.3186,80.3571,92.5926,92.5926,10.1436,2.813 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83633,Victoria Cross Surgery,9927.827176,7.5854,72.6115,72.0588,2.4244,57.4124,72.2892,2.7693,86.8421,2.7249,1.8232,0.2464,0.5787,16.8657,7.7318,14.4575,67.5903,78.2609,0.6406,1.0643,14.9867,0.1886,87.4735,87.6471,87.6106,93.8053,13.3656,1.6064 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83645,Phoenix Surgery,4279.563263,6.2037,71.1268,59.2593,2.8491,68.7943,72.5275,3.106,84.4444,3.3774,1.6815,0.2335,0.8811,21.7834,8.4466,17.1182,72.0859,80.2469,0.6306,1.0509,14.2438,0.06,83.7137,91.3044,73.2143,89.2857,17.7043,1.7048 "Bath and North East Somerset, Swindon and Wiltshire ICB",J83646,Park Lane Practice,6376.319443,4.9445,63.9752,56.6372,1.9992,57.0447,70.8738,1.836,90.9091,2.6624,1.224,0.1768,0.797,20.0293,7.4304,11.4783,67.3324,86.7133,0.4488,0.9656,11.1073,0.0472,81.2005,87.1287,77.1084,87.9518,17.7036,1.2104 "Bath and North East Somerset, Swindon and Wiltshire ICB",K84012,Elm Tree Surgery,6629.440829,6.3052,81.5498,75.2577,3.2566,72.7273,85.0299,2.1003,71.8182,1.5485,0.9912,0.3894,0.6386,6.6091,5.6619,11.2212,71.7132,83.3333,0.236,0.472,13.1226,0.5786,90.2426,84,72.4638,92.7536,8.3573,1.2389 "Bath and North East Somerset, Swindon and Wiltshire ICB",L81010,Hope House Surgery,7418.626719,8.9813,72.3577,70.1149,4.1607,77.6471,80.9859,3.2016,95.6044,6.4293,3.0201,0.5833,2.6047,16.2835,7.7895,17.7317,62.6998,81.405,1.7498,0.9851,18.1009,3.3426,90.5936,71.1539,86.3014,93.1507,18.7302,1.7498 "Bath and North East Somerset, Swindon and Wiltshire ICB",L81020,Widcombe Surgery,7485.852447,5.5498,73.3096,65.2406,3.1666,65.5385,75.7576,2.1111,89.6104,3.6979,0.8796,0.4838,1.2544,10.7445,4.3596,11.3689,65.8354,82.7586,0.4508,1.0115,11.7601,0.3886,86.8671,81.3008,85.7143,94.6429,13.2487,1.5063 "Bath and North East Somerset, Swindon and Wiltshire ICB",L81025,St Chads Surgery,16830.8481,7.9937,77.6087,82.0339,3.6867,76.5043,80.2575,3.9721,93.3962,7.7728,1.8077,1.2685,0.9875,11.6888,8.9315,17.8387,70.7976,77.0968,0.8404,0.8325,16.1224,0.9394,89.1159,80.2817,82.6667,96,11.8116,2.5529 "Bath and North East Somerset, Swindon and Wiltshire ICB",L81027,Batheaston Medical Centre,7644.14507,6.456,76.6026,68.3486,3.967,76.5182,81.1224,2.9429,85.7143,6.3971,1.5303,0.6474,0.9098,7.5352,5.5887,15.0088,66.9575,81.2849,0.3767,0.824,12.5632,0.5972,90.0262,79.1367,86.3636,95.4545,8.4414,1.9894 "Bath and North East Somerset, Swindon and Wiltshire ICB",L81030,Harptree Surgery,5894.089529,7.1048,78.4387,73.224,4.3685,75,76.5101,3.1055,92.7273,4.3574,1.2036,0.4309,0.9193,9.6901,6.2681,15.6909,61.5385,81.0127,0.4903,0.4755,9.7812,1.7647,82.7824,87.5,77.0492,91.8033,9.4409,1.9614 "Bath and North East Somerset, Swindon and Wiltshire ICB",L81039,Heart Of Bath,24110.68451,7.1939,71.1744,65.9649,3.702,66.2368,73.306,2.7441,91.5,5.2315,1.6067,0.8435,0.6568,11.9706,5.5384,12.5143,63.1899,74.6012,0.5076,1.3396,9.7563,1.142,80.6646,78.8546,79.6296,89.8148,12.603,1.9197 "Bath and North East Somerset, Swindon and Wiltshire ICB",L81045,St. Augustines Surgery,16159.07074,7.6331,80.4938,76.3566,4.9708,82.0163,83.0846,3.7603,93.9655,7.1602,1.6484,2.2579,0.5686,10.3249,7.096,16.8269,69.3062,79.9685,0.3777,0.7469,13.2358,1.7232,91.7683,73.8971,83.3333,90,8.9081,2.9705 "Bath and North East Somerset, Swindon and Wiltshire ICB",L81059,Elm Hayes Surgery,8200.793033,7.0207,79,82.3529,2.9104,80.1418,79.2453,3.2783,96.875,5.5643,1.8399,0.6691,0.3558,9.9767,7.3814,16.8042,65.6997,80,0.6579,0.6467,15.0135,0.624,89,82.7778,86.5169,94.382,11.5002,1.9402 "Bath and North East Somerset, Swindon and Wiltshire ICB",L81065,Combe Down Surgery,11595.93761,6.7274,78.8265,69.3333,3.6894,76.7059,80.2326,2.4546,92.0635,5.2606,1.0339,0.9223,1.0132,11.2071,4.6976,13.0021,74.7419,80.5726,0.3719,0.8108,10.7745,4.7403,88.0981,77.9006,84.8837,91.8605,9.2427,1.9488 "Bath and North East Somerset, Swindon and Wiltshire ICB",L81068,The Pulteney Practice,11665.71916,5.819,72.3256,62.1528,4.2017,60.2649,71.0938,2.8834,88.7324,5.0009,1.3954,0.8172,1.5415,10.5371,3.5965,12.7824,78.8157,87.3638,0.6399,1.6267,8.5858,2.2773,81.2259,79.2857,88.2353,94.1176,11.6848,1.6961 "Bath and North East Somerset, Swindon and Wiltshire ICB",L81069,St Michael's Surgery,8496.240614,8.956,67.4419,55.8442,2.9156,65.3979,69.7674,3.6139,90.5405,3.7264,3.3199,0.7595,2.217,28.459,8.4599,14.431,77.513,88.7324,1.8008,1.5681,15.2987,2.6728,89.9514,86.9318,86.5385,92.3077,25.9053,1.6906 "Bath and North East Somerset, Swindon and Wiltshire ICB",L81070,Newbridge Surgery,8224.014451,8.0257,80.5461,81.0945,4.5738,78.9286,86.3636,3.068,100,3.1207,1.0076,0.9849,0.43,8.9331,5.3866,13.7213,82.4278,82.1326,0.4189,0.9736,9.1123,3.7398,90.9667,80.8,86.9565,94.2029,9.0551,1.8567 "Bath and North East Somerset, Swindon and Wiltshire ICB",L81071,Fairfield Park Health Centre,10419.69154,6.5156,74.1848,68.3206,2.9203,69.9029,81.0345,2.2987,94.8718,3.4765,1.0843,0.6433,0.8441,11.1124,3.2303,10.7561,72.2374,83.4606,0.3036,0.9397,8.4239,0.6871,86.7403,83.0769,86.3636,93.9394,11.5428,1.2795 "Bath and North East Somerset, Swindon and Wiltshire ICB",L81072,Chew Medical Practice,9401.967677,6.3736,79.0281,75.2768,4.5529,80.7018,82.8054,3.3086,93.4066,7.5685,1.7556,0.9357,0.5646,10.0666,6.4142,17.7004,59.2566,76.2419,0.4051,0.5981,10.2955,1.6003,90.6239,81.6514,84.0426,91.4894,7.9563,2.1896 "Bath and North East Somerset, Swindon and Wiltshire ICB",L81073,West View Surgery,7442.452107,7.7575,79.3893,74.7253,3.1412,77.1863,81.6327,3.1538,92.1348,2.0302,1.4255,0.9209,1.2433,13.7034,6.4136,14.9363,60.7183,69.9659,0.7569,0.6938,12.7794,0.3135,89.5839,81.8182,76,85.3333,12.6979,2.195 "Bath and North East Somerset, Swindon and Wiltshire ICB",L81122,St. Mary's Surgery,5657.353038,7.9862,77.7778,72.1088,5.5486,83.4437,82.5688,3.4228,91.1111,7.5028,1.6033,1.189,0.8213,9.5281,7.448,17.4203,75.4663,84.4444,0.4324,0.6125,14.5838,1.4514,92.7406,84.127,88.7097,95.1613,8.8166,2.2519 "Bath and North East Somerset, Swindon and Wiltshire ICB",L81123,Hillcrest Surgery,5646.75351,7.5739,73.6111,71.2418,4.3268,79.1908,79.1045,3.2451,88.8889,3.3388,1.5976,0.5325,1.0856,14.1254,7.731,15.7763,69.8241,77.512,1.2648,0.8487,16.4891,1.3453,88.245,71.1539,88.0597,94.0299,11.9163,1.8972 "Bath and North East Somerset, Swindon and Wiltshire ICB",L81132,Westfield Surgery,4365.356301,8.8989,76.3889,72.7273,2.8724,80.6818,83.5052,2.4919,91.6667,4.5592,1.3886,0.4185,1.5113,13.6624,7.3836,11.7177,74.6094,89.4231,1.5028,0.5326,14.66,1.2714,90.6101,81.3726,86.2745,90.1961,14.8059,1.3316 "Bath and North East Somerset, Swindon and Wiltshire ICB",L81617,University Medical Centre,4798.906489,2.907,80,70.5882,0.2616,36.9458,81.25,0.0707,100,0.0428,0.0424,0.0071,1.106,7.9642,0.4493,0.5939,62.5,91.6667,0.0141,0.2545,2.0549,0,85.5263,,,,6.1603,0.0424 "Bath and North East Somerset, Swindon and Wiltshire ICB",L81644,Rush Hill Surgery,8138.999128,5.9594,71.8894,67.4699,2.8609,63.0208,76.2821,3.5027,89.899,3.2209,1.7948,1.2401,0.7603,12.7824,5.3106,11.5632,54.9451,77.6119,0.6418,0.8811,9.5798,3.6952,84.6805,75.7813,74.3243,90.5405,11.2994,1.8492 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence Northamptonshire ICB,K83002,Lakeside Healthcare,47894.37481,5.2602,66.8338,63.7285,3.5404,64.3331,69.1436,3.2744,86.4035,3.9859,3.5193,0.8023,1.1207,26.0546,7.566,13.9211,61.1726,76.9231,0.4961,0.76,11.1231,1.1469,82.3258,84.0371,69.1149,88.8889,22.1898,1.8431 Northamptonshire ICB,K83003,Queensview Medical Centre,10333.40707,6.2591,62.5442,58.6735,3.2804,59.5679,64.8148,3.1217,74.2268,3.0932,3.0688,0.709,1.9299,25.1206,8.1627,15.5344,67.5879,74.4526,0.6773,1.0582,9.5836,0.2314,85.1907,91.018,46.6667,85,22.7078,1.672 Northamptonshire ICB,K83005,Queensway Medical Centre,14599.61675,6.746,67.655,74.3682,2.6592,63.7965,69.4323,2.9716,89.3082,3.4489,2.2495,0.5624,2.9562,29.3591,8.4431,14.4484,64.8538,83.558,0.5971,0.729,14.4069,0.7323,88.1176,84.4828,78.9773,86.3636,22.7177,1.6941 Northamptonshire ICB,K83006,Headlands Surgery,10297.98409,7.3484,69.0236,76.9231,3.5903,70.8738,74.4318,2.8478,92.2222,3.1066,2.1664,0.5899,1.1297,20.7986,7.4606,15.0529,62.2372,82.4742,0.9459,0.9968,12.6444,0.6284,87.1355,88.3721,72.7273,90.9091,14.8848,1.8308 Northamptonshire ICB,K83007,Harborough Field Surgery,13486.08265,6.7416,75.495,71.1268,4.4661,72.1739,74.7899,3.2091,88.1657,4.3976,2.1148,0.7912,2.2981,16.5942,8.3993,16.6075,69.2944,76.8519,0.4954,0.7246,15.8124,1.4674,89.2362,91.6107,80,96.3636,15.8326,1.9817 Northamptonshire ICB,K83008,The Pines Surgery,10228.45864,6.1453,77.8116,78.8462,4.1604,76.6467,77.6398,2.7836,93.2039,5.6225,1.5365,0.868,1.7642,16.1339,9.3719,17.5197,73.5075,83.4135,0.9279,1.1374,13.5804,0.5124,93.5606,88.3117,87.0504,95.6835,12.1443,1.9854 Northamptonshire ICB,K83009,Moulton Surgery,10717.15211,6.5493,80.3371,77.4194,3.0272,66.4368,80.1047,1.9695,95.122,2.9926,1.2692,0.5836,1.4577,13.6855,5.2717,11.3429,74.9369,89.3443,0.3866,0.445,8.7121,0.6061,88.898,84.8315,77.9817,91.7431,11.7616,1.3495 Northamptonshire ICB,K83010,Eleanor Cross Healthcare,17575.69684,6.9203,70.6612,65.8192,2.5141,61.4555,66.2207,2.4323,83.1418,4.1497,1.4205,0.5314,1.8949,20.7544,7.2372,11.7067,68.6419,83.3333,0.6694,0.7154,12.3472,1.1276,89.2227,86.3502,63.964,89.1892,16.2219,1.4461 Northamptonshire ICB,K83011,The Redwell Medical Centre,12570.74802,5.9516,75.188,70.5882,5.0082,72.5806,76.9585,3.5033,88.7097,4.1586,1.9161,0.9457,1.9564,21.0471,9.1662,18.454,57.4576,74.0506,0.4276,0.7566,12.6293,0.7671,85.7607,88.015,83.5294,89.4118,15.0735,1.8174 Northamptonshire ICB,K83012,King Edward Road Surgery,12920.01889,6.4096,71.1656,73.8397,3.5667,65.9624,73.8095,2.6874,85.1852,6.814,1.4629,1.3149,1.3834,22.1072,7.7572,15.3928,58.3103,80.6527,0.5753,0.904,12.1309,2.8521,88.3625,90.7473,78.9855,93.4783,14.7271,1.8984 Northamptonshire ICB,K83013,Eskdaill Medical,15191.96139,6.4302,70.0265,74.2268,3.1528,71.2177,77.5,2.8429,93.007,3.6853,2.789,0.9027,1.0285,23.8558,8.2221,15.0701,68.3668,85.7868,0.6939,1.0846,18.1436,1.1178,89.6523,85.1133,79.235,91.2568,20.0341,1.7516 Northamptonshire ICB,K83014,Leicester Terrace Health Care Centre,19202.05855,5.4698,68.4332,59.8765,2.5773,54.5858,67.6259,2.2005,83.6158,3.7154,1.6272,0.4914,0.7431,26.6475,7.328,12.5041,72.2553,85.2608,0.4969,1.032,13.8709,0.3143,85.6914,89.3548,74.2574,91.5842,23.2762,1.3432 Northamptonshire ICB,K83015,Danetre Medical Practice,13036.69625,6.2208,75.0611,76.4493,4.7627,70.1058,73.516,3.0257,85.7143,3.4153,1.8811,1.1366,0.2468,18.2581,9.5873,18.7625,71.8954,84.0551,0.3362,0.7124,14.8159,0.6256,90.5871,80.8271,76.9663,91.573,15.7471,2.0171 Northamptonshire ICB,K83018,Springfield Surgery,10220.8531,7.2332,76.943,72.5979,5.0095,77.3438,75.2033,2.7739,89.6552,4.0121,1.2752,0.5548,1.5487,7.0619,5.9602,14.6477,58.9466,82.2454,0.2484,0.5796,11.0488,1.9808,82.7371,83.9081,67.6768,89.899,9.542,1.8796 Northamptonshire ICB,K83019,The Long Buckby Practice,6061.136929,7.4771,79.7101,72.5275,4.2404,73.6559,75.8865,3.1727,95.5882,3.7354,1.6168,0.4423,0.7062,10.868,6.8491,15.5735,72.705,87.2549,0.3508,0.6559,11.6149,0.1594,88.4062,84.4262,88.0597,97.0149,11.4459,2.4863 Northamptonshire ICB,K83020,Rillwood Medical Centre,3589.162352,5.581,62.9213,55.8824,1.7194,51.0067,65,1.5699,75.8621,3.8926,1.4702,0.2492,2.1812,33.1256,9.5629,11.2634,64.218,63.3333,0.8473,0.8223,8.5906,0.4735,81.4093,83.3333,66.0714,87.5,21.7435,0.9968 Northamptonshire ICB,K83021,Rothwell Medical Centre,21107.11029,7.1429,74.224,80.4928,4.5799,72.4812,75.1381,3.402,91.2371,4.6993,2.1628,0.7539,0.9815,15.7253,8.7173,19.0642,66.7072,84.8806,0.5513,0.6879,18.0775,1.3738,88.6116,84.6154,85.0427,94.4444,14.9441,2.0779 Northamptonshire ICB,K83022,Towcester Medical Centre,8911.702188,7.6068,77.3256,72.51,3.4035,81.3299,80,2.3235,95.3488,4.6416,1.3433,0.4447,2.0364,8.1834,6.4523,15.2024,63.8929,81.57,0.3267,0.4629,14.1752,0.8298,86.6367,82.5843,84.1584,95.0495,10.3772,1.3705 Northamptonshire ICB,K83023,Oundle,9509.158093,6.0255,80.2381,82.0789,4.7583,73.1092,77.8761,3.5592,92.0635,3.9493,1.8177,0.9612,1.1811,9.5207,6.5099,17.2059,67.2519,81.5261,0.295,0.6662,11.1221,1.5427,84.9531,83.2402,87.2549,95.098,8.2112,2.1603 Northamptonshire ICB,K83024,Rushden Medical Centre,10209.11628,6.944,69.6049,68.3983,3.7801,66.875,72.6316,3.5052,86.5169,3.3675,2.7982,0.6186,2.541,17.2032,9.0986,18.0854,67.5802,76.0116,0.6578,0.9622,12.6557,0.5313,86.682,83.1169,77.2727,87.8788,19.3221,2.219 Northamptonshire ICB,K83025,The Mounts Medical Centre,17111.40011,4.2836,60.4167,52.0325,1.8155,43.7048,58.5153,1.9468,54.6448,3.7455,1.4044,0.3026,1.2509,29.5287,7.3912,10.6588,64.8373,73.6667,0.7079,0.8678,9.2073,0.2064,84.2611,90.0929,81.9588,89.6907,23.718,1.0676 Northamptonshire ICB,K83026,Albany House Medical Centre,19938.85249,5.0766,64.2276,59.7222,2.5872,49.6513,60,2.3345,77.0408,2.4438,1.7942,0.6245,1.5638,26.264,7.6794,14.2496,65.3416,72.6087,0.7682,1.0855,10.7502,0.1744,84.805,83.75,79.6537,90.4762,24.8536,1.4919 Northamptonshire ICB,K83027,Langham Place Surgery,10991.94015,5.345,68.3036,58.6207,2.4052,57.5309,67.9245,2.2403,80.4124,3.6899,1.736,0.9504,1.1335,27.051,7.0025,12.5788,70.6274,86.5306,0.6595,1.1832,8.5373,0.7725,83.4477,88.2023,69.0909,92.7273,19.4706,1.542 Northamptonshire ICB,K83028,Spinney Brook Medical Centre,12494.79211,7.9234,74.2424,70.2509,4.3971,70.9497,72.0721,4.0163,93.3333,4.4708,2.9083,0.831,1.6861,17.844,8.9954,18.5147,57.8375,78.0051,0.3462,0.8915,12.1832,1.9243,85.3044,83.7545,79.4872,90.3846,16.4749,2.086 Northamptonshire ICB,K83029,Abington Park Surgery,12544.43208,6.9388,71.7678,68.0934,3.2587,69.9284,71.2963,2.4735,97.1429,6.7033,1.3349,0.9344,0.265,21.6977,8.5446,15.7048,66.2658,81.9048,0.5104,0.903,13.1613,1.015,81.7748,83.0769,78.6585,95.122,14.5035,1.5391 Northamptonshire ICB,K83030,The Cottons Medical Centre,9708.456725,7.8366,75.7143,75.7322,4.4125,76.9231,79.6875,3.4308,92,4.0097,2.3581,1.2043,1.0471,13.1829,9.1058,18.2269,59.6697,77.5862,0.4959,0.7489,14.1617,0.6301,88.3483,79.5556,73.8806,82.8358,15.0457,2.1961 Northamptonshire ICB,K83031,Byfield Medical Centre,7522.846504,7.2357,76.5244,68.6099,5.0742,76.1702,77.4869,2.9691,85.1852,5.692,1.7036,0.4624,2.0222,11.9742,7.2382,17.0845,71.6799,87.2659,0.8883,0.7788,11.2043,1.2824,90.5192,84.1808,93.4066,96.7033,11.7243,1.5697 Northamptonshire ICB,K83032,Abbey House Medical Practice,21313.89535,6.8883,73.454,71.9409,3.1741,63.8853,68.3544,2.8015,88.3721,6.6347,1.275,0.8036,0.9196,17.753,8.0223,15.7269,65.6184,80.2377,0.4804,0.8216,10.2736,2.4532,87.084,83.3333,76.0618,89.5753,18.0087,1.7689 Northamptonshire ICB,K83035,Kingsthorpe Medical Ctr.,6606.464702,3.2649,71.4286,65.3226,2.3101,67.1698,77.8846,2.3535,83.871,4.8098,1.2417,0.7364,0.4938,24.4899,8.5694,12.7058,77.2346,88.4146,0.4909,1.0829,10.3694,0.0901,90.7849,90.411,91.954,96.5517,15.5985,1.2706 Northamptonshire ICB,K83036,Linden Medical Group,17064.72346,6.7967,71.519,76.9006,3.9758,71.3787,74.9141,2.8701,93.4783,3.8857,2.0232,0.7999,0.4914,21.1414,8.2769,16.4971,66.7101,79.3651,0.6411,1.1586,19.4587,1.0885,90.0098,88.0467,86.6337,96.5347,17.4073,1.7879 Northamptonshire ICB,K83037,Dr Spencer & Partners,13524.79932,6.5125,73.6239,81.759,4.017,77.4834,77.0751,3.0622,94.5946,4.2796,2.058,0.5446,0.4443,15.0324,8.3609,16.0184,75.4199,80.167,0.5233,0.6294,15.0875,1.7244,90.6221,86.3636,81.2865,91.8129,12.7401,1.8458 Northamptonshire ICB,K83039,Dryland Medical Centre,12753.32454,6.602,72.2372,78.4861,4.5087,61.7978,68.2927,3.829,78.4946,6.5434,2.2027,1.0153,0.7667,20.8486,8.9264,20.1858,64.1573,81.0954,0.6195,0.8518,9.4948,2.0315,83.2664,88.1188,86.25,94.375,16.5954,2.435 Northamptonshire ICB,K83040,Woodview Medical Centre,10727.36989,6.6357,69.8997,60.7656,3.259,68.4507,72.2892,2.6682,83.7209,6.7483,1.62,0.4955,1.1872,30.8729,9.1689,14.5321,70.6923,85.3333,0.6099,0.6956,8.8603,2.0804,88.3615,89.8496,78.8732,90.1408,20.8891,1.4199 Northamptonshire ICB,K83041,St Lukes Primary Care Centre,22740.46021,5.8242,72.6368,73.9234,2.9991,65.4524,71.2209,2.5186,84.9594,2.1352,1.2228,0.8624,0.9695,18.4264,7.6783,16.1196,67.3377,82.8767,0.5277,0.7637,11.0401,0.7237,85.598,82.3034,78.8462,85.3846,13.7028,1.7205 Northamptonshire ICB,K83042,Park Avenue Medical Centre & King's Heath Practice,15986.99235,6.2214,71.3904,61.2319,2.9561,64.2458,69.6581,2.3175,85.8065,2.925,1.7184,0.4806,0.935,23.4013,8.6104,13.2398,67.7459,88.3951,1.0205,1.0139,14.7024,1.7113,83.3362,90.9091,81.4103,96.7949,19.3239,1.6393 Northamptonshire ICB,K83043,Abington Medical Centre,14846.32819,6.9245,68.8725,70.418,2.7321,62.1951,69.084,2.5937,83.9695,5.0874,1.9297,0.7885,1.2038,23.4354,8.5828,16.7589,56.4633,75.0511,0.5326,0.8922,11.9146,1.5955,83.5713,82.6923,82.6816,92.7374,18.2399,1.7015 Northamptonshire ICB,K83044,Parklands Medical Centre,13677.64301,6.5103,74.5495,73.7013,4.3977,74.8756,77.3663,3.055,91.9355,3.2535,2.1724,0.958,1.2678,15.5324,8.3195,18.7976,56.8803,75.5102,0.4224,0.7619,11.1494,0.3121,89.2632,83.8174,75.6098,85.9756,13.8922,1.7877 Northamptonshire ICB,K83047,Abbey Medical Practice,26139.67389,6.1482,71.2707,75.717,3.2529,69.9793,72.912,2.8107,87.1069,3.4862,1.7149,0.7805,2.7997,22.8682,9.0461,16.0297,65.5621,80.4816,0.6113,0.919,15.6803,1.1587,85.1706,86.4717,80.17,92.3513,17.0535,1.5995 Northamptonshire ICB,K83048,Brook Medical Centre,7149.021269,6.2742,65.7407,59.8639,2.7182,62.5641,70.0855,3.3699,74.5098,5.3739,2.5433,0.6835,0.4904,32.9389,9.2496,14.7671,58.9543,73.7805,0.4292,0.8902,9.6036,0.2896,87.6024,80,70.1149,88.5057,18.1423,1.4942 Northamptonshire ICB,K83049,Brackley Medical Centre,14067.54082,7.3059,75.8803,72.1271,3.7636,74.5303,77.1588,2.8669,95.0311,4.2538,1.5128,0.7259,1.4644,7.5451,6.122,16.2072,58.3569,80.1484,0.1769,0.7076,11.3281,0.3345,85.8429,83.6431,73.5714,90.7143,11.4043,1.653 Northamptonshire ICB,K83050,The Crescent Medical Ctr.,6335.740109,3.9962,64.8438,58.3333,2.6534,55.5556,66.6667,1.3934,82.5,5.8108,1.4527,0.9635,2.9599,24.6059,6.9015,12.5259,66.419,83.1395,0.3558,1.0673,9.152,1.7192,82.9972,85.1563,85.7143,92.8571,21.0487,1.008 Northamptonshire ICB,K83051,Weavers Medical,23446.46679,7.2547,67.1256,73.1415,3.1317,62.0314,68.6782,2.6595,93.5115,2.8443,1.6215,0.842,1.2433,22.6478,7.3651,13.1638,66.7517,82.5871,0.8509,0.8642,14.9654,3.0262,88.1872,85.6383,69.0476,92.8571,20.6912,1.7374 Northamptonshire ICB,K83052,The Parks Medical Practice,19315.99076,6.8859,76.393,73.6308,3.8143,75.651,79.3269,2.7428,89.3443,3.566,1.6845,0.5468,0.9623,7.4154,6.6248,13.9871,61.8691,73.1132,0.3087,0.5292,7.8225,0.5152,82.5099,86.5952,65.7277,88.7324,11.0376,1.6315 Northamptonshire ICB,K83053,Crick Medical Practice,5507.921867,6.9984,79.4239,73.3333,4.6747,78.8235,77.2727,2.7623,96.2264,6.9646,1.373,0.5721,0.9863,10.0759,7.184,18.8133,73.3406,87.069,0.2288,0.3923,10.1047,1.5834,89.8205,87.1212,80.9524,90.4762,9.3235,1.9451 Northamptonshire ICB,K83055,Wootton Medical Centre,6221.793884,5.6575,78.5714,75.5952,3.0022,74.1036,80.8642,2.5193,95.2381,5.2203,1.2792,0.9659,0.678,8.8625,7.4216,16.212,75.8621,87.8906,0.4569,0.3655,12.5932,0.8627,92.0607,83.3333,87.5,95,8.7213,1.5664 Northamptonshire ICB,K83056,County Surgery,4356.041429,5.045,61.7188,57.6923,2.4325,53.9394,71.875,2.0531,86.0465,2.9113,1.5175,0.3571,0.7141,22.8455,7.5298,13.2113,57.7603,78.3133,0.5133,1.0042,10.1346,0.4739,81.1662,80,73.5849,88.6792,20.6466,1.1828 Northamptonshire ICB,K83059,Woodsend Medical Centre,22655.05296,6.6783,67.8766,63.6156,2.7717,71.2247,70.2186,2.6728,93.9286,3.0655,2.6055,0.6154,1.3547,29.8895,7.126,14.0335,65.9245,83.9662,0.557,1.0287,18.6442,0.4017,88.4565,87.5912,75.2174,92.6087,20.8989,1.5678 Northamptonshire ICB,K83064,The Saxon Spires Practice,13915.83292,7.7067,78.4912,76.5625,4.7972,79.4183,78.2152,2.7938,93.5484,5.8859,1.4275,0.5759,1.5305,8.5751,6.2168,18.7109,63.6253,83.4725,0.2635,0.5085,10.2947,0.4146,89.733,85.0909,88,92.6667,9.4136,1.5256 Northamptonshire ICB,K83065,Nene Valley Surgery,6274.844483,7.4334,77.8195,81.1518,5.0076,79.8165,79.5031,3.2832,97.7273,4.965,1.545,0.6898,3.3441,9.9817,7.6211,17.2438,73.7903,85.2713,0.1793,0.4966,17.7956,1.4679,89.9083,90.2778,92.5926,86.4198,9.9503,1.614 Northamptonshire ICB,K83066,Greens Norton & Weedon Medical Practice,14429.17218,8.1711,79.4958,76.8844,6.0879,77.9449,80.8917,3.3157,94.958,4.1071,1.8161,0.8255,1.4806,11.0527,8.1253,21.4074,64.5529,81.7485,0.4265,0.7429,10.6817,0.724,90.4786,88.0702,84.3931,94.2197,8.8713,2.2976 Northamptonshire ICB,K83068,Denton Village Surgery,6145.584715,7.4062,80.6452,77.3196,5.6583,78.5714,80.8917,4.3241,95.7447,5.92,1.4628,0.868,1.184,8.49,7.6908,21.1059,69.8185,81.579,0.5465,0.6591,14.0916,1.5688,91.5663,86.2069,84.375,95.3125,9.4414,2.0415 Northamptonshire ICB,K83069,Marshalls Road Surgery,3110.540387,11.658,75.2475,75,4.909,75.7895,75.5556,2.918,91.6667,1.5679,2.8836,1.0299,5.8798,13.5001,9.7025,22.0048,76.4822,86.6667,0.9269,0.6866,20.4704,0.2465,91.5441,89.2857,84.7826,95.6522,15.4119,2.5747 Northamptonshire ICB,K83070,Bugbrooke Medical Practice,9959.398062,6.8915,78.2235,76.0163,4.1558,76.6082,81.3725,2.7208,91.8919,6.1791,1.6213,0.615,2.1065,11.2086,8.0396,17.1264,62.2873,79.9458,0.4752,0.5684,12.2294,0.5825,89.1253,80.0813,74.2188,89.8438,10.812,1.8822 Northamptonshire ICB,K83076,Weston Favell Medical Centre,8333.710588,5.6822,66.055,55.9211,1.8533,51.4451,60.6061,2.5003,93.1373,4.4686,1.623,0.3948,0.3581,31.3503,10.6227,14.9359,64.6192,83.6879,0.6909,0.7457,11.8734,0.3117,81.5607,79.5833,77.7778,88.1944,21.0006,1.1514 Northamptonshire ICB,K83077,Greenview Surgery,10830.26761,7.6813,72.8522,69.9552,3.2941,66.1631,69.9482,2.8707,93.4783,5.5849,1.6522,0.7642,0.8364,22.9028,8.7316,16.2949,49.2718,73.6842,0.568,1.3321,10.1917,2.3739,86.8458,87.3239,77.4194,90.3226,18.3496,1.6522 Northamptonshire ICB,K83080,Higham Ferrers Surgery,5274.873274,3.9493,74.6914,69.8276,3.2463,72.8261,75.7282,2.5229,86.0465,4.1479,1.8172,0.741,3.0207,11.9932,7.4501,16.3373,73.1507,83.6735,0.3352,0.5469,13.954,0.6812,88.8506,87.8788,77.4194,87.0968,13.8682,1.5702 Northamptonshire ICB,K83081,Summerlee Medical Centre,1645.568311,5.8596,68.5185,72.2222,3.0751,73.6842,78.5714,2.7203,100,1.5049,2.7794,0.1774,1.8059,20.3852,9.8885,16.026,71.0638,88.8889,0.414,0.7096,21.1437,0.1546,90.5013,87.8788,80.7692,96.1538,25.0984,1.715 Northamptonshire ICB,K83601,Earls Barton Medical Centre,7937.261547,5.8689,73.5974,81.9905,3.7469,73.8971,76.8786,2.6616,94.0299,4.6502,1.4736,0.4227,0.9812,11.4339,7.0789,15.3644,53.945,61.9608,0.6397,0.594,12.0023,0.1896,90.2888,80.2548,79.1209,91.2088,11.8006,1.5879 Northamptonshire ICB,K83610,Danes Camp Medical Centre,7490.162751,5.9868,76.8953,70.5882,2.7995,67.7083,73.8889,1.9186,88.6957,3.0509,0.832,0.4307,1.2563,9.363,7.1294,12.7937,72.6126,87.8173,0.3426,0.3426,7.9349,1.5705,91.2619,86.6667,85.2941,95.098,10.8548,0.9691 Northamptonshire ICB,K83614,Dr Kumar & Partner Studfall Medical Ctr,8151.871755,5.9772,70.3125,68.1818,4.1494,78.6611,78.3582,3.8014,96,4.608,3.5471,0.3614,0.8081,25.3455,8.5153,17.1597,72.0266,81.3853,0.6559,0.696,14.6492,1.7359,90.625,94.4134,69.0722,93.8144,27.9961,2.0613 Northamptonshire ICB,K83616,The Meadows Surgery,4846.309995,6.9117,73.743,80.7407,4.18,81.25,80,3.6108,92.5926,4.0126,1.921,0.3913,0.541,10.1345,6.9065,16.8445,71.5686,84.7328,0.4625,0.8716,18.0117,0.9354,92.6198,81.6667,74.5455,94.5455,14.6637,2.1345 Northamptonshire ICB,K83618,Dr Abbas,11530.43727,4.6913,62.2137,54.5918,1.791,71.9057,75,1.5496,79.4286,3.61,1.0435,0.3426,1.2278,31.5758,7.8817,13.4325,73.3933,86.9822,0.6541,0.5918,6.8003,0.2468,83.9114,89.8936,86.5248,92.9078,20.359,0.8566 Northamptonshire ICB,K83620,The Brook Health Centre,7757.661881,6.7563,77.1429,73.1481,4.229,75.0973,81.0056,2.9581,97.4359,5.1676,1.9008,0.6524,2.3464,7.6555,7.581,16.2861,64.1674,81.3953,0.3262,0.6299,12.6397,0.5962,83.5336,87.5,75.2475,93.0693,10.7742,1.8896 Northamptonshire ICB,K83621,Maple Access Partnership Llp,15001.84105,3.0654,44.6154,36.6667,0.7123,39.8363,49.6124,1.0684,72.8938,1.2495,0.9878,0.4166,1.0441,31.4903,4.4881,6.397,53.733,94.1177,0.4099,1.5455,6.0933,0.4253,75.2159,83.3333,45.7447,80.8511,29.6016,0.6787 Northamptonshire ICB,K83622,Great Oakley Medical Centre,12747.10518,6.9446,72.6761,76.8657,3.0602,74.5234,73.6842,2.6973,92.4731,2.732,1.9374,0.3149,0.8463,20.7492,6.6619,12.5899,71.5244,89.9498,0.5751,0.8352,14.994,0.2828,90.7931,89.7119,,,15.0675,1.3829 Northamptonshire ICB,Y00399,Dr Pasquali,4463.218032,7.6519,69.7183,67.3913,4.3849,66.6667,74.3243,3.3576,93.1035,2.2448,3.4327,0.9271,1.7835,16.7114,10.23,18.5417,59.0361,91.8239,0.6014,0.7266,20.08,0.5025,89.4377,80.8081,75,92.1875,18.5998,2.1298 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence Gloucestershire ICB,L84003,Underwood Surgery,8758.161823,7.4845,76.4192,78.7097,2.6778,71.5663,79.3651,1.9491,100,3.8266,0.878,0.9745,0.7674,15.3721,4.5422,9.8508,67.8398,78.8591,0.3073,0.7726,7.9021,0.879,81.8871,84.3137,85.7143,93.5065,11.2443,1.4486 Gloucestershire ICB,L84004,Winchcombe Medical Centre,7514.403186,7.6615,79.8295,81.9383,4.9866,77.7202,80.3468,3.9308,87.5,5.7642,2.0608,0.9668,1.2363,9.7852,6.5314,18.9798,62.5783,78.6667,0.458,0.5597,9.7203,1.7337,89.9912,77.7778,80.5195,87.013,9.5161,2.3407 Gloucestershire ICB,L84005,Minchinhampton Surgery,7429.258856,7.013,82.8488,71.2389,5.2089,81.7073,81.3559,4.0862,96.4286,9.5981,1.0444,1.0966,0.6304,9.0086,6.4471,20.6658,75.9328,83.366,0.6658,0.8486,6.3199,0.3279,90.1948,72.7778,90.9091,89.6104,7.0896,2.9765 Gloucestershire ICB,L84006,Staunton & Corse Surgery,5950.208922,6.879,79.5455,79.5322,3.9929,76.8707,78.9063,3.3866,83.0189,7.8904,1.4493,0.8282,1.0883,16.0084,6.2164,17.5392,67.833,82.6667,0.6211,0.5915,12.2257,1.0811,91.5057,77.4648,82.8125,87.5,7.4522,1.7598 Gloucestershire ICB,L84007,Rowcroft Medical Centre,10796.26702,7.3192,77.2414,71.3376,4.2453,81.8667,83.4586,3.1819,88.4615,3.3786,1.3766,0.7089,0.4593,11.925,6.301,14.2775,68.1117,81.4016,0.6924,1.0139,11.0952,1.2432,89.9099,84.8315,85.7143,96.1905,13.92,1.6487 Gloucestershire ICB,L84008,St George's Surgery,11380.80225,7.2422,73.9521,67.2727,3.6,69.9774,73.9884,3.2681,94.6565,4.0561,1.9489,1.0213,0.3898,17.8373,6.9942,13.7277,63.1579,79.8942,0.8085,0.783,11.0725,1.6437,87.4454,79.2627,78.5124,90.0826,15.5039,1.9745 Gloucestershire ICB,L84009,Hadwen Health,17658.74919,7.2456,77.044,73.4066,3.1069,78.0604,76.0331,2.9173,91.8552,6.5146,1.5219,0.7846,0.1934,17.69,8.7572,15.5503,67.8763,80.303,0.832,0.6161,12.9426,0.6589,82.6598,81.7768,88.0165,90.0826,12.9216,1.743 Gloucestershire ICB,L84010,Upper Thames Medical Group,11705.63104,8.3197,77.6471,79.6353,5.7435,72.8261,77.4809,3.8552,97.1015,6.5748,2.1593,0.8305,1.1897,10.3579,7.5427,17.5015,66.368,76.0436,0.2535,0.6557,7.5141,2.7769,89.9003,82.4428,56.0606,86.3636,10.5444,2.3953 Gloucestershire ICB,L84011,Lydney Practice,8542.92982,7.5105,80.1887,71.6346,4.5327,76.1134,78.5276,3.5894,95.122,7.7924,1.8743,0.9188,1.2115,18.6342,9.0117,18.7431,61.7129,72.8614,0.4778,0.637,15.4203,1.3419,89.8827,78.1116,66.0714,86.6071,13.8088,2.5358 Gloucestershire ICB,L84012,Phoenix Health Group,22230.51971,7.0891,77.839,79.5491,4.4742,74.548,76.9697,3.0045,92.9461,6.0931,1.3561,1.0597,1.5679,10.1509,5.9499,15.0223,69.369,82.6489,0.3532,0.609,9.7003,1.3571,87.3592,76.4557,69.2661,85.7798,9.3789,2.0341 Gloucestershire ICB,L84014,Hucclecote Surgery,9258.328604,7.8966,81.4925,84.0708,5.272,82.0084,80.4469,4.2131,98.3607,7.0352,1.9282,1.1703,0.7264,9.615,9.5479,19.1596,60.1844,74.5247,0.8805,0.6576,15.187,3.1167,87.2883,81.07,85.2713,89.1473,9.0435,2.3183 Gloucestershire ICB,L84015,Sixways Clinic,9662.326055,6.162,80.5851,83.8951,4.9378,80.6557,82.4561,3.422,95.8333,5.1867,1.1528,1.1528,0.8299,7.2797,5.2507,15.6122,71.4746,81.0021,0.472,0.7171,7.6302,1.2249,89.7458,79.3548,84.8101,92.4051,7.0509,2.4326 Gloucestershire ICB,L84016,Frithwood Surgery,5703.898812,7.5486,79.6992,75.4098,5.2017,83.5294,82.9114,3.857,93.4783,5.9207,2.0541,0.6059,1.0864,6.049,5.3409,16.211,64.6173,78.3333,0.7389,0.4433,7.1881,0.9482,89.8376,80.3738,80,89.0909,8.5084,2.0245 Gloucestershire ICB,L84018,Cirencester Health Group,12664.27192,6.8055,75.1064,77.6398,4.1993,73.3333,77.4704,3.0028,91.8367,6.2488,1.8611,0.9149,0.5809,11.8101,8.0726,15.8664,68.024,80.4143,0.6178,0.8993,12.0105,0.2024,86.9428,79.1946,73.7179,91.6667,13.3654,2.2834 Gloucestershire ICB,L84021,Yorkley Health Centre(Wg),8378.898704,7.7733,78.4153,77.0161,4.2444,79.918,80.2083,4.0842,93.5897,5.2846,2.1393,0.8466,1.4999,17.0267,8.9197,19.9977,69.8856,83.4286,0.6178,0.6521,16.4003,0.5847,90.9787,79.5833,81.25,90.1786,13.5513,2.7114 Gloucestershire ICB,L84022,Yorkleigh Surgery(Ct),7927.796197,7.3294,70.4225,68.1081,3.6348,67.8161,74.8299,3.0311,95.2381,2.7181,2.5505,0.69,1.3816,17.2575,6.9657,13.9354,69.0722,88.3721,0.6161,1.1336,12.0439,0.3833,86.7519,77.1654,84.8837,89.5349,16.1198,1.7743 Gloucestershire ICB,L84023,Church Street Practice,13047.79821,8.206,77.1203,74.0964,4.4761,74.2021,77.7344,3.6264,93.2692,7.8444,2.4808,1.1456,0.656,14.8925,8.6976,18.4205,56.307,75.9292,0.4628,0.5918,12.6028,0.9585,90.7781,72.2714,75.4286,77.7143,14.8608,2.5795 Gloucestershire ICB,L84024,Drybrook Surgery,3616.380103,9.4948,73.5484,72,4.5907,77.3196,79.4872,4.1759,95.2381,7.7309,2.1847,1.2998,0.502,17.721,9.6294,17.948,56.3241,69.2308,0.7467,0.6084,12.9518,0.9403,89.3467,75.7282,77.3585,86.7925,12.7775,2.406 Gloucestershire ICB,L84025,Hoyland House,4805.305052,7.0725,80.6034,74.6377,7.5267,76.5306,78.1818,4.2651,96.1539,7.2352,1.2126,1.6517,0.6216,11.1232,5.7886,19.7366,72.3917,88.4735,1.1708,0.8363,7.6827,2.1676,92.902,85.8824,84.0909,84.0909,6.087,3.2406 Gloucestershire ICB,L84026,Aspen Medical Practice,32030.31439,6.3651,71.3235,71.7949,4.1554,60.8612,70.9552,3.0759,86.194,7.309,1.9392,0.9011,1.8472,22.2899,9.4274,16.3923,55.6031,76.1257,1.6144,1.1017,16.8003,1.2788,81.8323,76.7665,68.6099,83.1839,16.0363,1.8882 Gloucestershire ICB,L84027,Culverhay Surgery,16410.58925,8.2212,79.1549,77.8947,3.8999,78.6982,79.9472,3.0115,93.038,4.5784,1.6762,0.7878,0.6707,7.5626,7.7636,15.3816,66.5566,75.6714,0.3799,0.5364,12.9483,0.3069,87.9836,75.5162,79.1262,92.233,10.4366,2.1176 Gloucestershire ICB,L84028,Forest Health Care,12655.46193,8.1714,73.8839,71.9745,4.6434,76.3975,77.5,4.0941,84.9057,7.2014,2.7723,0.7725,0.8726,22.306,9.399,18.2388,69.8887,83.9713,1.193,0.7982,16.7368,0.6496,90.8177,88.0126,86.3905,93.4911,23.9735,2.3002 Gloucestershire ICB,L84029,Blakeney Surgery,3560.899159,9.0148,76.259,75.5556,2.7957,77.6471,78.3784,3.8403,92.3077,6.9572,2.8571,1.0753,1.3548,20.3274,8.972,17.6651,72.0879,83.3333,4.3318,1.7204,16.2944,0.3016,92.3907,84.2697,82.9787,93.617,12.9931,2.2734 Gloucestershire ICB,L84030,Berkeley Place Surgery,14159.73245,6.3628,74.7984,74.3284,3.379,71.1146,75.6184,2.3538,89.3855,4.4625,1.4489,0.6529,0.6539,12.1979,5.2032,12.7312,54.375,72.1382,0.441,0.7789,6.6327,1.314,82.1229,78.2427,71.7557,83.9695,17.5622,1.5692 Gloucestershire ICB,L84031,Stow Surgery,5941.446921,6.8928,77.2549,75.4286,5.2815,81.1189,83.4586,4.4623,97.3684,6.1161,1.9174,1.1504,1.215,11.9562,7.3404,19.7664,68.6228,82.9431,0.2266,0.7495,16.8863,0.6724,88.6508,80.3279,85.4839,95.1613,10.3715,2.7541 Gloucestershire ICB,L84033,Weston House Practice,19403.87977,7.8983,74.3902,75.1111,4.0423,79.4168,83.378,3.4927,94.0299,4.9596,2.4038,1.4074,0.7122,12.7199,7.952,15.9125,59.3264,79.2839,0.9965,1.0632,10.9136,2.056,87.6905,81.5461,74.5763,85.5932,13.7673,2.2343 Gloucestershire ICB,L84034,"Partners In Health, Pavilion Family Drs",11388.72988,8.2919,74.6032,66.9039,3.4769,65.9204,73.4783,2.7767,94.2529,5.2018,1.8972,0.798,0.4541,19.001,8.9683,14.2822,45.4802,68.0473,0.7898,0.6514,12.8187,0.3439,79.5165,81.1111,67.6647,88.024,16.0082,1.7588 Gloucestershire ICB,L84036,Cleevelands Medical Centre,9610.73547,8.7637,79.096,78.8235,4.2779,77.7778,80.5687,3.3819,97.5807,5.6446,1.2386,0.8696,0.8684,9.6483,6.5921,14.6785,74.6803,84.9398,0.3865,0.5622,12.6364,0.6061,89.8449,80.0971,90.8257,94.4954,8.8788,1.9062 Gloucestershire ICB,L84037,Holts Health Centre,11555.29014,6.7906,77.8,73.8318,4.4097,70.7831,77.2727,3.6155,94.6903,6.6767,1.6299,0.9928,0.8447,16.1379,7.5378,17.0845,64.5285,77.4704,0.6619,0.7363,11.0005,1.4192,88.3875,77.6892,76.259,88.4892,11.2438,2.573 Gloucestershire ICB,L84038,Cotswold Medical Practice,10596.81835,6.7541,74.8373,77.0968,5.4406,73.0769,78.2101,3.2418,92.0455,8.1519,1.6687,1.2341,1.6965,11.0252,6.6954,15.9221,63.0873,81.4664,0.3129,0.591,10.9688,2.6721,87.2089,83.2636,82.4561,89.4737,10.3023,2.59 Gloucestershire ICB,L84039,Beeches Green Surgery,7919.499991,8.0104,76.7857,70.7424,4.1799,76.5799,78.2383,2.7979,95.3125,5.9995,1.5972,0.4531,0.6497,11.999,6.2355,18.1808,71.8774,80.6667,1.5745,0.9629,6.9395,0.7587,89.2865,74.8603,89.1566,91.5663,13.3175,1.903 Gloucestershire ICB,L84040,The Leckhampton Surgery,11852.85088,7.2902,81.4313,84.2857,5.3121,82.9132,81.9788,3.8564,93.6842,7.4266,1.067,1.1432,0.7266,6.2187,5.7241,17.2853,66.8571,76.7677,0.2668,0.6783,7.4172,1.786,86.6556,75,82.5243,91.2621,5.4076,2.294 Gloucestershire ICB,L84041,Overton Park Surgery,12132.15605,7.3833,75.5448,78.9137,3.6429,73.8386,78.1481,2.7686,92.4528,4.5513,1.4418,0.8513,0.7569,13.9313,5.5327,12.4089,69.1525,82.1918,0.4832,1.0814,9.3286,0.3206,86.1877,77.6536,78.6408,91.2621,10.5292,2.04 Gloucestershire ICB,L84043,Chipping Campden Surgery,5177.471043,7.3872,81.8565,78.6164,4.3911,74.7967,80,3.8642,86.6667,8.8311,1.2685,1.171,0.8366,10.2714,6.1697,19.0671,68.5131,83.1615,0.3903,0.7416,8.5057,2.6601,83.6218,81.0811,89.7959,87.7551,8.2838,2.7713 Gloucestershire ICB,L84045,Mitcheldean Surgery,7258.506525,7.0637,77.5244,75.8974,4.6489,75.9563,76.1905,3.7781,93.1035,6.9425,2.3315,1.8399,0.5643,15.359,9.3408,18.3287,62.614,74.5283,0.8287,0.6742,7.6094,0.9146,91.3884,76.3547,84.466,89.3204,10.9903,2.6124 Gloucestershire ICB,L84046,Dockham Surgery,6925.040175,8.233,73.1405,72.7848,4.5779,71.2042,74.1935,5.1831,87.3418,4.0031,2.7623,0.9156,0.7625,23.3021,10.6295,16.0149,53.1807,73.1707,1.0242,0.8069,14.9257,0.3098,87.3691,81.8681,66.9903,86.4078,18.1074,2.5916 Gloucestershire ICB,L84047,Churchdown Surgery,14185.14346,7.7566,77.5629,75.8427,3.854,76.4133,78.2007,3.6577,90.7801,5.6147,2.1462,0.8114,0.9496,9.8666,8.4065,16.0505,57.5,69.6784,0.7459,0.6216,11.2625,0.5947,85.3014,80.7927,70.2703,89.7297,9.6793,2.1135 Gloucestershire ICB,L84048,"The Stoke Road Surgery,",10039.20607,7.6582,78.8512,78.9474,6.1744,85.4369,81.8182,3.8113,96.875,5.098,1.5817,0.9814,0.5466,8.4418,7.5461,19.4283,57.3611,76.4608,0.4002,0.6003,9.0196,1.8696,80.0921,81.9444,88.6957,92.1739,7.9865,2.4107 Gloucestershire ICB,L84049,The Royal Well Surgery,7644.453848,6.4738,71.7073,66.6667,3.6688,62.6667,70.4918,3.2866,83.8235,5.5062,1.6178,1.0955,0.9983,17.3363,6.9725,14.0127,63.1829,77.907,0.5223,1.1465,9.3745,0.8277,82.2576,87.6471,72.4138,82.7586,17.6911,1.6433 Gloucestershire ICB,L84050,Rosebank Health,35979.36199,7.3392,68.8866,72.5517,2.4127,69.1539,74.5928,2.3451,88.0682,4.7418,1.9222,0.7483,1.1236,20.6351,8.4524,12.3539,55.1969,74.026,0.9836,0.886,15.0181,1.7781,84.4126,82.0051,69.6017,87.8407,18.7222,1.3841 Gloucestershire ICB,L84051,Chipping Surgery,8113.89109,7.8106,81.3187,75.8065,3.3236,80,81.5,3.4587,96.3415,6.0229,1.6099,0.8517,1.3629,7.2372,7.029,16.5974,75.748,86.5854,0.3843,0.5713,14.6937,1.1653,90.7407,81.7757,83.3333,94.7917,11.0383,2.285 Gloucestershire ICB,L84052,Severnside Medical Practice,10564.97174,6.8143,69.2946,59.6591,2.6497,56.8862,70,3.1667,88.5417,5.5607,2.2727,0.9048,1.011,34.9006,9.4251,13.5717,59.3657,76.0956,1.0556,1.4972,14.1945,0.5479,85.9895,80.2521,75.7353,87.5,25.0963,1.8742 Gloucestershire ICB,L84053,Hilary Cottage Surgery,7529.944675,8.2775,78.3784,74.8815,5.2215,71.9212,74.1176,3.5491,90.3226,8.0175,1.915,0.8681,0.8926,8.508,7.5887,20.0562,57.774,68.2741,0.2298,0.4596,8.1741,0.8838,89.4725,83.9572,70.4545,94.3182,9.1228,2.2852 Gloucestershire ICB,L84054,Mythe Medical Practice,12987.59044,7.4581,77.0961,72.4771,3.6589,77.9343,80,3.7391,94.6309,5.7156,2.2303,0.9402,1.0835,14.1461,7.9622,17.2085,66.9325,80,0.6633,0.656,14.7088,0.2017,88.2215,78.2609,84.5679,93.2099,12.8526,2.2886 Gloucestershire ICB,L84058,St Catherine's Surgery,9443.383797,6.7862,68.6347,66.3043,3.9874,64.3791,67.3333,2.828,85.7143,6.0743,2.8606,1.2136,1.0923,20.6082,7.7429,14.8337,57.0489,78.0328,0.8993,1.1161,12.3618,3.9076,86.1254,83.3333,81.9048,83.8095,19.7092,1.972 Gloucestershire ICB,L84059,Royal Crescent Surgery,7816.632178,7.1859,70.0787,69.2771,3.7932,72.0859,76.1194,2.5973,93.75,2.4028,1.5342,0.749,0.699,16.0182,6.1186,13.1916,53.9299,81.8868,0.4953,0.7611,10.0189,0.2949,86.9577,85.7143,82.1918,86.3014,13.4711,1.6912 Gloucestershire ICB,L84060,Cam & Uley Family Practice,10457.5695,9.75,79.3792,75.3425,4.082,78.2895,77.1689,3.6061,92.5234,4.8724,1.7298,1.3271,0.7658,11.3952,7.9943,19.5039,66.4787,79.6262,0.659,0.6132,13.8291,0.9522,85.8362,82.2314,85.2713,91.4729,11.0514,2.1417 Gloucestershire ICB,L84063,Rendcomb Surgery,3856.724021,7.9389,82.4074,79.085,6.0889,82.4,81.6667,2.8471,97.4359,5.7215,1.0391,0.5403,1.0886,13.5662,4.4605,14.2768,66.4884,74.6032,0.2078,0.3741,9.5696,0.8783,89.7967,79.3651,86.6667,96.6667,7.3573,1.6209 Gloucestershire ICB,L84065,Prices Mill Surgery,8413.544143,7.4339,79.2405,73.7643,4.8413,76.6917,80.0948,3.4929,88.7324,6.0324,1.4864,0.9661,0.6473,9.3575,6.1774,19.1103,68.553,75.9901,0.7857,0.6795,9.7087,3.3793,89.2386,80.4878,84.7059,95.2941,11.5951,2.1128 Gloucestershire ICB,L84067,Longlevens Surgery,8202.169899,7.1721,83.7423,79.386,3.8685,78.4314,81.5029,3.0088,90.9091,6.275,1.4294,0.7297,0.7231,10.1456,7.3211,15.6537,65.6574,79.7428,0.6298,0.5498,16.1007,3.277,86.0316,79.2553,89.4231,95.1923,10.35,1.7093 Gloucestershire ICB,L84068,Mann Cottage Surgery,5562.519973,7.1456,80.4255,77.5,5.3905,79.7468,79.3103,4.3271,100,8.271,1.7418,0.8434,0.308,12.6324,6.052,19.5636,75.5968,84.3451,0.2567,0.6601,6.7752,0.3924,91.878,89.7196,78.8462,94.2308,9.3647,2.952 Gloucestershire ICB,L84069,Coleford Family Doctors,11652.21938,8.2415,75.4601,71.1443,4.9966,77.3481,74.8299,4.3532,87.7193,8.598,3.5729,1.1636,0.2117,19.2846,11.9324,21.3416,63.7411,83.7587,1.2457,0.8624,15.9095,1.9979,89.9178,79.0875,71.4286,84.8485,15.1033,2.7242 Gloucestershire ICB,L84072,White House Surgery,5090.640427,7.3821,76.1468,79.1667,5.1327,74.2857,76.1062,3.8741,90.6977,3.5822,2.7139,0.59,0.442,12.6797,7.6764,17.1681,71.0324,85.2679,0.3343,0.9046,11.0956,0.1944,90.7427,77.551,72.1311,96.7213,9.5077,1.9076 Gloucestershire ICB,L84075,Walnut Tree Practice,9209.66514,8.5655,75.7862,72.5581,3.835,74.2671,75.9563,3.4732,95.0495,4.6061,2.2535,0.7649,1.0008,13.0438,8.1984,17.8003,68.2626,83.6066,0.8063,0.6409,11.7911,0.5848,84.5472,85.5073,86.087,90.4348,26.3921,1.9537 Gloucestershire ICB,L84077,Five Valleys Medical Practice,14190.58213,6.8028,74.8239,69.9482,4.7303,79.8144,79.8077,3.6851,83.3333,6.4256,2.1776,1.1926,0.9062,12.3843,7.2254,17.6817,68.4631,81.8898,0.6633,1.1725,14.5811,0.9208,89.5647,78.7692,85.5422,92.7711,15.6618,2.2312 Gloucestershire ICB,L84080,Regent Street Surgery,7552.348685,7.4216,77.8409,72.7273,3.4328,73.7931,77.0833,3.9019,92.1569,3.5165,2.1962,0.7463,0.2865,12.3086,7.771,16.5885,63.6953,76.3975,1.0021,0.597,10.5236,0.4924,84.2382,85.1064,81.295,89.9281,13.0166,1.9616 Gloucestershire ICB,L84081,Kingsholm Surgery,5279.086997,6.7078,68.6441,62.0253,2.3469,58.4416,63.0137,2.7269,71.7391,5.5587,2.4587,1.1623,1.648,31.5959,8.5463,15.2883,51.8587,65.7534,0.9835,1.4752,12.8212,0.2589,86.1875,83.1579,72.4138,86.2069,19.5876,2.1457 Gloucestershire ICB,L84084,Brockworth Surgery,10080.48808,8.2417,73.8019,72.3214,3.3476,76.0095,76.7442,2.9737,95.1049,6.1079,1.9142,1.1129,1.1958,15.4085,7.9334,13.1677,58.5052,79.3651,0.9259,0.6677,11.4771,0.3197,88.5332,79.9107,78.9063,85.9375,14.8409,1.6471 Gloucestershire ICB,L84085,Severnbank Surgery,4253.560336,8.0992,74.4681,68.2353,4.5158,69.5238,74.1935,4.0198,91.6667,5.552,2.0882,1.0963,1.8293,19.9697,9.8314,18.9768,54.8387,66.2722,1.2007,1.0702,13.4146,0.9096,86.5964,84.5361,71.1864,84.7458,17.1578,2.4015 Gloucestershire ICB,L84606,The Alney Practice,12405.86853,6.8335,76.6376,77.0227,4.4523,75.4601,83.682,3.5382,91.5663,7.6628,1.9215,0.6941,0.6554,16.4432,7.7713,16.1673,55.8304,66.6667,0.4571,0.6518,9.6088,0.2326,85.1164,81.295,78.3217,79.7203,11.0201,2.4378 Gloucestershire ICB,L84613,Stonehouse Health Clinic,3401.529106,4.636,72.807,69.6203,3.5912,80.2198,77.4194,3.1921,84.2105,9.8077,1.4733,2.1179,1.4615,13.805,10.4964,20.0123,60.7069,74.8538,1.2277,0.706,11.7308,0.4065,95.4988,85.7143,78.8462,86.5385,13.3358,2.2406 Gloucestershire ICB,L84617,Quedgeley Medical Centre,5234.355329,7.3477,72.9885,64.2857,3.0694,75.9124,77.0642,1.9128,88.4615,3.8746,0.86,0.2817,0.9541,14.7914,7.874,12.6928,76.0695,85.1852,0.5635,0.5931,11.7601,0.2892,90.3443,87.2549,89.1892,93.2432,11.6329,1.4235 Gloucestershire ICB,Y02519,Gloucester Health Access Centre,9723.403819,6.42,59.3103,50.4274,1.1617,48.8532,62.3762,1.7018,83.3333,2.4014,1.7834,0.1223,1.3952,37.7704,6.8742,9.2836,56.3766,79.1667,0.9987,1.2331,11.3496,0.5385,81.2094,88.0282,76.8421,90.5263,31.0818,1.0802 Gloucestershire ICB,Y05212,West Cheltenham Medical,4828.841305,,69.4737,64,,66.6667,67.1875,,,,,,,26.3645,,,,,,,,,,,70.4545,79.5455,, ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence Hampshire and Isle Of Wight ICB,J82028,Trafalgar Medical Group Practice,26601.26261,6.227,68.8062,71.3494,3.2375,64.2453,69.9779,2.4989,84.8,2.1713,2.0065,0.6615,0.7135,21.8633,5.3783,11.6787,57.6769,84.2029,0.3601,1.4075,9.8525,0.5052,80.57,80.0546,68.8525,86.0656,14.6887,1.7419 Hampshire and Isle Of Wight ICB,J82055,Craneswater Group Practice,12325.6164,6.1061,72.0109,76.2846,4.1078,61.7647,71.6346,2.974,91.0891,1.8056,2.4246,0.9942,0.877,21.0447,6.3804,14.3032,67.1514,84.7134,0.5669,1.221,10.0289,0.8209,83.2219,80.2326,63.4783,91.3043,13.534,2.2676 Hampshire and Isle Of Wight ICB,J82060,The Lighthouse Group Practice,14910.46733,6.8611,64.8571,65,2.9045,57.2034,64.7059,2.8242,82.0896,3.2172,2.6491,0.4889,1.1916,38.234,7.1403,11.3187,72.0892,85,0.6203,1.1457,16.8836,1.3612,83.668,86.6667,81.457,90.0662,22.7238,1.5617 Hampshire and Isle Of Wight ICB,J82073,Kirklands Surgery,9206.197165,6.63,73.4007,82.8054,3.5748,73.6196,76.1111,2.837,95.3488,2.1363,2.9928,0.6755,0.4559,22.7571,7.7949,14.8083,73.0298,86.2191,0.53,0.7794,15.0059,0.7085,92.4899,85.7143,75.2212,87.6106,14.9024,1.8186 Hampshire and Isle Of Wight ICB,J82085,Island City Practice,39685.93595,8.7122,64.385,65.2695,2.9878,65.694,69.9463,2.5732,84.3038,2.864,2.7765,0.6072,1.8589,37.4707,8.164,11.7454,65.9464,78.9116,0.7543,1.0833,12.4165,2.3576,82.6281,83.7719,71.7778,83.3333,22.023,1.6076 Hampshire and Isle Of Wight ICB,J82102,The Drayton Surgery,22372.35036,7.863,78.9544,81.0909,4.3515,73.8622,80.2691,3.1311,88.3621,4.0761,2.5587,0.989,0.6255,14.6415,7.6598,15.6973,61.4402,78.2656,0.5976,0.6144,14.1524,1.4995,89.5321,81.9383,82.4427,91.6031,11.0216,1.9359 Hampshire and Isle Of Wight ICB,J82149,Derby Road Practice,15752.75513,7.1819,71.9027,76.8072,3.1182,67.8125,73.3577,2.4542,90.303,3.0582,2.4305,0.6047,0.8216,26.5329,8.0575,12.9113,78.1132,87.6161,0.6639,0.7469,12.6055,1.7824,87.5788,85.0534,85.3659,81.9512,17.6361,1.5531 Hampshire and Isle Of Wight ICB,J82155,Portsdown Group Practice,64139.14782,7.3096,65.9613,68.3404,3.5561,67.3146,71.9243,3.0681,91.0632,4.6914,3.524,0.6406,0.8094,30.2594,9.4843,14.4509,65.9449,79.921,1.1399,1.0131,26.575,3.5709,87.4784,83.6045,82.8179,91.1798,21.2021,2.0261 Hampshire and Isle Of Wight ICB,J82194,East Shore Partnership,13512.9027,7.1468,71.8535,74.1935,3.6323,74.2991,77.2201,2.9475,89.6552,3.9497,4.131,0.923,0.9553,22.8,8.6146,15.5192,62.9023,71.6895,0.7815,1.1239,13.9892,2.3048,85.8421,81.203,74.8571,84.5714,15.9829,1.8087 Hampshire and Isle Of Wight ICB,J82199,The Unicity Medical Centre,12382.5257,2.9348,70.7547,68,0.633,40.3535,77.9412,0.4686,84.9462,0.3104,0.5334,0.0698,0.9151,29.596,1.4347,2.5571,55.2339,79.6875,0.1396,0.3788,6.24,1.8211,93.0057,87.7193,77.551,89.7959,13.5736,0.319 Hampshire and Isle Of Wight ICB,J82001,Burgess Road Surgery,8519.860235,6.5304,62.4365,59.5745,2.2375,66.0112,72.2222,2.1262,87.3563,2.343,2.0452,0.2734,0.7379,23.5258,7.0043,11.4913,59.3238,70.4403,0.5569,0.9821,8.479,0.279,77.3138,90.4412,74.2574,93.0693,20.481,1.4782 Hampshire and Isle Of Wight ICB,J82002,Lordshill Health Centre,15948.84515,7.9589,71.6247,77.0073,3.8997,69.8077,71.6981,3.0954,96.0784,4.2516,3.0882,0.7254,1.0652,27.5676,9.2772,14.8161,70.4417,76.7677,1.0126,1.0342,16.4187,2.4441,88.8928,89.3175,82.7957,89.2473,18.6087,2.2838 Hampshire and Isle Of Wight ICB,J82005,Rowlands Castle Surgery,4610.956751,8.1056,84.8624,80.4196,6.2307,77.3913,78.0702,3.5007,96.1539,4.0657,1.1889,1.0348,0.9904,11.5521,6.3918,17.2391,73.6749,84.3318,0.2202,0.7706,8.4962,0.7962,90.7213,68.2927,82.6087,93.4783,7.6034,2.9062 Hampshire and Isle Of Wight ICB,J82007,Coastal Medical Partnership,41178.20399,8.3735,77.8784,82.3216,7.5844,70.494,75.0374,5.8599,92.7273,5.2448,2.7388,2.0707,0.4629,14.9416,8.6962,27.319,54.3327,70.297,1.0654,1.0444,9.7136,2.4281,85.6882,79.0202,67.462,85.4664,11.7675,3.8524 Hampshire and Isle Of Wight ICB,J82009,Emsworth Surgery,15834.87657,7.2967,83.1776,82.4818,6.0777,75.8883,80.2548,3.9981,92.0635,3.763,1.7576,1.5228,0.1689,12.0587,6.8571,19.6955,64.8871,80.0607,0.5702,0.644,11.0155,2.0025,91.2873,81.2709,85.9873,91.0828,8.9195,2.6364 Hampshire and Isle Of Wight ICB,J82010,The Bosmere Medical Practice,20312.90364,7.8969,76.3994,76.5351,4.129,73.4558,74,3.4348,87.5,4.7483,2.3125,0.6368,1.2583,26.7897,9.2952,15.4513,68.421,85.9829,0.6525,0.877,15.3642,1.6561,90.2856,84.5011,76.9841,85.3175,16.0386,2.135 Hampshire and Isle Of Wight ICB,J82012,Portchester Practice,11119.08515,7.3138,78.4173,83.8129,6.1678,76.1765,76.7123,3.9565,95.2381,6.7232,2.0925,1.0691,2.8987,13.0076,9.1789,19.1886,70.9413,86.2669,0.5483,0.8224,18.4283,3.412,89.1301,82.2785,91.5033,94.1176,11.695,2.2661 Hampshire and Isle Of Wight ICB,J82016,Stockbridge Surgery,8515.061125,7.116,80,78.2288,6.7677,78.2787,81.0427,3.5055,97.8261,2.3932,1.4265,0.5197,1.5143,11.9865,5.8957,17.3836,73.6007,80,0.1438,0.4976,11.006,1.7292,86.4984,86.2595,86.0759,87.3418,8.9933,2.5876 Hampshire and Isle Of Wight ICB,J82017,The andover Health Centre Medical Pract,13395.85172,6.9753,78.4188,81.5385,4.9578,74.4731,75.6554,2.8536,95.2,6.3228,1.8664,0.663,2.2389,12.2615,6.9087,16.9417,61.7318,78.4314,0.6774,0.663,11.4365,2.3744,88.1674,80.9353,74.6667,88.6667,12.1156,2.1907 Hampshire and Isle Of Wight ICB,J82018,Stokewood Surgery,17625.65295,7.6625,78.6378,81.7352,4.8563,77.0548,76.3736,3.1253,97.6958,3.915,1.2982,1.2501,2.337,7.8085,6.9403,18.0094,71.5137,81.4988,0.4648,0.6732,15.3872,1.2846,89.6988,81.5436,76.4706,84.492,10.2001,2.5377 Hampshire and Isle Of Wight ICB,J82019,The Fryern Surgery,14466.01867,7.2626,82.3413,76.9939,5.4931,75.817,80.0766,3.1795,95.2381,7.0891,1.2493,1.2824,1.7576,6.0644,6.4769,16.1555,72.322,83.682,0.6148,0.8858,10.6043,2.0311,91.7028,73.3333,87.1429,91.4286,8.3806,2.4458 Hampshire and Isle Of Wight ICB,J82020,Archers Practice,6637.174646,5.7868,68.2692,64.9254,2.7669,64.4068,72.0721,2.3154,95.5882,1.7089,1.1796,0.4369,0.3675,14.7036,7.2582,13.4993,76.7832,84.9057,0.4951,0.6408,12.0176,0.2415,81.8678,83.1579,80.8219,86.3014,16.7147,1.7184 Hampshire and Isle Of Wight ICB,J82021,Waterside Medical Practice,11302.4169,7.579,79.2793,75.188,7.469,74.3316,77.5956,4.8187,89.0909,8.3422,3.6485,1.9619,2.4762,16.0646,10.147,24.5526,55.3501,78.115,0.4245,0.9523,16.7903,2.9928,88.5694,81.3793,80,89.6552,12.6978,3.4305 Hampshire and Isle Of Wight ICB,J82022,Victor Street Surgery,13184.09738,6.1465,63.2353,61.3333,2.9897,50.9569,61.0811,3.1014,88.6598,2.8704,3.2217,0.6787,0.8865,28.0871,8.4785,14.3986,58.209,75.4342,0.5928,1.0911,13.1701,0.6982,77.8461,88.2353,69.0789,78.9474,17.2013,2.079 Hampshire and Isle Of Wight ICB,J82024,Solent GP Surgery,21973.85846,4.5757,55.0769,44.843,1.34,43.1844,53.1707,1.6898,80.1556,1.6219,1.5626,0.2725,1.5111,33.775,6.2615,8.4806,50.889,79.2373,0.4633,1.2401,10.2567,1.1653,77.6055,87.5,72.6829,87.8049,19.2458,0.9403 Hampshire and Isle Of Wight ICB,J82025,Charlton Hill Surgery,13881.91694,6.8079,79.4582,83.432,4.1869,76.3158,80.1347,2.4762,98.3517,3.6758,1.4445,0.7256,0.7871,12.7575,5.9784,13.6191,69.5332,84.689,0.7256,0.7122,11.5214,3.0737,90.1832,83.1111,86.9919,93.4959,12.1217,1.8438 Hampshire and Isle Of Wight ICB,J82026,Centre Practice,17581.70751,7.7019,75.5282,76.455,5.1104,69.8312,73.0897,4.314,93.5484,3.7373,1.8435,1.1976,0.7966,13.2391,8.9528,17.7138,67.3868,77.9796,0.6521,1.2604,11.0259,2.0077,86.1502,77.4684,84.6154,91.4027,13.4219,2.5646 Hampshire and Isle Of Wight ICB,J82033,Gudgeheath Lane Surgery,9135.036066,7.6064,81.8697,80.7377,4.4298,68.75,73.5751,3.4972,91.5094,4.7424,1.4943,1.028,2.0079,11.1898,7.9541,17.7088,37.1321,58.9595,0.4981,0.7312,9.749,2.2249,87.7945,75.6477,80.3922,81.3725,11.9593,2.3633 Hampshire and Isle Of Wight ICB,J82034,Wickham Surgery,13415.29029,7.9475,78.9286,74.8649,5.3067,77.4752,80.0676,3.2123,94.3089,3.5069,1.5779,0.8491,1.9639,12.6838,6.4605,19.8259,64.6921,80.7407,0.3184,0.658,10.8101,1.0672,90.433,88.9908,73.2824,88.5496,10.0318,2.3703 Hampshire and Isle Of Wight ICB,J82035,St Clements Partnership,16153.51877,6.5129,73.9958,76.7677,4.4727,59.0264,73.7903,2.8978,86.9565,4.0458,1.7261,1.0583,2.2887,11.9427,5.9384,14.2119,60.5047,79.1356,0.5922,1.2473,9.8339,3.6206,84.2323,80.7018,75.6757,89.1892,13.9578,2.6269 Hampshire and Isle Of Wight ICB,J82036,West Meon Surgery,2451.027202,6.7661,78.1955,71.2644,4.5952,75.3846,78.8732,3.5011,84.2105,3.5589,1.8964,0.7659,1.362,13.9062,4.896,16.2655,75.4286,92.7083,0.3282,0.5835,8.7434,1.5069,91.7225,77.7778,90,95,11.017,2.6623 Hampshire and Isle Of Wight ICB,J82039,Ringwood Medical Centre,11957.48478,8.2026,75.6152,70.4082,5.9152,75,78.6957,5.5726,92.3077,7.5358,2.092,1.4608,0.7966,12.9106,7.6743,19.1073,53.6153,70.9035,0.9288,0.7484,11.7128,1.5542,83.7161,77.8481,83.3333,89.3939,12.3659,3.1019 Hampshire and Isle Of Wight ICB,J82040,West End Road Surgery,17762.77166,5.7656,73.2739,79.8107,2.5111,69.6629,75.969,2.4756,89.6714,4.0436,2.4815,0.3545,0.478,30.8898,7.8484,12.5968,74.0566,83.4862,0.3368,0.8508,18.0237,1.2108,89.6922,82.4281,90.0524,91.0995,20.5265,1.5067 Hampshire and Isle Of Wight ICB,J82042,Badgerswood Surgery,15695.9518,7.4511,73.849,72.3861,4.3919,76.6551,76.5306,2.9299,91.6279,5.5327,2.1231,0.4732,1.8597,13.2959,7.8,15.7537,77.5265,86.1272,0.6006,0.6794,13.7699,1.1654,90.1511,85.8382,86.5922,92.7374,14.1773,1.6561 Hampshire and Isle Of Wight ICB,J82050,St Paul's Surgery,18336.75936,5.3097,77.1639,78.607,3.2481,63.357,76.5957,1.5117,89.2683,2.5719,1.0214,0.4372,2.0781,9.4014,3.3973,9.683,54.9647,75.1423,0.3922,0.8253,7.5099,3.2399,81.3603,84.4221,62.6263,84.8485,9.1466,1.4953 Hampshire and Isle Of Wight ICB,J82051,Blackthorn Health Centre,18244.30524,6.4641,76.2579,78.913,4.9207,76.8982,75,3.156,95.0739,2.1924,1.8405,0.7362,1.4908,12.9892,6.6284,15.3251,52.1001,72.6813,0.5197,0.877,16.48,0.4886,86.4701,81.5686,68.3616,83.0508,13.8344,1.9271 Hampshire and Isle Of Wight ICB,J82053,Adelaide Medical Centre,10541.06905,7.3325,71.2538,80.9735,4.1543,71.875,74.0331,2.7881,92,5.7229,2.4071,0.5855,2.7461,15.066,8.0196,17.3885,62.2503,83.4688,0.4461,1.0874,17.3301,3.0796,86.7328,80.1619,79.3103,88.7931,17.9802,2.3885 Hampshire and Isle Of Wight ICB,J82056,Red and Green Practice,24379.02667,7.074,76.7391,69.1252,5.8032,70.1544,72.2222,3.9258,96.0894,5.1027,2.8003,1.004,1.9491,15.4508,8.7738,20.5655,63.1839,75.53,0.5718,0.9049,12.9647,3.6382,85.4773,82.4373,70.1342,91.2752,14.7811,2.6967 Hampshire and Isle Of Wight ICB,J82058,Bramblys Grange Medical Practice,18190.56764,6.3983,73.1602,80.5014,3.1428,61.157,69.5385,2.1537,89.3536,3.8474,1.4618,0.5506,2.991,15.9107,7.0696,13.1608,55.7718,64.6342,0.4434,1.1499,11.5547,2.0402,83.3532,79.1277,82.6733,90.5941,14.3745,1.2425 Hampshire and Isle Of Wight ICB,J82059,The Watercress Medical Group,6402.396903,6.9988,83.6478,90.6977,6.5732,78.9809,82.5581,3.5106,95.6522,4.0007,1.4158,0.8379,0.9657,8.5657,6.4094,16.527,66.6667,81.6254,0.3178,0.5056,12.4159,0.5056,90.7038,89.9225,86.3636,92.4242,7.799,2.4704 Hampshire and Isle Of Wight ICB,J82061,Odiham Health Centre,11725.87693,7.144,81.441,77.4295,5.6859,80.5699,81.0078,2.6435,94.8718,2.996,1.267,0.657,1.1136,7.513,5.9337,16.3617,64.2583,79.3561,0.3989,0.5006,12.2795,2.0863,91.738,83.815,82.1429,89.2857,8.8675,1.9553 Hampshire and Isle Of Wight ICB,J82062,Cheviot Road Surgery,17044.17731,10.551,66.9031,72.3906,3.0565,61.0018,66.9323,2.6721,93.1973,3.0398,3.0117,0.5511,1.9412,35.1305,8.3252,13.5204,56.5118,77.3842,0.6985,1.0701,11.7297,1.9616,79.1303,91.7492,82.8877,88.2353,21.3631,1.9672 Hampshire and Isle Of Wight ICB,J82064,Bishops Waltham Surgery,12646.20034,8.4688,80.8044,77.9891,5.467,74.5501,79.2517,3.2394,91.1765,5.1922,1.7544,0.7862,2.0032,7.9989,6.0969,17.7768,70.3566,85.2576,0.4368,0.6916,12.8009,2.3584,89.3034,81.7814,80.9917,86.7769,9.6794,2.4605 Hampshire and Isle Of Wight ICB,J82069,Camrose Gillies and Hackwood Partnership,47448.66344,6.7275,72.9917,70.9708,3.5371,67.2527,73.1492,2.5387,91.7004,4.1441,1.4823,0.6554,2.1084,16.2277,7.6703,16.0434,63.8756,77.7701,0.5166,0.7903,13.7747,0.7988,87.8085,82.8358,80.0347,86.9792,15.1694,1.8274 Hampshire and Isle Of Wight ICB,J82071,St. Andrew's Surgery,11106.97201,7.2311,73.3974,68.8034,2.8531,69.3032,71.5789,2.0135,91.4439,2.9857,1.2672,0.5209,1.1983,15.1673,7.2494,11.9257,54.0776,68.2657,0.5753,0.7696,13.4254,0.483,83.6976,80.829,78.9063,91.4063,15.6996,1.5004 Hampshire and Isle Of Wight ICB,J82072,Forestside Medical Practice,11851.22685,6.5791,80,82.1782,5.3202,77.3109,77.9661,3.143,95.4128,5.2412,2.0163,0.7455,1.8006,11.7472,8.0173,18.5192,51.1323,68.5039,0.3219,0.7625,12.6903,1.6459,86.585,78.97,87.6812,89.1304,10.3091,2.3128 Hampshire and Isle Of Wight ICB,J82074,Alma Road Surgery_J82074,16231.59674,6.0497,80.9437,75.8523,3.3231,75.1678,76.7918,3.1109,93.913,5.9373,1.3112,0.8806,0.4512,10.8414,6.0289,15.6511,66.5855,71.0859,0.3278,0.5849,5.6998,0.4849,85.0042,77.381,68.8406,79.7101,9.6568,2.5325 Hampshire and Isle Of Wight ICB,J82075,Chawton House Surgery,7676.742171,6.7612,80.2548,81.2808,6.4095,72.2222,79.3548,3.9576,93.75,2.3338,1.7637,2.0361,1.2515,12.4499,6.8227,20.0602,59.6312,80.3783,0.3728,0.5449,10.1471,2.1834,88.3326,82.3529,75,86.1111,10.6415,3.1546 Hampshire and Isle Of Wight ICB,J82076,Woolston Lodge Surgery,24408.55685,7.1249,72.3464,74.739,3.7344,72.6811,71.3904,2.7036,90.7834,2.4794,2.7623,0.8319,1.1631,27.0132,8.0025,15.5116,60.9061,75.5043,0.529,1.1212,13.9688,0.8807,90.2027,81.2672,82.7715,85.7678,25.8386,2.0209 Hampshire and Isle Of Wight ICB,J82079,Clift Surgery,6940.663032,8.5112,77.9116,76.0638,4.7458,79.6935,81.4371,2.5738,96.1165,4.9767,1.2555,1.5819,1.8199,9.8901,6.9103,16.4972,72.7185,80.2817,0.339,0.6152,14.9622,3.1948,90.1416,84.058,86.6667,89.3333,8.8621,2.1469 Hampshire and Isle Of Wight ICB,J82080,University Health Service,15483.74478,1.9989,72.2892,67.8571,0.5199,22.3634,70.9091,0.1616,88.6364,0.1532,0.1019,0.0211,1.4261,19.2852,0.6584,1.3909,67.5926,91.6667,0.0211,0.2213,3.1732,0.9717,66.0446,77.4194,80.7692,92.3077,5.1913,0.1756 Hampshire and Isle Of Wight ICB,J82081,St Mary's Surgery_J82081,22172.14653,4.2872,57.9882,62.2807,1.333,53.9634,69.1099,1.2368,84.2391,0.9873,1.1931,0.1748,0.3172,29.2615,4.5492,7.7138,53.3675,72.3301,0.2622,1.1363,9.3662,0.7608,75.7636,89.0625,73.4513,85.3982,18.4905,0.7517 Hampshire and Isle Of Wight ICB,J82082,Shepherds Spring Medical Centre,11619.14104,6.0778,72.2846,77.8261,2.8464,74.7126,69.9029,1.8876,92.5287,2.8163,1.3034,0.4045,1.9184,20.22,7.514,10.8315,66.2219,80.5668,0.5019,0.8839,13.4286,0.6967,85.7297,80.303,82.8125,89.0625,16.9917,1.5805 Hampshire and Isle Of Wight ICB,J82083,The Willow Group,54995.39123,7.5817,74.8152,72.1667,4.8647,68.8208,71.0053,3.6984,90.7527,4.6511,2.4914,1.0605,2.3877,22.6292,9.7923,17.051,43.2863,64.7256,0.5394,1.1338,13.1093,2.7352,80.9651,83.124,65.8427,77.5281,23.754,2.2818 Hampshire and Isle Of Wight ICB,J82084,Bury Road Surgery,6555.103688,7.3279,71.9512,72.8395,5.7127,71.1268,70,4.5371,93.75,3.815,3.0309,0.7899,3.0695,19.9476,11.2581,19.7098,51.4815,67.6806,0.6797,0.7715,14.0101,1.6428,88.811,81.6327,58.5366,81.7073,19.3778,2.4431 Hampshire and Isle Of Wight ICB,J82087,Stoneham Lane Surgery,8173.053808,8.3298,68.8797,63.4615,3.9221,67.2269,76.1905,2.6508,88.4058,3.2627,3.6246,0.7168,0.6727,26.4731,8.5209,15.2691,68.2379,84.0336,0.7439,1.5959,15.2371,0.781,83.6967,91.7808,68.3168,77.2277,18.8618,2.0557 Hampshire and Isle Of Wight ICB,J82088,The Shirley Health Partnership,14396.93012,6.5675,70.9596,73.3096,3.8044,59.332,70.6897,2.6243,81.5534,2.9017,2.5949,0.4325,1.6345,26.0473,7.2113,14.1695,54.5681,77.7778,0.711,1.3634,14.5087,2.8202,84.5061,86.076,78.3784,86.4865,19.4187,1.8106 Hampshire and Isle Of Wight ICB,J82089,Hedge End Medical Centre,17580.02887,6.9881,79.2857,75.827,4.8206,77.2727,77.8135,2.6658,93.8017,3.4036,1.2908,1.0221,2.2646,8.5399,6.2943,15.2047,64.6757,80.2153,0.3899,0.6638,14.8078,2.231,90.5672,80.6122,68.2635,83.2335,9.2612,1.9967 Hampshire and Isle Of Wight ICB,J82092,Aldermoor Surgery,8920.894574,5.9942,68.0851,66.0377,3.307,56.4935,67.1875,2.5157,83.7209,3.1756,2.244,0.6378,1.6336,23.1529,7.7754,14.3262,53.1722,74.5455,0.5433,1.0157,11.4657,3.4652,78.6805,90.3448,75.2577,83.5052,16.1082,1.6062 Hampshire and Isle Of Wight ICB,J82094,Tadley Medical P'ship,19221.16904,6.9312,77.5401,77.551,4.6393,74.0214,76.9424,3.0079,90.6475,3.2383,1.6467,0.6832,1.2566,9.3171,7.5057,18.2208,48.2796,71.1735,0.6271,0.7035,14.4536,0.7593,82.7505,87.4644,85.2018,91.9283,12.2335,2.1004 Hampshire and Isle Of Wight ICB,J82098,Swan Medical Group,35545.14391,6.7343,77.8024,75.2101,5.5298,73.7799,77.3248,3.3152,96.5517,5.001,1.7292,1.4189,1.4115,10.665,6.7079,16.4965,66.4376,76.0679,0.5994,1.0052,7.9029,1.4038,84.9422,78.6795,81.8182,90.6417,13.0091,2.1456 Hampshire and Isle Of Wight ICB,J82101,The Peartree Practice,21682.04182,7.2007,70.2619,74.6575,4.1419,66.2273,67.8571,3.0764,92.1053,3.6253,2.8622,0.6007,2.5481,27.0332,8.6614,14.7289,57.2993,77.3885,0.773,1.1334,11.7404,0.7672,80.4878,82.5269,76.0784,85.098,18.3546,2.0004 Hampshire and Isle Of Wight ICB,J82103,St Mary's Surgery_J82103,12473.01872,6.7571,76.25,80.8362,4.3763,69.4712,71.9512,2.8387,94.3925,3.4151,2.0975,0.6702,2.2138,14.4284,7.8303,14.9267,57.2503,74.0139,0.5047,1.033,13.3327,0.9542,83.3948,82.5911,78.6207,90.3448,16.555,2.1132 Hampshire and Isle Of Wight ICB,J82104,Stubbington Medical Practice,14294.44585,7.8926,84.1924,87.8706,7.2685,75,77.9851,4.8722,90.411,6.5788,2.1814,1.3852,2.1741,6.1949,8.8984,24.2576,65.9298,78.5714,0.5652,0.8439,14.3718,4.5108,88.7371,80.1587,85.2941,89.4118,7.1422,3.4631 Hampshire and Isle Of Wight ICB,J82106,Gratton Surgery,6385.709409,7.0949,80.7407,76.087,5.7579,79.2079,79.1139,2.7459,88.7324,2.5138,1.6811,0.5884,1.248,9.9151,5.754,15.7747,74.6683,86.1953,0.1541,0.6164,9.7165,0.4895,91.9197,82.2222,81.3559,89.8305,8.4769,2.2976 Hampshire and Isle Of Wight ICB,J82112,New Horizons Medical Partnership,24338.17115,7.035,78.208,87.395,5.4353,77.9516,78.9809,3.2284,96.7213,2.1367,2.2658,0.95,1.808,13.5455,7.7418,19.282,67.3797,78.7234,0.5339,0.8281,12.6303,2.6912,89.3751,83.5616,77.2242,89.3238,11.4659,2.3666 Hampshire and Isle Of Wight ICB,J82115,Atherley House Surgery,5670.759726,4.775,67.8571,63.3333,1.9501,56.6176,67.0886,1.6593,84.375,1.2242,1.9672,0.4619,0.6121,27.6134,6.1352,8.6384,68.1395,74.6667,0.325,1.5224,12.8746,1.7289,86.469,88.4058,73.0769,80.7692,20.3372,1.1461 Hampshire and Isle Of Wight ICB,J82116,Twyford Surgery,8698.962386,7.0977,80,85.5469,5.2021,77.2894,79.2271,2.7711,90.411,3.5235,1.4306,0.8303,2.0063,5.4858,5.2794,15.9564,66.383,76.6667,0.4202,0.5902,9.2539,0.9229,90.1573,84.058,83.5616,94.5205,7.8236,2.381 Hampshire and Isle Of Wight ICB,J82119,Denmead Health Centre,10295.35715,7.8937,81.3901,82.8859,6.5051,80.8118,82.243,4.4054,96.4706,6.673,2.1684,1.2559,1.4266,9.3719,8.1906,20.0451,61.559,82.1033,0.5691,0.6378,24.5107,3.4377,91.7243,82.1138,86.4,90.4,9.061,2.5805 Hampshire and Isle Of Wight ICB,J82121,North Baddesley Surgery,9334.508667,7.1956,78.9474,85.4626,4.9217,77.9661,78.1421,3.039,97.6744,4.8853,1.893,1.2074,1.0183,9.563,7.1456,16.6888,77.9647,88.5118,0.7265,0.8186,16.2284,1.2437,90.3662,80.226,86,93,8.7158,2.5888 Hampshire and Isle Of Wight ICB,J82122,Alma Road Surgery_J82122,12214.47847,4.951,53.4783,46.1538,2.054,43.3486,60,2.2026,86.1386,1.9484,1.5995,1.381,1.0743,24.7111,6.8933,11.1529,51.6321,77.7359,0.6818,1.818,9.5208,0.9147,74.7904,86.1446,75.2,78.4,21.6911,1.617 Hampshire and Isle Of Wight ICB,J82124,Alresford Surgery,9737.525881,6.3242,81.4815,77.9026,5.3598,78.8618,82.4324,3.3363,95.946,5.4806,1.5004,0.9673,1.602,9.9531,5.9528,16.642,65.5527,83.6224,0.3553,0.6613,10.5637,2.7058,87.9665,81.9588,90,96.6667,8.6901,2.4578 Hampshire and Isle Of Wight ICB,J82126,Raymond Road Surgery,5143.194607,6.109,74.8092,73.1707,3.722,68.4848,71.2121,2.6678,93.0233,4.1198,1.5706,3.7436,0.8561,17.8109,7.5192,14.6084,56.7628,78.9474,0.71,1.0327,9.3901,2.6554,83.8833,73.3333,67.2727,74.5455,10.6535,2.9045 Hampshire and Isle Of Wight ICB,J82128,Old Fire Station Surgery,9403.666117,8.1698,74.0602,74.3316,3.0132,73.8019,72.2222,2.713,93.421,4.2169,2.459,0.4964,0.6311,25.7775,7.7979,15.6315,64.4986,78.9474,0.4272,0.7735,15.132,1.381,83.7054,80.1205,67.2897,85.9813,15.5137,2.0665 Hampshire and Isle Of Wight ICB,J82129,New Forest Medical Group,7905.712688,5.5472,80.9917,76.1261,7.2686,73.7179,78.7356,3.9057,80.5556,3.6037,1.5093,1.8801,0.4992,6.4034,5.5975,18.0326,66.5567,79.4702,0.2118,0.7017,7.7691,0.7486,81.0452,80.8,77.2727,87.8788,8.6197,3.1643 Hampshire and Isle Of Wight ICB,J82130,Friarsgate Practice,21345.75202,6.3773,81.9892,76.9811,4.544,78.0552,83.9479,2.3819,95.6311,4.4101,1.2093,0.9568,1.2861,8.9184,5.0008,13.7459,72.6648,81.2846,0.5293,1.2581,9.5647,1.4994,88.6015,76.4516,74.8538,88.8889,9.0526,1.9951 Hampshire and Isle Of Wight ICB,J82131,Fordingbridge Surgery,13588.70723,7.9015,80.7432,71.6621,6.539,72.695,76.6917,5.6633,93.1818,6.158,2.1851,1.4813,1.5298,11.4617,7.4633,21.0165,59.5813,75.7447,0.4829,0.8511,9.773,3.1883,89.1682,84.4291,91.5493,95.7746,10.7631,3.3227 Hampshire and Isle Of Wight ICB,J82132,Testvale Surgery,14367.93824,7.7243,75.2083,83.0816,4.7839,73,75.5725,3.3703,90.9722,3.9358,2.7379,0.8035,1.6239,15.6087,8.2498,17.2904,59.7143,82.7526,1.0937,0.93,10.5413,2.3709,85.6676,80.8511,76.0479,81.4371,13.9115,2.1948 Hampshire and Isle Of Wight ICB,J82134,Vine Medical Group,27485.95582,7.8921,76.0992,82.5796,5.272,67.044,68.8285,3.7696,89.1473,5.8272,2.3091,1.6745,3.0136,17.8585,9.4118,17.3032,68.93,84.3416,0.6232,1.0743,15.3011,3.6314,85.3373,76.2803,84.9558,92.6254,15.6503,2.4277 Hampshire and Isle Of Wight ICB,J82136,Chawton Park Surgery,10302.8891,6.7739,79.1855,84.0391,5.586,83.3866,85.7708,2.9504,93.9759,2.6773,1.3493,1.0794,1.508,9.9391,6.3113,14.6442,63.506,74.7989,0.3328,0.5217,11.8566,0.9268,84.8971,74.5856,82.3529,93.1373,10.9131,2.1858 Hampshire and Isle Of Wight ICB,J82138,Whitewater Health,15887.48089,7.7073,81.3272,76.7544,5.4547,76.7225,80.9278,3.1495,93.0818,5.2339,1.5886,1.1498,1.9209,7.3712,6.0429,16.7194,64.586,79.6586,0.4444,0.761,11.5813,3.5265,85.9483,77.7049,78.8462,89.1026,8.4201,2.1941 Hampshire and Isle Of Wight ICB,J82139,Wistaria & Milford Surgeries,18882.60061,6.5024,79.9469,81.9565,8.3699,73.3333,79.2793,4.4982,94.382,6.8152,2.0236,1.3031,0.6669,10.126,6.6976,22.61,68.0184,78.2251,0.3759,0.7518,10.1715,2.0225,90.2465,78.8235,74.026,89.6104,9.9604,3.6963 Hampshire and Isle Of Wight ICB,J82143,Park Surgery,13991.68281,6.8505,80.9122,79.1667,5.4417,76.5199,82.7586,2.7719,95.5752,3.8603,0.8538,0.6193,0.721,4.9539,5.7812,15.1464,68.8568,79.289,0.3367,0.5472,8.2989,3.3114,85.8545,89.6552,81.8841,88.4058,6.2662,2.1827 Hampshire and Isle Of Wight ICB,J82144,Crown Heights Medical Centre,25211.32813,6.4292,70.1333,68.5499,3.3915,64.2176,72.5352,2.019,90.2027,4.1678,1.3364,0.6646,1.5451,14.8805,6.8329,12.6955,48.5876,68.6676,0.6574,1.0113,10.4773,2.3392,83.8841,79.2576,73.2852,83.0325,14.969,1.6759 Hampshire and Isle Of Wight ICB,J82145,Abbeywell Surgery,18238.72262,6.3966,78.7433,74.0125,5.3819,73.3615,74.0741,2.9693,91.4286,1.9054,1.4115,1.001,1.606,10.3746,6.205,18.3444,62.8931,65.6785,0.6242,0.658,8.1048,1.9932,85.1501,85.2679,82.8221,85.8896,9.8784,2.3338 Hampshire and Isle Of Wight ICB,J82146,Lyndhurst Surgery,6103.509956,7.5402,80.4688,87.1951,6.7119,76.8657,84.127,3.8915,88,5.6655,1.9279,1.4816,1.3331,13.1767,5.8545,18.4755,63.2231,78.3172,0.9282,0.9639,8.165,3.8498,84.4847,70.0935,88.2353,88.2353,7.5733,3.4631 Hampshire and Isle Of Wight ICB,J82147,The Clanfield Practice,6891.089401,6.1658,82.5153,82.4885,4.9656,78.3784,78.5714,3.6773,96,4.4479,1.2258,0.3377,2.7994,7.0925,7.0673,16.5729,62.0921,72.4382,0.2627,0.5503,10.9642,2.3375,88.4652,81.0127,78.8235,90.5882,8.4522,2.1013 Hampshire and Isle Of Wight ICB,J82150,Cornerways Medical Centre,12800.80527,7.8122,78.8168,78.1155,5.5281,76.6784,77.3663,4.7994,93.9024,2.8471,1.8595,1.516,0.2827,10.8864,6.9761,18.0836,64.6317,81.5951,0.4104,0.6617,8.8339,1.3934,81.9084,71.73,76.1905,88.0952,7.9823,3.3001 Hampshire and Isle Of Wight ICB,J82151,Twin Oaks Medical Centre,5398.30155,8.5897,81.7829,86.4706,6.226,76.7241,82.0513,4.7656,92,6.9575,1.3451,1.2298,0.62,11.4181,7.0041,18.6395,73.8227,82.2581,1.1337,0.7686,10.5626,2.8552,90.3185,77.8626,84.4828,96.5517,7.3664,3.0938 Hampshire and Isle Of Wight ICB,J82152,Bridgemary Medical Centre,9483.205295,6.5132,73.9938,70.7763,4.5708,70.8661,72.3926,3.9327,90.6667,5.8698,2.9118,0.8121,2.2456,23.5975,10.7619,19.8028,67.1739,77.37,0.5917,1.1485,14.6248,2.4553,87.8411,82.9876,86.6142,92.126,17.7111,2.3782 Hampshire and Isle Of Wight ICB,J82154,Meon Health Practice,33950.06468,7.0124,79.4454,80.9302,4.641,78.6656,77.5766,2.9315,95.7394,5.2681,1.5044,0.9213,2.159,11.5822,7.4316,16.4656,59.5263,75.6014,0.3142,0.6896,10.872,3.1992,83.739,83.0579,77.1654,89.7638,10.0318,1.9331 Hampshire and Isle Of Wight ICB,J82156,Waterfront and Solent Surgery,8666.653508,7.2242,79.9401,77.7251,6.9157,71.2195,74.6575,4.1071,98.1132,5.3894,2.3185,1.0466,1.8224,14.4179,8.5031,22.1118,61.9128,76.9392,0.5167,0.8744,12.648,1.7562,88.7025,77.0054,88,94,12.4331,2.7689 Hampshire and Isle Of Wight ICB,J82157,Wilson Practice,17990.54079,8.3482,75.3497,80.0505,5.5962,76.4933,77.3414,3.3299,91.9463,7.4021,1.4354,1.418,2.0227,11.8581,7.8028,17.0967,63.1829,77.0609,0.3835,0.9531,13.6135,2.5366,85.6256,78.836,75,89.2157,12.6441,2.6848 Hampshire and Isle Of Wight ICB,J82161,Westlands Medical Centre,10337.73906,7.3437,80.285,86.4286,6.0303,76.3699,72.093,4.2393,94.5652,5.4104,2.4864,0.9717,0.9249,10.8273,9.1408,19.2722,66.6667,74.1683,0.4001,0.7621,10.8555,3.2982,89.0537,84.2491,85.3147,92.3077,10.4239,2.1911 Hampshire and Isle Of Wight ICB,J82163,Oaks Healthcare,16772.70766,8.4636,79.6825,86.8735,5.4735,76.9697,79.5455,4.0811,95.9064,7.2091,2.1066,1.0863,2.106,12.6626,9.0446,18.7733,68.0979,76.7209,0.4141,0.7262,10.0736,0.8268,88.3436,80.5845,83.8863,90.0474,11.0314,2.5147 Hampshire and Isle Of Wight ICB,J82169,Boyatt Wood Surgery,7632.510836,6.3173,70.9402,67.2727,2.5023,74.8466,77.3723,2.0229,96.8085,2.8494,1.2979,0.3391,0.4092,12.7739,6.3798,11.9972,76.714,86.6667,0.573,0.5145,12.1249,0.1436,82.3266,87.3786,87.1795,89.7436,14.8231,1.3447 Hampshire and Isle Of Wight ICB,J82174,Lockswood Surgery,12162.29691,7.5958,81.8027,87.4074,5.197,79.1667,80.9969,3.0679,98.8636,6.0226,1.2346,0.8132,2.0882,6.0635,6.7812,18.8586,58.0059,71.8447,0.5249,0.6875,7.8061,2.0426,89.3529,76.6038,76.9784,84.8921,8.1863,2.2104 Hampshire and Isle Of Wight ICB,J82184,Pinehill Surgery,3526.349368,5.4883,68.6441,69.6629,3.305,72.2222,77.4648,1.6775,87.7551,5.2932,1.7026,0.2754,3.7401,15.2958,6.5851,15.0726,66.2835,82.5,0.7762,0.9014,17.3376,1.3433,90.2813,88.3333,77.5,90,19.6268,1.302 Hampshire and Isle Of Wight ICB,J82196,Homewell Curlew Practice,17225.9837,8.6292,71.6075,69.8462,3.8906,66.3848,68.2353,3.791,91.9463,5.8575,3.0673,1.0689,3.4183,31.2477,10.5643,15.2769,68.5319,80.4436,1.0556,1.5071,17.5726,2.1827,87.0903,80.3965,76.6949,86.8644,22.6786,2.1179 Hampshire and Isle Of Wight ICB,J82201,The Grange Surgery,6886.615397,8.2651,76.9784,78.4615,5.2173,77.3333,78.9157,3.1486,97.9167,4.2522,1.4572,0.7286,1.5761,11.3539,6.9771,14.4549,68.4466,80.8362,0.6766,0.8457,11.2133,2.5397,89.7954,79.562,92.1053,94.7368,10.1592,2.2639 Hampshire and Isle Of Wight ICB,J82207,Hill Lane Surgery,9664.56137,5.2459,76.1134,78.75,3.2169,57.1429,74.1007,1.6262,90.625,0.9653,1.0753,0.5776,1.7627,19.1358,5.0415,10.0151,76.0304,85.3659,0.3466,1.1997,12.5695,1.7964,86.5723,81.0345,80.4598,91.954,16.1911,1.3952 Hampshire and Isle Of Wight ICB,J82208,St Peter's Surgery,6735.981328,6.1415,66.8639,69.0476,3.0799,62.7376,69.4444,2.4189,93.8272,1.2051,2.4639,0.7662,1.4687,27.5437,7.6208,12.1394,69.4836,87.574,0.3606,0.9465,17.3602,0.5597,88.9712,88.6598,78.6667,90.6667,19.1257,1.6827 Hampshire and Isle Of Wight ICB,J82210,The Elms Practice,11606.0513,8.3194,78.8288,73.5507,6.9562,76.2887,80.2956,4.7629,97.8261,7.2725,2.9029,1.7848,1.181,16.2859,10.9473,25.0403,71.4286,82.4561,0.6666,0.9031,16.3849,3.8181,90.4585,83.0769,73.7705,92.8962,12.2029,3.5695 Hampshire and Isle Of Wight ICB,J82213,Brook House Surgery,6675.188324,7.3088,66.443,67.2897,2.6891,67.1875,71.5909,1.9028,91.7647,1.3906,2.8621,0.3617,1.9925,33.7324,7.5031,10.725,56.5517,74.5098,0.519,1.1008,13.1382,1.8816,84.6879,82.9268,75.7576,81.8182,20.1277,1.3996 Hampshire and Isle Of Wight ICB,J82214,Whitchurch Surgery,8537.45897,7.9996,73.6364,71.4286,4.6571,78.6834,77.8351,2.8511,94.6903,3.976,1.3799,0.9537,1.9049,9.3944,6.0877,16.0816,62.4791,82.6087,0.2638,0.832,9.8824,1.933,84.4333,83.5443,84.7059,95.2941,10.4102,2.1916 Hampshire and Isle Of Wight ICB,J82215,Solent View Medical Practice,13418.86688,7.8165,81.3333,79.2507,5.8026,78.6982,83.1373,4.0502,91,6.0741,2.1186,1.0515,5.0665,9.615,8.6444,21.7073,65.0975,78.5088,0.3038,0.6854,12.7567,2.1787,88.4792,79.5796,84.6626,90.184,9.3963,2.6793 Hampshire and Isle Of Wight ICB,J82216,Brook Lane Surgery,13043.0174,6.257,83.4746,84.8185,5.9186,80.4124,81.0484,3.5375,94.4954,5.8918,1.5215,1.3085,1.7345,7.5789,7.3688,17.8091,65.4434,81.4448,0.4565,0.7912,10.9257,2.0756,90.2375,80.4636,76.2238,85.3147,8.6547,2.3127 Hampshire and Isle Of Wight ICB,J82218,Chineham Medical Practice,12891.81753,6.6518,77.512,77.2871,3.0719,74.3046,74.9091,1.4797,91.2281,2.4056,0.7764,0.5232,2.6277,8.7836,5.6441,10.988,57.6372,73.6462,0.4895,0.5345,12.4871,0.6016,88.7475,83.4286,81.7518,86.8613,10.2007,1.3109 Hampshire and Isle Of Wight ICB,J82605,Walnut Tree Surgery,3472.067883,3.1215,71.9298,57.8947,1.5262,56,65.7143,1.2468,78.7879,1.6748,0.7954,0.215,1.8204,19.0164,3.3751,7.2872,74.386,85.1852,0.3439,0.7524,14.7816,3.2609,87,83.7838,84,96,16.7812,0.8384 Hampshire and Isle Of Wight ICB,J82622,Living Well Partnership,50236.8363,6.7995,74.4339,79.5643,4.0075,72.6696,75,2.6579,91.858,3.9603,2.046,0.7117,2.9234,27.5784,7.0194,14.4503,49.8772,69.9342,0.5902,1.035,13.1806,1.2651,81.1333,82.8715,70.7368,80.2105,15.5802,1.777 Hampshire and Isle Of Wight ICB,J82625,Boundaries Surgery,4251.839841,7.2066,81.8182,85.0394,5.5387,75.969,80.8081,2.715,94.7368,4.7745,1.086,1.4335,1.9784,8.6858,5.9776,18.093,77.057,86.5672,0.2172,0.7602,14.0596,1.7376,92.2598,73.1343,84.0909,90.9091,8.8228,2.8236 Hampshire and Isle Of Wight ICB,J82639,Watership Down Health,17361.82263,6.9507,82.2011,78.8382,5.5989,81.0409,80.4233,3.0751,91.716,4.8046,1.299,0.7635,0.9544,8.6321,6.6301,18.3819,72.1707,84.8446,0.3234,0.5461,11.093,1.3282,86.8268,83.7758,89.071,96.7213,9.4351,2.2533 Hampshire and Isle Of Wight ICB,J82640,Horndean Surgery,5954.896076,6.7498,82.1138,87.2093,4.4096,76.2376,81.3433,3.139,97.0588,6.2382,1.42,0.4634,1.847,8.6643,7.9607,15.1121,60.8418,74.8899,0.3737,0.5082,10.9876,0.3146,88.5916,82.1192,78.2051,82.0513,10.684,2.2123 Hampshire and Isle Of Wight ICB,J82646,Park Lane Medical Centre,17716.6103,7.6016,70.8415,71.3178,3.5642,74.4991,76.1589,3.5582,90.0498,5.7883,3.5225,0.5781,1.7247,34.5816,10.8353,14.8885,55.5882,78.821,0.596,0.7212,17.2232,1.4679,88.7844,82.9876,75,86.5079,36.6108,2.0741 Hampshire and Isle Of Wight ICB,J82669,Rowner Health Centre,8965.519001,6.6181,72.5869,67.7778,3.3341,75.1515,76.2963,2.5763,95.283,2.5607,2.533,0.3789,5.4618,26.4042,9.648,14.9816,60.8212,84.6512,0.5412,0.7036,20.4115,1.6343,88.3053,80.3571,81.0811,89.1892,21.6183,1.4072 Hampshire and Isle Of Wight ICB,J84003,Ventnor Medical Practice,10207.1065,6.8035,69.6682,71.2644,5.383,71.978,72.2222,4.0222,81.1321,3.2457,2.9624,0.6744,0.3498,28.4154,8.0453,20.1349,53.291,74.6959,0.7828,1.2765,13.7941,2.7714,84.4548,81.0427,83.6538,93.2692,18.0468,3.1431 Hampshire and Isle Of Wight ICB,J84004,East Cowes Medical Centre,9589.212749,8.1999,74.221,74.1071,4.8208,71.6599,67.0588,3.6872,89.8734,5.5315,2.8169,0.6527,0.433,24.0332,9.4233,18.9969,65.1618,83.0303,0.8474,0.8474,14.9602,0.1685,88.1356,88.2784,82.6446,85.124,16.1277,2.4734 Hampshire and Isle Of Wight ICB,J84005,Esplanade Surgery,10746.73849,8.5571,71.0938,72.4409,6.6923,73.3333,75.1269,3.7355,86.9565,4.9427,2.4151,1.1737,0.6195,26.4441,8.0302,22.1645,65.3512,78.0384,0.9706,1.1737,12.1787,0.882,88.2542,81.783,73.3333,90.4762,16.9634,2.8552 Hampshire and Isle Of Wight ICB,J84007,St Helen's Medical Centre,8097.540638,7.6153,77.6163,78.3251,8.3798,72.4138,75.7353,5.0806,95.6522,5.8322,3.1753,1.8278,1.138,12.6077,8.7775,26.4715,81.0061,90.4676,0.4492,1.2392,16.7319,1.2277,94.0252,76.7677,78.4091,92.0455,10.7503,4.3216 Hampshire and Isle Of Wight ICB,J84008,Argyll House,6164.487855,7.4906,68.8073,72.7891,5.0238,68.1159,70.9402,3.5395,87.5,3.0897,2.9876,0.5519,0.8301,25.6913,9.5552,21.9981,83.008,90.5263,0.5328,1.8649,12.2435,0.7336,90.2311,85.1613,78.6667,84,14.3386,2.5119 Hampshire and Isle Of Wight ICB,J84011,Newport Health Centre,25932.88993,7.8144,70.4545,79.0017,4.7337,67.9847,69.4444,3.4154,90,2.8098,2.3405,0.9451,0.9298,23.7591,7.3524,15.8561,61.6503,80.1471,0.576,1.1723,12.103,0.6489,85.9639,79.7546,77.2727,87.5,15.8277,2.3445 Hampshire and Isle Of Wight ICB,J84012,Tower House Surgery,16193.75986,7.3167,71.9643,77.8646,4.2053,69.9284,73.3788,3.4583,82.3529,2.3043,2.1234,0.6571,0.6742,26.9553,7.2083,16.5514,59.0933,74.7984,1.2865,1.3557,13.0836,0.3223,89.6141,81.2734,80.6667,85.3333,19.1745,2.0611 Hampshire and Isle Of Wight ICB,J84013,The Bay Medical Practice,33647.66334,9.4651,72.8625,74.8798,5.7814,64.4245,71.8381,4.4253,88.8889,8.1697,3.3427,1.3269,0.9049,26.2991,9.5028,22.739,63.1765,80.3534,0.8858,1.4508,13.0028,3.0914,85.6482,84.0125,86.6667,91.7949,16.8754,3.113 Hampshire and Isle Of Wight ICB,J84015,Cowes Medical Centre,15629.47363,7.7786,74.7069,76.8856,5.0345,71.6216,73.7003,3.1046,86.9919,5.7386,1.6653,0.8391,1.545,15.5658,7.5577,17.6273,77.1861,86.8421,0.7229,0.9875,14.7643,0.4874,88.5759,83.526,82.5581,92.4419,13.1324,2.5173 Hampshire and Isle Of Wight ICB,J84016,South Wight Medical Practice,7255.401521,8.4042,80.0546,81.25,6.9894,75.3968,74.6753,4.6856,97.2973,6.1522,2.226,0.825,1.6536,20.9605,8.4859,30.3549,64.7453,79.9127,0.4203,0.9184,17.1942,0.3186,92.2547,87.2727,67.8161,89.6552,8.8039,2.5996 Hampshire and Isle Of Wight ICB,J84017,Medina Healthcare,10753.56227,9.0651,71.159,73.251,6.2252,72.2467,72.4868,3.8553,91.4286,2.9599,3.4018,1.6782,0.4866,23.498,8.7977,19.5941,75.8373,82.7004,0.8164,1.3267,11.8124,1.0463,91.3706,83.1731,78.9916,94.1176,14.3857,3.1523 Hampshire and Isle Of Wight ICB,J84019,Wight Primary Partnerships Ltd,14682.04662,9.0748,73.8989,75.3541,6.6535,67.4009,69.2623,4.8373,86.4407,3.8183,2.6434,1.6364,1.2557,20.5897,8.9307,22.2802,65.411,76.9972,0.5035,1.3397,10.6075,0.7004,88.2615,80.9364,76.4331,84.7134,13.2505,3.5605 Hampshire and Isle Of Wight ICB,Y01281,The Village Surgery,4708.531385,8.1929,82.4742,80,7.5,89.4737,89.8876,5.329,97.3684,6.6354,2.0395,1.1842,0.9888,10.0403,9.1143,20,74.5955,85.7143,0.4167,0.3947,11.3193,2.7083,89.093,79.5276,82.8125,92.1875,10.1868,2.8509 Hampshire and Isle Of Wight ICB,Y07014,Shakespeare Road Medical Practice,11782.65023,6.4637,65.5949,65.7895,2.9152,58.5714,64.7059,2.2885,74.8252,4.679,2.5436,0.9037,2.794,,8.1157,15.633,53.8805,74.5763,0.7288,0.9547,11.884,0.8455,83.408,84.4697,57.7381,73.8095,20.2542,1.4358 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence North West London ICB,E84002,Forty Willows Surgery,8531.510986,4.6683,60.4651,61.2121,2.9966,57.8571,71.4286,2.1215,69.0141,3.5403,0.7823,1.0607,1.6166,23.8202,9.8996,13.9088,75,77.9343,1.2066,1.8032,13.4174,0.5936,84.3421,80.5714,83.0508,89.8305,11.924,1.6309 North West London ICB,E84003,Premier Medical Centre,11578.18886,4.2785,56.8282,51.462,1.4421,50.0741,64.8649,1.9062,93.1507,2.4857,0.307,0.2856,0.8798,21.3768,9.0878,11.2158,69.6312,80.8511,0.3855,0.6925,12.0782,1.9682,83.6306,86.6667,83.3333,88.7255,9.3137,0.8139 North West London ICB,E84004,The Circle Practice,8097.234567,6.95,69.403,63.9594,3.4591,50.3846,67.9245,2.9076,81.6901,4.9122,0.9149,0.7269,0.7151,16.6326,11.8556,15.4029,66.0397,73.8971,0.5515,1.0026,11.5654,0.9997,84.475,88.7446,81.25,95.1389,11.359,1.6543 North West London ICB,E84005,Kings Road Surgery,7182.723457,2.9281,64.532,61.3793,3.2126,57.3034,72.7273,3.1465,72,3.7534,1.2824,0.7139,0.6148,12.3645,9.9712,14.4236,71.1467,79.6429,0.4231,0.9783,13.2826,2.0059,89.6552,85.946,86.0656,92.623,8.6344,1.1634 North West London ICB,E84006,The Law Medical Group Practice,19141.68946,5.2868,62.1032,57.513,3.6065,52.8146,69.4915,2.6608,73.0435,4.6326,1.0631,0.8517,1.9457,25.9532,10.9358,15.0426,59.5405,69.7674,0.4523,1.2981,13.1138,0.3578,81.9112,81.2121,74.8322,87.9195,16.0974,1.9442 North West London ICB,E84007,Uxendon Crescent Surgery,6055.223273,4.6933,66.8605,71.0526,3.9952,54.9505,71.7391,3.9779,88.6793,5.2643,0.8993,0.8475,1.1435,15.7527,12.1031,17.1567,77.1466,80.8511,0.7956,1.2107,13.8943,3.1783,90.0278,85.2041,78.0952,92.381,8.2742,1.7814 North West London ICB,E84008,Simpson House Medical Centre,10755.02761,5.9732,69.0341,68.75,3.7211,56.3536,74.1758,3.4724,82.2917,5.2245,1.0522,0.7174,2.0851,16.6467,12.9891,18.6245,71.0081,76.8571,0.727,1.1862,13.3752,2.6384,87.2256,86.6261,82.5472,92.4528,12.431,1.9131 North West London ICB,E84009,Enderley Road Medical Centre,14507.255,6.0625,67.1088,73.1061,3.9613,56.8238,73.1818,3.2478,80,4.8662,1.7715,1.1974,1.4878,19.2164,11.4367,14.9758,64.6976,82.9208,0.6069,1.1892,14.5056,2.5573,88.1401,83.2869,84.7619,92.8571,13.6057,2.2226 North West London ICB,E84011,St andrews Medical Centre,2238.953736,7.1755,62.5,56.25,5.5556,58.9744,66.6667,2.6181,66.6667,6.4754,2.235,0.9579,1.6188,28.3846,12.0175,22.4777,75,84.375,0.894,2.4266,19.6468,0.2981,82.933,91.8033,90.3226,96.7742,22.3629,2.1711 North West London ICB,E84012,Mapesbury Medical Group,8620.56807,5.2302,59.3625,60.9467,3.2316,59.8101,73.5849,2.322,83.0769,4.4084,1.0892,0.3471,1.2088,24.8474,7.169,13.477,75.2155,78.7879,0.2394,1.2687,11.3766,0.3366,79.3517,89.6175,82.1782,89.1089,15.0888,1.2208 North West London ICB,E84013,Church End Medical Centre,10373.14777,6.7479,56.1856,54.7771,2.5243,56.0897,74.3056,1.9399,39.5349,5.748,1.3322,0.7596,2.2072,38.6041,11.2459,15.2857,67.0642,72.9358,1.0635,2.2321,20.5089,1.4723,85.9178,78.9916,83.3333,88.1944,19.7841,1.5426 North West London ICB,E84014,Bacon Lane Surgery,9006.393486,3.9642,62.8352,74.5562,3.1306,59.2179,72.5352,2.7222,80.5825,3.5254,0.7539,0.4397,0.4163,17.1081,9.9795,12.5013,73.2533,80.5755,0.2722,0.7957,12.4366,0.1586,85.5643,86.1751,86.3014,93.8356,12.8399,1.4553 North West London ICB,E84015,Willow Tree Family Doctors,15419.16955,6.4632,65.7718,72.9483,3.5589,60.9155,74.3243,2.3152,72.6744,4.2574,1.282,0.4592,1.4933,20.5419,9.8145,15.0584,68.8232,83.1658,1.0587,1.0205,14.3209,0.945,86.0988,83.1884,81.25,88.75,14.6906,1.3713 North West London ICB,E84017,Sudbury & Alperton Medical Centre,7760.376052,4.653,62.8319,65.625,2.5863,61.324,75,3.0509,82.0896,5.7061,0.5775,0.7156,0.6625,19.0171,13.9293,16.1959,72.5698,78.0877,0.339,0.9416,16.5312,0.2137,85.1852,83.2776,87.9121,91.2088,12.0164,1.0923 North West London ICB,E84018,Streatfield Health Centre,7795.088952,5.1084,68.8213,70.4142,3.2673,48.7805,63.3588,3.0907,73.2394,1.8821,0.5929,0.8452,0.3548,12.8916,13.8809,14.6335,74.9443,75.1908,0.328,0.6308,14.0543,0.2682,89.0612,86.7725,81.4371,94.012,9.7404,1.6274 North West London ICB,E84020,Jai Medical Centre (Brent),6459.326989,4.8456,64.2105,74.4,2.8633,58.2979,75.7009,3.1866,87.5,5.2939,1.2777,0.6312,1.1492,19.2767,12.1111,16.8257,77.1812,84.9246,0.7389,1.2931,20.5539,1.1728,91.4977,89.8678,87.5969,95.3488,15.55,1.5548 North West London ICB,E84021,The Willesden Medical Centre,14900.75822,4.0492,56.6775,64.3443,1.7259,54.9142,67.1111,1.7191,87.1166,4.3897,0.4989,0.2899,1.1866,27.9968,8.6283,15.3442,76.1763,89.1051,0.6877,1.2472,15.2187,0.2098,86.982,91.0134,89.1626,95.0739,20.36,0.8562 North West London ICB,E84022,Roxbourne Medical Centre,7747.180474,6.3131,57.5,57.8947,2.7429,48.1343,62.4,2.8248,78.4314,5.042,1.1054,1.5557,2.0504,20.4467,11.2786,15.9525,71.0441,76.25,0.655,2.0742,14.4202,3.1847,87.9231,87.4459,81.295,94.2446,13.4088,1.7194 North West London ICB,E84024,The Pinn Medical Centre,18683.2567,5.8125,75.2809,76.4019,4.3659,65.4762,75.9003,3.1018,85.2632,4.3699,0.726,0.9087,1.2064,8.3795,8.914,15.9204,76.5203,83.9844,0.6904,0.9443,10.5878,2.0886,89.2419,87.7647,78.2772,89.5131,7.7347,1.7718 North West London ICB,E84025,The Lonsdale Medical Centre,18380.09109,5.3624,65.1992,64.2857,3.4353,67.7223,75.6757,1.5843,76.1658,3.0184,1.0405,0.298,1.5608,22.6684,5.6721,11.2,41.9573,55.7692,0.5333,1.6209,9.3712,0.5953,76.6117,79.322,69.0909,89.697,12.2586,1.3333 North West London ICB,E84028,The Stonebridge Practice,8259.114835,5.1014,53.5135,63.2653,3.2014,57.2687,74.8148,2.0569,93.4426,3.1376,0.8351,0.3866,1.2627,40.0963,11.6673,17.6307,55.5556,73.6559,1.3764,1.5311,18.3279,0.3124,83.0571,75,83.7607,90.5983,18.0721,1.6548 North West London ICB,E84030,Preston Hill Surgery,4259.894413,4.4543,61.1111,61.6438,1.6941,58.8608,74.6269,2.8388,72.3404,4.1347,0.6639,0.3205,0.443,29.4987,12.9522,13.0266,75.8264,89.4118,1.0989,1.3278,18.4584,0,81.6032,89.2308,95.3488,96.5116,12.7509,1.1447 North West London ICB,E84031,Brentfield Medical Centre,11411.84726,5.9162,60.1695,53.2338,2.1008,56.3694,75.5682,1.7294,53.2609,4.1963,0.9019,0.4775,1.2438,42.1291,11.7671,13.7401,67.1918,78.2407,0.6897,1.5491,18.4254,0.138,89.8164,85.7143,91.6168,95.8084,17.2081,1.6764 North West London ICB,E84032,Ellis Practice,7990.519106,6.3049,55.8282,53.0769,2.4944,56.4626,70.9402,2.4694,63.7931,4.0896,1.1724,0.661,1.8815,25.6257,9.4603,13.6942,64.9946,82.3204,1.6712,2.0953,20.4634,2.0369,85.004,86.0104,88.7931,93.9655,14.6777,1.9456 North West London ICB,E84033,Chalkhill Family Practice,6454.339844,5.5572,62.931,59.0909,2.07,58.5284,77.7778,1.784,87.3418,3.048,0.749,0.7354,2.2997,25.2153,8.3408,10.2547,79.4025,89.7436,1.1576,0.9805,20.2409,0.7658,92.0749,87.5969,93.3333,97.7778,12.4294,0.9533 North West London ICB,E84036,Gladstone Medical Centre,9980.06356,5.6032,56.1224,61.7834,2.2117,58.6111,74.3902,1.9854,63.4615,3.9517,0.8435,0.4938,1.8698,30.4647,10.186,14.1138,64.2737,72.3404,0.6789,2.1397,16.4302,0.333,87.3853,89.3175,84.106,94.0397,19.2435,1.4505 North West London ICB,E84039,Honeypot Medical Centre,15994.37139,4.735,61.2676,73.0104,2.2076,56.6978,68.2008,2.9892,74.1463,4.6421,0.6788,0.81,1.0557,16.0856,11.9849,13.2402,74.934,84.9765,0.3651,0.9013,14.8548,0.8438,85.7047,85.3053,90.184,95.7055,10.8092,1.3463 North West London ICB,E84040,The Pinner Road Surgery,4158.828084,3.8418,55.7692,58.1081,2.2171,51.6484,70.1493,2.1748,93.4783,3.175,0.3167,0.3378,1.2907,14.0038,10.227,11.1909,75,82.6531,0.6546,1.6047,11.332,0.369,84.5972,84.2105,92.2078,94.8052,12.5588,1.0135 North West London ICB,E84042,Kilburn Park Medical Centre,7779.678831,5.6567,50.9091,58.8235,3.0603,50.2092,71.2121,1.8362,53.0612,3.5329,1.2241,0.6995,1.8622,33.2147,8.9163,12.3288,57.3222,62.7907,0.5246,1.8508,13.1222,0.8711,74.4674,78.3582,86.8687,90.9091,11.3129,1.603 North West London ICB,E84044,The Northwick Surgery,11213.44323,4.8208,63.4981,74.7475,3.2997,53.1183,70,2.0966,87.0968,3.3165,0.9908,0.6723,1.9657,17.5312,8.4832,12.3054,71.2329,78.7162,0.8493,1.5393,9.8287,1.8182,86.3392,80.9302,87.1622,94.5946,9.8795,1.3181 North West London ICB,E84048,The Fryent Way Surgery,7640.484555,4.2058,65.5602,68.3871,2.9901,60.9023,74.4,3.4191,93.4426,5.2656,0.715,0.767,1.1406,18.8269,13.6146,16.5237,64.9363,76.4,0.507,0.832,17.5156,0.5646,87.5388,84.9829,89.4737,95.3216,11.1948,1.9371 North West London ICB,E84049,Brampton Health Centre,5688.231056,4.2923,60.3448,50.6024,1.5974,51.9841,67.0886,2.1929,85.3211,2.7208,0.5228,0.5083,3.9235,20.2087,8.2192,9.0038,74.7535,86.7257,0.5809,0.8713,13.0718,1.6223,83.0823,90.7563,89.2857,92.8571,11.4819,1.0746 North West London ICB,E84051,Stanley Corner Medical Centre,5958.281486,5.8582,62.2642,59.8214,1.913,69.5817,76,2.3758,78.3333,4.1945,0.6942,0.6017,1.4299,22.2351,13.2129,15.6896,74.5327,85.7143,0.54,0.8948,21.3918,0.5982,93.0488,93.1579,95.3488,98.4496,10.7419,1.265 North West London ICB,E84053,Hatch End Medical Centre,3814.614873,6.2852,67.3759,68.9655,3.6155,59.4059,71.4286,4.2181,70.5882,3.8974,0.7461,0.3443,0.4444,10.0076,11.1186,16.9584,75.8621,86.5385,0.4591,0.6026,12.8205,1.3293,89.7368,78.7879,91.9355,98.3871,7.9125,1.3486 North West London ICB,E84057,The Stanmore Medical Centre,12988.73502,5.0097,67.2222,79.6226,3.7951,53.2151,72.103,3.23,61.4754,5.1904,0.8323,1.2752,0.9472,13.1659,10.1998,15.4856,65.1255,80.5447,0.7865,1.1148,9.9459,1.96,83.671,84.9693,81.1321,95.283,8.5665,1.6112 North West London ICB,E84058,GP direct,22244.26231,6.068,59.3886,64.4809,1.9316,54.4621,67.9083,1.976,77.6,2.3268,0.6587,0.3219,1.9812,17.805,9.8037,10.9199,62.4019,78.9082,0.4811,0.9288,15.8594,0.9106,85.709,87.3239,83.8384,93.4343,12.3341,0.9399 North West London ICB,E84059,The Allendale Road Surgery,4065.50706,3.8774,69.2913,57.8313,2.0771,58.046,73.2394,2.5268,85.1064,3.7257,0.6852,0.3854,0.6986,13.7668,10.4699,15.7173,75.1278,87.7551,0.8351,1.1777,11.8241,0.8491,83.9304,93.0769,87.1795,92.3077,13.6157,1.7559 North West London ICB,E84061,Elliott Hall Medical Ctr.,12186.84587,7.2704,76.3855,68.9046,4.1152,62.0321,76.7857,3.9226,86.4865,4.398,0.8055,1.0244,0.6791,11.077,10.2572,17.0738,72.9635,88.0228,0.3677,0.6042,10.3697,0.4321,90.8132,85.6655,90.1099,96.1538,7.0475,2.0664 North West London ICB,E84062,The Shaftesbury Medical Centre,5591.517132,6.0858,55.3846,52.5253,2.4336,59.204,73.0337,2.7143,95.2381,4.6067,1.2729,1.7596,2.4569,18.1014,11.7948,15.9865,75.2857,82.4675,0.4118,1.9656,15.261,1.7327,88.4674,84.2767,86.7347,93.8776,13.8662,2.003 North West London ICB,E84063,Lancelot Medical Centre,6270.751389,2.0389,50,51.6854,0.9402,50.3311,65.8824,1.3988,83.9506,2.2786,0.2178,0.0803,1.1461,23.4581,7.8965,7.7964,75.5853,80.4878,0.1834,0.4242,9.3464,0.3736,71.7534,92.5926,89.6552,94.8276,8.6624,0.6191 North West London ICB,E84066,GP Pathfinder Clinics,64734.55912,0.7196,46.5368,37.9845,0.3151,21.2397,42.5121,0.3325,76.2082,0.3464,0.0938,0.0523,0.7484,24.9432,1.6119,2.1379,64.7695,79.902,0.1145,0.2518,7.3693,0.2829,58.0171,80.3922,76.2774,88.3212,12.566,0.1701 North West London ICB,E84067,Church Lane Surgery,7448.570483,4.8643,53.886,52.2059,1.1784,70.3081,82.3529,2.1333,83.1325,2.2995,0.1727,0.1219,0.5487,20.1831,14.793,13.7851,71.7908,90.5263,0.3555,0.6603,16.4097,0.6116,84.5481,91.6318,90.7489,93.8326,11.1252,0.8533 North West London ICB,E84068,The Ridgeway Surgery,13807.46411,6.1693,70.8046,74,3.2579,59.5406,69.8347,2.9946,90.9836,4.4518,0.803,0.5594,0.7807,10.616,11.6005,15.7036,74.2142,82.5147,0.4805,0.9609,17.3837,0.999,86.6843,87.7315,79.2593,93.3333,8.9988,1.6256 North West London ICB,E84069,Belmont Health Centre,17197.51777,5.3979,61.3187,60.8696,2.7255,58.3975,70.1754,2.7033,86.9565,3.7061,0.8604,0.7993,2.0098,17.4968,11.0512,13.5665,73.2197,81.5556,0.6384,1.249,16.8199,2.2719,90.5112,91.6667,92.4092,97.6898,11.2041,1.249 North West London ICB,E84070,Pinner View Medical Centre,4571.304707,5.001,68.5535,68.932,2.9237,67.5439,71.7647,2.671,81.6667,4.7947,0.4512,0.6858,2.1565,13.6274,10.0159,13.0121,75.1724,85.8156,0.5414,0.9746,13.7417,0.8182,86.778,88.8889,92.1348,95.5056,9.1257,1.3536 North West London ICB,E84074,Freuchen Medical Centre,13360.022,3.6356,51.5152,46.1905,1.7842,50.74,69.378,1.1978,52.9915,2.2354,0.7434,0.2561,1.4048,34.8024,10.1291,11.9528,62.8368,78.3784,0.5204,1.4786,18.1296,0.0877,84.1373,82.5641,86.0825,90.2062,16.884,0.9665 North West London ICB,E84075,Mollison Way Surgery,8173.761399,2.6695,64.7059,64.3411,0.9452,59.501,71.3043,1.2153,83.0882,1.6892,0.2785,0.2026,1.1367,16.0753,7.294,7.7137,80.9285,94.8718,0.211,0.3545,9.1257,0.1454,89.3831,90.8497,92.7536,97.8261,11.8528,0.557 North West London ICB,E84076,Oxgate Gardens Surgery,6963.759762,6.3768,65.3631,67.8832,2.7501,54.0426,68.5484,2.2514,62,2.9754,1.2391,0.4231,1.1825,28.727,9.7126,13.1309,68.1621,74.1573,0.7857,1.2693,13.6563,0.0455,84.3523,79.1469,81.8182,86.8687,13.356,1.3297 North West London ICB,E84078,Kingsbury Health and Wellbeing,4722.72644,5.0111,69.9387,83.8095,3.1621,72.0238,83.5443,4.202,85.7143,7.7601,0.955,0.7216,1.033,18.2036,17.0732,21.2649,84.0376,96,0.4669,0.8489,22.0711,1.6831,91.7775,88.8412,96.9697,97.7273,10.3922,1.5705 North West London ICB,E84080,Staverton Surgery,8635.598528,4.2029,61.3636,60.9626,2.8509,54.6218,72.9412,1.8623,78.5714,2.9922,0.9197,0.7242,1.4114,22.7816,6.5172,11.3806,62.3737,68.6869,0.4828,1.5404,10.3599,0.2762,77.7625,84.1727,81.1765,92.9412,13.6869,1.2645 North West London ICB,E84083,Lanfranc Medical Centre,5546.62077,5.2475,62.9032,78.0488,3.5018,67.7885,81,3.902,82.9268,3.9148,0.617,0.4836,1.2373,16.4541,14.1888,17.8923,60.7348,74.7525,0.4169,0.717,13.8742,0.3819,87.1384,94.1177,93.4783,97.1014,11.0565,1.6008 North West London ICB,E84086,Walm Lane Surgery,6711.935568,3.2496,68.1818,71.223,2.8584,53.4483,75,1.4363,73.1707,1.1465,0.5404,0.2844,0.6576,22.5395,5.0658,9.7554,74.6881,80.8,0.2844,1.1377,9.6948,0.2139,73.2693,89.4737,87.5,91.0714,14.8381,1.0381 North West London ICB,E84601,Kenton Bridge Medical Centre,6847.179258,4.2819,60.8434,63.9344,2.0766,46.6667,69.6429,2.3486,77.9817,3.1164,0.754,0.5192,1.2527,14.8734,8.0726,11.2361,76.1777,89.759,0.5068,1.1867,15.8112,1.1364,81.954,85.6164,90.9091,92.9293,12.4037,1.1001 North West London ICB,E84617,The Civic Medical Centre,5175.308062,2.8644,57.1429,54.1667,1.2063,56.0284,68.5714,1.786,89.0625,1.5696,0.3917,0.188,0.9736,18.9095,8.8889,8.9456,71.8686,88.0952,0.4543,0.7207,10.2126,0.6579,85.5306,88.6598,96.5909,86.3636,9.9795,0.987 North West London ICB,E84620,Preston Road Surgery,5195.859042,5.4578,58.5034,69.8113,1.6185,57.3705,80.3922,2.7379,71.0526,2.4717,0.2723,0.2874,0.7664,19.204,14.9584,12.5397,81.0848,90,0.7866,0.8622,16.5549,0.487,87.8517,90.5325,93.5897,96.1538,12.9998,0.8017 North West London ICB,E84626,The Sunflower Medical Centre,4443.329407,3.2289,56.25,50.7463,2.2556,63.7838,70.3125,2.3441,67.3913,4.442,0.7961,0.3759,0.8774,22.18,12.6791,13.6002,66.6041,74.3902,0.9067,0.9951,13.9841,0.4156,84.9434,83.1081,80.6452,91.3978,10.0983,1.0615 North West London ICB,E84635,The Surgery_E84635,4669.755471,4.4377,60,58.8235,1.6414,63.2287,70,1.9269,89.1304,3.1555,0.4104,0.3033,0.6129,22.9656,16.2734,14.6476,74.8656,84.4156,0.5352,0.8207,20.5675,0.1344,91.6165,87.1429,89.5833,94.4444,11.0677,1.1062 North West London ICB,E84637,Hilltop Medical Practice,4502.151528,4.1334,56.1644,56.8966,1.4167,65.9794,81.3559,1.3125,60,3.0222,0.8333,0.1667,2.3407,41.1988,9.5501,9.8125,72.8774,91.4894,0.4583,1.2292,16,1.5795,88.0499,89.1566,89.2308,95.3846,16.6269,0.8125 North West London ICB,E84638,Alperton Medical Centre,5269.58997,3.1746,66,61.5385,1.5928,72.8889,77.6471,2.2496,88.3333,4.3967,0.2627,0.4762,0.409,21.984,14.0499,12.5123,74.3119,79.6296,0.3941,0.5419,14.9489,0.4274,89.3866,91.4798,89.0511,95.6204,6.7742,1.1987 North West London ICB,E84645,Park Royal Medical Practice,9689.234402,3.5594,61.8497,53.4351,1.7727,64.5885,76.8,1.4473,75.4098,3.0962,0.6732,0.5834,1.3777,35.133,9.5512,11.4327,78.6277,87.6923,0.4712,1.2229,15.637,0.0952,90.98,81.3953,92.4812,97.7444,14.8879,1.2454 North West London ICB,E84646,The Streatfield Medical Centre,4772.118775,2.438,58.7629,75,1.1293,59.8746,77.1429,1.5057,54.8872,2.533,0.2466,0.2856,0.6514,15.224,6.8105,7.3339,76.9697,90,0.1558,0.2856,10.9463,0.8786,77.4704,90,92.1053,93.4211,13.6919,0.5452 North West London ICB,E84647,Kenton Clinic,3452.517093,4.2553,79.8077,85.0746,2.6615,62.585,77.7778,2.8682,75,4.5412,0.5168,0.4393,0.9145,14.9163,13.3125,15.969,78.9683,86.8421,0.646,0.5685,19.1107,0.3353,97.1182,76.4706,94.8052,97.4026,10.0904,1.3437 North West London ICB,E84653,Zain Medical Centre,3600.937084,4.4828,58.5714,68.75,1.12,50.3937,72.7273,2.24,96.5517,2.1017,0.448,0.32,0.8407,17.9387,10.5765,10.208,73.7931,89.6552,0.224,0.576,13.451,0.1287,89.1658,90.4762,93.8776,95.9184,10.4358,0.512 North West London ICB,E84656,Roundwood Park Medical Centre,6044.237954,5.7055,66.9231,60.3774,2.0858,61.4841,74.7475,2.0526,75.3846,2.3446,0.7284,0.4304,2.0096,31.8614,10.3127,12.1172,74.9221,85.5556,0.5959,0.9105,15.0094,0.1901,87.8893,88.7218,88.8889,96.9697,13.8272,1.076 North West London ICB,E84658,Aspri Medical Centre,5342.027371,4.2343,63.6986,73.1959,2.609,65.7459,77.1084,2.5311,74.1379,2.7326,0.7399,0.3894,1.1817,20.5107,12.8565,15.7905,50.1515,62.9139,0.5452,1.1098,13.934,0.7463,83.8725,78.7402,89.3204,93.2039,15.1803,1.4797 North West London ICB,E84663,Kenton Bridge Medical Centre - Dr Raja,6339.546922,4.43,63.1579,60.5769,2.4226,46.978,68.9655,2.8285,90.7692,4.1763,0.761,0.5835,2.4195,14.1386,7.9921,11.6565,82.4934,90.303,0.5835,0.7103,16.2737,4.117,84.4365,87.3096,89,93,8.422,1.4206 North West London ICB,E84665,Neasden Medical Centre,9198.900314,3.9991,56.9672,63.871,2.3776,57.5563,69.0647,2.345,77.3585,3.5369,1.0314,0.3474,1.7277,32.9736,11.5307,15.7638,75.9187,90.7515,0.4343,0.9011,19.9429,0.4233,82.7322,92.8,90.303,95.1515,21.7725,1.3245 North West London ICB,E84674,Chichele Road Surgery,4988.444052,3.0267,46.281,51.1905,2.0648,40.1015,57.8313,1.8375,81.8182,3.2223,1.0798,0.322,1.1256,26.5448,7.4924,11.6499,49.9051,63.6364,0.3031,1.4207,10.5275,1.5597,75.3805,80.2083,71.6418,86.5672,21.2261,0.9093 North West London ICB,E84676,Headstone Lane Medical Centre,2976.524623,5.3582,60.8696,68.75,1.8207,64.0625,80.597,2.5544,70.2703,2.8856,0.625,0.2989,1.0993,16.254,16.0108,15.4076,80.396,93.5484,0.3533,0.7609,17.6572,0.0845,91.6098,84.3137,94.7368,95.7895,8.4521,1.1141 North West London ICB,E84678,Preston Medical Centre,3991.900567,3.3075,56.6929,63.5294,2.4957,43.8889,60.274,2.7108,92.6829,2.4653,0.1721,0.2582,0.3672,20.7523,11.8899,14.2212,75.2747,73.913,0.2582,0.667,11.1461,0.5387,80.7195,92.1053,93.5065,89.6104,10.8595,1.2048 North West London ICB,E84680,Headstone Road Surgery,4246.844777,4.6639,61.7284,59.6774,1.5751,56.2738,75,1.9401,84.6154,2.6768,0.5955,0.5763,1.5717,16.4988,9.0247,10.8529,67.2996,81.3187,0.5186,0.5571,14.2436,1.0536,87.1239,89.3204,90.1408,97.1831,10.7599,1.0565 North West London ICB,E84684,The Tudor House Medical Centre,4714.818414,4.9624,61.8557,62.5,2.4488,56.5,71.2121,2.3644,94.2857,5.673,0.7811,0.4433,1.6056,28.5709,10.3038,12.2863,76.2637,84.252,0.3378,0.8444,18.7048,0.4684,89.8106,84.6154,89.7436,94.8718,16.9178,1.2455 North West London ICB,E84685,Sudbury Surgery,8154.333995,4.5695,61.4719,61.1842,2.8232,53.125,75,2.8232,76.7442,3.4897,0.5996,0.9119,0.5369,19.2751,11.8315,14.9781,69.0377,80.6584,0.6621,1.4116,15.064,0.5568,84.2732,87.4346,80.8511,92.1986,11.3694,1.5615 North West London ICB,E84693,St. Peter's Medical Centre,7842.302002,6.9584,66.0099,68.75,2.9285,60.2564,69.2308,1.5913,90.4762,2.1593,0.6852,0.3205,1.3741,15.2927,6.4601,9.758,74.9672,85,0.2984,1.0388,10.6001,0.6459,80.5922,79.8246,90.6977,95.3488,13.1822,0.9504 North West London ICB,E84699,Kings Edge Medical Centre,3598.101693,3.8615,54.2056,64.1791,1.4081,50,63.3333,2.1624,97.1429,2.6568,1.1315,0.5783,0.8032,19.1813,13.0342,16.1931,78.9572,80.3738,0.4778,0.9806,16.8366,0.9577,77.6455,77.1739,85.5422,87.9518,10.3759,1.0561 North West London ICB,E84701,Pearl Medical Practice,4270.556584,2.4954,60,57.3171,1.1488,63.2075,73.0769,1.3594,91.0714,2.2228,0.3255,0.1723,0.8604,22.2553,10.6318,11.5451,69.5413,75.8621,0.2872,0.7658,13.6233,0.078,86.6584,92.5,89.7727,93.1818,9.5638,0.8616 North West London ICB,E84702,Willesden Green Surgery,9730.094607,4.3395,55.7576,48.2456,1.4992,59.2892,68.75,1.4724,80.1587,1.5052,0.4997,0.1249,4.2757,25.4038,5.8601,6.8089,68.8693,85.3659,0.3123,1.0976,15.9468,0.7463,81.5592,94.0299,88.3495,95.1456,21.6534,0.6871 North West London ICB,E84704,St George's Medical Centre_E84704,2523.672192,7.6392,58.3333,72.7273,2.8641,56.25,76.9231,2.8641,91.3044,3.3058,0.6858,0.4034,1.188,30.0462,12.0506,22.8318,77.1084,85.2941,0.5647,1.2908,18.2851,0.9501,91.7262,86.6667,89.5833,95.8333,13.472,1.7346 North West London ICB,E84709,Wembley Park Drive Medical Centre,15320.29246,3.789,57.9336,59.5238,1.7412,45.3254,61.0256,1.5824,90.0763,2.8038,0.4651,0.2609,0.8305,22.554,5.9381,8.1159,72.3564,89.1304,0.6976,0.794,12.5374,0.6884,79.0338,88.7043,90.0585,95.3216,12.635,0.9471 North West London ICB,E85001,Thornbury Road Centre For Health,8232.187006,5.1633,70.354,67.284,3.0117,66.6667,77.551,2.7221,76.2887,3.9711,0.9267,0.7761,0.4765,16.3043,8.2229,13.0314,67.6836,88.3333,0.5676,1.4248,16.9098,1.2372,88.9922,91.716,89.7196,96.2617,13.1787,1.7144 North West London ICB,E85003,North End Medical Centre,18041.84689,4.3784,51.4512,54.5741,2.2062,49.6388,60.7717,1.6533,66.6667,1.8623,1.1215,0.3528,0.9732,22.467,5.1108,10.4728,63.3714,68.6192,0.2422,1.8639,7.3531,0.5457,72.5234,85.4772,85.7143,88.961,18.8609,0.9425 North West London ICB,E85004,Albany Practice,7619.033172,5.153,62.0482,58.5185,2.0494,58.1395,71.6535,2.6021,67.1429,3.0025,1.4561,0.782,0.6785,26.2098,6.9185,11.622,78.3115,88.5714,0.8224,1.3348,10.1442,0.2663,84.9144,82.2222,76.1364,90.9091,19.3955,1.51 North West London ICB,E85005,"The Surgery, Dr Dasgupta & Partners",5197.018965,4.0025,58.2609,62.3377,1.7166,52.5253,71.2329,2.0559,64.4444,1.2542,1.0978,0.2196,0.3859,30.1975,7.1853,10.4192,64.588,89.0411,0.4391,1.2974,7.5977,0.0746,83.2223,95,82.4561,92.9825,18.3051,1.0978 North West London ICB,E85006,Waterside Medical Centre,5164.630665,6.6204,50.9804,53.6585,1.4637,61.658,71.9512,2.5615,79.0698,2.0811,0.5082,0.2236,0.5532,32.2268,12.0207,11.2828,76.6529,88.7324,0.6505,1.5857,17.8082,0.3118,90.491,90.4348,92.0455,96.5909,12.1312,1.3214 North West London ICB,E85007,St Margaret's Practice,12209.20434,6.2055,70.0272,65.1852,3.2238,70.2306,74.6988,2.126,90,1.6679,1.438,0.92,0.5147,17.3829,6.841,11.465,66.4122,78.9474,0.3479,1.0669,8.8544,0.3922,83.5523,81.2834,78.8321,90.5109,13.9567,1.3838 North West London ICB,E85008,North Fulham Surgery,7688.41942,6.1087,65,70.7143,3.82,59.0734,77.9528,2.597,75.6098,3.3447,1.978,0.6342,0.5902,23.7819,6.8789,13.3927,67.5439,78.8177,0.2718,1.9629,7.9592,0.8794,82.2129,89.2308,72.4638,92.7536,15.9843,1.978 North West London ICB,E85012,Ks Medical Centre,6826.833309,7.4553,60.1227,69.7248,2.5052,51.1111,69.2308,5.2929,77.7778,4.3115,1.2055,0.9041,0.3477,27.4799,15.3161,18.1955,68.8679,85.7143,0.6028,1.5446,15.7395,0.3122,91.124,93.3628,86.7647,95.5882,10.2023,1.8648 North West London ICB,E85013,Westseven GP,5121.819308,5.0813,66.6667,60.9091,1.7854,58.9844,69.3878,1.7679,79.4118,2.3092,1.1553,0.2801,1.0776,22.1243,5.6002,9.8547,73.3068,90.1639,0.6476,1.2253,9.3248,1.4785,80.8333,92.6471,91.6667,95.8333,15.8366,0.8402 North West London ICB,E85014,Northfields Surgery,7470.097353,4.9769,74.7967,66.8508,2.7584,62.3824,74.5342,2.1415,91.4894,2.6132,0.6169,0.6285,0.392,11.6196,4.7939,12.5815,76.9231,85.2381,0.1979,0.8613,4.6748,0.2261,82.493,84.1584,88.1356,94.9153,11.9648,1.1872 North West London ICB,E85015,Hounslow Medical Centre,8754.180813,3.7561,57.377,55.7692,1.6505,48.0315,67.1756,3.5673,79.0124,2.4349,0.5431,0.4685,0.335,21.5734,13.3851,14.5139,68.9201,83.4821,0.3514,0.9477,15.8336,0.0706,86.2722,91.0959,87.7451,94.1176,10.8286,1.3417 North West London ICB,E85016,Richford Gate Medical Centre,11581.47448,5.3563,60.9848,56,3.4214,55.8952,68.5185,2.0213,76.6234,3.2917,1.4094,0.6769,0.8506,24.2403,5.5495,11.9054,68.5328,82.2581,0.8623,1.4186,8.9584,1.4951,79.8066,83.0846,82.2917,94.7917,18.0475,1.7339 North West London ICB,E85019,Crown Street Surgery,9244.495494,5.1502,66.1905,63.1902,2.7024,62.8895,75.3425,2.3717,74.2857,3.4807,1.3341,0.5017,0.3649,27.4485,7.2516,12.634,74.7738,85.2679,0.7412,1.6762,11.1017,0.664,79.8352,85.9551,88.7755,93.8776,16.4559,1.7902 North West London ICB,E85020,Brook Green Medical Centre,15536.73569,3.9873,58.0858,53.9063,2.4173,56.2108,68.3398,1.488,77.6978,2.1752,1.0485,0.609,0.6215,21.3255,4.4718,9.4556,72.1122,82.3129,0.1444,1.419,6.8971,0.433,76.9244,85.7143,84.4037,87.156,12.9806,1.2934 North West London ICB,E85021,Yeading Medical Centre,6961.474977,5.1096,62.2378,64.7059,1.5289,67.7165,80.3419,1.6443,82.1918,2.8279,0.9952,0.2596,0.9488,29.802,9.3346,14.0343,70.7986,88.806,0.6058,0.952,13.3023,0.4654,89.9746,92.4528,85.8586,92.9293,16.1543,0.7933 North West London ICB,E85023,Chepstow Gardens Medical Centre,3510.212697,7.5311,61.25,68.4211,2.9867,57.2917,74.4186,5.236,88,5.7939,1.7699,0.8112,1.0173,26.2695,14.1736,20.5752,76.9058,91.0714,0.7375,1.4012,20.5219,0.5165,91.4613,79.2,86.1538,96.9231,12.1705,2.7286 North West London ICB,E85024,Carlton Surgery,5336.854935,6.3111,66.4336,61.3208,3.1124,67.3684,76.0417,2.8818,83.3333,3.6704,2.0557,0.3843,1.3369,23.0884,10.8561,14.8895,70.8464,77.3723,0.5956,0.6532,13.1502,0.0575,89.8419,89.1892,81.1765,91.7647,18.3287,1.537 North West London ICB,E85025,Cassidy Road Medical Centre,10270.53972,3.7828,51.0791,44.2478,1.1163,59.186,58.7719,1.0088,88.8889,1.2836,0.8847,0.1654,1.3977,20.3241,2.9384,5.9864,76.2602,83.4862,0.1075,0.9922,4.6781,0.7273,82.2242,84.9057,82.1429,91.0714,12.5834,0.645 North West London ICB,E85026,Gordon House Surgery,14542.09213,4.7033,66.5653,64.9805,2.827,63.8298,72.6531,2.1598,93.7985,2.6658,0.9445,0.4624,0.7708,19.9323,5.0508,10.8719,72.3305,87.3278,0.4161,1.5258,7.2427,0.9302,81.4563,89.372,88.6957,95.6522,12.9025,1.1163 North West London ICB,E85028,Hillcrest Surgery,8744.928932,4.0977,64.6789,62.6506,2.4814,51.2195,66.4516,2.1038,91.3044,2.4527,0.7013,0.3129,0.5088,20.1828,5.0206,10.2276,73.5409,81.3559,0.2266,1.0573,6.6275,0.7558,77.873,86.2069,89.1892,94.5946,12.6474,0.971 North West London ICB,E85029,"The Medical Centre, Dr Jefferies & Partn",13815.32576,5.6604,52,58.1818,2.2159,45.2113,56.2212,1.9228,80,2.2165,1.7941,0.3503,0.4465,18.9937,4.8075,14.7605,63.6618,78.4946,0.5647,1.9585,11.8048,0.8756,66.8152,88,74.7826,91.3043,18.0373,1.2938 North West London ICB,E85030,Chiswick Health Practice,5748.511662,3.9156,70.7602,66.9231,3.6101,57.3333,72.8682,1.6895,94.1177,1.8229,1.1119,0.7798,0.3472,13.7528,4.5408,10.4116,71.3523,83.6478,0.2022,1.1552,6.4583,0.8127,80.5195,89.1892,89.7959,95.9184,10.7258,1.213 North West London ICB,E85032,Ashchurch Surgery,5297.235776,4.6723,60.4839,56.25,3.0402,52.1277,66.3158,2.1216,54.5455,3.0698,1.5529,0.5031,0.6907,23.7833,7.253,12.839,69.8925,82.7869,0.3281,1.706,10.2584,0.0595,78.9372,82.2222,78.8462,84.6154,17.6796,1.7935 North West London ICB,E85033,Hammersmith Surgery,11199.97579,4.2227,64.4269,68.7179,2.4613,58.2593,72.6776,1.4717,73.5632,2.4244,1.1757,0.6344,0.3006,23.9983,4.5651,10.4204,76.5217,83.2487,0.2368,1.3364,6.1967,0.1886,83.902,83.4483,89.1566,93.9759,14.1761,1.1841 North West London ICB,E85034,Grosvenor House Surgery,7047.88776,6.2768,58.7838,56.3107,2.9568,63.1068,75,3.0276,83.0189,4.1264,1.381,0.6551,0.5373,26.4,11.4486,16.8201,76.8919,91.9048,0.779,2.4787,13.2173,0.2589,87.9728,85.9649,91.9192,93.9394,17.551,1.7351 North West London ICB,E85035,Mount Medical Centre,6732.133109,3.7252,68.7898,54.902,2.1478,60.5839,70.6522,2.6141,86.5169,4.0413,1.7239,0.3674,1.9572,25.527,9.3505,12.2227,79.085,84,0.5228,0.8761,13.3744,0.1075,90.0734,87.5,92.9293,92.9293,18.8323,1.2152 North West London ICB,E85038,"The Surgery, Dr Mangwana & Partners",4875.106809,4.2722,61.7391,56.701,2.7256,51.5901,62.9213,1.5885,87.234,2.538,0.9567,0.3791,0.6074,13.3189,4.5113,9.9098,72.5807,81.7391,0.1444,1.0469,5.9002,1.0424,77.9835,90.3226,87.1795,94.8718,10.5063,1.1191 North West London ICB,E85040,West4 GPs,8592.771044,4.8354,74.6269,71.0526,4.8691,66.4336,74.7059,2.4346,92.8571,2.0208,1.2781,0.6452,0.332,14.6799,5.3866,12.3189,71.4472,84.0816,0.2678,0.9982,8.1986,0.1711,80.9929,90.3226,91.0448,94.0299,10.4538,1.7407 North West London ICB,E85041,Hanwell Health Centre (Naish),5539.037352,5.1959,68,69.7248,2.4362,62.9787,74.7573,2.1092,73.4694,2.3289,0.8339,0.3924,1.3809,21.7152,6.595,10.8895,69.6649,91.9192,0.5723,1.0464,6.9868,0.9419,80.9504,91.579,90.625,93.75,17.2716,0.932 North West London ICB,E85042,The New Surgery,7010.057495,4.8489,62.5,54.902,2.386,58.3333,70.4762,1.8179,95.6522,1.0548,1.3066,0.213,1.3394,26.8476,5.0215,8.6493,72.8175,90.4762,0.3693,1.335,8.8063,0.972,85.1935,87.156,85.7143,94.6429,19.9829,1.0794 North West London ICB,E85045,Twickenham Park Medical Centre,3795.427722,6.3733,74.0385,57.3333,3.59,63.8889,72.7273,3.2426,82.8571,5.2632,1.9398,0.9265,1.8368,20.782,9.1353,15.8946,68.7356,85.0877,1.0133,1.0712,12.3631,0.2937,86.3971,83.5294,78,92,17.6776,2.0266 North West London ICB,E85046,Eastmead Avenue Surgery,6458.019684,6.2173,63.4615,60,2.2998,64.1921,75,3.4911,78.4314,3.4108,1.2078,0.3805,1.2136,22.9637,10.181,14.7419,69.735,89.6552,0.5129,1.0424,12.7851,1.4667,87.743,90.5325,93.4066,96.7033,14.5158,1.4394 North West London ICB,E85048,"Dr Canisius & Dr Hasan, Parkview Cfh&W",8340.013244,5.69,51.8248,53.6585,1.7758,53.2663,61.0619,1.5365,83.3333,3.1797,1.2217,0.3149,0.9221,32.0288,6.5798,10.5668,71.5426,68.9655,0.4912,1.1713,9.3959,1.0393,87.3082,84.3537,67.4699,90.3614,18.5361,1.1713 North West London ICB,E85049,Belmont Medical Centre_E85049,8147.327365,5.007,54.7771,55.1402,1.3286,64.9007,69.7917,3.1435,96.5517,2.3055,0.4271,0.2847,1.0263,28.9095,14.0888,14.7687,75.7604,87.5,0.3796,0.9134,17.3435,0.1005,89.8325,92.4779,93.1937,96.3351,7.0006,0.9134 North West London ICB,E85050,Greenford Road Medical Centre,7567.001249,5.1722,63,73.7179,2.5788,57.5972,74.4681,2.7959,66.6667,3.1455,0.983,0.3575,1.0329,21.7792,9.3325,14.4134,71.6115,85.4167,0.6639,1.4299,12.5978,0.8096,85.7368,88.7097,86.087,93.913,17.8296,1.3277 North West London ICB,E85051,Greenford Avenue Fhp,5828.740857,6.4189,65.5629,65.8333,3.744,63.0573,73.5849,2.7125,70.2703,3.8315,1.6237,0.9933,0.5236,27.8641,10.6626,17.9561,72.7273,81.25,0.7641,1.3754,15.683,0.6366,90.6196,87.1212,90.8046,97.7011,18.0263,1.3372 North West London ICB,E85052,Cranford Medical Centre,6566.903873,4.3386,60.3774,70.339,1.9078,56.7376,71.8182,2.7689,85.3659,2.7663,0.8347,0.4505,0.5301,22.122,12.598,12.7981,80,91.3907,0.3445,0.9142,16.9621,0.0474,85.8965,93.6893,88.5135,91.2162,11.8658,1.2586 North West London ICB,E85053,The Medical Centre_E85053,3535.526037,7.5796,67.619,57.1429,2.111,71.3043,83.3333,3.1062,59.0909,3.7277,1.7491,0.392,0.6847,26.4884,10.1422,15.5006,69.1441,78.5714,0.573,1.2063,10.1179,0.1695,84.8611,89.3333,91.8367,91.8367,17.7189,1.4174 North West London ICB,E85054,Hillview Surgery,10367.09607,5.2144,63.986,66.5025,1.9146,62.5592,73.5955,2.6591,81.0345,3.0472,0.718,0.4166,0.8191,16.1295,9.274,13.9869,66.2853,84.6442,0.3545,0.9041,12.287,0.2578,78.7699,90.3615,81.3559,95.4802,17.6012,1.0902 North West London ICB,E85055,The Bush Doctors,12805.2501,4.2117,52.0913,48.9583,2.9401,46.6403,71.4286,1.9303,47.4576,2.6506,1.5907,0.3753,1.5802,28.4599,6.542,12.4933,67.6373,75,0.3307,2.2431,9.8685,0.6505,77.9157,83.8565,88.0342,93.1624,19.5981,1.5103 North West London ICB,E85056,St Davids Practice,7113.547671,4.7267,71.7391,61.2903,2.2579,61.1111,68.3099,2.2322,87.013,2.3302,1.7319,0.3977,0.9321,23.1585,9.4957,12.585,68.8915,83.0986,0.7441,0.6158,11.0186,0.1283,85.7193,94.8718,88.1818,93.6364,15.3159,1.1418 North West London ICB,E85057,Queens Walk Practice,9516.274023,5.54,76.3473,68.9076,4.8628,69.7406,80.5687,2.9829,95.8904,3.1723,1.6401,0.5755,0.5725,12.3736,5.3741,14.1186,80.9783,85.0544,0.211,1.0167,10.161,1.7344,89.5783,91.0256,92.8571,96.4286,10.5135,1.7073 North West London ICB,E85058,Blue Wing Family Doctor Unit,7668.458163,7.2642,61.9048,71.2418,2.2965,50.5837,67.1429,3.2904,95.4546,1.9997,1.343,0.7387,1.1259,22.0053,12.5227,16.6398,72.468,82.8829,0.7789,1.0878,14.7874,0.0763,90.5633,89.0625,91.0345,91.7241,14.9478,1.9742 North West London ICB,E85059,Chestnut Practice,7453.145395,4.1563,64.3836,74.1722,2.1953,62.1711,72.3881,2.9429,88,1.3276,0.7951,0.4153,0.2803,21.9851,12.9135,14.3349,80.1784,87.4372,0.2729,0.8069,19.6194,0.224,87.0705,87.3171,90.8571,93.1429,12.2767,1.1867 North West London ICB,E85060,Kingfisher Practice,5682.195437,6.7277,72.2892,73.7705,2.979,68.8525,72.4771,2.7125,82.2581,2.8791,1.0505,0.4704,0.4733,16.3629,8.3366,15.3496,74.8496,83.1081,0.5488,0.831,15.1647,1.3052,91.0016,92.5,86.25,93.75,15.5465,1.7404 North West London ICB,E85061,Welcome Practice,6076.581402,5.291,54.8387,56.9767,1.1356,59.6491,72.6027,2.0441,91.6667,2.2414,0.5354,0.292,0.3085,28.1129,11.6846,10.7722,80.2536,87.5,0.4543,1.0707,19.0829,0.3883,92.0042,86.9919,95.5752,98.2301,10.9414,0.6489 North West London ICB,E85062,Firstcare Practice,9403.829626,2.2736,59.542,59.292,0.7165,53.7152,65.2542,1.1987,79.6954,0.4641,0.3513,0.1171,0.3481,21.1353,6.7055,6.827,63.6054,81.6514,0.2067,0.5718,9.1209,0.2519,81.7568,92.3664,91.8367,93.8776,14.5853,0.6062 North West London ICB,E85064,West End Surgery,6646.542288,6.2434,64.4295,59.322,1.7688,68.5841,80,2.604,74.6479,3.9812,1.7032,0.2293,1.1986,29.1705,9.9306,14.5267,77.3732,88.9831,0.5896,1.2447,16.4598,0.2231,91.8331,89.5833,91.8605,97.6744,20.6254,1.2119 North West London ICB,E85066,The Bedford Park Surgery,3088.276867,4.6377,74.0741,66.6667,3.3802,71.7949,71.7949,2.1959,89.7959,1.8433,0.6909,0.2467,0.553,12.0147,2.8015,8.5122,73.0469,77.5281,0.074,0.7155,4.0553,0.2148,81.4535,68.1818,93.3333,93.3333,7.7303,1.0856 North West London ICB,E85069,Oldfield Family Practice,5005.464637,6.178,70.339,70.9677,2.5931,66.2037,76.5432,2.8339,73.5294,2.8934,1.1484,0.4631,0.9804,23.5502,9.0866,13.5395,73.7897,87.8788,0.6112,1.0558,14.6581,2.7778,88.516,92.3077,94.4444,98.6111,17.8623,1.0002 North West London ICB,E85071,Clifford House Medical Centre,2148.815331,4.2293,67.2131,70,4.1579,60.6061,71.4286,2.2632,88.8889,4.6835,2,0.579,0.1899,23.6741,9.9499,18.5263,64.5985,87.1795,0.4211,0.8947,18.1646,2.2758,89.8601,94.7368,90,96.6667,14.5161,1.4211 North West London ICB,E85074,West Kensington GP Surgery,4690.394974,3.5271,65.3061,56.25,2.3094,58.6667,63.8554,1.5107,78.9474,1.1783,0.5036,0.2084,0.1178,19.6213,2.7085,6.3553,66.2021,73.4177,0.1389,1.1634,4.89,0.0724,74.2778,68.8889,87.5,95.8333,15.793,0.7814 North West London ICB,E85075,Chiswick Family Practice_E85075,3907.874505,4.1984,62.3762,57.1429,2.5974,68.8679,69.2308,2.1212,84.7826,2.5237,1.5368,0.3896,0.6242,20.4211,5.618,12.8139,75.1969,86.9048,0.7792,1.0823,12.7001,1.1295,82.275,93.9394,90,97.5,15.2052,1.1255 North West London ICB,E85077,Shepherds Bush Medical Centre,4049.107021,3.6726,47.0588,49.0909,1.9428,43.4783,63.8298,1.9968,47.6191,2.0514,0.7825,0.3508,0.4593,27.7191,7.9563,11.36,68.7135,82.2785,0.3778,1.2412,9.4611,0,79.587,89.8551,82,92,20.207,1.2952 North West London ICB,E85083,Dr Sivanesan & Partner,6481.989156,7.8447,58.209,69.697,1.2529,73.6,80,3.1322,96.6667,2.6359,0.7334,0.3209,0.588,26.2584,18.4451,17.8304,83.0904,89.8551,0.6264,1.0084,15.4907,0.2294,94.077,94.2308,92.973,97.8378,7.3451,0.9779 North West London ICB,E85088,Elmbank Surgery,6566.677024,7.356,59.2593,58.9474,2.087,71.5385,80,2.7613,80.8219,2.4461,1.6857,0.3371,2.5498,30.0906,9.5199,13.6619,76.9663,89.2086,0.5619,1.2843,14.6559,1.7432,90.1177,96.1832,89.7727,96.5909,20.4203,1.0114 North West London ICB,E85090,Hammond Road Surgery,5147.955347,5.4413,57.265,52.1127,1.0838,69.3122,75.8621,2.7276,88.3333,2.3116,0.2168,0.2529,0.3425,26.5252,12.6866,14.5051,76.7143,86.4078,0.4155,0.5961,13.8057,0.1488,87.3264,93.8272,90.5983,96.5812,5.7143,1.1199 North West London ICB,E85091,Brunswick Surgery,2285.829747,5.1463,58.8235,60.4167,2.0286,56.6372,73.913,2.8267,90,2.2286,0.7981,0.2993,0.8254,20.7485,8.0033,13.1693,77.5862,83.3333,0.3991,0.7316,15.7656,0.1144,90.2205,94.5455,89.7436,97.4359,12.2326,0.6984 North West London ICB,E85096,Medical Centre,5079.579296,5.1492,62.5899,70,1.7177,61.6915,76.8293,3.0102,82.5,2.771,0.5952,0.3912,0.6316,23.7662,11.6606,12.7381,77.795,85.7143,0.2551,0.9184,16.9519,0.125,87.0797,91.411,88.9831,94.0678,11.3406,1.2245 North West London ICB,E85098,Islip Manor Medical Centre,5646.579693,4.5743,61.0619,58.0645,1.4319,63.7681,79.7753,1.3847,78.4946,1.7037,0.6452,0.2518,0.6441,28.79,8.5563,11.5342,85.8631,95.082,0.6609,0.7238,12.7156,0.0685,88.9237,88.8889,93.5897,96.1538,18.9075,0.6609 North West London ICB,E85099,The Avenue Surgery,5476.524843,4.7224,66.3462,58.4416,1.7189,65.6977,68.8312,1.3529,78.4946,0.803,0.573,0.0955,0.7246,19.1463,3.595,7.0667,67.4603,86.3636,0.3502,1.512,6.6393,0.6061,80.8957,88.0952,74.1935,90.3226,13.0665,0.5571 North West London ICB,E85103,Lady Margaret Road Medical Centre,3969.042231,6.4415,53.7815,68.9189,1.7278,48.4536,73.2143,4.365,94.1177,4.547,0.4244,0.6366,0.1736,26.7032,20.267,21.3095,74.7492,83.8095,0.5153,1.3034,16.2444,0.2285,89.7805,90.3955,89.7436,98.2906,8.4856,1.3944 North West London ICB,E85107,The Mill Hill Surgery,7553.691379,7.6901,68.6747,67.3759,2.4589,66.3399,73.8462,2.1057,86.747,2.3284,1.1955,0.5434,0.7645,28.573,7.3655,10.8409,74.5242,84.3478,0.6113,1.7389,8.636,0.2402,86.9996,89.9225,81.1765,89.4118,14.4042,1.1819 North West London ICB,E85108,Mandeville Medical Centre,4751.536782,5.3866,65.3226,62.963,1.9861,71.5909,78.3784,2.8665,88.8889,3.225,1.1876,0.2457,0.5244,26.6856,9.9229,14.783,79.3781,85.5856,0.5119,0.86,14.3681,0.3354,88.596,93.6,90.411,91.7808,16.6461,1.4333 North West London ICB,E85109,The Acton Health Centre,3845.064985,3.8644,57.3333,57.8947,1.6148,57.2864,61.8182,1.5212,82.5,1.4643,0.5851,0.1872,0.8039,29.325,6.0761,8.8228,63.7821,76.9231,0.5149,1.2404,8.6133,0.2075,74.5908,87.7193,80,92.5,16.6847,1.2404 North West London ICB,E85111,Perivale Medical Clinic,4630.279741,5.0127,61.5385,50,2.0453,59.9034,63.75,2.1927,92.8571,2.5228,0.995,0.4054,0.6774,18.5428,8.0571,12.1798,78.2301,89.5833,0.5528,0.995,11.4926,0.7658,85.9226,90.8046,85.7143,91.4286,20.7973,0.866 North West London ICB,E85112,Elmtrees Surgery,6174.655608,4.5191,67.5497,67.5214,2.2171,60.2857,77.7778,1.8454,82,2.4611,0.4614,0.2179,1.4608,14.3922,8.319,12.8028,77.8037,92.3077,0.3204,0.8971,15.37,0.7886,90.4959,89.2086,93,98,18.3148,0.7305 North West London ICB,E85113,Redwood Practice,6307.414391,4.8823,76.3547,80.2632,2.7423,66.787,78.3582,2.8509,74.359,3.3133,1.0589,0.3666,0.9099,16.7127,8.5085,14.214,76.554,90,0.4209,1.0453,15.1931,1.3716,90.4601,89.7727,94.5652,97.8261,14.3673,1.3169 North West London ICB,E85114,Crosslands Surgery,7486.138905,7.1488,64.557,72.2892,2.3788,67.148,75.1773,3.9387,87.2727,2.2291,0.611,0.546,0.7484,22.9435,13.3034,15.7936,53.0214,68.254,0.533,0.8709,16.2382,0.3429,90.247,89.1304,87.9747,93.6709,9.5171,1.6248 North West London ICB,E85115,Pentelow Practice,4000.035117,4.8515,67.3267,66.6667,2.5499,59.4937,72.1311,2.8781,80.9524,2.9514,1.9945,0.5807,1.4599,23.4338,10.3167,13.1785,60.7229,85.0467,0.5302,1.3381,13.1704,0.0842,92.1053,86.6667,82.5397,93.6508,18.0357,1.2623 North West London ICB,E85116,The Cuckoo Lane Practice,5643.5928,8.3289,70.2128,68.254,3.0695,69.0083,81.3559,2.6381,100,2.8742,1.2942,0.4148,0.5535,21.0578,6.7782,13.2404,77.5298,87.3016,0.4646,1.3274,9.3677,0.3166,86.2347,82.9787,89.6552,94.8276,14.0606,1.2444 North West London ICB,E85118,The Fulham Medical Centre,6253.894231,3.9184,67.8363,61.8705,2.9747,58.2143,74.1935,2.1887,76.4706,1.9877,1.865,0.3391,1.03,18.9984,4.025,10.7892,78.0531,88.1482,0.3545,1.1868,5.7644,1.7078,81.9774,89.1892,94.7368,100,12.1003,1.8342 North West London ICB,E85119,The Mwh Practice,12265.2562,4.0717,60.5263,58.794,1.3216,61.5955,70.7692,2.4587,91.25,2.1179,0.4652,0.2289,0.5043,26.165,14.0103,14.811,76.7996,87.5,0.3987,0.9451,14.5686,0.2271,91.6796,95.7958,91.1765,95.098,9.1317,1.0189 North West London ICB,E85120,The Argyle Surgery,7645.108347,6.6054,71.1207,63.7427,3.369,65.1757,72,2.2009,82.4561,2.1877,1.0205,0.4304,0.4034,21.5582,5.7475,12.1726,74.6359,85.5422,0.4672,1.3156,9.7285,0.2586,86.6747,92.1569,86.8421,92.1053,11.5273,1.4017 North West London ICB,E85121,Guru Nanak Medical Centre,13425.31656,5.0765,53.5256,59.5506,1.2585,68.2446,77.3006,2.7966,93.3824,2.3965,0.3915,0.2797,0.5927,26.0451,12.037,13.6405,67.6023,78.8382,0.2727,0.9019,14.7569,0.1325,78.6153,93.1373,86.2816,94.5848,6.9333,1.2515 North West London ICB,E85122,The Florence Road Surgery,12765.23753,4.7751,70.1258,56.2992,2.7202,68.6591,73.8776,2.2853,91.5888,1.887,0.7871,0.3797,0.5403,17.3894,4.6903,10.5772,74.5946,85.2321,0.2762,1.0632,5.8354,0.1419,82.4329,80.2083,84,90,12.6211,1.1392 North West London ICB,E85123,The Corfton Road Surgery,6713.171174,3.5286,72.093,70.2479,2.1827,61.5866,71.5517,1.6007,75.9494,1.7705,0.5509,0.2806,0.9434,16.6776,3.7122,7.255,78.5211,84.6154,0.1767,0.6964,6.8106,0.8752,74.0903,85.2273,92.1569,96.0784,11.5619,0.738 North West London ICB,E85124,GP at Hand,70408.39088,3.6844,50.3012,40.4459,0.3565,59.224,49.7175,0.2285,86.3192,0.0879,0.1005,0.0163,0.1297,23.1362,0.9058,2.2921,58.8662,71.1539,0.0112,0.5169,3.1846,0.071,63.7341,85.7143,64.4928,83.3333,10.47,0.1391 North West London ICB,E85125,Sterndale Surgery,4892.179386,3.7571,62.6984,60.7477,2.0011,52.8736,63.5514,1.3953,80.7692,1.3684,1.0832,0.1652,0.3421,20.7892,3.3698,9.7118,55.6277,73.1343,0.1652,0.9914,6.2219,0.1214,66.8781,93.4783,86.2069,93.1034,15.2489,0.973 North West London ICB,E85126,Green Practice,9544.955085,3.5732,56.4593,63.9752,1.4444,55.1069,68.6667,1.9563,92.4528,2.9092,0.4205,0.4022,0.4528,22.1333,10.1943,12.9719,72.2586,88.3249,0.2743,0.6582,11.7161,0.0715,89.4114,92.1397,96.6292,99.4382,9.5192,0.9782 North West London ICB,E85127,The Barnabas Medical Ctre,7747.966468,4.817,69.0377,63.7838,2.4545,63.0952,76.0736,2.0769,90.625,2.2831,0.9551,0.2221,0.5535,18.4912,8.5228,13.494,72.3197,85.1852,0.2999,0.733,11.3602,0.0341,80.0982,87.6712,95.8333,97.5,17.3414,1.2217 North West London ICB,E85128,Sands End Health Clinic,11112.19769,4.8618,58.3333,49.537,2.2287,55.8292,65.2174,1.6976,82.1782,2.9074,1.4724,0.3621,1.3456,18.7427,4.8849,10.8617,61.8834,79.1489,0.4184,1.0942,8.1426,2.2295,75.7612,87.574,92.5532,95.7447,15.6972,1.231 North West London ICB,E85129,The Mansell Road Practice,6072.5748,6.9825,66.8508,72.7273,3.3046,61.8605,79.3103,3.9854,89.1304,3.7808,0.9797,0.5646,1.3344,20.8286,10.772,16.8383,67.1446,80.791,0.5148,0.9797,13.5665,2.7078,83.8073,92.2652,95.2381,97.1429,15.3545,1.4613 North West London ICB,E85130,Chiswick Family Practice_E85130,3863.49886,5.4123,64.7541,67.3684,2.3679,67.4528,76.1364,2.061,87.931,2.0839,1.0963,0.4824,1.1343,18.9169,4.3558,10.809,62.2951,86.3636,0.307,0.877,10.947,1.204,82.0383,92.1569,96.6667,96.6667,14.0633,0.9209 North West London ICB,E85600,Willow Practice,5264.159633,5.4858,72.2689,77.8947,3.0259,63.4241,78.2609,2.7832,85.9375,3.3557,0.8252,0.5178,1.2609,16.278,8.1412,14.0453,81.25,95.6897,0.6311,1.0518,15.5176,0.9721,90.0846,86.6142,91.0256,96.1538,14.8954,1.2298 North West London ICB,E85605,Brentford Group Practice,8959.25977,5.2572,68.9189,62.9412,3.3654,65.3614,74.8299,2.7556,85.2273,4.2914,1.8996,0.6449,0.9733,25.352,7.4026,14.8687,69.5327,87.3737,0.4104,1.2899,12.2253,0.6882,94.0407,89.0244,84.2105,93.6842,15.7163,1.6182 North West London ICB,E85617,Acton Town Medical Centre,2318.285268,3.1834,58.6207,60.9756,2.4161,48.8722,75,2.5503,78.5714,2.7999,0.7718,0.2685,0.454,21.2206,5.6886,9.9329,68.254,86.3636,0.302,1.1409,9.1563,0.7937,84.6154,89.2857,90,93.3333,18.403,0.906 North West London ICB,E85623,Somerset Medical Centre,2401.761164,4.4048,47.1698,54.5455,1.2835,64.3564,62.5,2.4936,90.4762,1.9293,0.7334,0.22,1.1024,23.8747,10.6867,11.7712,78.125,84.8485,0.6601,0.9168,17.639,0.1495,88.4363,94.9153,85.1064,91.4894,13.234,0.7334 North West London ICB,E85624,"Dr Uppal & Partn, Parkview Ctr For H&W",7426.182414,4.3612,54.6961,65.625,1.7091,50.7634,72.5664,2.5983,65.625,2.4111,0.8476,0.3474,0.1686,29.4678,13.1115,14.5755,50.6742,74.8428,0.3613,0.9865,15.8152,0.1833,86.7283,89.5,91.5033,94.7712,11.3486,1.0421 North West London ICB,E85628,Elthorne Park Surgery,8375.142905,5.8306,71.9298,73.8693,3.1034,66.9492,76.2626,2.258,92.4731,2.3225,0.763,0.8145,1.4912,15.0771,5.2707,11.5682,70.7265,84.9462,0.4846,0.9589,5.8591,1.4036,79.697,81.203,87.5,93.0556,11.9609,1.0929 North West London ICB,E85633,The Southall Medical Ctr.,8574.263446,3.8222,51.6129,57.1429,1.0071,69.697,80.7018,1.6681,93.4783,1.6311,0.2413,0.2623,0.7706,27.2903,10.4013,11.089,83.0189,93.2039,0.3777,0.6924,12.6381,0.0927,88.1381,94.382,93.0818,96.8553,6.6539,0.7449 North West London ICB,E85635,The Vale Surgery,4891.090963,4.2929,57.6923,56.4103,2.3366,58.7983,72.7273,1.4239,81.8182,2.3412,0.7302,0.3468,0.51,23.7719,6.434,8.671,66.7539,76.3441,0.3468,1.1318,10.3616,0.5563,81.0577,86.7647,92.4528,94.3396,16.3489,0.931 North West London ICB,E85636,Park Medical Centre,13621.13546,4.229,68.8172,59.1837,2.7818,66.5644,78.9683,1.4457,71.5232,2.3882,0.7301,0.6571,1.1807,21.4975,3.7368,8.3528,67.8801,84.2857,0.4381,1.3362,7.5939,1.5756,83.9444,78.808,87.013,90.9091,12.1351,1.3508 North West London ICB,E85640,The Churchfield Road Surgery,3371.136179,4.0119,45.5882,51.1628,1.4273,50.5814,65.2174,1.199,96.1539,1.4342,0.9135,0.1998,0.326,24.9765,4.6278,8.3357,71.1111,83.5821,0.2569,1.2561,7.4316,0.2088,70.1754,84.375,89.2857,96.4286,18.3542,0.9135 North West London ICB,E85643,Meadow View,5438.882645,9.7409,60.9756,58.5106,1.3954,74.7899,86.1386,2.8062,90.7407,3.3949,0.4961,0.2791,1.1249,20.6532,16.4082,16.7752,74.5677,81.8182,0.4651,1.0078,12.6959,0.1116,92.6355,95.6989,93.3333,96.3636,10.155,0.9302 North West London ICB,E85649,Fulham Cross Medical Centre,3711.253879,3.6058,52.5424,42.8571,1.1568,42.4028,41.0256,1.0497,77.7778,1.5778,0.8783,0.0857,1.2431,19.5195,3.1399,6.2982,63.2911,75.4386,0.3213,0.7712,5.9288,1.0283,75.4386,79.1667,61.5385,88.4615,12.8169,0.6427 North West London ICB,E85656,Sunrise Medical Centre,5217.13815,6.2631,52.8302,49.2958,1.7054,64.2487,71.4286,4.2636,88.7097,2.6219,0.8721,0.4651,0.4411,27.7985,15.8481,12.2868,72.4014,85.5263,0.6395,1.1047,19.211,0.3113,91.7259,91.3706,88.6364,96.2121,10.0227,1.1628 North West London ICB,E85657,Ealing Park Health Centre,9830.945947,4.794,68.8372,62.4309,2.2336,64.5522,74.5665,1.8571,83.1933,1.8631,1.1211,0.368,0.6494,21.2346,5.1762,9.8502,60.8151,78.3505,0.368,1.0184,6.9626,0.1708,81.5959,80.4054,81.3187,92.3077,17.4827,0.9243 North West London ICB,E85658,Holly Road Medical Centre,3656.751139,3.2841,64.7059,62.5,4.0265,56.0284,69.3548,3.0729,85.7143,1.9835,0.9801,0.5563,0.5798,16.74,5.6901,13.1126,69.0411,79.2308,0.2384,0.8212,9.1547,0.2044,79.4954,77.0492,88.5714,94.2857,12.7742,1.5894 North West London ICB,E85659,"Dr Rk Kukar, Parkview Ctr For H&W",2431.77312,3.512,50.9804,53.8462,2.0327,46.6667,75,1.9885,66.6667,3.1033,1.5024,0.4419,1.5516,32.5934,8.3772,11.6217,52.6786,56.4103,0.5303,1.4141,9.6308,0.6182,81.3538,90,74.1935,83.871,16.0063,1.0164 North West London ICB,E85663,The Saluja Clinic,10204.14782,3.8579,47.4747,48.4375,0.8502,58.9385,66.6667,2.7724,89.1089,1.7924,0.2588,0.1941,0.692,28.1534,13.7066,16.2,70.8978,81.1594,0.4713,0.8225,15.0312,0.1885,84.0957,96.7872,89.1129,94.7581,5.8999,0.7948 North West London ICB,E85677,The Horn Lane Surgery,5840.675288,2.9733,49.5327,47.2973,1.3954,48.8304,61.8421,1.0148,76.1194,0.9597,0.592,0.1973,0.7712,24.4785,4.4192,6.272,67.6923,81.8182,0.3806,1.1417,7.952,0.9832,77.5615,86.2069,94,96,18.2108,0.592 North West London ICB,E85680,Cloister Road Surgery,7941.769714,3.4974,70.1389,68.6957,1.1551,64.5408,83.1858,1.6652,83.5052,1.7403,0.8952,0.2791,1.3343,22.6849,4.3618,8.2299,82.0588,91.4286,0.308,0.693,8.052,0.9156,82.2921,90.678,91.1765,97.0588,14.2962,0.7893 North West London ICB,E85681,Jersey Practice,9030.435552,5.384,59.596,63.9456,1.3055,58.7467,72.5191,2.3378,90.3846,2.9396,0.5566,0.5971,0.5694,26.032,11.1501,12.438,62.9524,82.6816,0.3947,1.0627,16.2871,0.0406,88.9927,88.2353,82.1429,94.6429,11.5375,1.0728 North West London ICB,E85682,Dormers Wells Medical Centre,5932.12578,4.6707,50.3704,57.1429,1.6018,47.4419,65.4545,2.5172,91.6667,1.8817,1.0624,0.2288,0.7109,29.412,11.4082,11.8012,80.389,85.7143,0.474,1.1932,14.1752,0.113,83.1603,88.189,80.7018,87.7193,9.8616,1.0951 North West London ICB,E85683,Glebe Street Surgery,3771.193744,3.8501,73.5294,65.7658,4.3221,57.7778,72.6415,1.9017,96.4286,1.1203,1.2102,0.3458,0.6486,13.3349,3.8148,11.4102,74.5308,83.1461,0.2223,0.9632,6.5743,0.0579,82.2104,84,83.3333,91.6667,9.9438,1.5065 North West London ICB,E85685,The Lilyville Surgery,9503.351078,3.6548,69.8039,58.9744,3.3461,63.5849,63.388,1.851,93.6,2.8252,1.0056,0.5962,0.7715,12.634,3.4449,8.8102,70.1613,82.5203,0.178,0.9789,5.4656,4.1969,73.9916,80.7692,85.4545,92.7273,11.4311,1.6107 North West London ICB,E85687,Acton Lane Medical Centre,3650.128929,4.4876,51.1111,48.7805,0.6485,63.1206,70.4545,0.6708,80.4878,0.3135,0.2907,0.0895,0.6792,21.8362,2.1847,4.6959,62.1622,84,0.3131,0.6038,7.3407,0.5797,85.6974,90,82.3529,94.1176,21.1681,0.4696 North West London ICB,E85693,Grove Park Surgery,13381.3685,4.9667,72.5869,62.9032,3.2363,64.0805,75.2941,1.8029,83.1461,2.1779,0.9966,0.4255,0.7399,15.2106,4.2723,10.6047,69.1293,87.8307,0.336,0.8735,4.7466,0.572,83.0263,79.2208,83.7398,91.8699,9.8164,1.3326 North West London ICB,E85694,The Boileau Road Surgery,4132.896424,3.5924,60.1695,54.023,2.7125,41.6667,54.5455,1.9115,88.5714,3.4554,0.6736,0.4551,0.8523,13.5255,5.2715,10.5771,72.5532,84.6847,0.3095,0.7282,13.2688,1.9059,71.4415,83.3333,90.2439,92.6829,18.0045,1.0559 North West London ICB,E85696,Clifford Road Surgery,6361.263935,3.3418,60.7407,57.3034,0.8238,49.4662,60.241,1.7065,98.2301,1.7088,0.4825,0.0942,0.2298,22.9917,10.5728,11.7335,70.2674,83.871,0.4472,0.306,17.8059,0.0558,93.1236,93.0556,93.5897,97.4359,7.1947,0.5531 North West London ICB,E85697,Greenbrook Bedfont,6053.401651,4.2043,65.7143,62.963,1.7354,59.761,72.1649,1.8946,94.0299,2.092,1.3055,0.2229,0.7249,24.0009,9.6564,12.912,70.547,78.5714,0.4617,0.7483,14.4366,0.2288,88.0755,84.0708,77.1739,93.4783,17.8816,1.1622 North West London ICB,E85699,Grove Village Medical Centre,7556.695211,6.2328,64.557,59.5238,2.6098,62.0968,69.2982,3.0623,82.2581,4.8045,1.9762,2.2326,0.8364,25.5086,11.0388,13.8935,54.6939,82.7957,1.1465,1.2219,15.5806,0.0976,87.6464,83.0769,86.2385,93.578,19.4439,2.3684 North West London ICB,E85707,Skyways Medical Centre,6564.125435,5.2527,61.2717,68.6957,2.0427,61.5063,70.8738,3.8671,87.234,3.7846,1.5749,0.7017,2.2971,22.8152,11.2122,14.3459,74.4459,88.2353,0.6237,1.5749,14.2911,0.2041,88.4233,88.1081,85.2174,91.3043,13.56,1.7309 North West London ICB,E85708,Gill Medical Practice,6648.423865,4.6249,64.1618,59.1667,1.8771,58.0247,75,1.6457,82.3529,1.5201,0.8228,0.2314,0.8826,22.8291,9.1378,12.2268,60.0715,71.4286,0.45,0.7585,10.0687,0.2433,82.064,91.5254,83.6364,90.9091,13.9044,1.0543 North West London ICB,E85712,Goodcare Practice,9844.691644,6.6781,61,66.443,1.538,69.5962,76.5101,1.8643,82.4818,2.1326,0.9694,0.3915,0.8173,30.3152,11.1278,10.6264,79.4291,84.6774,0.8389,1.2491,19.4228,0.2367,91.042,92.6316,85.8757,95.4802,16.2956,0.6618 North West London ICB,E85713,Hounslow Family Practice,5278.926079,4.8772,60.5042,60.7143,1.5435,56.3707,69.6203,2.6483,86.9565,1.6874,0.4387,0.4549,0.5625,21.2874,9.9821,11.7953,69.6181,82.6667,0.3737,1.1048,17.6577,0.449,90.35,85.6061,89.899,96.9697,14.403,1.2348 North West London ICB,E85715,Broadmead Surgery,8075.235813,5.5975,62.4204,63.4921,2.0725,67.8261,78.3333,2.1863,79.1209,2.4168,1.3143,0.3412,0.9126,31.9535,8.643,12.2583,74.2551,80.916,0.7203,1.5418,13.6894,0.2022,85.8898,86.9565,80.8081,88.8889,17.6124,1.2258 North West London ICB,E85716,Bath Road Surgery,12621.77524,4.4452,61.8705,62.439,1.2749,62.2433,74.2857,2.0127,82.2086,2.8398,0.9513,0.6795,1.4523,22.4353,11.0933,13.9335,82.9294,90.1869,0.6213,1.0484,18.6045,0.3788,90.0735,91.6905,92.674,98.9011,11.7333,0.9578 North West London ICB,E85718,Hatton Medical Practice,4136.655837,3.6097,51.7241,51.7241,1.3528,53.4884,67.5,2.435,81.25,1.2104,0.9573,0.2914,0.8756,21.2658,10.9901,14.2976,78.6174,84.6154,0.2497,0.5619,16.5336,0.1396,85.6909,90.4762,88.2353,80,13.0308,1.1863 North West London ICB,E85719,Ashville Surgery,7799.287099,3.813,65.8031,56.6845,2.5641,67.2199,66.3265,1.5635,92.381,1.281,0.6343,0.1876,0.6291,14.2183,2.6189,6.4951,77.0798,83.3333,0.134,0.8756,3.4771,1.8054,77.1912,80.7018,82.5,90,8.8415,0.7683 North West London ICB,E85721,The Town Surgery,1728.944004,6.5083,52.7778,60,0.5893,67.1053,87.8788,1.2693,100,0.8149,0.4533,0.0907,1.4552,26.337,16.0136,13.6899,86.8512,92.3077,0.4533,1.7679,14.3772,0.5357,89.0746,93.75,91.2281,94.7368,6.0976,0.2267 North West London ICB,E85725,The Grove Medical Practice,6735.253218,5.7896,59.3407,56.2044,1.2347,60.5634,75.5906,2.0394,88.7097,2.7706,1.0266,0.1804,0.1039,22.727,9.4144,12.5416,72.0607,90.2655,0.3607,1.0128,10.7706,0.4102,78.0731,89.2857,91.3462,98.0769,15.8153,1.1238 North West London ICB,E85726,Mattock Lane Health Centre,3028.292658,4.1129,68.5393,77.5862,3.1673,74.4186,78,2.1115,62.5,2.4304,0.4289,0.5609,0.588,21.2018,6.9153,15.5064,78.25,94.2857,0.3299,1.1547,10.7017,1.8519,90.7423,88.2353,88.2353,94.1176,12.2156,1.2207 North West London ICB,E85734,Queens Park Medical Practice,5333.61462,4.9841,60.1504,58.2524,1.8266,62.1399,76.0417,2.192,85.3333,3.2224,0.9133,0.4151,0.742,23.0044,12.2844,12.9193,70.7602,81.9149,0.4151,0.9964,11.9355,0.4802,85.2068,85.9155,80.7018,83.3333,17.1118,1.013 North West London ICB,E85735,Brentford Family Practice,5605.692317,5.2799,64.7059,63.7363,1.8223,64.1694,74.4186,1.5295,77.6316,1.7061,0.8135,0.2929,0.74,24.9949,5.5161,8.4933,81.2095,91.5254,0.3905,0.8949,10.6064,0.1407,87.541,92.3077,90.3846,96.1538,15.4555,0.9925 North West London ICB,E85736,Little Park Surgery,6679.310915,6.3996,66.4596,61.3636,2.244,66.5455,77.7778,2.2296,76.1194,1.7657,1.5535,0.4028,0.9683,24.5477,9.5185,13.3343,70.0621,86.0656,0.4603,0.9925,18.7583,0.0489,91.9368,91.3462,86.4583,93.75,18.1835,1.1939 North West London ICB,E85739,Hmc Health Heston Great West,9518.728061,5.5239,55.3488,51.875,1.6588,54.9872,69.7987,2.419,78.6408,2.2282,0.859,0.3258,0.7084,25.129,13.0061,12.9937,74.3208,81.1429,0.5727,1.2934,14.271,0.1842,87.1373,87.5537,85.9296,93.9698,14.0894,1.0071 North West London ICB,E85743,St George's Medical Centre_E85743,3318.650782,6.1818,47.0588,58,1.8501,57.5472,71.6981,1.9442,64,1.642,0.5331,0.2509,0.4405,25.6302,12.3529,12.01,80.597,87.5,0.6585,1.6306,13.7365,0.1053,91.4743,88.8889,90.1639,90.1639,13.6157,1.0975 North West London ICB,E85744,Argyle Health-Isleworth Practice,9018.591009,5.3939,65.3846,58.6667,1.8706,68.4332,75.974,1.968,88.3495,2.7956,1.2373,0.302,1.4356,21.148,7.073,12.0908,75.9963,83.3333,0.4287,1.0912,13.9277,0.1947,90.5983,85.5263,77.2358,91.8699,14.898,0.9645 North West London ICB,E85745,Jubilee Gardens Medical Centre,7738.766684,6.3904,52.459,59.6774,1.3665,58.8015,71.9626,3.5138,79.5181,2.8993,1.0151,0.4555,1.15,25.6973,15.4532,20.7965,76.9494,87.5,0.7939,1.3144,19.4202,0.2682,85.6157,95.053,93.617,96.2766,8.1639,0.9761 North West London ICB,E85746,Grove Park Terrace Surgery,3062.099198,4.2125,69.2308,63.2353,2.6423,64.497,79.4521,1.1179,96.6667,0.782,0.686,0.1779,1.4337,17.4254,4.064,7.5711,80.7547,90.9091,0.3557,1.1433,7.0381,0.2742,79.1527,91.6667,86.3636,90.9091,9.2644,0.7114 North West London ICB,E85748,"The Medical Centre, Dr Kukar",5441.015523,2.7454,41.9355,48,0.9428,34.5382,59.7403,1.3263,62.7907,1.4164,0.4155,0.1598,0.7761,26.7123,5.4219,7.4625,59.1981,72.093,0.3515,1.3902,8.8087,0.2839,69.3867,83.5821,70.9091,87.2727,19.5739,0.8469 North West London ICB,E85750,Spring Grove Medical Practice,6714.275946,4.1515,61.4525,59.2,1.9712,61.8729,74.3363,3.056,74.2857,2.7294,0.5556,0.344,0.6028,18.3781,11.221,14.1024,75.2566,80.9524,0.807,0.6482,17.0462,0.1803,81.8213,90.3553,83.0769,90.7692,12.3572,1.2568 North West London ICB,E86001,Mountwood Surgery,11286.44318,5.5442,71.3604,73.8832,3.9576,66.8555,75.3191,4.0989,91.7647,4.7336,1.3781,1.2456,1.1348,9.962,9.1917,16.9876,79.6479,86.6799,0.4859,0.9806,11.1423,0.7503,90.1218,85.1724,86.3636,97.4026,6.6096,1.7226 North West London ICB,E86004,The Medical Centre_E86004,11139.51704,4.3827,61.0487,56.4767,2.3129,60.1896,70.2857,1.9812,80.137,3.2228,1.1116,0.4572,1.2611,26.4298,8.2576,11.4209,73.095,84.8341,0.4572,0.6813,15.5301,0.24,82.1073,82.7751,88.2353,95.5882,17.955,0.9682 North West London ICB,E86005,The Oakland Medical Centre,6861.891508,5.6715,71.1538,69.0141,3.5291,63.6,72.9508,2.8797,94.1177,2.3517,1.1858,0.9599,0.5608,13.4655,8.3319,13.9328,74.2744,81.6594,0.5364,0.6917,14.2004,0.2332,92.6671,86.1789,90.6977,88.3721,10.5935,1.4822 North West London ICB,E86006,The Devonshire Lodge Practice,7868.15385,6.1589,74.8201,76.5957,3.9078,73.6486,77.5641,3.1239,91.9355,3.9268,1.2591,1.3541,1.6064,9.717,7.4651,15.0137,72.6886,80.805,0.3801,0.8433,9.2221,0.5417,87.7148,86.1879,83.871,94.6237,9.6609,2.0074 North West London ICB,E86007,Harefield Practice,10258.27844,7.5849,69.9324,74.1784,4.0044,65.894,71.5909,3.4915,87.6712,3.9741,2.4441,1.3421,1.6301,18.2031,8.1351,15.3628,75.0693,81.8462,0.4583,0.9274,13.1349,1.2672,85.1895,81.5534,89.6552,95.6897,13.9938,1.9749 North West London ICB,E86009,Belmont Medical Centre_E86009,8102.75942,5.4211,70.9524,64.2384,2.7082,66.4083,75.5725,2.2493,77.3585,2.6203,1.1526,0.3357,1.2314,16.1602,6.8346,12.7462,71.2121,83.2558,0.4476,0.7722,12.5286,0.1951,90.547,90.6475,85.8696,95.6522,12.2054,1.1303 North West London ICB,E86010,Yiewsley Family Practice,14703.33654,5.8606,56.4706,50.2488,1.6486,52.973,68.2796,2.3191,79.5745,5.1182,1.2426,0.3999,2.5054,27.4915,7.7936,17.4151,62.9729,77.1028,1.0089,1.4333,21.7133,3.1566,79.3537,79.661,86.9565,95.6522,20.2193,1.1011 North West London ICB,E86011,Oxford Drive Medical Centre,5737.454415,6.4758,74.5223,81.3008,3.8525,75.6881,80.9091,3.0164,97.0149,4.9018,1.3771,0.4918,1.0142,9.1432,7.6764,15.3934,69.6023,83.4043,0.4426,0.8525,12.3178,1.6026,91.1754,87.9699,79.1045,94.0299,11.1179,2.0328 North West London ICB,E86012,Wood Lane Medical Centre,10749.88789,5.8096,74.9333,72.973,4.3164,76.455,80.4444,2.7308,93.3333,2.8865,1.2773,0.6078,0.7892,8.464,6.8723,14.5613,80.3404,86.8201,0.3436,0.7047,12.2703,2.3131,89.9386,88.9474,88.2353,96.6387,9.0198,1.8147 North West London ICB,E86014,Cedars Medical Centre,5250.687024,5.0708,72.7941,70.4348,2.8173,69.7987,73.8739,1.9425,97.0588,2.3725,0.949,0.3707,1.2456,9.1544,5.6964,11.2693,68.6709,73.4375,0.8304,0.5486,12.9102,0.7726,89.3758,82.3529,92.3077,96.1538,13.129,0.949 North West London ICB,E86015,Central Uxbridge Surgery,16328.94703,5.8805,68.2119,74.0506,3.1863,60.5096,73.6264,2.8949,86.3309,3.1925,1.6629,0.5766,2.1511,17.5234,8.2282,13.4915,67.4045,78.6058,0.5705,1.0014,16.2283,0.287,83.4046,87.8698,90.3382,94.2029,14.0945,1.5173 North West London ICB,E86016,The Pine Medical Centre,5903.55635,5.1458,63.8889,73.8318,1.8812,65.7658,77.8846,2.4769,79.3651,3.2954,1.2855,1.066,0.8788,20.8193,9.8193,13.8737,79.1724,87.5,0.3762,0.9092,14.999,0.5227,91.1392,80.5556,83.1683,95.0495,11.8465,1.1914 North West London ICB,E86017,Hayes Medical Centre,15419.51836,3.2383,53.7906,52.3148,1.117,57.0713,69.6078,1.5162,84.3512,1.7538,0.465,0.3134,0.7571,23.7981,8.1108,9.3248,69.5598,83.6207,0.2527,0.7531,14.0117,0.4983,83.911,92.2559,85.8268,94.0945,10.2345,0.6115 North West London ICB,E86018,Townfield Doctors Surgery,8564.657168,5.8931,56.8528,65.0685,2.7679,65.5678,72.7273,2.6572,89.3939,3.0154,1.4393,0.9472,0.9998,26.5793,12.4883,15.6354,66.5049,71.7842,0.8119,1.1564,20.8538,1.401,84.3702,87.4346,86.0759,95.5696,12.7629,1.4393 North West London ICB,E86019,The Warren Practice,6703.757012,6.6729,64.0449,60.3175,2.3177,57.8475,72.3214,3.3446,94,2.6233,1.4523,0.4841,0.4064,24.2432,13.0103,18.1018,79.4721,88.1517,0.6308,0.6601,15.2041,1.1354,89.1181,88.421,82.4818,92.7007,12.3953,1.5843 North West London ICB,E86020,Yeading Court Surgery,5279.166157,5.8517,56.0976,54.1176,1.829,65.641,75,2.3516,78.4615,3.7592,1.5118,0.3546,1.2039,26.407,10.5441,13.2699,70.6468,83.3333,0.4666,1.7357,14.57,0.0654,85.2832,88.189,83.5294,92.9412,12.0482,0.9145 North West London ICB,E86022,The Abbotsbury Practice,5804.089031,5.2015,76.7442,83.0065,5.2397,66.1111,80.1587,3.5041,82.3529,3.7045,1.1736,0.8595,1.0813,8.5755,8.335,17.4546,54.2857,71.6783,0.5785,0.6281,9.6716,2.4687,85.6184,87.2,89.6104,93.5065,8.3033,2.562 North West London ICB,E86024,King Edwards Medical Centre,4427.084344,7.9088,67.5159,68.75,5.0692,69.2913,78.7879,3.9303,76.9231,4.5271,1.3846,0.7816,5.6858,8.3567,8.3818,18.1331,81.1166,91.133,0.7816,0.9603,10.5632,1.9221,86.1936,89.8876,91.2281,92.9825,9.7678,1.9205 North West London ICB,E86026,Parkview Surgery,8219.90497,5.2993,62.7551,64.539,2.2398,59.6273,72.6563,2.1219,86.5385,1.1689,1.4618,0.2711,1.2919,22.6361,8.844,12.1891,66.8966,81.7073,0.7662,1.1081,14.6263,0.2494,83.5017,89.6296,80.1802,93.6937,14.8757,1.1788 North West London ICB,E86027,Otterfield Medical Centre,7784.24251,5.7317,57.3964,53.9683,2.9044,64.9635,71.3043,2.9461,91.8919,1.9604,2.1957,1.4313,2.2509,27.682,9.8787,13.6326,76.1468,85.3211,0.5837,1.0561,18.0432,0.1753,90.0634,85.1351,79.6296,95.3704,21.0581,1.612 North West London ICB,E86028,Eastbury Surgery,8223.591735,5.6568,63.3065,60,4.1494,62.4138,67.0968,3.0973,81.25,3.849,1.0758,1.1112,1.0215,7.5962,8.4939,15.8529,74.3215,85.3786,0.4019,1.1467,11.2509,0.5307,85.2208,84,84.6847,95.4955,6.6345,1.726 North West London ICB,E86029,Cedar Brook Practice,10644.26005,6.0229,65.7258,62.3762,2.5646,64.359,76.4706,2.2233,81.8182,2.4224,1.5683,0.8395,0.9251,21.8738,9.6147,13.7362,68.8925,76.2452,0.6458,1.19,15.4352,1.2569,87.9149,83.8542,91.3907,95.3642,14.9295,1.3192 North West London ICB,E86030,Brunel Medical Centre,6656.460532,1.9763,67.6471,61.5385,0.8234,46.9169,73.5849,0.5187,83.3333,0.5731,0.3705,0.0988,1.3074,13.1846,1.7011,3.8205,71.7445,94.7368,0.1153,0.7163,6.2953,0.2077,80.7692,76.5957,82.3529,97.0588,13.3593,0.2799 North West London ICB,E86033,St Martins Medical Centre,5760.747089,5.7064,68.8525,66.129,3.7395,69.2308,72.6415,2.6273,86.9565,2.7862,1.225,0.9671,0.7066,8.7245,8.4148,14.9259,76.0773,83.004,0.6125,0.8543,12.0937,1.0936,86.5726,85.1064,82.8947,92.1053,11.1562,1.3217 North West London ICB,E86034,Church Road Surgery,2616.548302,3.7408,63.9535,61.5385,1.8299,63.9175,70.2128,2.3681,76.6667,2.3448,1.6146,0.3947,1.2874,20.0062,7.7481,12.6301,59.9315,78.3333,0.3947,1.1123,10.9425,0.1086,84.4812,97.1429,76.4706,85.2941,17.1556,1.0047 North West London ICB,E86036,Hillingdon Health Centre,8043.011793,5.7093,71.3147,67.2414,3.2137,64.5161,75,2.9439,93.4066,4.4892,1.0908,1.1142,1.1037,11.9779,8.3873,14.8487,70.4901,84.6906,0.6451,0.7155,23.3706,0.5902,88.1853,82.7586,84.6154,92.3077,11.0417,1.6303 North West London ICB,E86038,Glendale Medical Centre,5702.035169,5.2817,58.1699,52.6316,2.0552,58.9744,74.0741,3.2912,88.3117,3.3871,1.2072,0.2874,0.8875,21.5619,9.9768,14.6163,79.1126,90.3226,0.3306,0.503,17.044,1.5841,82.32,90.1099,91.7431,96.3303,14.4444,1.3941 North West London ICB,E86041,Acre Surgery,4979.315551,5.1404,58.0882,57.1429,2.6864,62.381,69.0476,2.8465,81.6327,2.6298,1.0852,0.427,2.3068,13.5667,9.2454,14.2857,70.266,79.2683,0.6583,0.8006,14.1638,0.288,79.5048,91.7431,86.25,93.75,11.0883,1.0674 North West London ICB,E86042,The High Street Practice,7017.102969,5.5828,63.5762,57.377,2.0546,68.038,76.1062,2.0416,83.6957,2.0851,1.4694,0.4681,1.0089,26.823,9.0201,11.9636,73.5618,93.2039,0.5202,0.8713,17.0338,0.8891,88.0475,93.985,85,94,16.5789,1.0663 North West London ICB,E86605,Ladygate Lane Medical Practice,2613.64273,6.6122,69.7917,67.1875,4.023,74.1935,78.7234,3.3333,91.3044,2.8029,1.6858,0.8812,2.1378,12.0553,7.7934,15.249,83.7061,95.2941,0.9195,0.9579,12.4941,0.4931,89.9145,82.3529,86.6667,93.3333,12.9445,1.6858 North West London ICB,E86609,North Hyde Road Surgery,6335.325867,4.3807,59.4059,55.5556,0.893,57.2603,69.5122,1.7287,85.4015,1.1512,0.3778,0.1832,2.1901,23.9378,7.9006,8.4602,71.3864,80.3279,0.2519,0.7441,20.2864,0.2863,85.008,84.4262,84.4037,91.7431,12.6349,0.664 North West London ICB,E86610,Willow Tree Surgery,3183.459531,6.8034,65.9341,65.7534,2.8092,71.0744,79.4118,2.8092,94.2857,1.751,1.5267,0.1527,2.179,26.4584,8.9204,13.9542,79.798,93.4426,0.3359,1.0687,15.6031,0,89.6685,91.0714,91.3043,95.6522,16.2919,1.0076 North West London ICB,E86612,Shakespeare Health Centre,4325.16845,5.0592,59.1398,67.6056,1.5492,65.7658,77.6119,2.2105,86.4407,1.3736,0.359,0.2645,1.766,22.9447,11.7152,12.7338,79.0083,85.5073,0.2834,0.8502,18.1506,0.9778,89.463,92.6316,92.6316,96.8421,9.4699,0.9446 North West London ICB,E86615,Acrefield Surgery,2298.088008,4.6296,59.7015,54.5455,2.3494,61,68.4211,2.3115,88.4615,2.5255,1.0989,1.0989,3.3997,14.5757,9.6172,15.3088,71.3855,84.7222,0.8337,1.061,17.8728,1.107,78.7192,91.8367,87.1795,97.4359,13.2339,1.4399 North West London ICB,E86618,Carepoint Practice,6651.325606,4.914,62.0879,67.5,2.6146,60.4167,67.619,2.0216,68.9655,3.5257,1.2938,0.3369,1.7541,13.5503,7.102,12.7763,59.5461,77.8895,0.4043,0.7278,13.0679,2.0797,82.8582,82.5397,80.7692,94.8718,14.6658,1.159 North West London ICB,E86619,Wallasey Medical Centre,2614.683653,4.6168,75.2809,71.4286,3.3246,73.6842,76.3636,2.3622,91.1765,1.6767,0.7874,0.4958,0.3992,7.2495,6.4415,10.7028,76.7123,76,0.5833,0.4083,11.7365,1.801,82.3529,81.8182,100,100,8.5793,0.9915 North West London ICB,E86620,West London Medical Centre,4882.441948,4.5303,58,58.9744,1.6188,52.0362,63.6364,1.6733,67.6923,1.6626,0.8003,0.291,0.1467,21.9948,9.5181,10.2219,57.8159,69.4737,0.3456,0.9458,11.1247,0.1426,82.5264,88,67.5325,81.8182,12.9955,0.873 North West London ICB,E86625,Kincora Doctors Surgery,2937.082067,5.3454,61.8421,54.5455,2.4207,56.0748,70.8333,2.5842,87.0968,3.785,1.0795,0.3598,1.5914,26.7271,13.1335,14.5568,62.4,77.1429,0.5234,0.8505,21.0323,1.1957,90.1739,91.5663,90,96.6667,13.8812,1.1122 North West London ICB,E86626,Queens Walk Medical Centre,4941.243874,5.733,71.4286,74.1007,3.2263,72.3005,80.8333,2.2536,98.0769,2.2199,1.6699,0.5674,1.2744,9.7482,5.9683,13.9754,74.6575,84.8485,0.5188,0.535,8.1192,0.6794,83.6882,91.0112,88.8889,94.4444,10.7746,1.4591 North West London ICB,E86629,Dr Mlr Siddiqui's Practice,3193.501029,3.3089,64.1975,60,2.4132,58.9041,69.3878,1.7082,94.1177,2.208,0.7321,0.5152,0.5698,12.6729,7.7571,10.0597,64.527,70.6667,0.7863,0.5965,13.4259,0.565,78.3621,92.3077,84.4444,95.5556,13.9463,0.705 North West London ICB,E86632,Acorn Medical Centre,5181.617816,5.4792,66.2162,73.1092,2.0702,68.5841,75,1.9543,83.9286,1.2346,0.8612,0.3147,1.2984,16.2207,9.2442,11.9245,68.0124,82.8947,0.4637,1.0931,15.794,0.0546,90.2259,93.1507,89.2857,95.2381,13.1584,1.1593 North West London ICB,E86637,Heathrow Medical Centre,5642.358211,7.2957,59.0909,63.964,2.5675,62.6667,76.2376,2.9816,77.9661,3.2662,1.408,0.5301,3.3689,23.3687,12.0973,17.4093,78.7097,86.7769,0.2816,0.8614,20.8299,0.7217,88.4113,95.2381,92.9204,96.4602,14.8411,1.5902 North West London ICB,E86640,Southcote Clinic,4903.930892,5.2407,72.2628,68.3673,4.1134,75.9091,76.7442,2.3161,91.25,3.471,0.9079,0.6115,1.32,9.4144,6.7036,12.5625,71.673,88.1579,0.6115,0.5929,7.7732,0.8513,89.289,78.6517,89.1304,91.3043,9.6725,1.4823 North West London ICB,E87002,Victoria Medical Centre,19482.44742,3.4497,55.4084,46.0606,3.1509,45.3682,55.4054,2.2644,95.4546,1.2999,0.847,0.48,0.498,18.8864,4.833,8.6961,75.5719,81.0127,0.4179,2.1458,5.1025,0.1557,90.2005,86.6071,88.0597,91.0448,14.9936,1.3722 North West London ICB,E87003,North Kensington Medical Centre,6178.15871,5.8847,62.069,65.4545,3.4302,58.1731,72.449,1.531,81.0811,2.169,1.6473,0.7558,0.3841,32.4704,6.5222,13.2752,72.8571,89.6,0.6202,2.2093,9.4216,0.0562,85.0816,83.2618,92.7273,96.3636,16.5822,1.2209 North West London ICB,E87004,Violet Melchett Health Centre,11054.10231,3.7155,55.6923,53.2751,3.3498,52.8967,62.6168,2.5,95.8333,3.1055,1.1364,0.4348,0.5346,19.5603,4.6289,11.3044,67.3404,81.3726,0.2075,2.0455,7.1892,1.3722,71.0927,82.0313,85.9155,92.9577,14.0228,1.5415 North West London ICB,E87005,Belgravia Surgery,8733.988378,2.8121,55.1095,52.4038,3.4972,45.961,56.4103,2.1122,61.9048,2.2951,0.9465,0.4963,0.3242,15.5611,3.61,9.6145,77.9904,83.9806,0.1962,0.8772,5.5368,0.1952,70.7409,83.9081,85.7143,93.8776,10.257,1.3273 North West London ICB,E87006,Little Venice Medical Centre,4580.085429,3.4349,53.913,46.8354,3.0891,40.6863,60.8108,1.9859,65.2174,1.2529,1.2577,0.4634,1.2017,24.3895,5.6231,10.9665,67.8481,81.3726,0.2427,1.5225,8.1309,0.5495,67.2887,90.1639,,,13.9985,1.1474 North West London ICB,E87008,Paddington Green Health Centre,11812.6937,5.395,51.1013,46.988,1.9874,40.7484,59.3548,1.932,75,1.8664,1.3126,0.6009,0.8955,32.8309,7.4039,9.7523,75.8898,82.6087,0.3882,1.6177,10.0658,0.0683,76.5821,87.4372,91.4729,96.124,17.1542,1.2387 North West London ICB,E87009,The Garway Medical Practice,4256.701171,3.3738,50.8475,64.2857,2.4676,38.8535,61.0169,1.679,80.9524,2.8321,1.0176,0.6614,1.0219,20.1577,5.7548,12.2869,77.3224,85.4701,0.3307,1.3991,6.7737,0.1384,73.7598,86.9565,92.1053,97.3684,14.9578,1.5009 North West London ICB,E87010,Maida Vale Medical Centre,5463.705606,3.4395,55.5556,63,2.2809,44.7183,60.6061,2.1661,94.1177,1.2968,0.9354,0.4923,1.2968,17.4765,3.4464,9.5996,60,79.0909,0.361,1.0502,5.5576,0.2406,64.0119,91.9355,78.125,90.625,14.5215,1.2143 North West London ICB,E87011,Lisson Grove Health Centre,8965.176673,5.9937,55,51.9685,2.4603,44.2244,66.3793,2.6816,67.9245,2.7367,1.484,0.742,0.482,34.1308,9.042,11.3773,67.7054,79.7619,0.6509,2.2781,11.3668,0.5563,78.352,89.7727,90.991,95.4955,18.007,1.8224 North West London ICB,E87013,Stanhope Mews Surgery,13547.23776,2.5832,55.774,41.411,3.1943,48.4973,47.7848,1.7862,86.4407,1.8027,0.7132,0.4206,0.4271,14.0971,2.7271,8.1261,62.8131,73.2203,0.0671,0.8474,4.0397,1.572,67.9629,79.5082,79.1667,88.8889,8.3003,1.207 North West London ICB,E87016,Holland Park Surgery,11070.56758,3.3716,59.5308,46.7925,3.525,52.9637,59.4595,2.0636,90.9091,0.7076,0.6183,0.6745,0.475,16.0398,3.0236,9.5311,72.8929,85.1133,0.1927,1.0278,4.1974,0.0668,76.097,87.3684,83.9286,91.0714,11.862,1.3731 North West London ICB,E87021,Queens Park Health Centre_E87021,6416.361792,6.3083,58.8957,59.1304,3.8009,73.8916,78.125,2.0657,73.1707,5.6492,2.4582,2.0657,2.7771,29.001,9.2087,17.8682,75.4464,89.1192,0.5577,1.8798,16.8051,1.3082,82.8011,86.8966,94.5946,97.2973,19.8734,2.107 North West London ICB,E87024,The Golborne Medical Centre_E87024,7002.066255,6.114,48.4076,50,2.6259,64.8936,78.4946,1.6661,65.1163,4.5647,1.7928,0.9055,1.0688,39.6857,10.8434,15.6465,80,91.8239,0.4708,2.5896,20.1737,0.3553,84.2294,90,93.6842,98.9474,22.041,1.0684 North West London ICB,E87026,Meanwhile Garden Medical Centre,3294.307812,6.7933,54.9451,49.0909,3.4384,54.1176,74.4681,2.2923,71.4286,1.4953,3.3565,0.3684,1.9626,34.9133,11.7729,17.9288,80.5774,89.4737,0.5731,2.0876,12.0561,0.5045,85.2734,96.5517,84.3137,88.2353,19.8946,1.5964 North West London ICB,E87029,Portland Road Practice,9131.828489,3.9334,62.9482,50.6912,3.2613,58.8235,65.4028,1.7171,75,2.6597,1.1663,0.5076,0.3876,23.5546,4.3897,10.3888,68.6567,84,0.3348,1.1015,6.2817,0,79.3521,82.1782,85,95,14.2278,1.3931 North West London ICB,E87034,Pimlico Health At The Marven Surgery,15131.30036,4.8451,59.7796,61.4232,2.7999,56.9401,70.2929,1.9557,75,1.9057,1.203,0.4854,0.5782,21.2861,5.6316,10.8407,66.825,76.9784,0.4924,2.0049,7.0201,0.2903,81.378,90.1163,83.3333,89.6825,15.4927,1.1185 North West London ICB,E87037,Connaught Square Practice,9309.782828,3.2193,50.6173,45.5056,2.0297,50.8911,58.3333,1.731,77.5,1.6949,0.5184,0.2548,0.8576,18.1196,3.9784,8.4439,71.7884,83.2335,0.2812,1.274,6.588,0.1237,70.7552,86.8421,85.9155,91.5493,14.889,0.949 North West London ICB,E87038,Elgin Clinic,5851.568865,6.3084,56.0606,66.3366,2.9052,56.1798,72.5275,2.9489,72,3.8422,1.7475,0.7427,1.1163,29.366,9.0631,11.8174,64.877,77.6596,0.6116,2.1407,12.0717,0.185,91.7327,75,86.3636,92.4242,16.8247,1.9441 North West London ICB,E87043,Emperor's Gate Centre For Health,5154.81232,2.89,66.129,56.4516,2.7003,40.8027,61.0294,1.6841,97.4359,2.284,0.7114,0.5952,0.8676,13.5533,3.0065,8.7689,75,89,0.1307,0.9437,5.4001,1.5452,71.3704,86.7925,93.75,96.875,10.5937,0.7404 North West London ICB,E87045,Covent Garden Medical Centre,5524.850749,4.3298,56.8182,48.2759,2.2424,48.2587,63.75,1.8788,58.8235,2.7039,1.6162,0.5051,1.0112,25.9622,6.498,12.0404,62.3188,76.9912,0.2828,1.5556,5.3199,0.0633,82.8616,77.2727,78.1818,94.5455,16.6238,1.3131 North West London ICB,E87046,The Randolph Surgery,10687.50105,3.1442,54.5852,55.5556,1.6449,52.7778,61.828,1.1738,73.8255,1.2473,0.5159,0.1421,0.7128,17.3778,2.844,5.8766,68.8693,79.0476,0.3065,0.9794,4.0895,0.0672,77.0851,85.1485,79.6296,88.8889,10.7028,0.8 North West London ICB,E87047,Earls Court Medical Centre,7538.271287,3.0734,37.5661,46.8468,1.5567,38.8889,54.902,1.364,90,1.0276,0.6672,0.2076,0.2087,24.6434,6.7432,9.9036,72.8242,66.6667,0.2076,2.209,7.4984,0.4032,61.9672,89.1304,83.9506,86.4198,20.3493,0.9489 North West London ICB,E87048,Rosary Garden Surgery,3053.607139,2.5993,42.5532,51.6667,3.415,42.9448,56.6667,1.9003,50,2.1357,0.7987,0.2203,0.5967,14.398,2.77,7.6012,68.2465,73.8462,0.1102,1.019,3.549,0.3051,58.5013,80.6452,87.5,93.75,10.5597,1.0465 North West London ICB,E87052,Crompton Medical Centre,3984.062368,4.0581,40.404,36.3636,2.2896,45.7364,68,3.2627,100,3.0935,1.1162,0.229,1.2105,29.3506,10.2853,12.4499,63.4667,83.3333,0.3435,2.6617,16.0726,0.1686,91.1504,94.1177,84.7458,93.2203,20.905,1.4883 North West London ICB,E87061,The Pembridge Villas Surgery,11479.02587,3.096,59.9303,49.3724,2.3811,54.4928,57.438,1.0645,80.4878,0.6557,0.7143,0.4202,0.538,17.4046,2.5127,8.0958,63.7168,76.9841,0.063,1.2326,4.6406,0.2251,72.8107,90.2439,86.5385,92.3077,11.6399,0.7564 North West London ICB,E87063,Kings Road Medical Centre,13619.38543,3.1697,50.4348,37.8109,1.2828,54.565,59.799,0.9539,77.193,1.0804,0.6184,0.1053,1.1185,22.7308,3.1226,5.5917,73.6842,83.3333,0.1842,0.9802,5.0141,0.0983,75.3552,82.1138,84,90.6667,13.3378,0.5329 North West London ICB,E87065,The Notting Hill Medical Centre,4753.478956,6.1786,62.3762,64.557,3.3661,63.6905,75,1.7111,84,2.5121,1.9074,1.4025,1.3527,32.2209,5.6194,11.8654,81.6861,89.8734,0.3086,2.4684,10.7246,0.3322,88.0544,87.3239,93.5484,100,17.637,2.244 North West London ICB,E87066,Fitzrovia Medical Centre,7174.731174,3.3935,50.6098,41.4414,2.0883,35.1585,52.8302,1.3481,66.6667,1.9685,0.9648,0.2247,0.3937,18.2907,4.4203,8.2474,65.6311,79.8165,0.2247,1.4803,4.4911,0.045,59.9032,87.0968,92.3077,92.3077,15.0927,0.9252 North West London ICB,E87067,Colville Health Centre,13221.91588,3.9914,48.1375,56.5737,2.7072,48.5577,57.2072,1.8979,67.6056,1.2889,2.1025,0.521,0.2512,32.4316,6.4997,11.6569,63.6098,59.2105,0.5861,2.4281,6.3135,0.0485,59.4921,86.8613,76.9912,84.9558,19.0253,1.4141 North West London ICB,E87069,Soho Centre For Health and Care,2783.692121,2.9263,55.5556,47.7273,1.7869,45.8015,57.7778,0.9265,62.5,1.0215,0.5295,0.1655,0.3875,22.3004,3.0866,5.5592,57.4468,70.3704,0.1324,0.5956,2.8531,0.0993,61.1285,87.5,57.1429,71.4286,16.2307,0.4964 North West London ICB,E87070,Crawford Street Surgery,5630.12766,2.2556,45.7516,38.7755,1.8224,36.2667,49.4845,1.0825,89.6552,1.3801,0.5344,0.2329,0.4187,16.0524,3.0821,6.1113,67.8771,79.5455,0.0548,0.7673,4.4038,0.2462,62.1528,76,69.4444,80.5556,10.0392,0.5207 North West London ICB,E87609,St Johns Wood Medical Practice,15529.61228,2.4817,53.2751,40.9091,2.8406,43.662,48.4932,1.8581,87.5817,2.3546,0.4767,0.4329,0.2883,11.6639,3.5058,7.9235,68.156,80.9045,0.1459,0.4378,4.463,0.1238,69.1,83.8542,89.1892,93.6937,7.676,1.075 North West London ICB,E87637,Grand Union Health Centre,21781.1841,5.5315,52.2277,51.1041,1.802,58.1028,71.2903,1.69,83.2117,1.5074,1.164,0.414,1.1146,26.5527,6.2504,11.7567,74.7207,78.5714,0.6234,2.1039,11.4294,0.0931,81.0827,90.1754,90.9091,94.9495,19.3657,1.1591 North West London ICB,E87648,Mayfair Medical Centre,3493.327783,3.1802,46.0177,38.806,3.1504,44.0678,49.1803,2.1003,77.7778,2.6012,0.4726,0.2625,1.3006,12.9409,4.9166,10.0551,67.4194,75.3425,0.2888,1.4177,6.0405,0.3001,75.3978,89.7959,83.871,93.5484,14.8363,0.9451 North West London ICB,E87663,Third Floor Lanark Road Medical Centre,2901.646576,5.2502,34.8837,51.0638,1.8128,40.1961,67.3913,3.6256,92.8571,1.6352,0.6538,0.2675,1.1265,22.5719,9.4319,9.3016,65.233,88.2353,0.3269,0.9213,11.7369,0.0887,64.9899,89.8734,83.3333,87.5,12.6746,1.1293 North West London ICB,E87665,The Chelsea Practice,6292.314216,3.0116,57.6744,38.7097,3.5387,47.7352,52.7397,1.6474,86.0465,2.4347,0.7169,0.4118,0.4621,15.8641,3.8286,9.0757,77.7273,89.0323,0.0915,0.7017,5.1182,0.753,68.4177,83.7838,85.3659,95.122,10.7345,1.2203 North West London ICB,E87677,Imperial College Health Centre,9528.763235,1.3157,64.7059,45,0.3647,42.5595,64.8649,0.276,90.9091,0.1495,0.0296,0.069,1.5004,15.9542,0.4481,1.1285,69.7674,87.7193,0.0049,0.271,2.0089,0.2789,93.1235,83.3333,80,93.3333,5.0454,0.1478 North West London ICB,E87681,Newton Medical Centre,13763.83825,3.1011,49.635,51.7766,2.1226,45.3883,62.5,1.364,87.3786,1.5492,0.6787,0.6787,0.3873,20.599,3.7965,6.4808,59.2593,83.0275,0.3061,0.865,4.6173,0.4674,69.656,78.0645,77.7778,88.8889,14.6712,1.018 North West London ICB,E87701,The Abingdon Health Centre,7756.834829,2.713,56.0886,52.5773,3.4201,42.7273,52.907,2.4067,94.1177,2.2466,0.737,0.6218,0.3878,14.8017,3.955,11.1009,67.7871,82.4,0.2418,0.9212,11.0725,2.6175,73.1436,82.7273,31.4685,50.3497,12.1109,1.2206 North West London ICB,E87702,The Surgery_E87702,2698.919924,1.6821,46.3918,40.625,2.2908,39.726,46.6667,1.5908,90,0.7153,0.3818,0.1591,0.465,12.8,2.6586,6.5224,57.8616,82.6087,0.0318,0.7318,3.0758,0.0838,63.881,87.5,76.9231,92.3077,9.0228,0.8591 North West London ICB,E87706,The Foreland Medical Centre,5561.862689,5.6372,45.9259,46.9136,2.1125,54.8387,65.3333,1.7681,56.25,1.1025,2.1584,0.3444,3.0871,36.4402,7.9924,13.0884,71.4876,79.0698,0.9644,2.9162,14.0022,0.1244,89.8134,91.1765,92.4528,96.2264,23.0727,1.5614 North West London ICB,E87714,Soho Square General Practice,5700.741301,2.6275,46.9231,41.9355,1.2867,40.5573,60,0.7872,100,0.5786,0.7418,0.1211,0.7393,23.7106,3.5869,6.6152,62.5,89.6552,0.1817,0.9991,3.4716,0.1111,63.16,87.5,81.5789,97.3684,16.716,0.5298 North West London ICB,E87715,Scarsdale Medical Centre,6396.182119,2.3928,55.0265,40.5405,2.592,36.1878,55.6291,1.7449,93.3333,1.5046,0.6828,0.354,0.4103,13.2174,2.9817,7.6748,61.5071,81.0345,0.1138,0.8092,3.9362,1.9324,67.027,86,73.6842,89.4737,11.7287,1.0368 North West London ICB,E87720,Kensington Park Medical Centre,7372.482758,3.2189,52.514,48.9933,2.0962,41.875,54.6667,1.4554,90.9091,1.3675,0.6843,0.315,0.6837,19.7859,3.9148,8.1351,74.5399,77.3196,0.2824,0.9992,7.086,1.3699,67.1102,85.1064,86.8852,91.8033,19.8612,0.9124 North West London ICB,E87722,Lancaster Gate Medical Centre,4980.435079,2.3791,59.4059,50,1.705,46.114,70.2381,1.1416,81.0811,0.6938,0.4744,0.1483,0.7598,14.9111,3.0189,7.1312,66.9014,90.9091,0.0741,0.8302,3.8817,0.1386,67.186,78.9474,82.8571,91.4286,16.892,0.6079 North West London ICB,E87733,The Exmoor Surgery,6716.936065,7.1061,55.4795,54.8673,2.8911,59,72.8155,2.4158,41.9355,2.5587,1.9208,0.5545,1.2676,36.8579,10.6595,15.4852,71.4286,85.4369,0.5545,3.0693,14.3897,0.2332,89.3525,94.0678,90,96.6667,20.7373,1.604 North West London ICB,E87737,Marylebone Health Centre,7519.791914,2.1673,59.5122,45.9119,2.3041,35.5422,58.2781,1.4103,86.6667,1.381,0.5065,0.3476,0.6905,12.9172,2.7068,7.9055,57.1656,82.1429,0.0993,0.6158,2.5099,0.0705,58.594,87.3016,88.0952,92.8571,11.9854,0.9534 North West London ICB,E87738,Knightsbridge Medical Centre,12827.61324,2.4243,48.7903,41.1765,3.214,42.7663,48.2955,1.7,90.2174,1.7806,0.6928,0.3015,0.6475,13.7903,3.0535,8.622,69.8488,81.8182,0.0706,0.5902,3.9144,1.326,66.8501,83.7398,77.5,90,9.6138,1.174 North West London ICB,E87739,Millbank Medical Centre,10073.02673,3.7104,58.7629,59.2105,2.6128,50.8696,63.7584,1.7346,82.6923,1.2669,0.9757,0.477,0.6583,21.3415,5.1257,7.8816,70.1149,83.0509,0.271,1.9514,8.856,0.5291,81.4124,81.7308,91.7808,95.8904,14.2147,0.9107 North West London ICB,E87740,The Doctor Hickey Surgery,5984.393875,4.8469,14.7541,15.7895,0.8929,20,35,1.8708,,0.7231,5.1446,0.2551,3.573,21.1276,3.4879,7.6531,41.573,100,1.1054,27.2534,6.7631,0.1161,63.644,88.8889,41.1765,58.8235,74.0397,1.1905 North West London ICB,E87741,Woodfield Road Medical Centre,4020.378921,5.2125,62.5,61.1111,2.2156,45.614,60.4651,1.405,66.6667,1.0842,0.9727,0.5944,0.7334,29.4383,6.5465,10.4566,61.8182,78.9474,0.7295,1.8914,9.6939,0.0807,74.3078,89.5833,91.4286,97.1429,17.3388,1.6482 North West London ICB,E87742,The Golborne Medical Centre_E87742,3399.545293,5.7083,53.75,53.7037,2.2787,64.3939,76.5957,1.7173,78.5714,2.9126,1.1559,0.5614,1.1262,38.0842,7.5,13.7054,79.8296,88.8889,0.2642,2.2127,15.1068,0,83.564,90,84.2105,94.7368,20.0298,1.387 North West London ICB,E87745,Cavendish Health Centre,7358.293768,2.6799,55.6098,40.1235,2.8414,48.2422,53.8462,1.5161,86.8853,1.4383,0.6891,0.3181,0.4636,12.5847,2.9554,7.3897,63.6525,79.6993,0.2014,0.6891,4.921,0.6939,71.3454,91.9355,83.7209,86.0465,11.4705,0.8376 North West London ICB,E87746,Brompton Medical Centre,4236.507532,3.027,42.5532,41.2698,1.5417,43.7751,53.2258,1.4995,83.3333,1.477,0.4435,0.1901,1.2349,21.5957,4.1427,6.8638,61.7747,68.75,0.1267,1.246,6.707,0.6623,62.6545,93.75,87.5,93.75,15.2509,0.5702 North West London ICB,E87750,Earls Court Surgery,4141.864471,3.1994,53.8462,49.4118,2.7583,46.5517,60,1.9168,71.4286,1.7341,1.0986,0.2104,0.2627,22.9693,5.5657,10.4021,75.1899,92,0.2338,0.9116,8.4603,0.7488,70.2439,92.3077,72.5,92.5,16.3117,0.9818 North West London ICB,E87751,Srikrishnamurthy Harrow Road Surgery,2479.735924,7.9389,64.5161,66.6667,4.3647,58.5714,84.0909,2.9098,100,2.7107,1.3579,0.776,1.0607,30.3706,19.2729,16.4404,75.2542,84.0909,0.679,1.0184,19.2104,0.1377,95.1389,95.122,90.4762,96.8254,13.1445,1.8429 North West London ICB,E87753,Belgrave Medical Centre,11075.57423,4.4188,55.0676,52.5424,3.2998,54.6552,64.3172,1.6241,91.2088,2.5657,1.1773,0.6445,0.4343,19.5619,4.016,9.7706,74.1936,81.8182,0.507,1.9507,5.8485,0.6078,75.8335,86.2069,91.6667,94.4444,11.8363,1.0484 North West London ICB,E87754,Wellington Health Centre,5036.459449,2.658,40.5797,40,2.0144,30.3514,52.381,1.4883,76.6667,0.7699,0.5863,0.4961,0.0525,14.3217,3.8682,7.5466,56.2814,68.2692,0.2405,0.7066,6.7192,0.8551,59.1527,86.9565,83.3333,100,11.9958,0.9621 North West London ICB,E87755,Queens Park Health Centre_E87755,3271.113542,5.4675,53.3333,44.2308,1.4879,58.7302,76.4706,1.7049,60,0.6391,0.651,0.589,0.9399,30.4747,9.0909,12.1513,60.423,77.0492,0.558,1.7359,14.6993,0.1049,85.3893,92.8571,83.3333,95.8333,14.2715,1.1159 North West London ICB,E87756,Ground Floor Lanark Medical Centre,3706.99387,4.7554,42.9907,47.2727,1.5973,49.5798,61.5385,3.5611,95.8333,2.3855,0.7332,0.288,2.3855,24.7835,9.5551,9.5837,65.2439,78.9474,0.3404,1.2045,12.9135,0.0768,87.8888,91.7526,,,18.8052,0.7594 North West London ICB,E87762,The Good Practice,9908.425498,3.9354,47.7477,44.2424,2.4013,48.3796,54.902,2.1085,82.9787,2.09,1.3002,0.9137,1.491,22.1322,4.0722,9.3944,71.2698,80.814,0.1289,1.8859,5.3514,2.452,66.4568,76.8519,85.7143,92.8571,13.4899,1.3705 North West London ICB,E87768,Kings College Health Centre,13141.10795,1.4905,62.5,63.6364,0.126,43.301,64.2857,0.0174,0,0.0479,0.0087,0,0.161,22.4692,0.3129,0.4995,69.0266,100,0.0217,0.3648,2.6017,0,86.3636,100,85.7143,100,7.5666,0.0304 North West London ICB,Y00200,Portobello Medical Centre,4253.394146,3.1944,59.0361,63.2353,1.9815,47.0175,67.6471,0.9027,65,1.3486,0.8807,0.2862,0.3817,29.4751,3.2886,6.7371,69.2015,90.6977,0.2202,1.0788,5.1145,0.2788,73.2802,83.7209,85.7143,85.7143,17.5845,1.0348 North West London ICB,Y00206,Burnley Practice,10463.84201,3.6444,56.6667,44.186,1.6185,53.6145,72.3881,1.1013,77.7778,2.3423,0.5363,0.182,1.2932,31.6406,6.1365,8.1115,66.5328,84,0.431,1.3695,11.004,0.2791,85.1798,78.169,89.6907,94.8454,16.6918,0.814 North West London ICB,Y00352,Hesa Medical Centre - Y00352,17751.5158,3.693,55.4422,47.5,0.8871,57.7088,69.1057,1.1857,78.7986,1.0477,0.5438,0.2452,1.6669,25.5458,8.471,8.4738,70.5245,85.034,0.7444,0.7667,13.4123,0.4786,89.8514,85.7692,83.0986,95.0704,11.5691,0.7979 North West London ICB,Y00507,St. Quintin Health Centre,3304.647784,5.654,62.5,64.5161,3.0194,59.322,71.6667,1.6894,85.7143,1.2127,1.5457,0.5392,0.3898,31.9195,5.3869,10.7117,79.5181,95.9184,0.7908,1.4019,8.272,0.3413,87.8876,96.2963,86.9565,91.3043,16.4613,0.8986 North West London ICB,Y00902,The Westbourne Green Surgery,3815.517481,5.504,54.0984,42.1053,1.5732,51.5385,72.1311,1.8106,62.5,2.4293,1.0389,0.2968,1.0877,34.1603,7.5009,12.1698,75.4144,89.5833,0.653,2.6417,15.736,0.1034,78.9727,93.0556,90,97.5,21.1427,1.306 North West London ICB,Y01011,Barlby Surgery,12872.14667,5.6464,55.8824,47.0238,1.5605,56.4626,70.9877,1.5692,69.4215,2.305,1.3425,0.5841,1.7665,33.9335,6.0999,10.0253,63.035,76.2295,0.3574,1.7261,8.1861,0.0749,86.1874,90.6593,78.1818,93.6364,16.5475,1.1159 North West London ICB,Y01090,Sms Medical Practice,6054.855458,1.3841,50.4202,36.7816,0.4541,52.9745,58.5366,1.0091,82.3009,1.1355,0.1388,0.164,0.3627,22.0222,7.6407,7.1266,48.9407,51.6129,0.1514,0.2397,9.1941,0,81.2883,81.7073,81.25,86.4583,7.6707,0.5676 North West London ICB,Y01221,Somerset Fhp O,3374.685489,7.3344,61.8557,58.3333,1.5593,53.3898,66.6667,3.3539,91.3044,3.3696,0.2059,0.3825,1.0881,22.4814,15.5394,17.005,73.6419,83.9506,0.4413,0.8532,17.1288,0.291,88.3648,87.6923,94.3182,94.3182,9.7182,1.0591 North West London ICB,Y02342,Featherstone Road Health Centre,8140.848774,4.1128,56.8,62.5,0.888,71.0306,78.125,1.6933,86.1111,1.4472,0.3304,0.0929,0.6373,29.4575,12.5867,10.5111,79.3933,88.7097,0.4337,0.6402,15.9055,0.2159,92.2438,97.546,92.6316,98.4211,7.1706,0.6402 North West London ICB,Y02589,Hammersmith & Fulham Centres For Health,9167.674687,3.639,60,49.5146,1.5003,47.4048,66.9725,1.0802,76.4706,0.5376,0.6701,0.19,0.5843,25.2784,3.7939,6.4513,70.9402,81.6667,0.2701,0.9702,6.2873,0.19,76.5499,85.0746,80.6452,88.7097,14.3196,0.6601 North West London ICB,Y02671,The Practice Heart Of Hounslow,13946.89001,2.7214,49.0119,55.2885,0.7798,53.7084,64.6789,1.6089,81.3472,0.6731,0.2855,0.1867,0.3658,22.247,10.8104,11.3777,59.0081,76.0417,0.4448,0.7633,12.0199,0.0556,81.939,82.5893,86.0068,92.8328,13.0542,0.604 North West London ICB,Y02672,The Practice Feltham,9341.31961,2.5897,57.3099,51.8248,0.6378,54.1667,70,0.6456,80.6667,1.2652,0.3543,0.0866,0.1914,22.9928,7.3651,7.6529,62.5135,71.4286,0.252,0.6063,9.3664,0.0444,76.6355,91.1504,78.1022,89.781,16.7174,0.3937 North West London ICB,Y02692,The Wembley Practice,11774.93983,2.1316,49.0909,42.8571,0.5831,50.4202,60,0.6802,84.8624,0.7063,0.0743,0.0972,1.007,22.881,6.0289,4.8531,66.5848,80,0.1315,0.3773,7.6084,0.1219,76.3099,84.4037,89.1566,93.9759,3.8708,0.3144 North West London ICB,Y02842,Half Penny Steps Health Centre,7819.875717,4.9877,44.9612,38.6792,1.2536,51.5075,61.165,1.4733,88.3333,0.9912,1.1114,0.168,2.6638,32.0249,5.7787,8.2579,69.9664,81.3953,0.4782,1.5766,9.1838,0.4237,84.8527,88.172,80.5556,91.6667,21.9609,0.7496 North West London ICB,Y02906,Canberra Old Oak Surgery,9550.76338,3.6441,47.5,43,0.9129,51.8053,65.7143,0.7608,81.1594,1.0881,0.5325,0.1522,1.0654,30.7019,3.6011,5.1731,66.3918,83.0509,0.2092,0.7512,6.6077,0.1787,80.7594,86.747,83.0508,93.2203,13.9735,0.6657 North West London ICB,Y03441,"Health and Wellbeing Centre, Earls Court",8196.562368,2.536,46.8468,41.0526,1.0619,52.8014,63.8298,0.6372,75.6757,0.6538,0.4672,0.1487,1.0818,22.5762,2.3297,4.1733,61.1732,82.8571,0.1487,1.6035,4.1726,0.2039,81.5651,78.0488,77.1429,88.5714,12.9198,0.4672 North West London ICB,Y04225,Nursing Home Services,6184.080474,8.726,32.6087,23.5294,10.2094,50,33.3333,18.1501,,21.2042,8.1152,47.3822,1.5707,25.3327,27.7487,62.2164,75.5459,86.5703,5.1483,16.9285,14.8342,3.3484,99.7319,55.914,85.9375,57.8125,8.7069,22.3386 North West London ICB,Y05080,First Choice Medical Care,2721.910829,5.6993,57.5758,65.9091,1.563,52.7559,71.0526,2.9632,88.3721,2.4478,0.3256,0.2279,1.3242,14.796,13.0693,12.211,64.5455,68.8889,0.4559,0.8141,13.9647,0.6649,88.7383,92.5532,88.8889,93.6508,11.301,0.7164 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence Somerset ICB,L85001,French Weir Health Centre,17145.21182,7.0681,74.7764,83.1099,4.2245,72.3164,77.6271,3.3537,91.1111,4.6122,1.9652,0.6943,1.653,17.7469,7.2093,16.3627,70.1231,79.9701,0.759,0.7061,7.3205,2.915,88.986,83.8527,87.0787,89.8876,13.3762,2.2182 Somerset ICB,L85002,Wells Health Centre,13623.77598,7.7151,76.2781,84.4444,6.5303,73.2203,76.9547,4.5929,94.6237,7.0508,2.0376,1.3695,2.4476,14.7573,6.5834,21.2443,63.9594,76.6537,0.6681,0.9854,11.9158,3.6789,89.2979,84.5588,83.8983,88.9831,10.9318,2.9311 Somerset ICB,L85003,Exmoor Medical Centre,4774.954458,7.6269,73.6607,75.7143,7.1685,71.9512,75,5.3763,96,6.5982,2.5346,0.4352,1.3783,26.2896,7.3859,20.7629,76.6831,89.1089,0.2048,0.7937,14.2522,3.0846,87.319,75.7282,79.5455,95.4545,11.6425,3.2258 Somerset ICB,L85004,"Crewkerne Health Centre, Crewkerne",14252.27585,8.3582,76.8116,67.8063,6.1565,71.987,73.6842,4.9714,97.4684,5.7705,2.2749,1.1375,1.5703,17.0142,8.9406,23.0353,59.5104,73.5751,0.4454,0.8113,13.4614,2.2859,85.5366,83.1858,80.3468,92.4855,13.0788,2.8158 Somerset ICB,L85006,Crown Medical Centre,10277.34536,7.5677,77.7457,71.8876,4.5043,76.1194,76.1194,3.2732,89.3204,4.9267,2.0422,0.8016,2.235,19.1864,7.1293,16.7764,60.7622,73.0205,0.6012,0.7921,13.242,4.219,83.3471,84.8781,80.5825,87.3786,13.9804,1.9372 Somerset ICB,L85007,"Church Street Surgery, Martock",12034.51854,7.1295,76.5182,71.0963,6.4273,70.8171,76.0369,4.6556,90.625,7.1924,2.045,1.6492,1.4877,14.9082,8.5553,21.6474,51.7099,68.7188,0.4147,0.9518,11.1857,3.5491,82.6722,81.1258,70,89.2857,12.5584,3.3362 Somerset ICB,L85008,Frome Medical Centre,28328.49058,7.3731,73.4916,76.259,4.6487,76.8973,78.7826,3.4017,87.6923,6.4796,1.8465,0.9558,2.0989,18.1025,7.0519,18.1049,60.9364,72.2128,1.0174,0.8222,12.8358,2.1377,86.1456,79.5217,80.4054,87.1622,16.8508,2.1239 Somerset ICB,L85009,West Somerset Healthcare,13244.39099,6.9534,75.4128,69.8113,5.874,75.6198,74.8879,5.1091,88.5714,10.3552,2.7859,1.0577,1.5589,27.0152,10.5785,24.2799,68.9601,86.3568,0.51,0.7461,23.1266,1.4574,89.5628,86.4608,82.7778,89.4444,15.0141,3.4848 Somerset ICB,L85010,Highbridge Medical Centre,15822.83349,8.1637,72.5564,78.2477,5.4316,70.8223,75.4032,5.003,88.8889,6.171,3.1555,1.1159,2.0181,25.2319,10.0806,20.0488,64.1647,80.2469,0.8055,1.042,17.3827,3.5447,83.457,81.1628,77.8846,94.2308,18.9267,3.0077 Somerset ICB,L85011,Cheddar Medical Centre,8548.151955,7.6608,78.3951,82.0276,5.8766,80.5825,82.967,4.3526,90.3226,6.3106,1.7313,0.951,1.7753,10.9452,7.5088,16.6179,65.7203,79.8544,0.6706,0.7437,11.6963,0.9104,90.5263,76.2162,86.9565,93.4783,10.232,3.0846 Somerset ICB,L85012,Wellington Medical Centre,16925.3494,7.545,76.771,73.8806,5.6299,74.4726,77.5316,3.8462,97.1223,5.7277,2.2359,1.4431,3.1298,17.8209,8.6017,17.5833,72.0425,83.1111,0.5388,0.7432,13.8864,3.0413,89.9484,77.3494,81.3397,90.9091,12.8279,2.4588 Somerset ICB,L85013,Quantock Medical Centre,4390.466861,7.4873,78.392,75.8333,5.375,77.3196,79.5181,4.0801,91.6667,4.9014,3.1273,0.6841,2.1172,18.0082,8.9733,21.5979,68.278,82.4324,0.2688,0.6597,13.9501,1.5295,89.8849,82.6087,93.617,97.8723,13.1472,3.0296 Somerset ICB,L85014,Taunton Vale Healthcare,13760.13151,6.4708,70.4261,63.9405,3.641,67.666,73.8318,2.8576,91.2698,4.4649,2.5218,0.664,3.3205,25.4349,8.0829,14.0864,62.1887,76.2431,1.6862,1.3281,12.541,2.5887,86.45,84.7095,88.125,93.75,19.8462,2.1338 Somerset ICB,L85015,"Preston Grove Medical Centre, Yeovil",15029.32214,7.0224,76.3747,72.8916,4.5853,67.3866,74.1573,3.4476,94.1177,4.3,1.8369,0.939,2.1073,18.3594,7.6062,15.5723,58.4785,78.5455,0.7471,0.7539,11.1851,1.6024,81.7849,80.8307,80.4878,89.6341,13.9233,2.0973 Somerset ICB,L85016,Burnham Medical Centre,18867.89838,7.9921,75.4584,82.4885,6.2709,69.279,75,5.3546,91.8605,5.693,3.6928,1.2173,1.3852,21.0348,11.2643,23.593,70.6917,77.89,0.7249,0.8343,16.4785,0.7177,90.3709,81.6981,82.7068,92.1053,14.854,3.2962 Somerset ICB,L85017,"Penn Hill Surgery, Yeovil",11372.38961,7.592,74.269,70.9821,4.1934,62.0061,78.7356,3.8237,90.1235,4.0324,2.2475,1.0605,2.7001,20.5187,8.8667,17.9315,63.8298,81.6667,1.2843,0.8854,12.2874,1.8248,87.6642,83.9695,86.5248,96.4539,15.467,2.3545 Somerset ICB,L85018,Cannington Health Centre,5498.287375,8.2362,75.8621,74.4828,5.3541,76.8595,77.7778,4.4521,89.1892,5.0489,2.725,0.7676,2.5128,17.4932,8.0238,19.6124,58.0559,73.8007,0.2879,0.4798,15.6352,0.8582,90.5087,82.8358,87.0968,91.9355,12.4749,2.725 Somerset ICB,L85019,Minehead Medical Centre,15685.66483,7.6007,71.0728,66.5574,6.3379,59,66.3636,5.0622,89.0244,6.4042,2.9277,1.5211,2.0114,20.9719,8.9309,22.6775,58.8727,75.4959,1.5211,1.1695,13.3776,2.9022,86.4974,75.9214,85.7143,90.8571,17.2935,3.2794 Somerset ICB,L85020,Beckington Family Practice,11399.66424,7.7439,79.0393,79.0698,6.1239,79.4304,82.9787,3.448,84.0708,6.0479,1.5529,0.7808,1.5175,14.0176,6.7317,17.6347,61.1554,82.7381,0.465,0.8335,13.0416,1.0079,83.2766,81.8966,89.7196,89.7196,9.7797,2.4127 Somerset ICB,L85021,College Way Surgery,14495.00927,7.45,79.1016,76.6467,5.8623,69.6517,79.2157,3.9224,91.9643,6.107,2.0394,1.0801,1.4956,9.7671,7.8505,18.1909,74.9026,79.5544,0.334,0.5472,8.3949,3.7851,87.0302,78.7611,84.7134,94.2675,8.2522,2.9063 Somerset ICB,L85022,Diamond Health Group,14953.15516,7.1632,72.1649,68.2848,4.2375,63.9269,68.4426,3.4722,81.579,4.4299,2.3172,1.0488,1.4208,18.3633,8.3609,18.4736,63.5729,80.4312,0.6023,0.9212,14.1723,1.4386,85.8518,87.3377,73.4104,93.0636,15.6289,2.2109 Somerset ICB,L85023,St James Medical Centre,17976.22202,6.0765,69.2632,66.4653,4.1128,62.0112,71.7557,2.8707,92.4686,4.0839,1.6838,0.5852,1.7902,18.6764,6.2206,12.2392,62.0198,77.6119,0.4969,0.8502,12.6713,4.2111,84.0258,78.1437,81.1321,89.9371,17.2301,1.866 Somerset ICB,L85024,Polden Medical Practice,11834.2392,7.7514,77.4257,74.5342,6.0861,77.9468,83.691,4.9813,91.0112,5.269,2.6966,0.7584,0.9914,18.1372,8.7791,18.1648,61.5793,80.1386,0.3464,0.6554,11.3401,2.8686,89.1409,81.8182,80.4196,92.3077,10.7363,2.6966 Somerset ICB,L85025,Cranleigh Gardens Medical Centre,13585.53189,6.6868,69.7802,67.0635,3.652,71.1864,73.8095,2.9392,93.5484,2.682,2.0575,0.4629,2.8431,26.807,7.7233,15.6588,65.5766,79.8969,0.3307,0.7936,11.7513,0.716,85.463,85.2174,81.5789,91.4474,22.8711,1.477 Somerset ICB,L85026,"Hamdon Medical Centre, Stoke-Sub-Hamdon",5903.587775,7.1207,78.8679,73.743,5.428,76.6871,77.1429,4.0177,87.7551,3.9794,2.5746,0.7871,1.3859,14.5385,7.5962,18.0551,55.7279,77.1863,0.41,0.5904,12.8885,2.6809,83.2901,86.1314,65.7143,87.1429,12.2142,2.3942 Somerset ICB,L85027,Wincanton Health Centre,8861.741941,7.7849,74.3516,83.1776,5.4839,78.5992,76.7442,3.6672,90.7895,5.6319,2.5569,0.7514,2.2056,15.9107,8.5949,20.3544,59.1519,78.75,0.3028,1.0205,16.8262,2.161,91.0002,83.8565,83.3333,92.1053,16.478,2.2205 Somerset ICB,L85029,Vine Surgery Partnership,13777.19822,7.0266,75.2016,83.4337,4.8773,67.7596,69.9248,3.94,95.2381,6.4284,2.271,0.8307,2.0526,15.5155,7.5496,17.726,58.6002,78.125,0.7545,0.663,10.9535,3.2531,84.4064,82.243,86.3014,89.726,14.6311,2.3853 Somerset ICB,L85030,Ariel Healthcare,22311.19012,7.8702,73.8761,71.7308,5.1921,68,73.2984,4.3366,92.2078,6.5591,2.7281,0.8898,2.1446,20.5371,9.4538,19.913,55.8757,74.3902,0.6845,0.9191,13.9068,4.2202,90.98,75.082,63.5417,90.9722,15.5444,2.5863 Somerset ICB,L85031,Milborne Port Surgery,7708.462158,8.1603,75.6024,72.5,6.531,72.8723,75.8621,4.3175,92.0635,7.0553,2.0768,0.9018,1.6893,14.3701,8.0426,21.0138,70.9866,85.0877,0.2459,0.8744,13.68,4.2276,91.1371,85.5556,84.8837,95.3488,12.2436,2.3227 Somerset ICB,L85032,Bruton Surgery,4578.401009,7.9512,73.0392,68.75,4.7177,73.4375,76.8595,3.2399,96.1539,3.5922,1.4968,0.5873,2.1117,14.8057,5.9126,15.2709,51.4658,71.875,0.2463,0.5495,9.5146,2.3859,80.9453,80.4878,82.2222,91.1111,10.6667,2.1031 Somerset ICB,L85033,Langport Surgery,15388.1088,7.1172,79.4521,71.7391,6.8508,75.7576,80.8725,4.6987,97.8723,6.4513,2.188,1.2123,1.5808,17.5998,8.479,20.9111,68.3173,82.4251,0.6385,0.7748,14.7484,4.9876,90.4677,78.5714,84.5304,93.3702,10.3245,3.1133 Somerset ICB,L85034,Wells City Practice,9060.05874,6.9969,76.257,80.5907,5.8339,70.7317,72.067,4.0325,90.1409,5.3337,1.4078,0.8351,1.456,14.955,7.1408,18.1818,52.92,70.8029,0.5846,1.4078,10.235,3.3149,84.3933,70.7602,70.4225,91.5493,11.7728,2.6724 Somerset ICB,L85035,East Quay Medical Centre,17798.50132,6.353,70.9497,69.6721,4.1323,70.3316,72.0848,3.5428,84.6939,3.9881,1.9059,0.7898,1.646,24.6811,8.1923,17.2161,55.339,75.5963,0.372,0.4751,11.4713,1.4356,86.5509,83.1135,81.1594,89.8551,19.6249,2.0948 Somerset ICB,L85036,Quantock Vale Surgery,5943.607179,6.1163,78.8462,75.1515,5.5219,73.7179,76.6129,3.7374,89.2857,4.0108,1.9024,1.0774,1.7986,13.656,7.5179,17.3569,59.6774,72.8889,0.4377,0.5724,10.7711,1.9467,85.0536,79.8387,68.1818,90.9091,10.2318,2.3569 Somerset ICB,L85037,North Curry,4113.934335,8.5765,80.1047,87.8049,6.7424,81.9149,85.4167,3.7941,87.8788,3.7015,2.1266,0.5558,1.1658,17.8281,6.636,18.0764,81.5972,88.9535,0.4833,0.6283,11.3961,2.2321,92.0336,88.3721,85.3659,97.561,8.8889,2.465 Somerset ICB,L85038,Lister House Partnership,7367.607915,6.5018,78.75,73.8095,6.294,78.7097,80.1242,4.24,91.6667,7.2746,2.186,0.8509,1.1246,16.6203,7.9612,21.3762,58.9474,73.301,0.4695,0.895,11.9487,3.7067,86.9512,80,87.3418,92.4051,10.4546,2.8756 Somerset ICB,L85039,Glastonbury Surgery,14351.93527,7.297,71.5888,69.0341,4.3969,67.4931,73.4082,3.4475,86.6667,4.4977,1.9415,0.8994,1.8249,18.7219,7.1492,16.6238,67.4944,80.79,0.4925,0.9351,13.0415,3.0188,85.3188,78.9116,80.4348,93.4783,13.9819,2.2127 Somerset ICB,L85040,"Millbrook Surgery, Castle Cary",6494.525549,8.3128,76.3251,71.3542,5.9628,75.5319,79.7297,3.2723,95.5224,2.7292,1.8034,1.3671,2.1049,13.4343,7.1504,17.2484,54.1136,73.3746,0.5236,0.7126,8.6336,1.4155,89.79,76.9231,54.2857,82.8571,12.8465,2.5015 Somerset ICB,L85042,Taunton Road Medical Centre,17547.7852,7.3386,68.5535,68.2099,4.1082,67.3428,75.2896,3.4986,83.9744,4.9654,2.4891,0.8763,2.725,27.9635,8.5683,15.4105,65.4488,72.0157,0.9334,0.8128,12.6241,1.0713,84.4875,80.6789,68.4211,83.7321,21.5174,1.9176 Somerset ICB,L85043,Park Medical Practice,10878.63263,6.3546,72.0403,69.2308,4.6644,69.0265,69.5853,3.1214,92.1569,5.2198,2.075,0.7005,2.1319,15.6984,7.4756,15.9972,59.9122,77.8032,0.2217,0.7892,16.3077,1.036,84.1164,82.8054,70.9677,91.129,17.3542,1.9243 Somerset ICB,L85044,Queen Camel Medical Centre,6342.400897,7.9213,80.3175,87.5622,6.9813,81.6,83.0065,4.4264,86.2069,7.1059,2.2457,1.4158,1.1492,14.7546,7.6821,20.716,78.1855,87.3288,0.2441,0.4882,11.99,2.3529,90.7097,82.5503,87.3239,92.9577,10.3765,3.1733 Somerset ICB,L85046,Mendip Country Practice,6200.02896,8.7761,77.7293,75.6579,5.1656,80.2469,81.1475,4.3247,88.8889,5.925,2.4713,0.6693,1.6624,17.4036,8.5044,18.1054,60.9547,79.8319,0.2746,0.7208,14.3436,0.9797,90.2431,83.2215,88.7324,92.9577,12.8746,2.2653 Somerset ICB,L85047,Glastonbury Health Centre,6627.661474,7.4241,63.5294,52.0833,3.6137,59.5506,64.1026,3.2306,74.359,3.7374,2.1316,0.6162,2.8673,22.6796,6.1499,14.005,52.5602,62.7119,0.433,2.1149,8.7404,2.8117,82.6993,68.3674,70.3704,87.037,18.9503,2.3147 Somerset ICB,L85048,"Ryalls Park Medical Centre, Yeovil",6120.23571,7.5452,72.3077,65.4412,4.56,67.3684,70.6422,3.3103,88.3721,4.7384,1.8916,0.7431,2.5086,20.7964,8.7987,15.673,62.7477,88.3041,0.5405,1.0133,14.301,2.7754,83.6452,83.3333,80.5195,90.9091,16.4999,1.8916 Somerset ICB,L85050,Luson,7489.131343,7.616,76.3158,75.5952,4.9468,73.7143,75.3968,3.2782,79.5918,3.4156,2.7171,0.8712,2.1905,17.9948,8.0978,17.4247,68.318,80.1282,0.7383,0.7088,11.1379,4.3007,89.1611,79.3651,82.9268,93.9024,13.3546,2.3922 Somerset ICB,L85051,Redgate Medical Centre,7498.441974,5.7559,68.2028,62.585,3.6183,62.8821,68.2171,3.4802,86.8421,2.7987,2.6654,0.8562,1.5917,28.4084,8.0392,13.8241,61.3636,82.2967,0.4696,0.5386,13.3287,0.8605,84.2778,83.8028,74.7253,84.6154,23.8728,1.7815 Somerset ICB,L85052,Warwick House Medical Practice,9022.938728,5.9456,78.2895,76.2136,5.6263,72.5118,78.882,4.0988,90.7692,5.2664,2.2785,1.2093,3.5058,18.9513,8.4891,19.4883,73.8011,80.2469,0.8019,1.2347,12.3552,2.8524,89.4425,83.1731,90.1961,96.0784,13.5187,2.8641 Somerset ICB,L85053,Grove House Surgery,6244.191799,7.4935,70.9163,74.3902,4.3768,69.5187,75.1938,3.8957,91.6667,3.7885,2.266,0.745,2.1943,16.3647,7.8377,17.7712,67.1756,84.2105,0.8847,0.6208,15.2288,1.9775,88.7752,84.6715,88,92,17.4054,2.0487 Somerset ICB,L85054,Summervale Surgery,9105.895601,7.3135,78.8462,78.97,6.5991,77.4359,82.4242,4.8638,88.3333,5.2248,2.3813,1.0386,1.5188,16.3989,8.5071,20.6207,68.0498,81.3239,0.4053,0.798,15.3098,2.8219,90.2465,76.5306,88.2353,94.1176,12.0969,2.7866 Somerset ICB,L85055,Axbridge Surgery,8259.018279,6.669,79.5,84.9817,6.2235,76.9231,82.5688,3.6313,90.625,3.2106,1.5978,0.5028,1.1871,11.5761,6.2866,16.7821,66.0262,79.8319,0.1341,0.5475,9.8745,0.3625,92.2467,76.0736,82.7586,91.954,9.8514, Somerset ICB,L85056,North Petherton Surgery,6830.012318,7.2119,78.4,74.7126,4.7612,70.5357,76.2238,4.1905,87.8049,4.1819,2.1996,0.543,1.0629,18.1555,7.3858,16.2606,46.3308,62.7451,0.6682,0.6822,9.3222,3.0588,83.0149,80.6061,74.026,88.3117,12.3399, Somerset ICB,L85061,The Meadows Surgery,4454.94666,7.3453,76.7045,74.1379,5.396,75.4098,76.7442,3.2191,91.1111,4.7673,2.4548,1.2043,2.6674,16.9717,7.7768,19.0829,67.2468,79.6875,0.3705,0.9727,12.1453,3.0452,87.0925,72.043,84,90,15.5756, Somerset ICB,L85062,Lyngford Park,6983.557633,7.7933,70.9677,65.3333,3.9139,68.7805,76.4706,3.5085,91.6667,4.4691,3.0251,0.8888,2.2741,25.6015,8.3203,15.4998,67.4362,77.193,0.9668,1.3098,15.7801,1.7444,89.9255,85.8025,81.4815,91.358,20.4736, Somerset ICB,L85064,Oaklands Surgery,9918.52704,5.727,64.0909,51.9337,2.2453,55.7173,59.3548,1.959,86.0465,3.0482,1.6012,0.4741,1.9494,24.5483,6.1669,10.4839,53.4816,70.2899,0.3847,1.0108,14.3431,2.0072,74.0203,84.0491,77.3196,86.5979,25.8682, Somerset ICB,L85065,Dunster & Porlock Surgeries,9618.063079,9.2575,76.1905,75.6654,7.9978,78.3217,78.6517,5.9443,90,4.5406,2.9316,1.0673,1.5546,24.2448,7.7708,24.6825,67.1653,83.4694,0.2972,0.6214,15.5918,3.1348,91.2114,80.829,81.3187,91.2088,9.3246, Somerset ICB,L85066,Buttercross Health Centre,8261.541388,7.6117,74.6795,68.932,5.5799,73.8532,72.956,3.9304,90.3615,5.1963,2.3454,0.9923,2.3649,14.0125,8.0648,19.433,56.3896,72.7506,0.4897,0.799,13.4009,2.5447,88.9105,88.7006,81.0526,91.5789,13.0034, Somerset ICB,L85601,Brent Area Medical Centre,3528.702944,8.3154,80.1205,86.8421,6.1037,80.5556,87.9518,4.0296,100,6.5271,1.8963,0.6815,1.7801,13.7529,9.7309,21.4815,63.1579,78.1609,0.3852,0.4444,13.5777,0.6722,89.9188,84.6154,86.5385,92.3077,8.0192, Somerset ICB,L85607,Somerset Bridge Medical Centre,4754.394178,6.6614,69.2913,63.3333,2.648,66.9903,73.4177,2.6296,79.3651,2.5106,1.5631,0.2942,1.4417,24.444,6.435,10.8864,60.4167,73.4375,0.2391,0.4965,15.2125,0.5086,85.2632,83.5443,78,92,19.719, Somerset ICB,L85609,Creech,4590.361709,5.5171,78.0899,74.7826,4.7077,77.2152,81.3187,3.4916,95.4546,4.9395,1.3535,0.6473,1.1845,12.9236,8.0198,14.8882,60.4452,72,0.3923,0.4315,14.7682,1.9608,97.6879,86.2903,81.0345,93.1034,11.6922, Somerset ICB,L85611,Oakhill Surgery,2604.44267,6.501,80.7018,81.4815,3.9652,82.5,90,2.7724,94.4444,4.9559,1.7408,0.8059,1.386,15.0201,5.5352,13.8943,74.7851,81.7073,0.4513,0.4836,9.2398,0.2999,90.239,85.4167,92,92,8.8167, Somerset ICB,L85624,Church View Medical Centre,4429.854607,7.8796,82.8125,78.4483,7.0739,81.5217,79.5181,4.1504,95,8.7698,1.3051,1.1746,2.4481,15.7663,8.617,24.4845,74.0426,83.2618,0.4438,0.4177,16.269,3.5088,89.7795,79.646,84.3137,94.1176,9.5798, Somerset ICB,Y01163,West Coker Surgery,4097.10231,8.6136,79.558,75.6303,6.1823,74.5098,79.5699,4.064,97.0588,3.1845,2.1429,0.7635,0.8036,16.2442,9.2784,21.5025,80.9454,89.2857,0.4187,0.6158,7.0536,1.5299,82.4517,87.0588,93.1034,98.2759,11.2118,2.1675 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence Nottingham and Nottinghamshire ICB,C84001,Larwood Surgery,32573.16695,7.1882,73.5678,71.2251,3.7832,73.6,75.6272,3.5325,93.5065,7.0917,3.0962,1.247,1.649,23.3184,9.2516,16.6173,60.0974,82.6827,0.6186,0.8107,14.8788,2.2297,88.748,83.9306,78.0193,89.8551,12.9757,2.3246 Nottingham and Nottinghamshire ICB,C84008,Tuxford Medical Centre,5649.896873,6.2767,77.5934,76.9231,5.2259,82.2086,88.4298,3.321,92.3077,7.4422,2.6804,0.9609,1.4384,18.2827,9.0499,16.5037,62.7968,86.4253,0.59,0.6575,14.3215,2.5641,89.8067,85.1852,90,91.25,11.8683,2.1578 Nottingham and Nottinghamshire ICB,C84013,Kingfisher Family Practice,16356.98949,8.3847,76.3934,75.1185,4.946,78.7037,79.8762,3.5357,88.3212,5.7961,2.7081,0.7548,1.2817,20.7356,8.9773,19.1551,69.1426,82.8678,0.682,0.7217,13.5026,1.6617,90.6448,83.7696,82.5243,89.3204,12.609,2.3307 Nottingham and Nottinghamshire ICB,C84024,Newgate Medical Group,33876.75796,6.3421,70.1721,66.3408,3.8634,66.9956,75.9582,3.2432,87.594,6.0095,3.3063,1.0313,0.8694,26.042,8.9689,15.8183,67.2995,81.068,0.6566,0.7694,16.032,0.842,89.2938,85.6218,82.0639,76.1671,17.7181,1.9665 Nottingham and Nottinghamshire ICB,C84035,Crown House Surgery,12211.03678,6.6273,80.8247,76.8489,4.5274,78.0952,79.5918,3.3805,95.5056,5.8626,2.9838,0.9486,1.0488,20.4024,8.5735,19.041,75.9953,88.9524,0.4226,0.6209,23.2197,2.0448,90.5082,83.5664,89.404,96.6887,11.1122,2.5871 Nottingham and Nottinghamshire ICB,C84094,Riverside Health Centre,23194.28878,7.0211,73.2304,68.1132,3.784,71.2871,73.1207,3.1884,89.916,5.2194,2.6103,1.2745,0.7818,20.1402,8.489,15.5959,60.594,76,0.6745,0.6701,13.5605,1.6089,88.3895,87.0406,86.9258,89.7527,18.4251,2.1066 Nottingham and Nottinghamshire ICB,C84101,Bawtry and Blyth Medical,3841.310446,6.6444,80.9249,69.9029,3.5903,79.6296,83.1169,3.0359,91.4286,4.8092,2.4287,0.9768,0.4034,14.7938,8.3948,20.9081,81.1475,97.2528,0.3432,0.7392,13.3726,0.3075,92.7632,88.2353,93.617,91.4894,8.7025,2.2439 Nottingham and Nottinghamshire ICB,C84692,North Leverton Surgery,2850.3289,7.8258,77.9412,72.093,6.0774,78.3333,87.6923,4.1621,75,8.2132,3.2044,0.9945,0.5243,17.8413,9.3074,21.0681,77.1812,88,1.326,0.2947,27.8288,1.5043,92.164,92.2078,90,95,10.5419,2.4678 Nottingham and Nottinghamshire ICB,Y05346,Westwood Primary Care Centre,3457.359635,6.8196,63.2184,57.377,2.2418,62.2378,67.3913,2.6391,78.7879,3.5147,4.0579,0.5108,1.4739,36.0593,7.786,11.2089,58.1662,84.7826,0.5108,0.6243,13.8322,0.9212,86.8771,78.5714,72.5,87.5,25.5095,1.3337 Nottingham and Nottinghamshire ICB,C82040,Orchard Surgery,7822.409943,7.7132,77.8878,74.7475,3.6748,74.7899,83.3333,2.6911,93.2203,3.7271,1.3682,0.588,1.3038,8.5662,6.0961,14.9819,70.9859,85.3846,0.1809,0.5654,13.1042,0.7365,90.0277,79.4521,88.2353,94.1176,9.4306,2.1144 Nottingham and Nottinghamshire ICB,C84004,St Albans Medical Centre,11793.36634,6.164,64.4195,68.7179,2.9497,65.9509,67.0588,3.0528,61.9048,3.4627,3.0528,0.4229,0.7845,44.518,8.3787,15.5425,64.4497,79.5082,0.7941,0.9179,13.9051,0.5841,88.9005,92.2222,85.124,95.0413,24.2589,1.8255 Nottingham and Nottinghamshire ICB,C84005,Village Health Group,25808.40111,7.2428,81.4453,76.8311,4.9004,81.7834,86.1217,3.3774,93.5714,6.3864,1.308,0.8744,0.9322,6.3157,6.0979,16.592,68.6185,83.1373,0.2623,0.4554,11.0922,1.5311,89.7227,76.2089,87.9518,93.1727,8.7149,2.3828 Nottingham and Nottinghamshire ICB,C84009,Barnby Gate Surgery,14571.9533,7.1027,78.2895,70.5128,4.1526,71.8121,78.1377,3.7783,89.5833,6.0872,2.0295,0.8852,0.9757,20.9604,7.4349,17.1285,64.7558,82.0565,0.7197,0.7917,25.7184,1.7357,88.1668,78.6184,83.9161,93.007,16.768,2.1591 Nottingham and Nottinghamshire ICB,C84010,Trentside Medical Group,19852.27364,6.8277,70.9447,68.6747,3.4314,74.247,78.0627,2.8772,90.5325,4.3072,1.8382,0.9964,0.9675,21.7988,7.1737,14.546,61.5243,81.062,0.7619,1.1775,13.5445,1.3848,88.1616,81.8182,79.0816,84.1837,26.5266,1.9928 Nottingham and Nottinghamshire ICB,C84011,Elmswood Surgery,10315.41452,7.4977,74.4548,55.3191,4.3642,69.4268,75.2475,3.0528,96.2025,2.6681,1.6876,0.8062,1.8441,23.4522,6.6236,13.587,48.429,70.6745,1.0319,1.1179,8.802,2.398,78.0493,89.6296,81.1111,92.2222,13.0877,2.3971 Nottingham and Nottinghamshire ICB,C84012,Willowbrook Medical Practice,16550.62184,8.1897,69.3364,71.8354,5.1218,64.3059,73.3871,4.5608,94.5055,9.296,3.142,1.3386,1.6795,32.769,10.536,19.9263,64.375,82.3322,1.3787,1.058,14.3345,2.7647,90.2209,81.5353,77.7228,90.099,17.1163,2.9497 Nottingham and Nottinghamshire ICB,C84014,Woodlands Medical Practice,12478.29344,7.5036,77.748,87.108,4.401,84.2254,86.3248,3.852,97.2973,2.2081,1.692,1.107,0.8922,24.6778,8.82,15.6782,75.6466,86,0.81,0.477,20.6647,2.0878,89.5148,83.5616,92.517,94.5578,12.134,1.971 Nottingham and Nottinghamshire ICB,C84016,Oakwood Surgery,19398.93523,6.5923,75.2475,80.9645,4.435,67.9089,71.8213,4.2918,87.1795,7.3318,3.1145,1.196,1.0054,25.1982,10.3648,19.1915,52.3829,71.8433,0.9593,0.9281,15.3364,0.8875,88.4268,82.1012,64.3137,83.9216,16.9866,2.1365 Nottingham and Nottinghamshire ICB,C84017,Belvoir Health Group,25674.63378,6.6301,78.0541,78.88,4.2456,78.7004,77.8865,3.3798,94.6429,3.4346,1.9583,1.1871,0.605,9.183,6.5834,16.2792,68.8694,84.4091,0.3403,0.5709,13.5147,0.4484,89.8011,83.6066,86.0465,92.2481,11.0448,2.2116 Nottingham and Nottinghamshire ICB,C84018,Family Medical Centre (Sood),14319.64866,6.5756,64.539,57.5472,2.3583,66.9371,78.6096,2.5166,76.6423,2.2356,2.5325,0.7677,0.9211,37.1154,7.285,10.8025,70.7276,82.5137,0.5461,1.5116,10.3809,1.3251,89.5211,85.0242,80.597,89.5522,23.342,1.6144 Nottingham and Nottinghamshire ICB,C84019,Fountain Medical Centre,13799.5158,6.7323,76.6376,76.5625,4.047,71.5818,76.7347,3.3287,83.4952,7.0471,1.6991,0.95,0.1997,20.6907,8.2395,17.0374,61.4964,81.6726,0.5406,0.7414,14.7789,0.6385,86.1794,79.321,86.0606,91.5152,15.1108,2.317 Nottingham and Nottinghamshire ICB,C84020,Churchside Medical Practice,7970.111771,7.2544,72.5118,78.4314,3.0974,67.5676,75.2066,2.8451,73.8095,2.1369,2.3125,0.5466,0.3127,29.6512,7.4087,14.0014,51.6949,79.7688,0.4065,1.0792,12.1786,0.3148,86.4775,89.4231,81.0127,89.8734,22.5861,1.5277 Nottingham and Nottinghamshire ICB,C84021,Middleton Lodge Practice,16336.20202,7.9645,75.8763,78.7037,3.8938,65.099,71.371,4.1939,86.8056,7.0689,2.7084,0.7878,1.0354,27.7656,10.1152,18.7036,65,83.6645,1.0578,0.6677,11.8411,0.6028,90.0872,85.7494,80.9278,87.6289,16.6712,2.7309 Nottingham and Nottinghamshire ICB,C84023,The University of Nottingham Health Service,19941.02677,2.8986,76.1905,75.4098,0.3626,30.8442,75.4386,0.1176,90.1639,0.1334,0.0588,0.0098,2.3335,18.5901,0.5479,1.1711,64.637,78.4314,0.0172,0.223,3.567,1.4829,85.1094,100,80.7692,84.6154,4.6742,0.0931 Nottingham and Nottinghamshire ICB,C84025,East Bridgford Med Centre,7565.282228,6.8138,82.6979,77.8261,5.2597,82.3834,85.1064,3.5372,94.2308,4.6161,1.2623,0.8153,0.4124,7.665,5.539,17.6068,70.8616,79.085,0.3287,0.3024,8.9467,0.6339,87.4632,86.0656,82.8125,92.1875,7.328,2.3932 Nottingham and Nottinghamshire ICB,C84026,Stenhouse Medical Centre,14083.66157,8.5908,78.8934,76.1329,4.6022,76.5013,78.7879,3.5891,89.6907,6.6288,2.3639,0.8875,0.2987,16.1869,7.9187,19.744,64.2857,78.9063,0.6754,0.9424,12.93,0.4112,90.4835,78.4512,85.7143,90.2256,11.7811,2.7095 Nottingham and Nottinghamshire ICB,C84028,The Ruddington Med Centre,6916.542073,5.7952,79.9127,77.707,4.057,83.7302,87.218,2.863,98.75,4.7073,1.4111,1.6147,1.3523,8.2133,6.0483,15.8616,70.2797,81.0289,0.9634,0.7734,12.9579,1.4151,90.1363,85.0877,84.6154,90.7692,9.551,1.8996 Nottingham and Nottinghamshire ICB,C84029,Lombard Medical Centre,23086.24013,5.8946,71.9941,63.1579,4.8285,68.9373,75.7895,3.2808,79.8206,6.1142,2.0019,0.6441,0.6091,24.0358,7.6031,14.6247,70.7521,84.6034,0.9036,0.797,15.8143,0.5744,83.3831,82.4803,83.6364,93.1818,20.2717,2.0853 Nottingham and Nottinghamshire ICB,C84030,The Oaks Medical Centre,10674.759,6.9128,74.8175,75.1196,3.5357,71.223,76.8362,2.5706,92.9293,4.1108,1.7898,0.9739,1.0304,14.4909,6.0568,13.2304,68.0796,86.0796,0.5176,1.0265,11.8386,3.0415,85.2909,84.3023,79.5918,91.8367,14.1125,1.6055 Nottingham and Nottinghamshire ICB,C84032,Eastwood Primary Care Centre,22771.2978,7.833,75.8665,77.9324,5.6661,77.8846,79.3478,4.5679,94.3262,7.1383,2.8118,1.0823,0.6119,20.3055,9.465,19.8101,65.5657,82.4324,0.626,0.8648,16.1568,1.1599,90.7313,82.699,72.6277,91.6058,12.5176,2.971 Nottingham and Nottinghamshire ICB,C84033,Westdale Lane Surgery,9456.462443,7.2764,73.7179,70.0508,4.1033,74.4027,72.1519,3.0774,81.1765,4.5904,1.7698,0.9356,0.2921,16.2966,7.848,17.0105,50.1285,67.8363,0.3495,0.9244,11.1838,0.1595,80.1155,83.2512,79.2453,90.566,15.2367,1.9276 Nottingham and Nottinghamshire ICB,C84034,Churchfields Medical Practice,10624.89547,6.5444,66.2162,73.6111,3.9155,68.2594,76.8786,3.2078,75.4386,4.436,3.3219,0.5137,0.9154,35.7075,9.2308,18.242,58.3396,78.3883,0.7763,1.4726,17.8426,2.6659,86.7702,84.7534,69.6721,90.1639,20.3321,2.2374 Nottingham and Nottinghamshire ICB,C84036,Forest Medical,20609.43656,6.7571,70.4947,78.2828,3.0969,66.3974,73.4426,3.1691,82.6316,4.5375,2.825,0.7659,0.7962,31.6307,8.9809,14.2358,64.0954,82.6291,0.7548,0.8436,14.6974,0.197,87.2633,85.9903,82.2511,94.3723,20.007,1.8426 Nottingham and Nottinghamshire ICB,C84037,Abbey Medical Group,13456.46608,6.6928,79.3388,77.8116,4.8312,79.6089,80.8594,3.8856,91.6667,7.0121,1.7322,0.882,0.5327,15.6513,7.947,18.5459,60.2204,79.3834,0.7946,0.7469,12.8039,0.4846,89.521,79.9383,85.2564,94.2308,10.247,2.495 Nottingham and Nottinghamshire ICB,C84039,Derby Road Health Centre,11912.64807,5.8568,65.2632,62.8866,2.2731,47.0103,64.497,2.4711,81.4815,1.619,1.2752,0.499,0.3693,22.609,5.7561,10.3754,68.5047,80.4167,0.5703,0.9583,9.1555,1.4238,79.1397,85.5346,74.5614,87.7193,15.3335,1.4098 Nottingham and Nottinghamshire ICB,C84042,Saxon Cross Surgery,7379.50689,8.0063,71.4912,73.0539,3.7733,74.2857,76.5957,3.4758,89.0625,5.6867,2.8131,0.6221,0.4653,17.1734,8.1987,16.4593,59.7665,82.5455,0.3787,0.7844,14.8372,0.2049,89.5518,85.6209,80.4348,89.1304,14.2834,2.2045 Nottingham and Nottinghamshire ICB,C84043,Leen View Surgery,16121.95507,6.4895,69.7605,62.5984,3.4461,71.9376,78.8732,2.8357,83.8926,3.9343,3.083,0.9272,3.9651,44.6901,9.3126,15.5463,64.6342,81.7204,0.8036,1.0663,16.4664,2.5185,88.0639,86.0215,79.096,88.7006,23.8453,2.0244 Nottingham and Nottinghamshire ICB,C84044,Deer Park Family Medical Practice,9899.907339,5.1777,77.591,84.7162,4.3583,66.5584,78.534,3.4886,84.6154,2.9445,0.9857,0.5218,0.3355,13.4851,6.5356,15.4233,65.6704,79.5294,0.2609,0.5798,10.4734,0.4133,78.6859,80.5556,80,79,7.8033,2.0294 Nottingham and Nottinghamshire ICB,C84045,Collingham Medical Centre,8497.986875,7.0745,81.6156,76.5217,6.2381,81.5789,82.8571,3.9338,96.3636,5.3123,2.2915,1.0312,0.8427,13.5624,8.2838,21.9223,54.0212,78.7129,0.7766,0.8148,14.7028,1.4173,90.6898,77.8351,92.0792,97.0297,8.3713,2.8262 Nottingham and Nottinghamshire ICB,C84046,Clifton Medical Practice,10455.09778,6.4073,69.8842,63.8418,3.2748,68.9542,70.7143,3.4802,90.5882,4.424,2.9553,1.2209,0.9204,36.1309,8.8837,17.5377,62.1383,82.5939,0.7074,0.7873,11.1194,1.5816,85.0644,86.1111,74.7826,80,19.4919,2.3619 Nottingham and Nottinghamshire ICB,C84047,The Calverton Practice,10996.71194,7.4848,78.2609,83.5249,4.9584,82.2526,83.5052,3.8609,92.6829,4.657,2.2342,0.9309,0.722,13.4375,7.4021,17.4522,66.3197,83.2569,0.3038,0.5586,14.2359,0.2694,89.1003,82.4121,88.6792,96.2264,11.4068,2.8515 Nottingham and Nottinghamshire ICB,C84049,Southwell Medical Centre,12711.36356,7.484,83.4264,78.2991,4.9196,79.6429,84.7909,3.6532,92.9825,5.4881,1.3476,0.9904,0.4663,7.4201,6.0635,17.373,66.2083,83.5237,0.3653,0.4059,8.9752,1.0557,88.2312,86.8778,93.8053,97.3451,6.7805,2.541 Nottingham and Nottinghamshire ICB,C84051,Orchard Medical Practice,21415.31266,6.3687,75.5302,81.549,3.298,68.9249,74.9254,3.3134,84.4444,6.6384,1.8419,0.7049,0.8151,26.2414,7.3484,16.4643,60.0075,78.4278,0.6174,0.6997,10.4206,1.6019,87.4004,81.7734,84.1346,93.2692,13.4874,1.8162 Nottingham and Nottinghamshire ICB,C84053,Torkard Hill Medical Ctre,18115.22985,7.9311,76.4113,73.2394,3.8469,79.5455,82.3729,3.3517,95,4.5521,1.9929,1.1172,0.5024,23.5402,8.3111,15.8162,65.5534,78.5851,0.5133,0.7186,19.1205,0.464,86.3027,83.7398,88.0597,95.0249,13.4342,2.2224 Nottingham and Nottinghamshire ICB,C84055,Highcroft Surgery,11746.74093,7.8203,72.5664,70.2929,3.639,76.1905,80.0971,3.3017,90,5.1855,1.5443,0.9497,0.6594,17.3371,7.3886,12.9405,66.0377,83.1486,0.5592,0.8698,13.4891,1.0758,82.3152,81.2766,88.3333,95,14.489,2.4053 Nottingham and Nottinghamshire ICB,C84057,Pleasley Surgery,4883.134419,7.9443,75.3425,81.0526,4.0743,81.3953,77.3333,3.785,86.6667,3.4245,2.3626,0.5545,0.4806,29.3455,9.9556,17.5265,68.5714,85.6061,0.7715,0.6991,19.0448,0.4558,93.6627,84.2105,95.1613,93.5484,15.543,2.0251 Nottingham and Nottinghamshire ICB,C84059,Sherwood Medical Partnership,12387.67974,7.4279,73.224,74.7253,3.5711,79.9065,80.4651,3.724,94.1177,5.318,3.0162,0.8043,2.0229,20.0168,8.4035,16.7297,65.0346,83.4302,0.8284,0.6595,17.049,0.6044,90.7486,82.6531,83.1081,93.2432,16.9433,1.9223 Nottingham and Nottinghamshire ICB,C84060,Rivergreen Medical Centre,10426.93628,7.3882,70.0337,72.7723,3.4358,68.1818,71.3376,3.7419,95.6044,3.3015,3.3337,1.3947,3.0264,34.3198,9.3047,18.857,71.5985,84.5912,0.635,1.0772,12.2068,1.361,88.3234,88.7097,85.2459,86.0656,19.8879,3.0729 Nottingham and Nottinghamshire ICB,C84061,King's Medical Centre,11406.63561,6.3202,69.2,78.5311,3.2067,70.0297,76.7606,2.8954,95.9596,3.8655,2.6463,0.9548,2.0417,33.472,8.607,15.8261,75.7911,85.0575,0.6849,0.9859,16.8096,0.5808,90.3014,84.5714,87.6033,91.7355,23.8788,1.8472 Nottingham and Nottinghamshire ICB,C84063,Greendale Primary Care Centre,9115.443609,6.1813,60.8696,55.4054,2.3907,56.4516,73.0769,2.8006,73.75,3.1945,2.1289,0.6717,1.6122,37.9162,9.9429,12.9098,55.7083,75,0.6261,1.184,13.1064,2.5601,85.5164,92.6108,82.6446,96.6942,17.9513,1.5483 Nottingham and Nottinghamshire ICB,C84064,Parkside Medical Centre,12100.00577,7.7703,67.6724,59.4444,2.7648,73.3668,77.2727,2.6952,81.3433,4.5624,2.5659,1.0244,0.6784,43.7709,7.7709,12.9886,69.6527,81.6038,0.7658,1.1139,17.2253,2.3793,86.0532,81.768,75.2137,90.5983,24.2366,1.7703 Nottingham and Nottinghamshire ICB,C84065,Abbey Medical Centre,5216.651882,6.6225,73.2394,71.4286,3.2296,73.4104,79.0123,2.7432,100,5.8387,2.0039,1.2062,0.3958,17.7287,7.3866,14.6693,71.123,89.1192,0.5448,0.9922,15.7595,1.864,88.6985,94,83.0769,93.8462,16.1809,2.1984 Nottingham and Nottinghamshire ICB,C84066,Daybrook Medical Practice,12406.23301,8.8948,73.0458,69.3227,4.2399,74.5665,76.7327,3.775,72.5,5.2027,2.7615,1.06,0.8245,23.1877,8.3552,16.4017,70.7965,82.598,0.7438,1.0693,14.4466,0.3357,90.069,83.3333,78.0488,91.0569,16.2742,2.2408 Nottingham and Nottinghamshire ICB,C84067,Ashfield House (Annesley),6851.004645,6.3845,76.0181,75.8389,5.345,77.0701,75,3.9476,95.8333,6.6553,3.0044,1.2576,0.4253,20.8566,10.313,19.0917,68.8623,89.1473,1.1703,0.8559,13.2256,0.1868,91.7355,83.871,92.4731,88.172,12.5304,2.7598 Nottingham and Nottinghamshire ICB,C84069,Roundwood Surgery,15145.69159,5.9258,74.4875,80.6667,4.0304,70.6019,76.5217,4.0969,89.1089,3.172,2.4729,0.9522,0.71,27.0325,8.0026,13.1173,64.8489,82.1429,0.5536,0.8415,15.5648,2.514,88.9948,84.6154,84.375,92.5,16.2608,2.1555 Nottingham and Nottinghamshire ICB,C84072,The Wellspring Surgery,13021.66132,4.1637,60.8696,54.0698,2.041,58.7805,70,1.9671,71.223,2.321,1.6716,0.4433,0.5679,48.1316,7.6624,11.5903,55.5137,76.8041,0.4433,1.5146,9.2346,1.9293,82.6758,88.8889,87.2549,89.2157,22.4693,1.4499 Nottingham and Nottinghamshire ICB,C84074,Family Medical Centre (Kirkby),5574.314284,6.0814,72.4551,69.9115,3.1858,73.4177,77.5281,4.2822,88.4058,5.8591,3.0823,0.8275,0.3431,28.9916,10.5551,17.832,43.741,81.4371,0.5379,0.8895,15.3075,0.154,88.4791,88.8112,45.4545,93.5065,20.46,2.5652 Nottingham and Nottinghamshire ICB,C84076,Kirkby Health Centre,4613.145842,7.0111,72.3881,74,4.0359,69.1057,76.7442,3.712,88.8889,6.5696,2.1674,0.7723,2.3241,28.3197,9.8777,17.4639,61.8705,80.6897,0.573,0.4484,12.3644,0.2938,90.7427,88.2353,75,90,14.8358,2.0927 Nottingham and Nottinghamshire ICB,C84077,Brierley Park Medical Centre,21269.08043,7.1108,71.831,83.7963,3.873,75.6098,77.2595,3.6458,84.8168,4.5445,2.9047,0.9791,0.932,26.873,9.1013,17.0498,68.68,81.7485,0.6058,0.8547,19.0081,0.4419,88.7311,85.7143,84.585,92.4901,33.2476,2.1529 Nottingham and Nottinghamshire ICB,C84078,Hucknall Road Medical Centre,15007.37769,6.7109,69.4737,68.5315,2.6918,61.477,72.1739,3.1554,83.3333,3.7469,2.2207,1.2711,0.5779,32.5081,8.6825,15.3133,61.836,80.3798,0.5907,0.987,15.1994,1.7222,83.2928,86.8794,83.1325,88.5542,17.983,2.0562 Nottingham and Nottinghamshire ICB,C84080,The Manor Surgery,13877.4857,6.4915,79.6137,34.5515,4.5935,74.4726,77.551,3.1112,91.0448,6.291,1.5776,1.4455,0.7266,13.6823,7.2154,15.4388,76.4254,87.6611,0.6531,0.9613,13.0516,2.8664,89.8246,77.6074,81.0458,90.1961,11.074,2.3921 Nottingham and Nottinghamshire ICB,C84081,John Ryle Medical Practice,8123.309585,7.0353,73.9316,66.0131,2.6822,69.697,75.8929,3.4548,87.6712,3.7822,3.0029,1.1953,0.7186,35.7814,9.1044,14.7959,65.3894,76.2136,0.6851,1.0641,11.857,1.5675,89.8222,84.2857,72.9167,90.625,20.6632,2.2012 Nottingham and Nottinghamshire ICB,C84084,Radcliffe-on-Trent Health Centre,8499.998282,6.9272,84.4237,78.341,5.2933,80.9524,82.3171,3.7434,94.7368,4.3709,1.8717,1.1445,0.6328,6.9438,6.5341,17.1078,74.739,86.7925,0.3338,0.608,12.5386,0.3371,91.3315,83.2168,85,92.5,8.1771,3.0639 Nottingham and Nottinghamshire ICB,C84085,Victoria and Mapperley Practice,11564.42232,6.2735,66.5584,63.3333,3.7,67.4603,77.0115,2.2815,75.5556,4.1505,1.7161,0.5952,1.3324,25.0295,6.6006,12.5484,70.4918,82.0175,0.6547,1.6467,7.5227,0.9818,81.8311,86.2275,86.0465,94.186,15.4148,1.8649 Nottingham and Nottinghamshire ICB,C84086,St Georges Med Practice,11945.84368,6.2523,79.9419,75.9494,3.3265,79.5096,81.0427,2.1948,94.9045,3.5397,0.9739,0.8779,0.7097,6.7752,4.6318,11.0151,71.9298,86.3081,0.3429,0.6584,6.7379,0.2571,85.1174,82.8571,84.7826,93.4783,6.446,1.5089 Nottingham and Nottinghamshire ICB,C84087,Rainworth Health Centre,6983.031396,7.4462,74.8815,72.1854,4.1646,73.5135,77.193,4.1814,88.2353,5.7965,3.0395,0.5038,1.0425,24.3808,9.3191,16.7758,56.9096,74.3842,1.1755,0.5206,16.1176,0.08,87.8735,89.3333,73.494,85.5422,16.8027,2.8044 Nottingham and Nottinghamshire ICB,C84090,Musters Medical Practice,8234.943139,7.3525,81.6384,79.9213,3.9578,75.9375,84.7222,2.5531,94.5946,3.4621,0.81,0.851,0.4516,7.1236,5.2885,13.8009,74.3519,80.4511,0.3691,0.6357,7.426,0.314,85.466,88.806,85.3659,91.4634,6.25,1.8353 Nottingham and Nottinghamshire ICB,C84091,Aspley Medical Centre,9962.826011,6.499,66.9811,64.2424,2.3091,61.1111,71.6418,2.7934,75.6757,3.9261,2.5118,0.8335,0.8249,45.4989,9.1846,14.0234,57.9655,83.7438,0.7659,0.8898,16.9875,2.0716,88.4833,81.8182,82.7586,91.3793,19.8926,2.219 Nottingham and Nottinghamshire ICB,C84092,Bridgeway Practice,5912.500743,5.3458,57.1429,47.0588,2.0268,54.2986,67.1875,2.2127,83.5821,3.1162,1.5619,0.4835,2.0853,35.3405,8.2832,11.9561,63.37,84.5361,0.688,1.5433,14.2221,1.3564,85.8013,88.9831,84.6154,93.8462,21.2323,1.376 Nottingham and Nottinghamshire ICB,C84095,Oakenhall Medical Pract,7921.611273,7.3167,72.9958,68.9441,4.2408,70.339,77.1429,3.4066,84.8485,5.7177,3.1841,1.3765,0.8119,23.4973,9.3803,14.975,66.7464,83.8174,0.7369,0.6118,14.5794,0.264,89.2057,78.3333,88.2353,94.1176,15.1935,2.183 Nottingham and Nottinghamshire ICB,C84105,Fairfields Practice,7282.807075,7.157,62.3932,65.4545,2.1763,55.7377,74.5098,2.3448,78.0822,2.4911,1.3946,0.3372,1.2979,41.6392,9.8196,14.0383,55.4054,77.451,0.8736,1.0115,20.6196,0.1869,90.2077,89.4737,77.5281,85.3933,20.969,1.3793 Nottingham and Nottinghamshire ICB,C84106,Millview Surgery,10256.55038,6.6384,75.2727,78.7234,3.785,64.3599,75.6757,3.259,88.3117,2.5119,2.4357,0.8233,0.6838,28.9604,8.0618,16.3065,68.1569,83.3333,0.7319,1.0063,14.0804,0.2953,85.7551,82.8571,83.6364,95.4545,19.1806,2.1269 Nottingham and Nottinghamshire ICB,C84107,The Linden Medical Group,7997.502759,6.0376,75.4386,73.1183,4.5348,68.3417,75.4967,3.6279,83.3333,5.1015,1.8414,0.6596,0.4293,16.2357,8.5093,19.1975,64.6893,82.6866,0.7833,0.6871,15.5523,0.3437,84.5522,86.7052,80.8081,83.8384,12.8783,2.5423 Nottingham and Nottinghamshire ICB,C84112,Bramcote Surgery,3564.722907,6.4171,83.4586,79.0698,3.4884,71.6667,81.4286,2.9334,95.122,5.1849,1.2685,0.5021,0.1982,9.9149,7.2403,16.4905,63.3475,78.9474,0.5814,0.9778,11.4927,0.2456,91.1303,89.6104,85.3659,92.6829,6.6186,1.9028 Nottingham and Nottinghamshire ICB,C84113,Major Oak Medical Practice,8215.533827,6.0446,81.4035,84.6995,4.6393,80.2817,83.3333,3.6837,97.1429,7.9185,2.5066,1.3156,1.3699,18.2432,9.4617,19.9695,73.8585,88.9231,0.4155,0.5124,15.1687,0.734,90.4484,78.4141,91.3462,96.1538,12.6108,2.5066 Nottingham and Nottinghamshire ICB,C84115,Plains View Surgery,7979.351608,6.8002,80.9061,79.2453,3.9712,82.2148,85.5491,2.5406,91.3979,4.3484,1.0071,0.7553,0.4377,9.7387,5.5229,15.5757,77.6718,88.4984,0.4578,0.6867,13.3983,1.7415,91.4409,76.0684,90.2778,97.2222,7.973,2.0371 Nottingham and Nottinghamshire ICB,C84116,Melbourne Park Medical Centre,9692.932836,6.232,66.2698,62.5698,3.492,58.7031,70.4698,2.9238,76,3.7446,2.3674,0.7339,1.0896,40.9206,9.5453,15.5185,41.7642,66.5,0.7576,0.7457,12.2314,2.2169,78.5424,87.3016,63.5514,80.3738,18.3319,1.6099 Nottingham and Nottinghamshire ICB,C84117,Radford Medical Practice (Kaur),16178.90052,2.4979,61.9565,50,0.6034,39.9441,66.1017,0.4537,50,0.4586,0.2949,0.059,2.4651,31.6404,1.8225,2.4,57.9741,76.9231,0.0817,0.4991,5.4797,0,86.0686,87.9121,70,83.3333,12.6718,0.2541 Nottingham and Nottinghamshire ICB,C84120,Chilwell Valley and Meadows Practice,15101.2632,7.1363,79.9595,75,4.2456,76.2617,79,3.1982,93.0769,5.2698,1.6272,1.303,0.4712,9.9523,6.9924,15.8292,67.747,82.9073,0.5424,0.7294,9.4086,0.6755,89.0024,83.6066,92.6829,95.7317,9.3845,2.1883 Nottingham and Nottinghamshire ICB,C84122,Wollaton Park Medical Centre,9708.270389,6.8072,74.5387,77.9487,3.1332,66.4894,79.5322,2.6662,84.4262,3.9529,1.2844,0.613,0.435,18.5836,7.2273,13.9146,59.2362,78.9474,0.5936,0.7201,11.9995,2.0115,83.4055,87.8788,80.5556,88.8889,8.9543,1.5763 Nottingham and Nottinghamshire ICB,C84123,Bilsthorpe Surgery,4770.254102,9.2689,74.6835,73.1481,4.3862,78.3333,77.6471,4.3372,93.617,5.4168,3.3325,0.8086,0.6922,23.5459,9.7148,17.9858,60.2585,75.6522,0.9066,0.3921,20.0722,0.8201,90.9269,87.2881,86.7925,94.3396,17.2666,2.3769 Nottingham and Nottinghamshire ICB,C84129,Rise Park Surgery,10827.18682,6.7964,78.0186,80.7175,4.2835,68.4543,79.4444,3.5431,82.6087,5.0132,2.3691,1.3749,0.9499,25.0121,8.9617,17.6415,52.9457,77.2853,0.825,0.9413,13.7863,1.5836,88.1693,85.514,63.5659,86.8217,15.1252,2.4855 Nottingham and Nottinghamshire ICB,C84131,Newthorpe Medical Practice,8567.599198,7.0666,80.0676,86,4.2203,78.2946,80.2469,3.7129,86.5672,4.9023,2.203,0.6931,0.0465,17.8689,8.621,17.4134,55.0086,66.2651,0.4951,0.6807,12.0695,0.2866,85.8857,81.7708,83.1776,92.5234,12.4312,2.2649 Nottingham and Nottinghamshire ICB,C84136,St. Luke's Surgery,5629.465617,5.3688,57.2727,54.4304,2.1426,63.9752,76.0563,2.122,84.3137,1.7594,1.2979,0.412,0.4916,38.5725,9.7449,10.5068,71.1364,82.8571,0.515,1.6893,12.2122,0.2234,85.8182,89.011,86.3014,93.1507,17.5631,1.4421 Nottingham and Nottinghamshire ICB,C84140,Lowmoor Road Surgery,6605.593742,8.0124,70.3349,78.6765,2.5667,77.0833,78.4314,4.2579,92.3077,5.3336,2.6462,0.577,0.7893,28.9712,8.793,13.6092,51.6008,68.6275,1.4922,0.5969,14.0636,0.4246,90.1457,87.1429,72.2222,83.3333,14.762,1.731 Nottingham and Nottinghamshire ICB,C84142,Selston Surgery,5794.660178,5.5965,70.6731,78.9474,4.4057,75.5102,75,3.5808,96.4286,7.8698,2.6809,0.8436,1.2463,18.9816,8.0465,15.6543,83.3073,89.1753,0.4687,0.8436,21.394,0.8589,89.7361,79.2308,85.7143,92.0635,13.9884,2.0248 Nottingham and Nottinghamshire ICB,C84144,Meadows Health Centre (Larner),5053.768967,4.5772,66.2791,52.2388,1.7624,58.5714,72.1311,1.7426,82.3529,1.5796,1.6634,0.2574,0.3312,36.8524,7.0479,10.4555,68.3258,87.2093,0.6931,1.0099,12.2548,1.0073,88.453,87.013,88.4615,90.3846,21.1649,1.2475 Nottingham and Nottinghamshire ICB,C84150,Unity Surgery,4295.312477,6.6148,74.1007,74.0385,4.0129,73.1707,79.7753,2.9342,68.75,6.9644,1.5534,1.014,1.1696,14.3467,6.1877,14.1316,75.3036,95.6522,0.2805,0.5394,10.2871,1.0463,86.7337,85.567,79.0698,93.0233,13.2511,2.1359 Nottingham and Nottinghamshire ICB,C84151,The Medical Centre (Irfan),2962.169499,4.7764,62.5,62.1622,1.3988,60.3053,75,1.5232,75,1.2003,1.1812,0.373,1.2417,39.4339,6.5992,10.7554,70.3333,78.2609,0.4663,1.6164,10.0166,1.6713,89.8582,92.1053,86.6667,96.6667,21.8551,0.9015 Nottingham and Nottinghamshire ICB,C84605,Castle Healthcare Practice,15658.73786,6.9981,77.7966,76.9596,4.2428,78.5847,84.097,3.0058,91.5385,4.325,1.0867,0.8497,0.546,8.1053,5.9488,14.1965,67.1975,84.7902,0.4278,0.7688,9.1386,1.5098,89.8015,86.5385,75.4967,88.7417,6.5136,2.0983 Nottingham and Nottinghamshire ICB,C84613,Jubilee Park Medical Partnership,12232.79189,8.4048,77.1971,81.7276,4.2347,75.9901,79.0984,3.1781,85.8209,4.4851,1.8126,0.5527,0.6028,9.6086,7.3112,15.4759,51.8713,73.4908,0.4958,0.9022,15.2534,0.1566,88.4451,81.9444,79.5276,91.3386,14.5504,2.1214 Nottingham and Nottinghamshire ICB,C84619,Tudor House Medical Practice,7388.031668,6.3052,74.8571,75,3.1597,68.3274,74.7899,2.6046,82.3529,3.082,1.6083,0.4412,1.5594,30.7239,6.5597,11.2867,63.1988,79.8658,0.8824,0.8397,14.4194,1.2368,89.0058,86.6667,77.7778,90.2778,17.1606,1.7506 Nottingham and Nottinghamshire ICB,C84621,West Bridgford Medical Centre,3895.707993,5.0158,76.6667,69.5652,2.2004,81.6832,83.3333,1.6699,91.6667,2.9698,0.7662,0.4126,0.3417,7.7633,4.6794,9.1356,74.5206,87,1.4538,1.0805,10.0131,0.536,89.711,86.2069,84.8485,93.9394,10.5359,1.1198 Nottingham and Nottinghamshire ICB,C84624,Hama Medical Centre,5376.593749,6.0888,75.6219,84.6154,2.656,76.087,81.4516,2.9768,91.4894,3.4201,2.2816,0.7308,1.7211,15.0995,6.8463,15.3119,67.2245,83.8028,0.4278,0.6595,12.489,0.2083,89.6237,88.2353,75.8621,93.1034,12.377,1.6756 Nottingham and Nottinghamshire ICB,C84628,Sherwood Rise Medical Centre,7273.434387,4.7056,59.322,47.3684,1.3325,62.6168,73.6264,1.9247,68.2692,1.4481,0.95,0.5182,2.8797,35.7476,8.7759,9.8581,49.6504,72.6191,0.7773,1.4065,12.7036,0.918,90.6827,92.3664,81.6327,81.6327,22.0973,0.9871 Nottingham and Nottinghamshire ICB,C84629,"Health Care Complex, Kirkby",5306.855857,6.8763,66.2162,70.8333,3.4513,67.1141,67.5676,3.0363,94.4444,8.8121,2.9489,0.6335,4.0714,31.7227,9.5147,15.4434,71.8966,77.9528,0.415,0.9174,15.5884,0.1764,89.8618,87.234,81.8182,93.9394,23.9202,2.3591 Nottingham and Nottinghamshire ICB,C84637,Sandy Lane Surgery,8742.309394,6.3968,68.1592,73.4266,2.8885,68.9655,76.5766,3.9253,92.7536,3.4522,2.4145,1.2887,1.6502,34.8059,9.9608,16.1754,69.9552,87.5,0.4444,1.1998,16.9196,0.3702,89.8275,90.625,89.2157,95.098,19.9698,1.896 Nottingham and Nottinghamshire ICB,C84646,The Ivy Medical Group,6868.735465,6.4931,82.7586,78.2609,5.279,81.5287,81.7568,3.8201,92.1053,5.9464,1.1882,1.113,0.6786,7.2652,6.0638,18.8901,55.4311,70.2479,0.2106,0.4211,8.1429,0.4734,96.0293,86.5248,81.0345,91.3793,6.8432,2.4966 Nottingham and Nottinghamshire ICB,C84654,Jacksdale Medical Centre,4541.639573,7.0057,74.6914,78.7037,4.0518,75.969,75,3.3451,90.6977,4.8873,2.6855,0.9423,1.1999,19.6619,7.9425,17.3616,47.9132,65.942,0.3769,0.6125,12.789,0.1616,89.3079,86.5169,74.5098,88.2353,14.0017,2.4264 Nottingham and Nottinghamshire ICB,C84656,Hill View Surgery,9626.951405,7.589,77.1875,75.6881,4.4508,76.3948,82.4242,4.0809,100,5.9065,2.4781,0.7274,0.5633,24.0539,8.4348,17.7907,61.5385,82.3077,0.3945,1.0726,9.3013,0.5742,91.3785,88.3598,78.2178,94.0594,12.9042,2.4288 Nottingham and Nottinghamshire ICB,C84658,Meden Medical Services,12572.48256,8.5837,76.2803,81.4229,4.3232,73.8983,74.3017,3.6422,88.0435,6.2484,4.0343,0.908,0.5152,32.1971,10.2721,17.9426,61.5,78.4661,0.9286,0.7119,16.6843,0.0757,88.8674,82.6087,83.7838,92.5676,29.2108,2.3937 Nottingham and Nottinghamshire ICB,C84660,Hounsfield Surgery,4148.317006,7.0479,82.3529,84.7328,5.5093,81.6514,80,3.6879,84.4444,5.5919,0.9669,0.4048,0.6001,14.0213,7.0702,15.2912,59.8499,79.5918,0.6521,0.5397,13.9935,0.5193,87.045,72.2222,72.3404,89.3617,8.7215,2.2262 Nottingham and Nottinghamshire ICB,C84664,Welbeck Surgery,5071.527637,5.9225,73.8462,72.2772,2.2042,68.1633,76.4045,1.6579,87.931,1.6783,1.2434,0.3768,1.0723,23.2457,4.5737,9.6835,75.8542,86.6667,0.5652,1.3188,9.697,1.3505,85.2803,73.1707,78.3784,94.5946,14.5065,1.1869 Nottingham and Nottinghamshire ICB,C84667,Giltbrook Surgery,5352.710149,7.3571,78.2123,83.0645,2.871,84.7826,85,3.0947,91.6667,4.0887,1.9202,0.7644,0.9933,14.7869,7.738,16.6107,67.1309,85.5491,0.7644,0.4474,15.5463,0.2245,87.3554,83.1776,74.6032,90.4762,11.5876,1.8456 Nottingham and Nottinghamshire ICB,C84676,Greenfields Medical Centre (Yvs Rao),8035.126664,5.318,53.6364,55.4054,1.2783,42.492,63.2911,2.0124,65.6566,3.0705,1.2024,0.367,1.2116,41.6439,8.6658,10.8088,44.079,68.0851,0.6075,1.4302,13.3942,1.4945,81.5333,90.1316,72.549,84.3137,23.5284,0.9872 Nottingham and Nottinghamshire ICB,C84679,Acorn Medical Practice,4398.972701,5.651,62.5,64.8649,1.7654,47.3054,58.209,3.1359,92.7273,2.0058,2.2067,0.5807,1.7151,34.2128,8.2566,14.9594,68.8266,89.0411,0.3949,0.9059,10.4651,0.0815,86.2732,89.1304,79.6296,90.7407,30.3836,1.417 Nottingham and Nottinghamshire ICB,C84682,Sherrington Park Medical Practice,4445.480983,6.1821,77.8626,32.3529,2.8107,77.4359,82.7586,2.1237,86,2.3161,0.8953,0.4997,0.3818,25.9086,4.9271,8.3698,87.4618,92,0.6246,1.2284,9.6971,1.4907,90.5054,95.6522,93.75,96.875,12.1754,1.4158 Nottingham and Nottinghamshire ICB,C84683,The Windmill Practice,12198.78943,7.0706,64.2857,55.3957,1.6114,73.9696,78.626,2.1637,78.5124,2.8373,2.0913,0.2806,1.4585,39.3516,7.0923,10.7098,67.7694,85.6,0.6699,1.702,14.4827,1.4286,89.9178,88.172,82.906,90.5983,24.3889,1.4756 Nottingham and Nottinghamshire ICB,C84691,Highgreen Practice (Khan),8235.251539,3.9041,47.9592,52.1127,0.6601,35.9322,56.9444,1.6855,50.4951,1.0475,0.6247,0.4243,0.7575,42.0112,7.8947,7.2136,43.8849,75,0.4833,1.2494,6.801,0.7057,75.5435,91.7431,62.1053,80,21.6824,0.9076 Nottingham and Nottinghamshire ICB,C84693,Bakersfield Medical Centre,5176.858332,6.2488,72.8916,69.7248,2.6011,64.2857,72.2222,2.2404,90.9091,3.3732,1.367,0.6076,1.8421,22.0767,8.9668,13.765,76.5921,84.7222,0.7215,0.5886,14.2105,1.11,78.9632,86.5979,92.9577,94.3662,13.582,2.0125 Nottingham and Nottinghamshire ICB,C84694,Lime Tree Surgery,4701.688643,5.8392,65.625,64.4737,2.1841,73.3333,72.4638,2.8182,67.3913,3.2371,2.5364,0.6106,2.8245,42.404,7.2207,12.5881,65.493,86.3636,0.869,0.6576,10.7585,1.7241,89.4638,89.4737,75,90.9091,19.8562,1.8553 Nottingham and Nottinghamshire ICB,C84695,The Alice Medical Centre,4661.885921,6.8479,65.9091,58.8235,2.1566,65.5367,80.9524,2.1097,84.7458,3.3788,2.1097,1.2189,1.4879,37.8294,7.6666,12.752,58.9362,81.0811,0.7736,1.1486,16.336,1.6422,86.7044,94.0299,76.087,89.1304,24.0518,1.6174 Nottingham and Nottinghamshire ICB,C84696,West Oak Surgery,4917.711179,7.3277,76.3314,76.1905,4.4227,80.4734,80,3.0137,100,5.3942,1.6243,0.6849,0.5126,13.0143,6.8345,15.1272,76.0064,83.5526,0.4305,0.7436,9.9341,0.1908,89.9795,71.7391,88.2353,94.1176,9.502,1.8591 Nottingham and Nottinghamshire ICB,C84703,The Gamston Medical Ctr.,5249.509497,7.2301,81.0345,78.8732,2.9985,73.2456,82.3529,2.3089,90.9091,2.8846,1.0045,0.8396,1.1185,6.3586,5.727,11.919,74.0496,76.8421,0.3448,0.6147,10.0079,0.3371,90.2346,86.3158,86.2745,92.1569,8.0361,1.6942 Nottingham and Nottinghamshire ICB,C84704,JRB Healthcare - Beechdale Surgery,8981.155462,7.0643,61.1765,55,2.9738,69.6154,76.4151,3.3301,88,5.7174,2.2201,1.3156,2.0029,39.5589,10.5687,16.8151,76.7355,89.375,0.8497,1.4252,12.4363,2.1335,89.8551,88.9952,84.2105,96.4912,18.8331,1.9871 Nottingham and Nottinghamshire ICB,C84705,Hickings Lane Medical Ctr,7542.002316,7.2577,73.5,50.6849,3.2996,79.4521,80.4688,2.3925,74.7475,4.3441,2.0113,0.3944,1.7648,19.2062,7.4557,15.3806,70.3822,85.0877,0.5521,0.7625,15.2724,0.3833,90.8853,77.6978,86.25,91.25,15.6255,1.3935 Nottingham and Nottinghamshire ICB,C84714,Sunrise Medical Practice,4250.401355,2.4298,,,0.1164,26.9565,50,0.0436,,0.0437,0.0146,0,2.8538,25.104,0.5674,0.4509,50,100,0.0291,0.2182,5.067,0,84.9057,100,,,7.9046,0.0146 Nottingham and Nottinghamshire ICB,Y00026,The Om Surgery,2349.089557,5.7399,72.8571,64.1509,2.9252,74.1176,76.7442,2.7163,87.5,2.0149,1.6298,0.585,0.6893,25.0691,7.0194,12.8709,50,66,0.7522,0.4179,9.1729,1.199,89.3184,93.9394,76,84,18.221,1.8387 Nottingham and Nottinghamshire ICB,Y02847,Parliament Street Medical Centre,8255.435097,4.2214,57.6087,54.4118,0.9666,46.3768,60.9375,0.9893,80.4878,0.7133,1.1258,0.2047,1.2483,30.3448,2.8615,4.0368,58.806,85,0.3639,1.5238,6.1776,0.3331,77.8708,95.4546,76.3158,86.8421,26.4452,0.4207 Nottingham and Nottinghamshire ICB,Y03124,Grange Farm Medical Centre,7395.090048,9.4004,70.8609,74.5614,2.6298,74.7619,73.9583,3.6715,79.4872,5.3108,2.9713,0.9734,1.2523,40.1331,9.1883,15.8128,59.5828,76.1006,0.666,0.7343,19.2254,2.8252,91.9603,84.5161,82.6667,94.6667,16.3549,1.793 Nottingham and Nottinghamshire ICB,Y05369,Balderton Surgery,6066.637548,5.9404,78.3333,69.6721,3.4143,79.9127,83.3333,2.8504,83.3333,5.2983,1.6601,0.7361,1.2538,14.894,7.7796,16.0689,70.9677,84.6561,0.6735,0.8457,14.7826,0.9532,93.3893,80,86.1111,94.4444,12.605,2.0673 Nottingham and Nottinghamshire ICB,Y05622,Southglade Medical Practice,5207.697874,5.2863,67.0886,71.875,1.5267,69.0265,73.2143,1.6833,63.8554,2.0181,1.4289,0.4502,0.9944,40.6556,6.0762,9.2973,64.0777,87.3016,0.3328,1.3114,14.2147,0.5128,89.5276,92.8571,82.9268,92.6829,24.3881,1.1548 Nottingham and Nottinghamshire ICB,Y05690,Kirkby Community Primary Care Centre (3),7478.043975,7.6075,73.1544,76.0684,2.801,79.3478,81,2.3341,81.9277,4.5365,2.1644,1.2873,0.6874,28.2007,7.8522,11.2604,80.7284,86.1314,0.481,0.9478,16.5161,0.6018,92.9359,79.661,81.5789,92.1053,16.9643,1.5419 Nottingham and Nottinghamshire ICB,Y06356,Bilborough Medical Centre,11297.98387,7.6907,63.7066,56.7708,2.5722,68.3582,76.0234,3.2252,77.4194,3.8305,2.6613,1.2169,0.8951,,8.9493,14.3253,59.6788,79.2453,0.8409,0.7519,14.1635,2.5915,89.2205,82.6484,68.1481,90.3704,17.6492,1.7709 Nottingham and Nottinghamshire ICB,Y06443,Whyburn Medical Practice,14396.5104,7.5058,72.7513,66.1871,4.2234,74.0576,76.7857,3.125,88.8889,4.3504,2.3515,0.8431,0.9559,,7.526,15.3697,59.8822,81.6994,0.6343,0.642,16.192,0.2235,86.1146,85.0394,55.9211,90.1316,16.16,2.1891 Nottingham and Nottinghamshire ICB,Y06792,Broad Oak Medical Practice,7003.956046,6.6808,61.157,51.4563,1.7005,61.4634,68.5714,1.7005,58.1633,2.7783,2.0738,0.3871,1.9189,,7.6668,10.3,64.5358,82.9546,0.7328,1.0507,9.0346,1.5694,86.1181,86.1111,79.7297,90.5405,24.822,1.1475 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence Cornwall and The Isles Of Scilly ICB,L82001,Lander Medical Practice,19027.45043,6.8029,76.112,73.2558,4.3042,63.7313,72.4044,3.5099,95.082,5.2595,1.1068,0.5636,0.576,18.1624,6.2492,14.7776,56.0922,73.8437,0.6303,0.8352,11.2722,1.856,85.5689,79.2651,70.9302,93.6047,14.4681,2.4339 Cornwall and The Isles Of Scilly ICB,L82003,Port Isaac Surgery,10214.68261,7.72,77.6623,80.9717,5.8992,76.0563,77.2973,4.5794,82.6087,8.0149,1.6986,1.0903,1.2829,19.193,6.6304,19.6603,68.0261,79.2608,0.5739,0.8723,10.1255,0.4792,88.5879,80.9756,64.7059,94.1176,11.3703,3.6727 Cornwall and The Isles Of Scilly ICB,L82004,Wadebridge & Camel Estuary Practice,8960.484146,8.6727,76.6154,80.8411,5.5352,67.7273,71.345,5.333,86.0465,4.4673,2.022,0.9984,1.2225,18.0208,7.1344,17.5281,68.6747,70.3325,0.6066,0.7962,9.508,2.5622,82.7756,82.3834,60.7143,89.2857,13.3896,3.2352 Cornwall and The Isles Of Scilly ICB,L82006,Penryn Surgery,18368.26713,7.2129,76.1404,73.0159,3.0825,66.6107,77.1812,2.9432,81.3953,4.062,1.648,0.6128,0.7805,17.6008,4.5634,11.7729,64.2302,80.0659,0.4364,0.8635,9.1488,0.6761,82.1731,79.8851,76.9231,93.007,14.0549,2.1865 Cornwall and The Isles Of Scilly ICB,L82007,Medical Centre Camelford (Dr Nash),7145.28451,7.312,70.915,68.4492,4.5606,67.6471,73.5294,4.2273,83.3333,5.9668,2.2576,0.3636,2.2189,26.477,8.7739,16.6818,50.6834,73.991,0.3939,0.6667,12.6981,0.2091,87.2037,85.3801,77.0115,91.954,13.6921,2.5758 Cornwall and The Isles Of Scilly ICB,L82008,Stratton Medical Centre,11230.2839,8.2368,76.9565,81.338,6.1963,74.8175,77.3585,4.8432,90.5405,8.0449,2.5196,1.0078,0.8624,22.713,8.2513,18.8783,60,78.4387,0.4386,0.7652,13.3326,0.77,85.2429,73.5786,80.7407,90.3704,13.7349,3.2848 Cornwall and The Isles Of Scilly ICB,L82010,Bosvena Health,27033.627,8.3037,71.3789,66.5493,4.5848,65.7746,69.265,4.0558,85.9223,6.3947,2.1916,0.9992,1.9011,28.1844,7.9692,17.0837,63.5795,78.8087,0.8733,1.1252,14.0934,0.7398,84.6376,83.1443,65.6627,84.9398,19.4477,2.6073 Cornwall and The Isles Of Scilly ICB,L82011,Brannel Surgery,6319.410274,9.0604,72.973,79.1946,3.6327,79.4444,78.2609,3.9993,93.3333,3.9438,2.5329,0.4166,0.6713,27.1119,8.7271,16.5639,69.0124,81.5217,0.5332,0.4666,16.8869,1.7188,90.1409,87.8571,88.5714,94.2857,15.378,2.233 Cornwall and The Isles Of Scilly ICB,L82012,Tamar Valley Health,19874.15835,7.7857,76.0465,79.5455,6.0805,72.449,75.0656,5.6668,90.9091,3.4833,2.5882,0.9573,1.8853,20.4826,8.552,20.1796,68.2767,82.4668,0.3959,0.7977,11.1438,0.9368,87.1722,84.0376,82.3529,93.2127,13.4716,3.12 Cornwall and The Isles Of Scilly ICB,L82013,Perranporth Surgery,8269.157641,8.3289,76.3158,70.7921,4.6533,79.9065,80.5031,4.1661,87.8049,4.7508,2.1023,1.769,0.8539,21.1768,6.7963,19.3821,66.8948,81.0496,0.6409,0.7435,14.5474,1.0599,88.8524,85.0575,74.6667,93.3333,13.1755,3.5252 Cornwall and The Isles Of Scilly ICB,L82015,Chacewater Health Centre,7370.570171,7.8205,75.945,74.0741,5.1804,81.0651,80.2721,5.4178,90,7.8229,2.3898,1.0242,0.3975,19.1878,7.0918,19.1628,67.9719,82.0339,0.6976,0.7422,14.2186,2.1701,91.2123,79.1444,84.058,95.6522,13.0522,4.0968 Cornwall and The Isles Of Scilly ICB,L82016,Oak Tree Surgery,18864.18739,8.1764,75.3762,72.8421,5.2232,75.1101,76.2712,4.2023,92.029,2.4198,2.6353,0.8132,1.3508,24.7019,8.7105,18.0971,71.4822,83.6391,0.5283,0.9556,13.2693,0.7363,89.3686,82.4561,54.1667,90.7407,12.5026,2.4751 Cornwall and The Isles Of Scilly ICB,L82017,St Mary's Health Centre,2105.857552,5.0022,80,76.9231,4.375,75.3247,86.6667,3.4583,88.2353,6.6797,1.5833,0.7917,0.6338,12.1013,5.0921,13.1667,75.2252,91.4894,0.0833,0.3333,10.2877,1.3699,88.1842,88.8889,89.4737,100,16.5709,2.1667 Cornwall and The Isles Of Scilly ICB,L82018,Helston Medical Centre,15692.05896,8.8196,74.4991,71.1111,4.7262,72.1311,73.9583,4.7332,85.3448,7.7742,2.1668,0.7363,0.8551,19.5615,7.3383,15.9877,65.194,77.686,0.6101,0.7994,13.7684,0.3355,82.1977,79.7143,69.3878,91.1565,14.7581,3.0853 Cornwall and The Isles Of Scilly ICB,L82022,Old Bridge Surgery,12496.14632,8.9031,72.6054,76.6871,7.5508,77.3585,80.2469,6.8699,85.4167,4.1392,6.8191,1.8598,1.1524,25.4916,9.5138,24.5935,73.6464,80.8197,0.4776,0.9146,12.2883,2.5607,93.6587,79.6238,75,92.5676,13.7543,4.0854 Cornwall and The Isles Of Scilly ICB,L82023,Petroc Group Practice,17947.17508,7.924,73.9968,72.7711,3.9922,69.2,72.1212,4.0931,90.9836,2.862,2.8397,0.802,1.7231,21.1507,7.6217,16.6518,48.6301,68.3524,0.3624,0.6594,10.176,0.8248,80.8436,84.4633,78.6096,91.9786,15.7033,2.8634 Cornwall and The Isles Of Scilly ICB,L82025,Mevagissey Surgery,5679.595897,6.9966,76.7635,79.4702,6.836,73.5849,73.7288,5.9067,95.6522,6.8405,2.2305,1.012,0.0957,20.4625,6.952,22.7179,61.9976,73.8351,0.475,0.95,15.7857,0.846,87.5488,77.4775,59.6154,94.2308,13.3844,3.6349 Cornwall and The Isles Of Scilly ICB,L82026,Middleway Surgery,7940.609452,8.2876,73.9927,71.3483,5.3937,72.1591,72.3077,5.6776,84.4444,8.6768,3.0629,0.9413,2.7296,23.5228,9.1786,22.2023,54.3081,78.9317,0.5528,1.016,16.7751,0.5732,89.9267,75.9657,80.8989,93.2584,18.3799,3.1974 Cornwall and The Isles Of Scilly ICB,L82028,Three Spires Medical Practice,19065.2839,7.0611,74.7368,69.9482,3.4007,65.4485,70.8333,3.8873,90.625,5.2002,1.607,0.9563,0.5284,19.1986,6.0125,13.6479,68.6053,78.6272,0.5998,1.1373,7.0078,0.2275,87.5731,81.2139,76.3158,89.4737,12.5334,2.7896 Cornwall and The Isles Of Scilly ICB,L82029,Narrowcliff Surgery,16750.27206,7.0155,74.4403,69.3989,4.5288,74.7764,76.2542,3.4479,92.4658,5.1978,1.6463,0.8138,1.4169,22.2154,5.8239,16.1521,63.5732,75.2137,0.3541,1.0188,9.2969,3.0531,84.5944,83.871,77.3723,91.2409,16.1922,3.0254 Cornwall and The Isles Of Scilly ICB,L82030,Launceston Medical Centre,20626.46863,7.564,73.245,77.49,3.9715,65.692,71.2794,4.2373,94.1177,5.0944,2.2277,1.26,0.6229,24.164,8.4724,17.901,57.3506,78.0073,0.4732,1.0899,9.3627,1.735,81.1796,83.1703,72.807,94.2982,15.7868,2.6158 Cornwall and The Isles Of Scilly ICB,L82035,Fowey River Practice,10044.84372,7.8474,76.8831,71.1462,5.3195,76,78.9189,5.1248,84.4828,6.0667,1.8259,1.5825,1.3226,18.8218,7.6189,13.9014,66.6286,77.9026,0.5721,0.8399,14.2323,0.3097,91.3859,84.434,85.0575,93.1034,12.0286,3.6519 Cornwall and The Isles Of Scilly ICB,L82036,Bodriggy Health Centre,14271.54988,7.2688,75.1121,69.2557,4.8676,71.2329,73.6842,4.1792,92.8571,3.8694,2.9724,0.9476,1.6324,24.0287,7.2442,15.7528,58.0491,67.8497,0.8342,0.8099,12.9081,0.4524,83.6735,79.1822,70.229,92.3664,13.7934,3.4178 Cornwall and The Isles Of Scilly ICB,L82038,Atlantic Medical Group,14650.95372,7.0325,70.8405,68.5237,5.9166,72.8873,70.7407,5.5542,92.5373,6.7125,2.4189,1.0114,1.225,25.5174,8.1464,21.3654,72.5641,82.906,0.4888,1.1209,11.1842,0.4497,88,84.5714,81.5789,92.1053,18.4302,3.4387 Cornwall and The Isles Of Scilly ICB,L82039,Lostwithiel Surgery,5977.508106,7.4089,76.2452,75,6.4995,75.2066,72.8814,3.433,88.2353,5.0905,1.9672,1.3693,0.4072,20.708,6.6264,13.134,71.1656,90.1042,0.5207,0.945,9.1177,0.3075,87.645,77.1429,87.037,92.5926,11.0647,2.9508 Cornwall and The Isles Of Scilly ICB,L82041,Carn To Coast Health Centres,34443.82804,8.2059,70.1082,67.3184,4.2185,71.1019,70.3571,4.2713,89.3333,5.3288,2.3007,0.8417,1.7791,31.3331,8.324,15.5702,68.6491,78.022,0.8483,0.9837,12.2519,1.9745,82.9893,77.6398,71.3873,85.2601,20.2017,2.8751 Cornwall and The Isles Of Scilly ICB,L82042,Leatside Health Centre,20281.70497,8.1792,71.2146,65.0873,3.5387,72.3014,70.0326,4.7524,83.9744,6.2657,3.0073,0.8998,1.2961,27.7167,7.9026,17.6268,64.2985,79.1483,0.8333,1.2017,15.8865,0.4823,85.8252,82.801,83.5052,93.299,18.2797,3.0133 Cornwall and The Isles Of Scilly ICB,L82043,Quay Lane Surgery,4750.783356,6.1751,76.569,75.1634,6.5807,79.6117,79.1667,6.9523,95.6522,4.5235,3.7604,0.8745,1.169,20.6916,7.6577,17.84,75.5287,87.6623,0.2405,0.5466,9.8856,0.8,91.8593,83.3333,88.8889,92.5926,8.6481,2.6891 Cornwall and The Isles Of Scilly ICB,L82044,Veor Surgery,12022.99611,8.7747,69.0058,62.6168,5.0605,64.5299,66.0377,5.1862,83.0986,6.1884,3.1757,1.5422,2.1091,34.9727,10.0602,19.1341,58.3871,65.0575,1.188,1.7592,15.929,0.2391,87.3009,81.5287,91.4729,95.3488,19.7278,3.8268 Cornwall and The Isles Of Scilly ICB,L82045,Probus Surgery,10546.40702,8.3094,78.9082,75.6458,4.5402,79.668,77.8302,4.2973,91.8367,4.6144,2.0484,0.7919,0.8217,18.1846,7.061,17.9601,59.2739,74.424,0.4435,0.6758,12.7434,0.247,89.8629,82.266,79.5918,91.8367,11.0905,3.3682 Cornwall and The Isles Of Scilly ICB,L82046,Saltash Health Centre,12862.18713,9.6592,79.7938,81.1728,5.2456,77.551,79.918,4.9356,88.6364,5.0957,4.805,1.0769,1.7623,16.2112,8.5714,19.3017,72.6976,86.629,0.3916,0.9382,17.8046,1.9178,91.058,89.8204,90.8497,97.3856,11.8974,2.8879 Cornwall and The Isles Of Scilly ICB,L82047,Marazion Surgery,9964.355936,7.362,74.5547,74.8954,6.8984,79.2683,79.235,6.0984,87.7551,7.7694,2.8197,1.0492,1.187,24.6193,7.7768,24.2754,71.9101,87.822,0.3803,0.8131,15.5696,0.8868,90.6767,77.9592,88.4211,95.7895,12.1329,4.118 Cornwall and The Isles Of Scilly ICB,L82048,Roseland Surgeries,4461.205279,6.7128,74.6114,68.3333,4.9831,69.0476,70.4545,5.1129,78.5714,2.0814,1.7389,0.8305,0.8145,19.448,5.6334,17.986,56.8228,72.2772,0.3634,0.7008,7.7526,0.3179,85.1559,85.7143,82.3529,97.0588,12.7428,3.4778 Cornwall and The Isles Of Scilly ICB,L82049,Falmouth Health Centre,10292.04176,7.6648,75.7062,66.6667,4.6319,75.3943,78.5311,3.7315,92.2222,3.3595,2.7211,1.2305,0.7372,19.8733,5.6644,15.5162,69.141,81.8182,0.4702,0.7603,9.2326,1.1063,89.4196,84.3374,84.3373,91.5663,16.2949,2.7811 Cornwall and The Isles Of Scilly ICB,L82050,Rosedean Surgery,11806.73092,8.7983,73.494,70.438,5.0584,64.2599,74.1294,4.1849,89.1892,4.5381,3.2199,1.3408,1.2647,26.9625,8.6403,18.3037,66.6667,73.9726,0.6196,1.3103,10.6262,1.421,88.3636,79.4872,80.6452,93.5484,15.9826,2.905 Cornwall and The Isles Of Scilly ICB,L82051,Clays Practice,14490.67614,7.4181,71.5768,68.0511,3.9125,71.1779,74.6939,4.2833,85.0877,6.1787,2.4898,0.5222,0.4848,31.3638,9.165,16.1798,77.1031,89.7959,0.56,0.7492,23.9068,0.2714,86.8459,83.9378,91.2791,96.5116,20.9983,2.3763 Cornwall and The Isles Of Scilly ICB,L82052,Trescobeas Surgery,11927.44516,7.929,78.3981,73.4848,4.6438,76.3077,77.7251,4.4946,81.7073,4.5164,2.1914,1.0257,1.1095,17.8093,6.2452,19.0694,75.2941,87.3786,0.4103,1.1843,13.2355,1.134,88.2031,79.5455,74.7475,94.9495,14.0071,3.1052 Cornwall and The Isles Of Scilly ICB,L82054,St Agnes Surgery,9297.828712,6.4527,77.1084,71.2389,4.8544,77.6557,78.9189,4.0931,95.0617,3.5347,1.7542,0.8385,0.3699,19.1307,5.6338,14.5852,61.6172,83.1884,0.4082,0.6951,9.5493,0.3617,88.1849,89.9408,88.4058,95.6522,12.987,2.8023 Cornwall and The Isles Of Scilly ICB,L82056,The Mullion & Constantine Group Practice,9606.965114,7.4619,75,71.6599,6.3047,75.8794,77.6536,5.0941,90.9091,7.4946,2.3373,1.0068,0.3899,20.0012,6.7975,18.2908,68.1385,84.6361,0.3476,0.6353,15.2635,1.2566,88.0387,77.7778,82.3529,94.1176,11.413,3.7996 Cornwall and The Isles Of Scilly ICB,L82057,St Keverne Health Centre,3548.969609,8.1206,77.707,71.5789,6.3416,79.6875,77.9412,5.6256,88.8889,6.2349,2.3185,1.5002,0.9252,22.32,7.7322,20.0477,75,86.8056,0.2728,0.6478,14.4409,0.3501,89.7422,83.1169,91.1765,94.1176,13.0502,3.6481 Cornwall and The Isles Of Scilly ICB,L82058,Bottreaux Surgery,5643.53312,8.6938,72.9412,70.5882,6.2461,73.2673,73.8462,4.7108,90.9091,8.9915,2.6078,0.4837,1.9198,24.8076,7.4519,24.122,62.0728,75.4167,0.4416,0.8202,8.6999,1.467,84.3063,80.1653,62.963,88.8889,12.6475,2.9653 Cornwall and The Isles Of Scilly ICB,L82059,Meneage Street Surgery,6337.924892,8.5517,74.2972,71.9512,5.4661,79.7386,77.7778,5.4131,92.3077,9.4965,2.1582,0.8137,0.5521,18.2725,8.4149,18.9811,68.682,83.7398,0.4953,0.743,14.4435,0.5405,89.9868,78.8235,91.0448,95.5224,11.2515,3.308 Cornwall and The Isles Of Scilly ICB,L82061,Carnon Downs Surgery,7383.616623,7.6544,82.2148,79.235,6.9931,82.5758,82.2222,5.9286,94.1177,7.7558,1.7688,1.0973,0.4799,14.8175,6.6362,22.699,74.9747,81.203,0.4422,0.5405,12.6704,0.2505,87.3563,80.2469,90.3226,95.1613,7.7082,4.5365 Cornwall and The Isles Of Scilly ICB,L82066,Port View Surgery,7812.673675,8.5935,79.8611,78.3505,6.4863,77.0492,83.3333,5.2792,97.6191,4.1732,2.676,1.3525,2.4344,16.5925,7.9876,15.925,55.5006,73.4266,0.32,0.6981,16.4493,0.3115,88.2174,84.1463,85.3659,89.0244,10.8538,2.9087 Cornwall and The Isles Of Scilly ICB,L82068,Praze-An-Beeble Surgery,9671.561305,8.283,71.3018,69.163,4.9219,70.7224,69.8864,4.4903,90.6667,5.1979,1.9478,0.8398,1.7801,24.718,7.6199,17.4364,73.064,84.6906,0.6998,0.7231,14.8248,1.8011,86.2483,77.9412,84.2105,89.4737,15.5148,2.7525 Cornwall and The Isles Of Scilly ICB,L82070,Sunnyside Surgery,8191.079289,6.6869,72.5632,73.9362,5.4861,71.5116,74.1259,4.0689,90.3226,2.946,1.9811,1.4935,1.3821,30.0617,7.0671,16.2298,64.1849,79.7203,0.4572,0.8077,10.0927,1.1744,87.9804,80.8333,92.8571,94.2857,16.1671,3.3984 Cornwall and The Isles Of Scilly ICB,L82620,Harris Memorial Surgery,7420.466888,8.7922,72.541,70.2381,4.5813,71.3483,69.1729,5.9277,93.3333,4.4683,3.0214,0.7882,1.7994,25.7898,9.1816,17.8161,63.0536,77.9736,0.7225,1.1002,15.5479,0.3138,90.7612,81.5951,62.1951,92.6829,15.1835,2.8736 Cornwall and The Isles Of Scilly ICB,L82622,Westover Surgery,7195.727243,6.5347,77.551,70.6587,4.9795,60.3239,75.5556,3.7346,78.2609,3.2284,1.2722,0.7387,2.0415,16.4162,4.5804,14.5554,61.9048,74.812,0.2873,1.067,10.4289,0.7333,85.9431,81.7308,78,92,14.2944,2.5855 Cornwall and The Isles Of Scilly ICB,Y00969,Rame Group Practice,13438.6914,7.425,75.592,78.1609,5.93,74.4409,72.1569,4.7744,86.3636,5.6182,2.733,1.24,1.6662,21.237,8.799,19.7976,66.3557,78.8571,0.3965,0.7845,11.3279,1.3841,85.6568,80.2508,84.1772,93.038,14.0356,2.9861 Cornwall and The Isles Of Scilly ICB,Y01050,Rosmellyn Surgery,9154.787671,8.797,73.4694,72.6852,5.6412,71.9048,73.2955,4.3682,84.375,5.4045,2.1975,1.4203,1.8447,31.2519,6.7167,16.1865,68.1964,80.0738,0.9782,1.1658,10.5825,0.8765,88.2265,80.8642,86.3014,90.411,16.5222,3.7384 Cornwall and The Isles Of Scilly ICB,Y01051,Morrab Surgery,12629.66163,6.1312,67.8922,63.6,4.6517,65.9664,68.5864,4.338,91.0714,6.0359,2.2285,1.1359,1.0569,32.376,7.7039,15.2315,59.3985,69.1861,0.6383,1.3631,8.2262,0.3992,81.7411,73.7288,66.9643,83.9286,19.6111,3.1913 Cornwall and The Isles Of Scilly ICB,Y01127,Neetside Surgery,6875.020052,7.6389,80.7018,74.3017,6.9321,74.8503,76.9231,4.9175,90.9091,9.2481,2.2843,0.8249,0.5634,22.3163,6.9243,16.5451,62.5964,70.566,0.6662,0.9835,11.1133,0.9512,85.5211,80.2721,79.6875,92.1875,14.0418,3.1726 Cornwall and The Isles Of Scilly ICB,Y01922,Stennack Surgery,14198.94163,7.7031,73.3962,68.4971,5.8477,68.932,76.7176,4.8197,83.9506,7.5564,2.2076,1.0533,1.0724,21.1474,6.3874,18.512,72.2725,84.9442,0.4803,0.969,11.7466,0.5453,85.3853,89.0511,77.193,92.9825,14.6229,3.5811 Cornwall and The Isles Of Scilly ICB,Y02517,Newquay Health Centre,17269.96225,6.7568,74.4231,69.3151,4.2167,74.4863,73.7705,3.586,87.7551,4.2243,2.2225,0.7929,1.6632,24.4577,5.7367,13.4851,62.8028,76.7123,0.4565,1.0392,9.295,0.9353,88.8495,80.4734,90.2778,96.5278,20.3401,2.4327 Cornwall and The Isles Of Scilly ICB,Y04957,St Austell Health Group,36239.04892,8.4988,73.1381,74.8459,4.6773,70.3273,70.5696,4.7941,89.3238,6.2236,2.4878,1.0978,0.1521,24.6658,8.1735,18.8136,64.1375,77.0601,0.9133,1.1194,19.6061,1.0564,87.2075,79.5964,54.4,95.2,18.1575,2.9367 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84001,The Hart Surgery,9408.063638,5.0432,76.257,79.5276,5.7452,73.5593,76.7241,2.4354,98.6111,3.1543,0.8369,1.4951,1.5771,7.3298,4.6956,13.5026,62.1505,79.249,0.2539,0.9779,6.5486,1.5628,86.2922,74.5614,83.3333,93.0556,10.1838,2.3601 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84002,Didcot Health Centre Practice,16687.67599,6.0623,71.1281,80.4178,3.7233,66.1064,74.8503,2.3491,94.5545,4.2607,1.5038,0.5393,1.7731,10.8183,6.6462,14.8154,65.9611,72.6937,0.643,0.8142,10.8832,0.9047,83.8224,87.3065,85.5556,94.4444,14.7164,1.8565 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84003,Islip Surgery,6148.401733,6.3912,78.6207,78.0612,5.8979,77.8894,79.7468,2.9049,96.4286,3.9485,1.2031,0.7042,0.9112,13.3888,5.3644,15.581,66.6667,79.2208,0.3961,0.6309,10.452,2.1377,90.0221,82.7957,82,92,10.0215,2.0687 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84004,Donnington Medical Partnership,13599.24539,6.5088,67.9887,65.3386,3.193,54.8654,64.2241,2.1536,81.9672,2.9533,1.7947,0.516,0.7757,21.3127,7.2059,12.5252,60.9503,75.6098,0.5459,1.2039,11.9533,0.8341,79.3084,85.6459,84.7328,89.313,14.5637,1.7124 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84006,Eynsham Medical Group,15779.77405,7.0491,78.607,76.9802,5.8867,76.5957,78.1711,2.9619,89.3082,6.0511,1.4284,1.5768,2.2185,7.1961,6.3968,19.4225,63.067,81.9613,0.3648,0.7791,10.9471,4.0447,84.419,83.8095,84.8684,91.4474,10.1156,2.3374 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84007,Temple Cowley Health Centre,8896.964522,5.9576,63.8498,67.5497,3.3496,58.9226,69.2308,3.0807,92.1053,2.6324,1.7848,1.1614,1.75,20.4854,6.8284,13.4352,65.5699,78.629,0.4157,2.1027,13.1029,1.3783,89.8083,84.7328,81.1765,91.7647,18.1465,1.7726 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84008,Chalgrove & Watlington Surgeries,7206.558628,6.8191,78.5714,86.2385,4.0403,79.3578,80.4233,2.8243,94.5206,5.3591,1.6606,0.8107,1.4238,9.1073,6.3073,15.6512,54.8977,76.8657,0.3792,0.7191,11.5342,2.3461,90.4856,83.2117,91.6667,98.6111,10.8095,1.9875 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84009,Hedena Health,20810.18768,4.1831,61.9469,61.4286,2.1123,46.7169,60.597,1.4181,93.6508,2.1732,1.0972,0.4814,1.2902,13.7389,4.2074,8.6617,59.9684,75,0.362,0.9628,7.4713,2.6664,71.7334,86.1818,80.2326,90.1163,11.7889,0.9778 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84010,Bampton Surgery,9250.851,6.5308,76.4873,79.5745,5.9009,77.4908,81.8681,3.2058,95.3488,4.1516,1.5214,0.9237,0.8973,8.1848,7.2243,17.5831,64.2256,74.6512,0.4021,0.5977,9.0264,1.7685,88.6455,84.8315,80.6122,90.8163,11.0473,2.0213 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84011,Summertown Health Centre,13381.58099,4.2517,70.4156,69.8675,3.2967,50.4333,67.037,1.3976,86,2.0884,0.8749,0.4961,1.244,9.4893,3.1688,8.2791,58.2437,72.7064,0.144,0.8802,4.3058,2.3408,78.1382,78.3217,80.7692,88.4615,7.8962,1.1202 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84013,St Bartholomew's Medical Centre,18451.6454,4.5521,64.6694,69.1218,2.1001,48.932,70.1863,1.2761,93.7173,1.4278,0.9077,0.2546,1.6839,15.5323,4.0057,7.7505,57.9867,75.2044,0.5091,1.0015,7.1855,1.5315,81.0865,84.9057,73.9362,86.7021,22.0107,0.9043 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84014,Morland House Surgery,10795.53897,7.3139,77.305,77.7778,5.7506,72.5434,77.686,2.5842,91.8919,3.9639,1.4729,0.6968,1.708,8.71,5.8749,17.4634,74.3791,84.6667,0.3528,0.7673,11.0538,3.1569,86.458,88.1356,92,97,10.6354,1.8257 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84015,Nettlebed Surgery,3826.520782,7.8967,74.5856,83.3333,6.0876,74.5283,79.4393,3.3446,76.9231,6.5124,1.0587,0.4331,1.0568,11.4325,5.0929,17.3244,78.1609,87.8788,0.1684,0.6497,9.2831,1.3605,85.9992,86.3014,90.9091,93.9394,8.3446,2.2859 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84016,19 Beaumont Street Surgery,17061.66635,4.5239,71.9124,79.3939,3.1452,55.7196,71.1744,1.6288,89.2473,2.3838,0.8207,0.4666,1.4442,14.8613,3.2206,8.7648,62.3179,76,0.25,1.0123,5.4203,3.8907,84.1885,82.4324,85,92.5,10.5276,1.408 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84017,Windrush Medical Practice,19882.46794,7.3837,74.0625,75.6757,4.9054,71.487,74.934,2.6315,93.7799,4.4032,1.3872,0.777,1.4322,9.8614,6.4886,16.642,69.7657,82.8402,0.6722,0.9201,11.3689,5.2261,90.4331,89.5013,87.5622,93.5323,12.6333,1.8878 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84019,Newbury Street Practice,13999.39009,7.089,78.0847,77.5342,4.6066,71.371,74.3243,2.8343,91.6031,5.1173,1.3323,0.993,1.0517,8.7729,6.1179,15.1395,54.1254,75.9729,0.4148,0.6599,11.8593,0.6858,74.7263,85.461,81.5603,90.7801,14.3234,2.1493 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84020,Sonning Common Health Ctr,8583.185516,7.9137,81.4208,82.3529,5.7164,81.2245,80.9091,3.0487,94.8276,6.2176,1.2463,0.9579,1.6715,5.8198,5.4731,16.2118,69.5613,76.5864,0.309,0.7725,9.2567,0.8439,86.6988,81.7073,86.4865,89.1892,8.2832,2.029 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84021,Banbury Road Medical Centre,6498.99707,3.0534,67.9487,69.3694,2.3347,43.9024,67.5926,1.0047,94.7368,1.2088,0.3349,0.2966,1.2754,9.3384,2.1318,6.0473,50,59.596,0.0957,0.5837,3.8039,1.5069,76.9521,81.8182,84.375,96.875,5.5656,0.9281 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84023,Berinsfield Health Centre,6290.855706,8.6855,71.8593,85.5072,5.077,73.5955,77.4775,3.0631,87.3016,4.7649,2.4031,1.7093,2.7918,16.3418,8.5886,17.7018,73.4955,85.6604,0.7785,0.7785,19.7523,2.0295,89.5127,81.8898,90.5405,93.2432,16.1706,3.4693 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84024,Windrush Surgery,8886.192769,6.0274,68.8,72.7273,3.7136,59.0444,67.9487,2.1412,89.899,2.8145,2.1746,0.736,0.7107,19.9639,7.9983,13.4047,58.4257,69.3333,0.513,0.5241,14.0441,0.6507,87.7818,80.8219,85.5769,87.5,17.7977,2.0743 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84026,Observatory Medical Practice,9113.187918,4.7461,71.3415,75.6098,3.1945,52.9046,69.4064,1.1118,93.1507,1.8328,0.642,0.2975,0.7674,10.1812,3.0558,8.7457,55.9211,67.3171,0.1722,1.0413,5.047,0.8169,83.5831,85.3933,87.037,94.4444,8.9037,1.1588 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84027,Malthouse Surgery,16086.64767,7.4157,79.3651,83.9237,5.9316,72.9977,77.2436,3.3619,93.6508,7.1315,2.8789,0.7922,1.8304,9.8625,7.7875,19.2568,69.0154,84.9227,0.6569,1.1271,15.3249,4.5797,92.0955,92.3706,90.1639,94.5355,12.7754,3.6904 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84028,Banbury Cross Health Centre,40138.34296,5.7858,67.1115,68.2861,3.5973,58.5476,66.821,2.3048,87.5566,3.6513,1.5207,0.5988,1.7957,18.7774,6.3593,12.2271,64.5016,82.4147,0.5869,0.8696,13.1033,1.5422,80.2759,80.1858,72.0297,90.099,19.7982,1.542 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84030,Chipping Norton Health Centre,16314.67461,7.2002,73.4242,74.9361,6.0408,75.6322,77.8788,3.2192,91.453,5.3665,1.8725,1.4429,1.4707,12.068,6.1517,17.3144,58.4264,78.9041,0.6413,0.9363,11.8595,1.4274,88.2958,85.7627,79.7297,89.8649,11.8845,2.3278 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84031,The Leys Health Centre,13050.24914,6.1654,57.6779,63.9024,2.8704,65.0794,69.8413,2.1653,90.3846,2.6321,2.3312,0.813,2.5251,31.8805,7.8407,12.751,60.4502,74.0614,0.7715,0.9292,17.5262,2.0288,85.8131,88.67,86.4286,91.4286,25.096,1.6924 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84032,Bartlemas Surgery,9171.395437,5.9081,56.3725,60.6667,2.1647,50.3686,71.6418,1.6826,88.2353,2.4478,0.7773,0.3346,1.8037,20.1527,7.9826,11.1876,58.1568,70.9845,0.4133,1.5055,10.3968,0.8245,79.1459,90.0524,75.6098,86.1789,16.5883,1.8203 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84033,Church Street Practice,15975.29664,6.4341,76.8014,78.4461,4.3422,71.9219,74.1742,2.5303,91.844,2.1172,1.0561,0.8738,2.2,9.0271,6.4474,13.3966,59.4624,72.3005,0.4664,0.6808,11.1035,1.2589,79.9572,82.8125,82.5581,93.0233,11.0397,2.4016 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84034,Clifton Hampden Surgery,3081.620399,6.5211,74.8344,86.4078,4.9386,73.4694,77.5281,2.3979,97.1429,1.822,0.9135,0.3997,1.5417,11.0288,5.2504,15.7865,54.5657,71.1539,0.1427,0.4853,7.6734,0.2983,81.6008,81.25,88.8889,92.5926,6.983,1.8841 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84035,The Bell Surgery,9208.531543,5.7483,76.9912,75.7937,5.1248,70.7463,76.7857,2.4017,96.0784,3.0573,1.1157,0.955,2.0078,7.1877,4.567,14.306,54.5123,66.1058,0.3971,0.7659,6.2172,0.641,86.7494,77.2358,84.7222,93.0556,8.6238,1.8627 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84036,Mill Stream Surgery,5211.040866,6.7139,81.4634,85.6115,5.9776,80.3468,81.1966,2.7753,91.9355,1.6147,1.441,0.6938,1.7493,5.6372,5.3868,15.1575,74.3842,85.5967,0.2847,0.676,10.1817,0.8658,87.9568,94.8718,90.6977,97.6744,9.1522,2.1349 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84037,Wallingford Medical Practice,17159.03519,7.1879,75.6388,80.7512,5.3807,77.187,78.4,2.6449,96.4497,4.1512,1.6083,1.074,2.2987,8.0284,5.7735,15.9872,69.4557,82.4447,0.513,0.9671,10.5064,4.3239,83.8245,82.8859,86.2745,93.4641,10.9551,2.132 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84038,Montgomery House Surgery,15835.6661,6.8498,73.1463,74.7875,4.0447,66.6149,73.2203,2.9162,93.1373,2.6734,1.5858,0.689,1.6205,13.0299,6.6347,13.6188,51.2397,71.1297,0.5108,0.9325,12.6204,1.5104,83.0436,83.0827,77.4194,86.4516,13.4214,1.7877 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84041,Marcham Rd Family Health Centre,13404.94792,6.1037,74.7934,84.8024,5.0699,65.9664,76.087,2.8364,97.4359,4.671,1.5347,0.7742,1.3723,8.963,6.2805,16.1414,64.6162,82.659,0.6098,0.7057,11.7883,1.0776,85.5167,87.6543,88.0952,95.2381,10.6138,2.6583 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84042,Woodstock Surgery,8741.188672,6.3244,74.7899,77.551,5.5951,73.0769,76.1682,3.1014,97.4359,3.3625,1.0792,0.7963,0.8882,6.6422,4.9762,15.6433,62.212,79.6569,0.1991,0.7544,6.3951,1.2728,85.7558,85.7143,90.1408,92.9577,8.8466,2.2423 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84043,Woodlands Medical Centre,15251.2468,5.8929,72.3451,84.9057,3.9811,73.9541,76.8939,2.1562,95.6081,3.9912,1.3364,0.4604,2.2547,9.8782,6.214,12.241,74.4693,90.4959,0.4548,0.5503,14.3087,0.9101,80.9612,87.4539,88.961,94.1558,12.9392,1.415 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84044,Manor Surgery,22438.53079,5.6342,71.6463,77.7778,3.7137,54.1627,71.4286,2.4758,92.3695,3.4703,1.2618,0.9036,1.522,13.3494,5.7607,13.4777,58.0325,79.5376,0.406,0.8518,8.2941,1.5995,79.9722,84.1791,65.4206,91.1215,12.2612,1.7872 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84045,Gosford Hill Medical Centre,7255.443161,6.1795,74.7899,77.7108,4.4643,72.7642,77.3723,2.5704,91.5493,2.7433,1.4069,1.2311,1.0287,10.3194,7.7257,15.7197,72.2222,81.25,0.6358,0.7035,14.2391,0.8511,90.409,86.6197,84.0909,96.5909,11.7844,2.3133 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84046,Wychwood Surgery,5701.469879,6.4505,82.8125,79.3103,6.3523,78.9809,83.5616,2.8683,95.9184,2.5565,1.6043,1.183,0.3369,7.2606,5.8376,18.2466,73.8443,85.1974,0.1458,0.632,9.6116,1.4973,91.5389,92.0455,94.3396,94.3396,8.5382,1.7825 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84047,Burford Surgery,7641.365536,7.946,76.3975,76.6355,5.7519,79.6117,85.2761,2.8491,94.0299,3.2424,1.6799,0.8198,0.7113,9.6213,6.5203,16.2209,80.7568,86.1702,0.2822,0.766,13.7634,0.7432,90.7324,87.6106,97.1429,98.5714,10.4187,2.325 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84050,The Rycote Practice,12362.35491,7.6749,78.5088,82.0755,4.7597,79.9511,83.3962,3.0517,91.2698,3.0001,1.3892,0.8275,1.1298,7.8204,5.6937,14.3172,76.5299,86.7203,0.4403,0.7515,13.339,1.5837,90.1597,85,93.3962,98.1132,10.2304,1.951 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84051,White Horse Medical Practice,16970.47652,6.6822,75.9804,78.1609,4.7997,74.3089,78.3069,2.7359,97.7654,4.1734,1.5519,0.9066,1.7973,9.5546,6.3571,15.6952,61.6149,76.874,0.3253,0.6773,13.1462,1.7553,82.2478,85.0649,80.814,88.9535,12.1233,1.9199 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84052,Bicester Health Centre,16003.38702,6.3547,70.8333,72.3343,3.9006,65.6593,72.8188,2.3072,89.9543,2.0148,1.4994,0.6418,1.7043,13.0633,6.0995,12.4876,70.1577,82.5364,0.5201,0.7359,10.5775,1.3728,82.6316,89.8785,84.8684,92.7632,15.9661,1.4717 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84054,The Abingdon Surgery,15964.75333,7.2314,76.3485,75.9036,4.0756,74.3094,77.8571,2.1371,94.5148,4.1015,1.3585,0.6658,2.2686,9.5878,5.3969,12.8658,65.2695,84.2576,0.4403,0.886,14.6078,3.2495,89.6524,82.2314,80.1471,90.4412,11.1869,2.0942 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84055,Deddington Health Centre,10887.67132,6.7048,77.9817,78.0731,5.7945,81.768,80.3922,3.0376,96.9231,3.8446,1.3124,0.8007,1.1295,10.1297,5.6034,16.038,65.9229,78.6638,0.3219,0.5613,12.5596,1.677,91.5168,83.5165,92.3077,96.7033,9.2385,2.0058 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84056,Cropredy Surgery,5203.659376,8.5732,77.027,83.1081,5.5348,83.4711,83.3333,3.0924,97.7778,4.9349,1.3591,1.5954,0.8839,13.6539,6.3809,18.1603,71.8208,82.6087,0.2167,0.5515,14.7557,1.22,92.5378,77.1084,80.8511,91.4894,9.5623,2.6197 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84058,Bloxham Surgery,7180.859536,6.9343,79.0997,80,6.3746,77.8281,80.663,2.9707,92.5373,5.3839,1.0521,0.755,2.6002,9.4916,5.4428,16.8833,74.5813,89.9714,0.3961,0.4332,8.8406,1.7844,90.3503,84.2857,83.871,95.1613,8.528,1.9309 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84059,Hightown Surgery,11871.4282,6.4942,75.5725,78.1362,4.8891,73.012,75.1055,2.762,94.702,3.0049,1.6654,1.0471,1.7304,14.1428,6.7321,13.8841,68.5502,82.0059,0.5277,0.9481,14.2783,3.2406,85.9652,87.2928,87.6033,91.7355,12.225,2.0364 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84060,St. Clement's Surgery,4978.712442,5.6902,59.4828,67.9487,2.5265,48.4,71.0145,1.7517,76.4706,1.5691,0.8422,0.9264,2.1049,17.466,4.5239,9.9377,67.1579,80,0.539,1.6338,6.8121,1.8169,83.1176,84.7222,80.9524,88.0952,12.808,1.2801 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84062,Woodlands Surgery,8382.428325,7.2685,74,68.75,3.1362,64.5892,71.9178,2.4505,89.7196,3.5558,1.6187,0.6857,2.1422,19.2397,7.5855,12.3988,70.8553,85.8974,0.6295,1.2365,18.6097,0.8826,90.1157,85.7143,79.3814,92.7835,18.5196,1.63 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84063,Cowley Road Medical Practice,9309.077713,3.4529,62.5731,63.4483,1.813,51.145,67.1642,1.066,87.5,1.3569,0.7386,0.1175,1.0508,19.9647,4.0882,6.144,61.3208,80.2083,0.4281,1.1499,9.6205,0.846,77.7589,86.4197,87.3239,94.3662,17.0582,0.7135 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84065,Sibford Surgery,2852.818308,6.3217,81.5789,79.5918,5.3011,79.2208,79.0123,3.3877,96.1539,3.7373,0.6587,0.5019,1.4345,12.0507,4.4676,13.0176,73.7342,83.8384,0.3764,0.4392,5.9268,0.6711,90.2694,90.9091,90.4762,95.2381,8.5435,2.4153 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84071,Goring & Woodcote Medical Practice,9668.453993,7.6156,78.4574,81.2261,5.408,72.963,78.0702,2.8178,90.1639,5.1451,1.167,1.0626,1.3626,5.2508,5.4434,15.9772,56.9113,74.6094,0.2277,0.778,5.8499,1.0091,79.0382,77.7108,85.5422,92.7711,7.8254,2.1727 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84072,Nuffield Health Centre,12697.4594,7.1435,76.082,76.2238,5.6591,72.2513,77.4336,3.5893,92.3077,6.2613,1.6263,1.4209,2.9206,9.8698,7.1894,20.9938,67.1314,83.7916,0.8131,1.0678,18.4537,5.0647,93.2477,80.6228,84.2105,93.2331,13.3557,2.3409 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84075,Broadshires Health Centre,9459.402046,7.4453,73.5099,78.6667,3.3271,76.3326,80.8612,1.9472,95.0276,4.0014,1.4985,0.8043,3.9783,8.4497,6.5417,12.936,68.323,81.6667,0.4318,0.7535,22.2968,1.0363,88.1664,87.7193,88.4615,94.2308,13.1253,1.5154 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84078,Jericho Health Centre,6192.643096,2.5736,71.0744,69.0476,1.9345,43.4889,61.5385,0.5368,93.1818,0.7904,0.1944,0.1851,0.9484,14.6199,1.378,3.9708,66.7656,79.3478,0.0833,0.7405,2.7366,1.2089,85.7143,83.871,71.4286,85.7143,5.4285,0.4721 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84079,Long Furlong Medical Centre,7064.620372,6.4421,80.7571,90.5983,4.8911,75.2768,79.798,2.1452,95.1807,3.6967,0.8903,0.5899,0.946,6.3582,5.7746,14.2873,68.4651,88.3268,0.3754,0.6007,12.6183,0.9573,86.8818,86.0465,86.1538,93.8462,7.3462,1.7055 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84080,28@Northgate,6340.093625,4.757,67.3267,77.1429,2.7517,53.4314,68.8525,1.3423,100,1.202,0.7047,1.0906,0.9106,13.3485,2.6592,7.5,71.885,93.2836,0.1678,1.0571,3.6423,2.0801,81.4249,90,88,96,6.57,1.0235 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84082,The Key Medical Practice,12189.67869,6.2106,74.1648,75.7785,4.9445,64.133,73.5683,2.7958,95.6989,3.7687,1.471,0.801,1.4121,10.831,6.9822,16.3586,54.0943,68.1641,0.4621,0.7933,10.6478,2.7187,80.8584,89.6825,79.5082,90.1639,13.1706,3.0807 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84605,KES@Northgate,3506.477099,3.8978,70.4918,78.0488,1.6033,53.0516,64.1026,0.5291,95,0.8266,0.2405,0.0962,0.861,15.6396,1.4495,4.0404,70.297,80,0.0321,0.6093,3.2375,2.133,81.6846,94.1177,91.6667,100,5.9574,0.2886 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84610,The Charlbury Medical Centre,5008.076124,6.2957,76.0369,82.5758,5.2824,78.2609,82.4074,2.8331,92.4528,4.6018,1.2429,0.6763,1.5708,7.4991,5.5385,16.2128,62.6168,73.8776,0.329,0.7677,10.3319,0.4812,86.498,85.8824,95.6522,97.8261,9.1449,1.8827 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84613,Alchester Medical Group,17241.25361,5.9943,75.0916,76.6292,3.8322,70.6302,74.4019,2.0261,88.4615,1.8388,0.9076,0.6143,2.2866,10.3551,5.8537,11.6892,51.8265,74.1667,0.2063,0.7197,13.6716,1.7539,82.3337,86.6667,76.0234,85.3801,11.6203,1.3248 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84618,Cogges Surgery,7267.475377,6.9612,76.2097,79.8942,4.3814,74.386,81.1429,2.3866,95.7143,4.6729,1.3892,1.0805,2.2762,9.2991,6.022,15.982,64.1243,78.5211,0.6768,0.6887,15.8879,2.7778,89.648,81.746,84.2857,91.4286,11.0741,1.8404 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K84624,Oak Tree Health Centre,7403.358216,7.7228,76.3547,80.8989,2.9031,78.7472,77.5862,1.3806,98.4,3.0637,1.0969,0.331,1.6024,7.8466,5.4566,10.714,68.2281,86.0927,0.3593,0.5863,14.0623,0.3398,87.348,86.087,89.7059,95.5882,10.366,0.9645 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82001,Rectory Meadow Surgery,9650.230786,5.998,77.6882,77.6515,5.5608,75.8503,78.1116,3.2085,92.8571,2.235,0.8186,0.5457,0.9244,6.1415,5.0707,14.3771,74.347,85.7456,0.2917,0.7245,5.3124,0.4214,87.5743,82.6087,88.4615,93.5897,7.4588,1.8818 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82004,Amersham Health Centre,11663.14768,5.3972,76.8831,77.0073,4.2755,66.0377,76.5625,2.394,93.913,2.3838,0.9197,1.011,1.0203,5.9681,5.3378,11.5136,72.0812,83.4061,0.3089,0.5687,8.8953,1.1893,87.8886,89.375,87.2549,93.1373,8.9826,1.4322 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82006,Iver Medical Centre,8960.869078,5.5013,68.1818,72.3502,3.8139,66.7742,71.5847,3.2016,87.3563,4.3205,1.4074,0.6554,1.6988,12.3707,8.7766,16.3408,70.2838,79.5666,0.4297,0.7091,12.6672,0.5663,89.0162,89.1089,79.0323,91.9355,12.2025,1.6975 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82007,The Swan Practice,27216.04308,6.599,75.0992,80.086,3.7478,71.5778,77.2047,2.8125,93.3824,3.2856,1.2163,0.7694,2.3756,10.5846,5.769,15.087,57.1543,78.4694,0.4405,0.6832,9.0594,0.7458,87.9716,80.0459,81.1765,87.451,9.9457,1.4844 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82008,The Hall Practice,9508.921009,5.8976,76.3158,75.8197,4.9315,63.8158,72.3005,4.4227,95.3488,5.3494,0.8708,1.4775,1.6763,6.1231,5.594,17.8865,67.656,79.1829,0.1859,0.5969,7.7283,1.0964,85.9831,82.5843,80.7229,83.1325,6.3612,2.2603 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82010,Tower House Surgery,8515.367002,5.566,67.6856,81.8713,2.7437,60.0509,66.6667,2.374,91.3979,3.6278,0.6032,0.4281,1.3238,13.9558,7.0551,12.5024,55.1174,80.9091,0.7005,0.7784,11.0998,1.4897,77.3713,84.0491,76.699,85.4369,13.7799,1.3816 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82011,Millbarn Medical Centre,7737.985308,5.1312,74.2188,78.866,4.5094,68.1967,77.2222,2.6622,92.5532,2.8791,0.8584,0.6085,1.9147,6.063,4.4319,12.9632,65.5405,77.3771,0.3912,0.7063,6.7366,1.3393,89.3814,76.6355,86.7925,94.3396,8.5605,1.8038 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82012,Highfield Surgery,6834.220899,7.1343,79.0262,83.8323,5.3282,76.6667,75.5556,3.5379,100,2.6396,1.2788,0.6962,0.6064,3.405,6.1016,17.2208,35.2349,52.8302,0.5683,0.4689,8.1684,0.4415,88.1518,80,83.6066,93.4426,9.0594,2.2734 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82014,Oakfield Surgery,5820.956525,7.3296,71.9101,75.188,3.9814,68.2796,76.2295,3.4299,94.9153,6.0337,1.4133,0.5343,1.1894,12.7118,8.6372,16.2875,53.4884,76.1682,0.293,0.6377,10.878,3.0098,86.6002,89.6774,85.5263,88.1579,11.0497,2.0683 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82017,Desborough Surgery,11826.91042,6.4067,69.5652,71.9512,2.6953,57.5697,71.831,2.2856,89.8089,1.3365,0.8913,0.6325,0.3063,11.2267,6.775,12.4919,67.4365,81.0934,0.5391,0.7763,12.0011,0.426,85.3774,87.5676,84.7826,91.3043,13.511,1.6244 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82019,The Mandeville Practice,15467.64791,6.3734,65.2055,66.3121,2.4983,53.0547,64.9606,2.1749,89.5349,1.5918,1.4013,0.3741,1.1026,17.7623,7.8793,13.5058,59.6697,74.7036,0.837,1.1223,11.0512,1.4201,83.3129,83.6283,75.8427,86.5169,17.5541,1.2872 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82020,Chiltern House Med Centre,5759.098559,5.9257,63.9785,71.3178,3.3904,55.6098,71.3043,2.5908,65.7895,3.5357,1.1674,0.6717,1.2106,11.7999,7.3287,15.4326,69.8187,78.7565,0.7197,1.0715,9.0507,0.4401,89.9662,81.1024,69.863,78.0822,16.5346,1.5673 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82021,The Cross Keys Practice,15595.08994,7.4176,78.057,78.4653,5.7317,76.4128,81.0127,4.2068,92.6667,6.9748,1.4313,1.1704,1.1026,7.7174,6.476,19.2884,61.4077,75.6193,0.4815,0.7558,8.4858,3.4726,89.6183,81.7276,78.6207,88.2759,8.9089,2.488 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82022,Kingswood Surgery,9088.491485,5.3387,63.3333,70.0565,2.7518,63.0208,72.2581,2.2787,89.6825,4.4401,1.2262,0.4345,3.099,15.328,7.5575,13.0829,68.9655,83.4821,0.6179,0.8593,12.6042,1.3482,83.4631,80.7107,83.1776,90.6542,14.6996,1.4193 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82023,"The Doctors House, Marlow Medical Group",25723.8709,5.7415,75.625,82.2747,4.9485,74.2444,77.3973,3.3968,94.1799,4.4525,1.2289,1.1628,0.7643,7.9372,5.4254,15.4506,68.6707,78.8177,0.3412,0.6896,7.9888,1.2541,83.9547,84.9515,75.1196,85.6459,9.9558,2.3367 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82024,The New Surgery,10640.04937,6.2037,72.6496,74.359,4.7933,68.9266,74.6269,3.0278,90.5983,4.0663,1.2989,1.1434,1.7609,11.6546,7.1388,15.2397,66.1648,88.8614,0.6129,0.9148,8.1673,1.7683,82.2792,85.0679,78.7611,87.6106,13.2675,1.9118 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82028,Haddenham Medical Centre,9030.322242,6.2765,80.6154,84.0909,4.7866,78.4768,78.3784,2.901,91.2281,2.0079,1.1397,0.9117,0.6077,6.6568,5.4315,14.9192,57.4591,74.5636,0.3523,0.6113,5.9577,0.6452,85.9173,88.3929,79.1045,86.5672,9.0534,1.9478 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82029,Cherrymead Surgery,10341.41739,6.3471,77.551,78.3898,4.6457,73.6715,77.4869,2.9595,86.1789,1.1157,1.3788,0.4654,1.792,11.4406,6.4997,14.2619,70.9135,86.9681,0.4391,0.5181,14.4145,0.721,83.1781,87.6623,84.7619,89.5238,13.3818,1.9408 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82030,Wye Valley Surgery,10501.15925,5.6239,62.9032,63.7363,2.6974,48.0549,63.5838,2.1889,78.1513,4.364,1.0255,0.9393,1.1135,16.3848,9.029,12.5043,59.135,73.2704,0.586,1.0858,11.2248,0.6368,77.5646,81.3853,78.5714,88.3117,17.064,1.3444 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82031,Threeways Surgery,5890.366252,7.0104,77.451,73.3766,5.0523,79.1444,83.3333,3.6525,90,6.5019,1.5768,0.9493,0.8517,9.637,7.6861,15.7522,63.4318,82.8358,0.7401,0.5953,9.3685,0.8494,92.8241,87.0229,80.303,90.9091,8.5971,2.2204 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82033,Burnham Health Centre,19652.91823,6.4484,70.9836,73.2877,3.9423,69.2668,77.8364,2.7627,93.7824,2.6045,1.34,0.833,1.4105,14.325,7.6774,14.1756,68.0697,82.6152,0.357,0.8019,10.641,0.4896,87.2494,85.8025,77.2727,90.9091,14.0168,1.759 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82035,The John Hampden Surgery,3189.869521,5.3649,81.5385,81.9149,5.8345,82.4074,82.5,2.9308,86.8421,2.6474,1.194,0.6784,0.2118,4.9145,5.2632,13.7856,72.4868,85.3846,0.6784,0.8413,6.4596,0.743,89.4848,82.0513,87.5,93.75,6.2023,1.7096 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82036,Riverside Surgery,10380.67683,7.6813,67.7083,76.0976,2.9175,57.8005,65.8537,2.9271,92.1053,5.0452,1.2244,0.44,0.7696,15.4496,10.1952,14.6164,68.6978,78.4849,1.1479,1.0809,10.7012,0.7788,86.6863,85.8553,87.1795,91.0256,15.5199,1.6453 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82037,Water Meadow Surgery,13196.17777,7.8543,75.0588,75.4045,4.2389,70.6667,75.1852,3.0087,91.2698,2.4698,1.2672,0.83,0.4921,10.7994,6.7911,15.3105,64.2998,80.7339,0.5484,0.9041,9.3222,1.5566,89.6825,82.3834,82.3077,86.1538,12.1517,1.8749 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82038,Poplar Grove Practice,22713.0614,6.2954,70.8943,72.3077,3.2805,61.8721,68.75,2.958,86.9565,1.698,1.4747,0.4815,1.9764,13.5252,7.5027,14.3041,49.8719,62.7946,0.6621,1.2769,11.7415,0.5238,82.0362,86.2857,75.9184,87.3469,14.9859,1.5693 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82040,Whitehill Surgery,14139.97119,5.9599,67.7215,66.8085,2.4789,61.9211,72.6852,2.0463,89.1192,3.114,1.1399,0.5905,0.8214,17.0377,7.6424,11.8451,59.874,81.1448,0.618,0.927,11.4361,0.3377,87.6589,84.5494,81.6456,88.6076,16.2829,1.1536 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82044,Carrington House Surgery,8756.635761,6.4034,70.0483,69.1358,2.3517,68.046,70.7483,2.0227,86.2595,2.308,0.8226,0.5032,1.1925,13.6504,6.702,10.1326,56.1916,82.199,0.6,0.9678,9.7961,0.2548,88.4124,88.6076,81.0526,87.3684,12.2827,1.1226 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82045,Southmead Surgery,6725.185228,6.2183,77.1084,81.9209,5.0523,73.2673,81.3793,3.7311,93.5897,5.8781,1.0889,1.5389,1.1937,8.7817,7.3836,16.7393,66.7883,83.9879,0.2904,0.7404,9.622,1.3041,88.2598,83.0882,91.5493,95.7746,9.4336,2.5116 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82046,The Simpson Centre,15252.54285,5.5434,77.1475,78.458,4.6092,71.243,78.7879,2.8155,94.2857,3.5226,0.9186,0.8316,0.9739,4.5663,4.8522,14.0233,66.7198,77.5862,0.2718,0.6468,6.0506,0.8409,82.604,81.3636,80,88.8,7.3966,2.0491 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82047,Unity Health,20789.11901,7.2865,79.1262,80.1802,5.1154,78.8546,80.9422,3.1305,97.2973,2.9797,1.3204,0.529,0.9951,7.7299,6.1489,16.1989,75.0704,83.1214,0.3104,0.6034,7.4465,1.9159,89.2524,82.3188,92.0398,95.0249,9.4679,1.8232 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82048,Stokenchurch Medical Ctre,6592.524607,7.3803,78.8845,89.7143,4.3937,80.6122,81.7518,2.5531,90.5882,2.3239,1.6922,0.9797,1.227,10.2814,7.5894,17.7972,78.9588,83.7545,0.6086,0.4453,15.3002,0.776,91.8903,85.4546,89.4737,96.0526,11.5543,2.464 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82049,Hughenden Valley Surgery,11571.30617,8.4769,79.9574,83.9117,5.3819,73.8739,77.4436,3.6935,97.2973,6.1703,0.9092,0.7955,1.1965,4.1746,5.7567,17.9966,73.1334,84.6154,0.3085,0.4059,7.1492,1.2921,89.2647,87.0647,90.625,93.75,6.9512,2.2404 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82051,The Misbourne Surgery,10427.20225,5.9707,77.7778,80.678,5.3388,74.8322,79.8354,3.3488,93.4783,4.8106,1.2712,0.7539,1.2843,4.3493,5.8243,17.726,65.1648,70.8411,1.0432,0.6312,6.7262,2.3687,86.7267,79.8851,81.0526,89.4737,8.4332,2.0952 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82053,Priory Surgery,11755.19066,6.0482,65.1316,79.0698,3.2393,59.1324,68,3.0306,83.9286,5.0473,1.3274,1.0686,1.7876,14.178,7.964,13.4246,71.7866,84.6361,0.9351,1.2523,9.9895,0.9022,83.6564,88.3212,79.5775,92.2535,15.8541,1.7616 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82055,Denham Medical Centre,11032.24646,6.8336,69.7479,75.5274,4.125,76.5896,80.102,3.7058,91.4729,5.8493,1.5909,0.905,0.8254,12.3485,8.7661,16.8048,61.9263,82.5287,0.4954,0.8098,14.1388,0.3248,86.7178,87.3188,84.7826,90.5797,12.7125,2.1816 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82058,Gladstone Road Surgery,5221.650251,6.7189,66.25,73.6842,3.0905,62.9268,74.2857,2.2754,88.3117,3.2722,0.6962,0.2887,1.5698,11.7271,8.7872,13.4488,72.6368,83.0688,0.3906,0.7641,10.0376,0.826,86.1824,82.6087,89.6104,94.8052,14.4937,1.3924 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82061,Ashcroft Surgery,4142.07947,7.5502,76.3736,82.7869,5.2493,78.1955,82.3529,3.2945,100,6.2654,1.9328,0.3953,2.5445,8.4711,6.5428,17.9442,79.1667,93.7931,0.7907,0.4832,7.7975,2.3603,91.6315,85.8696,95.122,95.122,12.5207,1.8889 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82066,Bourne End & Wooburn Green Medical Ctr,13393.08086,6.8222,77.7344,79.8295,5.0109,75.9214,77.551,3.4251,92.4528,4.0576,1.1731,0.7748,1.9841,6.6615,6.1239,18.0449,52.1317,64.1628,0.5069,0.6662,10.8589,0.9356,85.4593,86.1925,79.0323,87.0968,10.2986,2.042 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82068,Waddesdon Surgery,4646.76898,6.9225,75,86.1111,4.329,81.7073,82.8125,2.6154,93.0233,3.1775,1.7677,0.5231,1.7703,10.9614,6.5068,15.404,75.6598,90.1163,0.2525,0.469,14.6618,1.7119,86.7405,81.3953,90,94,10.7548,1.425 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82070,3W Health,18567.29116,6.5705,78.2238,82.4057,5.1489,74.5387,77.1812,2.9928,87.3134,3.9518,1.4014,0.4877,1.0416,8.3612,6.4382,17.998,56.5942,70.1072,0.539,0.575,10.0688,0.5173,82.803,82.263,65.4054,86.4865,9.3046,1.7557 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82073,Westongrove Partnership,30194.157,7.3227,77.7568,78.0161,4.9586,74.7418,78.871,3.4213,88.3523,4.4728,1.3041,1.0586,1.4883,6.443,6.3148,15.4219,55.0361,77.085,0.3989,0.6904,8.4324,0.9918,86.6552,76.908,74.8175,86.4964,9.0663,2.0773 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82078,The Allan Practice,8587.633146,5.5842,75.8209,78.1513,5.0596,68.2759,79.602,2.872,93.4066,3.6824,0.985,0.788,1.0229,6.1576,5.2605,15.5832,70.0751,78.2609,0.2488,0.5702,7.0707,1.2506,81.2088,82.0144,72.3684,90.7895,8.2308,1.5552 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82079,Edlesborough Surgery,8695.769679,7.4933,80.3324,78.1893,5.535,75.8333,82.9146,3.871,85.8974,4.856,1.7102,0.5662,1.3035,9.9922,7.6282,19.0894,74.0596,85.3723,0.2427,0.6702,11.8035,1.2178,86.3171,83.8542,88.7755,93.8776,9.2417,2.184 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82603,Cressex Health Centre,10532.97025,6.9034,57.5758,76.0479,2.302,66.5899,75.4839,3.1448,90.8397,3.9459,0.7794,0.6344,1.6076,15.9691,11.1869,11.4827,65.782,82.0755,1.2779,1.015,13.7377,0.9469,90.4471,89.1803,86.2857,92,15.4425,1.5316 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82618,Prospect House Surgery,2783.724627,6.6884,79.2,78.8889,3.4181,77.451,78.9474,2.2881,90.4762,1.5173,0.8757,0.4237,0.7587,5.6498,3.9474,12.4294,66.9841,74.4,0.2542,0.7627,5.5997,0.3901,84.3288,87.5,100,100,8.4608,1.6384 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K82621,Little Chalfont Surgery,3643.842982,6.8067,76.9737,77.6786,3.9436,78,82.8283,2.0133,97.561,3.1947,1.0585,0.3321,0.4682,6.2525,5.3057,12.8684,76.2527,86.3354,0.4359,0.6019,6.3894,0.5374,87.632,82.6923,91.4286,94.2857,7.9417,1.5774 "Buckinghamshire, Oxfordshire and Berkshire West ICB",Y01964,Berrycroft Community Health Centre,23409.02668,6.8698,65.4717,71.8072,2.4173,66.3053,75.8808,2.2469,92.3414,2.5292,1.214,0.607,1.8208,11.8531,7.7327,10.727,57.0564,80.7388,0.6744,0.8981,17.1805,0.8609,86.8314,82.5175,86.2069,92.069,16.4313,1.0152 "Buckinghamshire, Oxfordshire and Berkshire West ICB",J82054,Kintbury & Woolton Hill Surgery,8588.98282,6.689,79.558,79.0514,5.5432,74.6212,77.4038,3.0313,97.0149,6.1391,1.1871,1.0705,1.3146,9.6509,5.4086,17.3291,63.0225,85.1662,0.371,0.7101,11.1476,0.6874,82.8107,85.6287,90.6667,94.6667,8.7413,1.8866 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81002,Eastfield House Surgery,12964.92401,5.7462,72.0867,72.7612,3.0437,60.4878,71.4286,1.7755,90.3743,4.227,1.2487,0.4488,0.9017,11.858,6.0774,10.3928,55.4273,77.592,0.7024,0.8975,13.9631,0.5034,74.0275,87.5,82.5397,91.2698,15.0588,1.2747 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81003,Swallowfield Medical Practice,12436.87161,5.6171,73.9234,80.5921,3.7011,72.213,74.2537,2.0337,93.9394,4.2219,1.099,0.5684,0.9904,7.7357,5.6535,12.076,67.4084,79.6875,0.2969,0.5495,6.4378,0.6464,74.1197,81.5315,74.5902,90.1639,10.6981,1.3263 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81004,Tilehurst Surgery Partnership,15663.13238,8.5514,76.5458,77.8125,4.5594,73.6515,75,2.7848,87.1622,8.6457,1.6313,1.6654,2.4011,15.9689,8.2908,18.3878,67.8315,79.1736,0.8805,0.9897,17.4901,3.2612,88.3398,79.8387,71.1111,91.1111,12.9665,1.9862 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81007,London Street Surgery,5341.874683,3.9383,55.5556,55.2632,1.0644,53.9063,66.1538,1.4249,83.0189,3.5634,1.1674,0.2232,0.4096,21.4976,6.4909,9.9056,64.3585,83.7209,0.4464,0.9957,7.4544,0.1386,73.5447,91.4894,75.4098,86.8852,15.2229,0.824 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81012,The Boat House Surgery,10464.97507,8.1311,80.6818,82.9032,4.7368,75.2841,79.6935,2.4424,92.6316,3.9524,0.847,0.6579,1.7247,7.0105,5.5213,13.7418,54.2122,70.6941,0.7155,0.6826,6.5496,0.6823,80.7141,85.4651,86.1702,92.5532,7.297,1.9161 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81014,Balmore Park Surgery,17964.59352,7.436,78.1411,77.381,3.6314,72.6531,74.5501,2.1259,93.2692,4.5664,1.1063,0.7551,1.5078,9.4662,5.965,13.9676,66.7902,75.302,0.582,0.9187,8.4707,0.3624,85.1836,83.1615,84.6591,90.9091,9.807,1.4958 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81017,Falkland Surgery,14129.35456,7.8719,76.3103,78.8344,4.252,72.25,75.7353,3.0301,98.3333,5.1084,1.6316,0.9465,1.5097,10.4638,6.8321,16.775,60.9091,73.6585,0.5651,0.9112,12.1127,0.431,79.082,88.0658,84.507,94.3662,12.43,2.1119 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81022,Wokingham Medical Centre,24210.03706,6.3405,76.5265,78.8868,3.9928,70.6432,74.1201,2.3294,91.0569,4.9034,1.0691,0.9803,1.2854,5.982,5.4542,12.6716,68.8028,81.7935,0.3996,0.6455,8.3011,1.6039,73.1671,75.827,80,85,11.3484,1.7214 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81025,Finchampstead Practice,14805.90506,6.5774,80.2269,83.9907,4.2666,75.5633,79.3194,2.1524,95.4546,3.8927,0.8119,0.7247,0.7577,5.8535,5.628,12.1404,49.5402,57.9918,0.5558,0.5177,5.693,0.2894,79.872,73,73.7931,73.7931,6.1722,1.3568 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81026,Chatham Street Surgery,7321.761291,5.15,65.0307,67.2414,1.6547,67.7019,81.1321,1.4238,89.0411,1.3972,0.6157,0.3207,1.1774,23.5282,8.7382,12.8784,74.9433,84.4262,0.5259,1.0647,10.8634,0.0494,91.7628,90.2913,93.3962,93.3962,14.7018,0.8722 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81027,Mortimer Surgery,10480.59144,7.12,76.7624,82.6568,4.2641,75.9868,75.9494,2.8428,92.5,6.0427,1.8172,0.8186,0.886,9.7293,6.2082,17.6862,75.8875,86.6808,0.3239,0.5758,7.2581,1.3588,81.8632,85.9297,85,93,8.9778,2.0331 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81040,Milman & Kennet Surgery,19218.00687,5.2338,59.5186,63.2219,2.136,48.6945,64.3098,2.1013,77.7202,2.3292,1.6206,0.4213,3.0973,25.6348,9.0178,13.257,58.9023,77.4194,0.5253,1.1101,12.8388,0.3767,76.3958,85.8462,78.7234,83.6879,17.3987,1.0853 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81041,Emmer Green Surgery,10570.74592,7.0312,78.7115,80,5.1057,72.0548,74.8792,2.974,88,8.6909,1.3495,1.0916,0.939,8.0651,6.975,16.2971,67.3557,79.1075,0.404,0.7392,12.4031,2.7449,87.4135,83.5341,92.0354,97.3451,10.002,1.9598 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81045,Parkside Practice,14243.07527,6.0354,74.3405,78.3699,3.0106,60.7445,73.8983,2.1126,90.3846,3.8064,0.9325,0.6332,0.9063,8.5587,7.6724,11.6049,66.3539,77.8626,0.6735,0.7656,10.2258,0.8918,81.8686,84.1699,78.7234,87.766,11.5432,1.4506 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81047,Brookside Group Practice,23947.17207,6.5569,76.6345,82.3344,3.9429,67.3585,76.5455,2.4611,91.5556,4.7436,0.8976,0.6365,1.4589,4.837,7.6586,14.143,73.2712,85.5696,0.4341,0.643,11.2422,1.0626,81.2924,80.6216,89.6552,92.8161,7.8597,1.459 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81048,Long Barn Lane Surgery,8206.609746,4.6435,63.5359,64.7482,2.0848,54.7337,67.2131,1.8169,81.5534,4.6414,1.1414,0.5591,2.9084,29.6076,8.1775,11.7633,58.4884,81.3333,1.0016,1.0133,10.9102,1.6349,86.8087,83.6478,76.4151,86.7925,18.7579,1.2462 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81050,The Downland Practice,8826.985704,7.893,80.9019,83.9286,4.7367,82.7922,79.2969,2.476,85.8974,4.9793,1.4443,0.5024,1.2448,10.4263,5.3616,16.6682,71.6498,79.3566,1.0765,0.4755,11.7105,3.2184,84.6565,89.375,86.747,91.5663,9.7468,1.8749 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81051,Woodley Practice,11921.53049,6.908,72.5714,73.0769,3.3045,66.6667,72.5664,2.1382,87.4126,2.9228,1.3967,0.5112,1.7877,8.0786,6.6549,13.1318,63.5211,67.8218,0.5544,0.6335,9.7427,0.3507,79.8634,84.492,71.3235,86.7647,12.7707,1.3607 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81052,Lambourn Surgery,6213.228632,7.9643,75.9184,78.125,4.7754,79.096,79.5455,3.1836,95.3488,2.7925,2.5059,0.4571,0.6038,13.9567,6.2395,15.5083,56.6406,83.7963,0.2837,0.5989,14.1132,0.8144,84.62,89.8734,84.7458,86.4407,15.6353,1.6391 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81055,Wargrave Practice,7072.179392,7.03,76.3066,80.9045,6.3599,76.3033,78.4884,3.1799,93.5897,7.9809,1.2151,1.6158,1.2878,6.4819,5.1749,16.9338,72.1796,81.6121,0.3102,0.5558,8.744,2.037,83.801,82.9457,89.8305,94.9153,8.3669,2.4173 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81056,Westwood Road Surgery,4772.004627,5.9271,74.1935,73.5849,3.5431,73.5484,72.5275,2.6469,89.0909,6.6077,1.3547,0.5002,0.8845,15.2699,8.2649,15.5065,75.6228,80.2198,0.271,0.6044,15.9469,0.7878,89.0205,75.6757,90.625,93.75,11.8908,1.5215 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81057,Hungerford Surgery,7369.578383,6.9193,75.5245,78.4211,4.4685,75,76.1589,2.6922,88.8889,5.4438,1.7208,1.013,0.6255,11.0793,7.15,17.5271,72.2398,80.1282,0.5829,0.8188,11.9865,0.3167,87.2567,87.7301,81.3333,89.3333,12.8484,2.0677 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81062,Western Elms & Circuit Lane Surgeries,26631.79552,5.5771,68.1818,69.6721,2.7966,60.4111,69.8376,1.7823,86.3636,4.319,1.1929,0.3965,1.5278,21.475,6.9623,13.6224,59.6389,72.3315,0.4715,0.9286,10.0224,0.3148,83.5365,82.287,85.0174,91.6376,16.2027,1.2144 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81063,Strawberry Hill Medical Centre,20635.85977,6.5225,73.4884,77.2414,3.9028,68.1305,73.9837,2.1662,93.5345,5.5866,1.2487,1.3069,1.2793,12.0631,6.2149,14.358,78.4206,89.0476,0.5595,0.6624,10.4022,2.5845,81.1432,77.2846,82.5243,82.0388,13.8077,1.75 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81069,Loddon Vale Practice,13343.42145,6.8661,79.1919,79.646,4.2936,70.1835,78.0069,2.5898,93.6,3.7625,0.7906,0.6338,1.0277,5.4167,6.6472,17.0245,70.394,80.4839,0.4157,0.4294,8.0856,0.4443,86.6949,85.3448,86.3309,91.3669,9.5107,1.5811 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81070,Twyford Surgery,10245.17242,6.5981,78.9757,82.5279,4.1281,76.6304,81.0277,2.381,89.9083,3.1318,1.1783,0.5526,1.4726,4.7655,5.8542,13.3025,70.2568,85.5814,0.1788,0.5607,7.9851,0.1776,82.2752,87.5,82.5243,93.2039,8.0318,1.6009 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81073,Thatcham Health Centre,17199.44937,7.0419,75.9664,80.6373,3.8368,75.8204,78.2477,2.6086,93.1429,2.8638,1.7445,0.9945,1.572,9.5509,8.0274,15.4937,63.5176,77.2563,0.3967,0.7934,13.2117,0.599,84.4588,87.9195,85.3881,93.1507,13.9801,1.7282 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81077,Theale Medical Centre,10301.12501,7.5726,77.1739,76.6798,4.2673,76.455,78.7037,2.7528,92.8571,6.4618,2.0668,0.4722,2.5667,11.5758,7.642,16.3564,68.6667,82.7381,0.7216,0.6949,14.9387,1.8536,86.3555,81.4815,86.4,92.8,14.4028,1.559 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81078,Grovelands Medical Centre,14221.25117,6.3671,68.4932,75.1825,3.0538,68.1363,77.9167,2.2509,90.9091,3.8532,1.5125,0.681,1.3879,20.6684,8.639,14.8387,67.1975,79.6,0.724,0.8602,13.2122,0.7731,83.2185,86.0558,86.4407,94.3503,14.4424,1.7061 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81080,New Wokingham Road Surgery,7967.415392,5.6648,81.8792,78.673,4.7387,76.6667,82.4176,2.8771,94.382,5.5167,0.8779,0.8462,0.9822,6.4016,5.7317,18.8597,54.5875,68.7243,0.5289,0.4125,7.0641,0.9821,89.4635,85.5073,90.7895,96.0526,6.9018,1.8934 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81081,Abbey Medical Centre,2067.909099,3.6048,71.1111,74.0741,1.1746,68.4685,84,1.0936,100,1.5452,0.729,0.1215,2.1729,23.1922,6.1509,11.0166,81.4815,89.6552,0.162,0.8506,11.6852,0.5034,83.924,94.4444,91.6667,95.8333,13.9024,0.7695 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81092,Woosehill Practice,11661.80585,5.7368,80.6742,83.125,3.606,75.9328,81.2734,1.9118,90.5797,4.4208,0.8636,0.6988,1.459,3.9333,5.6361,13.1255,72.9448,85.3186,0.323,0.6263,10.5643,0.3715,87.6376,88.0208,80.9091,89.0909,7.5622,1.3514 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81100,Pembroke Surgery,4886.824025,3.6635,69.4215,77.0115,1.6028,48.4076,66.2921,0.7723,85.5073,0.7654,0.4663,0.3643,0.0534,14.2555,4.4726,6.9795,64.6081,84.4828,0.3934,0.8597,6.1944,0.1297,73.9766,74.2857,76.087,89.1304,14.3355,0.5683 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81102,Burdwood Surgery,8453.319036,7.4977,75.5486,82.2314,3.7774,77.2595,80.4878,2.251,97.3913,5.4759,1.3719,0.2512,1.9114,7.6599,7.4385,15.7666,68.0761,84.0376,0.1836,0.7053,16.7119,0.6158,86.5266,89.7143,88.0734,91.7431,11.4161,1.3719 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81103,Chapel Row Surgery,7014.131858,7.7649,77.8481,82.0276,4.8059,74.7826,78.1421,2.5571,96.4286,6.1271,0.9132,0.5251,1.8154,10.0618,5.4484,15.5251,73.8731,78.7546,0.3196,0.5594,6.9894,0.2984,80.8245,82.3077,85.0746,88.0597,7.7518,1.4726 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81605,University Medical Group,21533.90443,4.3493,72.9223,75.4209,1.7064,74.4454,80.6691,0.9806,92.2078,2.0134,0.6686,0.382,1.7998,15.619,3.9371,7.3923,63.1448,81.0458,0.3406,0.7259,8.6177,0.4247,85.2444,85.4251,86.7725,93.6508,8.43,0.6749 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81633,South Reading & Shinfield Group Med Prac,9939.646589,5.0083,65,70.0637,1.9638,64.8188,68.9655,1.6335,88.8889,4.2857,1.1693,1.3479,2.2089,20.0438,7.2912,11.9165,66.0617,90.1288,0.8212,0.7141,10.2281,1.6023,83.9221,82.2785,86.3248,91.453,17.2984,1.1693 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81636,Russell Street Surgery,7359.80349,6.3814,58.7879,63.1148,2.2678,61.8768,75.2137,1.6182,87.8505,3.0711,1.1738,0.2849,0.711,19.1768,7.6866,11.0427,63.0091,74.1177,0.7977,1.3219,6.8684,0.69,76.8166,88.5714,77.551,85.7143,13.7677,1.0029 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81644,Tilehurst Village Surgery,13832.98517,4.8961,68.5484,70.922,2.6608,59.962,69.17,1.8942,90.0763,4.9364,0.9376,0.4498,1.6455,14.0628,5.6539,11.1752,68.5393,77.6471,0.6589,1.001,8.36,0.5258,83.1027,92.0502,40.2985,65.6716,12.3474,1.2607 "Buckinghamshire, Oxfordshire and Berkshire West ICB",K81651,Melrose Surgery,13836.78849,3.88,61.2546,65.4822,2.0132,59.388,72.9282,1.5708,90.1554,3.4315,1.0451,0.3526,1.5518,18.471,7.8284,11.2842,67.7273,77.7273,0.4232,1.1861,13.3659,1.6602,87.0102,86.6936,87.0968,93.5484,14.5256,1.0258 "Buckinghamshire, Oxfordshire and Berkshire West ICB",Y02476,Reading Walk-In Health Centre,10109.53183,2.1798,61.2903,53.7037,0.6108,36.8895,55.3571,0.5398,91.3295,0.4876,0.4332,0.0639,1.1755,22.6244,4.2892,5.831,68.5161,91.3044,0.1847,0.5682,7.6186,0.2338,76.986,90,79.3478,86.9565,18.1324,0.3267 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence Black Country ICB,M87001,Meadowbrook Surgery,7038.200343,6.9347,77.1739,83.6257,5.1861,76.8786,82.0313,4.1399,95.6522,7.1022,1.6291,0.6875,0.6942,14.7989,8.2834,20.6397,60.7977,72.5213,0.8818,0.6726,8.1168,0.3293,85.6873,82.6816,78.5714,88.0952,9.3942,1.7935 Black Country ICB,M87003,Moss Grove Surgery,20038.05753,7.7402,77.6215,75.2437,6.0812,73.5537,73.4146,4.8723,96,8.0747,2.0515,0.7065,2.8086,10.8364,7.4537,20.0021,65.8966,76.7123,0.6385,0.6018,14.9458,0.3338,88.9924,83.1579,76.0181,86.8778,9.7346,2.4492 Black Country ICB,M87005,Three Villages Medical Practice,12997.18804,7.7733,74.8756,82.8467,4.6682,80.5677,80.6167,3.8495,94.3038,7.0169,1.9444,0.4487,1.9686,19.2722,8.1597,18.7515,77.8959,87.4,0.4408,0.7557,20.6023,0.3906,92.1798,87.931,92.2078,95.4545,13.4432,1.7476 Black Country ICB,M87006,Eve Hill Medical Practice,10176.56476,9.1147,68.4615,63.4146,3.804,71.7687,73.9394,4.259,90.3226,8.5461,2.4504,0.4901,2.4957,33.6706,9.8438,19.1949,69.7605,82.2007,0.5951,1.2252,25.4788,0.0925,90.9091,88.1919,95.2756,97.6378,19.5358,1.7736 Black Country ICB,M87007,The Ridgeway Surgery,12755.61545,7.23,71.5711,79.4425,4.5486,76.2319,79.6537,4.0327,95.1923,8.3781,2.184,0.7309,1.2946,22.1156,8.8991,19.2003,74.6177,91.1371,0.7051,0.7481,22.1345,0.3056,90.46,87.9195,86.9281,94.1176,12.9752,2.098 Black Country ICB,M87008,Kingswinford Medical Practice,8776.213022,6.9992,74.7541,75.6219,4.4304,77.9923,76.9231,4.8364,96.6292,9.0856,1.9226,0.6329,2.18,17.856,8.0631,20.5756,69.7692,82.8947,0.418,0.5613,21.1119,0.2157,89.3709,81.579,93.1373,96.0784,12.4982,2.3167 Black Country ICB,M87009,Aw Surgeries,18280.58144,8.3871,68.8288,74.2857,4.049,64.8746,68.3007,3.5971,90.8108,4.6254,2.521,0.3865,3.0559,27.0087,8.4268,16.1722,63.6565,74.8373,0.5054,0.9037,19.837,0.2153,88.0139,90.1841,100,100,15.8041,1.7005 Black Country ICB,M87010,The Waterfront Surgery,9431.700454,5.8795,58.8,66.4634,2.4287,65.4605,70.229,2.9189,86.7769,2.4682,2.4733,0.3342,1.5012,35.051,10.1632,13.7144,71.6886,74.7934,0.6016,0.6907,21.0162,0,88.3548,89.5604,86.8613,94.1606,23.5252,1.426 Black Country ICB,M87011,Lion Health,28411.31478,7.5422,74.4581,78.8489,4.7,75.9477,77.8986,3.9441,95.1456,8.0473,1.9774,0.5374,0.8864,15.8566,7.5273,19.9857,71.9604,86.6667,0.6233,0.7523,16.0685,0.5461,85.0376,82.7179,78.7692,89.5385,12.0443,2.1637 Black Country ICB,M87012,The Greens Health Centre,7458.571357,7.8475,62.4309,60.9023,2.1916,56.9672,63.3028,3.06,85.0575,3.4985,1.9573,0.3446,4.2549,41.0909,8.1512,13.315,59.1479,70.8333,0.51,0.7581,22.9009,0,85.174,89.6825,68.9655,87.3563,21.2989,1.2957 Black Country ICB,M87013,Horseley Heath Surgery,12308.65723,6.1592,61.5625,65.5462,2.8825,58.8972,63.5922,3.4362,86.3636,3.3624,1.8543,0.58,1.3019,31.8988,9.3684,14.0258,60.2996,77.7778,0.5097,1.0194,9.7702,0.2321,83.6324,81.8966,68.3871,76.7742,16.9389,1.7576 Black Country ICB,M87014,Lapal Medical Practice,7666.151043,7.8212,73.3813,73.913,4.6248,76.6537,78.4314,4.0015,92,7.0706,1.446,1.0097,1.6976,13.6783,7.51,17.3274,75.6214,88.9535,0.2992,0.8601,16.4928,0.1453,88.2023,81.7708,80.6452,94.6237,11.0593,2.0568 Black Country ICB,M87015,Lower Gornal Medical Practice,9289.532496,7.8985,69.5341,75.9162,4.7468,70.1754,67.8788,4.4042,88.1579,10.3634,3.1686,0.7585,3.2601,21.094,8.6617,22.5104,68.4921,83.6207,0.5016,0.6239,20.323,0.1291,88.8366,85.2713,70.5357,91.9643,13.6389,2.459 Black Country ICB,M87016,Woodsetton Medical Centre,7680.665914,6.3347,67.7686,75.4601,4.5338,75.3488,73.1884,4.119,87.5,6.9119,2.8747,0.6722,1.9545,23.3695,8.9154,16.5475,77.9499,84.5912,0.5006,0.8152,20.1315,0.0663,90.8151,82.8125,83.1579,93.6842,13.9299,2.274 Black Country ICB,M87017,Steppingstones Medical Practice,9646.051744,6.5893,57.5758,56.25,2.5977,48.0836,65.5738,3.8966,84.0426,3.7352,2.2671,0.3424,2.4142,42.6859,10.6034,13.7797,70.6441,84.0909,0.8384,1.1217,20.2855,0.1109,85.2163,88.4956,82.7068,88.7218,19.2049,1.3461 Black Country ICB,M87018,The Summerhill Surgery,10968.64437,7.2609,71.1382,72.6708,5.9868,76.9231,74.7967,5.763,94.1177,10.8951,2.9095,6.2806,2.1455,16.5366,9.2206,23.6397,66.2389,85.229,0.6994,1.3009,16.2588,2.9909,89.0562,73.5849,87.3786,92.233,9.5336,4.2523 Black Country ICB,M87019,The Limes Surgery Medical Centre,6588.407039,7.5837,59.9078,63.5714,3.492,48.5714,60.1852,4.7439,79.6875,4.9036,3.2944,0.4283,2.5852,29.0063,10.2813,17.7566,70.1213,79.5322,0.6095,1.0871,18.1371,0.6452,83.5106,79.7872,65.3061,76.5306,18.4758,2.0096 Black Country ICB,M87020,Feldon Lane Practice,9162.985581,7.564,73.5385,73.0088,4.1326,76.0943,80.9249,3.5908,95.3704,5.2139,1.5617,0.6693,2.8877,17.3353,8.4708,17.3271,57.8696,79.8928,0.5312,0.7118,20.6952,0.2558,88.1798,86.3208,87.931,93.1034,12.5824,2.0822 Black Country ICB,M87021,Coseley Medical Centre,8059.505754,5.3494,65.1584,65.4676,3.479,58.6873,68.6441,3.5586,84.9057,7.7976,2.0582,0.571,3.6216,30.9438,9.5197,18.7359,59.5005,76.8966,0.5046,1.0092,19.0955,0.1141,86.0324,85.3774,80.9524,88.5714,18.3886,1.5934 Black Country ICB,M87023,Wordsley Green Health Centre,10329.38525,8.0313,69.6875,66.5179,5.0828,71.2329,69.7802,4.2808,92.9412,9.2697,2.156,0.7187,1.5577,16.4053,8.163,20.3208,76.7218,88.1764,0.5,0.6562,17.3008,0.1178,91.0101,85.6604,87.931,97.4138,14.3107,2.3852 Black Country ICB,M87024,Wychbury Medical Group,24936.46314,8.5257,66.6667,67.1233,4.6674,66.8563,69.1139,4.4309,91.3223,8.5585,2.6906,0.5935,2.9701,26.1439,8.8357,19.0665,62.0887,79.6875,0.4908,0.9727,20.7626,0.1617,87.3199,85.5183,77.0764,91.0299,17.0842,2.0927 Black Country ICB,M87025,Cross Street Health Centre,6015.217313,7.4834,68.4932,65.0943,3.3156,60.6452,64.4444,3.8879,82.6087,6.9079,2.7827,0.3947,1.2652,40.7388,10.0149,15.8279,71.2662,83.3333,0.3552,0.8684,18.9018,0,85.9239,85.7143,71.4286,89.6104,17.8866,2.3288 Black Country ICB,M87026,St James Medical Practice2,6563.581001,7.551,65.0602,61.5385,3.3205,57.6355,65.6863,3.4882,67.0588,6.453,1.7441,0.4863,2.3763,36.4546,10.7319,15.3614,60.4082,87.8453,0.654,1.3248,22.8036,0.0994,91.0499,88.587,82.2917,94.7917,18.3206,1.5596 Black Country ICB,M87027,Quarry Bank Medical Centre,4854.834626,8.0772,66.9231,60,4.0541,73.6842,70.8861,3.9876,88.8889,7.7882,3.323,0.6868,2.124,27.8668,9.3907,17.5233,80,89.726,0.864,1.2627,21.4953,1.5513,89.2528,86.8421,91.8033,96.7213,22.3123,2.016 Black Country ICB,M87028,Anchor Medical Practice,8855.525602,6.8357,66.5236,64.7399,3.4825,76.1246,75.3521,3.674,86.5854,5.7962,2.1063,0.4428,1.5908,32.8658,9.0332,14.1216,68.421,84.3602,0.754,0.6702,21.7515,0.0701,90.6615,93.421,93.6937,94.5946,20.7424,1.5797 Black Country ICB,M87030,Pedmore Medical Practice,5274.841265,8.3273,69.6774,80,4.4694,67.6692,72.6027,5.3174,90,7.3534,2.7046,0.5501,2.1757,27.7899,9.8665,19.3903,78.754,90,0.4813,0.9626,18.5348,0.5081,89.6316,92.053,78.8732,92.9577,17.7476,2.1316 Black Country ICB,M87034,Clement Road Medical Practice,5521.237279,7.5911,64.8649,64.1509,2.5758,59.6154,65.1685,3.3117,84.5238,5.1523,1.3492,0.6133,1.7403,27.0647,9.7627,16.9441,67.205,82.7161,0.7535,0.9813,23.1051,0.2795,89.6177,84.507,79.7619,95.2381,16.5493,1.5069 Black Country ICB,M87036,Bean Medical Practice,3801.279356,6.1117,63.2911,55.9322,1.5183,56.0606,64.7059,2.2388,88.6793,4.5754,1.8013,0.1801,2.877,42.5946,8.9334,11.8888,61.1825,83.5616,0.6433,1.2352,20.5893,0,85.8974,95.8904,80.3922,84.3137,24.8826,0.9779 Black Country ICB,M87037,Northway Medical Centre,7615.341627,6.4521,78.5124,73.9645,4.7753,80.6034,80.4196,4.0262,91.9355,6.9147,1.8994,0.8427,2.6177,14.2802,7.3659,18.6731,80.2271,88.7906,0.4147,0.4815,19.8387,0.2121,92.2123,83.0303,92.9412,97.6471,10.8446,2.0466 Black Country ICB,M87041,Rangeways Road Surgery,6263.786648,7.6168,70.3297,71.5328,4.4467,81.7204,80.6723,4.1625,98.1818,5.7536,2.6413,0.8358,1.5009,19.2123,9.0499,18.0876,75.3041,90.3846,0.4012,0.6352,24.6613,0.1597,92.1099,88.1119,90.1235,95.0617,13.494,1.655 Black Country ICB,M87601,Keelinge House,8257.229319,7.0907,58,64.3478,1.9588,55.2529,68.2692,3.4029,84.7059,3.5598,2.2305,0.4289,0.9569,42.0608,9.0841,12.8682,50,70,1.0152,0.8007,18.6986,0.837,85.0822,86.7647,71.5909,87.5,20.1535,1.4155 Black Country ICB,M87602,Halesowen Medical Practice,9776.593705,7.7395,74.2947,70.354,4.3622,78.5256,77.3684,3.9828,92.1348,8.5846,2.236,0.9882,2.5667,17.0816,7.442,19.3951,71.5559,92.1488,0.3094,0.6788,19.4742,0.2348,90.8389,87.6033,82.7273,92.7273,12.3734,1.9565 Black Country ICB,M87605,Central Clinic,4273.149896,4.914,51.2195,45.7627,2.1027,61.3924,61.4035,2.7809,74.0741,4.062,1.56,0.1809,1.0543,41.2967,9.0164,10.4906,56.9975,77.4648,0.52,1.0174,16.155,0.1765,82.807,82.5581,75,66.0714,22.3075,1.2435 Black Country ICB,M87612,St James Medical Practice1,2688.712773,7.2115,62.1951,62.069,3.4554,58.9041,62.2222,4.2781,90.9091,8.1151,1.9745,0.4525,0.2568,35.7547,10.5023,15.1789,49.026,81.9672,0.6993,1.3986,19.5172,0.1054,86.8101,83.75,82.0513,94.8718,16.4201,1.6454 Black Country ICB,M87617,Links Medical Practice,6121.412516,7.0005,67.2414,59.0361,1.6712,64.898,73.6111,2.6836,92.7928,4.6365,1.5105,0.241,2.7684,37.0492,9.0189,11.9878,74.159,83.6957,0.7874,1.157,23.6552,0.2786,89.0572,92.9134,88.75,97.5,20.6083,1.157 Black Country ICB,M87618,Quincy Rise Surgery,2547.146258,6.5979,69.8276,74.0741,3.4652,78.481,79.7101,3.3252,95.2381,8.1301,1.0501,0.42,3.0809,15.1405,6.7682,18.7609,74.8441,81.8182,0.42,0.49,16.8592,0.159,87.037,82.9787,68.75,87.5,11.5746,1.3651 Black Country ICB,M87620,Castle Meadows Surgery,5500.727002,7.2285,68.3616,70.5882,2.9014,68.6192,79.661,2.7479,85.3659,4.3987,0.9057,0.1535,2.4818,18.1065,6.672,13.5401,58.052,77.6786,0.3377,0.7522,13.64,0,84.6029,98.0583,75.4098,91.8033,15.9659,1.4891 Black Country ICB,M87621,Bath Street Medical Centre,3002.044335,6.8079,60,65.1515,2.6827,64.4444,65.3846,3.5651,87.8788,5.5457,2.6827,0.2118,2.7507,27.9036,10.8392,15.2842,63.0728,79.0323,1.2354,1.9767,23.8243,0.093,88.3589,80.4878,76.087,91.3043,19.9431,1.659 Black Country ICB,M87623,Alexandra Medical Centre,2829.625538,7.6116,62.0253,55.102,2.3401,59.434,75,3.0889,90,4.2571,1.4665,0.468,2.8949,26.8583,11.3192,13.6662,70.6494,81.1321,0.8736,1.1545,22.6905,0.3409,90.2462,95.946,84.6154,96.1538,15.4163,1.1232 Black Country ICB,M87628,Chapel Street Medical Centre,4501.563774,4.7546,34.5455,41.3793,3.9352,33.3333,57.6923,5.3241,79.4118,14.6148,2.1123,11.6319,1.8882,37.1979,14.5353,19.9074,63.4615,81.9149,1.331,2.0833,14.577,2.6428,87.363,72.067,38.6667,76,15.1265,4.4271 Black Country ICB,M87638,Thorns Road Surgery,4069.051682,6.0044,74.0157,67.5,3.9804,71.0744,77.2727,4.0837,81.579,9.3851,2.7914,0.5945,2.6861,24.2408,9.2122,18.6353,81.3653,83.2402,0.4135,0.9305,20.8414,0.1856,92.3077,85.5769,56.3636,94.5455,16.9654,1.9126 Black Country ICB,M88001,The Village Medical Centre,11628.06213,6.701,58.8015,61.3065,2.3642,69.382,69.8795,4.8066,82.5,3.6143,3.8003,1.3873,0.4749,42.4674,10.6532,16.1,66.1458,80.2632,0.889,1.0844,12.4126,0.3392,90.9257,89.6797,71.7791,91.411,22.1055,1.9637 Black Country ICB,M88002,The Smethwick Medical Centre,9707.651393,5.928,60.804,66.443,2.2844,60.4167,66.4179,2.8529,78.4,4.02,1.6624,0.4397,0.5961,37.1773,10.6174,12.7842,77.9695,75.8454,0.74,1.2977,10.9648,0.3218,86.2437,88.5246,88,92.6667,12.8195,1.6409 Black Country ICB,M88003,Warley Medical Centre,12701.2169,7.5885,68.7003,77.4908,3.3631,68.0217,66.6667,4.5181,85.9649,5.2157,2.5478,0.6369,0.7942,26.9953,10.7271,17.6391,63.3072,84.7619,0.4926,0.5775,14.2842,0.4449,86.2209,88.2857,76.5625,91.1458,12.2624,2.259 Black Country ICB,M88004,Regis Medical Centre,44652.66284,7.0484,63.9157,60.0246,2.7859,63.8191,68.1009,3.4487,85.4911,7.4442,2.0269,0.8189,0.9487,33.2831,10.2602,16.3909,64.2714,81.1947,0.5212,0.9198,16.2482,0.5313,88.1195,83.1645,77.4295,85.5799,17.5583,1.6835 Black Country ICB,M88006,Cape Hill Medical Centre,12781.02709,7.3882,58.6538,68.6391,1.8798,52.3256,73.2919,2.7785,85.3333,4.2349,1.2779,0.8492,2.1909,39.8808,10.7052,12.8947,62.5474,85.7143,0.6431,1.5418,15.6861,0.6347,88.2679,84.8943,85.1064,91.4894,14.5476,1.3934 Black Country ICB,M88007,Oakeswell Health Centre,11200.90421,6.8421,65.5172,73.4884,3.3783,63.6964,70,4.2847,92.2222,3.7211,2.9869,0.7004,1.7434,35.8497,10.1039,16.9636,71.0834,84.8901,0.7725,0.8652,17.1871,0.3428,86.8909,87.4525,74.6667,90.6667,16.8934,1.9982 Black Country ICB,M88008,Stone Cross Medical Centre,5656.198572,6.3907,62.4277,65.4867,3.1941,69.9422,81.7204,4.1013,91.8367,7.0771,2.7027,0.567,0.1887,35.8518,10.2904,18.4464,76.3427,83.5052,0.3969,0.6048,18.9903,0.0502,92.8635,83.1169,91.4634,90.2439,16.0775,1.9467 Black Country ICB,M88009,Norvic Family Practice,9912.162973,7.0762,61.1354,64.2857,1.9911,54.0785,64.8485,3.0385,45.7944,2.8441,1.9703,0.6741,1.1099,37.2424,11.0353,15.825,54.7791,74.7331,0.5911,1.0267,10.4745,0.6008,87.221,86.1751,75.625,84.375,19.3317,1.4207 Black Country ICB,M88010,Swanpool Medical Centre,10417.64962,6.0388,60.274,62.4242,2.8835,63.3117,66.4384,4.1901,90.5172,6.5946,2.7822,0.428,0.4417,46.9578,10.2246,15.7581,64.3761,77.4744,0.5407,1.025,19.7685,0.2098,90.4278,95,72.9323,93.2331,22.6435,1.6445 Black Country ICB,M88013,Black Country Family Practice,17399.29306,7.4831,57.8049,68.6007,2.6525,66.9388,67.7291,3.9856,79.1411,6.9935,2.2104,0.9118,1.0184,38.6672,11.0855,15.832,69.0078,83.9357,0.5871,0.9256,17.9704,0.704,89.3289,84.0959,87.234,91.0638,18.0101,1.7683 Black Country ICB,M88014,Dr Gudi Pv & Partner,6381.720643,4.136,60.274,61.6162,1.7782,59.0517,66.6667,2.9949,86.3636,5.0922,2.0746,0.39,3.4282,35.7607,12.2437,14.6779,54.1457,77.931,0.3276,1.2323,17.0409,0.053,89.5788,87.027,48.7603,85.124,16.0942,1.2011 Black Country ICB,M88015,Great Barr Practice,9803.989792,5.4136,63.2302,65.5172,2.5844,60.6205,66.1972,2.7195,76.5957,3.6075,1.0626,0.5583,1.3442,20.7252,8.8572,14.1828,40.9849,62.3418,0.2521,0.8195,5.6066,0.0792,78.288,83.4043,50.6494,85.7143,12.2507,1.2697 Black Country ICB,M88016,Old Hill Medical Centre,2972.35326,7.0138,60,64.1026,2.1883,68.0851,74.2857,2.3837,93.0233,6.0465,2.4619,0.6643,1.8605,33.2662,10.4326,14.1462,73.3813,86.9048,0.6643,0.9769,15.1421,0.995,90.3766,87.3239,82.5,97.5,22.2965,1.2896 Black Country ICB,M88018,Oldbury Health Centre,22519.10147,6.5724,63.3394,72.1429,2.8507,60.9788,72.2063,3.6371,74.5614,5.187,1.9239,1.0766,1.0325,33.8283,10.1197,14.2162,57.8486,77.4194,0.5992,0.9175,16.9477,1.3181,89.0961,84.4051,77.7419,87.0968,18.2267,1.4932 Black Country ICB,M88019,Bearwood Road Surgery,2624.086867,3.656,59.322,56.7568,1.5321,51.6393,62.5,1.7236,81.25,0.4963,0.7341,0.1596,1.5302,33.0281,7.0204,9.9585,80.0766,92.1569,0.1915,0.9576,13.0273,0.2618,83.7281,87.8788,87.8788,90.9091,18.8425,0.6065 Black Country ICB,M88021,Scott Arms Medical Centre,10868.33072,6.0256,71.1957,67.0683,3.4076,65.3409,74.0196,4.1678,73.7864,6.4627,1.3595,0.9033,0.9977,18.1376,9.3958,17.5119,61.5385,77.7978,0.5813,0.7155,8.8349,0.7577,84.7654,85.6655,69.3252,84.0491,10.7396,1.9408 Black Country ICB,M88022,Jubilee Health Centre,4589.115978,6.8927,59.1549,67.4157,2.6323,67.9612,68.5714,3.9085,91.8919,3.634,3.0045,0.9306,0.8589,36.1377,11.7781,19.3831,71.8532,67.5159,0.6115,0.6647,13.776,0.185,88.0229,83.8095,76.7123,94.5205,12.5953,1.941 Black Country ICB,M88023,Tame Valley Medical Centre,6165.90298,5.9574,60.9589,66.6667,2.3496,72.1951,75.8621,3.6823,92.4051,4.4008,2.5425,0.526,2.2472,42.3555,9.6967,13.6069,61.912,76.0684,0.754,0.7891,13.4363,0.4627,85.8245,83.5821,63.8554,87.9518,22.1995,1.5957 Black Country ICB,M88026,Portway Family Practice,5797.046857,5.2673,67.2,63.3333,1.6217,72,74.0741,2.5383,87.0968,4.0317,1.798,0.3173,1.3199,33.1426,8.475,12.5507,62.5807,79.3478,0.7932,0.5288,14.0629,0.0681,88.6174,88.7851,83.5821,91.0448,18.2911,1.1634 Black Country ICB,M88030,Church View Surgery,7773.54988,10.5424,67.5127,68,4.7711,71.7277,70.9677,4.9478,94.3396,8.1177,3.5502,0.8032,2.2516,32.3341,10.7554,19.7108,61.349,72.0137,0.5623,0.6265,17.8945,0.5549,89.8806,91.2844,75.9615,85.5769,17.9892,2.2169 Black Country ICB,M88035,New Street Surgery,3961.829403,5.2541,60.4167,58.5714,1.8923,61.5942,74.1379,2.6119,92.5,2.5201,2.1855,0.6397,0.63,37.465,10.3709,16.4446,66.8593,90.8163,0.6397,1.1727,13.1957,0.3376,87.9004,85.7143,57.377,88.5246,17.8026,1.5725 Black Country ICB,M88038,Linkway Medical Practice,16280.30766,6.2538,62.3472,62.585,2.053,57.9957,67.6471,4.8408,83.4483,6.3266,2.0746,1.1382,1.0057,39.4701,12.6327,19.4785,63.0899,80.131,1.2318,1.8369,15.2862,0.5312,87.7452,84.6743,79.0441,91.1765,15.9442,1.9306 Black Country ICB,M88040,St Paul's Medical Practice,6571.844658,5.2995,50.6329,57.5758,1.4908,60.4762,70,3.3579,92.4051,4.6154,0.7816,0.5066,1.3736,37.7576,14.2471,14.5752,61.7544,71.0526,0.7382,1.129,14.7253,1.0989,85.2848,88.2813,63.9241,86.7089,8.3132,1.4619 Black Country ICB,M88041,Hawthorns Medical Centre,3109.348289,7.6639,50,62.5,1.4497,56.4885,69.0476,2.5583,85.3659,4.3716,0.9949,0.2558,0.2342,41.2742,14.3457,11.3701,57.1429,88.3721,0.4264,1.2223,13.388,0.1344,79.6185,96.4602,91.8919,91.8919,18.3157,1.3928 Black Country ICB,M88042,Bearwood Medical Centre,4333.853877,6.3101,58.2524,65.3846,1.3266,67.2489,75,1.6256,75.9259,2.6386,1.0463,0.355,1.8882,26.842,7.5952,11.9395,77.425,84.7222,0.3176,0.7847,13.7981,0.3639,85.7465,88.4615,84.127,93.6508,18.4333,0.9903 Black Country ICB,M88043,Haden Vale Surgery,7138.411677,7.3228,72.4868,69.2857,2.4542,77.0073,81.0345,3.1186,90.8257,4.6884,2.1288,0.7322,1.6536,27.5707,8.3855,14.1017,74.6217,85.6354,0.5695,0.6509,20.2435,1.5152,90.5599,85.6287,87.2093,95.3488,14.4604,1.2746 Black Country ICB,M88600,The Victoria Surgery,4184.226992,6.1196,63.5294,63.6364,1.9543,70.068,75.4386,2.9949,81.0345,4.32,1.3959,0.4061,0.27,38.5165,10.7759,14.4416,81.9876,93.0233,0.5584,0.8376,12.8248,0.0898,89.823,92.4731,93.5484,93.5484,15.224,0.9899 Black Country ICB,M88610,Sarephed Medical Centre,4248.681208,4.5505,61.4286,59.1837,1.0994,54.2553,72,2.0766,86.4197,2.4572,0.5293,0.285,0.9663,38.4886,9.4452,10.8103,59.785,72.7273,0.3665,0.6108,13.2524,0.8439,91.3864,87.5,92.6471,94.1176,11.1686,0.6922 Black Country ICB,M88612,Glebefields Surgery,4609.306039,7.1351,63.2653,67.9487,2.4029,72,76.7123,4.1411,88.2353,4.9751,3.6554,1.0225,0.9287,44.2293,8.0052,11.8354,64.0327,73.9583,0.6391,1.0481,14.5605,0.1422,82.0576,78.9474,89.3617,74.4681,24.7107,1.8405 Black Country ICB,M88616,Great Bridge Partnership for Health,17977.13912,6.0692,55.0971,55.3571,1.878,62.7208,68.3206,2.8799,78.75,2.2456,1.902,0.648,0.2865,37.1313,10.3354,14.0097,54.9689,74.4417,0.48,1.17,10.3608,0.0972,85.7348,86.5889,79.1667,85.6061,23.8452,1.44 Black Country ICB,M88618,"Walford Street, Tividale",1934.453646,6.2893,54.5455,65,1.2808,42.4242,60.6061,3.3005,91.3044,1.8265,1.5271,0.2463,1.1742,34.0723,12.7564,15.7143,65.5052,81.25,1.2808,0.7389,15.9817,0.311,85.7143,94.6429,86.4865,91.8919,16.7069,2.3645 Black Country ICB,M88619,Dr Arora Rk,11368.35657,5.4833,61.5079,64.6409,2.34,68.6603,77.4834,3.0629,89.313,4.8778,1.6171,0.818,1.0426,38.7752,10.2316,16.7317,72.6894,85.3125,0.6183,0.9417,14.596,0.4559,86.0011,87.1622,78.481,93.038,14.6988,1.4934 Black Country ICB,M88620,Causeway Green Road Surgery,2854.767323,5.4181,63.6364,58.3333,2.2847,64.1667,72.7273,2.4699,90.1961,5.0417,1.6672,0.4014,1.2917,33.1631,9.6603,13.6462,75.067,91.3044,0.3087,0.8336,19.2083,1.224,93.5897,95.5224,78.2609,93.4783,17.5476,1.1423 Black Country ICB,M88625,St Paul's Partnership - Lyng Medical,3429.214264,5.0699,55.4054,58.9286,2.4695,67.6923,74,2.4993,83.3333,4.0159,1.1901,0.3273,1.7097,40.207,10.6525,13.4186,81.5584,86.3636,0.6546,0.8331,17.4155,0.432,94.5245,94.9367,90.9091,96.3636,14.1869,0.9819 Black Country ICB,M88626,Dr Ui Haque N,3714.472483,4.9046,52.1127,54.3478,1.7465,60.7692,74.359,4.9578,84.0909,2.202,1.3239,0.9296,0.8738,42.9301,12.7072,14.3944,71.2589,86.6667,0.507,1.5493,15.4491,0.2364,92.9126,90.9091,80.5556,88.8889,11.4286,1.8028 Black Country ICB,M88628,Dr Singh M,3301.414629,4.3532,57.9545,61.8182,1.3803,59.3496,70.8333,3.4949,85.7143,3.177,0.8811,0.3524,0.4433,36.7477,12.9931,15.3598,67.5439,79.1045,0.3524,0.9692,9.8633,0.0954,90.392,96.3303,86.3014,87.6712,10.022,1.4684 Black Country ICB,M88630,Clifton Lane Medical Centre,5050.741001,5.8415,55.9055,59.5745,2.2048,65.896,70.3297,4.0644,79.1667,5.6028,1.5337,0.4601,0.4002,37.9243,12.3833,15.625,74.8872,77.3333,0.5176,1.0928,17.8089,0.1808,91.7926,86.2434,83.5052,92.7835,14.7232,1.4571 Black Country ICB,M88633,Lodge Road Surgery,6244.230265,5.125,64.2857,69.8925,1.1064,52.6923,77.1084,2.5768,90.625,2.8339,0.9463,0.3931,0.4445,35.9015,11.239,13.7575,67.2956,82,0.2038,0.6988,14.0026,0.4808,86.6896,93.75,82.0513,94.0171,10.8087,0.9754 Black Country ICB,M88635,Dog Kennel Lane Surgery,2076.940855,6.7561,65.3846,59.4595,2.623,70.4225,74.1935,3.8876,87.5,1.7715,1.7799,0.4216,3.1765,35.7477,12.7392,18.3138,81.25,87.3239,0.4216,0.8431,14.7221,2.446,94.5173,100,80.4878,95.122,15.2439,1.4988 Black Country ICB,M88639,St Pauls Partners,3447.410455,4.9367,59.0909,54,1.6314,63.5659,75,3.5347,88.3721,3.5294,0.7855,0.6344,0.9412,42.2687,11.4849,14.3202,74.8792,78.3333,0.4532,1.0876,18.4314,0.1227,90.4084,93.9024,87.7193,85.9649,12.0472,1.148 Black Country ICB,M88640,Warley Road Surgery,3733.625515,7.3191,59.1837,65.6716,1.4872,68.7943,77.9661,3.6923,76.087,2.5421,0.7692,0.5897,1.1885,34.3614,13.3377,12.1795,66.0287,71.9298,0.3077,0.5641,13.6019,0.9675,89.548,92.6829,86.25,86.25,8.9333,1.3077 Black Country ICB,M88643,The Spires Health Centre,5751.052774,4.5253,61.8321,64.0777,2.2782,63.8191,69.5652,4.0336,75.8065,2.1048,2.465,0.5602,1.0034,36.6392,12.1618,15.2381,61.8287,69.2913,0.5789,0.915,16.8135,0.235,87.767,91.0448,61,84,17.8759,1.5126 Black Country ICB,M88645,Hill Top Medical Centre,9518.77754,7.8183,66.4093,65.566,2.9999,72.7829,75.8974,3.3413,85.7143,5.5496,1.6965,0.3207,2.4305,29.5876,9.1246,12.8996,73.436,84.6154,0.7965,0.6,19.0926,0.0604,89.4818,86.8313,68.7023,90.0763,16.8664,1.5103 Black Country ICB,M88646,Dr Dewan Vk,2854.208951,5.7935,65.6716,60.4167,1.9033,58.427,76.7442,4.0841,74.0741,3.9255,0.8327,0.3569,3.1203,39.2991,10.8081,16.6931,57.3446,79.1045,0.8327,1.1102,12.5818,0.6321,85.9738,87.3016,58.1395,81.3953,17.5532,1.4671 Black Country ICB,M88647,Rood End Medical Practice,4985.134002,4.9568,43.6782,50.9091,0.7592,61.6822,74.0741,1.6949,95.9184,2.8259,0.4944,0.1589,2.4935,37.6422,9.636,9.7281,65.8635,83.0189,0.4414,0.565,15.6257,0.4562,92.0437,96.0784,90.2439,95.122,14.1562,0.6533 Black Country ICB,M91003,Sina Health Centre,6973.290347,6.3251,71.6049,68.2635,3.546,77.0642,78.1022,3.19,89.1892,6.0748,2.3498,0.356,1.4738,24.9037,8.4129,16.2917,73.9606,86.087,0.2421,0.3845,11.5205,0.1716,88.5637,84.4828,76.4045,91.0112,12.0305,1.8798 Black Country ICB,M91004,St Peter's Surgery,11878.47657,5.5093,54.7511,57.7381,2.261,65.4286,74.8252,3.1972,80.8511,3.3012,2.4701,0.4183,1.0316,47.9844,10.5441,10.6076,68.5932,77.7027,0.6474,0.9761,19.2985,0.2899,86.9256,90.1786,78.6667,91.3333,21.31,1.3247 Black Country ICB,M91006,Parkside Medical Practice,4613.452638,6.9469,65.1786,74.7253,3.0445,77.3723,77.9221,3.3021,94.3396,5.6187,1.9672,0.7728,2.9475,28.5754,9.9091,16.4871,77.6991,81.295,0.7728,1.5457,16.3955,0.5239,88.87,84.7458,80.3279,90.1639,20.5067,1.9672 Black Country ICB,M91007,St John's Medical Centre,10133.63703,7.2568,69.6429,74.8988,4.6003,76.2097,75.7282,4.2632,91.8919,7.3379,2.0011,1.7727,1.9034,22.6372,9.9198,19.7934,74.8186,83.0317,0.5438,0.9135,18.942,0.7066,86.8999,86.6667,90.1408,95.0704,13.0825,2.5884 Black Country ICB,M91008,Little London Surgery,10114.18869,6.5083,59.5,60.4317,2.3566,54.2522,70.4348,3.1835,86.6667,4.1892,1.6951,0.6615,0.9849,38.2185,11.2185,13.9018,58.6081,81.4229,0.6202,1.0956,17.3949,2.6347,89.4957,86.4197,74.6667,92.6667,19.9748,1.5814 Black Country ICB,M91009,Streets Corner Surgery,6259.016309,6.4594,74.537,71.6312,4.2832,68.0982,71.9298,4.528,87.0968,10.0107,3.8986,0.8741,2.6254,22.1345,10.523,21.2238,72.7178,82.8,0.5594,1.1713,15.9232,1.2673,90.3425,87.444,81.0526,88.4211,15.2778,1.7832 Black Country ICB,M91010,Portland Medical Practice,9611.866791,8.0358,76.5625,76.4706,5.3496,79.7619,76.6667,4.8582,95.5224,9.3489,2.2895,1.0498,0.8636,14.6181,8.0632,19.7342,70.2962,83.0116,0.6813,0.8376,13.2831,1.5484,91.0902,82.4176,90.1786,93.75,10.6163,2.2895 Black Country ICB,M91013,Lockfield Surgery,11909.07555,7.4879,58.4375,54.6667,3.3207,70.1258,70.6806,3.8076,93.6937,6.1683,3.7394,1.0517,7.6585,35.237,10.8186,19.2911,68.3867,82,0.7206,1.0128,18.7492,0.7938,91.0726,86.6667,78.3626,92.3977,20.93,2.0839 Black Country ICB,M91014,Brace Street Health Centre_M91014,3539.490417,6.554,50.6494,63.8298,2.2031,58.0952,68.4211,3.8634,80.5556,4.8327,1.3091,0.2554,3.5523,39.5556,12.4646,15.198,71.2121,86.25,0.447,1.1494,17.3069,1.197,86.2419,89.4231,83.0508,94.9153,17.1109,1.4687 Black Country ICB,M91015,Lichfield St Surgery,25817.20451,6.3646,69.0184,73.4205,3.624,68.1199,77.6623,3.7972,94.8837,4.6615,1.6411,0.6519,1.0948,33.5908,9.5041,15.1434,74.2412,85.6968,0.3145,1.0804,15.546,0.4111,90.5243,85.4206,85.3503,93.3121,29.8262,1.5681 Black Country ICB,M91016,New Invention Health Centre,7299.251479,5.8114,70.5882,64.4444,3.7651,72.807,77.4775,3.6924,89.4737,7.6095,2.0206,0.4943,1.8189,27.732,10.2874,18.5492,69.8712,74.5318,0.6106,0.8432,12.8805,1.9246,88.8216,85.1675,81.0811,88.2883,16.2561,2.1079 Black Country ICB,M91017,Northgate Medical Centre,11046.50077,7.7583,77.1429,81.7121,4.9445,78.4946,77.0408,5.5489,95.8763,5.7609,1.9719,1.2287,1.9203,14.7342,8.7844,21.2842,73.0717,81.791,0.4855,0.9116,16.7547,2.2764,91.3868,78.1609,81.295,96.4029,10.1253,3.3492 Black Country ICB,M91018,Saddlers Health Centre,4615.059232,5.9154,60.8247,66.2162,2.621,56.6038,71.4286,2.7155,78.6885,3.6758,1.9363,0.3306,2.1693,39.6236,8.9106,13.2231,62.0309,76.6355,0.6375,1.2987,15.2154,1.5373,84.3327,89.899,77.9661,88.1356,20.0401,1.7237 Black Country ICB,M91019,Rushall Medical Centre,16449.92934,7.912,78.0127,70.317,4.3113,79.5309,79.5699,4.6291,90.9677,8.2525,2.2384,1.053,0.6271,23.6217,9.9992,17.5364,71.093,88.8406,0.7219,1.0397,22.0234,1.3383,92.6781,88.5417,85.5319,94.8936,13.9706,2.2848 Black Country ICB,M91021,Lockstown Practice,9036.443127,8.6921,62.1951,61.0778,2.7359,73.0909,76.2963,4.0286,87.9121,5.1386,2.6857,0.8534,1.7993,35.52,10.7422,17.3318,61.4574,89.6694,0.502,1.619,17.5231,2.268,89.5235,86.6973,77.5194,93.7984,17.2345,2.0582 Black Country ICB,M91024,Dr Nambisan Surgery,2897.67454,6.8792,75.7895,77.6119,5.1786,80.9524,86.7925,4.456,96,7.7582,2.6094,0.8832,1.9039,21.2283,11.0746,22.8824,76.3341,89.2086,0.281,0.7628,19.6573,1.2481,92.9428,91.5663,93.1818,95.4545,13.5109,2.0072 Black Country ICB,M91026,Darlaston Family Practice,5913.937972,6.0301,60.9756,56.8182,1.9793,71.09,73.0769,2.3003,77.5,3.4578,2.1398,0.3566,3.2573,40.726,10.1446,12.1255,42.7119,67.7778,0.5528,0.9094,12.0271,1.3571,84.1307,83.7607,67.0732,84.1463,17.6704,1.1591 Black Country ICB,M91028,Berkley Practice,10425.69781,7.485,67.0213,65.3061,3.4341,70.6522,75.8389,4.3015,87,6.6816,3.0708,0.5978,3.3557,34.5351,10.9432,19.6906,62.6454,72.0395,0.6446,1.1603,16.7934,1.9781,90.2279,88.806,80.9859,90.8451,16.3932,1.9456 Black Country ICB,M91029,Mossley & Dudley Fields Medical Practice,6588.192861,8.1386,67.9104,66.3462,2.9781,78.5714,79.2683,3.606,87.6923,4.594,2.709,0.5562,2.0114,42.6641,10.3238,14.7829,77.3371,84.7458,0.7176,0.915,24.7082,2.1066,92.9889,83.75,89.8734,93.6709,22.8242,1.7402 Black Country ICB,M91032,Collingwood Family Practice,4605.131077,7.344,72.549,68.5039,3.9535,78.9116,78.0702,3.5052,92,4.6911,2.2213,0.7337,1.9995,16.4311,8.7706,18.4023,57.7151,75.5459,0.4891,0.5706,11.6637,0.2398,88.4348,89.6825,73.4375,87.5,11.7736,1.6099 Black Country ICB,M91033,Willenhall Medical Centre,6626.831168,7.0823,67.284,60.4839,2.8781,68.1614,74.2268,3.561,93.75,5.8861,2.748,0.7317,4.1499,35.3314,9.8333,17.3171,69.4761,90.3743,0.4553,0.813,14.9693,1.3072,90.2597,90.9091,84.4444,95.5556,17.8151,1.7724 Black Country ICB,M91034,Bloxwich Medical Practice,6223.460078,9.2167,74.5946,78.1955,4.6819,80.4196,74.7573,4.6018,96.0784,9.3596,3.6615,0.7803,0.936,35.8506,11.4508,18.7275,74.9292,83.913,0.7603,0.8003,18.202,1.0282,93.3388,73.0337,67.0455,97.7273,15.745,3.0212 Black Country ICB,M91036,Harden Health Centre,3969.068628,5.868,61.4458,57.6271,2.9134,70.8661,74.5098,3.0799,88.2353,6.0218,2.8024,0.444,2.4476,50.4451,11.3229,12.7913,72.5594,87.8049,0.8879,0.6104,30.2253,2.229,90.2044,89.3204,88.1356,96.6102,23.4135,1.3874 Black Country ICB,M91602,Khan Medical Practice,2626.893824,4.9515,63.7931,61.1111,2.3214,72.1519,75.7576,3.7946,94.7368,5.9317,3.3929,1.0714,1.8574,44.0412,11.9623,15.4911,78.8927,87.931,0.9375,1.4286,25.1648,2.4566,91.6058,85.2941,85.7143,94.2857,22.2949,1.6071 Black Country ICB,M91609,New Road Medical Centre,2285.726213,7.3285,69.8413,71.4286,4.0806,79.1045,81.25,3.6382,100,7.4984,2.6549,1.4258,3.5287,28.203,10.1915,17.7974,75,87.8049,0.8358,1.2291,26.402,3.0105,91.314,88.7097,87.8788,93.9394,20.1738,1.9174 Black Country ICB,M91611,Beechdale Centre,3157.290386,5.8893,60.8696,57.4468,2.0886,71.5909,78.0488,2.8808,90.625,5.4801,2.3407,0.3241,0.905,48.6596,11.0728,13.8999,71.1599,88.0597,0.7922,1.0443,17.8482,0.9732,89.0269,91.0256,92.8571,97.619,23.501,1.6205 Black Country ICB,M91612,St Mary's Surgery,3982.407042,7.5949,73.4043,67.6471,2.5772,72.5664,71.1864,4.0456,81.0811,6.2156,2.6071,0.4795,3.9733,43.8202,9.9266,16.6617,71.0468,86.9159,0.5394,0.8091,18.1747,2.0886,92.4708,87.5,80,94,22.4901,1.7681 Black Country ICB,M91613,Forrester Street Medical Centre,9919.245338,5.6861,50.7042,50,1.2275,55.5276,69.1589,2.6965,81.9444,2.7649,1.0061,0.4729,1.8526,42.9196,11.8235,9.3873,53.688,83.0189,0.5936,1.3985,16.9684,0.5805,86.0653,89.2562,77.5758,88.4848,18.9251,1.2778 Black Country ICB,M91614,Stroud Practice,8474.218904,6.2409,73.8938,66.2252,3.0814,72.8155,76.3158,3.4665,94.2623,6.5595,2.5518,0.4815,3.7414,30.8773,10.5338,16.6586,77.5063,92.3858,0.4574,1.2759,23.3562,2.5859,90.8764,86.2069,87.5969,93.7984,15.9459,1.7573 Black Country ICB,M91616,Pleck Health Centre,8481.042251,5.4203,54.7739,67.1756,2.0663,66.5441,77.5701,4.4853,91.1392,4.9033,1.4741,0.6426,1.2463,39.556,13.837,17.0719,66.2338,84,0.4788,1.1339,18.3667,2.439,90.6186,91.2752,92.1687,95.1807,13.5314,1.9403 Black Country ICB,M91619,Broadway Medical Centre,5241.891164,6.2798,68.254,70.3297,1.7253,66.0714,73.0769,3.2663,85.3933,3.6541,1.1558,0.3015,1.9519,29.8254,9.4983,13.0653,65.3214,88.2883,0.4355,0.6533,16.1825,0.3869,90.1116,92.8571,88.8889,93.8272,10.7739,1.0218 Black Country ICB,M91621,Palfrey Health Centre,4683.011831,6.0109,46.25,52.381,1.2621,51.3812,66.0714,2.9126,91.4286,3.1509,0.7185,0.3689,1.4152,39.7303,12.2066,10.0194,66.2309,78.9474,0.5437,1.1068,16.7423,0.6536,86.4613,91.0959,83.6957,91.3043,12.7952,1.1845 Black Country ICB,M91623,Lower Farm Health Centre,2310.622753,8.8349,67.6056,71.7391,3.7843,71.1864,76.4706,4.6656,69.2308,4.172,2.592,0.5702,1.5404,26.623,11.434,17.522,63.3466,83.9081,0.7776,1.6071,22.8498,1.451,86.5263,85,88.5714,94.2857,18.3463,2.6957 Black Country ICB,M91624,Moxley Medical Centre,4124.657895,4.9894,63.9175,67.5676,2.0642,72.3577,76.9231,3.7936,83.3333,2.4274,2.9289,0.3347,3.8249,38.0242,9.794,11.6039,53.6232,70.4225,0.4742,1.1437,19.897,0.4352,92.2088,88.6364,74.0741,83.3333,24.0093,1.7852 Black Country ICB,M91626,Holland Park Surgery,5142.772972,6.6339,71.9697,71.875,3.5613,78.2051,81.0127,4.042,92.1053,5.597,2.6874,1.1143,2.411,28.1962,9.4313,18.2652,76.5672,88.5542,0.5681,0.8521,16.3031,0.4751,91.4227,80.5085,84.6154,93.8462,17.4612,2.163 Black Country ICB,M91628,Brace Street HC- Kumar,3189.507408,7.3378,72.5,71.1538,2.3794,74.4898,82.6087,5.3867,88.5714,5.4181,1.1566,0.5288,1.4505,37.6939,17.1368,18.5724,82.5,92.6829,0.7931,1.2227,21.5017,1.6667,95.474,94.2857,95.0617,96.2963,12.7311,1.7515 Black Country ICB,M91629,Birchills Health Centre,6740.770937,5.4111,61.3445,51.0417,1.8305,59.0747,72.619,2.0467,82.5,1.688,1.3549,0.173,1.9931,43.8405,9.2652,9.8588,77.0383,87.9518,0.4612,0.7639,20.8054,1.0225,87.8393,90.6542,89.011,93.4066,19.3406,1.0234 Black Country ICB,M91637,Blackwood Health Centre,3732.913259,5.8234,76.0684,77.2152,5.3232,77.3109,83.0769,3.3967,87.8049,6.2071,1.5716,0.9379,0.7514,6.2964,7.7095,16.0963,66.75,73.1915,0.3802,0.7351,16.0405,0.4169,89.3375,80.7692,80,93.3333,7.1544,2.1039 Black Country ICB,M91639,Walsall Wood Health Centre,1966.059164,8.7145,62.2951,73.1707,3.1977,78.2609,85.2941,4.593,95.4546,5.0365,2.7907,0.1163,1.8248,25.7553,11.6846,17.9651,78.4387,80,0.7558,1.3372,28.3212,0.2649,92.6402,85.2459,87.5,96.875,17.9012,1.6861 Black Country ICB,M91640,Rough Hay Surgery,4495.898028,7.6572,57.2816,62.0253,2.6906,66.1765,71.4286,3.4131,87.234,4.9562,2.8152,0.573,1.9892,42.6154,9.3408,13.5027,70.614,82.5581,0.5481,1.0214,20.027,0.6349,89.9384,82.6531,86.7925,94.3396,24.5988,1.4699 Black Country ICB,M91641,Dr Ali Surgery,4729.70587,6.139,54.0816,57.1429,2.0601,62.5899,72.5806,3.3204,95,4.8173,1.9147,0.5574,2.2955,40.1786,10.6032,14.3965,72.1881,88.5714,0.5817,1.0906,19.334,0.6354,90.0799,86.9159,89.3939,95.4545,18.2813,1.6966 Black Country ICB,M91647,Pillai,6557.498689,7.4757,67.2043,71.3115,3.9524,70.5882,75.5102,4.4396,92.8571,6.924,3.3568,0.5234,2.8772,41.1797,10.7604,15.8455,70.0573,81.6667,0.4331,1.0107,19.1111,2.7583,91.3529,85.4546,84.4444,94.4444,18.804,2.0935 Black Country ICB,M91650,Pinfold Medical,11354.81972,7.5413,67.7419,69.5853,3.1114,68.4982,71.1864,4.9782,90.6977,5.7527,4.0502,0.4913,3.1467,39.7278,10.3627,17.0742,57.8191,73.2284,0.7424,1.059,14.957,1.8928,83.1362,88.4758,78.4722,87.5,18.231,2.2817 Black Country ICB,M91654,High Street Surgery,3026.99729,4.9815,73.3333,70.2703,2.802,80.5556,76.2712,2.802,95.2381,4.7695,2.3039,0.5604,0.5611,22.5392,8.983,15.7534,80.7512,88.75,0.4047,0.9029,19.9599,1.1986,92.8251,89.8305,82.9268,95.122,15.2705,1.4321 Black Country ICB,M91659,Brace Street Health Centre_M91659,3078.612137,4.9007,53.8462,55.5556,1.3189,55.2632,68.4211,3.717,82.9787,4.5668,0.8993,0.1499,1.7499,43.1985,17.3715,12.1103,74.3169,92.1053,0.3597,1.0492,24.0717,0.8759,92.3983,94.2029,90.2439,93.9024,13.406,1.0791 Black Country ICB,M91660,Modality Darlaston Practice,5452.689678,5.5194,63.1148,57.8313,2.2767,72.0207,71.831,2.3545,88.5246,4.2907,2.1989,0.3503,2.494,39.9375,10.3285,14.6721,70.6241,87.6289,0.6811,0.9924,16.1706,1.6772,89.5425,90.4255,83.3333,92.3077,18.9867,1.187 Black Country ICB,M92001,Poplars Medical Centre,3700.474562,8.2247,57.6087,53.9683,2.2482,68.1818,67.7966,2.8905,77.7778,2.7799,2.5985,0.3504,1.8279,40.3919,9.5577,13.2263,55.8376,77.9661,1.0803,1.2263,21.4395,0.7024,86.6617,87.3016,71.4286,71.4286,19.6981,1.9854 Black Country ICB,M92004,Primrose Lane Practice,3440.303649,6.6961,61.5385,61.8182,3.0062,73.3333,77.7778,3.3172,100,6.2033,1.935,0.5529,0.352,36.5211,10.3463,18.0373,79.5,90.9836,1.1748,1.2439,15.6621,1.0919,91.0883,87.6405,93.4783,95.6522,15.8055,2.6607 Black Country ICB,M92006,Coalway Road Surgery,4993.754242,6.7754,65.6051,64.4231,3.828,61.4865,70.4545,3.6129,91.6667,4.6121,1.6559,0.3011,1.1997,21.3449,9.2005,16.8817,63.8066,83.3333,0.9677,1.0323,19.6481,0.5266,88.371,86.087,81.5385,89.2308,15.6592,1.5484 Black Country ICB,M92008,Castlecroft Medical Practice,13358.5903,6.3065,74.2072,68.9873,4.1449,75.9894,77.381,3.5282,88.6793,4.3203,1.5924,0.8118,0.5077,17.9226,8.0721,16.7903,60.557,78.2537,0.5776,0.5932,12.5204,1.1947,83.702,82.8467,75,88.75,9.7525,2.1856 Black Country ICB,M92009,Prestbury Medical Practice,15516.40632,7.8253,69.0205,64.5161,3.9344,66.3697,72.1311,3.1178,81.9549,7.3569,2.4349,1.0244,2.1183,30.1566,10.1775,18.4099,54.8519,80.0766,0.5568,0.9799,20.1622,1.4771,89.1096,84.492,78.6408,90.7767,14.876,2.0711 Black Country ICB,M92010,Tettenhall Medical Practice,11644.96526,5.3359,73.7101,73.6264,5.3979,73.6842,77.2093,3.5813,82.2917,5.5969,1.2889,0.9948,0.7448,14.3839,8.8383,18.1574,61.0033,79.9669,0.4498,0.8478,18.6955,0.985,90.4929,78.4946,84.5161,91.6129,9.3902,2.2145 Black Country ICB,M92011,Penn Manor Medical Centre,29772.13869,6.2593,68.4103,62.7976,4.4356,67.604,70.1521,3.801,89.5684,5.7989,1.9671,0.9748,1.8807,15.5375,9.1494,17.1044,57.6913,79.2197,0.7679,0.9362,16.7436,1.3972,89.4668,83.4734,84,90.5,37.4289,2.1565 Black Country ICB,M92012,Duncan Street Primary Care Centre,11862.67237,4.8532,56.7766,65.0794,2.0648,55.7647,73.5849,2.5103,80.1587,2.6888,1.0367,0.5569,1.295,34.5476,12.2054,15.927,61.6722,78.022,0.4969,0.9339,20.8955,1.143,91.4209,83.2714,85.0467,89.2523,12.5098,1.268 Black Country ICB,M92013,Dr Sinha & Tahir,8345.443403,5.6666,54.5455,51.5625,2.4224,55.7377,65.7895,3.4108,78.4615,2.7682,1.8934,0.7796,1.6103,38.7596,10.4862,15.3,56.1086,73.9535,0.8492,1.1694,17.4236,0.2666,89.6362,84.2424,75.8929,78.5714,18.1946,1.7263 Black Country ICB,M92015,Improving Health (IH) Medical,4125.471417,3.8723,58.8235,65.2174,1.7586,65.6442,64.2857,1.9011,78.125,2.4687,1.1882,0.2139,2.6611,38.5994,8.2383,12.2386,67.9458,87.5,0.903,0.6892,22.4752,0.2593,92.3015,87.5,88.2353,92.1569,18.8692,0.8555 Black Country ICB,M92016,Tudor Medical Centre,21286.7552,4.088,58.7264,54.4554,1.6364,48.2143,59.9237,1.7783,86.4197,2.6427,0.8736,0.173,1.2537,38.7007,8.4395,10.1863,53.2898,69.6078,0.5011,0.8692,16.033,0.955,79.1466,84.3305,68.1319,83.1502,16.9692,0.9091 Black Country ICB,M92019,Keats Grove Surgery,7691.130224,7.2391,60.6557,57.971,3.4762,68.4729,67.8571,3.258,90.9091,2.3322,2.4162,1.2938,0.8315,40.1108,9.1993,15.2611,60.6452,78.9216,0.7171,0.7327,18.0896,0.4721,89.3545,81.0345,82.4176,87.9121,19.4986,2.1512 Black Country ICB,M92022,Ashmore Park Medical Centre,4505.801831,5.6497,63.0631,56.4706,3.0296,77.6316,68.4932,3.0532,84,4.7127,2.0828,0.4734,2.1627,30.3976,8.5841,13.8462,39.3665,54.5455,0.8757,0.8994,16.9787,2.7126,89.1753,77.7778,78.4314,86.2745,19.7758,1.5385 Black Country ICB,M92026,Griffiths Drive Medical Practice,5524.928626,6.4917,65.5629,56.0748,3.9287,70.7792,71.4286,3.2847,89.4737,5.8426,2.1468,0.5582,1.7311,29.866,9.4779,14.7703,76.5027,85.6115,0.8587,0.7085,20.6113,1.5309,91.4605,87.3874,86.1538,95.3846,20.2339,1.9536 Black Country ICB,M92028,Thornley Street Surgery,9321.821964,3.6617,50.3546,47.4138,1.689,45.2926,61.6822,1.4128,80.4348,2.35,1.2003,0.4355,2.0612,37.6959,5.776,8.9123,64.0736,82.5758,0.5311,1.2535,13.3123,1.9212,79.9107,82.5397,87.6712,94.5205,16.4446,1.3278 Black Country ICB,M92029,Newbridge Surgery,6204.214335,7.6722,74.4792,75.5556,4.267,73.4463,83.1858,3.5411,98.0769,6.5846,1.381,1.4341,2.1373,23.8713,9.8319,20.1133,75.0286,84.0304,0.5843,1.1509,21.8264,2.7262,95.5036,86.9318,91.6667,95.2381,10.3248,2.284 Black Country ICB,M92039,Dr St Pierre-Libberton,7507.53377,5.952,64.9533,57.1429,3.0783,63.1579,69.6,2.9632,92.2078,5.6223,2.244,1.6542,2.4598,30.7939,9.4597,17.1605,60.9257,81.8182,0.561,0.9925,16.1272,0.3417,87.0809,82.2222,67.0103,81.4433,14.1872,1.7117 Black Country ICB,M92040,Mayfield Medical Practice,12377.01452,6.953,60.5166,51.4851,2.301,62.6556,67.6471,2.4427,84.3931,3.2434,1.5923,0.3001,1.8168,36.0702,8.2768,13.2222,68.764,82.8685,0.4585,0.842,18.3014,0.2405,89.5912,84.9138,79.8611,91.6667,17.2344,1.3756 Black Country ICB,M92041,Probert Road Surgery,4511.128783,4.835,63.0252,59.0909,2.4511,60.2484,66.6667,2.0641,86.2745,4.8319,1.3546,1.032,1.1868,31.8259,10.1217,14.0185,51.1111,74.1071,0.946,0.989,11.9808,2.4262,83.251,79.0909,61.194,94.0299,15.2464,1.4621 Black Country ICB,M92043,Penn Surgery,7611.289809,6.7896,73.5178,75.5952,4.1316,70.5882,80.5755,3.6275,85.5263,4.4934,1.5826,0.9244,0.6419,20.8947,9.4045,14.6779,70.9924,84.7328,0.5742,0.6163,15.3886,0.8013,94.4042,73.3813,81,91,10.1924,2.1149 Black Country ICB,M92607,Whitmore Reans Medical Practice,17159.32952,4.867,60.2067,50.1845,2.1479,54.7655,68.2403,2.3897,67.6056,4.0149,1.0008,0.4217,2.5,33.9242,10.5344,14.3267,74.9773,81.7919,0.551,1.2145,22.6642,1.8787,88.9134,88.6525,88.3636,90.5455,18.9916,1.445 Black Country ICB,M92609,Ashfield Road Surgery,6218.560929,6.0416,62.5,62.9921,3.8757,76.2791,71.8447,3.1073,90.6667,4.4983,1.7207,0.568,2.3789,29.2087,10.4592,14.9181,71.5436,87.8378,0.4511,0.9021,25,0.3438,92.139,91.7722,94.6237,97.8495,14.8502,1.6539 Black Country ICB,M92612,Health and Beyond,41491.99562,5.9812,60.9569,59.9185,2.8518,62.6616,70.24,2.9835,87.013,4.7876,1.7472,0.7407,1.3499,38.1871,10.6997,15.5754,60.1914,71.7972,0.6943,1.0401,16.735,2.0357,86.5461,88.2604,87.6176,92.163,15.0679,1.8737 Black Country ICB,M92627,Bilston Family Practice,4794.117945,6.8478,66.9565,65.4321,3.5732,75.188,72.8571,3.2691,84.7826,4.9277,2.4075,0.4815,0.5585,40.0283,10.2746,16.6498,74.5353,79.8319,0.8616,1.0137,22.8647,1.1127,92.0863,83.1579,86.4407,88.1356,16.8593,2.2808 Black Country ICB,M92629,Fordhouses Medical Centre,4006.381107,5.8933,64.3564,53.75,2.4402,71.9745,71.2121,1.9522,70.9677,4.795,2.0742,0.244,1.0913,30.5722,8.5492,15.7394,68.3478,87.1429,1.1713,1.0981,21.66,3.0439,91.7526,82.9268,87.234,87.234,20.5063,1.4153 Black Country ICB,M92630,East Park Medical Practice,7338.30236,7.9021,61.4865,53.913,2.8276,67.6617,73,3.2241,94.2029,5.4353,3.5,1.7759,3.6536,42.4824,9.6946,16.0862,59.2693,80.4124,0.8276,1.1035,18.0199,0.9709,87.6325,79.8742,90.4762,88.0952,19.301,2.3621 Black Country ICB,M92649,Dr Mudigonda,4912.031405,6.0521,62.5,65.4762,3.062,67.1329,71.6216,2.8721,89.8305,5.5261,3.0145,0.5697,2.6225,41.0544,10.0061,15.4522,73.4226,84.375,0.5459,1.0207,20.3247,1.3822,90.4964,89.0909,78.3333,80,16.9099,1.8752 Black Country ICB,M92654,Bagary's Medical Practice,7958.46946,6.9572,55.2326,54.6154,2.8746,62.5514,70.7965,2.7635,87.013,4.2847,2.4719,0.4999,3.2973,41.8242,8.8686,15.72,67.8571,80.5556,1.1665,1.111,19.6908,2.4335,84.0365,82.069,84.6154,83.5165,22.0261,2.0414 Black Country ICB,Y00228,Ambar Medical Centre,2046.662097,5.5629,37.037,58.3333,0.8914,63.9175,81.4815,2.4716,67.8571,1.4215,0.4862,0.1621,1.6402,38.6969,12.1716,7.7796,72.8814,86.6667,0.8104,1.3371,15.7463,0.489,87.8173,88,84.0909,90.9091,12.4397,0.6078 Black Country ICB,Y00278,Darlaston Health Centre,3913.853838,5.94,62.8205,64.2857,2.0999,64.2857,68,2.412,92.3077,4.9749,2.6674,0.1986,3.3938,39.7451,10.1515,12.798,65.0407,76.8293,0.4824,1.504,20.9796,1.3944,91.6113,80.4124,88.4615,90.3846,17.8697,1.4188 Black Country ICB,Y01756,Stourside Medical Practice,6103.20738,8.0817,70.5628,69.863,4.3057,68.3333,73.3945,4.1085,98.2759,9.6866,3.0074,0.5423,5.6421,20.8421,8.0128,20.6081,78.5569,85.9259,0.6081,0.7888,22.7705,0.3443,91.8555,86.0465,83.8235,95.5882,15.3187,1.742 Black Country ICB,Y02212,Dudley Wood Surgery,2874.424728,7.2441,63.8554,72.4138,4.1131,66.2791,68.8889,3.8193,87.8788,4.3213,1.9097,0.4407,3.5228,30.8068,8.2369,17.7011,76.579,79.4118,0.5141,0.7345,22.5458,0,91.2384,90.566,78.7879,87.8788,22.0773,1.5057 Black Country ICB,Y02626,The Keys Family Practice,5010.750448,5.5793,66.0714,53.9474,2.1912,72.6257,74.5763,3.6519,93.2203,3.3743,1.7321,0.2922,2.2019,36.2771,10.4319,13.7521,63.8889,79.8319,0.5217,1.2521,12.8682,0.6024,89.0462,78.8991,91.5493,90.1408,20.8939,1.1478 Black Country ICB,Y02627,Harden Blakenall,14242.62111,6.2044,53.2787,46.9613,2.4889,65.2778,61.1465,3.2282,79.0124,4.8226,2.9407,1.3225,2.0926,51.0436,9.4975,11.7956,67.2634,85.1711,0.5832,1.0925,16.2237,2.1108,82.2084,79.2254,68.5535,84.9057,23.2833,1.7907 Black Country ICB,Y02636,Pennfields Medical Centre,6521.04279,2.9894,53.4091,43.9394,1.35,59.0106,64.1791,1.706,77.451,2.612,0.5786,1.4538,1.0247,40.1069,5.7685,8.337,50.7761,86.4865,0.9049,0.9197,13.6227,1.4481,81.0508,76.4706,73.6842,82.4561,23.8115,1.2609 Black Country ICB,Y02653,High Oak Surgery,4815.62234,7.3949,60.6061,58.1081,3.1632,64.7436,69.4915,3.5466,90,8.0299,3.4747,0.5751,5.9168,38.1843,9.2628,15.4086,58.6481,75.7143,0.671,0.9585,25.6177,1.0196,90.9643,82.3529,77.3585,86.7925,25.5881,1.965 Black Country ICB,Y02701,Great Bridge Health Centre,8780.461176,6.5753,55.9748,52.5926,1.264,62.8032,63.5659,2.0159,89.6774,2.5672,1.0461,0.207,0.7747,38.6238,8.0119,10.3193,55.4679,83.3333,0.3923,1.0352,15.6312,0.0949,86.6642,82.9787,72.2772,86.1386,18.6069,0.9698 Black Country ICB,Y02736,Showell Park Health Centre,6859.476392,6.3223,48.8636,45.7831,1.3798,63.6986,68.2927,1.4089,75.5814,2.2501,1.6413,0.1452,2.791,43.4262,8.2126,11.9245,59.8203,80.9524,0.5519,0.8569,20.3375,0.1571,90.9039,87.013,85.7143,91.4286,21.0358,0.9586 Black Country ICB,Y02757,Bilston Urban Village Medical Centre,13133.41754,4.8553,57.7465,60.4651,1.8384,64.8115,68.7117,1.8834,76.087,2.4234,1.073,0.7579,1.3879,39.8547,7.6255,9.0643,61.2053,78.0822,0.7279,1.1781,16.9531,1.9879,87.2732,86.7052,89.9281,92.8058,19.3294,1.1556 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence Cambridgeshire and Peterborough ICB,D81001,Lensfield Medical Practice,9715.15809,4.386,73.6641,61.2903,2.6002,47.1429,68.9441,1.3715,93.4426,1.0023,0.4,0.4358,0.9546,12.9534,2.6534,6.6433,65.6467,81.5166,0.2643,0.9501,4.4149,1.2721,72.0889,86.9565,80.7018,91.2281,8.9287,0.9572 Cambridgeshire and Peterborough ICB,D81002,Huntingdon Road Surgery,15180.37228,4.012,69.0594,61.8474,2.0975,45.6038,68.8995,1.5382,92.5,2.0877,0.6293,0.5506,0.791,9.1517,3.0963,7.219,62.8049,75.9921,0.2141,0.6424,4.7862,0.7019,71.3871,80.7512,83.4862,89.9083,7.2492,1.0881 Cambridgeshire and Peterborough ICB,D81003,York Street Medical Practice,8764.505716,5.1749,68.5106,56.9697,1.5626,57.8838,66,1.6736,92.9412,1.7696,0.9616,0.1479,0.2968,15.7117,3.7877,7.4711,66.6667,81.875,0.2866,1.1373,6.5069,1.9044,70.752,85.8491,90.3226,90.3226,13.0519,0.9524 Cambridgeshire and Peterborough ICB,D81004,Alconbury Surgery,12288.65761,7.9308,78.781,70.5329,4.2598,75.8475,77.8626,3.4952,90.8537,4.6871,1.7112,0.8083,1.4329,8.7968,6.4431,15.3645,70.6167,86.8421,0.466,0.568,10.9735,2.4861,89.0037,81.8182,93.7008,96.063,9.4649,1.9734 Cambridgeshire and Peterborough ICB,D81005,Newnham Walk Surgery,8537.752903,4.1181,76.2931,64.3312,2.0368,53.6131,76.259,0.9264,90.6977,0.9443,0.3006,0.2638,1.2323,9.086,1.4952,5.0061,70.1169,82.9493,0.1227,0.5706,2.5919,1.1551,84.0122,74.6269,80.5556,94.4444,4.6966,0.5951 Cambridgeshire and Peterborough ICB,D81008,North Brink Practice,22405.45274,6.1635,66.0793,71.179,3.8667,57.6159,66.5753,3.6392,84.3137,2.7886,2.9767,1.0087,1.0532,32.0126,8.7108,17.8155,59.4566,74.3176,0.7269,0.7516,9.2095,0.4422,85.3477,85.4875,76.1029,92.2794,23.6168,2.1262 Cambridgeshire and Peterborough ICB,D81010,Priory Fields Surgery,12034.14286,6.5574,70.2128,63.4043,3.209,56.691,61.7347,3.3801,85.8824,4.9017,2.6185,1.0611,0.4371,18.3683,8.4173,16.5925,70.2186,82.7368,1.0525,1.0525,15.6,0.304,86.316,82.3944,58.5526,94.0789,18.3861,1.8997 Cambridgeshire and Peterborough ICB,D81011,Clarkson Surgery,12245.42512,7.4869,68,73.5178,4.5587,63.7736,70.7692,4.3483,87.8788,7.9593,3.7571,0.8416,0.4069,32.1939,11.2332,19.447,72.1698,82.2757,0.8516,0.9318,18.8749,1.1003,88.4717,82.8418,87.3563,95.4023,21.3897,2.8855 Cambridgeshire and Peterborough ICB,D81012,Cornford House Surgery,10533.66351,7.0725,71.6511,64.4737,4.0232,65.252,70.6806,2.774,96.0784,1.8565,1.2951,1.0196,0.4469,10.7996,6.4403,14.0535,65.0177,80.9045,0.4133,1.2859,7.3344,0.5014,84.1572,81.8841,84.5361,88.6598,11.0656,1.7911 Cambridgeshire and Peterborough ICB,D81013,Trumpington Street Medical Practice,11607.6719,4.5926,67.3307,57.4359,1.4905,62.4235,73.5294,0.9731,89.9471,0.5922,0.5316,0.1756,1.3179,11.9402,2.0928,5.2119,63.3117,81.0345,0.2563,0.7025,4.5228,0.8663,76.545,84.9315,75,85.9375,8.2667,0.6076 Cambridgeshire and Peterborough ICB,D81014,Staploe Medical Centre,20927.90938,6.6274,73.6758,68.7646,3.3526,66.5272,73.913,2.7248,93.4426,3.8789,1.6826,0.6069,1.147,13.2042,6.7483,14.0926,63.023,75.4902,0.4311,0.5902,9.8657,2.4922,76.5845,82.618,87.2951,93.0328,18.5013,1.4482 Cambridgeshire and Peterborough ICB,D81015,Parson Drove Surgery,8140.038111,8.1898,72.3214,77.9817,4.5491,71.3542,72.327,3.8801,87.3016,6.0094,2.1943,0.3479,0.7634,28.7804,10.8048,17.581,45.2223,61.4786,0.4282,0.4415,11.6128,0.1342,83.4732,78.6026,74.4,91.2,16.3081,2.5957 Cambridgeshire and Peterborough ICB,D81016,Arbury Road Surgery,11791.30989,7.1717,65.2,50.8197,2.7184,57.4181,68.2635,2.4854,90.991,2.747,2.0505,0.466,1.2134,22.8761,6.5528,10.6718,65.5108,82.4104,0.6524,1.2971,11.0464,2.4405,86.6506,91.3462,86.1789,92.6829,19.8285,1.2116 Cambridgeshire and Peterborough ICB,D81017,Mill Road Surgery,6615.551234,5.5828,68.4615,55.2381,1.6717,62.5995,72.2772,1.4279,92.9578,0.7792,1.1145,0.4992,1.1827,13.5431,4.2325,8.463,64.8739,85.0746,0.3483,1.1029,8.0562,0.3272,80.1955,86.3014,87.2727,96.3636,15.5438,0.9984 Cambridgeshire and Peterborough ICB,D81018,"Orchard Surgery,Melbourn",8425.880398,8.2218,77.2388,69.7297,4.1711,78.2443,78.481,3.1046,91.954,2.7206,1.8249,0.7821,0.8417,9.5223,6.5838,15.0966,74.605,81.4433,0.5214,0.7939,9.74,0.4203,90.6228,81.1966,82.2785,91.1392,9.7394,2.3463 Cambridgeshire and Peterborough ICB,D81021,St. George's Medical Centre,12257.31573,8.3155,71.3911,67.3004,3.493,73.6239,74.1935,3.6292,93.3824,4.3861,2.2352,1.0095,0.9117,18.0866,8.6865,15.943,76.7471,87.2596,0.8653,0.8653,17.1596,2.6957,90.904,88.2576,90.4459,96.1783,16.6865,1.7225 Cambridgeshire and Peterborough ICB,D81022,Jenner Healthcare,18194.86421,7.3021,76.7551,75.8216,4.1303,77.3333,78.635,3.9646,92.2156,6.2806,2.685,0.9826,0.7877,27.9056,10.0112,19.2802,59.6491,77.2908,0.4913,0.6284,18.9341,0.7866,89.9896,81.5238,79.1045,94.7761,14.1176,2.3079 Cambridgeshire and Peterborough ICB,D81023,Paston Health Centre,13009.50169,6.1765,64.8718,65.343,2.6247,73.2218,74.8879,2.3274,88.2353,2.7834,1.9577,0.6018,0.3826,29.736,9.3524,13.1961,64.6053,82.3333,0.8701,0.8121,16.0497,0.1522,87.0149,87.9433,85.1064,92.5532,20.7016,1.7619 Cambridgeshire and Peterborough ICB,D81025,Cherry Hinton Medical Centre,8884.85139,5.7012,71.2121,60.3175,3.6621,58.2418,70,2.8193,94.1861,2.9918,1.5351,0.4013,1.5832,13.6136,6.6306,12.5213,57.2906,81.1388,0.4415,1.1939,9.1498,0.2717,77.6997,89.3048,85,93,12.8271,1.4648 Cambridgeshire and Peterborough ICB,D81026,Boroughbury Medical Centre,33692.39932,6.0502,67.0151,70.4778,3.3884,57.9336,68.7366,3.3096,75.0853,3.1151,2.0981,1.0601,1.4289,29.8223,9.5855,14.699,69.6078,85.9504,0.6499,1.3125,15.0095,0.3467,85.4326,83.2432,76.4706,91.2854,21.3573,1.9372 Cambridgeshire and Peterborough ICB,D81027,Wellside Surgery,6805.205553,7.7408,73.6462,70.9184,4.1174,75.102,76.8293,3.2234,92.7711,3.9918,1.9517,0.617,1.3253,10.584,8.1477,16.9353,62.8545,78.9683,0.277,0.617,10.8867,0.9172,89.5746,80.8383,79.7872,90.4255,12.2938,2.2287 Cambridgeshire and Peterborough ICB,D81028,Firs House Surgery,12423.88881,7.3273,80.1402,74.5704,4.8628,75.1979,81.3492,3.3952,93.1624,2.3819,1.4279,1.5707,2.1217,6.5495,6.0887,15.1039,64.4134,79.0924,0.4046,0.9123,11.0689,1.7358,80.7407,81.7757,88.4615,88.4615,8.8058,2.007 Cambridgeshire and Peterborough ICB,D81029,Old Fletton Surgery,13027.49723,6.5427,70.3125,68.2657,3.3164,65.1357,69.5067,2.8394,83.9161,2.6813,2.0141,0.4467,0.4743,25.2455,8.0268,13.985,64.5664,83.558,0.6815,0.8405,13.203,0.5025,88.0923,86.9565,74.5223,89.8089,19.2524,1.6204 Cambridgeshire and Peterborough ICB,D81030,Grove Medical Practice,15044.01095,8.4834,76.5957,72.5806,4.4782,71.4612,78.2759,3.7979,87.7049,6.5724,2.1731,0.9313,1.0781,9.0744,7.3975,18.7186,71.3415,83.3333,0.4954,0.9313,11.1085,0.5443,88.7095,83.4667,85.1429,92,10.646,2.1929 Cambridgeshire and Peterborough ICB,D81031,Yaxley Group Practice,16881.70458,6.7503,75.4386,76.808,3.4049,73.5664,78.6982,2.5399,94.3396,3.1879,1.9263,0.4376,2.42,13.4571,7.5145,14.7714,70.5368,82.0225,0.7293,0.6186,16.6559,0.8425,89.8435,84.985,91.2844,94.4954,12.6539,1.5591 Cambridgeshire and Peterborough ICB,D81033,Over Surgery,4422.669273,8.9386,79.235,76.6129,5.1344,77.0833,82.243,3.5779,94.2857,6.9071,1.7182,0.6064,1.5744,5.1558,6.862,16.9598,61.4804,77.4011,0.3032,0.7277,13.6364,3.2952,90.8544,81.3726,89.7959,95.9184,9.5226,1.9001 Cambridgeshire and Peterborough ICB,D81034,St Mary's Surgery,18031.11262,7.8245,77.7778,74.2718,4.8523,80,83.6795,4.0043,93.3333,4.4274,2.2914,0.9042,0.8224,10.4995,8.0445,17.4323,79.0017,87.5641,0.5391,0.7863,15.1874,3.1851,89.7028,84.9515,83.945,98.1651,10.4285,2.0106 Cambridgeshire and Peterborough ICB,D81035,Comberton Surgery,8781.31293,8.714,80.6358,71.6667,4.8962,71.4286,79.6117,3.4397,96.9231,4.9289,1.3222,0.847,1.4618,7.9051,6.1414,15.3187,58.3562,76.0309,0.3719,0.7954,9.2238,0.5488,81.0325,77.907,78.1609,90.8046,7.7909,1.942 Cambridgeshire and Peterborough ICB,D81036,Priors Field Surgery,5000.806748,9.1111,75.9358,71.9008,3.9391,74.1935,76.1905,3.9391,95.9184,4.1145,2.3216,0.628,1.4661,9.5972,7.6259,17.5452,45.2186,62.6316,0.5519,0.6851,10.3571,0.8726,78.9333,90.1786,72.7273,92.7273,12.0075,1.8078 Cambridgeshire and Peterborough ICB,D81037,Bridge Street Medical Centre,6475.325244,3.0414,65.0685,58.4158,1.3707,39.7163,64.2105,0.6985,80.9524,0.5473,0.3667,0.1135,0.5473,12.5234,1.3582,3.7105,68.2243,86.5385,0.1833,0.7246,2.6423,0.8048,62.4186,72.973,86.9565,91.3043,8.0221,0.5762 Cambridgeshire and Peterborough ICB,D81038,Kimbolton Medical Centre,6527.878575,8.5442,82.0988,75.1111,4.4969,84.0659,84.4086,3.2904,97.6191,4.9787,1.6863,0.7678,0.606,13.1301,6.2963,19.0705,70.7042,80.9816,0.1919,0.4799,9.5807,0.2627,86.0727,82.8767,93.0556,97.2222,6.7955,1.9057 Cambridgeshire and Peterborough ICB,D81041,Bourn Surgery,5724.629547,7.3965,81.448,70.4819,4.9661,78.392,79.8658,2.8883,96,4.3902,1.1347,0.6484,0.9006,8.8224,6.5598,14.5594,77.7632,89.4737,0.2653,0.6042,13.3584,0.6091,84.7266,93.3884,93.6508,95.2381,8.3288,1.7978 Cambridgeshire and Peterborough ICB,D81042,Waterbeach Surgery,5359.549764,6.9759,74.026,69.8113,3.2696,68.6992,77.0115,2.8337,95.3846,2.7154,1.4755,1.1905,1.2829,8.6716,5.8152,13.5647,59.464,79.2453,0.3857,0.9725,7.1413,0.6064,88.2183,85.1852,70.5882,100,12.5244,1.442 Cambridgeshire and Peterborough ICB,D81043,Granta Medical Practices,55247.78607,7.9797,78.0996,69.697,4.8196,72.1275,80.8281,3.6182,94.2913,2.8943,1.5079,0.6713,0.8719,8.2478,6.4505,14.7893,61.5614,78.0389,0.4372,0.7711,10.5167,1.3618,80.0929,86.7387,71.1359,86.7784,12.0396,1.8005 Cambridgeshire and Peterborough ICB,D81044,Nuffield Road Medical Centre,13828.58055,6.9718,65.3125,55.2174,3.0499,57.424,67.3267,3.127,78.9916,3.7295,1.9,1.6196,1.5676,19.6674,6.6213,11.344,63.7931,78.1659,0.603,1.227,10.7752,4.6457,80.5303,82.9091,84.2857,89.2857,18.1282,1.6546 Cambridgeshire and Peterborough ICB,D81045,Buckden Surgery,9075.626152,7.7281,77.8364,75.2,5.4136,77.7049,82.3232,3.7494,97.6191,3.5092,1.7621,0.8321,0.9975,7.84,7.2429,17.1317,63.5699,77.0235,0.2937,0.4993,12.2221,1.9243,90.7787,84.1837,88.1818,95.4545,9.5721,1.9579 Cambridgeshire and Peterborough ICB,D81046,New Queen Street Surgery,17528.2082,6.2284,74.2908,71.4286,3.7122,72.807,74.9206,2.5492,90.7407,5.2164,2.1027,0.7113,1.723,20.1073,7.9722,15.7001,76.1387,90.3328,0.5244,0.7165,12.6577,0.819,88.9348,82.398,91.5493,94.3662,15.1344,1.5835 Cambridgeshire and Peterborough ICB,D81049,Spinney Surgery,10910.201,7.659,78.2967,72.0165,3.6398,77.0408,77.8351,3.3452,87.7863,4.2072,1.6553,0.6326,1.0707,9.9581,7.0736,16.6479,60.548,78.308,0.442,0.728,12.8272,0.3853,84.9433,88.6555,87.0968,95.9677,11.5269,1.9152 Cambridgeshire and Peterborough ICB,D81050,The Hicks Group Practice,15281.44092,7.7274,73.1076,72.2063,3.4697,69.3053,76.3889,2.9427,95.3757,3.3172,1.5572,0.6099,1.0684,13.5192,7.0834,13.7782,73.0186,84.854,0.6987,0.8349,16.4363,1.0552,89.2938,84.0678,86.2069,91.954,13.4316,1.652 Cambridgeshire and Peterborough ICB,D81051,Burwell Surgery,8277.595933,8.2261,78.5714,75.8475,4.6672,81.6901,81.7708,3.452,92.8571,2.6842,1.6991,0.4624,0.3355,9.4621,6.3137,13.937,64.3917,76.1404,0.4517,0.7098,10.4281,2.5799,87.6671,89.9281,84.6154,94.5055,10.2629,1.7959 Cambridgeshire and Peterborough ICB,D81052,Cornerstone Practice,11506.17114,8.9209,72.4324,71.0843,4.9702,71.5867,72.043,4.0305,92.6316,4.3074,3.4771,1.2321,1.096,23.5423,10.7165,19.1605,68.1351,84.5666,1.3574,0.9606,17.3824,0.2,90.2803,85.1449,88.6076,93.6709,19.0323,2.2345 Cambridgeshire and Peterborough ICB,D81054,Red House Surgery,15072.6091,3.1715,65.3731,58.6498,1.904,35.2564,64.0553,1.2827,92.9204,0.9407,0.6168,0.2682,0.8401,15.3446,2.59,6.816,56.9893,70.2532,0.3263,0.9028,3.8032,2.0267,64.3793,82.8767,79.7753,84.2697,14.7482,0.6838 Cambridgeshire and Peterborough ICB,D81055,Bottisham Medical Practice,6743.57921,8.4464,79.2453,70.8955,5.7206,78.75,76.0684,4.2521,96.875,6.3704,2.4249,2.3224,1.3757,10.6384,7.3912,18.1182,54.6433,77.044,0.3757,1.0758,9.672,3.0174,86.5337,79.562,85.4839,91.9355,8.6939,2.5615 Cambridgeshire and Peterborough ICB,D81056,Petersfield Medical Practice,5142.699333,4.1319,64.0625,54.5455,2.5546,50.6061,68.4685,1.4481,95.3488,1.2589,0.9016,0.2186,1.605,11.6813,2.993,8.5109,65.6547,76.0417,0.1913,1.2295,4.9882,0.7235,69.0987,86.9565,82.3529,91.1765,9.6831,0.724 Cambridgeshire and Peterborough ICB,D81057,Lakeside Healthcare St Neots,21068.06122,6.6528,72.5373,70.8155,3.9406,74.697,74.2347,3.4205,95.2381,4.0422,2.1085,1.0215,1.0845,13.0798,7.7948,16.1419,64.3136,82.0658,0.8481,0.8622,14.806,0.7773,87.007,82.5708,84.252,94.8819,13.4681,1.9867 Cambridgeshire and Peterborough ICB,D81058,Harston Surgery,6974.395362,7.2274,79.1209,76.5957,5.3396,71.6157,77.8481,2.929,96.1539,5.6125,0.9591,0.648,1.0737,6.5666,5.7618,14.3987,56.5499,71.7647,0.3629,0.7906,9.1264,1.4714,83.6183,80.1527,85.4839,95.1613,6.9742,2.1384 Cambridgeshire and Peterborough ICB,D81059,Ramsey Health Centre,7992.105714,8.136,75.4448,66.1202,3.9361,74.2081,76.9231,3.9092,91.6667,4.216,2.633,0.7254,1.3998,17.2739,11.0891,16.7115,58.0875,78.9272,0.6986,0.6986,17.997,0.2417,89.1628,89.4273,90.4,95.2,14.6591,2.0957 Cambridgeshire and Peterborough ICB,D81060,Moat House Surgery,7400.150778,7.1871,78.3172,73.3333,4.1304,79.9107,80.1282,3.4442,93.9759,5.3217,2.0586,0.739,1.1934,14.6799,8.8184,16.0201,53.7344,78.8,0.3431,0.5014,13.3849,0.337,88.2292,79.5699,91.1765,94.1176,9.8574,1.9266 Cambridgeshire and Peterborough ICB,D81061,George Clare Surgery,12526.83276,8.7616,71.564,65.2921,4.4415,70.1847,73.0435,4.4912,87.8261,3.6526,2.9914,0.7375,1.4426,19.6056,9.0928,19.1167,71.3348,82.881,0.6795,0.6712,21.813,0.7997,89.2233,79.078,68.2635,94.012,17.2012,1.7899 Cambridgeshire and Peterborough ICB,D81062,Haddenham Surgery,7593.157559,8.8128,80.1948,74.2718,5.1158,81.4159,82.9412,3.805,86.1111,5.1765,2.0234,0.6108,1.4881,11.3848,8.3946,16.0601,67.7295,79.2952,0.3436,0.5345,15.8778,1.7089,88.6113,84.5714,87.0968,92.4731,12.5,2.2652 Cambridgeshire and Peterborough ICB,D81064,Mercheford House,7763.105298,9.6004,73.7589,72.3529,5.1711,73.9362,78.3333,4.7038,92.7273,3.0991,3.769,0.799,1.1253,23.5214,11.0586,22.5841,69.851,86.2745,0.6332,0.6483,15.3662,0.2861,91.1604,83.9572,90.3846,96.1538,16.7088,2.4876 Cambridgeshire and Peterborough ICB,D81065,Nightingale Medical Centre,6137.428548,6.896,55.8333,57.1429,1.7772,61.0039,67.4157,2.2252,71.0843,2.7621,2.046,0.224,2.4482,35.1348,9.3731,10.8423,76.9111,89.4118,1.0006,1.2097,13.8523,0.326,88.6076,89.4309,74.1573,88.764,24.4481,0.911 Cambridgeshire and Peterborough ICB,D81066,Queen Edith Medical Practice,7999.264566,5.1126,75.5365,64.9718,3.2187,53.0786,72.956,2.5617,90.2439,1.3349,1.1808,0.6666,0.6557,9.4836,4.2128,9.8848,61.6011,78.4053,0.2095,0.7142,5.8314,1.3269,78.8616,90,86.3636,92.4242,9.3104,1.3237 Cambridgeshire and Peterborough ICB,D81070,Woodlands Surgery,7723.359218,4.1921,73.2877,60,1.5177,59.8194,74.7899,1.0828,92.5926,0.5751,0.5414,0.0888,1.4164,11.7144,2.6946,5.7957,66.7864,75,0.2396,1.1627,4.7923,0.3027,86.6133,87.2727,80,88.8889,8.7617,0.497 Cambridgeshire and Peterborough ICB,D81073,Westwood Clinic,5600.611071,5.1193,63.8655,67.7419,1.3701,67.9612,74.3902,2.312,83.0189,2.9234,1.8496,0.5994,0.5801,38.2506,10.0613,13.5811,68.9956,86.7925,0.6679,1.1817,18.6543,0.5118,90.5434,88.3495,95.1807,93.9759,22.9246,1.0447 Cambridgeshire and Peterborough ICB,D81078,Maple Surgery Bar Hill Health Centre,3168.835704,6.2354,75.3846,64.6341,3.6098,70.1299,77.0492,2.2927,92.1053,1.9839,1.1707,0.2927,1.3639,9.5439,5.6235,14.6342,68.5484,86.5385,0.3415,0.6342,10.3224,0.7097,86.3909,92.1053,88.2353,97.0588,13.84,1.0244 Cambridgeshire and Peterborough ICB,D81081,Great Staughton Surgery,4851.197563,7.9463,82.0628,80.9524,5.639,80.597,85.4545,4.3408,96,5.052,1.785,0.426,1.3536,13.6658,7.65,17.9108,71.3459,86.4583,0.568,0.426,14.9867,0.3929,93.0167,73.9496,86.2069,94.8276,8.0272,2.069 Cambridgeshire and Peterborough ICB,D81082,Almond Road Surgery,7617.185302,6.2517,75.7813,75.4011,3.5874,74.2188,78.2051,3.0878,100,3.8717,2.4856,0.82,1.0114,13.576,6.9025,15.5285,72.148,86.6109,0.8584,0.5766,16.8142,0.7896,93.2553,81.9444,85.8974,93.5897,16.1335,2.1397 Cambridgeshire and Peterborough ICB,D81084,Willingham Medical Practice,9005.15907,6.2845,76.8382,69.3467,2.8505,71.5203,75.2747,2.0544,90.6832,1.1486,1.3268,0.2825,1.195,8.8022,5.3749,9.6816,56.4018,71.1111,0.4537,0.6335,6.5321,0.5821,80.0555,81.5534,67.8571,88.0952,9.8941,0.9673 Cambridgeshire and Peterborough ICB,D81085,Papworth Surgery,6485.894954,7.0727,78.5714,72.3529,3.9257,77.0161,79.6178,3.1035,95.2381,3.1318,1.2865,0.504,1.5491,9.4229,7.1512,15.8886,75,82.1101,0.6101,0.7825,11.5844,0.966,89.8756,83.1933,74.359,97.4359,10.4405,1.6313 Cambridgeshire and Peterborough ICB,D81086,East Barnwell Health Centre,7827.355615,7.0325,68.5864,62.0438,2.4712,65.2997,76.2712,2.2705,86.7647,3.0327,2.0321,0.3387,1.182,28.4872,6.8436,11.3146,52.8846,68.9655,0.8781,1.2042,11.2131,2.5475,84.0806,82.4428,75.3086,91.358,16.1091,1.2544 Cambridgeshire and Peterborough ICB,D81603,Riverside Practice,8122.721772,7.1169,72.314,70.5202,3.9004,73.617,75.5396,3.65,91.3044,7.198,2.3323,0.7116,0.2629,23.4867,10.2335,15.2853,70.6621,87.3239,0.9619,0.7643,21.8077,0.0939,88.1361,82.1739,84.1667,93.3333,20.4874,2.2533 Cambridgeshire and Peterborough ICB,D81606,Riverport Medical Practice,11670.52459,7.7315,75.969,71.8475,3.4583,75.5294,80.292,3.1519,90.9836,4.4175,1.9626,0.518,0.2609,8.7897,6.8343,16.781,61.2234,80.7143,0.4742,0.6421,10.0585,0.1369,83.3781,85.9031,81.9444,93.75,13.3368,1.7875 Cambridgeshire and Peterborough ICB,D81607,Swavesey Surgery,2871.998277,7.4764,81.9048,73.6842,4.2213,78.3333,83.0769,2.4244,100,2.7513,0.9127,0.1711,1.1005,6.1171,5.9675,11.409,63.3333,77,0.2282,0.4278,10.7484,1.1329,89.9191,90,87.5,93.75,9.4084,1.5402 Cambridgeshire and Peterborough ICB,D81611,Fenland Group Practice,13489.74787,8.9518,75.052,72.1212,3.3452,77.3779,75.6757,4.4627,91.1111,3.0884,3.2848,0.7702,1.445,17.0986,9.4551,19.3083,67.7028,83.5341,0.6116,0.5437,21.4677,1.8336,89.3251,82.8829,89.7727,98.2955,14.0373,2.4994 Cambridgeshire and Peterborough ICB,D81612,Milton Surgery,4447.318242,7.9111,82.2785,74.5614,4.2553,70.2857,82.3529,3.1718,92.8571,2.5635,1.4578,0.6107,0.8864,10.3402,5.4623,13.6722,77.9661,88.3436,1.2805,1.0835,10.781,0.9955,90.8824,78.5714,97.4359,97.4359,8.5972,1.8716 Cambridgeshire and Peterborough ICB,D81615,Thorpe Road,9594.523583,5.2346,73.0159,71.3542,2.5445,56.0976,70.7602,1.9943,93.2432,2.9356,1.0058,0.7995,1.7792,20.9033,6.9166,12.0089,73.7545,80.9524,0.3353,0.8338,14.4223,0.2475,88.5312,85.3503,80.3419,94.0171,13.7341,1.3496 Cambridgeshire and Peterborough ICB,D81618,Ailsworth Medical Centre,3160.787964,6.576,72.4771,64.8649,3.283,65.625,77.1429,2.4888,90,2.0527,2.1181,0.503,3.4554,20.6802,6.6801,14.3235,74.9451,90.6977,0.609,0.8208,8.1765,0.297,85.4454,89.1892,73.6842,97.3684,16.5599,1.5091 Cambridgeshire and Peterborough ICB,D81622,Trinity Surgery,13488.12108,4.8851,66.4671,63.806,2.7712,67.6892,67.2566,2.9872,83.6957,4.8034,3.3075,0.9759,0.8813,34.1652,8.1518,12.9023,83.4153,93.5275,0.7822,0.6555,16.473,0.5407,91.7435,80.719,93.6709,94.9367,28.7032,1.9517 Cambridgeshire and Peterborough ICB,D81625,Thistlemoor Medical Centre,22968.74525,3.5099,48.7078,44.7368,1.4546,58.4323,67.8082,1.5638,59.3123,2.3808,0.9184,0.1766,1.752,34.4705,5.832,10.603,66.8491,83.5897,0.4046,0.4849,11.3313,0.125,80.4514,87.2861,86.7925,93.5849,34.6572,0.7418 Cambridgeshire and Peterborough ICB,D81629,Willow Tree Surgery,5878.024253,6.1174,65.3846,61.5385,2.7063,63.7681,73.3333,2.5894,86.7925,3.0342,2.0047,0.4845,1.9072,33.077,7.2082,13.2309,64.0123,81.295,0.5346,1.1026,11.6385,0.1082,81.736,74.4898,61.5385,89.2308,19.8627,1.303 Cambridgeshire and Peterborough ICB,D81630,Hampton Medical Centre,8101.411705,4.8584,63.9456,63.5659,1.4697,69.5391,75.9124,1.2622,87.5,2.1549,0.5792,0.9337,1.7362,16.9115,5.3165,8.4032,62.0859,71.3376,0.5101,0.7089,10.2327,0.4245,87.5811,76,90,92.5,11.195,0.7954 Cambridgeshire and Peterborough ICB,D81631,Central Medical Centre,11492.78836,3.6493,50.5747,42.1769,1.0535,46.7153,65.2778,1.5022,69.7248,2.2757,0.9039,0.1756,0.6423,36.0958,6.786,8.4341,60.4433,85.4839,0.4617,0.7608,9.7174,0.0797,75.2646,87.1429,82.9787,86.5248,25.5707,0.8064 Cambridgeshire and Peterborough ICB,D81633,Acorn Surgery,9792.431673,5.0038,67.1642,58.2857,1.9657,72.7064,83.9506,1.9391,91.0714,2.4279,1.9214,0.8323,1.3254,20.8516,6.9585,12.8829,73.9683,87.6923,0.8589,0.7261,14.0629,0.6179,85.5104,83.6478,86.6071,94.6429,21.9141,1.1953 Cambridgeshire and Peterborough ICB,D81637,Monkfield Medical Practice,8192.925493,5.5054,73.0769,63.2911,2.0957,73.3577,80.663,1.6057,94.079,0.8762,0.5352,0.1131,1.8079,7.4454,4.7588,7.4783,69.5906,81.7518,0.3392,0.6257,11.2356,1.7639,84.5209,89.7436,76,93.3333,10.1161,0.6936 Cambridgeshire and Peterborough ICB,D81645,The Grange Medical Centre,2487.254529,5.758,69.6429,64.8649,1.9329,56.0748,72.7273,2.0007,90,2.4457,1.8311,0.4408,1.5399,24.3716,8.5803,11.1224,69.6751,76.4706,0.5087,1.2208,10.9601,0.4161,86.0786,88.1356,85.7143,94.2857,17.4923,1.1529 Cambridgeshire and Peterborough ICB,E82132,Roysia Surgery,5344.725411,8.3438,76.506,67.4797,3.2173,79.1469,80.3571,2.5539,91.0256,3.732,1.2272,0.4809,2.4173,9.8,6.5368,14.2289,57.4436,75.1295,0.3648,0.7463,11.2595,0.7263,80.5609,86.0215,56.8966,87.931,12.4974,1.3765 Cambridgeshire and Peterborough ICB,K83017,Wansford,10002.13562,7.4835,80.8463,75.9868,5.4357,79.5455,79.7468,3.7157,96.6667,4.7894,2.2237,1.1689,0.812,13.3021,6.4887,19.8898,65.4733,81.7977,0.2851,0.4371,11.5086,0.4653,89.6055,86.7347,89.3204,94.1748,9.6686,2.4898 Cambridgeshire and Peterborough ICB,Y00056,Cambridge Access Surgery,1916.985395,11.6556,35.2941,16.6667,1.1921,47.0588,57.1429,3.3113,,0.6623,6.755,0.1325,6.4901,18.22,4.5033,9.1391,38.806,50,1.7219,16.2914,12.4503,1.0949,91.129,75,42.8571,85.7143,71.9947,1.3245 Cambridgeshire and Peterborough ICB,Y00185,Cathedral Medical Centre,9279.662363,7.1737,74.0214,68.9655,3.5989,76.659,78.2407,2.085,95.1613,3.2204,1.2717,0.8132,1.899,9.9689,6.0348,13.7296,70.0153,74.9117,0.6575,0.744,10.2054,2.097,83.8795,75.9259,88,93,10.8745,1.5226 Cambridgeshire and Peterborough ICB,Y00486,Botolph Bridge Community Health Centre,5900.411342,4.8798,63.6986,62.8099,2.1691,66.0066,75,1.4592,81.0811,2.3037,1.262,0.1578,2.1088,20.0574,6.5142,10.1748,59.2145,73.2143,0.3681,0.815,8.5593,0.1973,72.355,81.0127,71.6418,89.5522,15.8843,0.8676 Cambridgeshire and Peterborough ICB,Y02769,St Neots Health Centre,5778.542649,5.4818,66.8966,61.9469,1.8802,70.5382,75.2475,1.5068,93.9655,2.1305,1.378,0.1288,0.7102,14.5156,4.9808,8.8732,66.2522,84.127,0.322,0.6053,10.2131,0.4754,86.1042,80.303,76.3636,90.9091,17.8783,0.6568 Cambridgeshire and Peterborough ICB,Y07025,Park Medical Centre,8352.527831,6.7586,63.9485,64.4068,2.5378,56.0554,67.7419,2.9104,74.6988,6.0814,1.5949,0.8615,1.6545,,9.4757,14.7148,54.5543,75,0.8149,1.1292,15.0395,0.8435,80.8056,82.4324,74.1935,88.7097,18.6222,1.7462 Cambridgeshire and Peterborough ICB,Y07057,Bretton Medical Practice,11657.98217,5.379,69.8758,69.0909,2.6949,52.4887,71.5084,2.6539,86.4,4.9309,2.128,0.4355,2.1331,,8.6742,15.3726,58.6447,81.1644,0.6819,0.986,16.8292,0.6445,84.8143,81.2274,80.7692,92.3077,22.3437,1.3228 Cambridgeshire and Peterborough ICB,Y07059,Nene Valley and Hodgson Medical Practice,18244.17232,7.5288,73.8351,73.2323,2.9796,70.0447,76.1905,2.7192,86.4865,3.4874,1.9951,0.672,0.9567,,8.0203,14.1585,62.1658,78.692,0.6199,0.8491,12.5314,0.8542,84.8147,77.1605,71.9457,88.6878,16.8368,1.6148 Cambridgeshire and Peterborough ICB,Y07060,Thomas Walker Westgate Healthcare,23888.33989,4.308,59.2532,58.7007,2.3194,51.153,60.8,2.1199,76.9231,3.2347,1.5293,0.5398,0.9694,,8,12.5044,73.4133,83.6868,0.4068,0.8253,12.9637,0.6443,77.7372,87.3662,85.209,91.6399,21.983,1.1969 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence "Bristol, North Somerset and South Gloucestershire ICB",L81004,Portishead Medical Group,18436.11226,6.1397,78.6466,76.3415,5.5262,75,76.8025,3.6157,93.3333,5.9499,2.0383,0.9442,0.8519,7.4957,6.7087,21.0775,56.5139,72.9492,0.3777,0.4777,8.3889,3.6405,88.2395,85.2368,82.6816,87.1508,8.6378,2.5437 "Bristol, North Somerset and South Gloucestershire ICB",L81007,Bridge View Medical,37163.88419,6.2831,67.1855,72.8597,2.9769,68.841,70.2479,2.0506,92.6316,3.6344,1.8551,0.4426,2.1658,24.066,5.1796,10.7523,64.1649,80.0743,0.5377,1.181,10.2432,2.7519,81.6739,88.6667,70.5882,88.2353,17.5635,1.5258 "Bristol, North Somerset and South Gloucestershire ICB",L81008,Shirehampton Group Practice,13139.70425,6.7354,68.4543,63.1818,3.886,71.0784,71.1864,4.2489,85.8407,7.5659,3.3549,0.9649,1.8239,31.7215,7.8904,15.721,63.1616,70.4735,0.6816,0.9737,16.404,2.4819,87.6923,86.3481,80.1587,88.0952,20.3073,2.0713 "Bristol, North Somerset and South Gloucestershire ICB",L81009,Stockwood Medical Centre,12577.35169,7.8256,74.2424,67.1296,4.8677,77.8689,74.2515,3.8791,86.3248,7.4943,2.6645,1.3746,3.1336,26.1979,9.0823,17.6537,63.5303,80.9524,0.8286,0.8474,15.0125,4.6408,83.5139,84.0136,83.6735,91.1565,17.863,2.8434 "Bristol, North Somerset and South Gloucestershire ICB",L81012,Montpelier Health Centre,18508.86391,4.7435,60.8434,64.898,2.0437,57.8339,71.25,1.2846,71.6129,2.0497,1.6155,0.1654,2.4711,30.7944,4.2485,6.9632,63.2248,73.2558,0.4671,1.6934,7.2055,2.1998,72.2806,78.2178,78.125,88.2813,24.9063,0.7591 "Bristol, North Somerset and South Gloucestershire ICB",L81013,Fishponds Family Practice,14077.27025,6.5793,67.5949,66.7925,3.1099,61.7068,71.4932,2.6105,82.1138,5.3421,1.9522,0.5297,1.2931,25.2701,7.1422,13.6955,71.0744,81.5643,0.6129,1.1199,9.8915,1.6068,81.4111,82.2314,85.5172,89.6552,16.1721,1.6647 "Bristol, North Somerset and South Gloucestershire ICB",L81014,Frome Valley Medical Centre,14684.16138,7.4478,80.0391,75.2113,4.8569,81.7284,83.959,3.3874,89.2857,8.6152,1.6626,1.2418,2.2609,8.4144,7.4884,18.7099,69.5357,81.8868,0.3794,0.5105,9.8484,2.7393,90.4307,84.8397,85.1852,88.8889,8.1799,2.4836 "Bristol, North Somerset and South Gloucestershire ICB",L81015,Charlotte Keel Medical Practice,20652.23033,7.346,52.7933,59.4697,1.897,57.9976,67.5,1.897,72.1154,2.9887,1.2613,0.3178,1.4157,39.6535,9.5105,10.1054,55.9195,65.3992,0.56,1.4177,13.3392,0.6166,78.4487,84.7926,77.0833,86.1111,22.3862,1.1352 "Bristol, North Somerset and South Gloucestershire ICB",L81016,Graham Road Surgery,13854.57825,7.3632,63.9118,62.8692,4.5405,54.8287,68.75,3.8733,87.2727,8.0061,3.0369,1.2546,3.0972,35.3211,9.1708,16.8774,54.3614,79.3187,1.0156,1.8023,13.5694,2.5445,83.9548,81.1728,78.3217,92.3077,23.0072,2.549 "Bristol, North Somerset and South Gloucestershire ICB",L81017,Westbury On Trym Primary Care Centre,10771.87187,6.7264,77.8409,72.5322,4.6219,76.0494,79.5,3.3361,94.4444,4.802,1.0168,1.2521,1.4273,9.1897,5.0147,13.1092,65.5382,82.8431,0.3109,0.6723,8.9511,4.1555,83.7171,79.7101,75,88.0952,6.3207,2.3361 "Bristol, North Somerset and South Gloucestershire ICB",L81018,Severn View Family Practice,9525.576259,8.2275,79.4721,86.0465,6.0579,75.3247,80,3.8088,94.1177,6.0619,1.8761,1.0285,2.1347,9.6284,7.1641,19.3038,70.5835,83.9662,0.8477,0.7798,13.971,1.1436,91.299,73.5751,93.8144,92.7835,9.5667,2.7577 "Bristol, North Somerset and South Gloucestershire ICB",L81019,Concord Medical Centre,16321.17107,7.255,78.7234,73.2759,3.1135,72.1678,76.6784,2.1491,93.75,3.1423,1.3115,0.4133,2.2465,11.4296,7.0855,12.509,59.7169,78.7529,0.3417,0.4188,11.8693,1.3651,88.7594,86.7596,89.1304,90.2174,11.5216,1.4548 "Bristol, North Somerset and South Gloucestershire ICB",L81021,Winscombe Surgery,11514.18821,7.8731,79.562,73.0627,5.7337,77.8912,78.8462,4.1308,90.9091,8.2147,2.244,1.5662,1.8799,11.5523,8.1423,17.9978,72.6508,81.2616,0.4946,0.5221,10.8807,2.6457,90.6905,74.4604,83.4586,94.7368,10.8747,2.9401 "Bristol, North Somerset and South Gloucestershire ICB",L81022,Horfield HC,18660.48502,7.0204,68.7664,67.6471,2.8005,67.4731,76.4192,2.6227,85.5556,3.3029,1.8448,0.4945,2.5643,26.5216,7.6754,11.4519,51.3322,72.043,0.8613,1.028,11.0236,1.1408,84.661,86.3248,71.7073,84.878,18.5307,1.5003 "Bristol, North Somerset and South Gloucestershire ICB",L81023,East Trees Health Centre,15363.74334,5.8767,58.8462,53.9267,1.8366,64.592,62.2951,1.7853,80.8081,2.3628,1.6889,0.3339,2.5391,33.1282,7.018,9.1061,50.8787,73.5426,0.5523,1.2266,10.4686,0.5496,79.124,88.2353,86.5854,87.8049,22.37,1.1945 "Bristol, North Somerset and South Gloucestershire ICB",L81024,Courtside Surgery,15840.7266,8.7246,78.2609,76.1905,4.8445,79.5407,82.2464,3.3253,91.9463,5.6935,1.6692,0.8998,1.9605,12.1254,8.6106,17.1676,70.3668,80.9524,0.5086,0.6129,17.007,2.3009,91.3847,87.1429,79.5918,93.3673,12.6828,2.1256 "Bristol, North Somerset and South Gloucestershire ICB",L81026,The Downend Health Group,29387.52192,6.8298,77.5713,78.6096,4.5595,79.087,78.5867,3.2843,93.75,8.6246,1.8747,1.01,2.0736,14.3073,7.214,17.555,66.6667,75.7669,0.4723,0.97,11.1065,4.5936,91.6005,84.37,85.4671,92.0415,12.4326,2.2307 "Bristol, North Somerset and South Gloucestershire ICB",L81029,Three Shires Medical Practice,9566.161618,7.744,75.5725,76.4479,5.0987,79.6992,80,3.5826,92.3913,6.0408,1.2565,0.54,1.8469,9.8717,6.4716,16.2721,52.6042,75.4217,0.2388,0.3946,9.773,2.9283,81.5666,84.2105,80.2198,89.011,7.6284,2.2949 "Bristol, North Somerset and South Gloucestershire ICB",L81031,The Armada Family Practice,18602.02601,6.6954,73.4043,77.628,3.9823,74.8549,76.8116,3.4653,94.0828,6.4646,2.3389,1.2248,1.8371,24.2719,8.9805,17.9048,52.7033,73.6593,0.5663,0.8371,13.5493,2.4063,86.116,84.2995,66.055,79.3578,13.9052,2.4066 "Bristol, North Somerset and South Gloucestershire ICB",L81033,Nightingale Valley Practice,15057.2871,7.5162,68.8442,67.5958,3.6885,73.8095,73.9669,2.7066,85.6061,4.6077,2.2688,0.7231,2.2301,21.9103,7.1955,13.1949,62.1269,73.4908,0.7563,1.015,10.7977,3.1906,85.8827,78.8274,76.4331,69.4268,16.2229,1.8111 "Bristol, North Somerset and South Gloucestershire ICB",L81034,Tyntesfield Medical Group,34785.25043,7.1327,80.5153,78.2927,5.9723,78.9529,80.3279,3.8054,96.4427,6.8542,1.5912,1.2015,1.2754,8.1196,6.6125,16.3641,72.108,84.9365,0.372,0.6377,9.7475,2.7699,89.6111,83.4711,85.8934,91.5361,8.0451,2.8607 "Bristol, North Somerset and South Gloucestershire ICB",L81037,Pioneer Medical Group,26192.66297,6.7038,66.4845,59.3264,3.0217,61.5029,68.7307,3.1278,85.8333,4.7708,2.4298,0.8791,1.5505,33.44,7.9946,13.0368,54.1938,68.8889,0.7201,1.0249,11.4557,1.7151,84.8748,83.1169,73.8636,87.8788,22.7463,1.9571 "Bristol, North Somerset and South Gloucestershire ICB",L81038,Air Balloon Surgery,14522.89426,6.3151,68.0723,72.8033,3.4083,74.7698,74.6544,2.7763,90.2985,3.3864,1.9863,0.8803,1.776,24.0467,7.1188,13.054,62.0998,77.551,0.6245,1.1737,13.5548,1.4676,81.5584,83.4043,82.0144,92.0863,17.6539,1.9111 "Bristol, North Somerset and South Gloucestershire ICB",L81040,Clevedon Medical Centre,18549.79475,7.6622,79.0123,77.0732,5.5926,76.3485,75.7377,4.1263,93.0556,8.057,2.0419,1.6178,1.765,11.0491,7.7603,19.5528,58.7349,77.5194,0.5938,0.7635,9.4823,1.7239,83.2264,82.1256,82.4742,87.6289,12.3629,2.975 "Bristol, North Somerset and South Gloucestershire ICB",L81041,Hillview Family Practice,8941.829432,8.1191,66.879,62.5954,2.8258,69.4545,70.1923,2.9081,85.7143,2.3188,3.5803,0.5624,4.0773,59.9555,9.2477,10.3292,60.64,78.9063,1.1934,0.7545,16.7536,1.311,84.7884,86.0606,80.4348,85.8696,30.1011,1.8107 "Bristol, North Somerset and South Gloucestershire ICB",L81042,Kennedy Way Surgery,12025.45016,7.3204,77.6119,79.6238,4.1164,81.0742,81.7797,3.5329,93.4959,3.9553,1.6287,0.4781,1.3889,12.1204,7.7252,17.5026,64.12,83.4606,0.4376,0.4457,12.9831,0.4887,87.4219,82.0225,80,91.0345,12.6498,2.123 "Bristol, North Somerset and South Gloucestershire ICB",L81044,Tudor Lodge Surgery,15135.98144,8.1941,73.3032,75.1656,5.8429,67.313,75.4167,3.8372,98.2456,6.5567,2.4532,0.8785,1.5386,27.064,8.441,17.6612,66.401,85,0.9117,1.21,13.576,2.2554,87.8636,82.5784,84.1772,92.4051,15.9988,3.1079 "Bristol, North Somerset and South Gloucestershire ICB",L81046,Leap Valley Medical Centre,8120.29147,7.2391,74.3191,75.2809,3.6249,80.531,78,2.8194,93.5484,9.3526,1.3216,0.5286,2.4432,10.3056,7.1899,15.859,66.9309,82.4934,1.1202,0.579,8.9169,0.7147,90.9867,78.1421,83.7209,88.3721,11.7647,1.6237 "Bristol, North Somerset and South Gloucestershire ICB",L81047,West Walk Surgery,15385.74593,6.9688,74.3119,72.9032,5.0517,76.824,78.7072,3.2975,95.2055,6.1823,2.0057,1.0063,1.184,11.586,7.9455,16.0933,76.9006,83.5616,0.3671,0.4011,11.5274,3.9071,85.3578,82.9268,83.908,93.6782,12.587,2.468 "Bristol, North Somerset and South Gloucestershire ICB",L81050,Close Farm Surgery,7328.574238,9.0635,80.8581,78.607,5.1618,85.7143,82.8767,3.0998,95.4546,5.4353,1.3383,0.833,1.7677,10.9656,7.2106,16.7827,72.4385,84.9802,0.437,0.5599,12.0436,2.332,91.3784,84.7328,81.7073,92.6829,10.9023,1.9254 "Bristol, North Somerset and South Gloucestershire ICB",L81051,168 Medical Group,29654.52312,7.3451,72.2513,74.0234,4.7547,71.2418,75.5784,4.0649,84.2365,7.0374,2.4641,1.5444,1.7827,31.2438,8.423,17.6348,72.0345,84.1452,0.6898,1.2104,18.3108,3.058,87.6009,81.4262,84.6405,89.5425,18.077,2.7548 "Bristol, North Somerset and South Gloucestershire ICB",L81053,The Lennard Surgery,9466.9702,7.0298,73.6,76.1364,4.2137,79.8107,79.7101,3.2243,94.382,4.9314,2.037,0.8963,1.459,27.1994,7.5705,16.1564,56.3089,74.5399,0.9429,0.7566,14.663,0.3607,87.7574,86.5591,79.798,94.9495,14.5472,2.3047 "Bristol, North Somerset and South Gloucestershire ICB",L81054,Grange Road Surgery,14518.43501,7.2007,64.1447,66.6667,3.318,70.5376,69.3642,3.1923,89.8148,5.4105,3.3431,0.6535,2.2682,44.7433,8.908,14.4701,60.5394,83.9623,0.796,1.0473,14.9923,2.3315,85.898,89.011,80.3797,87.9747,24.1716,1.9104 "Bristol, North Somerset and South Gloucestershire ICB",L81055,Orchard Medical Centre,13707.84167,7.346,68.915,67.0683,3.9209,66.6667,71.09,3.2408,90.678,5.7611,2.5366,1.0963,2.2966,18.8862,8.2446,18.6285,69.7137,83.9844,1.3203,1.0402,16.1154,3.8913,90.0335,81.7869,81.6993,90.1961,19.2569,2.1685 "Bristol, North Somerset and South Gloucestershire ICB",L81058,The Milton Surgery,11399.24713,9.1362,75.6447,76.6949,5.0471,79.3358,76.6667,4.4189,86.1539,6.3929,2.5344,1.9387,2.4409,20.2159,9.1141,20.6217,61.0076,76.4835,0.6932,1.0722,15.3171,3.56,92.3674,75.4167,77.5194,87.5969,13.5226,3.0543 "Bristol, North Somerset and South Gloucestershire ICB",L81061,The Wellspring Surgery,11569.97867,5.3889,57.9618,55.7522,1.6969,67.0121,66.6667,1.582,79.4326,1.6554,1.688,0.5214,2.3649,36.6839,5.1448,7.5387,56.7268,74.2424,0.5126,1.2196,10.0563,1.9917,79.4362,79.6875,72.1519,87.3418,25.0527,1.0959 "Bristol, North Somerset and South Gloucestershire ICB",L81062,Fireclay Health,24992.85708,6.482,68.2373,68.1818,3.189,69.6203,73.2432,2.3682,85.9259,3.9038,1.9044,0.3899,1.4633,24.5129,6.6935,12.2183,66.694,83.5821,0.6074,0.6444,14.0021,1.3665,76.91,83.9506,83.8298,92.766,19.684,1.6663 "Bristol, North Somerset and South Gloucestershire ICB",L81063,Kingswood Health Centre,14730.22446,7.7767,73.6413,66.9388,3.4168,72.8016,73.057,3.1961,90.7895,5.7598,2.184,2.009,1.5157,19.2963,7.8391,14.4966,60.7801,80.404,0.7229,0.8066,13.2152,1.5194,85.0968,75.3521,66.242,81.5287,16.3925,2.3514 "Bristol, North Somerset and South Gloucestershire ICB",L81066,Stafford Medical Group,10578.58102,7.6009,70.2509,75.5656,3.3531,74.4304,73.0964,2.5551,90.4348,3.6376,1.6496,0.4841,3.004,20.8849,7.8917,14.4074,64.3629,85.3211,0.6186,0.6634,13.2011,1.3561,80.2962,84.3434,90.9836,93.4426,15.8301,1.6586 "Bristol, North Somerset and South Gloucestershire ICB",L81067,Southmead & Henbury Family Practice,11321.89248,7.0823,66.1417,60.6557,3.227,60.733,73.0263,2.9677,81.579,5.1255,2.6906,1.0101,3.0567,33.733,8.5815,12.9704,63.2314,68.3007,0.9833,0.9297,13.9819,2.5015,85.459,83.0258,75.1724,84.8276,21.7839,2.1632 "Bristol, North Somerset and South Gloucestershire ICB",L81075,The Old School Surgery,22856.68004,3.7821,68.2657,67.3469,1.3493,41.7722,65.4321,0.9439,81.3665,1.2231,0.639,0.4087,2.0184,20.2618,2.6852,5.1898,65.042,81.4634,0.2789,0.7168,5.1785,1.1901,83.2529,86.1244,78.0303,86.3636,15.0635,0.7428 "Bristol, North Somerset and South Gloucestershire ICB",L81078,Gloucester Road Medical Centre,16888.89985,6.7099,76.8763,76.4384,2.693,74.5055,77.37,1.4557,92.0792,2.5472,0.9507,0.414,0.7278,13.0886,3.7206,9.5528,70.7018,77.9487,0.4595,0.8143,5.0078,0.6736,75.0194,81.5534,84.1121,90.6542,14.7545,1.1009 "Bristol, North Somerset and South Gloucestershire ICB",L81079,Hanham Health,22644.91863,6.8911,77.5,77.3006,5.1875,75.5917,79.5455,3.4615,92.4324,5.3129,1.8847,0.6484,2.1263,11.3576,7.0957,17.7319,55.4924,70.2429,0.5551,0.4712,11.1098,2.0313,83.1026,84.3972,78.355,80.0866,11.3183,2.2392 "Bristol, North Somerset and South Gloucestershire ICB",L81081,Pembroke Road Surgery,13882.07313,5.3005,76.2222,71.1111,3.2098,74.2857,77.305,1.4444,97.479,1.558,0.5868,0.3962,0.8055,10.0439,2.2573,8.3455,56.391,75.7485,0.1555,0.5918,3.7216,1.3798,77.0191,86.2069,80,94.5455,9.9636,1.2137 "Bristol, North Somerset and South Gloucestershire ICB",L81082,Bedminster Family Practice,13529.09711,5.451,67.1815,57.3604,2.2513,62.1118,68.8889,1.9689,78.7611,2.3894,1.7238,0.4235,2.1755,26.9735,5.2627,9.4138,56.3273,80.0926,0.3418,1.2111,8.9248,2.3895,80.4089,89.7727,83.1776,86.9159,18.7482,1.1739 "Bristol, North Somerset and South Gloucestershire ICB",L81083,Hartwood Healthcare,11017.00081,8.3547,63.7255,60.4027,2.9646,72.5,77.8689,2.5545,86.4078,3.5868,3.3747,0.4922,1.3391,59.5696,8.665,13.3115,68.1378,80.6763,0.832,0.8788,12.2748,2.0684,89.3048,86.5497,81.3725,63.7255,28.6096,1.7694 "Bristol, North Somerset and South Gloucestershire ICB",L81084,Priory Surgery,12460.46365,6.2268,74.2038,67.4208,3.5845,72.1951,76.8817,2.9581,92.1739,5.9991,2.149,1.1049,1.5622,24.1515,7.5171,13.146,72.9915,84.4575,0.4785,1.0353,10.0022,1.0721,91.963,85.2713,76.9841,93.6508,15.6594,2.2186 "Bristol, North Somerset and South Gloucestershire ICB",L81085,Heywood Family Practice,7209.485459,8.0489,76.1702,80.1242,5.5638,78.453,80.1527,3.5555,93.4426,7.3043,2.172,1.2794,0.9944,10.7914,7.3197,18.8188,69.4506,85.6338,0.4165,0.5504,9.04,2.2734,89.2171,84.2466,82.4324,83.7838,11.5023,3.0051 "Bristol, North Somerset and South Gloucestershire ICB",L81086,Mendip Vale Medical Practice,44927.3496,7.2907,77.038,74.6505,4.9097,77.2853,79.6037,3.4155,91.7411,5.9959,1.8021,0.9845,1.8899,11.1402,7.7487,16.5485,66.5523,78.9006,0.3708,0.6072,12.049,1.4366,87.8314,84.525,87.7712,93.8856,11.054,2.3161 "Bristol, North Somerset and South Gloucestershire ICB",L81087,Beechwood Medical Practice,13134.53464,6.9403,68.1957,67.0996,3.0152,69.4332,72.6804,2.3566,88.8889,4.6473,2.1503,0.3729,1.6746,27.2874,7.6923,12.7985,55.0929,70.8955,0.8252,1.1823,14.7444,1.3483,86.7323,79.5745,69.9301,81.1189,18.2449,1.6504 "Bristol, North Somerset and South Gloucestershire ICB",L81089,Lawrence Hill Health Centre,13039.0077,5.7944,53.8889,60,1.7368,55.1643,73.3945,1.9902,52.0408,2.0538,2.1874,0.7698,2.9906,42.7481,8.2602,11.0026,60.8369,68.75,0.6102,1.427,11.2659,3.7842,80.6872,86.1446,77.3438,85.9375,22.7932,1.427 "Bristol, North Somerset and South Gloucestershire ICB",L81090,The Family Practice,13398.72424,5.6355,76.3533,72.6923,3.4005,71.1425,77.7778,1.5918,96.1905,1.4872,0.7018,0.388,1.6789,12.6522,2.2687,8.1303,55.1327,75.9322,0.1369,1.0384,3.3578,2.0851,78.2435,81.8182,80.3571,83.9286,12.316,1.1639 "Bristol, North Somerset and South Gloucestershire ICB",L81091,Whiteladies Medical Group,14068.21852,5.8376,74.6124,73.9394,4.4031,68.4976,79.2982,2.2986,90.2778,3.4559,1.046,0.9144,1.2818,11.0548,4.339,13.059,62.4777,75.3695,0.2505,1.1462,4.2348,2.641,80.8605,81.9512,77.5701,86.9159,10.9586,1.6347 "Bristol, North Somerset and South Gloucestershire ICB",L81095,The Crest Family Practice,14566.6934,7.5664,62.8571,55,2.6451,65.2878,63.9175,2.8233,87.8613,4.3923,3.6524,0.4797,2.9313,46.3696,9.5503,12.5677,55.1111,67.9537,0.6647,0.7881,15.8292,1.1443,86.9139,87.4252,61.5385,87.6923,50.9327,1.5761 "Bristol, North Somerset and South Gloucestershire ICB",L81098,Greenway Community Practice,12708.64334,8.1053,67.3469,70.4918,3.3467,69.6703,75.641,2.6506,90.9091,6.26,2.0705,1.1067,2.4789,31.3171,8.0333,12.8782,70.0794,84.8387,0.6158,1.0531,14.8047,3.0276,85.3081,85.1852,90.5512,91.3386,19.391,1.8206 "Bristol, North Somerset and South Gloucestershire ICB",L81103,St Mary Street Surgery,8787.582284,7.8795,78.7546,84.264,4.9937,73.9927,77.7778,3.2528,95.0495,5.7576,1.3744,1.1339,1.4574,11.0426,6.4263,16.3899,62.2623,77.7778,0.5841,0.6414,10.3752,0.7481,89.8595,85.443,84.8101,91.1392,10.2553,2.6916 "Bristol, North Somerset and South Gloucestershire ICB",L81106,Streamside Surgery,5712.73736,8.5506,84.8039,87.5912,5.36,77.8443,83.7838,3.8056,91.3793,5.4109,1.5901,1.0184,2.1554,9.7526,6.7333,15.7406,61.9784,80.7692,0.2859,0.7683,8.2847,1.2556,90.9548,84.375,94.3396,94.3396,8.4617,2.5013 "Bristol, North Somerset and South Gloucestershire ICB",L81117,Pilning Surgery,4385.924698,6.9512,72.619,79.4393,4.8409,76.9841,77.381,3.3426,75.6757,7.7182,1.7981,0.6455,1.7682,11.7067,8.5477,20.2628,72.3703,86.1446,0.6224,0.3688,14.2577,0.7712,88.3182,81.8182,83.3333,92.5926,14.189,2.2361 "Bristol, North Somerset and South Gloucestershire ICB",L81118,Stoke Gifford Medical Centre,17474.5553,6.4805,73.4205,69.8462,2.8979,63.9276,75.0842,2.4671,91.1111,4.5591,1.4566,0.7437,0.9719,10.4448,6.3151,12.6122,66.1994,73.9212,0.5385,0.6514,12.4369,1.0093,84.1738,87.7419,76.9663,89.3258,13.3706,1.5849 "Bristol, North Somerset and South Gloucestershire ICB",L81120,Birchwood Medical Practice,8930.107137,6.6473,65.3266,63.5036,2.7223,72.0824,70.7317,2.3914,88.3333,3.8145,1.5373,0.4377,2.0601,22.0135,5.5381,10.5583,53.6214,72.2772,0.5231,0.8327,10.3801,1.1561,80.9947,85.8156,80.7018,91.2281,17.7405,1.5693 "Bristol, North Somerset and South Gloucestershire ICB",L81125,Wells Road Surgery,8245.044938,6.6399,70.4762,65.625,3.136,69.0367,68.0556,1.841,94.4444,3.1792,1.263,0.2141,2.241,20.4914,4.2633,9.5901,59.7315,69.5364,0.7385,0.974,8.43,0.9667,71.3807,87.7551,86.4407,91.5254,13.4541,1.1773 "Bristol, North Somerset and South Gloucestershire ICB",L81127,Almondsbury Surgery,5156.715424,7.0451,83.4197,79.4118,5.0879,76.7956,83.4711,3.244,93.5484,4.2397,0.9049,0.8537,1.4709,9.8232,5.7725,15.4345,71.0145,81.7757,0.3415,0.3756,10.7073,1.0682,89.3238,83.3333,85.4167,93.75,7.6508,1.8952 "Bristol, North Somerset and South Gloucestershire ICB",L81130,Cadbury Heath Healthcare,12234.43055,7.678,76.6585,76.2215,4.1559,76.1693,80.5556,2.8724,93.2886,4.8572,1.8001,0.8922,2.1391,12.4195,7.0413,15.1522,60.7235,79.8969,0.587,0.6966,14.1203,1.6045,90.4561,85.0807,82.7068,93.985,13.2199,1.7766 "Bristol, North Somerset and South Gloucestershire ICB",L81131,Fallodon Way Medical Centre,10434.82711,6.1468,82.4607,77.8195,4.6081,78.7293,83.5556,2.8682,94.0299,3.276,0.8958,0.8786,0.8489,7.6799,3.7881,12.4031,53.7764,70.2461,0.4479,0.758,6.3997,1.6711,81.4218,71.3044,74.5763,88.1356,6.7474,1.8346 "Bristol, North Somerset and South Gloucestershire ICB",L81133,Student Health Service,9883.918484,3.0054,,,0.2085,33.9416,100,0.0097,85.7143,0.0244,0.0049,0,3.5049,13.8961,0.3551,0.2473,64,100,0,0.2715,1.1358,0,75,100,,,10.0523,0.0146 "Bristol, North Somerset and South Gloucestershire ICB",L81600,Harbourside Family Practice,9422.923142,6.744,78.3699,76.4228,4.3837,78.4119,78.6047,2.4492,95.1923,4.82,1.1181,0.6389,1.3788,6.8101,5.0347,13.8877,65.1721,81.3291,0.3372,0.4969,9.3095,0.943,89.9095,84.9315,81.0811,87.8378,6.641,1.7925 "Bristol, North Somerset and South Gloucestershire ICB",L81632,Emersons Green Medical Centre,8809.952248,6.1386,75.1055,76.5,2.6257,79.4872,79.3103,1.5421,92.9487,3.4346,0.7002,0.5335,1.757,8.3631,5.0312,9.1106,62.5277,74.3456,0.4918,0.4084,8.3088,0.7036,86.0042,68.2171,81.0127,91.1392,10.6488,1.117 "Bristol, North Somerset and South Gloucestershire ICB",L81642,Wellington Road Surgery,5114.845709,7.9743,81.0458,76.1468,3.5345,78.392,83.3333,2.8705,92.2222,4.0564,1.7184,0.5272,2.5971,10.3385,6.0235,13.7278,66.4783,76.1628,0.5468,0.5272,13.579,1.2658,91.9285,84,85.7143,92.8571,11.418,1.6403 "Bristol, North Somerset and South Gloucestershire ICB",L81643,The Cedars Surgery,18198.86701,7.7924,73.3686,71.8421,4.4735,68.0723,71.3311,4.1604,93.1677,6.2952,2.4685,1.0115,2.2052,18.7184,8.8974,17.4062,60.1915,69.6275,0.6081,0.8068,15.1159,2.8607,89.0245,83.0233,76.9231,91.4027,14.8869,2.4866 "Bristol, North Somerset and South Gloucestershire ICB",L81649,Bradley Stoke Surgery,13170.19395,5.7739,72.6444,69.3069,2.3444,63.9744,74.5098,1.3581,92,2.2427,0.7599,0.1832,1.1738,7.3012,5.1819,10.1428,47.1957,75.7282,0.2964,0.485,8.4329,0.5347,81.5382,85,76.4706,86.0294,10.9877,0.8893 "Bristol, North Somerset and South Gloucestershire ICB",L81669,Monks Park Surgery,20428.44638,6.5075,69.3002,65.4655,3.1372,63.8356,74.2647,2.5459,86.076,4.766,1.7736,0.8629,2.0933,23.4845,8.0613,13.518,57.5467,68.9408,0.522,0.8522,12.9287,1.2706,85.2632,84.7716,81.8584,88.4956,33.9694,1.9228 "Bristol, North Somerset and South Gloucestershire ICB",L81670,Horizon Health Centre,7046.942817,8.6363,56.4103,45.4545,2.3492,69.3396,67.9487,2.2791,77.2152,4.631,3.6115,0.3682,5.0025,55.5186,9.9466,11.2202,56.338,84.7222,0.7714,1.0519,17.8801,1.8531,88.5552,89.7059,80.597,94.0299,34.7795,1.5428 "Bristol, North Somerset and South Gloucestershire ICB",Y02578,Broadmead Medical Centre,10730.74337,2.7135,56.9231,46,0.7463,47.2178,57.1429,0.3317,84.3137,0.2727,0.5141,0.0332,1.9444,30.0383,1.7036,2.5622,55.8528,80,0.1078,0.7629,4.9886,0.578,69.8024,92.5926,79.3103,89.6552,17.7544,0.2322 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence Dorset ICB,J81002,Orchid House Surgery,11224.77136,7.967,80.7692,76.5432,7.9461,77.9006,79.375,6.6332,100,14.7511,2.272,2.3519,0.5864,10.0365,9.1625,23.1533,76.4151,82.8042,0.6964,0.7421,11.8322,1.5645,91.8599,78.8406,93.0769,97.6923,7.3027,3.9046 Dorset ICB,J81006,The Adam Practice,42620.95822,8.7631,72.7465,72.6316,5.2599,73.126,75.7997,4.3953,89.6,7.666,2.397,1.0116,1.4783,17.6026,8.8691,16.7165,62.895,80.5433,0.8571,1.0091,12.3137,2.7699,86.0222,83.3333,78.125,92.1875,18.9319,2.5913 Dorset ICB,J81009,Royal Manor Health Care,13188.19347,8.3567,73.7615,70.6052,5.2862,74.5455,79.6748,4.6871,91.4894,7.6264,3.8209,0.4776,1.3105,28.5129,9.7107,19.4932,71.0553,82.0574,0.7205,1.1576,22.8101,1.5836,90.4914,84.2246,87.8453,96.6851,18.6539,2.6795 Dorset ICB,J81010,Swanage Medical Practice,13156.05608,8.591,77.1325,75,6.4555,70.4348,74.3478,6.0363,88.8889,10.1881,3.2604,1.6861,1.2466,14.1238,8.0549,20.2608,65.1015,81.6361,0.5776,1.2483,8.8125,1.2081,90.4762,78.8991,86.0294,92.6471,13.1562,3.6982 Dorset ICB,J81011,Wareham Surgery,9677.969342,6.8566,79.6748,85.5204,7.1629,75,75.9494,5.4423,87.5,10.5118,3.1117,1.4277,1.3376,16.3018,9.138,21.7938,62.0385,78.1482,0.9884,0.8298,13.0852,0.3799,89.7813,76.6038,85.3448,93.9655,11.7488,3.4411 Dorset ICB,J81012,Shore Medical,61252.57129,6.0966,71.8598,76.5232,4.5582,65.8763,73.996,3.7491,88.6667,6.2162,1.7417,0.9737,1.0907,17.8947,6.7092,14.9295,63.6392,80.5694,0.5468,1.0766,11.4942,3.3116,83.3099,82.3341,79.5374,91.2811,15.6441,2.3383 Dorset ICB,J81013,Canford Heath Group Pract,12389.22832,8.2035,73.0679,78.6207,3.9898,74.6702,77.7778,4.0308,92.1569,5.6089,1.7205,1.0569,0.5681,15.9527,8.2664,15.3777,67.2615,88.5714,0.4506,0.8357,11.3005,0.7984,86.9807,84.0764,85.9155,90.8451,15.495,2.3103 Dorset ICB,J81014,Westbourne Medical Centre,23565.12665,6.5557,74.7326,66.8889,4.6165,66.442,72.5948,4.1912,87.1795,6.415,1.7204,1.3955,0.8382,15.6683,6.0703,16.239,65.1988,79.2257,0.2533,1.3907,7.7298,2.4859,84.4672,77.2414,72.8261,85.3261,11.6578,3.006 Dorset ICB,J81016,Queens Avenue Surgery,8576.642989,6.7756,77.709,81.982,4.9925,68.9922,77.4566,3.6519,87.2727,1.7458,1.3868,1.0748,0.2514,13.2168,6.5675,13.868,59.1617,72.8767,0.5894,0.8205,8.6732,1.4164,87.1395,86.5248,85.3333,93.3333,9.0464,2.7967 Dorset ICB,J81017,Yetminster Medical Centre,4434.700819,6.6114,79.5349,72.5191,5.0726,75.2941,79.3478,3.5335,81.4815,6.22,1.4091,0.5636,0.5655,15.7667,7.3773,18.6213,61.215,83.871,0.2385,0.542,6.8137,1.7499,89.3407,78.7234,82.9787,95.7447,8.4371,1.6475 Dorset ICB,J81018,Beaufort Road Surgery,12187.40161,7.3636,75.0649,76.6917,4.302,68.1928,71.7489,3.7538,95.6044,5.2583,2.0513,0.872,1.0089,17.705,5.7427,14.9074,67.7778,81.7977,0.9302,1.3205,8.6008,3.116,84.494,81.5166,71.2871,89.1089,15.3948,2.3005 Dorset ICB,J81019,The Blandford Group Practice,24068.67765,7.8008,76.569,74.5875,4.9309,76.6768,75.7709,4.4288,96.1749,7.9007,2.0379,0.9402,0.6733,16.0605,8.4973,17.5707,69.5066,82.844,0.6807,0.8551,14.0182,1.4631,82.4243,85.4494,74.7475,93.6027,12.2671,2.7186 Dorset ICB,J81020,Bere Regis Surgery,3999.221356,7.7953,79.2135,72.8972,5.363,83.8095,80.9524,4.427,90.3226,6.2944,2.0744,0.4807,1.1108,15.17,8.9031,17.6069,81.3309,90.9677,0.5059,0.7083,17.8957,0.6599,93.5529,84.2593,96.0784,98.0392,11.7913,2.4285 Dorset ICB,J81021,Shelley Manor Holdenhurst Medical Centre,28066.56265,5.5718,61.1193,52.6437,2.6428,61.7619,68.6813,2.6168,80.8511,3.0422,2.2308,0.657,0.4855,29.5382,5.4029,10.9461,52.6033,63.5161,0.5531,1.752,7.0064,1.5974,76.5286,81.9549,75.8294,82.9384,23.4931,1.6852 Dorset ICB,J81022,West Moors Village Surgery,7422.740618,9.2299,79.9242,73.3333,6.9248,79.4643,79.6117,6.634,100,5.029,2.908,2.0356,0.3725,12.7187,10.0718,24.3366,76.4706,79.5411,0.5634,0.6543,10.5753,1.1236,91.9329,81.6667,88.0435,91.3043,9.1053,3.8168 Dorset ICB,J81025,The Wellbridge Practice,6355.345091,7.4018,75.502,71.7791,5.0185,76.2162,74.3802,3.6995,96.0784,7.703,2.4771,0.7238,0.7166,15.4393,8.1958,15.5863,63.3978,81.6327,0.4665,0.756,10.5494,0.2037,86.0917,87.574,88.1579,92.1053,14.0567,2.3806 Dorset ICB,J81027,Royal Crescent Surgery,27218.66118,9.1065,77.4863,70.6927,5.2084,72.3404,76.808,5.0527,94.3548,5.406,3.0789,1.2305,1.7302,24.2392,8.0796,20.6429,62.3976,77.105,1.1652,1.6173,13.0665,2.4698,87.4816,80.6186,84.9231,92.6154,16.5878,2.8227 Dorset ICB,J81028,Highcliffe Medical Centre,18129.99042,8.5525,81.1615,73.3333,6.7433,79.5389,81.0526,6.096,94.2857,11.2619,1.6974,1.5521,1.1408,8.6669,8.306,23.2613,64.6933,78.8413,0.4293,0.7133,8.7181,2.4133,93.289,76.2745,90.3409,86.9318,8.5674,3.5533 Dorset ICB,J81029,The Apples Medical Centre,6695.175631,8.358,76.8953,73.913,6.5319,79.2453,80.3419,4.975,97.0588,7.9349,2.4159,1.4137,0.1671,14.2596,7.8561,21.6178,67.673,75.7869,0.4116,0.8053,12.5496,1.3791,93.1544,83.6601,91.4286,94.2857,9.3701,2.9707 Dorset ICB,J81030,The Verwood Surgery,7726.250988,9.0625,78.4024,77.4648,5.5639,77.451,83.3333,4.5183,86.5385,7.7798,1.6306,1.17,1.556,7.0363,6.9307,18.9071,74.6801,81.4118,0.473,0.5352,9.6649,1.5377,85.9558,80.4348,90.3614,90.3614,8.4173,3.062 Dorset ICB,J81033,Talbot Medical Centre,22146.10847,6.9782,71.0909,65.1475,2.8097,59.7907,75.4579,2.6379,90.7407,3.4602,1.8401,0.4581,1.1883,24.514,5.255,9.6202,68.6294,82.3636,0.7101,0.7788,8.6985,1.7852,80.4314,84.3137,70.8134,92.823,15.4904,1.7103 Dorset ICB,J81034,Quarterjack Surgery,16484.38214,7.5321,78.1955,83.7209,5.3747,77.4194,78.7692,3.7655,88.7417,6.5969,1.3112,0.8127,0.9979,10.7377,6.279,15.9723,61.5459,75.6264,0.4389,0.7043,8.6481,2.2773,87.7966,79.5699,91.7808,93.8356,11.095,2.6277 Dorset ICB,J81035,Milton Abbas Surgery,4689.346571,8.4322,79.386,80,4.4463,76.1062,72.973,3.814,96.2963,3.971,1.7744,0.4895,0.5744,16.1565,7.4551,15.1132,72.2689,82.8767,0.3263,0.5303,11.1389,0.2028,90.3322,85.7143,92.7273,96.3636,10.7572,1.7132 Dorset ICB,J81036,The Rosemary Health Ctr,10004.794,8.1364,71.8644,66.3462,4.0426,73.0061,73.2919,3.7979,90,7.4301,2.4468,0.9681,0.8256,22.3,8.2622,15.4575,70.3802,83.2298,1.1383,1.0745,12.4234,2.4519,89.3012,80.2469,76.4151,90.566,17.4535,2.4255 Dorset ICB,J81039,Moordown Medical Centre,8396.251264,7.778,77.6632,72.9469,4.2338,75.8929,79.1667,3.2734,96.25,6.4781,1.7452,0.5886,0.9254,13.6602,6.9037,15.4998,73.0934,83.2335,0.9294,0.8364,12.2554,1.6887,92.0516,85.3982,85.1064,91.4894,13.2159,2.0859 Dorset ICB,J81041,The Hadleigh Practice,19988.64766,8.1301,82.1687,78.6517,5.891,81.3688,84.4444,4.1601,92.4419,9.6778,1.7162,1.1507,1.1656,6.9109,7.608,19.2024,74.0504,83.1802,0.4573,0.7081,10.5505,1.0548,91.2116,75.2212,83.1169,94.3723,8.1422,2.5866 Dorset ICB,J81042,Village Surgery,8346.299961,5.9096,73.4545,76.7956,3.7118,59.761,73.5714,2.9611,89.3617,2.2494,1.7204,0.4066,1.4028,19.6234,6.6164,12.4596,61.1765,76.9231,0.5735,0.8237,8.4049,1.1398,86.8964,85.2071,75,89.5833,13.8813,1.7621 Dorset ICB,J81045,Kinson Road Medical Centre,12831.37995,8.9955,69.6335,62.7451,4.0232,66.242,64.2857,4.2509,91.8605,4.2601,3.3684,0.835,1.3291,30.8874,10.3142,16.0926,61.0681,81.4356,0.7876,1.3758,14.3823,0.2648,88.4149,82.9787,80.5031,89.3082,24.4068,2.6283 Dorset ICB,J81046,The Harvey Practice,13109.46692,8.1682,82.7392,84.4985,5.9755,79.3003,82.6446,4.2682,93.3333,11.6634,1.4745,1.4667,1.7221,8.0189,7.1934,18.3377,75.7738,89.6047,0.5277,0.9002,8.8337,1.2751,90.0405,75.0663,86.7647,96.3235,9.0601,3.143 Dorset ICB,J81047,James Fisher Medical Centre,11641.98952,7.0863,78.1473,73.6301,3.9488,68.9394,74.7826,3.5297,89.6226,3.4522,1.3297,0.6689,0.42,15.0799,6.9289,12.5071,56.8033,73.1928,0.3707,0.7736,10.7867,0.3771,81.4155,83.1818,79.1304,87.8261,11.7641,2.337 Dorset ICB,J81049,The Marine & Oakridge Partnership,10725.71815,7.4511,74.9333,69.6356,4.9895,71.8954,77.4869,4.0759,90.4762,7.3959,2.038,2.2689,0.5864,13.9461,6.8349,19.1045,59.7244,74.2044,0.8333,1.0742,8.8439,1.2144,87.0468,76.1134,86.4078,89.3204,11.4772,2.821 Dorset ICB,J81051,Wyke Regis & Lanehouse Medical Practice,14550.84448,9.0141,74.1348,80.3922,4.7987,72.3684,73.6059,5.109,90.9091,6.2352,3.8029,1.1546,0.7827,20.1043,8.6422,20.4214,49.717,70.8451,0.7216,0.8876,11.4238,1.6518,90.0489,78.3715,70.5556,85.5556,14.1783,2.807 Dorset ICB,J81053,Cerne Abbas Surgery,4377.076516,9.1249,79.638,81.7518,5.018,75,75.2475,4.7539,89.2857,5.1955,1.7047,1.3686,0.4749,15.2239,7.1646,21.0564,64.8903,76.569,0.3842,0.6723,8.0447,0.7419,91.4567,81.9149,93.4783,95.6522,8.1732,3.1213 Dorset ICB,J81056,Christchurch Medical Practice,19695.06048,7.7272,75.5587,67.8337,5.9379,69.8565,73.4756,5.3831,89.6907,7.8451,2.1721,1.1864,1.741,14.023,8.5196,18.1679,47.6846,69.7882,0.7732,1.0093,10.7398,1.2829,84.8891,79.3621,72.4891,89.083,13.2882,3.1519 Dorset ICB,J81057,Farmhouse Surgery,7110.406266,7.149,73.4694,66.6667,5.6758,72.6115,73.5849,4.5604,92.6829,6.4013,2.4114,0.8202,0.566,15.9724,7.5676,16.5682,60.438,79.3846,0.3773,0.8858,9.6995,0.2561,86.2059,82.3944,82.4324,91.8919,14.0292,3.1496 Dorset ICB,J81058,The Cranborne Practice,11916.91493,7.2846,77.8,71.8475,3.9239,77.2222,79.9242,4.2002,87.2881,2.3583,1.5396,0.7579,0.6696,11.0509,7.679,11.4164,67.3469,82.337,0.3553,0.7343,10.4814,0.2196,90.1053,83.2636,89.3617,95.0355,11.7796,2.3528 Dorset ICB,J81059,Southbourne Practice,9539.496712,7.4316,73.4219,68.018,4.1827,75.7576,75.5319,3.3804,94.7368,5.3252,1.9362,0.9093,0.9803,17.467,5.6833,13.6928,61.651,73.9938,0.813,1.5404,9.18,2.2283,79.0429,74.5562,70.1299,88.3117,12.0356,2.439 Dorset ICB,J81061,Penny's Hill Practice,10567.87471,8.6448,80.3235,75.3695,8.4662,77.6224,76.8657,7.1858,96.6667,7.8397,2.2211,2.9658,0.3537,10.0864,9.4786,23.4126,67.9924,78.3967,0.4703,0.797,8.3112,1.4073,90.9408,80.7692,79.3103,85.3448,7.7646,4.5205 Dorset ICB,J81062,St Albans Medical Centre,11078.17936,6.9319,73.913,65.5602,4.2191,64.3411,75.8794,3.5002,89.7727,4.1083,1.7715,0.736,0.7917,16.0617,6.2691,13.0766,63.3421,75.3247,0.4279,1.181,9.5111,0.4591,82.9314,85.2018,61.8182,88.1818,14.253,2.4305 Dorset ICB,J81064,Poole Town Surgery,5853.676786,7.9672,73.0539,68.932,4.7368,66.6667,74.0741,4.0741,82.9787,6.7777,2.7096,0.9357,0.7402,16.7678,8.2226,17.5049,77.2727,90.3361,0.5263,0.8382,13.5785,2.0843,87.187,81.203,80.3279,93.4426,15.6015,2.7485 Dorset ICB,J81066,Stour Surgery,10724.64135,7.2365,78.4777,81.4394,5.0693,78.1022,81.6514,4.0496,92.9825,8.0089,2.299,0.8657,0.4573,12.5139,6.8564,18.8823,77.7388,91.0946,0.5579,0.7118,12.3007,0.4363,91.2929,81.5261,91.5094,96.2264,10.2279,3.03 Dorset ICB,J81067,Littledown Surgery,5238.203803,6.4904,81.2183,84.507,4.3408,71.1009,77.5862,3.8225,96.7213,5.2128,2.0246,0.6479,0.4276,12.2844,5.5332,13.0062,69.3053,84.2391,0.5183,0.5345,11.6881,1.8781,88.3163,75.7282,81.3953,86.0465,7.7381,1.7169 Dorset ICB,J81068,Atrium Health Centre,7683.719778,7.9174,72.8873,71.9298,5.393,73.3333,75.3968,4.3029,94,3.5573,2.6104,0.6311,1.0311,14.5259,8.3418,17.183,72.2807,88.9213,0.6311,1.0327,16.4977,1.3368,91.1099,75.7225,80.2198,91.2088,13.2165,2.7682 Dorset ICB,J81070,The Banks & Bearwood Medical Centre,11774.97152,7.9854,73.224,65.8333,3.5675,68.171,72.3404,3.3102,82.0313,4.6541,2.1696,0.5574,0.8006,19.3707,7.4461,13.4465,54.0474,67.5362,0.6174,1.1234,10.3758,0.4147,85.7625,77.7293,73.6,87.2,19.0413,1.8266 Dorset ICB,J81072,The Panton Practice,14103.82204,3.8722,65.6566,52.8796,2.3938,54.1543,66.8675,2.2254,83.7037,3.0378,0.8902,0.6977,1.1603,23.6347,3.9023,7.9334,62.4099,74.4253,0.3128,1.1127,6.8561,0.5382,79.0313,74.6193,70.8738,81.5534,21.7573,1.221 Dorset ICB,J81073,The Bridges Medical Ctr.,20154.46051,9.4576,72.5373,77.5463,5.0705,70.8163,73.4824,5.2296,96.124,7.2757,3.2486,1.0613,1.7815,29.4779,9.1695,19.0673,63.915,79.7967,1.1497,1.4504,12.4279,1.7248,85.9827,81.2165,79.6296,90.7407,17.3681,2.6826 Dorset ICB,J81074,Barton House Med Practice,5896.204597,9.2065,80.4878,71.0227,7.6603,78,80.4878,6.0528,96.7742,8.7284,1.8853,0.6747,1.8232,19.5864,7.1622,23.973,73.3411,83.9542,0.3969,0.9129,11.2808,2.3779,91.4736,84.8921,92.9825,92.9825,9.2009,2.9768 Dorset ICB,J81075,Cross Road Surgery,7898.675809,8.8205,78.5924,75.3363,5.5938,74.5946,79.1411,4.5819,93.75,7.1971,2.9234,0.773,0.4622,22.015,7.9831,19.48,62.2162,76.4912,0.8433,0.8855,12.4298,0.7632,89.3525,85.7895,76.25,96.25,13.4765,2.5158 Dorset ICB,J81076,Ammonite Health Partnership,27291.31046,8.7967,77.0227,71.5405,6.1057,70.4425,70.8029,5.0861,90.0709,7.1682,2.6144,0.9544,1.0582,18.347,7.4202,18.933,55.5391,71.3726,0.5669,1.1176,10.9031,1.4895,76.7051,81.3456,80.7843,89.8039,13.4449,3.0671 Dorset ICB,J81077,Walford Mill Medical Centre,7161.92987,8.9069,78.979,77.2926,5.8901,80.9045,80.814,3.9837,96.0784,7.1519,1.2885,0.71,1.0331,10.2281,6.8467,18.3934,76.2488,88.1657,0.2235,0.9203,10.1717,0.5232,88.3918,83.2298,87.6712,91.7808,9.1911,2.9188 Dorset ICB,J81078,The Grove Medical Centre,14211.69948,7.8558,81.0507,74.9263,6.5934,80.456,83.6,4.3264,96.0396,4.7633,2.3746,1.3141,0.3635,14.5086,7.9707,18.1818,70.0184,81.9048,0.5302,0.9836,10.7891,3.3811,91.5709,80.7829,91.6129,98.0645,10.248,2.6512 Dorset ICB,J81081,Gillingham Medical Practice,13857.30279,7.915,76.8939,73.9377,5.3731,77.2222,75.4579,4.8095,95.1456,5.7801,2.1342,1.0295,0.9194,11.7841,9.2192,18.2986,69.9598,83.2853,0.4133,0.9469,11.6239,2.2815,87.4239,81.8414,86.0963,94.6524,12.8373,2.9308 Dorset ICB,J81082,Poundbury Doctors Surgery,8284.367361,8.6939,81.4024,82.1101,5.185,73.3032,78.6164,3.6371,98.3871,4.631,2.0639,0.7048,0.577,13.996,6.6147,15.4795,57.7416,78.4367,0.4908,0.8054,10.1427,2.4924,90.7834,78.626,76.9231,91.0256,9.9802,2.3282 Dorset ICB,J81086,Evergreen Oak Surgery,7601.60301,8.4476,76.0331,72.3757,3.4045,78.9286,80.2721,3.3916,96.25,5.2058,1.7087,0.4919,0.5446,14.5234,6.2451,12.0388,58.2402,74.2991,0.6861,0.932,12.6061,1.8283,88.5666,77.1429,82.6087,91.3043,13.8256,2.2265 Dorset ICB,J81087,The Birchwood Practice,9926.109819,7.9575,76.584,76.3359,4.4475,77.6786,80.597,3.9598,93.3962,6.0795,1.8044,0.5462,1.3089,14.2909,7.9304,15.693,75.6898,87.3134,0.5754,1.1314,11.6942,1.567,87.4441,83.4008,88.8889,94.0171,15.3176,1.9604 Dorset ICB,J81609,Malthouse Meadows Surgery,9994.02253,9.0456,77.0787,73.2143,4.8735,77.6824,81.3084,4.6444,90.4762,5.8509,1.9265,1.1351,0.4224,18.6669,7.3407,21.3267,51.9919,68.7831,0.6456,0.9268,9.9503,1.3409,85.931,80.1762,81.3725,89.2157,29.1403,3.0928 Dorset ICB,J81612,Corfe Castle Surgery,3395.545321,8.8185,78.0488,79.2079,7.3505,80.9524,80.5556,5.5864,90.9091,9.8897,2.6462,0.8821,0.4945,16.1542,7.9879,23.7504,77.8966,90.9639,1.0454,0.9474,11.0689,0.717,92.9009,84.0426,94.5946,100,9.6895,3.0056 Dorset ICB,J81616,Puddletown Surgery,4109.652302,9.0266,78.744,73.7226,7.1613,80.6122,79.4393,4.062,93.75,2.9002,1.6201,0.8218,0.2789,13.4453,6.8007,20.6621,70.7174,86.2944,0.4931,0.4696,14.2499,0.2983,93.3022,80,90.4762,95.2381,8.5929,2.7706 Dorset ICB,J81620,Blackmore Vale Partnership,27211.49275,7.4366,76.6982,78.8978,6.0254,67.9468,76.1141,4.6453,91.4286,6.7388,2.1169,0.8789,0.7377,16.161,7.8964,21.3674,66.8477,82.138,0.9051,0.9425,15.41,3.303,86.7965,80.4433,87.1069,94.6541,13.884,2.8014 Dorset ICB,J81621,The Barcellos Family Practice,9096.219299,8.0586,76.6571,80.0905,5.1091,78.4141,80.2632,4.6174,90.3226,5.472,2.4586,1.2593,0.9882,13.225,8.1867,19.4531,67.5563,81.0875,1.3313,0.5757,9.9705,0.3529,93.2767,83,84.7619,92.381,12.1036,3.0583 Dorset ICB,J81625,Denmark Road Medical Centre,14239.69332,7.1463,67.5676,67.3611,3.1694,69.5255,74.0741,2.8485,81.6794,4.2564,1.5389,0.5304,0.8396,18.0028,6.2233,12.6907,49.1124,63.789,0.8185,1.1591,8.5211,1.1392,83.5139,74.2857,70.4,84.8,23.3072,2.1544 Dorset ICB,J81626,Fordington Surgery,5665.657282,8.9293,73.5135,78.4615,5.4909,73.3333,76.4706,4.6178,90.9091,7.7965,2.5223,1.8626,2.1868,15.1806,8.304,21.3038,62.4041,75.6329,0.9507,1.3194,15.3791,1.3322,91.1841,80,72.5806,87.0968,14.2556,2.7357 Dorset ICB,J81631,Sandford Surgery,2375.506767,9.1797,80.3571,85.5072,5.0353,81.6327,82.9787,6.2588,100,14.3798,3.4824,1.0824,0.6586,15.2885,9.5548,22.6824,72.6316,90.1961,0.5177,0.7059,7.7388,0.2486,96.0739,71.9101,84.375,90.625,9.9479,2.8706 Dorset ICB,J81633,Woodlea House Surgery,7303.475604,8.6852,66.9604,58.8608,3.592,66.2037,71.6667,3.7587,77.2727,5.6904,3.2434,0.8336,0.626,27.7754,8.5549,21.4307,55.6637,66.9014,0.6972,1.2125,13.9606,0.569,89.0939,78.882,86.747,91.5663,17.9796,2.5462 Dorset ICB,J81634,Crescent Providence Surgery,14953.84821,5.1517,52.381,41.8079,1.6944,54.7486,60.8187,1.8967,75.4386,2.0092,2.3778,0.4881,1.1421,32.0745,4.7195,9.7971,44.6486,68.6275,0.509,2.0989,7.6865,0.3785,75.8897,81.4103,76.6355,84.1121,31.6488,1.2621 Dorset ICB,J81646,Grove Surgery,6716.464922,7.4791,76.5258,72.1519,4.9662,78.9773,80.8,4.6519,100,7.6908,2.0116,1.6659,0.7883,11.7548,7.7856,17.8689,59.8485,68.1159,0.6129,0.8487,9.3059,0.5732,86.9281,75.5952,73.3333,89.3333,12.7438,2.9546 Dorset ICB,J81647,Lyme Bay Medical Practice,9946.363339,8.0897,75.7261,80.4054,6.9568,77.1084,78.8991,5.7616,96.5517,3.9295,2.1874,1.4094,1.3316,12.2904,6.7424,21.0959,65.6566,79.6233,0.2481,1.1163,10.2611,1.862,87.076,83.3333,81.25,89.5833,9.8022,3.3487 Dorset ICB,J81648,Dr Newman,5524.87387,7.6122,72.2222,69.9187,4.5403,69.8413,76.2887,4.0653,81.579,6.2271,2.0897,0.8549,0.8242,16.7413,7.327,14.9316,64.3092,80.3371,0.6269,0.8169,10.6456,2.7804,87.0415,76.3359,72.7273,90.9091,15.2869,2.3176 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence South West London ICB,H83001,Portland Medical Centre,16174.73545,5.4356,66.0661,65.5678,2.5959,64.5954,70.5224,1.713,79.3269,3.9334,1.3177,0.593,1.6893,26.9423,7.189,11.8988,62.1397,73.8776,0.5271,1.3902,14.9718,1.2092,80.8912,77.1739,79.5031,90.0621,17.8807,1.2255 South West London ICB,H83004,Farley Road Medical Practice,11244.8017,7.0937,75.6281,78.327,5.0228,76.087,81.3397,2.9417,89.011,6.9656,1.3786,0.7903,1.7088,12.9299,7.6188,16.4647,68.1542,85.101,0.4039,0.8254,12.549,1.8422,86.3366,79.1506,85.3659,93.4959,11.1378,1.9406 South West London ICB,H83005,Upper Norwood Group Practice,13695.96515,5.3507,62.6335,58.5153,1.8476,71.9205,76.4463,1.0493,94.8864,3.5496,0.7983,0.2768,2.0525,23.1369,4.8084,9.9588,73.226,93.3333,0.3219,1.1073,10.9466,0.6592,77.8032,75.419,89.1892,94.5946,13.4784,0.7725 South West London ICB,H83006,New Addington Group Practice,13384.98265,5.618,58.5062,65.3659,2.5687,66.2222,74.1117,2.2391,78.3951,4.7625,2.3659,0.7098,1.9863,35.2483,8.1302,12.7419,78.1493,90.991,1.1407,1.1407,13.091,0.26,90.2452,85.1852,91.791,94.0299,20.2241,1.4956 South West London ICB,H83007,Violet Lane Medical Practice,11512.99156,5.6759,64.8,71.7822,2.3685,65.2381,74.7368,1.6865,82.3009,1.8693,1.4377,0.6635,2.0892,27.8698,8.5759,10.9391,57.4819,72.9358,0.8479,1.622,16.7379,0.3442,84.995,84.6154,86.4,91.2,15.1676,1.1612 South West London ICB,H83008,Addiscombe Road Surgery,4167.836624,5.8252,60,65.4321,2.9821,63.871,68.6567,2.2366,80.3922,4.8544,1.0686,0.497,0.5951,18.728,7.9963,13.1213,73.3967,88.7851,0.5219,1.7147,10.8988,0,82.487,83.1169,91.4894,91.4894,15.13,1.2177 South West London ICB,H83009,Norbury Medical Practice,10675.97987,5.0377,64.0845,64.7343,3.1058,68.1592,79.8942,2.3637,71.4286,2.7516,0.7787,0.6963,0.5799,21.2161,8.6143,11.9377,76.0347,85.2273,0.5589,1.0444,21.5918,0.1198,85.8151,87.6147,91.6084,95.8042,14.4815,1.3376 South West London ICB,H83010,South Norwood Hill Medical Centre,7105.038699,5.5388,62.0112,68.0851,3.1503,63.1783,76.1905,1.4101,82.0896,5.7632,0.7051,0.4651,2.1727,26.2408,7.4719,15.1965,63.1824,80.2632,1.1551,1.1701,12.1525,0.2224,89.1227,75.8333,96.0526,98.6842,12.9021,0.9151 South West London ICB,H83011,North Croydon Medical Centre,7897.437085,3.3072,46.4052,54.0541,1.2426,55.102,66.9643,1.5791,71.7949,1.6343,0.7895,0.6472,1.6505,31.3461,8.1323,11.3513,63.6136,73.75,0.4789,1.4755,13.657,0.1967,76.7009,79.6117,80.198,85.1485,18.4224,1.1002 South West London ICB,H83012,St James Medical Centre,10602.97202,4.769,58.0189,70.3488,2.4198,57.7608,67.5,2.3898,78.7879,3.5324,1.6998,0.45,1.5026,32.6801,8.0062,12.7987,61.5665,68.6813,0.5,1.1799,9.9381,0.1804,76.9275,76.4706,62.8319,83.1858,20.0589,1.3499 South West London ICB,H83013,Old Coulsdon Medical Practice,17757.21491,5.6775,75.9398,73.3871,4.1242,75.6757,76.9716,2.3789,88.0851,5.8287,1.1975,0.7035,0.8919,13.5633,6.1964,12.8558,64.069,80.083,0.3974,0.725,10.323,1.6181,89.1742,80.8777,81.25,88.75,10.764,1.5036 South West London ICB,H83014,Queenhill Medical Practice,7410.320996,6.4511,78.5441,73.4463,4.7578,70.1835,73.913,2.8375,83.6735,6.8257,1.1321,1.4044,0.3657,12.2969,7.078,16.5664,79.6083,86.1111,0.6019,0.8742,10.047,0.8173,89.9771,81.3008,91.6667,94.4444,8.7,1.6337 South West London ICB,H83015,Parkside Group Practice,12741.97432,5.3772,72.752,73.2852,2.9335,70.8968,76.7717,2.4072,85.2564,3.8572,0.9966,0.6737,0.7266,13.6016,6.4533,11.7552,60.2842,72.4852,0.4772,1.0317,8.8985,0.6966,84.7953,81.3397,77.4194,84.6774,13.066,1.3685 South West London ICB,H83016,Keston Medical Practice,23152.58399,5.1397,73.1466,73.3925,3.7717,64.4693,72.9529,2.4068,83.3962,4.3646,1.1524,1.2714,1.0667,14.8278,7.1547,13.216,69.3259,81.2827,0.7952,1.1651,10.8517,0.4025,82.2665,79.5775,79.0123,90.9465,12.948,1.5946 South West London ICB,H83017,Brigstock & South Norwood Partnership,15166.21008,4.2749,61.9512,69.1843,2.6138,75.2556,82.699,1.7754,84.2105,4.9943,1.0779,0.7186,1.7176,27.1765,9.6389,13.1535,81.5204,90.7631,0.8877,1.6134,22.3906,0.2043,84.7167,74.613,93.1034,97.5369,14.9268,1.5922 South West London ICB,H83018,Selsdon Park Medical Practice,17424.07712,4.8999,74.2287,74.677,4.2991,75.4296,79.0419,2.6426,90.0621,5.7882,1.6002,0.8902,1.1706,13.315,7.5642,13.7424,76.8416,81.8841,0.4958,0.9466,11.7487,0.438,89.7039,79.4286,83.6634,93.5644,9.1775,1.6734 South West London ICB,H83019,Friends Road Medical Practice,8071.719512,5.0288,62.1762,56.9343,2.2172,65.1757,66.6667,2.1641,79.4521,1.8135,1.1152,0.5045,0.642,25.4904,5.9943,11.9756,61.2335,73.3032,0.2921,0.9692,7.6071,0.3606,75.1376,81.8182,86.3636,83.3333,12.7864,0.9294 South West London ICB,H83020,Eversley Medical Practice,11529.53238,6.3305,59.6296,71.4953,2.468,59.8425,74.3455,2.4197,79.2079,3.6936,1.3015,0.482,1.1403,30.7433,10.6225,14.4028,70.3221,72.6316,0.4917,1.6678,14.7124,0.1518,82.1128,77.4468,83.9286,88.6905,14.4146,1.3497 South West London ICB,H83021,London Road Medical Practice,6997.577328,6.3915,59.2179,72.3881,2.6114,56.8889,77.8761,2.7678,82.8947,6.1954,1.1259,0.4535,0.7347,29.2077,13.3437,16.0907,76.9676,88.4849,0.8131,1.5012,17.7919,0.3369,90.5359,91.7749,90.8397,90.8397,10.3256,1.4543 South West London ICB,H83022,Thornton Heath Medical Centre,7583.821462,4.6761,59.6939,57.4324,2.8265,61.7512,74.4,1.8636,84.4828,3.9185,0.9629,0.8386,1.4937,29.9527,10.2882,16.0584,69.7076,82.1229,0.6678,2.3606,23.2978,0.1319,86.5481,79.7101,82.8283,92.9293,15.9355,1.3046 South West London ICB,H83023,Morland Road Surgery,7451.842508,4.2841,58.2418,61.3636,3.5853,65.8333,77.0492,2.9579,80,1.1945,1.1354,0.6872,0.3919,23.4292,9.4468,15.5662,74.1071,82.1918,0.6722,1.6881,18.6823,0.3442,86.8477,87.2727,90.4255,94.6809,15.5936,1.8375 South West London ICB,H83024,Woodcote Medical,17057.23536,5.6268,73.5816,68.9744,4.1013,69.5925,71.6049,2.8492,87.8049,3.9994,1.0629,0.9905,1.3072,12.2332,6.6588,14.847,71.9373,80.9608,0.9739,1.2187,9.0376,0.6686,86.0133,80.5461,84.7059,89.4118,9.2469,1.5136 South West London ICB,H83028,Addington Medical Practice,11043.64018,5.7048,61.7424,72.9358,3.1559,68.1682,74.8768,2.7526,79.5181,3.8626,1.9964,0.5949,0.8009,29.2902,9.2062,11.8471,75.2322,78.6408,0.7663,1.1192,12.0656,0.3158,88.0089,77.3196,90,92.8571,16.5099,1.4822 South West London ICB,H83029,Hartland Way Surgery,5031.874469,6.0593,79.4872,78.626,4.6221,71.4286,78.4314,3.0814,84.6154,7.3177,1.0618,0.9369,1.2364,9.5947,8.6503,18.3635,74.2726,80.3493,0.4581,0.8745,12.1877,0.4517,90.411,73.8095,90.566,94.3396,9.6461,1.9988 South West London ICB,H83030,Broom Road Medical Practice,3463.414387,3.9974,63.5135,62.9032,2.491,66.3793,80.3279,2.1609,63.6364,5.7747,1.8908,1.5606,2.7247,29.7443,10.3216,14.5858,69.5214,76.4045,0.6903,1.0804,23.5462,0.6718,92.0097,86.8421,85.7143,95.9184,16.017,1.6507 South West London ICB,H83031,Haling Park Medical Practice,4022.445659,4.4197,61.5385,65.0794,3.1551,64.2857,68.4211,1.7914,79.4118,2.4156,1.4171,0.9893,1.1251,20.3068,7.7426,11.4171,72.3343,86.25,0.7754,1.2032,12.9054,0,84.5827,70.9091,88.8889,88.8889,16.9503,1.4439 South West London ICB,H83033,Ashburton Park Medical Centre,4287.113537,6.2035,65.5914,65.7895,2.8951,72.2543,80.2817,2.0883,71.4286,3.9589,1.8272,0.4746,2.2132,27.42,9.2717,14.9976,76.8116,88.75,0.6882,1.495,23.2232,0.7719,91.0858,86.25,92.9825,98.2456,16.9036,1.1628 South West London ICB,H83034,Whitehorse Practice,8327.586694,5.2487,55.6213,64.7482,2.0921,61.21,72.093,1.9698,80.2817,1.62,1.0461,0.326,1.215,36.0425,9.231,12.6885,65.6328,83.5938,0.9645,2.0378,19.1231,0.1419,83.4156,84.6154,87,92,15.8099,1.3042 South West London ICB,H83037,Auckland Surgery,7860.108677,5.9282,72.3404,65.2482,3.7707,78.4574,78.5185,2.1694,89.3805,4.3272,1.1751,1.4979,1.6582,21.8826,5.2895,12.061,72.4368,87.4317,0.5553,1.4463,8.1649,0.7113,86.8551,66.6667,87.5,92.8571,11.5947,1.6142 South West London ICB,H83039,Stovell House Surgery,8603.15822,6.9914,70.9016,72.8814,3.3146,68.239,77.7027,2.2383,83.3333,4.3944,1.4922,0.5993,1.9632,17.1539,7.2241,14.5426,70.9509,84.4828,0.5259,1.1497,10.7671,0.5125,89.0467,79.8561,77.5281,89.8876,12.8043,1.4188 South West London ICB,H83042,Leander Family Practice,8625.371005,5.1076,59.434,62.7329,2.6192,60.597,74.6479,2.3157,66.087,5.4125,0.6407,0.6407,1.024,23.1249,9.7392,15.0405,62.8415,72.9167,0.6407,1.304,16.0328,0.1603,89.6665,77.2093,75.2,86.4,15.1798,1.2253 South West London ICB,H83043,Shirley Medical Centre,7982.295493,5.5658,74.5583,79.397,5.4047,75,77.3006,2.905,73.8462,8.8922,1.3782,0.8648,0.4242,13.2081,8.7762,20.0513,76.4957,78.0255,0.5675,0.8242,12.139,0.3502,86.8739,82.5397,92,95,10.1711,1.6619 South West London ICB,H83044,Edridge Road Practice,20993.82357,3.9688,56.3636,65.8385,1.8904,58.165,69.2063,1.3619,78.0769,2.0184,0.6952,0.5122,1.0193,20.8693,5.5692,8.6958,58.4547,75.0708,0.3537,1.2603,10.7713,0.1373,68.7221,84.8485,84.058,87.9227,15.9167,0.9025 South West London ICB,H83049,Headley Drive Surgery,2898.194341,5.0257,60.2941,65.4545,2.4215,68.4211,75.4717,2.4972,100,4.7314,2.4972,0.4162,2.1686,36.4814,9.8938,15.9289,75.3425,94.6429,1.1729,0.9837,13.6521,0.2436,90.8635,84,91.8919,97.2973,22.9147,1.4378 South West London ICB,H83051,Thornton Road & Valley Park Surgery,17109.6775,3.4456,52.8302,48.8889,1.3532,57.6324,66.0793,0.9883,89.7436,2.0267,0.4308,0.1368,2.2512,27.1372,6.2104,7.2221,80.9451,84.9558,0.3244,0.6791,9.4087,0.0276,92.5908,86,96.2766,97.8723,9.9805,0.5018 South West London ICB,H83052,Bramley Avenue Surgery,3087.767731,5.7313,74.4898,74.6032,4.7319,83.7209,76.4706,2.6288,96.5517,7.9309,1.402,0.5258,1.0634,11.4514,9.5675,17.5254,83.4568,95.7895,0.3155,0.8412,12.8046,1.2998,92.623,94.8718,97.561,95.122,9.4629,1.6474 South West London ICB,H83053,Parchmore Medical Centre,16364.6751,5.297,58.0488,63.253,2.7934,60.7143,74.6711,2.133,75.6522,2.9922,1.0566,0.6604,1.0994,28.7083,10.0489,14.7197,70.1493,79.6034,0.6075,1.5519,15.9531,0.1381,83.4241,78.9474,86.1345,92.8571,16.3944,1.4858 South West London ICB,H83608,Family Practice Group,10319.32401,4.2271,53.4188,54.1899,1.7428,65.7658,72.6708,1.5713,80.8219,2.7822,0.4786,0.3612,1.4541,27.4539,9.6542,11.5767,75.4141,82.2222,0.4786,1.1739,13.2013,0.138,83.2198,83.2487,91.6667,91.6667,13.3356,1.0294 South West London ICB,H83609,Mersham Medical Centre,5010.056995,4.9833,59.6639,62.9213,2.8807,71.3568,78.3133,1.7696,80.8824,4.7879,1.0288,0.6379,0.4163,25.289,10.4225,15.3086,82.9154,83.9623,0.5761,1.07,17.9287,0.1331,83.8079,83.0189,90.9091,93.5065,13.4298,1.3786 South West London ICB,H83611,Selhurst Medical Centre,5546.097268,4.4147,59.5506,62.1622,1.4265,72.7969,78.0822,1.3709,86.4865,1.7415,0.7781,0.2964,0.834,31.0553,7.1273,9.5221,78.7946,92.4242,0.389,1.1301,17.0959,0.3503,90.3821,82.1918,88.8889,94.4444,17.3179,0.8336 South West London ICB,H83624,Fairview Medical Centre,7769.006629,3.8127,63.6364,65,2.5442,62.7389,76.7606,1.5783,78.5714,4.1362,0.7892,0.7892,0.9939,21.8595,7.4885,11.3428,75.6824,84.0764,0.8009,1.0247,17.2903,0.0766,87.1795,83.8926,90.9091,95.9596,15.5822,1.1779 South West London ICB,H83627,Birdhurst Medical Practice,7947.169733,4.1577,66.4384,61.4679,2.0621,62.3907,68.1818,1.573,84.466,3.3762,0.6081,1.6656,0.4513,18.6874,6.2119,10.4164,73.8333,82.4468,0.6081,1.5334,10.9477,0.5342,82.2373,65.6566,84.058,88.4058,13.331,1.2822 South West London ICB,H83631,Greenside Group Practice,10054.38352,4.4141,54.7619,57.4468,1.6744,54.8098,61.4865,1.6273,73.8318,1.8721,0.7149,0.2164,1.0455,32.2609,8.8429,11.3442,66.0878,86.6071,0.6208,1.157,14.5879,0.7621,80.9131,90.9091,86.014,90.9091,16.8334,1.0065 South West London ICB,H84002,Park Road Surgery,10782.27138,5.2875,75.0611,77.0764,3.789,74.938,75.8621,1.8826,91.129,3.0772,0.8182,0.6831,0.3319,7.1849,3.5622,10.1835,60.8187,80.8594,0.2224,0.9929,4.3644,0.7744,75.36,86.6071,83.3333,83.3333,7.4256,1.2392 South West London ICB,H84005,Parkshot Medical Practice,11438.04192,4.598,66.1058,60.1942,4.1433,64.9446,68.1507,2.0716,93.0435,2.2428,0.6721,0.5266,1.134,9.5017,3.6921,9.5337,67.2642,82.2785,0.2079,0.9215,7.0727,1.2126,75.6054,83.5938,90.6667,94.6667,8.8069,1.1224 South West London ICB,H84006,Richmond Medical Group,14289.38748,4.3185,70.3625,68.8235,4.0227,67.5762,75,1.8306,95.1613,4.0164,1.1821,0.7632,0.7389,10.3095,3.6293,10.2376,66.879,80.303,0.1607,0.8436,4.3017,0.6333,80.2942,80.3371,64.8352,86.8132,8.5495,1.3773 South West London ICB,H84007,Acorn Group Practice,6942.016566,5.411,74.812,73.1959,4.3307,66.9039,75.6098,2.0111,83.5821,3.237,0.8143,0.765,1.1647,8.8066,4.4544,11.2153,73.0978,81.5029,0.2961,1.0487,4.2656,0.6139,79.632,88.4615,84.9057,94.3396,9.8824,1.3078 South West London ICB,H84010,Canbury Medical Centre,8249.887294,5.5985,77.6596,81.407,4.2924,69.7161,80.1105,2.673,93.0556,3.8071,1.1646,0.3438,1.8331,10.6544,5.3099,10.8474,74.1401,81.3472,0.3438,1.2201,8.3474,1.1747,86.7812,88.9655,86.9565,92.7536,9.8042,1.6304 South West London ICB,H84012,York Medical Practice,11324.84478,5.0174,75.3125,76.4192,3.5521,69.6921,74.0909,1.7206,82.2222,2.9489,0.9713,0.333,1.2476,7.9645,3.5317,8.7207,74.4489,82.6255,0.333,0.6938,5.6884,0.6808,73.4445,82.1138,81.1594,88.4058,8.5152,1.221 South West London ICB,H84014,Paradise Road Surgery,2250.124106,4.6058,68.0556,69.0909,3.5572,62.6506,66.0377,1.8785,84.6154,2.1459,0.9193,0.5196,0.6199,8.6078,4.3951,9.5524,64.881,81.6901,0.2798,1.1591,5.5317,0.759,71.4499,90.9091,81.25,87.5,9.4041,0.9992 South West London ICB,H84015,Brunswick Surgery,7497.27374,6.5777,77.1845,71.8563,3.7228,70.3704,75.817,1.8053,92.7835,3.7833,1.4241,0.6167,1.7067,10.8241,5.1239,11.0451,81,90.2703,0.4373,0.8859,13.3836,0.6214,90.6168,88.1818,95.3846,96.9231,11.2787,1.1998 South West London ICB,H84016,Groves Medical Centre,16066.75487,6.2743,72.1022,75.1337,3.7292,70.6503,76.9663,2.3286,98.3871,4.7373,1.207,1.3892,1.1897,10.7602,7.4111,12.5142,68.2209,81.5141,0.4099,0.9679,9.6108,0.4484,85.5105,80,86.911,94.7644,9.8803,1.486 South West London ICB,H84017,Seymour House Surgery,12235.26137,3.8627,69.3878,74.2754,4.1485,71.6981,76.6537,2.2044,85.5073,3.3708,1.0945,1.0869,0.4514,11.9101,4.5943,11.5806,60.306,80.3483,0.4822,1.0639,5.2915,0.3669,78.4836,82.4561,93.1818,93.1818,10.8626,1.791 South West London ICB,H84018,Broad Lane Surgery,6025.045854,5.4735,74,78.2609,3.8948,68.4211,75.4237,2.5271,89.1892,3.6329,1.0555,0.5054,1.2237,12.2986,4.9849,11.1788,70.7276,81.3665,0.2379,0.5946,8.1453,0.6305,83.2992,88.0952,95.122,100,10.6421,1.4866 South West London ICB,H84020,Fairhill Medical Practice,15444.63207,2.6892,62.4606,66.8033,1.4687,36.7675,62.963,1.2364,82.7338,1.0275,0.4735,0.2104,0.2328,12.6717,2.9964,5.5899,70.3415,76.8,0.1491,0.6839,6.4335,0.0224,74.5265,82.6389,61.1111,77.7778,15.1793,0.7234 South West London ICB,H84023,Essex House Surgery,9513.683162,4.7966,65.0327,62.0968,2.9894,65.2091,69.7959,1.4518,92.7152,2.2036,0.7103,0.3278,0.9387,9.7677,2.8419,8.9838,71.0417,90.0524,0.1795,0.7961,4.9407,0.498,70.1086,90.5882,90,92,9.0998,0.9366 South West London ICB,H84025,Hook Surgery,6757.938141,5.5671,70.5556,69.0647,3.293,73.7452,80.9917,2.1815,85,3.8153,1.4867,0.5002,0.6937,12.8497,7.1173,11.3936,74.0158,82.7027,1.0699,0.8615,11.8291,0.676,87.2881,87.0229,92.5373,98.5075,15.8235,1.2227 South West London ICB,H84027,Churchill Medical Centre,14654.60213,4.088,65.9472,71.7042,2.8166,60.3154,66.9811,1.5507,85.8824,1.994,0.9125,0.3059,1.5396,11.5934,4.9405,9.4995,60.1356,73.3129,0.2901,0.7912,6.2941,0.6884,74.8467,85.1064,82.5758,84.8485,14.7594,0.865 South West London ICB,H84030,Central Surgery,13630.77877,6.5361,77.1226,78.2895,4.3324,74.7768,76.6784,3.2341,90.9091,6.5686,1.4391,1.4163,1.3692,10.6855,7.6628,15.3299,74.1483,82.5427,0.4696,1.0831,9.9177,0.6597,91.5956,87.0769,88.1579,92.7632,9.9749,1.9541 South West London ICB,H84031,Jubilee Surgery,5635.480396,5.4529,76.4331,72.7273,4.4681,70.6468,76.5217,2.4575,84.4444,3.9741,1.0999,0.7733,1.5182,12.4352,7.1851,15.037,73.0594,89.4495,0.653,0.9967,12.5251,0.3257,87.5048,87.5,81.6667,91.6667,10.8696,1.2545 South West London ICB,H84032,Hampton Wick Surgery,8922.91929,4.8949,69.4352,66.6667,3.8687,70.4225,71.8232,2.2107,95.082,4.1801,0.9506,1.0722,1.2728,9.0789,4.0423,9.4728,68.2692,76.824,0.8511,1.1827,3.8585,0.7346,76.1414,74.7664,79.6296,87.037,10.2166,1.5806 South West London ICB,H84033,St Albans Medical Centre,5963.871464,5.5362,78.7611,79.0123,4.67,68.617,75.6579,2.4805,96.7742,5.844,1.0259,0.5206,1.2263,8.2409,6.0019,15.3422,73.3784,88.1679,0.3062,0.9034,8.7373,2.3777,88.1995,84.6847,85.9649,94.7368,7.1224,1.4699 South West London ICB,H84034,Orchard Practice,8342.798563,5.2809,70.3557,64.3243,3.9211,66.0131,66.8675,2.5045,85.3659,4.1985,2.1192,0.4533,1.5126,11.8645,7.9314,15.2199,59.4867,79.7619,0.4306,0.646,12.0017,1.548,86.2559,87.7301,87.5,92.3077,12.6816,1.6546 South West London ICB,H84039,Cross Deep Surgery,9915.04883,4.62,73.3746,68.8,4.4494,71.256,74.7899,2.2931,88.8889,3.3233,1.1295,0.6674,1.5321,7.7645,4.11,10.2849,71.0555,82.6855,0.3508,0.8728,9.549,1.309,81.8398,84.6774,89.8551,95.6522,10.0954,1.5059 South West London ICB,H84040,Hampton Medical Centre,11909.44805,5.0917,70.4156,70,5.051,74.0845,78.5088,2.4775,88.0435,3.592,1.5005,1.4569,0.5987,12.789,5.9436,12.4924,73.2057,83.7209,0.349,1.0992,7.663,1.2441,83.7293,77.0833,87.3786,92.233,11.4474,1.736 South West London ICB,H84041,Vineyard Surgery,4690.846577,3.5693,64.1667,57.732,2.2973,64.011,66.6667,0.9982,91.6667,1.7513,0.547,0.2188,1.1079,8.1538,2.6404,5.9483,68.1818,85.5422,0.1778,0.6564,4.1816,0.2324,81.028,81.579,82.6087,86.9565,6.7091,0.6564 South West London ICB,H84042,Holmwood Corner Surgery,12394.45533,5.1054,67.6056,64.8148,3.3914,63.6905,68.9796,2.2391,90.6542,3.7126,1.1961,0.5105,2.8609,12.9578,6.8105,13.1136,71.196,81.2987,0.6127,1.1597,10.1842,0.6965,78.2446,86.6953,83.8462,93.0769,12.6966,1.3493 South West London ICB,H84044,The Green & Fir Road,7179.005616,5.5367,67,71.5152,3.3772,69.5502,77.0588,2.0611,97.9592,2.3802,1.2292,0.3477,1.8297,15.0005,6.0197,11.4601,54.3651,72.4551,0.447,1.0181,12.4676,1.0958,82.2618,85.4167,80.8824,85.2941,14.5942,1.192 South West London ICB,H84048,Twickenham Park Surgery,6152.342184,5.6884,73.6842,74.0506,4.3359,66.4596,75.7225,2.0664,93.5065,2.4514,1.5528,0.9078,1.3105,6.1437,3.8357,11.7654,74.9669,87.3913,0.3583,0.6928,5.2266,1.0775,85.3803,86.3636,88.3721,95.3488,6.4215,1.5289 South West London ICB,H84050,Chessington Park Surgery,7063.384104,6.4692,75.3191,72.2543,3.423,76.5385,75.1825,2.4507,86.1386,2.7526,1.6249,0.6793,2.2055,12.73,8.412,13.0394,75.062,81.5029,0.4129,0.6393,11.3011,0.2227,89.0709,88.4298,88.8889,93.3333,13.7492,1.3186 South West London ICB,H84051,Roselawn Surgery,6347.588461,4.4852,62.4309,55.6391,2.6696,63.2509,70.8661,2.7649,86.5672,3.2815,0.79,1.0079,1.0938,13.4989,9.4317,12.7622,73.6306,84.2105,0.6129,1.1032,11.7074,0.2945,82.162,90.411,89.6226,93.3962,13.9295,0.967 South West London ICB,H84053,Berrylands Surgery,4580.004872,6.8573,74.6032,71.2644,3.6332,70.7865,80.5195,2.8453,82.5,5.0962,1.926,0.8536,1.6807,10.9518,5.5184,13.3508,72.9977,84.3931,0.5909,1.6196,9.8943,1.9219,90.566,79.0124,88.5714,94.2857,13.6414,1.2475 South West London ICB,H84054,Red Lion Road Surgery,3570.211936,4.2812,59.7701,57.6271,2.9153,59.6899,71.4286,1.8702,62.963,3.972,1.4026,0.9076,0.4673,12.4899,8.2866,12.2937,65.6837,82.4324,1.1276,1.3751,12.0828,0.5957,81.805,90,79.2453,88.6792,16.7976,1.1551 South West London ICB,H84055,Sheen Lane Surgery,8965.250246,4.0844,74.375,77.1186,4.1649,66.9746,74.8879,1.465,94.1177,3.021,0.6558,0.5621,1.2807,8.6649,3.1796,8.3809,62.4838,77.2512,0.1874,0.7665,4.2688,0.6737,81.0421,88.8889,71.4286,81.6327,9.4655,1.1754 South West London ICB,H84057,Staines Road Medical Centre,2983.615448,3.0028,57.9545,66.6667,2.8359,69.3333,73.4375,1.8288,95.2381,3.1696,0.9276,0.4506,0.9056,14.2345,5.9911,10.0451,77.7448,83.3333,0.4241,0.9276,10.2055,0.1709,83.7409,89.3617,87.5,93.75,12.6437,1.0867 South West London ICB,H84059,Thameside Medical Practice,4010.5475,4.6909,74.5902,69.5238,3.3822,64.6739,77.1429,1.4874,81.4815,1.9028,0.7743,0.5501,0.4886,6.9655,3.5128,8.3537,78.157,83.7607,0.3056,0.8761,5.6056,0.683,78.7124,86.1111,76,88,8.5162,1.2429 South West London ICB,H84060,Richmond Lock Surgery,6199.715249,6.7618,74.1463,78.2609,4.2093,80.1498,83.0189,1.9145,95.3846,3.5887,1.2064,0.4196,1.225,12.605,4.6441,11.1592,72.238,87.5862,0.1836,0.8524,6.6943,0.6975,87.0737,95.0617,87.7551,91.8367,7.9108,1.0622 South West London ICB,H84061,Kingston Health Centre,16606.01223,3.504,64.7541,65.1899,1.6925,63.3083,69.697,0.936,91.0345,1.4672,0.351,0.1638,1.383,10.5048,3.0947,5.9902,60.2649,80.791,0.1365,0.6942,6.4043,0.3038,74.184,85.2564,76.6355,90.6542,11.4295,0.624 South West London ICB,H84062,Langley Medical Practice,7662.050993,6.0318,78.125,77.193,3.2184,74.5152,79.4872,2.1,90.5263,3.8549,1.0842,0.7304,1.8561,10.6777,5.543,11.4472,62.9911,78.972,0.3995,0.7304,9.5374,2.2321,88.8359,80.1527,76.8116,94.2029,11.4645,1.5179 South West London ICB,H84618,Sunray Surgery,4146.459978,5.6793,64.2857,69.7917,2.5617,72.2513,82.2222,2.5617,100,5.1307,0.7211,0.3036,1.7102,12.2257,12.0364,15.5029,80.9129,86.1702,0.6072,0.6072,12.7779,0.849,88.3293,91.0714,88.6598,93.8144,10.7446,1.0816 South West London ICB,H84619,Claremont Medical Centre,8265.527656,4.6991,68.3962,72.7811,3.0417,72.3608,74.0113,1.2256,94.6903,1.4337,0.6441,0.2326,0.6272,9.8841,3.2762,6.9691,71.275,92.1875,0.2952,0.8231,5.3203,0.29,77.3143,86.8421,87.8049,95.122,10.6408,0.9125 South West London ICB,H84623,Hampton Hill Medical Centre,7684.263491,5.681,77.4059,80.9045,4.2208,74.1214,78.7565,2.3692,88.6076,3.307,1.4261,0.6211,1.2877,9.7976,4.7674,12.5589,74.4584,86.0465,0.276,1.0581,7.2139,1.5635,89.7527,89.8148,85,88.3333,10.9694,1.5066 South West London ICB,H84625,Woodlawn Medical Centre,4718.354184,4.7568,64.1221,57.4713,2.7593,64.3678,71.9512,2.5176,83.3333,3.4421,1.1279,1.1078,0.8477,14.4001,7.8742,13.575,67.098,82.7068,0.6042,0.8862,5.8567,0.7761,84.3026,87.0588,85.9649,92.9825,12.5687,1.3092 South West London ICB,H84630,Crane Park Surgery,2907.405616,3.3305,65.3846,72.5806,1.8557,79.4702,79.0323,1.1762,92.8571,0.6347,1.0193,0.183,0.7052,17.7731,7.8947,10.4287,77.5568,85.1064,0.2875,0.4705,14.2807,0.2956,89.2076,100,86.0465,93.0233,12.1586,0.575 South West London ICB,H84635,Manor Drive Medical Centre,13094.26821,5.437,77.724,70.2055,3.9571,71.405,74.3083,2.4866,93.4272,4.688,0.9909,0.5869,0.6438,9.1134,6.4036,12.7422,62.4149,80.6931,0.3093,0.6501,8.8973,0.381,86.0334,83.8346,87.3239,95.7746,10.9739,1.2875 South West London ICB,H84639,Kew Medical Practice,3799.990526,3.1997,61.0619,59.5506,1.929,58.5859,60.4396,0.8105,89.4737,1.1357,0.4053,0.2107,0.5162,11.4995,2.5407,5.4952,71.134,81.25,0.1945,0.4701,5.637,0.1941,66.7596,86.2069,73.913,78.2609,9.6368,0.6646 South West London ICB,H85001,Wandsworth Medical Centre,13966.19824,3.6746,62.8821,60.733,1.7558,60.7794,70.1571,0.8992,84.9206,0.8796,0.5533,0.1756,1.507,15.8028,2.6428,6.0974,63.5458,83.8028,0.266,0.7183,6.4399,0.7568,76.1054,82.1782,87.6712,89.0411,13.1715,0.5906 South West London ICB,H85002,Falcon Road Medical Centre,9572.426262,4.3869,59.0164,61.4865,2.1334,54.1109,66.8966,1.1391,67.1429,1.2851,0.6564,0.2799,1.342,22.391,5.5287,8.3309,50.5602,70.4698,0.3861,1.1102,7.2103,0.4078,80.905,79.6296,74.7126,82.7586,17.4472,0.9653 South West London ICB,H85003,Queenstown Road Medical Practice,7338.351141,5.5338,63.9535,60.1563,2.8957,60,73.1707,1.7402,80.8511,2.8507,1.8934,0.529,1.3207,22.6135,5.7567,11.388,49.9279,69.6,0.3759,1.2669,7.3925,2.2612,80.3973,83.7838,76.5957,89.3617,18.723,1.4061 South West London ICB,H85006,Mayfield Surgery,7198.109328,4.8357,58.3333,48.1818,2.7381,55.8394,64.3564,1.7914,67.8571,4.3399,1.6312,0.8156,1.7762,24.4436,6.5882,11.6953,64.7516,77.9874,0.6991,1.6021,9.0826,0.6051,81.7063,85.2941,83.3333,89.3939,20.2285,1.1797 South West London ICB,H85007,Southfields Group Practice,9235.75504,4.7999,76.5677,78.2051,3.7922,73.3173,78.5047,1.7411,99.1803,3.6658,1.0027,0.5925,1.1721,8.4862,4.6859,11.5315,65.7436,75.1724,0.6381,0.7931,8.5613,0.6029,87.6766,90,80.8219,86.3014,8.8016,1.2033 South West London ICB,H85008,Roehampton Lane Surgery,7640.136036,4.9316,56.4972,50.3876,1.9651,58.2979,69.8276,3.0027,61.5385,1.7413,1.8708,2.0909,1.7796,22.7175,8.0852,11.7906,53.8603,59.7087,0.786,1.6821,9.9885,1.3735,82.8849,80.6723,82.9545,85.2273,17.1423,2.1695 South West London ICB,H85009,Bedford Hill Family Practice,12033.78933,4.8521,69.7279,65.2361,2.7892,66.0714,71.9626,1.5897,86.2903,2.7124,1.1562,0.3685,1.2709,15.7537,4.7986,8.6784,58.4107,72.8448,0.607,1.2573,7.506,0.3519,79.8389,80.829,72.3404,88.2979,16.1742,0.8743 South West London ICB,H85011,Greyswood Practice,9486.328031,5.4649,69.8413,65.6716,3.4111,66.9811,75.1381,2.0332,85.9259,4.622,0.7034,0.4625,1.303,16.2447,7.0667,12.0929,64.7873,78.2787,0.7901,1.0214,7.7566,0.2263,89.7537,79.9107,81,93,13.0792,1.137 South West London ICB,H85012,Putneymead Group Medical Practice,18977.89619,4.2702,67.284,58.3333,2.7384,57.9805,71.1538,1.1973,91.0256,2.0012,0.7389,0.5058,1.8306,13.8944,2.7953,7.5552,71.7848,78.0928,0.2766,1.0195,6.3264,1.6566,74.945,82.8729,86,91,11.1869,0.7982 South West London ICB,H85018,Mulgrave Road Surgery,8171.10759,5.5482,71.0407,67.284,3.9303,66.9591,72.4138,2.349,93.2432,2.7798,0.8938,0.5386,0.8397,11.1753,6.1466,12.9942,62.645,81.6177,0.1604,0.8594,9.6569,0.8435,85.1114,89.2562,85.7143,94.8052,11.539,1.3292 South West London ICB,H85020,Nelson Medical Practice,26255.8512,5.0353,72.7735,72.3661,3.3358,69.0714,71.2644,1.7431,91.875,3.9041,0.7979,0.6138,1.251,9.1729,5.2513,10.75,73.1451,81.8919,0.3376,0.7427,5.9956,0.404,78.3649,84.2857,84.898,89.7959,10.3874,1.0035 South West London ICB,H85021,Chesser Practice,6575.518602,6.8009,66.6667,78.169,4.2837,69.1943,75.3968,2.583,96,3.7184,1.9252,0.4653,1.8294,20.7194,9.219,13.1558,72.4349,85.0299,0.4813,0.9626,13.8,0.1753,89.8138,87.8788,86.5169,95.5056,18.2925,1.829 South West London ICB,H85022,Park Road Medical Centre,4206.2431,4.9148,66.0714,69.7368,3.5806,70.1299,74.3243,1.9995,91.6667,1.1273,1.6043,0.3953,0.712,14.3861,6.9217,12.1135,61.2981,77.1429,0.186,0.7905,10.8277,0.5316,83.6048,89.5833,88.0952,95.2381,12.6966,1.2555 South West London ICB,H85023,Bishopsford Road Medical Centre,5431.653862,6.0542,63.4921,60.2041,2.4149,70.1493,70,2.1378,73.8095,4.3875,1.8804,0.4553,2.2318,26.5223,8.7522,14.6279,73.1023,81.203,0.6532,1.3658,14.2024,0.1949,88.2008,92.6316,77.6119,94.0299,18.7532,1.247 South West London ICB,H85024,Mitcham Medical Centre,8979.297405,4.7402,57.8261,70.2381,3.0033,61.0687,70.8333,2.2342,79.1667,5.8365,1.697,1.465,1.618,22.3743,10.0954,16.5425,71.0145,77.2908,0.5128,1.4284,17.5238,0.8822,80.7218,85.8407,82.8571,93.5714,16.4593,1.3063 South West London ICB,H85025,Wrythe Green Surgery,15899.67608,7.4477,71.9715,76.9939,3.5194,74.8808,76.4286,2.3954,94,2.6504,1.1609,0.7248,1.2931,15.1171,7.1627,12.2474,57.1967,69.4789,0.5159,0.7862,12.0954,1.0244,89.7212,84.0336,87.2611,90.4459,13.4245,1.4127 South West London ICB,H85026,Francis Grove Surgery,9884.857819,4.5535,72.4739,65.587,2.8945,74.5572,78.4553,1.2585,94.6154,1.9094,0.5873,0.3636,0.746,7.614,3.0027,7.8655,78.4935,85.1675,0.2167,0.7131,4.254,1.1412,84.5347,83.1461,91.2281,91.2281,7.5876,0.832 South West London ICB,H85027,Wimbledon Village Surgery,10538.99319,4.701,68.7927,65.625,4.6891,60.4462,65.0376,1.9142,89.899,1.8429,0.8236,1.0091,1.0877,6.9721,2.7269,10.2908,59.9182,74.0831,0.1261,0.8161,2.7688,0.4501,70.0787,85.3333,57.6923,82.6923,6.4158,1.4097 South West London ICB,H85028,Wimbledon Medical Practice,7363.542876,3.3303,67.1795,65.9722,2.4533,62.8931,70.7483,1.1021,93.2692,1.02,0.7379,0.5175,0.228,8.8442,3.3322,6.6507,79.1667,82.5301,0.2108,0.6037,5.3282,0.4676,71.6165,76.5625,82.9787,91.4894,9.6701,0.805 South West London ICB,H85029,Wide Way Medical Centre,16368.76198,5.2252,59.1146,56.0976,2.5978,58.5616,69.2913,1.9274,84.0237,3.6087,0.9089,0.5802,1.316,23.265,9.361,15.0068,59.0862,75.1244,0.5608,1.0056,13.1601,0.4864,79.3703,85.1613,70.8333,81.9444,14.7163,1.315 South West London ICB,H85030,Old Court House Surgery,14092.72691,5.6111,72.1053,74.4681,4.3802,65.444,74.6888,2.6103,86.9231,4.7408,1.8145,0.6916,1.8298,14.311,7.2445,15.6615,63.4176,79.3814,0.357,1.0783,12.2355,1.4344,87.4746,85.8824,78.7671,88.3562,13.0586,1.6212 South West London ICB,H85031,Benhill & Belmont GP Centre,12180.76909,5.022,66.7752,66.2222,3.393,69.4268,75.6098,2.1297,91.8919,4.0658,1.3199,1.328,1.5194,14.6031,7.3596,12.0658,73.293,79.5796,0.7612,1.0932,12.407,3.1289,82.0559,85.5721,89.8438,93.75,11.7382,1.5224 South West London ICB,H85033,Tamworth House Medical Centre,10377.94979,5.6199,63.3562,64.4737,3.0988,64.3678,75.3846,2.5941,76.6234,3.5999,1.3627,0.5047,2.0304,21.661,9.9828,13.9396,60.9904,77.8261,0.5955,1.6352,12.3568,0.4373,84.4165,80.2817,76,84.6667,16.3978,1.4333 South West London ICB,H85037,Morden Hall Medical Centre,13798.06456,4.5076,61.9565,71.5827,2.8579,59.2727,71.4859,2.2605,89.6825,2.7808,1.1948,0.4005,0.8359,16.9878,8.049,10.6374,65.6349,82.4104,0.6788,1.1948,11.3217,0.124,82.1201,86.1225,77.2222,84.4444,15.9978,1.2219 South West London ICB,H85038,Cricket Green Medical Practice,12888.67405,5.2748,63.6678,71.7949,2.8021,65.3191,69.5652,1.9426,77.4436,3.5374,1.616,0.9541,2.0182,24.3593,9.1336,13.4606,56.6537,77.9359,0.9197,1.4784,14.46,0.6501,87.8837,85.9575,75.1678,79.1946,16.6059,1.6675 South West London ICB,H85041,Earlsfield Surgery,12595.57086,4.9104,65.9193,68.9474,2.2302,73.4624,75.6757,1.0042,90.0794,2.6171,0.7695,0.3261,1.4123,14.2001,4.1416,8.2035,73.8492,82.2785,0.3587,0.9521,7.7156,0.8278,85.125,82.6667,90.3614,90.3614,10.0645,0.6782 South West London ICB,H85045,Bridge Lane Group Practice,13153.94066,4.3119,67.0554,54.1985,3.3139,62.2581,65.9919,1.8082,72.3404,3.8404,1.3544,0.4125,1.0654,18.5447,4.1687,10.8697,65.8208,82.1875,0.3713,1.0382,8.0278,2.917,72.285,84.2932,92.0455,92.0455,15.346,1.1 South West London ICB,H85047,Chatfield Health Care,11617.79019,4.3432,61.0487,59.0476,3.0794,57.2695,64.1026,1.3921,75.5814,2.976,1.2402,0.5737,1.4387,19.2141,5.5848,10.2,62.7976,80.0995,0.5231,1.2993,8.4647,0.3214,89.5052,73.5632,84.7619,94.2857,16.699,1.004 South West London ICB,H85048,Brocklebank Group Practice,14206.03788,5.0619,63.4921,73.3577,2.3763,66.8442,71.1679,1.3693,77.5148,2.4509,0.8474,0.4175,0.7436,15.2546,5.2194,10.0761,56.1083,79.562,0.5895,1.3877,7.3298,0.3673,77.0355,82.1053,81.4516,87.0968,14.7679,0.9702 South West London ICB,H85049,Battersea Rise Group Practice,4706.824772,3.701,72.7273,70.5882,2.4009,70.317,74.7748,0.824,91.4894,2.115,0.6961,0.2983,0.6992,9.8172,2.4642,5.711,75.3994,83.1461,0.2557,0.7387,4.4398,1.1952,75.7372,79.0698,95,95,7.4839,0.6251 South West London ICB,H85051,Lambton Road Medical Practice,12944.73333,4.1063,69.7861,63.4812,3.0448,62.8609,69.5205,1.5224,93.5,3.3108,0.6915,0.5744,0.9307,8.7998,4.3557,8.2924,69.6035,87.2159,0.1394,0.6525,6.0107,0.4571,77.2267,87.6923,87.963,88.8889,9.0884,1.0094 South West London ICB,H85052,Streatham Park Surgery,5983.961287,5.4538,62.6087,58.0247,3.2031,59.1837,65.3333,2.4385,80.7692,4.8683,1.3846,0.9093,1.5558,20.2245,8.9334,17.0283,69.7749,87.6238,0.8886,2.1905,9.4354,1.4436,84.2842,81.1321,91.0448,92.5373,16.536,1.8806 South West London ICB,H85053,Sutton Medical Centre,4856.069295,5.1837,62.3932,60.4651,1.9804,69.9531,69.0476,1.8508,89.6552,3.2258,1.0735,0.8144,1.7443,13.7175,8.1316,12.2339,76.2681,89.9083,0.4997,0.9069,13.19,1.0672,91.0106,94.382,89.5522,94.0299,13.6655,0.7958 South West London ICB,H85055,West Barnes Surgery,6608.193622,6.1288,65.0206,70.303,3.9741,62.5,74.4526,2.9873,94.5455,3.8856,1.1625,0.9732,1.3656,9.3926,7.559,13.5442,66.8387,82.3789,0.2433,1.0003,9.1855,1.0624,76.8757,83.2215,82.7586,83.908,9.5916,1.568 South West London ICB,H85057,Elborough Street Surgery,5276.368005,4.7075,74.1259,78.4483,2.8372,76.2019,79.4872,0.9661,96.9925,2.0804,0.4036,0.2201,0.9614,8.6349,2.5845,7.2154,68.8976,81.7073,0.2079,0.3913,6.446,0.6608,88.3731,69.8113,92.5926,96.2963,7.1671,0.6971 South West London ICB,H85061,Heathbridge Practice,14874.91647,3.5431,67.3469,67.0455,2.1809,60.1569,67.9245,1.1723,93.3333,1.7169,0.4734,0.2477,1.2482,12.0646,2.016,5.7598,67.7113,87.5502,0.177,0.5884,5.6195,1.5373,67.7034,90.8397,83.8235,92.6471,9.9881,0.7565 South West London ICB,H85063,Cheam GP Centre,12933.24361,5.6243,75,73.7864,5.3239,78.2857,80.3774,2.7341,85.0746,7.2695,1.4593,1.0023,1.6176,7.7769,8.9986,17.7357,76.259,83.8235,0.4971,0.7938,9.657,0.3146,87.6841,85.8182,81.2121,78.7879,9.0468,1.4833 South West London ICB,H85065,Alton Practice,4403.932979,4.1397,51.7647,43.9394,1.6511,40.6593,58.0645,1.8466,58.3333,3.1602,1.1949,0.3041,1.4564,25.8493,8.0593,10.3845,58.9928,68.8525,0.7387,1.1732,8.986,0.0907,78.2759,82.6087,66.6667,85.9649,18.8757,0.9125 South West London ICB,H85066,Balham Park Surgery,15931.4311,5.2088,70.9239,74.183,2.8634,73.3445,73.7762,1.2209,95,2.5788,0.5669,0.4409,1.4933,14.2391,3.4457,7.4806,66.6937,81.1502,0.3828,1.0659,7.1219,1.9018,88.0113,75.3488,83.6735,90.8163,9.7403,0.8382 South West London ICB,H85067,Danebury Avenue Surgery,3184.818138,5.3767,54.2857,50.9804,2.1703,55.2381,62,1.7696,75,3.6973,1.5359,0.3673,2.1496,27.1766,7.0797,12.9883,47.6489,55.7143,0.9349,1.7362,7.9966,0.344,70.4947,82.2222,52.9412,73.5294,20.3561,1.1018 South West London ICB,H85069,Lavender Hill Group Practice,12048.4459,5.02,66.3934,66.5025,2.432,66.2909,70.1031,0.9676,88.8889,1.7801,0.8761,0.3596,1.5806,15.8456,3.2238,6.5965,70.8982,75.2874,0.3007,0.7976,6.0385,1.7463,76.1973,76.1062,80.5556,88.8889,12.4039,0.8957 South West London ICB,H85070,Central Medical Centre,8578.71619,6.2262,55.4054,66.0494,2.3554,68.4066,71.3415,2.5723,89.0244,3.0787,1.0537,0.3926,0.9171,20.0955,14.2949,13.8843,67.1539,79.0055,0.3926,1.1674,16.1404,0.2037,86.3781,94.9153,82.2511,90.0433,10.4831,0.9194 South West London ICB,H85075,Haider Practice,4354.011628,3.9399,61.7284,64.1791,1.9458,61.5142,75.3623,1.1457,85.2941,2.5422,0.6365,0.3455,0.789,14.4461,4.1676,7.9833,62.7346,81.8182,0.3455,0.8183,6.0706,0.2597,73.8913,91.8033,90.625,90.625,12.3206,0.5819 South West London ICB,H85076,Stonecot Surgery,10082.90055,7.7728,69.8361,67.2646,4.0416,68.5358,81.5789,3.013,89.2473,6.025,1.6727,1.174,1.9913,11.6512,8.8447,16.561,71.6511,86.7742,0.5299,1.0805,15.5731,0.967,88.6478,90.7173,90.9091,95.4545,12.3945,1.8182 South West London ICB,H85077,Bolingbroke Medical Centre,5323.148779,4.7196,57.2581,54.2553,3.1409,67.4194,69.4737,1.6609,95.122,1.3557,0.7893,0.3947,1.4553,13.7359,7.2983,10.8206,64.4567,81.7391,0.4111,1.036,10.6858,0.5945,83.3491,81.4433,91.3793,94.8276,11.4411,1.332 South West London ICB,H85078,Mitcham Family Practice,3993.944579,4.4089,49.4737,53.2258,2.4734,57.8616,58.9286,1.6412,87.037,3.6792,1.0865,0.393,1.1498,21.3929,7.1853,11.743,73.9953,77.6471,0.601,1.3176,9.2268,2.3256,70.6631,85.5556,76,86,14.6594,1.0633 South West London ICB,H85082,Triangle Surgery,4017.612342,4.1916,60.8696,64.3836,1.5666,66.3415,77.7778,1.8314,71.4286,2.3262,0.7282,0.2648,1.15,16.7062,7.0543,10.3045,74.1026,85.7143,0.4192,0.9267,12.1276,0.0791,79.5455,72.8571,91.6667,85.4167,13.8354,0.9709 South West London ICB,H85087,Open Door Surgery,10134.67518,4.0032,56.9966,55.5556,3.1356,71.7391,78.5714,2.9026,97.6191,6.8946,1.0484,0.6116,0.3129,20.6743,12.5332,17.2896,83.3444,93.9286,0.2621,0.9028,16.4599,1.8261,79.6647,91.4842,95.7944,97.1963,10.3093,1.1844 South West London ICB,H85088,Clapham Junction Medical Practice,2407.762991,5.026,62.5,62.7907,2.7975,51.0204,68.1818,1.7954,66.6667,5.332,1.0021,0.5846,2.0843,20.2679,8.1818,13.6952,70.3422,80,0.8768,1.5449,11.1973,0.4739,76.3258,85.7143,87.0968,90.3226,16.7343,1.3361 South West London ICB,H85090,Figges Marsh Surgery,9617.635357,3.8035,54.3779,55.5556,2.0735,65.5422,73.1544,1.442,80.1802,2.3303,0.82,0.2451,1.1414,21.9809,8.8122,11.6871,69.1948,84.3023,0.5372,1.197,13.0781,0.5082,82.2443,92.4419,86.1111,87.5,15.8033,1.0462 South West London ICB,H85092,Riverhouse Medical Practice,4913.79758,4.4928,55.8333,60,2.681,58.8235,66.25,2.7648,98.0769,2.8346,0.6032,0.3351,0.9165,14.2829,9.2398,10.8579,69.5167,83.6364,0.5697,1.4745,8.312,0.7956,80.5581,85.3147,92.1053,81.5789,12.4442,1.1897 South West London ICB,H85095,Robin Hood Lane Health Centre,13036.52882,4.7633,68.3849,74.5763,2.7382,70.2955,75.1152,2.1162,85.2761,2.5704,0.8992,0.6423,0.7693,14.3144,6.9939,10.3103,75.0198,86.7424,0.5544,0.9939,14.2366,1.6777,89.2559,82.4,88.5906,91.9463,13.0658,1.1358 South West London ICB,H85100,St Paul's Cottage Surgery,6623.213854,4.1316,63.1206,49.1071,2.3727,58.6842,65.7658,1.3789,76.4706,2.685,0.9938,0.323,0.5187,16.2073,4.3577,8.1615,57.7143,80.303,0.3727,0.9193,6.0412,1.0299,71.6206,86.5854,61.2245,81.6327,14.7507,0.8323 South West London ICB,H85101,Grand Drive Surgery,7574.467948,4.7059,72.9358,69.4611,3.4427,68.2857,76.2821,2.0569,92,4.4953,1.0718,0.5413,1.6753,8.5033,5.8128,12.9588,69.4268,78.0392,0.5196,1.061,8.0134,1.0778,79.6296,88.2759,82.2785,92.4051,10.617,0.8877 South West London ICB,H85103,Hackbridge Medical Centre,6386.389539,5.7485,69.7479,67,1.9651,72.2527,71.8447,1.5361,89.8438,2.2643,1.2317,0.3598,1.4105,19.6125,7.0696,9.3551,71.3787,89.3204,0.2768,0.6781,15.0705,0.5019,91.6388,84.9057,91.6667,93.0556,14.6235,0.8303 South West London ICB,H85105,Cheam Family Practice,12527.25648,5.7251,74.026,70,3.8372,74.7346,81.1594,2.1885,93.0233,3.7295,0.8827,1.3131,1.4749,8.2954,6.2546,13.576,69.4463,84.9246,0.6274,0.9994,10.3993,1.0621,90.0376,80,71.4286,87.395,8.6395,1.5976 South West London ICB,H85110,Ravensbury Park Medical Centre,5387.593604,5.0851,60.9589,56.6372,2.2052,64.1414,70.8738,1.9865,66.6667,3.6731,1.0388,0.3827,1.056,21.3971,10.0135,13.942,67.6609,75.7813,0.3827,0.7655,11.3866,0.329,80.5924,84.8739,81.3953,86.0465,17.027,0.9477 South West London ICB,H85111,Battersea Fields Practice,12990.28928,4.7464,58.5366,47.2826,2.2333,56.6011,63.5359,1.5084,67.3759,3.0581,1.0105,1.2521,2.1145,25.8528,5.2668,8.3693,63.8738,85.2679,0.6517,1.34,8.8161,2.6662,79.2098,77.2947,83.6364,91.8182,15.7755,1.2448 South West London ICB,H85112,Vineyard Hill Road Surgery,3589.872926,4.0957,74.7899,71.5789,2.5242,68.0251,69.0476,1.0654,89.7727,1.4682,0.4098,0.1639,0.8447,8.7413,2.3436,5.9662,69.967,86.8853,0.0983,0.5245,4.4851,0.2088,78.9358,89.4737,80,95,8.3131,0.5245 South West London ICB,H85113,Maldon Road Surgery,4104.761731,6.4346,76.087,84.466,3.8367,76.0479,80.7229,2.4007,86.2069,2.9564,0.8526,0.4487,0.8898,13.8153,8.9704,13.1479,66.1734,83.1858,0.4936,0.8526,12.256,0.4397,92.8162,81.3333,89.0909,92.7273,10.3671,1.1218 South West London ICB,H85114,Thurleigh Road Practice,8548.948023,4.2011,78.5965,73.8397,3.2002,72.5177,78.4553,1.0667,89.6296,0.8329,0.3678,0.2354,0.9588,8.682,1.9666,6.4739,67.1271,79.4872,0.3016,0.7357,3.322,0.5836,75.855,71.7391,58.8235,85.2941,6.297,0.5812 South West London ICB,H85115,Shotfield Medical Practice,13289.87711,7.3073,74.4921,77.3414,4.6128,67.8756,74.8227,3.0912,89.0625,6.2032,1.6577,1.3694,0.9551,13.4983,9.0557,16.7214,65.2065,81.2245,1.0171,1.0651,11.9732,0.7699,90.1269,83.9869,80.7018,88.8889,10.4755,1.8099 South West London ICB,H85116,Manor Road Practice,12719.46885,6.2435,66.7897,69.6581,2.5352,66.7364,71.875,1.9879,83.125,1.8276,1.0624,0.5714,2.0178,20.125,7.3376,10.7284,53.4884,56.7442,0.8934,1.3441,8.2612,1.3229,82.3197,83.6364,50.3876,75.969,20.9861,1.2555 South West London ICB,H85618,James O'Riordan Medical Centre,8245.546652,5.6072,65.5303,65.0273,3.6229,70.2624,75.6098,2.5057,93.9394,3.7073,1.2216,0.4385,1.1534,9.6701,8.1856,11.9858,76.9815,87.6652,0.3132,0.6682,10.4353,1.0069,87.764,82.967,89.4737,91.2281,12.6132,1.2633 South West London ICB,H85634,Merton Medical Practice,6054.737902,3.7527,61.7391,60.1942,2,65.4912,71.4286,0.9872,84.058,1.4085,1.0385,0.218,1.9092,15.5935,4.5123,7.7949,74.9057,88.4615,0.2821,1.141,7.2614,1.1543,80.3364,90.7407,87.037,87.037,16.8533,0.641 South West London ICB,H85637,Balham Health Centre,1243.537236,4.8232,56.5217,70.2703,2.7259,44.4444,60,2.7259,75,1.9102,0.8567,0.4673,0.382,17.8827,11.6432,13.7072,59.864,72.4138,1.4019,0.7009,6.7813,0.3571,82.7372,92.3077,56.5217,91.3043,10.683,1.324 South West London ICB,H85649,Colliers Wood Surgery,9787.068987,4.7689,55.8704,65.9574,2.4425,57.4257,67.9775,1.7572,94.4444,2.6394,0.9489,0.2021,0.8552,19.2071,7.1533,10.6308,60.6174,82.2695,0.4305,1.2124,8.6888,0.8133,78.4576,85.5491,78.626,82.4427,16.9723,1.0279 South West London ICB,H85653,Wallington Family Practice,17746.76192,6.7604,70.1559,68.75,3.9455,72.3794,74.5455,2.4121,90.5063,4.874,1.3273,0.9758,1.9828,14.1876,8.2899,15.2242,63.284,73.6842,0.7818,1.0182,13.1132,1.0444,83.9183,85.0153,79.1878,92.3858,11.4076,1.6182 South West London ICB,H85656,Alexandra Road Surgery,4618.407071,4.7107,60.6299,64.5161,2.2983,58.1749,66.3043,2.3509,95.6522,1.3502,0.5614,0.2105,0.7595,11.6105,7.8509,9.579,47.3118,64.1975,0.2456,1.0175,7.8481,0.2502,76.1769,83.3333,70,85.7143,11.0477,1 South West London ICB,H85659,St John's Hill Surgery,7678.875318,4.0146,57.2727,46.3918,1.1837,70.6089,63.5417,0.5135,82.0513,0.9012,0.3482,0.3221,1.0614,14.3819,2.1765,4.1692,61.9953,81.0345,0.2002,0.7921,4.6761,0.6081,74.0113,78.9474,81.0811,89.1892,9.6895,0.4613 South West London ICB,H85662,Beeches Surgery,4723.916417,4.4025,81.768,76.6129,4.6542,71.7949,84.8214,2.5061,90.9091,4.8102,0.961,0.3769,0.9903,7.2643,6.0613,12.8321,63.7363,82.963,0.4899,0.716,7.7105,0.5709,82.8561,96.5517,93.8776,95.9184,8.5572,1.3567 South West London ICB,H85664,Tooting Bec Surgery,1144.855976,3.0223,54.5455,50,0.8329,71.3287,83.3333,0.2603,100,1.3639,0.2603,0.2082,1.0911,17.2374,1.3624,2.9152,75,91.6667,0.0521,0.0521,1.4184,0,76.9517,81.8182,,,8.4855,0.0521 South West London ICB,H85680,Tooting South Medical Centre,7844.121523,4.0276,64.2384,73.8095,1.4766,70.3271,80.7692,1.5377,86.5979,3.1402,0.835,0.2444,1.4227,18.2282,8.6709,11.3544,73.8431,87.6033,0.7027,1.1507,14.6116,0.3337,91.1969,92.8994,95.4198,98.4733,13.8988,0.7536 South West London ICB,H85682,Tudor Lodge Health Centre,9044.01296,5.0851,58.2418,50.3401,2.0301,53.1187,66.8966,1.6168,87.3684,3.0575,1.1575,0.2205,1.2874,20.1458,6.4856,9.8475,65.0256,81.4433,0.4318,0.9829,16.023,2.1251,78.901,94.7059,82.4074,92.5926,15.9799,0.9921 South West London ICB,H85683,Faccini House Surgery,4630.820821,4.898,65.3465,75.2941,2.4147,61.6352,66.2921,1.9276,91.4286,3.4323,1.6522,0.1695,1.2531,24.4481,7.6307,11.5654,63.8202,71.2871,0.233,0.9744,11.3593,0.2712,76.1723,83.5443,83.9286,96.4286,17.4143,1.1015 South West London ICB,H85686,Grove Road Practice,9837.319934,5.2246,72.9242,66.9856,3.5818,68.476,75.3927,1.9314,90.0901,3.3481,0.7023,0.6584,1.1009,10.6152,5.9987,11.6847,70.7024,76.3052,0.7023,0.8428,8.7618,0.7228,80.8059,80.137,71.4286,89.7959,8.5247,1.0886 South West London ICB,H85693,Green Wrythe Surgery,10587.1321,6.8129,63.5556,58.9109,2.298,75.6824,76.8041,1.9024,93.4783,4.4805,1.8083,0.3673,0.7468,26.5706,9.06,11.3486,76.1682,86.6667,0.4803,0.9135,15.4371,0.3391,90.3789,94.9749,88.806,93.2836,17.6344,1.1113 South West London ICB,Y01132,Chartfield Surgery,10721.72868,3.9307,62.8483,55.5556,2.765,55.058,66.8246,1.4299,91.954,1.6035,0.7369,0.3721,0.8841,15.6752,3.5363,8.2586,72.6073,79.8206,0.2189,0.8171,6.6742,0.3839,66.581,79.3814,81.6901,87.3239,10.7915,0.715 South West London ICB,Y01206,Glebe Road Surgery,8890.419806,4.4164,69.0141,61.3821,4.6316,58.4906,68.2243,2.601,89.4737,3.4263,1.2087,0.8702,0.768,9.0127,3.5112,11.9416,76.6979,81.3648,0.1644,0.7832,2.9773,0.5074,71.3344,87.7778,63.0435,84.7826,7.8197,1.6244 South West London ICB,Y02423,Grafton Medical Partners,36538.41739,4.7033,58.5401,59.9258,2.0159,63.5279,68.1132,1.4062,85.0516,2.5497,0.7265,0.3644,1.1828,19.2115,5.4087,8.6335,64.7938,83.3063,0.3247,0.946,9.0912,0.5457,74.5455,85.4949,85.0877,93.8596,8.1981,0.862 South West London ICB,Y02946,Junction Health Centre,5599.254898,3.3418,62.2222,54.7619,0.8547,66.2609,61.7021,0.3119,80,0.5718,0.2195,0.0693,1.0673,19.7177,2.0243,2.8067,67.234,87.5,0.1386,0.7046,5.2859,0.1486,78.7908,92.5,88.4615,92.3077,15.0697,0.3812 South West London ICB,Y05317,Country Park Practice,7745.85756,6.1966,64.5,58.5987,3.4668,60.5263,67.8082,2.0518,77.7778,3.5078,1.4433,0.6085,1.0328,27.0007,8.2341,12.1975,65.0838,75.3425,0.849,1.4433,10.9331,0.3306,80.6418,74.8252,77.6471,87.0588,17.4142,1.4858 South West London ICB,Y05318,Denmark Road Surgery,6270.750395,5.7779,63.3136,63.1579,2.6343,69.802,77.1654,1.7675,72.7273,6.0437,1.3426,0.5269,0.8144,26.9422,9.981,14.9728,79.5393,84.6154,0.5269,1.4446,13.8448,0.2906,84.0147,78.3217,83.1461,93.2584,16.8579,1.3426 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence West Yorkshire ICB,B84001,Station Road Surgery,10292.80629,8.7739,71.5596,59.8214,3.2027,80.4035,75,3.6435,93.5484,4.8901,2.8893,0.6073,1.6053,26.5091,8.0005,16.4251,65.7083,85.6574,0.9305,1.4104,13.9047,2.3013,87.8278,91.3044,79.5276,92.126,19.4065,1.9393 West Yorkshire ICB,B84003,Rydings Hall Surgery,8558.328247,6.0495,79.3548,70.2326,4.7124,73.3032,76.1364,3.9729,97.6744,5.2005,2.5692,0.94,1.0853,20.901,8.4612,16.5309,42.1415,62.1263,0.7394,1.2408,8.5017,3.2623,84.1102,81.3131,52.4272,67.9612,16.6427,2.3938 West Yorkshire ICB,B84004,Hebden Bridge Group Practice,17625.13224,8.7569,75.662,65.2557,5.2583,76.4259,76.0085,2.8918,85,3.807,1.7221,0.6228,0.9778,18.1164,6.1138,15.385,62.9945,78.5714,0.482,1.343,7.399,3.0446,85.6701,77.673,76.3975,89.441,13.9845,2.0524 West Yorkshire ICB,B84006,Todmorden Group Practice,15824.22186,8.58,69.1667,66.6667,3.8464,74.4681,72.9927,3.6373,83.4862,5.3154,3.234,0.9411,2.1614,27.9036,8.7262,17.0364,69.0149,81.681,0.8141,1.6506,15.3618,2.33,89.9142,82.973,86.7052,91.3295,16.2014,2.39 West Yorkshire ICB,B84007,Brig Royd Surgery,9330.44859,7.6794,81.7967,75.2475,4.4143,85.034,83.0645,3.4239,94.8052,2.4308,1.6695,0.7829,1.0765,14.1324,6.0534,16.8176,72.2073,86.1953,0.3396,0.5565,10.4873,0.3217,90.409,83.4225,91.8367,95.9184,8.4837,2.3769 West Yorkshire ICB,B84008,Kos Clinic,14977.79216,7.9002,82.03,76.9042,5.1361,84.3552,85.3211,3.5165,97.6563,5.1727,1.4053,0.8823,0.875,12.6064,6.9462,18.1308,66.5027,82.3713,0.5672,0.6869,9.2535,1.697,89.4781,85.1852,78.8235,92.9412,7.9504,2.4263 West Yorkshire ICB,B84009,Stainland Road Medical Centre,11224.20084,7.05,78.8969,72.6073,4.274,82.9132,86.6953,3.5717,96.2963,4.9605,2.3147,0.7802,1.8954,16.9251,7.6088,16.671,73.7406,86.5672,0.5202,0.8062,13.0835,0.2776,89.4874,82.1293,80.9524,93.6508,11.0051,1.9766 West Yorkshire ICB,B84010,Keighley Road Surgery,11755.77051,8.3804,72.5146,65.3386,3.6202,71.6463,74.3961,3.5917,82.3529,5.0048,2.8715,0.6444,2.4602,32.394,8.8815,15.3431,57.7381,72.3636,0.7866,0.8624,11.903,0.4088,84.0682,88.4328,70.8029,90.5109,21.0874,2.0565 West Yorkshire ICB,B84011,Church Lane Surgery,12217.13444,7.6153,76.5661,69.9659,4.6508,71.1599,75.641,4.293,92.4242,2.8758,2.1465,0.9928,2.0389,19.9608,8.151,16.054,68.5466,84.7087,0.5366,1.0733,14.4758,2.6512,79.6125,84.8837,70.068,89.1156,13.2735,2.5043 West Yorkshire ICB,B84012,Spring Hall Group Practice,32040.31878,7.0808,68.97,60.0382,3.0169,54.9894,67.7852,3.3345,82.7988,4.0033,1.757,0.9251,1.1444,38.1341,10.4964,12.8029,69.1287,81.323,0.825,1.0183,13.7604,3.6855,84.4519,89.6414,67.713,83.6323,26.6982,2.0987 West Yorkshire ICB,B84013,Plane Trees Group Practice,10216.6351,7.2811,72.973,64.8889,4.2149,71.3768,78.0347,4.0258,93.1035,6.0107,2.7803,0.7785,2.7872,31.662,9.8887,18.7722,70.0444,83.631,0.7896,1.1232,21.1571,2.5964,89.6503,90.4215,84.3284,96.2687,16.8648,2.5467 West Yorkshire ICB,B84014,Rastrick Health Centre,5612.527754,6.9433,78.3019,72.9323,5.1678,76.4286,77.451,4.8592,88.6364,2.5087,1.8126,0.8484,1.324,21.0844,9.3529,19.8612,72.2081,79.3388,0.4242,1.0798,17.6771,0.3535,91.2997,88.4298,93.5065,96.1039,11.0226,2.7574 West Yorkshire ICB,B84016,Bankfield Surgery,11634.1526,7.6015,73.3711,67.3152,3.3192,81.6384,81.4286,3.4006,93.578,4.4467,2.5956,0.8773,1.9561,24.8697,9.0777,15.8723,55.4526,79.5455,0.7868,1.3657,11.8731,1.5307,87.8958,86.4341,78.8079,92.053,15.9023,2.3334 West Yorkshire ICB,B84019,The Boulevard Medical Practice,17864.31406,6.9455,69.4087,58.5714,2.6918,59.129,74.1803,2.9568,80.8411,4.6789,1.4272,0.6745,2.1962,27.7043,10.3637,12.2968,64.8214,82.5967,0.6624,1.4754,11.005,2.0163,89.785,87.473,70.2381,88.8889,14.6261,1.7102 West Yorkshire ICB,B84021,King Cross Practice,9396.827409,7.1231,75.5172,68.4466,4.337,63.2302,77.1605,3.3657,83.5294,4.4065,2.1233,0.8697,0.796,28.8052,8.9826,14.6713,60.7632,78.3394,0.768,1.3327,16.7164,3.2983,85.7251,78.8462,79.646,92.0354,16.9485,2.6203 West Yorkshire ICB,B84612,Lister Lane Surgery,10036.17939,5.537,59.9078,49.6644,1.7769,49.3827,61.6,2.9392,94.7368,2.0558,2.2016,0.6035,0.575,43.6606,8.8206,12.1703,65.4226,79.7753,0.7711,1.1287,5.0891,0.15,86.5557,88.2353,76.0331,67.7686,24.2669,1.274 West Yorkshire ICB,B84613,Beechwood Medical Centre,11407.99005,8.543,64.3777,56.9892,3.0359,74.6518,71.4286,3.2294,84.1122,4.1541,3.3619,0.8354,3.4275,41.3052,7.7441,13.6308,70.5365,88.0597,1.1919,1.63,17.3704,0.3332,89.6708,89.9498,83.9623,95.283,25.963,1.8643 West Yorkshire ICB,B84618,Caritas Group Practice,9576.563642,7.6403,66.1417,60.2273,2.8897,66.0959,68.3099,2.8552,83.5443,3.1984,3.166,0.6447,1.2348,36.3014,7.9326,12.9173,74.3129,88.0682,1.0822,1.4506,14.5344,0.0325,81.6718,85.8757,74,93,25.2172,2.0493 West Yorkshire ICB,B84623,Longroyde Surgery,4537.538673,6.4466,78.6765,73.5849,2.8263,74.1573,79.1667,2.8886,90.2439,3.2723,1.995,0.9352,0.7853,23.8483,8.1464,14.6717,75.7119,91.7431,0.5611,1.2885,12.2513,1.3998,91.6064,83.3333,86.2069,93.1034,15.4243,1.9327 West Yorkshire ICB,B87001,Middlestown,9503.802428,7.2044,80.2228,73.913,4.5167,80.1418,84.5411,3.9152,95.2381,3.0354,2.1528,0.5699,0.3087,13.5042,6.972,18.1406,70.5924,84.0532,0.2849,0.6648,11.4984,0.1143,90.3055,88.1443,87,91,10.3579,1.9418 West Yorkshire ICB,B87002,Orchard Croft,11226.07315,8.3246,76.4846,66.426,4.784,78.9474,81.3853,4.0291,87.8049,6.5406,2.3556,0.7913,0.6674,16.7446,7.6898,17.7081,66.303,82.7763,0.2365,0.7913,13.8265,0.1581,82.354,83.8597,86.5079,91.2698,13.054,2.5102 West Yorkshire ICB,B87003,College Lane Surgery,10272.0548,8.2117,80.4938,74.2857,4.8065,81.5152,78.8991,3.7414,92.5926,4.2187,2.1393,0.3797,0.7452,13.6822,7.0558,16.2901,68.7409,82.1883,0.4538,0.6668,16.4852,0.1861,87.1659,80.1887,84.8214,93.75,8.7812,2.5746 West Yorkshire ICB,B87004,Warrengate Medical Centre,11802.2054,6.6767,66.5399,65.1042,2.5299,59.6577,74.6988,2.4688,92.3077,4.7106,2.1548,0.7851,0.8973,35.2874,8.7456,13.4433,71.4623,86.2454,0.6368,1.0032,13.2907,2.1524,82.0362,88.6121,86,94,21.7825,1.6662 West Yorkshire ICB,B87005,Riverside Medical Centre,13612.2365,7.8206,75.5906,73.3577,3.3134,74.6073,76.0369,3.5302,93.8597,6.9006,2.9664,0.8067,0.9551,30.7058,8.6367,21.0252,67.9764,84.7938,0.772,1.1016,16.6452,0.128,85.9352,84.8101,86.3946,92.517,16.2632,2.42 West Yorkshire ICB,B87006,Park Green Surgery,13611.07778,10.4424,73.5849,71.9368,3.6011,71.1048,69.2308,3.9931,94.1177,5.663,3.4734,0.9299,2.2372,36.8578,10.4253,18.5705,66.0344,82.8571,1.0028,0.9664,18.5738,0.6915,88.945,86.747,87.0588,91.7647,20.3033,2.5891 West Yorkshire ICB,B87007,Northgate Surgery,16146.04405,7.5743,78.3721,67.8344,3.7381,77.7358,76.4228,3.2265,91.0112,6.6546,2.4488,0.7094,1.7068,27.5042,8.0721,17.4079,72.5396,82.7292,0.382,0.9823,17.0589,0.6154,90.6988,88.8889,86.4706,94.1176,16.9502,2.1146 West Yorkshire ICB,B87008,Lupset Health Centre,16518.64462,8.1224,69.4377,61.512,3.4763,72.7273,75.1073,3.3812,93.8931,6.3158,2.7664,0.988,1.6353,32.9774,10.1607,14.6809,63.6132,79.9539,0.7904,1.332,13.938,0.6841,86.7445,89.0777,78.0488,92.6829,21.2635,2.4224 West Yorkshire ICB,B87009,St Thomas Road Surgery,8003.784304,8.2148,72.8448,64.0523,4.2959,75.8065,74.359,3.6277,92.5373,7.636,3.9618,0.5251,1.9387,34.9494,9.5275,20.9865,76.7619,85.8736,1.0342,1.066,19.8417,0.3308,90.3354,92.3077,88.0435,94.5652,19.5595,2.3866 West Yorkshire ICB,B87011,Friarwood Surgery,15555.71723,8.0172,78.5417,67.9641,4.5352,76.5854,78.2946,3.7481,95,8.3473,3.2309,0.8471,0.7096,27.5748,9.1486,19.6102,71.1047,87.8453,0.3448,0.7047,17.7031,0.6211,91.0185,86.0349,76.2431,96.6851,15.3648,2.3538 West Yorkshire ICB,B87012,Maybush Medical Centre,9572.385871,6.7164,72.7626,59.887,3.1207,60,78.0142,2.8993,87.8505,5.1605,1.8661,0.8013,1.0565,32.0987,9.3625,15.4454,56.8548,79.5556,0.8645,1.0332,16.7682,1.7691,89.2935,89.5652,92.4812,96.2406,19.7925,1.9188 West Yorkshire ICB,B87013,Outwood Park Medical Centre,14624.11951,7.7141,76.8932,80.9117,4.1139,80.2299,82.3944,3.3279,95.1456,3.9116,2.3791,0.9205,0.812,15.0766,7.82,17.4184,61.4885,78.3843,0.5594,0.8001,11.9794,0.1941,85.5636,84.2657,73.7805,87.8049,11.3433,2.1738 West Yorkshire ICB,B87015,Stuart Road,8954.801723,7.1467,76.0148,68.5864,3.95,71.6667,75.974,3.0793,98.2143,6.3151,3.2812,0.8077,1.2755,27.9838,8.3602,18.6648,61.952,87.7778,1.0348,1.0222,12.6769,0.15,86.7301,90.2564,81.3725,89.2157,17.0668,2.2463 West Yorkshire ICB,B87016,White Rose Surgery,27247.8077,8.4915,71.9116,70.8029,3.9904,71.5711,71.5576,3.6084,91.1392,4.1529,3.654,0.9011,2.3521,33.2261,9.6288,16.5469,71.8882,87.2534,1.3495,0.9218,23.0798,3.9233,90.3028,86.3711,86.4553,93.3718,19.2576,2.4872 West Yorkshire ICB,B87017,Trinity Medical Centre,28743.97206,7.3228,69.7095,59.0566,3.2629,57.513,67.2769,2.9187,83.3992,5.1276,1.7505,0.6079,1.3704,28.9783,7.7474,14.0513,70.0096,84.1598,0.564,1.084,14.4335,1.6685,78.6855,86.5449,79.0274,89.6657,20.134,1.9922 West Yorkshire ICB,B87018,Henry Moore Clinic,12830.85896,7.1261,75.5682,66.5339,3.2998,72.8643,74.7525,3.0616,94.5736,3.3478,2.4528,0.6706,1.7684,33.9834,7.9706,16.8696,65.892,85,0.5911,0.9352,13.469,0.2133,86.6819,85.7143,84.9624,94.7368,20.238,1.8793 West Yorkshire ICB,B87019,Stanley,7257.851972,6.9066,76.1194,69.3122,3.7822,75.7576,79.4521,3.0341,94.6429,5.265,1.6764,1.0114,0.8034,17.8448,8.2321,15.5583,63.8608,82.7586,0.9698,0.8174,15.5043,0.2572,86.4826,81.8182,86.3636,94.3182,13.7742,2.2028 West Yorkshire ICB,B87020,Chapelthorpe,14286.94351,7.6327,77.8399,72.7273,4.9162,81.5981,83.5294,3.7164,98.2906,5.9125,1.8948,0.9584,1.0064,18.2265,7.9655,18.1286,72.7505,86.7816,0.6292,0.7901,15.3473,0.6966,89.153,82.1326,93.2099,97.5309,11.2712,2.5752 West Yorkshire ICB,B87021,Ash Grove,14203.30451,7.6923,72.25,63.6364,3.49,73.183,73.5849,3.6562,94.2446,6.4294,3.7275,0.9497,0.4259,31.3107,9.4852,19.2545,67.6295,89.8824,0.7202,0.9655,15.1405,0.9165,90.268,88.1543,68.75,90.9091,21.0072,2.113 West Yorkshire ICB,B87022,Homestead,8876.377494,6.1582,63.4831,53.7879,2.0722,63.6628,66.1157,2.3682,86.5385,3.3354,2.3227,0.501,1.3526,32.2527,7.9415,10.748,72.2494,91.2698,1.2638,1.1044,15.8008,0.2203,89.31,88.4849,81.7204,95.6989,23.1625,1.7192 West Yorkshire ICB,B87025,Castleford Medical Practice,9112.590463,6.7538,71.3656,62.0253,3.2606,69.6203,71.5385,2.9259,89.7196,4.8102,2.9755,1.2398,0.461,33.1277,8.5984,13.935,73.5746,80.6604,0.5579,0.8183,14.323,0.2858,82.0394,85.3403,87.037,89.8148,21.1774,2.0084 West Yorkshire ICB,B87026,The Grange Medical Centre,18030.46881,7.7086,69.4611,59.4595,3.4923,70.5376,74.6032,4.1607,88.024,2.2696,4.3926,0.9686,2.2696,38.5311,9.8113,18.1502,63.2597,80.7771,0.6412,0.989,17.3856,0.155,86.6902,88.6179,76.3889,86.5741,20.4703,2.5032 West Yorkshire ICB,B87027,New Southgate Surgery,14549.21015,7.0526,73.0088,78.0186,3.3231,74.6362,77.4074,2.8443,95.2703,2.788,1.6437,0.6503,0.6702,20.862,8.062,14.5001,62.6975,80.6789,0.4216,0.7861,9.5702,0.32,85.5744,84.4961,91.1243,97.0414,9.5777,1.8724 West Yorkshire ICB,B87028,Crofton and Sharlston Med Prac,11301.00093,8.3261,77.5819,69.8885,4.6314,74.9226,76.6355,4.0468,90.4255,3.4479,2.4938,0.475,0.9019,19.5753,8.323,19.704,71.9139,86.1893,0.4659,0.5938,15.0474,1.3061,90.163,79.9242,89.5522,95.5224,13.9027,2.6309 West Yorkshire ICB,B87030,Health Care First Partnership,33954.74611,8.7248,72.7926,70.8966,3.5269,71.3733,73.4114,3.6224,96.3576,7.0064,2.7056,0.7194,1.2428,28.9503,8.5957,17.4402,60.0851,78.1621,0.4138,0.8212,18.1112,0.1549,83.6151,81.741,74.7525,88.3663,18.2084,2.2154 West Yorkshire ICB,B87031,Ossett Surgery,22884.96639,7.0748,75.8717,67.3307,4.244,80.5009,79.8701,3.4586,95.7895,4.0197,2.3149,0.9186,0.2978,20.1956,8.1805,16.7463,65.6055,83.8624,0.6247,0.8957,16.3823,0.281,88.2774,82.6923,80,92.3077,15.3816,2.4022 West Yorkshire ICB,B87032,Station Lane,8920.753327,8.437,71.179,61.9048,3.4681,74.6622,78.2609,3.1301,96.7742,5.7551,2.9172,0.7512,0.3687,31.816,9.137,15.7005,71.5264,84.0517,1.0768,0.7137,20.0064,0.2113,89.9261,83.5749,85.9813,94.3925,18.7288,2.3914 West Yorkshire ICB,B87033,Newland Surgery,5358.522612,6.5927,75,63.8655,3.5187,73.125,77.5281,3.5187,89.8305,6.1049,3.458,0.2629,0.7064,29.8426,9.4821,18.9484,69.9629,85.1563,0.5056,1.0111,18.8194,0.2005,89.3351,84.9206,83.3333,90.2778,21.528,2.0425 West Yorkshire ICB,B87036,Langthwaite Surgery,5032.484232,7.0443,71.6049,69.2308,4.4002,76.259,77.027,4.2381,89.7959,6.7089,4.377,0.2779,3.5992,34.0102,9.8948,17.4155,78.8122,79.845,0.579,0.9264,25.2232,1.4351,92.4948,92.5926,92.0635,95.2381,19.4452,2.2001 West Yorkshire ICB,B87039,King's Medical Practice,15751.51165,7.989,75.4717,63.6364,2.4537,70.3041,75,3.0558,93.2886,6.2029,2.0717,0.8675,0.6719,24.4317,7.8584,16.1531,68.979,88.6161,0.5374,0.7381,11.6273,0.13,86.0865,87.8453,89.1429,93.7143,16.371,1.9682 West Yorkshire ICB,B87042,Tieve Tara,6498.1213,7.885,70.6667,54.386,2.5784,70.8333,65.2632,3.0472,93.5484,5.4273,4.2193,0.6491,2.8089,45.4866,9.5673,15.3264,62.4346,90.6977,0.9196,1.1179,14.2109,1.1062,90.6667,91.4474,75.6757,93.2432,25.9437,2.1998 West Yorkshire ICB,B87044,Alverthorpe,2557.451016,7.4238,72.6316,72.1311,4.1147,77.027,81.25,3.4082,100,5.25,2.66,0.7481,2.6,26.2593,7.7948,12.5104,80.2419,98.1132,0.5819,0.4988,16.1,0.9497,92.4623,91.4894,100,100,11.3373,2.3691 West Yorkshire ICB,B87602,Patience Lane Surgery,3000.936311,7.6455,81.8182,73.4177,3.4799,75.7009,77.7778,3.2585,93.75,5.3474,1.7083,0.6011,0.5855,16.0806,8.7041,18.1272,79.6976,85.4546,0.1582,0.9174,14.3248,0.3802,87.027,93.75,85.7143,92.8571,12.9976,2.1512 West Yorkshire ICB,B87604,Eastmoor Health Centre,3040.617556,6.3951,61.9048,55,2.2898,64,65.7143,3.1156,89.7436,2.9268,3.3408,0.4129,1.8537,41.2035,9.2566,12.5375,74.2268,90.6977,0.5631,1.7643,15.6585,0.4005,90.5702,90.1235,94.5946,97.2973,22.9066,1.464 West Yorkshire ICB,B86002,City View Medical Practice,17375.97902,4.6117,57.7206,51.0638,1.5646,56.2044,64.8352,2.1077,83.8542,2.4397,2.0237,0.569,1.1333,52.4633,8.0319,11.6118,58.4978,82.2222,0.459,1.0862,12.3108,0.3268,79.6024,88.8476,73.0159,87.8307,23.791,1.2284 West Yorkshire ICB,B86003,Dr G Lees & Partners,18608.75314,4.5357,64.6199,53.252,1.7718,59.2972,67.1233,2.1519,82.4742,1.2935,1.8946,0.6783,2.0207,44.4546,7.1676,10.2976,59.1864,72.9958,0.6491,1.2455,12.5756,0.3471,80.2833,84.7162,82.4176,89.011,25.2925,1.3274 West Yorkshire ICB,B86004,Highfield Surgery,8306.517794,7.2619,78.7234,70.8995,3.9596,75.8007,82.2695,3.4007,95.3488,5.4066,1.4507,0.8799,0.4319,19.5431,7.5422,16.2069,70.8765,85.7616,0.5589,1.0821,11.7218,0.3589,90.6372,84.9398,84.9462,91.3978,11.6908,1.9025 West Yorkshire ICB,B86005,Dr N Dumphy & Partners,6619.531613,5.6447,67.2131,52.3256,2.3141,59.4203,71.7949,2.2258,87.7551,4.587,2.3847,0.477,0.6846,53.7879,9.7413,16.4812,72.6835,90.1961,0.6006,1.1129,17.3665,0.1938,87.3781,92.8571,91.5663,95.1807,21.245,1.4132 West Yorkshire ICB,B86006,Dr L Freeman & Partners,16230.95113,7.0152,79.3878,70.7775,4.6085,80.7157,80.2632,3.2279,89.916,5.455,2.6428,0.9861,1.4936,18.126,7.6405,16.0936,72.8922,89.547,0.5654,0.8546,17.4365,2.1163,89.3483,80.9942,71.4286,94.2857,12.1336,2.439 West Yorkshire ICB,B86007,Windmill Health Centre,10624.5021,7.6389,69.5817,60.101,3.5255,71.4754,75,3.4812,87.234,2.6638,3.6585,1.4745,2.6346,41.1913,9.0374,16.1752,60.0166,77.6892,0.9202,0.9867,15.5895,0.2546,92.5119,92.5234,70,87.5,22.2332,2.3725 West Yorkshire ICB,B86008,Alwoodley Medical Centre,18130.69714,6.6305,76.7188,71.4953,4.6011,73.9875,77.4854,3.2233,90.6977,5.4074,1.203,0.8123,1.3434,17.2367,7.9702,15.8801,61.6501,80.3545,0.6889,1.1413,12.7186,1.5613,86.7927,81.7568,79.1855,89.1403,7.7402,1.9432 West Yorkshire ICB,B86009,Manston Surgery,9176.566363,7.3743,76.4493,73.8889,3.4178,81.4433,83.7037,3.8541,90.6667,6.3677,1.8664,0.7878,0.568,22.5739,7.9617,16.907,63.189,82.3219,0.4969,0.9211,15.0374,0.2913,88.4606,87.1429,90.9091,96.9697,12.395,2.5936 West Yorkshire ICB,B86010,Collingham Church View Surgery,9095.188534,7.6587,82.793,81.8519,5.9026,85.4839,83.3333,3.6246,91.6667,4.3484,1.3769,0.8505,0.5856,7.1618,5.8462,18.6393,73.3535,83.2692,0.2734,0.5366,9.6437,0.5847,90.3509,85.8896,81.1765,94.1176,6.0814,2.3691 West Yorkshire ICB,B86011,Hillfoot Surgery,9122.015899,7.3498,71.1864,64.977,3.599,69.2982,76.4045,2.9273,82.8571,2.0458,1.7744,0.5614,1.253,20.491,8.5962,15.8396,64.9351,79.7048,0.7719,0.8922,16.3023,0.3894,89.9881,89.1753,82.8125,92.9688,16.2158,2.2556 West Yorkshire ICB,B86012,Leeds City Medical Practice,22003.1057,5.1232,61.4085,45.8647,1.8578,59.1384,66.2551,2.2097,78.3784,3.267,2.2821,0.3829,1.1905,51.3307,8.0551,10.2722,70.2189,87.1486,0.6365,0.9936,15.0568,0.6628,80.4908,89.2562,88.7931,92.2414,23.707,1.4852 West Yorkshire ICB,B86013,The North Leeds Medical Practice,17095.02048,5.6852,64.2643,58.3333,1.9207,57.0332,64.2023,1.8625,78.4615,3.4716,0.9264,0.5141,0.3917,32.0951,7.3471,8.7496,76.5205,87.6923,0.3929,1.0234,12.5625,0.5149,76.0425,79.9331,89.7561,94.6341,13.0024,1.1398 West Yorkshire ICB,B86014,Robin Lane Health and Wellbeing Centre,13180.24534,7.0329,76.9841,69.2308,3.1518,79.9197,81.4655,2.9427,91.7355,5.4744,2.4348,1.4788,1.1369,22.1614,7.8975,16.887,64.1635,80.4444,0.478,1.1353,14.4359,0.537,90.0539,83.2753,82,90.6667,13.3346,2.2257 West Yorkshire ICB,B86015,Manor Park Surgery,15862.04715,7.9476,72.1106,62.6712,2.7452,71.0728,72.2944,2.5541,90,3.4623,2.6107,0.467,0.4972,39.1611,8.3578,18.1548,61.907,85.0633,0.5731,1.4858,14.2379,0.5844,85.3014,87.1324,82.3864,89.2045,20.2309,1.8112 West Yorkshire ICB,B86016,Shaftesbury Medical Ctr.,20960.43337,7.6096,72.6547,61.5599,3.4191,72.6727,73.7024,2.9573,85.3774,3.1799,2.7869,0.7476,1.2158,42.4653,8.1493,18.0409,72.3713,87.9771,0.841,0.9895,18.6475,0.2802,89.9104,82.7225,88.2353,95.0226,19.5417,1.9844 West Yorkshire ICB,B86017,Craven Road Medical Practice,14975.64492,5.5187,71.8935,62.1849,2.7157,69.0516,78.7129,2.1264,88.2353,2.0308,1.6403,0.3645,0.8138,22.6357,4.9697,9.7752,78.2443,91.9732,0.4131,1.2272,11.1983,0.9535,87.8594,86.0262,90.4,96,15.8159,1.3487 West Yorkshire ICB,B86018,Mulberry Street Medical Practice,8005.063991,6.9386,72.9537,65.9686,4.2133,76.4259,77.2414,3.9272,95.2381,3.4575,2.5748,0.8843,1.0638,21.1612,7.5936,16.515,64.3917,81.4672,0.4811,0.8843,13.7359,0.2428,88.7374,88.6364,88.5057,94.2529,13.9379,2.4447 West Yorkshire ICB,B86019,Rutland Lodge Medical Centre,19076.65142,5.6821,72.3232,67.6966,3.1329,66.8857,75.8278,2.2711,86.8932,3.1503,1.0747,0.5475,0.58,29.6695,7.8281,13.0184,62.2755,79.9645,0.5881,1.1812,11.8632,0.9812,86.2395,83.3795,85.2679,91.5179,26.7803,1.6729 West Yorkshire ICB,B86020,Lofthouse Surgery,11528.96504,7.495,75.5376,69.2015,3.9575,79.2453,75.6757,3.1535,88.6598,3.8462,2.0904,0.9291,0.578,16.9566,6.4084,15.008,72.1844,81.2325,0.4735,0.5985,14.562,0.1482,89.4144,85.5615,75.3968,89.6825,12.9199,2.144 West Yorkshire ICB,B86022,Oakwood Lane Medical Practice,14988.67457,6.6141,63.2588,62.0833,1.9513,62.2824,74.1935,2.4937,70.6215,4.0738,1.7822,0.796,0.8803,37.9076,8.974,14.6732,65.587,83.3333,0.6763,1.6272,15.6677,1.2325,86.7257,86.3636,82.6316,92.6316,18.2702,1.7258 West Yorkshire ICB,B86024,Priory View Medical Centre,10676.92029,7.6843,68.7285,57.5,3.6652,66.242,73.6196,3.3698,83.75,8.2561,2.9978,0.8206,4.1885,41.4504,9.0596,21.7506,65.9399,81.0997,0.6018,0.8972,17.1567,3.7348,88.4839,86.1953,93.0233,87.5969,20.1318,2.3742 West Yorkshire ICB,B86025,Hyde Park Surgery,9041.089941,4.7283,61.5385,46.9136,1.0838,59.1398,81.4286,1.2374,78.5714,1.7367,0.8761,0.2258,1.1543,29.212,5.4001,6.4035,69.1318,83.9081,0.5058,1.418,9.401,0.3499,93.3007,95.6522,88.4211,95.7895,16.5978,0.8671 West Yorkshire ICB,B86028,Dr Jj Mcpeakes Practice,4973.53654,6.8038,68.9655,69.8113,2.9859,77.0732,75.8621,2.7957,88.1356,3.7343,2.4724,0.8368,0.9927,24.7408,6.7868,15.1388,66.5185,82.6446,0.5325,0.7417,15.8119,0.3335,89.8961,91.8605,85.4545,96.3636,18.269,2.2252 West Yorkshire ICB,B86029,Westgate Surgery,5320.30943,7.544,77.7251,71.2329,4.7511,84.4311,85.9504,3.0856,95.5556,6.2066,1.6655,0.824,1.7578,13.105,6.6296,17.8121,67.5309,82.0388,0.4032,1.0694,12.8038,0.7436,91.8516,74.7968,85.9649,91.2281,10.8255,2.3492 West Yorkshire ICB,B86030,Burton Croft Surgery,10211.17396,6.2907,79.1367,70.7865,3.8511,68.8836,77.9412,1.9553,91.3044,2.375,0.9946,1.1647,1.9441,15.9796,4.0544,10.55,68.3445,88.1844,0.3231,1.0797,7.3358,0.9206,79.3845,71.7742,74.6479,87.3239,11.0728,1.7088 West Yorkshire ICB,B86032,Chevin Medical Practice,18328.7503,7.9993,79.7619,77.551,5.1614,83.5294,85.7506,3.6564,95.0617,2.5548,1.4891,1.0916,0.9662,11.0118,6.6927,16.8778,72.4285,86.4608,0.4716,0.7896,12.3006,1.3122,91.4342,83.75,87.234,94.6809,8.6729,2.5754 West Yorkshire ICB,B86033,New Medical Centre,12583.85951,7.5845,81.4737,75,6.0908,78.2748,79.8354,4.4542,90.7217,5.6248,1.8222,1.0967,0.5676,9.5879,6.9749,23.1736,63.51,78.9801,0.8183,0.8183,10.8138,4.1503,87.8465,89.0196,85.7143,95.2381,7.6539,3.0707 West Yorkshire ICB,B86034,Spa Surgery,6811.771566,7.1406,83.6134,83.125,5.381,80.1047,79.6992,3.7504,96.5517,7.0641,2.2384,0.756,1.3829,9.6745,6.1454,18.737,68.5556,80.7692,0.5188,0.6078,9.4188,1.78,89.2523,79.2857,86.8852,95.082,6.6845,2.5645 West Yorkshire ICB,B86035,South Bank Surgery,12170.60754,7.3521,69.5971,56.4767,3.3858,67.0769,72.1854,3.0965,84.1463,3.8425,4.0073,1.2751,2.3573,46.6433,9.7561,17.9364,72.779,86.1423,0.8679,0.9108,16.2965,0.7813,89.6094,88.6957,87.5,94.8529,22.7338,2.1537 West Yorkshire ICB,B86036,Gibson Lane Practice,11809.64687,8.6815,80.0481,78.1481,4.5889,84.2262,83.0189,4.0937,94.2308,6.5897,2.626,0.9814,1.1219,12.0963,8.068,20.7516,75.7791,86.2934,0.4509,0.7073,16.3054,0.4018,90.8782,83.7662,92.3077,95.1049,9.7769,2.6348 West Yorkshire ICB,B86038,Guiseley and Yeadon Medical Practice,10812.1161,6.7501,77.8364,70.1195,4.652,78.628,80.5,3.3705,97.7778,5.0619,1.9837,0.9918,1.271,14.0793,7.0136,16.5014,64.8148,79.8578,0.5793,0.9392,14.3859,0.6889,88.5965,84.0164,83.6207,93.1034,10.6482,2.089 West Yorkshire ICB,B86039,Allerton Medical Centre,9176.5862,6.2899,67.1642,71.4286,2.288,61.8132,72.7273,2.0715,72.7273,2.8865,1.3295,0.639,0.2861,17.6187,8.0031,13.7174,65.4982,84.6154,0.639,1.4738,10.1417,0.2264,82.8294,81.7143,81.25,91.9643,14.6239,1.3501 West Yorkshire ICB,B86041,Vesper Road,7664.468176,6.8154,65.8824,53.9683,2.0934,70.4142,72.1154,2.0934,92.9578,1.9017,1.8143,0.4187,1.3154,35.0457,5.7774,10.099,71.0059,87.5,0.3679,0.9769,11.5531,0.1969,88.3551,84,84.8485,90.9091,18.596,1.3829 West Yorkshire ICB,B86042,Lingwell Croft Surgery,16909.14321,6.4909,67.9894,57.2391,2.7819,71.9237,75.6098,2.8207,84.0491,4.4696,3.2348,1.0869,1.6426,39.8774,8.7126,17.2284,64.4868,81.6384,0.5952,0.744,18.0254,0.5717,89.8287,89.1496,89.5288,94.7644,23.453,1.805 West Yorkshire ICB,B86043,East Park Medical Centre,11181.44024,6.0438,61.7925,53.9007,2.2583,59.8916,68.5039,2.2788,83.1858,4.6113,2.5342,0.7664,1.63,49.7641,7.6241,13.1106,59.1722,81.3636,0.5723,1.7474,13.8479,0.5136,85.5752,86.1702,76.1468,89.9083,25.717,1.6452 West Yorkshire ICB,B86044,Ireland Wood Surgery,25567.45676,6.6805,77.381,75.717,4.0509,77.6908,77.8291,2.871,92.381,3.5886,1.4945,1.019,1.1855,15.1813,6.1315,13.6651,65.6932,78.0612,0.547,0.7866,10.7566,1.9081,89.3233,83.7004,84.7458,91.1017,10.3994,2.1059 West Yorkshire ICB,B86048,Garforth Medical Centre,14756.55953,7.4714,80.3719,72.1212,4.7176,79.0646,78.5714,3.5017,97.4576,4.3043,2.0427,1.2228,1.4348,11.2762,7.238,17.8976,65.0577,80.1493,0.4586,0.7434,12.0638,0.9328,88.8331,87.3418,83.0189,89.9371,8.6055,2.5846 West Yorkshire ICB,B86049,Woodhouse Medical Practice,8958.138607,4.9876,70.0535,58.9928,2.3093,59.194,74.7899,1.598,71.2766,2.9383,1.0816,0.2923,1.4015,27.8193,6.4227,9.6658,77.8824,90.1409,0.5846,0.9841,13.4251,1.3426,85.5003,86.8421,90.7216,96.9072,20.1083,1.3739 West Yorkshire ICB,B86050,West Lodge Surgery,19630.84083,6.8874,74.1379,70.892,3.5418,78.5156,76.6667,2.7887,91.8552,4.2459,2.1668,0.6656,0.1554,21.2667,7.1157,18.9574,64.5586,75.2825,0.651,1.1806,12.6632,1.5746,86.9087,88.2212,84.434,90.566,12.8783,2.2689 West Yorkshire ICB,B86051,Aire Valley Surgery,13765.59916,6.8231,79.7131,75.5682,4.3469,79.0356,77.1523,3.399,92.3077,5.41,1.6927,0.6568,1.2769,16.9403,7.0642,16.9341,73.9841,86.9565,0.2912,0.6365,12.6596,1.0901,89.3702,82.8746,86.1842,94.7368,9.5347,2.1532 West Yorkshire ICB,B86052,Park Road & Menston,10596.72006,7.3558,82.1853,74.359,5.1851,82.8488,82.5112,3.1921,96.5909,4.3374,1.458,1.0525,0.8024,8.2893,6.3821,16.8924,75.7254,86.789,0.4227,0.7851,11.5593,0.4883,90.2523,83.7564,95.283,99.0566,6.3693,2.5019 West Yorkshire ICB,B86054,The Garden Surgery,7874.728552,8.0934,65.9686,56.7164,3.3444,69.3396,72.0721,3.6614,82.0896,3.7272,5.0721,1.3473,3.2357,50.9936,9.3863,17.6256,56.7823,75.7764,0.5548,0.9193,17.264,0.2714,91.4113,91.9463,87.0968,95.6989,22.5024,2.5519 West Yorkshire ICB,B86055,Ashfield Medical Centre,7901.660677,6.8516,70.2326,63.5714,4.3788,69.6262,77.3585,3.6361,81.8182,5.0404,3.2183,1.145,0.6156,35.3675,9.6067,14.8074,70.8277,83.1818,0.5106,0.9438,18.6418,0.2307,83.7455,83.1633,87.0968,92.4731,18.0011,2.7232 West Yorkshire ICB,B86057,Windsor House Group Practice,18346.72206,6.1978,75.475,77.1084,3.8392,79.6703,80.826,3.0027,87.1429,2.8482,2.1508,0.6961,0.5904,20.0345,7.5237,13.5332,70.6188,83.6066,0.4208,0.7065,16.8819,0.4493,91.2581,86.6097,88.8372,95.3488,12.8844,1.9741 West Yorkshire ICB,B86059,Meanwood Health Centre,15509.99346,6.3714,71.4286,65.0794,3.4761,76.8388,78.3088,2.3992,88.8889,3.5307,2.1914,0.5668,2.8545,24.2296,6.7841,12.9597,70.7918,80.17,0.6927,1.1398,12.3064,0.6185,86.4058,87.2659,81.1321,93.0818,15.2194,1.7506 West Yorkshire ICB,B86060,Thornton Medical Centre,12246.17746,7.3219,71.6912,58.1633,2.6199,65.5814,68.125,2.7032,80.5085,3.711,2.4347,0.3888,1.175,43.7409,7.2577,14.0807,63.1907,81.7797,0.5647,0.9535,12.5175,0.936,87.9674,89.3204,80.3279,86.0656,22.4903,1.5738 West Yorkshire ICB,B86061,Harehills Corner Surgery,4694.715827,4.6911,52.381,46.9388,0.6732,44.9735,71.1111,1.231,55.4054,1.4952,0.5963,0.2116,0.7734,50.2581,9.6334,7.5784,72.9651,82,0.6732,1.2502,9.3839,0.1182,84.6948,92.8571,84.9315,90.411,15.5698,0.6155 West Yorkshire ICB,B86062,The Medical Centre,10719.42908,8.089,66.6667,58.6207,4.4813,72.2222,71.5152,4.102,86.3636,4.4954,3.6752,0.6046,2.1889,42.6562,9.7124,18.3758,65.8462,82.4,0.6758,1.0196,19.5534,0.1649,89.9564,87.9668,86.8217,95.3488,21.1282,2.2762 West Yorkshire ICB,B86064,Leigh View Medical Practice,15836.68878,7.2981,75.2311,78.6241,3.8628,78.5714,79.4721,3.2611,92.9078,3.3273,2.0277,0.5536,0.5293,18.0146,7.2488,15.361,56.8303,76.0081,0.8363,0.4753,12.2505,0.3413,87.4789,83.4437,86.5169,87.6404,12.6652,1.8953 West Yorkshire ICB,B86066,The Street Lane Practice,12373.61435,6.3751,81.1456,75.3521,3.9163,74.0741,77.686,2.6368,93.1973,4.4014,1.1452,0.7988,0.96,11.4399,6.1334,12.9789,64.836,80.6452,0.6009,1.0321,7.1636,0.7731,85.4449,85.5372,82.4,90.4,7.5194,1.7602 West Yorkshire ICB,B86067,The Dekeyser Group Practice,17084.21966,7.4492,70.9677,73.1903,3.9704,73.9726,78.0255,3.4232,92.3664,5.4335,3.0215,0.6113,1.7748,22.9908,8.4043,17.0985,73.2502,84.7007,0.7627,0.8907,15.0495,1.3697,90.5752,88.0952,83.7209,90.6977,16.6573,1.9503 West Yorkshire ICB,B86068,Abbey Grange Medical Practice,8320.91554,7.2284,73.1915,65.5844,3.2495,68.0451,75,3.1593,92.8571,4.0723,2.2824,0.9542,1.6195,28.1754,7.1451,14.0812,74.0396,87.5537,0.7479,1.2637,14.1824,0.0348,84.343,87.4074,91.4634,95.122,15.1483,2.0503 West Yorkshire ICB,B86069,Burley Park Medical Centre,12140.8827,4.5893,69.0608,63.3333,1.5152,60.7266,72.8972,1.2466,90.1235,2.0122,1.0262,0.4683,2.3668,27.9607,4.1616,6.9973,73.2614,87.9121,0.2961,0.978,7.6787,0.2441,76.5789,84.9162,90.7216,93.8144,21.817,0.7851 West Yorkshire ICB,B86070,Aireborough Family Practice,5158.953222,7.6469,70.4819,63.2075,4.0546,74.8299,76.25,4.2715,96,6.0788,2.9272,2.0165,0.6783,17.443,9.2105,21.4007,69.891,86.166,0.9757,1.0841,14.6882,0.8201,91.5283,84.9624,56.25,93.75,13.6065,2.7103 West Yorkshire ICB,B86071,Whitehall Surgery,8739.978851,7.7494,71.9149,62.8415,2.7804,73.2673,74.5342,2.3054,86.8132,5.2498,2.1779,0.6835,1.1517,31.9778,7.433,13.9018,74.0355,87.1369,0.614,0.9036,10.3949,0.1711,88.944,84.2424,86.3158,92.6316,17.6363,1.7841 West Yorkshire ICB,B86075,Dr T P Fox & Partners,14300.8754,6.8301,75.5396,66.9903,3.6027,70.9302,73.93,3.3185,89.6552,4.7674,2.389,1.3597,1.6469,28.5181,8.0917,16.024,71.0477,88.7949,0.6222,1.014,15.1787,0.3279,89.8082,88.3495,93.038,94.3038,14.9651,2.389 West Yorkshire ICB,B86081,Bellbrooke Surgery,15487.63419,4.6314,60.6838,43.9791,1.5934,52.6523,65.1685,1.6721,54.4248,2.9236,2.0131,0.7148,2.1062,58.8986,7.7464,9.6787,69.6829,74.3169,0.3147,0.8262,16.9648,0.6129,76.7266,86.9748,81.875,92.5,24.873,1.3049 West Yorkshire ICB,B86086,Laurel Bank Surgery,5608.782738,6.2423,70.4,63.5294,2.2439,74,74.2424,1.4652,92.3077,0.9529,1.2408,0.1584,1.5247,22.7587,3.31,6.8902,68.5268,90.5405,0.6468,0.9372,4.9113,0.9366,90.1484,81.5385,82.5,85,11.4085,0.9636 West Yorkshire ICB,B86089,Nova Scotia Medical Cntr,5999.046566,6.963,75.8065,66.1538,3.66,73.1579,70.2703,3.4576,95.1613,6.0536,2.3275,0.9445,0.7804,19.1727,8.1098,17.153,68.1931,87.0813,0.3036,0.7084,14.9336,0.4622,88.0073,93.8462,83.7838,91.8919,15.6575,2.0577 West Yorkshire ICB,B86092,Kippax Hall Surgery,6876.776262,7.7658,76.9231,70.7602,4.1817,77.8846,78.9855,3.4173,92.9825,6.5971,3.1775,0.5096,1.435,17.2455,8.7307,22.3172,69.6585,91.3044,0.4347,0.7344,19.0831,0.7003,90.6827,84.3575,83.908,90.8046,16.0966,2.1283 West Yorkshire ICB,B86093,Park Edge Practice,6752.754454,6.4006,73.4463,64.2276,3.2474,64.1148,67.6768,2.9725,84.4828,2.8989,2.3368,0.8763,1.9326,40.1422,8.6736,14.3299,66.1069,81.0056,0.8076,1.4089,14.1573,1.0747,88.5273,82.2581,80.2632,90.7895,18.692,2.646 West Yorkshire ICB,B86094,Dr S M Chen & Partner,5049.812582,5.5361,75.1825,60.2041,2.8893,75.7396,75.3086,2.9098,95.1613,5.643,2.418,0.9016,1.2598,29.1525,8.6417,15.6762,77.9553,88.4892,0.5943,1.168,16.5092,0,93.7245,85.9813,93.5484,95.1613,18.0381,1.7008 West Yorkshire ICB,B86096,Arthington Medical Centre,7441.380793,6.1518,68.0272,51.4851,2.8592,72.2222,72.619,2.8056,67.8571,2.1498,3.5561,0.822,2.196,51.1331,9.6193,18.6741,70.4444,84.8276,0.7684,2.0729,18.6315,0.3337,91.8453,93.75,80.4878,90.2439,27.6477,2.1265 West Yorkshire ICB,B86100,St Martins Practice,8355.452817,7.1764,64.6226,65.0888,2.9835,73.2087,70.5882,1.9977,84.2105,2.1061,1.3231,1.2583,0.8112,31.3175,7.5818,12.7513,67.3367,86.0963,0.6227,1.9977,10.7332,0.5525,81.6374,76.5625,81.8182,90.9091,16.2204,1.6863 West Yorkshire ICB,B86101,Gildersome Health Centre,3570.069235,7.6828,76.0331,71.4286,3.8037,80.1802,75.9259,4.1231,94.4444,2.3894,2.2358,0.9582,1.6049,20.8045,7.5538,17.9443,71.8062,71.3415,0.3194,1.0453,10.5564,0.0668,89.2019,84.127,87.5,95,15.1087,2.6132 West Yorkshire ICB,B86103,Conway Medical Centre,3756.504679,5.3109,46.3415,43.2432,1.1855,49.0323,71.0526,1.7434,52.2388,1.2166,0.9531,0.1162,0.5745,53.8353,10.5142,8.159,68.4375,83.871,0.3719,1.325,14.363,0.1515,88.9011,95.3846,90.625,93.75,17.701,0.6276 West Yorkshire ICB,B86104,Bramley Village Health & Wellbeing Ctr,17131.93641,6.9396,60.339,47.9263,1.4699,59.1413,58.1633,1.8994,71.875,2.6503,2.1776,0.2601,1.1889,45.2968,6.8957,10.1803,66.9118,82.8877,0.8529,1.1856,9.6764,0.2149,83.7924,87.1245,56.4417,82.8221,24.2247,1.119 West Yorkshire ICB,B86106,Foundry Lane Surgery,7812.830501,6.4125,68.3544,53.9063,2.1498,70.8487,75.7009,2.0281,76.699,3.6322,3.0016,0.3245,0.9459,54.929,8.5075,12.3986,65.7177,89.1892,0.622,0.9735,14.4722,0.1587,84.9114,90.2098,82.7586,79.3103,26.0846,1.6766 West Yorkshire ICB,B86108,Chapeltown Family Surgery,6581.803362,5.2986,60.7843,62.3529,1.4188,57.7869,74.1176,1.3209,69.3333,1.7264,0.8643,0.4077,0.3497,50.186,8.9661,9.0835,59.6234,82.2785,0.5545,1.5003,11.1888,0.1498,86.1835,91.954,75.9494,86.0759,20.2876,0.9785 West Yorkshire ICB,B86109,Kirkstall Lane Medical Centre,6563.590956,5.8735,67.4797,57.8313,1.805,62.7389,66.2162,1.6074,87.2727,1.7986,1.4229,0.7115,0.9377,23.4654,4.114,8.3268,71.82,85.9504,0.2635,1.0277,5.0884,0.202,88.3933,85.7143,81.6327,89.7959,18.7019,1.0935 West Yorkshire ICB,B86110,Leeds Student Medical Practice,25014.23872,1.7019,,,0.1555,14.9137,66.6667,0.007,85.7143,0.0235,0,0,2.0824,22.5075,0.3326,0.2066,56.1798,,0.0023,0.188,1.2218,0,80.4124,100,71.4286,85.7143,10.4173,0.007 West Yorkshire ICB,B86623,Ashton View Medical Ctr,4017.495303,2.1317,47.5,33.3333,0.4307,45.283,58.9744,0.9925,45.098,1.1814,0.3558,0.1311,1.1814,58.2495,6.4782,4.7378,64.7059,80,0.2435,0.7116,10.3798,0,75.3425,90.3846,76.087,86.9565,23.2752,0.4307 West Yorkshire ICB,B86642,Dr S Hussain,3482.881672,6.9275,66.1538,59.5745,1.494,70.7692,79.4872,2.2244,70.5882,1.7083,1.8924,0.3652,2.0417,47.7771,7.5845,13.1142,72.3944,90,0.6972,1.3944,16.0417,0.1321,94.065,90.6977,91.4286,97.1429,21.5366,1.2616 West Yorkshire ICB,B86643,The Roundhay Road Surgery,3520.04776,6.8732,50,57.1429,1.3754,59.8361,77.7778,2.3733,83.0189,1.7776,1.6451,0.3776,1.3238,50.4388,15.1326,9.7357,68.6709,71.1111,0.5663,1.3754,19.7428,0.4329,96.1451,91,83.3333,79.7619,15.4721,1.0248 West Yorkshire ICB,B86648,Family Doctors,2719.054738,6.6843,83.7838,80.2817,4.834,77.5862,84.9057,3.7831,94.4444,2.9341,2.2699,0.7146,0.3367,15.9963,7.4798,19.7982,85.7567,94.7761,0.2522,0.9248,17.6527,0.1528,90.6206,95.7447,90,96.6667,9.8154,2.5221 West Yorkshire ICB,B86655,Beech Tree Medical Centre,2193.999357,6.4165,67.2414,57.1429,2.5376,70.7692,75,3.0036,100,1.8832,1.6054,0.2072,1.381,39.5976,7.8784,16.261,72.3881,82.6087,0.6214,1.1911,10.6717,0.2853,88.9447,87.8788,84,88,21.9711,1.8643 West Yorkshire ICB,B86658,Moorfield House Surgery,10890.19503,7.1429,77.4194,70.0422,4.3437,78.4916,81.0526,3.3544,90.8046,6.1524,2.1577,1.0365,1.2211,13.6625,7.0511,18.5433,70.3374,84.131,0.3863,0.7161,16.743,0.8455,87.3813,86.383,84.3478,93.0435,13.5822,2.3462 West Yorkshire ICB,B86666,Newton Surgery,5079.61842,7.2314,54.6296,53.6232,1.7115,64.8936,77.0492,2.5014,80.8824,3.6919,0.8463,0.3573,0.4923,40.7411,15.0509,12.9208,81.97,94.3182,0.8087,0.9404,11.3463,0.0759,90.36,96.9512,89.6,95.2,15.5452,1.1285 West Yorkshire ICB,B86667,Beeston Village Surgery,7595.042111,6.2215,68.0272,53.6364,2.047,59.2145,61.0526,1.5668,74.7748,2.1713,1.5037,0.3538,0.1206,40.0482,6.2967,10.0708,52.1355,81.3559,0.4549,0.4296,12.3385,0.3222,85.2852,88.764,81.6901,88.7324,18.9134,1.0361 West Yorkshire ICB,B86669,York Street Health Practice,2753.591127,5.4499,25,33.3333,0.5804,46,50,0.8292,57.1429,0.2638,2.3217,0.0829,2.1548,41.3123,1.9031,3.068,54.0541,,0.6634,3.8143,6.5084,0.3049,92.0273,80,75,87.5,41.4016,0.539 West Yorkshire ICB,B86672,Hawthorn Surgery,6868.444387,6.376,76.1006,61.5385,3.2992,74.4094,76.9231,2.5661,85.5263,5.0573,2.5508,0.7943,0.7705,32.0099,6.6212,13.7162,73.0769,84.1177,0.4888,1.4052,15.5867,0.1953,90.6534,87.6106,85.0746,94.0299,20.0395,1.8482 West Yorkshire ICB,B86673,Bramham Medical Centre,5460.079025,7.9779,80.7407,85.2273,5.9194,78.5714,82.3529,4.7859,100,6.7604,2.6763,0.5668,0.2279,11.2432,8.6614,21.4736,64.6729,80.9524,0.3778,0.7557,15.9134,0.6204,87.3051,83.8384,85.8824,95.2941,11.9616,2.7393 West Yorkshire ICB,B86675,Lincoln Green Medical Centre,5820.804906,4.6687,51.7241,47.3684,1.1086,50,57.6271,1.5896,77.1429,2.3822,2.5936,0.251,0.0794,54.7191,6.8164,9.9352,53.3175,75.4717,0.3137,0.9412,5.2938,0.2586,90.0872,83.871,75.5102,85.7143,18.7115,1.0458 West Yorkshire ICB,B86678,Dr F Gupta's Practice,2900.19377,7.009,78.1818,78.6667,5.0089,80.2469,82.2581,2.8623,88.8889,3.7637,2.8265,1.3596,0.7877,17.5921,7.5464,23.1485,73.9962,87.9032,0.4651,0.7156,16.0175,0.312,93.113,81.4815,78.7879,84.8485,11.5253,2.576 West Yorkshire ICB,Y02002,One Medicare Llp-The Light,14441.29845,2.6006,49.4118,41.791,0.4678,43.691,52.8571,0.2981,82.1429,0.1726,0.1285,0,0.5067,24.6483,1.5219,2.1537,54.6135,72.2222,0.0308,0.478,3.998,0,75.6067,87.0968,75,82.5,14.8373,0.1542 West Yorkshire ICB,Y02494,Shakespeare Medical Practice,7538.893251,2.9842,56.1404,47.7273,0.7378,44.1096,60.4167,0.5665,71.7557,0.9064,0.5402,0.0527,1.2027,49.2668,4.3943,5.0725,50.5348,72.7273,0.1845,0.7246,7.3906,0.1159,76.365,87.1795,66.6667,77.0833,18.4968,0.4348 West Yorkshire ICB,B82007,Townhead Surgery,10986.10407,9.6228,80.2419,71.5655,5.6617,77.3869,80.4348,4.2177,100,7.773,2.4413,1.3401,0.781,13.1997,7.6387,23.0625,68.8029,82.5088,0.5818,0.8519,16.1928,0.4636,89.3475,74.9035,89.2857,95.5357,7.5954,2.9192 West Yorkshire ICB,B82053,Dyneley House Surgery,15055.57859,7.8893,78.3607,70.7071,4.4935,74.0991,77.9661,3.5325,92.1986,6.3185,1.5429,1.2113,1.2179,14.4017,7.7253,17.9536,65.6403,78.5832,0.7173,1.0422,13.1355,1.3054,90.7717,84.1177,74.5763,88.7006,12.8515,2.4159 West Yorkshire ICB,B83002,Ilkley & Wharfedale Medical Practice,4983.177104,6.4308,82.6733,77.3723,5.5266,76.3514,81.982,3.6658,97.7273,3.1137,1.1165,0.8002,1.1959,8.1455,4.6708,15.4633,64.0145,79.8561,0.335,0.7629,8.8222,1.0618,84.8413,86.3014,80.5556,91.6667,6.7997,2.233 West Yorkshire ICB,B83005,Thornbury Medical Practice,7392.70916,8.746,66.1654,48.4536,1.7336,58.2031,73.8636,2.4665,65.6863,3.6095,1.79,0.3524,1.8343,49.8568,12.7963,11.4024,86.1496,94.2529,0.6906,1.043,18.8363,0.7995,92.7551,90.0524,89.8438,94.5313,18.8893,1.3813 West Yorkshire ICB,B83008,Ling House Medical Centre,20541.01276,8.1207,61.4486,51.3889,2.118,49.0884,63.786,3.2469,84.5361,4.6842,1.8383,0.3846,1.1267,40.2526,12.5801,10.6099,64.7256,78.6982,1.5136,1.4137,14.8856,2.8827,85.8319,86.4407,75.1351,91.8919,19.1163,1.5985 West Yorkshire ICB,B83009,Sunnybank & Cowgill Medical Practice,16435.9114,7.1059,70.8984,66.3818,3.5247,78,79.6296,3.1766,89.7436,6.5037,3.0564,0.8416,1.356,32.8811,9.6702,17.2942,76.6742,86.2205,0.7404,0.9365,16.6694,1.9841,87.7763,85.8881,68.2819,87.6652,19.2905,2.0882 West Yorkshire ICB,B83010,Parklands Medical Practice,11809.50069,7.3607,64.0845,55.9585,2.6472,49.8567,56.4935,3.2588,84.2593,2.5279,2.3965,0.9526,0.6223,43.0553,10.6426,16.304,57.701,74.5763,0.8824,1.3837,13.3524,1.5616,78.5107,85.1695,68.9873,87.3418,23.4235,1.7949 West Yorkshire ICB,B83012,Manor Medical Practice,11731.63169,6.8904,60.0858,49.1018,2.0267,59.8465,72.028,2.8901,58.4746,6.405,1.9722,1.1906,1.0467,40.845,11.6715,12.433,77.9244,86.5801,0.9179,1.3542,17.2586,0.3262,89.9458,84.5679,74.0331,91.1602,19.1006,1.545 West Yorkshire ICB,B83014,Bingley Medical Practice,13556.92559,7.3652,78.5156,72,4.4486,77.193,79.3651,3.3679,97.1154,6.4653,1.7987,1.3324,1.0399,15.1155,7.2594,18.4678,69.2913,83.8983,0.4663,0.9919,11.2849,2.161,89.5461,82.4675,81.3333,96,11.4718,2.3464 West Yorkshire ICB,B83015,Tong Medical Practice,10930.77701,7.1797,66.0714,52.9412,3.0292,69.0236,72.3881,2.9943,58.2524,4.9222,3.2157,0.734,2.3023,49.8824,9.0303,14.4472,69.9907,85.0299,1.0719,1.002,14.8301,2.113,87.8709,89.1892,86.4865,90.0901,26.1716,1.7709 West Yorkshire ICB,B83016,Farrow Medical Centre,9052.675705,8.8676,59.0909,56.5574,1.6916,55.0152,70.7965,2.5315,77.8689,4.1852,2.1232,0.4316,1.5324,48.0844,13.0715,10.8259,64.75,84.375,0.9216,1.2949,19.9539,0.2504,90.3134,88.1579,83.9506,90.7407,19.5313,1.4349 West Yorkshire ICB,B83018,Idle Medical Centre,12329.54789,6.9581,72.5926,77.0609,3.9181,76.247,76.652,3.0306,87.1212,3.2678,2.3509,0.8556,1.2827,25.8914,8.5288,15.8964,74.9228,82.6558,0.5517,0.6717,15.4535,1.3092,86.9253,79.0598,78.2051,92.9487,15.7708,1.8471 West Yorkshire ICB,B83019,Grange Park Surgery,5995.852697,6.6636,81.3688,76.2431,4.9374,87.3016,86.6667,3.5555,93.4783,2.2359,0.9932,0.9213,0.8475,6.6938,5.6611,16.2228,67.5613,81.4815,0.3599,0.7341,8.0418,0.2174,88.2113,79.0124,92.8571,94.6429,5.9303,2.0297 West Yorkshire ICB,B83020,The Willows Medical Practice,17414.62252,8.1367,75.0403,67.0404,3.5566,82.6377,81.7664,3.1318,95.0226,5.4404,2.3965,0.5773,1.8938,21.6659,8.5449,19.4553,78.836,86.4964,0.7898,0.8715,17.3748,2.3702,88.8558,86.8235,62.5,88.3929,16.8394,1.8246 West Yorkshire ICB,B83022,Baildon Medical Practice,9666.394635,8.4692,77.129,82.0313,5.8256,82.5203,82.1429,3.8312,97.0149,6.2806,1.8369,1.2911,0.3636,12.4164,6.6021,21.7277,63.5749,79.8643,0.2624,0.6718,10.7685,0.4897,86.7918,67.3575,88.8889,92.9293,8.0665,2.6031 West Yorkshire ICB,B83025,Little Horton Lane Medical Centre - Raja,4473.384872,6.2606,68.5393,57.1429,1.5485,70.4698,81.4815,2.7828,89.3617,3.5261,1.0996,0.2469,1.0826,47.6201,13.2567,11.1535,74.3707,90,0.9874,1.1894,20.6619,0.2778,88.8076,92.7536,89.7727,95.4545,18.8113,0.8752 West Yorkshire ICB,B83026,Primrose Surgery,5400.61891,5.677,48.5294,36.5385,1.1179,51.3761,69.8113,2.0786,88.0597,2.256,0.7336,0.1921,1.166,52.862,14.3738,8.524,65.8427,67.4419,1.1354,0.9432,17.3638,0.2141,90.2285,96.063,91.3043,93.0435,17.2888,0.7162 West Yorkshire ICB,B83028,Wibsey & Queensbury Med P,11419.06643,8.2033,72.9508,66.6667,4.1468,68.1416,76.6497,3.2406,85.7143,1.606,2.3252,0.714,0.4073,30.1872,8.5423,13.2827,68.7063,80.7818,0.7323,0.714,12.5916,0.8059,83.6162,87.3171,80.1418,89.3617,16.0071,1.8583 West Yorkshire ICB,B83029,Low Moor Surgery,11079.18234,7.7936,70.0565,64.7303,3.9227,75.1515,78.0899,3.3018,90.7407,4.5187,3.2131,0.6998,0.388,30.195,9.8877,18.0662,65.3485,80.3519,0.8772,0.6604,13.0179,0.3631,90.3032,79.4466,85.1351,93.2432,15.177,2.1881 West Yorkshire ICB,B83031,Oak Glen Surgery,3737.338296,7.6081,74.5455,67.5676,3.6737,82.7586,84.4156,2.7109,93.9394,4.641,1.8495,0.456,0.2822,13.329,7.0632,18.5964,67.04,80.7339,0.228,0.7347,13.2016,0.3977,90.4667,81.8182,79.4872,92.3077,10.0279,2.0775 West Yorkshire ICB,B83032,Bradford Moor Practice,4042.512127,5.9157,55.6962,44.898,1.4095,58.209,70.7317,2.4233,86.9565,3.1423,1.3848,0.3709,0.2417,49.6883,13.7896,9.4461,82.0359,89.5833,0.7171,0.9397,18.3702,0.2162,87.175,94.2308,80,92.9412,18.6626,0.8902 West Yorkshire ICB,B83033,Modality Partnership (AWC),100900.8296,8.4143,73.0818,68.6816,4.3254,66.7048,69.994,4.1226,82.598,6.3042,2.3667,1.0589,1.205,34.8826,8.2263,16.0643,63.9031,78.1861,0.7916,1.2294,15.3061,0.8443,82.706,78.3524,77.8107,85.4043,15.9145,2.324 West Yorkshire ICB,B83034,Grange Medical Centre,6794.645468,9.0293,50,43.0233,1.2045,57.3705,71.7647,3.2025,85.3933,3.5834,0.7652,0.3543,0.3938,44.729,15.5799,12.1865,58.3777,70.3704,0.7085,1.0203,17.1491,0.0659,87.8695,93.5743,84.8684,90.7895,14.1662,1.247 West Yorkshire ICB,B83035,Horton Park Medical Practice,11450.85875,7.8017,56.6502,44.5946,1.4739,53.9043,64.4444,2.311,84.6667,4.0286,1.8561,0.5914,2.5497,49.4933,12.023,11.4275,63.1436,81.2081,0.8098,1.1919,20.6272,0.4075,88.449,86.3799,73.5135,93.5135,22.5577,1.3102 West Yorkshire ICB,B83037,The Wilsden Medical Practice,10285.22758,8.0985,76.9412,73.0216,5.3091,78.2007,80.5825,3.9794,96.9072,4.1217,2.2626,0.7641,0.659,13.1487,7.7861,20.3334,68.7616,78.6385,0.3672,0.7542,14.2104,0.243,84.247,79.476,67.2131,90.1639,11.0741,2.5305 West Yorkshire ICB,B83038,Leylands Lane Medical Practice,18297.72993,7.9283,60.7317,51.6892,2.2296,47.8894,64.7287,2.884,56.9106,1.9266,1.293,0.5108,0.7663,33.4675,11.3667,12.3929,61.248,77.2512,1.0855,1.1813,17.2006,0.8466,79.8762,87.0098,73.9414,92.1824,15.4093,1.4527 West Yorkshire ICB,B83039,The Saltaire & Windhill Medical Partnership,25415.22598,8.241,72.7273,75.7194,4.319,76.2438,78.5714,3.0921,92.6724,5.0348,2.3377,0.8787,1.3755,26.9214,8.2928,18.1257,68.6503,80.7201,0.601,1.2269,15.4469,3.0039,90.0663,81.2992,80.9365,93.9799,15.0567,2.2134 West Yorkshire ICB,B83041,Bowling Hall Med Practice,17950.63991,6.7043,61.5385,57.6642,2.7721,64.7727,68.5345,2.8803,62.3288,2.6601,3.5903,0.5341,0.266,47.5299,9.8708,13.9419,70.2987,79.9213,1.0277,1.6295,17.694,0.9749,86.7621,86.0947,86.3415,93.6585,24.8061,1.5957 West Yorkshire ICB,B83042,Rooley Lane Medical Centre,9882.141632,6.6904,63.3484,58.8957,3.1802,66.8874,73.3333,3.11,78.7037,4.2412,3.9518,0.5846,2.7536,43.9386,9.4246,14.1939,74.1396,87.3096,0.6898,0.9237,14.1795,0.8792,87.7277,91.7098,81.8966,93.1034,23.839,1.555 West Yorkshire ICB,B83045,Hollyns Health & Wellbeing - Clayton,14291.77608,7.1789,69.2683,60.0683,3.4469,66.6667,75.5365,3.3922,85.7143,5.697,2.423,0.8207,1.1676,36.3518,10.4066,16.75,72.1359,84.2365,0.9692,1.1881,15.9638,0.2468,84.8007,82.6816,63,87,20.2517,2.1026 West Yorkshire ICB,B83051,Bradford Student Health Service,7227.927248,1.5104,55.5556,41.1765,0.2076,44.4915,68.1818,0.1817,83.3333,0.14,0.0519,0.0087,0.4801,37.9022,1.5114,2.5606,52.381,100,0.1038,0.2595,6.7107,0,70.1351,91.6667,86.6667,86.6667,11.0822,0.0952 West Yorkshire ICB,B83052,Kensington Partnership,24774.62603,7.2033,56.5012,40.7407,1.6185,55.4433,65.4485,2.6017,78.5924,2.2719,1.7034,0.611,1.4859,45.8065,12.7931,11.8916,75.2237,84.5109,0.967,1.141,18.0264,0.4071,88.79,89.9666,87.3589,93.9052,21.3118,1.3797 West Yorkshire ICB,B83054,Haigh Hall Medical Practice,6548.997438,6.4913,71.6495,67.3913,3.5419,78.3898,80.1802,3.1131,93.421,5.5456,2.8272,0.7465,1.1411,33.7212,8.4042,18.1226,76.4767,86.3636,0.9848,0.9053,16.8569,3.735,88.7476,88.0503,70.5128,92.3077,17.7657,2.0966 West Yorkshire ICB,B83055,The Ridge Medical Pract.,33691.82239,6.8832,64.3871,61.5114,2.5748,55.1878,64.8262,3.0613,87.2123,4.2874,2.2991,0.5918,2.1479,44.879,10.2295,13.4164,52.3797,75.804,1.038,1.0752,13.0063,2.9342,82.8672,83.2031,58.7097,81.9355,30.6188,1.5926 West Yorkshire ICB,B83056,Moorside Surgery,9203.69028,9.4469,73.7052,74.7126,3.3785,76.5568,85.4962,3.3664,92.4528,5.9965,2.6641,0.7145,2.9667,33.1299,10.0109,16.4689,76.9017,84.3972,0.6781,1.1383,19.3151,1.8692,96.9518,83.7963,88.5246,90.9836,18.6208,1.9981 West Yorkshire ICB,B83058,The Avicenna Medical Practice,7958.587042,6.5382,52.2222,45.9459,0.7068,53.2308,72.9412,2.2686,84.507,2.6386,0.912,0.2964,1.1523,50.4938,11.9837,8.3561,65.0075,85.7143,0.9918,1.026,17.819,0.1514,87.6907,91.2195,81.3333,96,18.8282,0.8208 West Yorkshire ICB,B83062,Ashcroft Surgery,9700.452698,8.235,67.5,60.355,2.7357,64.9518,73.8462,2.7015,64,3.5314,3.1574,0.9119,1.0287,39.845,8.9703,15.7415,69.0773,78.0899,0.6839,0.9575,17.8566,2.5804,87.9073,87.4346,76.7241,89.6552,21.7037,1.9492 West Yorkshire ICB,B83063,Shipley Medical Practice-Affinity Care,22271.20662,7.9393,65.4514,64.0506,3.1213,71.5862,76.6154,2.8649,88.7097,5.4986,2.2732,1.0256,1.6765,31.9769,9.4878,18.4813,74.3598,81.5385,0.641,1.6617,16.2955,3.0006,87.5674,85.1711,63.986,91.958,20.5755,1.9773 West Yorkshire ICB,B83064,The Rockwell and Wrose Practice,11466.25041,7.4746,71.0366,72.8448,3.3789,73.0964,79.8883,2.7261,84.7953,3.2674,2.5585,0.7058,1.1602,32.6922,9.9849,15.2095,72.9297,85.3659,0.697,0.7146,18.8351,0.3172,89.9535,81.6327,80,91.6129,19.4754,1.9674 West Yorkshire ICB,B83067,The Springfield Surgery (Bingley),7660.11975,8.533,76.7213,67.6471,4.3922,78.5408,82.2785,3.3329,89.3617,4.5612,2.2219,0.7493,0.3932,15.9043,7.4321,17.2329,79.0875,84.0426,0.2455,1.266,11.4187,0.7293,89.3924,84.8101,85.2273,93.1818,11.422,2.2994 West Yorkshire ICB,B83604,The Lister Surgery,4160.310965,8.5095,50,39.1304,1.1899,61.2121,81.8182,2.6598,80.8219,2.0007,1.1433,0.2567,1.5087,48.3632,15.2885,11.5259,73.3184,81.25,1.0499,0.7466,18.9242,0.2356,93.5667,90.6542,84.7826,89.1304,17.5237,1.0966 West Yorkshire ICB,B83611,New Otley Road Medical Practice,10507.22539,7.0074,50.9677,40.5405,1.1775,58.1776,74.7573,2.0785,68.0851,3.1814,1.1954,0.2944,0.8206,47.0888,11.6107,9.1793,68,80.6202,0.9634,1.1329,12.7888,0.5848,82.2724,92.674,77.0492,90.1639,20.7308,1.2757 West Yorkshire ICB,B83614,Picton Medical Centre,9939.909477,10.1361,55.1181,36.8421,1.3318,58.9744,77.6596,2.5407,83.3333,3.8722,0.963,0.3893,3.2097,49.6136,14.3266,10.501,70.1774,83.7398,1.2294,1.3011,31.1396,0.8116,91.7023,93.0921,86.5672,97.5124,17.6413,1.0347 West Yorkshire ICB,B83620,Addingham Surgery,3984.7645,7.5152,83.4197,77.0642,6.7291,85.7143,81.6901,5.0322,100,11.1224,1.8724,0.8777,1.0818,8.6017,7.953,25.0731,79.8319,87.0229,0.2048,0.9655,12.0352,1.1009,94.148,76.2376,92.5,97.5,6.7241,3.306 West Yorkshire ICB,B83622,Dr Ia Gilkar & Partners,3984.433248,8.0061,54.1667,35.7143,1.2054,64.8276,79.2453,2.4817,89.2857,1.8036,2.1272,0.2364,1.5698,46.766,11.9171,10.5176,78.4654,87.8049,0.8745,1.0163,21.2091,0.1134,91.9469,93.1373,93.1507,95.8904,19.4341,1.3236 West Yorkshire ICB,B83624,I G Medical,17637.26772,6.8516,80.2797,74.8996,6.0154,78.7724,83.2547,4.0893,92.5532,4.9624,1.579,1.8509,1.2561,8.6281,6.0934,19.1162,70.6936,83.0674,0.4107,0.8387,10.9877,0.7763,85.1423,66.4773,80.3681,91.411,7.1676,3.1176 West Yorkshire ICB,B83626,Valley View Surgery,6005.840226,6.514,59.3407,51.4286,1.3239,58.1967,74.6479,2.3399,61.9835,2.5922,1.0468,0.2617,0.4022,48.2046,13.2724,8.0049,66.1605,88.1356,0.7851,1.1546,13.6983,0.1626,90.6289,90.1316,89.8305,91.5254,16.3931,1.093 West Yorkshire ICB,B83627,Frizinghall Medical Centre,3702.4568,6.1886,55.1282,53.7037,1.904,61.4754,72.3404,2.923,100,2.1124,1.5822,0.1609,1.4322,38.1958,9.9266,10.5658,76.5396,77.3585,1.7967,2.0113,18.4032,0.1025,88.1982,86.6667,73.2143,89.2857,19.7279,1.2068 West Yorkshire ICB,B83628,Clarendon Medical Centre,9951.471806,6.2991,43.8017,36.8421,0.9906,47.5452,68.1319,2.2161,78.9809,1.0506,0.6332,0.3472,0.7424,52.9033,12.8788,8.5989,68.7664,86.25,0.9395,1.1642,16.2768,0,92.7895,92.5581,71.1957,94.0217,19.8979,0.9498 West Yorkshire ICB,B83629,Peel Park Surgery,3213.026708,5.4045,66.6667,54.3478,1.8886,72.0721,80.4878,2.5496,77.2727,4.1648,2.2978,0.5666,1.2406,44.0586,14.5564,14.6365,86.2745,91.2281,1.4164,1.1331,28.4005,0.2448,96.8367,92.7711,90.7692,96.9231,17.3339,1.322 West Yorkshire ICB,B83641,Ashwell Medical Centre,8929.317242,7.7314,53.125,33.3333,0.9782,52.9586,70.5263,2.0774,55.5556,3.6255,0.8134,0.2968,2.6324,49.607,13.9145,11.7608,80.4752,88.2353,1.308,1.352,27.0177,0.1145,94.5494,91.4063,67.0391,94.4134,17.6395,1.0442 West Yorkshire ICB,B83642,The City Medical Practice,4322.036342,8.567,46.3768,45.8333,0.955,62.1118,82.6087,3.331,87.7551,2.1345,1.5141,0.4193,1.4877,48.6132,16.3878,13.3939,76.5596,82.6087,0.8852,0.9783,18.1112,0,92.6746,93.4783,87.1287,93.0693,17.9557,1.2113 West Yorkshire ICB,B83653,Dr Gilkar,7263.543897,8.2752,45.4545,39.5349,1.271,59.2199,76.1905,2.709,83.871,1.9083,0.8474,0.2825,2.3012,49.8764,13.3466,9.0897,71.0191,85,0.8345,1.1426,20.7297,0.1385,91.8337,95.5665,86.3014,93.8356,13.1683,1.0143 West Yorkshire ICB,B83657,Bevan Healthcare Cic,6724.076105,4.3778,43.3333,43.4783,0.5425,55.4217,66.6667,0.805,89.6552,0.3829,1.4876,0.0175,0.6169,51.3787,3.3027,4.3402,57.6613,,0.5775,3.1502,9.615,0,87.3614,100,86.6667,93.3333,38.2772,0.28 West Yorkshire ICB,B83659,Park Grange Medical Centre,3267.039584,9.0777,36.7347,28.5714,0.9069,59.8485,68.4211,2.8808,85.7143,5.2985,2.1339,0.9869,2.5,42.1666,17.8117,13.657,67.8492,77.0492,2.0005,1.0403,22.0149,0.7003,90.359,96.6887,84.4444,93.3333,12.1755,1.2537 West Yorkshire ICB,B83660,Bilton Medical Centre,6214.952851,8.0367,43.4783,34.4828,0.8391,37.5,55.1724,2.7147,73.5632,2.8546,0.7404,0.2797,0.7929,50.6993,12.2526,8.7035,66.0981,76.6667,1.2998,1.1352,13.9556,0.0863,80.6856,95.7055,85.4545,93.6364,17.4641,0.6417 West Yorkshire ICB,B83661,Moor Park Medical Practice,2805.169797,8.5883,61.2245,52.5,1.8475,63.3028,76.3158,2.5193,74.4186,5.0282,1.2765,0.5039,1.6447,47.6922,15.0114,12.4622,70.4268,86.0465,1.478,0.6382,20.6297,0.3021,89.5933,95.6044,92.0635,95.2381,13.2751,1.1421 West Yorkshire ICB,Y01118,Eccleshill Village Surgery,4019.473202,7.1113,65.6863,64.6154,2.2901,77.1429,77.0833,3.2883,80.5556,6.0595,2.8186,2.5837,1.5807,34.5233,12.2267,18.2325,77.7778,80.5556,0.9689,2.9066,15.3557,0.7531,93.7048,85.3211,84.6154,86.1538,19.4729,2.7305 West Yorkshire ICB,B85001,Parkview Surgery,7248.6531,6.9039,76.8908,72.6708,3.8743,77.4775,81.203,3.5443,98.1482,6.3784,2.382,1.0188,1.6259,22.1749,7.6855,16.7599,65.9066,85.0202,0.2583,0.7462,13.7931,0.3719,89.9583,81.6327,80,90,14.2219,2.2672 West Yorkshire ICB,B85002,Dearne Valley Health Centre,4196.176162,7.1479,77.1812,73.3945,3.8921,83.0986,84.6154,3.3613,100,3.9397,1.8797,1.4374,0.9221,11.7338,6.4853,15.5905,71.5847,82.6923,0.2433,0.6634,8.969,0.4623,91.6741,79.7468,90.4762,92.8571,10.2494,2.7422 West Yorkshire ICB,B85004,Calder View Surgery,6589.710908,7.8605,73.7179,60.8696,2.9632,70,82.4742,3.163,89,5.4125,2.3306,0.5327,1.7678,35.2841,10.144,15.9814,74.375,91.25,1.1653,1.4983,22.5884,0.2029,93.5004,87.4126,87.1287,95.0495,20.8075,1.415 West Yorkshire ICB,B85005,Shepley Health Centre,6054.450797,6.2276,83.5714,78.8889,5.1028,82.0225,80.4196,3.8604,87.7551,5.2157,1.346,0.4289,1.3175,7.5446,6.4378,15.7077,65.3571,76.5766,0.4733,0.5325,8.1213,0.6926,87.282,81.3433,73.8462,84.6154,7.1466,1.8488 West Yorkshire ICB,B85006,Elmwood Family Doctors,14132.91584,7.9084,79.5238,74.6032,4.5225,81.5271,81.6667,3.4804,94.7368,3.8897,1.7041,0.7996,1.5244,11.6625,6.5201,17.3691,67.6641,82.526,0.544,0.8783,13.8064,0.959,90.5159,76.3333,83.6601,94.7712,10.8127,2.4579 West Yorkshire ICB,B85008,Batley Health Centre Surgery,6453.175818,6.7023,66.4234,52.7473,2.9057,62.1739,74.026,2.3833,89.1304,3.2583,1.8936,0.8162,0.5904,34.0057,9.003,14.2181,75.3582,86.7052,1.2733,1.2406,14.5637,0.2226,90.4651,76.1589,94.7368,93.4211,20.2368,1.4528 West Yorkshire ICB,B85009,Ravensthorpe Health Centre,9570.174425,8.0401,68.8797,59.3939,3.0027,70.4861,80.315,3.3607,90.6542,5.4589,1.9402,0.7622,2.1146,35.3135,11.7422,16.0527,77.7376,87.3684,1.178,1.0971,19.841,0.4829,92.9933,87.0833,93.3333,97.3333,19.8471,1.7439 West Yorkshire ICB,B85010,Dalton Surgery,7106.945199,7.2233,74.8837,77.1605,3.8688,73.516,80.1471,3.6187,85.2941,2.8774,2.1183,0.912,2.5972,26.8321,9.9466,12.3566,66.0551,65.5914,0.4854,1.0886,11.0986,0.2195,84.5334,86.6667,85.2632,84.2105,17.006,1.7947 West Yorkshire ICB,B85012,Undercliffe Surgery,11591.00872,7.4287,68.997,60.8333,3.252,71.2676,73.6842,3.2151,94.3262,4.7347,2.9664,0.4514,0.7527,29.1128,9.1862,14.5924,60.2919,74.4681,1.17,1.0871,16.0253,0.1764,86.2054,90.1961,77.6119,91.791,18.5618,2.1557 West Yorkshire ICB,B85014,Brookroyd House,10373.82146,7.7977,74.7093,69.7479,4.3437,78.6207,81.0526,3.5463,93.2432,5.463,3.4204,0.5981,1.1882,25.5389,9.3841,19.935,66.7964,85.7542,0.7869,0.6715,19.5144,0.58,91.7038,79.2531,91.3043,94.9275,15.9178,2.3188 West Yorkshire ICB,B85015,Wellington House,10109.66413,8.4544,70.7317,59.1346,3.6747,69.7761,73.0539,3.7428,86.0465,7.9949,3.3004,0.8166,1.4292,30.2177,9.73,21.7194,68.509,86.9081,0.6805,0.9981,17.2209,0.7104,90.1984,75.4717,82.3077,95.3846,18.9794,2.1549 West Yorkshire ICB,B85016,Meltham Road Surgery,10755.29579,8.6825,68,60.8696,2.3368,52.8571,66.4596,3.2252,82.1138,3.6585,1.8443,0.4635,1.6945,35.8666,11.0971,11.3751,62.6569,78.8288,0.9656,1.1877,13.4146,0.3953,85.4688,84.9057,68.2635,87.4251,16.7581,1.6512 West Yorkshire ICB,B85018,Grove House Surgery,9580.536369,7.9218,67.3387,56.0241,2.8571,63.3028,76.3514,3.346,83.1858,6.7814,2.4552,0.8908,1.0236,32.2853,10.8699,14.981,75.1361,84.4765,0.7605,1.2167,18.7518,0.2285,92.2841,86,84.6667,94,18.8508,2.1075 West Yorkshire ICB,B85019,Mirfield Health Centre,17853.62916,7.1207,75.3744,70.7317,5.386,79.604,82.4561,4.2509,95.1049,9.7742,1.8359,0.9208,0.729,16.0635,8.331,21.0112,85.3348,91.4773,0.5502,0.6776,10.2909,2.5095,94.1324,79.2185,93.3628,96.9027,12.1527,2.6061 West Yorkshire ICB,B85020,Eightlands Surgery,7606.373536,8.1349,67.5258,58.6957,3.1125,76.9585,80.7018,3.2755,100,6.8939,2.8902,0.4446,1.889,36.0475,10.8616,19.2826,79.738,90.3846,1.2302,1.3191,17.8384,0.3552,90.6119,89.071,93.578,97.2477,24.2391,1.4229 West Yorkshire ICB,B85021,Cleckheaton Group Practice,10180.82189,8.5403,73.9766,77.5862,4.4883,75.3731,78.4211,3.9038,97.3684,7.0428,3.2201,0.9263,1.2389,23.2727,8.3422,18.659,68.8512,82.0359,0.7168,0.9374,12.0388,0.5872,89.5128,80.4255,77.7778,90.5983,16.9363,2.5585 West Yorkshire ICB,B85022,Honley Surgery,8267.408348,8.2888,79.8817,73.7327,5.9417,79.8995,80.8989,4.1784,96.1539,6.4674,1.4822,0.7156,2.1303,12.8351,7.0308,19.2691,68.819,83.0816,0.46,1.0222,12.1686,1.7835,88.301,81.7734,86.5854,93.9024,9.901,3.1561 West Yorkshire ICB,B85023,The Almondbury Surgery,6881.435208,6.8618,75.6881,69.6203,3.4218,75.5,81.3433,3.0294,94.2308,2.6805,2.6997,1.6952,1.1152,25.8517,7.158,14.4718,60.8128,80.6867,0.8947,1.4284,10.4676,0.8023,86.9874,80,79.7297,89.1892,17.8625,2.2289 West Yorkshire ICB,B85024,The Waterloo Practice,10697.4966,8.5975,76.4526,69.163,3.3699,81.7308,83.6158,3.6307,91.954,3.7085,2.2952,0.7512,0.9402,24.4887,9.3818,18.6646,72.6584,90.2077,1.1372,1.2311,11.217,0.3831,91.0016,86.9955,91.8519,97.037,16.8749,2.4518 West Yorkshire ICB,B85025,Blackburn Rd.Medical Ctr.,12147.59941,7.2269,76.962,65.4412,4.2265,76.5586,78.4753,3.5618,91.0828,4.7464,2.2487,0.911,0.8611,20.6417,7.2309,16.1346,84.2139,90.1266,0.3775,0.8699,11.6245,0.5155,90.2172,81.783,82.8829,95.4955,12.7214,2.1092 West Yorkshire ICB,B85026,Kirkburton Health Centre,7598.164916,6.9934,76.7802,72.093,5.2101,79.0393,80.1136,3.5439,100,4.1286,1.517,1.2435,1.0969,9.2829,6.0187,17.7568,66.0762,81.2709,0.5471,0.9326,11.624,0.9883,89.3978,88.9706,77.4648,88.7324,8.5819,2.3875 West Yorkshire ICB,B85027,The Lindley Group Pract.,10293.14359,6.5582,79.5389,73.7903,4.2503,74.7253,80,2.8304,90.9091,3.3277,1.2401,0.8236,2.2185,17.4674,7.254,14.2086,64.5921,71.7949,0.5206,0.691,7.4029,0.6849,85.5752,80.8989,90.7407,90.7407,10.1609,2.0542 West Yorkshire ICB,B85028,The Grange Medical Practice,18384.92946,6.7898,70.5336,63.4069,2.3105,71.6028,76.2082,3.2383,80.7487,3.3819,1.8314,0.5215,1.7557,34.4718,10.3878,15.282,53.6751,78.5398,0.7459,1.4736,10.7201,0.4289,89.0972,82.1244,66.8033,91.3934,20.2381,1.7526 West Yorkshire ICB,B85030,The Greenway Medical Practice,9574.640687,9.0983,76.1538,80.4124,3.7473,73.3974,77.9762,3.4532,94.7368,4.4079,2.6689,0.6536,1.7687,23.0252,7.8272,16.6449,74.9601,85.7664,1.3399,0.9586,15.3102,0.3479,90.0693,75.7009,83.4862,89.9083,17.5644,2.3203 West Yorkshire ICB,B85031,Lepton and Kirkheaton Surgeries,7199.87866,6.7199,79.2453,72.7273,4.9729,83.5165,83.3333,4.1246,97.8723,5.5302,1.9746,0.6436,0.7549,13.2451,8.3103,18.3268,65.5824,87,0.4827,1.0677,14.3434,0.3522,91.5873,85.6287,84.0909,95.4545,12.7192,2.3695 West Yorkshire ICB,B85032,Meltham Group Practice,5848.427432,8.1793,77.1689,69.281,4.3392,80,82.6772,3.4117,88.8889,3.3891,1.6065,0.944,1.7979,15.3139,6.5771,17.6217,70.9563,88.0184,0.7784,1.1593,16.4084,0.2207,90.7834,85.2941,90,95,11.7078,2.3352 West Yorkshire ICB,B85033,The Lindley Village Surg.,5301.118294,7.3142,80.8642,71.3115,3.7688,73.9583,79.798,2.6528,88.2353,5.4647,1.1709,1.1526,0.4904,15.602,6.8339,15.386,66.6667,79.7235,0.5123,0.933,13.1481,0.6049,87.7805,69.4444,82.1429,91.0714,11.3973,2.1405 West Yorkshire ICB,B85036,New Street & Netherton Group Practice,9104.415823,8.7823,76.5799,74.3316,3.495,80.9701,84.8684,3.5196,93.9024,4.9596,2.5228,1.2183,1.0572,26.105,9.6947,17.8809,70.4237,87.1795,0.8245,1.1937,17.6461,2.8946,89.8939,81.4159,89.916,94.1176,18.6097,2.2274 West Yorkshire ICB,B85037,Newsome Surgery,6586.69936,8.2846,70.3911,55.3571,3.0811,69.1892,70.1031,3.5091,82.3529,6.0646,2.9442,0.5649,1.8458,33.2816,9.566,15.9534,67.51,85.0829,1.0613,1.4036,17.0292,0.138,89.988,87.7419,75.6098,93.9024,21.7613,1.8487 West Yorkshire ICB,B85038,The Paddock Surgery,6565.050735,8.216,76.6355,61.3333,3.8003,72.8814,76.0331,3.8173,86.5385,7.1779,3.3402,0.9032,2.5346,28.7381,9.4938,20.6714,78.191,83.4862,1.2611,1.1588,18.5943,0.838,91.0261,87.7005,82.5581,93.0233,21.2864,2.1132 West Yorkshire ICB,B85041,Mount Pleasant Med Centre,14730.69774,8.5407,54.4872,47.7679,2.0884,57.1429,74.5192,2.727,84.7619,5.0918,1.5647,0.4854,0.7137,33.9823,13.7646,14.2547,69.5984,77.3585,0.958,1.041,19.1401,0.1498,91.6683,88.4454,83.7838,91.8919,12.6949,1.2709 West Yorkshire ICB,B85042,Paddock and Longwood Family Practice,9637.162245,9.1961,68.2403,65.4762,3.1598,69.8305,81.6327,3.0361,86.5385,3.7546,2.3502,0.6072,4.2276,30.726,9.5827,15.0568,74.1877,83.5498,1.0908,1.9116,14.2646,0.9368,91.0544,83.9806,88.6179,91.0569,21.5284,2.0915 West Yorkshire ICB,B85044,Thornton Lodge Surgery,2714.10725,6.8327,47.7273,45.4545,1.0982,47.7064,68.75,2.3902,82.1429,2.7907,0.4522,0.2584,0.6512,39.8946,12.1377,10.239,58.3039,73.5294,0.6783,0.969,11.5349,0.1701,81.3924,84.8485,73.5849,86.7925,13.1531,0.8075 West Yorkshire ICB,B85048,Woodhouse Hill Surgery,4818.951054,7.857,68.9655,47.619,1.3749,68.6047,79.661,2.1769,86.3014,3.2145,2.4519,0.55,1.7505,40.1405,8.8945,12.0761,63.3484,71.7647,1.2145,1.3978,11.9033,0.0922,93.4849,81.3187,88.8889,92.5926,28.0428,1.2832 West Yorkshire ICB,B85051,Fieldhead Surgery,7940.144784,6.9563,76.1364,69.4737,3.3466,78.8618,80.1325,2.806,91.5663,4.6304,2.3298,0.798,1.251,20.6209,7.1234,16.4371,57.1963,74.8792,0.9525,0.901,10.3656,0.0634,85.5121,78.0645,73.75,88.75,16.3744,1.8921 West Yorkshire ICB,B85054,Colne Valley Group Practice,10181.73022,7.8502,77.7215,66.2745,3.8839,80.5556,79.1469,3.894,96.1539,3.0027,2.2049,0.6878,1.2798,18.9912,7.6671,17.1336,67.4708,80.6749,0.8193,0.8193,13.5737,0.2569,86.4703,78.673,86.2069,92.2414,14.1248,2.7309 West Yorkshire ICB,B85055,Healds Road Surgery,10992.20817,7.5931,43.5028,44.4444,1.0653,47.9675,63.7795,2.3908,83.9286,3.814,1.0978,0.618,2.5999,36.9855,12.9971,11.1897,70.4546,82.6389,1.0165,1.3093,16.4586,1.2265,86.7142,83.9286,70.2222,92.8889,17.525,1.2279 West Yorkshire ICB,B85058,Rose Medical Practice,3219.994338,5.2556,65.1515,61.9048,1.82,64,72.973,2.6803,96.875,3.8855,1.5222,0.4302,1.5133,34.5068,8.3806,11.5817,81.7857,97.1429,1.4891,1.82,19.8773,0.4802,91.4852,92.1875,84.2105,94.7368,19.1096,1.5222 West Yorkshire ICB,B85059,Slaithwaite Health Centre,7028.844004,8.4626,78.1132,74.1117,3.1614,80.6228,79.7619,2.7188,100,3.9206,1.6692,0.2276,1.4127,18.3019,6.7011,14.0364,74.1936,86.1111,0.5058,0.6955,11.2064,0.2928,92.6446,86.6667,84,89.3333,13.6166,1.8968 West Yorkshire ICB,B85060,Greenhead Family Doctors,3162.645543,6.4708,74.1176,75.9259,4.448,68.4932,80,5.0142,100,6.247,1.941,1.0514,1.6465,27.0429,10.2871,17.6709,65.6716,81.3726,1.577,2.0623,12.6392,0.3578,89.6256,82.3529,72.5,90,13.2255,3.0328 West Yorkshire ICB,B85061,Skelmanthorpe Family Doctors,9267.743253,7.5838,79.9443,75.4032,4.1108,78.1132,81.7757,3.7515,94.8276,4.9155,1.8493,1.5429,0.512,11.2967,6.7256,17.6794,79.7856,92.3706,0.5918,0.8137,10.8807,0.4581,91.1782,80.1887,92.9293,91.9192,10.1794,2.6207 West Yorkshire ICB,B85062,University Health Centre,9293.719361,2.2003,69.2308,56,0.3205,35.8333,72.7273,0.1504,80.2632,0.0568,0.0785,0.0196,1.5827,30.1634,0.9324,2.1062,55.873,85.7143,0.0458,0.2747,6.1249,0.2049,76.2125,100,76.1905,85.7143,15.3735,0.085 West Yorkshire ICB,B85606,Thornhill Lees Medical Centre,4698.219148,6.8286,63.2,47.3684,2.6423,51.4493,64.6154,3.7379,85.1852,4.6188,2.1697,0.1933,0.9182,35.4031,13.5224,16.1332,74.9201,77.6,1.3749,0.9882,14.0234,0.6549,88.5201,92.6667,88.4211,90.5263,16.4218,1.8045 West Yorkshire ICB,B85610,Oaklands Health Centre,9198.285141,7.0551,77.261,70.8633,4.3927,78.979,80.4167,2.7877,91.4634,4.2951,0.9949,0.5913,1.4239,11.3927,6.3921,13.9947,72.2581,83.2669,0.3473,0.6289,6.8722,0.5397,91.1979,78.8571,81.9149,90.4255,8.9852,1.9993 West Yorkshire ICB,B85611,Dr Handa & Partner,4022.558459,9.4065,59.7938,52.2388,1.8305,70.4,87.0968,3.3996,78.8462,0.7407,1.3598,0.9153,0.6734,36.3855,13.5413,15.4289,87.5502,93.4783,1.046,1.0722,16.1616,0.2475,88.9825,88.2979,95.122,93.9024,17.3102,1.569 West Yorkshire ICB,B85612,Liversedge Medical Centre,4461.584046,7.78,68.1416,66.6667,2.9847,77.8523,83.8235,3.8543,92.1569,5.9502,3.3138,0.7521,0.6679,27.1172,9.2322,16.7803,57.6329,72.5191,1.0811,1.1986,15.422,0.8197,91.3268,83.6207,85.9649,94.7368,22.0128,1.9271 West Yorkshire ICB,B85614,Croft Medical Centre,6674.635348,8.2304,47.7876,40.7895,1.4113,54.5098,68.5714,2.8663,76.0417,3.6649,0.6547,1.0039,0.5236,38.8316,14.3678,10.3739,57.7049,75.7282,0.873,1.455,12.3238,0.4098,81.4191,82.5726,80.4196,83.2168,15.3754,1.3968 West Yorkshire ICB,B85619,Cook Lane Surgery,2987.267644,7.714,59.4595,57.1429,2.9938,58.8785,76.1905,2.7986,80,4.8464,2.8962,0.6834,0.6923,32.062,12.9307,15.1318,78.0303,81.1594,0.781,1.0413,12.8083,0.9368,90.1887,85.1852,76.2712,88.1356,19.3548,1.3993 West Yorkshire ICB,B85620,Windsor Medical Centre,2778.002877,7.2152,66.6667,60,3.4577,70.3297,78.3784,3.9627,75,7.5312,3.1857,0.5828,1.1471,30.0638,10.2564,20.8625,80.7692,88.421,1.5152,1.2821,12.6683,2.2124,95.4329,93.2432,90,95,19.2562,1.8648 West Yorkshire ICB,B85623,Marsh Surgery,3389.861918,6.7296,66.6667,74.1935,2.5109,61.6,76.5957,3.6204,85.1064,2.3074,1.4015,0.4964,1.6747,27.9808,13.0786,13.3431,71.9888,85,1.1679,1.4599,12.6535,0.3509,86.8499,90.2913,70.1493,86.5672,18.1581,1.5766 West Yorkshire ICB,B85634,Birkby Health Centre,3261.783618,8.0869,62.5,59.5745,1.2624,50.3759,65.9091,2.4698,80.3571,3.2857,1.18,0.4116,1.7781,31.7831,14.1016,10.9495,71.0674,74.4186,0.9056,0.9605,12.9107,0.1221,83.8374,94.2308,88.5714,88.5714,13.5807,1.3172 West Yorkshire ICB,B85636,Westbourne Surgery,4428.038948,8.1592,79.562,67.6471,4,73.5714,75.8621,3.2426,91.4894,2.8538,1.6805,0.5917,3.4422,22.0607,8.1834,15.574,58.9041,78.2313,1.0178,1.3254,13.1804,0.056,89.8422,88.8889,92.3077,92.3077,11.3795,1.9172 West Yorkshire ICB,B85640,Kirkgate Surgery,3654.076081,8.3855,78.4483,53.75,3.7256,79.2453,75.3623,2.9568,96.2963,5.267,4.0509,0.414,0.4755,26.7272,7.8587,17.7114,72.0388,86.9048,0.7392,1.0053,12.7652,0.1436,89.7894,82.8947,85.3659,92.6829,19.8484,2.1289 West Yorkshire ICB,B85641,Lockwood Surgery,5386.767549,8.5667,70.0787,62.3762,3.3599,60,69.8925,3.1167,85.4167,4.6307,2.2768,1.2157,1.1301,33.7181,8.8955,14.2352,52.588,74.5342,0.7958,1.5915,9.7574,0.1705,86.6297,76.8519,64.4068,83.0508,21.6928,2.0999 West Yorkshire ICB,B85645,Savile Town Medical Ctr.,2129.662866,10.4595,47.0588,34.6154,0.7631,65.5556,73.0769,2.4498,79.1667,3.925,1.245,0.4819,1.5231,39.3004,15.3759,10.8434,78.3133,90.4762,1.1647,1.1245,22.7885,0.7042,90.3279,94.0299,92.3077,88.4615,16.0192,0.8434 West Yorkshire ICB,B85646,The Albion Mount Medical Practice,7170.262979,8.7665,67.4286,56.3636,2.9139,61.7225,73.6264,3.7624,80.303,6.4927,2.6897,1.3289,2.1574,34.8393,11.1313,18.748,73.0372,86.6995,1.2328,1.4729,15.4921,1.4158,89.0713,87.2449,82.4074,91.6667,21.6162,1.8892 West Yorkshire ICB,B85650,Dr Mahmood & Partners,4637.732338,6.4938,39.2857,29.2683,1.1271,47.644,65.9091,1.6598,80.6452,1.8112,0.7992,0.0615,1.4549,44.5434,11.4916,6.7828,60.8833,64.2857,0.7582,1.1475,14.7268,0.1235,87.8218,82.1429,55.8442,80.5195,18.6736,0.7787 West Yorkshire ICB,B85652,Sidings Healthcare Centre,7029.656533,9.6178,49.2647,48.4536,1.5302,52.2648,75,3.1258,82.9546,3.6581,1.5171,0.3139,0.3441,34.5332,13.4101,12.4771,85.2557,92.0354,1.0986,1.2686,15.4835,2.2248,95.3267,90.678,88.5906,95.9732,12.8708,1.6218 West Yorkshire ICB,B85655,Cherry Tree Surgery,2810.569237,7.9273,72.0588,62.7451,3.5905,80.6818,90.4762,4.1253,82.3529,6.0932,3.7815,0.4966,1.6897,33.637,12.5628,15.6608,90.1163,92.4242,1.5661,0.9931,28.469,2.1152,98.9796,94.8052,95.7447,97.8723,20.3165,1.9481 West Yorkshire ICB,B85659,The Whitehouse Centre,1967.227237,3.276,57.1429,33.3333,0.7265,54.2373,62.5,0.8303,81.8182,0.31,0.7784,0,5.3317,40.0807,3.6742,3.7883,49.3151,,0.3633,2.1277,5.8277,0.6711,87.2428,100,54.5455,63.6364,37.7382,0.6227 West Yorkshire ICB,B85660,The Junction Surgery,6901.979096,7.5585,71.3592,74.1497,3.0372,73.2456,78.5714,3.1593,87.5,5.9235,2.5183,0.5952,2.6996,29.1191,9.9428,13.5226,75.7909,76.1006,1.2363,1.4042,15.1486,1.5319,89.9123,78.6585,86.1386,95.0495,21.2626,2.091 West Yorkshire ICB,Y04266,Crosland Moor Surgery,4926.978526,8.2898,68.4211,65.5914,3.4222,61.1111,70.8333,4.0088,75,5.5023,2.0288,0.5133,1.9784,33.7525,11.7054,17.2574,57.7899,81.1688,0.7822,1.32,16.7543,0.2481,85.307,82.8358,78.3784,85.1351,19.3899,2.6399 West Yorkshire ICB,Y06659,Nook Surgery,3484.24162,6.0153,70.7965,57.3333,3.2332,78.4,73.0159,2.8326,87.5,4.3276,1.7454,1.2017,0.3934,,7.5678,14.0486,57.6623,77.3585,0.6295,0.8011,9.6924,0.2976,82.3032,83.3333,64.1026,82.0513,18.4621,1.4306 West Yorkshire ICB,Y07275,Broughton House GP Surgery,3091.069268,8.6213,60.9756,50.7692,3.0303,62.2222,73.2143,3.2025,68.421,4.4666,2.927,0.1377,1.3443,,8.1624,16.7355,90,90.625,0.8265,1.9284,14.2238,0,90.0234,88.7755,78.3784,97.2973,21.7913,1.7562 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence Coventry and Warwickshire ICB,M84001,Red Roofs Surgery,16200.56881,7.5579,73.3624,75.6173,4.197,69.8297,71.0317,3.2441,94.2149,11.5734,2.4222,0.8147,1.5994,24.5487,9.6475,21.9741,77.2842,89.2913,1.0911,1.0547,19.4717,2.7055,89.9123,89.2135,72.6804,94.8454,16.1718,2.5604 Coventry and Warwickshire ICB,M84002,Pool Medical Centre,8612.509498,7.4611,76.8421,82.5641,4.8273,73.444,77.2727,3.2306,93.1507,6.1732,1.869,1.3368,1.5817,14.9466,8.0713,15.6703,59.7374,69.6023,0.4456,0.755,8.7531,0.4432,80.4592,74.3169,77,88,13.6206,2.3518 Coventry and Warwickshire ICB,M84003,Arbury Medical Centre,10480.66519,6.5418,69.969,64.0553,4.3962,68.0511,71.7791,3.0063,88.8889,7.6641,2.1003,0.5045,2.1617,26.7725,10.1682,19.3864,77.3771,86.0335,1.534,0.9472,17.254,1.7173,88.0864,80.8271,73.4513,92.9204,19.5022,1.9664 Coventry and Warwickshire ICB,M84004,Whitehall Medical Practice,16994.99636,5.4373,74.9499,67.5439,2.9577,68.9063,75.0865,2.203,90.6433,3.4645,1.0876,0.677,1.9466,13.43,7.0646,12.5631,69.6596,78.9286,0.3385,0.5716,10.1968,0.2617,84.9351,88.9299,92.5926,74.6032,16.5528,1.6203 Coventry and Warwickshire ICB,M84005,Chapel End Surgery,5044.788359,5.5089,67.3077,66.3551,3.5221,73.125,75.5814,2.966,84.7458,9.663,3.2338,0.7209,2.4487,29.1967,10.454,17.3017,71.1888,88,1.7302,0.8857,15.1922,2.7308,88.9948,83.8509,90.6667,86.6667,21.2311,2.2451 Coventry and Warwickshire ICB,M84006,Pear Tree Surgery,10230.00378,7.1465,76.3723,64.539,4.3781,80.4054,77.5701,3.5566,98.9247,5.3523,2.1456,0.4542,2.2703,14.0902,8.6639,17.0388,70.9002,79.3939,0.1643,0.4349,14.2101,2.3968,88.1468,83.2669,74.6269,89.5522,12.202,2.1069 Coventry and Warwickshire ICB,M84007,Dordon & Polesworth Group Practice,13267.67985,5.3164,71.9258,82.6667,4.3727,69.0418,67.1937,3.1767,96.2687,7.8027,2.8567,0.9522,1.4731,15.2991,9.0875,17.1098,69.8256,81.5589,0.7694,0.5409,19.3119,2.3188,87.506,84.7826,83.7989,88.2682,14.8858,2.1482 Coventry and Warwickshire ICB,M84008,Spring Hill Medical Centre,8526.173051,6.8228,69.338,62.1359,3.5066,70.2422,71.7514,2.2967,88.2979,6.7095,1.9606,0.4033,1.867,22.8176,7.5326,16.592,71.0796,89.6226,0.4929,0.4705,16.9924,1.8392,89.1788,84.9711,79.1667,90.625,15.9756,1.8261 Coventry and Warwickshire ICB,M84009,Fenny Compton Surgery,4788.080217,7.5557,78.0876,69.697,5.8481,78.2946,83.7209,2.9146,94.4444,6.0811,1.053,0.4701,1.5766,13.9978,6.0957,18.428,83.9262,93.2127,0.2068,0.4137,6.6892,1.2464,90.6597,87.9518,86,98,7.629,2.2189 Coventry and Warwickshire ICB,M84010,Avonside Health Centre,10077.09912,7.1022,74.0741,62.5616,4.1033,75.7412,77.1605,2.8558,99.0196,6.6778,1.7836,0.6238,2.202,13.5058,6.6722,15.1072,73.9967,87.0057,0.9649,0.9942,17.652,3.6749,92.7027,80.6452,87.5,87.5,12.985,2.0955 Coventry and Warwickshire ICB,M84011,Bedworth Health Centre,24387.5026,6.8808,69.4868,72.4696,3.9006,68.9759,69.2935,3.2466,92.8251,8.7831,2.6674,0.7334,2.9219,24.4267,10.0515,19.2928,72.7021,83.1243,0.6493,0.981,16.5691,1.8927,88.9119,85.277,77.2586,90.9657,16.5153,2.63 Coventry and Warwickshire ICB,M84012,Park Leys Medical Practice,16602.79733,6.9524,71.7345,65.2047,3.7349,69.3989,77.5362,2.5253,86.1879,5.096,1.908,1.3032,1.403,21.9529,8.0668,15.563,71.928,84.9365,0.6048,0.6859,12.5786,3.3299,89.6587,80.4878,78.6885,84.6995,13.7351,1.9454 Coventry and Warwickshire ICB,M84013,Castle Medical Centre,12032.757,5.85,80.4255,78.6624,6.1155,76.6154,81.2261,3.3247,95.4023,6.5641,1.2538,0.8413,1.4609,7.3001,5.9021,17.7156,74.5707,78.4024,0.364,0.817,7.5185,3.7745,84.5803,80,88.1818,92.7273,7.5334,2.5077 Coventry and Warwickshire ICB,M84014,Bridge House Medical Centre,9663.441637,6.6435,76.9437,72.1519,5.5074,75.3247,81.383,3.2632,86.4865,7.8272,1.6479,0.9107,1.8785,10.7297,5.8176,20.1865,72.9993,80.381,0.4228,0.9432,8.779,3.1692,87.2622,78.3133,77.2277,85.1485,12.7552,2.8079 Coventry and Warwickshire ICB,M84015,Croft Medical Centre,14597.84518,6.9943,67.3469,68.8645,3.1818,63.035,72.6496,2.3948,91.4729,4.9032,2.171,0.7463,2.6946,15.9468,7.8722,15.6716,61.8435,68.018,0.6242,1.038,10.3266,1.9559,83.9067,79.8193,59.5376,80.9249,18.4332,1.7775 Coventry and Warwickshire ICB,M84016,Wolston Surgery,4522.479327,6.0077,81.4371,71.2963,5.7273,79.1667,83.3333,3.1136,95.2381,8.7195,1.6364,0.5455,1.9468,11.866,8.6957,19.25,67.19,82.8571,0.2955,0.5227,11.6808,1.4347,90.9168,90.4348,87.5,94.6429,10.2906,2.2727 Coventry and Warwickshire ICB,M84017,Clarendon Lodge Medical Centre,13705.39248,5.881,73.8342,72.3735,3.8537,67.6587,79.476,2.6279,87.7359,4.5841,1.2188,1.1343,1.7942,11.7819,5.3358,12.0121,66.9779,79.6964,0.3875,1.247,6.4212,1.5697,77.9747,77.1429,86.3636,90,9.7782,2.0572 Coventry and Warwickshire ICB,M84018,Bidford Health Centre,14038.77869,7.6376,79.0268,85.6423,5.3149,76.8,80.456,3.199,86.8421,6.1269,1.7573,0.7173,1.5447,14.0625,7.6264,19.2082,59.7863,78.5137,0.3945,0.581,11.681,2.1617,81.066,81.25,73.7805,90.2439,10.6825,2.4961 Coventry and Warwickshire ICB,M84019,The Atherstone Surgery,18198.56264,8.2972,75.382,82.2785,4.3695,70.8249,70.7006,2.8369,93.75,4.7876,2.1878,0.8775,1.8776,21.6628,8.5099,19.6177,62.2291,77.7941,0.607,0.607,13.8914,1.5948,82.7485,88.7729,87.963,91.6667,14.8536,2.4522 Coventry and Warwickshire ICB,M84020,Clifton Road Surgery,13812.27648,5.9303,75.4177,65.3979,3.9371,76.6859,74.5902,2.2239,92.638,4.8274,1.2228,0.6651,1.8495,14.2685,6.9442,14.0554,71.0644,80.6883,0.4098,0.7055,13.8797,0.6252,86.8725,85.473,89.5425,90.8497,14.489,1.8476 Coventry and Warwickshire ICB,M84021,Rother House Medical Centre,16782.8642,6.2998,76.6724,70.5584,4.1753,65.5832,76.489,2.548,84.6847,6.2594,1.7699,1.2888,1.4395,11.3902,6.1735,14.3731,67.1529,80.7365,0.4989,0.9562,6.4098,2.8129,86.1703,68.9873,89.8734,70.8861,13.1722,2.2332 Coventry and Warwickshire ICB,M84022,Manor Court Surgery,9085.723224,6.0769,68.6567,60.5405,3.4703,65.8363,69.2308,2.8211,85.0575,8.3172,1.806,0.5075,0.9225,29.3827,9.5252,19.7828,57.153,69.3727,0.7672,0.9089,18.6282,1.903,81.7559,79.661,74.1935,85.4839,18.9846,1.8296 Coventry and Warwickshire ICB,M84023,Central Surgery,18332.94129,5.5701,66.9216,72.752,3.3428,62.5,70.4268,2.1904,90.9091,5.5034,1.4057,0.755,2.1197,15.4904,7.7647,12.1591,53.5934,74.8,0.3576,0.6954,10.7068,0.3658,83.2664,81.6489,72.0721,81.5315,14.9111,1.5199 Coventry and Warwickshire ICB,M84024,Henley-In-Arden Med Ctr,7545.463327,6.0849,78.0822,74.359,5.9746,79.2453,79.085,4.3301,96,10.0088,1.9312,1.026,2.0159,13.2646,7.3712,21.1527,66.9125,78.5872,0.1811,0.5733,8.718,1.1367,83.6062,76.5714,76.9231,85.8974,9.1126,3.0326 Coventry and Warwickshire ICB,M84025,Shipston Medical Centre,12806.59914,7.2872,77.6923,66.1585,6.4476,75.7098,74.3191,3.6784,93.4066,7.5355,1.7933,0.9092,1.5891,10.8755,6.8649,19.1676,51.8204,70.9231,0.5005,0.7841,9.4244,3.2387,81.5146,78.4722,74.6032,84.9206,10.9254,3.0027 Coventry and Warwickshire ICB,M84026,Southam Surgery,7502.497044,9.0037,77.4545,67.4033,5.7116,76.9608,79.3103,3.1761,98.5507,7.0022,2.072,0.4635,1.8871,10.299,7.5379,19.2612,69.4549,83.3811,0.4635,0.8043,12.5807,1.4706,90.6965,78.481,83.5294,96.4706,11.2034,2.6581 Coventry and Warwickshire ICB,M84028,Priory Medical Centre,18673.82754,6.7199,73.1481,71.7026,4.3389,72.1875,76.8072,2.616,96.0894,5.6262,1.6862,0.5726,1.5472,12.2542,6.8443,15.5539,67.5582,79.0047,0.436,1.1662,8.58,3.0647,87.2916,87.5,78.7879,91.9192,12.5566,2.3218 Coventry and Warwickshire ICB,M84029,Lillington Health Hub,7842.85323,6.3788,76.4192,81.4371,4.353,75.4167,80.6897,3.1036,95.8904,5.0864,1.1704,0.8417,1.0535,11.5654,6.7574,15.5182,68.8485,85.0704,0.4077,0.8154,11.5391,0.5063,87.4623,84.058,85.8974,89.7436,10.4969,2.3014 Coventry and Warwickshire ICB,M84030,Hastings House Surgery,13099.7711,7.9584,79.4821,72.8097,5.5754,75.0663,78.8679,3.2555,96.063,6.7636,2.0005,1.1181,1.7141,11.1136,6.809,18.1258,66.2035,79.1096,0.2662,0.6694,10.3493,3.2419,85.1777,83.2714,84.7826,93.4783,9.5367,2.4721 Coventry and Warwickshire ICB,M84031,Revel Surgery,7209.540348,7.3824,77.9783,72.9167,4.4673,80.8219,82.1656,2.5223,95.8333,5.8333,1.5937,1.0039,1.7667,14.824,7.3598,15.9117,74.9509,89.2,0.3514,0.4016,12.35,0.7645,90.8376,77.6316,89.0244,95.122,7.2934,1.8698 Coventry and Warwickshire ICB,M84032,Waterside Medical Centre,11657.46338,5.8234,70.632,64.3979,2.1277,70.6806,79.6512,1.9227,96.319,3.7092,1.1946,0.3888,1.3122,15.9103,5.5931,10.5888,72.9402,77.6812,0.3676,0.8341,11.9237,0.6238,86.3447,85.9649,89.8305,95.7627,13.3259,1.2229 Coventry and Warwickshire ICB,M84034,Whitestone Surgery,2070.169637,5.1607,72.8571,75.5556,2.92,67.0732,60.5263,1.9467,96,5.8347,1.1849,0.2539,1.1886,13.8472,7.4547,13.5421,51.5625,71.875,0.4232,0.7617,12.6418,0.2281,81.9418,85.7143,73.913,91.3043,10.6512,1.4812 Coventry and Warwickshire ICB,M84035,Westside Medical Centre,11198.85418,5.5655,68.0921,66.9683,3.3609,61.244,65.9898,2.2294,87.5,5.4104,1.4609,0.7516,2.3664,16.7633,7.7852,15.3606,51.2448,73.9946,0.4053,0.7009,10.5841,1.905,81.1035,86.8313,75.7576,75,20.1888,1.6889 Coventry and Warwickshire ICB,M84036,Abbey Medical Centre,14067.52751,5.9759,80.2893,78.1163,5.3871,78.4946,80.4054,2.7484,95.7627,6.5544,1.1032,0.7677,1.4062,7.2698,6.2593,15.3484,74.0335,80.805,0.2516,0.6581,8.914,3.845,87.864,82.1192,76.9231,86.014,7.7269,2.3613 Coventry and Warwickshire ICB,M84037,The Grange Medical Centre,11340.68236,7.0279,80.2784,84.1924,4.4596,77.8646,78.7611,2.8646,85.2941,8.4945,1.1149,0.8138,1.2588,10.8672,6.5476,19.0267,77.0338,84.7458,0.5371,0.765,13.448,1.444,90.8367,83.7004,40,93.3333,7.8712,2.0671 Coventry and Warwickshire ICB,M84040,Sherbourne Medical Centre,10242.82944,5.9817,71.6012,70.6422,3.6427,64.4737,75.9563,2.2721,95.3488,5.1959,1.665,0.8555,2.2146,13.8443,5.0359,13.651,70.2899,77.8947,0.414,0.7543,8.1346,2.1084,80.3901,80.5,78.6517,86.5169,12.7796,1.8306 Coventry and Warwickshire ICB,M84041,Riversley Road Surgery,7197.607016,5.9711,70.3125,79.3651,3.4693,72.9167,84.5361,2.9671,93.75,8.934,2.0542,1.0803,1.6692,26.8109,10.9777,17.0116,84.0959,92.5,0.5934,0.8978,22.4583,2.5787,90.9428,88.8889,84.0708,92.9204,15.1039,2.4041 Coventry and Warwickshire ICB,M84042,Hazelwood Group Practice,10604.25403,6.0196,77.284,79.6364,4.7289,78.1879,77.5229,3.1783,89.011,7.7562,1.9744,1.4928,1.8835,14.4619,7.0883,17.0856,51.1507,70.2576,0.626,0.8187,13.3833,2.4385,83.0755,84.7222,66.3717,85.8407,8.8385,2.3596 Coventry and Warwickshire ICB,M84043,Trinity Court Surgery,19640.85563,6.2497,75.0988,69.5985,5.1526,69.5788,75.0567,2.8058,89.8396,6.3166,1.1781,0.5347,1.817,11.3382,5.3495,16.5271,68.8253,86.0215,0.2934,0.7712,8.8674,2.9425,83.871,76.4045,89.881,93.4524,11.6287,2.1623 Coventry and Warwickshire ICB,M84044,Harbury Surgery,5772.654753,7.1957,78.3784,74.8201,5.3206,77.381,78.9474,3.4618,96.8254,7.0168,1.5518,0.5116,1.8269,8.7667,6.5315,19.0655,74.91,76.4912,0.631,0.6651,12.7258,0.3228,85.9715,81.8841,92.7273,90.9091,8.6738,2.4557 Coventry and Warwickshire ICB,M84046,Dunchurch Surgery,7650.267763,6.0634,79.6429,78.7234,5.6297,72.1461,76.25,2.7781,97.1015,6.1745,0.9913,0.771,0.8907,8.4644,6.8446,15.1634,65.677,82.3678,0.4161,0.563,6.4312,0.9949,80.4977,82.6667,75.2941,69.4118,5.3915,2.2886 Coventry and Warwickshire ICB,M84047,Tanworth-In-Arden Med Ctr,5040.342476,6.4286,80.786,77.7027,5.3845,80,80.8696,2.4986,97.6191,4.6215,1.7819,0.6198,0.7432,10.5281,5.8174,16.6764,73.8854,77.2532,0.1356,0.4261,8.0121,0.6259,84.5461,78.481,84.2105,92.1053,6.193,2.5373 Coventry and Warwickshire ICB,M84049,Alcester Health Centre,6671.265931,7.2512,77.7778,69.6203,5.8824,78.6207,78.8618,3.5859,85.7143,8.3561,2.3847,1.0069,2.168,13.2555,8.1441,19.7668,69.3237,82.1306,0.6536,0.9362,12.4184,0.8065,90.0061,79.021,88.7324,94.3662,11.8858,2.5614 Coventry and Warwickshire ICB,M84050,Market Quarter Medical Practice,7595.744511,6.8218,70.4225,73.125,2.979,65.5405,72.2222,2.1879,85.7143,3.7025,1.4586,0.8776,1.7631,15.9393,7.2836,12.4969,71.358,88.0597,0.4326,0.8158,9.6169,2.1657,86.3577,86.0294,87.9518,86.747,16.5927,1.5204 Coventry and Warwickshire ICB,M84051,Old Mill Surgery,12831.97467,6.3137,70.7895,63.2143,3.2244,66.4646,76.6055,2.2398,92.3529,7.5401,1.7287,0.6238,2.1612,23.7306,9.0754,15.4754,63.9907,76.7647,0.6163,0.8643,16.2712,1.0867,88.2991,76.7647,59.2179,90.5028,16.9854,1.6911 Coventry and Warwickshire ICB,M84055,Stockingford Medical Centre,2525.783246,4.936,67.6471,61.5385,5.2166,66.129,68.0851,3.4041,85.7143,8.1313,2.5641,0.4863,0.7576,26.0915,11.8474,24.2706,68.2672,71.4286,0.4421,0.5747,16.9697,0.9574,91.0377,86.2069,73.3333,91.1111,17.0432,2.122 Coventry and Warwickshire ICB,M84059,Spa Medical Centre,3917.304936,7.7419,66.6667,61.194,2.2909,71.875,79.1667,3.6036,95,4.3706,1.2098,1.2355,0.5848,15.7821,12.1601,16.8855,75.5258,78.9474,0.4376,1.2098,27.2699,1.1329,90.8067,90.5109,88.6076,92.4051,11.1111,1.9048 Coventry and Warwickshire ICB,M84060,The Arrow Surgery,6904.226716,5.8586,77.381,70.1149,5.5506,77.551,80,3.36,92.4528,7.1352,1.791,0.9177,1.8871,14.1593,6.7412,18.2504,73.7939,87.8505,0.6513,0.7697,10.2085,0.6728,88.8315,83.7838,81.4286,92.8571,11.7925,2.2647 Coventry and Warwickshire ICB,M84061,Bulkington Surgery,6149.992124,7.1915,75.102,70.625,4.7503,72.1854,70.5882,3.685,90.4762,5.3568,1.5019,0.8907,1.0881,14.2107,9.8592,24.5896,73.0359,80.3714,0.7684,0.489,27.2651,1.314,89.9571,77.8571,89.1566,91.5663,8.6379,2.6371 Coventry and Warwickshire ICB,M84062,Vale Of Red Horse,6033.476895,8.6154,74.7967,66.6667,3.36,74.8936,76.3514,2.4736,87.8378,5.8876,1.4584,0.2717,2.577,12.7032,6.0857,15.3274,62.183,78.7879,0.3288,0.6577,12.2047,2.0546,89.1264,72.6496,79.3651,88.8889,12.4164,1.7015 Coventry and Warwickshire ICB,M84063,Chase Meadow Health Centre,6140.399286,6.1312,77.9661,73.6,3.4062,80,80.6452,2.1989,92.7536,5.5896,1.2791,0.6467,1.876,10.8816,6.0595,13.8977,72.4599,83.5616,0.2731,0.618,11.964,2.1303,90.5894,83.7838,84.4828,93.1034,9.4785,1.5378 Coventry and Warwickshire ICB,M84064,Whitnash Medical Centre,6418.409905,6.9324,74.8691,70.2899,2.8066,73.1801,76.5766,2.4899,91.1111,5.1415,1.3673,0.6477,2.0899,11.3835,7.191,13.0685,72.6257,85.4167,0.403,0.7484,10.8748,0.3441,89.6104,80,95.8333,97.2222,13.3826,1.5976 Coventry and Warwickshire ICB,M84065,Beech Tree Medical Practice,6627.201048,5.8511,65.2439,69.5238,2.2131,60.9121,66.2921,2.0806,92.3913,5.6357,1.4047,0.8349,1.9861,17.1393,8.3123,12.4834,65.4105,81.407,0.4903,0.8614,6.824,1.4016,79.4389,76.3636,75,80.4348,16.7676,1.0204 Coventry and Warwickshire ICB,M84066,Meon Medical Centre,5807.575692,8.0841,77.0732,70.2899,4.0032,76.2791,78.1513,2.5633,91.25,6.3525,1.0918,0.9177,2.7459,10.8469,6.754,15.6171,59.0286,70.1087,0.3323,0.6646,12.9508,2.515,88.7247,84.1122,87.931,91.3793,11.1461,1.7247 Coventry and Warwickshire ICB,M84067,Bennfield Surgery,7997.26825,6.9805,75.3191,62.2093,4.1782,69.5489,79.1667,2.4867,94.3182,7.3808,1.3381,0.9341,1.4543,14.8455,7.9272,15.3244,77.3585,89.7764,0.4166,0.5428,11.1181,0.5766,85.8687,86.9048,88.4211,90.5263,12.4121,2.0449 Coventry and Warwickshire ICB,M84069,Budbrooke Medical Centre,5079.562169,7.5978,78.8288,72.6708,4.2675,81.8653,82.0144,2.6815,100,5.2993,1.2917,0.3761,2.407,9.4601,4.7876,15.7456,73.2394,82.4176,0.4742,0.4415,13.4304,0.345,89.6643,78.6667,92.6829,90.2439,8.5662,2.0275 Coventry and Warwickshire ICB,M84070,Warwick Gates Fam.Hth.Ctr,8439.466678,6.3771,74.8971,69.0821,2.61,74.9491,81.4815,1.4951,95.7895,3.2064,0.6757,0.3379,1.3709,7.9843,5.6478,9.8826,68.7565,82.6291,0.3548,0.5659,9.438,0.3362,83.0067,72.9323,85.8696,92.3913,11.8381,1.1488 Coventry and Warwickshire ICB,M84609,Woodlands Surgery,4668.251945,7.8202,63.2813,64.1975,3.4542,72.2892,75.7576,2.5475,94.9153,7.324,1.7919,2.5043,2.5363,22.5677,9.7218,17.5302,76.8657,82.3944,0.7556,0.842,14.1351,2.5914,87.9301,84.252,89.2308,89.2308,15.3078,2.3316 Coventry and Warwickshire ICB,M84612,Station Street Surgery,5119.494905,6.4356,68.3871,72.4138,3.5507,71.0983,79.3478,2.5476,100,5.6412,2.1264,0.2608,2.336,22.3269,7.4065,15.4263,73.8931,84.2105,0.4012,0.7623,18.2406,0.2687,87.3814,84.6154,79.6296,90.7407,19.4353,1.665 Coventry and Warwickshire ICB,M84615,Chancery Lane Surgery,7346.11816,7.872,71.3656,62.5767,3.3548,70.6714,71.4286,2.2622,89.4737,9.4487,1.7481,0.4756,2.4078,25.5242,8.3265,16.0411,72,83.8384,0.6298,0.6427,18.1667,1.8985,89.9969,83.5821,76.5957,88.2979,17.0279,1.7609 Coventry and Warwickshire ICB,M84616,Brookside Surgery,4057.05886,8.4642,77.5758,71.4286,4.7288,78.2258,83.6735,2.9903,94.2857,5.4913,1.6226,0.8345,1.8208,10.169,6.3392,15.044,66.9794,76.7241,0.4173,1.0199,9.3931,0.9293,87.7431,86.25,94.8718,87.1795,9.2728,2.1326 Coventry and Warwickshire ICB,M84618,Rugby Road Surgery,4339.970905,6.3629,70.0855,74.1176,4.9373,70.0855,73.2394,3.0826,81.25,11.4175,2.325,0.7315,2.3354,21.8525,10.5364,20.3501,70.1518,79.5699,0.6008,1.0711,17.3857,3.089,89.6825,84.252,74.5763,88.1356,16.1363,2.4295 Coventry and Warwickshire ICB,M84620,Lapworth Surgery,2617.665186,8.1583,79.5455,82.9545,5.754,75.6098,80.597,3.5053,100,5.1282,0.7275,0.5291,2.1234,13.9876,4.826,16.336,68.1319,83.8462,0.2315,0.7606,6.9712,0.2635,89.7647,80.4878,88.8889,88.8889,7.272,2.4471 Coventry and Warwickshire ICB,M84621,Queens Road Surgery,2705.778317,5.3333,56.0606,65.3061,2.6598,59,78.5714,2.4012,80,5.8769,1.5146,0.7388,2.3787,30.3942,12.523,17.2516,62.2449,80,0.9605,1.0344,18.6567,1.7857,91.5076,79.2683,51.9231,82.6923,17.7102,1.256 Coventry and Warwickshire ICB,M84627,The Old Cole House Practice,4703.351779,6.9672,68.1529,70.6522,4.1558,69.2308,64.7887,3.1429,83.3333,7.7633,2.7533,0.3896,0.7,25.5165,12.1478,19.4805,57.3356,64.9682,0.4935,0.6753,9.0678,0.5388,85.6108,81.6,75.6757,85.1351,17.6981,2.3377 Coventry and Warwickshire ICB,M84629,St Wulfstan Surgery,8853.108658,8.2242,80.3859,70.7965,4.1463,84.6535,86.6667,2.5197,98.5714,6.6169,1.3539,1.1282,2.3141,10.4367,6.1431,14.639,75.8621,85.7651,0.2727,0.3949,15.9696,1.2618,90.3923,75.122,94.5652,94.5652,12.2246,1.965 Coventry and Warwickshire ICB,M86001,Willenhall Primary Care Centre - 1,8627.826533,6.8699,60.7143,53.5088,2.5856,56.7273,65.3465,2.0126,87.234,5.2062,3.0888,0.3913,1.9593,41.2413,8.5278,12.942,58.4833,80.4054,0.8665,1.2718,15.9545,0.4363,88.6264,86.4286,79.7619,84.5238,25.0831,1.4116 Coventry and Warwickshire ICB,M86002,Longford Primary Care Centre,9858.694866,7.1112,63.3484,63.4615,2.6646,60.7261,65.8915,2.9581,77.551,7.4898,2.8877,0.3052,1.3769,36.7646,10.4856,16.3047,75,86.0806,0.4695,1.1034,16.7348,0.036,85.736,85.2273,79.4118,89.7059,19.5104,1.7373 Coventry and Warwickshire ICB,M86003,Sky Blue Medical Group,15277.44467,6.3674,69.5755,63.4868,3.2759,62.3077,75.7576,2.1921,89.4366,6.4318,1.0345,0.431,2.3998,22.8131,8.957,13.9902,73.5582,84.5622,0.4988,1.0037,10.5608,2.7259,86.8356,81.0888,81.1594,81.1594,12.3372,1.6071 Coventry and Warwickshire ICB,M86004,Allesley Park Medical Ctr,13397.93874,4.0709,74.9175,77.4194,2.0189,49.7354,78.2123,1.0882,87.8505,2.8831,0.7177,0.4353,1.5615,14.143,2.8975,8.2701,67.8703,88.5781,0.1899,0.4029,5.4141,2.8122,89.7253,79.3296,79.4118,89.2157,7.411,0.9261 Coventry and Warwickshire ICB,M86005,Hillfields Health Centre - 1,5805.029874,5.0131,57.7586,58.6667,1.5544,43.318,65.625,1.7098,58.209,4.3961,1.3299,0.2073,1.8716,33.5965,7.3381,11.2263,68.2746,76.5766,0.5181,0.9326,13.3841,0.289,80.7575,84.375,82.8125,82.8125,21.3368,1.0017 Coventry and Warwickshire ICB,M86006,Jubilee Healthcare,10155.15186,5.6211,71.4286,77.2973,3.9688,59.292,74.6988,2.2881,87.7778,4.3797,1.3567,1.0833,2.469,18.2268,6.5449,13.5061,67.0757,83.7079,0.5366,1.4681,14.7891,2.6793,85.8678,83.2258,77.0833,86.4583,13.5943,1.7009 Coventry and Warwickshire ICB,M86007,Phoenix Family Care,6560.219001,6.2329,75.1111,69.3878,4.8773,69.0058,77.3913,2.78,98.2143,7.2103,1.3819,0.7804,0.347,12.4562,7.6468,17.867,76.6268,86.1272,0.4064,0.8454,9.3889,1.4368,88.151,83.4532,88,86.6667,8.233,1.8859 Coventry and Warwickshire ICB,M86008,The Gables Medicentre,10562.15862,6.4543,66.9014,69.6682,3.5136,65.7817,74.7312,4.1025,80,12.0146,3.1112,0.3533,3.4058,26.4733,9.5244,16.5767,55.2727,64.9682,0.8244,0.952,18.2355,2.4236,84.3728,88.959,62.2378,81.8182,16.5369,1.59 Coventry and Warwickshire ICB,M86009,Engleton House Surgery,19622.37603,3.4267,67.7083,70.6731,1.2868,46.9188,75.3012,1.1396,83.4783,2.1604,0.8491,0.2226,1.2231,27.7026,3.1659,7.034,69.4125,82.2148,0.1849,0.5359,13.639,3.6603,92.1484,86.5854,74.4681,90.7801,17.6397,0.8491 Coventry and Warwickshire ICB,M86010,Forrest Medical Centre,11494.56027,6.1815,67.0927,55.8685,3.005,57.7778,70.3297,3.0941,88,4.4468,2.0816,0.9639,2.5247,24.4818,7.1494,13.0974,59.7978,77.3414,0.5346,0.9639,10.9195,3.3636,87.6058,76.2931,81.5385,89.2308,15.6423,1.9116 Coventry and Warwickshire ICB,M86012,Priory Gate Practice,10440.39684,4.6915,59.0909,49.5935,1.6102,45.4343,62.1622,1.451,67.5,3.9281,0.9642,0.1966,2.1307,34.4718,7.6498,9.4271,64.9522,77.193,0.3464,1.0204,11.6058,3.0477,87.5322,85.2071,77.4194,79.0323,15.563,0.9549 Coventry and Warwickshire ICB,M86014,The Forum Health Centre,20815.99383,5.2489,70.8703,60.6205,3.0788,70.0255,75.8523,2.2865,93.3884,6.2822,1.2002,0.5408,0.6012,22.4815,8.4772,13.1404,70.7957,82.2581,0.3748,0.6689,17.0982,0.258,88.1555,87.4429,80.9701,94.403,14.5018,1.333 Coventry and Warwickshire ICB,M86015,Kenyon Medical Centres,15181.5798,6.753,72.2667,66.791,3.3926,65.102,76.0563,2.766,83.8028,4.2311,2.3122,1.2173,1.7476,23.7662,8.511,14.3053,65.8854,76.6667,0.5186,1.0156,10.4765,1.9707,83.6042,84.2105,80,85.7143,15.2527,1.9448 Coventry and Warwickshire ICB,M86016,Godiva Group Practice,21505.90212,4.8281,62.7907,56.9231,2.4517,53.5142,70.5686,1.8399,82.1596,3.708,1.457,0.3969,1.4433,38.3067,7.971,12.6693,74.0972,78.9362,0.411,1.2562,13.6119,0.2657,83.7274,90.0538,83.5294,83.9216,20.0869,1.1254 Coventry and Warwickshire ICB,M86017,Mansfield Medical Centre,10770.03305,6.444,63.4615,64.2487,2.757,48.9744,66.4671,2.4015,80.7692,5.4323,1.7483,0.4803,2.3281,24.1929,8.5882,15.7253,70.0603,81.9936,0.7013,1.3449,19.1464,1.3469,85.02,90.1709,68.6131,87.5912,14.7177,1.6907 Coventry and Warwickshire ICB,M86018,Moseley Avenue Surgery,11415.42917,5.6786,71.6049,62.5,3.4274,71.729,74.2718,2.3181,88.8889,6.5169,1.5978,0.5216,1.3034,21.0003,7.076,16.0278,59.7368,69.9519,0.4967,0.8279,11.5821,3.1609,87.8872,84.2553,64.5161,79.8387,14.7315,1.5481 Coventry and Warwickshire ICB,M86019,Westwood Medical Health Centre,4436.371077,5.4009,65.0685,73.6842,3.5594,61.4815,80.5556,2.6192,79.4118,7.8933,1.7014,0.2686,1.8152,20.7365,7.9913,18.2897,75.1891,87.8205,0.3358,0.6268,13.5864,2.1336,89.7499,92.3729,89.2857,92.8571,17.7238,1.6566 Coventry and Warwickshire ICB,M86020,Wood End Health Centre,9251.929744,5.3881,58.0247,48.8372,2.121,73.8983,71.0526,1.6315,90.1786,5.2707,2.5728,0.2761,0.9322,50.5851,9.0194,12.2992,67.0872,89.8148,1.0919,0.7907,14.844,0.5514,84.058,89.3082,73.9583,86.4583,24.3987,1.4433 Coventry and Warwickshire ICB,M86021,Springfield Medical Practice,7117.765964,7.8788,73.5426,79.6296,4.1256,77.2926,82.0896,2.4448,88.8889,5.4059,2.0003,0.4028,1.6306,21.7066,9.1131,17.8775,52.1781,73.2284,0.3473,0.7501,14.2325,2.5249,90.6962,85.6164,72.6316,76.8421,12.9754,1.8336 Coventry and Warwickshire ICB,M86027,The Cheylesmore Surgery,10723.00638,3.8694,71.308,60.7362,2.1652,43.2532,73.7589,1.3429,92.6316,1.6229,0.6413,0.2414,1.8508,16.1431,5.3467,8.9174,57.6536,77.0035,0.2942,0.6564,7.0204,0.4024,85.8678,86.0465,73.2143,85.7143,8.2642,0.9506 Coventry and Warwickshire ICB,M86028,Central Medical Centre,3562.225552,5.7883,44.0476,55.814,1.5772,45.6311,68.2927,3.1241,87.5,3.5529,1.0616,1.3042,2.3553,36.7321,16.4384,15.2866,52.8256,62.8866,0.7583,1.0009,15.01,0.1927,80.5263,95.4546,86.5854,85.3659,16.6604,1.3952 Coventry and Warwickshire ICB,M86029,Broomfield Park Medical Centre,14735.25553,3.8046,74.1007,63.8743,2.0558,45.5652,71.3333,1.1317,86.3636,1.8079,0.8299,0.3678,2.1212,17.2941,3.0842,7.5773,58.7125,76.0181,0.2499,0.712,5.3672,0.5845,89.5583,92.3077,69.1589,85.0467,7.7995,0.9619 Coventry and Warwickshire ICB,M86030,Kensington Road Surgery,5811.668826,5.0134,72.6744,65.4867,3.5228,59.7015,78.7234,2.3826,88.0952,4.2719,1.2423,0.7318,1.3555,14.2761,5.985,13.4105,70.568,72.9469,0.5786,1.1572,8.359,1.8877,85.1823,78.2178,83.0189,88.6792,12.6969,1.4806 Coventry and Warwickshire ICB,M86032,Holbrooks Health Team,12214.86831,5.236,60.3704,65.7895,2.6897,61.7204,69.3642,2.3846,88.3929,6.3056,2.3043,0.8832,3.2064,27.5095,9.1894,12.8463,58.104,79.1096,0.4657,0.9153,10.6381,2.942,86.5059,83.5165,75.3012,60.8434,20.856,1.7985 Coventry and Warwickshire ICB,M86033,Willenhal Oak Medical Centre,5614.952172,7.833,62.6016,55.3191,2.8604,63.522,63.1579,2.2197,88.8889,5.9391,3.7757,0.9382,2.9243,37.8858,10.0327,17.3227,63.6086,85.4369,0.8696,1.3272,37.0516,2.7937,90.1914,89.2562,67.7419,87.0968,23.5631,1.8764 Coventry and Warwickshire ICB,M86034,Woodside Medical Centre,11563.03962,7.44,72.6974,73.0769,4.4106,66.2857,76.0479,2.8703,86.7925,8.399,1.7509,1.483,1.9998,22.1679,8.6141,18.9533,72.8088,81.203,0.6984,1.2342,10.023,5.3695,90.438,77.2532,80.916,88.5496,14.4369,2.5832 Coventry and Warwickshire ICB,M86035,Henley Green Medical Centre,10301.19328,6.6951,59.3458,58.5987,2.543,65.1316,71.9697,2.1609,90.991,5.641,2.6385,0.3104,1.5705,40.7385,9.3971,13.5267,66.8122,83.871,1.0029,1.0864,14.7756,0.5348,88.5214,86.9822,76.9912,88.4956,22.7308,1.8267 Coventry and Warwickshire ICB,M86037,Quinton Park Medical Centre,3904.570491,4.5689,69.8113,63.5135,3.0777,54.1353,69.3548,2.7956,97.6744,5.7236,1.0516,0.4104,0.8455,17.3775,7.7022,13.1829,49.7436,62.9032,0.4617,0.7181,7.4797,1.1253,80.545,74.6988,60.8696,84.7826,12.5383,1.744 Coventry and Warwickshire ICB,M86038,Bredon Avenue Surgery,3249.221184,4.7762,64.5833,62.069,4.4331,64.6341,69.3878,3.6337,100,7.5862,1.4898,0.4361,1.1638,19.1484,8.9088,20.2398,53.2787,72.7749,0.6177,0.6177,10.2155,1.811,84.0249,73.3333,75,80,11.4274,2.4709 Coventry and Warwickshire ICB,M86039,Allesley Village Surgery,4848.519084,7.172,77.0186,80.3738,4.6941,75.1724,77.5281,3.9082,92.5926,5.6994,1.6568,1.1045,3.6078,12.4914,6.7889,17.2472,51.0638,60.8871,0.3611,0.8284,10.0131,4.0972,87.3423,83.6957,59.5745,78.7234,9.2206,2.3789 Coventry and Warwickshire ICB,M86040,Walsgrave Health Centre,4029.487877,5.8763,73.6364,72,4.0531,74.1497,79.0323,2.4367,100,5.6557,1.4716,0.4825,0.5904,20.5276,8.4911,14.7648,75.3061,87.7049,0.5308,0.6031,14.7918,0.5391,90.087,82.4324,80,92,9.4324,1.9783 Coventry and Warwickshire ICB,M86041,Clay Lane Medical Practice,9667.560323,4.6691,63.1313,55.5556,2.0394,47.0149,59.3496,1.9094,79,2.0029,1.7295,0.4099,2.0422,27.7101,7.5662,12.2763,64.475,79.4258,0.2799,1.0697,14.9627,0.0809,85.8353,87.5,64.8649,77.4775,18.9718,1.1097 Coventry and Warwickshire ICB,M86044,Park House,4175.988188,4.9703,69.7248,63.3803,2.1602,53.0726,73.0159,1.8876,91.8919,2.208,1.4052,0.0839,1.104,26.0636,7.7643,12.1644,65.7315,81.4815,0.4824,0.5873,15.1733,0.6033,85.5452,88.4058,73.3333,85,20.6877,0.9438 Coventry and Warwickshire ICB,M86045,Paradise Medical Centre,7624.588119,7.6638,51.087,53.2258,1.6108,46.0432,65.7658,3.0155,92.5,4.1175,1.0052,0.2706,1.9094,34.1773,14.0127,13.3247,50.2347,80.2198,0.5541,1.25,12.3028,0.0856,83.5866,82.4701,62.2642,81.761,12.3703,0.9665 Coventry and Warwickshire ICB,M86046,Copsewood Medical Centre,5562.245016,8.043,67.1053,70.8738,3.413,66.1458,73.913,2.2997,85.4839,8.2679,1.3871,1.4966,2.4249,21.1456,8.9131,16.0613,62.6591,79.7688,0.8031,0.7118,14.3649,1.5322,86.6521,85.1852,70.8333,84.7222,13.6404,1.6974 Coventry and Warwickshire ICB,M86048,Windmill Surgery,7873.101496,5.521,66.4384,57.1429,2.1407,66.7702,70.4918,2.0428,74.5455,3.2491,1.1865,0.1468,1.9856,31.7218,8.6376,11.5963,69.8511,85.9155,0.6483,1.1254,14.3256,0.4843,88.2353,89.726,61,84,16.7809,1.2355 Coventry and Warwickshire ICB,M86605,Limbrick Wood Surgery,3207.588244,5.4422,76.5957,80.9524,4.035,69.7917,83.3333,3.1271,91.3044,9.2249,2.69,0.6389,2.9065,21.7574,8.1429,16.1735,73.1183,77.9817,0.4708,0.7397,13.353,1.4888,89.6848,75,75,80.5556,14.5655,1.7821 Coventry and Warwickshire ICB,M86610,Dadhania Surgery,2910.811439,2.6913,60.8696,65.5172,0.6517,37.7907,71.4286,0.6778,73.1707,1.6955,0.4171,0.0782,0.9597,25.8599,4.2352,6.8561,77.9279,90.2439,0.1303,0.2346,9.7889,1.6014,76.2376,92.3077,92,92,11.8421,0.5214 Coventry and Warwickshire ICB,M86612,George Eliot Medical Centre,3588.941976,5.2632,50,42.8571,1.477,53.6424,64.7059,1.2478,87.2727,3.7629,0.6876,0.2037,1.7316,36.9405,8.8525,9.04,65.8537,88.8889,0.5857,0.6876,12.8871,1.1613,85.7558,88.7097,88.6792,88.6792,14.7902,0.5093 Coventry and Warwickshire ICB,M86617,Hillfields - Dr Bano,4355.76922,4.6855,60.2151,64.9123,1.6084,47.619,68.8889,2.331,75.5102,1.3703,0.676,0.3497,1.137,31.2474,9.905,12.1445,80.4196,85.8696,0.2797,1.0956,17.1137,0.6488,88.9224,90,82.1918,76.7123,15.8312,0.9557 Coventry and Warwickshire ICB,M86622,Govind Health Centre,3024.832521,4.7122,71.9626,70.3125,3.7781,56,75,3.958,92,8.0382,1.7391,0.5697,2.5496,13.5564,5.8824,13.7032,44.9153,55.3398,0.6897,1.0795,7.2592,3.745,84.0195,86.5672,56.6667,83.3333,10.772,1.979 Coventry and Warwickshire ICB,M86624,Coventry GP Group of Practices,11245.45008,5.3048,64.3902,60.2564,2.2234,54.2977,74.1259,2.0791,70.7602,4.6768,1.5105,0.2461,2.2035,33.0966,10.1206,13.094,69.6129,86.2069,0.5601,1.3748,18.4148,2.3853,88.1225,89.4558,90.3409,85.2273,18.1695,1.1711 Coventry and Warwickshire ICB,M86627,Stoke Aldermoor Med Ctre,5930.881421,6.5571,53.3333,38.75,1.3397,65.0376,67.0886,1.5413,84.9462,3.3456,1.4981,0.2449,2.2236,35.4847,9.216,11.6825,57.5163,78.2609,0.533,1.1092,17.8091,0.5666,82.8885,90.3226,62.6374,85.7143,20.1316,0.7347 Coventry and Warwickshire ICB,M86633,Edgwick Medical Centre,5053.104562,5.716,44.5946,56.338,0.9486,45.283,63.6364,1.6288,85.5263,4.2811,0.6802,0.0716,2.4251,37.8905,12.2022,12.8692,75.3086,90.1409,0.8591,1.235,20.49,1.1246,90.2548,92.5,91.9192,90.9091,16.6747,0.6623 Coventry and Warwickshire ICB,M86638,Woodway Medical Centre,7123.16696,6.8002,75.7009,74.4966,3.5214,69.8276,74.1379,2.8894,88.4058,3.137,1.7457,0.4515,2.0467,22.998,9.1268,16.012,61.5296,83.0846,0.7976,1.0685,18.3435,0.4225,90.1622,89.6,88.6364,93.1818,15.6844,1.9865 Coventry and Warwickshire ICB,Y00140,Torcross Medical Centre,2428.768646,6.6206,67.5,75.5102,3.0741,74.6032,76.9231,6.1015,94.7368,7.5688,2.6549,0.4658,1.5482,25.236,10.4308,16.1155,80.4511,87.5,0.2329,0.7452,20.1835,0.5394,93.6539,86.6667,94.2857,91.4286,15.0302,2.2357 Coventry and Warwickshire ICB,Y00996,Meridian Practice,3030.52732,1.2383,44.4444,41.6667,0.1758,62.963,78.5714,0.1977,100,0.2587,0,0.022,3.26,39.3851,2.2267,2.2847,61.5385,,0.0659,0.5932,7.6067,0,82.4468,100,94.1176,94.1176,22.3666,0.1538 Coventry and Warwickshire ICB,Y04882,Chaucer Surgery,3732.263031,6.6187,67.4157,73.5849,3.7979,68,74.4681,2.7358,84.6154,9.3014,2.5427,1.2552,2.1121,24.6085,9.2986,17.2514,63.2458,80.3419,0.515,1.4805,17.2218,1.3267,87.5,80.8219,65.1163,83.7209,20.1283,2.0277 Coventry and Warwickshire ICB,Y04884,Satis House,3199.258615,5.6854,74.1667,78.4091,4.8421,77.6596,75,2.8571,94.1177,6.6762,1.3534,1.0226,1.005,12.9907,7.4166,15.3384,75.1309,85.1563,0.2707,0.391,13.9986,1.7846,89.4886,82.6667,78.9474,84.2105,11.6661,1.9248 Coventry and Warwickshire ICB,Y04965,Alliance Teaching Practices,19664.90234,3.3006,54.4118,42.3077,1.4487,48.004,62.7615,1.0262,76.1905,2.1785,0.789,0.1897,1.2457,39.5806,5.705,7.8084,75.0797,80.5785,0.1897,0.927,11.715,1.7596,95.0613,82.5327,72.1053,86.8421,18.7831,0.8063 Coventry and Warwickshire ICB,Y04969,Camp Hill GP Led Health Centre,4681.859749,6.159,56,49.1525,1.7633,59.5,58.4906,1.7633,80.8989,3.925,1.9254,0.7499,2.0211,39.4498,6.8975,8.0868,60.0601,77.2727,0.5675,1.3174,17.0475,1.8018,85.0238,84.8101,67.3913,78.2609,28.6543,1.135 Coventry and Warwickshire ICB,Y06218,Brownsover Medical Centre,7363.771568,5.9486,72.1951,74.359,2.3627,69.8068,72.1429,1.6276,89.781,3.1345,1.0501,0.42,2.5269,15.6237,6.1461,10.4694,68.6636,84.4961,0.294,0.5461,11.0053,0.2834,88.1949,87.7049,67.8571,76.1905,18.0068,1.0081 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence Surrey Heartlands ICB,H81002,Knowle Green Medical,7393.485101,4.2739,69.9153,63.0952,3.1559,63.5328,69.7368,1.9526,83.6957,4.2799,0.9763,0.2497,1.7176,13.6385,6.5063,12.0559,51.6509,71.9626,0.2384,0.7038,9.4608,0.4398,76.2844,75.8621,61.6279,93.0233,12.1433,1.1239 Surrey Heartlands ICB,H81003,Sunbury Group Practice,18274.1136,6.0291,72.0768,66.0804,4.2995,68.8372,72.4719,3.0988,89.2857,4.4483,1.5153,1.0119,1.7314,14.4962,7.47,15.2999,64.1865,84.8617,0.43,0.8075,9.4093,1.3447,85.0871,85.5643,83.8095,91.4286,13.1319,1.8299 Surrey Heartlands ICB,H81004,Shepperton Medical Practice,13432.80792,6.5245,78.4519,71.0366,6.252,79.5252,81.2261,3.5929,90.5263,4.3378,1.749,1.5907,1.523,11.6745,7.2509,18.7718,59.2233,76.6575,0.1899,0.6331,10.5745,0.9205,87.7762,81.0277,76.1194,91.791,10.9631,2.4375 Surrey Heartlands ICB,H81005,Pond Tail Surgery,7019.351494,6.3697,71.1297,75.4717,5.1005,74.6193,74.4186,3.0903,85.0746,5.7251,1.5002,0.8551,2.218,18.4727,6.8114,14.1914,65.6821,77.0213,0.5701,0.7351,10.6919,0.8726,85.6968,82.4,81.9672,91.8033,13.2747,1.6202 Surrey Heartlands ICB,H81006,Austen Road Surgery,6859.215144,4.902,80.4511,75.5319,4.099,77.1626,87.7301,2.0969,96.4286,1.2908,0.7464,0.545,0.9572,7.0387,3.5362,10.8755,62.8571,81.4229,0.3317,0.7108,7.7447,1.148,86.9665,85.9155,75,92.5,7.7166,1.2913 Surrey Heartlands ICB,H81009,Studholme Medical Centre,15363.23267,5.653,73.062,73.5955,4.8252,72.1905,75.6757,3.2378,91.5385,6.7056,1.7197,0.8315,1.0887,13.276,8.9025,17.6504,73.1968,83.6141,0.3906,0.8126,13.7898,3.8383,86.9443,80.4245,79.7101,92.2705,11.8403,2.148 Surrey Heartlands ICB,H81010,Guildowns Group Practice,17873.17431,4.7166,71.2963,64.9832,2.4597,51.2141,73.1225,1.3803,94.9239,2.8375,1.1075,0.7263,2.3464,9.9712,4.2374,8.9439,67.5784,79.1139,0.4414,0.7022,8.6493,1.3576,85.9258,80.4714,87.5,96.25,12.4487,0.9991 Surrey Heartlands ICB,H81011,Nork Clinic,7659.102721,5.3118,75.3968,73.3333,3.7245,73.1449,76.9231,2.2136,95.3488,3.2111,1.1947,1.2064,0.4413,6.5625,6.4935,13.1764,65.3477,74.2268,0.4919,0.5388,7.9136,0.3302,87.0887,79.8246,77.7778,90.1235,8.8111,1.3703 Surrey Heartlands ICB,H81015,Chobham & West End Medical Practice,9156.186506,5.5835,77.2861,79.661,4.3511,71.3855,72.5962,2.6477,92.1569,3.4029,1.0461,0.8795,1.1464,6.5103,5.7531,12.4884,62.3482,84.7645,0.3148,0.4721,12.6463,2.1488,83.885,81.7568,77.5281,89.8876,9.2944,1.7775 Surrey Heartlands ICB,H81016,Fairfield Medical Centre,10594.09011,6.1333,82.2542,85.461,7.3201,79.1837,84.1629,3.5056,92.7273,5.0593,1.4196,1.2651,1.3375,6.9829,6.0759,17.7788,67.7733,82.5083,0.2994,0.6374,11.933,1.1014,86.8461,79.7101,87.0968,97.8495,7.6356,2.7523 Surrey Heartlands ICB,H81017,Ashlea Medical Practice,19809.65232,5.6793,74.4327,79.5556,5.1894,71.2934,72.89,2.9462,86.875,3.2971,1.2812,0.9023,2.0653,8.0223,5.9429,14.7607,64.6479,77.136,0.653,0.9472,7.1291,0.4805,84.4436,81.6393,77.5862,91.3793,9.158,2.1735 Surrey Heartlands ICB,H81019,Sunny Meed Surgery,11169.16408,5.5888,70.2006,65.098,3.6534,68.4739,72.6872,2.1799,92.126,3.9229,1.3596,0.6304,1.1588,11.013,6.3748,11.8335,72.0066,85.879,0.2431,0.6152,12.9654,0.3025,87.0005,78.6364,76,92,11.1483,1.4583 Surrey Heartlands ICB,H81020,Fort House Surgery,10796.05472,5.7183,78.0702,74.812,4.3716,82.3158,80.3279,1.9505,94.6903,4.6784,1.017,0.5996,1.0773,9.0789,5.421,11.9308,70.5,80.3763,0.2429,0.5996,8.3308,0.9214,87.0946,76.6839,83.871,92.4731,7.5098,1.609 Surrey Heartlands ICB,H81021,The Mill Medical Practice,14538.41573,7.2059,75.1663,79.085,4.3591,74.5552,75.0929,2.1042,97.6879,4.5801,0.9888,1.1757,1.4117,8.5435,5.672,15.3503,64.6742,79.8258,0.41,0.6934,8.2859,4.2731,79.8423,75.3138,74.5902,85.2459,8.9351,1.4711 Surrey Heartlands ICB,H81022,Chiddingfold Surgery,5046.974309,7.0941,76.9634,75.188,4.7833,77.7778,80.531,3.1433,89.5833,7.0115,1.5619,1.5228,2.5006,9.5449,6.2152,18.606,74.9644,80.4,0.2343,0.7614,23.1184,0.742,89.305,77.6596,86.9565,95.6522,8.5166,2.2257 Surrey Heartlands ICB,H81023,Lingfield Surgery,11736.57029,5.3022,74.0554,69.4545,5.4127,79.321,79.8246,2.9743,95.8333,5.4349,1.7685,1.2326,1.1694,14.3476,6.486,13.4066,69.6043,78.6632,1.0182,0.5359,9.0767,0.5818,89.9929,77.7251,90.3226,89.2473,13.2658,1.9561 Surrey Heartlands ICB,H81024,Goldsworth Park Health Centre,11758.56778,5.4952,73.8693,67.4074,3.414,60.2105,69.163,2.6715,88.189,6.0969,1.4314,1.2477,2.1899,11.3473,6.7488,13.962,64.916,81.5657,0.4822,0.7731,10.3994,1.0851,83.659,86.8726,79.6992,90.2256,11.2143,1.6228 Surrey Heartlands ICB,H81025,St John's Family Practice,10779.50146,6.3239,76.8448,70.3008,5.452,73.4756,80.9091,3.1369,92.5373,6.4395,1.5198,1.1399,1.4728,9.1418,6.796,17.0628,74.5739,86.6157,0.539,0.6627,13.4487,0.5302,88.5646,81.6144,87.3874,93.6937,9.449,2.3416 Surrey Heartlands ICB,H81026,Binscombe Medical Centre,11401.50363,7.489,75.2717,81.5094,4.5184,76,76.4706,3.1113,94.4,3.6256,1.3984,1.0837,1.6709,10.0636,5.7223,13.9836,51.8094,71.0921,0.4982,1.11,8.7802,1.2146,83.6182,76.7568,61.7021,84.0426,10.8007,1.8179 Surrey Heartlands ICB,H81028,Dorking Medical Practice,12367.24619,7.4277,73.1868,74.4262,4.7399,71.9745,73.5772,3.655,90.5882,3.4221,1.8853,1.2005,0.8634,10.3706,5.8157,17.9635,65.2233,75.0923,0.5958,0.9782,5.8755,0.7332,87.1424,82.8125,77.2277,84.1584,12.8653,2.41 Surrey Heartlands ICB,H81029,Dapdune House Surgery,11400.41003,6.299,71.0526,66.8161,3.163,59.2292,69.7436,1.9554,91.2621,3.2016,1.192,0.6155,2.487,11.2026,4.6563,10.79,58.5689,79.8419,0.335,1.2543,8.7509,2.1745,85.0031,78.2895,77.2727,85.2273,14.0624,1.0829 Surrey Heartlands ICB,H81030,Greystone House Surgery,21605.79242,6.0393,72.0207,71.5789,3.7524,63.4441,71.9844,2.2218,82.9787,4.5206,1.4318,0.8579,1.6318,11.7091,6.2404,11.646,64.4258,77.7778,0.827,1.0554,11.8598,3.083,82.7486,80.303,83.5249,92.3372,11.0654,1.4627 Surrey Heartlands ICB,H81031,Witley Surgery,9996.998646,6.8569,78.4916,73.5075,4.533,73.6686,78.8136,2.5979,93.9394,3.8596,1.3078,0.3711,0.7877,8.5481,4.8165,12.3708,56.7079,72.2063,0.9543,0.6451,17.1937,1.0839,89.6162,88.7218,63.3803,88.7324,9.242,1.4845 Surrey Heartlands ICB,H81032,Heathcot Medical Practice,14628.622,5.5857,72.5108,66.6667,3.3337,63.3229,73.0519,2.2556,85.7143,4.0721,1.056,0.6192,2.5658,9.9938,5.7462,12.1572,62.4929,77.4194,0.481,0.9067,11.2216,0.6061,81.8445,82.6923,76.3514,90.5405,8.9141,1.2273 Surrey Heartlands ICB,H81033,Chertsey Health Centre,21569.64178,5.4202,70.1258,65.0113,3.6155,71.8987,75.6614,2.241,88.8502,4.461,1.3972,0.7848,1.1254,14.9694,7.2689,13.2281,70.1645,82.4588,0.5625,0.8755,11.4843,0.4991,84.4916,85.4054,87.6106,93.8053,15.0508,1.7329 Surrey Heartlands ICB,H81034,Madeira Medical,8009.808264,5.0872,74.4681,72.3077,4.4644,76.5343,79.0419,2.8379,92.6829,4.1431,1.1441,1.7162,0.3453,7.9284,6.1197,14.0886,75.5191,88.5631,0.3029,0.7291,8.6728,0.5027,83.2919,88.1579,91.25,92.5,9.7756,1.7835 Surrey Heartlands ICB,H81035,Merrow Park Surgery,9671.214903,5.9215,76.8156,71.3178,4.0257,75.3181,76.0684,2.2587,92.7711,4.2038,0.8752,0.5001,1.5442,6.2818,5.7185,14.1274,77.7696,87.9765,0.3834,0.6918,11.4209,1.0886,88.1562,84.8315,89.4737,93.6842,8.5581,1.2752 Surrey Heartlands ICB,H81036,Parishes Bridge Medical Practice,9277.505768,4.3578,73.8854,72.3502,4.2275,67.9577,74.8663,2.3521,91.0448,3.0456,1.4817,0.974,0.7456,8.5643,6.3029,11.9677,73.0445,81.1728,0.2901,0.5906,9.6929,0.4982,80.8743,83.3333,82.7957,94.6237,10.9618,1.7718 Surrey Heartlands ICB,H81038,Littleton Surgery,2828.031171,4.2618,61.4754,50,4.5515,48,61.25,2.4632,75,3.3583,0.4016,0.8835,1.4998,6.0374,4.0934,11.4056,68.9769,60.1626,0.1874,0.5355,4.2713,0.369,74.1164,72.973,66.6667,76.1905,7.9675,1.3922 Surrey Heartlands ICB,H81041,Southview Medical Practice,9798.735042,5.4644,66.7954,63.4921,3.7828,59.9022,71.0383,2.1273,83.6735,4.2808,1.2116,0.9804,1.9329,12.5526,6.1151,14.3822,64.7922,78.3537,0.8047,1.3411,13.8978,1.2192,82.3685,83.237,80.6452,88.172,13.4964,1.7296 Surrey Heartlands ICB,H81042,Crouch Oak Family Practice,15818.38565,5.6962,70.0205,64.0351,3.5242,69.6,74.2373,2.4295,89.9522,3.1912,1.8967,0.7962,1.5178,13.5659,6.5504,14.4655,69.2267,80.7047,0.5034,0.9542,16.5038,0.9544,81.7182,77.5424,72.9412,89.4118,16.3801,1.6801 Surrey Heartlands ICB,H81043,Wonersh Surgery,9914.114188,7.7476,80.2703,78.3582,5.1117,77.0833,77.8261,3.0901,96.1539,5.4185,1.2322,0.7894,1.3788,6.2014,4.907,14.9885,66.3348,80.9735,0.2984,0.799,7.3778,1.3662,87.967,76.6667,90.5405,97.2973,7.5329,1.7713 Surrey Heartlands ICB,H81044,Springfield Surgery,4798.609551,6.068,74.3169,73.0159,5.6556,74.4,79.2453,3.3096,97.0588,6.4308,1.3615,1.592,0.8006,7.5314,6.7857,17.3858,64.5439,81.5261,0.3561,0.4399,9.6591,0.9767,88.2597,64.7059,73.913,89.1304,8.1777,2.367 Surrey Heartlands ICB,H81045,Caterham Valley Medical Practice,9780.519546,5.4784,73.4219,71.028,4.3843,75.2688,79.6791,2.7437,90.1961,4.0415,1.3294,0.8297,2.0027,10.1609,5.9102,12.7475,65.2089,72.7554,0.6034,0.9052,9.3739,1.9528,86.3978,81.5476,80.6818,90.9091,10.9472,1.7443 Surrey Heartlands ICB,H81046,Wayside Medical Practice,6295.244455,5.2731,76.9663,67.8571,2.8558,70.0405,72.9167,1.7513,91.8605,4.1364,1.4831,0.9309,0.6053,13.7997,7.558,9.1985,48.0813,70,0.7416,0.2367,8.4948,0.51,84.5854,70.297,85.7143,89.2857,12.8917,1.2149 Surrey Heartlands ICB,H81048,Holmhurst Medical Centre,8846.117804,5.8496,70.6161,75.7396,1.8561,73.2697,79.6512,1.7235,89.2857,1.9045,0.8807,0.6534,0.6348,10.971,5.256,10.3125,69.0722,88.4259,0.5303,0.9943,6.6785,0.3992,86.2935,86.1111,81.25,87.5,9.8446,1.1174 Surrey Heartlands ICB,H81050,Wey Family Practice,10814.22537,5.1282,74,69.9153,4.2197,74.0566,77.8325,2.6681,94.6154,5.8222,1.1001,0.8045,0.9282,8.0119,6.2929,12.815,72.5507,78.7383,0.5008,0.6896,8.9864,0.8273,85.3671,81.3278,82.8571,88.5714,10.3028,1.8389 Surrey Heartlands ICB,H81051,Derby Medical Centre,13001.11513,6.269,72.9885,72.6563,3.9452,65.2751,74.8954,1.8943,93.1298,3.1242,0.8994,0.7359,1.4794,10.7165,5.6397,12.8168,71.9858,81.9533,0.402,0.4974,8.6154,0.8729,91.3058,86.5979,85.4701,94.8718,10.2126,1.4037 Surrey Heartlands ICB,H81052,Cranleigh Medical Practice,18133.4946,6.4011,78,76.2626,5.2187,70.9677,75.4777,3.3994,83.4286,5.7184,1.2685,0.9736,1.0441,7.723,5.8903,16.0621,57.8683,77.8396,0.5897,0.7066,9.7497,1.0754,77.036,78.344,69.7368,88.8158,9.0848,2.1253 Surrey Heartlands ICB,H81053,Villages Medical Ctr,7925.965254,6.041,77.8481,74.1228,5.3518,81.8548,83.8542,2.5606,92.0455,5.4306,1.2111,0.5882,1.0603,10.5123,5.9139,16.2745,69.6051,86.3354,0.2768,0.5306,14.0994,0.5794,89.2017,82.7586,88.5714,94.2857,9.367,1.8801 Surrey Heartlands ICB,H81055,Hawthorns Surgery,9717.930805,5.6797,73.1959,79.602,4.4205,66.2461,72.5,2.925,84.2105,6.7983,1.4075,0.7917,0.9594,11.9533,7.0626,15.1089,69.4611,76.0753,1.0996,0.9127,6.1266,0.7137,84.4103,81.7204,71.2766,90.4255,11.6323,2.1333 Surrey Heartlands ICB,H81056,Oxted Health Centre,16420.87059,7.0513,77.2085,70.2233,5.911,76.2846,76.5537,3.88,95.0311,6.1228,1.5203,1.2562,1.5696,10.1749,5.4088,16.3066,71.148,75.1263,0.6633,0.5518,7.2333,2.8702,83.63,85.3333,84.3478,93.0435,9.6209,2.3832 Surrey Heartlands ICB,H81057,Fordbridge Medical Centre,7335.354684,5.864,70.3863,64.2857,4.3429,69.2042,74.4681,2.3804,92.1569,2.7245,1.8612,0.5698,1.2356,13.8274,7.8729,14.6746,57.83,71.3208,0.3039,0.8357,14.3197,0.6559,85.2532,89.1304,87.6289,92.7835,14.8212,1.646 Surrey Heartlands ICB,H81058,Woodlands Road Medical Centre,9539.913303,6.3221,72.6619,76.9608,4.1184,66.573,74.4681,2.9504,91.1765,6.1251,1.5708,0.4934,1.9356,12.1717,8.184,13.765,72.0459,88.412,0.7653,0.725,8.188,0.9024,81.5249,86.1751,74.359,94.0171,10.6563,1.5708 Surrey Heartlands ICB,H81061,Hillview Medical Centre,12457.24696,5.1463,77.2989,68.6347,3.1457,71.5134,77.9592,1.9411,91.5842,3.1561,0.93,0.7927,1.4281,10.9714,5.588,10.4107,66.8386,82.6367,0.4244,0.7053,11.9931,0.4827,86.5125,84.3902,77.6,92.8,11.2227,1.3794 Surrey Heartlands ICB,H81062,Haslemere Health Centre,17676.79152,7.363,73.906,70.4698,5.3172,73.2601,76.1421,3.4789,94.7761,3.8913,1.2344,1.0581,2.212,7.2446,5.3755,15.7217,67.197,80.9938,0.1603,0.7481,9.037,1.2766,88.5975,79.8479,59.0909,91.6667,8.8648,2.0414 Surrey Heartlands ICB,H81064,Fairlands Medical Practice,13680.08056,6.9676,76.3214,72.0497,4.5076,76.5517,77.907,3.0051,88.5496,5.3906,1.5097,0.9257,1.4172,10.5224,6.8862,15.4881,67.0412,70.3316,0.3418,0.6694,10.9337,0.7568,83.1559,77.6271,73.4848,87.1212,10.7043,1.588 Surrey Heartlands ICB,H81065,Hersham Surgery,9222.285925,5.7612,67.4699,71.9298,4.5625,74.581,72.4359,2.6767,96.4539,6.027,1.7845,1.1051,1.216,10.2142,6.0219,14.6102,67.8315,87.1795,0.1724,0.5982,9.5691,1.476,85.1756,79.3296,88.0952,92.8571,10.426,2.0582 Surrey Heartlands ICB,H81066,Grove Medical Centre,12974.88651,5.3346,71.1944,68.8474,3.2642,70.3214,76.4505,2.541,90.7801,4.8092,1.2673,0.6272,2.2684,11.5642,6.139,12.5704,59.947,74.5614,0.5056,0.7232,10.42,1.1021,83.5778,89.1228,82.8571,96.4286,10.8056,1.5937 Surrey Heartlands ICB,H81067,Cobham Health Centre,12672.40755,4.3896,67.696,64.1447,4.9036,64.5669,68.3636,2.4375,93.6842,3.6749,0.9535,1.4553,0.5211,9.9828,4.4969,11.1621,67.1815,83.4933,0.2868,0.6237,6.1249,1.8875,76.3409,82.8221,90.3226,95.6989,8.6396,1.8926 Surrey Heartlands ICB,H81068,Brockwood Medical Practice,13168.68442,6.2126,75.6539,78.0186,4.7256,77.044,75.6272,2.9648,87.9518,2.6927,1.5152,1.8264,1.2827,11.7324,6.7561,19.3858,69.1638,82.3256,0.3604,0.86,6.6288,1.7156,82.3564,78.9216,85.8268,96.8504,10.246,2.1376 Surrey Heartlands ICB,H81070,Heathcote Medical Centre,11330.07899,5.1257,77.7538,79.6238,4.9062,71.9512,78.9063,2.7162,93.421,2.5521,1.3072,0.9931,0.3112,9.0144,6.2034,16.3484,66.6902,80.0781,0.3056,0.4499,10.1255,0.5024,79.8379,85.5491,84.0708,93.8053,9.7524,2.1136 Surrey Heartlands ICB,H81071,Ashley Centre Surgery,9460.566173,6.634,65.8451,72.8155,3.7299,66.8435,75.1323,2.6448,88.6364,3.0795,1.1529,0.6297,1.8065,11.4862,6.5863,13.3986,76.4444,87.2093,0.4457,0.9882,8.984,2.2832,77.5382,80.1047,93,97,10.1348,1.5792 Surrey Heartlands ICB,H81072,Medwyn Surgery,12941.09035,7.6303,73.1235,69.9324,3.6497,73.617,75,2.8994,93.4307,3.4815,1.4278,0.8378,1.1944,10.0575,5.5748,13.9142,75.017,83.524,0.3497,1.0855,5.8426,0.6055,88.7573,85.3261,88.2883,95.4955,11.7015,1.7265 Surrey Heartlands ICB,H81073,Church Street Practice,14870.34883,4.8767,69.6658,65.7143,4.4006,67.3469,71.0526,2.0179,92.7835,4.6359,0.6701,0.7967,0.8853,6.7529,4.5378,12.2859,61.8723,75.1579,0.2234,0.5361,5.0928,0.5343,75.027,79.1411,77.381,86.9048,7.4445,1.452 Surrey Heartlands ICB,H81074,St Stephens House Surgery,6381.383509,6.0902,79.2271,75.7143,4.8881,79.2271,78.2609,3.1521,93.3333,4.0118,1.0964,1.0203,0.7473,5.594,6.2864,14.2988,66.8613,79.1339,0.5939,1.0203,12.822,0.699,90.2916,84.5455,89.6552,96.5517,6.6434,2.4669 Surrey Heartlands ICB,H81076,Grayshott Surgery,13654.73245,6.479,78.7449,73.5119,5.8618,70.3583,74.8175,4.1684,91.0256,5.1056,1.2212,1.7097,1.0015,7.3076,6.0031,18.3017,63.0573,71.8289,1.2782,0.9932,7.9922,1.1489,87.123,83.0579,60.5505,90.8257,7.4685,2.532 Surrey Heartlands ICB,H81077,Shere Surgery & Dispensary,7342.835579,5.9119,75,76.2931,4.4584,73.7113,75.6477,2.6775,89.1892,4.6765,1.6962,0.7027,0.4447,9.6114,4.2993,13.4117,68.7192,84.7458,0.2665,0.739,6.3631,3.1274,87.3005,70.6897,82.3529,92.1569,7.102,1.7688 Surrey Heartlands ICB,H81078,Glenlyn Medical Centre,16254.91211,6.1188,68.8623,65.4155,4.1907,70.0355,75,2.4612,89.172,3.9602,1.2528,1.0144,1.1718,8.0338,5.3803,14.2073,56.6994,84.2857,0.4934,0.9368,7.3486,0.4684,79.3298,80.2575,87.4074,93.3333,10.0295,1.6408 Surrey Heartlands ICB,H81080,Longcroft Clinic,11418.27301,6.7745,78.7081,76.2411,6.7805,77.3077,75.3191,3.4436,84.507,6.7425,1.5132,1.7267,1.712,8.4817,6.8424,20.293,66.3883,71.145,0.4947,0.7566,10.0141,1.1453,89.5171,83.2558,86.9159,92.5234,8.5539,2.5997 Surrey Heartlands ICB,H81081,Tadworth Medical Centre,11112.31381,6.3402,73.8562,73.3645,5.7323,72.9299,74.5763,3.2213,89.5238,5.1259,2.1209,1.8607,1.8732,14.2678,7.2169,16.2865,75,85.307,0.5602,0.9404,12.6313,2.5892,88.403,74.1117,84.7619,91.4286,12.8719,2.371 Surrey Heartlands ICB,H81084,The Horsley Medical Practice,8544.317651,6.8252,82.0707,80.4348,6.0405,74.8,80.2521,3.4572,97.9592,4.441,0.5858,1.1524,0.8499,5.4568,4.1608,14.0882,75.4455,84.2451,0.2593,0.4802,4.8839,2.0331,91.2838,73.7226,85,95,5.0413,1.7766 Surrey Heartlands ICB,H81085,St Luke's Surgery,8838.942854,5.6146,79.5527,77.5,4.1933,74.4125,80.786,2.234,95.6044,4.3575,0.461,0.6915,1.1116,6.7989,4.7619,11.711,77.1429,83.871,0.2748,0.8067,8.3704,2.4803,90.8349,80.6667,90.411,95.8904,6.271,1.5337 Surrey Heartlands ICB,H81086,Thorkhill Surgery,4275.757481,5.8286,76.3006,68.4685,4.7353,70.1149,71.5596,2.5794,90.2439,4.5234,0.924,0.4042,1.7753,5.352,4.4258,11.5688,72.8992,81.6,0.5967,0.847,5.9095,0.4348,80.3813,79.6875,8.8235,85.2941,8.1656,1.4822 Surrey Heartlands ICB,H81087,St David's Family Practice,14611.29789,5.0851,59.3272,54.5064,2.0947,64.4628,72.381,2.5005,89.375,4.2025,1.5055,0.7528,1.1602,24.7302,9.1086,13.3338,55.1925,78.9474,0.4844,0.8051,14.2747,0.214,80.3795,84.273,76.7327,90.5941,19.3025,1.4663 Surrey Heartlands ICB,H81089,The Wall House Surgery,18572.34764,6.9011,72.6577,69.3046,3.7207,78.4191,78.4615,1.9604,90.1235,4.184,0.9779,0.6868,2.5743,8.9933,4.6158,12.0582,76.4442,85.5366,0.3411,0.6823,9.2181,1.6818,90.7721,78.3582,90.2985,94.7761,9.1429,1.4192 Surrey Heartlands ICB,H81090,Woodbridge Hill Surgery,12483.57865,5.5807,68.5121,69.6262,2.5063,55.9649,75.1323,1.8362,86.1539,2.574,1.2048,0.3672,2.2195,11.3421,4.4353,10.3022,58.0123,75.0831,0.4639,0.7732,9.7488,1.1158,84.8927,85.0575,75.4717,87.7358,14.1808,0.844 Surrey Heartlands ICB,H81091,Spring Street Surgery,7966.562516,6.6224,74.3802,70.7602,4.227,75.641,78.1457,2.5977,94.958,5.3256,1.4697,0.7178,1.7208,8.348,6.2409,14.0937,73.9505,79.2208,0.2621,0.6266,10.3842,1.6875,86.0114,82.8221,85.8974,93.5897,9.5528,1.7888 Surrey Heartlands ICB,H81094,The Red Practice Walton,9222.870814,4.5788,72.5694,71.9457,3.7515,70.8333,73.0392,2.2319,94.3548,3.5423,0.9593,0.8358,0.4563,11.3016,6.1626,11.777,62.4468,73.3333,0.1994,0.7788,8.7896,1.0821,84.6306,77.9221,83.6957,91.3043,11.4619,1.4911 Surrey Heartlands ICB,H81095,The Yellow Practice,3696.308552,4.099,68.2927,68.8312,3.6345,71.6667,72.0588,2.3105,88.5714,6.4755,1.4278,0.7009,0.741,11.9052,7.5406,17.4714,75,84.4721,0.4154,0.7009,9.4394,0.7895,81.1435,87.6405,83.3333,90.4762,13.2541,1.5317 Surrey Heartlands ICB,H81099,Esher Green Surgery,9574.204177,5.3535,76.178,69.4352,3.5157,69.4064,73.4545,1.7351,92,3.3821,0.5683,0.5834,1.2559,7.4714,3.9759,10.9714,46.2634,63.2716,0.2425,0.4546,5.6171,0.2054,79.4038,78.0303,64.7887,85.9155,7.8105,1.5608 Surrey Heartlands ICB,H81103,Eastwick Park Medical Practice,7562.64085,5.9979,80.0699,79.8995,6.742,76.0563,78.3951,3.0383,89.7959,4.9198,1.2932,0.7282,2.0434,6.3504,5.9886,14.2624,74.5238,84.4595,0.9667,0.9291,9.8082,0.4617,82.4728,85.6115,91.4286,95.7143,6.7453,2.2348 Surrey Heartlands ICB,H81104,Stanwell Road Surgery,7722.274156,4.7608,69.1358,66.3043,3.3408,62.8483,71.9512,2.3464,80.1587,4.362,1.4749,0.324,1.3454,15.2015,7.4727,13.1173,52.9351,69.4581,0.4469,0.6704,13.5817,1.5836,86.7764,87.7419,81.25,87.5,15.2153,1.5084 Surrey Heartlands ICB,H81107,Oxshott Medical Practice,5610.461435,4.653,72.9167,70.9497,5.2082,68.2203,73.4104,2.1764,82.8571,3.8206,0.4152,0.9309,1.412,4.7926,3.3057,11.3725,70.8723,83.9695,0.2642,0.4529,2.99,2.6258,77.4227,83.0986,71.4286,85.7143,5.8174,1.7487 Surrey Heartlands ICB,H81109,Capelfield Surgery,6459.317473,6.6775,78.4387,71.5736,5.5336,78.7879,83.3333,2.722,86.2069,4.9516,1.1885,0.6773,0.9182,5.0612,4.331,13.0096,70.2889,88.3161,0.2428,0.5751,7.0503,0.9044,90.6823,81.7204,91.4894,95.7447,7.1037,1.9297 Surrey Heartlands ICB,H81111,Virginia Water Medical Practice,4491.849411,4.7824,76.087,67.6259,4.8324,74.5455,79.3388,3.2772,75.5556,7.7548,0.8887,1.0739,0.5805,6.0754,6.2814,16.4784,76.4079,88.412,0.6851,0.611,11.1447,1.1259,90.0686,89,94.1176,100,6.8887,1.9441 Surrey Heartlands ICB,H81113,Leith Hill Practice,8500.493833,6.5737,76.2463,75.5656,4.9612,76.7123,77.5281,2.6961,92.4242,4.5906,1.6373,0.8371,0.1608,13.2832,5.7798,16.2378,80.0201,90.0929,0.1354,0.8125,7.5585,0.2232,91.0132,80.1471,89.8551,94.2029,12.4912,1.8097 Surrey Heartlands ICB,H81116,Elizabeth House Medical Practice,6012.9384,6.8011,81.106,72.1088,5.7234,78.3626,80.3279,3.9778,87.5,8.6637,1.712,0.7889,0.7972,10.497,7.2878,16.3478,68.088,83.8057,0.5371,0.6714,11.8313,1.6206,87.8272,79.1946,93.3333,95,9.6601,2.4337 Surrey Heartlands ICB,H81119,Warlingham Green Med Prac,19119.45408,6.1492,73.2441,65.9142,3.9057,77.3533,80.1508,2.5653,89.3162,5.0677,1.3019,0.6918,1.6484,11.801,7.1342,14.1766,74.6414,85.8864,0.4324,0.7734,10.5276,0.679,89.2932,84.2482,88.0952,93.8095,12.7971,1.5421 Surrey Heartlands ICB,H81122,Hythe Medical Centre Surgery,6937.533385,4.5071,70.7317,64.2424,3.1991,60.6557,69.6552,2.299,83.3333,4.0444,0.9488,0.4744,1.9158,13.3196,6.1102,11.2882,67.9677,73.5135,0.1946,0.596,8.9859,0.2392,80.8653,88.1818,79.1667,87.5,13.7423,1.2772 Surrey Heartlands ICB,H81123,Sheerwater Health Centre,2717.262783,6.3498,66.129,67.3913,1.2971,69.6,80.4878,1.8981,84.4444,2.658,1.1389,0.2847,0.3486,22.7547,10.2433,12.0532,73.1928,83.6735,0.8542,0.4113,16.8627,0.9162,92.1348,81.6667,85.4167,97.9167,14.2919,1.2338 Surrey Heartlands ICB,H81126,Tattenham Health Centre,7460.577719,6.8704,78.9091,77.5401,5.5628,81.6239,83.4395,2.7097,96.7742,5.4067,1.6806,1.9411,1.3394,8.9568,6.3878,17.4179,73.7436,83.7017,0.5211,0.951,13.9824,2.3774,90.3911,78.4722,89.7059,95.5882,9.3325,2.1626 Surrey Heartlands ICB,H81128,Vine Medical Centre,7026.195808,5.8889,75.8491,69.7802,4.9585,74.3295,78.125,2.8037,89.8734,4.9113,1.2461,1.2591,1.4455,8.391,5.1931,13.6033,71.6667,86.194,0.2336,0.7009,7.5394,1.797,86.7077,84.6154,80,85.4545,9.5352,1.8043 Surrey Heartlands ICB,H81129,Pirbright Surgery,3635.642807,5.3871,77.9661,76.9231,3.4431,75.4098,77.7778,2.16,89.4737,3.4551,1.0265,0.4491,0.6742,6.3038,4.6209,12.2113,76.3044,88.2883,0.1497,0.3849,12.809,0.5109,92.2672,79.3103,93.3333,100,8.2012,1.2832 Surrey Heartlands ICB,H81131,Dr S Morcos,3448.311452,4.3418,64.8148,68,3.2978,66.2069,68.6567,2.3371,85.7143,5.2666,1.0127,0.6492,0.2926,11.5564,7.4039,14.0223,69.0909,91,0.9089,1.0647,7.7048,1.9882,81.851,85.2941,74.359,89.7436,13.0435,1.1685 Surrey Heartlands ICB,H81132,Guildford Rivers Practice,1280.58302,5.4945,59.6154,64.5161,3.3314,57.4468,57.1429,1.7534,100,1.8068,0.6429,0.2338,1.7373,9.2469,4.4797,11.806,36.3095,41.1765,0.2922,0.3507,3.3357,0.1421,69.2029,72.7273,,,8.3559,1.4611 Surrey Heartlands ICB,H81133,The Integrated Care Partnership,29154.06393,6.1089,76.1122,69.6801,4.9597,65.5838,71.0443,2.5506,92.6357,4.9918,1.0913,0.6888,1.281,8.974,6.5087,16.4989,64.5767,72.8034,0.7391,0.7988,7.3456,1.7518,85.4541,79.6262,67.0034,92.2559,10.051,1.6637 Surrey Heartlands ICB,H81134,Staines Health Group,11957.75148,5.7839,74.1206,76.6784,4.5734,63.8344,74.7934,2.744,89.3805,4.4259,1.5296,0.7686,1.6749,12.9597,7.2531,15.3805,62.1711,80.0416,0.2921,0.8532,13.3995,1.7121,84.2806,79.0514,76.8116,88.4058,11.8686,1.7832 Surrey Heartlands ICB,H81618,Molebridge Practice,6538.30198,6.7703,72.3757,64,4.7426,75.4902,73.2143,3.0372,83.0509,5.3806,1.7703,1.5592,2.6505,9.3233,6.9676,15.9656,72.381,84.2742,0.6009,1.0232,11.4986,0.7516,90.6261,83.3333,86.7647,92.6471,14.4458,2.1926 Surrey Heartlands ICB,H81632,The Orchard Surgery,2742.719879,5.6172,69.7674,65.5172,4.3133,73.7864,76.5957,3.8992,96.5517,3.7909,1.4148,0.4831,1.6994,13.5467,9.2784,14.5273,74.7634,88.4615,0.1725,0.6556,14.597,0.6206,88.3384,82.4324,80,90,10.6586,1.8634 Surrey Heartlands ICB,H81638,Smallfield Surgery,37362.4938,6.3757,73.4349,68.5749,4.6422,73.1801,75.8065,3.0845,88.1443,5.9097,1.3588,0.9739,1.8072,15.0015,7.1438,14.7714,66.1607,79.4023,0.9067,0.9274,13.0396,1.5023,86.781,77.3467,81.5013,88.7399,63.8,1.9711 Surrey Heartlands ICB,H81641,The Practice College Road,2977.653312,5.4286,46.875,34.8837,1.2332,45.7746,58.1395,2.6542,79.3103,1.4207,0.4021,0.1072,2.1136,19.9329,11.3466,9.4906,42.5466,59.375,0.6166,1.0724,11.088,0.1267,78.319,87.3418,60.9375,76.5625,12.5981,0.697 Surrey Heartlands ICB,H81642,Upper Halliford Medical Centre,4117.678309,3.6021,69.4215,60.241,2.4824,70.1754,74.6667,2.5051,85.7143,1.2879,1.2526,0.7743,1.4883,15.3176,6.9977,15.304,73.2314,83.2215,0.3872,0.5694,7.241,0.3827,86.835,88.4615,79.1667,89.5833,12.4364,1.708 Surrey Heartlands ICB,H81643,Maybury Surgery,2646.268267,3.7156,49.0196,45,0.8309,61.5385,68.2927,2.1174,94.9153,2.033,0.3484,0.1608,1.2618,19.5216,9.1784,8.0675,68.0147,75.8621,0.9113,0.7237,15.0368,0.2878,82.5496,88.8889,90.3846,92.3077,13.5409,0.5629 Surrey Heartlands ICB,H81644,Fountain Practice,8661.731729,6.1605,73.6434,68.3938,3.5948,64.0288,69.8864,3.0895,80.5556,4.703,1.4012,1.5505,1.705,9.0188,6.9627,14.0462,49.4104,68.5333,0.3446,0.5972,9.5766,0.5573,74.4792,74.3902,76.3441,84.9462,10.7508,2.3315 Surrey Heartlands ICB,H81656,Shadbolt Park House Surg,7138.341039,5.2071,75,80,5.4272,68.8995,78.6667,3.1033,90.3846,3.5499,1.4055,0.5706,1.6888,6.1957,7.7799,18.87,63.5918,72.997,0.167,0.6819,8.3578,0.5271,87.1562,83.3333,82.1429,90.4762,8.2686,2.2266 Surrey Heartlands ICB,H81658,New Ottershaw Surgery,5585.169348,6.7365,81.5166,73.0769,5.256,76.7568,82.2222,3.521,89.3617,5.9604,1.6159,0.7484,1.7481,9.9545,7.2156,16.4654,70.4324,87.251,0.3742,0.5783,10.8046,1.2237,92.9404,85.7143,91.6667,96.6667,8.838,1.9391 Surrey Heartlands ICB,H81663,Ashley Medical Practice,2889.301099,2.9073,58.9041,54.717,1.3793,57.3171,60.7143,1.0217,89.5833,1.2671,0.5364,0.894,0.967,10.2473,4.5947,6.3346,65.5738,86.1539,0.2299,0.894,4.4015,0.3646,69.0014,87.5,62.963,85.1852,12.9093,0.7918 Surrey Heartlands ICB,H81672,Lantern Surgery,5411.669563,6.1828,73.4568,67.4603,4.7291,75.5102,74.5902,2.3405,93.617,5.664,0.9779,0.9939,0.9546,5.4343,4.5238,11.959,76.8482,83.6207,0.2565,0.5451,6.6398,0.5905,86.5837,82.7161,86.4865,83.7838,7.8062,1.6351 ICB name,GP code,GP name,Weighted population,Asthma: QOF prevalence,Bowel cancer screening coverage: aged 60 to 74 years old,Breast screening coverage: aged 53 to 70 years old,Cancer: QOF prevalence,Cervical screening coverage: aged 25 to 49 years old,Cervical screening coverage: aged 50 to 64 years old,CHD: QOF prevalence,Children who received at least 1 dose of MMR vaccine between the ages of 1 and 1.5 yrs,CKD: QOF prevalence,COPD: QOF prevalence,Dementia: QOF prevalence,Depression: QOF incidence - new diagnosis,Deprivation score (IMD 2019),Diabetes: QOF prevalence,Hypertension: QOF prevalence,"Last BP reading of patients (<80 yrs, with hypertension), in the last 12 months is <= 140/90 mmHg (denominator incl. PCAs)","Last BP reading of patients (80+ yrs, with hypertension), in the last 12 months is <= 150/90 mmHg (denominator incl. PCAs)",Learning disability: QOF prevalence,Mental Health: QOF prevalence,Obesity: QOF prevalence (new definition),Osteoporosis: QOF prevalence,"Patients (aged 45+ yrs), who have a record of blood pressure in the last 5 yrs (denominator incl. PCAs)",Patients with diabetes and a history of CVD (excl. haem. stroke) treated with a statin (denominator incl. PCAs),People with type 2 diabetes who have received an annual foot check,People with type 2 diabetes who received a cholesterol check,Smoking: QOF prevalence,Stroke: QOF prevalence Cheshire and Merseyside ICB,N81011,Bevan Group Practice,15752.79857,6.9103,69.7856,82.4022,4.9578,76,74.3151,3.7715,86.087,2.6514,2.5921,0.7132,2.2751,24.0935,7.704,17.4998,76.1836,81.9957,0.4732,0.7749,14.9162,0.2942,91.6548,82.6087,86.875,92.5,11.8903,1.8995 Cheshire and Merseyside ICB,N81019,Castlefields Health Centre,18413.76233,9.5881,68.7961,71.6783,3.5827,72.093,73.0924,4.2824,87.3563,4.9188,4.0445,0.8047,1.867,44.9929,9.8145,17.5915,73.4629,88.4106,0.9027,1.0076,19.1635,0.8816,90.5919,87.6147,92.9293,92.9293,20.3589,1.9523 Cheshire and Merseyside ICB,N81035,Fir Park Medical Centre,13862.24665,8.0546,73.1602,72.9032,4.7431,75.7333,77.7778,4.9733,91.2281,5.9275,2.4003,0.9289,3.4131,25.8442,8.1239,18.4299,66.8678,76.8496,0.5261,0.6165,17.9845,0.5002,90.6052,83.045,85.6164,93.1507,10.0639,2.3592 Cheshire and Merseyside ICB,N81037,The Beeches Medical Ctr,10345.72077,8.243,65.5949,67.1171,4.2988,70.3008,69.4611,4.2632,79.5181,3.8438,3.5269,0.8313,2.6634,32.7664,8.6063,18.1095,60.0778,77.5,0.8313,0.8075,19.6429,1.5033,89.7286,76.2376,81.1881,87.1287,16.4696,2.1138 Cheshire and Merseyside ICB,N81045,Peelhouse Medical Plaza,17039.51173,7.8379,67.2691,81.5476,4.5282,69.1211,70.5036,4.747,93.1373,5.4232,2.5521,1.0573,1.4929,29.4414,9.5061,18.2952,75.2859,86.9478,0.875,1.0136,17.2947,0.8063,90.0348,82.4428,74.8691,90.5759,14.6205,2.7782 Cheshire and Merseyside ICB,N81054,Weaver Vale Practice,11330.91658,8.3568,68.1529,73.3032,3.7091,67.0175,71.345,4.5197,92.9412,2.9314,3.5869,0.5108,2.5702,39.5872,8.6617,15.6469,64.0032,81.7647,0.8995,1.055,16.9769,0.3771,89.9071,86.4629,80.6122,83.6735,18.0287,2.2765 Cheshire and Merseyside ICB,N81057,Tower House Practice,15536.15228,7.8293,72.2343,74.8387,4.431,69.7789,71.8487,4.5308,96.1165,2.4814,2.5495,0.7756,3.4154,29.9415,8.8386,17.1556,61.108,77.8495,0.6451,0.7142,13.3786,0.5448,86.8936,82.1429,73.0539,85.0299,13.3297,2.2961 Cheshire and Merseyside ICB,N81064,Newtown Surgery,8359.828184,6.0311,64.8536,60.3896,4.2888,58.371,61.9048,4.5343,75,4.2734,3.5957,0.8087,2.5965,36.8127,9.7055,16.6787,52.7691,63.6364,0.8231,0.8809,14.2806,1.2625,85.7694,86.1111,66.3265,85.7143,19.6401,2.1227 Cheshire and Merseyside ICB,N81066,Grove House Practice,16985.36123,6.9911,65.6687,73.0408,3.978,68.0982,70.2703,4.4057,88.8889,4.7915,3.048,0.5906,2.0259,32.4819,8.8479,18.0436,65.3133,77.8061,0.6517,0.9911,14.1728,0.4901,85.1409,87.5332,65.9218,87.1508,16.5678,2.0908 Cheshire and Merseyside ICB,N81072,Murdishaw,9203.764115,7.6708,63.986,72.1311,3.8544,69.2308,70.1493,4.0678,98.5294,3.6743,4.4696,0.6152,2.4972,34.989,9.5059,15.7062,80.7065,87.0748,0.678,0.9416,18.8166,0.5088,88.6072,77.551,85.8407,92.0354,17.0841,1.7577 Cheshire and Merseyside ICB,N81096,Brookvale Practice,11159.96952,8.4449,65.6463,71.875,4.1931,73.5484,76.1589,4.5824,92.9293,5.3437,4.2821,0.5116,3.3168,39.4183,8.9488,18.7187,75.3775,85.625,0.4671,0.8675,23.5011,1.155,93.6794,84.7015,82.5243,94.1748,15.6957,2.0576 Cheshire and Merseyside ICB,N81119,Hough Green Health Park,5827.435422,6.44,63.5714,72.1649,3.6817,67.052,61.4458,3.6223,70.8333,3.881,2.6524,0.6334,3.7775,36.4785,8.8363,16.0728,56.315,83.4532,0.5344,1.1877,15.2652,0.6459,89.2108,77.8689,70.3125,84.375,20.1253,1.92 Cheshire and Merseyside ICB,N81619,Oaks Place Surgery,4271.101167,6.6797,59.3023,56.25,2.9291,65,63.6364,3.4687,83.3333,1.73,2.7235,0.668,2.3745,38.2634,6.6422,10.406,47.8992,79.1667,0.5139,1.1819,15.8752,0.6931,86.988,83.3333,86.1111,94.4444,23.5831,1.4902 Cheshire and Merseyside ICB,N81651,Upton Rocks Primary Care,2963.742496,6.048,70,68.4211,2.5765,73.2759,76.9231,2.9403,89.2857,2.1903,1.455,0.5759,2.6813,17.5986,5.8824,13.2768,47.3973,75.3425,0.4244,0.5153,10.574,0.346,86.2464,75,50,82.1429,11.6529,1.4247 Cheshire and Merseyside ICB,N83009,Wingate Medical Centre,16103.2598,7.636,62.1505,61.2378,4.2982,67.9487,69.1964,4.0999,69.8276,7.7188,4.1329,0.5455,2.2396,55.8714,9.6162,15.8704,68.1845,86.4542,0.6861,1.0994,18.125,0.3252,90.0975,91.2921,75.6757,95.9459,19.4685,2.2896 Cheshire and Merseyside ICB,N83013,The Health Centre Surgery,5564.725132,6.7856,74.3961,74.0741,4.0744,72.8477,76.8421,4.8475,75.5556,6.1732,3.1759,0.4179,1.7162,33.6907,8.7893,18.2616,65.9371,76.2238,0.7104,1.1074,14.3443,0.4929,89.3682,86.8421,70.9091,87.2727,14.1726,2.4237 Cheshire and Merseyside ICB,N83014,Dinas Lane Medical Centre,14115.10096,7.5515,67.2365,74.6212,4.5221,67.655,65.566,4.2605,71.7391,5.7704,3.5598,0.7848,1.8798,43.5562,8.7732,17.6493,53.381,71.51,1.0838,1.1959,19.4884,1.8391,89.7897,84.7518,70.1613,86.2903,14.4306,2.1957 Cheshire and Merseyside ICB,N83018,Stockbridge Village HC,13020.25525,6.454,56.0784,60.0939,3.584,63.9731,63.4831,4.3301,69.8925,5.0857,4.4432,0.4748,2.5865,57.8151,9.0766,14.2001,75.3286,77.1536,0.7688,1.0741,12.6562,0.4517,86.866,86.9198,71.5517,81.0345,23.3883,2.2838 Cheshire and Merseyside ICB,N83024,Park House Medical Centre,10062.10842,8.1766,71.4286,70.9677,4.8993,74.7212,80.9859,4.1159,89.2857,4.1912,2.7978,0.5844,2.3285,32.7342,8.7615,17.9682,62.1225,72.028,0.6715,0.8083,16.9202,1.7836,88.8294,86.3095,80,81.9048,12.7614,1.7284 Cheshire and Merseyside ICB,N83025,Cornerways Medical Centre,16790.15011,6.71,59.601,56.3177,2.9172,66.9794,65.6388,3.6918,74.6032,3.4439,4.1385,0.2512,4.2435,59.182,8.3729,15.9327,40.1822,59.2834,0.6421,1.5772,19.9909,0.5991,86.9275,87.4194,44.3787,76.3314,33.9679,1.5423 Cheshire and Merseyside ICB,N83028,Aston Healthcare Limited,26812.8198,6.8148,63.5338,62.9423,3.69,67.2269,65.367,4.0061,69.4301,4.6571,3.428,1.0027,3.317,37.1479,8.0996,17.0769,45.6826,60.2528,0.6007,1.0523,21.577,0.5666,85.2673,80.8429,40.0735,68.75,16.6405,2.0279 Cheshire and Merseyside ICB,N83030,Dr M Suares' Practice,6178.864613,6.0757,71.2042,78.7879,3.3804,72.4324,69,3.919,78.6885,5.0416,3.0461,0.4086,3.9715,37.5974,8.0338,17.1991,67.3497,81.9588,0.3343,0.8915,15.2675,1.2621,90.124,91.1504,76.1905,84.127,13.659,1.9317 Cheshire and Merseyside ICB,N83031,Roseheath Surgery,3043.853085,6.2913,59.2593,59.6491,2.4763,69.6078,72.9167,2.9862,81.8182,2.5154,2.8041,0.3278,3.607,38.987,7.5139,14.9672,41.7582,42.5532,0.8012,1.7116,24.4898,1.2615,90.3194,85.4546,31.0345,79.3103,20.7582,1.5659 Cheshire and Merseyside ICB,N83032,Millbrook Medical Centre,15152.65755,7.7756,62.7604,57.3077,3.7059,70.1632,66.6667,4.5681,74.4828,6.8437,4.3359,0.6135,4.7172,49.6836,9.0003,15.2877,75.2795,84.188,0.7876,1.1358,20.3584,0.8244,91.4858,87.4627,80.1325,95.3642,17.8773,2.139 Cheshire and Merseyside ICB,N83033,St. Laurence's Medical Centre,7452.974021,7.0072,65.4167,66.8919,3.923,72.9885,72.381,4.3009,66.6667,5.8538,4.1929,0.5759,1.3917,56.146,10.6745,15.494,75.4717,83.1933,0.7378,0.6478,21.2282,0.2989,90.5441,87.7193,73.8636,90.9091,17.1036,2.1594 Cheshire and Merseyside ICB,N83043,Longview Medical Centre,5000.895738,6.2225,67.1533,73.1959,3.9364,71.0744,77.2152,3.6496,68.2927,5.1881,5.1877,0.5214,1.7186,43.0304,8.4557,17.2576,60.4869,72.6563,0.6778,1.3556,13.5214,0.4459,91.4641,80.9524,85.1064,89.3617,18.6167,1.6684 Cheshire and Merseyside ICB,N83047,Tarbock Medical Centre,6225.871887,6.183,82.8571,84.1727,5.8234,79.0123,85.1485,4.6278,80.7018,6.2366,2.4875,1.022,1.4996,26.8107,7.2706,19.5912,66.0305,90.4348,0.5399,0.5206,12.4732,1.3112,93.924,90.3509,87.2727,92.7273,9.8896,2.4103 Cheshire and Merseyside ICB,N83601,The Macmillan Surgery,8875.834007,8.0096,63.5468,61.1111,3.1813,72.069,68.75,3.9869,75.8333,5.7689,3.4954,0.3823,4.7498,54.9372,7.7668,11.3872,73.1444,86.0215,0.7646,1.0513,23.0391,0.6115,93.943,90,71.25,92.5,22.1926,1.7886 Cheshire and Merseyside ICB,N83603,Prescot Medical Centre,8440.832571,7.1337,65.8654,70.8609,4.0952,77.2358,77.6,3.7552,85.2632,6.0449,2.1141,0.7392,0.6119,33.9203,8.9299,17.9184,70.6861,86,0.6949,1.5967,16.6698,1.3441,90.5914,87.4317,87.2093,95.3488,12.1467,1.8628 Cheshire and Merseyside ICB,N83605,Hollies Medical Centre,6442.852812,6.7292,72.2826,69.403,3.9487,75.3363,70.3704,3.669,87.5,3.4221,2.5502,0.2962,3.5088,29.3758,6.951,15.3504,56.7807,74.3056,0.362,0.7404,12.389,0.3889,86.753,80.5825,67.2727,83.6364,11.5401,1.3656 Cheshire and Merseyside ICB,N83608,Dr Maassarani & Partners,17360.14771,6.527,62.1053,59.4512,2.8561,73.8754,70.6107,3.5405,76.2332,5.9158,3.8268,0.3796,4.1467,41.4438,7.3393,14.6039,52.8846,64.794,0.5849,0.7902,14.0469,0.7804,87.4099,86.0119,45.7831,80.1205,27.5434,1.7485 Cheshire and Merseyside ICB,N83609,Cedar Cross Medical Centre,5579.018084,7.7804,68.5315,66.3636,4.3337,70.3226,69.0476,4.1604,77.0492,4.5685,4.2037,0.5634,6.035,38.0844,8.8203,18.8082,65.036,75.1445,0.3467,0.8451,15.7078,1.2069,89.9248,86.7769,58.3333,91.6667,13.6655,2.0585 Cheshire and Merseyside ICB,N83610,Colby Medical Centre,3202.681839,7.6231,65.0602,72.7273,4.5173,64.1026,68.2927,3.7201,82.6087,4.1923,3.8973,0.9743,3.1861,48.8681,8.1036,16.5633,64.966,80,0.7086,1.5058,14.0861,0.4689,90.2664,76.5957,66.6667,70.3704,16.2045,2.2586 Cheshire and Merseyside ICB,N83619,Roby Medical Centre,4391.989506,6.9854,72.9167,81.5534,4.1749,79.5918,75.3086,3.9293,75,7.4018,2.8733,1.6454,3.3201,25.7163,7.2311,19.1061,64.4781,74.4565,0.7859,0.6385,18.3978,1.0863,95.8061,79.7872,75.6098,75.6098,13.0783,2.5049 Cheshire and Merseyside ICB,N83621,Hillside House Surgery,3787.45817,6.4751,68.5714,73.4177,2.9867,65.8824,72.4138,4.7859,70.2703,1.7512,3.4905,0.5038,1.9758,52.4516,8.7323,17.0925,54.6798,91.3044,0.3958,0.7917,13.9201,0.7253,90.9016,89.3939,65.7143,85.7143,17.3763,1.6193 Cheshire and Merseyside ICB,N83622,Primrose Medical Practice,3501.30642,8.6394,57.6923,64.8148,3.4191,70,72.7273,3.1118,85.2941,3.192,4.9558,0.2689,3.2419,56.1419,8.8047,14.7906,77.3256,85.3659,0.3458,1.3446,17.606,0.1174,91.7903,94.5455,85.2941,97.0588,28.2223,1.6904 Cheshire and Merseyside ICB,N83633,Nutgrove Villa Surgery,4977.554275,7.4552,68.4615,72.8261,3.5611,67.4242,66.6667,3.693,85.7143,6.0576,3.5874,0.976,2.0854,43.6539,8.7084,20.7861,76.0318,89.2405,0.5803,1.5036,17.2128,0.9602,89.802,89.2857,88,92,18.4356,2.0311 Cheshire and Merseyside ICB,N84001,42 Kingsway,9848.517863,6.1556,75.1899,73.5849,5.1497,73.5849,70.6468,5.2047,85.3659,7.6473,2.5418,0.7592,2.1412,21.4656,7.0452,18.0788,73.0147,81.5029,0.4401,0.8803,15.4542,0.2782,88.8982,86.6667,83.3333,94.7917,9.5786,2.2117 Cheshire and Merseyside ICB,N84002,Aintree Road Medical Centre,3231.486771,7.0094,59.4937,56,3.4318,54.2169,47.7273,3.7111,91.6667,5.0607,2.8731,0.4789,3.9474,49.1278,8.5287,16.3607,54.0462,75,0.5587,1.2769,13.2591,0.1116,81.5385,86.1539,90.3226,87.0968,22.2114,1.6361 Cheshire and Merseyside ICB,N84003,High Pastures Surgery,10749.87612,6.7669,76.6585,87.3606,6.2825,74.6212,77.7778,5.1536,85.5073,7.978,1.5805,0.9424,1.3824,12.8648,6.6775,17.807,72.1799,81.0757,0.2356,0.5988,9.7704,0.2327,89.531,82.9876,85.9813,89.7196,6.4935,2.5425 Cheshire and Merseyside ICB,N84004,Glovers Lane Surgery,9599.939145,9.3036,68.5185,60.9756,3.7028,66.6667,64.9682,3.5228,65.9341,5.6058,2.5328,0.9385,2.1371,40.9408,8.5802,15.3381,47.5758,68.4729,0.7457,1.2214,13.8747,0.2028,85.9861,85.446,74.7126,86.2069,17.9202,2.1857 Cheshire and Merseyside ICB,N84007,Liverpool Rd Medical Practice,7285.242741,6.9792,67.4009,64.1379,4.1416,69.5876,63.3333,4.369,80.8219,4.5253,2.8423,0.8771,1.3476,31.9434,7.7901,15.1372,70.0136,81.0256,0.7471,1.1856,16.3113,0.1916,90.1561,87.234,86.4865,93.2432,14.1389,2.1277 Cheshire and Merseyside ICB,N84010,Maghull Family Surgery,5597.252552,4.8551,71.6216,78.6765,4.0173,72.1212,65.3846,3.4228,96.3636,6.4567,1.4772,0.6125,1.7873,16.1169,7.0575,18.7894,45.241,59.4017,0.5585,0.9188,9.7185,0.5231,80.2665,80.3738,86.8852,85.2459,11.3064,2.1438 Cheshire and Merseyside ICB,N84011,Eastview Surgery,7770.737252,6.2328,70.751,76.7857,4.5764,70.3125,74.4186,4.3909,84.7826,7.1174,3.0922,0.7885,1.9667,25.5241,7.2274,17.2078,44.8792,69.6721,0.2474,1.8862,12.9238,0.1377,86.1562,83.125,57.7465,76.0563,13.6095,2.3037 Cheshire and Merseyside ICB,N84015,Bootle Village Surgery,8681.340806,7.7558,60,66.6667,4.0799,62.3762,65.4545,4.3846,81.0345,6.2765,3.7583,0.7787,1.145,52.2268,9.3378,15.6594,46.3226,68,0.5248,1.6252,16.6243,0.3478,86.7525,85.7924,63.8554,89.1566,18.7954,2.2516 Cheshire and Merseyside ICB,N84016,Moore Street Medical Centre,8829.402704,7.2944,63.8889,64.4737,4.1407,64.1791,73.0435,4.5514,75.3846,6.6667,4.3378,0.4765,1.4286,57.8157,9.8738,15.7739,76.7702,87.7419,0.8709,1.4131,20.8696,0.2115,90.8281,90,89.011,92.3077,21.4452,2.2511 Cheshire and Merseyside ICB,N84019,North Park Health Centre,8235.122167,6.91,53.4031,60.8,3.389,54.4601,56.3636,3.8462,69.697,6.2759,4.0196,0.6463,4.4208,50.1999,8.7534,14.9117,45.9388,68.718,0.8039,1.9861,12.7886,1.8503,84.7222,92.1053,50,79.7619,22.8434,2.3802 Cheshire and Merseyside ICB,N84020,Blundellsands Surgery,10636.67573,7.4032,76.1557,72.695,4.7474,77.9661,76.4977,6.1501,89.1304,10.2205,1.8735,0.8632,1.0185,17.5326,7.1176,20.049,57.4593,79.5678,0.2746,1.0397,14.5579,0.1852,88.4322,86.2319,83.3333,95.3704,7.6083,2.717 Cheshire and Merseyside ICB,N84023,Bridge Road Medical Centre,9671.200553,8.6042,65.0407,62.7119,3.669,61.7188,62,4.3326,70.5128,6.0847,3.8642,0.6505,2.661,45.3031,8.471,15.9251,49.1089,79.4393,0.6375,1.158,15.8202,0.2365,80.3154,85.5615,75.5319,91.4894,20.9701,2.3679 Cheshire and Merseyside ICB,N84025,Westway Medical Centre,10731.80599,7.4407,80.7018,83.2685,5.6019,74.6622,73.4375,5.1488,94.3396,9.251,1.8639,1.4829,3.3358,13.491,8.0408,22.5003,59.7222,78.203,0.4325,0.8959,15.8606,0.4571,90.1682,86.5455,77.1186,94.9153,7.8023,2.6465 Cheshire and Merseyside ICB,N84027,Orrell Park Medical Centre,5371.213203,5.5086,63.6364,58.3333,2.2889,61.6822,69.7368,2.5582,85.9375,2.0347,2.2312,0.2693,2.939,39.0758,6.1713,10.502,54.2798,67.1642,0.327,1.0771,13.4891,0.3448,86.2395,89.3939,60.4167,79.1667,19.4018,1.4233 Cheshire and Merseyside ICB,N84028,The Strand Medical Centre,10761.33498,6.1282,62.8692,63.9053,3.7589,61.4504,64.1221,3.9172,70.5882,8.0901,3.7193,0.3693,4.4704,54.3963,9.339,15.0356,65.9465,79.1667,0.4089,1.7146,17.3311,0.5547,86.9965,87.5519,78.4314,92.1569,23.5017,2.3609 Cheshire and Merseyside ICB,N84029,Ford Medical Practice,7261.947043,7.3711,67.6923,63.3333,3.5478,74.3455,72.2689,3.7739,82.6923,6.6123,2.5739,0.6783,1.7633,42.5255,9.1937,17.0087,65.6899,81.761,0.6435,1.113,17.5887,0.4082,91.055,85.1613,75,89.4737,18.1953,1.8957 Cheshire and Merseyside ICB,N84034,Park Street Surgery,9995.234762,6.8295,59.2233,65.7143,3.3662,61.5079,65.812,3.662,80,7.8779,3.6338,0.6479,3.3889,53.0226,8.932,15.4225,65.8455,81.6832,0.6479,1.8592,15.7559,0.206,88.1368,91.7526,80.6452,88.172,21.6729,2.0563 Cheshire and Merseyside ICB,N84035,15 Sefton Road,5046.27852,5.3972,71.8391,73.0435,5.3109,67.0103,70.9302,5.0974,80.7692,10.1996,3.8431,0.854,1.8689,36.031,9.8719,23.0318,55.5721,67.3684,0.3736,1.0942,12.0051,1.9108,87.3569,88.8889,70.1754,85.9649,11.7578,2.3752 Cheshire and Merseyside ICB,N84038,Concept House Surgery,7803.016647,7.9494,59.4737,63.8462,3.5359,69.7436,68.932,3.5537,80.4348,6.6473,4.0156,0.4975,3.3237,49.4753,9.1528,15.494,59.8909,83.4532,0.6041,2.0967,17.5552,0.2374,87.6446,91.0959,78.2051,92.3077,21.6124,2.0434 Cheshire and Merseyside ICB,N84041,Kingsway Surgery,5734.396036,6.4703,77.1689,70,3.9182,76.5306,74.1667,2.6526,86.6667,4.8439,1.9938,0.8842,1.7438,20.9187,6.3884,14.9445,49.4169,68.1818,0.3121,0.9362,10.6351,0.216,90.6238,89.1304,65.4545,83.6364,10.3025,1.9071 Cheshire and Merseyside ICB,N84605,Litherland Practice,6442.629711,6.4438,62.8571,57.1429,2.7682,69.8718,68.1159,3.6579,79.0323,6.6777,2.1256,0.5438,5.3884,38.9075,8.5724,13.5937,35.9833,73.6111,0.2224,1.4582,13.2231,0.4751,88.1885,87.7359,40.8163,79.5918,16.6074,1.3841 Cheshire and Merseyside ICB,N84615,Rawson Road Medical Centre,4472.452976,6.7572,59.1398,51.6667,3.3683,60.8333,63.4615,4.1945,82.9268,3.7795,3.5272,0.5084,3.3858,47.4362,7.947,13.6638,58.9386,76.3889,0.286,2.7645,14.9606,0.2801,88.9068,85.7143,72.973,81.0811,22.8983,2.0337 Cheshire and Merseyside ICB,N84621,Thornton Surgery,5198.920538,7.5768,71.5686,67.1233,3.86,64.2105,67.2414,4.9722,79.3103,7.305,2.5842,2.0608,2.6826,29.9277,7.9443,18.0569,49.1139,70.7006,0.6869,1.7337,10.648,0.2375,90.2933,82.0225,61.1111,80.5556,15.8828,2.8459 Cheshire and Merseyside ICB,N84626,Hightown Village Surgery,1941.84428,5.8694,76.8421,76.6667,7.3568,71.4286,70.4545,6.2533,84.6154,4.8059,1.5765,0.9459,1.6636,11.69,6.2728,19.1802,38.9474,55,0.3153,0.4729,8.1331,0.9036,83.653,86.6667,44.4444,83.3333,5.7703,2.3647 Cheshire and Merseyside ICB,Y00446,Maghull Practice,3137.309251,6.1911,74.6032,81.1765,4.926,72.2892,80.597,4.9582,86.3636,7.4517,2.1571,0.9337,3.3205,14.8556,7.6426,19.2853,52.7149,66.242,0.8693,1.3522,11.1197,0.4076,89.4202,69.4118,57.5758,81.8182,8.5619,2.6723 Cheshire and Merseyside ICB,N84005,Cumberland House Surgery_N84005,13267.0805,8.0305,72.1133,64.7059,5.1369,69.8953,75.3036,3.7638,86.8421,5.2101,1.9108,1.4393,2.3303,24.5708,7.4889,15.8574,67.7675,78.6601,0.8437,1.4972,14.6433,1.7337,83.2938,78.0392,74.4186,88.3721,14.0791,2.7546 Cheshire and Merseyside ICB,N84006,Chapel Lane Surgery,11492.5741,6.989,77.8468,83.1746,6.2516,72.4638,74.8,4.2711,91.5254,6.7218,1.7394,1.1453,2.3052,9.6055,6.786,20.2273,71.1966,85.1312,0.3875,0.7406,11.9543,0.8043,86.7192,82.8125,86.4407,90.678,9.1951,2.8158 Cheshire and Merseyside ICB,N84008,Norwood Surgery,11103.39701,8.3307,76.2019,81.7204,5.4815,75.7576,77.2512,4.2399,91.5493,6.0709,2.2915,1.595,2.2584,20.6758,7.6184,19.4831,62.1277,75.9615,0.636,1.1205,11.7169,0.4259,88.6689,78.5088,67.8899,85.3211,11.3559,3.0487 Cheshire and Merseyside ICB,N84012,Ainsdale Medical Centre,12776.27289,7.0499,78.7356,80.531,5.8264,75.2768,73.7903,4.4375,88.7097,5.4712,1.6684,0.9521,1.5705,16.4328,7.7407,20.3267,72.1897,81.2601,0.463,0.8997,11.5993,2.5317,89.2079,87.2951,76.8657,93.2836,8.8749,2.7428 Cheshire and Merseyside ICB,N84013,Christiana Hartley Medical Practice,12673.92176,8.2618,73.4411,69.0476,4.9932,74.6835,74.8837,4.1077,91.954,6.2765,2.2182,1.6705,1.3935,24.0546,8.1951,17.8275,65.3439,83.6735,0.5112,1.141,14.1918,0.9557,87.8804,73.6842,73.2824,91.6031,14.467,2.8024 Cheshire and Merseyside ICB,N84014,Ainsdale Village Surgery,3766.528063,8.9339,75.1724,71.4286,4.4002,76.4706,82.6667,4.176,86.8421,5.9661,2.2982,0.8128,3.4237,19.2435,9.1488,19.3105,74.9556,88.0952,0.6166,1.2612,17.661,0.7784,89.5957,79.1209,91.4894,97.8723,12.6201,2.4944 Cheshire and Merseyside ICB,N84017,Churchtown Medical Centre,10938.92829,7.8762,70.8861,72.7273,6.2978,72.7273,71.978,4.7677,90.3846,6.5625,2.528,1.4192,2.2706,18.7486,8.315,21.1886,65.4533,80,0.6098,1.1531,10.9332,0.5035,90.1953,78.5408,83.3333,91.6667,11.4211,3.1046 Cheshire and Merseyside ICB,N84018,The Village Surgery Formby,14523.58423,6.3665,78.4452,75.2778,6.1609,76.3298,73.8182,4.2417,91.453,6.2272,1.3421,1.196,1.847,9.3675,6.1409,18.8443,67.4381,76.5258,0.6954,0.6467,11.8106,2.2759,90.1672,79.0941,74.4186,93.7984,5.7673,2.5937 Cheshire and Merseyside ICB,N84021,St Mark's Medical Centre (TCG Medical),19959.05073,5.9093,60.0726,60.114,4.7434,56.1024,63.4752,3.9899,86.6667,5.7181,2.7731,2.0999,2.7043,31.3294,8.0303,16.4351,66.3054,80.3487,1.3711,2.3285,13.1457,0.5804,82.2902,76.7857,66.3594,93.0876,26.3184,2.6805 Cheshire and Merseyside ICB,N84024,Grange Surgery,11575.29119,7.2494,76.7338,79.8635,6.6221,74.8815,76.2791,5.1985,94.2857,2.7323,2.4159,1.6178,0.9354,17.221,7.6436,24.9245,74.8166,82.0741,0.6363,1.0246,10.8185,0.2921,88.5963,77.8895,86.2385,97.2477,8.1339,3.2895 Cheshire and Merseyside ICB,N84613,The Corner Surgery (Dr Mulla),5098.225237,8.5047,79.5,77.1654,5.801,79.8246,78.022,4.8639,96.7742,5.7392,2.4096,0.8702,1.3489,17.885,9.5525,23.2709,76.2797,88.4298,0.714,0.9817,16.9003,2.8121,89.9104,84,92.1875,95.3125,10.2368,3.369 Cheshire and Merseyside ICB,N84614,The Marshside Surgery,3769.062261,7.6645,78.8462,76.2887,6.3263,81.3953,79.6875,5.4494,95.8333,6.3201,2.2863,0.783,1.9073,18.6907,9.1583,19.668,74.6939,84.058,0.5324,1.1901,16.6791,0.3623,91.8481,81.6514,88.6364,95.4545,10.2692,3.1632 Cheshire and Merseyside ICB,N84617,Kew Surgery,4405.960835,6.2004,68.9655,70.4762,3.4586,72.4324,71.6049,3.22,82.4561,2.3872,1.5305,0.3975,1.5215,19.8308,7.1761,14.2119,53.202,70.7547,0.7951,0.974,13.6149,0.3515,86.1832,81.25,82,94,14.9144,1.5305 Cheshire and Merseyside ICB,N84625,The Family Surgery,4365.523592,6.8233,72.2973,74.5455,3.8956,79.085,78.2178,2.7795,87.5,3.9806,1.2845,0.8212,1.8827,18.2637,6.6579,14.0872,71.1501,82.6923,0.6317,0.7581,14.9274,0.7318,90.2784,82.9546,88.8889,93.3333,12.3454,1.9794 Cheshire and Merseyside ICB,N83001,Rainbow Medical Centre,17455.03231,8.715,67.4833,76.8072,3.7396,66.9405,69.6296,3.3684,83.6957,4.1993,2.6397,0.928,1.9984,36.666,8.704,17.0069,62.9522,79.3018,0.7149,0.8524,17.4487,0.3551,85.7858,83.4921,70,90.5556,16.4479,1.7254 Cheshire and Merseyside ICB,N83002,Patterdale Lodge Med Ctre,13360.77468,9.0099,67.5978,74.0741,3.6694,71.875,73.0088,3.6105,92.9293,4.6993,2.8531,0.749,2.4292,29.4732,8.0635,16.1421,66.3588,80.597,0.4376,1.0688,18.394,3.3887,87.5975,81.8182,54.6099,88.6525,13.0545,2.0367 Cheshire and Merseyside ICB,N83003,Ormskirk House Surgery,9639.192152,7.3888,63.6704,72.3757,4.1831,75.4902,75.1724,5.0824,84.127,2.4019,4.1423,0.8857,0.6129,36.2976,9.3704,19.3759,70.682,83.2765,0.6949,1.0083,12.2412,0.1186,89.0494,87.2832,50,86.2745,14.6732,2.4254 Cheshire and Merseyside ICB,N83005,Vista Road Surgery,10693.40268,8.5086,67.474,75.4717,3.6553,75.0877,70.5882,4.4997,93.8144,3.7106,2.6142,1.0989,2.0836,31.0088,8.7489,18.0336,65.0714,81.25,0.3702,1.0873,17.6823,0.749,90.7856,84.5794,83.9286,91.0714,14.0584,2.4986 Cheshire and Merseyside ICB,N83006,Phoenix Medical Centre,4518.067213,7.652,68.1034,79.7297,2.9968,60.3604,65.625,4.7425,94.8718,1.938,3.8406,0.3782,2.7132,36.6898,8.313,18.6209,62.963,78,0.4364,1.1638,14.6582,0.3475,89.891,79.1667,64.4444,88.8889,18.1513,1.8039 Cheshire and Merseyside ICB,N83007,Lingholme Health Centre,3909.396785,7.9885,71.1538,70.9677,4.0312,80.198,78,6.7073,82.7586,4.8852,3.2859,0.7791,2.2129,37.7305,9.5415,22.8997,73.0375,81.1111,0.3388,1.2195,17.7453,0.9394,90.9225,90.7217,88.0952,95.2381,14.7415,1.8631 Cheshire and Merseyside ICB,N83008,Berrymead Family Medical Centre,10701.16492,10.6168,65.5303,72.9885,2.9634,66.0517,74.6154,3.6206,79.0698,4.3057,4.1537,0.5456,1.3187,45.3269,9.3325,17.9665,70.356,80.8917,0.434,1.1159,21.735,0.4206,90.8298,93.5185,85.5856,90.991,20.3698,1.7731 Cheshire and Merseyside ICB,N83010,Rainhill Village Surgery,7994.195054,8.125,73.2,75.8065,5.3052,78.9773,79.085,4.8837,86.6667,4.1386,2.5145,1.657,1.8452,18.2025,7.5465,20.5669,57.332,77.8291,0.4797,0.9157,11.4503,1.1242,92.2153,80.6452,75,88.75,7.2536,2.0494 Cheshire and Merseyside ICB,N83012,Mill Street Medical Ctr.,13315.54733,7.7103,70.1571,80.1498,4.6716,64.3087,74.0385,4.9231,82.2785,5.2956,2.9693,1.0156,2.2463,32.3896,8.2413,20.1277,66.0864,77.5904,0.8028,0.9769,20.7635,1.5645,89.6806,86.5169,81.9549,90.9774,15.9436,2.5825 Cheshire and Merseyside ICB,N83017,Hall Street Medical Centre,7783.178947,7.6347,65.9091,63.6364,3.7566,63.2124,70.7865,4.8854,87.037,6.0314,2.6631,1.164,2.8063,37.5247,8.0298,19.7355,56.2708,71.1009,0.3175,1.0758,19.3508,0.3918,90.4094,87.5,72.7273,89.6104,20.1034,2.328 Cheshire and Merseyside ICB,N83019,Billinge Medical Practice,8144.465235,7.5234,72.2772,67.5393,5.0712,76,75.4967,6.0937,83.7209,7.2589,1.9898,0.9949,1.2017,13.0822,8.7849,24.0846,68.9231,82.3928,0.3316,0.7876,16.1578,0.3657,88.0056,83.3333,77.7778,91.9192,8.5825,2.6116 Cheshire and Merseyside ICB,N83020,Haydock Medical Centre,18900.85706,8.0349,69.46,64.3454,4.4766,62.8235,67.7656,4.4902,85.0877,6.2484,3.3625,1.1073,2.2578,26.4419,9.7791,19.5707,60.3969,78.3304,0.4959,1.0258,17.3873,2.3776,85.1897,86.1364,70.8134,87.0813,14.8263,2.4659 Cheshire and Merseyside ICB,N83021,Four Acre Health Centre,9786.759235,6.9876,61.8644,62.7907,4.1022,69.6203,69.2308,4.7601,88.2353,6.1435,2.5155,0.9933,3.4076,39.1918,8.7552,15.5444,64.9949,80.2632,0.4128,1.0449,17.4803,0.3328,87.6543,85.782,66.3366,95.0495,17.7042,2.2446 Cheshire and Merseyside ICB,N83023,Atlas Medical Practice,16902.80736,7.8632,67.1946,67.3835,4.1687,55.1821,61.1872,4.8082,88.7218,5.5647,3.629,0.955,2.7049,45.6611,9.9063,19.8389,57.3462,72.7488,0.872,1.2872,14.5158,0.1768,88.6573,84.1808,66.6667,81.6667,17.8394,2.3169 Cheshire and Merseyside ICB,N83026,Parkfield Surgery,3365.871954,5.9592,70,76.1905,3.0704,80.8824,82.2222,4.314,76.9231,3.4483,3.5756,0.6607,2.8425,37.6105,9.1621,22.7361,63.5611,84.3137,0.6607,0.6607,18.1734,0.159,90.9348,93.3333,91.8919,89.1892,14.8839,2.4874 Cheshire and Merseyside ICB,N83027,Central Surgery,8689.257998,10.3966,71.1207,75.7962,4.673,69.8113,72.5,4.8522,83.871,2.7478,3.195,1.1496,3.3156,31.1719,7.3237,17.871,58.1169,75.0916,0.4479,1.075,14.5082,0.4477,90.1469,86.2319,81.1594,82.6087,12.9049,2.1648 Cheshire and Merseyside ICB,N83035,The Spinney Medical Ctr.,9196.696953,10.4544,70.2128,74.8571,4.4709,70.5882,71.0526,5.2349,88.2353,5.7779,3.3531,1.047,3.2544,32.6002,9.3509,18.2371,65.64,83.2,1.1036,2.1081,13.2962,0.5669,89.8246,81.9588,82.3529,82.3529,15.5504,2.4901 Cheshire and Merseyside ICB,N83041,Rainford Health Centre,5165.900911,10.0335,77.0732,84.2975,5.675,81.0811,86.9565,4.5142,90,6.817,2.3861,0.7739,2.3321,13.8111,8.4155,25.6234,72.0257,86.8726,0.3654,0.6449,12.4808,0.4026,87.9545,83.5821,88.5246,95.082,6.8974,2.3646 Cheshire and Merseyside ICB,N83045,Newton Medical Centre,7368.060152,6.2529,59.8425,67.7778,2.8535,71.8919,64.8649,2.8961,92.1875,2.9615,2.6406,0.4898,3.5981,32.3867,7.367,12.9685,55.642,61.0526,0.4259,1.1712,12.9256,1.3149,85.2839,82.2222,52.0833,89.5833,16.0559,1.1925 Cheshire and Merseyside ICB,N83049,Kenneth Macrae Med Centre,4868.452925,8.2054,77.3256,81.25,6.515,78.3019,78.2178,4.6946,94.4444,5.4716,2.1557,1.509,1.3679,14.76,7.4986,21.9162,62.8959,78.9683,0.479,1.1976,15.902,0.5495,85.995,81.25,75.7576,87.8788,6.7915,3.1138 Cheshire and Merseyside ICB,N83050,The Bowery Medical Centre,5925.29674,6.4088,62.406,65.5556,3.5578,64.8148,61.8421,3.4731,89.5833,3.4596,2.859,0.6989,2.3699,34.5948,9.1398,13.6595,60.8031,78.6885,0.953,1.7366,16.8347,0.1228,88.4178,81.8182,67.1875,81.25,15.7,1.5671 Cheshire and Merseyside ICB,N83053,Longton Medical Centre,8520.153125,7.0197,75.0809,77.3333,4.4746,74.8201,76.4706,4.6567,90.2174,4.9141,1.9583,1.0475,1.8707,20.4874,7.138,17.5111,72.3802,80.7818,0.353,0.797,14.184,1.4167,89.9122,79.0961,80.2198,87.9121,12.4644,2.3113 Cheshire and Merseyside ICB,N83054,Bethany Medical Centre,4779.707543,10.3169,77.0833,77.451,3.9272,77.9412,79.7619,3.8075,93.3333,4.7232,2.1791,0.5508,1.2335,30.0444,7.6399,18.1753,74.7649,87.6033,0.3831,0.8381,16.5163,0.4788,94.4386,86.7647,87.234,87.234,12.8123,1.7002 Cheshire and Merseyside ICB,N83614,Eccleston Medical Centre,5409.945776,6.4117,77.4011,81.746,4.0518,79.1667,77.7778,3.1775,88.5417,4.1566,1.6476,0.9583,3.5003,18.1801,6.0873,14.2233,71.2813,83.2335,0.5884,0.7397,9.9541,0.7533,90.4954,79.5918,82.3529,84.3137,8.1069,1.5131 Cheshire and Merseyside ICB,N83620,Windermere Medical Centre,4023.271055,8.7778,61.4583,56.5217,2.4328,66.6667,64.4068,3.2532,90,4.7393,3.3663,0.4526,2.2238,38.8091,7.6923,15.587,60.8247,72.7273,0.3395,1.1598,14.5461,0.2508,88.4477,93.1507,82.0513,87.1795,22.0625,1.669 Cheshire and Merseyside ICB,N83624,Dr Rahil's Surgery,3384.737703,7.1,71.4286,71.0526,5.1342,69.6629,74.1935,5.302,90.3226,4.3267,4.094,0.5705,3.3563,28.5914,9.022,21.4765,69.4853,88.5417,0.8054,0.5369,16.4982,1.0811,90.6849,78.9474,92.6829,90.2439,12.8305,1.6779 Cheshire and Merseyside ICB,N83637,Newholme Surgery,4640.581998,6.4791,68.9922,77.2727,3.2036,65.0485,68.8525,3.8922,96.2963,4.2967,2.994,0.5988,1.726,36.5951,7.2622,16.4671,68.9342,77.0642,0.3593,0.6287,12.9636,0,82.9434,85.9649,80,88.5714,16.6667,1.7365 Cheshire and Merseyside ICB,Y00475,Garswood Surgery,5631.402354,8.7508,76.6497,80.7692,4.4521,80.7692,79.5918,3.9574,94,6.5223,2.207,0.6088,1.813,16.7549,8.0679,20.3957,67.2515,82.4885,0.6469,0.6659,13.5154,0.4241,90.6262,76.2712,87.0968,95.1613,9.0597,2.5114 Cheshire and Merseyside ICB,Y02510,Marshalls Cross Medical Centre,8528.670533,6.6913,65.4545,66.4122,3.5481,69.4545,69.4444,3.6372,88.2979,4.1072,2.5386,1.7518,2.9854,36.8362,7.802,14.0143,63.2051,79.8781,0.5641,0.9501,13.5197,0.3251,86.9098,73.0497,58.6667,74.6667,16.5852,2.3011 Cheshire and Merseyside ICB,N81007,Holes Lane Medical Centre,10766.64133,6.8639,76.781,79.9213,4.4963,72.8522,79.2271,3.8568,92.7536,4.7159,1.7021,0.5903,1.1103,17.9937,7.9599,21.222,73.1721,88.9182,0.5215,0.7871,17.1442,1.4119,84.9118,87.444,76.4228,94.3089,13.6692,2.4301 Cheshire and Merseyside ICB,N81012,Guardian Street Medical Centre,13216.8307,8.1202,74.4807,78.9474,3.1579,64.2523,74.7573,3.201,90.9091,3.2423,1.8464,0.7507,1.8279,23.3561,8.3217,15.5479,62.9169,81.685,0.6557,1.8033,16.897,0.337,89.2646,85.2941,69.6296,91.8519,16.2975,1.8205 Cheshire and Merseyside ICB,N81014,Brookfield Surgery,8313.620049,6.1677,81.4159,79.2,4.557,79.6154,78.8991,3.2292,87.3016,2.3605,1.0304,0.8286,0.6462,7.0662,5.1169,13.9792,61.424,77.0667,0.2125,0.648,6.0662,0.2056,88.2353,79.2,66.6667,92.7536,6.246,1.7633 Cheshire and Merseyside ICB,N81020,Penketh Health Centre,15016.13251,6.5793,77.7538,88.6435,5.662,79.0997,78.9272,5.076,94.5206,5.0257,1.8372,2.3361,0.5418,9.9888,8.4072,22.561,64.5459,76,0.4989,0.7523,14.3858,0.1944,83.2149,76.4865,75.4601,87.1166,7.5882,3.0329 Cheshire and Merseyside ICB,N81028,Causeway Medical Centre,9068.100782,5.2579,69.5817,72.2543,2.4124,69.4678,68.2759,2.5996,95.4546,4.3121,1.4142,0.8839,0.4986,19.1039,7.4069,13.8193,66.1792,81.7021,0.4887,0.6655,9.9717,0.283,83.3845,86.7725,60,91.4286,14.4597,1.5389 Cheshire and Merseyside ICB,N81036,Springfields Medical Centre,9113.696005,6.5752,72.7642,79.1908,3.346,66.4452,71.831,3.6034,90.1099,4.34,2.0836,1.3727,0.5106,23.6315,7.3182,14.1929,69.6868,86.3636,0.7354,1.0786,14.2664,0.1288,86.5843,81.6092,83.908,95.4023,15.174,2.1694 Cheshire and Merseyside ICB,N81041,Helsby Street Medical Centre,9493.746979,5.6271,71.2803,79.3269,3.8339,77.6173,76.0234,3.2896,91.5663,2.5254,1.8696,1.1478,0.3338,23.8559,7.2522,16.3294,78.6667,86.6667,0.4615,0.8993,11.016,0.1969,91.245,79.6053,77.0833,91.6667,15.258,2.1299 Cheshire and Merseyside ICB,N81048,Fearnhead Cross Medical Centre,15127.20257,7.4696,66.5127,64.2612,3.3034,67.5556,70.6612,3.7414,91.9643,3.0532,2.227,0.5864,2.1102,30.1372,7.9467,15.9751,73.6962,84.5361,0.5493,0.824,14.6779,0.5675,88.1637,84.2809,63.4146,88.4146,18.0402,1.8633 Cheshire and Merseyside ICB,N81056,Folly Lane Medical Centre,11744.26971,7.1982,70.2265,70.7424,3.6066,68.2927,71.9577,3.2851,90,3.9514,2.7326,0.4019,2.419,29.2802,8.6772,17.9727,72.0869,86.6667,0.6028,1.4567,20.77,1.3108,86.891,82.8326,74.2188,92.1875,18.0612,1.8485 Cheshire and Merseyside ICB,N81059,Culcheth Medical Centre,13754.30017,7.479,74.946,75.2976,4.6048,78.635,75,4.1243,89.4737,2.9874,1.7458,0.7208,0.796,12.9901,6.5485,17.1138,71.8229,85.6649,0.4164,0.7288,11.5468,0.4528,90.0655,79.3722,72.5,90,9.2215,2.3384 Cheshire and Merseyside ICB,N81065,Latchford Medical Centre,8372.042093,7.2953,66.1538,63.9456,2.3591,73.5385,72.8682,2.5702,94,2.5719,2.297,1.0305,0.6269,28.43,6.5193,12.7763,61.3286,81.1828,0.4842,0.8567,9.1947,0.7051,88.4877,84.9558,68.0556,86.1111,20.8199,1.6017 Cheshire and Merseyside ICB,N81075,Stockton Heath MedicalCentre,16426.53703,6.6859,78.8889,79.81,5.2937,76.7591,78.1609,3.8649,93.7985,4.9535,1.0502,1.5875,1.4912,9.5711,6.2222,15.8322,58.6188,68.7101,0.6533,0.7693,7.2789,4.189,82.6121,80.6962,73.6842,82.8947,7.1577,2.5644 Cheshire and Merseyside ICB,N81083,Parkview Medical Centre,5160.276428,5.0448,64.1791,64.5833,3.0796,70.7182,76.4706,2.5696,86.2745,3.1899,2.0008,0.8239,0.8354,24.7881,6.9831,14.9667,69.3396,81.1024,0.5296,0.7258,8.9367,0.1764,88.4447,86.5169,60,88.3333,19.1084,1.5889 Cheshire and Merseyside ICB,N81089,Greenbank Surgery,10452.54837,7.4051,71.0145,80.6452,3.8462,75.5814,75.1678,4.2748,89.0411,5.8884,2.8936,1.417,1.0426,24.1822,8.6427,19.3856,62.0385,81.9372,0.7026,1.0717,13.3187,0.6836,89.2101,81.7427,75.9259,87.963,15.8458,3.0126 Cheshire and Merseyside ICB,N81097,Dallam Lane Medical Centre,4233.986912,7.3924,70.297,67.1233,3.8098,60.9929,68.3333,3.0262,87.1795,3.8614,2.6209,0.7295,2.6403,29.0549,8.4231,16.5901,63.1068,78.7879,0.5404,0.7836,16.6337,0.2353,84.7097,88.6364,54.1667,87.5,19.2308,1.8373 Cheshire and Merseyside ICB,N81107,Manchester Road Surgery,3894.634363,8.4574,72.2222,77.6471,3.3408,74.4361,75.3846,3.2294,97.0588,4.3448,2.5334,0.3898,1.9075,23.2373,5.9681,13.4744,75.0594,82.5397,0.2784,0.6403,16.5666,0.5516,88.9109,76.0563,62.5,96.875,16.2992,1.392 Cheshire and Merseyside ICB,N81108,The Lakeside Surgery,9703.107388,5.8962,75.3351,84.7909,3.0517,78.8274,78.6667,3.1355,97.8261,2.6714,0.9769,1.1258,0.2246,7.0892,5.309,15.7611,54.9161,74.7178,0.214,0.5024,5.591,0.2853,83.5323,80,51.8072,78.3133,6.3864,1.8794 Cheshire and Merseyside ICB,N81109,Padgate Medical Centre,7151.097535,7.412,75.2475,77.3333,3.9524,74.1784,79.2308,3.2178,84.0909,2.7747,1.9689,0.6318,2.7007,19.3453,7.2208,15.883,63.3562,72.6829,0.6906,1.0873,13.707,0.0754,89.1986,74.7664,72.4638,85.5072,13.5694,1.8954 Cheshire and Merseyside ICB,N81114,Birchwood Medical Centre,12754.59092,8.2588,71.4286,75.0842,4.0486,72.0238,77.0642,4.3545,90.6667,1.7779,2.2852,0.3959,1.3853,21.735,8.7116,18.2726,47.9179,69.0648,0.7647,0.9357,14.0598,0.556,87.5863,83.8428,73.1544,83.2215,14.6498,2.7171 Cheshire and Merseyside ICB,N81122,Westbrook Medical Centre,9800.095448,8.5996,77.2622,77.9553,4.3953,77.6758,78.0488,3.0588,94.6667,1.738,1.2424,0.6118,0.8402,11.1238,7.6004,15.4824,67.6834,69.403,0.5553,0.4612,13.4438,0.1504,88.1311,86.0465,71.6667,90.8333,8.4013,1.7882 Cheshire and Merseyside ICB,N81623,Stretton Medical Centre,7231.261904,5.6461,80.6349,82.1739,3.6558,76.3889,77.9412,2.6983,93.3333,3.0884,0.729,0.4135,1.102,7.7306,4.2907,15.3629,30.0614,53.5055,0.2067,0.3373,4.3537,0.1788,84.3577,88.0734,62.5,82.1429,4.8844,1.4471 Cheshire and Merseyside ICB,N81628,The Eric Moore Partnership,13210.07081,5.495,63.37,60.6383,2.2407,68.1275,67.4847,2.2486,88.6076,2.4922,1.9775,0.303,1.6339,32.3705,7.0299,10.1268,67.0241,86.0927,0.8612,2.2008,18.1489,0.1566,86.5356,88.172,65.3846,88.4615,24.6884,1.2519 Cheshire and Merseyside ICB,N81637,Cockhedge Medical Centre,2819.220816,6.5476,74,67.5676,2.3942,75.3968,81.8182,2.0007,76.4706,3.5438,1.6727,0.164,0.611,31.8885,5.4883,14.2998,73.5897,82.6087,0.1312,0.8855,16.9857,0.8671,91.027,85.7143,72,88,17.6974,1.0823 Cheshire and Merseyside ICB,N81645,4 Seasons Medical Centre,2641.007662,5.5094,61.9048,65,2.453,56.6667,58.8235,3.148,91.3044,2.3056,3.4751,0.3271,1.3405,36.4214,9.4787,13.1235,69.2884,79.6296,1.1038,1.063,10.1341,0.277,83.5189,83.0189,62.5,81.25,21.7306,1.7989 Cheshire and Merseyside ICB,Y01108,Fairfield Surgery,3599.562589,6.655,78.6408,72.619,3.3288,78.4173,78.6667,3.1935,91.4286,2.3059,1.5697,0.433,2.1024,22.0714,7.7696,13.0717,67.6399,79.1667,0.2706,0.8931,15.1238,0.4648,89.2016,76.7123,67.5,87.5,13.7633,1.4614 Cheshire and Merseyside ICB,Y04925,Chapelford Primary Care Centre,5833.488132,5.6844,74.3056,75.5725,1.7284,77.7429,77.3438,1.8574,89.1892,2.1616,0.5417,0.9932,1.7364,9.6668,4.8878,9.2609,55.0413,84.9558,0.3999,0.6062,11.4635,0.5211,82.25,73.2394,66.6667,84.4444,7.7324,1.0061 Cheshire and Merseyside ICB,N85002,Marine Lake Medical Practice,22083.2024,7.0884,78.0303,73.8372,5.256,75.4527,75.4177,3.8056,93.0233,6.7154,1.778,1.4037,1.4118,13.1689,6.2573,17.1562,65.5933,73.9593,0.4263,0.9982,11.8004,0.8443,85.9026,79.397,86.5497,91.8129,7.4711,2.9218 Cheshire and Merseyside ICB,N85005,Eastham Group Practice,12460.97483,6.8919,75.8883,82.1818,5.623,75.3894,73.7991,3.5857,90.4762,6.0552,1.9196,0.7606,2.8273,17.1228,7.5422,17.9102,59.5436,77.8196,1.5936,0.8602,18.9671,3.3529,90.4916,86.8085,77.1429,87.619,9.6994,2.5263 Cheshire and Merseyside ICB,N85006,Civic Medical Centre,11296.44924,7.7272,76.6272,79.7414,5.7611,76.1029,81.1518,4.3975,96.9231,5.715,1.6173,1.7548,1.104,18.5236,7.4141,18.6469,66.562,80.2041,0.5285,0.9514,14.2096,1.6177,93.0149,82.4324,91.1765,95.098,8.719,3.129 Cheshire and Merseyside ICB,N85007,Heswall & Pensby Group Practice,21606.14015,7.6302,78.1208,80.1242,5.9731,76.0925,80.4945,4.623,88.9706,7.3808,1.6696,1.2296,2.0032,9.8368,6.8117,21.6202,64.5534,74.4208,0.4521,0.8559,9.4773,1.7762,84.2544,82.2785,68.8623,88.6228,5.7295,2.9233 Cheshire and Merseyside ICB,N85008,West Wirral Group Practice,15821.3711,7.1878,77.5652,76.1905,6.7826,77.9661,77.6978,4.6704,93.75,7.4336,1.586,1.1548,1.9469,12.2038,7.2703,20.326,50.5019,71.9595,0.3508,0.8332,10.2035,1.159,86.7208,82.906,86.2069,86.8966,6.4281,3.0697 Cheshire and Merseyside ICB,N85012,St Georges Medical Centre,12155.62951,7.3379,69.1667,77.4059,4.689,68.0272,68.6486,4.087,81.3953,6.11,2.6191,1.4785,2.0324,32.1662,8.1729,17.2352,58.0386,76.8041,0.7076,1.3307,11.9741,0.5992,89.2586,78.5124,68.1818,79.0909,14.2893,2.4923 Cheshire and Merseyside ICB,N85013,Upton Group Practice,9911.700454,8.1148,75.8621,79.0476,6.0535,74,74.5223,4.8349,91.3793,4.9111,1.9916,1.3496,1.8417,21.4256,8.6113,20.0603,68.1739,83.4646,0.5372,0.8386,14.7962,0.364,90.1582,78.866,82.4176,91.2088,8.3146,3.0005 Cheshire and Merseyside ICB,N85015,Devaney Med Ctr,9973.276868,7.1458,67.0251,62.0321,3.9084,71.4286,73.2026,3.4295,85.9649,4.5237,2.7825,0.5565,1.9022,37.8064,7.5603,15.31,61.0187,84.6154,1.4624,1.4495,16.2404,0.7896,89.3582,84.7134,81.25,91.25,15.7357,2.1613 Cheshire and Merseyside ICB,N85016,Riverside Surgery,11585.74303,7.704,63.2353,69.7297,3.4593,65.9933,66.443,3.412,85.2273,4.2126,4.0614,0.9327,3.2301,45.3967,8.54,16.0803,72.2031,85,0.8737,1.6529,17.6541,1.7326,90.6438,83.7696,86.5385,90.3846,22.0409,2.1606 Cheshire and Merseyside ICB,N85017,Cavendish Medical Centre,8021.63138,7.8697,63.0682,65.0794,3.3423,67.3469,67.619,3.7556,65.9091,4.9377,3.2525,0.6649,3.7373,51.987,7.8006,18.5265,63.0091,80.9524,0.6649,1.186,16.6478,1.8924,93.8855,90.678,78.125,90.625,21.8012,2.1204 Cheshire and Merseyside ICB,N85018,Villa Med Ctr,7791.456308,7.3421,75.969,75.2874,5.2666,85.3107,88.0597,4.4701,96.4912,6.156,2.2269,0.699,0.8314,27.0813,7.7389,19.4246,56.7277,80.0752,0.4064,0.7477,15.8353,0.3784,94.9876,83.5616,90.1639,95.082,8.862,2.2594 Cheshire and Merseyside ICB,N85019,Whetstone Lane Med Ctr,13314.53741,8.9377,58.9844,52.381,3.3749,57.3826,62.5,3.2033,85.5073,4.4959,3.1003,0.389,4.9469,51.8414,9.2877,13.2479,56.8607,75.5102,1.0296,1.7618,16.5721,0.7412,87.909,86.4322,68.0672,86.5546,22.2144,1.4987 Cheshire and Merseyside ICB,N85020,St Catherine's Surgery,20538.66123,8.1286,65.272,61.8076,4.1058,74.1811,76.3066,3.5406,88.4892,4.3378,3.0598,0.981,3.1832,40.6911,7.9968,15.676,68.2329,81.0989,1.007,1.3773,15.4462,0.71,90.2043,87.6543,85.7143,92,16.1677,2.0919 Cheshire and Merseyside ICB,N85021,Hamilton Med Ctr,5746.520452,8.5099,58.7629,62.069,3.3253,57.1429,57.4468,4.1138,96.2963,4.8444,5.3137,0.9599,10.7129,57.2735,10.4443,17.4152,56.7633,80.8511,0.7542,2.9482,11.7369,0.613,88.8804,85.5556,72,86,32.505,2.4683 Cheshire and Merseyside ICB,N85022,Holmlands Med Ctr,5172.374097,8.1151,72.1429,73.4177,3.9874,76.5517,78.8732,4.0117,87.5,6.808,2.9662,0.6078,5.4643,25.6657,8.2891,17.7729,74.0446,90.2913,0.5835,0.7051,15.4374,1.0353,92.1744,88.6598,84.6154,92.3077,12.5467,2.3584 Cheshire and Merseyside ICB,N85023,Manor Health Ctr,7214.136995,9.2782,68.6275,70.4698,3.376,68.75,65,3.7742,88.8889,4.3675,3.7396,0.606,3.3993,34.593,7.9153,16.4127,60,78.9474,0.6579,1.1254,14.4578,0.8143,85.5187,82.7869,79.3651,87.3016,16.3397,2.3199 Cheshire and Merseyside ICB,N85024,Somerville Med Ctr,12144.69095,9.1881,68.9046,70.1357,4.439,72.9904,73.7805,3.1277,81.8182,3.2805,2.988,0.7524,3.2392,44.1311,7.7205,16.7025,64.2364,82.0717,0.9566,1.193,19.3246,2.0264,92.9499,82.967,84.6939,92.8571,19.2077,2.0206 Cheshire and Merseyside ICB,N85025,St Hilary Group Practice,6734.912941,8.2835,76.8293,84.5161,4.4727,74.4318,76.6667,3.6986,94.4444,4.1315,1.8235,0.6365,2.5084,26.1532,7.0789,17.4093,60.4849,82.3529,0.6881,1.0838,11.5093,0.687,90.2646,87.5,85.4839,88.7097,10.3857,2.1504 Cheshire and Merseyside ICB,N85027,Central Park Medical Centre,12377.22619,8.7593,63.6364,72.77,4.1024,65.3968,63.9535,3.3728,85.3659,3.6541,2.7701,0.4864,2.7203,41.9771,8.6591,15.8279,64.0379,78.1659,0.4652,1.3111,16.4569,1.8401,88.8169,85.5769,54.2373,95.7627,17.3703,1.9877 Cheshire and Merseyside ICB,N85028,Moreton Group Practice,17916.31447,7.4757,69.7495,74.9245,5.3505,70.4663,73.0469,4.3763,91.5966,6.1695,3.4249,0.7992,2.5205,31.2473,9.7307,19.4231,66.2019,77.5424,0.8448,0.9438,18.8658,0.9826,91.3141,82.9843,80.3797,89.8734,13.8932,2.6106 Cheshire and Merseyside ICB,N85031,Gladstone Med Ctr,5839.595466,7.0242,54.2636,46.8354,2.9855,65.2893,69.3548,3.7254,87.5,4.1184,3.9806,0.4848,2.9601,49.1852,8.9009,15.3355,65.5642,82.7586,0.8421,1.5565,9.4595,0.2811,90.5802,91.579,81.4815,92.5926,26.1472,2.0669 Cheshire and Merseyside ICB,N85032,Greasby Group Practice,8120.122856,9.0442,80.6349,76.4706,6.039,78.3951,76.259,4.6408,92.7273,7.5261,1.6659,0.833,1.9479,10.2086,7.0942,20.3183,68.1818,74.3719,0.357,0.4314,11.9533,0.9134,90.557,80.3571,73.7705,86.8852,5.7028,2.8559 Cheshire and Merseyside ICB,N85037,Heatherlands Med Ctr,7150.159409,7.9828,58.8652,59.4059,3.4778,74.7312,70.5882,3.4968,80,3.6716,2.9457,1.9004,4.309,42.2906,9.0773,14.9753,74,81.8841,1.7864,1.1213,15.8593,1.7668,91.2828,83.7607,70.7692,89.2308,21.3939,1.9574 Cheshire and Merseyside ICB,N85038,Vittoria Med Ctr G,7861.750675,8.2912,57.7922,58.5859,3.3795,66.4286,57.1429,4.4001,67.6471,2.6824,4.8084,0.4083,4.4419,58.6036,9.2019,14.7199,52.7928,72.3404,1.0206,1.0887,13.1814,2.0372,90.1357,95.7447,79.3103,89.6552,27.4578,2.3815 Cheshire and Merseyside ICB,N85044,Paxton Medical Group,27980.28625,7.8281,69.1852,71.1934,4.2989,68.2229,71.9128,3.7483,85.4839,4.7703,2.362,1.821,2.8791,39.1146,8.4614,17.8283,61.5306,77.6298,0.7052,1.1737,13.8199,1.1761,88.3608,83.2994,79.0123,85.1852,19.4423,2.2461 Cheshire and Merseyside ICB,N85046,Hoylake Rd Met Ctr,6224.604271,8.0797,72.1393,78.5714,5.1324,73.6842,81.25,4.4453,97.9167,5.5459,3.4957,1.1518,2.9595,25.097,9.2247,19.6201,69.8232,78.2123,0.5658,1.0709,16.6874,0.8632,92.8224,87.8049,89.0625,90.625,12.5397,2.3843 Cheshire and Merseyside ICB,N85047,Orchard Surgery,7381.042592,7.5796,75.5869,81.1189,4.4285,75.8929,77.6786,3.6206,91.358,3.5888,2.1095,0.9126,2.972,19.329,7.7774,15.0658,55.788,79.3103,1.7355,0.6882,11.6262,1.9703,90.62,84.127,81.3333,81.3333,10.6435,2.1993 Cheshire and Merseyside ICB,N85048,Moreton Medical Centre,6684.483713,8.1188,69.3694,71.3287,4.0793,73.494,77.7778,4.5515,84.8485,5.2523,2.4174,0.661,1.8119,29.4215,8.3503,20,54.195,83.6158,0.6232,1.0576,13.9679,0.701,90.146,76.9912,84.6154,90.7692,13.1683,2.4174 Cheshire and Merseyside ICB,N85051,Sunlight Group Practice,23287.83055,7.6782,68.5665,73.4491,4.6412,72.069,69.9405,3.6191,86.3946,3.6477,2.7367,0.7931,3.6757,37.4432,8.3155,16.3586,55.3886,74,0.9886,0.9941,16.3761,0.8018,94.1256,85.4111,64.1256,87.4439,22.4128,2.0944 Cheshire and Merseyside ICB,N85052,Grove Rd Surgery,5034.236475,7.2986,70.7006,77.8761,4.1263,73.5099,72.9412,3.6883,94.8718,6.6371,2.6279,1.1065,1.9717,25.4676,7.7389,19.8479,67.9882,82.2222,0.899,0.9221,11.9689,1.2208,91.9962,87.6106,89.3617,91.4894,11.3722,2.5127 Cheshire and Merseyside ICB,N85054,Kings Lane Medical Practice,5769.5676,7.763,78.9189,80,5.0699,78.75,83.6538,3.7879,97.2973,3.3565,1.6317,0.5245,3.1887,19.1643,6.5166,17.7739,62.8378,80,0.3497,0.8936,13.7137,0.6812,93.715,87.5,94,94,8.8593,2.5058 Cheshire and Merseyside ICB,N85057,Teehey Lane Surgery,2451.176479,6.6774,62.5,64.4444,3.8322,73.5849,76.4706,5.4894,100,6.5204,3.159,0.5179,1.8891,24.314,10.03,21.4397,70.8589,80.6818,0.6214,1.2429,11.9439,0.2139,91.9173,98.4375,84.375,96.875,14.61,2.2268 Cheshire and Merseyside ICB,N85059,Hoylake & Meols Medical Ctr,8357.049935,6.6505,75.2212,72.6457,5.6555,73.1818,77.6536,3.7918,89.4737,4.5347,1.8509,0.6427,1.6432,12.1277,6.2792,17.545,57.7414,79.7753,0.5913,0.9126,12.656,0.6122,93.169,84.8485,72.6027,89.0411,8.9194,2.7764 Cheshire and Merseyside ICB,N85616,Liscard Group Practice,5786.819213,7.3843,70.8333,71.5686,3.6554,71.5232,75,2.6545,91.6667,4.5831,2.2193,0.6745,3.1198,40.6359,8.5356,14.7737,71.4552,83.2168,0.631,0.9138,15.9028,0.6369,92.9692,79.798,90.566,90.566,18.2331,1.9582 Cheshire and Merseyside ICB,N85617,Spital Surgery,5211.794539,7.3111,82.7586,88.8889,5.907,77.6224,74.1935,4.0008,97.9592,4.5788,1.6129,0.9426,2.0744,12.7955,6.5446,18.8102,74.7336,83.8174,0.4608,0.7541,11.7632,1.3072,91.9527,81.7204,86.9565,93.4783,6.236,2.5555 Cheshire and Merseyside ICB,N85620,The Village Medical Centre,7967.023678,8.3508,78.4722,82.5397,5.3745,72.1311,74.6575,4.4942,93.75,5.3483,1.9923,0.8031,1.8563,25.7818,7.9282,19.7375,70.1149,77.3504,0.4633,0.9575,13.6923,0.5447,89.7055,81.25,68.3544,93.6709,10.4682,2.5946 Cheshire and Merseyside ICB,N85625,Miriam Primary Care Group,23020.70591,7.5127,63.4286,62.8415,3.3755,63.3929,63.5135,3.2336,84.8649,3.8271,3.4434,0.9256,3.3152,48.276,8.5577,16.5936,61.5249,84.5238,1.0059,1.5859,16.6706,0.7819,91.3101,85.2941,85.1282,90.2564,20.6527,1.9747 Cheshire and Merseyside ICB,N85629,Egremont Med Ctr,6352.17864,7.7527,55.4688,55.6962,2.8226,69.7368,67.6471,2.6658,88,3.1986,3.517,0.3136,3.2277,53.8053,9.4897,13.6425,68.1648,76,0.4256,1.2097,19.1626,0.13,87.9956,88.0435,89.4737,82.4561,29.0821,1.9265 Cheshire and Merseyside ICB,N85633,Church Road Medical Practice,4599.30712,6.9977,69.697,78.2178,3.8812,77.4011,76.4706,2.5663,91.5254,3.5006,1.315,0.3393,4.4653,21.6874,6.4744,15.334,67.1692,84.127,0.2121,0.6999,17.3098,3.2787,92.1452,87.6543,69.2308,94.2308,9.6973,1.6119 Cheshire and Merseyside ICB,N85634,Vittoria Med Ctr K,3205.010211,9.4173,56.3636,54.5455,3.1114,61.8182,57.6923,3.821,77.7778,4.1727,4.7489,3.1659,4.6763,57.7779,11.2606,17.9585,72.5869,88.5714,0.7642,2.1834,16.259,0.5926,91.161,89.2857,85.7143,92.8571,25.257,2.3472 Cheshire and Merseyside ICB,N85640,Leasowe Medical Practice,3684.313668,8.1031,56.25,61.2245,2.9136,68.1818,69.0476,3.4686,87.5,3.6416,2.7055,0.3469,7.0915,50.4184,10.0375,11.1342,71.7391,82.2222,0.659,1.2487,26.2099,0.9138,93.1744,91.0448,87.0968,93.5484,25.5561,1.6649 Cheshire and Merseyside ICB,N85643,Prenton Medical Centre_Murugesh V,4782.095487,6.702,63.2479,65.4321,3.4277,68.1818,68.5714,2.8813,81.579,3.8978,2.6329,0.2981,3.0671,34.0516,6.8232,15.698,65.7371,80,0.5713,0.77,14.1853,0.206,90.9144,88.0597,83.7838,91.8919,13.7554,1.54 Cheshire and Merseyside ICB,N85648,Blackheath Med Ctr,4793.660014,8.8581,71.3333,75.2475,4.9912,78.4615,77.9221,3.7121,90.2439,5.8228,2.759,0.7274,3.2595,32.6836,8.5153,21.846,61.8806,80.9524,1.2039,1.1788,15.6329,0.7552,93.5627,95.9596,81.3953,93.0233,14.2449,2.5082 Cheshire and Merseyside ICB,N81001,Audlem Medical Practice,5763.602981,7.6038,79.9242,83.1169,6.8015,78.5047,82.1429,4.6798,100,9.4462,2.2209,1.5665,0.6747,13.5078,8.047,21.2374,70.1149,85.7639,0.4164,0.5552,17.0544,0.8775,84.4465,75,86.8852,90.1639,7.3215,3.0736 Cheshire and Merseyside ICB,N81002,Kenmore Medical Centre,10999.33663,6.623,79.9582,74.6875,5.8714,79.1541,83.0709,3.3377,93.0693,6.4043,1.3318,0.7634,1.5466,6.5199,5.6777,16.5422,68.4354,81.3051,0.2355,0.8202,6.325,2.7018,85.2293,81.4655,85.1485,92.0792,6.321,2.4931 Cheshire and Merseyside ICB,N81005,Helsby Health Centre,9570.752242,7.1021,74.3869,73.1707,5.0915,77.2414,77.451,3.9939,84.1584,4.8066,1.9715,1.6057,2.4283,12.7978,7.7921,18.9024,66.2483,78.6385,0.5996,0.7215,15.296,1.8585,89.8189,83.3333,88.1818,92.7273,10.2688,2.3577 Cheshire and Merseyside ICB,N81006,Bunbury Medical Practice,5152.1215,6.5322,79.4466,79.8817,5.2835,80.6452,77.6978,3.5898,87.5,4.3276,0.9757,1.0309,1.4425,13.712,6.0367,16.2739,69.8485,83.4821,0.2025,0.5707,8.9214,0.3797,86.4428,85.1485,86.2745,92.1569,7.1628,2.3748 Cheshire and Merseyside ICB,N81008,The Cedars Medical Centre,12219.05305,7.2064,78.7724,75.4864,5.8793,83.4808,83.6634,4.0628,92.381,7.5173,2.0709,1.0091,1.8414,10.9493,7.7901,18.2608,75.6667,86.2306,0.5704,0.8336,12.89,1.5364,91.6582,74.4828,88.1481,89.6296,8.1127,2.7641 Cheshire and Merseyside ICB,N81009,Heath Lane Medical Centre,6762.93001,7.4507,77.3438,84.8837,4.0062,78.6957,81.2903,3.2954,95.7447,2.0003,1.3957,0.5428,1.9842,10.7566,5.7555,15.9731,59.0759,75.5352,0.2843,0.7366,11.6632,0.6293,89.6722,90.991,73.4375,81.25,8.0241,1.7188 Cheshire and Merseyside ICB,N81010,Nantwich Health Centre,8690.124358,6.9332,74.2958,79.6875,4.58,79.9257,83.8509,3.1612,96.25,5.0635,1.8917,0.7343,2.0285,14.1501,6.5423,18.4568,75.519,88.9908,0.697,0.9832,15.4847,0.561,91.8189,83.2117,93.6709,94.9367,8.4887,2.2278 Cheshire and Merseyside ICB,N81013,High Street Surgery,7209.217489,6.5942,74.2308,74.7126,4.6476,69.7778,75.3623,3.0286,97.8261,5.9382,2.0377,0.6699,1.2084,17.5119,7.9782,18.5066,66.4423,76.2238,0.7537,1.2142,10.0984,2.1073,89.3255,82.2086,78.8235,91.7647,14.0571,2.2331 Cheshire and Merseyside ICB,N81016,Millcroft Medical Centre,33423.59722,5.5592,65.5125,62.7737,2.8252,66.1211,65.8487,2.4026,87.0588,2.818,1.6346,0.6261,1.5407,27.6547,7.0679,11.8249,56.4961,79.3103,0.3732,0.7896,12.3418,0.9724,83.3215,83.3002,81.7073,88.7195,23.7197,1.4465 Cheshire and Merseyside ICB,N81018,Tarporley Health Centre,7749.062742,7.34,80.2899,83.6283,5.9669,77.7778,77.5956,4.0429,84.9057,3.8106,1.3882,0.9133,1.7148,8.1789,5.9885,17.6814,67.2852,83.8785,0.2679,0.7915,8.2075,0.3726,85.0943,83.75,66.6667,91.0256,7.3044,2.5451 Cheshire and Merseyside ICB,N81022,Middlewood Partnership,32668.98139,6.9225,77.3517,73.7542,5.3421,73.4716,76.7085,3.8107,95.1807,5.7097,1.4375,1.3348,1.1965,7.4858,6.2703,16.9326,60.391,77.4095,0.2611,0.7803,9.3097,0.9307,82.0011,80.6785,82.0261,90.5229,7.6086,2.4877 Cheshire and Merseyside ICB,N81024,Swanlow Medical Centre,12346.96787,6.9622,69.5157,71.3725,3.7311,71.9198,71.9212,3.5367,86.8217,5.7266,3.0923,0.574,2.1577,27.5023,9.3138,16.6466,72.0467,80.4094,0.6388,0.8425,14.0774,0.2619,90.4702,88.5906,74.6667,84.6667,15.4213,2.2683 Cheshire and Merseyside ICB,N81025,Firdale Medical Centre,10117.34296,7.0705,75.2381,76,3.8763,78.8618,81.1828,2.9884,95.7265,4.8924,2.0718,0.8879,3.2901,14.7906,7.5042,14.894,69.0705,76.9231,0.4392,0.8879,14.4325,0.4615,90.1229,80.3738,79.646,88.4956,10.9169,1.9477 Cheshire and Merseyside ICB,N81027,Readesmoor Medical Group Practice,15069.14443,8.2121,75,79.096,5.0262,75.2914,74.0214,3.6164,96.8992,4.7442,1.8661,0.9671,1.7139,14.7228,7.7488,18.014,57.6288,72.9102,0.4631,0.9399,12.6842,1.7928,87.1939,83.9465,76.4706,91.1765,11.2839,2.8877 Cheshire and Merseyside ICB,N81029,South Park Surgery,13177.0481,7.4706,74.9441,76.3754,4.4987,76.8657,83.8057,3.0361,98.9474,3.7482,2.1743,1.1148,1.4211,16.3816,7.4659,17.6866,61.2485,74.2115,0.7037,0.9567,12.4464,0.9519,92.3215,84.6442,83.0986,90.1408,12.8968,1.9924 Cheshire and Merseyside ICB,N81030,Princeway Surgeries,17013.35057,7.3025,77.3639,80.1743,6.0622,76.484,78.0488,3.8822,93.1373,5.9147,1.9411,0.9735,1.8194,11.2984,7.2218,19.5425,74.2987,86.4387,0.3703,0.657,13.0565,1.2281,85.5924,85.2547,88.3333,94.4444,7.7607,2.4548 Cheshire and Merseyside ICB,N81031,Drs Adey and Dancy,5662.009673,7.1188,82.9091,80.5714,6.2148,80.1325,82.9787,4.0734,94.2308,5.0756,1.449,1.4973,1.1236,8.9123,6.7011,18.0647,73.9675,87.6161,0.3542,0.5957,10.3255,1.2005,89.8314,81.6,76.1905,90.4762,6.4662,3.4777 Cheshire and Merseyside ICB,N81032,Ashfields Primary Care Centre,27680.97378,6.9987,74.9206,72.4138,4.5604,79.2803,80.7143,3.3212,93.4641,3.9319,1.6818,0.6904,2.636,11.4835,7.1264,15.6357,73.7333,84.2159,0.3576,0.7825,13.1535,1.7869,85.8664,80.3774,85.0694,89.2361,10.2921,2.2873 Cheshire and Merseyside ICB,N81033,Alderley Edge Medical Centre,7538.817009,6.1102,79.3605,77.0925,5.9291,74.8918,78.2828,3.5551,91.5254,5.0355,0.9707,1.4735,0.9362,4.6007,4.6759,15.3315,64.0474,79.5811,0.2222,0.7134,5.4184,2.3332,87.7593,76.3158,78.6885,86.8852,6.4247,2.5026 Cheshire and Merseyside ICB,N81034,Boughton Medical Group,12055.1682,6.9539,75.2887,80.9187,3.9338,74.1866,78.8793,2.8284,86.1386,2.8323,1.3494,0.5947,1.505,14.4109,5.7836,14.4622,57.6283,74.495,0.305,0.8157,12.5724,0.8665,85.7263,85.7843,78.7037,92.5926,10.2455,1.6086 Cheshire and Merseyside ICB,N81038,Laurel Bank Surgery,7406.24152,7.2608,79.7872,79.4737,5.8959,78.534,80.7947,3.7857,97.0149,6.575,1.8417,1.1894,1.1089,14.9072,7.4257,19.5294,69.7998,82.2751,0.3197,0.6906,16.1174,1.0447,91.136,89.6907,79.5455,94.3182,7.7861,1.7905 Cheshire and Merseyside ICB,N81039,Oaklands,12988.34206,8.4942,73.0512,78.5256,5.0022,80.8955,82.6446,3.9811,90.1639,6.1561,2.3681,0.7636,2.5386,14.2712,8.8395,19.2192,54.828,69.1781,0.5749,0.8065,15.7076,1.1801,85.9518,75.4658,75.1592,86.6242,13.1726,2.5997 Cheshire and Merseyside ICB,N81040,High Street Practice Winsford,7339.184688,6.8641,68.6567,65.9722,2.3546,76.4228,75.4098,2.9289,89.7727,4.1131,2.3546,0.5312,4.4987,27.6512,7.9371,12.9648,73.5108,86.8421,0.7897,1.005,13.6063,0.4141,85.5098,84.7682,86.4198,86.4198,18.1688,1.6942 Cheshire and Merseyside ICB,N81043,Haslington Surgery,6103.413694,6.5634,77.459,77.8481,5.2595,84.4595,84.4262,4.2842,93.1035,3.499,1.5152,1.2365,0.7246,9.2281,8.1319,21.9262,81.8565,89.7106,0.2438,0.5573,13.5404,1.1081,90.7041,81.5385,94.2029,92.7536,8.1844,2.6646 Cheshire and Merseyside ICB,N81044,Hungerford Medical Centre,12628.54615,7.5879,69.209,65.9664,4.1085,67.1233,76.7196,3.4651,83.1579,4.6128,2.3713,0.7445,2.369,20.2208,8.3089,16.7647,50.5882,76.781,0.5239,1.0938,16.2301,0.8391,85.7771,84.252,78.0142,86.5248,15.3579,2.2151 Cheshire and Merseyside ICB,N81046,Park Medical Centre,9590.529389,6.3215,74.3827,79.3722,4.1871,73.1988,75.7895,2.8973,95.2381,2.7825,1.2802,0.5294,0.9194,14.2498,6.179,12.9271,68.5714,78.0488,0.462,1.0396,8.166,0.5911,84.7269,83.1395,81.6092,91.954,12.3795,1.7519 Cheshire and Merseyside ICB,N81047,The Kiltearn Medical Ctr.,13990.38547,6.633,74.1228,76.9968,5.308,73.7569,77.3946,3.9278,88.8889,6.1455,2.2242,0.7808,0.8644,13.8485,7.0419,17.8326,65.5947,76.9984,0.3234,0.7493,13.5448,2.0653,90.0015,74.9117,78.5714,89.2857,9.3676,2.7526 Cheshire and Merseyside ICB,N81049,Knutsford Medical Partnership,23080.56828,7.6704,78.5467,80.895,5.5898,77.429,78.5408,3.8448,91.0377,8.6508,1.6124,2.318,2.083,13.3932,6.046,21.1573,72.133,83.9056,0.4747,0.8126,8.4117,6.1781,89.695,77.9817,87.0647,93.0348,8.076,3.5711 Cheshire and Merseyside ICB,N81050,Great Sutton Medical Centre,20979.74942,7.0796,72.5434,73.617,4.7397,73.8487,72.7513,3.5814,88.3721,4.6774,2.2962,0.9398,1.9077,21.1204,8.4084,17.5616,60.7879,73.0095,0.5232,0.9703,16.4977,2.9564,88.5495,84.6652,69.2946,82.5726,13.467,2.0422 Cheshire and Merseyside ICB,N81051,The Weaverham Surgery,7760.099598,7.0439,76.6102,72.5,5.2241,80.102,79.6178,3.8796,98.2759,6.9577,2.437,0.9244,2.6433,15.5349,8.5089,20.8824,71.9864,80.8307,0.5042,0.9524,14.3759,3.2574,90.9896,83.7838,84.6154,94.5055,10.7803,2.7731 Cheshire and Merseyside ICB,N81052,Lawton House Surgery,12679.78306,7.6535,76.6055,76.431,3.9379,78.3163,77.8723,3.0895,95.6522,6.4355,2.169,1.0405,1.399,16.0764,7.9815,16.5279,75.6266,84.8614,0.2801,0.9765,11.9516,0.5537,89.2746,84.4595,93.7063,95.8042,11.4675,1.9289 Cheshire and Merseyside ICB,N81053,Earnswood Medical Centre,19041.58797,5.7677,67.418,64.2229,3.6456,62.7319,70.1389,3.5114,88.8889,3.6314,2.2982,0.5425,1.8417,25.9226,8.6725,13.5849,66.438,82.4885,0.4491,0.9216,14.117,1.6452,88.0047,80.3714,54.8673,80.9735,18.5599,2.094 Cheshire and Merseyside ICB,N81055,Watling Street Surgery,7702.876724,6.9021,75.5627,70.5882,5.1748,67.3469,72.6708,4.0979,100,4.75,2.6713,1.3147,2.0907,15.6773,7.8448,19.6923,64.9466,75.3521,0.6154,0.965,12.7781,1.3643,89.3344,82.0359,70.1149,82.7586,13.2546,2.1399 Cheshire and Merseyside ICB,N81060,Neston Surgery,10877.32112,7.992,74.6032,74.569,6.0138,74.7826,79.8851,4.2762,89.6552,5.533,1.873,1.3652,1.5693,13.1668,8.1728,19.3275,59.9843,74.7706,0.6318,0.756,13.4199,0.3695,91.4981,85.7759,77.5701,94.3925,9.4567,2.6966 Cheshire and Merseyside ICB,N81061,Witton Street Surgery,10075.00474,6.9118,72.2222,69.9115,4.3963,72.1477,76.5957,3.6211,95.7895,4.433,2.3574,0.8071,1.3233,19.2338,8.4292,16.8206,72.8879,83.3333,0.4991,0.6584,14.4502,1.8706,90.329,80.8824,87.7193,92.1053,14.3826,2.0707 Cheshire and Merseyside ICB,N81062,Cumberland House Surgery_N81062,16172.38572,7.4677,75,71.8987,5.0985,72.4512,75.9375,3.788,96.5517,5.7427,2.0668,1.2322,1.5886,16.1089,7.5645,17.5055,58.8889,75.6098,0.8997,1.0562,12.1207,2.2472,90.1803,85.5586,74.4186,91.8605,13.4707,2.4971 Cheshire and Merseyside ICB,N81063,York Road Group Practice,13339.03549,7.1944,67.6385,61.7978,3.0387,70.5336,66.9683,2.6821,90.1961,3.4623,2.3823,0.551,2.2562,33.9281,8.1902,13.3701,68.5777,85.2941,0.7131,1.0615,17.9143,1.7088,90.3367,87.6106,81.8792,90.604,24.0611,1.6935 Cheshire and Merseyside ICB,N81067,Oakwood Medical Centre,8504.571562,6.8832,76.6234,75.7282,4.0915,79.4326,81.6568,3.1016,92.0455,4.7466,1.9358,0.5829,1.2285,13.6185,7.3901,16.861,65.2964,78.7313,0.4729,0.7479,14.3934,0.3981,80.0467,74.8387,83.6735,86.7347,11.4564,1.8588 Cheshire and Merseyside ICB,N81068,Grosvenor Medical Centre,17938.41503,6.1077,63.5165,68.323,3.3586,59.252,65.6604,3.6352,93.4524,4.1442,2.8383,0.5071,2.5611,27.3038,8.5329,15.0346,57.2487,65.3944,0.4807,1.2381,12.6482,2.3708,81.8196,80.1609,61.4213,76.6497,23.0282,1.9954 Cheshire and Merseyside ICB,N81069,Chelford Surgery,4155.954831,7.1429,81.0945,81.4815,6.4308,84.2975,85.1852,3.6938,95.122,5.137,1.4241,0.9568,1.1328,10.4762,6.0219,19.8932,74.3512,85.3557,0.3338,0.4228,8.7197,2.8452,88.2286,81.4815,81.8182,93.1818,6.739,2.3587 Cheshire and Merseyside ICB,N81070,Handforth Health Centre,10583.41057,7.6705,70.6231,73.3906,4.5032,73.1629,73.9362,3.8203,93.9759,5.9914,2.0685,1.7023,2.2236,16.7789,7.8534,18.4679,62.6148,84.2572,0.6037,0.8611,13.9716,0.7286,87.3645,83.5498,82.906,91.453,14.4681,2.6425 Cheshire and Merseyside ICB,N81071,Greenmoss Medical Centre,4938.270371,7.9318,78.1818,77.6224,6.2583,81.8182,80.3738,4.2089,100,8.8396,1.9392,0.595,1.8253,10.834,8.2217,23.8872,74.0571,86.1244,0.3305,0.4407,18.2008,1.4102,89.8503,76.3158,54.2373,89.8305,8.202,2.4901 Cheshire and Merseyside ICB,N81074,Launceston Close Surgery,6210.407038,9.1311,67.5159,71.3115,3.4682,74.8571,78.3505,3.5055,97.0149,3.45,2.3121,0.5034,4.3308,30.9495,9.6588,14.6746,69.8251,84.1584,0.7272,1.1188,20.3328,0.2029,90.0395,82.963,86.3014,91.7808,18.4059,2.0324 Cheshire and Merseyside ICB,N81077,The Health Centre (Holmes Chapel),12579.89734,6.9577,79.249,74.7024,5.8792,76.5579,76.259,3.8447,89.1667,7.2525,1.5472,1.0443,1.7708,8.0108,6.733,18.0088,66.2106,74.6522,0.3249,0.5415,10.21,2.1548,80.1137,79.8658,78.7879,89.3939,7.1377,2.7307 Cheshire and Merseyside ICB,N81079,The Elms Medical Centre_N81079,9727.680095,7.3094,72.5309,77.4336,4.0361,70.2454,77.4194,3.1848,85.3933,3.9228,2.1933,0.4807,2.9085,20.4527,6.6224,15.1828,66.0729,85.0534,0.7712,1.1818,11.3773,1.8449,85.9968,88.4422,89.4737,90.5263,15.2622,1.5824 Cheshire and Merseyside ICB,N81080,Northgate Medical Centre,8757.465787,6.7075,70.354,70.1389,3.9296,60.6811,70.5357,3.0084,97.1831,3.6086,2.0756,0.4081,3.7302,21.9999,5.7334,13.7127,65.1899,82.0175,0.3731,0.9212,12.5422,1.3504,86.9409,88.2353,77.027,90.5405,15.3134,1.5742 Cheshire and Merseyside ICB,N81081,Garden Lane Medical Ctr.,8669.285258,5.6893,71.371,67.7215,3.8842,56.1404,71.2121,2.0084,88.4615,1.4464,1.152,0.2651,1.6914,18.1138,4.73,11.7545,67.3401,82.0611,0.2243,1.1112,12.2711,0.7787,82.8635,80.198,88.5714,94.2857,11.446,1.3865 Cheshire and Merseyside ICB,N81082,City Walls Medical Centre,16901.75653,7.4186,69.8682,80.1724,4.5475,72.0096,73.6655,4.1353,91.3462,3.4541,2.6151,0.8374,2.55,20.3979,7.3546,16.3865,48.5287,66.8863,0.5411,1.0821,12.812,0.4131,84.5594,82.5581,73.2558,82.5581,13.672,2.3124 Cheshire and Merseyside ICB,N81084,Rope Green Medical Centre,20862.05335,6.5918,80.1825,81.6479,4.9854,79.5681,80.6378,3.6748,91.9355,6.4747,1.7524,0.8641,3.8564,10.5376,6.9591,18.1019,64.0129,71.6595,0.4612,0.6893,12.4045,2.501,87.4621,79.2176,82.7273,92.7273,8.1081,2.4952 Cheshire and Merseyside ICB,N81085,Park Lane Surgery,9610.654212,7.1736,77.3006,79.0909,4.8365,76.6447,75.4098,2.8283,94.7368,6.8372,1.9767,0.8832,1.298,16.1604,7.3041,17.6322,77.427,84.8781,0.4942,0.8622,15.0238,2.6937,88.6326,85.6459,88.3495,96.1165,12.6673,2.3341 Cheshire and Merseyside ICB,N81086,Wilmslow Health Centre,11029.33903,5.4305,70.557,68.9189,3.5741,70,73.5395,2.0369,90.6433,3.4568,0.7591,0.4428,1.6832,7.8299,4.2357,10.8363,60.5224,73.4585,0.2214,0.6199,8.4326,1.0807,82.8696,80.4469,67.033,86.8132,8.4951,1.3537 Cheshire and Merseyside ICB,N81087,Danebridge Medical Centre,25185.69565,7.1682,76.1538,74.0681,4.8634,74.3902,76.5748,3.4398,93.4426,5.8109,2.2667,1.0697,1.9255,12.6403,7.2367,17.1392,60.4665,65.019,0.513,0.7675,11.2004,0.5313,85.674,72.381,85.7678,89.1386,9.8294,2.3621 Cheshire and Merseyside ICB,N81088,Park Green Surgery,12623.10772,7.1829,72.5581,67.7083,3.3836,70.6444,67.8112,2.9248,92.9204,3.5839,2.2858,1.0405,1.3738,16.9466,6.8508,15.3121,68.482,80.5,0.3195,1.0651,8.0338,0.4346,81.9292,86.1472,75,88.2813,14.8542,1.9908 Cheshire and Merseyside ICB,N81090,Tudor Surgery,5152.091601,6.7862,73.2919,79.2453,4.7973,76.7296,80.4348,3.8338,94.5455,5.5858,2.1076,1.6058,1.6065,14.0081,6.9597,17.0614,65.1613,71.7391,0.1606,0.823,16.0653,1.5138,86.7144,70.7547,82.3529,84.3137,11.3346,2.3685 Cheshire and Merseyside ICB,N81092,Hope Farm Medical Centre,14190.73786,7.3111,72.9675,69.7947,4.1688,75.2665,78.4173,3.533,92.3567,4.4409,1.9363,1.575,1.3341,20.0683,8.4173,15.3168,65.4711,82.5263,0.419,0.7803,15.364,3.5035,87.0983,85.7143,68.6047,85.4651,12.5157,2.3192 Cheshire and Merseyside ICB,N81093,Whitby Health Partnership,17210.53486,7.4808,73.8095,70.5,4.7074,77.668,76.6026,3.8414,91.8919,5.0366,2.3815,0.965,3.0067,23.63,9.3317,18.8544,60.8541,75.7225,1.0269,0.965,19.6886,2.6335,88.0873,88.5442,79.2627,88.4793,13.5956,2.1094 Cheshire and Merseyside ICB,N81100,Upton Village Surgery,7084.374505,7.8901,80.2974,81.5642,4.7967,74.5902,78.6207,3.0781,90.5882,1.9212,1.2184,0.4361,1.3136,12.1336,6.3813,15.6086,68.0663,82.3718,0.513,0.8337,11.6092,0.3995,86.6329,86.5546,73.2394,91.5493,7.9516,2.1034 Cheshire and Merseyside ICB,N81101,The Handbridge Medical Centre,6920.81147,6.5703,77.6923,82.7225,4.6317,74.1935,79.878,2.6955,92.4242,2.5174,1.0377,0.5948,1.4209,14.0113,4.8039,12.3513,78.1291,84.7926,0.1898,0.6581,9.9305,1.3045,81.7537,80.7229,83.6364,94.5455,8.7055,1.7844 Cheshire and Merseyside ICB,N81102,Fountains Medical Practice,5756.16069,7.328,64.8649,69.2308,5.7653,70.4918,64.5833,5.9694,96.2963,8.4344,3.5969,12.0153,3.2158,18.0379,9.4048,22.7296,66.5882,86.6953,1.0714,3.3929,15.1763,5.502,94.2257,63.8554,87.0968,79.0323,10.8683,6.5816 Cheshire and Merseyside ICB,N81111,Merepark Medical Centre,7362.126422,7.1692,77.4074,69.4915,4.6457,79.5455,76.1194,3.9246,93.2432,5.2604,1.9554,1.1094,2.8392,11.5181,7.4036,17.9309,67.915,83.6066,0.3328,1.1233,16.6173,1.3355,92.7569,75.5556,83.7838,90.5405,9.8113,2.7458 Cheshire and Merseyside ICB,N81113,Middlewich Road Surgery,7297.333843,7.8394,68.6747,68.75,3.5457,73.7288,76.5957,3.1856,95.2381,6.1879,3.144,0.8449,2.7425,21.0127,8.542,19.4321,75.9901,89.0052,0.8587,0.9141,20.6548,1.9608,90.5266,86.8421,84.0426,95.7447,16.9952,1.9529 Cheshire and Merseyside ICB,N81115,Lache Health Centre,7043.008718,6.4137,74.0506,64.2202,3.2548,72.4868,69.1489,2.2133,94.7368,2.5167,2.3565,0.4427,2.5852,27.1244,6.6611,11.7823,72.5464,80.7947,0.2343,1.0415,13.508,0.8594,84.572,90.1961,89.7059,97.0588,17.6148,1.4712 Cheshire and Merseyside ICB,N81117,Old Hall Surgery,6481.858896,8.2547,66.4596,61.0169,3.9558,64.2157,69.697,3.2994,88.3333,3.5907,2.9193,0.4146,5.0045,32.3478,9.131,14.5967,51.7391,70.9677,0.881,1.1919,17.7738,0.8483,86.4923,83.5821,70.1299,89.6104,20.2245,2.142 Cheshire and Merseyside ICB,N81118,Meadowside Medical Centre,8351.782101,6.5596,78.9474,77.5701,4.029,77.381,78.9474,3.3049,91.7647,3.9756,1.6466,1.1328,1.8717,14.9436,7.4032,16.7465,70.0444,78.3172,0.5022,1.0394,16.0766,0.822,90.4209,79.1367,85.567,87.6289,9.5285,1.8568 Cheshire and Merseyside ICB,N81120,Kelsall Medical Centre,5088.391017,6.5844,80.1688,84.8101,5.5635,81.6901,84.0909,3.6377,95.3488,2.5132,1.6584,1.0342,1.455,7.0822,6.8928,15.5671,75.1118,88.1188,0.4458,0.8203,11.5741,0.4212,91.7617,76.1905,91.2281,92.9825,7.5006,2.2111 Cheshire and Merseyside ICB,N81121,Northgate Village Surgery,7202.21764,6.2454,72.7778,80,4.4105,59.2308,75.9259,2.799,98.2759,4.1952,1.8236,0.6644,2.4068,19.8244,6.5807,12.4965,66.617,83.0986,0.6644,1.3288,15.6945,1.9169,89.0463,82.6446,81.1594,92.7536,12.5809,1.6257 Cheshire and Merseyside ICB,N81123,Willow Wood Surgery,7175.995493,7.5389,68.8889,69.863,3.3742,76.2712,79.6875,2.8407,97.7273,4.7646,2.8262,0.8363,1.9021,28.8214,7.7495,15.4867,74.6494,86.3946,1.2689,0.6921,19.7175,1.219,91.9909,87.6812,88.6076,91.1392,18.2722,1.788 Cheshire and Merseyside ICB,N81125,Neston Medical Centre,8957.05827,7.3984,74.2029,75.2294,6.229,78.8945,79.375,4.1742,85.1852,4.3478,1.5379,0.7237,2.3107,13.9643,7.9682,17.6144,74.311,89.6254,0.3489,0.7496,15.3542,0.449,92.5985,86.1446,88.4211,93.6842,10.5673,2.5588 Cheshire and Merseyside ICB,N81127,The Weaver Vale Surgery,10545.62199,10.0384,72.3776,75.9091,4.5934,80.7229,82.3529,5.1509,98.3871,5.9372,4.048,0.909,4.2237,26.6949,10.2518,21.9731,76.4466,88.3721,0.5939,0.9332,19.976,3.0278,94.628,80.916,86.8217,93.0233,13.6099,2.7997 Cheshire and Merseyside ICB,N81607,Westminster Surgery,4120.892952,7.5908,69.6203,50,2.6968,60.2941,61.2245,2.7793,83.9286,2.2426,2.5592,0.3027,4.1544,38.9182,7.4141,11.585,53.6517,63.0769,0.3853,1.1833,16.5809,0.8231,84.1567,92.5926,73.6842,86.8421,27.4246,1.3209 Cheshire and Merseyside ICB,N81614,The Surgery,5462.288256,6.9893,78.4,79.878,5.1427,78.9474,80.6202,3.907,95,3.3842,1.9081,0.7632,1.9907,17.026,6.935,16.809,74.9323,82.8877,0.3998,0.5633,10.219,0.8437,87.4146,76.9912,89.8305,91.5254,8.0495,2.3624 Cheshire and Merseyside ICB,N81624,The Village Surgeries Group,7566.219437,7.018,78.5185,81.9149,6.5195,77.5401,77.3585,3.2948,98.5916,4.0328,1.9161,0.923,1.0802,10.1366,6.0369,17.8409,64.2667,73.6318,0.3038,0.4557,14.1437,1.2124,86.194,83.4646,80,91.4286,6.8,2.29 Cheshire and Merseyside ICB,N81626,Western Ave Medical Ctre,4970.313943,8.6396,70.9402,69.7674,2.7966,74.1935,81.1594,3.3604,83.0189,3.306,3.2025,0.5638,4.3373,38.4301,8.2763,12.8327,75.7384,88.421,0.6991,0.8796,18.623,0.2134,91.7271,86.1386,90.1961,92.1569,25.2447,1.9396 Cheshire and Merseyside ICB,N81632,Broken Cross Surgery,5747.840318,7.5244,75,75.3731,3.3057,75.3555,77.193,2.6954,94.1177,5.2226,2.0851,1.2884,1.5839,16.0949,6.5667,15.3416,69.5122,81.4371,0.4577,1.6104,10.0813,0.772,89.3567,85.2713,84.9057,88.6792,13.6383,1.6952 Cheshire and Merseyside ICB,N81642,Waters Edge Medical Centre,4869.528651,7.0429,73.125,74.7899,4.185,68.75,76.1905,2.9956,84.8485,4.0022,1.2775,0.1982,1.6495,13.7329,7.0265,15.9251,55.2885,75.7576,0.0881,0.859,12.358,0.1042,89.1671,75.8621,60.7843,90.1961,11.1251,2.0264 Cheshire and Merseyside ICB,Y04664,The Willaston Surgery,4368.717964,6.2457,78.3654,79.4118,5.0221,73.7288,73.6364,3.3407,95,3.111,0.9513,0.3761,1.0546,9.8504,5.373,15.2655,49.2565,68.421,0.354,0.6416,7.1975,0.1674,87.2228,77.4194,78.3784,86.4865,5.6867,2.3894 Cheshire and Merseyside ICB,N82001,The Margaret Thompson Med Centre,8192.905868,6.8139,60.0917,57.6642,4.0958,65.8768,57.1429,4.7596,66.1765,6.9763,4.8729,0.5504,1.7285,52.373,10.3484,18.5365,67.8019,77.2727,0.4695,1.4246,18.3465,1.933,90.1535,91.7098,77.6471,84.7059,23.6342,2.5417 Cheshire and Merseyside ICB,N82002,Yew Tree Centre,6650.470044,6.7745,57.8571,56.1224,3.9021,62.766,60.8108,6.1716,78.3784,8.3647,5.8929,1.1746,5.8903,53.419,9.8677,26.2393,50.3454,80.625,2.2696,2.1103,14.7391,1.5328,89.8288,84.4721,77.2727,90.9091,23.4551,3.1654 Cheshire and Merseyside ICB,N82003,Dovecot Health Centre,5356.756809,7.117,66.6667,61.7021,4.2128,62.6761,68.4932,4.261,81.25,8.3721,3.5628,1.2518,0.6202,50.1755,9.9206,18.8975,79.7488,89.8649,0.7703,1.4925,22.5116,2.1869,93.451,85.7143,89.6552,94.8276,18.7635,2.4795 Cheshire and Merseyside ICB,N82004,Garston Family Health Centre,3389.993209,6.0685,52.0548,61.1111,3.1683,62.9921,62.5,2.5531,71.4286,5.0921,3.3221,0.3076,5.0921,41.8493,7.096,14.088,52.2388,75,1.0151,1.2612,14.2186,2.2436,83.5193,82.3529,45.4545,87.8788,23.235,1.2919 Cheshire and Merseyside ICB,N82009,Grassendale Medical Centre,8743.336468,5.7175,78.5953,84.1584,4.7078,75.8389,75.817,3.2931,81.9149,5.9767,2.1916,0.9161,1.312,21.1433,5.6781,16.1178,63.1579,79.8046,0.5566,1.1016,12.6676,0.5507,91.0814,84.507,76,86.6667,9.2522,1.9828 Cheshire and Merseyside ICB,N82011,Priory Medical Centre,16351.77168,6.4095,62.2905,74.1818,3.5651,52.5253,61.7117,3.9224,76.087,5.8244,3.5651,0.7863,1.8603,62.7597,8.4725,14.4389,50.0377,80.2768,0.5808,1.2688,13.6198,1.9739,83.9461,79.4521,76.5957,87.234,20.3739,1.9657 Cheshire and Merseyside ICB,N82014,Lance Lane Medical Centre,6947.194324,7.011,69.2641,70.9091,4.5525,70.4082,73.3813,3.7191,84.8485,7.4504,3.5185,0.5401,2.8267,27.4006,7.5844,17.8241,65.5471,79.3103,0.8179,1.2346,13.9461,1.5267,86.0383,82.3171,73.3333,92,12.4864,2.1142 Cheshire and Merseyside ICB,N82018,Ellergreen Medical Centre,15500.39461,5.6464,58.0475,65.942,2.8495,67.7755,67.4419,3.9058,85.6164,6.967,3.4651,0.4711,2.3189,54.3705,8.4831,14.0274,56.9975,84.6715,0.4103,1.1778,17.3256,2.5006,86.4514,85.7576,83.7662,87.6623,19.7862,1.8389 Cheshire and Merseyside ICB,N82019,Langbank Medical Centre,6420.569802,7.456,60.4938,58.5586,3.2141,68.8235,65.0602,4.6291,63.4615,8.1333,5.0131,0.7075,4.6667,54.8942,10.3954,17.1215,77.3827,93.0556,0.6266,1.3139,18.32,0.5777,90.0508,83.6478,91.4286,95.7143,23.8317,2.2438 Cheshire and Merseyside ICB,N82022,Edge Hill Health Centre,12778.46538,5.3915,52.8926,54.7059,2.6243,45.1791,51.7483,2.5625,58.8785,4.1651,2.861,0.4219,2.3855,55.3371,7.1322,12.2157,54.8682,70.6468,0.6586,1.5334,9.2768,2.8571,77.2992,85.0829,60.3774,85.8491,22.3667,1.7084 Cheshire and Merseyside ICB,N82024,West Derby Medical Centre,13937.32058,6.5503,69.6391,70.679,4.377,74.3529,69.8885,4.8919,82.7815,6.9099,3.3393,0.632,2.2224,29.0819,7.2104,16.9931,73.8202,90.201,0.593,0.9519,14.0237,0.9586,87.8097,87.1528,85.7143,97.7444,11.6189,1.9974 Cheshire and Merseyside ICB,N82026,Penny Lane Surgery,5938.393571,6.4726,72.3982,73.0769,4.508,72.77,75.8065,3.0053,92.4528,7.1929,2.1975,0.9372,1.8663,19.2665,6.0868,16.7394,59.1304,76.1905,0.3555,1.0341,12.3056,0.546,87.1468,81.8182,85.7143,89.7959,11.3193,2.1005 Cheshire and Merseyside ICB,N82033,Dingle Park Practice,7716.362087,6.2117,59.7765,62.8319,3.3006,71.7213,70.7865,3.5714,84.9057,6.7453,4.0284,0.5755,1.6553,55.1739,9.4595,15.5213,80.0258,94.3262,0.4232,1.2018,19.6358,0.8933,89.3926,93.1937,91.7647,96.4706,21.1981,2.3697 Cheshire and Merseyside ICB,N82034,The Village Surgery,7372.483833,6.6048,63.913,65.1007,5.3147,65.9898,63.7931,4.966,73.8095,7.1241,3.8532,0.4983,1.6393,38.9157,9.6135,18.6016,70.9966,83.2599,0.6145,1.3121,17.0816,1.2821,90.3792,87.5676,76.087,83.6957,20.0156,2.4082 Cheshire and Merseyside ICB,N82035,Mather Avenue Surgery,10353.15155,7.7042,74.1176,79.386,5.204,74.8227,75.2874,4.3385,84.5238,9.0024,3.2932,1.1802,1.919,26.9476,7.7095,20.58,63.3609,79.6834,0.9329,1.6972,14.703,3.9488,87.9915,82.2785,79.798,91.9192,10.349,2.484 Cheshire and Merseyside ICB,N82036,Netherley Health Centre,5213.006068,9.6552,59.8131,53.1646,4.5895,60.1942,62.3188,5.7583,68,7.9713,5.6157,2.5656,3.7343,55.1421,9.9578,19.8689,66.9759,76.5823,0.5986,1.8244,17.7379,4.5198,87.6334,82.5,57.6923,88.4615,24.032,2.7936 Cheshire and Merseyside ICB,N82037,Westmoreland GP Centre,14069.58165,8.751,69.9074,75.3247,4.5183,65.8098,66.9388,4.3834,73.5043,8.5115,2.3771,0.8851,2.2821,34.81,8.831,18.1742,74.1917,87.5318,0.9863,1.2307,15.368,0.5338,89.2909,81.5126,81.2903,92.9032,13.2977,2.1327 Cheshire and Merseyside ICB,N82039,Storrsdale Medical Centre,3647.598604,6.889,71.4286,79.7619,3.6714,75.2,72.6027,2.6187,89.1304,7.6419,1.7972,0.4878,2.6894,17.5483,7.0181,17.3813,74.6812,86.7188,0.1797,0.7959,10.6592,0.463,89.7042,70.6667,86.8421,92.1053,8.2372,1.4377 Cheshire and Merseyside ICB,N82041,Oak Vale Medical Centre,13733.52931,7.09,73.8717,81.2081,4.6897,78.8018,78.5088,3.7581,89.8204,7.8628,2.6607,0.8764,2.2769,25.5384,7.4337,17.6062,59.942,73.6634,0.5053,0.8369,12.0623,1.0442,91.4128,78,80.1653,87.6033,9.0371,2.3922 Cheshire and Merseyside ICB,N82046,Sefton Park Medical Centre,10613.88993,5.4416,62.8571,67.1329,2.7755,58.8391,68.9655,2.3849,86.3636,4.9892,2.5905,0.442,2.1536,40.2262,6.5788,11.3487,69.57,87.8173,0.6168,1.984,12.9935,3.3682,85.4439,74.2574,84.3137,92.1569,19.6107,1.5522 Cheshire and Merseyside ICB,N82048,Walton Medical Centre,9750.152391,6.9381,71.2062,61.9883,4.191,65.4321,68.5039,4.6614,74.3243,9.6316,3.7919,0.4562,2.386,59.2481,10.1454,18.4034,68.7441,90.9483,0.5987,1.2117,21.807,0.6759,90.8978,92.6641,84.9057,90.566,18.8834,2.2381 Cheshire and Merseyside ICB,N82049,Westminster Medical Centre,9086.368903,5.4373,56.6327,50,3.6121,58.0508,58.3333,3.3354,71.2329,8.6845,4.1039,0.83,1.1619,62.0935,9.8912,15.9545,71.7742,86.4706,0.538,1.7676,16.0102,0.5915,84.2308,89.3617,79.7872,93.617,25.0708,1.9674 Cheshire and Merseyside ICB,N82050,Gateacre Medical Centre,2982.433257,7.1088,70.2128,72.7273,4.2191,78.75,78.5714,4.2596,77.7778,5.0898,3.9351,0.7708,3.5429,38.4754,8.8134,19.7566,68.5139,82.2222,0.9736,1.8661,18.5629,0.8789,90.9091,90.7692,84.8485,96.9697,18.6732,1.9067 Cheshire and Merseyside ICB,N82052,Townsend Medical Centre,7390.599425,6.3936,61.5819,61.2903,2.8312,59.5745,62.2449,2.8153,67.7419,3.0636,3.9447,0.4772,0.3933,56.8794,7.4873,14.3312,52.8629,66,0.4136,1.2407,15.8145,0.1013,88.764,90.4348,70.1493,88.0597,22.9119,1.5906 Cheshire and Merseyside ICB,N82053,Aintree Park Group Practice,17788.59969,6.9286,75.2632,70.1456,4.3083,73.855,74.6177,3.7542,78.771,5.4591,2.7643,0.6288,1.7988,29.6331,7.777,16.6853,57.0828,79.1128,0.7471,0.9214,14.8522,0.6837,87.5374,79.3956,74.3017,86.5922,11.4561,2.1666 Cheshire and Merseyside ICB,N82054,Abercromby Family Practice,9345.406464,5.5184,54.7771,63.8889,1.9929,47.1014,55.914,2.309,65.4546,3.9209,3.0924,0.3573,2.165,46.7341,7.395,11.2012,58.5756,77.1654,0.4398,2.3914,13.4845,0.4073,84.9262,85.034,87.5,93.75,21.3275,1.2644 Cheshire and Merseyside ICB,N82058,Rock Court Surgery,6751.772989,6.6394,66.2857,73.3813,3.4558,72.7723,71.5686,3.9986,80,4.1515,3.691,0.4523,3.0338,47.1578,8.1518,15.9761,76.7716,90.0826,0.8866,1.5198,15.99,0.4599,88.8643,90.9091,89.3939,95.4545,19.1081,2.4064 Cheshire and Merseyside ICB,N82059,Greenbank Drive Surgery,5408.455664,6.0749,65.7303,70.6897,3.4699,71.6102,72.8155,2.1044,93.75,2.8297,0.9478,0.3374,1.3582,29.553,3.915,13.494,67.4126,87.2,0.4337,0.8996,9.9038,1.4521,79.0375,92.6471,81.0811,94.5946,11.045,1.2048 Cheshire and Merseyside ICB,N82062,Fulwood Green Medical Ctr,7271.740549,6.4268,77.4074,75.2874,4.5819,73.5537,78.0303,3.8089,90.7407,6.9454,2.052,0.8573,2.1251,23.064,6.9565,15.6711,65.3378,80.6604,0.3654,0.9276,12.2495,0.8655,85.7101,80.3681,91.5493,92.9577,8.3975,2.4455 Cheshire and Merseyside ICB,N82065,Earle Road Medical Centre,5052.704185,9.8416,55.2381,66.6667,2.6239,63.2353,69.4915,3.5228,80.3922,7.1983,3.8144,0.5588,0.9308,53.3363,8.5061,15.5977,75.3108,83.5443,0.826,2.551,17.6854,1.3776,86.6843,93.3962,90.7407,92.5926,26.2232,1.8465 Cheshire and Merseyside ICB,N82066,Woolton House Medical Ctr,10296.05199,7.0653,73.2648,77.8689,5.4206,73.3813,71.8919,4.7593,87.5,8.3135,2.0382,0.7155,2.4281,20.6796,7.7034,19.0373,69.2133,85.023,0.7155,1.0191,9.1713,2.5349,88.3507,85.3384,91.9192,94.9495,7.8352,2.7212 Cheshire and Merseyside ICB,N82067,Dr A Gupta Benim Medical Centre,8331.212416,4.8646,52.6786,50,2.3312,43.2039,58.1081,2.3312,46.875,5.0042,2.573,0.2072,3.7006,61.8784,6.194,13.0202,70.5615,91.579,2.5384,2.1585,15.7065,2.4788,79.7428,85.1852,85.1852,90.7407,27.6249,1.3642 Cheshire and Merseyside ICB,N82070,The Elms Medical Centre_N82070,12677.08817,7.9034,62.0462,70.4036,3.4696,63.7333,68.1319,4.3061,74.2574,7.0419,4.1925,0.7125,3.7649,44.0072,7.8342,15.7167,73.6428,87.6494,0.6919,2.5919,17.3358,1.3375,88.9847,90.1515,85.0877,93.8596,20.5578,2.2202 Cheshire and Merseyside ICB,N82073,The Ash Surgery,6950.750886,6.4644,71.8615,72.3529,4.34,79.476,77.3723,3.3639,92.8571,5.9262,2.4028,0.6007,1.6179,21.2045,6.0295,15.1825,75.3886,89.9582,0.3154,1.3816,12.7068,2.528,89.248,79.8246,89.8305,98.3051,9.783,1.9673 Cheshire and Merseyside ICB,N82074,Old Swan Health Centre,11502.3931,6.9396,62.1019,69.9074,4.0315,62.3762,62.9213,3.8051,73.5294,4.76,3.8375,0.539,2.0056,45.8157,8.3454,15.7055,54.7697,67.6349,0.4527,1.4337,14.1864,0.8126,79.6381,88.9423,56.3025,87.395,19.1091,2.0481 Cheshire and Merseyside ICB,N82076,Brownlow Health @ Princes Park,13148.21478,5.9554,55.1546,57.037,2.3878,56.1097,61.7886,2.0311,82.7586,2.6107,2.5463,0.3864,3.4892,57.2922,6.9893,8.9468,67.6662,74.2647,0.4954,3.1408,12.9671,0.2494,82.8229,82.0809,81.3084,89.7196,20.7645,1.2583 Cheshire and Merseyside ICB,N82077,Bousfield Health Centre (Dr Shah),3487.652935,6.0008,61.1111,72.4138,3.5809,64.5161,68.75,4.0709,78.5714,8.2739,4.6739,0.3392,3.9943,57.964,9.4278,17.1881,73.0159,92.3077,1.0177,0.8293,24.2035,0.3236,91.8292,83.8235,80,97.1429,20.2957,1.5077 Cheshire and Merseyside ICB,N82078,Bousfield Health Centre (Dr Roberts),4557.142099,6.1491,62.8319,72.2222,3.7662,71.875,64.8148,4.1883,88.4615,8.0451,6.2662,0.487,4.7868,61.4664,9.0008,18.8312,70.0201,81.9277,0.4546,1.2987,20.4747,0.4938,90.1075,76.3441,67.5,87.5,19.8951,2.7273 Cheshire and Merseyside ICB,N82079,Greenbank Road Surgery,5434.541159,5.6063,65.7534,73.0769,2.381,67.7824,78.7234,1.7972,96.875,3.2716,1.4439,0.2765,1.6265,24.8737,3.9734,9.6006,66.6004,82.7869,0.2458,1.1828,7.7585,0.1571,73.6821,78.7879,77.7778,86.1111,11.7723,1.0753 Cheshire and Merseyside ICB,N82081,Islington House Medical Centre,7643.365467,7.6442,59.4406,61.1111,3.0325,56.8528,62.5,3.6568,67.3913,4.8626,4.8519,0.3924,2.2896,58.0935,7.4935,12.5223,70.947,74.6835,0.5887,2.0871,16.027,0.4975,90.3445,83.7209,87.8788,93.9394,23.5499,1.7481 Cheshire and Merseyside ICB,N82082,St James' Health Centre,7519.251417,4.4279,60.274,62.9213,1.7235,50.7653,58.5714,1.6457,68.0851,1.7078,1.9178,0.4147,3.3028,39.2316,4.0455,8.7728,71.7544,90.6542,0.0778,0.8682,8.8497,0.4599,84.159,91.7647,89.7959,89.7959,19.9909,1.1015 Cheshire and Merseyside ICB,N82083,Jubilee Medical Centre,11749.77898,6.9577,65.1613,60.6695,3.2395,70.9589,70.098,3.437,82.6087,6.1079,3.2691,0.721,3.0156,41.9641,8.3553,16.1383,74.1463,89.9498,0.9086,0.9778,16.2919,1.4391,89.5422,83.6207,87.8505,91.5888,15.9698,1.9654 Cheshire and Merseyside ICB,N82084,Gateacre Brow Surgery,7868.405511,8.414,69.4444,72.8261,4.8473,75.5435,76.0563,5.8136,90.1639,9.2728,2.6808,1.2157,1.963,27.3976,8.9798,21.0723,75.3029,87.4552,0.6858,1.278,14.8813,2.4167,90.1868,86.1751,87.7778,90,11.5564,2.8834 Cheshire and Merseyside ICB,N82086,Abingdon Family Health Care Centre,4866.646495,6.8711,65.625,56.5217,4.0856,63.1148,61.6438,4.6415,61.5385,2.8213,4.3635,0.5003,3.6921,54.2216,8.6136,14.7026,70.4128,94.6237,1.9177,1.473,14.2111,0.0715,89.6594,91.2088,93.75,93.75,20.0471,2.4736 Cheshire and Merseyside ICB,N82087,Gillmoss Medical Centre,3045.666845,5.0702,56.6038,52.5424,4.0291,69.5652,57.4468,6.0009,70,9.5137,6.5581,0.6001,2.1142,53.3256,10.8628,16.4595,74.6988,82.6923,0.643,0.9001,19.8732,0.1998,89.3655,87.3563,81.5789,97.3684,23.1279,2.4861 Cheshire and Merseyside ICB,N82089,Picton Green,3947.84638,4.8138,53.125,47.7273,1.8765,50,60.5263,1.6419,57.6923,1.5169,2.1892,0.2346,2.0857,55.1142,8.201,8.8872,65.0327,77.1429,0.3649,1.3552,13.614,0.5263,76.6022,88,85.7143,85.7143,26.9329,0.9643 Cheshire and Merseyside ICB,N82090,Green Lane Medical Centre,12652.73224,7.0967,67.8125,73.3333,3.3663,59.4901,70.7182,3.425,77.6596,6.8056,3.6794,0.5676,2.5138,48.5125,8.2477,16.8999,70.4782,85.5634,0.8514,1.3994,15.5487,1.8202,88.8049,88.9328,80,90.8333,19.9663,1.9571 Cheshire and Merseyside ICB,N82091,GP Practice Riverside (Dr Jude),2800.234928,6.0247,53.5714,48.6486,1.9157,62.2222,62.069,2.0434,74.0741,5.3464,3.7037,0.2129,3.3279,55.0189,8.0732,12.0477,72.6191,93.5484,0.8514,1.2346,18.3852,0.6231,85.6774,82.3529,85.7143,92.8571,22.0557,1.6603 Cheshire and Merseyside ICB,N82092,The Valley Medical Centre,9216.574705,6.67,74.8447,75.3425,5.1399,78.3673,77.439,4.695,84.5238,6.5137,2.8568,0.6557,2.3518,23.8831,8.0169,19.6464,61.305,80.5556,0.6205,0.8781,16.0775,1.351,90.8691,88.5593,89.5238,93.3333,8.8516,2.5524 Cheshire and Merseyside ICB,N82093,Derby Lane Medical Centre,4780.472005,5.8312,66.4122,71.9101,3.3357,74.5223,74.3243,2.8152,83.0189,6.6824,3.3357,1.1356,4.2578,42.113,8.4429,17.3882,62.5207,78.7879,0.6388,1.0646,17.1496,1.0156,92.3212,87.5,81.4815,92.5926,20.2007,1.5851 Cheshire and Merseyside ICB,N82094,Belle Vale Health Centre,10849.5973,7.4341,67.1053,67.2646,5.1763,71.5909,71.2644,4.2265,80,6.7406,4.3571,0.558,3.0747,42.4686,9.9404,19.8979,67.3104,87.7698,0.9142,1.5315,18.507,0.4896,90.4053,85.9316,89.6,94.4,17.5157,2.8256 Cheshire and Merseyside ICB,N82095,Albion Surgery,7043.901728,6.8298,57.8125,58.5106,2.9232,64.6067,65.4762,3.7224,89.7436,6.299,4.2902,0.4206,3.1887,63.8033,7.6446,15.4995,78.0291,89.8305,0.1893,1.1777,17.6686,0.381,91.1259,91.7431,85.4545,94.5455,20.7012,1.8507 Cheshire and Merseyside ICB,N82097,The Grey Road Surgery,11258.70779,6.7211,61.8257,58.8889,2.9813,59.1045,58.4416,2.7082,71.9512,6.4073,3.3227,0.3186,1.5799,56.1756,8.2292,15.4188,65.7119,88.0952,0.7169,1.6158,16.4131,1.4024,87.929,84.9462,83.6538,87.5,23.6924,1.4452 Cheshire and Merseyside ICB,N82099,Mere Lane Group Practice,12513.051,6.9877,52.7919,46.4567,2.3174,51.2903,55.7692,2.752,77.7778,3.5805,4.3693,0.338,2.2597,68.721,8.0119,12.0579,51.484,76.4228,0.3862,1.7019,13.8765,0.3518,84.7677,90.2439,61.9565,80.4348,29.3507,1.5329 Cheshire and Merseyside ICB,N82101,Kirkdale Medical Centre,3865.721345,7.1177,52.5773,67.2131,3.9586,59.5506,63.2653,3.8846,76.1905,4.0954,5.6974,0.37,3.2853,65.1044,8.4633,20.4958,68.018,89.0909,0.37,0.9249,18.6769,0.9099,87.4194,83.0189,94.2857,91.4286,21.8779,1.4428 Cheshire and Merseyside ICB,N82103,Anfield Group Practice,11930.89751,6.3971,55.2511,62.987,2.4952,60.1671,65.4135,3.6303,73.3871,3.9886,3.8124,0.2035,3.3191,60.223,8.1859,13.5575,71.2996,89.2405,1.0495,1.5314,12.9915,0.9091,86.6425,88.2023,62.5,91.0714,26.8174,1.5528 Cheshire and Merseyside ICB,N82104,Stoneycroft Medical Centre,5345.155891,6.9838,67.0732,76.1468,4.5345,71.3178,73.8095,4.9928,80,7.8925,3.4491,0.7477,3.209,37.958,9.0391,21.0564,68.9986,86.1111,0.9166,1.4231,16.5366,0.2743,91.7556,79.4872,83.3333,90.7407,12.4863,2.2431 Cheshire and Merseyside ICB,N82106,The Village Medical Ctre,4227.34591,7.1979,72.2222,77.3196,5.7303,76,81.6901,4.5787,92.5926,9.8317,3.4832,0.7865,1.4141,21.7906,6.7509,19.2978,78.5985,87.4214,0.2528,0.9832,14.9495,3.6343,90.8238,84.6154,92.1053,94.7368,8.6163,2.4719 Cheshire and Merseyside ICB,N82107,Edge Hill Health @ Mossley Hill Surgery,1720.307364,5.6242,71.6216,73.1707,4.9025,70,66.6667,3.7212,85.7143,5.3388,2.9533,0.6497,1.5058,18.2439,8.2369,18.1335,46.8254,76.3636,0.3544,0.886,8.6927,0.2642,83.912,72.2222,63.6364,81.8182,11.4731,1.772 Cheshire and Merseyside ICB,N82108,Rutherford Medical Centre,7015.886043,6.7343,79.2683,79.0419,4.4036,81.2721,82.5758,2.6373,85.5556,6.1579,1.488,0.6291,2.1038,16.9374,4.7777,13.0293,72.0874,88.5376,0.2299,0.6896,10.688,0.9431,90.9846,77.5,94.4444,98.1481,6.4001,1.7905 Cheshire and Merseyside ICB,N82109,Speke HC - Dr Thakur,6624.716986,5.5271,57.7143,56.4516,3.611,68.7179,66.6667,4.1553,73.3333,8.0454,5.1533,0.5625,5.0639,51.4661,9.8832,17.4741,74.4681,76.0684,0.7803,1.0162,21.4151,4.3902,92.6134,89.8305,92.4051,96.2025,27.2751,1.9416 Cheshire and Merseyside ICB,N82110,Long Lane,10391.08002,9.4948,60.9023,64.0212,3.5038,70.2422,61.9048,3.9247,73.913,7.607,4.5809,0.3838,2.2033,52.106,9.775,16.5408,64.5354,84.0491,1.0276,1.4857,18.2374,0.9891,86.4381,82.5203,81.5789,93.8596,21.9763,2.08 Cheshire and Merseyside ICB,N82113,Fairfield Medical Centre,10380.96133,5.1546,42.3729,41.4634,1.5285,45.7413,54.2169,2.3406,75.6303,1.796,2.2212,0.1911,3.8227,59.815,7.1579,12.3358,62.9512,70.3297,0.9434,1.7793,16.5596,0.1301,80.2836,90.991,71.4286,82.1429,23.1396,1.0509 Cheshire and Merseyside ICB,N82115,Vauxhall Health Centre,13454.2577,7.5926,59.2727,59.5628,3.7256,59.7598,60.1351,3.9187,56.25,6.0382,4.7819,0.9087,3.3189,60.8261,7.4406,15.2431,65.285,80.9783,0.6588,1.9309,14.6423,0.3391,85.4307,82.4786,81.0526,87.3684,22.9691,2.3512 Cheshire and Merseyside ICB,N82116,Hillfoot Health,7896.283586,6.1691,74.5902,68.7861,3.5483,70.8487,74.2647,3.2634,91.5493,6.6953,2.0461,0.3238,1.4878,29.6873,7.2348,14.6076,64.8936,71.8085,0.5439,0.7123,16.5647,0.76,84.7235,86.3095,80.7692,89.7436,13.4537,1.813 Cheshire and Merseyside ICB,N82117,Brownlow Group Practice,45191.69191,3.0472,56.4748,47.4747,0.7116,35.9034,56.7568,0.5093,80.531,0.552,0.7203,0.1238,2.5488,30.5169,1.2732,2.4556,65.6299,81.1475,0.0576,0.9052,4.3508,0.3507,76.025,82.2857,85.1852,89.8148,14.9547,0.3087 Cheshire and Merseyside ICB,N82617,Brownlow at Marybone,7118.832876,3.4611,57.3333,52,1.1265,47.0109,67.4419,0.9909,71.4286,1.2991,1.0848,0.3547,1.9157,27.5684,2.2405,4.4331,70.1897,94.6429,0.1043,0.5841,7.1452,0.4287,82.1244,84.058,88.2353,91.1765,15.1941,0.751 Cheshire and Merseyside ICB,N82633,Calvary Health Centre,4864.523168,6.8533,63.2479,67.9487,4.5124,62.037,74.1379,3.9976,75,7.0189,3.6947,2.7862,2.1132,43.5507,8.0224,20.2302,67.0707,86.7052,1.3325,1.6051,15.2453,1.1388,90.0187,76.7442,84.0909,90.9091,16.8816,2.877 Cheshire and Merseyside ICB,N82641,Sandringham Medical Centre,7089.611626,5.5094,61.745,66.3265,2.7388,56.1702,66.6667,2.8081,81.8182,4.5557,3.2935,0.2773,1.9816,39.1231,6.3447,11.6485,75.3623,86.6667,0.676,2.4441,15.3626,0.3767,81.0822,85.7143,87.5,92.8571,21.6448,1.4041 Cheshire and Merseyside ICB,N82645,Brownlow Health At Kensington,10630.37969,4.3568,54.1985,48.913,1.8049,49.1429,60.2564,1.6221,71.9512,2.431,2.1019,0.2285,2.1426,56.3078,4.791,7.608,71.0526,89.5833,0.3998,1.2566,10.8914,0.1859,80.0489,81.1111,81.8182,90.9091,17.8171,0.9481 Cheshire and Merseyside ICB,N82646,Riverside Centre for Health,9571.563815,4.5738,56.7901,49.1228,1.6978,52.0635,56.701,2.3065,62.3853,4.1819,2.6055,0.1815,3.1401,53.6443,7.1916,9.7277,68.7811,84.1122,0.3951,1.1639,17.0653,0.153,84.4814,88.8889,84.9462,93.5484,23.127,0.9824 Cheshire and Merseyside ICB,N82648,Poulter Road Medical Centre,2238.626946,6.7889,68.1818,71.4286,2.5547,74.3902,75.7576,3.0566,75,4.3653,3.3759,0.1369,4.6525,37.3098,7.0335,15.4197,64.966,90.9091,0.7756,0.6843,17.9207,0.4071,91.8108,91.3044,75,95.8333,18.8646,1.5967 Cheshire and Merseyside ICB,N82650,Speke Health Centre,5814.414904,7.3456,53.9063,57.8947,2.2836,67.4419,66.1765,3.1374,75.3247,3.6579,3.6537,0.3971,4.3841,56.2824,7.5152,12.5695,67.325,81.579,0.5361,0.9929,15.2501,0.8969,90.5355,87.7359,77.7778,87.037,29.2899,1.1914 Cheshire and Merseyside ICB,N82651,Stanley Medical Centre,6270.626277,5.0535,55.9441,50,3.8023,54.8148,60.6061,4.7766,73.0769,7.481,5.6084,0.4753,1.7826,64.957,8.2279,15.423,77.095,87.5,0.5466,1.4021,20.2805,0.2566,87.3834,88.4615,77.7778,98.1481,24.3726,2.4477 Cheshire and Merseyside ICB,N82655,Moss Way,4100.13531,5.2609,56.9767,61.1111,3.444,64.7059,60,5.0021,81.25,5.5976,4.7151,5.6991,2.118,53.9939,12.6238,17.3842,74.9049,84.4721,0.82,1.845,26.3742,2.2543,93.9886,84.7059,93.617,91.4894,17.9133,3.649 Cheshire and Merseyside ICB,N82662,Dunstan Village Group Practice,8965.503517,6.0623,57.4324,59.6154,2.2785,52.7778,61.7978,2.4304,65.0794,4.6176,2.3418,0.9873,1.3348,53.5508,9.8822,12,55.8198,84.5638,0.443,1.7089,18.1097,2.0812,88.7603,80.2395,75.7009,89.7196,21.6885,1.5063 Cheshire and Merseyside ICB,N82663,Hornspit Medical Centre,4785.7508,5.8517,68.6131,71.5789,3.6095,68.125,73.3333,3.496,88.3333,7.3193,3.2917,0.454,2.529,39.9597,7.9402,15.5959,60.8621,81.3084,0.227,0.9081,15.8286,0.6566,87.643,85.1064,83.3333,93.75,15.3682,1.7707 Cheshire and Merseyside ICB,N82664,Rocky Lane Medical Centre,2203.774588,5.0207,65.8228,80.7692,3.6993,69.6629,69.3878,2.0858,64.7059,5.5032,2.2826,0.3542,1.5369,21.8104,6.2103,14.7186,66.3366,85.9155,0.3542,0.7871,10.4115,0.3236,83.4229,75.6098,78.2609,86.9565,9.7372,1.1806 Cheshire and Merseyside ICB,N82668,Walton Village Medical Centre,4147.077854,5.2768,55.4054,52.9412,2.1258,53.2374,61.7021,2.5686,75.9259,3.002,3.3658,0.3248,1.4425,58.5084,6.6615,12.9613,64.6277,77.7778,0.6791,1.6534,15.0098,0.7423,87.0222,87.5,81.25,87.5,26.5356,1.0924 Cheshire and Merseyside ICB,N82669,Great Homer Street Medical Centre,5798.232739,6.8123,58.8785,64.4068,3.6534,66.3636,65.2174,3.2307,69.697,6.25,6.6123,0.8756,2.0708,65.2486,9.1719,15.1268,72.3898,94.2857,0.6643,2.4457,19.503,0.919,90.2474,83.9506,86.9565,91.3043,27.346,2.4759 Cheshire and Merseyside ICB,N82671,Bigham Road Medical Centre,3670.265618,3.9003,49.2308,44.7368,2.1407,41.1111,61.7647,2.867,60.8696,3.6782,2.8288,0.1147,1.7931,60.5022,7.1655,12.0031,67.509,83.7838,1.3379,2.1025,8.6437,0.2541,72.551,77.7778,83.3333,83.3333,26.6411,1.0321 Cheshire and Merseyside ICB,N82676,Fir Tree,3680.122824,5.0115,72.549,70.3704,3.0494,69.403,67.7419,2.1781,79.3103,7.7018,1.6215,0.3872,1.8717,22.4084,7.3973,16.2875,63.7153,78.3505,0.6292,0.4356,17.7969,0.1209,84.8868,78.4091,71.1111,93.3333,9.7695,1.2585 Cheshire and Merseyside ICB,N82678,Stopgate Lane Medical Centre,3852.348018,5.9806,57.9545,50,2.4922,68.9076,65.3846,2.7726,80.6452,2.5937,3.271,0.3115,0.9881,51.4866,6.8798,12.6791,78,91.2281,0.9657,1.1527,14.2446,1.277,90.0502,95.7447,96.6667,93.3333,24.8894,1.3084 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 A82003,40.0,34.0,53.0,56.0,48.0,46.0,51.0,49.0,52.0,54.0,57.0,63.0,64.0,55.0,71.0,51.0,62.0,59.0,59.0,63.0,58.0,57.0,56.0,70.0,57.0,63.0,85.0,69.0,74.0,65.0,78.0,79.0,81.0,60.0,84.0,86.0,60.0,89.0,66.0,71.0,63.0,68.0,63.0,66.0,74.0,67.0,59.0,70.0,70.0,58.0,65.0,72.0,97.0,91.0,99.0,87.0,89.0,96.0,87.0,101.0,105.0,104.0,76.0,83.0,84.0,89.0,81.0,81.0,83.0,62.0,78.0,77.0,66.0,54.0,58.0,77.0,76.0,69.0,82.0,62.0,50.0,45.0,49.0,37.0,34.0,35.0,20.0,22.0,20.0,14.0,16.0,9.0,10.0,5.0,5.0,8.0 A82005,17.0,5.0,15.0,13.0,12.0,9.0,14.0,17.0,22.0,17.0,11.0,27.0,23.0,18.0,16.0,19.0,23.0,21.0,28.0,24.0,34.0,43.0,46.0,39.0,30.0,36.0,43.0,55.0,46.0,59.0,56.0,40.0,52.0,51.0,53.0,57.0,48.0,35.0,51.0,53.0,45.0,61.0,37.0,53.0,42.0,47.0,40.0,34.0,35.0,32.0,40.0,39.0,31.0,37.0,52.0,61.0,48.0,46.0,44.0,52.0,42.0,53.0,38.0,50.0,49.0,39.0,45.0,39.0,34.0,43.0,43.0,33.0,46.0,32.0,30.0,25.0,31.0,31.0,22.0,25.0,36.0,20.0,17.0,20.0,17.0,14.0,10.0,16.0,8.0,8.0,2.0,6.0,3.0,1.0,3.0,6.0 A82007,52.0,59.0,46.0,59.0,62.0,61.0,73.0,67.0,73.0,59.0,76.0,59.0,78.0,64.0,71.0,74.0,71.0,63.0,53.0,59.0,55.0,66.0,44.0,59.0,73.0,80.0,72.0,82.0,66.0,78.0,90.0,77.0,81.0,81.0,76.0,80.0,81.0,78.0,71.0,85.0,86.0,77.0,71.0,58.0,55.0,58.0,67.0,77.0,50.0,64.0,53.0,63.0,62.0,84.0,88.0,79.0,70.0,88.0,81.0,84.0,90.0,78.0,91.0,73.0,78.0,80.0,58.0,72.0,50.0,57.0,55.0,53.0,52.0,49.0,44.0,53.0,56.0,50.0,64.0,49.0,42.0,28.0,33.0,16.0,16.0,19.0,19.0,10.0,7.0,11.0,5.0,6.0,4.0,3.0,1.0,1.0 A82008,28.0,44.0,45.0,49.0,52.0,62.0,77.0,62.0,82.0,67.0,48.0,84.0,69.0,69.0,50.0,72.0,78.0,60.0,71.0,87.0,70.0,59.0,58.0,79.0,58.0,67.0,80.0,77.0,85.0,96.0,77.0,87.0,86.0,84.0,94.0,84.0,91.0,85.0,72.0,83.0,77.0,79.0,73.0,81.0,61.0,83.0,66.0,53.0,69.0,68.0,77.0,67.0,60.0,88.0,85.0,73.0,87.0,86.0,80.0,97.0,86.0,98.0,86.0,80.0,101.0,62.0,71.0,67.0,63.0,63.0,57.0,72.0,55.0,69.0,62.0,60.0,52.0,82.0,67.0,36.0,46.0,43.0,33.0,34.0,33.0,26.0,26.0,21.0,16.0,14.0,9.0,7.0,6.0,11.0,6.0,4.0 A82009,38.0,41.0,38.0,42.0,50.0,46.0,54.0,49.0,61.0,45.0,53.0,58.0,48.0,54.0,56.0,57.0,77.0,57.0,65.0,55.0,42.0,54.0,48.0,64.0,58.0,59.0,64.0,51.0,44.0,56.0,65.0,71.0,59.0,56.0,64.0,66.0,71.0,68.0,54.0,56.0,61.0,52.0,63.0,48.0,52.0,56.0,33.0,41.0,45.0,46.0,40.0,57.0,81.0,52.0,67.0,58.0,64.0,59.0,71.0,64.0,59.0,72.0,55.0,65.0,61.0,46.0,46.0,52.0,49.0,35.0,39.0,42.0,47.0,38.0,48.0,43.0,38.0,51.0,54.0,44.0,27.0,41.0,21.0,23.0,26.0,20.0,14.0,14.0,15.0,11.0,4.0,3.0,6.0,2.0,4.0,2.0 A82010,32.0,16.0,32.0,21.0,37.0,34.0,35.0,34.0,30.0,50.0,36.0,31.0,33.0,28.0,38.0,41.0,40.0,32.0,28.0,43.0,39.0,37.0,27.0,39.0,35.0,40.0,56.0,51.0,41.0,46.0,38.0,34.0,47.0,60.0,48.0,47.0,42.0,40.0,33.0,42.0,45.0,43.0,37.0,43.0,37.0,30.0,34.0,29.0,34.0,39.0,48.0,33.0,39.0,42.0,40.0,45.0,47.0,56.0,42.0,52.0,47.0,41.0,55.0,52.0,50.0,43.0,45.0,54.0,35.0,41.0,32.0,32.0,34.0,32.0,29.0,28.0,45.0,37.0,37.0,23.0,19.0,23.0,22.0,17.0,8.0,18.0,14.0,10.0,9.0,6.0,5.0,5.0,3.0,6.0,1.0,3.0 A82025,46.0,46.0,52.0,53.0,44.0,37.0,45.0,59.0,52.0,61.0,68.0,65.0,52.0,63.0,61.0,69.0,69.0,68.0,46.0,45.0,62.0,58.0,51.0,55.0,61.0,63.0,54.0,58.0,50.0,77.0,72.0,62.0,70.0,80.0,83.0,77.0,95.0,90.0,73.0,68.0,77.0,75.0,74.0,69.0,89.0,65.0,66.0,60.0,66.0,74.0,82.0,75.0,67.0,79.0,77.0,78.0,84.0,79.0,86.0,97.0,104.0,97.0,83.0,82.0,66.0,88.0,79.0,78.0,58.0,64.0,64.0,62.0,63.0,66.0,48.0,69.0,56.0,68.0,67.0,41.0,37.0,42.0,35.0,29.0,20.0,22.0,26.0,16.0,15.0,19.0,9.0,6.0,7.0,3.0,4.0,3.0 A82026,64.0,70.0,47.0,69.0,77.0,72.0,81.0,84.0,71.0,98.0,80.0,95.0,77.0,95.0,88.0,90.0,91.0,90.0,96.0,81.0,84.0,94.0,72.0,85.0,64.0,76.0,92.0,80.0,111.0,85.0,90.0,81.0,99.0,97.0,106.0,103.0,114.0,107.0,83.0,99.0,108.0,106.0,88.0,102.0,122.0,87.0,104.0,96.0,108.0,96.0,119.0,95.0,111.0,130.0,122.0,134.0,120.0,134.0,132.0,129.0,127.0,127.0,134.0,123.0,122.0,132.0,116.0,111.0,104.0,100.0,78.0,97.0,106.0,86.0,76.0,103.0,104.0,98.0,104.0,73.0,69.0,60.0,77.0,46.0,42.0,52.0,41.0,43.0,30.0,36.0,19.0,17.0,14.0,12.0,7.0,22.0 A82027,30.0,30.0,42.0,33.0,27.0,31.0,34.0,30.0,46.0,59.0,44.0,36.0,55.0,43.0,53.0,55.0,51.0,66.0,52.0,35.0,49.0,57.0,37.0,52.0,36.0,53.0,50.0,54.0,57.0,60.0,57.0,60.0,67.0,71.0,48.0,62.0,70.0,65.0,67.0,71.0,71.0,67.0,64.0,68.0,65.0,62.0,68.0,49.0,43.0,58.0,69.0,89.0,60.0,104.0,66.0,74.0,87.0,62.0,70.0,56.0,81.0,91.0,68.0,77.0,74.0,78.0,66.0,63.0,68.0,75.0,68.0,66.0,59.0,56.0,39.0,59.0,68.0,70.0,67.0,44.0,53.0,42.0,25.0,32.0,39.0,24.0,23.0,25.0,16.0,13.0,8.0,11.0,8.0,7.0,2.0,5.0 A82030,15.0,21.0,24.0,24.0,25.0,29.0,35.0,33.0,21.0,41.0,37.0,42.0,48.0,37.0,30.0,35.0,41.0,24.0,40.0,24.0,30.0,28.0,28.0,18.0,30.0,23.0,20.0,23.0,23.0,28.0,22.0,22.0,31.0,37.0,32.0,21.0,28.0,32.0,29.0,31.0,37.0,40.0,29.0,35.0,32.0,34.0,41.0,35.0,28.0,35.0,31.0,31.0,39.0,41.0,50.0,47.0,46.0,44.0,51.0,59.0,58.0,52.0,61.0,52.0,58.0,48.0,57.0,62.0,42.0,51.0,54.0,42.0,45.0,49.0,49.0,46.0,45.0,39.0,57.0,35.0,25.0,42.0,32.0,13.0,15.0,18.0,13.0,18.0,17.0,8.0,10.0,8.0,7.0,4.0,2.0,5.0 A82033,22.0,16.0,38.0,34.0,38.0,34.0,46.0,30.0,47.0,39.0,48.0,34.0,39.0,39.0,52.0,54.0,40.0,48.0,53.0,32.0,41.0,39.0,34.0,41.0,27.0,44.0,29.0,50.0,34.0,41.0,46.0,55.0,42.0,47.0,49.0,49.0,43.0,48.0,37.0,47.0,40.0,44.0,33.0,44.0,38.0,43.0,40.0,28.0,51.0,31.0,45.0,57.0,47.0,60.0,51.0,53.0,51.0,57.0,56.0,71.0,66.0,76.0,74.0,60.0,70.0,73.0,74.0,58.0,56.0,51.0,47.0,55.0,46.0,45.0,48.0,50.0,52.0,56.0,50.0,33.0,41.0,23.0,34.0,21.0,24.0,24.0,13.0,10.0,9.0,13.0,7.0,6.0,6.0,5.0,4.0,7.0 A82039,41.0,44.0,39.0,42.0,40.0,49.0,44.0,49.0,44.0,35.0,40.0,51.0,47.0,50.0,42.0,40.0,49.0,49.0,44.0,48.0,41.0,38.0,34.0,64.0,60.0,67.0,58.0,54.0,56.0,53.0,50.0,72.0,64.0,64.0,54.0,51.0,60.0,52.0,56.0,55.0,47.0,58.0,45.0,49.0,48.0,51.0,44.0,41.0,56.0,43.0,53.0,50.0,61.0,55.0,57.0,52.0,57.0,57.0,72.0,72.0,67.0,67.0,72.0,62.0,70.0,75.0,56.0,51.0,45.0,61.0,38.0,39.0,55.0,49.0,41.0,27.0,54.0,46.0,47.0,30.0,26.0,33.0,20.0,15.0,23.0,30.0,22.0,17.0,15.0,12.0,7.0,7.0,3.0,3.0,3.0,4.0 A82046,12.0,11.0,10.0,11.0,24.0,20.0,11.0,16.0,22.0,20.0,21.0,22.0,25.0,14.0,19.0,32.0,27.0,15.0,24.0,17.0,18.0,24.0,23.0,32.0,45.0,34.0,31.0,40.0,28.0,30.0,50.0,40.0,43.0,56.0,47.0,51.0,50.0,57.0,47.0,61.0,52.0,43.0,38.0,41.0,42.0,38.0,65.0,38.0,40.0,27.0,37.0,26.0,35.0,35.0,38.0,39.0,34.0,46.0,39.0,45.0,40.0,32.0,33.0,37.0,24.0,34.0,28.0,28.0,20.0,23.0,28.0,28.0,24.0,23.0,17.0,17.0,20.0,20.0,22.0,16.0,11.0,21.0,13.0,8.0,10.0,9.0,8.0,10.0,9.0,4.0,3.0,3.0,2.0,3.0,1.0,2.0 A82053,22.0,14.0,36.0,33.0,18.0,23.0,18.0,33.0,30.0,24.0,30.0,37.0,24.0,23.0,22.0,35.0,29.0,23.0,23.0,19.0,31.0,27.0,28.0,19.0,32.0,37.0,21.0,24.0,37.0,31.0,44.0,42.0,37.0,31.0,45.0,35.0,36.0,36.0,26.0,40.0,35.0,27.0,41.0,28.0,30.0,35.0,35.0,20.0,30.0,39.0,31.0,34.0,47.0,48.0,44.0,49.0,52.0,38.0,56.0,64.0,54.0,63.0,68.0,78.0,49.0,61.0,69.0,76.0,61.0,65.0,82.0,58.0,49.0,62.0,42.0,55.0,60.0,91.0,75.0,57.0,57.0,45.0,41.0,34.0,33.0,26.0,32.0,24.0,10.0,21.0,10.0,17.0,9.0,9.0,4.0,10.0 A82062,24.0,29.0,41.0,42.0,39.0,33.0,44.0,39.0,33.0,55.0,36.0,34.0,38.0,36.0,23.0,36.0,32.0,31.0,33.0,29.0,35.0,24.0,31.0,36.0,42.0,38.0,38.0,46.0,47.0,38.0,45.0,59.0,55.0,42.0,53.0,55.0,56.0,49.0,49.0,39.0,36.0,32.0,38.0,41.0,34.0,27.0,35.0,31.0,26.0,34.0,34.0,40.0,37.0,42.0,39.0,34.0,36.0,46.0,56.0,50.0,48.0,45.0,57.0,43.0,48.0,45.0,41.0,45.0,33.0,21.0,33.0,37.0,37.0,21.0,32.0,28.0,31.0,35.0,30.0,19.0,29.0,18.0,21.0,18.0,14.0,10.0,11.0,8.0,10.0,6.0,2.0,6.0,1.0,4.0,1.0, A82068,15.0,20.0,21.0,26.0,21.0,20.0,28.0,17.0,26.0,19.0,18.0,19.0,19.0,19.0,27.0,28.0,23.0,39.0,33.0,25.0,25.0,31.0,24.0,18.0,26.0,29.0,28.0,22.0,27.0,28.0,31.0,30.0,39.0,30.0,25.0,31.0,28.0,35.0,26.0,22.0,31.0,25.0,34.0,13.0,20.0,37.0,25.0,28.0,23.0,29.0,34.0,36.0,33.0,40.0,37.0,42.0,34.0,34.0,37.0,31.0,44.0,36.0,45.0,33.0,26.0,29.0,39.0,31.0,35.0,32.0,22.0,20.0,26.0,22.0,23.0,22.0,26.0,35.0,25.0,19.0,15.0,22.0,19.0,14.0,9.0,11.0,8.0,6.0,8.0,10.0,5.0,1.0,,,1.0,1.0 A82070,25.0,10.0,22.0,19.0,15.0,19.0,28.0,15.0,19.0,27.0,39.0,26.0,27.0,30.0,25.0,43.0,42.0,45.0,36.0,49.0,41.0,35.0,33.0,33.0,34.0,36.0,24.0,34.0,23.0,36.0,33.0,40.0,41.0,38.0,36.0,43.0,26.0,46.0,44.0,26.0,36.0,45.0,40.0,43.0,41.0,47.0,37.0,36.0,41.0,35.0,48.0,37.0,37.0,38.0,44.0,48.0,54.0,64.0,51.0,56.0,60.0,57.0,51.0,60.0,53.0,55.0,46.0,47.0,46.0,30.0,35.0,44.0,45.0,34.0,30.0,46.0,47.0,42.0,56.0,33.0,40.0,38.0,26.0,22.0,18.0,20.0,19.0,16.0,6.0,7.0,11.0,7.0,7.0,5.0,2.0,5.0 A82071,9.0,16.0,18.0,11.0,20.0,16.0,20.0,19.0,21.0,18.0,29.0,24.0,17.0,28.0,22.0,25.0,23.0,20.0,23.0,19.0,32.0,31.0,25.0,20.0,25.0,15.0,24.0,24.0,28.0,28.0,28.0,18.0,27.0,29.0,24.0,34.0,27.0,37.0,39.0,28.0,32.0,24.0,43.0,32.0,41.0,31.0,28.0,18.0,23.0,27.0,25.0,27.0,26.0,30.0,38.0,35.0,37.0,36.0,27.0,23.0,32.0,35.0,47.0,26.0,18.0,32.0,28.0,32.0,23.0,26.0,20.0,21.0,22.0,21.0,21.0,25.0,38.0,18.0,23.0,15.0,16.0,15.0,12.0,17.0,10.0,9.0,12.0,3.0,8.0,4.0,4.0,,5.0,1.0,1.0,5.0 A82072,32.0,39.0,33.0,30.0,30.0,37.0,40.0,46.0,40.0,45.0,35.0,34.0,47.0,43.0,42.0,41.0,53.0,38.0,51.0,54.0,44.0,40.0,43.0,48.0,50.0,34.0,49.0,49.0,54.0,58.0,66.0,53.0,50.0,68.0,59.0,43.0,67.0,64.0,59.0,38.0,53.0,46.0,50.0,49.0,48.0,48.0,52.0,48.0,39.0,41.0,49.0,55.0,46.0,52.0,51.0,65.0,49.0,69.0,54.0,55.0,66.0,77.0,38.0,60.0,46.0,48.0,34.0,39.0,45.0,37.0,47.0,37.0,42.0,28.0,36.0,36.0,33.0,40.0,37.0,22.0,28.0,20.0,24.0,17.0,13.0,15.0,14.0,9.0,5.0,4.0,6.0,,2.0,4.0,,2.0 A82608,15.0,7.0,17.0,19.0,22.0,19.0,15.0,13.0,18.0,16.0,15.0,22.0,27.0,43.0,96.0,89.0,106.0,100.0,111.0,49.0,40.0,39.0,20.0,19.0,15.0,17.0,17.0,20.0,17.0,13.0,21.0,13.0,16.0,21.0,20.0,27.0,10.0,17.0,16.0,12.0,16.0,18.0,22.0,14.0,17.0,17.0,12.0,30.0,18.0,23.0,21.0,29.0,21.0,31.0,31.0,26.0,27.0,22.0,34.0,40.0,35.0,33.0,39.0,47.0,37.0,38.0,30.0,37.0,21.0,26.0,26.0,33.0,24.0,31.0,31.0,21.0,32.0,30.0,23.0,17.0,24.0,19.0,12.0,16.0,6.0,11.0,9.0,9.0,4.0,11.0,2.0,3.0,2.0,,2.0,3.0 A82613,3.0,5.0,5.0,5.0,6.0,3.0,7.0,4.0,6.0,4.0,4.0,5.0,4.0,4.0,6.0,,3.0,6.0,7.0,7.0,4.0,7.0,6.0,4.0,2.0,10.0,4.0,6.0,10.0,8.0,13.0,7.0,3.0,10.0,8.0,7.0,6.0,8.0,5.0,4.0,8.0,9.0,3.0,9.0,6.0,4.0,5.0,8.0,1.0,9.0,5.0,4.0,7.0,7.0,6.0,6.0,8.0,9.0,9.0,12.0,7.0,14.0,4.0,8.0,9.0,6.0,12.0,7.0,10.0,10.0,10.0,10.0,6.0,7.0,8.0,9.0,7.0,10.0,7.0,5.0,6.0,,3.0,5.0,4.0,4.0,4.0,2.0,1.0,2.0,,2.0,1.0,,, A82629,13.0,13.0,8.0,8.0,13.0,14.0,10.0,16.0,19.0,13.0,8.0,8.0,18.0,7.0,9.0,14.0,15.0,16.0,15.0,17.0,20.0,13.0,17.0,20.0,20.0,14.0,24.0,23.0,17.0,19.0,31.0,29.0,30.0,15.0,31.0,29.0,23.0,25.0,23.0,33.0,24.0,20.0,19.0,13.0,24.0,28.0,15.0,20.0,17.0,21.0,21.0,23.0,18.0,20.0,32.0,28.0,32.0,36.0,29.0,25.0,21.0,26.0,24.0,33.0,37.0,24.0,23.0,20.0,19.0,19.0,20.0,17.0,26.0,20.0,10.0,17.0,18.0,21.0,24.0,13.0,11.0,10.0,9.0,12.0,9.0,5.0,5.0,2.0,1.0,4.0,5.0,3.0,5.0,1.0,1.0,4.0 A82647,14.0,10.0,9.0,10.0,8.0,6.0,13.0,14.0,15.0,11.0,11.0,15.0,17.0,7.0,12.0,9.0,17.0,22.0,15.0,19.0,13.0,10.0,12.0,23.0,12.0,8.0,12.0,18.0,11.0,17.0,13.0,15.0,20.0,21.0,16.0,13.0,12.0,8.0,17.0,11.0,12.0,16.0,13.0,20.0,9.0,12.0,16.0,7.0,17.0,10.0,15.0,11.0,17.0,19.0,19.0,33.0,29.0,21.0,24.0,37.0,33.0,39.0,31.0,43.0,39.0,29.0,26.0,31.0,27.0,15.0,32.0,21.0,19.0,25.0,20.0,23.0,26.0,35.0,23.0,15.0,17.0,11.0,10.0,12.0,13.0,9.0,16.0,8.0,5.0,6.0,3.0,3.0,2.0,1.0,,8.0 A82650,3.0,9.0,7.0,6.0,5.0,14.0,13.0,4.0,19.0,10.0,14.0,11.0,12.0,12.0,7.0,13.0,14.0,12.0,11.0,5.0,9.0,17.0,10.0,11.0,9.0,17.0,15.0,10.0,9.0,12.0,22.0,12.0,15.0,13.0,22.0,8.0,11.0,18.0,20.0,21.0,14.0,11.0,14.0,18.0,11.0,13.0,16.0,9.0,18.0,16.0,19.0,23.0,27.0,23.0,22.0,26.0,31.0,29.0,29.0,25.0,34.0,28.0,27.0,32.0,34.0,28.0,27.0,27.0,27.0,31.0,16.0,19.0,16.0,18.0,24.0,20.0,26.0,26.0,29.0,21.0,13.0,17.0,10.0,14.0,7.0,10.0,4.0,7.0,4.0,3.0,1.0,1.0,1.0,1.0,1.0,1.0 A82651,25.0,23.0,15.0,18.0,21.0,23.0,26.0,20.0,24.0,32.0,37.0,24.0,28.0,24.0,16.0,22.0,24.0,14.0,20.0,21.0,19.0,28.0,24.0,19.0,20.0,26.0,30.0,26.0,23.0,26.0,33.0,20.0,32.0,34.0,44.0,35.0,30.0,39.0,32.0,31.0,26.0,24.0,26.0,27.0,21.0,24.0,28.0,23.0,25.0,20.0,21.0,34.0,28.0,37.0,44.0,39.0,41.0,50.0,47.0,55.0,47.0,49.0,45.0,40.0,44.0,39.0,46.0,47.0,26.0,38.0,38.0,47.0,26.0,35.0,48.0,45.0,29.0,40.0,27.0,26.0,21.0,20.0,14.0,24.0,16.0,13.0,9.0,10.0,8.0,4.0,4.0,1.0,4.0,1.0,1.0,3.0 B82061,21.0,26.0,31.0,30.0,25.0,22.0,30.0,34.0,29.0,32.0,35.0,42.0,35.0,30.0,46.0,33.0,37.0,35.0,39.0,33.0,28.0,25.0,21.0,35.0,36.0,32.0,34.0,31.0,18.0,26.0,29.0,37.0,34.0,39.0,38.0,40.0,48.0,39.0,24.0,39.0,32.0,30.0,40.0,42.0,40.0,45.0,40.0,41.0,33.0,39.0,41.0,41.0,48.0,43.0,53.0,50.0,67.0,61.0,47.0,56.0,58.0,73.0,48.0,70.0,88.0,76.0,64.0,76.0,56.0,52.0,64.0,70.0,58.0,44.0,45.0,50.0,59.0,65.0,62.0,41.0,52.0,35.0,46.0,28.0,23.0,20.0,21.0,22.0,12.0,14.0,15.0,2.0,5.0,5.0,1.0,5.0 P81002,210.0,196.0,212.0,248.0,228.0,276.0,249.0,260.0,297.0,279.0,285.0,306.0,294.0,322.0,347.0,351.0,313.0,309.0,528.0,856.0,1118.0,1134.0,989.0,973.0,1057.0,968.0,900.0,891.0,894.0,711.0,783.0,613.0,608.0,578.0,533.0,513.0,470.0,483.0,402.0,468.0,441.0,496.0,414.0,428.0,415.0,371.0,335.0,343.0,290.0,306.0,352.0,308.0,338.0,359.0,360.0,351.0,341.0,307.0,352.0,331.0,365.0,293.0,325.0,319.0,299.0,284.0,291.0,250.0,223.0,229.0,219.0,202.0,206.0,208.0,194.0,162.0,210.0,203.0,227.0,147.0,114.0,110.0,107.0,88.0,77.0,69.0,67.0,63.0,55.0,45.0,39.0,25.0,27.0,24.0,13.0,12.0 P81003,26.0,23.0,14.0,22.0,28.0,31.0,35.0,34.0,42.0,42.0,40.0,44.0,41.0,45.0,49.0,50.0,57.0,47.0,53.0,42.0,40.0,49.0,38.0,40.0,48.0,53.0,47.0,49.0,43.0,50.0,52.0,47.0,40.0,40.0,52.0,49.0,57.0,57.0,44.0,48.0,54.0,43.0,46.0,51.0,52.0,51.0,38.0,51.0,52.0,56.0,47.0,66.0,56.0,64.0,58.0,65.0,70.0,69.0,57.0,68.0,77.0,62.0,56.0,62.0,71.0,73.0,59.0,56.0,66.0,75.0,56.0,60.0,56.0,70.0,49.0,59.0,47.0,68.0,50.0,44.0,44.0,31.0,24.0,26.0,21.0,23.0,15.0,18.0,9.0,15.0,10.0,5.0,2.0,3.0,5.0,4.0 P81005,62.0,65.0,65.0,86.0,67.0,78.0,74.0,82.0,77.0,99.0,76.0,80.0,83.0,88.0,79.0,109.0,96.0,96.0,64.0,66.0,86.0,79.0,83.0,94.0,77.0,103.0,89.0,84.0,84.0,75.0,87.0,98.0,87.0,91.0,83.0,77.0,83.0,89.0,76.0,87.0,67.0,91.0,89.0,65.0,99.0,75.0,80.0,70.0,75.0,68.0,72.0,65.0,86.0,79.0,64.0,61.0,103.0,79.0,96.0,77.0,90.0,78.0,64.0,69.0,72.0,65.0,70.0,52.0,51.0,59.0,46.0,50.0,44.0,39.0,39.0,47.0,39.0,42.0,41.0,36.0,24.0,39.0,41.0,19.0,16.0,30.0,14.0,23.0,19.0,8.0,7.0,10.0,10.0,5.0,3.0,5.0 P81006,85.0,77.0,87.0,89.0,104.0,105.0,90.0,100.0,92.0,92.0,129.0,100.0,101.0,104.0,121.0,128.0,114.0,110.0,97.0,97.0,88.0,90.0,73.0,106.0,113.0,86.0,98.0,75.0,110.0,94.0,94.0,104.0,106.0,123.0,132.0,116.0,112.0,98.0,81.0,101.0,127.0,112.0,93.0,101.0,112.0,115.0,87.0,99.0,101.0,97.0,116.0,116.0,125.0,115.0,134.0,162.0,131.0,152.0,154.0,155.0,178.0,166.0,183.0,151.0,171.0,150.0,160.0,172.0,150.0,142.0,141.0,132.0,133.0,125.0,138.0,150.0,153.0,128.0,152.0,111.0,107.0,102.0,92.0,70.0,47.0,61.0,61.0,56.0,49.0,35.0,34.0,18.0,12.0,13.0,5.0,22.0 P81008,35.0,50.0,30.0,31.0,40.0,45.0,36.0,35.0,39.0,52.0,35.0,43.0,44.0,33.0,39.0,40.0,35.0,50.0,37.0,31.0,32.0,32.0,30.0,33.0,37.0,33.0,38.0,49.0,57.0,42.0,48.0,55.0,53.0,58.0,51.0,56.0,49.0,58.0,46.0,49.0,44.0,65.0,56.0,49.0,33.0,53.0,29.0,42.0,40.0,53.0,34.0,47.0,46.0,41.0,53.0,62.0,52.0,48.0,41.0,43.0,51.0,62.0,58.0,46.0,46.0,41.0,50.0,52.0,38.0,49.0,33.0,35.0,27.0,44.0,24.0,27.0,41.0,37.0,32.0,32.0,33.0,25.0,15.0,23.0,16.0,12.0,14.0,9.0,5.0,5.0,2.0,5.0,3.0,3.0,1.0,2.0 P81010,12.0,13.0,21.0,30.0,21.0,25.0,24.0,32.0,22.0,35.0,28.0,30.0,26.0,42.0,34.0,33.0,29.0,30.0,38.0,22.0,25.0,25.0,28.0,22.0,33.0,21.0,26.0,20.0,33.0,24.0,31.0,24.0,26.0,29.0,39.0,29.0,25.0,34.0,20.0,26.0,34.0,39.0,30.0,29.0,33.0,39.0,33.0,22.0,22.0,34.0,43.0,39.0,46.0,33.0,59.0,43.0,53.0,55.0,50.0,43.0,44.0,56.0,45.0,44.0,43.0,42.0,29.0,50.0,39.0,29.0,27.0,31.0,26.0,27.0,31.0,32.0,24.0,42.0,31.0,20.0,19.0,19.0,21.0,14.0,5.0,11.0,9.0,5.0,7.0,3.0,6.0,4.0,,1.0,,1.0 P81013,54.0,66.0,73.0,79.0,71.0,79.0,95.0,74.0,99.0,75.0,74.0,90.0,99.0,88.0,98.0,97.0,102.0,88.0,94.0,90.0,84.0,80.0,89.0,87.0,83.0,101.0,85.0,89.0,108.0,93.0,99.0,119.0,99.0,111.0,124.0,98.0,119.0,107.0,132.0,95.0,130.0,122.0,125.0,106.0,114.0,129.0,115.0,110.0,91.0,79.0,87.0,104.0,93.0,103.0,104.0,108.0,103.0,99.0,125.0,91.0,110.0,115.0,118.0,107.0,94.0,104.0,85.0,94.0,81.0,80.0,93.0,84.0,60.0,63.0,64.0,63.0,73.0,66.0,61.0,48.0,45.0,38.0,30.0,43.0,25.0,21.0,29.0,20.0,15.0,15.0,9.0,17.0,15.0,9.0,1.0,12.0 P81014,34.0,39.0,45.0,45.0,53.0,41.0,39.0,44.0,52.0,37.0,41.0,45.0,54.0,46.0,49.0,47.0,44.0,52.0,44.0,63.0,70.0,55.0,61.0,65.0,51.0,49.0,52.0,50.0,61.0,44.0,53.0,46.0,52.0,65.0,50.0,54.0,51.0,51.0,50.0,57.0,52.0,53.0,47.0,66.0,55.0,63.0,51.0,45.0,49.0,46.0,48.0,46.0,48.0,53.0,64.0,57.0,85.0,68.0,78.0,74.0,68.0,65.0,74.0,76.0,60.0,56.0,69.0,64.0,57.0,61.0,54.0,58.0,43.0,53.0,55.0,58.0,52.0,53.0,61.0,45.0,42.0,42.0,31.0,27.0,34.0,24.0,20.0,24.0,22.0,16.0,6.0,14.0,11.0,6.0,2.0,10.0 P81015,58.0,75.0,82.0,70.0,68.0,85.0,64.0,66.0,72.0,97.0,81.0,82.0,84.0,73.0,72.0,78.0,59.0,85.0,60.0,68.0,80.0,66.0,66.0,60.0,66.0,72.0,87.0,77.0,107.0,92.0,80.0,85.0,114.0,87.0,86.0,91.0,119.0,95.0,79.0,88.0,102.0,99.0,91.0,93.0,101.0,119.0,101.0,69.0,85.0,82.0,81.0,58.0,76.0,84.0,87.0,83.0,73.0,71.0,65.0,66.0,93.0,69.0,79.0,85.0,82.0,65.0,73.0,53.0,59.0,63.0,59.0,50.0,57.0,55.0,57.0,70.0,55.0,63.0,64.0,58.0,56.0,36.0,47.0,38.0,31.0,28.0,20.0,32.0,22.0,12.0,16.0,9.0,6.0,6.0,3.0,4.0 P81016,64.0,76.0,67.0,59.0,70.0,54.0,66.0,85.0,76.0,84.0,75.0,91.0,78.0,78.0,79.0,83.0,90.0,71.0,83.0,67.0,68.0,62.0,76.0,80.0,69.0,82.0,77.0,84.0,82.0,93.0,89.0,94.0,100.0,99.0,101.0,108.0,111.0,103.0,87.0,101.0,81.0,104.0,95.0,79.0,91.0,96.0,73.0,84.0,78.0,73.0,70.0,83.0,77.0,90.0,96.0,85.0,107.0,106.0,85.0,116.0,97.0,91.0,101.0,93.0,78.0,85.0,70.0,81.0,73.0,66.0,49.0,47.0,46.0,47.0,46.0,27.0,53.0,52.0,56.0,26.0,38.0,30.0,12.0,18.0,17.0,16.0,12.0,10.0,9.0,4.0,4.0,4.0,2.0,3.0,4.0,5.0 P81017,60.0,62.0,56.0,73.0,60.0,76.0,67.0,73.0,98.0,82.0,73.0,91.0,83.0,85.0,91.0,101.0,85.0,94.0,87.0,82.0,83.0,88.0,60.0,66.0,92.0,74.0,75.0,81.0,58.0,74.0,71.0,72.0,79.0,77.0,83.0,76.0,86.0,77.0,90.0,60.0,67.0,72.0,96.0,84.0,94.0,95.0,91.0,77.0,81.0,96.0,92.0,120.0,97.0,100.0,124.0,138.0,127.0,101.0,115.0,124.0,120.0,130.0,118.0,125.0,117.0,111.0,93.0,92.0,84.0,84.0,70.0,81.0,81.0,83.0,82.0,81.0,83.0,83.0,82.0,81.0,66.0,65.0,49.0,36.0,43.0,35.0,31.0,25.0,25.0,16.0,15.0,18.0,6.0,8.0,7.0,10.0 P81018,23.0,30.0,33.0,42.0,26.0,28.0,37.0,39.0,40.0,42.0,51.0,35.0,50.0,42.0,65.0,56.0,50.0,50.0,34.0,38.0,39.0,50.0,39.0,42.0,47.0,45.0,42.0,52.0,37.0,31.0,41.0,39.0,37.0,36.0,46.0,38.0,51.0,56.0,50.0,35.0,39.0,57.0,40.0,36.0,45.0,49.0,48.0,48.0,46.0,51.0,58.0,49.0,64.0,67.0,80.0,57.0,66.0,69.0,61.0,70.0,77.0,55.0,48.0,49.0,43.0,50.0,55.0,57.0,57.0,47.0,34.0,49.0,33.0,28.0,49.0,41.0,48.0,37.0,49.0,35.0,31.0,44.0,29.0,16.0,21.0,21.0,16.0,18.0,12.0,10.0,11.0,4.0,3.0,7.0,6.0,9.0 P81020,108.0,134.0,139.0,136.0,173.0,151.0,148.0,168.0,166.0,169.0,149.0,148.0,157.0,175.0,159.0,167.0,171.0,158.0,158.0,132.0,152.0,132.0,136.0,138.0,132.0,138.0,171.0,189.0,154.0,151.0,174.0,179.0,199.0,199.0,198.0,168.0,198.0,182.0,186.0,199.0,175.0,200.0,164.0,171.0,178.0,142.0,144.0,140.0,151.0,146.0,139.0,129.0,148.0,148.0,172.0,151.0,173.0,182.0,144.0,167.0,175.0,159.0,165.0,161.0,151.0,143.0,159.0,122.0,128.0,111.0,118.0,98.0,105.0,81.0,105.0,86.0,109.0,113.0,98.0,59.0,81.0,58.0,48.0,47.0,40.0,38.0,35.0,28.0,26.0,18.0,12.0,11.0,12.0,4.0,8.0,12.0 P81022,47.0,44.0,53.0,52.0,73.0,47.0,64.0,64.0,75.0,70.0,75.0,62.0,77.0,59.0,77.0,68.0,75.0,79.0,73.0,72.0,60.0,76.0,50.0,57.0,54.0,85.0,62.0,83.0,81.0,74.0,66.0,79.0,73.0,80.0,84.0,70.0,70.0,79.0,83.0,73.0,70.0,64.0,86.0,74.0,76.0,63.0,67.0,72.0,60.0,58.0,75.0,75.0,77.0,82.0,89.0,84.0,94.0,89.0,72.0,80.0,74.0,66.0,80.0,69.0,76.0,55.0,57.0,56.0,55.0,44.0,39.0,45.0,36.0,47.0,40.0,43.0,33.0,49.0,49.0,28.0,36.0,26.0,23.0,26.0,9.0,15.0,22.0,13.0,4.0,8.0,6.0,6.0,2.0,3.0,4.0,4.0 P81025,62.0,67.0,81.0,71.0,65.0,85.0,74.0,74.0,75.0,91.0,73.0,80.0,91.0,75.0,72.0,78.0,82.0,57.0,71.0,65.0,56.0,55.0,63.0,63.0,67.0,59.0,77.0,88.0,88.0,76.0,81.0,69.0,83.0,95.0,80.0,107.0,85.0,90.0,76.0,93.0,93.0,62.0,86.0,90.0,90.0,93.0,77.0,62.0,62.0,83.0,83.0,76.0,82.0,85.0,75.0,71.0,90.0,80.0,90.0,101.0,102.0,90.0,95.0,78.0,90.0,88.0,70.0,77.0,77.0,55.0,54.0,59.0,71.0,65.0,61.0,64.0,61.0,70.0,73.0,37.0,33.0,34.0,34.0,29.0,25.0,23.0,22.0,14.0,13.0,11.0,10.0,3.0,5.0,5.0,1.0,9.0 P81027,72.0,74.0,66.0,88.0,90.0,88.0,97.0,102.0,100.0,99.0,102.0,104.0,97.0,108.0,110.0,119.0,104.0,89.0,93.0,89.0,86.0,73.0,95.0,86.0,72.0,93.0,71.0,91.0,84.0,100.0,96.0,72.0,102.0,100.0,103.0,104.0,119.0,94.0,94.0,112.0,85.0,110.0,93.0,88.0,107.0,103.0,97.0,87.0,97.0,85.0,95.0,93.0,109.0,114.0,106.0,105.0,129.0,117.0,98.0,121.0,104.0,109.0,90.0,88.0,86.0,97.0,97.0,77.0,67.0,74.0,63.0,70.0,84.0,62.0,66.0,62.0,64.0,64.0,53.0,57.0,40.0,41.0,39.0,34.0,23.0,20.0,22.0,14.0,9.0,9.0,7.0,6.0,6.0,2.0,2.0,3.0 P81029,71.0,86.0,103.0,86.0,85.0,95.0,82.0,101.0,93.0,113.0,127.0,121.0,128.0,137.0,130.0,134.0,139.0,150.0,122.0,146.0,127.0,112.0,120.0,110.0,114.0,111.0,94.0,101.0,109.0,78.0,99.0,91.0,99.0,109.0,137.0,107.0,110.0,112.0,108.0,106.0,103.0,109.0,109.0,123.0,116.0,120.0,116.0,115.0,124.0,129.0,133.0,153.0,150.0,154.0,159.0,192.0,172.0,191.0,163.0,188.0,215.0,179.0,188.0,192.0,197.0,197.0,202.0,168.0,179.0,153.0,174.0,169.0,165.0,154.0,180.0,170.0,187.0,200.0,214.0,145.0,146.0,115.0,129.0,96.0,88.0,79.0,65.0,66.0,50.0,54.0,33.0,27.0,19.0,19.0,13.0,20.0 P81031,17.0,22.0,18.0,20.0,19.0,21.0,31.0,31.0,29.0,21.0,28.0,28.0,40.0,29.0,33.0,44.0,39.0,29.0,35.0,40.0,30.0,28.0,35.0,27.0,32.0,34.0,35.0,47.0,33.0,41.0,40.0,50.0,36.0,37.0,39.0,38.0,51.0,43.0,49.0,43.0,56.0,31.0,34.0,47.0,47.0,41.0,34.0,42.0,23.0,36.0,38.0,39.0,48.0,51.0,52.0,52.0,47.0,60.0,55.0,57.0,61.0,65.0,48.0,60.0,58.0,62.0,56.0,63.0,49.0,53.0,59.0,50.0,39.0,44.0,47.0,38.0,36.0,45.0,34.0,34.0,37.0,30.0,22.0,32.0,13.0,15.0,13.0,15.0,16.0,11.0,7.0,12.0,7.0,5.0,2.0,4.0 P81032,86.0,80.0,89.0,95.0,82.0,98.0,92.0,79.0,116.0,103.0,99.0,94.0,99.0,101.0,110.0,100.0,87.0,112.0,97.0,92.0,95.0,89.0,72.0,78.0,82.0,100.0,87.0,87.0,102.0,102.0,85.0,87.0,81.0,104.0,111.0,95.0,109.0,100.0,115.0,97.0,100.0,98.0,97.0,109.0,88.0,113.0,90.0,92.0,93.0,84.0,86.0,93.0,96.0,91.0,72.0,81.0,75.0,87.0,65.0,79.0,67.0,80.0,70.0,87.0,68.0,71.0,71.0,52.0,75.0,64.0,48.0,69.0,44.0,68.0,62.0,61.0,51.0,61.0,56.0,43.0,48.0,36.0,36.0,25.0,24.0,22.0,15.0,12.0,23.0,17.0,11.0,4.0,5.0,5.0,1.0,5.0 P81033,21.0,28.0,44.0,40.0,34.0,36.0,35.0,43.0,55.0,41.0,44.0,40.0,63.0,49.0,62.0,39.0,46.0,57.0,54.0,39.0,36.0,33.0,35.0,37.0,49.0,33.0,55.0,30.0,41.0,43.0,49.0,36.0,46.0,54.0,62.0,48.0,50.0,57.0,60.0,44.0,39.0,47.0,53.0,54.0,42.0,52.0,48.0,39.0,48.0,46.0,46.0,57.0,58.0,70.0,73.0,62.0,59.0,53.0,67.0,54.0,64.0,53.0,59.0,47.0,60.0,47.0,51.0,58.0,47.0,38.0,42.0,51.0,48.0,44.0,37.0,51.0,31.0,45.0,55.0,35.0,37.0,32.0,29.0,28.0,22.0,22.0,6.0,11.0,14.0,5.0,6.0,4.0,7.0,4.0,3.0,5.0 P81035,65.0,57.0,66.0,50.0,69.0,54.0,70.0,66.0,59.0,62.0,52.0,80.0,80.0,77.0,90.0,82.0,70.0,89.0,74.0,54.0,66.0,78.0,70.0,75.0,84.0,56.0,79.0,79.0,79.0,85.0,70.0,75.0,76.0,75.0,82.0,65.0,60.0,52.0,57.0,65.0,53.0,68.0,63.0,64.0,58.0,61.0,62.0,70.0,59.0,65.0,65.0,45.0,48.0,58.0,48.0,49.0,51.0,44.0,38.0,38.0,43.0,34.0,37.0,30.0,25.0,34.0,31.0,33.0,32.0,24.0,26.0,25.0,23.0,19.0,22.0,21.0,14.0,17.0,19.0,8.0,12.0,7.0,9.0,7.0,3.0,8.0,4.0,3.0,9.0,1.0,1.0,3.0,3.0,1.0,1.0, P81036,98.0,110.0,93.0,101.0,99.0,104.0,95.0,88.0,113.0,78.0,121.0,91.0,110.0,99.0,95.0,123.0,84.0,100.0,87.0,99.0,101.0,91.0,111.0,97.0,95.0,126.0,105.0,125.0,106.0,123.0,142.0,127.0,131.0,146.0,119.0,115.0,140.0,127.0,124.0,116.0,105.0,107.0,127.0,98.0,121.0,128.0,91.0,86.0,87.0,104.0,119.0,105.0,109.0,104.0,131.0,133.0,142.0,148.0,139.0,132.0,101.0,111.0,118.0,123.0,102.0,88.0,102.0,79.0,81.0,80.0,79.0,79.0,78.0,84.0,71.0,71.0,84.0,94.0,65.0,47.0,63.0,42.0,49.0,40.0,33.0,33.0,20.0,25.0,16.0,15.0,12.0,8.0,13.0,1.0,6.0,7.0 P81037,25.0,44.0,39.0,35.0,34.0,36.0,51.0,37.0,39.0,51.0,66.0,43.0,62.0,72.0,57.0,56.0,65.0,64.0,59.0,43.0,63.0,42.0,51.0,45.0,45.0,63.0,53.0,57.0,48.0,38.0,58.0,55.0,51.0,50.0,57.0,63.0,57.0,59.0,71.0,49.0,71.0,54.0,65.0,62.0,47.0,69.0,60.0,54.0,66.0,44.0,62.0,61.0,74.0,76.0,89.0,78.0,79.0,86.0,120.0,86.0,101.0,102.0,109.0,129.0,119.0,105.0,96.0,97.0,106.0,94.0,97.0,97.0,92.0,98.0,91.0,85.0,97.0,91.0,93.0,83.0,68.0,75.0,54.0,38.0,51.0,36.0,54.0,32.0,40.0,37.0,22.0,13.0,6.0,12.0,12.0,13.0 P81038,52.0,62.0,58.0,52.0,65.0,55.0,58.0,54.0,74.0,55.0,59.0,71.0,61.0,63.0,58.0,87.0,54.0,56.0,56.0,53.0,51.0,51.0,47.0,48.0,57.0,45.0,60.0,60.0,59.0,62.0,58.0,82.0,74.0,76.0,67.0,73.0,70.0,93.0,77.0,79.0,75.0,77.0,73.0,54.0,74.0,72.0,53.0,55.0,52.0,63.0,82.0,65.0,62.0,60.0,68.0,81.0,77.0,60.0,61.0,67.0,66.0,66.0,52.0,53.0,49.0,41.0,49.0,60.0,48.0,43.0,48.0,54.0,44.0,36.0,41.0,47.0,49.0,40.0,42.0,25.0,33.0,25.0,22.0,21.0,18.0,19.0,14.0,15.0,13.0,6.0,5.0,7.0,6.0,2.0,,2.0 P81039,20.0,33.0,30.0,38.0,27.0,40.0,36.0,45.0,33.0,34.0,42.0,46.0,56.0,35.0,52.0,45.0,46.0,35.0,39.0,44.0,32.0,33.0,25.0,39.0,40.0,42.0,36.0,47.0,39.0,41.0,38.0,46.0,48.0,54.0,41.0,42.0,40.0,44.0,48.0,44.0,26.0,36.0,21.0,41.0,29.0,37.0,25.0,30.0,36.0,44.0,29.0,37.0,33.0,34.0,37.0,43.0,47.0,42.0,37.0,41.0,45.0,45.0,35.0,33.0,26.0,35.0,25.0,22.0,21.0,15.0,15.0,16.0,19.0,20.0,14.0,22.0,12.0,20.0,10.0,18.0,6.0,5.0,10.0,6.0,3.0,3.0,5.0,2.0,6.0,2.0,2.0,,,1.0,,3.0 P81040,29.0,35.0,39.0,41.0,32.0,43.0,48.0,44.0,63.0,47.0,62.0,50.0,51.0,61.0,63.0,44.0,53.0,64.0,61.0,57.0,58.0,40.0,52.0,43.0,36.0,54.0,42.0,47.0,54.0,46.0,54.0,61.0,48.0,40.0,56.0,58.0,43.0,59.0,54.0,51.0,59.0,56.0,56.0,61.0,47.0,51.0,50.0,44.0,58.0,56.0,65.0,60.0,83.0,84.0,93.0,66.0,92.0,72.0,89.0,105.0,91.0,89.0,78.0,80.0,85.0,69.0,63.0,67.0,66.0,52.0,50.0,66.0,59.0,74.0,69.0,65.0,63.0,68.0,76.0,64.0,57.0,48.0,43.0,27.0,35.0,35.0,32.0,27.0,26.0,12.0,17.0,13.0,9.0,3.0,3.0,11.0 P81041,35.0,45.0,38.0,55.0,36.0,50.0,42.0,47.0,42.0,45.0,46.0,38.0,42.0,38.0,60.0,38.0,46.0,45.0,57.0,62.0,45.0,64.0,65.0,49.0,52.0,59.0,44.0,46.0,46.0,53.0,47.0,59.0,59.0,59.0,53.0,64.0,51.0,70.0,65.0,64.0,48.0,58.0,51.0,46.0,54.0,58.0,39.0,59.0,52.0,43.0,53.0,46.0,47.0,67.0,70.0,54.0,65.0,66.0,76.0,66.0,85.0,68.0,83.0,65.0,72.0,72.0,53.0,74.0,67.0,53.0,58.0,51.0,47.0,49.0,59.0,48.0,62.0,62.0,53.0,45.0,35.0,35.0,32.0,14.0,30.0,20.0,18.0,20.0,13.0,10.0,10.0,9.0,8.0,5.0,2.0,3.0 P81042,72.0,70.0,105.0,76.0,102.0,98.0,94.0,102.0,100.0,110.0,115.0,109.0,107.0,96.0,100.0,103.0,105.0,91.0,86.0,77.0,74.0,90.0,84.0,98.0,85.0,87.0,105.0,87.0,113.0,98.0,100.0,102.0,101.0,142.0,126.0,141.0,131.0,129.0,130.0,150.0,128.0,117.0,134.0,120.0,121.0,105.0,101.0,94.0,97.0,82.0,113.0,98.0,90.0,101.0,109.0,115.0,106.0,97.0,107.0,123.0,109.0,111.0,126.0,96.0,101.0,97.0,94.0,83.0,79.0,68.0,78.0,73.0,61.0,53.0,52.0,51.0,63.0,50.0,56.0,45.0,43.0,33.0,21.0,26.0,33.0,10.0,18.0,20.0,14.0,14.0,6.0,3.0,5.0,7.0,6.0,4.0 P81043,19.0,30.0,41.0,23.0,28.0,28.0,24.0,33.0,36.0,26.0,31.0,48.0,39.0,40.0,38.0,39.0,36.0,36.0,36.0,35.0,41.0,36.0,35.0,33.0,43.0,45.0,57.0,53.0,54.0,48.0,40.0,54.0,53.0,59.0,51.0,66.0,54.0,72.0,57.0,63.0,69.0,52.0,72.0,47.0,66.0,54.0,54.0,53.0,45.0,46.0,49.0,55.0,56.0,51.0,54.0,51.0,60.0,49.0,63.0,56.0,64.0,62.0,55.0,52.0,44.0,42.0,55.0,55.0,44.0,40.0,38.0,31.0,33.0,35.0,29.0,19.0,29.0,36.0,24.0,20.0,16.0,16.0,16.0,8.0,4.0,6.0,7.0,7.0,2.0,5.0,6.0,5.0,,2.0,3.0, P81044,65.0,64.0,70.0,74.0,80.0,79.0,80.0,75.0,108.0,108.0,92.0,97.0,95.0,124.0,108.0,100.0,122.0,88.0,113.0,101.0,86.0,89.0,83.0,89.0,106.0,95.0,104.0,97.0,113.0,107.0,104.0,95.0,113.0,108.0,131.0,122.0,99.0,115.0,110.0,89.0,110.0,99.0,116.0,119.0,121.0,113.0,115.0,86.0,80.0,123.0,106.0,117.0,101.0,128.0,135.0,102.0,106.0,118.0,106.0,108.0,129.0,126.0,92.0,110.0,113.0,93.0,102.0,88.0,86.0,90.0,81.0,87.0,90.0,65.0,64.0,78.0,79.0,96.0,86.0,52.0,76.0,72.0,54.0,29.0,34.0,37.0,21.0,33.0,17.0,10.0,12.0,7.0,10.0,5.0,3.0,3.0 P81045,18.0,19.0,12.0,8.0,19.0,28.0,23.0,22.0,23.0,20.0,25.0,16.0,24.0,22.0,25.0,28.0,24.0,30.0,20.0,22.0,23.0,28.0,29.0,25.0,26.0,27.0,25.0,17.0,25.0,31.0,38.0,25.0,23.0,34.0,30.0,23.0,32.0,24.0,36.0,26.0,22.0,25.0,33.0,26.0,23.0,20.0,27.0,27.0,24.0,28.0,25.0,36.0,31.0,37.0,42.0,33.0,40.0,32.0,31.0,41.0,27.0,25.0,31.0,33.0,34.0,33.0,35.0,41.0,29.0,32.0,30.0,29.0,23.0,21.0,31.0,28.0,22.0,31.0,42.0,19.0,24.0,19.0,18.0,13.0,11.0,12.0,16.0,11.0,14.0,11.0,6.0,4.0,5.0,3.0,,5.0 P81046,37.0,31.0,19.0,23.0,27.0,28.0,31.0,30.0,26.0,35.0,26.0,33.0,17.0,23.0,35.0,31.0,40.0,36.0,45.0,43.0,39.0,53.0,40.0,71.0,82.0,83.0,75.0,97.0,86.0,82.0,91.0,83.0,80.0,56.0,70.0,75.0,64.0,64.0,66.0,68.0,59.0,43.0,52.0,56.0,62.0,50.0,57.0,44.0,43.0,41.0,45.0,53.0,38.0,34.0,45.0,47.0,38.0,29.0,47.0,40.0,39.0,40.0,28.0,35.0,19.0,21.0,28.0,25.0,25.0,21.0,25.0,22.0,29.0,13.0,12.0,22.0,6.0,17.0,15.0,7.0,4.0,8.0,7.0,9.0,9.0,15.0,3.0,2.0,8.0,4.0,1.0,4.0,2.0,,2.0,2.0 P81047,80.0,79.0,79.0,86.0,104.0,89.0,84.0,95.0,119.0,98.0,93.0,100.0,94.0,97.0,93.0,95.0,92.0,115.0,108.0,100.0,106.0,83.0,90.0,103.0,95.0,94.0,86.0,95.0,101.0,91.0,89.0,130.0,108.0,133.0,142.0,134.0,109.0,144.0,135.0,131.0,115.0,114.0,111.0,108.0,96.0,117.0,92.0,80.0,92.0,100.0,97.0,93.0,98.0,99.0,112.0,117.0,135.0,107.0,93.0,90.0,106.0,94.0,89.0,115.0,93.0,90.0,88.0,85.0,87.0,83.0,72.0,69.0,89.0,89.0,59.0,62.0,62.0,67.0,80.0,50.0,49.0,57.0,48.0,31.0,40.0,15.0,22.0,18.0,18.0,16.0,12.0,7.0,7.0,5.0,7.0,7.0 P81051,59.0,71.0,75.0,78.0,72.0,79.0,74.0,85.0,75.0,87.0,72.0,108.0,85.0,98.0,93.0,85.0,86.0,67.0,85.0,79.0,91.0,85.0,86.0,72.0,83.0,93.0,93.0,90.0,111.0,117.0,116.0,105.0,107.0,124.0,109.0,124.0,110.0,103.0,95.0,101.0,114.0,91.0,89.0,109.0,78.0,83.0,89.0,79.0,87.0,89.0,88.0,88.0,90.0,85.0,87.0,104.0,117.0,104.0,99.0,99.0,97.0,104.0,98.0,86.0,91.0,85.0,86.0,57.0,56.0,66.0,52.0,57.0,72.0,66.0,65.0,47.0,66.0,71.0,56.0,42.0,32.0,37.0,41.0,15.0,20.0,13.0,22.0,17.0,12.0,12.0,2.0,3.0,4.0,2.0,2.0,5.0 P81053,41.0,35.0,31.0,39.0,48.0,42.0,57.0,53.0,50.0,50.0,47.0,54.0,48.0,37.0,60.0,56.0,57.0,55.0,51.0,43.0,33.0,36.0,44.0,46.0,44.0,41.0,44.0,57.0,51.0,47.0,49.0,60.0,74.0,67.0,59.0,67.0,52.0,56.0,66.0,61.0,57.0,58.0,63.0,49.0,58.0,58.0,50.0,43.0,48.0,45.0,43.0,47.0,51.0,55.0,53.0,56.0,46.0,75.0,68.0,56.0,45.0,51.0,61.0,45.0,49.0,46.0,44.0,51.0,51.0,43.0,44.0,50.0,43.0,32.0,26.0,31.0,50.0,36.0,43.0,30.0,30.0,20.0,24.0,20.0,12.0,8.0,4.0,13.0,4.0,4.0,8.0,6.0,4.0,,1.0,3.0 P81054,28.0,33.0,42.0,54.0,39.0,44.0,53.0,57.0,60.0,55.0,54.0,55.0,50.0,58.0,45.0,61.0,75.0,54.0,46.0,56.0,53.0,57.0,52.0,41.0,54.0,55.0,43.0,54.0,65.0,67.0,59.0,62.0,50.0,75.0,63.0,84.0,69.0,75.0,78.0,74.0,68.0,72.0,77.0,55.0,61.0,59.0,51.0,57.0,59.0,64.0,54.0,73.0,55.0,60.0,74.0,78.0,60.0,66.0,70.0,77.0,79.0,60.0,85.0,65.0,64.0,54.0,61.0,51.0,45.0,53.0,45.0,41.0,33.0,33.0,33.0,37.0,35.0,46.0,30.0,20.0,34.0,15.0,15.0,17.0,16.0,14.0,15.0,10.0,11.0,7.0,10.0,3.0,1.0,3.0,,4.0 P81055,69.0,86.0,85.0,82.0,93.0,78.0,81.0,90.0,81.0,86.0,77.0,76.0,86.0,90.0,83.0,73.0,93.0,68.0,76.0,64.0,71.0,52.0,59.0,56.0,72.0,64.0,69.0,83.0,69.0,74.0,97.0,91.0,92.0,95.0,92.0,76.0,91.0,99.0,96.0,95.0,74.0,85.0,90.0,79.0,88.0,76.0,91.0,59.0,81.0,57.0,81.0,92.0,84.0,100.0,111.0,91.0,107.0,107.0,119.0,97.0,105.0,111.0,116.0,100.0,109.0,86.0,87.0,97.0,84.0,86.0,87.0,71.0,72.0,65.0,68.0,70.0,86.0,59.0,75.0,65.0,57.0,50.0,46.0,34.0,33.0,28.0,24.0,24.0,13.0,15.0,10.0,13.0,8.0,7.0,3.0,8.0 P81057,59.0,73.0,73.0,67.0,69.0,63.0,72.0,67.0,69.0,65.0,89.0,84.0,71.0,72.0,92.0,95.0,89.0,85.0,91.0,75.0,73.0,69.0,93.0,76.0,75.0,74.0,77.0,92.0,108.0,93.0,84.0,83.0,83.0,85.0,105.0,95.0,92.0,94.0,89.0,77.0,96.0,91.0,77.0,77.0,63.0,90.0,79.0,73.0,99.0,75.0,74.0,90.0,75.0,96.0,117.0,102.0,96.0,97.0,99.0,114.0,108.0,99.0,93.0,104.0,76.0,82.0,85.0,75.0,78.0,68.0,63.0,78.0,61.0,68.0,60.0,70.0,76.0,68.0,63.0,45.0,60.0,53.0,43.0,36.0,30.0,16.0,30.0,16.0,20.0,17.0,17.0,10.0,6.0,8.0,4.0,6.0 P81058,51.0,54.0,58.0,57.0,74.0,67.0,79.0,48.0,71.0,64.0,76.0,88.0,65.0,70.0,69.0,76.0,76.0,74.0,73.0,52.0,59.0,54.0,51.0,55.0,60.0,62.0,65.0,49.0,60.0,66.0,67.0,70.0,60.0,73.0,72.0,83.0,75.0,79.0,68.0,63.0,74.0,80.0,67.0,60.0,75.0,65.0,74.0,67.0,63.0,76.0,81.0,64.0,78.0,64.0,74.0,68.0,61.0,65.0,71.0,65.0,56.0,53.0,70.0,61.0,53.0,54.0,47.0,42.0,52.0,51.0,38.0,36.0,41.0,34.0,37.0,36.0,32.0,38.0,27.0,29.0,32.0,20.0,24.0,14.0,15.0,13.0,13.0,11.0,6.0,12.0,4.0,2.0,4.0,3.0,3.0,7.0 P81059,31.0,23.0,27.0,37.0,33.0,39.0,39.0,43.0,40.0,42.0,43.0,45.0,38.0,39.0,45.0,37.0,37.0,35.0,41.0,33.0,22.0,44.0,26.0,32.0,36.0,33.0,39.0,27.0,30.0,39.0,28.0,32.0,38.0,34.0,42.0,32.0,27.0,39.0,42.0,39.0,58.0,44.0,40.0,40.0,46.0,44.0,37.0,30.0,42.0,44.0,39.0,49.0,48.0,56.0,67.0,65.0,68.0,60.0,55.0,66.0,68.0,75.0,70.0,80.0,73.0,64.0,57.0,57.0,62.0,43.0,63.0,77.0,42.0,53.0,45.0,54.0,55.0,57.0,61.0,36.0,44.0,35.0,35.0,32.0,20.0,29.0,12.0,14.0,11.0,7.0,4.0,6.0,5.0,2.0,2.0,9.0 P81061,13.0,23.0,21.0,14.0,14.0,22.0,20.0,26.0,18.0,22.0,28.0,28.0,26.0,25.0,24.0,26.0,29.0,33.0,33.0,24.0,27.0,20.0,35.0,23.0,33.0,27.0,20.0,32.0,24.0,41.0,33.0,35.0,27.0,27.0,32.0,31.0,31.0,27.0,18.0,28.0,31.0,25.0,28.0,24.0,31.0,33.0,26.0,26.0,26.0,39.0,28.0,39.0,24.0,27.0,35.0,35.0,45.0,40.0,36.0,44.0,39.0,31.0,37.0,30.0,23.0,30.0,27.0,23.0,34.0,35.0,18.0,14.0,21.0,21.0,21.0,23.0,16.0,26.0,12.0,11.0,13.0,12.0,13.0,18.0,4.0,9.0,11.0,5.0,10.0,9.0,4.0,5.0,4.0,3.0,,2.0 P81062,32.0,31.0,24.0,28.0,35.0,32.0,38.0,35.0,35.0,43.0,41.0,47.0,48.0,45.0,53.0,41.0,37.0,35.0,41.0,49.0,36.0,52.0,43.0,36.0,38.0,42.0,40.0,40.0,43.0,42.0,46.0,50.0,59.0,39.0,47.0,40.0,49.0,56.0,50.0,32.0,52.0,40.0,39.0,49.0,52.0,44.0,38.0,51.0,41.0,47.0,46.0,40.0,55.0,62.0,61.0,54.0,58.0,74.0,70.0,62.0,46.0,45.0,63.0,54.0,54.0,41.0,49.0,45.0,37.0,34.0,41.0,39.0,39.0,36.0,49.0,34.0,34.0,32.0,42.0,38.0,26.0,35.0,29.0,21.0,13.0,26.0,18.0,15.0,9.0,4.0,5.0,1.0,,3.0,1.0,3.0 P81063,45.0,37.0,45.0,55.0,49.0,53.0,55.0,50.0,53.0,65.0,49.0,51.0,52.0,58.0,58.0,71.0,54.0,80.0,81.0,65.0,69.0,61.0,60.0,62.0,81.0,58.0,62.0,73.0,75.0,72.0,57.0,94.0,77.0,94.0,94.0,82.0,93.0,93.0,85.0,78.0,109.0,87.0,70.0,101.0,84.0,92.0,73.0,77.0,70.0,76.0,67.0,78.0,104.0,93.0,89.0,106.0,94.0,98.0,97.0,118.0,102.0,122.0,96.0,92.0,86.0,85.0,82.0,84.0,83.0,63.0,49.0,54.0,57.0,45.0,46.0,45.0,47.0,54.0,42.0,34.0,27.0,21.0,28.0,19.0,22.0,25.0,15.0,15.0,15.0,9.0,4.0,6.0,7.0,5.0,2.0,4.0 P81065,54.0,66.0,74.0,72.0,68.0,75.0,78.0,80.0,86.0,82.0,103.0,78.0,88.0,100.0,90.0,99.0,104.0,89.0,83.0,90.0,73.0,72.0,76.0,62.0,80.0,63.0,79.0,87.0,90.0,86.0,72.0,113.0,80.0,116.0,98.0,104.0,103.0,105.0,100.0,89.0,95.0,83.0,105.0,88.0,75.0,89.0,74.0,79.0,73.0,87.0,102.0,97.0,101.0,109.0,97.0,97.0,107.0,106.0,108.0,111.0,111.0,98.0,121.0,124.0,103.0,96.0,112.0,105.0,84.0,71.0,71.0,94.0,84.0,80.0,82.0,91.0,80.0,81.0,86.0,59.0,65.0,53.0,48.0,31.0,27.0,13.0,22.0,21.0,15.0,17.0,14.0,16.0,7.0,7.0,1.0,1.0 P81066,46.0,41.0,46.0,45.0,52.0,57.0,62.0,58.0,55.0,49.0,62.0,44.0,59.0,49.0,53.0,58.0,60.0,47.0,48.0,36.0,46.0,53.0,36.0,37.0,45.0,41.0,42.0,53.0,45.0,44.0,53.0,56.0,63.0,63.0,63.0,80.0,66.0,65.0,57.0,51.0,48.0,60.0,63.0,51.0,62.0,53.0,35.0,35.0,61.0,54.0,48.0,54.0,61.0,60.0,60.0,67.0,49.0,67.0,47.0,66.0,63.0,56.0,55.0,51.0,48.0,53.0,43.0,40.0,35.0,39.0,31.0,39.0,21.0,30.0,32.0,34.0,27.0,31.0,31.0,27.0,26.0,21.0,14.0,15.0,9.0,15.0,12.0,12.0,5.0,3.0,4.0,1.0,3.0,2.0,,3.0 P81067,35.0,45.0,51.0,61.0,68.0,66.0,61.0,74.0,77.0,86.0,81.0,93.0,82.0,92.0,82.0,96.0,85.0,91.0,116.0,88.0,89.0,68.0,67.0,83.0,73.0,73.0,66.0,74.0,68.0,53.0,75.0,65.0,68.0,76.0,82.0,63.0,74.0,81.0,86.0,84.0,67.0,68.0,63.0,94.0,78.0,92.0,81.0,90.0,82.0,87.0,82.0,80.0,83.0,100.0,86.0,90.0,111.0,90.0,99.0,99.0,98.0,80.0,89.0,92.0,99.0,93.0,80.0,73.0,67.0,56.0,51.0,58.0,52.0,44.0,53.0,44.0,52.0,56.0,35.0,33.0,30.0,39.0,25.0,20.0,23.0,26.0,18.0,24.0,18.0,14.0,8.0,9.0,10.0,7.0,7.0,4.0 P81069,35.0,48.0,55.0,51.0,67.0,70.0,61.0,72.0,61.0,57.0,72.0,56.0,76.0,72.0,74.0,65.0,84.0,75.0,62.0,52.0,38.0,44.0,55.0,49.0,65.0,53.0,51.0,53.0,62.0,62.0,64.0,77.0,55.0,77.0,66.0,76.0,77.0,77.0,74.0,68.0,86.0,71.0,75.0,81.0,78.0,77.0,84.0,69.0,72.0,68.0,82.0,79.0,86.0,74.0,85.0,85.0,87.0,78.0,76.0,107.0,86.0,87.0,87.0,91.0,87.0,76.0,79.0,71.0,76.0,66.0,65.0,77.0,57.0,42.0,62.0,74.0,55.0,76.0,62.0,53.0,50.0,30.0,29.0,25.0,29.0,18.0,24.0,21.0,20.0,10.0,10.0,12.0,7.0,8.0,3.0,7.0 P81070,47.0,58.0,42.0,46.0,39.0,59.0,45.0,61.0,50.0,69.0,55.0,46.0,68.0,61.0,63.0,61.0,59.0,65.0,55.0,41.0,40.0,42.0,45.0,50.0,54.0,45.0,68.0,52.0,59.0,51.0,56.0,58.0,57.0,44.0,40.0,50.0,73.0,48.0,60.0,48.0,61.0,40.0,54.0,56.0,50.0,46.0,50.0,50.0,35.0,48.0,41.0,41.0,35.0,62.0,44.0,49.0,52.0,49.0,39.0,51.0,44.0,33.0,40.0,37.0,43.0,48.0,40.0,32.0,40.0,41.0,52.0,32.0,38.0,32.0,34.0,27.0,33.0,35.0,38.0,28.0,40.0,26.0,29.0,22.0,13.0,12.0,14.0,16.0,10.0,5.0,9.0,5.0,5.0,2.0,7.0,6.0 P81071,38.0,45.0,50.0,45.0,37.0,46.0,44.0,49.0,53.0,45.0,47.0,41.0,53.0,66.0,54.0,48.0,57.0,43.0,50.0,40.0,58.0,44.0,50.0,60.0,49.0,55.0,69.0,63.0,65.0,60.0,58.0,76.0,61.0,70.0,58.0,64.0,60.0,67.0,71.0,59.0,57.0,61.0,46.0,40.0,48.0,49.0,43.0,38.0,39.0,48.0,43.0,52.0,44.0,46.0,39.0,43.0,32.0,34.0,38.0,38.0,32.0,31.0,29.0,35.0,37.0,40.0,24.0,22.0,22.0,32.0,26.0,20.0,21.0,17.0,22.0,21.0,18.0,19.0,16.0,14.0,11.0,14.0,4.0,11.0,9.0,5.0,8.0,6.0,5.0,1.0,2.0,1.0,,1.0,,1.0 P81072,49.0,51.0,58.0,49.0,54.0,65.0,64.0,63.0,54.0,83.0,64.0,80.0,68.0,87.0,74.0,94.0,90.0,78.0,76.0,77.0,71.0,87.0,52.0,82.0,77.0,65.0,81.0,79.0,81.0,68.0,87.0,80.0,91.0,72.0,122.0,96.0,93.0,85.0,108.0,79.0,69.0,91.0,70.0,74.0,92.0,82.0,78.0,61.0,76.0,91.0,87.0,70.0,97.0,102.0,116.0,106.0,100.0,105.0,115.0,104.0,101.0,91.0,125.0,107.0,121.0,94.0,97.0,100.0,88.0,88.0,69.0,85.0,81.0,60.0,82.0,63.0,71.0,64.0,87.0,44.0,45.0,48.0,47.0,22.0,31.0,33.0,26.0,28.0,20.0,20.0,15.0,9.0,8.0,8.0,1.0,9.0 P81073,44.0,46.0,37.0,45.0,53.0,43.0,37.0,59.0,59.0,47.0,70.0,59.0,77.0,47.0,51.0,63.0,62.0,67.0,70.0,56.0,62.0,55.0,67.0,39.0,57.0,59.0,60.0,85.0,61.0,68.0,69.0,73.0,73.0,73.0,71.0,78.0,77.0,70.0,78.0,65.0,62.0,75.0,87.0,58.0,60.0,74.0,69.0,58.0,51.0,65.0,65.0,67.0,77.0,92.0,92.0,96.0,111.0,106.0,94.0,104.0,121.0,115.0,102.0,100.0,96.0,91.0,101.0,92.0,101.0,91.0,85.0,79.0,80.0,85.0,89.0,74.0,105.0,118.0,104.0,75.0,65.0,55.0,48.0,43.0,50.0,41.0,30.0,24.0,38.0,29.0,22.0,15.0,10.0,8.0,4.0,13.0 P81074,46.0,64.0,49.0,52.0,62.0,64.0,73.0,66.0,57.0,52.0,75.0,63.0,84.0,60.0,63.0,62.0,65.0,58.0,63.0,75.0,64.0,71.0,63.0,60.0,69.0,73.0,71.0,78.0,89.0,65.0,90.0,104.0,71.0,102.0,105.0,88.0,94.0,108.0,95.0,82.0,77.0,80.0,93.0,88.0,86.0,87.0,68.0,73.0,59.0,76.0,63.0,75.0,78.0,84.0,97.0,112.0,99.0,111.0,103.0,94.0,117.0,105.0,101.0,121.0,98.0,88.0,107.0,84.0,74.0,79.0,80.0,81.0,69.0,50.0,53.0,73.0,80.0,70.0,73.0,44.0,57.0,62.0,47.0,33.0,27.0,23.0,28.0,13.0,18.0,12.0,15.0,10.0,8.0,5.0,4.0,5.0 P81076,35.0,38.0,39.0,51.0,44.0,46.0,54.0,43.0,40.0,64.0,70.0,81.0,57.0,66.0,61.0,71.0,79.0,69.0,70.0,57.0,62.0,49.0,45.0,52.0,44.0,54.0,54.0,55.0,47.0,51.0,63.0,86.0,66.0,73.0,73.0,60.0,62.0,76.0,58.0,80.0,79.0,77.0,63.0,63.0,83.0,79.0,72.0,78.0,57.0,63.0,81.0,61.0,61.0,77.0,66.0,68.0,76.0,88.0,79.0,76.0,76.0,68.0,75.0,66.0,82.0,67.0,62.0,71.0,66.0,71.0,60.0,53.0,49.0,73.0,60.0,61.0,55.0,70.0,57.0,37.0,36.0,37.0,25.0,25.0,32.0,23.0,14.0,26.0,11.0,12.0,5.0,8.0,3.0,4.0,1.0,4.0 P81077,32.0,30.0,34.0,33.0,44.0,32.0,40.0,42.0,39.0,35.0,49.0,51.0,51.0,58.0,66.0,50.0,40.0,42.0,43.0,42.0,47.0,52.0,41.0,38.0,38.0,44.0,37.0,37.0,41.0,55.0,46.0,39.0,34.0,44.0,36.0,62.0,44.0,48.0,50.0,35.0,54.0,50.0,70.0,61.0,63.0,62.0,72.0,47.0,45.0,57.0,66.0,64.0,66.0,70.0,93.0,88.0,98.0,81.0,75.0,89.0,91.0,95.0,97.0,86.0,97.0,87.0,96.0,109.0,69.0,71.0,86.0,78.0,82.0,61.0,74.0,70.0,83.0,91.0,90.0,75.0,60.0,67.0,68.0,45.0,44.0,38.0,37.0,34.0,24.0,24.0,15.0,15.0,8.0,7.0,8.0,13.0 P81078,52.0,62.0,55.0,58.0,68.0,72.0,56.0,57.0,87.0,77.0,64.0,63.0,80.0,61.0,76.0,70.0,68.0,59.0,63.0,69.0,75.0,68.0,57.0,58.0,61.0,59.0,61.0,62.0,56.0,64.0,62.0,80.0,63.0,80.0,83.0,83.0,77.0,69.0,92.0,75.0,77.0,81.0,97.0,85.0,76.0,81.0,60.0,66.0,68.0,90.0,72.0,70.0,93.0,95.0,75.0,74.0,85.0,96.0,100.0,84.0,90.0,106.0,99.0,77.0,64.0,74.0,63.0,92.0,68.0,60.0,73.0,62.0,68.0,64.0,59.0,77.0,63.0,85.0,64.0,44.0,38.0,34.0,36.0,21.0,29.0,23.0,22.0,16.0,22.0,8.0,6.0,6.0,2.0,6.0,6.0,7.0 P81079,30.0,48.0,42.0,54.0,62.0,40.0,56.0,63.0,74.0,56.0,50.0,66.0,66.0,82.0,62.0,64.0,69.0,86.0,54.0,63.0,68.0,60.0,63.0,56.0,70.0,64.0,76.0,71.0,79.0,68.0,72.0,75.0,61.0,65.0,62.0,74.0,76.0,65.0,78.0,78.0,70.0,59.0,71.0,77.0,81.0,85.0,64.0,56.0,52.0,68.0,74.0,80.0,84.0,91.0,102.0,80.0,119.0,105.0,87.0,87.0,105.0,90.0,92.0,102.0,96.0,95.0,93.0,83.0,102.0,78.0,70.0,73.0,71.0,57.0,86.0,77.0,83.0,87.0,94.0,54.0,60.0,62.0,52.0,34.0,41.0,31.0,35.0,31.0,17.0,13.0,6.0,11.0,9.0,9.0,2.0,6.0 P81081,23.0,36.0,21.0,30.0,17.0,41.0,28.0,21.0,35.0,36.0,36.0,31.0,33.0,35.0,31.0,40.0,38.0,40.0,31.0,33.0,30.0,33.0,31.0,20.0,34.0,25.0,33.0,31.0,36.0,25.0,41.0,43.0,34.0,50.0,44.0,49.0,51.0,48.0,47.0,42.0,48.0,33.0,42.0,36.0,37.0,34.0,24.0,30.0,28.0,43.0,35.0,43.0,48.0,48.0,40.0,53.0,46.0,45.0,45.0,49.0,56.0,54.0,45.0,44.0,44.0,27.0,43.0,30.0,39.0,34.0,22.0,22.0,25.0,26.0,26.0,29.0,19.0,27.0,17.0,16.0,17.0,20.0,17.0,15.0,9.0,11.0,10.0,6.0,8.0,4.0,6.0,3.0,3.0,5.0,,4.0 P81082,54.0,39.0,46.0,53.0,52.0,61.0,45.0,53.0,46.0,62.0,63.0,55.0,60.0,50.0,38.0,51.0,59.0,49.0,59.0,49.0,55.0,43.0,43.0,47.0,51.0,62.0,62.0,69.0,58.0,76.0,50.0,66.0,73.0,92.0,78.0,77.0,81.0,86.0,78.0,70.0,64.0,57.0,64.0,61.0,58.0,56.0,39.0,54.0,65.0,59.0,69.0,49.0,63.0,81.0,60.0,80.0,65.0,74.0,74.0,81.0,88.0,87.0,74.0,81.0,83.0,74.0,81.0,59.0,60.0,65.0,64.0,60.0,62.0,59.0,51.0,62.0,74.0,68.0,62.0,30.0,52.0,37.0,33.0,27.0,21.0,22.0,27.0,24.0,16.0,11.0,9.0,9.0,1.0,3.0,3.0,3.0 P81083,35.0,47.0,37.0,49.0,49.0,40.0,35.0,43.0,57.0,40.0,48.0,47.0,44.0,37.0,53.0,49.0,52.0,46.0,39.0,38.0,39.0,36.0,41.0,38.0,47.0,40.0,45.0,50.0,43.0,38.0,40.0,46.0,51.0,51.0,84.0,54.0,61.0,47.0,68.0,61.0,68.0,55.0,59.0,44.0,56.0,50.0,45.0,44.0,38.0,39.0,51.0,55.0,57.0,57.0,67.0,63.0,55.0,61.0,60.0,78.0,64.0,60.0,63.0,58.0,54.0,71.0,51.0,47.0,46.0,39.0,49.0,49.0,33.0,44.0,45.0,41.0,46.0,50.0,62.0,44.0,24.0,35.0,43.0,31.0,17.0,24.0,19.0,20.0,20.0,6.0,8.0,8.0,7.0,3.0,5.0,3.0 P81084,34.0,37.0,38.0,45.0,35.0,46.0,32.0,32.0,47.0,36.0,39.0,50.0,43.0,34.0,42.0,51.0,46.0,53.0,43.0,45.0,41.0,43.0,30.0,41.0,42.0,33.0,50.0,46.0,43.0,37.0,37.0,39.0,39.0,54.0,54.0,45.0,55.0,61.0,45.0,55.0,47.0,35.0,41.0,44.0,47.0,56.0,45.0,41.0,42.0,48.0,61.0,60.0,73.0,66.0,66.0,72.0,66.0,56.0,66.0,82.0,84.0,74.0,66.0,52.0,59.0,48.0,55.0,49.0,35.0,45.0,48.0,35.0,42.0,48.0,51.0,38.0,37.0,51.0,35.0,34.0,39.0,34.0,27.0,24.0,30.0,29.0,20.0,15.0,19.0,10.0,11.0,8.0,4.0,4.0,,3.0 P81086,37.0,42.0,36.0,49.0,53.0,54.0,55.0,53.0,62.0,68.0,74.0,56.0,70.0,61.0,85.0,91.0,98.0,125.0,89.0,65.0,70.0,50.0,52.0,38.0,54.0,37.0,53.0,50.0,66.0,39.0,38.0,65.0,61.0,51.0,65.0,63.0,66.0,49.0,69.0,49.0,61.0,62.0,43.0,59.0,54.0,50.0,57.0,44.0,39.0,53.0,54.0,55.0,50.0,52.0,63.0,57.0,72.0,65.0,52.0,70.0,70.0,64.0,68.0,61.0,70.0,61.0,48.0,47.0,49.0,41.0,48.0,42.0,52.0,29.0,44.0,55.0,45.0,51.0,48.0,33.0,33.0,39.0,29.0,25.0,23.0,15.0,19.0,20.0,15.0,12.0,13.0,4.0,,9.0,4.0,4.0 P81087,29.0,23.0,41.0,28.0,41.0,40.0,50.0,44.0,45.0,50.0,46.0,56.0,59.0,57.0,58.0,52.0,44.0,65.0,54.0,44.0,46.0,60.0,47.0,39.0,42.0,35.0,48.0,46.0,54.0,44.0,40.0,43.0,38.0,45.0,56.0,53.0,47.0,34.0,49.0,45.0,43.0,39.0,52.0,71.0,70.0,56.0,48.0,49.0,53.0,45.0,53.0,65.0,77.0,63.0,75.0,70.0,90.0,83.0,93.0,89.0,98.0,114.0,111.0,110.0,101.0,106.0,113.0,97.0,129.0,104.0,124.0,106.0,79.0,102.0,115.0,98.0,94.0,123.0,102.0,69.0,85.0,50.0,57.0,57.0,48.0,43.0,37.0,34.0,20.0,31.0,16.0,18.0,16.0,3.0,3.0,14.0 P81088,29.0,35.0,30.0,33.0,23.0,38.0,54.0,40.0,48.0,37.0,47.0,38.0,39.0,56.0,46.0,47.0,48.0,44.0,39.0,43.0,32.0,32.0,39.0,35.0,34.0,44.0,39.0,34.0,38.0,46.0,33.0,36.0,49.0,46.0,45.0,40.0,33.0,49.0,47.0,47.0,49.0,35.0,44.0,45.0,41.0,58.0,44.0,54.0,27.0,29.0,39.0,41.0,41.0,48.0,65.0,64.0,62.0,51.0,50.0,59.0,52.0,47.0,65.0,54.0,52.0,44.0,41.0,32.0,34.0,36.0,43.0,35.0,29.0,28.0,34.0,35.0,35.0,40.0,27.0,19.0,19.0,17.0,15.0,10.0,17.0,20.0,13.0,11.0,7.0,9.0,4.0,5.0,2.0,3.0,4.0,3.0 P81089,35.0,56.0,60.0,53.0,66.0,62.0,65.0,66.0,68.0,73.0,81.0,70.0,67.0,73.0,75.0,87.0,88.0,87.0,78.0,66.0,79.0,74.0,86.0,56.0,101.0,64.0,73.0,73.0,84.0,79.0,59.0,69.0,88.0,93.0,87.0,88.0,78.0,74.0,77.0,84.0,89.0,78.0,71.0,85.0,78.0,76.0,66.0,59.0,67.0,71.0,79.0,78.0,66.0,92.0,85.0,74.0,67.0,77.0,97.0,93.0,86.0,88.0,104.0,77.0,76.0,78.0,73.0,76.0,81.0,92.0,65.0,80.0,74.0,68.0,56.0,64.0,51.0,62.0,72.0,43.0,31.0,38.0,39.0,28.0,28.0,28.0,15.0,15.0,16.0,11.0,10.0,10.0,9.0,5.0,6.0,4.0 P81092,23.0,22.0,22.0,24.0,19.0,22.0,25.0,30.0,30.0,40.0,31.0,29.0,29.0,36.0,38.0,29.0,31.0,26.0,33.0,31.0,33.0,32.0,35.0,38.0,37.0,34.0,43.0,32.0,40.0,30.0,38.0,31.0,34.0,37.0,38.0,47.0,44.0,42.0,51.0,53.0,40.0,36.0,42.0,54.0,48.0,51.0,29.0,36.0,34.0,36.0,45.0,54.0,35.0,51.0,62.0,60.0,46.0,49.0,69.0,75.0,66.0,60.0,60.0,58.0,61.0,72.0,71.0,56.0,57.0,45.0,58.0,53.0,57.0,57.0,55.0,62.0,61.0,45.0,67.0,41.0,51.0,43.0,46.0,31.0,26.0,29.0,23.0,19.0,10.0,18.0,12.0,9.0,3.0,1.0,3.0,7.0 P81095,33.0,49.0,48.0,64.0,59.0,70.0,66.0,43.0,73.0,62.0,70.0,67.0,81.0,66.0,78.0,75.0,76.0,69.0,63.0,68.0,60.0,54.0,57.0,56.0,56.0,56.0,58.0,55.0,44.0,55.0,42.0,52.0,50.0,45.0,65.0,55.0,59.0,54.0,60.0,71.0,66.0,46.0,49.0,58.0,64.0,61.0,59.0,50.0,50.0,59.0,44.0,52.0,51.0,51.0,53.0,53.0,58.0,67.0,41.0,45.0,39.0,42.0,37.0,38.0,34.0,41.0,34.0,41.0,41.0,32.0,20.0,42.0,33.0,24.0,27.0,24.0,40.0,30.0,45.0,25.0,17.0,17.0,32.0,8.0,12.0,16.0,14.0,11.0,8.0,3.0,6.0,7.0,3.0,,1.0,3.0 P81096,24.0,27.0,22.0,28.0,23.0,23.0,26.0,30.0,36.0,40.0,41.0,31.0,33.0,43.0,38.0,41.0,42.0,41.0,42.0,32.0,28.0,29.0,35.0,38.0,27.0,36.0,32.0,37.0,31.0,26.0,29.0,25.0,32.0,23.0,34.0,25.0,27.0,29.0,35.0,28.0,37.0,31.0,29.0,38.0,40.0,44.0,42.0,42.0,26.0,39.0,56.0,44.0,63.0,40.0,47.0,41.0,42.0,51.0,63.0,72.0,59.0,74.0,65.0,49.0,59.0,62.0,49.0,46.0,47.0,42.0,38.0,41.0,47.0,41.0,40.0,46.0,36.0,40.0,47.0,30.0,50.0,45.0,29.0,22.0,21.0,16.0,19.0,12.0,19.0,6.0,7.0,5.0,3.0,5.0,3.0,3.0 P81099,36.0,47.0,57.0,60.0,52.0,60.0,53.0,48.0,62.0,54.0,62.0,65.0,70.0,60.0,55.0,66.0,63.0,81.0,76.0,63.0,51.0,53.0,55.0,39.0,66.0,54.0,53.0,60.0,55.0,65.0,74.0,73.0,68.0,63.0,79.0,69.0,87.0,81.0,61.0,59.0,63.0,69.0,76.0,56.0,72.0,71.0,65.0,65.0,53.0,60.0,71.0,57.0,78.0,71.0,78.0,77.0,83.0,72.0,83.0,86.0,75.0,90.0,62.0,71.0,59.0,82.0,63.0,55.0,68.0,51.0,57.0,59.0,51.0,52.0,48.0,57.0,60.0,51.0,56.0,38.0,35.0,36.0,42.0,21.0,21.0,17.0,17.0,11.0,7.0,4.0,10.0,9.0,7.0,2.0,7.0,4.0 P81100,55.0,65.0,57.0,62.0,61.0,66.0,68.0,77.0,81.0,75.0,83.0,92.0,104.0,111.0,111.0,142.0,171.0,148.0,112.0,104.0,77.0,70.0,79.0,79.0,83.0,68.0,97.0,79.0,84.0,85.0,77.0,84.0,84.0,75.0,98.0,86.0,108.0,108.0,91.0,101.0,98.0,97.0,91.0,77.0,80.0,83.0,86.0,65.0,76.0,76.0,94.0,89.0,80.0,104.0,120.0,118.0,138.0,123.0,121.0,116.0,130.0,113.0,117.0,121.0,115.0,102.0,106.0,100.0,104.0,77.0,87.0,94.0,83.0,80.0,64.0,72.0,81.0,92.0,79.0,68.0,56.0,44.0,45.0,33.0,40.0,39.0,35.0,17.0,24.0,27.0,16.0,15.0,6.0,7.0,5.0,14.0 P81103,67.0,59.0,83.0,75.0,82.0,75.0,72.0,78.0,78.0,82.0,79.0,69.0,80.0,66.0,73.0,71.0,81.0,57.0,65.0,56.0,65.0,38.0,48.0,58.0,56.0,56.0,73.0,68.0,66.0,72.0,82.0,96.0,83.0,71.0,82.0,70.0,83.0,103.0,81.0,96.0,75.0,97.0,77.0,77.0,79.0,83.0,63.0,71.0,68.0,64.0,65.0,66.0,83.0,66.0,76.0,94.0,65.0,71.0,76.0,71.0,83.0,91.0,88.0,76.0,65.0,73.0,66.0,78.0,58.0,44.0,43.0,47.0,47.0,35.0,48.0,52.0,49.0,39.0,28.0,29.0,26.0,25.0,27.0,28.0,19.0,17.0,24.0,17.0,15.0,10.0,16.0,5.0,5.0,3.0,3.0,5.0 P81107,40.0,49.0,38.0,51.0,41.0,34.0,38.0,48.0,39.0,42.0,34.0,38.0,30.0,45.0,38.0,50.0,42.0,54.0,55.0,54.0,31.0,45.0,43.0,45.0,39.0,51.0,52.0,54.0,48.0,37.0,58.0,54.0,61.0,42.0,70.0,42.0,56.0,48.0,41.0,50.0,58.0,35.0,47.0,35.0,47.0,53.0,44.0,42.0,46.0,36.0,50.0,50.0,52.0,61.0,54.0,56.0,61.0,71.0,78.0,60.0,68.0,65.0,64.0,57.0,60.0,66.0,44.0,43.0,42.0,56.0,36.0,38.0,47.0,26.0,37.0,37.0,48.0,39.0,38.0,40.0,32.0,42.0,27.0,27.0,19.0,14.0,16.0,12.0,7.0,9.0,4.0,7.0,3.0,5.0,4.0,3.0 P81112,61.0,61.0,52.0,88.0,64.0,89.0,83.0,92.0,94.0,86.0,96.0,83.0,88.0,101.0,107.0,101.0,92.0,109.0,110.0,162.0,161.0,157.0,148.0,124.0,119.0,108.0,107.0,141.0,112.0,120.0,93.0,121.0,100.0,121.0,113.0,100.0,101.0,111.0,111.0,104.0,123.0,92.0,95.0,107.0,93.0,89.0,97.0,88.0,96.0,71.0,88.0,89.0,93.0,123.0,118.0,108.0,104.0,135.0,96.0,117.0,116.0,117.0,109.0,94.0,95.0,89.0,82.0,109.0,77.0,75.0,63.0,91.0,48.0,76.0,61.0,64.0,70.0,77.0,51.0,48.0,41.0,52.0,34.0,37.0,34.0,28.0,24.0,18.0,12.0,13.0,14.0,7.0,8.0,1.0,3.0,6.0 P81113,25.0,23.0,22.0,30.0,17.0,26.0,36.0,36.0,38.0,37.0,33.0,27.0,35.0,39.0,42.0,37.0,35.0,40.0,33.0,32.0,28.0,35.0,20.0,37.0,23.0,28.0,29.0,29.0,26.0,34.0,34.0,42.0,40.0,41.0,38.0,41.0,41.0,35.0,45.0,43.0,37.0,46.0,53.0,29.0,35.0,43.0,28.0,37.0,34.0,43.0,35.0,50.0,46.0,57.0,58.0,48.0,52.0,54.0,65.0,60.0,51.0,65.0,82.0,51.0,67.0,56.0,58.0,42.0,45.0,55.0,54.0,56.0,51.0,57.0,46.0,43.0,44.0,53.0,51.0,35.0,41.0,34.0,24.0,26.0,20.0,26.0,15.0,20.0,14.0,9.0,8.0,5.0,6.0,6.0,4.0,6.0 P81115,79.0,97.0,108.0,89.0,106.0,101.0,103.0,96.0,87.0,122.0,103.0,111.0,110.0,128.0,116.0,126.0,117.0,116.0,113.0,119.0,124.0,96.0,108.0,108.0,95.0,100.0,109.0,139.0,114.0,113.0,109.0,114.0,119.0,125.0,142.0,131.0,133.0,107.0,135.0,143.0,131.0,119.0,134.0,129.0,108.0,149.0,103.0,78.0,94.0,96.0,109.0,118.0,108.0,152.0,129.0,124.0,135.0,130.0,128.0,118.0,139.0,118.0,109.0,100.0,123.0,107.0,85.0,96.0,93.0,105.0,93.0,63.0,63.0,55.0,69.0,59.0,55.0,60.0,53.0,42.0,33.0,26.0,26.0,16.0,19.0,17.0,20.0,17.0,8.0,9.0,5.0,5.0,3.0,2.0,1.0,6.0 P81117,33.0,40.0,30.0,26.0,30.0,24.0,26.0,33.0,41.0,32.0,32.0,47.0,37.0,42.0,32.0,33.0,33.0,33.0,34.0,27.0,21.0,24.0,39.0,33.0,21.0,38.0,27.0,37.0,40.0,50.0,37.0,41.0,44.0,39.0,48.0,38.0,36.0,45.0,35.0,34.0,48.0,35.0,31.0,37.0,43.0,37.0,30.0,27.0,49.0,29.0,38.0,34.0,35.0,34.0,33.0,28.0,33.0,40.0,41.0,27.0,35.0,24.0,37.0,30.0,33.0,22.0,26.0,21.0,28.0,30.0,18.0,19.0,21.0,24.0,21.0,23.0,23.0,26.0,34.0,15.0,13.0,18.0,17.0,14.0,10.0,10.0,12.0,6.0,4.0,1.0,3.0,5.0,1.0,1.0,3.0,2.0 P81118,50.0,55.0,58.0,67.0,70.0,65.0,62.0,75.0,57.0,64.0,68.0,68.0,73.0,59.0,78.0,54.0,57.0,62.0,61.0,58.0,52.0,50.0,57.0,58.0,54.0,57.0,56.0,59.0,49.0,51.0,62.0,78.0,57.0,78.0,88.0,85.0,72.0,82.0,68.0,68.0,58.0,97.0,71.0,65.0,76.0,69.0,69.0,52.0,50.0,68.0,70.0,81.0,71.0,68.0,74.0,64.0,79.0,65.0,72.0,68.0,50.0,44.0,60.0,59.0,55.0,50.0,41.0,41.0,37.0,37.0,41.0,40.0,43.0,32.0,34.0,31.0,33.0,39.0,33.0,23.0,18.0,18.0,15.0,10.0,11.0,7.0,10.0,11.0,5.0,6.0,4.0,11.0,1.0,1.0,1.0,2.0 P81119,67.0,61.0,82.0,67.0,63.0,82.0,77.0,71.0,70.0,66.0,60.0,56.0,67.0,73.0,70.0,68.0,68.0,73.0,66.0,70.0,50.0,70.0,48.0,64.0,95.0,84.0,94.0,95.0,87.0,115.0,90.0,121.0,114.0,117.0,93.0,100.0,106.0,103.0,107.0,98.0,97.0,91.0,78.0,62.0,70.0,75.0,75.0,70.0,77.0,58.0,70.0,68.0,60.0,71.0,62.0,67.0,52.0,58.0,63.0,61.0,65.0,57.0,70.0,68.0,63.0,38.0,50.0,31.0,49.0,41.0,30.0,37.0,25.0,27.0,31.0,23.0,40.0,35.0,24.0,19.0,10.0,12.0,15.0,15.0,9.0,13.0,8.0,8.0,7.0,6.0,4.0,7.0,3.0,2.0,,3.0 P81123,47.0,64.0,66.0,63.0,66.0,87.0,74.0,86.0,90.0,109.0,121.0,117.0,112.0,90.0,120.0,124.0,97.0,123.0,92.0,92.0,104.0,95.0,99.0,84.0,88.0,102.0,96.0,84.0,69.0,84.0,74.0,79.0,103.0,97.0,85.0,104.0,118.0,122.0,106.0,115.0,132.0,114.0,104.0,107.0,104.0,116.0,92.0,111.0,91.0,81.0,77.0,78.0,78.0,82.0,82.0,83.0,74.0,63.0,72.0,62.0,72.0,53.0,76.0,62.0,67.0,60.0,64.0,53.0,46.0,53.0,50.0,53.0,41.0,47.0,36.0,46.0,41.0,29.0,29.0,22.0,20.0,21.0,23.0,24.0,12.0,18.0,10.0,5.0,5.0,2.0,6.0,4.0,3.0,3.0,,6.0 P81125,51.0,51.0,54.0,62.0,53.0,64.0,53.0,64.0,68.0,66.0,67.0,68.0,73.0,63.0,62.0,55.0,68.0,77.0,60.0,58.0,39.0,62.0,67.0,72.0,58.0,52.0,62.0,55.0,69.0,74.0,72.0,56.0,58.0,46.0,66.0,49.0,73.0,84.0,64.0,73.0,77.0,57.0,93.0,66.0,67.0,73.0,65.0,75.0,49.0,67.0,58.0,49.0,57.0,56.0,66.0,62.0,64.0,66.0,69.0,63.0,69.0,64.0,72.0,65.0,53.0,63.0,51.0,59.0,48.0,64.0,51.0,44.0,58.0,44.0,39.0,45.0,54.0,45.0,44.0,31.0,39.0,25.0,32.0,30.0,28.0,18.0,14.0,12.0,11.0,8.0,6.0,8.0,4.0,4.0,2.0,3.0 P81127,40.0,56.0,49.0,63.0,63.0,65.0,62.0,64.0,67.0,50.0,57.0,70.0,69.0,71.0,78.0,53.0,50.0,60.0,47.0,53.0,50.0,36.0,49.0,37.0,47.0,51.0,46.0,55.0,72.0,68.0,66.0,72.0,66.0,61.0,88.0,83.0,69.0,70.0,82.0,82.0,69.0,61.0,81.0,76.0,68.0,66.0,60.0,67.0,67.0,53.0,71.0,57.0,61.0,60.0,46.0,68.0,59.0,52.0,69.0,67.0,77.0,63.0,60.0,53.0,56.0,46.0,35.0,46.0,44.0,42.0,48.0,47.0,49.0,38.0,28.0,37.0,42.0,46.0,48.0,22.0,31.0,22.0,19.0,15.0,14.0,13.0,6.0,9.0,7.0,3.0,7.0,7.0,3.0,6.0,3.0,2.0 P81128,35.0,47.0,45.0,48.0,60.0,52.0,65.0,47.0,61.0,46.0,55.0,57.0,53.0,66.0,50.0,71.0,47.0,61.0,54.0,51.0,57.0,54.0,37.0,56.0,62.0,57.0,53.0,56.0,32.0,58.0,63.0,60.0,65.0,58.0,58.0,57.0,87.0,62.0,62.0,68.0,62.0,79.0,75.0,61.0,56.0,49.0,57.0,55.0,55.0,61.0,61.0,52.0,56.0,69.0,69.0,63.0,91.0,70.0,90.0,63.0,64.0,79.0,74.0,81.0,59.0,85.0,63.0,56.0,55.0,56.0,69.0,49.0,39.0,31.0,37.0,41.0,50.0,46.0,49.0,35.0,51.0,40.0,37.0,23.0,29.0,13.0,22.0,15.0,15.0,9.0,4.0,2.0,2.0,5.0,1.0,8.0 P81129,58.0,67.0,55.0,59.0,64.0,55.0,47.0,71.0,61.0,74.0,68.0,67.0,76.0,75.0,69.0,77.0,68.0,60.0,58.0,65.0,72.0,49.0,65.0,64.0,57.0,68.0,70.0,49.0,83.0,54.0,64.0,50.0,54.0,75.0,73.0,62.0,70.0,82.0,77.0,72.0,74.0,67.0,79.0,81.0,77.0,64.0,90.0,66.0,56.0,55.0,73.0,69.0,78.0,90.0,73.0,69.0,102.0,81.0,92.0,95.0,75.0,81.0,74.0,78.0,89.0,78.0,68.0,81.0,64.0,68.0,67.0,70.0,48.0,57.0,69.0,56.0,69.0,83.0,71.0,43.0,40.0,46.0,35.0,32.0,26.0,34.0,20.0,15.0,10.0,15.0,11.0,9.0,3.0,3.0,4.0,9.0 P81130,47.0,61.0,61.0,62.0,62.0,81.0,84.0,71.0,98.0,86.0,86.0,72.0,93.0,90.0,87.0,72.0,97.0,87.0,89.0,69.0,83.0,74.0,76.0,74.0,67.0,91.0,74.0,86.0,108.0,86.0,81.0,85.0,79.0,88.0,85.0,93.0,91.0,104.0,104.0,97.0,89.0,93.0,81.0,78.0,78.0,79.0,79.0,93.0,85.0,76.0,74.0,84.0,80.0,112.0,113.0,84.0,109.0,88.0,94.0,114.0,99.0,107.0,92.0,100.0,74.0,81.0,101.0,81.0,82.0,68.0,86.0,73.0,71.0,60.0,62.0,57.0,77.0,86.0,74.0,45.0,43.0,33.0,40.0,33.0,33.0,31.0,17.0,22.0,8.0,18.0,7.0,3.0,12.0,6.0,4.0,7.0 P81132,33.0,34.0,44.0,41.0,56.0,47.0,51.0,56.0,62.0,51.0,50.0,56.0,64.0,63.0,47.0,56.0,52.0,48.0,71.0,53.0,53.0,45.0,54.0,52.0,49.0,49.0,63.0,43.0,61.0,70.0,64.0,59.0,73.0,58.0,73.0,60.0,65.0,52.0,72.0,45.0,57.0,50.0,55.0,70.0,70.0,62.0,59.0,36.0,54.0,49.0,51.0,60.0,64.0,63.0,80.0,72.0,79.0,87.0,64.0,68.0,82.0,72.0,76.0,71.0,59.0,72.0,49.0,55.0,50.0,40.0,38.0,48.0,43.0,35.0,43.0,42.0,42.0,52.0,57.0,27.0,29.0,25.0,9.0,17.0,16.0,12.0,13.0,11.0,8.0,4.0,6.0,4.0,2.0,3.0,1.0,4.0 P81133,30.0,27.0,30.0,37.0,30.0,39.0,35.0,39.0,39.0,52.0,53.0,52.0,48.0,53.0,47.0,56.0,58.0,58.0,45.0,34.0,54.0,29.0,44.0,40.0,55.0,41.0,49.0,49.0,52.0,34.0,52.0,45.0,45.0,49.0,39.0,50.0,47.0,56.0,43.0,55.0,58.0,70.0,25.0,43.0,52.0,41.0,54.0,36.0,36.0,40.0,46.0,52.0,56.0,72.0,52.0,60.0,65.0,49.0,59.0,80.0,78.0,64.0,67.0,85.0,61.0,76.0,60.0,68.0,49.0,61.0,67.0,52.0,52.0,57.0,50.0,52.0,53.0,66.0,55.0,39.0,40.0,38.0,33.0,22.0,28.0,22.0,25.0,21.0,12.0,15.0,14.0,12.0,8.0,2.0,1.0,2.0 P81136,7.0,17.0,15.0,11.0,13.0,10.0,22.0,6.0,15.0,18.0,10.0,19.0,18.0,8.0,22.0,7.0,12.0,10.0,8.0,17.0,14.0,17.0,13.0,9.0,13.0,14.0,17.0,20.0,25.0,12.0,18.0,22.0,17.0,21.0,36.0,18.0,23.0,21.0,14.0,25.0,12.0,8.0,23.0,25.0,19.0,20.0,20.0,16.0,10.0,13.0,18.0,20.0,17.0,19.0,23.0,25.0,22.0,25.0,25.0,23.0,18.0,21.0,26.0,24.0,29.0,21.0,21.0,27.0,15.0,10.0,21.0,16.0,11.0,9.0,15.0,15.0,15.0,11.0,11.0,8.0,6.0,14.0,13.0,3.0,11.0,8.0,10.0,4.0,2.0,3.0,4.0,4.0,,4.0,2.0,1.0 P81137,36.0,33.0,52.0,37.0,36.0,43.0,49.0,41.0,39.0,49.0,41.0,35.0,44.0,56.0,41.0,55.0,30.0,35.0,48.0,37.0,25.0,30.0,28.0,45.0,28.0,24.0,36.0,34.0,44.0,36.0,40.0,50.0,48.0,53.0,52.0,37.0,53.0,47.0,47.0,59.0,52.0,39.0,44.0,50.0,45.0,29.0,41.0,37.0,33.0,22.0,50.0,44.0,40.0,40.0,32.0,54.0,36.0,50.0,61.0,33.0,45.0,47.0,43.0,51.0,36.0,34.0,35.0,51.0,32.0,32.0,32.0,27.0,33.0,21.0,25.0,30.0,25.0,38.0,20.0,23.0,17.0,27.0,19.0,13.0,9.0,8.0,4.0,7.0,4.0,4.0,4.0,2.0,7.0,1.0,3.0,1.0 P81138,20.0,23.0,17.0,21.0,15.0,17.0,19.0,10.0,19.0,15.0,16.0,16.0,17.0,15.0,17.0,20.0,9.0,10.0,12.0,19.0,8.0,16.0,15.0,12.0,16.0,12.0,16.0,20.0,20.0,17.0,32.0,15.0,20.0,20.0,19.0,23.0,23.0,15.0,26.0,11.0,18.0,14.0,23.0,21.0,19.0,14.0,21.0,18.0,15.0,19.0,24.0,21.0,20.0,28.0,26.0,28.0,29.0,20.0,26.0,19.0,25.0,22.0,24.0,23.0,15.0,22.0,29.0,20.0,20.0,18.0,17.0,15.0,18.0,20.0,18.0,18.0,17.0,24.0,18.0,16.0,17.0,18.0,18.0,10.0,11.0,2.0,11.0,3.0,7.0,3.0,2.0,6.0,,2.0,1.0,1.0 P81140,91.0,67.0,80.0,62.0,78.0,81.0,98.0,68.0,78.0,99.0,79.0,96.0,107.0,112.0,83.0,100.0,103.0,110.0,87.0,83.0,84.0,94.0,86.0,100.0,105.0,85.0,101.0,87.0,104.0,85.0,112.0,94.0,93.0,116.0,135.0,103.0,121.0,118.0,109.0,116.0,116.0,117.0,105.0,105.0,103.0,90.0,96.0,97.0,110.0,101.0,89.0,105.0,110.0,115.0,127.0,125.0,116.0,117.0,110.0,129.0,104.0,97.0,113.0,106.0,111.0,105.0,80.0,80.0,74.0,76.0,81.0,67.0,68.0,80.0,61.0,63.0,68.0,75.0,75.0,51.0,50.0,46.0,38.0,30.0,28.0,18.0,25.0,19.0,10.0,15.0,18.0,6.0,9.0,3.0,6.0,7.0 P81143,39.0,53.0,56.0,57.0,53.0,63.0,73.0,69.0,74.0,72.0,82.0,68.0,70.0,65.0,83.0,68.0,57.0,66.0,59.0,70.0,79.0,72.0,57.0,58.0,55.0,45.0,63.0,57.0,53.0,57.0,51.0,66.0,59.0,74.0,82.0,74.0,68.0,61.0,82.0,74.0,91.0,88.0,77.0,74.0,79.0,69.0,79.0,70.0,74.0,67.0,77.0,87.0,97.0,74.0,87.0,94.0,85.0,99.0,89.0,92.0,95.0,85.0,96.0,83.0,73.0,79.0,69.0,82.0,68.0,50.0,51.0,68.0,50.0,59.0,57.0,44.0,56.0,66.0,49.0,35.0,35.0,34.0,37.0,26.0,15.0,16.0,12.0,17.0,13.0,6.0,9.0,4.0,12.0,3.0,4.0,8.0 P81147,24.0,23.0,23.0,39.0,34.0,39.0,24.0,38.0,23.0,25.0,33.0,30.0,24.0,33.0,23.0,36.0,31.0,32.0,32.0,36.0,39.0,33.0,38.0,30.0,40.0,32.0,34.0,33.0,43.0,41.0,39.0,30.0,29.0,34.0,40.0,28.0,38.0,43.0,44.0,32.0,31.0,37.0,35.0,34.0,39.0,34.0,41.0,26.0,25.0,44.0,38.0,39.0,31.0,30.0,45.0,38.0,27.0,48.0,39.0,20.0,44.0,26.0,34.0,35.0,23.0,20.0,28.0,22.0,24.0,20.0,22.0,22.0,15.0,19.0,29.0,16.0,27.0,26.0,21.0,16.0,15.0,16.0,15.0,9.0,12.0,8.0,5.0,8.0,5.0,3.0,2.0,4.0,2.0,3.0,1.0,2.0 P81149,32.0,36.0,36.0,39.0,28.0,41.0,45.0,37.0,54.0,50.0,40.0,44.0,58.0,36.0,49.0,54.0,41.0,44.0,42.0,39.0,48.0,36.0,32.0,30.0,43.0,36.0,32.0,36.0,48.0,38.0,36.0,43.0,45.0,46.0,50.0,49.0,51.0,67.0,56.0,50.0,48.0,52.0,54.0,56.0,40.0,61.0,41.0,46.0,41.0,47.0,43.0,44.0,50.0,60.0,63.0,71.0,79.0,70.0,70.0,58.0,61.0,65.0,76.0,70.0,77.0,61.0,48.0,56.0,45.0,63.0,59.0,64.0,53.0,55.0,62.0,59.0,56.0,64.0,54.0,45.0,39.0,36.0,37.0,24.0,19.0,21.0,27.0,24.0,14.0,19.0,8.0,9.0,9.0,8.0,1.0,7.0 P81150,22.0,34.0,29.0,34.0,44.0,57.0,59.0,49.0,60.0,56.0,47.0,67.0,69.0,73.0,77.0,54.0,75.0,46.0,56.0,61.0,52.0,45.0,28.0,46.0,36.0,47.0,53.0,59.0,56.0,56.0,39.0,49.0,61.0,72.0,70.0,65.0,62.0,70.0,68.0,68.0,65.0,63.0,79.0,74.0,72.0,86.0,69.0,67.0,72.0,60.0,80.0,61.0,70.0,89.0,67.0,94.0,99.0,98.0,106.0,90.0,91.0,98.0,109.0,108.0,89.0,89.0,89.0,91.0,97.0,81.0,83.0,83.0,99.0,81.0,83.0,75.0,75.0,93.0,86.0,75.0,67.0,63.0,50.0,42.0,31.0,33.0,37.0,40.0,30.0,13.0,18.0,21.0,9.0,13.0,10.0,16.0 P81154,18.0,30.0,35.0,32.0,31.0,25.0,37.0,21.0,43.0,42.0,36.0,35.0,50.0,37.0,46.0,40.0,35.0,35.0,47.0,33.0,55.0,39.0,39.0,46.0,37.0,32.0,30.0,28.0,43.0,35.0,35.0,37.0,38.0,37.0,44.0,51.0,45.0,52.0,47.0,38.0,44.0,44.0,39.0,40.0,68.0,42.0,33.0,48.0,35.0,49.0,52.0,50.0,57.0,67.0,52.0,64.0,69.0,60.0,66.0,54.0,68.0,74.0,62.0,66.0,64.0,49.0,49.0,57.0,53.0,48.0,38.0,53.0,32.0,43.0,36.0,47.0,55.0,56.0,59.0,49.0,46.0,33.0,38.0,26.0,25.0,22.0,18.0,17.0,16.0,13.0,13.0,8.0,5.0,5.0,2.0,6.0 P81155,35.0,36.0,37.0,40.0,39.0,39.0,37.0,33.0,34.0,43.0,49.0,40.0,31.0,55.0,26.0,24.0,34.0,38.0,33.0,37.0,30.0,35.0,29.0,27.0,35.0,36.0,33.0,27.0,30.0,27.0,34.0,39.0,50.0,41.0,51.0,47.0,50.0,48.0,37.0,39.0,40.0,37.0,49.0,44.0,34.0,32.0,24.0,34.0,36.0,43.0,37.0,44.0,45.0,41.0,48.0,37.0,41.0,38.0,38.0,35.0,48.0,40.0,44.0,47.0,37.0,29.0,39.0,39.0,36.0,24.0,23.0,27.0,29.0,25.0,18.0,16.0,32.0,24.0,27.0,14.0,18.0,17.0,10.0,11.0,8.0,5.0,7.0,13.0,12.0,6.0,4.0,5.0,2.0,2.0,3.0,1.0 P81157,42.0,47.0,32.0,51.0,46.0,47.0,48.0,44.0,54.0,55.0,50.0,50.0,54.0,47.0,44.0,53.0,48.0,65.0,49.0,50.0,50.0,56.0,49.0,40.0,43.0,57.0,43.0,49.0,48.0,45.0,63.0,57.0,46.0,59.0,62.0,67.0,53.0,53.0,48.0,63.0,69.0,62.0,57.0,53.0,57.0,59.0,44.0,63.0,61.0,57.0,61.0,61.0,61.0,71.0,90.0,73.0,74.0,83.0,78.0,100.0,111.0,102.0,97.0,107.0,92.0,110.0,84.0,99.0,95.0,79.0,90.0,78.0,84.0,72.0,89.0,78.0,60.0,78.0,96.0,61.0,60.0,53.0,53.0,40.0,23.0,27.0,23.0,28.0,21.0,16.0,12.0,9.0,9.0,7.0,6.0,6.0 P81159,49.0,51.0,60.0,52.0,54.0,47.0,55.0,59.0,63.0,58.0,77.0,68.0,60.0,65.0,60.0,58.0,61.0,67.0,59.0,53.0,65.0,40.0,42.0,56.0,49.0,76.0,60.0,68.0,83.0,66.0,64.0,83.0,88.0,81.0,86.0,94.0,81.0,97.0,65.0,91.0,80.0,67.0,64.0,78.0,84.0,74.0,86.0,61.0,70.0,58.0,69.0,75.0,90.0,101.0,77.0,109.0,99.0,101.0,114.0,106.0,105.0,126.0,112.0,106.0,84.0,93.0,84.0,84.0,68.0,75.0,78.0,69.0,81.0,76.0,69.0,63.0,57.0,79.0,78.0,57.0,56.0,35.0,46.0,36.0,33.0,23.0,23.0,22.0,15.0,9.0,8.0,7.0,7.0,9.0,4.0,8.0 P81160,101.0,76.0,92.0,104.0,94.0,104.0,108.0,109.0,123.0,106.0,114.0,104.0,125.0,124.0,126.0,116.0,103.0,89.0,87.0,112.0,94.0,105.0,102.0,112.0,90.0,94.0,93.0,96.0,111.0,112.0,120.0,111.0,127.0,131.0,116.0,136.0,135.0,140.0,132.0,138.0,128.0,120.0,104.0,101.0,110.0,117.0,112.0,97.0,96.0,96.0,104.0,106.0,90.0,109.0,122.0,103.0,111.0,110.0,114.0,91.0,100.0,111.0,94.0,94.0,92.0,89.0,81.0,79.0,77.0,64.0,65.0,60.0,63.0,64.0,60.0,71.0,54.0,55.0,72.0,41.0,27.0,36.0,28.0,33.0,25.0,24.0,21.0,11.0,7.0,12.0,8.0,4.0,2.0,5.0,3.0,8.0 P81165,12.0,11.0,20.0,24.0,14.0,8.0,16.0,13.0,20.0,15.0,14.0,16.0,20.0,13.0,12.0,14.0,12.0,14.0,16.0,9.0,14.0,12.0,20.0,17.0,30.0,21.0,16.0,23.0,18.0,22.0,23.0,18.0,33.0,24.0,22.0,21.0,24.0,18.0,26.0,24.0,16.0,20.0,24.0,13.0,22.0,20.0,14.0,11.0,12.0,24.0,14.0,16.0,18.0,20.0,11.0,19.0,26.0,16.0,18.0,20.0,20.0,17.0,15.0,19.0,19.0,16.0,22.0,15.0,16.0,13.0,18.0,10.0,15.0,9.0,10.0,16.0,12.0,9.0,14.0,10.0,10.0,12.0,6.0,,2.0,1.0,1.0,9.0,2.0,,1.0,3.0,,,,1.0 P81166,10.0,15.0,12.0,9.0,12.0,15.0,13.0,12.0,11.0,6.0,21.0,12.0,21.0,8.0,23.0,17.0,22.0,15.0,12.0,12.0,18.0,13.0,16.0,14.0,12.0,12.0,12.0,15.0,14.0,12.0,15.0,22.0,19.0,24.0,19.0,18.0,17.0,21.0,20.0,27.0,13.0,19.0,19.0,23.0,14.0,10.0,13.0,15.0,16.0,12.0,18.0,9.0,18.0,21.0,30.0,18.0,17.0,26.0,17.0,15.0,21.0,16.0,24.0,16.0,13.0,18.0,12.0,9.0,15.0,7.0,11.0,12.0,12.0,12.0,11.0,12.0,11.0,9.0,10.0,6.0,10.0,3.0,8.0,3.0,4.0,2.0,3.0,4.0,4.0,2.0,1.0,1.0,,3.0,, P81167,51.0,39.0,42.0,49.0,33.0,47.0,39.0,42.0,39.0,43.0,41.0,54.0,53.0,54.0,57.0,50.0,41.0,47.0,47.0,49.0,32.0,34.0,42.0,45.0,45.0,51.0,50.0,48.0,44.0,43.0,47.0,52.0,44.0,32.0,41.0,47.0,43.0,42.0,43.0,36.0,49.0,47.0,42.0,34.0,35.0,47.0,34.0,41.0,41.0,31.0,28.0,27.0,38.0,32.0,39.0,44.0,34.0,35.0,35.0,26.0,27.0,35.0,19.0,32.0,30.0,31.0,24.0,16.0,21.0,16.0,18.0,14.0,14.0,19.0,13.0,17.0,12.0,11.0,10.0,4.0,8.0,7.0,7.0,2.0,3.0,4.0,3.0,4.0,3.0,6.0,,1.0,,2.0,1.0,1.0 P81169,34.0,25.0,36.0,41.0,32.0,31.0,47.0,28.0,35.0,51.0,31.0,36.0,33.0,27.0,41.0,31.0,28.0,41.0,41.0,28.0,31.0,33.0,45.0,45.0,59.0,68.0,74.0,58.0,86.0,62.0,83.0,67.0,78.0,76.0,73.0,70.0,67.0,75.0,64.0,69.0,63.0,67.0,52.0,43.0,47.0,52.0,50.0,44.0,40.0,45.0,28.0,39.0,48.0,36.0,34.0,35.0,44.0,38.0,54.0,32.0,42.0,41.0,34.0,47.0,40.0,30.0,27.0,33.0,28.0,24.0,27.0,29.0,27.0,22.0,27.0,19.0,21.0,20.0,26.0,16.0,10.0,9.0,11.0,14.0,3.0,8.0,6.0,6.0,8.0,2.0,2.0,4.0,1.0,1.0,,3.0 P81170,79.0,81.0,104.0,92.0,83.0,91.0,81.0,104.0,97.0,86.0,118.0,99.0,119.0,109.0,119.0,106.0,115.0,119.0,105.0,85.0,97.0,100.0,92.0,79.0,92.0,72.0,89.0,94.0,87.0,82.0,79.0,80.0,82.0,81.0,83.0,97.0,105.0,91.0,101.0,87.0,78.0,67.0,83.0,80.0,79.0,76.0,77.0,73.0,61.0,84.0,73.0,72.0,71.0,63.0,56.0,67.0,50.0,45.0,47.0,42.0,46.0,34.0,37.0,29.0,27.0,28.0,35.0,38.0,38.0,31.0,27.0,24.0,27.0,27.0,21.0,24.0,18.0,21.0,18.0,9.0,4.0,7.0,13.0,5.0,6.0,6.0,5.0,4.0,2.0,3.0,2.0,,,1.0,3.0,1.0 P81171,20.0,21.0,34.0,19.0,17.0,25.0,24.0,23.0,22.0,22.0,27.0,24.0,20.0,34.0,24.0,29.0,33.0,30.0,27.0,23.0,32.0,15.0,18.0,20.0,20.0,14.0,17.0,18.0,23.0,32.0,28.0,17.0,22.0,25.0,34.0,30.0,28.0,29.0,28.0,21.0,31.0,28.0,17.0,24.0,27.0,32.0,28.0,16.0,26.0,26.0,23.0,24.0,34.0,29.0,35.0,39.0,37.0,35.0,27.0,48.0,42.0,33.0,35.0,42.0,36.0,30.0,25.0,28.0,28.0,19.0,32.0,23.0,27.0,32.0,28.0,21.0,28.0,29.0,28.0,27.0,25.0,17.0,13.0,13.0,9.0,12.0,3.0,5.0,2.0,2.0,3.0,3.0,7.0,,,3.0 P81172,60.0,69.0,78.0,82.0,81.0,95.0,90.0,72.0,54.0,82.0,88.0,68.0,69.0,71.0,62.0,57.0,67.0,72.0,77.0,76.0,64.0,86.0,45.0,47.0,62.0,58.0,65.0,42.0,68.0,72.0,82.0,91.0,103.0,107.0,108.0,102.0,119.0,107.0,107.0,88.0,86.0,83.0,74.0,75.0,66.0,69.0,74.0,72.0,67.0,60.0,60.0,69.0,80.0,95.0,74.0,86.0,100.0,91.0,79.0,81.0,85.0,82.0,65.0,77.0,67.0,68.0,53.0,59.0,64.0,58.0,42.0,45.0,35.0,31.0,43.0,39.0,50.0,42.0,33.0,24.0,33.0,21.0,29.0,19.0,20.0,9.0,11.0,13.0,10.0,9.0,6.0,8.0,3.0,2.0,2.0,4.0 P81179,29.0,28.0,30.0,27.0,42.0,30.0,34.0,41.0,42.0,34.0,35.0,28.0,33.0,31.0,36.0,34.0,46.0,29.0,32.0,38.0,33.0,15.0,32.0,30.0,38.0,34.0,37.0,32.0,34.0,40.0,30.0,35.0,40.0,49.0,56.0,43.0,39.0,55.0,46.0,40.0,38.0,45.0,45.0,38.0,43.0,35.0,51.0,48.0,30.0,46.0,36.0,51.0,45.0,44.0,50.0,47.0,45.0,55.0,43.0,48.0,43.0,43.0,41.0,40.0,39.0,36.0,40.0,33.0,33.0,33.0,28.0,33.0,23.0,28.0,27.0,25.0,20.0,24.0,23.0,14.0,20.0,21.0,13.0,13.0,8.0,10.0,7.0,9.0,7.0,10.0,2.0,1.0,1.0,1.0,,3.0 P81180,17.0,12.0,14.0,21.0,21.0,13.0,14.0,26.0,23.0,23.0,24.0,21.0,30.0,22.0,27.0,23.0,22.0,25.0,17.0,25.0,17.0,18.0,18.0,18.0,17.0,19.0,18.0,24.0,13.0,24.0,20.0,31.0,24.0,19.0,35.0,26.0,21.0,31.0,22.0,24.0,24.0,19.0,27.0,20.0,40.0,27.0,23.0,25.0,21.0,18.0,29.0,19.0,21.0,16.0,25.0,16.0,16.0,21.0,20.0,23.0,27.0,15.0,30.0,22.0,16.0,14.0,22.0,12.0,17.0,13.0,22.0,15.0,14.0,21.0,15.0,13.0,19.0,23.0,15.0,9.0,13.0,9.0,11.0,4.0,5.0,7.0,6.0,3.0,3.0,2.0,2.0,1.0,3.0,1.0,1.0,2.0 P81181,29.0,24.0,35.0,31.0,23.0,31.0,28.0,25.0,30.0,25.0,26.0,34.0,37.0,35.0,25.0,29.0,29.0,29.0,21.0,13.0,26.0,19.0,26.0,25.0,22.0,21.0,32.0,32.0,37.0,25.0,44.0,42.0,27.0,37.0,27.0,46.0,40.0,36.0,36.0,31.0,39.0,31.0,40.0,31.0,42.0,39.0,43.0,29.0,38.0,29.0,34.0,41.0,30.0,39.0,30.0,33.0,41.0,35.0,34.0,39.0,33.0,34.0,22.0,31.0,38.0,29.0,13.0,29.0,29.0,35.0,23.0,30.0,24.0,22.0,23.0,28.0,30.0,28.0,25.0,11.0,14.0,16.0,11.0,12.0,13.0,9.0,6.0,9.0,7.0,6.0,2.0,3.0,2.0,2.0,3.0,5.0 P81182,33.0,41.0,42.0,55.0,46.0,48.0,52.0,58.0,52.0,70.0,49.0,54.0,61.0,42.0,73.0,57.0,68.0,53.0,53.0,48.0,60.0,72.0,68.0,53.0,49.0,62.0,47.0,33.0,52.0,46.0,50.0,50.0,56.0,37.0,66.0,43.0,62.0,43.0,66.0,53.0,55.0,69.0,43.0,51.0,45.0,49.0,48.0,37.0,49.0,56.0,34.0,38.0,35.0,36.0,40.0,37.0,39.0,26.0,40.0,31.0,25.0,25.0,28.0,20.0,21.0,12.0,24.0,22.0,25.0,25.0,22.0,19.0,20.0,13.0,15.0,20.0,16.0,14.0,14.0,11.0,7.0,11.0,6.0,7.0,8.0,5.0,8.0,5.0,7.0,6.0,5.0,2.0,1.0,1.0,2.0,1.0 P81184,51.0,47.0,55.0,42.0,58.0,63.0,56.0,69.0,81.0,70.0,49.0,78.0,72.0,74.0,80.0,76.0,86.0,86.0,66.0,71.0,64.0,61.0,43.0,49.0,55.0,42.0,60.0,61.0,59.0,46.0,67.0,81.0,63.0,68.0,62.0,53.0,91.0,67.0,88.0,70.0,76.0,85.0,61.0,57.0,61.0,71.0,74.0,48.0,49.0,52.0,54.0,61.0,41.0,50.0,44.0,58.0,53.0,39.0,62.0,47.0,50.0,50.0,51.0,46.0,42.0,36.0,35.0,31.0,33.0,37.0,31.0,23.0,26.0,22.0,27.0,21.0,19.0,17.0,15.0,14.0,14.0,10.0,17.0,11.0,8.0,9.0,10.0,7.0,4.0,4.0,4.0,4.0,1.0,,3.0,4.0 P81185,32.0,39.0,36.0,41.0,55.0,41.0,47.0,68.0,50.0,52.0,60.0,58.0,67.0,61.0,64.0,62.0,85.0,47.0,64.0,62.0,61.0,64.0,67.0,49.0,56.0,60.0,52.0,43.0,61.0,61.0,51.0,47.0,58.0,64.0,59.0,72.0,63.0,62.0,51.0,48.0,74.0,63.0,57.0,71.0,63.0,62.0,78.0,76.0,64.0,71.0,80.0,85.0,77.0,93.0,94.0,87.0,113.0,85.0,99.0,71.0,101.0,115.0,74.0,63.0,59.0,61.0,62.0,53.0,66.0,61.0,45.0,61.0,54.0,50.0,38.0,41.0,56.0,57.0,48.0,46.0,41.0,32.0,31.0,19.0,25.0,17.0,15.0,15.0,11.0,13.0,10.0,2.0,4.0,2.0,2.0,5.0 P81186,19.0,20.0,29.0,20.0,21.0,18.0,25.0,27.0,21.0,24.0,26.0,28.0,29.0,36.0,38.0,37.0,23.0,31.0,21.0,22.0,31.0,26.0,21.0,24.0,17.0,22.0,36.0,38.0,25.0,33.0,19.0,34.0,32.0,36.0,36.0,33.0,33.0,35.0,35.0,27.0,29.0,34.0,29.0,25.0,31.0,34.0,25.0,22.0,25.0,31.0,26.0,35.0,26.0,37.0,40.0,20.0,30.0,35.0,29.0,35.0,36.0,38.0,33.0,30.0,29.0,25.0,28.0,20.0,19.0,31.0,28.0,20.0,23.0,19.0,20.0,26.0,20.0,29.0,20.0,17.0,18.0,16.0,12.0,12.0,9.0,8.0,8.0,6.0,3.0,4.0,3.0,6.0,3.0,1.0,3.0,1.0 P81191,36.0,41.0,39.0,42.0,40.0,33.0,39.0,35.0,38.0,45.0,44.0,45.0,44.0,46.0,47.0,48.0,49.0,52.0,48.0,48.0,43.0,51.0,55.0,44.0,39.0,39.0,52.0,33.0,48.0,45.0,50.0,44.0,57.0,56.0,50.0,58.0,48.0,56.0,70.0,41.0,47.0,62.0,59.0,57.0,49.0,70.0,43.0,51.0,39.0,41.0,48.0,47.0,52.0,55.0,62.0,65.0,67.0,74.0,81.0,72.0,87.0,87.0,77.0,71.0,68.0,89.0,69.0,88.0,76.0,55.0,60.0,60.0,80.0,68.0,65.0,62.0,56.0,67.0,76.0,48.0,49.0,46.0,28.0,29.0,28.0,32.0,20.0,21.0,17.0,22.0,15.0,7.0,8.0,5.0,5.0,9.0 P81196,225.0,234.0,220.0,235.0,234.0,261.0,250.0,225.0,276.0,296.0,288.0,279.0,284.0,289.0,277.0,239.0,261.0,254.0,259.0,244.0,244.0,201.0,221.0,185.0,246.0,270.0,258.0,341.0,322.0,294.0,295.0,301.0,302.0,324.0,324.0,332.0,289.0,317.0,302.0,311.0,305.0,336.0,299.0,304.0,275.0,302.0,256.0,233.0,247.0,248.0,238.0,253.0,246.0,237.0,254.0,212.0,193.0,231.0,201.0,187.0,202.0,167.0,176.0,170.0,170.0,150.0,147.0,136.0,129.0,103.0,105.0,110.0,123.0,108.0,75.0,81.0,90.0,90.0,77.0,57.0,64.0,56.0,49.0,42.0,43.0,42.0,34.0,30.0,14.0,23.0,20.0,12.0,8.0,7.0,7.0,8.0 P81197,30.0,22.0,32.0,31.0,23.0,25.0,30.0,28.0,35.0,35.0,44.0,34.0,27.0,39.0,35.0,28.0,41.0,29.0,27.0,39.0,23.0,28.0,14.0,22.0,34.0,34.0,33.0,34.0,29.0,32.0,34.0,40.0,39.0,42.0,39.0,38.0,25.0,37.0,38.0,32.0,25.0,27.0,24.0,30.0,20.0,28.0,26.0,34.0,26.0,23.0,29.0,37.0,27.0,25.0,29.0,27.0,37.0,40.0,24.0,40.0,27.0,32.0,36.0,43.0,35.0,32.0,22.0,30.0,22.0,27.0,22.0,18.0,22.0,26.0,27.0,19.0,25.0,26.0,19.0,15.0,12.0,12.0,11.0,6.0,7.0,4.0,5.0,5.0,2.0,4.0,1.0,,2.0,2.0,1.0,3.0 P81201,21.0,35.0,36.0,31.0,30.0,28.0,45.0,40.0,39.0,38.0,32.0,56.0,45.0,45.0,39.0,40.0,31.0,44.0,39.0,28.0,31.0,39.0,31.0,39.0,42.0,46.0,34.0,44.0,36.0,56.0,43.0,53.0,46.0,46.0,63.0,56.0,50.0,63.0,46.0,59.0,47.0,54.0,63.0,41.0,44.0,41.0,46.0,39.0,41.0,48.0,46.0,42.0,42.0,31.0,45.0,38.0,33.0,38.0,33.0,39.0,32.0,37.0,35.0,40.0,44.0,41.0,32.0,27.0,40.0,22.0,32.0,28.0,32.0,15.0,25.0,25.0,21.0,23.0,23.0,9.0,14.0,5.0,4.0,7.0,10.0,6.0,3.0,5.0,5.0,2.0,2.0,1.0,,,, P81208,68.0,82.0,97.0,96.0,92.0,98.0,118.0,126.0,116.0,107.0,106.0,114.0,116.0,126.0,127.0,136.0,147.0,109.0,121.0,119.0,134.0,92.0,111.0,105.0,103.0,118.0,123.0,99.0,136.0,121.0,128.0,130.0,131.0,126.0,145.0,152.0,128.0,137.0,148.0,132.0,130.0,116.0,120.0,114.0,132.0,129.0,104.0,91.0,109.0,101.0,107.0,123.0,103.0,143.0,139.0,135.0,128.0,136.0,124.0,126.0,148.0,130.0,121.0,124.0,129.0,100.0,90.0,78.0,60.0,67.0,69.0,83.0,84.0,68.0,63.0,78.0,68.0,59.0,63.0,43.0,39.0,35.0,42.0,44.0,22.0,17.0,23.0,15.0,17.0,11.0,8.0,6.0,4.0,3.0,1.0,2.0 P81212,39.0,32.0,42.0,46.0,31.0,28.0,48.0,30.0,46.0,33.0,44.0,38.0,35.0,38.0,34.0,39.0,42.0,35.0,44.0,39.0,37.0,38.0,41.0,42.0,36.0,42.0,33.0,40.0,34.0,30.0,51.0,41.0,31.0,54.0,40.0,52.0,42.0,56.0,45.0,48.0,42.0,37.0,39.0,37.0,30.0,32.0,39.0,40.0,35.0,35.0,44.0,49.0,38.0,44.0,42.0,38.0,50.0,49.0,56.0,43.0,39.0,55.0,39.0,51.0,23.0,35.0,37.0,31.0,28.0,21.0,17.0,26.0,29.0,25.0,20.0,22.0,25.0,36.0,20.0,22.0,18.0,9.0,13.0,9.0,12.0,5.0,7.0,6.0,8.0,11.0,6.0,1.0,3.0,2.0,,1.0 P81213,39.0,49.0,45.0,45.0,48.0,44.0,52.0,43.0,65.0,62.0,80.0,56.0,65.0,77.0,56.0,72.0,46.0,71.0,135.0,226.0,342.0,426.0,451.0,484.0,468.0,382.0,390.0,344.0,262.0,208.0,183.0,153.0,128.0,105.0,119.0,94.0,81.0,85.0,76.0,72.0,82.0,73.0,70.0,58.0,74.0,53.0,53.0,64.0,58.0,51.0,80.0,59.0,70.0,62.0,60.0,70.0,62.0,59.0,61.0,66.0,86.0,80.0,82.0,61.0,64.0,59.0,60.0,64.0,61.0,58.0,46.0,46.0,49.0,45.0,45.0,44.0,48.0,58.0,47.0,26.0,30.0,33.0,20.0,17.0,16.0,28.0,16.0,15.0,10.0,5.0,6.0,7.0,6.0,3.0,2.0,1.0 P81214,29.0,31.0,28.0,32.0,17.0,34.0,37.0,25.0,41.0,32.0,38.0,40.0,38.0,44.0,47.0,38.0,33.0,33.0,27.0,36.0,31.0,37.0,29.0,35.0,39.0,33.0,23.0,29.0,30.0,26.0,30.0,27.0,31.0,35.0,26.0,32.0,31.0,34.0,24.0,29.0,36.0,38.0,28.0,39.0,39.0,35.0,27.0,39.0,32.0,29.0,37.0,35.0,29.0,29.0,29.0,30.0,28.0,23.0,27.0,24.0,21.0,22.0,32.0,24.0,27.0,14.0,20.0,28.0,17.0,29.0,22.0,17.0,19.0,16.0,14.0,9.0,17.0,15.0,17.0,13.0,12.0,11.0,10.0,6.0,9.0,10.0,5.0,7.0,6.0,4.0,2.0,2.0,3.0,5.0,1.0,6.0 P81218,21.0,34.0,24.0,24.0,31.0,30.0,32.0,45.0,36.0,43.0,40.0,52.0,46.0,47.0,50.0,44.0,55.0,33.0,38.0,38.0,38.0,34.0,36.0,34.0,32.0,29.0,31.0,30.0,31.0,32.0,35.0,38.0,39.0,37.0,35.0,51.0,49.0,38.0,39.0,52.0,35.0,44.0,43.0,30.0,44.0,31.0,34.0,30.0,38.0,39.0,40.0,36.0,35.0,46.0,50.0,39.0,41.0,44.0,47.0,53.0,45.0,45.0,29.0,47.0,31.0,28.0,39.0,32.0,45.0,37.0,33.0,21.0,29.0,35.0,36.0,28.0,17.0,36.0,37.0,13.0,21.0,18.0,18.0,6.0,7.0,9.0,7.0,7.0,3.0,7.0,3.0,5.0,1.0,1.0,1.0,1.0 P81620,4.0,1.0,4.0,5.0,3.0,3.0,6.0,3.0,7.0,6.0,4.0,7.0,10.0,4.0,8.0,6.0,5.0,6.0,10.0,8.0,9.0,7.0,6.0,10.0,8.0,8.0,12.0,7.0,8.0,6.0,8.0,10.0,6.0,7.0,9.0,6.0,11.0,9.0,10.0,7.0,7.0,6.0,13.0,10.0,11.0,9.0,8.0,6.0,6.0,7.0,5.0,12.0,15.0,11.0,11.0,14.0,17.0,14.0,19.0,11.0,13.0,22.0,20.0,13.0,10.0,11.0,16.0,17.0,15.0,11.0,11.0,6.0,7.0,5.0,10.0,11.0,4.0,14.0,9.0,4.0,9.0,5.0,1.0,2.0,9.0,4.0,5.0,1.0,2.0,2.0,1.0,1.0,,,1.0,4.0 P81622,58.0,73.0,66.0,67.0,69.0,69.0,64.0,85.0,110.0,84.0,108.0,96.0,104.0,98.0,111.0,102.0,125.0,89.0,103.0,105.0,96.0,101.0,105.0,95.0,94.0,94.0,98.0,98.0,75.0,94.0,93.0,89.0,95.0,81.0,71.0,68.0,72.0,71.0,87.0,96.0,94.0,98.0,109.0,107.0,98.0,112.0,100.0,105.0,96.0,78.0,84.0,76.0,91.0,86.0,69.0,72.0,66.0,48.0,51.0,40.0,41.0,50.0,38.0,42.0,36.0,46.0,42.0,35.0,38.0,27.0,30.0,28.0,41.0,30.0,19.0,20.0,26.0,25.0,13.0,11.0,3.0,10.0,8.0,7.0,9.0,6.0,5.0,4.0,4.0,5.0,4.0,1.0,,3.0,,5.0 P81633,15.0,17.0,15.0,19.0,17.0,15.0,17.0,19.0,17.0,17.0,17.0,22.0,18.0,23.0,20.0,22.0,22.0,22.0,21.0,19.0,18.0,16.0,19.0,22.0,15.0,22.0,20.0,17.0,23.0,32.0,28.0,25.0,27.0,18.0,18.0,22.0,27.0,29.0,22.0,31.0,40.0,37.0,34.0,23.0,25.0,23.0,24.0,18.0,25.0,18.0,32.0,22.0,28.0,32.0,26.0,28.0,29.0,33.0,36.0,33.0,39.0,37.0,31.0,28.0,36.0,21.0,21.0,24.0,32.0,25.0,27.0,20.0,19.0,21.0,14.0,21.0,8.0,19.0,15.0,13.0,9.0,15.0,3.0,9.0,9.0,9.0,3.0,6.0,7.0,4.0,,2.0,,4.0,,3.0 P81646,11.0,14.0,18.0,13.0,12.0,14.0,13.0,21.0,15.0,15.0,15.0,19.0,15.0,25.0,23.0,27.0,34.0,33.0,27.0,21.0,20.0,30.0,24.0,26.0,28.0,27.0,27.0,19.0,25.0,26.0,24.0,19.0,25.0,25.0,18.0,17.0,20.0,22.0,25.0,18.0,16.0,22.0,19.0,18.0,18.0,21.0,18.0,25.0,21.0,26.0,35.0,29.0,30.0,34.0,42.0,36.0,32.0,43.0,40.0,35.0,37.0,37.0,28.0,34.0,28.0,26.0,23.0,34.0,28.0,27.0,21.0,30.0,25.0,19.0,25.0,29.0,32.0,31.0,37.0,21.0,18.0,17.0,11.0,10.0,10.0,10.0,8.0,8.0,8.0,5.0,2.0,8.0,1.0,3.0,1.0,1.0 P81647,28.0,30.0,24.0,27.0,31.0,22.0,26.0,24.0,22.0,34.0,31.0,34.0,29.0,16.0,29.0,30.0,39.0,23.0,32.0,32.0,35.0,40.0,33.0,41.0,36.0,45.0,55.0,47.0,46.0,49.0,44.0,45.0,48.0,29.0,37.0,39.0,48.0,33.0,32.0,46.0,26.0,26.0,43.0,37.0,33.0,33.0,35.0,24.0,36.0,26.0,42.0,32.0,37.0,29.0,43.0,33.0,26.0,27.0,24.0,15.0,19.0,16.0,21.0,23.0,23.0,8.0,13.0,12.0,16.0,9.0,18.0,11.0,16.0,6.0,9.0,7.0,6.0,3.0,3.0,3.0,4.0,8.0,2.0,,6.0,3.0,2.0,1.0,2.0,1.0,5.0,1.0,1.0,,1.0, P81655,39.0,42.0,64.0,54.0,50.0,51.0,51.0,47.0,64.0,46.0,57.0,64.0,72.0,67.0,54.0,55.0,61.0,50.0,53.0,56.0,44.0,52.0,51.0,54.0,42.0,55.0,35.0,48.0,50.0,45.0,48.0,55.0,37.0,72.0,43.0,46.0,59.0,59.0,54.0,74.0,43.0,60.0,73.0,58.0,66.0,66.0,51.0,62.0,73.0,64.0,68.0,68.0,74.0,77.0,88.0,98.0,71.0,71.0,81.0,82.0,88.0,75.0,79.0,77.0,76.0,70.0,57.0,65.0,60.0,45.0,61.0,46.0,57.0,49.0,51.0,67.0,64.0,59.0,87.0,49.0,66.0,42.0,31.0,28.0,24.0,26.0,27.0,17.0,12.0,12.0,9.0,5.0,5.0,5.0,5.0,6.0 P81664,100.0,100.0,99.0,126.0,115.0,117.0,103.0,141.0,151.0,141.0,125.0,121.0,125.0,133.0,136.0,152.0,138.0,104.0,118.0,99.0,113.0,119.0,95.0,106.0,102.0,113.0,115.0,134.0,126.0,126.0,137.0,134.0,130.0,151.0,144.0,164.0,160.0,160.0,170.0,133.0,149.0,151.0,130.0,128.0,141.0,132.0,113.0,104.0,107.0,122.0,125.0,117.0,129.0,127.0,110.0,125.0,106.0,108.0,114.0,116.0,118.0,117.0,119.0,111.0,117.0,101.0,97.0,83.0,67.0,92.0,71.0,48.0,72.0,61.0,56.0,54.0,50.0,50.0,57.0,31.0,34.0,34.0,25.0,30.0,26.0,19.0,18.0,19.0,15.0,14.0,9.0,5.0,4.0,2.0,4.0,14.0 P81668,18.0,18.0,18.0,27.0,33.0,33.0,35.0,44.0,38.0,48.0,34.0,39.0,34.0,40.0,52.0,52.0,46.0,38.0,26.0,39.0,35.0,33.0,26.0,31.0,43.0,25.0,29.0,33.0,45.0,26.0,44.0,36.0,33.0,50.0,53.0,52.0,53.0,65.0,60.0,47.0,59.0,40.0,46.0,54.0,37.0,39.0,35.0,48.0,34.0,45.0,39.0,55.0,42.0,73.0,41.0,50.0,63.0,60.0,46.0,56.0,61.0,57.0,40.0,61.0,46.0,47.0,45.0,32.0,44.0,53.0,29.0,44.0,33.0,26.0,33.0,28.0,37.0,32.0,24.0,17.0,17.0,21.0,13.0,17.0,13.0,11.0,5.0,7.0,3.0,7.0,4.0,5.0,4.0,4.0,1.0,1.0 P81674,30.0,21.0,21.0,21.0,24.0,28.0,25.0,32.0,26.0,31.0,37.0,30.0,32.0,35.0,28.0,29.0,40.0,34.0,30.0,28.0,24.0,30.0,27.0,22.0,29.0,30.0,30.0,28.0,29.0,26.0,40.0,25.0,28.0,32.0,38.0,36.0,37.0,33.0,34.0,25.0,40.0,36.0,34.0,35.0,30.0,29.0,29.0,26.0,30.0,33.0,32.0,24.0,38.0,43.0,37.0,37.0,31.0,46.0,35.0,53.0,44.0,43.0,43.0,45.0,45.0,31.0,39.0,34.0,33.0,27.0,28.0,31.0,32.0,39.0,31.0,26.0,34.0,30.0,33.0,25.0,27.0,29.0,23.0,17.0,17.0,9.0,6.0,6.0,6.0,9.0,7.0,3.0,4.0,3.0,1.0,3.0 P81681,58.0,58.0,42.0,82.0,58.0,66.0,76.0,101.0,90.0,91.0,84.0,83.0,72.0,75.0,80.0,77.0,80.0,58.0,77.0,63.0,71.0,66.0,65.0,72.0,67.0,65.0,71.0,64.0,89.0,70.0,84.0,96.0,90.0,82.0,96.0,110.0,92.0,120.0,91.0,94.0,94.0,115.0,82.0,72.0,75.0,88.0,87.0,72.0,71.0,99.0,81.0,81.0,80.0,92.0,85.0,98.0,90.0,106.0,116.0,117.0,105.0,97.0,123.0,101.0,110.0,95.0,90.0,95.0,68.0,97.0,76.0,85.0,69.0,60.0,72.0,61.0,69.0,61.0,70.0,53.0,47.0,62.0,35.0,35.0,23.0,32.0,26.0,23.0,22.0,9.0,16.0,7.0,5.0,5.0,4.0,8.0 P81683,38.0,45.0,38.0,52.0,60.0,42.0,45.0,51.0,57.0,71.0,78.0,53.0,89.0,97.0,80.0,87.0,81.0,71.0,68.0,62.0,62.0,62.0,84.0,61.0,70.0,60.0,69.0,83.0,60.0,82.0,65.0,57.0,47.0,60.0,41.0,55.0,62.0,58.0,49.0,62.0,81.0,66.0,66.0,84.0,74.0,66.0,69.0,73.0,57.0,57.0,49.0,39.0,50.0,49.0,45.0,53.0,46.0,44.0,35.0,28.0,25.0,14.0,23.0,24.0,23.0,21.0,26.0,25.0,14.0,23.0,23.0,25.0,38.0,16.0,16.0,10.0,10.0,4.0,11.0,6.0,9.0,3.0,6.0,6.0,4.0,11.0,3.0,1.0,1.0,1.0,3.0,1.0,1.0,,2.0,2.0 P81685,27.0,42.0,35.0,33.0,30.0,24.0,24.0,29.0,38.0,15.0,25.0,16.0,26.0,23.0,29.0,14.0,20.0,35.0,27.0,18.0,33.0,27.0,30.0,38.0,48.0,62.0,60.0,64.0,80.0,58.0,49.0,61.0,73.0,52.0,54.0,53.0,39.0,49.0,41.0,31.0,46.0,25.0,42.0,30.0,32.0,23.0,27.0,26.0,27.0,24.0,23.0,30.0,36.0,18.0,18.0,26.0,20.0,24.0,21.0,31.0,18.0,24.0,21.0,17.0,17.0,26.0,20.0,17.0,18.0,7.0,9.0,14.0,14.0,10.0,11.0,9.0,7.0,7.0,8.0,2.0,4.0,5.0,10.0,8.0,3.0,3.0,4.0,,,,1.0,1.0,,1.0,,1.0 P81686,16.0,14.0,17.0,14.0,12.0,15.0,16.0,26.0,21.0,22.0,17.0,17.0,20.0,18.0,14.0,23.0,20.0,21.0,11.0,17.0,12.0,11.0,16.0,21.0,11.0,25.0,13.0,14.0,15.0,13.0,22.0,21.0,22.0,26.0,18.0,13.0,27.0,15.0,27.0,24.0,28.0,19.0,14.0,29.0,22.0,26.0,19.0,9.0,10.0,24.0,18.0,16.0,21.0,16.0,18.0,21.0,19.0,20.0,16.0,25.0,20.0,17.0,18.0,16.0,12.0,16.0,13.0,6.0,9.0,17.0,7.0,10.0,7.0,7.0,7.0,8.0,10.0,12.0,8.0,9.0,4.0,9.0,10.0,6.0,9.0,1.0,2.0,3.0,3.0,2.0,,1.0,,2.0,,1.0 P81687,8.0,7.0,8.0,5.0,10.0,8.0,8.0,9.0,10.0,13.0,10.0,11.0,11.0,8.0,7.0,12.0,7.0,11.0,4.0,6.0,6.0,9.0,10.0,6.0,7.0,7.0,11.0,9.0,6.0,5.0,11.0,8.0,9.0,7.0,11.0,11.0,8.0,14.0,11.0,5.0,12.0,14.0,12.0,7.0,10.0,9.0,17.0,7.0,12.0,14.0,8.0,11.0,8.0,16.0,18.0,18.0,7.0,15.0,15.0,19.0,9.0,21.0,15.0,9.0,18.0,16.0,13.0,14.0,19.0,16.0,11.0,8.0,15.0,22.0,13.0,15.0,10.0,18.0,16.0,12.0,10.0,8.0,8.0,9.0,6.0,10.0,4.0,7.0,3.0,1.0,4.0,3.0,2.0,,1.0,1.0 P81692,8.0,6.0,8.0,10.0,10.0,8.0,9.0,12.0,8.0,15.0,8.0,9.0,8.0,10.0,7.0,9.0,12.0,9.0,8.0,8.0,5.0,10.0,11.0,7.0,5.0,8.0,10.0,11.0,13.0,14.0,7.0,12.0,14.0,16.0,13.0,11.0,11.0,18.0,13.0,14.0,17.0,11.0,8.0,9.0,15.0,12.0,13.0,7.0,10.0,12.0,12.0,11.0,14.0,14.0,15.0,10.0,17.0,19.0,21.0,17.0,23.0,26.0,21.0,18.0,20.0,10.0,12.0,16.0,15.0,14.0,16.0,13.0,7.0,17.0,13.0,15.0,15.0,12.0,16.0,9.0,12.0,7.0,8.0,4.0,8.0,4.0,13.0,9.0,4.0,3.0,1.0,3.0,2.0,2.0,,1.0 P81694,31.0,28.0,34.0,41.0,36.0,52.0,46.0,39.0,49.0,49.0,46.0,50.0,38.0,41.0,42.0,43.0,31.0,24.0,36.0,35.0,34.0,37.0,38.0,40.0,43.0,50.0,59.0,56.0,54.0,68.0,62.0,61.0,69.0,76.0,74.0,64.0,62.0,64.0,54.0,54.0,60.0,46.0,43.0,51.0,60.0,37.0,43.0,37.0,39.0,40.0,38.0,34.0,32.0,32.0,27.0,28.0,28.0,25.0,17.0,27.0,25.0,19.0,23.0,22.0,17.0,17.0,17.0,19.0,13.0,10.0,13.0,11.0,8.0,7.0,11.0,8.0,6.0,6.0,5.0,5.0,6.0,2.0,2.0,6.0,3.0,8.0,3.0,1.0,3.0,2.0,2.0,1.0,1.0,1.0,, P81695,13.0,32.0,27.0,32.0,31.0,28.0,28.0,32.0,39.0,37.0,40.0,50.0,43.0,38.0,38.0,42.0,38.0,52.0,46.0,40.0,26.0,37.0,30.0,40.0,39.0,24.0,27.0,31.0,27.0,21.0,28.0,30.0,24.0,31.0,30.0,30.0,32.0,23.0,32.0,30.0,30.0,32.0,42.0,36.0,44.0,36.0,39.0,31.0,48.0,55.0,36.0,54.0,41.0,44.0,44.0,56.0,54.0,53.0,51.0,47.0,59.0,44.0,54.0,35.0,35.0,45.0,30.0,46.0,48.0,30.0,42.0,38.0,36.0,24.0,30.0,23.0,23.0,31.0,28.0,29.0,29.0,21.0,15.0,17.0,18.0,13.0,11.0,14.0,9.0,9.0,6.0,9.0,2.0,8.0,4.0,5.0 P81699,5.0,5.0,9.0,9.0,14.0,9.0,15.0,15.0,13.0,7.0,8.0,13.0,15.0,8.0,17.0,9.0,19.0,10.0,15.0,11.0,16.0,15.0,8.0,8.0,8.0,15.0,16.0,15.0,16.0,16.0,18.0,16.0,16.0,18.0,20.0,10.0,18.0,11.0,16.0,14.0,14.0,14.0,9.0,14.0,17.0,17.0,15.0,13.0,8.0,16.0,10.0,13.0,15.0,14.0,12.0,19.0,22.0,26.0,19.0,17.0,21.0,16.0,21.0,21.0,19.0,15.0,16.0,6.0,8.0,10.0,17.0,8.0,8.0,7.0,11.0,13.0,13.0,14.0,10.0,6.0,6.0,6.0,3.0,5.0,5.0,,,5.0,3.0,1.0,1.0,2.0,2.0,,1.0,1.0 P81701,10.0,13.0,17.0,14.0,20.0,10.0,18.0,9.0,20.0,12.0,17.0,14.0,23.0,25.0,18.0,12.0,16.0,21.0,23.0,19.0,10.0,11.0,16.0,6.0,23.0,15.0,20.0,14.0,18.0,11.0,10.0,22.0,17.0,35.0,19.0,25.0,17.0,16.0,17.0,20.0,32.0,21.0,21.0,20.0,18.0,29.0,13.0,23.0,17.0,17.0,16.0,15.0,22.0,23.0,17.0,16.0,18.0,29.0,21.0,18.0,28.0,28.0,17.0,28.0,20.0,23.0,25.0,23.0,27.0,17.0,14.0,10.0,9.0,13.0,17.0,12.0,21.0,12.0,10.0,6.0,9.0,11.0,6.0,4.0,3.0,7.0,7.0,5.0,7.0,5.0,5.0,,1.0,2.0,1.0,2.0 P81704,54.0,71.0,63.0,67.0,80.0,58.0,73.0,75.0,74.0,76.0,92.0,81.0,90.0,77.0,85.0,96.0,82.0,75.0,68.0,92.0,80.0,75.0,73.0,61.0,75.0,65.0,80.0,82.0,74.0,89.0,73.0,83.0,69.0,75.0,89.0,77.0,90.0,88.0,70.0,95.0,86.0,86.0,61.0,83.0,103.0,67.0,79.0,78.0,60.0,78.0,64.0,81.0,62.0,84.0,80.0,62.0,68.0,78.0,49.0,62.0,68.0,62.0,66.0,59.0,58.0,54.0,56.0,51.0,54.0,45.0,39.0,30.0,40.0,32.0,31.0,29.0,42.0,36.0,32.0,20.0,15.0,10.0,19.0,18.0,4.0,18.0,8.0,11.0,4.0,9.0,10.0,2.0,6.0,,4.0,3.0 P81707,36.0,39.0,32.0,38.0,34.0,37.0,42.0,32.0,44.0,37.0,43.0,39.0,41.0,47.0,47.0,43.0,51.0,56.0,51.0,44.0,39.0,46.0,37.0,49.0,55.0,49.0,46.0,34.0,58.0,41.0,49.0,48.0,47.0,33.0,47.0,33.0,47.0,30.0,45.0,44.0,40.0,52.0,34.0,48.0,45.0,45.0,39.0,36.0,30.0,30.0,21.0,29.0,41.0,24.0,32.0,39.0,27.0,31.0,29.0,33.0,15.0,18.0,23.0,25.0,24.0,18.0,14.0,20.0,19.0,8.0,15.0,12.0,12.0,9.0,6.0,14.0,9.0,12.0,9.0,2.0,3.0,2.0,3.0,5.0,6.0,4.0,1.0,1.0,1.0,2.0,2.0,3.0,1.0,,1.0, P81709,40.0,49.0,50.0,50.0,35.0,44.0,47.0,46.0,45.0,56.0,53.0,48.0,50.0,46.0,44.0,45.0,44.0,41.0,49.0,33.0,42.0,37.0,32.0,33.0,30.0,35.0,40.0,39.0,37.0,37.0,41.0,58.0,59.0,48.0,70.0,51.0,49.0,63.0,50.0,50.0,33.0,66.0,53.0,43.0,45.0,42.0,32.0,39.0,32.0,35.0,27.0,33.0,35.0,29.0,38.0,39.0,27.0,25.0,25.0,27.0,32.0,24.0,26.0,21.0,18.0,24.0,19.0,17.0,15.0,14.0,17.0,11.0,19.0,13.0,11.0,7.0,10.0,10.0,10.0,3.0,6.0,9.0,5.0,7.0,1.0,2.0,3.0,1.0,2.0,6.0,1.0,1.0,1.0,1.0,, P81710,33.0,34.0,46.0,43.0,43.0,40.0,49.0,47.0,52.0,42.0,46.0,52.0,56.0,55.0,61.0,57.0,52.0,62.0,61.0,50.0,50.0,50.0,42.0,48.0,48.0,50.0,46.0,37.0,46.0,52.0,65.0,49.0,41.0,59.0,60.0,50.0,65.0,68.0,60.0,54.0,55.0,42.0,55.0,58.0,51.0,40.0,44.0,53.0,48.0,58.0,48.0,66.0,59.0,71.0,71.0,73.0,78.0,88.0,91.0,101.0,84.0,86.0,76.0,75.0,81.0,80.0,64.0,74.0,67.0,62.0,47.0,75.0,67.0,63.0,62.0,73.0,74.0,56.0,65.0,47.0,51.0,46.0,50.0,36.0,26.0,25.0,20.0,30.0,15.0,12.0,9.0,8.0,6.0,3.0,7.0,2.0 P81711,16.0,13.0,14.0,9.0,19.0,16.0,13.0,22.0,15.0,17.0,10.0,15.0,13.0,19.0,19.0,17.0,13.0,19.0,17.0,14.0,23.0,13.0,12.0,23.0,18.0,33.0,20.0,29.0,25.0,28.0,23.0,22.0,17.0,27.0,23.0,25.0,19.0,19.0,28.0,28.0,25.0,25.0,28.0,10.0,17.0,16.0,13.0,16.0,17.0,18.0,19.0,12.0,12.0,17.0,26.0,28.0,27.0,29.0,21.0,21.0,20.0,23.0,17.0,29.0,15.0,15.0,12.0,7.0,11.0,12.0,10.0,12.0,3.0,11.0,9.0,7.0,18.0,18.0,9.0,5.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,2.0,4.0,1.0,,,,,,2.0 P81714,24.0,28.0,25.0,22.0,32.0,34.0,37.0,36.0,31.0,36.0,46.0,31.0,46.0,34.0,35.0,34.0,34.0,26.0,41.0,28.0,41.0,30.0,26.0,19.0,33.0,30.0,41.0,45.0,36.0,40.0,32.0,38.0,42.0,45.0,40.0,42.0,38.0,50.0,41.0,41.0,44.0,43.0,41.0,41.0,37.0,46.0,22.0,43.0,29.0,34.0,26.0,41.0,41.0,38.0,42.0,46.0,58.0,50.0,57.0,47.0,51.0,46.0,53.0,50.0,31.0,38.0,47.0,31.0,34.0,29.0,33.0,19.0,16.0,24.0,32.0,19.0,24.0,24.0,21.0,25.0,25.0,20.0,14.0,13.0,9.0,10.0,7.0,8.0,12.0,5.0,3.0,3.0,4.0,1.0,2.0,2.0 P81721,8.0,11.0,17.0,12.0,13.0,11.0,10.0,11.0,12.0,20.0,15.0,7.0,13.0,11.0,18.0,18.0,17.0,18.0,12.0,18.0,14.0,17.0,20.0,23.0,20.0,22.0,24.0,20.0,22.0,18.0,23.0,27.0,31.0,21.0,23.0,18.0,21.0,22.0,20.0,22.0,24.0,28.0,18.0,18.0,14.0,22.0,23.0,19.0,23.0,19.0,14.0,14.0,19.0,18.0,16.0,15.0,16.0,19.0,18.0,26.0,20.0,24.0,14.0,13.0,22.0,8.0,12.0,13.0,9.0,7.0,11.0,10.0,6.0,10.0,6.0,8.0,6.0,10.0,5.0,3.0,3.0,2.0,4.0,2.0,3.0,3.0,4.0,1.0,1.0,4.0,,,1.0,,, P81724,17.0,21.0,15.0,14.0,14.0,26.0,24.0,19.0,21.0,28.0,20.0,25.0,27.0,27.0,23.0,24.0,33.0,27.0,20.0,27.0,19.0,22.0,22.0,21.0,21.0,20.0,14.0,22.0,16.0,17.0,19.0,21.0,19.0,22.0,18.0,22.0,22.0,20.0,20.0,30.0,21.0,20.0,20.0,24.0,19.0,31.0,23.0,27.0,23.0,20.0,13.0,18.0,21.0,12.0,20.0,18.0,20.0,15.0,14.0,13.0,6.0,4.0,11.0,10.0,11.0,7.0,8.0,5.0,12.0,8.0,8.0,7.0,10.0,6.0,4.0,3.0,8.0,4.0,7.0,6.0,3.0,4.0,1.0,1.0,,,1.0,,2.0,,,,,1.0,, P81726,4.0,9.0,15.0,13.0,7.0,13.0,11.0,13.0,14.0,11.0,11.0,11.0,14.0,6.0,12.0,13.0,9.0,10.0,11.0,14.0,11.0,8.0,11.0,10.0,11.0,12.0,10.0,8.0,9.0,11.0,11.0,15.0,9.0,18.0,13.0,14.0,15.0,23.0,5.0,12.0,12.0,16.0,8.0,10.0,10.0,12.0,13.0,11.0,8.0,12.0,9.0,5.0,8.0,15.0,14.0,20.0,8.0,5.0,13.0,12.0,11.0,17.0,12.0,8.0,7.0,5.0,3.0,11.0,9.0,13.0,3.0,8.0,9.0,4.0,9.0,6.0,6.0,5.0,5.0,5.0,9.0,3.0,2.0,4.0,3.0,2.0,,1.0,2.0,1.0,1.0,,,,, P81730,44.0,65.0,50.0,52.0,49.0,52.0,51.0,46.0,56.0,49.0,54.0,61.0,59.0,54.0,45.0,63.0,50.0,50.0,57.0,46.0,46.0,41.0,38.0,52.0,57.0,34.0,68.0,53.0,56.0,70.0,66.0,56.0,64.0,61.0,63.0,60.0,60.0,59.0,63.0,64.0,53.0,48.0,50.0,58.0,55.0,52.0,59.0,54.0,49.0,67.0,65.0,51.0,59.0,69.0,61.0,67.0,60.0,55.0,58.0,69.0,53.0,53.0,70.0,44.0,52.0,53.0,42.0,56.0,49.0,47.0,37.0,34.0,39.0,39.0,31.0,39.0,42.0,38.0,45.0,37.0,40.0,33.0,25.0,18.0,13.0,15.0,11.0,21.0,14.0,7.0,10.0,3.0,3.0,5.0,2.0,7.0 P81731,13.0,24.0,17.0,18.0,13.0,20.0,17.0,16.0,19.0,23.0,19.0,18.0,21.0,20.0,27.0,30.0,31.0,27.0,25.0,17.0,24.0,13.0,15.0,20.0,21.0,18.0,19.0,22.0,27.0,16.0,12.0,17.0,12.0,24.0,26.0,18.0,20.0,17.0,18.0,23.0,22.0,17.0,25.0,23.0,35.0,25.0,22.0,33.0,14.0,18.0,14.0,20.0,16.0,23.0,26.0,14.0,18.0,16.0,23.0,9.0,17.0,8.0,15.0,11.0,13.0,6.0,11.0,10.0,7.0,10.0,10.0,9.0,12.0,6.0,15.0,9.0,12.0,13.0,8.0,5.0,4.0,8.0,3.0,4.0,1.0,2.0,5.0,1.0,2.0,1.0,2.0,2.0,,1.0,,3.0 P81732,16.0,17.0,20.0,18.0,23.0,31.0,25.0,25.0,25.0,19.0,26.0,12.0,26.0,28.0,47.0,20.0,33.0,19.0,25.0,20.0,12.0,16.0,14.0,24.0,24.0,13.0,23.0,12.0,18.0,19.0,21.0,27.0,27.0,25.0,23.0,37.0,29.0,29.0,35.0,32.0,27.0,22.0,25.0,25.0,33.0,27.0,20.0,21.0,34.0,38.0,29.0,27.0,34.0,30.0,34.0,35.0,40.0,54.0,31.0,47.0,36.0,36.0,35.0,42.0,32.0,36.0,33.0,29.0,34.0,26.0,27.0,28.0,23.0,25.0,22.0,35.0,15.0,22.0,18.0,12.0,20.0,13.0,10.0,9.0,18.0,9.0,4.0,4.0,8.0,3.0,4.0,2.0,3.0,,2.0,3.0 P81734,103.0,110.0,124.0,148.0,115.0,129.0,147.0,135.0,168.0,138.0,158.0,155.0,181.0,182.0,172.0,182.0,140.0,153.0,163.0,131.0,147.0,137.0,134.0,114.0,129.0,128.0,140.0,133.0,135.0,163.0,124.0,120.0,136.0,146.0,164.0,141.0,160.0,142.0,151.0,142.0,145.0,150.0,135.0,130.0,141.0,130.0,128.0,126.0,112.0,119.0,140.0,114.0,115.0,136.0,123.0,127.0,135.0,119.0,123.0,109.0,115.0,105.0,100.0,93.0,70.0,76.0,78.0,83.0,69.0,64.0,64.0,56.0,48.0,51.0,46.0,63.0,50.0,50.0,51.0,29.0,28.0,22.0,29.0,20.0,16.0,9.0,12.0,9.0,7.0,8.0,8.0,3.0,3.0,3.0,1.0,3.0 P81735,15.0,14.0,25.0,20.0,25.0,21.0,23.0,29.0,28.0,40.0,23.0,29.0,25.0,34.0,37.0,24.0,25.0,30.0,34.0,23.0,22.0,22.0,19.0,22.0,15.0,25.0,24.0,22.0,34.0,23.0,35.0,37.0,27.0,30.0,37.0,35.0,32.0,34.0,34.0,25.0,24.0,34.0,28.0,32.0,23.0,22.0,32.0,22.0,25.0,25.0,21.0,20.0,17.0,22.0,23.0,23.0,36.0,24.0,17.0,28.0,16.0,14.0,12.0,12.0,21.0,7.0,9.0,11.0,10.0,9.0,7.0,9.0,5.0,8.0,6.0,7.0,7.0,4.0,7.0,7.0,2.0,1.0,2.0,3.0,,1.0,3.0,,,1.0,,1.0,,,, P81736,24.0,27.0,34.0,25.0,32.0,26.0,33.0,35.0,32.0,50.0,37.0,48.0,41.0,30.0,33.0,43.0,42.0,39.0,31.0,34.0,25.0,28.0,39.0,41.0,31.0,31.0,24.0,22.0,33.0,21.0,18.0,29.0,24.0,30.0,31.0,26.0,29.0,33.0,24.0,32.0,32.0,31.0,33.0,29.0,32.0,42.0,28.0,27.0,37.0,24.0,29.0,26.0,15.0,23.0,28.0,27.0,19.0,24.0,12.0,20.0,19.0,11.0,17.0,14.0,9.0,10.0,16.0,18.0,16.0,10.0,13.0,14.0,9.0,12.0,10.0,12.0,3.0,14.0,6.0,5.0,5.0,6.0,6.0,5.0,4.0,6.0,2.0,3.0,3.0,3.0,1.0,1.0,,,1.0,2.0 P81740,39.0,41.0,44.0,48.0,51.0,48.0,52.0,58.0,63.0,65.0,60.0,62.0,71.0,69.0,65.0,78.0,69.0,62.0,62.0,51.0,55.0,57.0,54.0,60.0,65.0,67.0,73.0,67.0,74.0,74.0,58.0,71.0,64.0,86.0,87.0,91.0,79.0,87.0,83.0,67.0,78.0,85.0,77.0,69.0,69.0,81.0,75.0,75.0,77.0,67.0,77.0,65.0,75.0,98.0,92.0,83.0,97.0,93.0,94.0,95.0,102.0,93.0,91.0,103.0,86.0,80.0,73.0,61.0,49.0,58.0,60.0,48.0,60.0,60.0,53.0,42.0,48.0,43.0,42.0,44.0,29.0,25.0,38.0,21.0,15.0,23.0,15.0,13.0,11.0,11.0,8.0,,3.0,1.0,,5.0 P81741,15.0,12.0,13.0,11.0,13.0,17.0,16.0,20.0,17.0,18.0,19.0,18.0,27.0,18.0,14.0,16.0,13.0,14.0,22.0,15.0,15.0,13.0,16.0,22.0,17.0,5.0,18.0,14.0,21.0,13.0,24.0,18.0,15.0,22.0,25.0,16.0,17.0,23.0,27.0,22.0,18.0,13.0,20.0,14.0,13.0,14.0,20.0,14.0,14.0,16.0,17.0,23.0,13.0,17.0,17.0,17.0,31.0,12.0,19.0,24.0,13.0,18.0,22.0,14.0,17.0,9.0,11.0,11.0,19.0,8.0,11.0,11.0,8.0,8.0,6.0,4.0,4.0,1.0,9.0,3.0,3.0,3.0,4.0,4.0,1.0,4.0,3.0,1.0,,4.0,1.0,1.0,1.0,,, P81742,14.0,6.0,9.0,9.0,10.0,7.0,8.0,5.0,7.0,10.0,10.0,14.0,8.0,8.0,10.0,20.0,6.0,8.0,13.0,6.0,9.0,12.0,10.0,9.0,14.0,22.0,18.0,14.0,17.0,16.0,20.0,11.0,21.0,19.0,21.0,15.0,11.0,12.0,16.0,17.0,12.0,16.0,15.0,6.0,10.0,17.0,8.0,14.0,9.0,17.0,10.0,19.0,17.0,27.0,12.0,21.0,12.0,23.0,32.0,22.0,30.0,32.0,27.0,23.0,19.0,21.0,17.0,21.0,27.0,14.0,16.0,22.0,18.0,20.0,9.0,11.0,17.0,23.0,14.0,18.0,9.0,26.0,10.0,10.0,9.0,11.0,5.0,4.0,3.0,2.0,2.0,1.0,3.0,,2.0,1.0 P81748,40.0,37.0,42.0,48.0,42.0,44.0,37.0,44.0,64.0,30.0,49.0,49.0,35.0,38.0,46.0,39.0,33.0,40.0,25.0,35.0,30.0,41.0,35.0,46.0,42.0,48.0,55.0,60.0,70.0,52.0,62.0,72.0,68.0,71.0,66.0,68.0,64.0,67.0,74.0,60.0,59.0,53.0,56.0,35.0,44.0,46.0,39.0,43.0,33.0,39.0,35.0,36.0,46.0,36.0,46.0,44.0,48.0,38.0,38.0,54.0,48.0,53.0,42.0,64.0,47.0,37.0,35.0,30.0,41.0,33.0,26.0,29.0,27.0,31.0,19.0,28.0,36.0,11.0,33.0,18.0,12.0,18.0,20.0,8.0,10.0,7.0,6.0,17.0,3.0,5.0,6.0,3.0,1.0,3.0,,4.0 P81755,37.0,53.0,49.0,54.0,51.0,45.0,49.0,62.0,53.0,64.0,46.0,45.0,50.0,60.0,45.0,52.0,64.0,47.0,53.0,58.0,56.0,65.0,45.0,46.0,60.0,47.0,47.0,48.0,66.0,73.0,53.0,62.0,85.0,72.0,72.0,50.0,64.0,62.0,59.0,66.0,59.0,55.0,50.0,51.0,52.0,48.0,49.0,37.0,50.0,47.0,41.0,52.0,51.0,53.0,62.0,72.0,72.0,51.0,62.0,59.0,86.0,66.0,61.0,61.0,60.0,56.0,33.0,48.0,46.0,53.0,37.0,38.0,38.0,38.0,44.0,28.0,47.0,41.0,34.0,31.0,28.0,27.0,21.0,23.0,18.0,18.0,13.0,22.0,10.0,11.0,10.0,1.0,,3.0,2.0,2.0 P81757,11.0,12.0,11.0,14.0,9.0,13.0,17.0,18.0,15.0,16.0,17.0,12.0,24.0,16.0,17.0,21.0,16.0,18.0,19.0,30.0,17.0,23.0,16.0,18.0,16.0,24.0,13.0,13.0,18.0,23.0,19.0,28.0,26.0,24.0,18.0,22.0,23.0,13.0,24.0,23.0,12.0,22.0,19.0,27.0,23.0,26.0,18.0,14.0,19.0,23.0,22.0,18.0,29.0,32.0,30.0,34.0,34.0,36.0,34.0,44.0,40.0,45.0,34.0,38.0,34.0,27.0,32.0,30.0,22.0,14.0,15.0,18.0,28.0,20.0,14.0,17.0,22.0,25.0,17.0,7.0,20.0,18.0,10.0,4.0,6.0,10.0,9.0,4.0,3.0,5.0,3.0,1.0,2.0,,,4.0 P81770,44.0,45.0,35.0,51.0,45.0,39.0,59.0,53.0,52.0,50.0,59.0,56.0,47.0,46.0,52.0,58.0,53.0,38.0,47.0,52.0,56.0,60.0,65.0,49.0,78.0,80.0,84.0,102.0,95.0,89.0,88.0,98.0,111.0,95.0,93.0,96.0,108.0,78.0,78.0,96.0,64.0,71.0,65.0,55.0,60.0,58.0,53.0,59.0,51.0,55.0,44.0,52.0,45.0,60.0,46.0,59.0,36.0,47.0,42.0,33.0,38.0,34.0,31.0,32.0,35.0,26.0,24.0,26.0,27.0,24.0,23.0,23.0,12.0,18.0,9.0,12.0,12.0,5.0,8.0,7.0,8.0,5.0,3.0,4.0,4.0,5.0,2.0,3.0,3.0,3.0,4.0,,,,1.0, P81771,42.0,47.0,41.0,50.0,56.0,60.0,65.0,46.0,55.0,74.0,69.0,64.0,62.0,63.0,76.0,67.0,65.0,72.0,55.0,65.0,72.0,54.0,79.0,68.0,62.0,57.0,82.0,72.0,73.0,71.0,71.0,79.0,54.0,88.0,56.0,69.0,80.0,73.0,69.0,77.0,73.0,72.0,69.0,69.0,73.0,68.0,65.0,58.0,65.0,56.0,79.0,87.0,65.0,56.0,69.0,59.0,83.0,75.0,68.0,45.0,48.0,61.0,58.0,51.0,50.0,58.0,53.0,37.0,36.0,44.0,45.0,38.0,33.0,33.0,27.0,30.0,27.0,27.0,17.0,20.0,18.0,16.0,19.0,16.0,14.0,10.0,10.0,9.0,8.0,4.0,4.0,4.0,1.0,2.0,1.0,2.0 P81780,47.0,35.0,42.0,47.0,45.0,45.0,48.0,50.0,59.0,48.0,41.0,41.0,48.0,37.0,54.0,43.0,53.0,48.0,44.0,39.0,47.0,37.0,38.0,42.0,46.0,59.0,39.0,76.0,55.0,55.0,61.0,53.0,54.0,49.0,57.0,60.0,50.0,54.0,52.0,56.0,65.0,49.0,44.0,51.0,40.0,45.0,45.0,38.0,57.0,41.0,36.0,33.0,38.0,39.0,37.0,29.0,30.0,37.0,15.0,21.0,18.0,17.0,19.0,21.0,18.0,19.0,11.0,18.0,12.0,13.0,13.0,12.0,12.0,10.0,11.0,12.0,9.0,13.0,4.0,5.0,8.0,6.0,1.0,6.0,1.0,2.0,2.0,2.0,3.0,2.0,3.0,,,1.0,,1.0 Y00347,17.0,18.0,25.0,29.0,19.0,22.0,32.0,38.0,33.0,34.0,33.0,35.0,31.0,32.0,33.0,34.0,47.0,34.0,43.0,33.0,31.0,42.0,19.0,28.0,26.0,25.0,34.0,24.0,26.0,36.0,34.0,46.0,42.0,57.0,30.0,46.0,30.0,34.0,33.0,42.0,43.0,28.0,31.0,34.0,35.0,33.0,30.0,19.0,26.0,42.0,35.0,42.0,51.0,39.0,57.0,44.0,56.0,29.0,40.0,36.0,48.0,41.0,36.0,33.0,32.0,35.0,30.0,26.0,27.0,21.0,20.0,33.0,27.0,19.0,19.0,32.0,23.0,38.0,29.0,16.0,20.0,16.0,18.0,13.0,9.0,11.0,10.0,6.0,3.0,5.0,2.0,1.0,5.0,1.0,2.0,6.0 Y01008,206.0,245.0,287.0,270.0,264.0,278.0,317.0,295.0,322.0,315.0,300.0,324.0,352.0,356.0,315.0,317.0,318.0,339.0,314.0,280.0,291.0,240.0,265.0,261.0,310.0,288.0,307.0,350.0,347.0,295.0,314.0,328.0,352.0,345.0,382.0,355.0,355.0,384.0,357.0,319.0,358.0,377.0,330.0,314.0,366.0,352.0,350.0,313.0,276.0,319.0,290.0,329.0,332.0,368.0,316.0,356.0,387.0,426.0,404.0,390.0,393.0,416.0,378.0,393.0,370.0,353.0,325.0,333.0,321.0,294.0,284.0,263.0,260.0,279.0,278.0,269.0,269.0,256.0,294.0,215.0,186.0,198.0,172.0,135.0,112.0,118.0,92.0,101.0,74.0,50.0,50.0,35.0,33.0,22.0,9.0,32.0 Y02466,64.0,87.0,73.0,81.0,96.0,102.0,103.0,110.0,115.0,127.0,117.0,117.0,127.0,114.0,94.0,93.0,85.0,74.0,71.0,74.0,58.0,52.0,46.0,47.0,45.0,57.0,61.0,75.0,73.0,76.0,68.0,72.0,89.0,79.0,95.0,86.0,125.0,117.0,123.0,122.0,126.0,172.0,128.0,122.0,122.0,132.0,114.0,98.0,97.0,93.0,87.0,84.0,89.0,79.0,96.0,84.0,65.0,57.0,50.0,55.0,41.0,44.0,48.0,37.0,43.0,29.0,31.0,31.0,23.0,24.0,29.0,20.0,16.0,22.0,18.0,17.0,16.0,24.0,26.0,9.0,11.0,11.0,16.0,7.0,8.0,10.0,4.0,3.0,2.0,6.0,2.0,3.0,2.0,4.0,, Y02605,17.0,30.0,29.0,18.0,31.0,24.0,29.0,19.0,21.0,33.0,22.0,39.0,23.0,31.0,30.0,30.0,36.0,30.0,36.0,26.0,37.0,27.0,19.0,20.0,26.0,33.0,19.0,32.0,27.0,33.0,33.0,22.0,20.0,32.0,33.0,24.0,32.0,35.0,31.0,26.0,20.0,24.0,32.0,24.0,30.0,42.0,24.0,12.0,20.0,24.0,14.0,17.0,21.0,16.0,13.0,22.0,24.0,19.0,17.0,20.0,16.0,14.0,12.0,13.0,14.0,14.0,14.0,17.0,10.0,8.0,8.0,13.0,12.0,8.0,15.0,7.0,10.0,10.0,3.0,4.0,5.0,4.0,3.0,4.0,2.0,3.0,2.0,,2.0,3.0,3.0,,,1.0,,1.0 Y02606,40.0,37.0,41.0,49.0,42.0,47.0,39.0,47.0,41.0,60.0,59.0,55.0,55.0,43.0,58.0,52.0,33.0,46.0,43.0,39.0,46.0,32.0,45.0,48.0,43.0,50.0,44.0,50.0,44.0,44.0,48.0,49.0,43.0,60.0,61.0,73.0,64.0,61.0,77.0,62.0,53.0,45.0,33.0,66.0,46.0,63.0,56.0,50.0,25.0,30.0,32.0,32.0,39.0,32.0,32.0,39.0,23.0,32.0,31.0,27.0,30.0,24.0,24.0,31.0,21.0,16.0,20.0,27.0,23.0,21.0,14.0,13.0,9.0,13.0,14.0,7.0,7.0,10.0,10.0,4.0,4.0,4.0,3.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,,,,, Y02657,48.0,72.0,66.0,55.0,50.0,70.0,57.0,69.0,72.0,72.0,66.0,79.0,73.0,66.0,76.0,70.0,60.0,66.0,44.0,53.0,73.0,58.0,45.0,41.0,46.0,44.0,38.0,46.0,55.0,55.0,57.0,65.0,56.0,69.0,74.0,69.0,51.0,53.0,62.0,69.0,52.0,63.0,48.0,57.0,67.0,48.0,50.0,40.0,48.0,44.0,53.0,49.0,40.0,46.0,46.0,33.0,52.0,51.0,38.0,45.0,42.0,37.0,53.0,39.0,22.0,31.0,31.0,24.0,22.0,18.0,24.0,20.0,23.0,36.0,29.0,24.0,24.0,16.0,18.0,16.0,11.0,16.0,11.0,10.0,7.0,5.0,6.0,5.0,4.0,4.0,1.0,,3.0,,,2.0 Y05788,1.0,1.0,2.0,1.0,1.0,,2.0,3.0,3.0,3.0,2.0,4.0,4.0,1.0,3.0,3.0,3.0,3.0,3.0,2.0,1.0,3.0,1.0,2.0,10.0,2.0,5.0,9.0,1.0,7.0,7.0,10.0,14.0,9.0,12.0,11.0,12.0,17.0,11.0,14.0,14.0,10.0,8.0,11.0,9.0,7.0,11.0,9.0,14.0,9.0,14.0,8.0,5.0,11.0,8.0,2.0,11.0,7.0,8.0,7.0,7.0,2.0,1.0,2.0,1.0,5.0,6.0,1.0,1.0,1.0,2.0,,1.0,2.0,2.0,1.0,,1.0,,,,1.0,,,,,,,,,,,,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 C85001,26.0,27.0,27.0,27.0,23.0,23.0,29.0,29.0,28.0,23.0,24.0,25.0,16.0,19.0,26.0,28.0,27.0,24.0,31.0,26.0,23.0,19.0,23.0,17.0,18.0,26.0,19.0,36.0,28.0,31.0,23.0,30.0,28.0,29.0,34.0,24.0,33.0,30.0,28.0,40.0,32.0,25.0,32.0,36.0,27.0,31.0,23.0,38.0,33.0,36.0,25.0,17.0,29.0,31.0,36.0,47.0,51.0,30.0,31.0,35.0,37.0,30.0,34.0,32.0,28.0,29.0,27.0,31.0,24.0,22.0,28.0,16.0,22.0,19.0,22.0,28.0,16.0,23.0,11.0,17.0,16.0,11.0,8.0,14.0,10.0,8.0,3.0,3.0,10.0,1.0,4.0,4.0,7.0,2.0,1.0,2.0 C85003,58.0,71.0,65.0,72.0,86.0,85.0,81.0,91.0,81.0,85.0,76.0,86.0,91.0,100.0,81.0,97.0,80.0,70.0,73.0,80.0,76.0,62.0,57.0,61.0,64.0,73.0,83.0,83.0,80.0,84.0,92.0,92.0,116.0,120.0,109.0,110.0,104.0,99.0,118.0,95.0,104.0,89.0,94.0,81.0,87.0,101.0,63.0,68.0,51.0,65.0,81.0,66.0,76.0,85.0,111.0,60.0,94.0,83.0,83.0,98.0,91.0,87.0,76.0,84.0,69.0,77.0,64.0,55.0,64.0,59.0,39.0,61.0,51.0,47.0,44.0,55.0,45.0,49.0,54.0,48.0,42.0,40.0,36.0,22.0,17.0,14.0,18.0,20.0,13.0,6.0,5.0,4.0,5.0,1.0,1.0,5.0 C85004,43.0,51.0,60.0,85.0,63.0,84.0,87.0,88.0,101.0,105.0,93.0,109.0,109.0,118.0,107.0,113.0,106.0,110.0,108.0,72.0,79.0,81.0,59.0,67.0,72.0,61.0,85.0,77.0,77.0,72.0,70.0,64.0,69.0,103.0,98.0,81.0,89.0,99.0,79.0,90.0,83.0,102.0,95.0,82.0,111.0,107.0,88.0,77.0,96.0,98.0,116.0,115.0,128.0,117.0,125.0,131.0,131.0,127.0,143.0,133.0,151.0,124.0,118.0,102.0,120.0,103.0,137.0,121.0,95.0,83.0,105.0,111.0,98.0,77.0,108.0,117.0,100.0,93.0,88.0,68.0,70.0,78.0,64.0,43.0,35.0,27.0,24.0,35.0,28.0,18.0,21.0,7.0,6.0,3.0,4.0,9.0 C85005,30.0,25.0,35.0,32.0,40.0,38.0,42.0,40.0,43.0,42.0,53.0,34.0,52.0,50.0,49.0,44.0,45.0,42.0,37.0,46.0,35.0,36.0,45.0,47.0,38.0,36.0,40.0,45.0,44.0,41.0,56.0,55.0,53.0,55.0,54.0,51.0,40.0,48.0,43.0,56.0,56.0,45.0,51.0,46.0,46.0,38.0,43.0,38.0,40.0,35.0,45.0,34.0,51.0,50.0,46.0,65.0,52.0,75.0,53.0,54.0,50.0,50.0,57.0,53.0,52.0,58.0,48.0,51.0,28.0,36.0,41.0,31.0,36.0,26.0,41.0,37.0,45.0,38.0,42.0,27.0,18.0,33.0,21.0,17.0,18.0,22.0,10.0,11.0,7.0,6.0,4.0,7.0,3.0,,1.0,4.0 C85006,18.0,20.0,30.0,20.0,27.0,27.0,21.0,35.0,26.0,22.0,23.0,20.0,24.0,26.0,34.0,30.0,25.0,31.0,27.0,26.0,27.0,26.0,17.0,27.0,25.0,25.0,32.0,37.0,37.0,30.0,34.0,41.0,46.0,36.0,41.0,43.0,42.0,40.0,42.0,30.0,46.0,30.0,40.0,36.0,27.0,31.0,33.0,30.0,20.0,36.0,31.0,36.0,39.0,38.0,48.0,35.0,29.0,47.0,37.0,43.0,38.0,42.0,40.0,44.0,31.0,26.0,39.0,26.0,46.0,38.0,31.0,23.0,38.0,34.0,31.0,30.0,30.0,30.0,29.0,17.0,26.0,20.0,19.0,8.0,9.0,9.0,7.0,14.0,7.0,5.0,11.0,5.0,1.0,,,5.0 C85007,38.0,57.0,38.0,42.0,47.0,57.0,38.0,62.0,62.0,53.0,50.0,54.0,65.0,61.0,66.0,61.0,59.0,54.0,56.0,53.0,53.0,44.0,66.0,40.0,53.0,43.0,58.0,61.0,77.0,65.0,70.0,65.0,95.0,80.0,87.0,77.0,77.0,67.0,67.0,59.0,70.0,57.0,64.0,85.0,62.0,72.0,58.0,54.0,60.0,55.0,60.0,80.0,83.0,69.0,78.0,72.0,71.0,83.0,95.0,92.0,85.0,74.0,83.0,76.0,76.0,73.0,74.0,88.0,59.0,58.0,53.0,56.0,52.0,56.0,35.0,51.0,44.0,44.0,46.0,39.0,40.0,34.0,29.0,26.0,27.0,16.0,7.0,12.0,16.0,18.0,14.0,7.0,7.0,1.0,4.0,3.0 C85008,41.0,46.0,54.0,46.0,55.0,60.0,64.0,66.0,59.0,65.0,66.0,67.0,77.0,75.0,84.0,82.0,84.0,84.0,98.0,61.0,65.0,70.0,45.0,55.0,67.0,76.0,62.0,77.0,74.0,69.0,77.0,56.0,77.0,75.0,89.0,76.0,75.0,80.0,97.0,86.0,64.0,81.0,74.0,80.0,82.0,72.0,80.0,71.0,73.0,78.0,71.0,88.0,87.0,96.0,86.0,101.0,115.0,103.0,94.0,83.0,106.0,88.0,101.0,91.0,99.0,85.0,82.0,102.0,81.0,74.0,64.0,82.0,66.0,83.0,58.0,69.0,58.0,74.0,61.0,62.0,54.0,46.0,46.0,33.0,31.0,28.0,13.0,18.0,11.0,13.0,12.0,9.0,8.0,1.0,2.0,4.0 C85009,62.0,37.0,36.0,40.0,40.0,38.0,47.0,50.0,50.0,37.0,39.0,39.0,50.0,42.0,58.0,62.0,45.0,53.0,37.0,44.0,32.0,47.0,48.0,42.0,46.0,34.0,47.0,72.0,70.0,59.0,74.0,78.0,92.0,88.0,98.0,106.0,97.0,95.0,97.0,98.0,92.0,71.0,84.0,73.0,65.0,59.0,54.0,51.0,43.0,64.0,53.0,51.0,43.0,52.0,56.0,63.0,42.0,66.0,38.0,40.0,46.0,36.0,38.0,32.0,33.0,25.0,21.0,28.0,28.0,18.0,19.0,27.0,15.0,18.0,20.0,23.0,19.0,9.0,19.0,11.0,9.0,9.0,12.0,4.0,6.0,4.0,6.0,6.0,3.0,,4.0,,,,,2.0 C85010,63.0,79.0,81.0,81.0,85.0,102.0,97.0,95.0,95.0,83.0,101.0,93.0,92.0,116.0,110.0,99.0,92.0,106.0,90.0,73.0,72.0,99.0,67.0,75.0,79.0,76.0,69.0,101.0,102.0,81.0,97.0,76.0,112.0,111.0,101.0,114.0,82.0,104.0,106.0,105.0,111.0,107.0,121.0,101.0,120.0,98.0,76.0,109.0,85.0,98.0,108.0,90.0,117.0,128.0,122.0,106.0,133.0,136.0,125.0,124.0,129.0,114.0,112.0,106.0,92.0,87.0,94.0,91.0,97.0,93.0,76.0,107.0,96.0,74.0,72.0,74.0,84.0,107.0,85.0,62.0,65.0,63.0,42.0,46.0,41.0,17.0,27.0,33.0,23.0,19.0,11.0,14.0,7.0,4.0,3.0,7.0 C85013,57.0,55.0,74.0,71.0,60.0,57.0,78.0,65.0,68.0,74.0,80.0,83.0,74.0,85.0,85.0,62.0,66.0,63.0,71.0,40.0,65.0,58.0,58.0,48.0,47.0,54.0,54.0,63.0,90.0,75.0,65.0,72.0,77.0,95.0,85.0,75.0,79.0,96.0,68.0,75.0,90.0,78.0,88.0,87.0,69.0,77.0,65.0,82.0,53.0,57.0,76.0,63.0,68.0,89.0,82.0,72.0,90.0,78.0,67.0,78.0,67.0,76.0,68.0,71.0,60.0,65.0,59.0,44.0,48.0,47.0,42.0,55.0,41.0,38.0,34.0,44.0,55.0,43.0,45.0,27.0,32.0,37.0,23.0,20.0,24.0,21.0,21.0,20.0,11.0,7.0,5.0,4.0,2.0,3.0,2.0,7.0 C85014,57.0,49.0,60.0,59.0,51.0,62.0,73.0,63.0,57.0,58.0,53.0,73.0,63.0,55.0,58.0,50.0,58.0,63.0,60.0,44.0,43.0,61.0,46.0,44.0,45.0,47.0,58.0,50.0,76.0,62.0,58.0,70.0,65.0,74.0,69.0,57.0,87.0,72.0,78.0,61.0,77.0,80.0,59.0,61.0,42.0,68.0,48.0,43.0,48.0,50.0,61.0,42.0,49.0,59.0,67.0,57.0,78.0,71.0,57.0,66.0,53.0,56.0,65.0,72.0,66.0,57.0,56.0,66.0,63.0,49.0,49.0,48.0,62.0,56.0,43.0,42.0,43.0,38.0,42.0,33.0,30.0,33.0,21.0,20.0,18.0,11.0,11.0,15.0,12.0,14.0,8.0,1.0,4.0,4.0,5.0,4.0 C85016,25.0,38.0,41.0,52.0,48.0,71.0,50.0,54.0,65.0,66.0,71.0,62.0,68.0,90.0,74.0,76.0,82.0,76.0,68.0,62.0,54.0,53.0,64.0,55.0,56.0,48.0,71.0,52.0,70.0,49.0,62.0,69.0,62.0,64.0,75.0,59.0,65.0,74.0,76.0,66.0,73.0,64.0,65.0,79.0,62.0,77.0,49.0,61.0,67.0,70.0,67.0,69.0,71.0,84.0,84.0,79.0,85.0,78.0,86.0,85.0,97.0,81.0,58.0,83.0,72.0,70.0,63.0,44.0,62.0,52.0,53.0,62.0,60.0,62.0,70.0,56.0,49.0,58.0,66.0,33.0,38.0,34.0,29.0,29.0,19.0,24.0,20.0,22.0,13.0,11.0,9.0,7.0,3.0,3.0,3.0,2.0 C85017,53.0,69.0,57.0,63.0,47.0,61.0,53.0,62.0,64.0,49.0,84.0,79.0,69.0,73.0,81.0,67.0,71.0,63.0,69.0,59.0,56.0,58.0,54.0,66.0,70.0,70.0,68.0,81.0,91.0,73.0,102.0,105.0,120.0,96.0,108.0,130.0,126.0,106.0,107.0,94.0,99.0,89.0,89.0,88.0,73.0,78.0,61.0,65.0,71.0,68.0,74.0,81.0,79.0,89.0,81.0,81.0,86.0,74.0,88.0,78.0,81.0,79.0,92.0,86.0,67.0,66.0,62.0,56.0,57.0,59.0,48.0,55.0,51.0,49.0,53.0,48.0,43.0,53.0,45.0,30.0,44.0,27.0,15.0,29.0,26.0,21.0,17.0,18.0,13.0,7.0,9.0,10.0,3.0,,5.0,5.0 C85018,28.0,31.0,43.0,43.0,48.0,41.0,58.0,43.0,59.0,62.0,46.0,43.0,57.0,49.0,49.0,38.0,48.0,45.0,45.0,45.0,39.0,31.0,32.0,31.0,35.0,36.0,41.0,40.0,44.0,42.0,46.0,57.0,43.0,59.0,68.0,57.0,53.0,55.0,52.0,53.0,41.0,53.0,42.0,43.0,57.0,37.0,27.0,29.0,37.0,35.0,37.0,35.0,44.0,47.0,53.0,36.0,53.0,60.0,36.0,61.0,48.0,35.0,58.0,43.0,41.0,35.0,38.0,38.0,46.0,35.0,29.0,35.0,29.0,29.0,34.0,22.0,33.0,33.0,28.0,17.0,27.0,19.0,23.0,16.0,14.0,10.0,6.0,5.0,5.0,8.0,1.0,3.0,3.0,4.0,1.0,1.0 C85019,52.0,50.0,64.0,55.0,64.0,68.0,46.0,48.0,55.0,69.0,53.0,56.0,66.0,61.0,70.0,50.0,55.0,57.0,50.0,57.0,56.0,50.0,49.0,43.0,60.0,52.0,58.0,67.0,86.0,60.0,71.0,83.0,96.0,97.0,80.0,81.0,97.0,85.0,80.0,78.0,89.0,74.0,86.0,84.0,76.0,68.0,69.0,63.0,62.0,71.0,63.0,73.0,64.0,87.0,88.0,88.0,97.0,89.0,108.0,85.0,82.0,82.0,85.0,87.0,69.0,69.0,69.0,62.0,73.0,65.0,63.0,67.0,59.0,49.0,48.0,62.0,54.0,47.0,56.0,49.0,45.0,38.0,31.0,32.0,21.0,16.0,18.0,24.0,9.0,9.0,13.0,8.0,6.0,2.0,2.0,2.0 C85020,46.0,62.0,51.0,67.0,48.0,72.0,50.0,66.0,81.0,60.0,56.0,67.0,57.0,67.0,57.0,66.0,60.0,62.0,57.0,72.0,58.0,50.0,53.0,62.0,54.0,64.0,65.0,62.0,65.0,80.0,58.0,92.0,77.0,83.0,87.0,94.0,98.0,80.0,92.0,90.0,105.0,92.0,84.0,92.0,89.0,79.0,91.0,65.0,81.0,76.0,88.0,90.0,81.0,89.0,90.0,92.0,90.0,103.0,93.0,100.0,92.0,78.0,101.0,81.0,72.0,86.0,65.0,81.0,59.0,85.0,69.0,68.0,54.0,69.0,55.0,63.0,78.0,76.0,61.0,46.0,43.0,30.0,43.0,35.0,33.0,29.0,25.0,18.0,12.0,9.0,13.0,8.0,2.0,4.0,3.0,5.0 C85022,65.0,62.0,73.0,67.0,80.0,92.0,61.0,65.0,72.0,70.0,92.0,66.0,84.0,87.0,77.0,80.0,60.0,74.0,70.0,77.0,77.0,76.0,66.0,61.0,61.0,73.0,71.0,67.0,93.0,92.0,93.0,93.0,81.0,95.0,115.0,89.0,101.0,68.0,83.0,80.0,84.0,70.0,71.0,95.0,81.0,86.0,71.0,53.0,62.0,75.0,78.0,83.0,78.0,85.0,100.0,94.0,102.0,109.0,107.0,103.0,97.0,106.0,97.0,87.0,76.0,70.0,63.0,68.0,76.0,77.0,67.0,66.0,58.0,60.0,56.0,49.0,48.0,59.0,56.0,37.0,52.0,38.0,46.0,25.0,13.0,21.0,13.0,11.0,10.0,14.0,10.0,4.0,5.0,3.0,2.0,4.0 C85023,61.0,59.0,52.0,57.0,62.0,77.0,71.0,60.0,52.0,65.0,52.0,64.0,76.0,68.0,58.0,77.0,77.0,73.0,74.0,58.0,67.0,50.0,60.0,64.0,56.0,64.0,73.0,77.0,77.0,74.0,62.0,71.0,85.0,103.0,77.0,79.0,86.0,82.0,72.0,76.0,62.0,60.0,65.0,72.0,65.0,81.0,68.0,47.0,70.0,57.0,59.0,64.0,69.0,76.0,91.0,75.0,62.0,69.0,81.0,82.0,81.0,92.0,72.0,81.0,70.0,70.0,73.0,63.0,71.0,62.0,75.0,64.0,53.0,47.0,45.0,50.0,45.0,33.0,48.0,30.0,38.0,37.0,31.0,19.0,22.0,18.0,15.0,14.0,1.0,10.0,8.0,4.0,7.0,2.0,5.0,5.0 C85024,19.0,23.0,35.0,34.0,17.0,35.0,32.0,38.0,44.0,29.0,28.0,27.0,34.0,25.0,35.0,40.0,38.0,50.0,31.0,38.0,33.0,34.0,28.0,28.0,19.0,35.0,29.0,25.0,36.0,33.0,28.0,40.0,45.0,50.0,57.0,38.0,41.0,53.0,48.0,53.0,38.0,34.0,46.0,36.0,40.0,38.0,28.0,38.0,28.0,38.0,37.0,33.0,53.0,50.0,54.0,65.0,48.0,50.0,43.0,48.0,54.0,46.0,45.0,58.0,33.0,44.0,41.0,32.0,46.0,36.0,31.0,35.0,32.0,31.0,35.0,46.0,34.0,47.0,26.0,27.0,24.0,20.0,19.0,15.0,15.0,12.0,14.0,6.0,5.0,4.0,10.0,3.0,8.0,2.0,2.0,7.0 C85028,17.0,13.0,15.0,19.0,11.0,15.0,16.0,16.0,22.0,21.0,21.0,21.0,23.0,20.0,20.0,22.0,15.0,11.0,26.0,19.0,22.0,16.0,23.0,24.0,30.0,28.0,24.0,20.0,32.0,33.0,35.0,37.0,48.0,39.0,37.0,34.0,30.0,39.0,34.0,27.0,33.0,34.0,33.0,29.0,26.0,23.0,22.0,19.0,20.0,26.0,33.0,27.0,30.0,35.0,27.0,42.0,41.0,43.0,38.0,32.0,47.0,53.0,37.0,33.0,35.0,31.0,34.0,23.0,18.0,29.0,15.0,19.0,23.0,22.0,23.0,11.0,19.0,17.0,16.0,16.0,21.0,12.0,13.0,9.0,7.0,6.0,4.0,3.0,4.0,4.0,3.0,1.0,1.0,1.0,,1.0 C85030,59.0,51.0,62.0,55.0,67.0,51.0,61.0,69.0,63.0,65.0,62.0,66.0,44.0,64.0,50.0,49.0,56.0,51.0,47.0,47.0,45.0,47.0,52.0,59.0,56.0,44.0,71.0,66.0,80.0,71.0,74.0,66.0,84.0,86.0,81.0,98.0,79.0,82.0,86.0,75.0,83.0,57.0,69.0,80.0,63.0,52.0,70.0,49.0,65.0,46.0,48.0,54.0,80.0,82.0,85.0,69.0,86.0,81.0,90.0,63.0,76.0,67.0,77.0,60.0,63.0,48.0,49.0,55.0,52.0,53.0,52.0,43.0,42.0,39.0,45.0,43.0,36.0,56.0,39.0,28.0,27.0,15.0,23.0,15.0,9.0,29.0,12.0,14.0,7.0,7.0,7.0,9.0,8.0,2.0,3.0,4.0 C85033,47.0,63.0,49.0,41.0,61.0,68.0,64.0,60.0,81.0,57.0,77.0,72.0,66.0,62.0,65.0,50.0,57.0,74.0,65.0,56.0,50.0,48.0,51.0,55.0,53.0,58.0,78.0,71.0,68.0,86.0,90.0,93.0,103.0,106.0,105.0,91.0,104.0,100.0,87.0,100.0,95.0,84.0,94.0,94.0,93.0,91.0,79.0,82.0,53.0,61.0,74.0,73.0,72.0,69.0,69.0,79.0,76.0,79.0,77.0,70.0,80.0,61.0,81.0,60.0,62.0,68.0,63.0,57.0,35.0,54.0,48.0,48.0,34.0,46.0,41.0,35.0,48.0,47.0,37.0,28.0,25.0,36.0,21.0,20.0,23.0,17.0,13.0,18.0,13.0,9.0,6.0,7.0,5.0,3.0,,2.0 C85614,26.0,29.0,27.0,19.0,21.0,23.0,29.0,23.0,14.0,28.0,23.0,27.0,24.0,24.0,22.0,27.0,26.0,25.0,16.0,21.0,16.0,17.0,15.0,9.0,18.0,18.0,26.0,39.0,22.0,29.0,29.0,43.0,38.0,40.0,46.0,39.0,31.0,32.0,36.0,25.0,29.0,30.0,28.0,23.0,27.0,30.0,24.0,24.0,18.0,24.0,26.0,40.0,42.0,34.0,39.0,38.0,28.0,34.0,31.0,27.0,32.0,24.0,29.0,40.0,33.0,28.0,29.0,21.0,23.0,26.0,18.0,20.0,22.0,17.0,25.0,22.0,20.0,19.0,12.0,11.0,12.0,13.0,8.0,7.0,8.0,11.0,7.0,1.0,4.0,4.0,2.0,2.0,3.0,3.0,1.0, C85619,45.0,51.0,51.0,69.0,63.0,56.0,48.0,47.0,70.0,73.0,73.0,62.0,67.0,62.0,62.0,56.0,52.0,59.0,58.0,57.0,53.0,58.0,70.0,40.0,47.0,54.0,48.0,63.0,53.0,66.0,61.0,63.0,65.0,74.0,49.0,65.0,68.0,72.0,66.0,68.0,58.0,61.0,58.0,53.0,46.0,73.0,51.0,45.0,44.0,47.0,42.0,49.0,39.0,60.0,62.0,63.0,68.0,60.0,66.0,73.0,51.0,49.0,44.0,52.0,45.0,43.0,38.0,30.0,42.0,31.0,22.0,27.0,32.0,25.0,19.0,27.0,34.0,29.0,24.0,13.0,18.0,12.0,14.0,8.0,10.0,14.0,14.0,8.0,4.0,9.0,9.0,7.0,5.0,1.0,,5.0 C85622,12.0,7.0,12.0,10.0,5.0,16.0,15.0,13.0,7.0,14.0,9.0,13.0,13.0,21.0,17.0,15.0,13.0,28.0,17.0,17.0,22.0,13.0,17.0,13.0,11.0,6.0,15.0,12.0,19.0,15.0,13.0,14.0,22.0,19.0,12.0,22.0,18.0,15.0,14.0,14.0,13.0,16.0,10.0,12.0,9.0,13.0,11.0,11.0,10.0,9.0,11.0,8.0,9.0,13.0,18.0,13.0,27.0,22.0,20.0,18.0,19.0,10.0,14.0,17.0,19.0,12.0,13.0,9.0,15.0,11.0,11.0,12.0,6.0,5.0,8.0,10.0,10.0,8.0,6.0,3.0,4.0,5.0,7.0,7.0,6.0,3.0,1.0,5.0,3.0,1.0,,,1.0,,1.0, C85623,28.0,22.0,29.0,17.0,24.0,25.0,27.0,25.0,25.0,46.0,25.0,33.0,30.0,40.0,30.0,30.0,45.0,44.0,24.0,26.0,19.0,23.0,18.0,23.0,19.0,28.0,18.0,30.0,15.0,29.0,23.0,31.0,23.0,34.0,34.0,28.0,24.0,23.0,29.0,39.0,33.0,36.0,38.0,43.0,44.0,41.0,46.0,44.0,38.0,32.0,32.0,47.0,41.0,30.0,53.0,32.0,38.0,51.0,34.0,34.0,47.0,36.0,41.0,38.0,36.0,30.0,32.0,26.0,35.0,32.0,26.0,29.0,26.0,22.0,23.0,24.0,19.0,39.0,22.0,13.0,14.0,15.0,11.0,13.0,8.0,6.0,9.0,5.0,3.0,3.0,1.0,1.0,,3.0,,1.0 C86001,65.0,80.0,106.0,86.0,91.0,89.0,87.0,95.0,98.0,115.0,120.0,106.0,124.0,114.0,100.0,117.0,131.0,119.0,121.0,102.0,105.0,91.0,85.0,92.0,97.0,122.0,90.0,95.0,109.0,110.0,113.0,124.0,116.0,113.0,113.0,127.0,114.0,113.0,107.0,110.0,95.0,132.0,105.0,109.0,113.0,100.0,98.0,68.0,93.0,80.0,100.0,85.0,118.0,95.0,99.0,93.0,116.0,91.0,105.0,120.0,119.0,119.0,118.0,134.0,95.0,100.0,111.0,108.0,79.0,104.0,96.0,85.0,78.0,85.0,62.0,60.0,69.0,79.0,61.0,57.0,33.0,48.0,34.0,34.0,33.0,29.0,19.0,23.0,24.0,16.0,13.0,10.0,8.0,3.0,2.0,5.0 C86002,34.0,41.0,52.0,63.0,60.0,45.0,58.0,54.0,59.0,57.0,48.0,52.0,49.0,65.0,55.0,75.0,57.0,48.0,52.0,54.0,44.0,48.0,54.0,42.0,52.0,44.0,58.0,53.0,41.0,74.0,49.0,59.0,73.0,52.0,57.0,61.0,62.0,66.0,63.0,50.0,57.0,70.0,55.0,62.0,70.0,63.0,53.0,59.0,46.0,50.0,48.0,50.0,51.0,52.0,71.0,42.0,59.0,43.0,70.0,53.0,71.0,60.0,52.0,47.0,61.0,40.0,40.0,41.0,34.0,52.0,36.0,35.0,34.0,35.0,18.0,29.0,37.0,42.0,26.0,16.0,27.0,24.0,13.0,14.0,15.0,8.0,9.0,11.0,7.0,6.0,1.0,2.0,2.0,3.0,3.0, C86003,37.0,47.0,52.0,57.0,67.0,49.0,48.0,64.0,67.0,51.0,47.0,70.0,73.0,57.0,51.0,68.0,62.0,54.0,60.0,50.0,61.0,46.0,47.0,47.0,49.0,42.0,47.0,55.0,60.0,46.0,60.0,76.0,52.0,75.0,62.0,70.0,66.0,66.0,63.0,56.0,57.0,62.0,58.0,50.0,50.0,54.0,54.0,55.0,54.0,49.0,44.0,61.0,52.0,54.0,67.0,62.0,88.0,73.0,61.0,61.0,68.0,54.0,69.0,80.0,41.0,46.0,51.0,55.0,64.0,44.0,49.0,60.0,46.0,45.0,43.0,32.0,52.0,64.0,61.0,26.0,40.0,42.0,25.0,32.0,23.0,27.0,22.0,19.0,15.0,13.0,8.0,4.0,9.0,4.0,5.0,8.0 C86005,17.0,25.0,24.0,24.0,18.0,25.0,26.0,27.0,28.0,24.0,26.0,30.0,25.0,29.0,29.0,46.0,26.0,27.0,25.0,19.0,20.0,34.0,22.0,16.0,24.0,22.0,27.0,28.0,27.0,24.0,26.0,37.0,33.0,41.0,34.0,28.0,40.0,29.0,38.0,36.0,44.0,32.0,27.0,30.0,26.0,29.0,19.0,24.0,35.0,21.0,27.0,33.0,27.0,34.0,30.0,23.0,24.0,25.0,29.0,32.0,32.0,35.0,31.0,38.0,43.0,29.0,25.0,34.0,28.0,32.0,32.0,33.0,25.0,32.0,28.0,23.0,35.0,31.0,31.0,16.0,22.0,24.0,16.0,10.0,19.0,9.0,5.0,5.0,6.0,8.0,2.0,3.0,3.0,,1.0,3.0 C86006,41.0,60.0,55.0,57.0,46.0,62.0,65.0,67.0,54.0,69.0,63.0,54.0,69.0,65.0,62.0,68.0,70.0,57.0,52.0,69.0,52.0,52.0,44.0,78.0,68.0,53.0,66.0,58.0,74.0,65.0,66.0,66.0,78.0,69.0,73.0,74.0,89.0,77.0,82.0,94.0,84.0,66.0,79.0,60.0,59.0,79.0,76.0,68.0,66.0,52.0,67.0,64.0,76.0,74.0,77.0,76.0,70.0,73.0,86.0,86.0,85.0,87.0,76.0,63.0,67.0,69.0,64.0,67.0,57.0,48.0,46.0,40.0,48.0,44.0,34.0,31.0,39.0,35.0,32.0,24.0,34.0,31.0,24.0,15.0,22.0,12.0,16.0,15.0,15.0,8.0,8.0,6.0,3.0,6.0,,3.0 C86007,107.0,104.0,107.0,129.0,107.0,123.0,133.0,105.0,115.0,108.0,105.0,121.0,108.0,105.0,133.0,105.0,99.0,87.0,93.0,84.0,74.0,70.0,73.0,73.0,86.0,97.0,83.0,105.0,113.0,102.0,109.0,123.0,128.0,132.0,137.0,153.0,145.0,137.0,121.0,111.0,137.0,140.0,130.0,132.0,120.0,115.0,100.0,132.0,110.0,100.0,111.0,131.0,118.0,112.0,127.0,105.0,111.0,92.0,124.0,106.0,107.0,102.0,105.0,108.0,93.0,117.0,107.0,86.0,104.0,91.0,88.0,88.0,97.0,84.0,86.0,98.0,76.0,90.0,81.0,65.0,56.0,57.0,42.0,32.0,35.0,27.0,22.0,20.0,15.0,16.0,14.0,8.0,9.0,3.0,9.0,5.0 C86009,26.0,27.0,28.0,28.0,27.0,22.0,32.0,32.0,40.0,27.0,41.0,36.0,48.0,52.0,52.0,49.0,44.0,50.0,34.0,43.0,32.0,38.0,36.0,40.0,30.0,35.0,45.0,31.0,34.0,27.0,35.0,31.0,36.0,42.0,40.0,47.0,26.0,37.0,31.0,41.0,40.0,38.0,46.0,46.0,36.0,32.0,52.0,36.0,38.0,61.0,54.0,38.0,48.0,68.0,36.0,61.0,68.0,55.0,58.0,63.0,76.0,54.0,71.0,69.0,48.0,53.0,54.0,49.0,49.0,46.0,36.0,37.0,40.0,54.0,47.0,38.0,49.0,39.0,43.0,26.0,34.0,36.0,21.0,24.0,21.0,15.0,18.0,12.0,6.0,7.0,6.0,3.0,4.0,4.0,1.0,4.0 C86011,78.0,63.0,74.0,68.0,75.0,82.0,73.0,82.0,73.0,85.0,74.0,99.0,84.0,88.0,87.0,99.0,104.0,64.0,96.0,77.0,53.0,57.0,62.0,62.0,69.0,81.0,84.0,84.0,75.0,73.0,83.0,113.0,105.0,99.0,96.0,114.0,93.0,103.0,111.0,117.0,104.0,113.0,95.0,83.0,121.0,105.0,94.0,99.0,91.0,93.0,77.0,91.0,97.0,78.0,109.0,95.0,93.0,95.0,111.0,90.0,96.0,88.0,85.0,81.0,85.0,80.0,90.0,74.0,74.0,72.0,63.0,67.0,66.0,55.0,58.0,51.0,62.0,53.0,53.0,47.0,36.0,48.0,25.0,25.0,20.0,21.0,13.0,24.0,17.0,13.0,4.0,8.0,12.0,6.0,6.0,8.0 C86012,9.0,24.0,25.0,25.0,28.0,25.0,29.0,38.0,23.0,24.0,31.0,29.0,30.0,41.0,45.0,39.0,38.0,42.0,42.0,26.0,41.0,35.0,29.0,23.0,36.0,30.0,32.0,27.0,29.0,33.0,33.0,33.0,32.0,31.0,42.0,29.0,38.0,32.0,46.0,31.0,30.0,48.0,31.0,39.0,44.0,31.0,29.0,25.0,23.0,41.0,31.0,33.0,46.0,48.0,36.0,46.0,31.0,47.0,21.0,36.0,28.0,39.0,32.0,38.0,35.0,37.0,35.0,32.0,34.0,50.0,26.0,37.0,37.0,30.0,40.0,36.0,34.0,30.0,21.0,15.0,25.0,21.0,23.0,14.0,11.0,13.0,9.0,5.0,16.0,9.0,11.0,3.0,,4.0,1.0,6.0 C86013,27.0,36.0,50.0,26.0,46.0,42.0,39.0,52.0,34.0,45.0,35.0,37.0,35.0,50.0,40.0,45.0,35.0,35.0,40.0,29.0,41.0,30.0,27.0,32.0,39.0,33.0,44.0,59.0,27.0,40.0,39.0,38.0,45.0,41.0,48.0,49.0,45.0,49.0,52.0,40.0,50.0,54.0,55.0,50.0,41.0,52.0,38.0,44.0,43.0,40.0,47.0,50.0,57.0,56.0,63.0,70.0,73.0,57.0,66.0,70.0,75.0,61.0,71.0,54.0,70.0,54.0,63.0,58.0,65.0,62.0,55.0,50.0,56.0,50.0,47.0,49.0,71.0,55.0,69.0,44.0,69.0,45.0,35.0,39.0,36.0,27.0,28.0,18.0,20.0,19.0,16.0,4.0,1.0,5.0,2.0,5.0 C86015,29.0,49.0,55.0,54.0,44.0,57.0,51.0,63.0,47.0,45.0,46.0,51.0,48.0,55.0,41.0,61.0,61.0,56.0,41.0,40.0,37.0,38.0,41.0,37.0,46.0,44.0,43.0,53.0,52.0,56.0,57.0,62.0,74.0,56.0,63.0,62.0,63.0,61.0,50.0,53.0,63.0,44.0,50.0,50.0,63.0,48.0,33.0,42.0,65.0,38.0,41.0,49.0,50.0,46.0,59.0,45.0,55.0,43.0,54.0,56.0,54.0,44.0,57.0,65.0,58.0,52.0,48.0,45.0,53.0,40.0,42.0,32.0,34.0,33.0,37.0,36.0,44.0,40.0,41.0,27.0,29.0,27.0,28.0,19.0,13.0,22.0,12.0,16.0,6.0,8.0,8.0,5.0,3.0,2.0,6.0,4.0 C86016,33.0,49.0,47.0,52.0,47.0,52.0,33.0,61.0,47.0,50.0,55.0,54.0,69.0,47.0,60.0,64.0,63.0,59.0,54.0,50.0,66.0,47.0,51.0,59.0,33.0,54.0,56.0,41.0,42.0,68.0,63.0,60.0,62.0,52.0,57.0,47.0,62.0,61.0,59.0,45.0,56.0,50.0,52.0,60.0,50.0,41.0,59.0,46.0,49.0,61.0,42.0,51.0,55.0,71.0,63.0,65.0,66.0,57.0,66.0,73.0,64.0,66.0,64.0,72.0,56.0,47.0,52.0,43.0,57.0,42.0,45.0,49.0,35.0,46.0,43.0,36.0,34.0,37.0,41.0,22.0,33.0,27.0,23.0,25.0,9.0,21.0,13.0,11.0,10.0,7.0,4.0,4.0,4.0,2.0,1.0,7.0 C86017,76.0,83.0,84.0,82.0,93.0,90.0,79.0,85.0,87.0,86.0,78.0,94.0,74.0,92.0,89.0,85.0,83.0,80.0,84.0,60.0,60.0,79.0,82.0,89.0,78.0,106.0,111.0,116.0,118.0,143.0,134.0,160.0,154.0,142.0,160.0,147.0,153.0,168.0,146.0,147.0,123.0,124.0,125.0,136.0,119.0,122.0,103.0,112.0,112.0,92.0,106.0,105.0,94.0,104.0,101.0,80.0,85.0,95.0,75.0,80.0,88.0,108.0,92.0,86.0,73.0,84.0,69.0,70.0,61.0,71.0,52.0,63.0,56.0,57.0,63.0,48.0,43.0,51.0,60.0,47.0,36.0,16.0,28.0,13.0,17.0,17.0,11.0,12.0,16.0,12.0,9.0,7.0,8.0,4.0,2.0,7.0 C86018,49.0,43.0,69.0,56.0,46.0,59.0,59.0,60.0,55.0,50.0,62.0,64.0,59.0,61.0,58.0,74.0,61.0,62.0,55.0,56.0,55.0,50.0,59.0,56.0,45.0,52.0,67.0,71.0,59.0,76.0,72.0,81.0,64.0,66.0,77.0,71.0,73.0,76.0,85.0,50.0,82.0,57.0,51.0,73.0,68.0,72.0,64.0,45.0,51.0,61.0,59.0,71.0,71.0,52.0,84.0,77.0,61.0,63.0,68.0,73.0,55.0,63.0,72.0,71.0,76.0,77.0,59.0,62.0,60.0,37.0,40.0,47.0,53.0,43.0,52.0,46.0,42.0,43.0,41.0,33.0,37.0,31.0,25.0,29.0,18.0,12.0,24.0,7.0,14.0,3.0,9.0,7.0,4.0,4.0,8.0,5.0 C86019,90.0,82.0,103.0,91.0,88.0,111.0,94.0,96.0,123.0,109.0,97.0,111.0,101.0,117.0,103.0,115.0,97.0,90.0,102.0,101.0,95.0,92.0,102.0,75.0,104.0,86.0,104.0,94.0,126.0,115.0,136.0,140.0,135.0,136.0,141.0,160.0,148.0,159.0,133.0,136.0,144.0,126.0,103.0,110.0,134.0,129.0,108.0,92.0,93.0,108.0,82.0,93.0,106.0,107.0,107.0,102.0,104.0,119.0,90.0,94.0,104.0,118.0,93.0,94.0,105.0,99.0,84.0,76.0,58.0,65.0,61.0,62.0,64.0,62.0,60.0,68.0,58.0,76.0,64.0,56.0,54.0,43.0,29.0,27.0,24.0,20.0,23.0,18.0,22.0,10.0,8.0,11.0,10.0,7.0,5.0,8.0 C86020,38.0,40.0,42.0,57.0,52.0,54.0,58.0,62.0,61.0,60.0,60.0,59.0,50.0,45.0,62.0,57.0,69.0,54.0,49.0,47.0,46.0,46.0,40.0,52.0,44.0,48.0,50.0,59.0,62.0,53.0,39.0,61.0,61.0,76.0,73.0,62.0,74.0,76.0,82.0,62.0,79.0,64.0,60.0,81.0,57.0,63.0,54.0,54.0,43.0,55.0,55.0,59.0,49.0,54.0,56.0,52.0,53.0,60.0,57.0,52.0,60.0,55.0,63.0,54.0,65.0,44.0,54.0,65.0,49.0,41.0,36.0,34.0,41.0,34.0,38.0,34.0,36.0,44.0,35.0,31.0,24.0,23.0,17.0,16.0,14.0,17.0,10.0,14.0,5.0,4.0,9.0,4.0,7.0,6.0,2.0,9.0 C86021,15.0,33.0,30.0,25.0,27.0,34.0,28.0,29.0,36.0,38.0,39.0,28.0,31.0,38.0,40.0,39.0,32.0,40.0,37.0,32.0,31.0,42.0,29.0,20.0,27.0,32.0,33.0,38.0,34.0,31.0,35.0,33.0,42.0,53.0,53.0,36.0,34.0,48.0,38.0,33.0,46.0,40.0,55.0,46.0,45.0,33.0,37.0,30.0,37.0,32.0,52.0,33.0,32.0,42.0,37.0,41.0,30.0,38.0,31.0,41.0,42.0,54.0,56.0,37.0,33.0,42.0,27.0,45.0,31.0,35.0,33.0,36.0,29.0,31.0,23.0,29.0,28.0,35.0,25.0,27.0,17.0,33.0,18.0,23.0,17.0,20.0,15.0,12.0,10.0,6.0,7.0,8.0,12.0,,8.0,8.0 C86023,69.0,80.0,70.0,87.0,81.0,90.0,82.0,98.0,95.0,94.0,98.0,100.0,92.0,99.0,96.0,96.0,68.0,77.0,94.0,76.0,62.0,68.0,56.0,71.0,83.0,74.0,90.0,91.0,91.0,96.0,84.0,113.0,107.0,116.0,114.0,129.0,102.0,99.0,127.0,112.0,99.0,96.0,104.0,94.0,110.0,98.0,83.0,67.0,68.0,73.0,69.0,80.0,66.0,83.0,104.0,90.0,104.0,76.0,95.0,103.0,111.0,89.0,83.0,74.0,93.0,89.0,84.0,63.0,67.0,56.0,55.0,57.0,46.0,52.0,51.0,38.0,49.0,62.0,43.0,33.0,32.0,26.0,18.0,23.0,23.0,23.0,11.0,13.0,15.0,14.0,11.0,6.0,9.0,3.0,1.0,8.0 C86024,52.0,71.0,64.0,67.0,62.0,65.0,68.0,69.0,58.0,73.0,69.0,71.0,79.0,79.0,84.0,65.0,83.0,69.0,70.0,54.0,72.0,61.0,52.0,52.0,74.0,62.0,79.0,69.0,71.0,69.0,79.0,73.0,93.0,102.0,76.0,75.0,82.0,81.0,80.0,74.0,87.0,69.0,72.0,84.0,73.0,64.0,65.0,64.0,35.0,70.0,60.0,71.0,82.0,80.0,89.0,89.0,93.0,79.0,79.0,90.0,83.0,87.0,68.0,64.0,97.0,97.0,70.0,60.0,73.0,67.0,51.0,56.0,68.0,39.0,49.0,51.0,58.0,53.0,44.0,34.0,35.0,27.0,24.0,20.0,26.0,21.0,19.0,18.0,17.0,9.0,11.0,4.0,5.0,7.0,5.0,6.0 C86025,23.0,28.0,29.0,47.0,48.0,44.0,39.0,33.0,41.0,48.0,37.0,39.0,49.0,37.0,38.0,40.0,38.0,41.0,40.0,38.0,36.0,39.0,47.0,38.0,48.0,65.0,50.0,67.0,51.0,66.0,68.0,65.0,80.0,79.0,82.0,79.0,75.0,69.0,74.0,74.0,65.0,41.0,57.0,63.0,61.0,55.0,45.0,45.0,44.0,46.0,40.0,44.0,48.0,43.0,38.0,49.0,42.0,61.0,42.0,49.0,38.0,48.0,49.0,36.0,34.0,45.0,32.0,30.0,33.0,24.0,29.0,35.0,22.0,25.0,27.0,23.0,25.0,29.0,14.0,16.0,32.0,9.0,16.0,11.0,8.0,5.0,5.0,5.0,7.0,5.0,3.0,2.0,,5.0,2.0,1.0 C86026,26.0,28.0,29.0,32.0,35.0,27.0,29.0,21.0,38.0,30.0,36.0,31.0,36.0,26.0,33.0,32.0,35.0,34.0,32.0,27.0,23.0,26.0,19.0,22.0,29.0,27.0,36.0,35.0,37.0,33.0,40.0,37.0,36.0,52.0,32.0,34.0,42.0,41.0,47.0,42.0,38.0,31.0,50.0,37.0,51.0,35.0,36.0,34.0,22.0,40.0,27.0,30.0,25.0,34.0,39.0,37.0,30.0,30.0,36.0,37.0,30.0,49.0,36.0,31.0,38.0,30.0,22.0,25.0,20.0,23.0,26.0,26.0,16.0,29.0,19.0,16.0,10.0,25.0,11.0,11.0,14.0,4.0,8.0,8.0,5.0,8.0,7.0,4.0,7.0,4.0,1.0,,2.0,,3.0,3.0 C86029,55.0,55.0,65.0,65.0,86.0,77.0,63.0,67.0,96.0,94.0,91.0,80.0,91.0,98.0,85.0,97.0,107.0,99.0,99.0,102.0,93.0,97.0,75.0,75.0,72.0,69.0,82.0,99.0,79.0,99.0,79.0,89.0,108.0,92.0,114.0,98.0,99.0,106.0,95.0,111.0,107.0,91.0,103.0,105.0,112.0,83.0,85.0,96.0,74.0,86.0,75.0,88.0,85.0,103.0,117.0,106.0,126.0,106.0,101.0,93.0,94.0,121.0,108.0,105.0,91.0,79.0,86.0,78.0,74.0,73.0,61.0,75.0,56.0,65.0,62.0,55.0,59.0,67.0,54.0,43.0,30.0,37.0,36.0,30.0,24.0,17.0,14.0,20.0,21.0,24.0,8.0,2.0,7.0,4.0,4.0,7.0 C86032,20.0,16.0,20.0,28.0,25.0,36.0,32.0,32.0,25.0,31.0,39.0,43.0,36.0,33.0,39.0,33.0,29.0,37.0,32.0,25.0,16.0,21.0,29.0,26.0,33.0,28.0,38.0,35.0,24.0,41.0,31.0,41.0,41.0,36.0,33.0,32.0,30.0,26.0,43.0,36.0,52.0,37.0,39.0,27.0,31.0,33.0,38.0,24.0,28.0,30.0,33.0,30.0,35.0,26.0,40.0,49.0,36.0,52.0,49.0,43.0,51.0,52.0,34.0,40.0,36.0,37.0,22.0,39.0,38.0,28.0,29.0,21.0,34.0,27.0,30.0,36.0,23.0,31.0,29.0,25.0,25.0,17.0,18.0,7.0,10.0,7.0,10.0,7.0,7.0,2.0,4.0,1.0,3.0,5.0,,2.0 C86033,20.0,28.0,28.0,38.0,31.0,37.0,38.0,44.0,45.0,41.0,42.0,38.0,46.0,31.0,33.0,31.0,24.0,42.0,32.0,31.0,24.0,25.0,19.0,29.0,23.0,28.0,25.0,33.0,40.0,28.0,29.0,45.0,43.0,40.0,40.0,37.0,37.0,32.0,55.0,46.0,40.0,42.0,44.0,40.0,36.0,34.0,26.0,28.0,32.0,22.0,26.0,32.0,27.0,28.0,40.0,30.0,34.0,34.0,32.0,29.0,36.0,29.0,35.0,27.0,23.0,33.0,26.0,32.0,23.0,23.0,16.0,25.0,14.0,20.0,23.0,17.0,18.0,19.0,12.0,10.0,13.0,5.0,9.0,7.0,4.0,4.0,3.0,4.0,3.0,6.0,2.0,,,,,2.0 C86034,50.0,42.0,43.0,45.0,42.0,54.0,43.0,43.0,60.0,45.0,47.0,42.0,44.0,42.0,43.0,42.0,40.0,45.0,38.0,41.0,32.0,38.0,34.0,41.0,39.0,38.0,39.0,56.0,40.0,68.0,53.0,52.0,35.0,69.0,62.0,50.0,55.0,57.0,56.0,50.0,54.0,59.0,58.0,45.0,47.0,38.0,34.0,41.0,32.0,42.0,39.0,40.0,42.0,47.0,44.0,63.0,59.0,54.0,47.0,59.0,60.0,62.0,46.0,35.0,42.0,48.0,42.0,50.0,32.0,39.0,35.0,33.0,40.0,37.0,25.0,28.0,36.0,29.0,26.0,25.0,21.0,23.0,26.0,16.0,11.0,7.0,5.0,9.0,8.0,12.0,5.0,2.0,3.0,4.0,1.0,3.0 C86037,42.0,53.0,56.0,73.0,56.0,56.0,60.0,61.0,83.0,47.0,70.0,57.0,70.0,69.0,57.0,47.0,66.0,54.0,67.0,64.0,66.0,60.0,49.0,53.0,56.0,50.0,69.0,61.0,62.0,45.0,57.0,54.0,58.0,83.0,57.0,58.0,59.0,70.0,67.0,68.0,62.0,63.0,50.0,41.0,46.0,53.0,53.0,43.0,49.0,45.0,52.0,60.0,54.0,65.0,48.0,67.0,61.0,49.0,59.0,76.0,60.0,65.0,58.0,54.0,42.0,55.0,48.0,45.0,52.0,56.0,49.0,40.0,46.0,42.0,53.0,67.0,52.0,57.0,45.0,32.0,37.0,33.0,23.0,27.0,18.0,16.0,24.0,11.0,13.0,15.0,10.0,6.0,4.0,4.0,1.0,8.0 C86038,52.0,48.0,48.0,67.0,39.0,53.0,47.0,49.0,55.0,59.0,51.0,60.0,44.0,63.0,45.0,67.0,45.0,60.0,46.0,53.0,40.0,45.0,45.0,55.0,61.0,54.0,53.0,72.0,52.0,55.0,65.0,67.0,59.0,57.0,65.0,62.0,63.0,57.0,59.0,74.0,57.0,49.0,45.0,68.0,51.0,62.0,49.0,49.0,46.0,45.0,51.0,54.0,58.0,58.0,72.0,64.0,70.0,65.0,76.0,85.0,72.0,63.0,81.0,63.0,70.0,59.0,53.0,50.0,34.0,55.0,41.0,38.0,36.0,27.0,27.0,34.0,36.0,35.0,37.0,23.0,25.0,30.0,24.0,16.0,13.0,15.0,15.0,13.0,14.0,11.0,6.0,3.0,6.0,1.0,1.0,2.0 C86605,36.0,38.0,40.0,45.0,55.0,53.0,36.0,48.0,45.0,49.0,44.0,46.0,37.0,44.0,62.0,43.0,53.0,52.0,37.0,43.0,30.0,50.0,38.0,40.0,48.0,44.0,37.0,42.0,38.0,48.0,53.0,54.0,49.0,68.0,72.0,63.0,41.0,45.0,63.0,64.0,62.0,56.0,60.0,54.0,58.0,57.0,40.0,37.0,37.0,49.0,49.0,52.0,45.0,58.0,71.0,43.0,74.0,59.0,62.0,66.0,62.0,58.0,45.0,45.0,64.0,55.0,50.0,35.0,43.0,51.0,36.0,29.0,36.0,32.0,33.0,37.0,36.0,34.0,28.0,26.0,15.0,25.0,15.0,19.0,16.0,8.0,10.0,8.0,7.0,4.0,3.0,4.0,,1.0,1.0,1.0 C86606,8.0,6.0,13.0,7.0,7.0,11.0,12.0,12.0,13.0,15.0,23.0,15.0,9.0,13.0,12.0,20.0,13.0,13.0,16.0,13.0,11.0,10.0,7.0,10.0,10.0,7.0,12.0,15.0,9.0,16.0,11.0,14.0,11.0,10.0,4.0,14.0,14.0,8.0,18.0,14.0,11.0,19.0,20.0,16.0,14.0,13.0,14.0,10.0,10.0,15.0,15.0,11.0,19.0,15.0,21.0,13.0,26.0,21.0,20.0,14.0,23.0,18.0,23.0,20.0,11.0,9.0,24.0,19.0,21.0,20.0,19.0,15.0,12.0,18.0,11.0,10.0,11.0,19.0,11.0,8.0,9.0,8.0,9.0,11.0,3.0,4.0,6.0,4.0,5.0,1.0,4.0,2.0,3.0,1.0,1.0,1.0 C86609,83.0,82.0,98.0,120.0,126.0,117.0,131.0,134.0,141.0,151.0,124.0,127.0,164.0,135.0,135.0,161.0,142.0,122.0,146.0,96.0,136.0,105.0,86.0,118.0,98.0,104.0,115.0,111.0,117.0,149.0,123.0,161.0,142.0,152.0,154.0,146.0,150.0,177.0,156.0,170.0,158.0,163.0,136.0,145.0,134.0,132.0,140.0,124.0,128.0,125.0,118.0,100.0,120.0,128.0,141.0,135.0,127.0,109.0,128.0,120.0,121.0,143.0,133.0,126.0,117.0,112.0,102.0,107.0,101.0,98.0,86.0,106.0,87.0,82.0,87.0,72.0,94.0,97.0,84.0,41.0,52.0,45.0,45.0,33.0,35.0,30.0,22.0,15.0,14.0,13.0,11.0,13.0,5.0,6.0,2.0,10.0 C86611,28.0,37.0,31.0,31.0,23.0,40.0,38.0,42.0,37.0,41.0,39.0,46.0,34.0,36.0,31.0,46.0,35.0,38.0,42.0,46.0,40.0,29.0,29.0,32.0,34.0,38.0,24.0,40.0,38.0,38.0,33.0,37.0,38.0,53.0,39.0,43.0,53.0,42.0,39.0,32.0,39.0,33.0,42.0,32.0,50.0,31.0,40.0,39.0,37.0,33.0,29.0,44.0,48.0,44.0,50.0,47.0,62.0,54.0,54.0,49.0,50.0,64.0,46.0,51.0,37.0,50.0,30.0,44.0,41.0,35.0,40.0,32.0,39.0,30.0,32.0,32.0,28.0,26.0,21.0,22.0,28.0,22.0,18.0,11.0,12.0,17.0,12.0,8.0,6.0,9.0,5.0,5.0,3.0,4.0,3.0,1.0 C86614,34.0,41.0,57.0,50.0,56.0,53.0,65.0,58.0,49.0,54.0,65.0,64.0,81.0,60.0,64.0,57.0,68.0,63.0,54.0,59.0,58.0,46.0,57.0,45.0,33.0,41.0,73.0,52.0,57.0,68.0,55.0,62.0,77.0,66.0,76.0,72.0,72.0,78.0,78.0,64.0,63.0,71.0,60.0,51.0,58.0,50.0,58.0,54.0,52.0,46.0,57.0,37.0,58.0,52.0,60.0,67.0,76.0,66.0,68.0,74.0,64.0,65.0,75.0,61.0,67.0,40.0,51.0,54.0,56.0,57.0,54.0,48.0,48.0,43.0,42.0,32.0,44.0,37.0,46.0,26.0,42.0,30.0,31.0,15.0,17.0,16.0,17.0,13.0,12.0,11.0,2.0,3.0,8.0,2.0,2.0,4.0 C86616,21.0,21.0,31.0,21.0,18.0,21.0,24.0,15.0,26.0,20.0,28.0,33.0,25.0,25.0,30.0,24.0,27.0,34.0,19.0,23.0,18.0,24.0,25.0,19.0,19.0,17.0,25.0,27.0,19.0,31.0,35.0,26.0,26.0,29.0,28.0,28.0,33.0,25.0,19.0,29.0,23.0,26.0,23.0,28.0,29.0,21.0,21.0,11.0,18.0,16.0,22.0,18.0,27.0,20.0,23.0,30.0,24.0,37.0,26.0,25.0,20.0,25.0,21.0,19.0,25.0,18.0,28.0,15.0,23.0,21.0,6.0,20.0,23.0,20.0,11.0,12.0,14.0,10.0,12.0,11.0,13.0,11.0,7.0,6.0,3.0,3.0,4.0,3.0,6.0,1.0,,3.0,,2.0,, C86621,16.0,21.0,21.0,19.0,29.0,34.0,24.0,28.0,28.0,40.0,31.0,34.0,37.0,38.0,32.0,28.0,32.0,40.0,25.0,27.0,29.0,35.0,23.0,32.0,25.0,32.0,33.0,25.0,34.0,35.0,35.0,26.0,29.0,37.0,31.0,37.0,26.0,30.0,33.0,39.0,39.0,31.0,33.0,27.0,28.0,28.0,27.0,22.0,19.0,26.0,23.0,32.0,23.0,28.0,27.0,30.0,27.0,29.0,32.0,33.0,27.0,26.0,33.0,29.0,27.0,21.0,23.0,29.0,26.0,19.0,30.0,19.0,21.0,20.0,11.0,17.0,17.0,17.0,17.0,11.0,7.0,8.0,8.0,5.0,6.0,3.0,5.0,4.0,3.0,1.0,4.0,3.0,2.0,1.0,1.0, C86625,10.0,9.0,11.0,13.0,10.0,7.0,11.0,11.0,13.0,8.0,7.0,12.0,12.0,12.0,12.0,7.0,21.0,7.0,9.0,7.0,9.0,7.0,11.0,8.0,10.0,12.0,13.0,16.0,12.0,14.0,12.0,13.0,11.0,8.0,12.0,12.0,13.0,13.0,17.0,17.0,13.0,8.0,8.0,7.0,13.0,16.0,11.0,5.0,10.0,10.0,11.0,14.0,12.0,16.0,14.0,16.0,18.0,16.0,8.0,10.0,5.0,13.0,14.0,12.0,15.0,6.0,9.0,7.0,4.0,7.0,2.0,7.0,5.0,3.0,6.0,5.0,4.0,8.0,6.0,3.0,4.0,4.0,4.0,4.0,3.0,1.0,2.0,4.0,2.0,,1.0,,,,,1.0 C86626,8.0,12.0,10.0,16.0,14.0,17.0,15.0,16.0,10.0,10.0,8.0,11.0,9.0,15.0,14.0,15.0,12.0,25.0,11.0,20.0,18.0,11.0,17.0,17.0,16.0,15.0,14.0,15.0,22.0,13.0,15.0,14.0,26.0,18.0,21.0,19.0,15.0,16.0,11.0,21.0,16.0,17.0,21.0,10.0,23.0,15.0,11.0,18.0,19.0,19.0,15.0,21.0,13.0,12.0,17.0,19.0,28.0,17.0,25.0,19.0,22.0,16.0,21.0,14.0,16.0,20.0,13.0,18.0,16.0,18.0,14.0,8.0,9.0,13.0,13.0,11.0,7.0,9.0,7.0,8.0,5.0,7.0,4.0,9.0,4.0,3.0,5.0,4.0,3.0,2.0,4.0,4.0,2.0,2.0,1.0,3.0 C87002,84.0,90.0,106.0,103.0,94.0,110.0,107.0,117.0,113.0,114.0,105.0,115.0,117.0,128.0,108.0,127.0,133.0,122.0,133.0,126.0,115.0,138.0,109.0,114.0,91.0,122.0,115.0,111.0,131.0,113.0,119.0,114.0,125.0,153.0,147.0,143.0,133.0,124.0,132.0,134.0,119.0,121.0,129.0,134.0,102.0,129.0,114.0,101.0,95.0,103.0,120.0,119.0,137.0,161.0,163.0,150.0,158.0,148.0,176.0,159.0,161.0,135.0,138.0,136.0,149.0,140.0,134.0,115.0,125.0,92.0,104.0,116.0,111.0,106.0,112.0,113.0,115.0,136.0,118.0,84.0,103.0,92.0,70.0,57.0,46.0,43.0,47.0,31.0,23.0,20.0,18.0,7.0,12.0,5.0,5.0,7.0 C87003,57.0,71.0,80.0,75.0,68.0,56.0,81.0,73.0,80.0,76.0,80.0,79.0,72.0,88.0,81.0,71.0,85.0,84.0,83.0,64.0,86.0,77.0,79.0,77.0,72.0,69.0,93.0,90.0,91.0,97.0,87.0,100.0,89.0,88.0,70.0,94.0,101.0,91.0,85.0,85.0,88.0,76.0,93.0,84.0,83.0,74.0,63.0,67.0,68.0,66.0,71.0,69.0,69.0,95.0,70.0,80.0,73.0,75.0,76.0,68.0,63.0,75.0,62.0,71.0,70.0,61.0,45.0,69.0,71.0,50.0,53.0,36.0,42.0,55.0,36.0,52.0,45.0,33.0,26.0,30.0,35.0,27.0,27.0,15.0,14.0,17.0,12.0,9.0,8.0,8.0,8.0,7.0,3.0,1.0,2.0,4.0 C87004,42.0,55.0,60.0,58.0,63.0,65.0,58.0,70.0,56.0,71.0,70.0,80.0,68.0,71.0,75.0,77.0,84.0,71.0,72.0,67.0,58.0,57.0,61.0,66.0,54.0,66.0,55.0,73.0,57.0,59.0,60.0,76.0,67.0,60.0,78.0,61.0,64.0,66.0,60.0,74.0,70.0,62.0,68.0,66.0,88.0,77.0,76.0,53.0,55.0,79.0,69.0,85.0,87.0,75.0,97.0,96.0,89.0,103.0,84.0,76.0,84.0,83.0,92.0,85.0,78.0,61.0,57.0,62.0,67.0,60.0,46.0,66.0,57.0,53.0,56.0,49.0,59.0,78.0,61.0,54.0,69.0,46.0,43.0,34.0,31.0,17.0,32.0,26.0,22.0,9.0,11.0,13.0,7.0,3.0,3.0,6.0 C87005,89.0,101.0,87.0,129.0,119.0,107.0,117.0,115.0,110.0,109.0,112.0,116.0,105.0,104.0,123.0,136.0,125.0,131.0,130.0,115.0,108.0,99.0,143.0,126.0,117.0,121.0,127.0,124.0,124.0,114.0,135.0,141.0,158.0,149.0,152.0,147.0,133.0,164.0,144.0,154.0,152.0,149.0,151.0,138.0,136.0,115.0,106.0,96.0,105.0,100.0,111.0,102.0,104.0,114.0,142.0,129.0,127.0,130.0,150.0,103.0,117.0,111.0,118.0,108.0,102.0,107.0,122.0,102.0,81.0,87.0,87.0,76.0,73.0,73.0,60.0,65.0,58.0,72.0,70.0,64.0,66.0,46.0,46.0,30.0,42.0,37.0,22.0,20.0,22.0,21.0,16.0,12.0,9.0,6.0,3.0,13.0 C87006,80.0,97.0,82.0,84.0,81.0,100.0,83.0,98.0,104.0,93.0,92.0,89.0,89.0,102.0,106.0,102.0,90.0,107.0,72.0,82.0,83.0,70.0,78.0,65.0,85.0,79.0,77.0,92.0,119.0,114.0,106.0,101.0,134.0,112.0,107.0,98.0,111.0,107.0,110.0,98.0,91.0,94.0,96.0,101.0,73.0,93.0,79.0,74.0,66.0,73.0,98.0,82.0,105.0,109.0,94.0,100.0,111.0,100.0,97.0,100.0,102.0,106.0,94.0,100.0,96.0,85.0,78.0,72.0,82.0,65.0,76.0,68.0,67.0,58.0,52.0,78.0,53.0,64.0,64.0,50.0,52.0,54.0,32.0,21.0,20.0,39.0,22.0,19.0,20.0,12.0,8.0,11.0,7.0,,6.0,5.0 C87007,43.0,51.0,50.0,51.0,65.0,47.0,45.0,67.0,60.0,61.0,58.0,59.0,62.0,54.0,60.0,53.0,68.0,71.0,63.0,48.0,49.0,58.0,53.0,56.0,41.0,50.0,57.0,50.0,83.0,51.0,59.0,61.0,70.0,60.0,73.0,69.0,66.0,70.0,71.0,59.0,66.0,54.0,58.0,71.0,77.0,74.0,73.0,68.0,70.0,55.0,61.0,58.0,91.0,85.0,91.0,96.0,85.0,79.0,85.0,84.0,73.0,96.0,77.0,81.0,71.0,74.0,65.0,76.0,69.0,66.0,70.0,58.0,66.0,67.0,65.0,67.0,64.0,66.0,61.0,55.0,73.0,48.0,51.0,43.0,29.0,37.0,29.0,21.0,21.0,11.0,15.0,12.0,11.0,5.0,3.0,10.0 C87008,56.0,71.0,79.0,73.0,87.0,89.0,98.0,82.0,94.0,103.0,100.0,92.0,112.0,113.0,116.0,101.0,108.0,114.0,82.0,72.0,97.0,71.0,75.0,78.0,69.0,74.0,82.0,85.0,91.0,97.0,82.0,93.0,111.0,91.0,109.0,116.0,85.0,115.0,89.0,84.0,110.0,99.0,113.0,98.0,114.0,93.0,84.0,96.0,100.0,99.0,83.0,92.0,99.0,102.0,107.0,121.0,114.0,117.0,123.0,117.0,107.0,115.0,119.0,103.0,98.0,85.0,89.0,109.0,82.0,83.0,76.0,82.0,86.0,76.0,70.0,87.0,78.0,99.0,96.0,69.0,80.0,41.0,57.0,34.0,35.0,44.0,26.0,21.0,22.0,17.0,17.0,14.0,13.0,6.0,2.0,6.0 C87009,53.0,44.0,57.0,49.0,40.0,67.0,77.0,59.0,68.0,64.0,68.0,66.0,63.0,68.0,63.0,67.0,79.0,76.0,84.0,65.0,59.0,58.0,52.0,55.0,63.0,61.0,62.0,81.0,53.0,49.0,61.0,71.0,73.0,92.0,74.0,87.0,78.0,72.0,67.0,72.0,57.0,80.0,62.0,68.0,72.0,79.0,73.0,71.0,64.0,72.0,68.0,53.0,81.0,82.0,75.0,77.0,74.0,78.0,81.0,79.0,86.0,78.0,44.0,63.0,64.0,51.0,51.0,51.0,54.0,42.0,29.0,45.0,36.0,34.0,43.0,37.0,38.0,43.0,40.0,32.0,46.0,40.0,33.0,22.0,27.0,25.0,13.0,24.0,16.0,10.0,10.0,3.0,5.0,3.0,5.0,5.0 C87010,23.0,23.0,21.0,27.0,35.0,30.0,26.0,37.0,37.0,39.0,38.0,38.0,43.0,31.0,31.0,28.0,38.0,27.0,29.0,29.0,26.0,16.0,29.0,22.0,23.0,24.0,33.0,33.0,40.0,42.0,32.0,29.0,23.0,46.0,28.0,44.0,42.0,36.0,32.0,39.0,50.0,42.0,41.0,35.0,39.0,39.0,31.0,32.0,31.0,22.0,18.0,29.0,31.0,26.0,48.0,25.0,35.0,31.0,30.0,38.0,29.0,29.0,27.0,20.0,18.0,32.0,22.0,20.0,12.0,13.0,18.0,16.0,14.0,23.0,13.0,16.0,12.0,18.0,16.0,13.0,26.0,7.0,9.0,10.0,5.0,10.0,3.0,4.0,6.0,6.0,1.0,1.0,4.0,,1.0,4.0 C87012,92.0,94.0,81.0,73.0,102.0,91.0,97.0,95.0,107.0,113.0,105.0,105.0,120.0,111.0,96.0,95.0,81.0,115.0,99.0,99.0,90.0,93.0,82.0,85.0,101.0,92.0,90.0,87.0,99.0,107.0,110.0,97.0,91.0,95.0,106.0,96.0,94.0,113.0,106.0,115.0,87.0,109.0,93.0,103.0,88.0,102.0,70.0,104.0,95.0,90.0,99.0,91.0,84.0,111.0,97.0,104.0,100.0,96.0,95.0,101.0,93.0,94.0,101.0,91.0,86.0,83.0,64.0,67.0,73.0,87.0,67.0,79.0,55.0,53.0,74.0,62.0,62.0,61.0,72.0,50.0,51.0,37.0,26.0,22.0,27.0,13.0,23.0,26.0,26.0,19.0,14.0,15.0,5.0,4.0,3.0,10.0 C87013,27.0,34.0,24.0,34.0,31.0,46.0,37.0,37.0,39.0,35.0,33.0,31.0,38.0,45.0,44.0,36.0,39.0,39.0,39.0,30.0,38.0,33.0,41.0,25.0,31.0,37.0,31.0,39.0,37.0,37.0,36.0,48.0,35.0,56.0,57.0,49.0,45.0,57.0,49.0,47.0,43.0,46.0,44.0,55.0,40.0,42.0,40.0,32.0,33.0,43.0,38.0,35.0,59.0,48.0,45.0,39.0,48.0,46.0,40.0,42.0,44.0,54.0,53.0,47.0,44.0,33.0,31.0,36.0,44.0,34.0,33.0,27.0,25.0,27.0,38.0,28.0,31.0,33.0,23.0,19.0,30.0,14.0,16.0,9.0,14.0,16.0,12.0,8.0,9.0,,3.0,3.0,1.0,1.0,2.0,2.0 C87014,68.0,68.0,80.0,68.0,63.0,62.0,79.0,67.0,62.0,73.0,45.0,60.0,53.0,52.0,59.0,43.0,57.0,48.0,43.0,35.0,39.0,32.0,33.0,22.0,46.0,52.0,57.0,45.0,74.0,65.0,97.0,82.0,82.0,95.0,83.0,91.0,94.0,87.0,84.0,64.0,90.0,79.0,60.0,71.0,61.0,53.0,48.0,45.0,44.0,41.0,45.0,56.0,48.0,68.0,63.0,58.0,49.0,60.0,45.0,43.0,57.0,47.0,59.0,40.0,36.0,42.0,36.0,39.0,40.0,39.0,21.0,29.0,27.0,29.0,24.0,25.0,22.0,17.0,25.0,27.0,13.0,20.0,18.0,10.0,13.0,10.0,7.0,11.0,2.0,7.0,2.0,1.0,5.0,,2.0,6.0 C87015,33.0,32.0,29.0,36.0,32.0,34.0,35.0,43.0,47.0,44.0,33.0,27.0,64.0,31.0,36.0,45.0,35.0,41.0,32.0,32.0,33.0,37.0,30.0,35.0,23.0,38.0,27.0,23.0,36.0,38.0,34.0,44.0,43.0,38.0,46.0,35.0,35.0,58.0,37.0,37.0,48.0,36.0,46.0,38.0,33.0,40.0,42.0,42.0,44.0,31.0,40.0,47.0,42.0,46.0,51.0,51.0,56.0,49.0,45.0,58.0,38.0,45.0,51.0,42.0,48.0,39.0,42.0,40.0,40.0,38.0,35.0,30.0,34.0,44.0,36.0,39.0,28.0,41.0,37.0,30.0,35.0,26.0,18.0,15.0,25.0,18.0,11.0,11.0,9.0,8.0,6.0,11.0,3.0,4.0,4.0,5.0 C87016,41.0,55.0,47.0,61.0,67.0,59.0,69.0,62.0,78.0,82.0,59.0,67.0,60.0,62.0,79.0,62.0,79.0,82.0,79.0,66.0,60.0,52.0,68.0,57.0,60.0,54.0,59.0,64.0,57.0,68.0,56.0,61.0,67.0,72.0,60.0,76.0,81.0,78.0,65.0,78.0,83.0,73.0,73.0,55.0,81.0,70.0,54.0,59.0,53.0,56.0,53.0,71.0,96.0,107.0,125.0,95.0,97.0,99.0,98.0,91.0,99.0,97.0,91.0,86.0,84.0,70.0,75.0,66.0,73.0,91.0,76.0,64.0,54.0,72.0,56.0,67.0,75.0,73.0,50.0,46.0,49.0,40.0,33.0,32.0,26.0,23.0,25.0,18.0,21.0,9.0,8.0,4.0,10.0,6.0,3.0,5.0 C87017,54.0,57.0,66.0,81.0,62.0,86.0,69.0,73.0,82.0,73.0,73.0,86.0,99.0,94.0,100.0,92.0,98.0,92.0,85.0,84.0,79.0,75.0,77.0,76.0,75.0,73.0,81.0,68.0,86.0,87.0,102.0,77.0,102.0,90.0,89.0,90.0,88.0,98.0,105.0,98.0,73.0,96.0,87.0,81.0,97.0,79.0,93.0,70.0,72.0,85.0,79.0,82.0,98.0,79.0,80.0,87.0,68.0,85.0,93.0,82.0,85.0,73.0,95.0,96.0,86.0,86.0,78.0,70.0,68.0,56.0,67.0,65.0,60.0,56.0,51.0,42.0,54.0,59.0,61.0,30.0,44.0,37.0,29.0,15.0,17.0,26.0,11.0,14.0,11.0,8.0,9.0,12.0,11.0,4.0,7.0,8.0 C87018,25.0,35.0,32.0,28.0,47.0,39.0,44.0,35.0,48.0,38.0,46.0,40.0,36.0,48.0,41.0,52.0,53.0,56.0,29.0,39.0,42.0,37.0,33.0,47.0,47.0,55.0,52.0,41.0,53.0,41.0,44.0,58.0,52.0,56.0,51.0,49.0,44.0,47.0,48.0,55.0,42.0,42.0,46.0,44.0,53.0,48.0,36.0,40.0,41.0,40.0,36.0,38.0,46.0,62.0,64.0,55.0,80.0,62.0,81.0,67.0,62.0,62.0,44.0,59.0,42.0,46.0,40.0,44.0,35.0,30.0,42.0,38.0,42.0,38.0,32.0,37.0,29.0,33.0,30.0,35.0,31.0,27.0,26.0,18.0,20.0,18.0,15.0,18.0,13.0,9.0,10.0,1.0,5.0,,1.0,1.0 C87020,20.0,24.0,21.0,23.0,21.0,18.0,25.0,24.0,27.0,20.0,31.0,24.0,25.0,25.0,27.0,23.0,26.0,26.0,19.0,27.0,22.0,32.0,22.0,25.0,29.0,36.0,23.0,20.0,37.0,25.0,39.0,37.0,41.0,38.0,38.0,49.0,41.0,33.0,30.0,37.0,32.0,25.0,32.0,40.0,28.0,30.0,27.0,21.0,32.0,24.0,26.0,31.0,36.0,48.0,31.0,51.0,43.0,44.0,46.0,41.0,34.0,47.0,30.0,49.0,48.0,37.0,44.0,44.0,29.0,24.0,38.0,22.0,29.0,26.0,22.0,16.0,15.0,26.0,21.0,23.0,24.0,18.0,15.0,14.0,8.0,11.0,12.0,11.0,8.0,2.0,6.0,1.0,2.0,2.0,1.0,4.0 C87022,47.0,49.0,45.0,62.0,57.0,48.0,48.0,60.0,62.0,48.0,56.0,46.0,46.0,61.0,56.0,48.0,59.0,35.0,45.0,49.0,47.0,41.0,26.0,49.0,43.0,44.0,48.0,54.0,49.0,49.0,53.0,56.0,72.0,64.0,52.0,87.0,63.0,65.0,56.0,71.0,56.0,53.0,57.0,54.0,58.0,49.0,51.0,32.0,53.0,44.0,43.0,46.0,48.0,52.0,80.0,73.0,69.0,47.0,63.0,56.0,42.0,56.0,45.0,59.0,56.0,46.0,35.0,36.0,36.0,43.0,34.0,36.0,28.0,25.0,32.0,36.0,30.0,30.0,31.0,33.0,23.0,19.0,17.0,16.0,16.0,17.0,15.0,17.0,8.0,8.0,5.0,6.0,6.0,7.0,1.0,6.0 C87024,23.0,29.0,26.0,29.0,22.0,24.0,16.0,26.0,29.0,28.0,22.0,28.0,24.0,21.0,29.0,20.0,20.0,28.0,31.0,13.0,16.0,18.0,20.0,19.0,22.0,33.0,29.0,33.0,30.0,28.0,34.0,28.0,35.0,35.0,35.0,45.0,32.0,29.0,35.0,28.0,30.0,28.0,25.0,26.0,30.0,34.0,17.0,23.0,21.0,18.0,30.0,23.0,29.0,21.0,34.0,23.0,27.0,29.0,31.0,22.0,31.0,15.0,30.0,27.0,26.0,19.0,21.0,25.0,27.0,16.0,17.0,21.0,13.0,13.0,16.0,18.0,13.0,16.0,9.0,10.0,12.0,11.0,5.0,5.0,6.0,2.0,2.0,2.0,3.0,4.0,1.0,4.0,2.0,1.0,,1.0 C87029,56.0,63.0,54.0,55.0,83.0,58.0,52.0,75.0,83.0,76.0,72.0,101.0,92.0,94.0,88.0,74.0,83.0,98.0,90.0,61.0,68.0,66.0,77.0,45.0,68.0,71.0,86.0,74.0,68.0,67.0,61.0,77.0,67.0,86.0,80.0,79.0,90.0,98.0,84.0,75.0,80.0,93.0,87.0,84.0,80.0,79.0,83.0,67.0,65.0,71.0,85.0,67.0,79.0,89.0,84.0,69.0,68.0,94.0,80.0,74.0,80.0,71.0,81.0,71.0,76.0,69.0,59.0,71.0,62.0,64.0,70.0,70.0,62.0,46.0,59.0,45.0,52.0,50.0,38.0,35.0,30.0,31.0,27.0,13.0,23.0,12.0,18.0,14.0,13.0,13.0,10.0,7.0,6.0,5.0,3.0,6.0 C87030,35.0,41.0,45.0,34.0,55.0,46.0,45.0,48.0,60.0,38.0,47.0,59.0,65.0,51.0,72.0,53.0,51.0,42.0,62.0,47.0,51.0,54.0,37.0,56.0,37.0,50.0,51.0,55.0,67.0,55.0,67.0,55.0,68.0,64.0,71.0,55.0,56.0,74.0,60.0,69.0,57.0,56.0,65.0,68.0,57.0,54.0,51.0,44.0,56.0,58.0,56.0,43.0,66.0,63.0,57.0,65.0,68.0,69.0,67.0,76.0,77.0,74.0,62.0,66.0,55.0,63.0,52.0,58.0,57.0,60.0,40.0,44.0,43.0,44.0,45.0,49.0,65.0,44.0,53.0,31.0,42.0,35.0,33.0,27.0,20.0,19.0,22.0,14.0,18.0,10.0,4.0,7.0,3.0,3.0,,3.0 C87031,18.0,20.0,21.0,25.0,27.0,18.0,28.0,29.0,33.0,29.0,24.0,30.0,19.0,27.0,24.0,24.0,26.0,21.0,14.0,17.0,19.0,23.0,16.0,28.0,23.0,16.0,21.0,22.0,29.0,17.0,38.0,28.0,28.0,33.0,36.0,30.0,24.0,30.0,32.0,33.0,42.0,28.0,34.0,21.0,21.0,26.0,17.0,16.0,17.0,22.0,16.0,21.0,24.0,22.0,24.0,25.0,25.0,29.0,23.0,33.0,30.0,26.0,23.0,34.0,24.0,20.0,23.0,27.0,23.0,28.0,15.0,31.0,18.0,19.0,18.0,11.0,19.0,19.0,17.0,5.0,15.0,17.0,8.0,12.0,7.0,7.0,9.0,3.0,5.0,3.0,2.0,2.0,4.0,1.0,,1.0 C87603,27.0,33.0,26.0,23.0,13.0,21.0,17.0,18.0,25.0,21.0,22.0,26.0,16.0,19.0,25.0,26.0,26.0,20.0,14.0,20.0,14.0,22.0,25.0,23.0,25.0,28.0,28.0,25.0,26.0,36.0,33.0,30.0,34.0,36.0,40.0,29.0,41.0,32.0,36.0,33.0,36.0,33.0,32.0,32.0,23.0,27.0,23.0,20.0,28.0,32.0,23.0,22.0,26.0,24.0,29.0,45.0,37.0,26.0,30.0,29.0,30.0,31.0,34.0,28.0,14.0,30.0,19.0,16.0,14.0,8.0,11.0,24.0,17.0,12.0,11.0,13.0,19.0,17.0,13.0,10.0,9.0,10.0,8.0,7.0,3.0,3.0,7.0,2.0,6.0,8.0,1.0,1.0,2.0,3.0,,1.0 C87604,21.0,21.0,25.0,38.0,33.0,30.0,34.0,28.0,33.0,28.0,32.0,46.0,40.0,35.0,35.0,39.0,33.0,34.0,41.0,29.0,34.0,27.0,26.0,26.0,28.0,37.0,30.0,32.0,28.0,32.0,34.0,39.0,40.0,35.0,44.0,40.0,40.0,43.0,42.0,36.0,40.0,45.0,46.0,37.0,39.0,34.0,34.0,45.0,35.0,29.0,37.0,46.0,36.0,45.0,55.0,39.0,46.0,38.0,46.0,44.0,45.0,44.0,41.0,37.0,38.0,32.0,27.0,32.0,43.0,39.0,38.0,34.0,39.0,35.0,26.0,25.0,25.0,25.0,30.0,14.0,20.0,16.0,17.0,8.0,8.0,15.0,11.0,11.0,2.0,3.0,5.0,2.0,5.0,2.0,1.0,3.0 C87608,46.0,28.0,38.0,35.0,38.0,38.0,46.0,54.0,55.0,42.0,55.0,55.0,51.0,56.0,55.0,62.0,48.0,58.0,53.0,61.0,61.0,55.0,54.0,48.0,38.0,55.0,44.0,61.0,50.0,48.0,44.0,57.0,58.0,57.0,46.0,39.0,52.0,54.0,62.0,54.0,54.0,52.0,45.0,43.0,53.0,39.0,55.0,45.0,45.0,49.0,28.0,32.0,42.0,32.0,25.0,31.0,32.0,36.0,27.0,32.0,25.0,20.0,18.0,22.0,21.0,13.0,10.0,12.0,15.0,14.0,10.0,7.0,11.0,11.0,11.0,8.0,9.0,10.0,3.0,4.0,3.0,4.0,1.0,8.0,1.0,6.0,5.0,2.0,4.0,1.0,2.0,1.0,1.0,4.0,1.0, C87616,23.0,21.0,30.0,39.0,22.0,32.0,35.0,41.0,32.0,29.0,35.0,36.0,34.0,40.0,48.0,43.0,47.0,42.0,38.0,26.0,30.0,30.0,31.0,36.0,41.0,34.0,43.0,25.0,36.0,38.0,46.0,35.0,41.0,47.0,44.0,31.0,40.0,39.0,36.0,44.0,43.0,26.0,35.0,30.0,28.0,38.0,31.0,28.0,30.0,34.0,37.0,45.0,45.0,57.0,42.0,50.0,54.0,41.0,41.0,41.0,45.0,52.0,46.0,39.0,50.0,46.0,41.0,53.0,36.0,33.0,32.0,33.0,27.0,32.0,33.0,27.0,30.0,26.0,28.0,19.0,31.0,13.0,9.0,10.0,10.0,13.0,9.0,10.0,6.0,7.0,3.0,4.0,3.0,1.0,,5.0 C87620,38.0,34.0,49.0,33.0,50.0,46.0,49.0,41.0,51.0,59.0,41.0,41.0,35.0,57.0,53.0,46.0,60.0,41.0,42.0,54.0,30.0,38.0,45.0,40.0,42.0,44.0,30.0,43.0,48.0,37.0,52.0,36.0,49.0,54.0,43.0,68.0,58.0,51.0,50.0,41.0,54.0,35.0,39.0,47.0,47.0,53.0,34.0,37.0,48.0,28.0,28.0,43.0,47.0,53.0,49.0,35.0,49.0,47.0,48.0,56.0,48.0,45.0,43.0,56.0,39.0,37.0,38.0,45.0,34.0,28.0,38.0,35.0,23.0,42.0,34.0,23.0,25.0,44.0,23.0,23.0,18.0,17.0,10.0,15.0,7.0,9.0,10.0,9.0,11.0,5.0,7.0,4.0,3.0,2.0,1.0,2.0 C87622,61.0,59.0,61.0,75.0,64.0,56.0,79.0,70.0,78.0,77.0,56.0,64.0,87.0,74.0,75.0,51.0,66.0,87.0,75.0,90.0,87.0,77.0,80.0,73.0,110.0,101.0,106.0,136.0,143.0,107.0,103.0,109.0,136.0,120.0,130.0,147.0,114.0,105.0,96.0,87.0,93.0,91.0,101.0,80.0,81.0,68.0,86.0,80.0,68.0,71.0,65.0,75.0,69.0,71.0,53.0,53.0,53.0,57.0,58.0,60.0,50.0,38.0,48.0,43.0,49.0,44.0,48.0,40.0,26.0,28.0,20.0,23.0,28.0,25.0,31.0,18.0,28.0,15.0,16.0,10.0,17.0,16.0,16.0,4.0,7.0,14.0,5.0,6.0,2.0,4.0,1.0,2.0,1.0,1.0,, C88005,84.0,75.0,94.0,72.0,81.0,72.0,93.0,86.0,88.0,78.0,93.0,79.0,77.0,59.0,71.0,67.0,64.0,74.0,63.0,47.0,44.0,55.0,58.0,68.0,82.0,97.0,91.0,108.0,125.0,147.0,150.0,140.0,120.0,148.0,143.0,140.0,144.0,161.0,131.0,134.0,138.0,136.0,126.0,133.0,122.0,124.0,100.0,96.0,91.0,110.0,89.0,95.0,88.0,93.0,114.0,95.0,116.0,114.0,99.0,112.0,93.0,110.0,84.0,96.0,95.0,95.0,85.0,101.0,74.0,72.0,64.0,77.0,64.0,67.0,58.0,65.0,50.0,81.0,60.0,44.0,57.0,54.0,39.0,41.0,29.0,21.0,34.0,24.0,24.0,16.0,15.0,17.0,8.0,5.0,4.0,7.0 C88006,39.0,30.0,33.0,51.0,47.0,33.0,50.0,35.0,42.0,41.0,41.0,40.0,35.0,36.0,37.0,32.0,41.0,38.0,41.0,23.0,37.0,33.0,27.0,32.0,41.0,30.0,40.0,48.0,46.0,40.0,42.0,68.0,66.0,66.0,58.0,71.0,64.0,44.0,47.0,55.0,59.0,45.0,41.0,38.0,42.0,38.0,34.0,41.0,29.0,30.0,32.0,35.0,36.0,40.0,33.0,26.0,36.0,44.0,29.0,28.0,25.0,30.0,23.0,24.0,17.0,21.0,18.0,16.0,20.0,22.0,19.0,24.0,20.0,10.0,10.0,17.0,16.0,10.0,13.0,11.0,7.0,9.0,12.0,10.0,10.0,6.0,5.0,3.0,7.0,3.0,4.0,,2.0,3.0,,2.0 C88007,59.0,63.0,49.0,52.0,69.0,67.0,74.0,65.0,63.0,63.0,74.0,54.0,77.0,65.0,73.0,62.0,61.0,69.0,171.0,332.0,410.0,499.0,475.0,553.0,731.0,829.0,798.0,890.0,794.0,776.0,669.0,640.0,583.0,492.0,460.0,373.0,328.0,288.0,253.0,258.0,235.0,203.0,218.0,199.0,198.0,209.0,147.0,151.0,145.0,133.0,127.0,118.0,90.0,107.0,92.0,95.0,93.0,64.0,62.0,45.0,44.0,38.0,47.0,48.0,33.0,33.0,39.0,37.0,31.0,30.0,26.0,26.0,25.0,22.0,32.0,22.0,23.0,18.0,21.0,9.0,14.0,12.0,8.0,3.0,14.0,6.0,8.0,5.0,10.0,5.0,2.0,5.0,3.0,,3.0,5.0 C88008,86.0,93.0,108.0,99.0,87.0,99.0,99.0,101.0,107.0,116.0,122.0,112.0,110.0,123.0,100.0,126.0,122.0,104.0,103.0,110.0,115.0,96.0,115.0,108.0,105.0,101.0,108.0,132.0,125.0,129.0,134.0,120.0,116.0,108.0,132.0,130.0,135.0,123.0,128.0,115.0,125.0,105.0,99.0,120.0,113.0,122.0,83.0,97.0,91.0,91.0,95.0,78.0,88.0,85.0,103.0,96.0,86.0,79.0,77.0,84.0,71.0,70.0,65.0,76.0,76.0,58.0,60.0,47.0,51.0,46.0,54.0,44.0,30.0,39.0,22.0,39.0,19.0,27.0,28.0,25.0,18.0,21.0,14.0,15.0,18.0,13.0,12.0,16.0,8.0,9.0,7.0,10.0,6.0,1.0,3.0,6.0 C88009,38.0,44.0,39.0,38.0,38.0,40.0,33.0,41.0,41.0,39.0,41.0,37.0,38.0,37.0,56.0,41.0,37.0,35.0,45.0,40.0,41.0,29.0,22.0,42.0,38.0,38.0,33.0,37.0,28.0,41.0,30.0,49.0,43.0,41.0,58.0,32.0,53.0,40.0,38.0,34.0,30.0,40.0,39.0,37.0,45.0,36.0,28.0,33.0,42.0,47.0,29.0,28.0,48.0,43.0,34.0,46.0,44.0,40.0,39.0,42.0,37.0,48.0,41.0,35.0,39.0,27.0,40.0,34.0,27.0,25.0,29.0,16.0,26.0,19.0,13.0,24.0,17.0,21.0,30.0,11.0,30.0,16.0,14.0,13.0,11.0,9.0,7.0,3.0,7.0,10.0,6.0,2.0,2.0,,1.0,3.0 C88010,46.0,54.0,47.0,62.0,50.0,62.0,59.0,52.0,70.0,66.0,73.0,59.0,76.0,80.0,68.0,90.0,81.0,78.0,82.0,83.0,75.0,70.0,51.0,79.0,62.0,64.0,89.0,77.0,88.0,71.0,88.0,80.0,65.0,85.0,79.0,84.0,79.0,89.0,75.0,83.0,83.0,96.0,61.0,79.0,93.0,97.0,82.0,76.0,75.0,72.0,83.0,72.0,82.0,99.0,115.0,114.0,112.0,114.0,103.0,129.0,108.0,98.0,102.0,88.0,112.0,99.0,98.0,80.0,89.0,91.0,100.0,86.0,99.0,81.0,80.0,81.0,101.0,106.0,94.0,61.0,80.0,64.0,56.0,40.0,40.0,43.0,33.0,27.0,25.0,24.0,9.0,7.0,8.0,8.0,9.0,8.0 C88011,33.0,29.0,31.0,40.0,29.0,27.0,34.0,33.0,34.0,47.0,42.0,32.0,39.0,41.0,39.0,39.0,30.0,33.0,28.0,21.0,39.0,35.0,29.0,26.0,27.0,38.0,26.0,34.0,34.0,29.0,33.0,38.0,29.0,38.0,31.0,35.0,33.0,41.0,45.0,40.0,39.0,34.0,29.0,33.0,39.0,27.0,26.0,39.0,15.0,30.0,25.0,22.0,24.0,27.0,29.0,31.0,30.0,31.0,19.0,28.0,28.0,25.0,34.0,28.0,23.0,19.0,23.0,25.0,14.0,22.0,17.0,11.0,13.0,19.0,8.0,8.0,13.0,18.0,16.0,8.0,11.0,11.0,6.0,6.0,11.0,9.0,7.0,3.0,7.0,2.0,5.0,1.0,1.0,1.0,,1.0 C88014,51.0,48.0,66.0,56.0,63.0,75.0,58.0,73.0,76.0,67.0,80.0,67.0,68.0,78.0,82.0,73.0,57.0,61.0,71.0,62.0,55.0,55.0,47.0,55.0,39.0,47.0,54.0,59.0,53.0,54.0,62.0,71.0,58.0,72.0,80.0,84.0,72.0,62.0,65.0,55.0,59.0,80.0,56.0,62.0,57.0,54.0,70.0,58.0,61.0,53.0,53.0,61.0,47.0,64.0,52.0,61.0,49.0,71.0,64.0,49.0,61.0,56.0,53.0,46.0,46.0,42.0,48.0,37.0,43.0,31.0,39.0,35.0,27.0,30.0,22.0,28.0,30.0,30.0,26.0,16.0,19.0,23.0,19.0,11.0,10.0,18.0,12.0,13.0,5.0,8.0,5.0,5.0,2.0,2.0,4.0,5.0 C88015,89.0,90.0,101.0,90.0,102.0,110.0,125.0,102.0,117.0,127.0,121.0,97.0,119.0,111.0,115.0,119.0,118.0,113.0,102.0,118.0,109.0,110.0,99.0,81.0,124.0,106.0,90.0,115.0,111.0,122.0,118.0,118.0,114.0,121.0,119.0,113.0,118.0,127.0,100.0,120.0,120.0,103.0,101.0,113.0,104.0,116.0,96.0,109.0,95.0,93.0,101.0,131.0,111.0,134.0,139.0,123.0,133.0,148.0,139.0,146.0,159.0,129.0,131.0,120.0,127.0,120.0,115.0,98.0,108.0,82.0,91.0,81.0,86.0,89.0,83.0,107.0,91.0,94.0,82.0,63.0,81.0,73.0,76.0,37.0,40.0,44.0,43.0,22.0,42.0,24.0,27.0,15.0,12.0,10.0,6.0,14.0 C88016,57.0,63.0,76.0,79.0,81.0,88.0,80.0,79.0,97.0,81.0,83.0,83.0,97.0,92.0,90.0,79.0,83.0,77.0,77.0,80.0,67.0,67.0,66.0,64.0,73.0,69.0,57.0,68.0,64.0,68.0,82.0,74.0,87.0,98.0,89.0,95.0,80.0,92.0,94.0,109.0,104.0,92.0,77.0,108.0,98.0,92.0,104.0,96.0,80.0,82.0,111.0,71.0,104.0,74.0,94.0,105.0,101.0,91.0,105.0,88.0,105.0,86.0,88.0,79.0,85.0,84.0,80.0,72.0,61.0,56.0,54.0,65.0,53.0,66.0,64.0,71.0,66.0,56.0,76.0,52.0,60.0,52.0,35.0,33.0,27.0,33.0,27.0,22.0,24.0,19.0,22.0,18.0,12.0,9.0,7.0,9.0 C88018,30.0,34.0,43.0,26.0,32.0,40.0,47.0,48.0,34.0,44.0,44.0,40.0,34.0,42.0,36.0,47.0,41.0,46.0,38.0,44.0,27.0,34.0,34.0,34.0,42.0,52.0,51.0,54.0,62.0,68.0,57.0,49.0,73.0,67.0,79.0,67.0,68.0,83.0,75.0,63.0,64.0,57.0,52.0,55.0,56.0,69.0,57.0,50.0,55.0,55.0,42.0,63.0,58.0,54.0,82.0,75.0,61.0,73.0,64.0,71.0,78.0,72.0,66.0,53.0,54.0,58.0,53.0,46.0,42.0,38.0,39.0,44.0,37.0,50.0,33.0,36.0,33.0,48.0,51.0,32.0,33.0,32.0,27.0,17.0,21.0,21.0,18.0,15.0,17.0,11.0,3.0,9.0,6.0,4.0,3.0,10.0 C88019,44.0,60.0,47.0,43.0,65.0,50.0,62.0,56.0,65.0,56.0,68.0,72.0,60.0,62.0,83.0,82.0,72.0,72.0,66.0,53.0,59.0,56.0,71.0,43.0,46.0,71.0,57.0,51.0,57.0,48.0,61.0,66.0,67.0,65.0,64.0,71.0,65.0,72.0,77.0,56.0,74.0,58.0,63.0,68.0,48.0,60.0,51.0,48.0,52.0,59.0,45.0,54.0,51.0,54.0,45.0,55.0,57.0,62.0,42.0,52.0,44.0,65.0,47.0,38.0,45.0,35.0,42.0,29.0,35.0,31.0,35.0,31.0,24.0,28.0,24.0,23.0,21.0,27.0,31.0,17.0,30.0,15.0,15.0,9.0,5.0,8.0,7.0,9.0,5.0,9.0,10.0,1.0,1.0,3.0,1.0,2.0 C88020,35.0,35.0,40.0,43.0,52.0,50.0,59.0,47.0,60.0,58.0,67.0,54.0,66.0,74.0,58.0,48.0,52.0,63.0,48.0,46.0,57.0,48.0,40.0,39.0,41.0,41.0,55.0,44.0,59.0,54.0,57.0,63.0,67.0,58.0,65.0,70.0,70.0,63.0,70.0,61.0,79.0,59.0,53.0,44.0,56.0,54.0,56.0,48.0,36.0,37.0,45.0,41.0,58.0,43.0,32.0,45.0,49.0,48.0,45.0,47.0,49.0,40.0,39.0,37.0,35.0,31.0,40.0,26.0,19.0,24.0,24.0,24.0,25.0,11.0,20.0,19.0,16.0,19.0,16.0,15.0,10.0,12.0,6.0,7.0,8.0,8.0,6.0,6.0,5.0,4.0,2.0,2.0,3.0,2.0,1.0,2.0 C88021,37.0,31.0,23.0,38.0,42.0,35.0,39.0,31.0,37.0,38.0,42.0,36.0,44.0,32.0,40.0,42.0,31.0,35.0,27.0,29.0,27.0,28.0,32.0,40.0,31.0,50.0,48.0,58.0,53.0,52.0,44.0,54.0,65.0,76.0,68.0,56.0,62.0,62.0,58.0,54.0,51.0,57.0,44.0,53.0,33.0,44.0,47.0,41.0,39.0,44.0,39.0,36.0,51.0,57.0,41.0,54.0,60.0,47.0,66.0,56.0,52.0,53.0,50.0,50.0,34.0,47.0,61.0,72.0,54.0,49.0,36.0,52.0,44.0,37.0,33.0,38.0,46.0,34.0,48.0,29.0,30.0,25.0,20.0,15.0,19.0,20.0,18.0,12.0,14.0,10.0,13.0,5.0,3.0,5.0,4.0,5.0 C88022,27.0,28.0,28.0,28.0,35.0,14.0,20.0,28.0,23.0,23.0,32.0,17.0,30.0,24.0,23.0,17.0,24.0,25.0,23.0,27.0,28.0,24.0,19.0,12.0,17.0,29.0,30.0,26.0,31.0,41.0,40.0,40.0,39.0,41.0,25.0,40.0,42.0,27.0,41.0,34.0,26.0,34.0,25.0,39.0,29.0,34.0,28.0,25.0,24.0,30.0,26.0,34.0,31.0,26.0,40.0,39.0,34.0,28.0,38.0,32.0,33.0,39.0,29.0,31.0,38.0,29.0,40.0,41.0,25.0,31.0,25.0,37.0,28.0,33.0,26.0,29.0,31.0,34.0,26.0,30.0,22.0,23.0,17.0,10.0,13.0,18.0,12.0,15.0,6.0,11.0,7.0,7.0,2.0,3.0,1.0,4.0 C88023,37.0,52.0,40.0,45.0,38.0,41.0,47.0,51.0,51.0,58.0,60.0,62.0,63.0,49.0,57.0,58.0,59.0,74.0,66.0,61.0,38.0,47.0,56.0,42.0,47.0,48.0,62.0,64.0,56.0,65.0,56.0,64.0,61.0,58.0,60.0,77.0,76.0,52.0,52.0,52.0,60.0,58.0,57.0,48.0,59.0,56.0,48.0,58.0,52.0,42.0,47.0,58.0,79.0,78.0,80.0,71.0,66.0,80.0,69.0,80.0,80.0,68.0,84.0,91.0,71.0,62.0,60.0,78.0,68.0,43.0,54.0,54.0,38.0,37.0,54.0,45.0,54.0,34.0,53.0,30.0,50.0,21.0,29.0,21.0,20.0,15.0,9.0,19.0,15.0,3.0,6.0,6.0,4.0,1.0,2.0,4.0 C88025,36.0,41.0,57.0,52.0,43.0,51.0,40.0,65.0,53.0,55.0,48.0,56.0,49.0,53.0,52.0,52.0,50.0,56.0,58.0,38.0,66.0,50.0,41.0,66.0,45.0,57.0,54.0,67.0,46.0,59.0,73.0,68.0,84.0,66.0,68.0,74.0,77.0,60.0,77.0,63.0,54.0,60.0,72.0,47.0,61.0,51.0,45.0,46.0,55.0,50.0,59.0,69.0,60.0,66.0,60.0,58.0,71.0,78.0,62.0,67.0,79.0,55.0,63.0,54.0,54.0,49.0,47.0,56.0,46.0,45.0,32.0,42.0,29.0,27.0,28.0,47.0,34.0,47.0,45.0,20.0,34.0,23.0,16.0,23.0,21.0,13.0,18.0,14.0,11.0,10.0,9.0,6.0,2.0,4.0,2.0,8.0 C88026,72.0,76.0,76.0,90.0,73.0,82.0,98.0,111.0,95.0,94.0,82.0,89.0,96.0,90.0,93.0,82.0,92.0,80.0,60.0,78.0,50.0,64.0,70.0,60.0,70.0,90.0,94.0,93.0,91.0,86.0,91.0,102.0,110.0,128.0,118.0,114.0,137.0,136.0,122.0,101.0,105.0,116.0,108.0,114.0,115.0,118.0,90.0,99.0,83.0,93.0,87.0,100.0,89.0,93.0,91.0,85.0,100.0,92.0,75.0,92.0,95.0,71.0,85.0,82.0,64.0,51.0,61.0,74.0,58.0,64.0,42.0,46.0,35.0,37.0,41.0,33.0,35.0,34.0,36.0,27.0,34.0,21.0,21.0,15.0,17.0,18.0,12.0,14.0,9.0,5.0,9.0,2.0,3.0,5.0,3.0,8.0 C88027,36.0,51.0,31.0,31.0,31.0,33.0,47.0,39.0,39.0,39.0,42.0,46.0,51.0,61.0,44.0,45.0,58.0,33.0,48.0,42.0,35.0,37.0,36.0,40.0,41.0,35.0,45.0,34.0,48.0,45.0,35.0,46.0,36.0,42.0,37.0,42.0,36.0,35.0,42.0,44.0,41.0,41.0,34.0,29.0,23.0,46.0,26.0,28.0,31.0,22.0,27.0,23.0,32.0,37.0,22.0,32.0,29.0,23.0,31.0,18.0,16.0,23.0,14.0,18.0,17.0,20.0,20.0,14.0,8.0,17.0,16.0,20.0,15.0,10.0,11.0,11.0,14.0,6.0,6.0,9.0,6.0,5.0,7.0,4.0,6.0,5.0,6.0,3.0,5.0,6.0,,,1.0,,,3.0 C88028,23.0,35.0,37.0,43.0,54.0,48.0,51.0,63.0,52.0,55.0,61.0,61.0,61.0,59.0,75.0,68.0,63.0,65.0,46.0,52.0,39.0,43.0,34.0,48.0,46.0,40.0,44.0,66.0,64.0,44.0,43.0,44.0,54.0,50.0,60.0,58.0,60.0,60.0,89.0,61.0,70.0,61.0,74.0,45.0,76.0,72.0,73.0,82.0,78.0,68.0,73.0,85.0,79.0,65.0,66.0,70.0,77.0,66.0,71.0,66.0,76.0,71.0,78.0,56.0,49.0,56.0,47.0,48.0,52.0,45.0,42.0,48.0,44.0,39.0,45.0,42.0,53.0,53.0,55.0,42.0,53.0,35.0,26.0,26.0,37.0,25.0,16.0,21.0,19.0,15.0,12.0,10.0,7.0,2.0,9.0,9.0 C88030,32.0,41.0,34.0,35.0,42.0,50.0,50.0,47.0,57.0,52.0,41.0,41.0,44.0,58.0,39.0,46.0,36.0,53.0,39.0,46.0,42.0,53.0,47.0,53.0,68.0,67.0,69.0,70.0,69.0,77.0,95.0,97.0,88.0,108.0,100.0,91.0,93.0,97.0,81.0,71.0,58.0,65.0,55.0,64.0,71.0,56.0,59.0,58.0,40.0,45.0,35.0,49.0,49.0,40.0,60.0,53.0,69.0,63.0,52.0,58.0,51.0,48.0,58.0,37.0,44.0,43.0,39.0,34.0,37.0,33.0,35.0,31.0,24.0,20.0,22.0,23.0,29.0,21.0,22.0,15.0,11.0,17.0,12.0,13.0,14.0,7.0,4.0,9.0,3.0,5.0,2.0,1.0,1.0,1.0,1.0,3.0 C88031,62.0,56.0,64.0,68.0,53.0,70.0,75.0,99.0,89.0,112.0,95.0,113.0,101.0,91.0,105.0,93.0,87.0,73.0,73.0,74.0,75.0,74.0,81.0,88.0,101.0,131.0,121.0,135.0,108.0,106.0,126.0,111.0,118.0,120.0,109.0,105.0,98.0,98.0,116.0,110.0,98.0,106.0,116.0,101.0,117.0,104.0,117.0,67.0,89.0,93.0,103.0,85.0,91.0,81.0,88.0,69.0,72.0,70.0,67.0,87.0,82.0,56.0,73.0,78.0,66.0,62.0,73.0,71.0,66.0,61.0,56.0,71.0,60.0,52.0,59.0,45.0,49.0,49.0,63.0,36.0,35.0,34.0,22.0,16.0,20.0,25.0,24.0,17.0,20.0,19.0,8.0,7.0,5.0,9.0,6.0,12.0 C88032,17.0,18.0,28.0,24.0,24.0,28.0,22.0,21.0,19.0,25.0,31.0,30.0,29.0,28.0,29.0,32.0,30.0,35.0,24.0,21.0,24.0,24.0,31.0,21.0,27.0,26.0,21.0,20.0,29.0,21.0,27.0,32.0,35.0,30.0,40.0,36.0,38.0,43.0,37.0,43.0,38.0,33.0,28.0,22.0,43.0,25.0,37.0,37.0,37.0,27.0,27.0,33.0,29.0,40.0,39.0,36.0,48.0,39.0,47.0,34.0,54.0,39.0,33.0,41.0,36.0,41.0,38.0,38.0,34.0,39.0,33.0,31.0,33.0,23.0,31.0,25.0,33.0,25.0,45.0,23.0,22.0,21.0,14.0,18.0,17.0,29.0,16.0,12.0,10.0,11.0,9.0,7.0,4.0,4.0,3.0,12.0 C88034,22.0,30.0,23.0,30.0,34.0,29.0,48.0,41.0,37.0,65.0,50.0,43.0,59.0,63.0,50.0,66.0,50.0,46.0,64.0,35.0,35.0,51.0,33.0,37.0,45.0,44.0,47.0,40.0,42.0,40.0,42.0,34.0,49.0,48.0,33.0,53.0,43.0,50.0,39.0,66.0,56.0,47.0,55.0,63.0,65.0,58.0,64.0,52.0,62.0,66.0,45.0,74.0,62.0,59.0,59.0,61.0,52.0,64.0,71.0,65.0,66.0,61.0,80.0,53.0,78.0,58.0,60.0,63.0,60.0,51.0,63.0,48.0,65.0,64.0,50.0,52.0,70.0,61.0,67.0,31.0,39.0,35.0,35.0,24.0,20.0,15.0,16.0,13.0,12.0,9.0,6.0,5.0,4.0,2.0,2.0,3.0 C88035,76.0,76.0,78.0,60.0,65.0,68.0,72.0,68.0,83.0,98.0,101.0,94.0,96.0,105.0,100.0,98.0,97.0,105.0,103.0,99.0,81.0,80.0,86.0,77.0,71.0,89.0,99.0,100.0,84.0,90.0,79.0,96.0,82.0,72.0,81.0,83.0,80.0,69.0,68.0,88.0,75.0,71.0,66.0,61.0,59.0,68.0,71.0,66.0,43.0,66.0,61.0,43.0,49.0,59.0,43.0,58.0,46.0,55.0,57.0,49.0,47.0,47.0,56.0,50.0,43.0,43.0,42.0,34.0,27.0,33.0,30.0,29.0,34.0,30.0,19.0,23.0,19.0,26.0,24.0,15.0,19.0,16.0,12.0,13.0,7.0,8.0,5.0,9.0,9.0,3.0,3.0,4.0,2.0,1.0,3.0,7.0 C88036,55.0,60.0,54.0,79.0,68.0,69.0,70.0,65.0,70.0,69.0,68.0,76.0,71.0,68.0,67.0,65.0,62.0,61.0,44.0,47.0,54.0,49.0,50.0,51.0,49.0,45.0,53.0,59.0,61.0,67.0,55.0,70.0,76.0,95.0,81.0,79.0,66.0,81.0,84.0,83.0,78.0,80.0,73.0,63.0,62.0,70.0,49.0,48.0,60.0,76.0,58.0,62.0,72.0,79.0,74.0,81.0,76.0,79.0,70.0,67.0,56.0,70.0,66.0,61.0,56.0,62.0,46.0,52.0,43.0,50.0,40.0,42.0,24.0,35.0,39.0,38.0,32.0,40.0,36.0,30.0,31.0,30.0,38.0,21.0,26.0,25.0,13.0,8.0,13.0,10.0,9.0,3.0,5.0,4.0,2.0,8.0 C88037,58.0,74.0,75.0,83.0,68.0,71.0,92.0,93.0,85.0,82.0,81.0,83.0,84.0,105.0,94.0,79.0,86.0,78.0,97.0,86.0,106.0,83.0,110.0,98.0,119.0,119.0,125.0,137.0,129.0,120.0,133.0,117.0,114.0,132.0,99.0,96.0,114.0,100.0,93.0,104.0,108.0,130.0,110.0,109.0,95.0,92.0,94.0,88.0,93.0,87.0,80.0,80.0,73.0,72.0,78.0,103.0,76.0,91.0,95.0,79.0,75.0,79.0,87.0,93.0,61.0,74.0,66.0,70.0,60.0,56.0,54.0,65.0,44.0,59.0,64.0,47.0,41.0,62.0,58.0,29.0,42.0,29.0,36.0,29.0,34.0,23.0,23.0,31.0,10.0,15.0,15.0,10.0,6.0,5.0,2.0,6.0 C88038,13.0,14.0,21.0,20.0,27.0,28.0,25.0,31.0,26.0,39.0,39.0,39.0,43.0,32.0,40.0,27.0,35.0,46.0,39.0,38.0,26.0,41.0,32.0,46.0,49.0,44.0,49.0,50.0,51.0,55.0,65.0,61.0,50.0,66.0,75.0,45.0,60.0,69.0,64.0,60.0,74.0,66.0,58.0,46.0,58.0,52.0,51.0,51.0,49.0,35.0,39.0,53.0,44.0,47.0,51.0,63.0,47.0,44.0,49.0,46.0,51.0,47.0,45.0,56.0,40.0,39.0,35.0,24.0,31.0,25.0,32.0,31.0,26.0,25.0,22.0,22.0,23.0,28.0,37.0,18.0,22.0,15.0,17.0,16.0,11.0,11.0,13.0,10.0,9.0,9.0,9.0,9.0,1.0,3.0,2.0,4.0 C88039,51.0,54.0,40.0,55.0,44.0,51.0,41.0,48.0,59.0,63.0,44.0,62.0,56.0,69.0,57.0,65.0,52.0,42.0,51.0,47.0,42.0,52.0,27.0,38.0,41.0,44.0,41.0,33.0,64.0,56.0,51.0,47.0,48.0,62.0,76.0,63.0,55.0,60.0,62.0,59.0,61.0,58.0,45.0,51.0,57.0,50.0,50.0,46.0,56.0,44.0,49.0,52.0,54.0,55.0,57.0,65.0,62.0,59.0,62.0,64.0,56.0,64.0,58.0,48.0,51.0,43.0,37.0,44.0,47.0,52.0,38.0,45.0,39.0,34.0,36.0,35.0,41.0,49.0,52.0,30.0,37.0,31.0,34.0,14.0,18.0,29.0,12.0,8.0,17.0,11.0,8.0,9.0,3.0,6.0,2.0,5.0 C88040,13.0,26.0,30.0,27.0,26.0,23.0,27.0,28.0,18.0,28.0,28.0,36.0,42.0,36.0,31.0,45.0,47.0,34.0,20.0,30.0,29.0,31.0,25.0,26.0,32.0,26.0,39.0,42.0,28.0,38.0,31.0,34.0,36.0,39.0,34.0,27.0,33.0,37.0,34.0,40.0,27.0,51.0,29.0,44.0,46.0,46.0,37.0,45.0,39.0,32.0,50.0,43.0,44.0,53.0,53.0,48.0,41.0,46.0,42.0,48.0,38.0,44.0,47.0,36.0,38.0,34.0,45.0,37.0,40.0,41.0,35.0,22.0,30.0,21.0,49.0,26.0,26.0,31.0,25.0,26.0,26.0,31.0,19.0,20.0,15.0,14.0,10.0,10.0,9.0,10.0,3.0,2.0,3.0,5.0,3.0,1.0 C88041,71.0,76.0,81.0,79.0,59.0,75.0,63.0,70.0,85.0,87.0,69.0,61.0,65.0,52.0,56.0,69.0,53.0,72.0,58.0,65.0,63.0,53.0,59.0,52.0,51.0,65.0,68.0,70.0,71.0,76.0,88.0,116.0,94.0,115.0,103.0,102.0,104.0,106.0,104.0,121.0,104.0,99.0,97.0,92.0,80.0,91.0,86.0,86.0,74.0,73.0,82.0,57.0,80.0,60.0,79.0,75.0,92.0,69.0,54.0,78.0,81.0,57.0,85.0,78.0,64.0,71.0,62.0,69.0,57.0,60.0,49.0,59.0,57.0,56.0,43.0,50.0,49.0,52.0,59.0,41.0,46.0,35.0,28.0,25.0,14.0,24.0,26.0,21.0,14.0,7.0,13.0,9.0,5.0,3.0,4.0,8.0 C88043,41.0,43.0,48.0,51.0,42.0,58.0,56.0,77.0,67.0,71.0,72.0,71.0,79.0,80.0,82.0,67.0,67.0,84.0,68.0,73.0,64.0,50.0,67.0,59.0,55.0,70.0,45.0,75.0,79.0,62.0,77.0,94.0,92.0,76.0,88.0,90.0,87.0,84.0,75.0,87.0,87.0,86.0,77.0,77.0,94.0,98.0,78.0,82.0,77.0,88.0,93.0,81.0,84.0,90.0,81.0,79.0,69.0,71.0,78.0,71.0,81.0,63.0,65.0,72.0,54.0,51.0,55.0,45.0,39.0,46.0,49.0,36.0,38.0,32.0,39.0,28.0,32.0,42.0,35.0,24.0,23.0,27.0,15.0,13.0,14.0,9.0,10.0,12.0,6.0,4.0,4.0,4.0,3.0,2.0,,4.0 C88044,29.0,21.0,24.0,24.0,32.0,19.0,28.0,31.0,42.0,31.0,34.0,42.0,34.0,53.0,48.0,35.0,48.0,29.0,33.0,32.0,20.0,18.0,23.0,31.0,25.0,27.0,21.0,33.0,50.0,33.0,36.0,38.0,39.0,36.0,35.0,32.0,39.0,37.0,43.0,44.0,23.0,52.0,25.0,52.0,39.0,36.0,56.0,39.0,30.0,46.0,40.0,51.0,42.0,36.0,33.0,38.0,31.0,36.0,27.0,21.0,29.0,26.0,35.0,41.0,29.0,30.0,35.0,32.0,24.0,24.0,25.0,23.0,30.0,25.0,23.0,24.0,22.0,17.0,29.0,17.0,22.0,12.0,15.0,6.0,6.0,11.0,10.0,6.0,5.0,5.0,4.0,3.0,4.0,2.0,2.0,7.0 C88045,44.0,34.0,35.0,38.0,49.0,36.0,44.0,39.0,50.0,56.0,54.0,54.0,51.0,53.0,50.0,47.0,46.0,53.0,59.0,47.0,47.0,42.0,46.0,53.0,37.0,54.0,42.0,42.0,57.0,54.0,55.0,60.0,65.0,75.0,63.0,68.0,82.0,68.0,62.0,75.0,58.0,58.0,66.0,66.0,54.0,49.0,55.0,58.0,45.0,46.0,40.0,54.0,67.0,53.0,67.0,76.0,73.0,77.0,64.0,57.0,52.0,60.0,56.0,61.0,68.0,61.0,52.0,52.0,52.0,48.0,35.0,42.0,49.0,30.0,33.0,31.0,34.0,41.0,36.0,30.0,32.0,23.0,29.0,20.0,18.0,14.0,16.0,14.0,6.0,8.0,8.0,2.0,3.0,1.0,1.0,4.0 C88046,26.0,34.0,37.0,39.0,42.0,38.0,52.0,29.0,61.0,48.0,35.0,48.0,41.0,41.0,45.0,38.0,45.0,45.0,27.0,38.0,29.0,27.0,42.0,25.0,28.0,25.0,21.0,31.0,26.0,26.0,42.0,38.0,39.0,42.0,30.0,45.0,56.0,42.0,49.0,55.0,44.0,60.0,51.0,63.0,66.0,65.0,59.0,57.0,38.0,36.0,52.0,41.0,49.0,48.0,45.0,51.0,47.0,58.0,43.0,48.0,50.0,40.0,42.0,44.0,39.0,31.0,38.0,31.0,40.0,31.0,31.0,34.0,35.0,32.0,36.0,27.0,22.0,39.0,24.0,18.0,31.0,18.0,20.0,15.0,18.0,12.0,9.0,11.0,9.0,4.0,9.0,5.0,2.0,4.0,1.0,4.0 C88047,45.0,49.0,47.0,45.0,35.0,35.0,32.0,58.0,49.0,40.0,57.0,47.0,50.0,53.0,52.0,42.0,52.0,37.0,35.0,44.0,42.0,47.0,27.0,46.0,53.0,43.0,47.0,62.0,48.0,40.0,69.0,54.0,79.0,62.0,72.0,73.0,66.0,59.0,61.0,60.0,58.0,68.0,61.0,59.0,50.0,44.0,53.0,56.0,47.0,40.0,55.0,49.0,55.0,49.0,36.0,61.0,53.0,56.0,61.0,51.0,49.0,58.0,44.0,49.0,44.0,36.0,39.0,27.0,38.0,34.0,35.0,23.0,30.0,28.0,30.0,15.0,23.0,36.0,28.0,28.0,29.0,19.0,19.0,20.0,15.0,13.0,14.0,6.0,13.0,5.0,6.0,3.0,2.0,1.0,1.0,4.0 C88048,52.0,43.0,46.0,58.0,48.0,63.0,58.0,65.0,76.0,70.0,60.0,63.0,57.0,70.0,60.0,55.0,67.0,63.0,57.0,62.0,56.0,68.0,68.0,58.0,60.0,61.0,57.0,68.0,81.0,89.0,71.0,67.0,75.0,89.0,86.0,88.0,79.0,89.0,92.0,69.0,92.0,68.0,76.0,69.0,68.0,73.0,60.0,42.0,52.0,58.0,56.0,46.0,49.0,46.0,35.0,40.0,42.0,44.0,47.0,42.0,39.0,34.0,35.0,30.0,29.0,37.0,18.0,25.0,15.0,26.0,19.0,18.0,18.0,13.0,15.0,18.0,14.0,17.0,13.0,12.0,9.0,8.0,10.0,6.0,5.0,12.0,6.0,9.0,2.0,5.0,2.0,1.0,,2.0,1.0,6.0 C88049,28.0,26.0,21.0,35.0,41.0,24.0,20.0,30.0,27.0,33.0,39.0,33.0,38.0,26.0,38.0,30.0,43.0,35.0,34.0,30.0,36.0,24.0,22.0,29.0,41.0,31.0,46.0,48.0,38.0,42.0,46.0,38.0,40.0,36.0,37.0,39.0,36.0,49.0,39.0,45.0,35.0,41.0,33.0,29.0,27.0,19.0,37.0,28.0,33.0,35.0,30.0,23.0,52.0,51.0,58.0,48.0,52.0,48.0,43.0,50.0,32.0,44.0,46.0,39.0,36.0,41.0,32.0,42.0,22.0,19.0,24.0,28.0,15.0,21.0,22.0,23.0,28.0,25.0,22.0,16.0,25.0,24.0,16.0,10.0,14.0,11.0,6.0,10.0,9.0,10.0,5.0,4.0,3.0,3.0,1.0,4.0 C88050,12.0,9.0,26.0,21.0,10.0,15.0,15.0,14.0,21.0,16.0,15.0,18.0,26.0,23.0,23.0,11.0,16.0,25.0,16.0,25.0,18.0,29.0,12.0,24.0,21.0,11.0,22.0,15.0,27.0,23.0,24.0,17.0,25.0,37.0,22.0,19.0,26.0,26.0,20.0,24.0,18.0,26.0,13.0,13.0,16.0,22.0,13.0,20.0,15.0,16.0,19.0,15.0,20.0,32.0,21.0,24.0,23.0,20.0,38.0,31.0,22.0,30.0,31.0,34.0,33.0,28.0,19.0,31.0,29.0,25.0,27.0,18.0,19.0,16.0,16.0,20.0,25.0,18.0,19.0,12.0,18.0,13.0,13.0,22.0,9.0,11.0,5.0,14.0,9.0,2.0,7.0,3.0,3.0,1.0,1.0,4.0 C88051,55.0,65.0,63.0,59.0,59.0,56.0,53.0,64.0,66.0,61.0,72.0,79.0,98.0,83.0,81.0,93.0,90.0,83.0,83.0,70.0,72.0,73.0,82.0,67.0,65.0,67.0,68.0,80.0,68.0,71.0,76.0,95.0,63.0,65.0,75.0,84.0,71.0,73.0,61.0,88.0,53.0,77.0,60.0,62.0,66.0,72.0,57.0,50.0,56.0,50.0,48.0,50.0,49.0,45.0,55.0,31.0,39.0,41.0,37.0,41.0,27.0,26.0,28.0,36.0,19.0,25.0,14.0,14.0,16.0,13.0,16.0,12.0,20.0,15.0,12.0,9.0,7.0,8.0,9.0,8.0,4.0,8.0,8.0,2.0,9.0,3.0,6.0,4.0,2.0,3.0,5.0,4.0,2.0,,4.0,3.0 C88052,48.0,49.0,68.0,52.0,53.0,77.0,66.0,53.0,58.0,53.0,70.0,45.0,56.0,44.0,53.0,51.0,39.0,54.0,49.0,43.0,49.0,41.0,59.0,44.0,64.0,64.0,69.0,93.0,84.0,80.0,81.0,103.0,88.0,107.0,80.0,92.0,86.0,95.0,111.0,79.0,86.0,101.0,86.0,84.0,81.0,97.0,76.0,67.0,64.0,79.0,74.0,61.0,70.0,67.0,70.0,79.0,74.0,67.0,67.0,73.0,69.0,51.0,61.0,65.0,56.0,53.0,58.0,53.0,55.0,48.0,46.0,44.0,50.0,45.0,35.0,38.0,42.0,40.0,40.0,28.0,35.0,22.0,27.0,21.0,16.0,13.0,12.0,10.0,11.0,8.0,7.0,5.0,4.0,1.0,4.0,7.0 C88053,8.0,19.0,18.0,21.0,20.0,21.0,17.0,23.0,26.0,25.0,28.0,26.0,30.0,34.0,29.0,31.0,36.0,28.0,23.0,22.0,9.0,19.0,15.0,18.0,21.0,17.0,30.0,17.0,16.0,12.0,19.0,16.0,25.0,18.0,19.0,16.0,21.0,26.0,26.0,31.0,20.0,37.0,27.0,33.0,24.0,30.0,31.0,27.0,22.0,34.0,32.0,41.0,24.0,26.0,24.0,39.0,28.0,26.0,38.0,28.0,37.0,36.0,25.0,24.0,22.0,21.0,25.0,18.0,15.0,18.0,18.0,21.0,21.0,15.0,18.0,21.0,29.0,29.0,13.0,13.0,13.0,20.0,18.0,9.0,10.0,13.0,15.0,7.0,4.0,7.0,1.0,3.0,2.0,1.0,1.0,1.0 C88054,22.0,38.0,36.0,44.0,42.0,46.0,32.0,52.0,44.0,37.0,51.0,39.0,46.0,42.0,43.0,42.0,63.0,42.0,51.0,42.0,40.0,45.0,25.0,33.0,30.0,33.0,38.0,48.0,40.0,49.0,44.0,57.0,44.0,45.0,57.0,65.0,42.0,46.0,43.0,46.0,48.0,33.0,44.0,44.0,52.0,42.0,40.0,51.0,45.0,55.0,41.0,47.0,58.0,59.0,76.0,56.0,52.0,68.0,63.0,75.0,65.0,62.0,60.0,80.0,47.0,53.0,45.0,49.0,45.0,43.0,49.0,44.0,39.0,38.0,34.0,34.0,42.0,34.0,31.0,19.0,28.0,25.0,25.0,17.0,19.0,20.0,11.0,22.0,14.0,7.0,11.0,6.0,3.0,4.0,5.0,2.0 C88059,9.0,10.0,12.0,8.0,6.0,16.0,7.0,11.0,7.0,14.0,21.0,13.0,13.0,21.0,15.0,20.0,17.0,18.0,15.0,17.0,20.0,23.0,11.0,17.0,13.0,17.0,20.0,19.0,18.0,21.0,23.0,31.0,29.0,27.0,23.0,17.0,31.0,32.0,36.0,35.0,29.0,28.0,27.0,29.0,28.0,40.0,35.0,34.0,24.0,35.0,28.0,23.0,37.0,21.0,24.0,28.0,32.0,27.0,16.0,22.0,25.0,24.0,27.0,18.0,25.0,19.0,18.0,15.0,14.0,10.0,8.0,9.0,11.0,15.0,7.0,6.0,7.0,11.0,7.0,2.0,3.0,6.0,2.0,6.0,2.0,4.0,2.0,2.0,3.0,5.0,3.0,,2.0,,1.0,3.0 C88060,26.0,29.0,21.0,35.0,27.0,29.0,38.0,29.0,30.0,31.0,33.0,20.0,28.0,35.0,27.0,34.0,34.0,45.0,37.0,39.0,40.0,40.0,33.0,46.0,49.0,36.0,61.0,69.0,49.0,54.0,60.0,53.0,51.0,60.0,47.0,36.0,48.0,58.0,51.0,51.0,49.0,34.0,49.0,43.0,55.0,48.0,60.0,42.0,47.0,32.0,27.0,37.0,27.0,34.0,32.0,27.0,21.0,28.0,28.0,23.0,25.0,14.0,17.0,27.0,16.0,17.0,10.0,12.0,14.0,14.0,8.0,12.0,14.0,18.0,9.0,8.0,6.0,7.0,6.0,6.0,6.0,5.0,5.0,4.0,3.0,3.0,5.0,3.0,2.0,4.0,3.0,1.0,1.0,2.0,1.0,2.0 C88062,10.0,18.0,14.0,16.0,19.0,21.0,20.0,29.0,39.0,30.0,36.0,33.0,27.0,43.0,32.0,37.0,25.0,39.0,30.0,26.0,19.0,17.0,26.0,21.0,35.0,28.0,27.0,26.0,24.0,24.0,25.0,21.0,23.0,25.0,34.0,36.0,31.0,28.0,34.0,40.0,32.0,30.0,34.0,37.0,30.0,48.0,34.0,39.0,38.0,22.0,36.0,39.0,30.0,38.0,44.0,42.0,36.0,30.0,49.0,32.0,27.0,35.0,31.0,31.0,19.0,19.0,31.0,18.0,13.0,20.0,13.0,23.0,12.0,18.0,18.0,15.0,19.0,20.0,13.0,13.0,10.0,8.0,7.0,2.0,6.0,7.0,2.0,5.0,2.0,4.0,3.0,4.0,,2.0,1.0,3.0 C88069,117.0,87.0,113.0,92.0,120.0,84.0,120.0,115.0,115.0,104.0,135.0,132.0,120.0,118.0,121.0,140.0,153.0,162.0,157.0,173.0,161.0,155.0,167.0,178.0,194.0,197.0,174.0,229.0,204.0,198.0,201.0,178.0,194.0,180.0,191.0,150.0,141.0,163.0,171.0,159.0,155.0,137.0,159.0,132.0,111.0,132.0,108.0,106.0,102.0,111.0,94.0,119.0,98.0,61.0,86.0,94.0,72.0,72.0,45.0,53.0,56.0,46.0,48.0,34.0,50.0,42.0,30.0,35.0,29.0,32.0,32.0,36.0,35.0,25.0,29.0,27.0,18.0,28.0,17.0,12.0,16.0,22.0,15.0,13.0,12.0,14.0,8.0,10.0,4.0,7.0,6.0,3.0,2.0,6.0,5.0,7.0 C88070,42.0,53.0,44.0,62.0,50.0,51.0,57.0,50.0,62.0,58.0,86.0,69.0,70.0,78.0,81.0,63.0,61.0,57.0,70.0,58.0,53.0,47.0,50.0,41.0,51.0,45.0,52.0,46.0,54.0,43.0,47.0,50.0,67.0,73.0,71.0,48.0,69.0,62.0,83.0,60.0,57.0,44.0,59.0,52.0,50.0,43.0,49.0,38.0,52.0,47.0,48.0,58.0,49.0,52.0,51.0,44.0,52.0,44.0,50.0,36.0,33.0,40.0,37.0,41.0,35.0,35.0,25.0,36.0,26.0,20.0,23.0,26.0,23.0,21.0,18.0,15.0,11.0,20.0,17.0,14.0,16.0,13.0,15.0,12.0,10.0,10.0,8.0,10.0,6.0,4.0,1.0,5.0,2.0,3.0,3.0,7.0 C88072,48.0,51.0,59.0,51.0,52.0,65.0,67.0,58.0,56.0,64.0,63.0,66.0,78.0,61.0,83.0,52.0,74.0,67.0,52.0,62.0,68.0,69.0,66.0,80.0,70.0,75.0,66.0,62.0,84.0,83.0,83.0,96.0,92.0,84.0,73.0,86.0,66.0,76.0,65.0,80.0,85.0,62.0,71.0,81.0,88.0,72.0,54.0,53.0,54.0,62.0,59.0,67.0,72.0,88.0,75.0,88.0,93.0,90.0,90.0,100.0,102.0,88.0,104.0,86.0,84.0,78.0,69.0,79.0,64.0,67.0,58.0,49.0,48.0,44.0,39.0,45.0,59.0,70.0,50.0,35.0,47.0,38.0,33.0,38.0,26.0,28.0,22.0,31.0,20.0,11.0,13.0,11.0,4.0,4.0,,12.0 C88073,22.0,20.0,26.0,26.0,26.0,29.0,28.0,32.0,41.0,29.0,32.0,31.0,26.0,38.0,25.0,36.0,41.0,31.0,25.0,29.0,22.0,24.0,27.0,32.0,30.0,27.0,23.0,21.0,31.0,28.0,37.0,43.0,46.0,64.0,47.0,51.0,52.0,55.0,52.0,59.0,43.0,47.0,64.0,42.0,41.0,48.0,36.0,28.0,28.0,30.0,31.0,36.0,31.0,39.0,28.0,40.0,29.0,26.0,41.0,40.0,31.0,37.0,40.0,37.0,46.0,34.0,24.0,29.0,29.0,25.0,17.0,20.0,26.0,20.0,19.0,14.0,22.0,15.0,17.0,12.0,8.0,5.0,10.0,11.0,7.0,6.0,7.0,3.0,9.0,1.0,1.0,4.0,2.0,1.0,2.0,6.0 C88074,19.0,16.0,29.0,23.0,31.0,27.0,25.0,18.0,27.0,27.0,35.0,36.0,31.0,25.0,20.0,31.0,32.0,34.0,23.0,23.0,26.0,28.0,24.0,19.0,26.0,27.0,20.0,22.0,35.0,30.0,34.0,37.0,43.0,40.0,53.0,33.0,36.0,41.0,34.0,31.0,35.0,32.0,40.0,38.0,39.0,44.0,27.0,27.0,34.0,35.0,30.0,41.0,43.0,31.0,40.0,49.0,35.0,43.0,42.0,38.0,43.0,29.0,36.0,35.0,36.0,38.0,39.0,43.0,17.0,29.0,23.0,21.0,32.0,15.0,34.0,11.0,32.0,30.0,30.0,17.0,25.0,21.0,9.0,18.0,11.0,7.0,2.0,10.0,2.0,3.0,4.0,4.0,1.0,4.0,1.0,2.0 C88076,52.0,37.0,43.0,35.0,39.0,34.0,33.0,51.0,45.0,38.0,39.0,45.0,34.0,33.0,29.0,29.0,37.0,38.0,42.0,45.0,53.0,58.0,71.0,89.0,94.0,117.0,119.0,124.0,127.0,122.0,120.0,132.0,151.0,118.0,132.0,126.0,132.0,144.0,115.0,116.0,100.0,115.0,110.0,105.0,111.0,82.0,86.0,85.0,78.0,89.0,72.0,80.0,62.0,39.0,44.0,52.0,51.0,49.0,44.0,51.0,47.0,42.0,56.0,32.0,42.0,34.0,21.0,32.0,24.0,26.0,28.0,32.0,20.0,14.0,17.0,15.0,23.0,14.0,16.0,8.0,22.0,4.0,6.0,6.0,3.0,5.0,10.0,4.0,9.0,1.0,4.0,3.0,1.0,1.0,1.0,4.0 C88077,37.0,45.0,43.0,43.0,49.0,59.0,59.0,73.0,49.0,74.0,60.0,54.0,73.0,68.0,54.0,73.0,50.0,69.0,60.0,60.0,54.0,51.0,43.0,47.0,45.0,33.0,39.0,47.0,57.0,60.0,53.0,56.0,55.0,61.0,50.0,52.0,58.0,63.0,66.0,55.0,50.0,56.0,49.0,50.0,28.0,44.0,36.0,44.0,35.0,50.0,30.0,29.0,44.0,44.0,45.0,53.0,53.0,61.0,43.0,59.0,61.0,53.0,39.0,51.0,50.0,36.0,46.0,35.0,32.0,26.0,39.0,27.0,25.0,19.0,25.0,15.0,20.0,18.0,20.0,20.0,18.0,18.0,17.0,7.0,10.0,9.0,16.0,10.0,10.0,10.0,6.0,3.0,2.0,3.0,2.0,1.0 C88078,32.0,46.0,29.0,31.0,38.0,36.0,33.0,37.0,36.0,37.0,34.0,35.0,46.0,47.0,37.0,40.0,41.0,42.0,38.0,36.0,41.0,30.0,33.0,42.0,36.0,37.0,39.0,39.0,40.0,47.0,46.0,43.0,58.0,48.0,48.0,40.0,30.0,45.0,41.0,50.0,47.0,37.0,47.0,36.0,45.0,47.0,43.0,30.0,47.0,48.0,48.0,42.0,60.0,48.0,68.0,39.0,46.0,49.0,67.0,54.0,45.0,62.0,39.0,49.0,43.0,52.0,47.0,43.0,36.0,37.0,31.0,33.0,39.0,39.0,31.0,32.0,27.0,37.0,26.0,26.0,19.0,29.0,21.0,13.0,10.0,11.0,12.0,14.0,11.0,10.0,4.0,3.0,3.0,,2.0,4.0 C88079,40.0,31.0,33.0,41.0,48.0,38.0,44.0,49.0,47.0,43.0,42.0,44.0,48.0,44.0,39.0,40.0,46.0,28.0,45.0,28.0,27.0,45.0,54.0,49.0,47.0,74.0,82.0,84.0,99.0,114.0,107.0,102.0,87.0,86.0,95.0,92.0,71.0,78.0,92.0,96.0,64.0,82.0,78.0,49.0,52.0,88.0,56.0,53.0,62.0,59.0,76.0,55.0,45.0,61.0,53.0,50.0,53.0,40.0,44.0,41.0,59.0,45.0,42.0,41.0,29.0,35.0,27.0,23.0,36.0,29.0,32.0,33.0,34.0,26.0,22.0,24.0,19.0,21.0,20.0,10.0,14.0,15.0,7.0,13.0,8.0,10.0,11.0,7.0,4.0,,4.0,3.0,5.0,2.0,,4.0 C88082,22.0,26.0,22.0,25.0,23.0,20.0,19.0,24.0,11.0,25.0,15.0,22.0,12.0,15.0,17.0,14.0,17.0,14.0,23.0,54.0,78.0,77.0,72.0,95.0,143.0,131.0,141.0,131.0,117.0,134.0,110.0,80.0,92.0,85.0,76.0,78.0,69.0,72.0,66.0,67.0,53.0,52.0,36.0,42.0,25.0,31.0,27.0,23.0,15.0,17.0,22.0,20.0,26.0,18.0,25.0,25.0,19.0,33.0,26.0,28.0,23.0,17.0,19.0,30.0,18.0,10.0,8.0,15.0,12.0,10.0,7.0,14.0,10.0,13.0,10.0,7.0,6.0,5.0,10.0,5.0,3.0,3.0,5.0,3.0,1.0,3.0,3.0,2.0,1.0,3.0,2.0,2.0,,1.0,,2.0 C88083,7.0,7.0,6.0,2.0,8.0,11.0,10.0,11.0,3.0,13.0,6.0,14.0,13.0,7.0,8.0,13.0,19.0,18.0,17.0,18.0,13.0,14.0,14.0,14.0,19.0,17.0,14.0,7.0,23.0,5.0,12.0,19.0,6.0,18.0,12.0,12.0,11.0,16.0,7.0,17.0,10.0,12.0,12.0,17.0,11.0,12.0,15.0,16.0,14.0,19.0,27.0,18.0,15.0,25.0,19.0,19.0,25.0,16.0,13.0,26.0,20.0,21.0,31.0,17.0,22.0,18.0,19.0,14.0,12.0,19.0,12.0,16.0,17.0,14.0,18.0,26.0,15.0,23.0,11.0,15.0,7.0,3.0,10.0,11.0,7.0,6.0,5.0,4.0,6.0,3.0,,1.0,1.0,1.0,,1.0 C88084,24.0,22.0,21.0,26.0,11.0,25.0,21.0,20.0,21.0,16.0,35.0,17.0,24.0,30.0,25.0,21.0,18.0,23.0,21.0,16.0,30.0,18.0,25.0,23.0,18.0,24.0,29.0,27.0,31.0,37.0,28.0,21.0,25.0,24.0,29.0,28.0,26.0,29.0,22.0,32.0,31.0,27.0,23.0,23.0,19.0,22.0,18.0,30.0,15.0,17.0,20.0,24.0,16.0,19.0,26.0,22.0,27.0,18.0,15.0,17.0,26.0,22.0,19.0,13.0,14.0,11.0,13.0,16.0,11.0,10.0,11.0,14.0,9.0,8.0,5.0,9.0,8.0,8.0,9.0,8.0,9.0,6.0,7.0,10.0,6.0,6.0,9.0,5.0,2.0,1.0,2.0,2.0,,,, C88085,59.0,56.0,50.0,61.0,57.0,64.0,70.0,79.0,73.0,67.0,65.0,75.0,76.0,76.0,74.0,70.0,68.0,81.0,58.0,54.0,56.0,48.0,49.0,53.0,58.0,40.0,51.0,56.0,76.0,47.0,54.0,45.0,70.0,66.0,85.0,70.0,79.0,71.0,70.0,73.0,66.0,67.0,62.0,46.0,71.0,51.0,56.0,52.0,54.0,42.0,58.0,57.0,60.0,62.0,68.0,55.0,80.0,60.0,57.0,63.0,64.0,69.0,54.0,47.0,48.0,59.0,36.0,46.0,37.0,38.0,36.0,31.0,40.0,39.0,34.0,32.0,31.0,32.0,31.0,25.0,22.0,34.0,14.0,13.0,14.0,13.0,15.0,9.0,12.0,6.0,11.0,7.0,,7.0,2.0,4.0 C88086,16.0,9.0,10.0,16.0,18.0,21.0,14.0,25.0,23.0,21.0,27.0,17.0,23.0,18.0,26.0,25.0,21.0,19.0,21.0,18.0,19.0,20.0,15.0,15.0,17.0,24.0,20.0,19.0,14.0,17.0,17.0,12.0,16.0,22.0,17.0,26.0,16.0,21.0,22.0,15.0,22.0,22.0,15.0,18.0,17.0,18.0,17.0,11.0,17.0,13.0,14.0,15.0,15.0,13.0,13.0,12.0,21.0,18.0,11.0,16.0,16.0,7.0,14.0,17.0,17.0,12.0,8.0,13.0,14.0,9.0,12.0,10.0,6.0,8.0,4.0,11.0,8.0,2.0,7.0,10.0,7.0,7.0,6.0,7.0,11.0,4.0,3.0,3.0,,,3.0,1.0,,2.0,2.0, C88087,59.0,60.0,51.0,62.0,56.0,63.0,65.0,62.0,65.0,68.0,85.0,78.0,69.0,58.0,60.0,63.0,61.0,44.0,57.0,40.0,48.0,38.0,54.0,42.0,38.0,52.0,53.0,55.0,65.0,67.0,79.0,82.0,73.0,73.0,77.0,60.0,86.0,76.0,74.0,80.0,71.0,68.0,74.0,66.0,69.0,73.0,59.0,65.0,51.0,59.0,61.0,44.0,59.0,47.0,68.0,55.0,63.0,63.0,62.0,58.0,64.0,50.0,59.0,59.0,57.0,46.0,50.0,42.0,48.0,36.0,36.0,37.0,47.0,32.0,29.0,40.0,23.0,25.0,31.0,22.0,26.0,18.0,20.0,15.0,16.0,10.0,17.0,10.0,10.0,5.0,6.0,4.0,2.0,1.0,1.0,4.0 C88088,35.0,49.0,56.0,60.0,61.0,52.0,57.0,67.0,61.0,54.0,65.0,68.0,66.0,54.0,59.0,55.0,63.0,41.0,52.0,53.0,40.0,63.0,40.0,67.0,55.0,37.0,44.0,52.0,30.0,53.0,45.0,60.0,58.0,66.0,62.0,73.0,54.0,43.0,50.0,43.0,55.0,54.0,47.0,39.0,50.0,40.0,50.0,39.0,31.0,32.0,45.0,36.0,36.0,44.0,44.0,38.0,48.0,37.0,45.0,32.0,43.0,54.0,40.0,37.0,35.0,20.0,21.0,33.0,30.0,23.0,19.0,22.0,16.0,18.0,19.0,23.0,16.0,13.0,10.0,10.0,13.0,9.0,9.0,12.0,4.0,7.0,4.0,10.0,9.0,3.0,4.0,3.0,2.0,,, C88090,39.0,42.0,54.0,37.0,40.0,48.0,47.0,50.0,60.0,73.0,46.0,50.0,56.0,56.0,57.0,50.0,58.0,64.0,56.0,44.0,48.0,57.0,52.0,48.0,65.0,67.0,57.0,46.0,83.0,71.0,77.0,65.0,80.0,78.0,66.0,74.0,71.0,60.0,67.0,56.0,55.0,67.0,59.0,49.0,70.0,50.0,66.0,58.0,56.0,50.0,61.0,58.0,50.0,54.0,56.0,73.0,53.0,60.0,57.0,60.0,36.0,47.0,55.0,53.0,53.0,37.0,47.0,34.0,27.0,38.0,26.0,28.0,17.0,25.0,30.0,21.0,21.0,21.0,23.0,15.0,8.0,19.0,13.0,15.0,11.0,7.0,11.0,6.0,5.0,8.0,4.0,2.0,2.0,1.0,,2.0 C88091,15.0,22.0,19.0,18.0,20.0,13.0,24.0,13.0,14.0,18.0,25.0,15.0,16.0,24.0,26.0,24.0,22.0,11.0,12.0,13.0,14.0,14.0,16.0,15.0,12.0,8.0,9.0,15.0,12.0,19.0,18.0,13.0,15.0,25.0,15.0,28.0,27.0,13.0,24.0,17.0,16.0,17.0,18.0,12.0,18.0,11.0,13.0,16.0,7.0,15.0,8.0,9.0,10.0,17.0,14.0,16.0,20.0,16.0,15.0,24.0,21.0,16.0,15.0,11.0,19.0,9.0,11.0,8.0,10.0,10.0,13.0,9.0,8.0,10.0,5.0,5.0,7.0,11.0,10.0,8.0,5.0,6.0,5.0,8.0,2.0,2.0,,2.0,1.0,1.0,,1.0,,1.0,1.0,2.0 C88092,26.0,29.0,36.0,23.0,44.0,46.0,42.0,39.0,45.0,31.0,32.0,51.0,43.0,51.0,60.0,46.0,54.0,65.0,43.0,61.0,51.0,63.0,54.0,47.0,43.0,61.0,72.0,63.0,48.0,44.0,56.0,59.0,51.0,64.0,72.0,44.0,39.0,50.0,55.0,47.0,44.0,53.0,48.0,41.0,51.0,55.0,52.0,38.0,55.0,62.0,66.0,67.0,59.0,70.0,83.0,78.0,79.0,60.0,79.0,74.0,68.0,82.0,79.0,51.0,76.0,51.0,52.0,73.0,56.0,54.0,47.0,39.0,56.0,56.0,53.0,57.0,55.0,73.0,55.0,35.0,49.0,44.0,38.0,47.0,31.0,28.0,23.0,12.0,22.0,8.0,10.0,10.0,3.0,5.0,5.0,6.0 C88095,11.0,19.0,28.0,20.0,23.0,31.0,20.0,27.0,24.0,24.0,29.0,26.0,28.0,35.0,18.0,34.0,34.0,29.0,31.0,20.0,39.0,26.0,35.0,20.0,27.0,29.0,31.0,20.0,38.0,34.0,35.0,43.0,33.0,40.0,34.0,43.0,28.0,35.0,37.0,39.0,23.0,41.0,26.0,29.0,41.0,34.0,31.0,29.0,32.0,22.0,31.0,26.0,43.0,36.0,35.0,48.0,48.0,44.0,41.0,33.0,38.0,51.0,47.0,33.0,44.0,36.0,43.0,31.0,25.0,34.0,23.0,25.0,25.0,20.0,28.0,32.0,33.0,38.0,37.0,15.0,15.0,30.0,21.0,18.0,14.0,12.0,12.0,10.0,9.0,7.0,8.0,4.0,2.0,1.0,1.0,3.0 C88622,14.0,12.0,10.0,15.0,10.0,6.0,11.0,10.0,11.0,17.0,18.0,12.0,10.0,15.0,12.0,13.0,15.0,14.0,19.0,16.0,26.0,17.0,25.0,31.0,36.0,30.0,43.0,48.0,44.0,56.0,43.0,38.0,55.0,54.0,43.0,37.0,33.0,46.0,36.0,34.0,23.0,28.0,23.0,21.0,22.0,24.0,16.0,25.0,14.0,14.0,20.0,11.0,13.0,12.0,21.0,18.0,13.0,13.0,8.0,12.0,15.0,7.0,12.0,17.0,7.0,7.0,6.0,8.0,7.0,5.0,9.0,6.0,4.0,2.0,5.0,4.0,2.0,5.0,5.0,5.0,5.0,2.0,2.0,4.0,4.0,3.0,2.0,1.0,3.0,2.0,5.0,,1.0,,,1.0 C88627,13.0,12.0,15.0,14.0,12.0,11.0,11.0,17.0,11.0,13.0,12.0,7.0,7.0,4.0,7.0,3.0,3.0,14.0,523.0,1470.0,1841.0,1818.0,1714.0,1798.0,1918.0,1906.0,1826.0,1824.0,1679.0,1352.0,980.0,633.0,463.0,354.0,279.0,207.0,151.0,129.0,97.0,66.0,39.0,15.0,18.0,14.0,9.0,9.0,11.0,3.0,5.0,4.0,1.0,7.0,4.0,4.0,3.0,1.0,,2.0,1.0,1.0,,,,,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, C88631,13.0,7.0,5.0,9.0,3.0,10.0,6.0,4.0,10.0,9.0,2.0,6.0,2.0,7.0,9.0,9.0,5.0,11.0,6.0,10.0,7.0,8.0,6.0,7.0,8.0,12.0,9.0,6.0,11.0,7.0,20.0,9.0,15.0,26.0,21.0,23.0,16.0,24.0,27.0,16.0,15.0,19.0,14.0,12.0,12.0,23.0,20.0,26.0,18.0,16.0,11.0,8.0,7.0,14.0,12.0,10.0,11.0,8.0,23.0,10.0,12.0,9.0,8.0,10.0,13.0,8.0,9.0,7.0,6.0,6.0,7.0,6.0,2.0,11.0,8.0,3.0,2.0,8.0,4.0,4.0,5.0,6.0,2.0,2.0,3.0,4.0,2.0,,5.0,2.0,2.0,1.0,,1.0,,2.0 C88647,32.0,32.0,48.0,55.0,48.0,46.0,50.0,51.0,63.0,37.0,58.0,65.0,64.0,56.0,77.0,75.0,65.0,53.0,56.0,62.0,62.0,47.0,62.0,60.0,66.0,58.0,64.0,68.0,72.0,79.0,70.0,65.0,69.0,78.0,78.0,83.0,75.0,69.0,66.0,58.0,60.0,53.0,74.0,52.0,59.0,72.0,58.0,75.0,54.0,63.0,59.0,69.0,71.0,84.0,112.0,73.0,84.0,79.0,96.0,80.0,82.0,73.0,78.0,73.0,80.0,71.0,48.0,62.0,69.0,57.0,52.0,63.0,61.0,41.0,52.0,48.0,51.0,62.0,60.0,30.0,41.0,51.0,38.0,26.0,15.0,18.0,16.0,12.0,12.0,8.0,5.0,7.0,,4.0,5.0,4.0 C88648,22.0,29.0,20.0,34.0,26.0,28.0,33.0,29.0,29.0,26.0,30.0,39.0,38.0,32.0,47.0,32.0,38.0,37.0,28.0,17.0,36.0,32.0,32.0,33.0,38.0,40.0,44.0,33.0,36.0,44.0,47.0,44.0,36.0,45.0,42.0,36.0,50.0,54.0,34.0,38.0,43.0,47.0,42.0,42.0,43.0,46.0,37.0,30.0,42.0,38.0,39.0,40.0,50.0,62.0,43.0,54.0,52.0,65.0,48.0,57.0,58.0,57.0,45.0,53.0,60.0,40.0,47.0,59.0,46.0,53.0,46.0,41.0,50.0,38.0,40.0,39.0,45.0,34.0,38.0,28.0,31.0,25.0,21.0,15.0,10.0,13.0,9.0,13.0,10.0,9.0,4.0,8.0,4.0,4.0,1.0,3.0 C88652,17.0,19.0,27.0,27.0,26.0,30.0,21.0,22.0,23.0,38.0,25.0,26.0,36.0,29.0,29.0,31.0,25.0,26.0,25.0,21.0,18.0,10.0,16.0,17.0,30.0,29.0,38.0,34.0,37.0,31.0,30.0,31.0,45.0,35.0,23.0,31.0,37.0,38.0,31.0,49.0,30.0,32.0,31.0,44.0,33.0,35.0,36.0,28.0,41.0,32.0,27.0,35.0,37.0,24.0,24.0,23.0,27.0,23.0,21.0,22.0,20.0,17.0,18.0,12.0,17.0,17.0,16.0,12.0,14.0,9.0,14.0,10.0,13.0,5.0,12.0,13.0,15.0,17.0,16.0,5.0,8.0,9.0,6.0,9.0,6.0,6.0,,3.0,9.0,4.0,1.0,,,3.0,,2.0 C88655,2.0,8.0,6.0,6.0,11.0,7.0,6.0,6.0,10.0,7.0,5.0,8.0,12.0,5.0,5.0,6.0,4.0,8.0,10.0,5.0,2.0,4.0,9.0,4.0,8.0,11.0,16.0,9.0,4.0,15.0,12.0,9.0,14.0,8.0,7.0,6.0,9.0,9.0,9.0,10.0,7.0,12.0,7.0,7.0,7.0,13.0,10.0,2.0,6.0,4.0,6.0,7.0,12.0,11.0,14.0,10.0,10.0,10.0,9.0,13.0,9.0,9.0,6.0,9.0,3.0,7.0,5.0,3.0,5.0,3.0,4.0,3.0,8.0,2.0,2.0,4.0,1.0,2.0,2.0,2.0,1.0,6.0,1.0,4.0,2.0,4.0,4.0,,1.0,,1.0,3.0,,,,1.0 Y00361,,,,,,,,,,,,,,,,,,,,1.0,,,,,2.0,,,,1.0,,,2.0,2.0,1.0,2.0,2.0,2.0,1.0,,5.0,1.0,1.0,1.0,1.0,,,3.0,1.0,,1.0,1.0,2.0,1.0,,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,1.0,,,,,,,,,,,,,,,,,,,,, Y00411,72.0,76.0,77.0,66.0,63.0,77.0,80.0,79.0,97.0,67.0,76.0,71.0,74.0,94.0,79.0,76.0,63.0,67.0,78.0,75.0,62.0,52.0,42.0,50.0,59.0,88.0,69.0,78.0,102.0,88.0,83.0,84.0,97.0,103.0,112.0,104.0,101.0,105.0,85.0,90.0,108.0,98.0,87.0,91.0,88.0,83.0,69.0,60.0,58.0,60.0,72.0,56.0,65.0,64.0,74.0,77.0,78.0,73.0,88.0,71.0,86.0,79.0,69.0,59.0,67.0,60.0,60.0,50.0,71.0,60.0,49.0,41.0,43.0,50.0,41.0,39.0,34.0,35.0,28.0,31.0,29.0,22.0,18.0,15.0,10.0,10.0,11.0,6.0,9.0,7.0,2.0,2.0,4.0,2.0,2.0,3.0 Y04809,18.0,13.0,17.0,11.0,17.0,13.0,18.0,25.0,28.0,19.0,24.0,20.0,29.0,18.0,21.0,20.0,24.0,13.0,18.0,11.0,10.0,18.0,16.0,18.0,11.0,13.0,15.0,10.0,16.0,19.0,14.0,15.0,13.0,18.0,21.0,17.0,15.0,23.0,21.0,26.0,17.0,22.0,16.0,12.0,8.0,23.0,16.0,13.0,14.0,12.0,17.0,16.0,10.0,12.0,12.0,21.0,17.0,18.0,10.0,11.0,11.0,14.0,13.0,12.0,7.0,9.0,13.0,12.0,3.0,10.0,3.0,11.0,6.0,6.0,13.0,3.0,9.0,5.0,8.0,6.0,3.0,,2.0,1.0,,2.0,1.0,1.0,,1.0,,,1.0,,, Y05167,72.0,98.0,82.0,72.0,69.0,93.0,94.0,100.0,92.0,97.0,101.0,105.0,100.0,73.0,87.0,77.0,58.0,81.0,60.0,54.0,59.0,85.0,73.0,88.0,94.0,110.0,106.0,135.0,140.0,174.0,186.0,186.0,220.0,242.0,225.0,235.0,235.0,207.0,221.0,180.0,193.0,197.0,162.0,162.0,163.0,137.0,110.0,125.0,117.0,113.0,90.0,78.0,94.0,67.0,72.0,78.0,62.0,59.0,72.0,47.0,56.0,55.0,46.0,40.0,37.0,38.0,28.0,26.0,32.0,21.0,22.0,18.0,14.0,11.0,11.0,5.0,9.0,9.0,13.0,13.0,6.0,2.0,4.0,2.0,4.0,2.0,1.0,5.0,2.0,,,1.0,1.0,,,2.0 Y05248,24.0,25.0,14.0,27.0,16.0,20.0,15.0,24.0,25.0,22.0,23.0,17.0,18.0,18.0,20.0,24.0,25.0,22.0,28.0,20.0,15.0,19.0,15.0,23.0,10.0,17.0,14.0,26.0,17.0,21.0,32.0,25.0,22.0,17.0,23.0,26.0,33.0,26.0,13.0,22.0,21.0,21.0,33.0,21.0,25.0,23.0,22.0,19.0,14.0,23.0,26.0,17.0,29.0,25.0,25.0,17.0,38.0,28.0,23.0,24.0,22.0,29.0,18.0,23.0,27.0,20.0,13.0,17.0,15.0,14.0,19.0,11.0,19.0,15.0,15.0,9.0,9.0,11.0,14.0,8.0,10.0,7.0,3.0,2.0,9.0,3.0,5.0,2.0,4.0,3.0,1.0,2.0,1.0,,,2.0 Y05349,25.0,30.0,19.0,25.0,21.0,14.0,19.0,25.0,21.0,30.0,32.0,27.0,17.0,37.0,29.0,29.0,24.0,22.0,24.0,23.0,20.0,25.0,34.0,37.0,46.0,62.0,69.0,75.0,70.0,96.0,110.0,100.0,90.0,97.0,120.0,108.0,106.0,79.0,98.0,105.0,110.0,88.0,86.0,69.0,76.0,59.0,57.0,50.0,39.0,47.0,26.0,34.0,29.0,23.0,27.0,23.0,27.0,24.0,12.0,14.0,29.0,13.0,15.0,8.0,9.0,12.0,7.0,9.0,10.0,6.0,4.0,4.0,4.0,2.0,8.0,6.0,4.0,3.0,3.0,2.0,1.0,1.0,,1.0,,,,,,,,,1.0,,, Y05363,12.0,9.0,24.0,15.0,11.0,20.0,20.0,24.0,30.0,28.0,20.0,30.0,22.0,24.0,26.0,28.0,14.0,17.0,17.0,24.0,13.0,14.0,22.0,14.0,19.0,27.0,15.0,21.0,20.0,21.0,14.0,19.0,14.0,30.0,34.0,22.0,25.0,32.0,17.0,23.0,23.0,24.0,26.0,25.0,25.0,26.0,16.0,28.0,21.0,19.0,13.0,22.0,10.0,14.0,30.0,28.0,19.0,18.0,20.0,17.0,13.0,15.0,12.0,17.0,9.0,18.0,12.0,17.0,8.0,13.0,8.0,12.0,12.0,13.0,8.0,6.0,4.0,13.0,16.0,6.0,11.0,6.0,7.0,3.0,2.0,4.0,7.0,5.0,3.0,1.0,,1.0,2.0,2.0,,1.0 Y05364,19.0,32.0,21.0,21.0,32.0,24.0,23.0,34.0,23.0,28.0,18.0,29.0,36.0,28.0,30.0,32.0,28.0,24.0,21.0,25.0,26.0,16.0,20.0,18.0,21.0,26.0,24.0,17.0,20.0,23.0,28.0,29.0,27.0,30.0,32.0,32.0,31.0,31.0,30.0,32.0,29.0,25.0,23.0,30.0,22.0,19.0,16.0,24.0,20.0,13.0,19.0,28.0,21.0,16.0,28.0,23.0,23.0,23.0,18.0,23.0,18.0,14.0,22.0,20.0,22.0,13.0,9.0,12.0,9.0,9.0,9.0,9.0,9.0,7.0,5.0,10.0,1.0,8.0,7.0,5.0,7.0,1.0,2.0,2.0,1.0,2.0,3.0,3.0,,2.0,2.0,,,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 M81001,78.0,97.0,85.0,123.0,93.0,97.0,123.0,105.0,116.0,128.0,111.0,108.0,134.0,135.0,104.0,115.0,116.0,108.0,106.0,90.0,94.0,92.0,91.0,100.0,87.0,91.0,115.0,98.0,97.0,124.0,108.0,117.0,127.0,132.0,130.0,150.0,144.0,132.0,130.0,146.0,129.0,145.0,131.0,107.0,137.0,135.0,105.0,119.0,113.0,103.0,91.0,90.0,105.0,94.0,117.0,123.0,110.0,100.0,86.0,106.0,103.0,104.0,108.0,96.0,89.0,77.0,71.0,93.0,96.0,86.0,78.0,87.0,92.0,79.0,92.0,82.0,92.0,73.0,80.0,49.0,46.0,44.0,35.0,30.0,22.0,22.0,26.0,17.0,20.0,19.0,9.0,14.0,8.0,5.0,2.0,9.0 M81002,65.0,59.0,67.0,65.0,78.0,77.0,78.0,63.0,75.0,80.0,101.0,93.0,72.0,96.0,99.0,90.0,90.0,98.0,84.0,85.0,79.0,71.0,69.0,77.0,87.0,92.0,90.0,89.0,100.0,110.0,117.0,124.0,123.0,128.0,132.0,139.0,142.0,136.0,130.0,133.0,131.0,133.0,146.0,134.0,121.0,123.0,115.0,88.0,77.0,107.0,75.0,81.0,94.0,105.0,101.0,71.0,89.0,92.0,106.0,104.0,89.0,83.0,78.0,80.0,80.0,80.0,75.0,73.0,73.0,61.0,73.0,48.0,57.0,66.0,61.0,62.0,63.0,54.0,57.0,37.0,42.0,42.0,33.0,36.0,16.0,24.0,20.0,19.0,14.0,10.0,8.0,6.0,5.0,2.0,4.0,7.0 M81004,50.0,61.0,66.0,80.0,67.0,80.0,79.0,80.0,82.0,100.0,76.0,72.0,103.0,81.0,78.0,80.0,79.0,97.0,85.0,76.0,64.0,71.0,69.0,70.0,74.0,89.0,90.0,85.0,86.0,89.0,117.0,95.0,119.0,111.0,123.0,129.0,129.0,126.0,125.0,109.0,134.0,111.0,122.0,125.0,104.0,90.0,96.0,85.0,88.0,87.0,104.0,105.0,108.0,84.0,96.0,108.0,86.0,111.0,112.0,107.0,119.0,112.0,107.0,93.0,111.0,90.0,103.0,94.0,75.0,87.0,87.0,92.0,106.0,75.0,81.0,89.0,77.0,71.0,92.0,70.0,64.0,46.0,51.0,44.0,36.0,24.0,27.0,34.0,31.0,14.0,10.0,7.0,12.0,6.0,8.0,9.0 M81005,60.0,63.0,56.0,75.0,61.0,73.0,92.0,89.0,85.0,95.0,105.0,89.0,95.0,95.0,101.0,98.0,84.0,88.0,79.0,89.0,65.0,67.0,77.0,77.0,58.0,76.0,70.0,84.0,71.0,86.0,85.0,82.0,90.0,113.0,112.0,112.0,104.0,84.0,95.0,93.0,91.0,101.0,84.0,102.0,75.0,83.0,92.0,72.0,72.0,82.0,89.0,90.0,105.0,86.0,109.0,102.0,84.0,89.0,112.0,94.0,101.0,79.0,80.0,93.0,81.0,67.0,77.0,77.0,67.0,53.0,52.0,69.0,66.0,54.0,61.0,69.0,72.0,60.0,55.0,49.0,41.0,47.0,38.0,32.0,32.0,36.0,32.0,15.0,11.0,9.0,6.0,4.0,1.0,10.0,3.0,7.0 M81006,86.0,87.0,90.0,97.0,100.0,98.0,102.0,119.0,96.0,106.0,112.0,118.0,137.0,134.0,108.0,128.0,144.0,106.0,136.0,149.0,180.0,177.0,139.0,140.0,147.0,155.0,145.0,150.0,170.0,145.0,151.0,150.0,129.0,152.0,156.0,143.0,143.0,147.0,154.0,129.0,144.0,132.0,147.0,125.0,138.0,125.0,126.0,127.0,124.0,127.0,142.0,141.0,147.0,163.0,157.0,178.0,172.0,173.0,159.0,164.0,164.0,137.0,148.0,134.0,104.0,126.0,113.0,98.0,73.0,92.0,90.0,90.0,85.0,80.0,63.0,92.0,70.0,77.0,90.0,57.0,68.0,54.0,59.0,29.0,42.0,33.0,31.0,30.0,29.0,19.0,13.0,14.0,11.0,5.0,10.0,5.0 M81007,19.0,11.0,25.0,22.0,20.0,21.0,29.0,24.0,26.0,23.0,26.0,27.0,27.0,23.0,25.0,20.0,32.0,33.0,36.0,28.0,29.0,21.0,28.0,28.0,17.0,23.0,22.0,24.0,22.0,29.0,27.0,25.0,23.0,24.0,31.0,28.0,26.0,35.0,22.0,32.0,21.0,22.0,36.0,20.0,29.0,35.0,25.0,15.0,29.0,29.0,26.0,33.0,49.0,46.0,39.0,46.0,53.0,44.0,69.0,51.0,46.0,45.0,51.0,52.0,54.0,33.0,35.0,51.0,36.0,28.0,38.0,39.0,35.0,35.0,37.0,37.0,44.0,49.0,38.0,35.0,26.0,32.0,26.0,19.0,20.0,12.0,14.0,14.0,12.0,7.0,10.0,5.0,6.0,6.0,3.0,3.0 M81008,83.0,82.0,80.0,106.0,114.0,106.0,104.0,102.0,89.0,112.0,116.0,97.0,88.0,101.0,94.0,94.0,106.0,85.0,112.0,127.0,135.0,134.0,118.0,139.0,182.0,167.0,183.0,191.0,197.0,184.0,200.0,217.0,209.0,183.0,192.0,211.0,180.0,193.0,179.0,165.0,166.0,153.0,168.0,137.0,148.0,172.0,151.0,139.0,109.0,96.0,108.0,104.0,123.0,138.0,147.0,131.0,133.0,118.0,104.0,107.0,124.0,125.0,103.0,104.0,92.0,104.0,90.0,80.0,85.0,80.0,73.0,61.0,82.0,57.0,70.0,64.0,66.0,75.0,68.0,47.0,53.0,49.0,41.0,26.0,30.0,25.0,26.0,26.0,23.0,24.0,15.0,15.0,6.0,6.0,3.0,9.0 M81009,11.0,15.0,20.0,21.0,26.0,32.0,29.0,23.0,47.0,41.0,29.0,40.0,36.0,44.0,43.0,43.0,38.0,37.0,31.0,29.0,22.0,25.0,21.0,33.0,22.0,24.0,26.0,15.0,26.0,19.0,27.0,21.0,30.0,32.0,16.0,27.0,34.0,28.0,33.0,22.0,28.0,23.0,31.0,36.0,36.0,39.0,17.0,25.0,32.0,12.0,35.0,29.0,24.0,41.0,35.0,45.0,48.0,31.0,58.0,47.0,44.0,34.0,56.0,58.0,65.0,40.0,35.0,49.0,53.0,43.0,43.0,40.0,39.0,40.0,57.0,39.0,43.0,43.0,36.0,33.0,43.0,27.0,15.0,14.0,13.0,19.0,19.0,15.0,16.0,14.0,12.0,5.0,4.0,5.0,3.0,5.0 M81010,68.0,84.0,72.0,88.0,74.0,80.0,77.0,79.0,88.0,84.0,76.0,78.0,93.0,98.0,99.0,86.0,82.0,90.0,84.0,94.0,78.0,75.0,62.0,69.0,86.0,87.0,80.0,83.0,111.0,87.0,99.0,112.0,110.0,142.0,118.0,98.0,111.0,108.0,112.0,122.0,117.0,117.0,101.0,100.0,110.0,105.0,88.0,87.0,80.0,80.0,88.0,100.0,98.0,90.0,106.0,109.0,103.0,106.0,108.0,110.0,90.0,100.0,82.0,86.0,73.0,78.0,78.0,88.0,60.0,65.0,65.0,57.0,63.0,73.0,61.0,68.0,66.0,64.0,60.0,47.0,49.0,48.0,55.0,27.0,37.0,33.0,19.0,19.0,18.0,17.0,7.0,13.0,4.0,5.0,6.0,3.0 M81011,26.0,43.0,34.0,45.0,36.0,43.0,23.0,31.0,30.0,29.0,33.0,34.0,31.0,40.0,28.0,37.0,27.0,32.0,37.0,23.0,27.0,27.0,28.0,25.0,35.0,28.0,29.0,39.0,40.0,34.0,29.0,33.0,30.0,33.0,41.0,47.0,33.0,41.0,40.0,34.0,46.0,44.0,33.0,31.0,35.0,31.0,43.0,36.0,38.0,44.0,29.0,34.0,37.0,71.0,47.0,52.0,51.0,63.0,53.0,56.0,62.0,55.0,70.0,59.0,56.0,49.0,47.0,47.0,44.0,57.0,58.0,41.0,38.0,50.0,45.0,41.0,40.0,56.0,41.0,33.0,37.0,31.0,29.0,26.0,14.0,16.0,18.0,9.0,8.0,10.0,5.0,4.0,4.0,5.0,1.0,3.0 M81012,43.0,49.0,47.0,51.0,49.0,49.0,54.0,60.0,62.0,71.0,54.0,67.0,70.0,70.0,63.0,72.0,76.0,81.0,93.0,72.0,67.0,62.0,69.0,68.0,63.0,57.0,62.0,74.0,65.0,70.0,73.0,66.0,57.0,66.0,98.0,56.0,80.0,88.0,72.0,60.0,64.0,68.0,73.0,78.0,73.0,67.0,74.0,75.0,67.0,64.0,76.0,74.0,89.0,77.0,103.0,120.0,106.0,102.0,111.0,103.0,106.0,94.0,111.0,100.0,104.0,115.0,99.0,89.0,78.0,73.0,80.0,83.0,81.0,77.0,88.0,95.0,103.0,96.0,94.0,62.0,58.0,82.0,58.0,52.0,42.0,44.0,36.0,24.0,29.0,24.0,24.0,14.0,14.0,11.0,6.0,20.0 M81015,38.0,53.0,53.0,43.0,42.0,48.0,46.0,55.0,58.0,66.0,69.0,68.0,58.0,67.0,70.0,45.0,44.0,43.0,54.0,54.0,34.0,48.0,41.0,28.0,36.0,34.0,51.0,41.0,60.0,48.0,71.0,51.0,54.0,53.0,64.0,62.0,79.0,67.0,50.0,60.0,56.0,64.0,64.0,69.0,52.0,56.0,64.0,50.0,43.0,54.0,67.0,56.0,61.0,71.0,68.0,65.0,58.0,75.0,64.0,79.0,55.0,68.0,69.0,47.0,61.0,44.0,37.0,51.0,53.0,51.0,46.0,59.0,42.0,63.0,48.0,52.0,57.0,53.0,52.0,43.0,30.0,48.0,34.0,29.0,32.0,28.0,22.0,16.0,13.0,12.0,10.0,10.0,2.0,4.0,4.0,3.0 M81016,62.0,84.0,79.0,80.0,77.0,89.0,98.0,114.0,104.0,103.0,98.0,102.0,106.0,110.0,121.0,92.0,92.0,96.0,85.0,95.0,84.0,79.0,74.0,85.0,101.0,96.0,90.0,113.0,93.0,100.0,99.0,110.0,110.0,120.0,128.0,125.0,117.0,123.0,104.0,110.0,96.0,128.0,100.0,130.0,131.0,130.0,108.0,114.0,104.0,128.0,108.0,115.0,134.0,104.0,142.0,114.0,128.0,154.0,160.0,134.0,151.0,152.0,154.0,154.0,140.0,141.0,125.0,120.0,113.0,127.0,110.0,124.0,126.0,112.0,105.0,135.0,124.0,131.0,105.0,89.0,98.0,89.0,67.0,78.0,61.0,52.0,44.0,29.0,39.0,25.0,20.0,14.0,14.0,14.0,12.0,10.0 M81017,66.0,62.0,66.0,70.0,62.0,85.0,68.0,80.0,92.0,80.0,106.0,87.0,117.0,93.0,101.0,81.0,100.0,78.0,101.0,82.0,79.0,76.0,79.0,79.0,59.0,71.0,92.0,79.0,77.0,84.0,94.0,90.0,112.0,100.0,90.0,111.0,93.0,106.0,88.0,104.0,85.0,76.0,72.0,78.0,103.0,86.0,74.0,91.0,66.0,66.0,68.0,60.0,76.0,82.0,67.0,80.0,94.0,78.0,65.0,64.0,83.0,80.0,101.0,61.0,57.0,70.0,67.0,60.0,61.0,49.0,45.0,41.0,47.0,39.0,31.0,39.0,41.0,45.0,42.0,21.0,35.0,17.0,22.0,18.0,15.0,12.0,12.0,10.0,8.0,12.0,7.0,5.0,3.0,3.0,3.0,7.0 M81018,14.0,12.0,25.0,21.0,27.0,29.0,18.0,33.0,29.0,30.0,45.0,28.0,32.0,32.0,34.0,30.0,29.0,33.0,39.0,22.0,24.0,29.0,14.0,14.0,16.0,21.0,19.0,18.0,21.0,18.0,29.0,17.0,14.0,22.0,21.0,26.0,24.0,20.0,32.0,20.0,37.0,29.0,25.0,21.0,37.0,32.0,22.0,33.0,32.0,37.0,33.0,35.0,36.0,38.0,44.0,43.0,48.0,39.0,47.0,46.0,60.0,60.0,58.0,63.0,58.0,56.0,58.0,72.0,68.0,51.0,55.0,40.0,42.0,73.0,52.0,51.0,60.0,60.0,51.0,42.0,41.0,35.0,38.0,21.0,22.0,21.0,17.0,15.0,11.0,7.0,9.0,3.0,7.0,5.0,3.0,2.0 M81019,50.0,77.0,92.0,89.0,96.0,94.0,94.0,101.0,119.0,124.0,114.0,122.0,122.0,110.0,128.0,118.0,122.0,134.0,111.0,107.0,95.0,98.0,81.0,92.0,94.0,101.0,88.0,98.0,103.0,106.0,108.0,120.0,140.0,122.0,140.0,114.0,120.0,144.0,138.0,122.0,137.0,146.0,125.0,131.0,137.0,139.0,132.0,141.0,140.0,127.0,144.0,120.0,90.0,115.0,113.0,99.0,126.0,96.0,100.0,87.0,96.0,78.0,72.0,71.0,86.0,84.0,75.0,88.0,74.0,78.0,75.0,84.0,86.0,90.0,94.0,116.0,116.0,109.0,73.0,61.0,64.0,50.0,36.0,38.0,32.0,17.0,20.0,9.0,14.0,4.0,6.0,4.0,3.0,2.0,4.0,5.0 M81020,52.0,46.0,64.0,60.0,66.0,66.0,77.0,74.0,83.0,72.0,80.0,84.0,81.0,82.0,85.0,65.0,98.0,82.0,74.0,74.0,82.0,68.0,64.0,66.0,73.0,64.0,65.0,86.0,85.0,74.0,70.0,106.0,96.0,87.0,100.0,102.0,114.0,99.0,117.0,112.0,89.0,106.0,90.0,93.0,102.0,107.0,93.0,75.0,82.0,97.0,81.0,78.0,73.0,88.0,77.0,83.0,85.0,85.0,60.0,80.0,87.0,75.0,63.0,66.0,63.0,61.0,45.0,56.0,53.0,39.0,47.0,46.0,48.0,35.0,36.0,53.0,56.0,36.0,36.0,35.0,32.0,49.0,23.0,25.0,18.0,20.0,18.0,20.0,13.0,8.0,10.0,3.0,7.0,4.0,5.0,5.0 M81021,41.0,47.0,43.0,51.0,54.0,53.0,64.0,73.0,71.0,58.0,70.0,87.0,79.0,101.0,93.0,81.0,87.0,98.0,92.0,83.0,78.0,79.0,65.0,72.0,68.0,77.0,72.0,61.0,66.0,76.0,68.0,58.0,77.0,90.0,67.0,82.0,77.0,72.0,66.0,79.0,88.0,79.0,98.0,68.0,75.0,92.0,96.0,72.0,84.0,90.0,111.0,98.0,94.0,96.0,113.0,99.0,110.0,94.0,111.0,111.0,83.0,98.0,83.0,83.0,89.0,80.0,68.0,89.0,54.0,59.0,55.0,69.0,47.0,54.0,50.0,69.0,51.0,66.0,76.0,48.0,46.0,40.0,36.0,32.0,28.0,27.0,27.0,11.0,17.0,12.0,10.0,8.0,3.0,6.0,4.0,8.0 M81022,72.0,82.0,90.0,96.0,80.0,98.0,102.0,94.0,110.0,109.0,134.0,125.0,104.0,108.0,116.0,106.0,109.0,119.0,97.0,113.0,94.0,85.0,116.0,99.0,69.0,104.0,111.0,121.0,136.0,92.0,124.0,131.0,124.0,145.0,170.0,125.0,136.0,144.0,140.0,137.0,114.0,144.0,127.0,145.0,144.0,124.0,127.0,122.0,108.0,106.0,124.0,98.0,117.0,122.0,135.0,134.0,134.0,101.0,136.0,143.0,126.0,108.0,110.0,103.0,90.0,106.0,88.0,83.0,66.0,75.0,68.0,72.0,82.0,70.0,78.0,57.0,80.0,77.0,93.0,38.0,50.0,50.0,46.0,29.0,33.0,14.0,28.0,27.0,31.0,15.0,12.0,6.0,9.0,7.0,7.0,13.0 M81024,12.0,9.0,17.0,22.0,12.0,23.0,22.0,23.0,29.0,32.0,31.0,31.0,29.0,21.0,30.0,27.0,25.0,33.0,25.0,27.0,23.0,21.0,16.0,22.0,19.0,26.0,15.0,25.0,26.0,26.0,20.0,23.0,14.0,18.0,21.0,27.0,27.0,32.0,28.0,28.0,17.0,27.0,23.0,30.0,25.0,25.0,29.0,19.0,33.0,23.0,28.0,30.0,25.0,34.0,38.0,43.0,40.0,59.0,55.0,48.0,47.0,45.0,53.0,58.0,47.0,47.0,42.0,39.0,35.0,42.0,30.0,46.0,36.0,38.0,35.0,35.0,36.0,42.0,35.0,22.0,36.0,27.0,16.0,13.0,13.0,19.0,11.0,12.0,12.0,10.0,5.0,4.0,2.0,3.0,4.0,4.0 M81025,15.0,24.0,30.0,21.0,27.0,27.0,35.0,30.0,28.0,24.0,29.0,32.0,29.0,23.0,44.0,21.0,33.0,28.0,29.0,31.0,20.0,32.0,19.0,38.0,25.0,27.0,21.0,27.0,35.0,37.0,18.0,32.0,38.0,42.0,28.0,34.0,35.0,28.0,34.0,34.0,31.0,45.0,29.0,35.0,26.0,34.0,35.0,33.0,28.0,41.0,22.0,34.0,36.0,35.0,36.0,26.0,35.0,33.0,41.0,49.0,40.0,51.0,30.0,33.0,40.0,29.0,41.0,24.0,29.0,27.0,29.0,24.0,37.0,29.0,17.0,22.0,24.0,25.0,33.0,13.0,14.0,19.0,15.0,12.0,9.0,14.0,11.0,9.0,2.0,5.0,3.0,4.0,2.0,3.0,1.0,7.0 M81026,216.0,238.0,250.0,246.0,242.0,285.0,280.0,306.0,276.0,283.0,278.0,272.0,284.0,286.0,298.0,321.0,290.0,290.0,282.0,267.0,230.0,261.0,280.0,235.0,231.0,284.0,279.0,301.0,294.0,335.0,324.0,336.0,347.0,362.0,363.0,351.0,363.0,353.0,352.0,353.0,322.0,349.0,317.0,319.0,332.0,307.0,285.0,237.0,285.0,297.0,303.0,300.0,315.0,295.0,303.0,319.0,306.0,302.0,357.0,326.0,330.0,284.0,303.0,313.0,296.0,265.0,247.0,261.0,246.0,228.0,196.0,203.0,196.0,189.0,222.0,185.0,196.0,200.0,192.0,139.0,124.0,133.0,129.0,95.0,76.0,69.0,81.0,69.0,54.0,41.0,43.0,33.0,28.0,17.0,9.0,37.0 M81027,35.0,35.0,44.0,37.0,49.0,51.0,65.0,66.0,60.0,64.0,53.0,64.0,62.0,70.0,78.0,74.0,73.0,68.0,72.0,67.0,55.0,47.0,44.0,40.0,38.0,51.0,42.0,49.0,53.0,44.0,45.0,43.0,48.0,37.0,45.0,35.0,41.0,56.0,57.0,50.0,64.0,59.0,54.0,67.0,68.0,72.0,52.0,54.0,72.0,63.0,58.0,62.0,76.0,70.0,65.0,60.0,67.0,79.0,67.0,77.0,76.0,54.0,71.0,42.0,52.0,50.0,47.0,43.0,45.0,39.0,39.0,36.0,46.0,44.0,43.0,37.0,43.0,53.0,48.0,36.0,49.0,31.0,29.0,20.0,22.0,16.0,36.0,21.0,27.0,14.0,13.0,6.0,9.0,4.0,2.0,9.0 M81029,21.0,13.0,30.0,20.0,31.0,22.0,28.0,26.0,36.0,36.0,32.0,37.0,43.0,29.0,34.0,32.0,35.0,28.0,36.0,31.0,26.0,29.0,30.0,25.0,20.0,27.0,26.0,28.0,42.0,37.0,31.0,39.0,43.0,27.0,36.0,40.0,35.0,43.0,34.0,36.0,33.0,28.0,31.0,32.0,35.0,43.0,30.0,28.0,48.0,37.0,33.0,34.0,40.0,44.0,52.0,56.0,52.0,57.0,76.0,59.0,68.0,77.0,69.0,75.0,75.0,64.0,71.0,59.0,62.0,62.0,60.0,76.0,56.0,63.0,60.0,68.0,69.0,72.0,73.0,60.0,61.0,41.0,48.0,35.0,34.0,31.0,29.0,22.0,22.0,20.0,9.0,15.0,9.0,6.0,7.0,12.0 M81032,37.0,29.0,50.0,60.0,45.0,59.0,59.0,65.0,56.0,68.0,73.0,75.0,77.0,84.0,80.0,87.0,72.0,90.0,80.0,59.0,60.0,43.0,53.0,69.0,53.0,68.0,82.0,49.0,58.0,56.0,69.0,75.0,59.0,82.0,78.0,78.0,100.0,73.0,78.0,76.0,89.0,87.0,92.0,76.0,70.0,90.0,65.0,58.0,73.0,93.0,98.0,77.0,80.0,79.0,77.0,85.0,90.0,94.0,99.0,99.0,103.0,79.0,93.0,91.0,80.0,69.0,96.0,85.0,71.0,70.0,77.0,62.0,60.0,65.0,52.0,55.0,64.0,74.0,71.0,59.0,53.0,41.0,45.0,28.0,35.0,28.0,32.0,33.0,30.0,20.0,14.0,14.0,6.0,10.0,5.0,10.0 M81033,18.0,19.0,17.0,19.0,24.0,27.0,22.0,24.0,30.0,37.0,23.0,36.0,55.0,41.0,54.0,38.0,41.0,55.0,42.0,42.0,41.0,44.0,47.0,33.0,48.0,38.0,37.0,43.0,17.0,42.0,27.0,25.0,25.0,32.0,40.0,33.0,35.0,34.0,37.0,26.0,29.0,38.0,38.0,42.0,42.0,47.0,48.0,34.0,36.0,33.0,55.0,44.0,46.0,69.0,63.0,78.0,73.0,60.0,73.0,80.0,72.0,69.0,73.0,65.0,80.0,61.0,53.0,56.0,51.0,47.0,49.0,42.0,46.0,50.0,42.0,50.0,40.0,45.0,49.0,33.0,31.0,41.0,27.0,25.0,19.0,24.0,19.0,9.0,11.0,6.0,5.0,6.0,3.0,3.0,4.0,1.0 M81034,30.0,31.0,33.0,36.0,35.0,25.0,46.0,43.0,39.0,47.0,41.0,42.0,50.0,48.0,51.0,49.0,51.0,56.0,54.0,47.0,41.0,54.0,40.0,46.0,58.0,52.0,46.0,48.0,45.0,58.0,56.0,50.0,55.0,61.0,54.0,67.0,59.0,60.0,57.0,47.0,49.0,55.0,43.0,51.0,56.0,52.0,45.0,52.0,50.0,52.0,57.0,62.0,54.0,54.0,59.0,48.0,60.0,64.0,58.0,58.0,60.0,72.0,64.0,56.0,52.0,56.0,60.0,47.0,67.0,50.0,43.0,60.0,59.0,49.0,51.0,46.0,52.0,58.0,64.0,30.0,34.0,41.0,14.0,42.0,19.0,21.0,22.0,26.0,17.0,16.0,10.0,11.0,7.0,4.0,3.0,5.0 M81035,68.0,83.0,70.0,65.0,72.0,85.0,78.0,75.0,73.0,92.0,83.0,81.0,98.0,88.0,99.0,110.0,98.0,87.0,76.0,59.0,63.0,68.0,63.0,59.0,71.0,76.0,74.0,103.0,120.0,93.0,96.0,100.0,113.0,96.0,108.0,127.0,111.0,100.0,90.0,119.0,101.0,93.0,95.0,94.0,90.0,113.0,98.0,96.0,94.0,74.0,95.0,89.0,101.0,100.0,103.0,91.0,83.0,90.0,97.0,94.0,93.0,82.0,74.0,84.0,81.0,74.0,67.0,60.0,67.0,79.0,54.0,59.0,62.0,50.0,51.0,58.0,71.0,52.0,65.0,35.0,32.0,44.0,36.0,21.0,25.0,24.0,14.0,16.0,13.0,18.0,13.0,11.0,7.0,7.0,2.0,16.0 M81037,44.0,63.0,52.0,44.0,39.0,58.0,60.0,61.0,55.0,60.0,69.0,64.0,74.0,57.0,72.0,66.0,68.0,57.0,53.0,73.0,68.0,50.0,56.0,54.0,63.0,70.0,64.0,79.0,68.0,80.0,72.0,78.0,88.0,82.0,83.0,84.0,81.0,88.0,84.0,82.0,78.0,92.0,78.0,94.0,81.0,95.0,105.0,68.0,83.0,85.0,77.0,91.0,91.0,91.0,74.0,83.0,86.0,77.0,77.0,83.0,88.0,81.0,73.0,80.0,80.0,63.0,62.0,77.0,65.0,64.0,53.0,70.0,50.0,65.0,64.0,61.0,62.0,47.0,50.0,44.0,51.0,34.0,37.0,35.0,26.0,27.0,16.0,21.0,15.0,14.0,10.0,4.0,2.0,3.0,2.0,6.0 M81038,34.0,35.0,43.0,48.0,49.0,40.0,50.0,41.0,55.0,42.0,67.0,54.0,54.0,60.0,60.0,59.0,60.0,76.0,56.0,49.0,52.0,44.0,50.0,44.0,44.0,60.0,38.0,54.0,48.0,41.0,51.0,59.0,58.0,54.0,71.0,49.0,51.0,58.0,42.0,37.0,54.0,45.0,57.0,54.0,71.0,63.0,74.0,53.0,61.0,55.0,70.0,79.0,59.0,88.0,84.0,75.0,112.0,105.0,100.0,103.0,116.0,102.0,113.0,129.0,110.0,114.0,117.0,96.0,88.0,74.0,84.0,89.0,86.0,88.0,90.0,87.0,71.0,103.0,92.0,63.0,84.0,62.0,53.0,50.0,45.0,53.0,36.0,33.0,28.0,28.0,22.0,15.0,8.0,13.0,5.0,15.0 M81039,35.0,50.0,39.0,51.0,46.0,59.0,41.0,57.0,52.0,55.0,73.0,67.0,70.0,70.0,61.0,72.0,72.0,57.0,74.0,60.0,50.0,51.0,49.0,45.0,48.0,53.0,59.0,64.0,59.0,58.0,55.0,54.0,58.0,63.0,63.0,62.0,65.0,63.0,72.0,66.0,73.0,62.0,50.0,72.0,75.0,83.0,61.0,63.0,55.0,69.0,72.0,69.0,68.0,82.0,79.0,74.0,79.0,83.0,82.0,78.0,102.0,89.0,83.0,87.0,67.0,93.0,71.0,90.0,79.0,75.0,78.0,71.0,81.0,69.0,88.0,79.0,74.0,61.0,94.0,41.0,61.0,56.0,40.0,42.0,29.0,29.0,35.0,20.0,29.0,23.0,14.0,14.0,7.0,7.0,4.0,15.0 M81040,92.0,75.0,86.0,92.0,102.0,79.0,100.0,101.0,108.0,114.0,116.0,113.0,139.0,100.0,121.0,129.0,107.0,102.0,107.0,113.0,94.0,111.0,101.0,92.0,99.0,124.0,93.0,112.0,128.0,118.0,103.0,122.0,119.0,131.0,150.0,110.0,113.0,111.0,107.0,144.0,97.0,132.0,118.0,114.0,103.0,112.0,117.0,128.0,126.0,122.0,132.0,133.0,144.0,141.0,156.0,157.0,179.0,151.0,177.0,154.0,194.0,180.0,162.0,164.0,150.0,133.0,133.0,136.0,134.0,146.0,127.0,138.0,117.0,120.0,121.0,130.0,153.0,162.0,154.0,113.0,121.0,105.0,109.0,79.0,59.0,61.0,44.0,55.0,39.0,33.0,29.0,21.0,18.0,12.0,8.0,16.0 M81041,56.0,64.0,64.0,53.0,66.0,58.0,65.0,66.0,63.0,53.0,63.0,73.0,71.0,73.0,69.0,60.0,52.0,63.0,57.0,53.0,59.0,60.0,48.0,48.0,48.0,57.0,47.0,67.0,67.0,81.0,60.0,71.0,67.0,84.0,67.0,58.0,78.0,68.0,69.0,65.0,68.0,80.0,73.0,74.0,86.0,56.0,75.0,86.0,77.0,77.0,74.0,69.0,73.0,83.0,77.0,75.0,90.0,74.0,95.0,74.0,77.0,87.0,85.0,67.0,68.0,73.0,48.0,55.0,55.0,52.0,52.0,56.0,46.0,66.0,44.0,47.0,48.0,50.0,50.0,37.0,40.0,36.0,37.0,23.0,23.0,20.0,11.0,18.0,14.0,7.0,10.0,4.0,2.0,3.0,1.0, M81042,25.0,34.0,28.0,32.0,32.0,34.0,49.0,47.0,39.0,58.0,52.0,59.0,62.0,49.0,48.0,43.0,45.0,53.0,39.0,31.0,39.0,43.0,30.0,40.0,36.0,31.0,45.0,48.0,42.0,37.0,44.0,39.0,42.0,49.0,45.0,44.0,59.0,49.0,53.0,56.0,46.0,42.0,49.0,51.0,45.0,38.0,53.0,49.0,45.0,53.0,46.0,51.0,67.0,67.0,65.0,73.0,66.0,82.0,79.0,85.0,74.0,82.0,70.0,92.0,76.0,95.0,74.0,65.0,65.0,76.0,88.0,87.0,69.0,69.0,61.0,68.0,81.0,72.0,99.0,64.0,65.0,53.0,53.0,43.0,32.0,33.0,32.0,18.0,10.0,21.0,17.0,12.0,3.0,12.0,6.0,6.0 M81043,22.0,22.0,28.0,38.0,28.0,36.0,34.0,48.0,35.0,43.0,37.0,44.0,32.0,61.0,53.0,50.0,57.0,38.0,45.0,55.0,38.0,31.0,24.0,36.0,28.0,37.0,22.0,33.0,26.0,37.0,30.0,29.0,42.0,36.0,39.0,31.0,38.0,41.0,34.0,29.0,36.0,34.0,44.0,43.0,30.0,39.0,43.0,40.0,44.0,43.0,56.0,64.0,47.0,56.0,62.0,55.0,74.0,74.0,68.0,85.0,79.0,71.0,76.0,77.0,66.0,84.0,78.0,74.0,73.0,77.0,72.0,82.0,69.0,71.0,68.0,67.0,75.0,62.0,85.0,54.0,82.0,46.0,45.0,34.0,40.0,30.0,20.0,26.0,19.0,14.0,9.0,7.0,6.0,7.0,3.0,5.0 M81044,39.0,48.0,46.0,36.0,48.0,45.0,40.0,55.0,61.0,46.0,64.0,72.0,64.0,61.0,68.0,61.0,63.0,69.0,67.0,42.0,43.0,52.0,46.0,46.0,54.0,60.0,74.0,64.0,62.0,48.0,72.0,63.0,66.0,69.0,71.0,74.0,81.0,81.0,67.0,65.0,61.0,75.0,76.0,71.0,79.0,63.0,63.0,65.0,58.0,58.0,74.0,72.0,74.0,99.0,83.0,80.0,88.0,88.0,78.0,107.0,95.0,88.0,92.0,102.0,99.0,82.0,99.0,87.0,70.0,79.0,70.0,80.0,91.0,66.0,61.0,83.0,67.0,74.0,64.0,47.0,61.0,62.0,46.0,42.0,27.0,24.0,30.0,20.0,19.0,23.0,9.0,9.0,11.0,4.0,4.0,14.0 M81045,12.0,14.0,21.0,26.0,20.0,17.0,20.0,36.0,11.0,23.0,20.0,39.0,27.0,26.0,27.0,23.0,25.0,27.0,24.0,23.0,14.0,25.0,24.0,29.0,23.0,17.0,24.0,24.0,21.0,19.0,15.0,10.0,13.0,15.0,13.0,30.0,18.0,24.0,25.0,22.0,23.0,24.0,25.0,28.0,22.0,34.0,25.0,25.0,24.0,30.0,25.0,27.0,36.0,29.0,40.0,33.0,35.0,31.0,38.0,46.0,55.0,59.0,48.0,48.0,44.0,50.0,34.0,53.0,36.0,37.0,37.0,36.0,43.0,35.0,37.0,28.0,43.0,34.0,34.0,25.0,27.0,23.0,22.0,19.0,12.0,26.0,11.0,13.0,9.0,7.0,4.0,2.0,4.0,,,3.0 M81046,28.0,34.0,40.0,50.0,54.0,59.0,56.0,44.0,50.0,58.0,65.0,57.0,60.0,50.0,55.0,65.0,59.0,55.0,60.0,44.0,68.0,54.0,50.0,47.0,42.0,43.0,60.0,57.0,73.0,56.0,62.0,67.0,60.0,69.0,67.0,62.0,51.0,61.0,69.0,57.0,54.0,44.0,49.0,58.0,63.0,50.0,63.0,52.0,40.0,61.0,50.0,64.0,75.0,76.0,100.0,99.0,79.0,97.0,95.0,89.0,91.0,92.0,95.0,106.0,84.0,88.0,99.0,93.0,89.0,88.0,94.0,81.0,90.0,70.0,83.0,77.0,85.0,82.0,88.0,56.0,69.0,65.0,57.0,45.0,39.0,35.0,32.0,33.0,23.0,20.0,24.0,15.0,10.0,14.0,6.0,10.0 M81047,54.0,53.0,65.0,77.0,47.0,65.0,66.0,64.0,81.0,67.0,64.0,61.0,66.0,66.0,57.0,67.0,65.0,75.0,48.0,56.0,44.0,54.0,54.0,53.0,49.0,48.0,43.0,76.0,46.0,66.0,65.0,73.0,80.0,71.0,91.0,92.0,86.0,82.0,100.0,92.0,79.0,81.0,67.0,71.0,83.0,87.0,79.0,56.0,65.0,56.0,72.0,69.0,69.0,63.0,67.0,61.0,86.0,77.0,77.0,60.0,70.0,60.0,52.0,64.0,48.0,50.0,61.0,48.0,48.0,49.0,45.0,35.0,58.0,44.0,54.0,46.0,56.0,45.0,50.0,42.0,39.0,33.0,32.0,27.0,29.0,17.0,15.0,20.0,11.0,15.0,10.0,8.0,2.0,3.0,1.0, M81048,25.0,35.0,32.0,42.0,31.0,33.0,33.0,38.0,45.0,42.0,35.0,36.0,40.0,40.0,39.0,49.0,49.0,42.0,37.0,43.0,37.0,31.0,40.0,38.0,40.0,50.0,44.0,40.0,28.0,61.0,47.0,52.0,46.0,48.0,56.0,52.0,47.0,53.0,51.0,39.0,43.0,52.0,51.0,50.0,68.0,52.0,49.0,49.0,51.0,41.0,45.0,47.0,57.0,64.0,63.0,66.0,70.0,82.0,78.0,57.0,91.0,88.0,87.0,98.0,84.0,79.0,87.0,80.0,72.0,88.0,82.0,87.0,81.0,77.0,63.0,78.0,81.0,68.0,68.0,48.0,47.0,42.0,35.0,39.0,40.0,24.0,27.0,17.0,20.0,15.0,14.0,8.0,3.0,5.0,6.0,15.0 M81049,54.0,49.0,60.0,62.0,57.0,71.0,71.0,65.0,72.0,68.0,58.0,74.0,66.0,77.0,69.0,69.0,75.0,64.0,59.0,40.0,51.0,58.0,50.0,59.0,58.0,62.0,44.0,58.0,64.0,61.0,58.0,59.0,64.0,75.0,99.0,71.0,87.0,93.0,107.0,78.0,85.0,91.0,77.0,74.0,100.0,77.0,95.0,86.0,67.0,85.0,78.0,74.0,96.0,83.0,83.0,95.0,100.0,79.0,73.0,89.0,73.0,65.0,80.0,82.0,63.0,68.0,70.0,57.0,55.0,50.0,59.0,62.0,41.0,49.0,42.0,51.0,43.0,50.0,50.0,49.0,43.0,38.0,32.0,36.0,18.0,36.0,26.0,16.0,11.0,10.0,4.0,6.0,8.0,9.0,6.0,8.0 M81054,23.0,30.0,22.0,30.0,31.0,29.0,33.0,35.0,31.0,47.0,31.0,34.0,35.0,45.0,25.0,39.0,28.0,34.0,30.0,29.0,35.0,26.0,34.0,36.0,20.0,25.0,38.0,32.0,27.0,42.0,30.0,37.0,47.0,38.0,33.0,41.0,35.0,41.0,43.0,37.0,48.0,42.0,34.0,39.0,31.0,28.0,34.0,29.0,31.0,34.0,38.0,40.0,40.0,49.0,54.0,49.0,56.0,53.0,76.0,80.0,56.0,66.0,62.0,67.0,65.0,73.0,64.0,51.0,67.0,56.0,55.0,55.0,46.0,62.0,49.0,42.0,57.0,59.0,57.0,44.0,35.0,58.0,41.0,29.0,23.0,29.0,23.0,22.0,23.0,17.0,9.0,5.0,10.0,3.0,2.0,7.0 M81055,31.0,32.0,29.0,31.0,28.0,20.0,30.0,35.0,33.0,46.0,42.0,40.0,45.0,37.0,38.0,37.0,39.0,30.0,42.0,27.0,43.0,33.0,24.0,37.0,31.0,37.0,29.0,39.0,30.0,41.0,28.0,27.0,31.0,34.0,46.0,41.0,34.0,39.0,41.0,31.0,44.0,39.0,40.0,33.0,37.0,33.0,25.0,49.0,36.0,42.0,36.0,31.0,40.0,37.0,38.0,38.0,49.0,47.0,35.0,37.0,47.0,43.0,32.0,42.0,31.0,27.0,30.0,31.0,25.0,20.0,28.0,24.0,26.0,19.0,13.0,32.0,31.0,20.0,24.0,19.0,20.0,12.0,13.0,9.0,9.0,9.0,8.0,10.0,4.0,1.0,4.0,6.0,2.0,6.0,3.0,4.0 M81056,45.0,35.0,37.0,54.0,51.0,49.0,72.0,49.0,64.0,70.0,53.0,76.0,74.0,72.0,70.0,73.0,78.0,62.0,62.0,77.0,70.0,59.0,79.0,72.0,59.0,74.0,73.0,77.0,86.0,96.0,86.0,83.0,108.0,89.0,75.0,87.0,95.0,90.0,87.0,85.0,91.0,97.0,94.0,90.0,94.0,103.0,79.0,65.0,65.0,106.0,72.0,87.0,93.0,85.0,96.0,84.0,106.0,84.0,101.0,100.0,86.0,79.0,108.0,78.0,86.0,60.0,70.0,75.0,63.0,63.0,58.0,62.0,72.0,45.0,77.0,69.0,80.0,74.0,71.0,52.0,56.0,46.0,45.0,38.0,28.0,22.0,27.0,23.0,16.0,15.0,23.0,6.0,7.0,6.0,1.0,4.0 M81057,49.0,36.0,54.0,50.0,51.0,60.0,61.0,79.0,64.0,81.0,52.0,64.0,65.0,75.0,78.0,80.0,63.0,70.0,78.0,67.0,83.0,59.0,72.0,64.0,71.0,61.0,67.0,70.0,56.0,62.0,63.0,60.0,84.0,76.0,71.0,78.0,82.0,68.0,70.0,81.0,83.0,71.0,92.0,66.0,71.0,93.0,70.0,76.0,72.0,58.0,111.0,113.0,87.0,92.0,117.0,110.0,111.0,149.0,137.0,136.0,133.0,138.0,115.0,128.0,134.0,138.0,135.0,110.0,100.0,112.0,104.0,106.0,105.0,125.0,121.0,106.0,97.0,141.0,143.0,114.0,100.0,107.0,95.0,63.0,48.0,48.0,52.0,44.0,29.0,25.0,27.0,15.0,13.0,5.0,4.0,7.0 M81058,35.0,30.0,38.0,41.0,39.0,34.0,59.0,41.0,39.0,44.0,60.0,53.0,63.0,55.0,65.0,59.0,60.0,49.0,70.0,51.0,51.0,61.0,43.0,58.0,66.0,37.0,56.0,57.0,57.0,58.0,59.0,63.0,61.0,70.0,59.0,66.0,58.0,60.0,78.0,54.0,51.0,71.0,51.0,64.0,58.0,53.0,61.0,61.0,58.0,69.0,62.0,63.0,66.0,70.0,80.0,73.0,96.0,77.0,79.0,73.0,68.0,68.0,65.0,72.0,71.0,72.0,50.0,56.0,58.0,54.0,56.0,52.0,60.0,61.0,65.0,58.0,56.0,53.0,69.0,45.0,54.0,46.0,38.0,31.0,23.0,28.0,31.0,27.0,21.0,12.0,15.0,19.0,6.0,9.0,6.0,12.0 M81061,22.0,27.0,25.0,29.0,27.0,32.0,31.0,31.0,45.0,34.0,41.0,38.0,34.0,34.0,53.0,40.0,34.0,45.0,34.0,28.0,31.0,28.0,47.0,38.0,42.0,35.0,68.0,50.0,47.0,52.0,59.0,66.0,56.0,53.0,54.0,55.0,55.0,59.0,59.0,38.0,54.0,60.0,71.0,64.0,51.0,47.0,57.0,54.0,52.0,45.0,57.0,56.0,35.0,49.0,62.0,68.0,69.0,49.0,65.0,64.0,70.0,63.0,73.0,67.0,79.0,63.0,62.0,48.0,61.0,66.0,65.0,65.0,61.0,70.0,42.0,61.0,50.0,77.0,64.0,43.0,54.0,44.0,33.0,32.0,34.0,33.0,22.0,15.0,23.0,10.0,10.0,8.0,15.0,5.0,6.0,11.0 M81063,72.0,75.0,67.0,79.0,64.0,70.0,81.0,70.0,90.0,85.0,88.0,79.0,85.0,79.0,80.0,61.0,84.0,82.0,58.0,71.0,67.0,77.0,81.0,67.0,85.0,89.0,84.0,82.0,110.0,108.0,95.0,116.0,98.0,111.0,122.0,104.0,104.0,87.0,102.0,94.0,87.0,103.0,90.0,76.0,105.0,100.0,96.0,85.0,72.0,77.0,85.0,93.0,85.0,106.0,98.0,90.0,85.0,88.0,84.0,88.0,87.0,98.0,71.0,73.0,74.0,65.0,81.0,62.0,63.0,55.0,69.0,76.0,51.0,57.0,70.0,64.0,74.0,60.0,68.0,45.0,50.0,43.0,32.0,41.0,37.0,40.0,23.0,21.0,22.0,19.0,13.0,9.0,5.0,8.0,5.0,10.0 M81064,40.0,44.0,50.0,40.0,32.0,43.0,55.0,40.0,45.0,66.0,59.0,40.0,58.0,64.0,71.0,50.0,73.0,44.0,49.0,49.0,32.0,28.0,32.0,39.0,25.0,33.0,27.0,28.0,36.0,38.0,34.0,51.0,40.0,49.0,48.0,58.0,53.0,47.0,52.0,47.0,52.0,51.0,46.0,42.0,47.0,34.0,48.0,34.0,57.0,40.0,26.0,43.0,60.0,53.0,55.0,57.0,46.0,71.0,57.0,54.0,51.0,52.0,57.0,64.0,42.0,53.0,44.0,51.0,39.0,36.0,40.0,47.0,46.0,50.0,39.0,29.0,45.0,49.0,48.0,44.0,41.0,31.0,32.0,35.0,26.0,19.0,23.0,24.0,16.0,10.0,8.0,7.0,3.0,6.0,4.0,10.0 M81066,36.0,38.0,34.0,35.0,33.0,37.0,43.0,39.0,41.0,44.0,49.0,43.0,66.0,42.0,50.0,51.0,51.0,40.0,48.0,40.0,42.0,39.0,32.0,36.0,47.0,40.0,48.0,38.0,46.0,49.0,44.0,35.0,49.0,57.0,63.0,59.0,49.0,64.0,54.0,51.0,54.0,45.0,45.0,55.0,56.0,51.0,66.0,49.0,41.0,55.0,51.0,64.0,50.0,74.0,55.0,67.0,73.0,67.0,60.0,60.0,48.0,60.0,53.0,48.0,54.0,60.0,53.0,56.0,49.0,51.0,35.0,48.0,38.0,40.0,30.0,42.0,41.0,49.0,46.0,38.0,35.0,36.0,36.0,29.0,25.0,20.0,21.0,23.0,21.0,10.0,6.0,10.0,4.0,3.0,3.0,5.0 M81067,22.0,24.0,31.0,27.0,27.0,30.0,27.0,33.0,40.0,40.0,39.0,43.0,44.0,28.0,32.0,38.0,48.0,37.0,37.0,28.0,20.0,31.0,16.0,13.0,22.0,21.0,38.0,17.0,25.0,19.0,30.0,31.0,31.0,34.0,35.0,33.0,41.0,38.0,42.0,36.0,29.0,27.0,36.0,24.0,32.0,22.0,31.0,18.0,30.0,37.0,33.0,26.0,30.0,37.0,36.0,38.0,28.0,28.0,36.0,41.0,48.0,38.0,47.0,45.0,41.0,40.0,41.0,39.0,38.0,34.0,32.0,38.0,30.0,43.0,26.0,51.0,30.0,40.0,42.0,19.0,28.0,29.0,19.0,14.0,12.0,11.0,9.0,8.0,10.0,5.0,5.0,3.0,1.0,3.0,1.0,1.0 M81068,63.0,82.0,74.0,76.0,81.0,79.0,69.0,80.0,93.0,88.0,85.0,90.0,91.0,87.0,92.0,74.0,95.0,93.0,83.0,65.0,72.0,69.0,74.0,74.0,69.0,72.0,92.0,85.0,79.0,85.0,75.0,102.0,91.0,99.0,97.0,105.0,86.0,94.0,80.0,84.0,99.0,96.0,83.0,84.0,87.0,88.0,76.0,84.0,78.0,103.0,117.0,110.0,108.0,101.0,108.0,131.0,108.0,126.0,107.0,108.0,110.0,115.0,84.0,103.0,81.0,90.0,72.0,90.0,73.0,72.0,79.0,75.0,85.0,80.0,83.0,90.0,89.0,96.0,96.0,76.0,94.0,76.0,50.0,43.0,43.0,32.0,37.0,26.0,23.0,19.0,14.0,13.0,6.0,7.0,3.0,10.0 M81069,43.0,45.0,46.0,46.0,36.0,43.0,41.0,43.0,59.0,53.0,61.0,36.0,53.0,57.0,58.0,54.0,51.0,46.0,44.0,46.0,43.0,45.0,37.0,43.0,47.0,41.0,40.0,67.0,61.0,60.0,71.0,64.0,67.0,76.0,73.0,73.0,80.0,67.0,67.0,56.0,68.0,52.0,44.0,55.0,59.0,47.0,54.0,56.0,53.0,60.0,51.0,59.0,79.0,60.0,52.0,60.0,69.0,70.0,76.0,66.0,80.0,75.0,69.0,77.0,67.0,57.0,52.0,65.0,51.0,47.0,56.0,57.0,47.0,54.0,53.0,38.0,55.0,54.0,48.0,42.0,46.0,43.0,46.0,38.0,23.0,25.0,21.0,18.0,13.0,14.0,11.0,11.0,10.0,3.0,5.0,12.0 M81070,23.0,36.0,51.0,40.0,53.0,51.0,56.0,45.0,76.0,60.0,84.0,83.0,110.0,86.0,109.0,117.0,120.0,157.0,123.0,72.0,73.0,63.0,62.0,53.0,64.0,55.0,71.0,63.0,58.0,51.0,44.0,70.0,62.0,65.0,65.0,86.0,63.0,79.0,69.0,66.0,65.0,57.0,59.0,75.0,68.0,71.0,70.0,52.0,59.0,68.0,57.0,65.0,78.0,71.0,73.0,66.0,73.0,94.0,97.0,92.0,83.0,83.0,90.0,70.0,76.0,74.0,57.0,63.0,63.0,68.0,53.0,61.0,57.0,53.0,54.0,64.0,57.0,59.0,42.0,42.0,55.0,43.0,44.0,26.0,32.0,33.0,28.0,26.0,13.0,17.0,16.0,11.0,9.0,5.0,5.0,4.0 M81072,28.0,27.0,19.0,34.0,25.0,28.0,32.0,29.0,27.0,45.0,25.0,34.0,30.0,44.0,28.0,34.0,38.0,29.0,34.0,30.0,43.0,28.0,38.0,38.0,44.0,44.0,37.0,39.0,41.0,43.0,58.0,49.0,59.0,47.0,66.0,40.0,64.0,52.0,42.0,56.0,48.0,55.0,43.0,48.0,56.0,35.0,52.0,37.0,35.0,60.0,37.0,49.0,35.0,43.0,66.0,53.0,56.0,55.0,54.0,61.0,55.0,63.0,54.0,50.0,49.0,47.0,45.0,44.0,41.0,44.0,43.0,34.0,33.0,46.0,32.0,30.0,34.0,42.0,35.0,22.0,19.0,18.0,15.0,12.0,11.0,8.0,12.0,7.0,6.0,9.0,6.0,6.0,3.0,1.0,2.0,3.0 M81074,40.0,43.0,53.0,47.0,43.0,72.0,29.0,44.0,48.0,58.0,49.0,47.0,60.0,57.0,65.0,58.0,62.0,62.0,63.0,43.0,40.0,55.0,44.0,42.0,50.0,55.0,59.0,51.0,67.0,63.0,51.0,45.0,50.0,69.0,73.0,64.0,63.0,61.0,65.0,66.0,49.0,54.0,56.0,52.0,69.0,66.0,48.0,42.0,49.0,70.0,49.0,56.0,64.0,72.0,88.0,72.0,78.0,76.0,96.0,79.0,69.0,92.0,90.0,80.0,85.0,62.0,86.0,70.0,76.0,88.0,69.0,60.0,62.0,55.0,72.0,69.0,69.0,90.0,72.0,64.0,55.0,53.0,50.0,46.0,42.0,42.0,31.0,26.0,16.0,22.0,10.0,16.0,10.0,7.0,4.0,5.0 M81075,36.0,46.0,38.0,50.0,47.0,47.0,59.0,50.0,59.0,62.0,71.0,73.0,73.0,86.0,81.0,77.0,82.0,69.0,66.0,73.0,64.0,72.0,69.0,57.0,51.0,53.0,63.0,83.0,82.0,77.0,63.0,89.0,69.0,82.0,68.0,86.0,79.0,83.0,80.0,72.0,67.0,62.0,76.0,86.0,76.0,75.0,66.0,63.0,68.0,59.0,59.0,76.0,83.0,88.0,90.0,77.0,85.0,86.0,105.0,102.0,99.0,90.0,96.0,97.0,75.0,93.0,88.0,95.0,95.0,72.0,66.0,83.0,60.0,75.0,75.0,82.0,93.0,79.0,81.0,48.0,56.0,60.0,48.0,53.0,37.0,35.0,32.0,31.0,29.0,17.0,19.0,8.0,10.0,9.0,7.0,8.0 M81076,6.0,6.0,10.0,9.0,4.0,13.0,11.0,8.0,19.0,23.0,12.0,18.0,26.0,30.0,9.0,12.0,13.0,5.0,13.0,12.0,9.0,7.0,9.0,16.0,8.0,12.0,10.0,8.0,8.0,10.0,16.0,8.0,6.0,9.0,13.0,11.0,9.0,13.0,19.0,15.0,11.0,16.0,13.0,28.0,13.0,6.0,13.0,20.0,18.0,15.0,19.0,16.0,21.0,27.0,18.0,25.0,25.0,26.0,19.0,25.0,23.0,30.0,23.0,30.0,27.0,22.0,33.0,24.0,25.0,20.0,24.0,27.0,22.0,29.0,25.0,15.0,27.0,36.0,24.0,21.0,15.0,20.0,17.0,12.0,8.0,13.0,9.0,9.0,3.0,5.0,7.0,5.0,3.0,4.0,1.0,6.0 M81077,19.0,17.0,18.0,14.0,17.0,16.0,15.0,25.0,15.0,27.0,19.0,13.0,23.0,25.0,20.0,24.0,25.0,23.0,21.0,27.0,20.0,24.0,23.0,29.0,20.0,24.0,23.0,29.0,29.0,21.0,27.0,20.0,20.0,19.0,30.0,21.0,24.0,20.0,21.0,22.0,26.0,30.0,23.0,22.0,26.0,37.0,33.0,26.0,24.0,26.0,26.0,35.0,37.0,38.0,40.0,49.0,36.0,39.0,37.0,47.0,37.0,41.0,47.0,43.0,32.0,40.0,37.0,42.0,36.0,30.0,24.0,30.0,31.0,23.0,28.0,27.0,26.0,35.0,32.0,27.0,33.0,24.0,22.0,19.0,17.0,11.0,16.0,11.0,9.0,3.0,4.0,5.0,1.0,2.0,1.0,2.0 M81078,22.0,20.0,25.0,32.0,23.0,17.0,40.0,35.0,43.0,41.0,40.0,30.0,33.0,30.0,54.0,38.0,31.0,34.0,27.0,29.0,23.0,31.0,24.0,35.0,37.0,38.0,33.0,36.0,23.0,29.0,25.0,37.0,23.0,28.0,29.0,36.0,33.0,35.0,24.0,42.0,32.0,41.0,31.0,37.0,44.0,34.0,43.0,41.0,47.0,38.0,44.0,29.0,50.0,33.0,61.0,57.0,55.0,64.0,51.0,53.0,61.0,45.0,48.0,55.0,60.0,52.0,55.0,50.0,49.0,46.0,43.0,42.0,34.0,40.0,30.0,37.0,40.0,36.0,29.0,44.0,22.0,19.0,30.0,32.0,18.0,21.0,10.0,12.0,10.0,11.0,11.0,5.0,4.0,4.0,,2.0 M81081,16.0,16.0,25.0,19.0,15.0,24.0,29.0,23.0,22.0,28.0,39.0,28.0,35.0,27.0,33.0,26.0,30.0,26.0,36.0,30.0,27.0,21.0,21.0,17.0,24.0,19.0,27.0,39.0,29.0,31.0,23.0,42.0,32.0,24.0,30.0,37.0,29.0,17.0,30.0,36.0,28.0,23.0,25.0,34.0,28.0,40.0,29.0,28.0,33.0,32.0,33.0,30.0,31.0,28.0,36.0,33.0,38.0,38.0,45.0,52.0,61.0,44.0,34.0,31.0,42.0,42.0,36.0,32.0,43.0,36.0,28.0,35.0,32.0,31.0,27.0,22.0,32.0,32.0,35.0,25.0,29.0,26.0,20.0,20.0,15.0,18.0,17.0,16.0,10.0,6.0,6.0,5.0,3.0,1.0,3.0,4.0 M81082,66.0,85.0,88.0,94.0,89.0,108.0,104.0,101.0,90.0,79.0,105.0,108.0,104.0,115.0,92.0,105.0,102.0,85.0,106.0,67.0,99.0,68.0,73.0,79.0,81.0,86.0,87.0,83.0,91.0,88.0,84.0,114.0,98.0,105.0,103.0,109.0,111.0,122.0,122.0,117.0,130.0,110.0,124.0,124.0,118.0,107.0,82.0,82.0,73.0,113.0,108.0,104.0,100.0,109.0,110.0,96.0,117.0,84.0,107.0,113.0,103.0,88.0,86.0,101.0,97.0,83.0,90.0,77.0,71.0,87.0,74.0,77.0,62.0,57.0,52.0,73.0,80.0,61.0,59.0,45.0,48.0,34.0,29.0,26.0,20.0,17.0,19.0,13.0,18.0,8.0,11.0,2.0,8.0,5.0,2.0,11.0 M81083,25.0,25.0,19.0,17.0,29.0,19.0,30.0,22.0,26.0,22.0,18.0,20.0,16.0,30.0,28.0,21.0,22.0,24.0,18.0,22.0,13.0,22.0,15.0,16.0,28.0,28.0,22.0,19.0,39.0,25.0,28.0,31.0,29.0,33.0,37.0,36.0,33.0,35.0,34.0,34.0,28.0,29.0,30.0,30.0,32.0,17.0,26.0,13.0,31.0,29.0,29.0,28.0,27.0,38.0,37.0,40.0,27.0,41.0,36.0,40.0,40.0,26.0,39.0,39.0,31.0,36.0,39.0,39.0,28.0,23.0,34.0,35.0,23.0,34.0,27.0,20.0,24.0,25.0,29.0,26.0,22.0,20.0,31.0,21.0,29.0,10.0,8.0,18.0,9.0,10.0,7.0,6.0,9.0,5.0,4.0,4.0 M81084,32.0,22.0,37.0,29.0,37.0,37.0,40.0,34.0,40.0,40.0,40.0,32.0,37.0,33.0,31.0,31.0,22.0,32.0,36.0,24.0,29.0,31.0,14.0,33.0,24.0,19.0,18.0,18.0,28.0,36.0,41.0,33.0,39.0,26.0,33.0,46.0,34.0,42.0,43.0,41.0,32.0,30.0,37.0,46.0,38.0,33.0,35.0,34.0,38.0,36.0,46.0,29.0,43.0,37.0,43.0,42.0,42.0,51.0,48.0,35.0,37.0,42.0,46.0,41.0,32.0,35.0,30.0,26.0,33.0,23.0,25.0,39.0,20.0,31.0,29.0,24.0,35.0,36.0,33.0,20.0,21.0,18.0,18.0,16.0,6.0,8.0,10.0,6.0,4.0,9.0,4.0,3.0,1.0,1.0,2.0,3.0 M81090,8.0,8.0,8.0,10.0,11.0,18.0,18.0,15.0,14.0,19.0,17.0,16.0,16.0,15.0,19.0,16.0,24.0,18.0,27.0,17.0,16.0,12.0,19.0,14.0,13.0,19.0,18.0,18.0,16.0,11.0,14.0,16.0,8.0,11.0,25.0,11.0,19.0,14.0,12.0,25.0,14.0,18.0,13.0,16.0,16.0,18.0,21.0,13.0,19.0,21.0,18.0,20.0,36.0,20.0,34.0,20.0,42.0,22.0,34.0,25.0,33.0,30.0,29.0,35.0,37.0,32.0,32.0,25.0,15.0,23.0,20.0,22.0,28.0,32.0,23.0,21.0,23.0,32.0,28.0,19.0,21.0,24.0,21.0,17.0,9.0,15.0,7.0,3.0,7.0,4.0,5.0,6.0,2.0,1.0,2.0,3.0 M81091,50.0,81.0,60.0,66.0,76.0,79.0,57.0,90.0,77.0,79.0,67.0,61.0,95.0,88.0,98.0,80.0,72.0,76.0,71.0,64.0,69.0,67.0,73.0,53.0,79.0,78.0,70.0,85.0,73.0,69.0,72.0,75.0,85.0,86.0,77.0,78.0,81.0,95.0,74.0,74.0,81.0,67.0,77.0,62.0,65.0,74.0,88.0,85.0,67.0,71.0,88.0,83.0,99.0,100.0,105.0,122.0,92.0,122.0,115.0,110.0,111.0,113.0,100.0,108.0,92.0,90.0,93.0,76.0,77.0,77.0,85.0,69.0,71.0,63.0,63.0,77.0,71.0,79.0,76.0,56.0,62.0,65.0,39.0,31.0,37.0,22.0,44.0,39.0,26.0,21.0,17.0,14.0,13.0,16.0,3.0,13.0 M81092,16.0,25.0,37.0,42.0,33.0,30.0,25.0,37.0,40.0,36.0,22.0,22.0,29.0,33.0,34.0,34.0,41.0,35.0,38.0,16.0,27.0,38.0,22.0,33.0,41.0,34.0,36.0,38.0,37.0,35.0,30.0,43.0,29.0,26.0,41.0,52.0,47.0,56.0,44.0,51.0,46.0,40.0,34.0,39.0,42.0,47.0,37.0,30.0,29.0,40.0,27.0,27.0,29.0,38.0,39.0,43.0,35.0,39.0,44.0,38.0,32.0,32.0,38.0,31.0,41.0,36.0,30.0,39.0,40.0,33.0,42.0,33.0,26.0,20.0,20.0,24.0,33.0,29.0,17.0,17.0,15.0,11.0,15.0,5.0,8.0,11.0,8.0,3.0,5.0,1.0,5.0,5.0,3.0,1.0,1.0,3.0 M81093,63.0,70.0,65.0,80.0,68.0,70.0,72.0,72.0,56.0,63.0,82.0,87.0,66.0,77.0,68.0,65.0,59.0,53.0,51.0,53.0,60.0,56.0,63.0,42.0,57.0,59.0,67.0,52.0,66.0,70.0,64.0,69.0,61.0,89.0,79.0,89.0,96.0,82.0,81.0,67.0,77.0,71.0,80.0,97.0,73.0,72.0,55.0,68.0,54.0,63.0,59.0,62.0,65.0,68.0,71.0,65.0,69.0,76.0,53.0,56.0,54.0,64.0,75.0,70.0,53.0,57.0,56.0,48.0,51.0,47.0,26.0,52.0,37.0,40.0,40.0,37.0,31.0,34.0,42.0,29.0,22.0,17.0,20.0,15.0,17.0,13.0,11.0,14.0,6.0,6.0,1.0,7.0,8.0,4.0,1.0,7.0 M81094,47.0,46.0,49.0,52.0,61.0,53.0,59.0,71.0,64.0,67.0,57.0,52.0,64.0,52.0,64.0,59.0,56.0,52.0,43.0,41.0,43.0,35.0,46.0,42.0,46.0,36.0,33.0,49.0,38.0,55.0,58.0,62.0,61.0,73.0,74.0,62.0,75.0,74.0,65.0,79.0,80.0,74.0,81.0,75.0,53.0,53.0,62.0,49.0,57.0,57.0,53.0,74.0,62.0,66.0,81.0,68.0,47.0,76.0,67.0,72.0,68.0,80.0,62.0,70.0,56.0,56.0,39.0,67.0,53.0,52.0,43.0,51.0,45.0,36.0,47.0,47.0,26.0,51.0,46.0,27.0,30.0,32.0,23.0,19.0,23.0,14.0,12.0,9.0,18.0,10.0,5.0,7.0,5.0,5.0,3.0,7.0 M81600,9.0,18.0,11.0,19.0,22.0,19.0,10.0,20.0,17.0,32.0,13.0,23.0,18.0,17.0,19.0,19.0,18.0,20.0,13.0,11.0,24.0,17.0,12.0,16.0,13.0,23.0,14.0,16.0,14.0,25.0,16.0,18.0,13.0,17.0,22.0,15.0,25.0,18.0,23.0,19.0,23.0,12.0,26.0,15.0,26.0,21.0,12.0,19.0,20.0,11.0,19.0,28.0,25.0,19.0,31.0,27.0,36.0,33.0,30.0,34.0,35.0,41.0,27.0,45.0,38.0,43.0,38.0,53.0,27.0,42.0,37.0,21.0,26.0,31.0,19.0,31.0,37.0,33.0,17.0,19.0,21.0,21.0,17.0,19.0,10.0,9.0,5.0,9.0,9.0,7.0,6.0,,2.0,2.0,,6.0 M81604,23.0,24.0,33.0,28.0,25.0,22.0,34.0,37.0,26.0,37.0,31.0,38.0,40.0,41.0,36.0,27.0,33.0,47.0,46.0,33.0,37.0,32.0,26.0,36.0,28.0,25.0,31.0,31.0,29.0,24.0,46.0,21.0,30.0,40.0,29.0,24.0,27.0,43.0,35.0,25.0,36.0,33.0,28.0,43.0,38.0,28.0,36.0,32.0,27.0,27.0,41.0,40.0,47.0,50.0,44.0,52.0,50.0,52.0,57.0,67.0,65.0,70.0,56.0,59.0,62.0,50.0,45.0,50.0,47.0,50.0,55.0,36.0,54.0,39.0,38.0,43.0,44.0,50.0,45.0,36.0,33.0,27.0,25.0,22.0,21.0,29.0,12.0,16.0,3.0,10.0,4.0,6.0,5.0,1.0,3.0,5.0 M81605,19.0,21.0,20.0,33.0,27.0,24.0,27.0,27.0,28.0,17.0,26.0,26.0,40.0,33.0,29.0,47.0,35.0,32.0,44.0,24.0,36.0,42.0,31.0,27.0,32.0,26.0,22.0,26.0,21.0,26.0,26.0,29.0,24.0,28.0,34.0,20.0,25.0,15.0,36.0,17.0,23.0,33.0,32.0,28.0,38.0,43.0,29.0,28.0,31.0,45.0,25.0,44.0,53.0,40.0,43.0,39.0,45.0,43.0,49.0,46.0,54.0,63.0,57.0,49.0,47.0,30.0,36.0,34.0,34.0,30.0,26.0,29.0,24.0,34.0,28.0,22.0,27.0,21.0,29.0,20.0,24.0,11.0,18.0,14.0,15.0,13.0,7.0,9.0,6.0,8.0,4.0,6.0,2.0,3.0,1.0,2.0 M81608,13.0,18.0,18.0,25.0,17.0,20.0,18.0,18.0,18.0,23.0,20.0,16.0,18.0,18.0,26.0,17.0,19.0,14.0,25.0,15.0,14.0,15.0,19.0,20.0,15.0,15.0,22.0,21.0,23.0,13.0,16.0,25.0,21.0,14.0,25.0,25.0,12.0,14.0,18.0,19.0,15.0,22.0,20.0,20.0,34.0,19.0,16.0,10.0,12.0,17.0,19.0,21.0,24.0,30.0,32.0,24.0,39.0,30.0,42.0,30.0,32.0,40.0,38.0,39.0,29.0,31.0,33.0,30.0,20.0,26.0,22.0,21.0,29.0,27.0,15.0,19.0,20.0,22.0,22.0,27.0,20.0,20.0,18.0,14.0,8.0,9.0,15.0,6.0,3.0,6.0,6.0,2.0,3.0,1.0,2.0,2.0 M81616,16.0,19.0,18.0,15.0,19.0,16.0,18.0,13.0,23.0,20.0,23.0,18.0,29.0,19.0,21.0,23.0,29.0,24.0,27.0,16.0,16.0,10.0,17.0,13.0,9.0,15.0,14.0,22.0,22.0,24.0,23.0,29.0,21.0,23.0,34.0,27.0,26.0,23.0,28.0,26.0,29.0,24.0,27.0,20.0,28.0,16.0,32.0,23.0,22.0,23.0,14.0,19.0,20.0,25.0,29.0,24.0,20.0,32.0,26.0,24.0,20.0,13.0,31.0,30.0,19.0,26.0,22.0,21.0,24.0,21.0,21.0,14.0,23.0,22.0,16.0,16.0,9.0,15.0,8.0,14.0,8.0,11.0,6.0,6.0,7.0,2.0,3.0,2.0,1.0,1.0,1.0,,,3.0,,5.0 M81617,28.0,26.0,44.0,31.0,36.0,43.0,41.0,51.0,34.0,38.0,38.0,33.0,44.0,29.0,35.0,30.0,34.0,38.0,34.0,27.0,20.0,32.0,21.0,19.0,27.0,37.0,21.0,25.0,21.0,27.0,30.0,44.0,34.0,35.0,48.0,45.0,47.0,31.0,46.0,41.0,41.0,41.0,44.0,34.0,49.0,44.0,29.0,21.0,43.0,33.0,44.0,36.0,32.0,30.0,40.0,45.0,31.0,41.0,27.0,53.0,36.0,34.0,35.0,35.0,37.0,33.0,26.0,25.0,33.0,24.0,17.0,20.0,32.0,27.0,18.0,20.0,19.0,19.0,27.0,20.0,14.0,9.0,11.0,5.0,9.0,6.0,4.0,2.0,2.0,2.0,2.0,1.0,,1.0,2.0,2.0 M81627,30.0,47.0,45.0,38.0,55.0,42.0,44.0,42.0,66.0,45.0,38.0,62.0,43.0,44.0,49.0,41.0,71.0,44.0,44.0,42.0,39.0,44.0,48.0,36.0,43.0,47.0,43.0,57.0,48.0,63.0,59.0,79.0,67.0,90.0,63.0,82.0,89.0,90.0,67.0,77.0,99.0,84.0,72.0,62.0,75.0,75.0,69.0,54.0,52.0,54.0,62.0,58.0,56.0,54.0,57.0,52.0,43.0,63.0,57.0,58.0,52.0,66.0,58.0,48.0,46.0,45.0,41.0,41.0,33.0,29.0,32.0,27.0,28.0,35.0,31.0,28.0,42.0,31.0,43.0,27.0,27.0,22.0,20.0,13.0,11.0,9.0,12.0,10.0,12.0,7.0,5.0,2.0,5.0,3.0,3.0,2.0 M81629,32.0,32.0,26.0,29.0,43.0,37.0,33.0,46.0,51.0,34.0,45.0,45.0,42.0,49.0,84.0,110.0,127.0,138.0,128.0,108.0,87.0,62.0,82.0,64.0,48.0,38.0,45.0,43.0,46.0,59.0,49.0,43.0,47.0,46.0,60.0,60.0,58.0,55.0,52.0,54.0,54.0,56.0,53.0,48.0,55.0,53.0,59.0,56.0,54.0,50.0,53.0,54.0,61.0,69.0,65.0,92.0,62.0,68.0,80.0,75.0,67.0,78.0,72.0,74.0,59.0,65.0,55.0,65.0,59.0,52.0,31.0,54.0,58.0,48.0,63.0,53.0,60.0,54.0,56.0,41.0,32.0,51.0,42.0,27.0,25.0,24.0,25.0,19.0,8.0,8.0,15.0,9.0,10.0,5.0,3.0,6.0 Y03602,17.0,23.0,26.0,34.0,34.0,24.0,34.0,36.0,34.0,44.0,27.0,29.0,39.0,30.0,26.0,34.0,29.0,37.0,26.0,23.0,33.0,21.0,24.0,15.0,27.0,23.0,16.0,20.0,24.0,17.0,27.0,23.0,35.0,26.0,27.0,36.0,31.0,36.0,24.0,35.0,24.0,31.0,31.0,31.0,43.0,35.0,31.0,39.0,25.0,40.0,30.0,49.0,37.0,31.0,42.0,42.0,46.0,50.0,66.0,55.0,62.0,50.0,59.0,54.0,53.0,46.0,55.0,54.0,44.0,50.0,43.0,39.0,44.0,39.0,29.0,35.0,36.0,39.0,36.0,31.0,31.0,37.0,20.0,20.0,21.0,18.0,14.0,9.0,11.0,10.0,3.0,5.0,2.0,1.0,1.0,2.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 F81001,47.0,62.0,72.0,68.0,53.0,75.0,93.0,79.0,85.0,106.0,92.0,82.0,86.0,82.0,76.0,70.0,74.0,75.0,72.0,60.0,76.0,56.0,54.0,60.0,61.0,86.0,76.0,82.0,75.0,73.0,86.0,81.0,80.0,93.0,83.0,83.0,86.0,74.0,75.0,82.0,85.0,61.0,79.0,61.0,82.0,82.0,91.0,67.0,74.0,61.0,81.0,76.0,77.0,78.0,82.0,86.0,91.0,88.0,93.0,93.0,85.0,84.0,90.0,73.0,91.0,70.0,81.0,66.0,66.0,57.0,55.0,68.0,57.0,61.0,60.0,53.0,61.0,64.0,83.0,67.0,55.0,47.0,48.0,37.0,35.0,42.0,31.0,29.0,20.0,26.0,7.0,9.0,11.0,7.0,9.0,15.0 F81003,28.0,22.0,34.0,21.0,24.0,31.0,32.0,25.0,35.0,39.0,29.0,36.0,42.0,27.0,32.0,36.0,35.0,42.0,40.0,41.0,38.0,33.0,33.0,40.0,33.0,49.0,41.0,35.0,55.0,47.0,38.0,45.0,46.0,50.0,42.0,57.0,59.0,50.0,58.0,46.0,54.0,49.0,58.0,54.0,57.0,48.0,41.0,41.0,45.0,57.0,58.0,37.0,41.0,57.0,52.0,41.0,40.0,49.0,45.0,37.0,50.0,49.0,31.0,47.0,49.0,37.0,35.0,22.0,27.0,24.0,28.0,24.0,28.0,22.0,31.0,30.0,22.0,21.0,18.0,10.0,27.0,15.0,13.0,13.0,13.0,4.0,4.0,9.0,6.0,5.0,2.0,2.0,4.0,1.0,1.0,3.0 F81006,25.0,24.0,38.0,25.0,33.0,28.0,30.0,30.0,42.0,49.0,43.0,51.0,51.0,30.0,65.0,41.0,43.0,41.0,33.0,45.0,33.0,34.0,39.0,24.0,38.0,37.0,42.0,36.0,43.0,41.0,33.0,30.0,42.0,38.0,36.0,37.0,34.0,28.0,46.0,38.0,44.0,43.0,37.0,42.0,50.0,43.0,40.0,34.0,40.0,29.0,39.0,35.0,40.0,32.0,37.0,32.0,35.0,33.0,26.0,47.0,35.0,27.0,28.0,30.0,34.0,27.0,28.0,31.0,16.0,26.0,19.0,19.0,17.0,17.0,12.0,17.0,27.0,25.0,21.0,12.0,15.0,10.0,10.0,7.0,11.0,3.0,7.0,3.0,6.0,3.0,3.0,4.0,1.0,2.0,1.0,3.0 F81007,76.0,100.0,98.0,111.0,109.0,98.0,116.0,105.0,105.0,129.0,101.0,124.0,142.0,140.0,130.0,134.0,144.0,129.0,128.0,103.0,97.0,122.0,104.0,114.0,116.0,123.0,120.0,140.0,115.0,127.0,108.0,140.0,124.0,117.0,119.0,134.0,140.0,132.0,137.0,145.0,126.0,116.0,148.0,125.0,132.0,110.0,133.0,116.0,125.0,131.0,127.0,124.0,130.0,148.0,162.0,130.0,153.0,117.0,169.0,141.0,162.0,126.0,120.0,140.0,98.0,124.0,98.0,108.0,103.0,110.0,81.0,78.0,97.0,73.0,81.0,92.0,79.0,87.0,105.0,76.0,61.0,63.0,63.0,38.0,41.0,50.0,36.0,21.0,27.0,18.0,19.0,23.0,23.0,16.0,1.0,18.0 F81010,36.0,43.0,71.0,60.0,73.0,80.0,92.0,68.0,88.0,112.0,79.0,77.0,96.0,86.0,94.0,79.0,82.0,101.0,81.0,101.0,86.0,77.0,71.0,85.0,83.0,68.0,71.0,77.0,74.0,78.0,69.0,78.0,89.0,80.0,88.0,89.0,79.0,85.0,88.0,79.0,100.0,98.0,99.0,100.0,89.0,106.0,94.0,87.0,73.0,87.0,76.0,83.0,84.0,75.0,83.0,91.0,79.0,85.0,87.0,102.0,75.0,74.0,70.0,75.0,67.0,53.0,58.0,55.0,54.0,41.0,47.0,49.0,47.0,34.0,47.0,50.0,45.0,40.0,52.0,28.0,26.0,17.0,24.0,12.0,29.0,10.0,18.0,10.0,7.0,6.0,7.0,9.0,4.0,4.0,3.0,7.0 F81011,52.0,46.0,51.0,52.0,34.0,38.0,46.0,51.0,39.0,55.0,51.0,39.0,44.0,37.0,44.0,36.0,48.0,54.0,49.0,45.0,43.0,41.0,40.0,38.0,48.0,47.0,46.0,32.0,37.0,38.0,37.0,51.0,45.0,57.0,59.0,50.0,59.0,43.0,45.0,49.0,34.0,64.0,36.0,56.0,52.0,45.0,47.0,33.0,44.0,52.0,57.0,60.0,62.0,60.0,56.0,74.0,57.0,67.0,68.0,56.0,56.0,62.0,43.0,58.0,51.0,40.0,44.0,40.0,52.0,52.0,48.0,28.0,41.0,42.0,33.0,41.0,49.0,44.0,39.0,35.0,27.0,22.0,22.0,21.0,22.0,6.0,13.0,10.0,8.0,7.0,3.0,12.0,1.0,2.0,3.0,2.0 F81013,63.0,65.0,56.0,80.0,64.0,84.0,98.0,78.0,92.0,80.0,67.0,75.0,72.0,74.0,86.0,66.0,68.0,81.0,70.0,69.0,55.0,57.0,51.0,57.0,65.0,72.0,66.0,74.0,54.0,51.0,66.0,75.0,80.0,67.0,81.0,83.0,89.0,83.0,85.0,92.0,83.0,71.0,75.0,83.0,76.0,76.0,67.0,83.0,76.0,73.0,80.0,98.0,93.0,93.0,109.0,107.0,70.0,86.0,97.0,75.0,105.0,70.0,73.0,90.0,73.0,71.0,78.0,53.0,66.0,49.0,46.0,41.0,54.0,45.0,45.0,63.0,55.0,65.0,73.0,54.0,56.0,39.0,32.0,35.0,27.0,24.0,33.0,32.0,17.0,14.0,17.0,12.0,5.0,2.0,6.0,6.0 F81014,50.0,69.0,72.0,91.0,66.0,85.0,73.0,95.0,71.0,76.0,80.0,83.0,75.0,85.0,57.0,93.0,66.0,66.0,59.0,62.0,61.0,58.0,46.0,51.0,56.0,59.0,71.0,74.0,82.0,67.0,81.0,90.0,100.0,90.0,114.0,102.0,113.0,95.0,111.0,89.0,86.0,85.0,84.0,94.0,83.0,87.0,87.0,75.0,89.0,66.0,78.0,68.0,70.0,65.0,91.0,72.0,91.0,71.0,85.0,88.0,78.0,72.0,73.0,79.0,75.0,60.0,52.0,49.0,56.0,50.0,54.0,59.0,43.0,40.0,45.0,51.0,54.0,36.0,57.0,30.0,34.0,38.0,30.0,29.0,18.0,24.0,21.0,24.0,15.0,10.0,6.0,11.0,3.0,4.0,5.0,4.0 F81020,27.0,32.0,23.0,28.0,28.0,40.0,38.0,34.0,42.0,32.0,42.0,47.0,46.0,45.0,49.0,41.0,36.0,47.0,41.0,42.0,34.0,33.0,46.0,43.0,37.0,39.0,44.0,35.0,30.0,41.0,33.0,25.0,44.0,47.0,40.0,44.0,42.0,37.0,34.0,48.0,35.0,48.0,42.0,39.0,34.0,37.0,39.0,44.0,41.0,50.0,58.0,58.0,53.0,66.0,53.0,67.0,66.0,69.0,71.0,95.0,84.0,67.0,81.0,59.0,64.0,70.0,82.0,62.0,64.0,53.0,59.0,59.0,49.0,41.0,54.0,44.0,68.0,52.0,58.0,41.0,42.0,30.0,38.0,11.0,19.0,26.0,15.0,6.0,12.0,15.0,12.0,7.0,6.0,3.0,,2.0 F81022,66.0,88.0,86.0,97.0,74.0,106.0,83.0,97.0,101.0,93.0,80.0,86.0,75.0,65.0,93.0,91.0,89.0,88.0,88.0,66.0,98.0,78.0,78.0,65.0,87.0,78.0,86.0,85.0,98.0,114.0,92.0,93.0,77.0,95.0,111.0,91.0,100.0,93.0,93.0,111.0,90.0,75.0,89.0,90.0,85.0,85.0,91.0,72.0,75.0,85.0,89.0,83.0,85.0,106.0,116.0,120.0,124.0,124.0,114.0,121.0,135.0,96.0,115.0,94.0,104.0,98.0,101.0,101.0,96.0,88.0,95.0,73.0,68.0,74.0,95.0,81.0,91.0,91.0,81.0,84.0,79.0,73.0,61.0,46.0,26.0,42.0,41.0,28.0,24.0,29.0,22.0,9.0,18.0,7.0,8.0,9.0 F81023,89.0,86.0,74.0,102.0,85.0,88.0,70.0,85.0,80.0,80.0,82.0,69.0,88.0,82.0,89.0,70.0,79.0,68.0,60.0,66.0,47.0,56.0,58.0,65.0,57.0,77.0,80.0,80.0,84.0,81.0,106.0,103.0,114.0,120.0,130.0,121.0,117.0,120.0,109.0,129.0,115.0,85.0,101.0,100.0,114.0,93.0,93.0,121.0,93.0,97.0,103.0,98.0,94.0,94.0,82.0,97.0,83.0,82.0,101.0,81.0,92.0,62.0,69.0,77.0,75.0,65.0,52.0,68.0,51.0,53.0,45.0,41.0,48.0,42.0,40.0,39.0,40.0,39.0,42.0,31.0,30.0,31.0,23.0,19.0,17.0,11.0,8.0,15.0,9.0,13.0,13.0,2.0,1.0,2.0,1.0,1.0 F81025,60.0,74.0,84.0,78.0,64.0,66.0,72.0,62.0,72.0,79.0,65.0,71.0,62.0,53.0,56.0,63.0,46.0,51.0,48.0,55.0,48.0,59.0,36.0,42.0,57.0,64.0,56.0,61.0,81.0,94.0,75.0,89.0,117.0,101.0,111.0,110.0,99.0,115.0,98.0,104.0,119.0,105.0,97.0,93.0,83.0,79.0,68.0,70.0,58.0,54.0,48.0,63.0,56.0,67.0,55.0,57.0,70.0,69.0,64.0,60.0,67.0,65.0,55.0,57.0,57.0,52.0,46.0,42.0,36.0,31.0,30.0,32.0,24.0,34.0,29.0,26.0,27.0,29.0,35.0,14.0,17.0,15.0,16.0,15.0,12.0,16.0,7.0,8.0,6.0,8.0,5.0,6.0,3.0,3.0,2.0,3.0 F81029,61.0,55.0,61.0,62.0,48.0,69.0,69.0,60.0,65.0,69.0,61.0,69.0,68.0,64.0,38.0,55.0,51.0,45.0,35.0,38.0,28.0,28.0,34.0,22.0,36.0,48.0,37.0,38.0,48.0,47.0,47.0,65.0,84.0,57.0,78.0,73.0,86.0,82.0,79.0,78.0,109.0,80.0,60.0,82.0,69.0,64.0,68.0,59.0,62.0,49.0,49.0,54.0,47.0,43.0,50.0,43.0,45.0,38.0,21.0,49.0,51.0,46.0,53.0,30.0,30.0,30.0,32.0,35.0,23.0,23.0,30.0,21.0,17.0,15.0,23.0,21.0,13.0,16.0,25.0,13.0,9.0,9.0,11.0,10.0,8.0,5.0,3.0,5.0,8.0,7.0,5.0,3.0,1.0,1.0,,2.0 F81030,91.0,79.0,96.0,89.0,74.0,91.0,93.0,99.0,87.0,84.0,105.0,86.0,108.0,100.0,114.0,101.0,91.0,92.0,100.0,77.0,71.0,64.0,79.0,80.0,92.0,83.0,96.0,95.0,95.0,109.0,126.0,126.0,125.0,114.0,126.0,129.0,137.0,118.0,111.0,119.0,103.0,105.0,96.0,115.0,107.0,111.0,93.0,89.0,101.0,97.0,104.0,126.0,102.0,127.0,115.0,113.0,101.0,108.0,125.0,108.0,117.0,116.0,123.0,115.0,81.0,91.0,76.0,87.0,61.0,68.0,82.0,82.0,89.0,72.0,63.0,64.0,62.0,79.0,90.0,62.0,52.0,54.0,65.0,44.0,51.0,33.0,34.0,27.0,34.0,24.0,15.0,10.0,10.0,9.0,4.0,8.0 F81031,37.0,45.0,54.0,45.0,48.0,42.0,55.0,53.0,52.0,59.0,48.0,80.0,58.0,64.0,58.0,65.0,71.0,52.0,63.0,42.0,54.0,60.0,48.0,52.0,59.0,42.0,61.0,46.0,54.0,51.0,51.0,56.0,59.0,61.0,57.0,73.0,76.0,59.0,71.0,68.0,55.0,56.0,73.0,50.0,56.0,58.0,65.0,51.0,42.0,51.0,48.0,49.0,44.0,50.0,48.0,43.0,42.0,55.0,50.0,49.0,29.0,44.0,38.0,44.0,39.0,37.0,44.0,35.0,33.0,29.0,30.0,23.0,24.0,18.0,19.0,23.0,18.0,26.0,16.0,14.0,16.0,9.0,8.0,6.0,2.0,9.0,8.0,3.0,3.0,3.0,7.0,2.0,3.0,2.0,2.0,5.0 F81032,11.0,9.0,10.0,17.0,12.0,18.0,23.0,26.0,17.0,18.0,21.0,15.0,15.0,13.0,19.0,13.0,14.0,20.0,16.0,20.0,13.0,23.0,9.0,8.0,8.0,11.0,17.0,21.0,21.0,15.0,15.0,17.0,16.0,23.0,18.0,11.0,19.0,26.0,21.0,27.0,17.0,22.0,16.0,15.0,18.0,26.0,19.0,17.0,16.0,14.0,22.0,22.0,26.0,16.0,17.0,26.0,21.0,27.0,27.0,27.0,35.0,23.0,24.0,16.0,19.0,24.0,22.0,19.0,15.0,14.0,15.0,16.0,20.0,14.0,15.0,13.0,26.0,21.0,29.0,13.0,21.0,11.0,9.0,11.0,8.0,10.0,11.0,10.0,7.0,5.0,3.0,3.0,1.0,2.0,1.0,1.0 F81036,70.0,90.0,93.0,101.0,82.0,98.0,120.0,97.0,119.0,126.0,108.0,116.0,117.0,124.0,123.0,115.0,127.0,108.0,131.0,102.0,92.0,98.0,99.0,112.0,101.0,134.0,104.0,82.0,119.0,110.0,105.0,111.0,117.0,122.0,123.0,117.0,128.0,111.0,119.0,127.0,139.0,95.0,101.0,111.0,105.0,116.0,96.0,118.0,112.0,127.0,126.0,113.0,138.0,162.0,153.0,119.0,126.0,132.0,134.0,123.0,133.0,126.0,114.0,113.0,102.0,95.0,97.0,94.0,87.0,73.0,80.0,76.0,71.0,64.0,67.0,89.0,72.0,66.0,82.0,64.0,51.0,45.0,53.0,38.0,34.0,30.0,30.0,34.0,22.0,20.0,22.0,11.0,13.0,6.0,5.0,10.0 F81038,73.0,55.0,65.0,71.0,67.0,85.0,75.0,72.0,70.0,73.0,87.0,80.0,77.0,79.0,74.0,79.0,73.0,75.0,66.0,69.0,64.0,62.0,60.0,64.0,48.0,66.0,58.0,72.0,63.0,62.0,76.0,72.0,88.0,73.0,85.0,91.0,107.0,113.0,106.0,92.0,82.0,88.0,97.0,88.0,75.0,83.0,78.0,75.0,81.0,72.0,87.0,76.0,67.0,82.0,86.0,89.0,81.0,80.0,79.0,91.0,87.0,89.0,79.0,93.0,92.0,81.0,69.0,84.0,66.0,64.0,71.0,72.0,69.0,65.0,68.0,55.0,58.0,82.0,74.0,44.0,44.0,44.0,40.0,31.0,34.0,31.0,23.0,15.0,19.0,14.0,17.0,15.0,3.0,6.0,10.0,13.0 F81040,15.0,16.0,18.0,16.0,16.0,20.0,27.0,20.0,20.0,31.0,18.0,16.0,31.0,24.0,21.0,30.0,27.0,30.0,23.0,22.0,15.0,28.0,24.0,21.0,19.0,19.0,29.0,20.0,18.0,19.0,27.0,9.0,23.0,16.0,17.0,27.0,27.0,20.0,30.0,21.0,27.0,24.0,22.0,25.0,19.0,27.0,34.0,24.0,25.0,31.0,31.0,27.0,24.0,35.0,40.0,45.0,43.0,29.0,41.0,45.0,41.0,31.0,44.0,59.0,27.0,42.0,39.0,37.0,29.0,32.0,35.0,23.0,36.0,20.0,27.0,21.0,30.0,21.0,37.0,28.0,24.0,27.0,27.0,21.0,11.0,10.0,13.0,14.0,12.0,11.0,8.0,7.0,2.0,6.0,1.0,1.0 F81041,62.0,85.0,76.0,79.0,85.0,89.0,91.0,81.0,76.0,64.0,79.0,79.0,83.0,76.0,75.0,73.0,77.0,74.0,76.0,69.0,77.0,57.0,54.0,72.0,87.0,71.0,85.0,93.0,96.0,92.0,90.0,96.0,101.0,102.0,97.0,98.0,103.0,111.0,109.0,93.0,101.0,82.0,80.0,98.0,88.0,96.0,71.0,66.0,71.0,68.0,83.0,81.0,88.0,93.0,90.0,94.0,88.0,85.0,99.0,91.0,85.0,98.0,95.0,74.0,76.0,84.0,94.0,71.0,55.0,67.0,65.0,59.0,47.0,55.0,59.0,57.0,78.0,86.0,86.0,65.0,59.0,47.0,37.0,41.0,32.0,29.0,33.0,29.0,22.0,24.0,22.0,10.0,8.0,9.0,5.0,8.0 F81045,30.0,48.0,32.0,38.0,43.0,31.0,35.0,47.0,46.0,41.0,34.0,58.0,42.0,50.0,39.0,44.0,44.0,35.0,37.0,33.0,38.0,36.0,32.0,35.0,30.0,38.0,45.0,36.0,35.0,41.0,42.0,40.0,37.0,48.0,54.0,51.0,54.0,55.0,52.0,40.0,48.0,43.0,54.0,48.0,46.0,37.0,46.0,51.0,40.0,48.0,38.0,52.0,38.0,48.0,51.0,52.0,50.0,55.0,55.0,36.0,47.0,45.0,44.0,43.0,37.0,43.0,46.0,26.0,30.0,27.0,26.0,31.0,26.0,25.0,23.0,32.0,44.0,36.0,34.0,27.0,24.0,29.0,19.0,18.0,19.0,14.0,9.0,14.0,12.0,7.0,8.0,8.0,7.0,1.0,4.0,11.0 F81046,11.0,10.0,9.0,13.0,11.0,17.0,30.0,15.0,21.0,23.0,16.0,17.0,30.0,31.0,28.0,21.0,31.0,37.0,30.0,23.0,18.0,20.0,20.0,26.0,16.0,18.0,24.0,23.0,27.0,24.0,23.0,31.0,26.0,24.0,23.0,26.0,29.0,29.0,34.0,31.0,36.0,27.0,31.0,37.0,34.0,35.0,21.0,27.0,20.0,21.0,29.0,22.0,32.0,24.0,18.0,29.0,31.0,20.0,25.0,35.0,35.0,25.0,40.0,39.0,32.0,34.0,41.0,27.0,32.0,32.0,28.0,24.0,22.0,35.0,24.0,31.0,30.0,35.0,27.0,25.0,17.0,23.0,12.0,16.0,12.0,17.0,8.0,13.0,7.0,4.0,11.0,3.0,4.0,4.0,3.0,7.0 F81051,32.0,34.0,37.0,56.0,41.0,48.0,48.0,51.0,62.0,49.0,48.0,56.0,55.0,61.0,56.0,56.0,53.0,67.0,43.0,53.0,52.0,41.0,51.0,39.0,37.0,37.0,36.0,62.0,49.0,46.0,51.0,53.0,52.0,48.0,44.0,59.0,57.0,46.0,47.0,60.0,56.0,47.0,45.0,51.0,53.0,39.0,48.0,41.0,39.0,38.0,52.0,42.0,41.0,47.0,50.0,48.0,54.0,51.0,56.0,39.0,46.0,51.0,42.0,46.0,53.0,43.0,35.0,42.0,48.0,37.0,43.0,34.0,43.0,33.0,34.0,32.0,38.0,44.0,53.0,18.0,25.0,24.0,18.0,19.0,16.0,16.0,10.0,11.0,10.0,6.0,2.0,4.0,2.0,4.0,1.0,2.0 F81055,61.0,80.0,62.0,76.0,61.0,71.0,74.0,70.0,72.0,76.0,79.0,87.0,81.0,81.0,81.0,86.0,89.0,88.0,79.0,68.0,63.0,56.0,61.0,73.0,75.0,83.0,63.0,64.0,53.0,91.0,73.0,84.0,79.0,86.0,96.0,81.0,87.0,91.0,66.0,96.0,88.0,73.0,88.0,81.0,96.0,99.0,87.0,77.0,82.0,68.0,98.0,86.0,97.0,96.0,89.0,87.0,84.0,88.0,88.0,105.0,89.0,111.0,82.0,96.0,75.0,76.0,66.0,63.0,65.0,63.0,93.0,60.0,62.0,42.0,48.0,56.0,51.0,72.0,56.0,31.0,46.0,35.0,47.0,33.0,26.0,31.0,22.0,24.0,24.0,21.0,11.0,16.0,12.0,7.0,9.0,21.0 F81057,75.0,73.0,92.0,100.0,69.0,65.0,73.0,69.0,77.0,101.0,98.0,60.0,80.0,89.0,91.0,87.0,94.0,85.0,70.0,79.0,72.0,67.0,67.0,66.0,89.0,71.0,91.0,105.0,122.0,106.0,120.0,136.0,145.0,124.0,131.0,125.0,129.0,133.0,150.0,109.0,112.0,111.0,121.0,118.0,130.0,130.0,92.0,113.0,101.0,92.0,98.0,97.0,98.0,114.0,112.0,100.0,100.0,100.0,83.0,104.0,97.0,71.0,71.0,96.0,74.0,61.0,73.0,56.0,50.0,54.0,51.0,46.0,51.0,40.0,45.0,46.0,44.0,59.0,44.0,28.0,35.0,29.0,31.0,25.0,15.0,20.0,28.0,15.0,21.0,20.0,24.0,12.0,9.0,5.0,3.0,8.0 F81060,22.0,25.0,25.0,32.0,34.0,27.0,45.0,30.0,43.0,35.0,47.0,26.0,47.0,36.0,33.0,40.0,37.0,41.0,36.0,29.0,30.0,21.0,20.0,26.0,27.0,29.0,24.0,26.0,26.0,29.0,20.0,47.0,44.0,42.0,37.0,50.0,48.0,52.0,39.0,55.0,37.0,36.0,40.0,39.0,29.0,30.0,36.0,36.0,30.0,26.0,35.0,26.0,21.0,22.0,40.0,21.0,23.0,29.0,29.0,30.0,26.0,24.0,33.0,25.0,25.0,24.0,23.0,29.0,18.0,17.0,18.0,16.0,9.0,11.0,7.0,9.0,8.0,14.0,6.0,8.0,7.0,8.0,4.0,1.0,5.0,4.0,1.0,3.0,1.0,2.0,3.0,3.0,7.0,1.0,1.0,1.0 F81061,35.0,33.0,32.0,37.0,35.0,30.0,36.0,37.0,37.0,40.0,40.0,47.0,47.0,30.0,36.0,46.0,28.0,40.0,44.0,37.0,40.0,30.0,34.0,27.0,34.0,28.0,39.0,52.0,39.0,37.0,41.0,43.0,51.0,54.0,59.0,35.0,55.0,50.0,31.0,31.0,39.0,33.0,33.0,41.0,38.0,35.0,38.0,32.0,42.0,49.0,44.0,38.0,40.0,55.0,60.0,64.0,61.0,41.0,58.0,61.0,65.0,48.0,49.0,63.0,51.0,51.0,43.0,49.0,52.0,39.0,26.0,37.0,47.0,50.0,41.0,41.0,59.0,59.0,73.0,36.0,48.0,37.0,31.0,22.0,27.0,17.0,24.0,25.0,15.0,16.0,10.0,7.0,2.0,3.0,1.0,2.0 F81065,23.0,30.0,15.0,24.0,12.0,28.0,19.0,25.0,29.0,18.0,33.0,29.0,25.0,22.0,22.0,23.0,24.0,31.0,33.0,33.0,21.0,20.0,19.0,21.0,22.0,27.0,23.0,21.0,26.0,16.0,30.0,37.0,20.0,29.0,29.0,35.0,25.0,32.0,20.0,36.0,34.0,33.0,33.0,34.0,40.0,20.0,25.0,22.0,27.0,28.0,28.0,37.0,25.0,29.0,31.0,35.0,36.0,32.0,30.0,22.0,23.0,27.0,33.0,27.0,22.0,25.0,21.0,26.0,19.0,20.0,18.0,15.0,14.0,12.0,27.0,20.0,17.0,26.0,22.0,15.0,13.0,11.0,15.0,11.0,9.0,5.0,11.0,11.0,4.0,4.0,3.0,1.0,2.0,2.0,3.0,2.0 F81066,24.0,32.0,28.0,44.0,26.0,22.0,29.0,32.0,34.0,29.0,39.0,25.0,24.0,26.0,36.0,30.0,36.0,19.0,27.0,27.0,29.0,30.0,35.0,41.0,28.0,38.0,23.0,32.0,26.0,46.0,33.0,28.0,37.0,36.0,49.0,43.0,30.0,35.0,36.0,38.0,30.0,38.0,32.0,37.0,41.0,35.0,29.0,33.0,28.0,40.0,45.0,31.0,36.0,50.0,39.0,46.0,49.0,48.0,52.0,51.0,38.0,38.0,39.0,43.0,43.0,37.0,39.0,39.0,40.0,35.0,39.0,46.0,44.0,41.0,17.0,35.0,33.0,42.0,45.0,36.0,32.0,28.0,30.0,27.0,18.0,17.0,14.0,4.0,22.0,13.0,6.0,10.0,3.0,4.0,2.0,3.0 F81068,68.0,77.0,88.0,85.0,97.0,84.0,93.0,85.0,102.0,95.0,81.0,93.0,105.0,107.0,111.0,111.0,91.0,107.0,77.0,89.0,77.0,81.0,70.0,83.0,66.0,94.0,84.0,101.0,91.0,107.0,88.0,108.0,108.0,100.0,125.0,125.0,103.0,114.0,92.0,96.0,84.0,88.0,74.0,103.0,85.0,92.0,91.0,92.0,94.0,108.0,116.0,127.0,123.0,116.0,123.0,123.0,132.0,131.0,141.0,126.0,141.0,118.0,97.0,105.0,101.0,83.0,99.0,87.0,100.0,70.0,77.0,82.0,88.0,65.0,70.0,66.0,83.0,74.0,99.0,63.0,63.0,62.0,57.0,41.0,51.0,34.0,35.0,24.0,19.0,15.0,17.0,10.0,14.0,6.0,2.0,9.0 F81071,73.0,78.0,75.0,65.0,65.0,55.0,70.0,52.0,76.0,71.0,72.0,75.0,67.0,66.0,63.0,74.0,41.0,62.0,60.0,63.0,101.0,108.0,111.0,116.0,126.0,157.0,171.0,163.0,192.0,209.0,186.0,175.0,191.0,184.0,173.0,174.0,163.0,153.0,157.0,120.0,107.0,119.0,105.0,113.0,97.0,102.0,86.0,87.0,83.0,96.0,90.0,64.0,78.0,89.0,87.0,97.0,63.0,74.0,64.0,71.0,76.0,64.0,65.0,65.0,49.0,57.0,60.0,44.0,54.0,43.0,31.0,50.0,46.0,48.0,26.0,33.0,40.0,34.0,36.0,30.0,31.0,20.0,29.0,23.0,11.0,24.0,11.0,13.0,8.0,5.0,3.0,3.0,8.0,7.0,3.0,7.0 F81075,46.0,55.0,64.0,64.0,32.0,64.0,61.0,59.0,60.0,74.0,61.0,75.0,73.0,64.0,63.0,76.0,53.0,67.0,57.0,56.0,42.0,70.0,57.0,55.0,54.0,69.0,64.0,74.0,71.0,75.0,66.0,69.0,68.0,75.0,57.0,93.0,59.0,66.0,78.0,78.0,78.0,61.0,70.0,79.0,63.0,76.0,59.0,69.0,70.0,61.0,84.0,74.0,79.0,82.0,86.0,81.0,107.0,82.0,94.0,101.0,95.0,92.0,87.0,92.0,92.0,85.0,82.0,77.0,85.0,69.0,67.0,57.0,66.0,65.0,61.0,64.0,72.0,85.0,92.0,59.0,75.0,53.0,55.0,34.0,32.0,38.0,22.0,30.0,25.0,21.0,20.0,21.0,17.0,12.0,4.0,9.0 F81076,13.0,18.0,21.0,16.0,16.0,22.0,14.0,27.0,22.0,29.0,26.0,23.0,28.0,33.0,24.0,24.0,22.0,27.0,21.0,17.0,20.0,22.0,29.0,25.0,14.0,31.0,27.0,16.0,22.0,18.0,24.0,18.0,26.0,27.0,20.0,20.0,25.0,26.0,26.0,32.0,29.0,27.0,31.0,26.0,25.0,19.0,19.0,24.0,31.0,25.0,29.0,29.0,33.0,28.0,39.0,41.0,28.0,35.0,47.0,39.0,38.0,28.0,45.0,33.0,33.0,43.0,46.0,31.0,35.0,24.0,23.0,37.0,42.0,32.0,33.0,30.0,36.0,24.0,27.0,26.0,30.0,20.0,11.0,12.0,16.0,7.0,12.0,10.0,3.0,9.0,5.0,6.0,1.0,1.0,1.0, F81080,37.0,45.0,49.0,62.0,55.0,59.0,73.0,62.0,72.0,73.0,84.0,59.0,85.0,86.0,76.0,88.0,80.0,74.0,74.0,64.0,74.0,63.0,55.0,65.0,57.0,61.0,67.0,65.0,69.0,50.0,71.0,54.0,52.0,56.0,47.0,59.0,61.0,66.0,67.0,54.0,55.0,72.0,70.0,77.0,89.0,79.0,79.0,73.0,85.0,75.0,96.0,86.0,82.0,82.0,81.0,85.0,83.0,82.0,82.0,80.0,70.0,89.0,93.0,88.0,74.0,72.0,64.0,58.0,68.0,65.0,67.0,61.0,57.0,57.0,59.0,55.0,60.0,48.0,78.0,75.0,51.0,44.0,38.0,26.0,27.0,38.0,28.0,22.0,18.0,11.0,13.0,9.0,6.0,5.0,7.0,5.0 F81081,89.0,127.0,112.0,120.0,119.0,110.0,119.0,147.0,142.0,143.0,133.0,135.0,148.0,167.0,144.0,136.0,151.0,143.0,129.0,114.0,120.0,121.0,124.0,126.0,154.0,141.0,158.0,183.0,166.0,176.0,180.0,181.0,167.0,170.0,179.0,184.0,185.0,190.0,156.0,184.0,174.0,168.0,166.0,162.0,151.0,187.0,165.0,136.0,128.0,131.0,139.0,123.0,136.0,137.0,155.0,150.0,154.0,146.0,128.0,155.0,135.0,134.0,144.0,124.0,116.0,111.0,107.0,117.0,78.0,76.0,65.0,91.0,78.0,59.0,56.0,54.0,76.0,72.0,55.0,50.0,32.0,38.0,28.0,33.0,31.0,22.0,28.0,16.0,21.0,15.0,6.0,8.0,10.0,4.0,3.0,13.0 F81082,14.0,25.0,19.0,22.0,22.0,23.0,33.0,39.0,36.0,26.0,18.0,23.0,37.0,36.0,25.0,29.0,27.0,28.0,27.0,22.0,27.0,21.0,25.0,23.0,23.0,31.0,17.0,27.0,25.0,24.0,33.0,20.0,28.0,30.0,36.0,37.0,39.0,32.0,41.0,34.0,33.0,28.0,29.0,26.0,40.0,19.0,30.0,16.0,24.0,27.0,31.0,25.0,23.0,29.0,33.0,31.0,34.0,31.0,27.0,27.0,35.0,24.0,40.0,27.0,25.0,24.0,33.0,28.0,18.0,22.0,17.0,17.0,21.0,22.0,33.0,17.0,27.0,23.0,28.0,19.0,15.0,16.0,15.0,7.0,11.0,9.0,6.0,8.0,8.0,7.0,4.0,6.0,1.0,3.0,2.0,5.0 F81083,65.0,66.0,65.0,58.0,56.0,83.0,61.0,70.0,69.0,68.0,69.0,72.0,68.0,69.0,74.0,54.0,64.0,81.0,66.0,54.0,60.0,60.0,46.0,56.0,60.0,57.0,79.0,86.0,98.0,85.0,92.0,97.0,103.0,111.0,110.0,97.0,102.0,93.0,93.0,77.0,92.0,89.0,104.0,83.0,98.0,98.0,92.0,87.0,94.0,94.0,89.0,75.0,86.0,67.0,82.0,87.0,74.0,82.0,76.0,70.0,64.0,67.0,68.0,66.0,50.0,44.0,39.0,45.0,46.0,50.0,39.0,47.0,39.0,47.0,42.0,39.0,42.0,56.0,53.0,35.0,42.0,50.0,31.0,27.0,24.0,24.0,24.0,23.0,13.0,15.0,10.0,14.0,6.0,6.0,7.0,4.0 F81085,60.0,77.0,58.0,72.0,61.0,84.0,75.0,99.0,94.0,80.0,106.0,101.0,110.0,79.0,100.0,109.0,87.0,88.0,80.0,77.0,78.0,70.0,62.0,66.0,75.0,75.0,81.0,71.0,88.0,98.0,95.0,100.0,120.0,111.0,113.0,111.0,121.0,109.0,100.0,113.0,97.0,115.0,93.0,90.0,121.0,100.0,69.0,66.0,95.0,83.0,100.0,62.0,93.0,78.0,105.0,84.0,90.0,94.0,82.0,78.0,87.0,76.0,73.0,83.0,65.0,75.0,65.0,54.0,60.0,57.0,44.0,51.0,39.0,37.0,50.0,39.0,64.0,58.0,67.0,38.0,52.0,35.0,41.0,27.0,22.0,18.0,27.0,21.0,13.0,13.0,13.0,15.0,8.0,7.0,7.0,9.0 F81086,25.0,41.0,54.0,49.0,40.0,34.0,49.0,39.0,50.0,59.0,50.0,49.0,55.0,53.0,59.0,53.0,50.0,44.0,65.0,42.0,29.0,42.0,45.0,44.0,37.0,55.0,49.0,54.0,41.0,44.0,52.0,60.0,66.0,56.0,53.0,57.0,54.0,52.0,52.0,51.0,44.0,43.0,45.0,53.0,54.0,53.0,55.0,59.0,39.0,41.0,57.0,62.0,54.0,57.0,46.0,60.0,59.0,48.0,55.0,60.0,55.0,52.0,49.0,37.0,61.0,40.0,39.0,43.0,28.0,27.0,31.0,34.0,28.0,22.0,23.0,37.0,44.0,42.0,29.0,25.0,29.0,16.0,18.0,10.0,14.0,13.0,14.0,10.0,14.0,5.0,2.0,7.0,6.0,2.0,2.0,3.0 F81087,55.0,60.0,66.0,65.0,56.0,71.0,82.0,69.0,83.0,74.0,82.0,90.0,75.0,73.0,82.0,82.0,86.0,79.0,59.0,79.0,66.0,74.0,73.0,83.0,75.0,89.0,79.0,81.0,81.0,114.0,63.0,92.0,98.0,105.0,96.0,102.0,90.0,84.0,84.0,102.0,93.0,82.0,97.0,103.0,114.0,83.0,79.0,83.0,84.0,82.0,104.0,79.0,75.0,102.0,90.0,99.0,79.0,91.0,109.0,99.0,110.0,79.0,89.0,70.0,78.0,70.0,70.0,62.0,67.0,73.0,52.0,64.0,70.0,63.0,47.0,62.0,80.0,67.0,66.0,48.0,51.0,50.0,45.0,47.0,22.0,31.0,29.0,32.0,23.0,16.0,14.0,10.0,9.0,7.0,5.0,7.0 F81088,11.0,10.0,10.0,19.0,26.0,16.0,19.0,17.0,18.0,26.0,15.0,13.0,24.0,12.0,21.0,19.0,13.0,14.0,11.0,13.0,10.0,12.0,13.0,17.0,11.0,13.0,14.0,16.0,14.0,12.0,22.0,13.0,14.0,18.0,24.0,18.0,21.0,23.0,20.0,31.0,19.0,30.0,25.0,20.0,27.0,18.0,15.0,26.0,18.0,23.0,11.0,9.0,23.0,18.0,24.0,14.0,14.0,13.0,14.0,18.0,16.0,13.0,21.0,18.0,14.0,6.0,14.0,13.0,8.0,5.0,14.0,7.0,14.0,9.0,9.0,11.0,9.0,21.0,21.0,9.0,12.0,4.0,10.0,7.0,3.0,3.0,4.0,3.0,3.0,,,1.0,,2.0,,1.0 F81089,39.0,36.0,41.0,45.0,48.0,37.0,47.0,53.0,57.0,66.0,51.0,56.0,63.0,52.0,61.0,64.0,51.0,63.0,61.0,46.0,56.0,51.0,43.0,51.0,42.0,59.0,63.0,71.0,73.0,63.0,51.0,63.0,75.0,69.0,76.0,64.0,57.0,58.0,58.0,40.0,64.0,54.0,41.0,62.0,57.0,64.0,61.0,44.0,51.0,49.0,62.0,54.0,69.0,69.0,62.0,72.0,72.0,64.0,77.0,78.0,79.0,65.0,72.0,64.0,66.0,77.0,64.0,60.0,50.0,54.0,55.0,52.0,56.0,53.0,51.0,50.0,64.0,60.0,81.0,49.0,42.0,30.0,35.0,25.0,30.0,21.0,28.0,19.0,14.0,19.0,11.0,12.0,6.0,6.0,6.0,5.0 F81092,12.0,24.0,18.0,26.0,30.0,23.0,18.0,19.0,39.0,28.0,31.0,37.0,29.0,30.0,31.0,28.0,24.0,39.0,29.0,26.0,20.0,21.0,13.0,13.0,22.0,28.0,17.0,21.0,24.0,27.0,24.0,22.0,20.0,20.0,32.0,41.0,19.0,28.0,34.0,35.0,40.0,31.0,35.0,43.0,40.0,40.0,41.0,51.0,32.0,25.0,22.0,52.0,27.0,47.0,37.0,31.0,37.0,44.0,29.0,36.0,40.0,39.0,22.0,26.0,26.0,32.0,29.0,32.0,27.0,29.0,23.0,29.0,18.0,28.0,22.0,25.0,24.0,32.0,17.0,14.0,21.0,11.0,10.0,14.0,11.0,12.0,11.0,10.0,7.0,5.0,9.0,4.0,2.0,2.0,1.0,5.0 F81096,52.0,46.0,43.0,58.0,53.0,46.0,62.0,56.0,54.0,62.0,54.0,68.0,71.0,67.0,60.0,52.0,62.0,77.0,58.0,67.0,43.0,53.0,50.0,55.0,59.0,58.0,66.0,75.0,78.0,64.0,50.0,66.0,78.0,65.0,70.0,75.0,53.0,66.0,73.0,52.0,65.0,66.0,61.0,48.0,65.0,64.0,63.0,55.0,52.0,48.0,59.0,61.0,54.0,64.0,80.0,61.0,70.0,86.0,69.0,65.0,60.0,62.0,66.0,69.0,75.0,69.0,57.0,62.0,61.0,56.0,69.0,75.0,56.0,59.0,57.0,63.0,63.0,80.0,72.0,30.0,56.0,48.0,39.0,37.0,21.0,26.0,12.0,18.0,17.0,12.0,13.0,7.0,7.0,3.0,5.0,6.0 F81097,94.0,101.0,104.0,107.0,112.0,101.0,98.0,124.0,105.0,103.0,117.0,115.0,116.0,89.0,102.0,89.0,109.0,96.0,90.0,78.0,79.0,89.0,89.0,85.0,100.0,109.0,110.0,111.0,110.0,124.0,128.0,123.0,125.0,138.0,143.0,160.0,148.0,155.0,122.0,149.0,146.0,168.0,171.0,159.0,175.0,149.0,137.0,127.0,127.0,126.0,117.0,145.0,136.0,133.0,122.0,115.0,115.0,119.0,116.0,114.0,118.0,112.0,110.0,118.0,89.0,103.0,73.0,78.0,78.0,91.0,56.0,65.0,60.0,53.0,48.0,55.0,73.0,66.0,61.0,33.0,42.0,44.0,38.0,27.0,23.0,24.0,20.0,19.0,19.0,19.0,9.0,10.0,8.0,8.0,5.0,7.0 F81098,40.0,37.0,33.0,37.0,37.0,37.0,37.0,30.0,40.0,48.0,34.0,45.0,52.0,51.0,42.0,51.0,39.0,46.0,37.0,37.0,32.0,45.0,38.0,34.0,34.0,36.0,44.0,34.0,36.0,37.0,41.0,44.0,40.0,41.0,46.0,46.0,54.0,52.0,43.0,38.0,43.0,51.0,45.0,38.0,49.0,64.0,53.0,46.0,37.0,56.0,48.0,39.0,52.0,54.0,69.0,53.0,72.0,57.0,64.0,67.0,72.0,59.0,58.0,60.0,44.0,44.0,52.0,45.0,62.0,59.0,43.0,42.0,43.0,44.0,42.0,42.0,37.0,55.0,43.0,36.0,40.0,33.0,32.0,21.0,21.0,22.0,20.0,14.0,25.0,12.0,11.0,8.0,5.0,4.0,3.0,8.0 F81099,51.0,48.0,42.0,41.0,53.0,54.0,48.0,57.0,50.0,67.0,57.0,69.0,70.0,75.0,67.0,65.0,60.0,68.0,75.0,73.0,67.0,77.0,75.0,64.0,64.0,76.0,71.0,67.0,63.0,65.0,55.0,84.0,64.0,64.0,60.0,68.0,85.0,63.0,60.0,61.0,56.0,67.0,60.0,66.0,65.0,71.0,68.0,62.0,58.0,73.0,80.0,57.0,85.0,92.0,83.0,83.0,100.0,88.0,92.0,106.0,99.0,107.0,61.0,112.0,86.0,100.0,72.0,83.0,67.0,81.0,68.0,90.0,78.0,70.0,71.0,75.0,87.0,94.0,98.0,61.0,58.0,52.0,38.0,41.0,32.0,29.0,33.0,25.0,28.0,12.0,18.0,19.0,9.0,9.0,7.0,7.0 F81100,97.0,112.0,111.0,127.0,114.0,133.0,117.0,127.0,133.0,149.0,174.0,162.0,152.0,171.0,184.0,147.0,157.0,145.0,136.0,150.0,118.0,110.0,135.0,115.0,116.0,121.0,128.0,119.0,128.0,131.0,141.0,131.0,141.0,141.0,159.0,159.0,163.0,149.0,168.0,155.0,160.0,157.0,166.0,165.0,164.0,153.0,160.0,160.0,153.0,183.0,170.0,186.0,151.0,209.0,164.0,162.0,160.0,180.0,189.0,149.0,175.0,171.0,163.0,152.0,155.0,139.0,151.0,126.0,125.0,117.0,146.0,112.0,122.0,119.0,115.0,133.0,110.0,127.0,126.0,101.0,91.0,83.0,93.0,62.0,54.0,52.0,44.0,54.0,38.0,49.0,35.0,18.0,23.0,11.0,7.0,12.0 F81101,24.0,29.0,32.0,21.0,24.0,31.0,31.0,25.0,14.0,23.0,29.0,27.0,20.0,15.0,29.0,17.0,25.0,24.0,23.0,23.0,21.0,24.0,19.0,30.0,32.0,31.0,32.0,31.0,26.0,30.0,38.0,37.0,43.0,30.0,39.0,34.0,24.0,27.0,23.0,35.0,25.0,27.0,28.0,29.0,26.0,35.0,30.0,19.0,31.0,41.0,34.0,37.0,43.0,37.0,42.0,42.0,49.0,48.0,47.0,41.0,47.0,53.0,55.0,61.0,38.0,43.0,31.0,27.0,36.0,22.0,20.0,28.0,28.0,26.0,30.0,25.0,29.0,39.0,43.0,27.0,32.0,21.0,22.0,23.0,29.0,15.0,20.0,11.0,6.0,5.0,10.0,8.0,5.0,2.0,3.0,4.0 F81102,24.0,32.0,33.0,46.0,33.0,41.0,44.0,46.0,54.0,49.0,45.0,38.0,43.0,60.0,38.0,50.0,60.0,49.0,34.0,45.0,34.0,42.0,32.0,42.0,30.0,38.0,47.0,28.0,35.0,34.0,40.0,43.0,30.0,57.0,41.0,45.0,43.0,43.0,66.0,56.0,52.0,51.0,56.0,55.0,52.0,57.0,57.0,49.0,60.0,58.0,53.0,60.0,58.0,52.0,60.0,48.0,50.0,46.0,50.0,45.0,48.0,41.0,44.0,40.0,30.0,33.0,35.0,38.0,26.0,31.0,24.0,23.0,27.0,26.0,27.0,13.0,21.0,32.0,22.0,25.0,21.0,18.0,20.0,13.0,11.0,14.0,8.0,12.0,18.0,12.0,9.0,4.0,5.0,5.0,4.0,12.0 F81104,21.0,34.0,22.0,17.0,18.0,29.0,27.0,33.0,24.0,31.0,23.0,39.0,42.0,20.0,24.0,30.0,32.0,31.0,39.0,32.0,24.0,20.0,29.0,21.0,23.0,21.0,25.0,27.0,19.0,24.0,31.0,28.0,27.0,30.0,32.0,32.0,36.0,33.0,46.0,35.0,32.0,31.0,30.0,30.0,26.0,34.0,30.0,27.0,33.0,31.0,28.0,34.0,30.0,22.0,28.0,36.0,40.0,40.0,29.0,32.0,36.0,36.0,26.0,28.0,26.0,26.0,27.0,25.0,23.0,28.0,42.0,24.0,27.0,20.0,25.0,37.0,18.0,31.0,27.0,22.0,19.0,17.0,19.0,14.0,13.0,6.0,4.0,8.0,9.0,5.0,4.0,11.0,4.0,3.0,1.0,4.0 F81105,83.0,100.0,104.0,125.0,119.0,142.0,115.0,111.0,125.0,139.0,126.0,153.0,134.0,159.0,137.0,156.0,149.0,172.0,133.0,136.0,99.0,114.0,120.0,115.0,120.0,89.0,113.0,107.0,107.0,95.0,91.0,112.0,100.0,100.0,110.0,124.0,93.0,140.0,138.0,124.0,113.0,129.0,119.0,134.0,133.0,137.0,122.0,113.0,119.0,132.0,137.0,161.0,160.0,182.0,194.0,165.0,154.0,160.0,161.0,167.0,138.0,128.0,137.0,144.0,128.0,135.0,105.0,86.0,113.0,84.0,85.0,74.0,72.0,78.0,82.0,78.0,94.0,89.0,93.0,72.0,68.0,51.0,60.0,38.0,36.0,32.0,32.0,28.0,26.0,14.0,10.0,13.0,8.0,7.0,5.0,14.0 F81108,85.0,95.0,105.0,106.0,94.0,100.0,114.0,136.0,98.0,111.0,137.0,100.0,122.0,124.0,113.0,111.0,119.0,147.0,109.0,120.0,114.0,124.0,110.0,104.0,95.0,129.0,110.0,99.0,117.0,117.0,128.0,134.0,122.0,124.0,137.0,129.0,151.0,149.0,128.0,146.0,130.0,135.0,137.0,119.0,139.0,115.0,105.0,113.0,109.0,113.0,102.0,116.0,123.0,111.0,121.0,123.0,112.0,97.0,128.0,111.0,110.0,107.0,103.0,114.0,107.0,88.0,100.0,107.0,71.0,80.0,64.0,57.0,68.0,60.0,81.0,53.0,63.0,91.0,91.0,49.0,43.0,37.0,41.0,30.0,41.0,28.0,24.0,20.0,11.0,18.0,13.0,13.0,6.0,8.0,5.0,9.0 F81110,55.0,62.0,100.0,99.0,102.0,103.0,102.0,104.0,114.0,129.0,108.0,102.0,107.0,103.0,99.0,83.0,97.0,109.0,69.0,93.0,76.0,77.0,68.0,75.0,77.0,61.0,76.0,81.0,63.0,78.0,77.0,62.0,71.0,85.0,77.0,107.0,90.0,77.0,83.0,84.0,97.0,85.0,106.0,78.0,90.0,83.0,79.0,69.0,69.0,62.0,68.0,63.0,74.0,61.0,72.0,61.0,87.0,72.0,68.0,65.0,69.0,55.0,64.0,43.0,55.0,48.0,53.0,58.0,45.0,49.0,34.0,21.0,35.0,31.0,32.0,36.0,25.0,32.0,21.0,20.0,19.0,15.0,17.0,18.0,9.0,18.0,10.0,9.0,6.0,2.0,2.0,3.0,2.0,2.0,,5.0 F81112,54.0,64.0,69.0,67.0,80.0,76.0,84.0,68.0,81.0,69.0,81.0,85.0,86.0,87.0,77.0,74.0,85.0,90.0,56.0,71.0,79.0,66.0,64.0,63.0,67.0,62.0,77.0,67.0,77.0,73.0,70.0,86.0,66.0,87.0,85.0,73.0,75.0,92.0,81.0,99.0,82.0,83.0,99.0,99.0,86.0,113.0,90.0,99.0,94.0,85.0,95.0,103.0,108.0,120.0,103.0,102.0,100.0,108.0,96.0,111.0,106.0,87.0,86.0,79.0,78.0,78.0,63.0,89.0,77.0,63.0,68.0,87.0,82.0,62.0,82.0,82.0,83.0,80.0,91.0,53.0,75.0,59.0,46.0,40.0,34.0,37.0,30.0,23.0,28.0,23.0,13.0,14.0,9.0,1.0,3.0,6.0 F81113,67.0,80.0,93.0,85.0,95.0,106.0,94.0,92.0,108.0,122.0,115.0,112.0,119.0,115.0,116.0,120.0,110.0,149.0,108.0,115.0,88.0,102.0,89.0,102.0,83.0,82.0,97.0,68.0,70.0,76.0,81.0,87.0,84.0,79.0,108.0,98.0,82.0,83.0,96.0,124.0,111.0,114.0,122.0,132.0,123.0,126.0,116.0,104.0,107.0,113.0,114.0,139.0,124.0,117.0,115.0,116.0,106.0,109.0,121.0,90.0,91.0,95.0,81.0,70.0,55.0,58.0,52.0,47.0,36.0,36.0,38.0,28.0,28.0,33.0,32.0,26.0,23.0,15.0,29.0,17.0,14.0,10.0,12.0,11.0,11.0,13.0,5.0,8.0,3.0,2.0,7.0,5.0,,2.0,1.0,2.0 F81114,39.0,59.0,57.0,63.0,52.0,65.0,87.0,75.0,78.0,75.0,69.0,78.0,73.0,95.0,79.0,71.0,97.0,87.0,90.0,83.0,76.0,70.0,77.0,74.0,59.0,66.0,66.0,92.0,76.0,72.0,71.0,85.0,64.0,99.0,78.0,73.0,91.0,75.0,72.0,75.0,80.0,95.0,86.0,95.0,87.0,80.0,94.0,80.0,83.0,87.0,99.0,72.0,101.0,91.0,83.0,86.0,111.0,91.0,98.0,94.0,82.0,95.0,76.0,72.0,74.0,67.0,68.0,73.0,63.0,61.0,54.0,71.0,69.0,48.0,57.0,60.0,54.0,72.0,96.0,59.0,58.0,66.0,51.0,30.0,32.0,38.0,31.0,33.0,30.0,16.0,25.0,16.0,5.0,10.0,3.0,6.0 F81117,42.0,53.0,45.0,51.0,54.0,40.0,58.0,57.0,63.0,56.0,64.0,63.0,47.0,70.0,57.0,60.0,76.0,49.0,56.0,49.0,57.0,57.0,57.0,58.0,67.0,64.0,55.0,66.0,64.0,68.0,74.0,76.0,82.0,70.0,79.0,72.0,65.0,75.0,67.0,82.0,82.0,91.0,71.0,83.0,83.0,84.0,63.0,70.0,69.0,65.0,79.0,71.0,75.0,75.0,82.0,65.0,68.0,68.0,92.0,62.0,72.0,86.0,53.0,61.0,60.0,57.0,70.0,53.0,56.0,35.0,44.0,32.0,37.0,23.0,32.0,34.0,28.0,38.0,31.0,24.0,23.0,25.0,22.0,11.0,18.0,18.0,24.0,21.0,15.0,11.0,8.0,2.0,5.0,8.0,4.0,8.0 F81119,33.0,29.0,37.0,36.0,37.0,49.0,38.0,57.0,46.0,55.0,41.0,45.0,43.0,59.0,66.0,41.0,42.0,47.0,51.0,40.0,36.0,26.0,44.0,39.0,44.0,51.0,42.0,35.0,30.0,35.0,42.0,37.0,47.0,38.0,45.0,48.0,39.0,52.0,46.0,42.0,45.0,49.0,43.0,36.0,40.0,52.0,41.0,45.0,49.0,50.0,44.0,60.0,63.0,75.0,55.0,60.0,61.0,53.0,41.0,60.0,69.0,54.0,62.0,79.0,58.0,64.0,49.0,45.0,55.0,43.0,52.0,57.0,47.0,57.0,50.0,53.0,46.0,51.0,56.0,36.0,38.0,38.0,22.0,20.0,21.0,17.0,27.0,8.0,8.0,7.0,18.0,5.0,3.0,7.0,2.0,3.0 F81121,48.0,54.0,79.0,67.0,79.0,71.0,91.0,75.0,93.0,96.0,99.0,108.0,88.0,112.0,99.0,108.0,87.0,100.0,95.0,81.0,70.0,85.0,75.0,89.0,67.0,82.0,82.0,96.0,90.0,96.0,87.0,104.0,92.0,101.0,92.0,96.0,92.0,88.0,107.0,107.0,102.0,84.0,90.0,96.0,97.0,99.0,95.0,92.0,87.0,89.0,93.0,102.0,85.0,99.0,98.0,110.0,101.0,108.0,119.0,113.0,120.0,120.0,107.0,113.0,116.0,95.0,98.0,83.0,76.0,77.0,81.0,59.0,60.0,72.0,62.0,63.0,97.0,95.0,94.0,62.0,61.0,54.0,53.0,40.0,35.0,32.0,37.0,17.0,21.0,12.0,18.0,8.0,10.0,3.0,7.0,11.0 F81122,130.0,121.0,139.0,177.0,153.0,186.0,176.0,194.0,263.0,232.0,236.0,241.0,220.0,218.0,217.0,217.0,210.0,255.0,208.0,187.0,195.0,175.0,142.0,167.0,183.0,169.0,197.0,177.0,191.0,190.0,196.0,208.0,201.0,198.0,226.0,219.0,207.0,224.0,220.0,223.0,233.0,231.0,242.0,237.0,228.0,236.0,218.0,192.0,202.0,205.0,229.0,211.0,229.0,216.0,210.0,197.0,219.0,212.0,230.0,200.0,199.0,193.0,188.0,175.0,174.0,161.0,170.0,149.0,155.0,158.0,126.0,124.0,139.0,130.0,139.0,120.0,125.0,147.0,174.0,114.0,114.0,94.0,93.0,69.0,55.0,49.0,49.0,41.0,34.0,30.0,34.0,20.0,13.0,13.0,17.0,18.0 F81123,74.0,70.0,97.0,91.0,106.0,101.0,98.0,111.0,136.0,120.0,115.0,133.0,142.0,113.0,129.0,137.0,132.0,124.0,131.0,94.0,93.0,110.0,98.0,91.0,96.0,83.0,113.0,115.0,102.0,87.0,120.0,93.0,96.0,103.0,108.0,113.0,122.0,117.0,112.0,136.0,130.0,148.0,130.0,130.0,126.0,143.0,126.0,123.0,135.0,144.0,122.0,124.0,125.0,153.0,154.0,140.0,149.0,145.0,163.0,143.0,145.0,142.0,126.0,122.0,109.0,121.0,114.0,90.0,112.0,86.0,89.0,96.0,101.0,92.0,85.0,106.0,105.0,125.0,136.0,80.0,111.0,89.0,76.0,50.0,44.0,63.0,50.0,49.0,47.0,29.0,21.0,22.0,22.0,12.0,3.0,14.0 F81125,66.0,63.0,56.0,65.0,47.0,56.0,58.0,61.0,73.0,65.0,64.0,68.0,76.0,80.0,91.0,78.0,74.0,83.0,86.0,64.0,64.0,90.0,83.0,89.0,73.0,88.0,90.0,107.0,79.0,85.0,84.0,89.0,95.0,83.0,88.0,89.0,89.0,85.0,80.0,72.0,82.0,71.0,76.0,89.0,80.0,91.0,69.0,86.0,71.0,83.0,83.0,93.0,94.0,91.0,107.0,89.0,98.0,113.0,104.0,135.0,123.0,99.0,94.0,118.0,109.0,106.0,110.0,83.0,90.0,63.0,71.0,74.0,81.0,54.0,70.0,68.0,69.0,100.0,99.0,63.0,61.0,69.0,40.0,40.0,32.0,42.0,31.0,33.0,28.0,17.0,15.0,14.0,9.0,9.0,4.0,8.0 F81126,43.0,45.0,47.0,53.0,41.0,40.0,44.0,38.0,52.0,60.0,42.0,48.0,50.0,54.0,47.0,52.0,54.0,50.0,46.0,45.0,41.0,42.0,37.0,44.0,40.0,58.0,53.0,51.0,56.0,47.0,51.0,56.0,52.0,47.0,49.0,62.0,57.0,48.0,42.0,61.0,38.0,47.0,47.0,50.0,53.0,50.0,48.0,47.0,50.0,68.0,60.0,63.0,59.0,72.0,66.0,72.0,63.0,72.0,85.0,80.0,75.0,81.0,77.0,59.0,74.0,80.0,79.0,67.0,65.0,80.0,60.0,69.0,63.0,67.0,60.0,64.0,54.0,73.0,77.0,56.0,55.0,47.0,36.0,33.0,29.0,23.0,18.0,20.0,16.0,18.0,12.0,8.0,13.0,7.0,3.0,8.0 F81128,56.0,62.0,68.0,66.0,70.0,74.0,83.0,92.0,75.0,76.0,98.0,83.0,99.0,94.0,96.0,89.0,93.0,95.0,99.0,65.0,69.0,70.0,74.0,64.0,71.0,66.0,72.0,79.0,78.0,75.0,73.0,84.0,74.0,64.0,75.0,75.0,82.0,102.0,93.0,79.0,65.0,84.0,98.0,98.0,97.0,114.0,96.0,95.0,97.0,86.0,90.0,95.0,110.0,99.0,87.0,110.0,97.0,92.0,86.0,83.0,106.0,101.0,116.0,101.0,90.0,97.0,88.0,97.0,78.0,76.0,69.0,49.0,67.0,73.0,64.0,58.0,90.0,105.0,95.0,87.0,72.0,67.0,51.0,45.0,40.0,46.0,26.0,42.0,21.0,17.0,9.0,20.0,11.0,8.0,5.0,16.0 F81130,28.0,31.0,20.0,25.0,33.0,22.0,31.0,39.0,32.0,33.0,38.0,37.0,31.0,33.0,28.0,33.0,33.0,36.0,26.0,38.0,38.0,35.0,30.0,35.0,30.0,21.0,27.0,33.0,32.0,31.0,33.0,33.0,34.0,38.0,43.0,33.0,40.0,38.0,29.0,21.0,33.0,27.0,25.0,43.0,31.0,39.0,35.0,37.0,35.0,35.0,45.0,34.0,33.0,39.0,56.0,41.0,37.0,52.0,67.0,59.0,51.0,48.0,50.0,44.0,46.0,38.0,35.0,42.0,34.0,34.0,35.0,31.0,24.0,22.0,35.0,34.0,37.0,52.0,34.0,26.0,31.0,26.0,12.0,17.0,13.0,15.0,13.0,11.0,7.0,8.0,7.0,2.0,4.0,1.0,1.0,4.0 F81132,92.0,83.0,93.0,77.0,105.0,116.0,84.0,105.0,115.0,125.0,110.0,115.0,133.0,122.0,141.0,123.0,131.0,133.0,124.0,105.0,65.0,89.0,90.0,79.0,103.0,69.0,105.0,92.0,109.0,97.0,102.0,89.0,117.0,128.0,128.0,98.0,119.0,135.0,124.0,129.0,125.0,127.0,107.0,142.0,133.0,119.0,109.0,108.0,96.0,118.0,103.0,105.0,99.0,133.0,122.0,120.0,84.0,104.0,115.0,103.0,77.0,102.0,80.0,106.0,102.0,108.0,86.0,92.0,80.0,95.0,82.0,72.0,70.0,78.0,82.0,64.0,89.0,96.0,85.0,74.0,74.0,61.0,47.0,35.0,35.0,27.0,40.0,28.0,17.0,25.0,9.0,13.0,8.0,6.0,3.0,13.0 F81134,35.0,36.0,37.0,39.0,42.0,47.0,45.0,44.0,53.0,45.0,52.0,50.0,57.0,45.0,38.0,50.0,55.0,39.0,42.0,49.0,39.0,36.0,46.0,41.0,39.0,42.0,41.0,42.0,53.0,46.0,41.0,50.0,52.0,43.0,55.0,42.0,54.0,58.0,77.0,62.0,57.0,64.0,72.0,43.0,47.0,61.0,54.0,37.0,65.0,40.0,45.0,54.0,50.0,51.0,47.0,47.0,60.0,53.0,61.0,63.0,48.0,48.0,55.0,38.0,49.0,32.0,37.0,35.0,42.0,39.0,35.0,28.0,19.0,22.0,29.0,29.0,32.0,27.0,31.0,15.0,15.0,22.0,13.0,13.0,12.0,12.0,5.0,11.0,8.0,6.0,1.0,4.0,3.0,4.0,3.0,1.0 F81137,28.0,34.0,38.0,39.0,39.0,43.0,42.0,40.0,32.0,41.0,44.0,37.0,50.0,54.0,49.0,45.0,45.0,49.0,40.0,36.0,39.0,38.0,38.0,34.0,35.0,47.0,34.0,31.0,45.0,41.0,25.0,37.0,33.0,39.0,50.0,39.0,37.0,48.0,41.0,42.0,46.0,48.0,52.0,48.0,48.0,44.0,48.0,33.0,56.0,50.0,28.0,52.0,57.0,40.0,49.0,37.0,61.0,61.0,66.0,51.0,73.0,56.0,50.0,55.0,42.0,52.0,47.0,40.0,33.0,35.0,35.0,44.0,40.0,33.0,25.0,36.0,42.0,40.0,40.0,26.0,35.0,21.0,17.0,13.0,12.0,12.0,17.0,11.0,9.0,6.0,3.0,4.0,4.0,,2.0,1.0 F81142,10.0,21.0,24.0,32.0,31.0,39.0,29.0,42.0,24.0,35.0,37.0,38.0,43.0,27.0,36.0,38.0,46.0,38.0,39.0,25.0,38.0,28.0,23.0,38.0,27.0,34.0,40.0,34.0,37.0,40.0,38.0,37.0,33.0,32.0,37.0,34.0,36.0,43.0,38.0,43.0,41.0,33.0,44.0,38.0,47.0,38.0,46.0,40.0,35.0,32.0,43.0,33.0,41.0,36.0,44.0,51.0,47.0,50.0,42.0,43.0,50.0,38.0,45.0,45.0,40.0,27.0,33.0,29.0,37.0,38.0,30.0,38.0,33.0,44.0,27.0,38.0,42.0,38.0,33.0,41.0,28.0,34.0,25.0,14.0,17.0,13.0,10.0,8.0,10.0,6.0,5.0,5.0,3.0,4.0,4.0,5.0 F81144,87.0,94.0,110.0,127.0,116.0,139.0,123.0,155.0,136.0,159.0,165.0,123.0,145.0,147.0,159.0,159.0,144.0,121.0,112.0,101.0,90.0,102.0,87.0,89.0,86.0,102.0,117.0,114.0,126.0,105.0,125.0,128.0,100.0,118.0,133.0,131.0,137.0,143.0,143.0,152.0,150.0,155.0,181.0,193.0,143.0,172.0,177.0,136.0,151.0,143.0,154.0,179.0,172.0,182.0,155.0,150.0,136.0,135.0,139.0,141.0,151.0,171.0,118.0,127.0,123.0,109.0,100.0,100.0,100.0,87.0,89.0,90.0,85.0,88.0,60.0,83.0,66.0,79.0,83.0,57.0,57.0,57.0,43.0,39.0,31.0,38.0,41.0,23.0,39.0,22.0,25.0,24.0,12.0,12.0,14.0,26.0 F81147,17.0,25.0,21.0,17.0,25.0,15.0,15.0,34.0,16.0,37.0,25.0,30.0,28.0,25.0,21.0,34.0,31.0,27.0,42.0,24.0,25.0,27.0,26.0,33.0,29.0,25.0,34.0,28.0,28.0,35.0,31.0,30.0,43.0,25.0,40.0,33.0,41.0,36.0,32.0,30.0,39.0,42.0,33.0,46.0,28.0,43.0,33.0,31.0,35.0,25.0,36.0,40.0,28.0,45.0,41.0,32.0,33.0,36.0,30.0,38.0,34.0,38.0,39.0,35.0,36.0,27.0,40.0,32.0,21.0,29.0,17.0,24.0,25.0,34.0,25.0,28.0,19.0,21.0,28.0,22.0,20.0,19.0,19.0,13.0,18.0,16.0,12.0,7.0,14.0,11.0,6.0,6.0,7.0,6.0,4.0,6.0 F81149,70.0,64.0,55.0,76.0,51.0,44.0,46.0,62.0,71.0,55.0,71.0,66.0,72.0,69.0,76.0,61.0,64.0,76.0,60.0,70.0,53.0,51.0,48.0,61.0,50.0,58.0,61.0,64.0,69.0,62.0,54.0,68.0,67.0,88.0,75.0,71.0,85.0,75.0,70.0,63.0,68.0,69.0,53.0,64.0,83.0,65.0,77.0,48.0,77.0,70.0,58.0,74.0,88.0,85.0,82.0,75.0,79.0,77.0,84.0,88.0,80.0,89.0,63.0,77.0,72.0,71.0,55.0,78.0,61.0,70.0,63.0,59.0,52.0,52.0,62.0,49.0,55.0,61.0,52.0,45.0,31.0,45.0,41.0,23.0,28.0,15.0,20.0,20.0,15.0,16.0,12.0,8.0,9.0,6.0,5.0,9.0 F81150,54.0,72.0,91.0,87.0,90.0,87.0,96.0,95.0,121.0,119.0,106.0,95.0,101.0,111.0,92.0,75.0,92.0,100.0,97.0,65.0,75.0,67.0,74.0,72.0,63.0,76.0,86.0,77.0,83.0,102.0,106.0,89.0,106.0,98.0,116.0,107.0,114.0,111.0,115.0,99.0,105.0,118.0,99.0,115.0,103.0,96.0,83.0,89.0,74.0,58.0,84.0,68.0,84.0,67.0,84.0,63.0,69.0,79.0,68.0,70.0,85.0,62.0,77.0,58.0,65.0,54.0,53.0,51.0,34.0,30.0,33.0,27.0,25.0,35.0,26.0,24.0,20.0,26.0,32.0,23.0,10.0,15.0,7.0,11.0,12.0,15.0,13.0,9.0,14.0,3.0,8.0,7.0,3.0,2.0,4.0,5.0 F81153,56.0,77.0,58.0,84.0,67.0,61.0,79.0,58.0,69.0,80.0,80.0,78.0,75.0,86.0,90.0,92.0,99.0,90.0,82.0,87.0,62.0,75.0,82.0,73.0,65.0,64.0,78.0,87.0,81.0,72.0,54.0,87.0,85.0,76.0,60.0,96.0,60.0,80.0,76.0,75.0,93.0,82.0,80.0,82.0,71.0,83.0,91.0,79.0,82.0,83.0,77.0,86.0,80.0,87.0,84.0,91.0,93.0,73.0,102.0,95.0,91.0,86.0,66.0,62.0,68.0,75.0,56.0,49.0,64.0,56.0,51.0,50.0,45.0,43.0,55.0,50.0,62.0,72.0,59.0,46.0,43.0,45.0,28.0,24.0,18.0,30.0,24.0,17.0,19.0,17.0,5.0,8.0,8.0,6.0,4.0,3.0 F81155,24.0,18.0,35.0,45.0,37.0,35.0,38.0,41.0,41.0,32.0,46.0,43.0,35.0,40.0,39.0,32.0,38.0,44.0,49.0,31.0,38.0,35.0,36.0,31.0,41.0,38.0,40.0,27.0,36.0,44.0,39.0,35.0,38.0,32.0,41.0,35.0,34.0,38.0,43.0,40.0,39.0,32.0,42.0,38.0,33.0,28.0,46.0,34.0,26.0,43.0,46.0,33.0,35.0,37.0,45.0,39.0,44.0,38.0,33.0,41.0,33.0,37.0,30.0,35.0,36.0,22.0,33.0,22.0,26.0,15.0,17.0,27.0,26.0,19.0,18.0,14.0,13.0,13.0,18.0,10.0,12.0,17.0,13.0,8.0,6.0,9.0,6.0,3.0,4.0,4.0,5.0,2.0,1.0,,2.0,2.0 F81158,18.0,18.0,18.0,26.0,16.0,21.0,31.0,31.0,28.0,26.0,26.0,22.0,17.0,28.0,24.0,27.0,21.0,24.0,24.0,22.0,20.0,23.0,20.0,20.0,18.0,20.0,21.0,26.0,39.0,28.0,20.0,22.0,28.0,22.0,22.0,25.0,29.0,30.0,23.0,30.0,29.0,22.0,25.0,17.0,33.0,20.0,21.0,14.0,37.0,26.0,22.0,20.0,23.0,28.0,23.0,27.0,26.0,37.0,33.0,16.0,13.0,16.0,16.0,22.0,16.0,20.0,32.0,21.0,23.0,22.0,14.0,16.0,16.0,12.0,11.0,17.0,14.0,10.0,15.0,8.0,14.0,9.0,4.0,3.0,8.0,5.0,6.0,2.0,1.0,4.0,1.0,2.0,1.0,,, F81159,37.0,43.0,37.0,40.0,35.0,37.0,38.0,50.0,39.0,33.0,45.0,51.0,35.0,33.0,33.0,41.0,36.0,33.0,34.0,39.0,41.0,53.0,52.0,66.0,69.0,72.0,88.0,80.0,102.0,92.0,92.0,86.0,83.0,75.0,90.0,98.0,98.0,82.0,86.0,88.0,71.0,72.0,77.0,70.0,58.0,45.0,47.0,59.0,48.0,51.0,49.0,47.0,47.0,55.0,43.0,38.0,31.0,43.0,36.0,39.0,36.0,45.0,26.0,22.0,24.0,32.0,24.0,28.0,13.0,14.0,16.0,15.0,17.0,16.0,6.0,11.0,8.0,11.0,13.0,4.0,4.0,7.0,7.0,2.0,4.0,3.0,4.0,1.0,4.0,2.0,2.0,3.0,1.0,3.0,,2.0 F81163,30.0,35.0,42.0,47.0,45.0,53.0,46.0,46.0,45.0,47.0,37.0,42.0,41.0,47.0,40.0,49.0,33.0,44.0,37.0,26.0,29.0,39.0,43.0,39.0,36.0,28.0,28.0,35.0,39.0,32.0,54.0,41.0,48.0,46.0,53.0,61.0,45.0,59.0,32.0,39.0,43.0,50.0,37.0,50.0,39.0,43.0,52.0,47.0,38.0,39.0,43.0,46.0,37.0,45.0,43.0,59.0,54.0,55.0,62.0,52.0,51.0,53.0,50.0,61.0,47.0,52.0,35.0,41.0,36.0,29.0,32.0,29.0,26.0,28.0,24.0,35.0,35.0,34.0,32.0,25.0,25.0,21.0,19.0,16.0,6.0,18.0,24.0,12.0,6.0,19.0,6.0,5.0,4.0,4.0,4.0,4.0 F81164,34.0,35.0,42.0,40.0,47.0,54.0,47.0,56.0,50.0,73.0,70.0,73.0,67.0,64.0,70.0,71.0,72.0,73.0,62.0,52.0,54.0,50.0,46.0,50.0,55.0,49.0,69.0,68.0,72.0,55.0,59.0,73.0,65.0,75.0,73.0,76.0,74.0,74.0,59.0,83.0,61.0,67.0,81.0,84.0,79.0,69.0,75.0,62.0,67.0,69.0,76.0,72.0,62.0,76.0,67.0,59.0,64.0,66.0,61.0,64.0,59.0,63.0,56.0,59.0,51.0,43.0,42.0,53.0,31.0,41.0,33.0,39.0,39.0,33.0,32.0,23.0,34.0,27.0,28.0,22.0,21.0,19.0,19.0,22.0,13.0,22.0,7.0,10.0,6.0,9.0,5.0,5.0,3.0,5.0,1.0,7.0 F81170,51.0,39.0,46.0,80.0,66.0,73.0,67.0,75.0,67.0,79.0,70.0,81.0,79.0,86.0,66.0,95.0,80.0,82.0,62.0,61.0,100.0,72.0,63.0,81.0,75.0,75.0,73.0,86.0,84.0,79.0,86.0,87.0,82.0,98.0,81.0,74.0,101.0,84.0,80.0,90.0,84.0,102.0,99.0,85.0,90.0,84.0,83.0,83.0,90.0,80.0,86.0,94.0,85.0,89.0,90.0,93.0,87.0,96.0,100.0,104.0,105.0,96.0,103.0,80.0,86.0,84.0,75.0,82.0,83.0,77.0,72.0,77.0,78.0,70.0,64.0,62.0,87.0,80.0,76.0,59.0,61.0,49.0,45.0,34.0,19.0,25.0,13.0,13.0,13.0,6.0,8.0,10.0,2.0,2.0,2.0,3.0 F81173,31.0,28.0,38.0,55.0,43.0,39.0,60.0,49.0,64.0,54.0,46.0,48.0,63.0,55.0,50.0,60.0,41.0,39.0,36.0,42.0,29.0,33.0,34.0,33.0,37.0,42.0,31.0,43.0,37.0,43.0,32.0,36.0,44.0,56.0,49.0,42.0,50.0,58.0,56.0,52.0,56.0,55.0,55.0,51.0,44.0,50.0,50.0,47.0,33.0,36.0,42.0,32.0,51.0,42.0,52.0,39.0,28.0,42.0,37.0,31.0,29.0,33.0,26.0,25.0,24.0,20.0,14.0,29.0,22.0,18.0,28.0,32.0,20.0,23.0,29.0,23.0,23.0,29.0,24.0,15.0,15.0,15.0,12.0,8.0,5.0,6.0,7.0,1.0,2.0,2.0,,,,1.0,1.0, F81176,18.0,12.0,17.0,21.0,16.0,18.0,20.0,20.0,20.0,21.0,28.0,20.0,27.0,19.0,21.0,24.0,17.0,29.0,12.0,11.0,12.0,14.0,15.0,21.0,16.0,18.0,19.0,15.0,24.0,26.0,23.0,22.0,21.0,26.0,19.0,27.0,23.0,25.0,28.0,24.0,23.0,27.0,23.0,23.0,24.0,30.0,32.0,22.0,16.0,18.0,16.0,15.0,16.0,19.0,20.0,18.0,18.0,21.0,14.0,22.0,22.0,17.0,20.0,13.0,14.0,25.0,14.0,17.0,15.0,14.0,13.0,15.0,12.0,11.0,18.0,9.0,6.0,13.0,12.0,7.0,10.0,19.0,5.0,8.0,4.0,2.0,4.0,2.0,2.0,4.0,1.0,1.0,1.0,,,2.0 F81177,28.0,34.0,25.0,39.0,31.0,39.0,30.0,29.0,36.0,33.0,32.0,27.0,23.0,27.0,41.0,31.0,26.0,23.0,26.0,33.0,19.0,19.0,19.0,24.0,12.0,23.0,20.0,36.0,30.0,23.0,21.0,27.0,31.0,34.0,50.0,36.0,48.0,44.0,31.0,44.0,30.0,24.0,35.0,30.0,32.0,29.0,30.0,22.0,28.0,25.0,28.0,21.0,33.0,20.0,25.0,31.0,27.0,30.0,23.0,26.0,12.0,26.0,16.0,12.0,20.0,22.0,21.0,30.0,19.0,19.0,24.0,21.0,11.0,17.0,15.0,20.0,12.0,16.0,17.0,9.0,10.0,14.0,9.0,12.0,7.0,6.0,4.0,3.0,3.0,4.0,3.0,4.0,1.0,1.0,1.0,3.0 F81183,19.0,25.0,17.0,18.0,26.0,19.0,27.0,34.0,32.0,30.0,33.0,29.0,30.0,32.0,31.0,28.0,21.0,30.0,25.0,22.0,24.0,29.0,24.0,20.0,28.0,21.0,26.0,26.0,30.0,27.0,36.0,24.0,25.0,39.0,30.0,29.0,28.0,41.0,25.0,35.0,37.0,29.0,33.0,29.0,38.0,25.0,29.0,22.0,27.0,38.0,32.0,20.0,37.0,36.0,38.0,42.0,47.0,53.0,59.0,45.0,71.0,58.0,51.0,48.0,56.0,59.0,47.0,43.0,40.0,35.0,34.0,44.0,32.0,40.0,40.0,41.0,46.0,46.0,40.0,34.0,27.0,17.0,18.0,11.0,10.0,14.0,16.0,11.0,4.0,8.0,13.0,7.0,4.0,5.0,2.0,9.0 F81186,24.0,37.0,45.0,51.0,56.0,47.0,55.0,60.0,61.0,59.0,48.0,52.0,58.0,64.0,55.0,49.0,61.0,64.0,45.0,57.0,41.0,50.0,45.0,50.0,42.0,41.0,41.0,37.0,34.0,40.0,45.0,58.0,61.0,54.0,52.0,52.0,61.0,76.0,72.0,59.0,55.0,54.0,57.0,48.0,57.0,52.0,61.0,38.0,37.0,42.0,41.0,48.0,56.0,59.0,47.0,46.0,39.0,41.0,44.0,24.0,34.0,32.0,24.0,30.0,32.0,27.0,25.0,34.0,22.0,25.0,27.0,18.0,21.0,16.0,13.0,19.0,24.0,17.0,19.0,14.0,9.0,15.0,10.0,11.0,5.0,1.0,2.0,6.0,6.0,2.0,1.0,2.0,2.0,1.0,1.0,1.0 F81192,40.0,39.0,44.0,41.0,47.0,60.0,60.0,50.0,51.0,55.0,60.0,77.0,66.0,90.0,71.0,75.0,67.0,81.0,64.0,69.0,70.0,59.0,56.0,69.0,57.0,55.0,62.0,66.0,49.0,49.0,58.0,65.0,57.0,66.0,56.0,74.0,71.0,62.0,57.0,85.0,61.0,63.0,80.0,68.0,72.0,62.0,51.0,66.0,64.0,63.0,63.0,61.0,68.0,73.0,65.0,90.0,62.0,64.0,69.0,68.0,51.0,51.0,57.0,52.0,58.0,55.0,52.0,55.0,44.0,47.0,47.0,49.0,47.0,53.0,53.0,52.0,52.0,47.0,49.0,35.0,40.0,24.0,21.0,29.0,13.0,25.0,13.0,8.0,15.0,14.0,9.0,6.0,7.0,3.0,3.0,10.0 F81193,44.0,52.0,59.0,47.0,43.0,49.0,48.0,44.0,55.0,55.0,41.0,49.0,48.0,51.0,42.0,56.0,41.0,38.0,28.0,25.0,35.0,35.0,23.0,25.0,40.0,23.0,41.0,35.0,44.0,45.0,50.0,53.0,78.0,73.0,43.0,68.0,59.0,66.0,66.0,63.0,58.0,48.0,60.0,63.0,49.0,48.0,43.0,45.0,37.0,41.0,42.0,47.0,40.0,27.0,47.0,35.0,22.0,36.0,47.0,36.0,44.0,38.0,31.0,39.0,29.0,25.0,33.0,35.0,30.0,27.0,33.0,25.0,24.0,23.0,40.0,16.0,21.0,26.0,21.0,14.0,20.0,20.0,15.0,15.0,11.0,8.0,5.0,4.0,7.0,2.0,6.0,4.0,2.0,2.0,2.0,1.0 F81197,12.0,11.0,13.0,14.0,23.0,17.0,16.0,14.0,16.0,25.0,18.0,19.0,21.0,16.0,18.0,12.0,14.0,21.0,19.0,14.0,11.0,16.0,13.0,18.0,15.0,12.0,24.0,17.0,17.0,20.0,13.0,18.0,14.0,24.0,24.0,25.0,12.0,16.0,18.0,19.0,22.0,23.0,23.0,24.0,22.0,23.0,21.0,23.0,18.0,16.0,17.0,17.0,16.0,21.0,13.0,19.0,20.0,16.0,20.0,24.0,16.0,16.0,15.0,17.0,14.0,12.0,16.0,10.0,14.0,12.0,10.0,16.0,10.0,11.0,8.0,12.0,11.0,7.0,8.0,5.0,5.0,3.0,6.0,,1.0,,2.0,,2.0,,,,,1.0,, F81198,10.0,14.0,13.0,15.0,11.0,13.0,11.0,16.0,22.0,13.0,16.0,7.0,8.0,15.0,17.0,13.0,18.0,16.0,11.0,7.0,18.0,14.0,10.0,17.0,16.0,15.0,22.0,11.0,12.0,14.0,14.0,17.0,18.0,15.0,21.0,16.0,21.0,18.0,11.0,9.0,15.0,11.0,17.0,18.0,12.0,11.0,19.0,15.0,19.0,17.0,14.0,14.0,18.0,16.0,16.0,23.0,20.0,17.0,23.0,28.0,17.0,23.0,24.0,33.0,18.0,22.0,12.0,9.0,14.0,15.0,13.0,13.0,18.0,12.0,12.0,10.0,22.0,20.0,21.0,8.0,12.0,13.0,12.0,6.0,8.0,9.0,8.0,6.0,,1.0,5.0,1.0,2.0,3.0,,3.0 F81205,22.0,24.0,26.0,27.0,26.0,26.0,26.0,40.0,43.0,35.0,28.0,38.0,40.0,38.0,40.0,48.0,37.0,43.0,43.0,38.0,38.0,39.0,33.0,34.0,41.0,36.0,31.0,26.0,25.0,26.0,35.0,25.0,35.0,27.0,27.0,29.0,46.0,42.0,23.0,45.0,25.0,35.0,39.0,39.0,34.0,37.0,26.0,26.0,27.0,36.0,23.0,42.0,36.0,37.0,37.0,34.0,41.0,43.0,56.0,40.0,49.0,39.0,33.0,51.0,42.0,39.0,35.0,41.0,38.0,36.0,32.0,33.0,24.0,18.0,28.0,27.0,37.0,43.0,26.0,27.0,23.0,19.0,23.0,13.0,14.0,14.0,7.0,8.0,4.0,7.0,4.0,3.0,2.0,1.0,1.0,2.0 F81206,34.0,38.0,39.0,43.0,41.0,42.0,39.0,56.0,49.0,60.0,66.0,58.0,57.0,63.0,60.0,41.0,56.0,58.0,49.0,45.0,39.0,31.0,41.0,34.0,48.0,50.0,39.0,35.0,34.0,32.0,40.0,35.0,42.0,40.0,43.0,38.0,41.0,40.0,48.0,45.0,44.0,46.0,40.0,40.0,42.0,39.0,30.0,41.0,33.0,39.0,28.0,36.0,41.0,34.0,30.0,38.0,35.0,31.0,32.0,37.0,41.0,26.0,26.0,40.0,23.0,32.0,23.0,16.0,25.0,13.0,9.0,19.0,19.0,8.0,7.0,14.0,9.0,12.0,8.0,4.0,5.0,4.0,7.0,7.0,7.0,5.0,4.0,6.0,2.0,1.0,2.0,,,1.0,1.0, F81207,12.0,17.0,22.0,20.0,12.0,17.0,20.0,14.0,14.0,26.0,13.0,18.0,15.0,15.0,15.0,12.0,11.0,20.0,14.0,15.0,10.0,12.0,16.0,6.0,15.0,15.0,17.0,18.0,27.0,18.0,30.0,29.0,34.0,27.0,25.0,26.0,36.0,27.0,30.0,25.0,27.0,16.0,26.0,16.0,20.0,24.0,20.0,21.0,24.0,30.0,27.0,20.0,19.0,27.0,18.0,19.0,16.0,12.0,21.0,14.0,18.0,18.0,15.0,11.0,15.0,9.0,9.0,3.0,12.0,11.0,9.0,7.0,8.0,7.0,3.0,5.0,8.0,6.0,10.0,5.0,3.0,4.0,5.0,4.0,4.0,2.0,3.0,2.0,3.0,1.0,2.0,4.0,1.0,2.0,, F81211,20.0,22.0,38.0,34.0,38.0,34.0,38.0,38.0,37.0,41.0,30.0,37.0,30.0,43.0,37.0,38.0,57.0,35.0,33.0,39.0,35.0,43.0,39.0,27.0,42.0,32.0,29.0,22.0,30.0,28.0,31.0,31.0,40.0,26.0,53.0,33.0,34.0,36.0,54.0,30.0,48.0,39.0,33.0,47.0,38.0,40.0,36.0,33.0,36.0,46.0,37.0,39.0,28.0,32.0,52.0,33.0,34.0,40.0,31.0,31.0,30.0,34.0,23.0,30.0,23.0,22.0,25.0,29.0,10.0,15.0,21.0,17.0,12.0,11.0,14.0,12.0,24.0,17.0,13.0,5.0,9.0,10.0,1.0,5.0,3.0,10.0,4.0,3.0,6.0,1.0,,,1.0,,,2.0 F81215,32.0,42.0,34.0,49.0,52.0,45.0,56.0,67.0,53.0,72.0,66.0,60.0,60.0,65.0,54.0,45.0,49.0,70.0,58.0,53.0,48.0,41.0,54.0,47.0,47.0,50.0,53.0,65.0,50.0,48.0,56.0,46.0,51.0,66.0,57.0,53.0,57.0,52.0,63.0,41.0,43.0,57.0,44.0,53.0,62.0,61.0,58.0,55.0,53.0,53.0,69.0,60.0,58.0,57.0,65.0,84.0,74.0,75.0,78.0,73.0,80.0,74.0,84.0,93.0,74.0,67.0,55.0,64.0,40.0,56.0,60.0,64.0,38.0,52.0,53.0,50.0,49.0,60.0,62.0,34.0,49.0,39.0,40.0,22.0,17.0,22.0,21.0,23.0,22.0,11.0,18.0,8.0,5.0,6.0,5.0,10.0 F81219,25.0,39.0,31.0,31.0,37.0,30.0,33.0,27.0,41.0,29.0,25.0,30.0,34.0,22.0,22.0,25.0,30.0,39.0,43.0,30.0,29.0,34.0,25.0,19.0,23.0,37.0,32.0,37.0,41.0,42.0,32.0,38.0,50.0,44.0,44.0,51.0,35.0,34.0,29.0,39.0,29.0,43.0,35.0,32.0,24.0,33.0,33.0,30.0,47.0,29.0,37.0,32.0,42.0,39.0,41.0,42.0,42.0,23.0,36.0,37.0,32.0,44.0,39.0,36.0,37.0,36.0,26.0,23.0,24.0,24.0,21.0,16.0,15.0,20.0,20.0,20.0,22.0,17.0,18.0,22.0,16.0,13.0,16.0,20.0,8.0,9.0,8.0,7.0,6.0,2.0,5.0,,,3.0,1.0,1.0 F81222,20.0,28.0,22.0,36.0,31.0,21.0,30.0,27.0,38.0,33.0,35.0,27.0,26.0,34.0,38.0,27.0,39.0,34.0,35.0,29.0,21.0,23.0,24.0,31.0,17.0,27.0,32.0,30.0,26.0,38.0,35.0,26.0,40.0,37.0,41.0,36.0,35.0,35.0,46.0,38.0,44.0,30.0,27.0,31.0,29.0,25.0,38.0,29.0,38.0,44.0,41.0,26.0,36.0,38.0,42.0,35.0,47.0,43.0,33.0,31.0,42.0,43.0,32.0,33.0,36.0,25.0,39.0,30.0,23.0,27.0,32.0,15.0,19.0,14.0,17.0,12.0,11.0,19.0,18.0,10.0,9.0,10.0,10.0,5.0,10.0,5.0,5.0,7.0,7.0,3.0,5.0,1.0,2.0,5.0,2.0,5.0 F81223,17.0,7.0,16.0,19.0,18.0,14.0,22.0,21.0,15.0,19.0,13.0,21.0,13.0,25.0,20.0,21.0,18.0,32.0,24.0,25.0,24.0,24.0,14.0,19.0,15.0,10.0,13.0,24.0,20.0,16.0,21.0,15.0,18.0,15.0,19.0,20.0,15.0,20.0,15.0,23.0,12.0,22.0,17.0,28.0,27.0,34.0,20.0,19.0,28.0,24.0,28.0,15.0,28.0,23.0,33.0,25.0,22.0,24.0,25.0,28.0,22.0,23.0,26.0,19.0,21.0,20.0,19.0,22.0,18.0,17.0,19.0,13.0,20.0,12.0,18.0,21.0,22.0,12.0,24.0,11.0,14.0,10.0,10.0,4.0,10.0,8.0,1.0,6.0,3.0,3.0,3.0,3.0,3.0,,1.0,1.0 F81613,40.0,55.0,53.0,41.0,34.0,47.0,55.0,60.0,58.0,46.0,54.0,52.0,57.0,56.0,79.0,60.0,47.0,64.0,57.0,50.0,45.0,50.0,46.0,55.0,53.0,54.0,50.0,56.0,56.0,32.0,63.0,50.0,66.0,50.0,55.0,48.0,39.0,62.0,59.0,61.0,46.0,53.0,53.0,47.0,60.0,46.0,52.0,55.0,47.0,58.0,58.0,48.0,67.0,63.0,63.0,54.0,52.0,60.0,69.0,54.0,58.0,62.0,52.0,56.0,58.0,51.0,55.0,50.0,27.0,44.0,36.0,21.0,52.0,41.0,25.0,33.0,46.0,32.0,32.0,25.0,28.0,21.0,20.0,11.0,10.0,13.0,21.0,8.0,6.0,8.0,11.0,5.0,5.0,2.0,2.0,1.0 F81618,26.0,14.0,29.0,31.0,22.0,24.0,24.0,19.0,22.0,27.0,33.0,24.0,27.0,34.0,32.0,23.0,29.0,30.0,29.0,21.0,25.0,22.0,20.0,23.0,17.0,21.0,22.0,17.0,29.0,18.0,36.0,30.0,30.0,32.0,16.0,24.0,24.0,32.0,27.0,35.0,32.0,32.0,29.0,42.0,36.0,23.0,33.0,23.0,25.0,35.0,31.0,27.0,21.0,25.0,21.0,20.0,30.0,24.0,30.0,41.0,34.0,34.0,27.0,28.0,24.0,27.0,18.0,17.0,14.0,10.0,22.0,13.0,19.0,11.0,16.0,20.0,22.0,20.0,19.0,18.0,11.0,21.0,21.0,9.0,7.0,6.0,7.0,8.0,8.0,5.0,2.0,3.0,3.0,1.0,2.0,3.0 F81623,10.0,9.0,10.0,9.0,5.0,14.0,13.0,20.0,15.0,12.0,8.0,20.0,17.0,11.0,17.0,18.0,15.0,15.0,18.0,19.0,17.0,24.0,17.0,11.0,13.0,19.0,17.0,15.0,8.0,9.0,17.0,15.0,20.0,20.0,19.0,12.0,26.0,14.0,27.0,23.0,24.0,14.0,17.0,17.0,16.0,25.0,26.0,23.0,25.0,20.0,18.0,16.0,13.0,22.0,25.0,12.0,21.0,24.0,12.0,23.0,18.0,11.0,15.0,10.0,12.0,11.0,16.0,15.0,15.0,12.0,8.0,12.0,8.0,3.0,8.0,6.0,10.0,10.0,15.0,6.0,3.0,9.0,5.0,2.0,6.0,8.0,4.0,,2.0,1.0,2.0,1.0,1.0,1.0,1.0, F81632,37.0,44.0,48.0,43.0,50.0,35.0,41.0,49.0,41.0,50.0,38.0,47.0,34.0,55.0,33.0,39.0,39.0,39.0,48.0,32.0,19.0,32.0,30.0,40.0,37.0,30.0,25.0,43.0,38.0,42.0,49.0,38.0,37.0,44.0,54.0,56.0,61.0,42.0,42.0,60.0,44.0,36.0,55.0,37.0,41.0,42.0,36.0,49.0,32.0,40.0,25.0,36.0,30.0,28.0,36.0,24.0,41.0,35.0,34.0,31.0,28.0,31.0,33.0,27.0,15.0,13.0,17.0,13.0,16.0,15.0,17.0,20.0,10.0,11.0,15.0,17.0,7.0,13.0,8.0,4.0,7.0,4.0,6.0,2.0,3.0,4.0,4.0,1.0,1.0,3.0,1.0,1.0,1.0,1.0,,1.0 F81635,14.0,15.0,14.0,20.0,21.0,13.0,27.0,24.0,19.0,16.0,19.0,14.0,19.0,19.0,15.0,14.0,18.0,19.0,10.0,6.0,10.0,8.0,10.0,11.0,13.0,6.0,23.0,15.0,14.0,20.0,24.0,22.0,24.0,25.0,27.0,29.0,17.0,22.0,14.0,26.0,22.0,22.0,22.0,27.0,28.0,21.0,16.0,15.0,26.0,15.0,14.0,9.0,14.0,18.0,14.0,17.0,18.0,16.0,11.0,18.0,17.0,14.0,16.0,18.0,18.0,10.0,14.0,18.0,12.0,9.0,7.0,10.0,10.0,11.0,9.0,4.0,11.0,7.0,9.0,11.0,6.0,5.0,1.0,4.0,1.0,4.0,5.0,,,2.0,,,,,,1.0 F81640,24.0,11.0,21.0,22.0,28.0,33.0,34.0,31.0,36.0,31.0,39.0,36.0,43.0,24.0,32.0,38.0,18.0,51.0,40.0,36.0,27.0,26.0,29.0,34.0,21.0,24.0,23.0,28.0,21.0,36.0,24.0,21.0,29.0,30.0,27.0,36.0,37.0,40.0,29.0,27.0,32.0,25.0,31.0,38.0,27.0,36.0,28.0,31.0,32.0,22.0,41.0,34.0,31.0,23.0,27.0,28.0,35.0,28.0,30.0,26.0,32.0,29.0,42.0,29.0,21.0,21.0,23.0,20.0,24.0,21.0,14.0,21.0,17.0,13.0,21.0,15.0,8.0,14.0,18.0,11.0,4.0,2.0,9.0,6.0,4.0,5.0,4.0,2.0,3.0,1.0,1.0,1.0,,,,1.0 F81641,43.0,64.0,43.0,75.0,65.0,54.0,34.0,51.0,49.0,47.0,50.0,51.0,43.0,46.0,57.0,38.0,43.0,37.0,55.0,49.0,37.0,44.0,45.0,34.0,40.0,58.0,43.0,50.0,50.0,69.0,70.0,64.0,78.0,69.0,73.0,85.0,80.0,84.0,85.0,78.0,72.0,81.0,59.0,78.0,76.0,66.0,62.0,58.0,46.0,62.0,40.0,48.0,68.0,56.0,48.0,39.0,35.0,39.0,42.0,46.0,41.0,41.0,33.0,34.0,38.0,33.0,31.0,23.0,23.0,23.0,29.0,22.0,23.0,16.0,21.0,17.0,24.0,19.0,17.0,15.0,19.0,9.0,9.0,12.0,6.0,11.0,7.0,6.0,6.0,1.0,3.0,7.0,6.0,,2.0,2.0 F81645,15.0,23.0,19.0,24.0,21.0,21.0,22.0,32.0,21.0,44.0,29.0,22.0,35.0,30.0,33.0,35.0,32.0,26.0,22.0,21.0,23.0,15.0,24.0,19.0,9.0,27.0,25.0,25.0,31.0,22.0,24.0,31.0,24.0,29.0,23.0,22.0,25.0,27.0,32.0,32.0,28.0,30.0,26.0,33.0,36.0,32.0,35.0,35.0,21.0,29.0,37.0,31.0,26.0,23.0,28.0,31.0,32.0,27.0,29.0,16.0,28.0,28.0,32.0,25.0,20.0,25.0,24.0,23.0,30.0,20.0,19.0,20.0,15.0,24.0,17.0,22.0,22.0,21.0,16.0,15.0,10.0,9.0,12.0,9.0,3.0,3.0,6.0,2.0,4.0,,3.0,,,2.0,1.0,1.0 F81649,21.0,22.0,23.0,15.0,17.0,22.0,29.0,31.0,25.0,26.0,39.0,24.0,33.0,32.0,27.0,34.0,39.0,21.0,27.0,24.0,22.0,19.0,18.0,26.0,26.0,21.0,32.0,27.0,30.0,23.0,35.0,29.0,26.0,26.0,35.0,28.0,32.0,29.0,30.0,31.0,45.0,38.0,30.0,24.0,43.0,28.0,26.0,26.0,33.0,30.0,37.0,13.0,29.0,36.0,37.0,27.0,31.0,35.0,32.0,19.0,28.0,26.0,21.0,30.0,28.0,23.0,23.0,34.0,24.0,32.0,15.0,34.0,26.0,26.0,23.0,18.0,20.0,20.0,16.0,20.0,20.0,8.0,12.0,5.0,6.0,7.0,8.0,8.0,2.0,6.0,2.0,2.0,2.0,2.0,,1.0 F81652,43.0,46.0,35.0,31.0,26.0,36.0,33.0,45.0,35.0,29.0,34.0,35.0,35.0,39.0,39.0,38.0,39.0,34.0,41.0,31.0,28.0,31.0,27.0,29.0,31.0,29.0,36.0,25.0,35.0,37.0,25.0,38.0,36.0,42.0,29.0,37.0,37.0,37.0,28.0,39.0,46.0,29.0,33.0,29.0,34.0,39.0,42.0,31.0,26.0,28.0,20.0,28.0,34.0,43.0,28.0,26.0,36.0,33.0,28.0,22.0,24.0,22.0,20.0,26.0,29.0,31.0,16.0,32.0,18.0,26.0,25.0,26.0,21.0,19.0,23.0,30.0,22.0,24.0,23.0,13.0,15.0,13.0,15.0,4.0,6.0,10.0,7.0,9.0,7.0,1.0,6.0,1.0,2.0,1.0,3.0,4.0 F81656,15.0,10.0,17.0,20.0,17.0,24.0,15.0,9.0,18.0,20.0,14.0,23.0,20.0,17.0,15.0,19.0,14.0,26.0,16.0,17.0,10.0,18.0,15.0,17.0,18.0,16.0,21.0,24.0,20.0,24.0,29.0,24.0,19.0,23.0,22.0,20.0,22.0,22.0,18.0,24.0,29.0,18.0,32.0,21.0,18.0,18.0,22.0,16.0,16.0,21.0,13.0,11.0,19.0,23.0,16.0,20.0,18.0,31.0,21.0,21.0,17.0,30.0,16.0,24.0,17.0,17.0,16.0,19.0,9.0,14.0,16.0,16.0,15.0,7.0,10.0,11.0,6.0,7.0,12.0,5.0,8.0,5.0,4.0,1.0,6.0,2.0,4.0,1.0,1.0,2.0,2.0,1.0,2.0,,1.0,1.0 F81665,20.0,31.0,31.0,33.0,30.0,34.0,38.0,40.0,33.0,27.0,47.0,29.0,35.0,35.0,41.0,43.0,50.0,35.0,25.0,28.0,27.0,24.0,20.0,31.0,29.0,20.0,26.0,24.0,22.0,38.0,28.0,38.0,52.0,36.0,35.0,39.0,27.0,34.0,42.0,37.0,45.0,32.0,51.0,48.0,46.0,43.0,37.0,49.0,42.0,42.0,43.0,30.0,44.0,41.0,52.0,30.0,37.0,27.0,35.0,31.0,40.0,28.0,20.0,26.0,25.0,25.0,17.0,18.0,25.0,22.0,22.0,20.0,13.0,12.0,10.0,21.0,21.0,14.0,14.0,15.0,11.0,10.0,7.0,11.0,2.0,8.0,4.0,8.0,3.0,3.0,1.0,3.0,3.0,,, F81666,21.0,17.0,15.0,24.0,15.0,25.0,15.0,23.0,20.0,24.0,31.0,23.0,34.0,22.0,27.0,26.0,29.0,22.0,29.0,26.0,22.0,22.0,17.0,16.0,22.0,24.0,9.0,14.0,22.0,19.0,27.0,20.0,26.0,33.0,20.0,24.0,33.0,26.0,31.0,26.0,30.0,30.0,27.0,25.0,28.0,28.0,17.0,22.0,15.0,18.0,18.0,23.0,17.0,28.0,25.0,28.0,18.0,30.0,25.0,23.0,17.0,28.0,25.0,15.0,18.0,21.0,16.0,24.0,14.0,15.0,15.0,13.0,16.0,9.0,11.0,8.0,9.0,17.0,14.0,11.0,11.0,9.0,7.0,5.0,2.0,3.0,2.0,3.0,2.0,1.0,1.0,1.0,1.0,,1.0,1.0 F81669,40.0,51.0,41.0,48.0,51.0,56.0,69.0,62.0,83.0,72.0,71.0,68.0,77.0,69.0,75.0,70.0,50.0,51.0,52.0,46.0,45.0,56.0,28.0,32.0,46.0,43.0,46.0,49.0,42.0,48.0,46.0,45.0,46.0,47.0,51.0,57.0,77.0,64.0,75.0,68.0,55.0,65.0,46.0,71.0,53.0,52.0,51.0,48.0,47.0,52.0,46.0,43.0,38.0,45.0,45.0,42.0,37.0,39.0,39.0,38.0,39.0,40.0,28.0,22.0,20.0,25.0,28.0,14.0,13.0,19.0,12.0,12.0,9.0,13.0,10.0,16.0,10.0,13.0,7.0,10.0,5.0,4.0,1.0,4.0,2.0,,,1.0,2.0,,4.0,1.0,,2.0,1.0,1.0 F81674,48.0,61.0,60.0,66.0,66.0,64.0,55.0,74.0,73.0,65.0,74.0,69.0,62.0,65.0,65.0,62.0,62.0,62.0,50.0,54.0,32.0,47.0,41.0,54.0,54.0,59.0,65.0,61.0,61.0,59.0,87.0,71.0,70.0,76.0,70.0,90.0,95.0,88.0,95.0,92.0,83.0,65.0,81.0,78.0,68.0,68.0,76.0,68.0,55.0,64.0,85.0,77.0,63.0,78.0,53.0,61.0,89.0,72.0,78.0,66.0,74.0,71.0,73.0,83.0,68.0,88.0,81.0,78.0,74.0,81.0,73.0,55.0,70.0,66.0,63.0,57.0,45.0,63.0,50.0,41.0,47.0,33.0,25.0,18.0,20.0,11.0,20.0,12.0,8.0,7.0,8.0,6.0,2.0,2.0,3.0,4.0 F81675,28.0,37.0,43.0,39.0,39.0,51.0,30.0,47.0,47.0,45.0,29.0,30.0,37.0,32.0,43.0,34.0,34.0,25.0,31.0,27.0,23.0,29.0,17.0,25.0,23.0,29.0,24.0,30.0,46.0,39.0,40.0,42.0,42.0,45.0,42.0,56.0,47.0,43.0,51.0,47.0,37.0,53.0,53.0,44.0,41.0,33.0,34.0,31.0,32.0,31.0,28.0,30.0,35.0,29.0,34.0,46.0,38.0,36.0,27.0,28.0,36.0,33.0,34.0,31.0,25.0,33.0,30.0,28.0,20.0,26.0,13.0,17.0,16.0,28.0,14.0,20.0,16.0,18.0,16.0,13.0,17.0,15.0,8.0,5.0,4.0,7.0,5.0,2.0,6.0,1.0,2.0,3.0,2.0,2.0,,2.0 F81683,38.0,45.0,50.0,63.0,50.0,88.0,63.0,61.0,63.0,75.0,75.0,66.0,75.0,56.0,61.0,71.0,77.0,81.0,69.0,61.0,72.0,67.0,61.0,48.0,53.0,85.0,69.0,87.0,61.0,72.0,61.0,78.0,78.0,88.0,64.0,84.0,88.0,88.0,66.0,78.0,62.0,75.0,80.0,58.0,66.0,72.0,73.0,69.0,72.0,61.0,72.0,75.0,60.0,74.0,66.0,77.0,86.0,87.0,84.0,74.0,64.0,63.0,67.0,68.0,62.0,46.0,39.0,38.0,39.0,33.0,28.0,21.0,30.0,23.0,26.0,22.0,35.0,40.0,26.0,16.0,22.0,15.0,24.0,12.0,16.0,15.0,9.0,9.0,9.0,8.0,5.0,7.0,3.0,3.0,1.0,6.0 F81690,24.0,35.0,41.0,27.0,34.0,39.0,29.0,35.0,39.0,24.0,30.0,30.0,25.0,28.0,29.0,23.0,29.0,36.0,28.0,40.0,25.0,21.0,24.0,21.0,23.0,36.0,36.0,37.0,27.0,49.0,36.0,48.0,42.0,47.0,41.0,39.0,52.0,31.0,37.0,34.0,38.0,28.0,31.0,30.0,37.0,29.0,28.0,31.0,28.0,22.0,29.0,34.0,29.0,35.0,30.0,38.0,33.0,40.0,46.0,42.0,41.0,30.0,54.0,40.0,34.0,44.0,34.0,43.0,27.0,34.0,25.0,32.0,30.0,28.0,23.0,26.0,35.0,27.0,39.0,19.0,20.0,16.0,21.0,12.0,11.0,10.0,6.0,12.0,7.0,4.0,3.0,5.0,1.0,1.0,, F81696,14.0,10.0,10.0,11.0,16.0,14.0,14.0,12.0,16.0,18.0,16.0,19.0,8.0,16.0,14.0,16.0,23.0,11.0,7.0,9.0,8.0,13.0,8.0,3.0,12.0,6.0,12.0,17.0,12.0,14.0,12.0,21.0,12.0,18.0,18.0,22.0,25.0,24.0,17.0,19.0,18.0,22.0,20.0,16.0,19.0,24.0,20.0,14.0,14.0,19.0,14.0,20.0,20.0,21.0,22.0,13.0,19.0,14.0,16.0,18.0,34.0,14.0,21.0,22.0,26.0,15.0,21.0,20.0,15.0,15.0,16.0,18.0,23.0,14.0,9.0,8.0,21.0,14.0,9.0,8.0,9.0,11.0,10.0,10.0,4.0,8.0,5.0,5.0,3.0,3.0,2.0,2.0,1.0,,2.0,1.0 F81697,13.0,12.0,9.0,10.0,7.0,17.0,12.0,14.0,16.0,15.0,22.0,17.0,15.0,19.0,21.0,15.0,22.0,18.0,17.0,20.0,21.0,12.0,23.0,17.0,17.0,15.0,20.0,28.0,19.0,16.0,17.0,26.0,25.0,29.0,18.0,21.0,19.0,17.0,17.0,28.0,27.0,18.0,23.0,13.0,25.0,18.0,14.0,15.0,18.0,18.0,24.0,28.0,18.0,20.0,22.0,22.0,29.0,16.0,14.0,27.0,27.0,17.0,22.0,13.0,19.0,21.0,20.0,16.0,17.0,14.0,9.0,9.0,10.0,16.0,19.0,17.0,14.0,18.0,12.0,14.0,17.0,10.0,11.0,12.0,10.0,8.0,7.0,7.0,4.0,2.0,6.0,,3.0,1.0,,1.0 F81700,14.0,17.0,13.0,21.0,23.0,13.0,29.0,16.0,27.0,22.0,23.0,27.0,25.0,26.0,20.0,10.0,29.0,23.0,23.0,26.0,21.0,28.0,15.0,19.0,22.0,13.0,28.0,21.0,25.0,20.0,32.0,28.0,23.0,25.0,24.0,25.0,36.0,33.0,30.0,24.0,37.0,23.0,32.0,21.0,23.0,21.0,32.0,21.0,25.0,21.0,24.0,28.0,23.0,22.0,29.0,19.0,25.0,20.0,42.0,27.0,26.0,40.0,24.0,21.0,25.0,33.0,19.0,29.0,24.0,24.0,27.0,22.0,21.0,14.0,17.0,34.0,24.0,12.0,20.0,16.0,9.0,5.0,13.0,9.0,4.0,5.0,8.0,6.0,5.0,1.0,4.0,4.0,4.0,1.0,1.0,1.0 F81704,16.0,33.0,21.0,26.0,26.0,24.0,15.0,28.0,17.0,26.0,22.0,29.0,19.0,32.0,26.0,22.0,17.0,38.0,18.0,14.0,20.0,20.0,22.0,23.0,22.0,23.0,24.0,32.0,24.0,26.0,29.0,36.0,29.0,29.0,37.0,28.0,39.0,28.0,26.0,31.0,29.0,29.0,24.0,32.0,31.0,22.0,32.0,18.0,24.0,24.0,30.0,32.0,28.0,33.0,29.0,25.0,35.0,22.0,32.0,29.0,32.0,35.0,27.0,29.0,20.0,23.0,18.0,29.0,22.0,11.0,13.0,15.0,14.0,14.0,15.0,13.0,13.0,23.0,12.0,8.0,4.0,9.0,7.0,4.0,2.0,5.0,4.0,3.0,1.0,2.0,,,,,1.0, F81707,50.0,49.0,37.0,57.0,50.0,50.0,54.0,51.0,52.0,43.0,50.0,46.0,43.0,36.0,51.0,47.0,43.0,34.0,57.0,36.0,23.0,29.0,21.0,29.0,26.0,34.0,38.0,25.0,34.0,32.0,47.0,49.0,58.0,53.0,47.0,53.0,61.0,56.0,48.0,70.0,56.0,47.0,42.0,43.0,37.0,38.0,37.0,30.0,29.0,30.0,37.0,29.0,28.0,31.0,37.0,31.0,22.0,24.0,35.0,26.0,21.0,16.0,26.0,20.0,18.0,16.0,13.0,9.0,17.0,8.0,11.0,10.0,14.0,15.0,5.0,7.0,15.0,13.0,6.0,6.0,10.0,4.0,2.0,3.0,2.0,2.0,2.0,2.0,2.0,,1.0,2.0,1.0,,,2.0 F81708,79.0,81.0,90.0,92.0,94.0,97.0,82.0,95.0,90.0,85.0,93.0,69.0,80.0,98.0,82.0,69.0,91.0,77.0,89.0,68.0,77.0,71.0,56.0,69.0,70.0,67.0,65.0,91.0,86.0,68.0,83.0,91.0,104.0,90.0,99.0,97.0,120.0,94.0,98.0,99.0,86.0,84.0,81.0,79.0,92.0,90.0,80.0,67.0,84.0,73.0,67.0,84.0,85.0,64.0,63.0,74.0,74.0,61.0,73.0,56.0,61.0,53.0,58.0,46.0,57.0,45.0,40.0,41.0,44.0,37.0,36.0,36.0,35.0,29.0,36.0,27.0,32.0,31.0,29.0,21.0,25.0,13.0,12.0,7.0,12.0,10.0,11.0,6.0,8.0,4.0,6.0,3.0,2.0,,2.0,1.0 F81711,23.0,30.0,33.0,25.0,16.0,28.0,28.0,29.0,25.0,29.0,25.0,14.0,18.0,23.0,15.0,23.0,21.0,23.0,25.0,24.0,21.0,11.0,18.0,16.0,19.0,24.0,23.0,33.0,36.0,34.0,35.0,33.0,36.0,38.0,50.0,35.0,35.0,39.0,40.0,35.0,36.0,45.0,34.0,26.0,32.0,19.0,30.0,21.0,16.0,14.0,13.0,27.0,17.0,18.0,19.0,17.0,14.0,33.0,21.0,14.0,17.0,18.0,17.0,13.0,18.0,12.0,11.0,10.0,11.0,7.0,7.0,9.0,5.0,7.0,4.0,8.0,5.0,8.0,11.0,6.0,9.0,2.0,4.0,1.0,5.0,5.0,6.0,2.0,4.0,2.0,1.0,,,,, F81713,7.0,6.0,6.0,10.0,12.0,12.0,13.0,9.0,16.0,13.0,10.0,8.0,15.0,13.0,22.0,17.0,19.0,23.0,26.0,15.0,16.0,22.0,15.0,17.0,24.0,16.0,12.0,12.0,15.0,10.0,13.0,14.0,11.0,20.0,12.0,12.0,13.0,14.0,17.0,14.0,12.0,19.0,15.0,20.0,14.0,17.0,14.0,23.0,12.0,21.0,13.0,27.0,19.0,23.0,23.0,24.0,27.0,30.0,23.0,23.0,27.0,17.0,22.0,13.0,9.0,18.0,18.0,16.0,11.0,15.0,9.0,14.0,11.0,4.0,10.0,11.0,8.0,17.0,12.0,8.0,6.0,9.0,10.0,5.0,7.0,2.0,4.0,2.0,3.0,3.0,1.0,2.0,2.0,,,2.0 F81729,16.0,17.0,12.0,16.0,27.0,28.0,32.0,23.0,23.0,30.0,29.0,18.0,20.0,32.0,26.0,26.0,30.0,31.0,15.0,32.0,20.0,27.0,25.0,17.0,17.0,17.0,24.0,18.0,22.0,19.0,28.0,22.0,28.0,13.0,27.0,26.0,33.0,25.0,23.0,33.0,22.0,22.0,27.0,35.0,30.0,25.0,25.0,22.0,22.0,31.0,20.0,21.0,15.0,35.0,20.0,30.0,20.0,27.0,26.0,19.0,23.0,18.0,17.0,18.0,19.0,22.0,14.0,12.0,20.0,15.0,16.0,14.0,9.0,9.0,13.0,9.0,8.0,8.0,12.0,7.0,7.0,4.0,6.0,2.0,3.0,3.0,3.0,2.0,1.0,1.0,1.0,,2.0,,,1.0 F81730,24.0,21.0,28.0,36.0,28.0,47.0,34.0,42.0,44.0,41.0,37.0,39.0,45.0,40.0,40.0,47.0,48.0,45.0,47.0,31.0,38.0,30.0,29.0,38.0,31.0,39.0,37.0,34.0,31.0,28.0,32.0,27.0,26.0,30.0,32.0,36.0,24.0,44.0,33.0,38.0,31.0,50.0,30.0,37.0,37.0,27.0,42.0,35.0,38.0,39.0,48.0,54.0,49.0,51.0,71.0,65.0,46.0,52.0,50.0,39.0,48.0,56.0,57.0,53.0,37.0,45.0,51.0,39.0,43.0,34.0,40.0,35.0,33.0,49.0,42.0,37.0,44.0,46.0,43.0,25.0,29.0,26.0,38.0,14.0,11.0,15.0,20.0,16.0,7.0,4.0,6.0,6.0,7.0,3.0,9.0,7.0 F81732,26.0,27.0,32.0,44.0,44.0,32.0,42.0,44.0,50.0,45.0,43.0,52.0,48.0,44.0,55.0,45.0,52.0,37.0,38.0,25.0,36.0,34.0,35.0,23.0,27.0,35.0,35.0,41.0,32.0,29.0,43.0,32.0,50.0,48.0,45.0,52.0,43.0,42.0,55.0,62.0,58.0,45.0,44.0,55.0,39.0,51.0,51.0,51.0,40.0,45.0,38.0,58.0,44.0,48.0,50.0,48.0,53.0,54.0,43.0,48.0,37.0,40.0,42.0,49.0,42.0,50.0,43.0,44.0,22.0,27.0,19.0,34.0,43.0,29.0,28.0,39.0,33.0,37.0,40.0,26.0,28.0,22.0,20.0,16.0,12.0,24.0,11.0,15.0,8.0,7.0,7.0,5.0,3.0,3.0,2.0,4.0 F81737,22.0,21.0,15.0,11.0,22.0,19.0,14.0,19.0,22.0,21.0,14.0,24.0,19.0,27.0,13.0,16.0,29.0,25.0,16.0,17.0,16.0,22.0,10.0,14.0,13.0,13.0,18.0,21.0,22.0,21.0,30.0,22.0,17.0,26.0,25.0,33.0,19.0,28.0,15.0,19.0,20.0,20.0,29.0,23.0,26.0,26.0,22.0,15.0,18.0,21.0,16.0,21.0,27.0,19.0,24.0,24.0,16.0,24.0,16.0,17.0,18.0,16.0,12.0,17.0,22.0,8.0,19.0,14.0,13.0,10.0,11.0,12.0,6.0,4.0,4.0,5.0,7.0,12.0,7.0,3.0,7.0,7.0,4.0,4.0,5.0,2.0,3.0,5.0,,3.0,,1.0,,,,2.0 F81739,32.0,27.0,35.0,21.0,25.0,34.0,52.0,33.0,34.0,39.0,52.0,30.0,29.0,46.0,45.0,38.0,33.0,29.0,40.0,35.0,32.0,39.0,23.0,29.0,26.0,19.0,36.0,32.0,40.0,41.0,31.0,40.0,34.0,40.0,38.0,42.0,37.0,46.0,34.0,35.0,52.0,43.0,25.0,40.0,33.0,22.0,33.0,33.0,36.0,32.0,29.0,40.0,42.0,48.0,38.0,42.0,51.0,41.0,57.0,58.0,44.0,47.0,53.0,51.0,45.0,52.0,31.0,36.0,38.0,39.0,31.0,35.0,41.0,40.0,41.0,41.0,38.0,36.0,51.0,45.0,35.0,30.0,27.0,26.0,14.0,15.0,14.0,12.0,11.0,11.0,7.0,5.0,2.0,,1.0,6.0 F81740,24.0,18.0,22.0,30.0,20.0,33.0,29.0,23.0,19.0,33.0,25.0,31.0,24.0,45.0,26.0,35.0,29.0,27.0,32.0,30.0,29.0,30.0,36.0,29.0,37.0,33.0,47.0,44.0,42.0,21.0,38.0,39.0,35.0,27.0,39.0,39.0,27.0,38.0,31.0,35.0,42.0,32.0,36.0,43.0,40.0,49.0,39.0,24.0,36.0,41.0,42.0,43.0,38.0,56.0,53.0,46.0,40.0,56.0,54.0,45.0,51.0,38.0,47.0,51.0,43.0,35.0,41.0,43.0,41.0,27.0,37.0,38.0,35.0,40.0,44.0,45.0,53.0,59.0,62.0,33.0,28.0,28.0,41.0,20.0,20.0,20.0,19.0,29.0,12.0,7.0,7.0,8.0,5.0,5.0,2.0,4.0 F81744,8.0,14.0,9.0,6.0,6.0,9.0,13.0,12.0,14.0,18.0,14.0,12.0,20.0,19.0,16.0,25.0,15.0,15.0,24.0,19.0,17.0,9.0,14.0,14.0,9.0,20.0,12.0,9.0,18.0,14.0,10.0,10.0,17.0,20.0,11.0,11.0,12.0,17.0,22.0,10.0,19.0,22.0,17.0,12.0,22.0,17.0,12.0,19.0,16.0,18.0,14.0,22.0,16.0,27.0,27.0,15.0,23.0,17.0,13.0,15.0,25.0,23.0,14.0,13.0,27.0,21.0,16.0,18.0,14.0,18.0,17.0,11.0,23.0,13.0,13.0,18.0,17.0,10.0,19.0,6.0,11.0,10.0,9.0,10.0,6.0,8.0,6.0,8.0,4.0,7.0,2.0,1.0,2.0,2.0,1.0,3.0 F81751,15.0,17.0,25.0,38.0,26.0,26.0,27.0,29.0,27.0,31.0,44.0,30.0,23.0,37.0,35.0,23.0,35.0,19.0,17.0,20.0,28.0,23.0,25.0,20.0,28.0,31.0,25.0,14.0,17.0,24.0,15.0,27.0,23.0,28.0,25.0,29.0,28.0,25.0,30.0,30.0,27.0,29.0,31.0,22.0,39.0,37.0,23.0,29.0,24.0,34.0,25.0,33.0,27.0,42.0,28.0,29.0,29.0,29.0,31.0,45.0,31.0,34.0,22.0,30.0,31.0,31.0,29.0,29.0,24.0,23.0,20.0,15.0,20.0,20.0,22.0,26.0,17.0,23.0,21.0,18.0,15.0,13.0,13.0,8.0,10.0,11.0,4.0,6.0,4.0,2.0,2.0,,2.0,,1.0,1.0 Y00033,43.0,49.0,50.0,58.0,59.0,65.0,46.0,56.0,57.0,53.0,63.0,52.0,56.0,67.0,60.0,51.0,70.0,55.0,50.0,41.0,37.0,41.0,43.0,26.0,35.0,36.0,41.0,36.0,48.0,40.0,45.0,51.0,60.0,70.0,50.0,72.0,67.0,58.0,66.0,66.0,69.0,85.0,76.0,61.0,54.0,56.0,65.0,49.0,46.0,56.0,46.0,49.0,44.0,59.0,48.0,40.0,39.0,35.0,34.0,29.0,29.0,26.0,34.0,21.0,36.0,20.0,17.0,21.0,13.0,10.0,14.0,10.0,11.0,13.0,5.0,8.0,8.0,8.0,7.0,2.0,6.0,7.0,3.0,2.0,,,,1.0,4.0,2.0,1.0,1.0,,,, Y00293,35.0,51.0,38.0,55.0,47.0,50.0,60.0,43.0,46.0,62.0,46.0,56.0,54.0,48.0,63.0,59.0,60.0,49.0,50.0,63.0,39.0,38.0,48.0,61.0,41.0,43.0,52.0,47.0,47.0,48.0,41.0,52.0,55.0,43.0,52.0,56.0,52.0,60.0,52.0,44.0,60.0,47.0,40.0,54.0,62.0,53.0,48.0,55.0,49.0,49.0,47.0,83.0,63.0,73.0,65.0,76.0,85.0,79.0,86.0,49.0,80.0,61.0,75.0,74.0,62.0,50.0,61.0,56.0,56.0,73.0,42.0,49.0,59.0,50.0,57.0,45.0,52.0,58.0,46.0,47.0,39.0,36.0,41.0,28.0,24.0,16.0,17.0,15.0,14.0,8.0,8.0,3.0,4.0,4.0,3.0,2.0 Y00469,54.0,54.0,76.0,67.0,73.0,77.0,75.0,76.0,70.0,91.0,72.0,79.0,77.0,82.0,75.0,77.0,74.0,88.0,93.0,74.0,74.0,57.0,64.0,72.0,61.0,66.0,68.0,83.0,58.0,88.0,84.0,72.0,66.0,86.0,81.0,82.0,101.0,98.0,111.0,105.0,82.0,80.0,77.0,70.0,73.0,77.0,72.0,68.0,71.0,76.0,59.0,60.0,74.0,60.0,63.0,72.0,76.0,71.0,68.0,83.0,78.0,62.0,74.0,60.0,80.0,60.0,57.0,63.0,69.0,54.0,53.0,43.0,38.0,58.0,46.0,49.0,38.0,39.0,53.0,44.0,31.0,24.0,23.0,25.0,17.0,16.0,12.0,17.0,9.0,7.0,9.0,2.0,2.0,1.0,5.0,4.0 Y00758,11.0,15.0,12.0,15.0,16.0,16.0,21.0,16.0,23.0,38.0,22.0,21.0,17.0,19.0,22.0,21.0,16.0,22.0,19.0,20.0,15.0,13.0,16.0,19.0,18.0,14.0,17.0,11.0,10.0,12.0,26.0,17.0,17.0,19.0,21.0,21.0,25.0,17.0,28.0,20.0,20.0,22.0,21.0,20.0,23.0,23.0,20.0,19.0,23.0,22.0,16.0,15.0,14.0,20.0,19.0,11.0,18.0,24.0,19.0,13.0,16.0,12.0,11.0,18.0,10.0,15.0,10.0,6.0,8.0,13.0,3.0,2.0,7.0,7.0,10.0,8.0,5.0,3.0,5.0,6.0,2.0,6.0,6.0,8.0,2.0,3.0,2.0,1.0,3.0,,,,,,,2.0 Y00999,73.0,68.0,88.0,74.0,112.0,95.0,100.0,103.0,98.0,108.0,78.0,98.0,107.0,107.0,107.0,83.0,108.0,84.0,86.0,68.0,74.0,62.0,69.0,53.0,45.0,61.0,66.0,66.0,73.0,88.0,70.0,84.0,83.0,93.0,81.0,91.0,127.0,108.0,116.0,117.0,117.0,102.0,116.0,134.0,112.0,98.0,76.0,78.0,68.0,72.0,82.0,59.0,76.0,62.0,61.0,58.0,45.0,67.0,67.0,60.0,52.0,53.0,55.0,48.0,53.0,35.0,54.0,38.0,43.0,31.0,24.0,17.0,23.0,19.0,24.0,16.0,16.0,24.0,20.0,7.0,11.0,8.0,12.0,10.0,1.0,10.0,5.0,4.0,3.0,2.0,6.0,5.0,1.0,1.0,,2.0 Y02177,40.0,37.0,40.0,43.0,42.0,39.0,45.0,55.0,52.0,54.0,50.0,57.0,59.0,45.0,55.0,48.0,35.0,37.0,52.0,39.0,31.0,32.0,43.0,42.0,31.0,36.0,55.0,35.0,38.0,61.0,58.0,65.0,61.0,61.0,69.0,70.0,57.0,56.0,55.0,54.0,58.0,77.0,59.0,74.0,68.0,49.0,53.0,45.0,43.0,48.0,36.0,45.0,45.0,48.0,45.0,35.0,53.0,52.0,30.0,39.0,42.0,48.0,46.0,34.0,19.0,38.0,20.0,18.0,21.0,18.0,19.0,15.0,13.0,8.0,19.0,17.0,17.0,20.0,14.0,12.0,9.0,8.0,2.0,3.0,5.0,3.0,5.0,4.0,9.0,1.0,1.0,3.0,,1.0,,1.0 Y02611,146.0,120.0,145.0,143.0,152.0,140.0,152.0,147.0,139.0,138.0,147.0,134.0,146.0,121.0,131.0,123.0,105.0,91.0,80.0,45.0,65.0,46.0,56.0,50.0,78.0,63.0,71.0,84.0,97.0,81.0,99.0,129.0,133.0,124.0,141.0,151.0,171.0,132.0,177.0,173.0,154.0,168.0,172.0,179.0,149.0,144.0,148.0,155.0,122.0,124.0,106.0,106.0,100.0,82.0,88.0,79.0,84.0,62.0,51.0,57.0,52.0,52.0,49.0,50.0,44.0,43.0,24.0,25.0,52.0,36.0,32.0,23.0,33.0,17.0,25.0,30.0,18.0,23.0,20.0,16.0,14.0,13.0,6.0,8.0,7.0,8.0,8.0,7.0,7.0,6.0,3.0,5.0,6.0,,2.0, Y02707,30.0,29.0,28.0,43.0,40.0,51.0,42.0,49.0,43.0,47.0,40.0,71.0,60.0,50.0,62.0,65.0,66.0,67.0,55.0,39.0,38.0,40.0,42.0,44.0,38.0,34.0,41.0,48.0,41.0,27.0,44.0,46.0,48.0,38.0,40.0,38.0,44.0,51.0,41.0,58.0,37.0,63.0,58.0,42.0,48.0,67.0,44.0,41.0,66.0,36.0,42.0,42.0,56.0,35.0,42.0,47.0,47.0,38.0,51.0,32.0,37.0,42.0,37.0,47.0,36.0,46.0,28.0,18.0,26.0,26.0,20.0,14.0,16.0,22.0,22.0,13.0,18.0,17.0,18.0,11.0,11.0,13.0,3.0,5.0,4.0,7.0,4.0,2.0,7.0,,3.0,1.0,3.0,,,3.0 Y02807,85.0,100.0,88.0,121.0,114.0,102.0,119.0,111.0,120.0,134.0,125.0,101.0,112.0,100.0,109.0,93.0,90.0,83.0,73.0,53.0,67.0,63.0,51.0,63.0,55.0,79.0,78.0,73.0,86.0,106.0,102.0,110.0,131.0,132.0,143.0,152.0,182.0,179.0,187.0,167.0,162.0,168.0,120.0,137.0,129.0,117.0,115.0,91.0,92.0,82.0,85.0,78.0,75.0,68.0,74.0,65.0,77.0,62.0,51.0,51.0,47.0,35.0,44.0,33.0,29.0,40.0,24.0,19.0,21.0,14.0,14.0,12.0,15.0,9.0,6.0,9.0,7.0,6.0,4.0,5.0,5.0,4.0,3.0,2.0,3.0,2.0,2.0,3.0,1.0,1.0,,,2.0,1.0,1.0, Y03052,66.0,98.0,81.0,99.0,99.0,120.0,125.0,117.0,117.0,104.0,87.0,109.0,102.0,94.0,101.0,86.0,90.0,92.0,71.0,71.0,70.0,87.0,80.0,75.0,68.0,86.0,79.0,79.0,84.0,98.0,103.0,101.0,116.0,121.0,136.0,138.0,118.0,131.0,113.0,124.0,112.0,117.0,106.0,93.0,125.0,104.0,95.0,86.0,75.0,98.0,99.0,88.0,88.0,87.0,94.0,99.0,109.0,83.0,99.0,96.0,102.0,100.0,80.0,62.0,71.0,93.0,62.0,57.0,62.0,48.0,37.0,54.0,47.0,50.0,43.0,41.0,34.0,57.0,31.0,35.0,28.0,34.0,36.0,16.0,11.0,14.0,21.0,12.0,11.0,8.0,5.0,7.0,3.0,8.0,1.0,2.0 Y05023,35.0,37.0,41.0,38.0,41.0,45.0,39.0,37.0,45.0,25.0,25.0,31.0,24.0,38.0,31.0,23.0,26.0,14.0,30.0,18.0,22.0,17.0,12.0,22.0,22.0,19.0,18.0,25.0,33.0,36.0,44.0,50.0,40.0,52.0,36.0,49.0,49.0,58.0,38.0,40.0,35.0,32.0,31.0,31.0,35.0,33.0,28.0,25.0,23.0,18.0,29.0,26.0,23.0,32.0,29.0,33.0,23.0,36.0,34.0,21.0,29.0,25.0,29.0,35.0,22.0,24.0,26.0,33.0,28.0,25.0,25.0,23.0,19.0,23.0,24.0,18.0,16.0,18.0,23.0,17.0,11.0,11.0,8.0,10.0,6.0,6.0,5.0,11.0,1.0,3.0,3.0,4.0,1.0,,1.0,3.0 Y06389,2.0,,,,3.0,,2.0,,2.0,,3.0,6.0,2.0,1.0,1.0,1.0,1.0,1.0,17.0,20.0,36.0,39.0,45.0,74.0,72.0,63.0,74.0,55.0,50.0,37.0,31.0,36.0,27.0,18.0,23.0,19.0,25.0,17.0,13.0,13.0,11.0,7.0,5.0,5.0,4.0,3.0,5.0,2.0,3.0,5.0,8.0,2.0,3.0,1.0,3.0,4.0,5.0,,2.0,,1.0,1.0,,2.0,,,,,,1.0,,,1.0,1.0,1.0,,1.0,,1.0,,1.0,1.0,,2.0,,1.0,1.0,,,1.0,,,,1.0,,1.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 E81002,39.0,60.0,49.0,63.0,60.0,60.0,78.0,71.0,56.0,74.0,71.0,65.0,77.0,56.0,62.0,74.0,69.0,50.0,53.0,53.0,42.0,40.0,51.0,51.0,59.0,48.0,48.0,40.0,57.0,47.0,66.0,54.0,59.0,53.0,74.0,67.0,72.0,83.0,79.0,85.0,69.0,72.0,71.0,77.0,63.0,64.0,67.0,60.0,57.0,54.0,54.0,61.0,65.0,83.0,67.0,56.0,74.0,58.0,69.0,71.0,70.0,81.0,71.0,60.0,66.0,48.0,53.0,48.0,50.0,47.0,52.0,32.0,51.0,32.0,42.0,32.0,21.0,45.0,37.0,32.0,24.0,18.0,18.0,12.0,19.0,18.0,16.0,10.0,9.0,6.0,6.0,5.0,4.0,3.0,,4.0 E81003,116.0,146.0,149.0,131.0,135.0,144.0,143.0,138.0,145.0,132.0,124.0,122.0,99.0,135.0,143.0,111.0,125.0,101.0,100.0,77.0,87.0,81.0,85.0,75.0,77.0,74.0,81.0,101.0,116.0,129.0,132.0,141.0,144.0,176.0,180.0,152.0,168.0,167.0,173.0,172.0,177.0,164.0,163.0,148.0,159.0,143.0,136.0,125.0,148.0,123.0,111.0,133.0,117.0,141.0,117.0,113.0,124.0,115.0,122.0,110.0,151.0,125.0,130.0,114.0,114.0,94.0,87.0,105.0,110.0,77.0,72.0,88.0,80.0,93.0,76.0,88.0,101.0,93.0,90.0,60.0,59.0,69.0,53.0,47.0,33.0,42.0,27.0,30.0,30.0,24.0,15.0,9.0,11.0,4.0,7.0,10.0 E81004,73.0,66.0,78.0,71.0,84.0,90.0,80.0,57.0,75.0,81.0,78.0,68.0,73.0,89.0,72.0,71.0,67.0,78.0,65.0,65.0,50.0,70.0,53.0,35.0,48.0,64.0,48.0,70.0,60.0,58.0,61.0,71.0,103.0,110.0,105.0,110.0,111.0,98.0,90.0,90.0,91.0,91.0,106.0,88.0,85.0,87.0,80.0,80.0,76.0,76.0,63.0,63.0,73.0,72.0,79.0,69.0,73.0,66.0,74.0,64.0,65.0,75.0,78.0,66.0,52.0,68.0,62.0,76.0,67.0,55.0,49.0,48.0,54.0,33.0,50.0,37.0,31.0,54.0,38.0,37.0,39.0,40.0,31.0,34.0,31.0,15.0,16.0,17.0,10.0,11.0,12.0,6.0,6.0,2.0,2.0,4.0 E81005,64.0,88.0,53.0,64.0,51.0,67.0,72.0,79.0,77.0,64.0,76.0,80.0,87.0,73.0,92.0,82.0,90.0,82.0,84.0,82.0,78.0,80.0,84.0,111.0,84.0,101.0,91.0,105.0,116.0,92.0,93.0,79.0,85.0,93.0,85.0,73.0,101.0,94.0,84.0,87.0,80.0,79.0,104.0,88.0,93.0,86.0,91.0,91.0,96.0,85.0,83.0,68.0,76.0,74.0,74.0,76.0,72.0,62.0,61.0,62.0,67.0,61.0,54.0,46.0,38.0,44.0,38.0,47.0,34.0,37.0,38.0,31.0,40.0,29.0,32.0,15.0,27.0,22.0,27.0,19.0,23.0,21.0,21.0,16.0,10.0,15.0,7.0,13.0,10.0,8.0,12.0,7.0,6.0,3.0,1.0,2.0 E81006,51.0,45.0,59.0,53.0,41.0,74.0,67.0,57.0,60.0,75.0,69.0,55.0,61.0,74.0,68.0,77.0,65.0,57.0,60.0,47.0,52.0,49.0,68.0,61.0,58.0,58.0,65.0,67.0,74.0,64.0,57.0,71.0,84.0,64.0,70.0,65.0,64.0,71.0,75.0,64.0,78.0,78.0,74.0,70.0,81.0,69.0,70.0,51.0,49.0,46.0,52.0,52.0,52.0,66.0,69.0,65.0,69.0,61.0,66.0,62.0,58.0,59.0,75.0,57.0,68.0,41.0,56.0,38.0,32.0,38.0,36.0,37.0,30.0,27.0,33.0,44.0,46.0,38.0,36.0,18.0,27.0,27.0,19.0,17.0,13.0,16.0,17.0,12.0,12.0,8.0,10.0,6.0,8.0,6.0,1.0,5.0 E81007,20.0,31.0,24.0,24.0,25.0,25.0,22.0,42.0,45.0,35.0,30.0,31.0,44.0,38.0,44.0,38.0,36.0,48.0,47.0,28.0,39.0,30.0,36.0,42.0,38.0,33.0,26.0,27.0,23.0,41.0,28.0,34.0,31.0,29.0,25.0,39.0,31.0,36.0,31.0,32.0,34.0,36.0,36.0,36.0,48.0,53.0,33.0,49.0,33.0,39.0,59.0,59.0,46.0,59.0,53.0,60.0,64.0,51.0,71.0,67.0,48.0,50.0,57.0,48.0,43.0,56.0,28.0,40.0,53.0,30.0,38.0,46.0,29.0,37.0,26.0,34.0,34.0,44.0,48.0,31.0,22.0,25.0,19.0,13.0,13.0,17.0,13.0,12.0,5.0,7.0,4.0,6.0,2.0,4.0,6.0,4.0 E81008,64.0,65.0,70.0,49.0,71.0,82.0,72.0,82.0,79.0,80.0,85.0,79.0,67.0,85.0,82.0,93.0,106.0,84.0,101.0,94.0,100.0,93.0,95.0,75.0,75.0,74.0,88.0,84.0,108.0,63.0,95.0,70.0,82.0,95.0,92.0,83.0,106.0,106.0,81.0,83.0,79.0,88.0,101.0,72.0,86.0,97.0,88.0,87.0,102.0,78.0,93.0,91.0,68.0,88.0,102.0,70.0,78.0,63.0,86.0,81.0,83.0,78.0,88.0,67.0,60.0,54.0,62.0,46.0,40.0,57.0,41.0,42.0,46.0,29.0,36.0,38.0,32.0,30.0,42.0,27.0,29.0,16.0,18.0,23.0,17.0,12.0,16.0,14.0,8.0,10.0,8.0,5.0,2.0,4.0,4.0,6.0 E81009,56.0,54.0,51.0,71.0,59.0,57.0,69.0,65.0,68.0,84.0,83.0,78.0,79.0,75.0,67.0,64.0,59.0,68.0,74.0,60.0,51.0,73.0,49.0,46.0,54.0,68.0,56.0,92.0,77.0,67.0,67.0,88.0,69.0,93.0,100.0,83.0,89.0,99.0,90.0,102.0,79.0,70.0,86.0,90.0,106.0,90.0,84.0,55.0,94.0,74.0,89.0,74.0,87.0,67.0,76.0,86.0,96.0,81.0,112.0,95.0,109.0,82.0,79.0,88.0,83.0,75.0,79.0,70.0,57.0,55.0,51.0,68.0,46.0,49.0,50.0,58.0,58.0,60.0,64.0,53.0,47.0,37.0,25.0,25.0,35.0,23.0,27.0,22.0,22.0,16.0,13.0,6.0,5.0,8.0,1.0,9.0 E81010,67.0,65.0,60.0,67.0,63.0,73.0,49.0,81.0,81.0,66.0,65.0,67.0,62.0,78.0,61.0,51.0,69.0,61.0,59.0,58.0,60.0,54.0,53.0,68.0,71.0,92.0,94.0,86.0,75.0,91.0,69.0,81.0,75.0,69.0,71.0,73.0,71.0,67.0,71.0,70.0,51.0,62.0,70.0,71.0,63.0,70.0,76.0,54.0,70.0,65.0,60.0,58.0,56.0,43.0,55.0,69.0,49.0,54.0,50.0,51.0,37.0,37.0,47.0,52.0,36.0,29.0,39.0,31.0,32.0,20.0,30.0,27.0,28.0,26.0,22.0,24.0,25.0,19.0,18.0,17.0,12.0,17.0,18.0,12.0,19.0,13.0,9.0,12.0,13.0,8.0,3.0,6.0,2.0,4.0,,10.0 E81012,43.0,64.0,91.0,60.0,71.0,63.0,74.0,69.0,73.0,59.0,80.0,68.0,62.0,90.0,70.0,73.0,52.0,84.0,57.0,66.0,49.0,41.0,48.0,55.0,61.0,44.0,68.0,47.0,56.0,58.0,58.0,95.0,73.0,81.0,89.0,77.0,77.0,70.0,80.0,74.0,78.0,71.0,75.0,81.0,91.0,81.0,65.0,90.0,80.0,61.0,86.0,83.0,79.0,101.0,82.0,85.0,107.0,83.0,99.0,81.0,103.0,99.0,112.0,79.0,87.0,79.0,86.0,94.0,77.0,71.0,68.0,57.0,75.0,74.0,77.0,70.0,79.0,65.0,73.0,52.0,56.0,50.0,39.0,29.0,24.0,36.0,27.0,33.0,25.0,18.0,12.0,11.0,6.0,6.0,10.0,5.0 E81013,73.0,67.0,83.0,73.0,84.0,76.0,99.0,69.0,78.0,87.0,96.0,89.0,76.0,106.0,85.0,73.0,99.0,84.0,80.0,70.0,84.0,78.0,99.0,149.0,139.0,200.0,203.0,237.0,241.0,199.0,227.0,185.0,220.0,168.0,200.0,183.0,223.0,195.0,183.0,161.0,185.0,168.0,156.0,144.0,158.0,134.0,118.0,117.0,118.0,107.0,114.0,104.0,77.0,75.0,89.0,84.0,64.0,99.0,85.0,78.0,82.0,81.0,87.0,98.0,76.0,76.0,67.0,62.0,76.0,63.0,52.0,47.0,32.0,46.0,31.0,49.0,41.0,33.0,40.0,28.0,32.0,17.0,13.0,18.0,15.0,16.0,14.0,7.0,16.0,9.0,5.0,3.0,4.0,3.0,,4.0 E81014,106.0,160.0,136.0,151.0,155.0,148.0,153.0,163.0,149.0,129.0,131.0,119.0,128.0,115.0,106.0,130.0,110.0,109.0,107.0,104.0,82.0,82.0,82.0,89.0,89.0,109.0,109.0,129.0,126.0,143.0,137.0,153.0,169.0,161.0,196.0,178.0,199.0,197.0,185.0,199.0,179.0,178.0,177.0,154.0,146.0,145.0,134.0,120.0,121.0,121.0,98.0,112.0,107.0,104.0,91.0,86.0,97.0,90.0,97.0,90.0,68.0,88.0,91.0,83.0,89.0,82.0,92.0,77.0,76.0,59.0,53.0,37.0,54.0,51.0,58.0,49.0,43.0,58.0,53.0,31.0,34.0,33.0,29.0,14.0,13.0,13.0,15.0,7.0,14.0,5.0,9.0,6.0,,3.0,1.0,6.0 E81015,46.0,58.0,67.0,49.0,65.0,58.0,79.0,67.0,80.0,68.0,72.0,73.0,90.0,96.0,90.0,91.0,89.0,84.0,99.0,79.0,68.0,76.0,77.0,67.0,81.0,75.0,85.0,98.0,80.0,71.0,72.0,91.0,71.0,104.0,99.0,96.0,76.0,94.0,92.0,89.0,113.0,89.0,101.0,102.0,100.0,100.0,94.0,83.0,96.0,99.0,97.0,99.0,81.0,94.0,93.0,112.0,107.0,123.0,113.0,107.0,109.0,109.0,102.0,106.0,117.0,93.0,93.0,93.0,88.0,81.0,91.0,64.0,66.0,79.0,51.0,73.0,64.0,59.0,85.0,54.0,43.0,42.0,42.0,31.0,20.0,22.0,29.0,22.0,26.0,12.0,8.0,9.0,8.0,3.0,5.0,10.0 E81016,48.0,51.0,41.0,45.0,28.0,51.0,44.0,56.0,54.0,45.0,45.0,47.0,41.0,56.0,46.0,56.0,38.0,50.0,54.0,44.0,56.0,53.0,58.0,53.0,59.0,67.0,62.0,66.0,67.0,49.0,58.0,51.0,60.0,47.0,38.0,59.0,44.0,59.0,50.0,50.0,56.0,45.0,52.0,30.0,45.0,46.0,51.0,56.0,41.0,42.0,45.0,41.0,46.0,42.0,38.0,39.0,38.0,45.0,35.0,29.0,33.0,40.0,34.0,28.0,29.0,19.0,23.0,26.0,25.0,13.0,10.0,10.0,20.0,19.0,10.0,16.0,11.0,8.0,9.0,11.0,8.0,9.0,10.0,7.0,8.0,5.0,6.0,4.0,4.0,7.0,5.0,1.0,2.0,1.0,,3.0 E81018,66.0,73.0,62.0,68.0,75.0,77.0,68.0,66.0,67.0,78.0,65.0,100.0,102.0,106.0,88.0,107.0,96.0,89.0,84.0,103.0,125.0,122.0,164.0,150.0,142.0,187.0,150.0,133.0,141.0,130.0,111.0,119.0,120.0,110.0,102.0,107.0,83.0,103.0,110.0,86.0,106.0,77.0,88.0,91.0,91.0,92.0,97.0,84.0,89.0,94.0,91.0,93.0,74.0,83.0,82.0,83.0,94.0,80.0,69.0,71.0,87.0,68.0,78.0,60.0,61.0,64.0,65.0,53.0,56.0,52.0,40.0,40.0,36.0,50.0,37.0,39.0,36.0,39.0,30.0,31.0,32.0,29.0,32.0,17.0,20.0,20.0,16.0,15.0,9.0,5.0,8.0,3.0,3.0,4.0,3.0,3.0 E81019,126.0,140.0,131.0,141.0,168.0,137.0,155.0,167.0,165.0,149.0,160.0,148.0,188.0,181.0,176.0,171.0,165.0,181.0,135.0,147.0,134.0,140.0,128.0,130.0,139.0,129.0,126.0,140.0,153.0,144.0,156.0,182.0,194.0,177.0,211.0,195.0,200.0,206.0,190.0,185.0,210.0,169.0,173.0,174.0,193.0,172.0,192.0,145.0,132.0,172.0,163.0,159.0,109.0,152.0,137.0,111.0,126.0,153.0,136.0,107.0,104.0,120.0,100.0,84.0,106.0,80.0,76.0,87.0,71.0,69.0,66.0,50.0,43.0,45.0,52.0,51.0,47.0,50.0,48.0,37.0,28.0,45.0,28.0,28.0,15.0,16.0,15.0,12.0,12.0,4.0,8.0,9.0,5.0,3.0,7.0,7.0 E81021,140.0,179.0,148.0,185.0,169.0,183.0,169.0,187.0,200.0,191.0,160.0,181.0,168.0,169.0,168.0,168.0,159.0,189.0,150.0,168.0,127.0,127.0,125.0,147.0,149.0,139.0,146.0,181.0,142.0,151.0,169.0,162.0,173.0,170.0,180.0,178.0,181.0,198.0,178.0,181.0,156.0,173.0,181.0,171.0,181.0,166.0,161.0,157.0,142.0,151.0,146.0,157.0,123.0,170.0,134.0,109.0,122.0,153.0,148.0,97.0,92.0,97.0,116.0,68.0,96.0,89.0,70.0,64.0,74.0,73.0,49.0,56.0,53.0,38.0,47.0,50.0,64.0,48.0,46.0,35.0,33.0,43.0,24.0,21.0,18.0,28.0,18.0,22.0,16.0,9.0,7.0,7.0,8.0,3.0,3.0,3.0 E81022,91.0,132.0,132.0,114.0,116.0,145.0,146.0,138.0,131.0,151.0,169.0,122.0,161.0,144.0,146.0,132.0,131.0,130.0,94.0,102.0,90.0,75.0,72.0,74.0,85.0,87.0,84.0,85.0,96.0,67.0,101.0,84.0,122.0,140.0,121.0,139.0,150.0,135.0,141.0,157.0,143.0,133.0,168.0,141.0,128.0,140.0,162.0,124.0,130.0,141.0,121.0,128.0,144.0,140.0,152.0,112.0,133.0,142.0,139.0,145.0,123.0,113.0,110.0,103.0,106.0,105.0,86.0,86.0,85.0,70.0,89.0,77.0,83.0,74.0,63.0,62.0,57.0,71.0,76.0,41.0,56.0,40.0,35.0,38.0,25.0,24.0,15.0,29.0,27.0,8.0,9.0,9.0,14.0,4.0,5.0,13.0 E81024,14.0,19.0,18.0,20.0,28.0,27.0,26.0,28.0,30.0,38.0,34.0,30.0,40.0,50.0,46.0,40.0,35.0,38.0,33.0,31.0,28.0,38.0,26.0,38.0,27.0,27.0,28.0,33.0,30.0,29.0,31.0,31.0,20.0,25.0,28.0,32.0,32.0,36.0,30.0,24.0,32.0,24.0,26.0,30.0,28.0,37.0,26.0,33.0,34.0,35.0,39.0,35.0,44.0,39.0,45.0,41.0,52.0,44.0,54.0,59.0,64.0,51.0,51.0,49.0,47.0,44.0,47.0,28.0,36.0,31.0,45.0,35.0,31.0,32.0,25.0,38.0,26.0,39.0,40.0,30.0,27.0,33.0,23.0,23.0,14.0,12.0,17.0,10.0,15.0,10.0,8.0,8.0,8.0,8.0,2.0,3.0 E81025,61.0,64.0,53.0,55.0,54.0,63.0,70.0,52.0,48.0,50.0,59.0,60.0,42.0,52.0,52.0,41.0,63.0,43.0,46.0,55.0,51.0,46.0,37.0,46.0,51.0,43.0,47.0,49.0,76.0,57.0,72.0,58.0,55.0,50.0,52.0,52.0,64.0,57.0,62.0,46.0,65.0,64.0,57.0,64.0,45.0,60.0,58.0,55.0,49.0,52.0,51.0,37.0,48.0,33.0,44.0,36.0,54.0,40.0,55.0,50.0,50.0,46.0,41.0,25.0,36.0,21.0,36.0,27.0,17.0,24.0,21.0,22.0,31.0,21.0,17.0,20.0,18.0,18.0,23.0,16.0,12.0,18.0,17.0,12.0,13.0,10.0,14.0,6.0,14.0,5.0,9.0,9.0,2.0,3.0,4.0,7.0 E81026,54.0,67.0,59.0,72.0,84.0,76.0,63.0,48.0,56.0,66.0,79.0,74.0,61.0,56.0,71.0,71.0,56.0,55.0,60.0,58.0,44.0,54.0,60.0,43.0,41.0,68.0,79.0,75.0,71.0,58.0,77.0,80.0,75.0,90.0,67.0,90.0,101.0,96.0,98.0,83.0,82.0,84.0,89.0,77.0,85.0,65.0,72.0,46.0,69.0,47.0,62.0,53.0,59.0,64.0,51.0,62.0,57.0,54.0,59.0,65.0,67.0,71.0,54.0,53.0,62.0,51.0,37.0,47.0,38.0,45.0,32.0,34.0,25.0,28.0,25.0,31.0,28.0,30.0,20.0,28.0,21.0,15.0,10.0,10.0,8.0,13.0,12.0,8.0,8.0,5.0,7.0,1.0,1.0,5.0,1.0,5.0 E81027,75.0,89.0,87.0,105.0,93.0,125.0,107.0,102.0,94.0,122.0,92.0,99.0,99.0,109.0,99.0,97.0,113.0,80.0,99.0,81.0,69.0,88.0,79.0,71.0,86.0,83.0,73.0,68.0,76.0,69.0,100.0,93.0,98.0,102.0,120.0,116.0,131.0,118.0,116.0,138.0,139.0,106.0,134.0,115.0,130.0,104.0,86.0,90.0,88.0,91.0,85.0,77.0,88.0,89.0,62.0,84.0,88.0,63.0,78.0,72.0,79.0,81.0,72.0,57.0,57.0,56.0,73.0,67.0,56.0,47.0,50.0,40.0,39.0,34.0,36.0,28.0,34.0,39.0,21.0,21.0,20.0,14.0,15.0,19.0,9.0,12.0,7.0,9.0,5.0,2.0,3.0,4.0,4.0,4.0,,1.0 E81028,153.0,127.0,117.0,102.0,124.0,109.0,144.0,127.0,135.0,148.0,148.0,149.0,134.0,149.0,151.0,137.0,157.0,161.0,146.0,132.0,142.0,143.0,152.0,166.0,159.0,160.0,149.0,166.0,156.0,154.0,141.0,132.0,130.0,135.0,125.0,115.0,130.0,132.0,138.0,109.0,124.0,129.0,111.0,118.0,142.0,133.0,138.0,110.0,127.0,113.0,108.0,102.0,102.0,103.0,103.0,94.0,71.0,78.0,77.0,74.0,56.0,53.0,58.0,70.0,59.0,56.0,46.0,48.0,39.0,34.0,41.0,40.0,38.0,41.0,19.0,24.0,19.0,26.0,17.0,16.0,12.0,11.0,13.0,10.0,10.0,9.0,13.0,14.0,13.0,10.0,5.0,3.0,6.0,2.0,2.0,5.0 E81029,80.0,73.0,76.0,103.0,105.0,94.0,99.0,103.0,112.0,117.0,135.0,110.0,110.0,117.0,156.0,120.0,126.0,112.0,123.0,101.0,107.0,102.0,118.0,92.0,109.0,112.0,106.0,118.0,116.0,124.0,108.0,101.0,126.0,116.0,122.0,129.0,113.0,141.0,132.0,124.0,118.0,133.0,125.0,127.0,167.0,143.0,125.0,106.0,119.0,116.0,133.0,126.0,110.0,129.0,113.0,132.0,130.0,108.0,124.0,92.0,122.0,96.0,86.0,100.0,96.0,90.0,81.0,82.0,78.0,71.0,63.0,62.0,65.0,59.0,59.0,65.0,63.0,60.0,69.0,49.0,47.0,47.0,35.0,40.0,25.0,25.0,28.0,33.0,24.0,27.0,13.0,4.0,6.0,7.0,5.0,11.0 E81030,66.0,88.0,80.0,59.0,79.0,84.0,85.0,85.0,74.0,98.0,91.0,70.0,73.0,81.0,72.0,82.0,68.0,67.0,62.0,64.0,68.0,60.0,55.0,75.0,70.0,88.0,83.0,85.0,104.0,107.0,121.0,130.0,118.0,123.0,122.0,119.0,121.0,127.0,122.0,119.0,113.0,100.0,102.0,111.0,95.0,83.0,83.0,86.0,95.0,76.0,56.0,86.0,56.0,66.0,70.0,56.0,51.0,56.0,50.0,40.0,46.0,43.0,34.0,32.0,31.0,34.0,22.0,28.0,22.0,13.0,23.0,19.0,18.0,19.0,12.0,8.0,17.0,10.0,8.0,6.0,9.0,3.0,7.0,10.0,8.0,3.0,3.0,4.0,6.0,3.0,2.0,2.0,2.0,1.0,1.0,4.0 E81031,23.0,22.0,21.0,26.0,24.0,21.0,29.0,27.0,26.0,31.0,28.0,18.0,32.0,34.0,32.0,33.0,30.0,27.0,33.0,26.0,30.0,29.0,16.0,17.0,25.0,24.0,20.0,28.0,34.0,25.0,26.0,35.0,23.0,28.0,28.0,33.0,19.0,35.0,32.0,23.0,30.0,32.0,40.0,35.0,37.0,32.0,30.0,28.0,34.0,35.0,25.0,38.0,36.0,34.0,35.0,36.0,44.0,42.0,51.0,50.0,36.0,50.0,49.0,43.0,32.0,39.0,39.0,34.0,32.0,26.0,29.0,20.0,28.0,28.0,34.0,22.0,21.0,38.0,32.0,32.0,24.0,26.0,19.0,13.0,11.0,13.0,9.0,8.0,15.0,5.0,6.0,1.0,3.0,5.0,,5.0 E81032,344.0,355.0,336.0,372.0,340.0,333.0,336.0,349.0,332.0,313.0,307.0,351.0,336.0,271.0,287.0,285.0,310.0,332.0,287.0,305.0,298.0,302.0,306.0,364.0,508.0,587.0,602.0,631.0,654.0,596.0,561.0,555.0,517.0,443.0,550.0,483.0,494.0,471.0,455.0,495.0,477.0,466.0,418.0,388.0,437.0,398.0,376.0,342.0,331.0,309.0,290.0,305.0,255.0,274.0,263.0,263.0,246.0,214.0,235.0,204.0,214.0,210.0,204.0,170.0,170.0,155.0,147.0,121.0,127.0,113.0,108.0,85.0,83.0,110.0,73.0,75.0,62.0,63.0,68.0,50.0,56.0,53.0,49.0,29.0,37.0,28.0,23.0,26.0,23.0,17.0,17.0,12.0,12.0,7.0,4.0,10.0 E81033,114.0,115.0,120.0,130.0,125.0,106.0,115.0,145.0,124.0,116.0,129.0,136.0,144.0,136.0,146.0,138.0,118.0,136.0,122.0,93.0,86.0,91.0,90.0,86.0,111.0,80.0,88.0,98.0,107.0,118.0,94.0,107.0,108.0,131.0,120.0,128.0,140.0,123.0,121.0,127.0,135.0,137.0,120.0,142.0,127.0,127.0,120.0,132.0,110.0,134.0,134.0,103.0,122.0,125.0,146.0,130.0,128.0,158.0,147.0,150.0,145.0,132.0,145.0,127.0,129.0,125.0,99.0,123.0,92.0,87.0,96.0,90.0,93.0,70.0,84.0,83.0,84.0,82.0,93.0,59.0,73.0,73.0,54.0,34.0,35.0,35.0,31.0,31.0,29.0,22.0,10.0,16.0,14.0,4.0,8.0,12.0 E81034,37.0,40.0,39.0,36.0,44.0,50.0,34.0,46.0,41.0,56.0,45.0,37.0,44.0,37.0,53.0,46.0,54.0,47.0,43.0,40.0,51.0,39.0,40.0,48.0,45.0,47.0,45.0,32.0,43.0,47.0,47.0,52.0,50.0,47.0,51.0,55.0,54.0,64.0,46.0,52.0,48.0,45.0,50.0,46.0,47.0,45.0,55.0,36.0,45.0,37.0,44.0,56.0,53.0,71.0,57.0,55.0,60.0,53.0,51.0,70.0,66.0,63.0,61.0,63.0,46.0,37.0,42.0,44.0,47.0,41.0,34.0,47.0,33.0,33.0,31.0,35.0,27.0,41.0,35.0,31.0,27.0,26.0,27.0,17.0,18.0,14.0,15.0,12.0,16.0,9.0,4.0,3.0,1.0,2.0,2.0,6.0 E81035,46.0,44.0,49.0,54.0,52.0,56.0,46.0,50.0,57.0,57.0,60.0,61.0,62.0,56.0,66.0,83.0,54.0,79.0,67.0,65.0,58.0,51.0,48.0,49.0,50.0,48.0,40.0,44.0,57.0,63.0,72.0,60.0,48.0,63.0,66.0,76.0,61.0,75.0,62.0,57.0,69.0,68.0,57.0,73.0,64.0,74.0,63.0,52.0,60.0,57.0,63.0,69.0,71.0,56.0,83.0,67.0,64.0,77.0,76.0,51.0,72.0,60.0,63.0,51.0,73.0,57.0,40.0,45.0,53.0,59.0,56.0,51.0,46.0,35.0,43.0,41.0,52.0,47.0,42.0,26.0,29.0,34.0,16.0,21.0,18.0,17.0,10.0,13.0,12.0,10.0,7.0,3.0,5.0,5.0,,4.0 E81036,67.0,81.0,88.0,89.0,99.0,91.0,103.0,92.0,91.0,83.0,98.0,92.0,94.0,80.0,72.0,76.0,83.0,63.0,54.0,62.0,39.0,56.0,52.0,52.0,40.0,53.0,47.0,49.0,68.0,60.0,72.0,86.0,88.0,103.0,115.0,89.0,107.0,123.0,122.0,118.0,109.0,90.0,104.0,93.0,90.0,94.0,105.0,85.0,97.0,70.0,59.0,77.0,80.0,71.0,97.0,85.0,72.0,68.0,74.0,93.0,66.0,64.0,87.0,76.0,78.0,61.0,70.0,76.0,70.0,56.0,62.0,63.0,45.0,59.0,66.0,60.0,60.0,39.0,60.0,38.0,50.0,37.0,45.0,44.0,28.0,16.0,21.0,14.0,16.0,12.0,7.0,11.0,6.0,6.0,4.0,7.0 E81037,139.0,133.0,133.0,125.0,159.0,159.0,135.0,167.0,138.0,186.0,176.0,204.0,195.0,222.0,222.0,229.0,249.0,268.0,236.0,196.0,206.0,213.0,218.0,233.0,225.0,236.0,233.0,249.0,248.0,244.0,234.0,265.0,294.0,263.0,295.0,269.0,275.0,280.0,280.0,246.0,244.0,246.0,273.0,266.0,257.0,273.0,246.0,260.0,235.0,236.0,245.0,230.0,245.0,250.0,285.0,274.0,279.0,270.0,266.0,280.0,286.0,255.0,259.0,257.0,223.0,221.0,227.0,221.0,184.0,189.0,164.0,168.0,168.0,148.0,185.0,163.0,164.0,174.0,167.0,114.0,117.0,118.0,87.0,72.0,83.0,71.0,87.0,63.0,45.0,40.0,34.0,25.0,26.0,22.0,17.0,42.0 E81038,87.0,91.0,118.0,86.0,102.0,99.0,127.0,130.0,138.0,151.0,127.0,135.0,143.0,127.0,144.0,142.0,132.0,145.0,147.0,116.0,112.0,109.0,111.0,134.0,130.0,159.0,151.0,141.0,131.0,143.0,121.0,147.0,157.0,158.0,165.0,149.0,173.0,171.0,151.0,179.0,156.0,149.0,138.0,170.0,157.0,166.0,155.0,133.0,152.0,146.0,133.0,143.0,135.0,140.0,145.0,131.0,154.0,137.0,149.0,142.0,132.0,150.0,118.0,133.0,129.0,116.0,116.0,110.0,124.0,111.0,100.0,103.0,90.0,90.0,93.0,95.0,85.0,115.0,92.0,61.0,66.0,62.0,57.0,41.0,52.0,36.0,37.0,34.0,24.0,18.0,14.0,18.0,11.0,7.0,6.0,12.0 E81040,35.0,45.0,48.0,50.0,47.0,58.0,61.0,63.0,56.0,56.0,60.0,66.0,64.0,47.0,78.0,50.0,63.0,47.0,57.0,50.0,60.0,50.0,55.0,43.0,54.0,61.0,47.0,65.0,53.0,61.0,74.0,63.0,57.0,76.0,62.0,55.0,59.0,65.0,63.0,62.0,56.0,69.0,66.0,61.0,65.0,64.0,77.0,73.0,60.0,60.0,68.0,51.0,43.0,71.0,60.0,51.0,60.0,61.0,72.0,58.0,68.0,77.0,56.0,69.0,53.0,54.0,44.0,50.0,43.0,57.0,42.0,36.0,46.0,24.0,41.0,29.0,36.0,39.0,34.0,34.0,28.0,28.0,19.0,17.0,24.0,11.0,21.0,20.0,19.0,14.0,13.0,7.0,3.0,9.0,1.0,3.0 E81041,83.0,83.0,85.0,72.0,95.0,100.0,91.0,112.0,126.0,87.0,94.0,106.0,117.0,113.0,109.0,107.0,94.0,113.0,104.0,91.0,112.0,96.0,82.0,93.0,90.0,112.0,110.0,111.0,124.0,107.0,104.0,114.0,95.0,113.0,97.0,119.0,108.0,105.0,101.0,100.0,111.0,108.0,90.0,97.0,115.0,105.0,80.0,100.0,94.0,104.0,113.0,93.0,93.0,101.0,94.0,83.0,94.0,77.0,69.0,94.0,92.0,78.0,70.0,88.0,46.0,42.0,56.0,42.0,41.0,39.0,42.0,47.0,38.0,31.0,29.0,24.0,32.0,22.0,31.0,29.0,19.0,16.0,18.0,17.0,13.0,15.0,15.0,15.0,15.0,7.0,5.0,5.0,2.0,3.0,3.0,8.0 E81043,51.0,61.0,63.0,73.0,74.0,80.0,73.0,68.0,66.0,77.0,44.0,62.0,66.0,69.0,61.0,61.0,51.0,48.0,61.0,48.0,50.0,52.0,103.0,163.0,172.0,132.0,130.0,149.0,109.0,103.0,90.0,82.0,101.0,96.0,105.0,94.0,83.0,114.0,100.0,90.0,76.0,66.0,85.0,74.0,65.0,68.0,63.0,62.0,54.0,51.0,60.0,63.0,67.0,68.0,67.0,59.0,48.0,76.0,66.0,54.0,61.0,58.0,55.0,57.0,65.0,47.0,51.0,41.0,37.0,32.0,38.0,34.0,29.0,30.0,28.0,51.0,38.0,38.0,38.0,21.0,29.0,19.0,17.0,16.0,18.0,8.0,14.0,20.0,6.0,6.0,9.0,2.0,3.0,1.0,,5.0 E81044,113.0,138.0,116.0,114.0,125.0,132.0,135.0,122.0,141.0,156.0,145.0,129.0,141.0,145.0,137.0,128.0,127.0,108.0,121.0,100.0,103.0,85.0,69.0,101.0,94.0,91.0,121.0,102.0,102.0,127.0,127.0,144.0,149.0,164.0,119.0,187.0,161.0,191.0,134.0,169.0,147.0,173.0,160.0,169.0,178.0,165.0,135.0,126.0,151.0,137.0,169.0,144.0,160.0,141.0,154.0,123.0,147.0,146.0,118.0,119.0,146.0,128.0,119.0,128.0,98.0,104.0,118.0,91.0,102.0,96.0,88.0,90.0,69.0,75.0,69.0,80.0,78.0,84.0,81.0,55.0,49.0,59.0,43.0,27.0,26.0,32.0,24.0,28.0,8.0,19.0,12.0,8.0,10.0,3.0,2.0,5.0 E81045,45.0,45.0,61.0,68.0,62.0,76.0,56.0,61.0,55.0,76.0,67.0,54.0,67.0,77.0,71.0,75.0,58.0,77.0,50.0,53.0,45.0,56.0,54.0,59.0,57.0,55.0,51.0,56.0,54.0,62.0,78.0,65.0,77.0,77.0,58.0,86.0,84.0,73.0,78.0,66.0,89.0,87.0,91.0,80.0,81.0,91.0,64.0,61.0,78.0,74.0,62.0,72.0,65.0,80.0,65.0,53.0,63.0,67.0,73.0,61.0,73.0,57.0,61.0,47.0,43.0,49.0,55.0,52.0,45.0,42.0,28.0,37.0,38.0,22.0,42.0,23.0,43.0,46.0,51.0,38.0,42.0,31.0,33.0,20.0,18.0,20.0,18.0,18.0,12.0,13.0,10.0,8.0,11.0,2.0,4.0,3.0 E81046,36.0,44.0,53.0,55.0,40.0,67.0,56.0,50.0,68.0,69.0,59.0,74.0,75.0,62.0,85.0,73.0,73.0,63.0,72.0,57.0,70.0,63.0,60.0,66.0,64.0,67.0,59.0,71.0,69.0,83.0,55.0,61.0,54.0,62.0,74.0,58.0,60.0,54.0,59.0,66.0,64.0,72.0,73.0,78.0,82.0,61.0,77.0,72.0,71.0,63.0,62.0,93.0,83.0,113.0,88.0,85.0,81.0,89.0,93.0,109.0,117.0,100.0,92.0,83.0,98.0,86.0,84.0,79.0,69.0,65.0,60.0,46.0,54.0,53.0,63.0,55.0,69.0,70.0,77.0,51.0,53.0,59.0,49.0,31.0,41.0,35.0,26.0,18.0,22.0,15.0,18.0,14.0,11.0,2.0,3.0,8.0 E81047,101.0,93.0,79.0,106.0,102.0,85.0,95.0,103.0,108.0,128.0,125.0,132.0,110.0,102.0,103.0,107.0,122.0,97.0,94.0,95.0,96.0,85.0,77.0,92.0,89.0,127.0,109.0,153.0,128.0,121.0,151.0,134.0,120.0,146.0,142.0,149.0,140.0,152.0,139.0,141.0,121.0,127.0,131.0,152.0,143.0,166.0,141.0,144.0,138.0,141.0,125.0,127.0,125.0,114.0,147.0,149.0,123.0,101.0,121.0,124.0,103.0,103.0,99.0,102.0,95.0,85.0,85.0,64.0,78.0,91.0,73.0,67.0,67.0,65.0,53.0,48.0,66.0,64.0,67.0,51.0,56.0,40.0,34.0,25.0,26.0,28.0,21.0,25.0,18.0,15.0,15.0,11.0,14.0,10.0,4.0,13.0 E81048,82.0,80.0,79.0,68.0,84.0,54.0,75.0,75.0,77.0,70.0,78.0,76.0,75.0,69.0,62.0,68.0,73.0,75.0,56.0,57.0,65.0,80.0,96.0,104.0,113.0,111.0,110.0,130.0,139.0,128.0,117.0,120.0,114.0,119.0,120.0,112.0,110.0,83.0,103.0,110.0,88.0,95.0,76.0,87.0,85.0,78.0,67.0,81.0,72.0,65.0,77.0,57.0,70.0,53.0,77.0,58.0,69.0,60.0,38.0,48.0,67.0,57.0,42.0,48.0,42.0,46.0,50.0,38.0,53.0,34.0,34.0,25.0,31.0,24.0,18.0,17.0,22.0,13.0,23.0,9.0,9.0,6.0,12.0,8.0,7.0,5.0,6.0,7.0,10.0,,4.0,6.0,1.0,3.0,3.0,2.0 E81049,32.0,31.0,28.0,36.0,33.0,40.0,32.0,54.0,37.0,48.0,36.0,51.0,54.0,40.0,45.0,60.0,40.0,59.0,35.0,34.0,44.0,42.0,44.0,36.0,32.0,42.0,50.0,48.0,26.0,41.0,36.0,35.0,39.0,55.0,44.0,34.0,43.0,40.0,41.0,39.0,44.0,34.0,62.0,51.0,58.0,62.0,71.0,52.0,56.0,49.0,68.0,65.0,52.0,60.0,63.0,67.0,63.0,73.0,60.0,57.0,62.0,69.0,55.0,72.0,51.0,50.0,53.0,45.0,38.0,52.0,33.0,42.0,33.0,34.0,38.0,44.0,27.0,48.0,39.0,32.0,24.0,29.0,19.0,11.0,18.0,18.0,23.0,9.0,12.0,3.0,13.0,9.0,4.0,2.0,1.0,9.0 E81050,34.0,59.0,37.0,70.0,67.0,61.0,83.0,66.0,62.0,77.0,69.0,78.0,61.0,75.0,77.0,54.0,93.0,69.0,70.0,62.0,50.0,55.0,54.0,58.0,45.0,57.0,52.0,77.0,69.0,68.0,70.0,69.0,66.0,71.0,92.0,70.0,84.0,91.0,91.0,79.0,87.0,77.0,94.0,66.0,90.0,100.0,76.0,79.0,94.0,78.0,89.0,72.0,85.0,95.0,113.0,112.0,78.0,81.0,104.0,110.0,82.0,86.0,92.0,91.0,75.0,91.0,67.0,89.0,79.0,71.0,67.0,55.0,63.0,60.0,68.0,59.0,58.0,73.0,70.0,47.0,52.0,49.0,47.0,44.0,27.0,31.0,29.0,20.0,19.0,13.0,19.0,12.0,4.0,4.0,4.0,7.0 E81052,22.0,26.0,29.0,44.0,39.0,35.0,45.0,41.0,59.0,62.0,57.0,62.0,51.0,47.0,59.0,55.0,48.0,67.0,44.0,57.0,45.0,50.0,46.0,47.0,40.0,41.0,56.0,47.0,42.0,48.0,46.0,62.0,65.0,42.0,62.0,54.0,66.0,62.0,53.0,73.0,47.0,51.0,66.0,62.0,63.0,56.0,56.0,42.0,49.0,46.0,61.0,43.0,47.0,44.0,55.0,53.0,52.0,55.0,66.0,56.0,58.0,63.0,71.0,67.0,63.0,59.0,49.0,40.0,43.0,36.0,42.0,26.0,34.0,38.0,27.0,38.0,32.0,26.0,33.0,29.0,34.0,25.0,22.0,13.0,20.0,15.0,13.0,7.0,9.0,7.0,10.0,5.0,8.0,5.0,4.0,4.0 E81057,121.0,143.0,120.0,141.0,121.0,131.0,134.0,147.0,135.0,147.0,107.0,132.0,133.0,130.0,127.0,122.0,127.0,116.0,116.0,106.0,82.0,119.0,97.0,115.0,112.0,131.0,113.0,145.0,114.0,139.0,146.0,142.0,174.0,167.0,150.0,158.0,145.0,147.0,158.0,144.0,158.0,148.0,145.0,125.0,143.0,138.0,124.0,127.0,92.0,115.0,135.0,114.0,151.0,141.0,162.0,172.0,179.0,154.0,151.0,162.0,137.0,163.0,159.0,130.0,138.0,124.0,94.0,126.0,125.0,102.0,89.0,102.0,90.0,70.0,87.0,77.0,85.0,102.0,89.0,56.0,61.0,70.0,59.0,48.0,37.0,30.0,44.0,31.0,25.0,31.0,18.0,10.0,13.0,11.0,6.0,14.0 E81060,35.0,37.0,25.0,40.0,40.0,44.0,38.0,31.0,42.0,25.0,39.0,33.0,37.0,32.0,32.0,43.0,30.0,44.0,37.0,28.0,35.0,22.0,30.0,35.0,24.0,22.0,23.0,43.0,41.0,34.0,42.0,45.0,39.0,68.0,48.0,70.0,49.0,45.0,48.0,57.0,60.0,45.0,51.0,46.0,44.0,53.0,38.0,46.0,46.0,39.0,33.0,40.0,30.0,34.0,41.0,37.0,36.0,39.0,57.0,54.0,39.0,32.0,34.0,28.0,37.0,21.0,32.0,25.0,33.0,25.0,24.0,26.0,25.0,27.0,32.0,20.0,25.0,27.0,20.0,15.0,8.0,11.0,16.0,13.0,11.0,6.0,13.0,10.0,11.0,8.0,8.0,5.0,3.0,2.0,1.0,4.0 E81061,43.0,51.0,51.0,45.0,51.0,54.0,43.0,59.0,43.0,51.0,48.0,38.0,52.0,52.0,47.0,50.0,51.0,45.0,45.0,32.0,31.0,28.0,36.0,30.0,26.0,30.0,35.0,41.0,28.0,31.0,34.0,44.0,41.0,46.0,39.0,54.0,47.0,58.0,55.0,67.0,50.0,54.0,43.0,47.0,42.0,36.0,32.0,36.0,50.0,41.0,48.0,43.0,54.0,55.0,51.0,46.0,49.0,48.0,49.0,47.0,54.0,48.0,50.0,50.0,39.0,45.0,36.0,33.0,40.0,21.0,37.0,22.0,24.0,37.0,30.0,36.0,33.0,28.0,24.0,22.0,16.0,24.0,18.0,10.0,10.0,6.0,9.0,8.0,9.0,12.0,7.0,4.0,2.0,3.0,2.0,3.0 E81063,78.0,71.0,68.0,73.0,50.0,73.0,63.0,67.0,86.0,84.0,72.0,78.0,69.0,70.0,78.0,84.0,68.0,76.0,103.0,74.0,76.0,100.0,88.0,92.0,90.0,88.0,72.0,84.0,64.0,89.0,80.0,74.0,91.0,67.0,62.0,67.0,70.0,60.0,70.0,77.0,73.0,65.0,68.0,84.0,81.0,65.0,74.0,54.0,49.0,61.0,49.0,55.0,48.0,44.0,42.0,55.0,35.0,45.0,40.0,36.0,24.0,25.0,28.0,30.0,27.0,26.0,15.0,23.0,23.0,17.0,21.0,18.0,23.0,23.0,19.0,15.0,13.0,13.0,9.0,5.0,5.0,5.0,4.0,7.0,9.0,3.0,7.0,4.0,7.0,2.0,3.0,4.0,,2.0,,2.0 E81069,18.0,32.0,15.0,20.0,32.0,16.0,29.0,28.0,26.0,29.0,13.0,38.0,32.0,25.0,20.0,27.0,25.0,24.0,21.0,21.0,19.0,31.0,20.0,28.0,21.0,22.0,26.0,16.0,15.0,23.0,30.0,27.0,26.0,21.0,25.0,28.0,31.0,26.0,42.0,27.0,25.0,27.0,21.0,29.0,29.0,33.0,33.0,32.0,27.0,32.0,30.0,31.0,29.0,28.0,42.0,28.0,43.0,34.0,38.0,46.0,40.0,43.0,35.0,34.0,34.0,32.0,27.0,28.0,24.0,27.0,24.0,37.0,32.0,22.0,30.0,26.0,33.0,25.0,41.0,21.0,19.0,25.0,29.0,20.0,10.0,10.0,9.0,18.0,9.0,4.0,10.0,10.0,1.0,3.0,7.0,7.0 E81073,97.0,122.0,121.0,127.0,127.0,127.0,116.0,145.0,139.0,150.0,136.0,149.0,143.0,132.0,122.0,133.0,94.0,117.0,100.0,90.0,80.0,96.0,88.0,108.0,90.0,134.0,126.0,168.0,168.0,160.0,136.0,161.0,160.0,195.0,175.0,178.0,193.0,214.0,190.0,176.0,193.0,190.0,168.0,183.0,144.0,151.0,163.0,144.0,125.0,114.0,106.0,124.0,100.0,117.0,97.0,116.0,88.0,101.0,86.0,101.0,82.0,93.0,71.0,80.0,75.0,78.0,65.0,75.0,58.0,55.0,51.0,38.0,42.0,36.0,45.0,37.0,33.0,36.0,37.0,26.0,23.0,22.0,23.0,12.0,12.0,11.0,8.0,13.0,3.0,9.0,4.0,11.0,,3.0,2.0,10.0 E81074,39.0,65.0,58.0,59.0,56.0,56.0,51.0,50.0,52.0,60.0,79.0,79.0,66.0,73.0,74.0,62.0,93.0,67.0,77.0,68.0,59.0,51.0,64.0,61.0,61.0,66.0,55.0,58.0,59.0,48.0,53.0,66.0,71.0,82.0,77.0,62.0,64.0,69.0,66.0,62.0,49.0,58.0,67.0,60.0,67.0,71.0,65.0,82.0,80.0,74.0,91.0,78.0,101.0,81.0,92.0,78.0,84.0,85.0,80.0,97.0,91.0,92.0,79.0,58.0,73.0,76.0,70.0,85.0,59.0,58.0,48.0,66.0,59.0,41.0,54.0,54.0,50.0,65.0,58.0,50.0,58.0,35.0,35.0,21.0,26.0,24.0,20.0,24.0,17.0,19.0,12.0,15.0,7.0,7.0,3.0,5.0 E81076,35.0,35.0,34.0,38.0,42.0,41.0,45.0,51.0,42.0,58.0,55.0,37.0,40.0,50.0,46.0,41.0,53.0,67.0,28.0,31.0,37.0,31.0,41.0,36.0,29.0,31.0,33.0,36.0,37.0,41.0,39.0,34.0,36.0,45.0,36.0,37.0,38.0,63.0,50.0,42.0,49.0,53.0,48.0,45.0,41.0,39.0,43.0,26.0,37.0,39.0,18.0,26.0,37.0,42.0,29.0,29.0,21.0,23.0,25.0,21.0,30.0,19.0,29.0,24.0,14.0,18.0,23.0,13.0,14.0,13.0,7.0,14.0,12.0,10.0,12.0,14.0,12.0,7.0,6.0,7.0,3.0,11.0,4.0,9.0,3.0,5.0,4.0,10.0,4.0,1.0,4.0,3.0,2.0,2.0,1.0,4.0 E81612,31.0,40.0,35.0,34.0,38.0,42.0,32.0,38.0,44.0,47.0,56.0,44.0,52.0,39.0,50.0,57.0,44.0,66.0,41.0,47.0,54.0,42.0,40.0,52.0,49.0,41.0,30.0,38.0,37.0,43.0,35.0,52.0,43.0,34.0,48.0,49.0,32.0,51.0,39.0,44.0,46.0,52.0,51.0,41.0,58.0,58.0,44.0,40.0,44.0,38.0,37.0,40.0,34.0,47.0,29.0,39.0,31.0,33.0,31.0,33.0,24.0,33.0,25.0,22.0,22.0,28.0,22.0,24.0,21.0,21.0,25.0,18.0,18.0,19.0,11.0,17.0,11.0,16.0,5.0,6.0,10.0,5.0,7.0,5.0,1.0,5.0,4.0,4.0,4.0,,2.0,3.0,2.0,,1.0,2.0 E81615,24.0,26.0,30.0,27.0,27.0,31.0,28.0,22.0,29.0,27.0,24.0,27.0,28.0,33.0,32.0,29.0,33.0,25.0,40.0,36.0,31.0,23.0,25.0,32.0,46.0,45.0,39.0,36.0,46.0,31.0,39.0,38.0,60.0,40.0,36.0,48.0,32.0,38.0,39.0,64.0,47.0,51.0,62.0,58.0,45.0,41.0,52.0,30.0,33.0,35.0,34.0,31.0,35.0,30.0,19.0,27.0,33.0,20.0,20.0,24.0,21.0,14.0,28.0,12.0,18.0,12.0,10.0,9.0,9.0,9.0,10.0,11.0,8.0,7.0,4.0,7.0,4.0,2.0,5.0,2.0,1.0,3.0,4.0,2.0,2.0,2.0,3.0,,1.0,1.0,1.0,1.0,,1.0,1.0,1.0 E81617,21.0,19.0,31.0,32.0,26.0,33.0,27.0,25.0,48.0,41.0,33.0,37.0,36.0,41.0,30.0,39.0,35.0,30.0,29.0,27.0,18.0,29.0,28.0,28.0,28.0,22.0,25.0,20.0,28.0,34.0,16.0,31.0,25.0,41.0,33.0,33.0,33.0,38.0,39.0,40.0,34.0,24.0,29.0,33.0,44.0,41.0,36.0,32.0,32.0,33.0,34.0,27.0,45.0,42.0,39.0,37.0,34.0,48.0,47.0,45.0,40.0,28.0,38.0,32.0,34.0,32.0,35.0,31.0,37.0,30.0,27.0,23.0,27.0,28.0,25.0,29.0,24.0,28.0,22.0,9.0,16.0,8.0,10.0,7.0,11.0,11.0,10.0,5.0,5.0,6.0,2.0,4.0,3.0,2.0,1.0, E81631,62.0,71.0,58.0,77.0,72.0,60.0,56.0,63.0,81.0,68.0,84.0,69.0,74.0,77.0,79.0,78.0,71.0,81.0,74.0,90.0,111.0,90.0,63.0,103.0,86.0,96.0,85.0,111.0,73.0,101.0,82.0,77.0,86.0,92.0,79.0,88.0,100.0,95.0,93.0,107.0,96.0,101.0,130.0,88.0,109.0,95.0,123.0,97.0,100.0,87.0,81.0,70.0,62.0,70.0,89.0,73.0,64.0,39.0,45.0,38.0,37.0,29.0,31.0,30.0,29.0,25.0,23.0,33.0,27.0,28.0,14.0,13.0,18.0,22.0,11.0,14.0,16.0,13.0,12.0,14.0,8.0,11.0,9.0,5.0,8.0,7.0,5.0,6.0,8.0,7.0,8.0,1.0,3.0,1.0,1.0,8.0 E81632,39.0,36.0,47.0,48.0,44.0,37.0,48.0,32.0,47.0,58.0,48.0,58.0,46.0,56.0,50.0,50.0,49.0,56.0,43.0,48.0,33.0,45.0,29.0,52.0,52.0,44.0,45.0,60.0,45.0,47.0,40.0,46.0,52.0,53.0,61.0,50.0,53.0,70.0,53.0,68.0,63.0,60.0,57.0,50.0,64.0,59.0,45.0,50.0,45.0,58.0,44.0,40.0,42.0,47.0,60.0,59.0,56.0,47.0,67.0,50.0,67.0,63.0,61.0,52.0,51.0,50.0,49.0,44.0,52.0,57.0,50.0,36.0,38.0,38.0,27.0,36.0,33.0,31.0,29.0,26.0,26.0,23.0,15.0,13.0,14.0,11.0,14.0,16.0,11.0,10.0,8.0,5.0,4.0,3.0,3.0,2.0 E81633,46.0,49.0,35.0,43.0,48.0,45.0,33.0,50.0,53.0,41.0,41.0,52.0,38.0,39.0,49.0,48.0,38.0,52.0,40.0,44.0,34.0,40.0,29.0,44.0,37.0,39.0,37.0,53.0,38.0,48.0,35.0,43.0,51.0,52.0,51.0,36.0,37.0,36.0,47.0,40.0,38.0,40.0,36.0,44.0,51.0,48.0,48.0,36.0,44.0,39.0,36.0,28.0,32.0,34.0,29.0,32.0,32.0,30.0,32.0,19.0,15.0,22.0,27.0,19.0,21.0,20.0,18.0,20.0,12.0,13.0,13.0,12.0,9.0,7.0,6.0,9.0,8.0,8.0,4.0,7.0,5.0,5.0,,4.0,4.0,5.0,6.0,5.0,,4.0,4.0,2.0,1.0,,,1.0 E81635,79.0,83.0,74.0,72.0,60.0,57.0,50.0,42.0,52.0,47.0,67.0,39.0,39.0,49.0,35.0,48.0,43.0,31.0,25.0,22.0,23.0,25.0,31.0,33.0,27.0,52.0,44.0,62.0,57.0,65.0,89.0,82.0,70.0,71.0,77.0,102.0,100.0,95.0,81.0,65.0,67.0,52.0,67.0,43.0,50.0,50.0,36.0,29.0,39.0,44.0,38.0,29.0,43.0,30.0,36.0,37.0,31.0,47.0,33.0,40.0,36.0,32.0,33.0,28.0,35.0,31.0,29.0,38.0,25.0,13.0,17.0,20.0,14.0,17.0,11.0,20.0,13.0,12.0,19.0,11.0,12.0,10.0,10.0,7.0,10.0,11.0,8.0,3.0,7.0,1.0,4.0,1.0,3.0,1.0,1.0,5.0 K82003,85.0,97.0,90.0,108.0,121.0,112.0,109.0,120.0,115.0,114.0,140.0,109.0,152.0,146.0,139.0,120.0,134.0,138.0,123.0,101.0,114.0,127.0,94.0,100.0,131.0,126.0,121.0,126.0,113.0,135.0,130.0,120.0,127.0,130.0,145.0,142.0,139.0,135.0,144.0,143.0,167.0,155.0,155.0,142.0,150.0,121.0,126.0,105.0,123.0,104.0,119.0,104.0,98.0,99.0,102.0,104.0,94.0,95.0,71.0,78.0,95.0,74.0,70.0,67.0,67.0,63.0,61.0,51.0,46.0,62.0,53.0,52.0,50.0,48.0,41.0,40.0,35.0,31.0,49.0,21.0,29.0,30.0,19.0,9.0,14.0,20.0,10.0,7.0,13.0,3.0,4.0,3.0,4.0,4.0,2.0,2.0 K82009,159.0,165.0,158.0,238.0,182.0,227.0,231.0,263.0,249.0,249.0,258.0,258.0,305.0,337.0,308.0,296.0,285.0,266.0,254.0,249.0,216.0,223.0,190.0,205.0,215.0,219.0,191.0,201.0,217.0,181.0,209.0,238.0,258.0,280.0,275.0,256.0,291.0,283.0,308.0,292.0,321.0,327.0,311.0,326.0,357.0,339.0,370.0,298.0,321.0,295.0,334.0,304.0,268.0,295.0,301.0,272.0,305.0,296.0,254.0,274.0,295.0,273.0,286.0,216.0,272.0,247.0,207.0,219.0,196.0,169.0,167.0,154.0,151.0,150.0,141.0,145.0,140.0,161.0,131.0,101.0,107.0,99.0,90.0,73.0,61.0,46.0,55.0,41.0,37.0,28.0,20.0,15.0,8.0,9.0,8.0,19.0 K82013,67.0,69.0,61.0,71.0,66.0,65.0,71.0,69.0,81.0,74.0,70.0,79.0,73.0,93.0,66.0,76.0,79.0,73.0,71.0,52.0,63.0,53.0,64.0,68.0,59.0,71.0,65.0,69.0,79.0,85.0,81.0,89.0,77.0,89.0,102.0,106.0,105.0,112.0,90.0,98.0,116.0,95.0,114.0,89.0,104.0,75.0,103.0,79.0,66.0,80.0,82.0,77.0,106.0,100.0,105.0,103.0,90.0,88.0,89.0,77.0,84.0,91.0,93.0,79.0,91.0,80.0,68.0,70.0,62.0,76.0,92.0,64.0,69.0,66.0,56.0,64.0,64.0,87.0,67.0,58.0,50.0,62.0,41.0,28.0,33.0,19.0,39.0,26.0,18.0,15.0,11.0,9.0,7.0,6.0,5.0,10.0 K82015,51.0,47.0,46.0,43.0,63.0,62.0,61.0,62.0,68.0,72.0,77.0,83.0,70.0,80.0,75.0,81.0,71.0,58.0,52.0,58.0,49.0,46.0,56.0,56.0,68.0,55.0,58.0,56.0,51.0,62.0,74.0,66.0,67.0,90.0,68.0,59.0,74.0,80.0,70.0,103.0,78.0,80.0,86.0,93.0,79.0,96.0,72.0,67.0,77.0,58.0,68.0,59.0,68.0,77.0,71.0,74.0,64.0,71.0,63.0,71.0,55.0,60.0,69.0,52.0,58.0,54.0,53.0,47.0,45.0,37.0,54.0,33.0,39.0,48.0,47.0,37.0,35.0,32.0,35.0,27.0,26.0,34.0,31.0,14.0,20.0,24.0,14.0,10.0,13.0,11.0,3.0,2.0,5.0,2.0,3.0,7.0 K82016,139.0,148.0,108.0,131.0,154.0,138.0,152.0,169.0,155.0,169.0,204.0,200.0,169.0,191.0,206.0,193.0,171.0,150.0,168.0,146.0,111.0,107.0,133.0,144.0,149.0,172.0,163.0,200.0,142.0,193.0,194.0,181.0,228.0,210.0,244.0,224.0,238.0,226.0,249.0,240.0,242.0,233.0,236.0,222.0,239.0,214.0,218.0,202.0,198.0,187.0,164.0,199.0,203.0,195.0,170.0,176.0,186.0,205.0,177.0,180.0,174.0,196.0,159.0,152.0,149.0,171.0,185.0,144.0,150.0,139.0,136.0,154.0,139.0,133.0,169.0,132.0,113.0,143.0,111.0,104.0,94.0,101.0,66.0,69.0,60.0,45.0,46.0,37.0,22.0,26.0,21.0,20.0,12.0,9.0,11.0,17.0 K82025,30.0,41.0,40.0,36.0,38.0,46.0,43.0,45.0,51.0,66.0,69.0,49.0,59.0,58.0,72.0,72.0,70.0,68.0,52.0,74.0,57.0,63.0,64.0,55.0,55.0,66.0,62.0,77.0,67.0,76.0,75.0,58.0,58.0,66.0,76.0,91.0,68.0,80.0,80.0,88.0,74.0,78.0,90.0,74.0,94.0,60.0,84.0,88.0,83.0,86.0,75.0,91.0,73.0,84.0,74.0,68.0,63.0,78.0,82.0,59.0,61.0,69.0,61.0,60.0,62.0,75.0,67.0,73.0,54.0,52.0,66.0,54.0,63.0,49.0,55.0,61.0,58.0,54.0,50.0,36.0,34.0,20.0,18.0,31.0,17.0,18.0,14.0,17.0,10.0,7.0,8.0,8.0,11.0,4.0,3.0,7.0 K82026,102.0,104.0,108.0,161.0,154.0,181.0,136.0,158.0,177.0,173.0,165.0,196.0,196.0,170.0,196.0,195.0,165.0,193.0,135.0,138.0,135.0,110.0,121.0,127.0,122.0,126.0,129.0,127.0,127.0,134.0,134.0,129.0,149.0,138.0,167.0,153.0,148.0,163.0,172.0,169.0,184.0,150.0,188.0,121.0,166.0,168.0,154.0,133.0,138.0,127.0,130.0,127.0,127.0,130.0,123.0,130.0,113.0,138.0,113.0,120.0,126.0,98.0,97.0,110.0,88.0,87.0,87.0,85.0,91.0,67.0,81.0,73.0,74.0,61.0,69.0,59.0,66.0,74.0,77.0,59.0,51.0,56.0,52.0,39.0,24.0,31.0,25.0,26.0,20.0,14.0,24.0,9.0,7.0,6.0,5.0,15.0 K82027,28.0,17.0,14.0,24.0,33.0,27.0,42.0,37.0,32.0,34.0,38.0,39.0,37.0,36.0,37.0,44.0,39.0,48.0,29.0,43.0,37.0,53.0,42.0,30.0,23.0,34.0,41.0,36.0,36.0,38.0,50.0,51.0,50.0,53.0,47.0,53.0,66.0,59.0,52.0,48.0,41.0,67.0,49.0,57.0,47.0,58.0,41.0,41.0,48.0,43.0,49.0,50.0,39.0,42.0,49.0,41.0,35.0,42.0,36.0,44.0,27.0,30.0,41.0,33.0,32.0,30.0,30.0,34.0,31.0,23.0,27.0,25.0,28.0,26.0,20.0,24.0,26.0,15.0,21.0,17.0,14.0,19.0,9.0,12.0,6.0,7.0,5.0,7.0,3.0,3.0,1.0,2.0,,1.0,,2.0 K82032,47.0,56.0,67.0,56.0,64.0,83.0,69.0,77.0,75.0,67.0,93.0,95.0,93.0,82.0,115.0,104.0,93.0,93.0,77.0,68.0,53.0,85.0,48.0,56.0,65.0,68.0,74.0,76.0,91.0,92.0,89.0,95.0,90.0,92.0,98.0,88.0,95.0,119.0,91.0,142.0,96.0,109.0,97.0,100.0,123.0,112.0,101.0,92.0,101.0,95.0,86.0,87.0,103.0,83.0,75.0,76.0,61.0,77.0,62.0,68.0,75.0,67.0,66.0,58.0,53.0,54.0,59.0,59.0,53.0,39.0,55.0,52.0,40.0,42.0,47.0,43.0,38.0,44.0,32.0,24.0,24.0,18.0,15.0,15.0,11.0,12.0,12.0,11.0,7.0,3.0,4.0,,3.0,1.0,2.0,5.0 K82039,74.0,79.0,100.0,99.0,99.0,103.0,108.0,103.0,96.0,117.0,111.0,91.0,109.0,128.0,99.0,92.0,112.0,118.0,99.0,72.0,84.0,84.0,77.0,92.0,108.0,117.0,90.0,116.0,113.0,109.0,120.0,127.0,121.0,130.0,150.0,152.0,167.0,152.0,144.0,139.0,141.0,123.0,155.0,139.0,164.0,125.0,145.0,107.0,102.0,120.0,139.0,121.0,125.0,106.0,105.0,93.0,111.0,104.0,119.0,105.0,100.0,88.0,80.0,85.0,81.0,76.0,48.0,64.0,35.0,47.0,47.0,59.0,39.0,47.0,36.0,52.0,30.0,42.0,38.0,28.0,29.0,33.0,29.0,29.0,11.0,17.0,14.0,10.0,14.0,6.0,9.0,5.0,5.0,3.0,3.0,3.0 K82054,47.0,42.0,47.0,42.0,52.0,44.0,62.0,75.0,68.0,72.0,64.0,72.0,88.0,83.0,102.0,75.0,87.0,68.0,74.0,83.0,78.0,56.0,60.0,65.0,71.0,69.0,63.0,69.0,72.0,70.0,54.0,77.0,56.0,67.0,73.0,86.0,73.0,83.0,99.0,72.0,97.0,73.0,90.0,89.0,81.0,74.0,85.0,81.0,83.0,88.0,80.0,75.0,80.0,75.0,88.0,73.0,79.0,75.0,65.0,67.0,88.0,55.0,52.0,56.0,44.0,48.0,40.0,42.0,48.0,40.0,51.0,34.0,45.0,36.0,40.0,27.0,28.0,32.0,39.0,21.0,19.0,19.0,17.0,13.0,8.0,16.0,10.0,8.0,8.0,4.0,4.0,3.0,1.0,5.0,3.0,3.0 K82057,36.0,40.0,31.0,32.0,40.0,34.0,46.0,52.0,41.0,47.0,46.0,49.0,57.0,54.0,46.0,48.0,68.0,69.0,54.0,43.0,52.0,35.0,33.0,42.0,44.0,32.0,55.0,41.0,43.0,38.0,40.0,39.0,45.0,43.0,44.0,44.0,44.0,49.0,32.0,32.0,52.0,47.0,48.0,56.0,45.0,49.0,43.0,56.0,54.0,55.0,71.0,44.0,66.0,51.0,74.0,71.0,70.0,70.0,71.0,62.0,89.0,70.0,56.0,60.0,61.0,67.0,69.0,50.0,58.0,54.0,56.0,53.0,55.0,53.0,38.0,46.0,52.0,57.0,50.0,37.0,29.0,37.0,29.0,16.0,27.0,13.0,31.0,11.0,14.0,15.0,10.0,9.0,9.0,3.0,3.0,8.0 K82059,64.0,61.0,58.0,64.0,60.0,69.0,70.0,56.0,53.0,65.0,73.0,58.0,57.0,56.0,57.0,63.0,48.0,46.0,47.0,53.0,38.0,40.0,45.0,41.0,53.0,44.0,63.0,45.0,54.0,59.0,77.0,70.0,85.0,63.0,75.0,66.0,85.0,81.0,78.0,73.0,81.0,72.0,77.0,50.0,64.0,77.0,82.0,61.0,47.0,31.0,51.0,45.0,45.0,68.0,53.0,44.0,50.0,50.0,48.0,53.0,41.0,49.0,42.0,46.0,45.0,38.0,37.0,35.0,32.0,33.0,35.0,28.0,25.0,25.0,26.0,30.0,26.0,28.0,16.0,15.0,14.0,17.0,15.0,11.0,10.0,6.0,6.0,6.0,6.0,8.0,4.0,3.0,1.0,2.0,1.0,4.0 K82064,44.0,32.0,35.0,42.0,42.0,52.0,50.0,51.0,40.0,53.0,54.0,59.0,40.0,48.0,44.0,53.0,44.0,33.0,57.0,44.0,55.0,35.0,53.0,48.0,43.0,60.0,75.0,71.0,97.0,86.0,81.0,83.0,97.0,100.0,88.0,120.0,99.0,100.0,101.0,95.0,64.0,96.0,86.0,88.0,76.0,77.0,57.0,37.0,57.0,56.0,51.0,48.0,45.0,42.0,59.0,54.0,39.0,49.0,36.0,39.0,51.0,47.0,28.0,26.0,21.0,33.0,24.0,30.0,27.0,20.0,19.0,19.0,21.0,23.0,12.0,16.0,8.0,12.0,12.0,7.0,3.0,10.0,7.0,4.0,4.0,7.0,5.0,4.0,2.0,1.0,1.0,1.0,,,,1.0 K82065,104.0,108.0,88.0,108.0,108.0,104.0,112.0,96.0,108.0,106.0,118.0,89.0,111.0,118.0,94.0,118.0,113.0,134.0,115.0,123.0,90.0,108.0,107.0,128.0,138.0,191.0,183.0,230.0,257.0,223.0,238.0,250.0,272.0,299.0,313.0,322.0,290.0,285.0,265.0,260.0,260.0,256.0,252.0,227.0,218.0,231.0,196.0,183.0,183.0,190.0,175.0,145.0,126.0,107.0,135.0,117.0,117.0,122.0,99.0,104.0,105.0,119.0,99.0,85.0,89.0,77.0,83.0,73.0,62.0,75.0,49.0,50.0,56.0,55.0,66.0,41.0,49.0,41.0,40.0,31.0,23.0,21.0,11.0,17.0,13.0,11.0,10.0,8.0,10.0,9.0,4.0,1.0,3.0,1.0,4.0,3.0 K82610,50.0,59.0,45.0,59.0,44.0,63.0,56.0,61.0,74.0,59.0,66.0,48.0,74.0,73.0,75.0,87.0,70.0,75.0,66.0,58.0,56.0,46.0,66.0,47.0,66.0,57.0,64.0,68.0,60.0,65.0,68.0,61.0,77.0,76.0,88.0,85.0,81.0,105.0,83.0,79.0,76.0,77.0,78.0,81.0,80.0,82.0,48.0,68.0,81.0,65.0,71.0,67.0,65.0,60.0,72.0,59.0,57.0,50.0,50.0,53.0,55.0,39.0,39.0,27.0,37.0,34.0,35.0,31.0,30.0,30.0,24.0,18.0,29.0,16.0,16.0,13.0,11.0,9.0,11.0,4.0,5.0,5.0,1.0,2.0,4.0,3.0,8.0,2.0,,,,2.0,2.0,2.0,1.0, K82615,86.0,104.0,87.0,80.0,105.0,111.0,93.0,105.0,100.0,97.0,116.0,87.0,108.0,91.0,86.0,106.0,86.0,107.0,97.0,66.0,76.0,82.0,71.0,72.0,68.0,93.0,82.0,106.0,118.0,116.0,99.0,118.0,120.0,114.0,120.0,122.0,159.0,131.0,109.0,124.0,139.0,123.0,141.0,112.0,124.0,122.0,111.0,116.0,100.0,119.0,90.0,98.0,101.0,99.0,100.0,100.0,97.0,114.0,93.0,95.0,109.0,92.0,76.0,83.0,69.0,77.0,71.0,57.0,58.0,49.0,45.0,42.0,46.0,30.0,33.0,30.0,25.0,25.0,31.0,14.0,20.0,13.0,8.0,10.0,11.0,11.0,10.0,2.0,4.0,4.0,6.0,5.0,3.0,1.0,,2.0 K82617,25.0,44.0,30.0,40.0,34.0,44.0,47.0,36.0,49.0,53.0,63.0,60.0,51.0,53.0,39.0,50.0,45.0,40.0,36.0,39.0,41.0,35.0,32.0,39.0,35.0,43.0,35.0,39.0,38.0,40.0,36.0,42.0,48.0,46.0,71.0,57.0,57.0,65.0,68.0,67.0,52.0,57.0,66.0,82.0,77.0,73.0,66.0,78.0,63.0,51.0,58.0,52.0,64.0,52.0,54.0,56.0,56.0,48.0,62.0,58.0,50.0,48.0,49.0,43.0,47.0,33.0,24.0,46.0,36.0,36.0,36.0,31.0,36.0,22.0,22.0,29.0,38.0,36.0,28.0,26.0,16.0,21.0,14.0,19.0,11.0,8.0,4.0,10.0,10.0,6.0,2.0,8.0,1.0,3.0,2.0,3.0 K82631,53.0,63.0,62.0,88.0,74.0,84.0,137.0,121.0,122.0,142.0,142.0,141.0,167.0,171.0,149.0,159.0,145.0,159.0,137.0,109.0,106.0,107.0,107.0,81.0,88.0,93.0,85.0,87.0,89.0,81.0,72.0,86.0,87.0,86.0,83.0,98.0,112.0,101.0,111.0,125.0,122.0,146.0,166.0,170.0,163.0,175.0,181.0,146.0,170.0,149.0,157.0,164.0,158.0,132.0,122.0,133.0,118.0,102.0,112.0,101.0,81.0,75.0,73.0,66.0,64.0,58.0,46.0,61.0,41.0,57.0,41.0,35.0,43.0,36.0,35.0,27.0,36.0,23.0,31.0,24.0,14.0,15.0,9.0,10.0,5.0,13.0,11.0,6.0,5.0,3.0,,2.0,1.0,,1.0,3.0 K82633,76.0,78.0,74.0,82.0,104.0,100.0,88.0,122.0,118.0,136.0,123.0,131.0,151.0,158.0,159.0,154.0,169.0,141.0,146.0,112.0,96.0,107.0,87.0,105.0,121.0,101.0,84.0,98.0,93.0,80.0,98.0,89.0,87.0,112.0,102.0,99.0,110.0,130.0,116.0,134.0,126.0,136.0,123.0,152.0,153.0,166.0,188.0,148.0,143.0,159.0,171.0,170.0,139.0,134.0,152.0,119.0,97.0,108.0,83.0,83.0,73.0,74.0,70.0,71.0,60.0,44.0,55.0,38.0,36.0,24.0,31.0,26.0,20.0,22.0,19.0,20.0,25.0,13.0,17.0,13.0,12.0,14.0,10.0,13.0,9.0,13.0,11.0,8.0,2.0,8.0,3.0,7.0,1.0,3.0,3.0,2.0 Y00522,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,,,,,, Y00560,147.0,138.0,156.0,171.0,154.0,150.0,149.0,152.0,159.0,154.0,143.0,128.0,135.0,124.0,149.0,117.0,110.0,116.0,93.0,87.0,77.0,72.0,57.0,85.0,91.0,81.0,92.0,103.0,91.0,113.0,119.0,140.0,116.0,139.0,157.0,150.0,162.0,165.0,155.0,163.0,172.0,183.0,131.0,140.0,148.0,143.0,104.0,107.0,98.0,104.0,106.0,91.0,87.0,104.0,88.0,90.0,93.0,87.0,68.0,83.0,63.0,83.0,72.0,61.0,58.0,77.0,62.0,62.0,52.0,36.0,50.0,30.0,37.0,33.0,36.0,26.0,52.0,39.0,34.0,28.0,25.0,23.0,10.0,22.0,16.0,7.0,7.0,10.0,12.0,6.0,5.0,6.0,1.0,2.0,5.0,4.0 Y02332,123.0,151.0,137.0,149.0,132.0,125.0,140.0,130.0,149.0,117.0,143.0,136.0,130.0,151.0,125.0,136.0,128.0,143.0,150.0,120.0,115.0,126.0,154.0,132.0,180.0,193.0,207.0,221.0,205.0,188.0,169.0,180.0,183.0,164.0,172.0,171.0,185.0,185.0,191.0,182.0,155.0,155.0,167.0,172.0,148.0,147.0,131.0,145.0,146.0,131.0,125.0,104.0,127.0,126.0,93.0,129.0,107.0,107.0,87.0,71.0,74.0,86.0,54.0,63.0,69.0,70.0,52.0,62.0,57.0,47.0,46.0,41.0,38.0,43.0,36.0,29.0,33.0,33.0,24.0,19.0,25.0,15.0,10.0,11.0,13.0,21.0,14.0,12.0,10.0,5.0,7.0,5.0,5.0,2.0,,2.0 Y02463,94.0,106.0,99.0,92.0,90.0,102.0,84.0,76.0,94.0,75.0,70.0,85.0,72.0,57.0,63.0,72.0,59.0,62.0,49.0,48.0,63.0,49.0,56.0,79.0,134.0,145.0,177.0,210.0,232.0,227.0,226.0,209.0,212.0,196.0,212.0,180.0,170.0,187.0,166.0,132.0,150.0,133.0,129.0,105.0,105.0,100.0,104.0,73.0,68.0,63.0,72.0,55.0,47.0,39.0,43.0,56.0,38.0,37.0,40.0,29.0,40.0,24.0,32.0,25.0,23.0,29.0,20.0,21.0,23.0,15.0,11.0,9.0,10.0,10.0,12.0,7.0,4.0,5.0,1.0,3.0,1.0,2.0,3.0,1.0,,2.0,1.0,1.0,1.0,,,1.0,,,1.0, Y02900,160.0,136.0,137.0,183.0,183.0,190.0,199.0,231.0,215.0,184.0,217.0,230.0,211.0,185.0,217.0,171.0,150.0,168.0,130.0,95.0,91.0,80.0,116.0,121.0,134.0,211.0,194.0,192.0,186.0,184.0,164.0,165.0,201.0,209.0,224.0,234.0,258.0,227.0,253.0,261.0,249.0,245.0,252.0,249.0,267.0,251.0,225.0,208.0,192.0,177.0,145.0,129.0,110.0,110.0,118.0,108.0,89.0,76.0,69.0,71.0,66.0,60.0,48.0,51.0,46.0,54.0,40.0,45.0,42.0,31.0,37.0,30.0,21.0,18.0,23.0,20.0,17.0,16.0,16.0,12.0,5.0,7.0,6.0,4.0,4.0,3.0,5.0,2.0,,2.0,,,1.0,2.0,, Y06810,99.0,102.0,113.0,126.0,99.0,105.0,102.0,106.0,101.0,115.0,113.0,105.0,113.0,94.0,106.0,96.0,106.0,67.0,85.0,55.0,59.0,58.0,63.0,73.0,83.0,89.0,108.0,111.0,125.0,122.0,157.0,135.0,132.0,149.0,151.0,152.0,152.0,154.0,142.0,144.0,184.0,152.0,167.0,152.0,153.0,147.0,141.0,126.0,120.0,115.0,94.0,70.0,80.0,84.0,62.0,59.0,60.0,69.0,68.0,54.0,63.0,58.0,55.0,39.0,49.0,44.0,42.0,48.0,42.0,47.0,43.0,33.0,34.0,26.0,28.0,17.0,27.0,28.0,23.0,20.0,14.0,12.0,10.0,7.0,3.0,5.0,,5.0,5.0,2.0,1.0,,1.0,1.0,1.0,3.0 Y07040,,,,,,,,,,,,,,,,,,,,,,,2.0,,1.0,2.0,5.0,1.0,2.0,,2.0,3.0,,3.0,2.0,4.0,4.0,3.0,2.0,1.0,2.0,1.0,4.0,1.0,4.0,3.0,1.0,2.0,1.0,3.0,4.0,2.0,1.0,4.0,3.0,,2.0,4.0,2.0,,2.0,1.0,,1.0,3.0,1.0,,,1.0,,,,,,,,,,,,1.0,,,,,,,,,,,,,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 M85001,21.0,26.0,20.0,30.0,32.0,34.0,35.0,37.0,33.0,44.0,28.0,37.0,39.0,49.0,37.0,41.0,25.0,43.0,31.0,33.0,22.0,36.0,28.0,35.0,26.0,34.0,32.0,30.0,27.0,27.0,29.0,38.0,41.0,43.0,41.0,34.0,37.0,35.0,43.0,31.0,21.0,21.0,25.0,25.0,28.0,26.0,18.0,17.0,21.0,23.0,23.0,24.0,29.0,22.0,28.0,31.0,32.0,37.0,36.0,33.0,34.0,38.0,22.0,26.0,26.0,22.0,25.0,19.0,15.0,20.0,11.0,28.0,21.0,14.0,15.0,15.0,17.0,6.0,15.0,14.0,3.0,6.0,10.0,6.0,4.0,2.0,4.0,2.0,3.0,3.0,2.0,3.0,,1.0,2.0,3.0 M85005,45.0,47.0,49.0,51.0,52.0,79.0,37.0,65.0,71.0,71.0,67.0,70.0,62.0,71.0,83.0,58.0,61.0,79.0,73.0,68.0,65.0,69.0,69.0,79.0,87.0,83.0,78.0,77.0,71.0,100.0,69.0,71.0,68.0,64.0,57.0,79.0,68.0,67.0,48.0,72.0,53.0,39.0,59.0,47.0,51.0,42.0,55.0,56.0,38.0,48.0,38.0,33.0,38.0,36.0,38.0,52.0,41.0,46.0,29.0,41.0,17.0,35.0,40.0,23.0,24.0,24.0,20.0,22.0,19.0,16.0,25.0,10.0,12.0,14.0,8.0,3.0,6.0,11.0,9.0,10.0,8.0,3.0,2.0,6.0,10.0,5.0,2.0,4.0,6.0,4.0,3.0,5.0,3.0,4.0,3.0,5.0 M85006,60.0,60.0,57.0,65.0,72.0,81.0,86.0,69.0,86.0,70.0,72.0,91.0,89.0,78.0,80.0,78.0,77.0,91.0,82.0,59.0,80.0,51.0,48.0,71.0,56.0,71.0,76.0,77.0,57.0,76.0,65.0,76.0,93.0,74.0,94.0,102.0,85.0,90.0,72.0,75.0,86.0,81.0,80.0,76.0,66.0,81.0,69.0,51.0,59.0,60.0,68.0,52.0,75.0,62.0,69.0,58.0,57.0,82.0,55.0,60.0,50.0,61.0,54.0,45.0,57.0,45.0,47.0,34.0,35.0,43.0,50.0,45.0,34.0,32.0,30.0,28.0,35.0,36.0,25.0,13.0,22.0,18.0,17.0,11.0,7.0,9.0,15.0,9.0,10.0,13.0,8.0,5.0,1.0,3.0,3.0, M85007,103.0,110.0,128.0,116.0,129.0,127.0,119.0,129.0,124.0,125.0,112.0,114.0,88.0,93.0,106.0,102.0,118.0,118.0,77.0,78.0,86.0,95.0,108.0,75.0,73.0,95.0,112.0,109.0,103.0,139.0,119.0,131.0,156.0,154.0,156.0,141.0,150.0,146.0,155.0,146.0,123.0,121.0,114.0,113.0,120.0,93.0,93.0,102.0,99.0,88.0,88.0,84.0,103.0,86.0,87.0,101.0,82.0,95.0,91.0,90.0,96.0,87.0,88.0,75.0,81.0,77.0,57.0,84.0,72.0,65.0,48.0,68.0,47.0,50.0,36.0,59.0,53.0,54.0,48.0,48.0,42.0,32.0,35.0,36.0,30.0,25.0,22.0,22.0,16.0,13.0,15.0,10.0,10.0,6.0,8.0,15.0 M85009,37.0,32.0,30.0,37.0,41.0,38.0,41.0,41.0,48.0,36.0,45.0,40.0,33.0,41.0,30.0,48.0,49.0,59.0,58.0,45.0,50.0,37.0,42.0,37.0,53.0,52.0,41.0,44.0,52.0,51.0,45.0,56.0,66.0,56.0,62.0,66.0,50.0,62.0,47.0,50.0,51.0,56.0,57.0,42.0,53.0,66.0,27.0,45.0,51.0,40.0,41.0,46.0,43.0,41.0,35.0,47.0,38.0,47.0,44.0,33.0,36.0,25.0,37.0,32.0,35.0,38.0,31.0,26.0,22.0,29.0,24.0,23.0,20.0,22.0,14.0,17.0,15.0,22.0,18.0,18.0,21.0,15.0,12.0,16.0,11.0,9.0,11.0,7.0,16.0,6.0,6.0,6.0,9.0,4.0,4.0,2.0 M85011,34.0,45.0,42.0,36.0,47.0,33.0,45.0,44.0,52.0,42.0,56.0,56.0,50.0,54.0,56.0,45.0,54.0,43.0,45.0,44.0,46.0,41.0,41.0,59.0,50.0,47.0,54.0,49.0,47.0,44.0,48.0,58.0,51.0,51.0,42.0,70.0,46.0,66.0,44.0,59.0,49.0,53.0,60.0,60.0,40.0,49.0,51.0,48.0,41.0,35.0,45.0,39.0,27.0,46.0,38.0,40.0,44.0,48.0,41.0,43.0,33.0,46.0,41.0,50.0,37.0,33.0,33.0,39.0,42.0,42.0,34.0,26.0,23.0,25.0,33.0,23.0,19.0,32.0,28.0,17.0,24.0,22.0,17.0,13.0,13.0,21.0,7.0,10.0,7.0,5.0,6.0,4.0,5.0,4.0,,4.0 M85013,22.0,23.0,28.0,22.0,23.0,26.0,27.0,25.0,35.0,25.0,32.0,31.0,34.0,41.0,48.0,27.0,28.0,29.0,34.0,28.0,34.0,39.0,21.0,18.0,30.0,27.0,22.0,33.0,34.0,25.0,27.0,24.0,34.0,32.0,27.0,35.0,25.0,31.0,13.0,25.0,26.0,25.0,20.0,24.0,24.0,27.0,25.0,23.0,21.0,24.0,18.0,11.0,37.0,15.0,31.0,20.0,22.0,27.0,28.0,34.0,26.0,26.0,21.0,15.0,23.0,23.0,18.0,14.0,9.0,17.0,10.0,11.0,19.0,11.0,6.0,10.0,19.0,6.0,10.0,9.0,7.0,11.0,11.0,8.0,6.0,6.0,4.0,3.0,4.0,3.0,4.0,2.0,2.0,1.0,1.0,2.0 M85014,28.0,28.0,31.0,22.0,30.0,24.0,28.0,23.0,29.0,36.0,24.0,40.0,37.0,31.0,25.0,30.0,26.0,26.0,31.0,18.0,27.0,25.0,27.0,24.0,37.0,35.0,28.0,33.0,43.0,39.0,33.0,37.0,41.0,54.0,40.0,49.0,41.0,46.0,33.0,29.0,35.0,37.0,33.0,30.0,38.0,30.0,29.0,19.0,18.0,29.0,24.0,29.0,26.0,32.0,14.0,24.0,21.0,32.0,21.0,27.0,26.0,29.0,14.0,24.0,19.0,23.0,17.0,23.0,15.0,14.0,13.0,7.0,12.0,8.0,9.0,11.0,11.0,10.0,11.0,7.0,6.0,3.0,6.0,5.0,4.0,3.0,5.0,6.0,2.0,1.0,2.0,,1.0,4.0,, M85016,16.0,24.0,21.0,30.0,38.0,31.0,25.0,40.0,31.0,34.0,43.0,34.0,43.0,45.0,31.0,39.0,37.0,41.0,34.0,32.0,47.0,31.0,38.0,36.0,34.0,25.0,42.0,28.0,38.0,39.0,36.0,31.0,57.0,34.0,41.0,45.0,46.0,40.0,46.0,51.0,30.0,40.0,45.0,30.0,41.0,28.0,36.0,35.0,30.0,31.0,30.0,34.0,28.0,25.0,40.0,30.0,49.0,32.0,29.0,35.0,41.0,36.0,39.0,36.0,33.0,24.0,26.0,25.0,18.0,26.0,23.0,25.0,16.0,17.0,23.0,16.0,17.0,19.0,14.0,8.0,11.0,16.0,9.0,11.0,5.0,4.0,2.0,6.0,6.0,5.0,3.0,4.0,3.0,1.0,1.0,5.0 M85018,51.0,65.0,66.0,50.0,53.0,70.0,68.0,64.0,62.0,74.0,79.0,74.0,66.0,78.0,64.0,63.0,59.0,62.0,64.0,69.0,60.0,63.0,68.0,56.0,69.0,70.0,68.0,69.0,65.0,73.0,72.0,76.0,75.0,82.0,74.0,72.0,70.0,87.0,69.0,74.0,63.0,68.0,72.0,71.0,68.0,62.0,67.0,56.0,55.0,48.0,45.0,56.0,59.0,52.0,55.0,65.0,68.0,63.0,69.0,79.0,70.0,71.0,75.0,62.0,58.0,42.0,77.0,61.0,37.0,43.0,59.0,42.0,48.0,38.0,33.0,37.0,41.0,39.0,34.0,30.0,32.0,31.0,23.0,26.0,16.0,22.0,25.0,21.0,16.0,7.0,9.0,8.0,5.0,4.0,4.0,5.0 M85019,107.0,112.0,114.0,115.0,93.0,128.0,115.0,120.0,134.0,138.0,125.0,122.0,131.0,123.0,119.0,130.0,117.0,138.0,142.0,113.0,107.0,116.0,113.0,119.0,126.0,137.0,128.0,128.0,128.0,132.0,105.0,120.0,139.0,130.0,140.0,121.0,128.0,127.0,120.0,131.0,138.0,124.0,132.0,136.0,134.0,118.0,102.0,112.0,114.0,97.0,110.0,94.0,103.0,114.0,97.0,118.0,114.0,120.0,111.0,92.0,97.0,92.0,103.0,83.0,78.0,81.0,68.0,84.0,73.0,73.0,59.0,56.0,59.0,68.0,38.0,40.0,56.0,45.0,51.0,49.0,54.0,41.0,46.0,35.0,22.0,33.0,24.0,20.0,20.0,11.0,11.0,9.0,13.0,3.0,2.0,7.0 M85020,132.0,128.0,140.0,135.0,123.0,159.0,158.0,162.0,181.0,178.0,185.0,199.0,207.0,176.0,186.0,216.0,201.0,187.0,198.0,171.0,186.0,178.0,161.0,173.0,161.0,189.0,173.0,180.0,179.0,182.0,183.0,159.0,154.0,167.0,150.0,144.0,154.0,159.0,151.0,170.0,167.0,171.0,173.0,157.0,168.0,149.0,174.0,139.0,186.0,128.0,119.0,140.0,115.0,134.0,118.0,128.0,126.0,95.0,94.0,123.0,97.0,85.0,73.0,86.0,73.0,76.0,58.0,57.0,56.0,42.0,51.0,35.0,35.0,31.0,33.0,23.0,24.0,22.0,17.0,15.0,14.0,17.0,12.0,15.0,7.0,15.0,14.0,9.0,14.0,9.0,8.0,1.0,6.0,4.0,4.0,3.0 M85021,34.0,24.0,23.0,18.0,13.0,18.0,24.0,17.0,14.0,18.0,17.0,16.0,18.0,19.0,18.0,21.0,21.0,9.0,25.0,20.0,14.0,20.0,20.0,28.0,37.0,54.0,57.0,43.0,60.0,60.0,63.0,64.0,63.0,58.0,75.0,51.0,61.0,56.0,53.0,49.0,38.0,49.0,41.0,47.0,63.0,43.0,50.0,37.0,39.0,44.0,30.0,30.0,34.0,32.0,33.0,26.0,32.0,23.0,22.0,15.0,18.0,28.0,21.0,18.0,12.0,16.0,9.0,12.0,15.0,6.0,14.0,11.0,10.0,16.0,4.0,9.0,5.0,8.0,7.0,2.0,3.0,3.0,6.0,5.0,4.0,4.0,1.0,3.0,1.0,1.0,1.0,1.0,,,, M85023,39.0,40.0,53.0,59.0,50.0,53.0,55.0,67.0,75.0,67.0,93.0,66.0,69.0,97.0,84.0,84.0,85.0,90.0,80.0,62.0,58.0,65.0,58.0,53.0,60.0,63.0,48.0,51.0,63.0,44.0,54.0,67.0,54.0,76.0,57.0,75.0,65.0,64.0,57.0,61.0,63.0,53.0,57.0,74.0,55.0,52.0,49.0,49.0,57.0,52.0,64.0,72.0,55.0,54.0,54.0,55.0,64.0,56.0,51.0,66.0,51.0,54.0,48.0,41.0,38.0,46.0,31.0,43.0,40.0,20.0,41.0,31.0,27.0,37.0,28.0,20.0,25.0,37.0,22.0,26.0,21.0,15.0,16.0,14.0,23.0,11.0,10.0,6.0,5.0,6.0,8.0,8.0,1.0,2.0,,3.0 M85024,54.0,46.0,48.0,40.0,53.0,45.0,54.0,59.0,43.0,67.0,53.0,63.0,51.0,64.0,57.0,53.0,72.0,59.0,58.0,63.0,66.0,56.0,64.0,58.0,74.0,63.0,73.0,62.0,58.0,57.0,64.0,67.0,66.0,57.0,67.0,64.0,52.0,84.0,49.0,67.0,58.0,76.0,51.0,44.0,50.0,53.0,44.0,51.0,57.0,62.0,46.0,62.0,40.0,45.0,57.0,50.0,39.0,50.0,35.0,37.0,44.0,32.0,32.0,35.0,24.0,25.0,19.0,25.0,21.0,21.0,14.0,20.0,16.0,18.0,5.0,6.0,10.0,10.0,6.0,2.0,7.0,10.0,6.0,6.0,1.0,1.0,7.0,2.0,5.0,5.0,1.0,3.0,1.0,3.0,1.0,7.0 M85025,83.0,60.0,71.0,76.0,53.0,55.0,68.0,53.0,56.0,72.0,67.0,46.0,66.0,57.0,55.0,38.0,38.0,51.0,66.0,94.0,115.0,137.0,230.0,298.0,296.0,330.0,295.0,294.0,257.0,276.0,264.0,264.0,232.0,253.0,249.0,263.0,240.0,232.0,190.0,176.0,208.0,180.0,154.0,147.0,134.0,129.0,108.0,106.0,106.0,92.0,78.0,74.0,64.0,82.0,64.0,67.0,60.0,66.0,62.0,63.0,62.0,53.0,52.0,54.0,44.0,49.0,46.0,24.0,30.0,25.0,29.0,24.0,25.0,23.0,20.0,14.0,12.0,21.0,14.0,15.0,13.0,8.0,7.0,8.0,3.0,8.0,5.0,6.0,,2.0,1.0,3.0,5.0,,3.0,5.0 M85026,48.0,47.0,45.0,70.0,67.0,60.0,77.0,75.0,86.0,79.0,94.0,79.0,78.0,89.0,72.0,89.0,69.0,78.0,92.0,67.0,78.0,71.0,70.0,64.0,69.0,91.0,70.0,99.0,82.0,80.0,85.0,80.0,80.0,83.0,84.0,66.0,87.0,89.0,86.0,89.0,94.0,100.0,97.0,97.0,94.0,68.0,83.0,79.0,95.0,90.0,111.0,93.0,106.0,94.0,105.0,101.0,122.0,93.0,119.0,107.0,96.0,125.0,104.0,98.0,103.0,94.0,123.0,107.0,100.0,97.0,86.0,113.0,99.0,94.0,66.0,95.0,92.0,102.0,102.0,53.0,72.0,54.0,54.0,36.0,29.0,32.0,36.0,23.0,14.0,18.0,15.0,6.0,10.0,1.0,8.0,11.0 M85027,45.0,29.0,51.0,32.0,42.0,42.0,54.0,52.0,54.0,35.0,50.0,51.0,58.0,70.0,61.0,60.0,44.0,54.0,52.0,48.0,59.0,49.0,50.0,46.0,43.0,43.0,46.0,51.0,58.0,64.0,53.0,62.0,52.0,61.0,58.0,52.0,36.0,61.0,38.0,42.0,55.0,38.0,48.0,50.0,34.0,59.0,40.0,45.0,47.0,43.0,52.0,41.0,63.0,60.0,51.0,54.0,66.0,74.0,68.0,56.0,49.0,61.0,50.0,50.0,46.0,51.0,45.0,44.0,45.0,31.0,46.0,36.0,39.0,37.0,34.0,29.0,42.0,27.0,25.0,24.0,18.0,17.0,17.0,23.0,12.0,17.0,14.0,8.0,9.0,6.0,6.0,3.0,4.0,1.0,1.0,8.0 M85028,119.0,115.0,132.0,152.0,150.0,169.0,155.0,175.0,162.0,174.0,186.0,162.0,180.0,174.0,191.0,164.0,175.0,168.0,150.0,152.0,124.0,116.0,137.0,134.0,138.0,165.0,155.0,135.0,140.0,132.0,151.0,136.0,153.0,144.0,182.0,195.0,194.0,202.0,203.0,191.0,181.0,187.0,188.0,199.0,190.0,187.0,155.0,191.0,194.0,162.0,174.0,149.0,175.0,168.0,158.0,169.0,162.0,142.0,170.0,153.0,153.0,141.0,126.0,142.0,146.0,107.0,121.0,103.0,74.0,105.0,125.0,119.0,107.0,100.0,97.0,83.0,92.0,97.0,79.0,57.0,75.0,56.0,66.0,55.0,37.0,43.0,35.0,35.0,29.0,23.0,14.0,14.0,12.0,12.0,3.0,14.0 M85029,74.0,83.0,77.0,83.0,105.0,79.0,107.0,106.0,118.0,121.0,128.0,124.0,135.0,106.0,111.0,122.0,118.0,110.0,127.0,107.0,90.0,101.0,90.0,117.0,117.0,110.0,120.0,115.0,107.0,115.0,117.0,146.0,118.0,116.0,122.0,131.0,110.0,143.0,164.0,116.0,123.0,134.0,134.0,151.0,136.0,147.0,126.0,129.0,124.0,105.0,122.0,113.0,122.0,124.0,120.0,112.0,114.0,109.0,114.0,132.0,109.0,134.0,97.0,115.0,110.0,95.0,84.0,89.0,100.0,83.0,79.0,89.0,86.0,85.0,65.0,73.0,72.0,75.0,70.0,57.0,78.0,54.0,46.0,38.0,36.0,39.0,26.0,28.0,21.0,23.0,14.0,12.0,17.0,12.0,6.0,12.0 M85030,90.0,83.0,104.0,99.0,108.0,105.0,109.0,91.0,127.0,124.0,118.0,128.0,132.0,151.0,136.0,136.0,133.0,114.0,131.0,92.0,93.0,101.0,93.0,98.0,84.0,106.0,134.0,101.0,110.0,121.0,133.0,119.0,150.0,137.0,147.0,130.0,144.0,130.0,142.0,151.0,140.0,121.0,111.0,118.0,126.0,111.0,117.0,117.0,107.0,108.0,115.0,123.0,112.0,96.0,125.0,101.0,118.0,104.0,111.0,117.0,106.0,99.0,99.0,95.0,104.0,87.0,84.0,83.0,77.0,78.0,67.0,68.0,69.0,50.0,60.0,50.0,59.0,46.0,53.0,44.0,44.0,40.0,33.0,28.0,24.0,24.0,19.0,21.0,10.0,8.0,9.0,4.0,3.0,1.0,3.0,4.0 M85031,57.0,57.0,63.0,61.0,60.0,65.0,81.0,70.0,58.0,76.0,59.0,73.0,86.0,91.0,86.0,61.0,83.0,59.0,55.0,65.0,60.0,62.0,73.0,57.0,56.0,80.0,53.0,66.0,74.0,80.0,65.0,77.0,76.0,76.0,97.0,88.0,81.0,60.0,77.0,85.0,74.0,68.0,83.0,58.0,65.0,68.0,52.0,51.0,38.0,51.0,60.0,68.0,51.0,70.0,70.0,66.0,70.0,54.0,74.0,62.0,70.0,66.0,67.0,65.0,44.0,58.0,47.0,45.0,49.0,52.0,36.0,44.0,44.0,36.0,45.0,47.0,48.0,35.0,45.0,29.0,30.0,23.0,21.0,24.0,14.0,23.0,11.0,7.0,13.0,5.0,2.0,4.0,6.0,6.0,3.0,14.0 M85033,65.0,60.0,76.0,106.0,88.0,102.0,107.0,113.0,117.0,143.0,115.0,117.0,129.0,132.0,130.0,112.0,107.0,112.0,95.0,96.0,83.0,74.0,87.0,80.0,81.0,74.0,88.0,71.0,81.0,93.0,75.0,111.0,97.0,102.0,101.0,117.0,100.0,137.0,105.0,115.0,117.0,127.0,120.0,120.0,133.0,109.0,112.0,130.0,114.0,115.0,123.0,120.0,134.0,128.0,128.0,123.0,119.0,115.0,111.0,117.0,129.0,101.0,112.0,118.0,92.0,102.0,94.0,84.0,79.0,71.0,82.0,75.0,88.0,52.0,75.0,59.0,78.0,92.0,94.0,42.0,56.0,71.0,50.0,40.0,29.0,31.0,33.0,20.0,27.0,17.0,20.0,5.0,10.0,11.0,3.0,21.0 M85034,105.0,92.0,114.0,123.0,115.0,130.0,126.0,143.0,160.0,142.0,148.0,151.0,164.0,160.0,166.0,159.0,177.0,174.0,189.0,156.0,171.0,177.0,163.0,172.0,162.0,148.0,150.0,121.0,172.0,118.0,126.0,119.0,115.0,123.0,125.0,118.0,100.0,120.0,133.0,136.0,119.0,110.0,136.0,98.0,111.0,120.0,113.0,94.0,95.0,89.0,101.0,111.0,95.0,86.0,93.0,90.0,75.0,79.0,79.0,75.0,61.0,78.0,48.0,50.0,56.0,62.0,36.0,54.0,54.0,31.0,27.0,25.0,22.0,25.0,17.0,24.0,16.0,23.0,21.0,13.0,14.0,12.0,14.0,6.0,5.0,12.0,10.0,7.0,7.0,5.0,4.0,9.0,2.0,2.0,4.0,4.0 M85035,31.0,32.0,37.0,42.0,51.0,34.0,38.0,30.0,35.0,46.0,33.0,40.0,40.0,35.0,40.0,44.0,47.0,43.0,35.0,39.0,50.0,33.0,32.0,38.0,34.0,43.0,30.0,29.0,39.0,20.0,34.0,46.0,43.0,40.0,33.0,40.0,36.0,45.0,49.0,36.0,31.0,39.0,35.0,31.0,40.0,26.0,36.0,36.0,33.0,39.0,37.0,39.0,40.0,42.0,43.0,35.0,42.0,30.0,31.0,41.0,41.0,25.0,21.0,25.0,16.0,16.0,19.0,25.0,26.0,16.0,19.0,15.0,14.0,23.0,11.0,15.0,12.0,8.0,21.0,12.0,14.0,7.0,8.0,8.0,3.0,4.0,4.0,3.0,7.0,5.0,,1.0,2.0,,1.0,2.0 M85037,34.0,49.0,36.0,40.0,38.0,41.0,53.0,66.0,46.0,63.0,54.0,63.0,71.0,66.0,70.0,57.0,68.0,64.0,62.0,54.0,47.0,44.0,43.0,39.0,53.0,54.0,57.0,55.0,53.0,38.0,50.0,51.0,62.0,57.0,61.0,50.0,55.0,74.0,50.0,69.0,55.0,72.0,73.0,58.0,67.0,70.0,72.0,52.0,64.0,66.0,69.0,65.0,73.0,54.0,64.0,80.0,78.0,51.0,59.0,60.0,54.0,52.0,65.0,53.0,49.0,45.0,49.0,53.0,55.0,44.0,48.0,56.0,38.0,37.0,40.0,47.0,39.0,38.0,47.0,27.0,34.0,24.0,31.0,22.0,16.0,13.0,16.0,9.0,14.0,6.0,12.0,6.0,2.0,6.0,4.0,6.0 M85041,19.0,23.0,24.0,23.0,24.0,32.0,35.0,36.0,37.0,33.0,31.0,29.0,40.0,26.0,43.0,31.0,31.0,33.0,93.0,171.0,364.0,443.0,465.0,488.0,505.0,492.0,386.0,406.0,358.0,296.0,281.0,230.0,219.0,160.0,174.0,152.0,121.0,119.0,120.0,94.0,87.0,68.0,85.0,59.0,38.0,46.0,40.0,30.0,35.0,24.0,38.0,28.0,24.0,26.0,23.0,17.0,20.0,20.0,21.0,22.0,22.0,20.0,17.0,17.0,19.0,22.0,14.0,17.0,17.0,9.0,12.0,15.0,11.0,9.0,14.0,13.0,16.0,11.0,15.0,5.0,15.0,3.0,4.0,4.0,3.0,7.0,6.0,6.0,2.0,7.0,2.0,2.0,,2.0,2.0,3.0 M85042,11.0,18.0,20.0,21.0,17.0,27.0,20.0,27.0,25.0,25.0,22.0,15.0,34.0,29.0,34.0,27.0,27.0,35.0,38.0,20.0,31.0,37.0,42.0,39.0,51.0,65.0,44.0,61.0,56.0,52.0,43.0,46.0,59.0,57.0,46.0,49.0,42.0,46.0,51.0,48.0,43.0,45.0,41.0,45.0,36.0,31.0,38.0,35.0,35.0,28.0,31.0,32.0,37.0,28.0,24.0,26.0,29.0,34.0,28.0,23.0,24.0,23.0,30.0,26.0,21.0,24.0,20.0,24.0,23.0,18.0,31.0,30.0,15.0,18.0,15.0,19.0,17.0,12.0,18.0,14.0,13.0,11.0,10.0,9.0,5.0,5.0,9.0,5.0,5.0,7.0,5.0,2.0,1.0,2.0,1.0,1.0 M85043,26.0,20.0,21.0,22.0,20.0,20.0,36.0,35.0,33.0,31.0,40.0,42.0,32.0,29.0,53.0,39.0,46.0,35.0,32.0,26.0,32.0,27.0,29.0,17.0,24.0,22.0,29.0,25.0,35.0,27.0,27.0,35.0,30.0,31.0,24.0,25.0,31.0,26.0,23.0,21.0,25.0,23.0,33.0,32.0,25.0,25.0,26.0,18.0,34.0,24.0,26.0,26.0,21.0,23.0,25.0,28.0,26.0,17.0,34.0,21.0,33.0,18.0,20.0,14.0,26.0,21.0,15.0,17.0,25.0,11.0,19.0,16.0,22.0,19.0,15.0,16.0,19.0,16.0,12.0,8.0,9.0,5.0,5.0,6.0,5.0,5.0,7.0,4.0,2.0,5.0,2.0,1.0,3.0,3.0,,6.0 M85046,191.0,204.0,246.0,234.0,265.0,277.0,309.0,326.0,337.0,346.0,371.0,373.0,383.0,380.0,353.0,329.0,361.0,371.0,309.0,268.0,263.0,282.0,259.0,251.0,237.0,272.0,241.0,239.0,215.0,243.0,253.0,264.0,270.0,299.0,327.0,305.0,337.0,323.0,318.0,338.0,313.0,360.0,375.0,347.0,350.0,387.0,344.0,361.0,345.0,367.0,348.0,326.0,347.0,392.0,409.0,353.0,393.0,357.0,350.0,368.0,422.0,339.0,327.0,334.0,322.0,280.0,284.0,292.0,259.0,268.0,240.0,260.0,220.0,225.0,241.0,251.0,242.0,269.0,261.0,198.0,217.0,211.0,173.0,157.0,136.0,120.0,112.0,116.0,99.0,71.0,66.0,44.0,47.0,34.0,26.0,53.0 M85047,22.0,29.0,26.0,33.0,26.0,31.0,28.0,41.0,37.0,36.0,38.0,40.0,40.0,48.0,43.0,43.0,30.0,37.0,33.0,35.0,25.0,39.0,34.0,28.0,37.0,33.0,28.0,33.0,40.0,37.0,34.0,38.0,39.0,42.0,45.0,58.0,51.0,37.0,44.0,47.0,50.0,45.0,46.0,35.0,38.0,40.0,40.0,28.0,37.0,29.0,40.0,39.0,34.0,28.0,45.0,39.0,27.0,40.0,32.0,38.0,38.0,32.0,23.0,46.0,44.0,24.0,35.0,29.0,38.0,19.0,26.0,39.0,22.0,26.0,23.0,16.0,30.0,18.0,23.0,26.0,18.0,14.0,14.0,10.0,11.0,7.0,9.0,13.0,4.0,3.0,8.0,5.0,1.0,2.0,1.0,2.0 M85048,55.0,51.0,57.0,51.0,52.0,56.0,67.0,63.0,50.0,56.0,60.0,84.0,72.0,77.0,70.0,65.0,69.0,61.0,54.0,59.0,79.0,63.0,69.0,57.0,60.0,70.0,67.0,81.0,80.0,77.0,77.0,67.0,75.0,73.0,79.0,84.0,89.0,83.0,64.0,85.0,79.0,69.0,76.0,51.0,71.0,72.0,51.0,57.0,57.0,51.0,56.0,61.0,69.0,98.0,93.0,73.0,73.0,86.0,81.0,87.0,89.0,65.0,67.0,74.0,69.0,59.0,61.0,68.0,36.0,51.0,56.0,35.0,32.0,57.0,34.0,57.0,37.0,49.0,53.0,40.0,44.0,42.0,35.0,22.0,25.0,18.0,23.0,21.0,20.0,10.0,10.0,11.0,7.0,1.0,2.0,3.0 M85051,57.0,62.0,53.0,53.0,60.0,51.0,54.0,48.0,59.0,55.0,43.0,57.0,54.0,55.0,65.0,67.0,54.0,71.0,70.0,57.0,70.0,65.0,71.0,87.0,74.0,107.0,81.0,88.0,81.0,69.0,84.0,63.0,67.0,84.0,77.0,69.0,85.0,65.0,55.0,72.0,69.0,84.0,76.0,68.0,61.0,54.0,70.0,64.0,64.0,53.0,57.0,43.0,47.0,56.0,41.0,34.0,39.0,30.0,32.0,39.0,30.0,25.0,28.0,23.0,20.0,21.0,16.0,32.0,17.0,21.0,12.0,19.0,20.0,23.0,8.0,5.0,8.0,6.0,3.0,3.0,5.0,5.0,7.0,4.0,3.0,5.0,4.0,3.0,2.0,,2.0,5.0,1.0,3.0,1.0,3.0 M85053,49.0,42.0,52.0,44.0,43.0,45.0,51.0,55.0,59.0,75.0,54.0,57.0,63.0,48.0,60.0,55.0,50.0,75.0,48.0,61.0,51.0,45.0,59.0,55.0,54.0,56.0,53.0,57.0,49.0,44.0,50.0,48.0,61.0,50.0,54.0,48.0,40.0,45.0,58.0,59.0,73.0,63.0,42.0,47.0,44.0,60.0,52.0,66.0,51.0,48.0,39.0,48.0,40.0,40.0,40.0,37.0,34.0,29.0,40.0,41.0,34.0,26.0,30.0,24.0,27.0,31.0,23.0,20.0,22.0,22.0,14.0,13.0,16.0,18.0,16.0,8.0,7.0,7.0,5.0,7.0,8.0,10.0,3.0,4.0,4.0,5.0,7.0,2.0,3.0,2.0,1.0,,2.0,2.0,1.0,1.0 M85055,23.0,24.0,21.0,21.0,36.0,31.0,30.0,38.0,34.0,36.0,48.0,45.0,54.0,42.0,60.0,45.0,45.0,38.0,42.0,52.0,69.0,69.0,84.0,105.0,82.0,95.0,100.0,95.0,98.0,101.0,72.0,71.0,56.0,63.0,73.0,58.0,65.0,72.0,65.0,62.0,68.0,45.0,51.0,57.0,56.0,69.0,45.0,46.0,55.0,50.0,42.0,33.0,36.0,24.0,24.0,27.0,26.0,29.0,23.0,25.0,20.0,28.0,28.0,17.0,24.0,20.0,25.0,16.0,21.0,26.0,21.0,13.0,21.0,10.0,6.0,13.0,18.0,8.0,11.0,5.0,6.0,3.0,9.0,5.0,14.0,3.0,7.0,6.0,6.0,4.0,1.0,1.0,2.0,2.0,2.0,2.0 M85056,24.0,36.0,32.0,45.0,38.0,36.0,43.0,49.0,43.0,38.0,45.0,46.0,53.0,45.0,45.0,52.0,45.0,55.0,46.0,50.0,44.0,52.0,38.0,53.0,55.0,51.0,38.0,40.0,45.0,60.0,61.0,48.0,49.0,59.0,69.0,59.0,56.0,80.0,45.0,61.0,61.0,54.0,46.0,61.0,61.0,65.0,59.0,57.0,57.0,50.0,54.0,52.0,55.0,51.0,54.0,55.0,50.0,60.0,46.0,59.0,52.0,44.0,42.0,46.0,35.0,49.0,42.0,33.0,33.0,33.0,28.0,20.0,26.0,30.0,22.0,33.0,23.0,16.0,23.0,12.0,20.0,14.0,20.0,12.0,12.0,12.0,11.0,9.0,9.0,3.0,5.0,5.0,4.0,1.0,2.0,3.0 M85058,79.0,91.0,93.0,70.0,78.0,86.0,74.0,87.0,91.0,111.0,110.0,103.0,113.0,104.0,91.0,88.0,84.0,81.0,91.0,74.0,72.0,80.0,85.0,94.0,115.0,139.0,165.0,148.0,162.0,165.0,176.0,152.0,157.0,161.0,175.0,182.0,162.0,160.0,158.0,144.0,124.0,137.0,152.0,149.0,171.0,128.0,110.0,114.0,112.0,104.0,111.0,107.0,101.0,88.0,101.0,74.0,93.0,94.0,72.0,77.0,66.0,76.0,74.0,67.0,57.0,55.0,53.0,49.0,51.0,45.0,41.0,36.0,34.0,28.0,38.0,32.0,34.0,34.0,31.0,26.0,31.0,24.0,22.0,19.0,19.0,12.0,16.0,17.0,15.0,13.0,9.0,14.0,7.0,4.0,2.0,3.0 M85060,72.0,89.0,89.0,110.0,87.0,74.0,96.0,75.0,106.0,107.0,96.0,95.0,103.0,83.0,100.0,101.0,93.0,92.0,104.0,84.0,62.0,86.0,82.0,77.0,91.0,111.0,91.0,91.0,85.0,111.0,108.0,90.0,115.0,122.0,111.0,121.0,132.0,132.0,103.0,127.0,110.0,96.0,105.0,105.0,103.0,98.0,85.0,79.0,76.0,66.0,82.0,80.0,97.0,102.0,89.0,99.0,105.0,119.0,86.0,109.0,117.0,99.0,80.0,98.0,75.0,86.0,89.0,72.0,83.0,54.0,68.0,55.0,59.0,52.0,62.0,46.0,51.0,48.0,53.0,31.0,48.0,39.0,31.0,32.0,40.0,26.0,27.0,24.0,18.0,13.0,11.0,10.0,10.0,4.0,8.0,7.0 M85061,84.0,73.0,82.0,86.0,85.0,74.0,86.0,85.0,91.0,78.0,99.0,95.0,117.0,108.0,107.0,100.0,119.0,109.0,95.0,86.0,97.0,113.0,112.0,115.0,118.0,89.0,118.0,105.0,110.0,118.0,99.0,89.0,92.0,74.0,101.0,95.0,92.0,83.0,92.0,78.0,83.0,76.0,71.0,72.0,86.0,72.0,73.0,60.0,64.0,62.0,74.0,58.0,61.0,75.0,67.0,68.0,66.0,60.0,52.0,55.0,60.0,57.0,51.0,61.0,53.0,42.0,46.0,48.0,48.0,36.0,40.0,27.0,31.0,21.0,22.0,29.0,15.0,17.0,16.0,19.0,11.0,10.0,11.0,9.0,9.0,4.0,5.0,7.0,9.0,6.0,5.0,8.0,4.0,3.0,3.0,5.0 M85062,17.0,10.0,29.0,21.0,23.0,24.0,40.0,27.0,42.0,41.0,40.0,40.0,50.0,48.0,45.0,39.0,45.0,38.0,40.0,39.0,37.0,19.0,28.0,29.0,24.0,24.0,26.0,33.0,23.0,23.0,36.0,29.0,27.0,29.0,34.0,23.0,35.0,21.0,28.0,40.0,30.0,33.0,35.0,27.0,34.0,39.0,33.0,29.0,31.0,25.0,22.0,23.0,38.0,24.0,30.0,30.0,31.0,24.0,26.0,29.0,27.0,23.0,33.0,21.0,20.0,19.0,25.0,29.0,16.0,19.0,24.0,19.0,31.0,15.0,26.0,25.0,19.0,27.0,19.0,7.0,7.0,13.0,11.0,5.0,6.0,11.0,9.0,7.0,7.0,1.0,2.0,2.0,1.0,3.0,1.0,2.0 M85063,243.0,267.0,289.0,280.0,279.0,289.0,301.0,306.0,345.0,384.0,351.0,362.0,359.0,393.0,410.0,398.0,388.0,369.0,407.0,333.0,345.0,353.0,379.0,357.0,394.0,385.0,403.0,414.0,415.0,463.0,421.0,426.0,432.0,458.0,454.0,488.0,461.0,468.0,461.0,470.0,461.0,453.0,518.0,453.0,487.0,473.0,413.0,417.0,377.0,414.0,419.0,437.0,436.0,387.0,441.0,448.0,414.0,417.0,413.0,408.0,411.0,397.0,392.0,340.0,349.0,325.0,271.0,283.0,285.0,216.0,250.0,228.0,205.0,217.0,194.0,195.0,168.0,199.0,153.0,151.0,147.0,139.0,115.0,98.0,80.0,87.0,66.0,73.0,67.0,42.0,57.0,33.0,20.0,16.0,13.0,33.0 M85065,69.0,79.0,84.0,74.0,80.0,73.0,91.0,100.0,92.0,89.0,93.0,99.0,92.0,87.0,81.0,58.0,93.0,76.0,93.0,77.0,61.0,55.0,69.0,66.0,71.0,78.0,71.0,91.0,83.0,98.0,104.0,107.0,108.0,99.0,121.0,113.0,127.0,127.0,105.0,124.0,109.0,125.0,91.0,104.0,109.0,111.0,84.0,80.0,79.0,92.0,98.0,82.0,83.0,91.0,82.0,80.0,85.0,83.0,107.0,93.0,110.0,88.0,75.0,88.0,89.0,78.0,75.0,72.0,70.0,69.0,44.0,44.0,53.0,50.0,56.0,61.0,46.0,45.0,52.0,41.0,45.0,35.0,30.0,22.0,25.0,25.0,23.0,19.0,28.0,18.0,18.0,12.0,15.0,3.0,12.0,16.0 M85066,42.0,39.0,49.0,40.0,39.0,38.0,55.0,54.0,59.0,60.0,67.0,68.0,66.0,61.0,74.0,49.0,61.0,70.0,54.0,44.0,62.0,49.0,60.0,60.0,72.0,65.0,68.0,58.0,49.0,70.0,53.0,58.0,66.0,66.0,41.0,53.0,49.0,59.0,58.0,55.0,49.0,48.0,42.0,45.0,39.0,53.0,37.0,50.0,44.0,50.0,46.0,38.0,37.0,34.0,38.0,41.0,44.0,42.0,34.0,43.0,32.0,49.0,31.0,35.0,40.0,45.0,23.0,22.0,37.0,23.0,28.0,24.0,29.0,15.0,30.0,30.0,24.0,22.0,21.0,17.0,13.0,19.0,15.0,10.0,11.0,10.0,10.0,2.0,4.0,6.0,4.0,1.0,1.0,,,2.0 M85070,79.0,83.0,98.0,87.0,85.0,83.0,87.0,91.0,103.0,96.0,115.0,107.0,92.0,108.0,93.0,105.0,83.0,86.0,81.0,84.0,82.0,76.0,79.0,86.0,108.0,95.0,104.0,108.0,99.0,104.0,107.0,115.0,133.0,120.0,121.0,147.0,147.0,136.0,136.0,136.0,149.0,123.0,118.0,136.0,125.0,119.0,105.0,95.0,91.0,84.0,92.0,83.0,93.0,75.0,94.0,78.0,88.0,65.0,90.0,94.0,76.0,66.0,78.0,53.0,63.0,61.0,57.0,55.0,43.0,32.0,42.0,46.0,32.0,30.0,23.0,23.0,23.0,33.0,25.0,17.0,16.0,27.0,20.0,18.0,12.0,13.0,15.0,10.0,14.0,10.0,6.0,5.0,7.0,2.0,,8.0 M85071,15.0,25.0,35.0,26.0,25.0,30.0,31.0,35.0,39.0,56.0,33.0,49.0,58.0,47.0,51.0,40.0,56.0,66.0,69.0,62.0,55.0,47.0,43.0,42.0,41.0,47.0,50.0,50.0,47.0,49.0,43.0,48.0,40.0,40.0,48.0,49.0,41.0,54.0,39.0,44.0,51.0,53.0,36.0,57.0,51.0,38.0,51.0,52.0,49.0,50.0,73.0,55.0,55.0,54.0,62.0,66.0,52.0,47.0,66.0,53.0,67.0,58.0,47.0,51.0,61.0,54.0,52.0,47.0,37.0,37.0,34.0,45.0,42.0,46.0,43.0,36.0,34.0,40.0,36.0,29.0,26.0,34.0,12.0,14.0,15.0,17.0,14.0,10.0,5.0,9.0,4.0,7.0,4.0,3.0,2.0,3.0 M85074,25.0,30.0,35.0,35.0,34.0,25.0,29.0,30.0,41.0,32.0,48.0,37.0,34.0,41.0,37.0,41.0,43.0,61.0,57.0,40.0,40.0,38.0,29.0,35.0,46.0,44.0,49.0,45.0,47.0,51.0,55.0,52.0,57.0,47.0,64.0,52.0,60.0,60.0,89.0,60.0,54.0,68.0,64.0,62.0,92.0,55.0,69.0,70.0,73.0,77.0,76.0,66.0,70.0,71.0,73.0,64.0,62.0,58.0,69.0,74.0,57.0,53.0,56.0,45.0,41.0,49.0,44.0,45.0,57.0,38.0,36.0,41.0,41.0,42.0,41.0,38.0,36.0,36.0,36.0,16.0,17.0,15.0,17.0,9.0,6.0,7.0,6.0,4.0,7.0,5.0,7.0,3.0,2.0,5.0,2.0,4.0 M85076,44.0,46.0,71.0,52.0,59.0,55.0,64.0,62.0,70.0,80.0,82.0,84.0,85.0,93.0,90.0,97.0,84.0,99.0,82.0,82.0,75.0,53.0,64.0,70.0,57.0,58.0,56.0,63.0,50.0,36.0,68.0,59.0,70.0,69.0,66.0,80.0,73.0,57.0,92.0,73.0,60.0,63.0,76.0,70.0,78.0,73.0,60.0,63.0,71.0,53.0,72.0,56.0,68.0,63.0,57.0,68.0,66.0,70.0,52.0,72.0,53.0,51.0,51.0,70.0,55.0,68.0,51.0,50.0,56.0,49.0,52.0,47.0,46.0,50.0,42.0,32.0,36.0,41.0,31.0,45.0,30.0,18.0,19.0,20.0,15.0,15.0,15.0,11.0,7.0,10.0,8.0,9.0,8.0,2.0,,5.0 M85077,41.0,41.0,40.0,38.0,40.0,54.0,45.0,59.0,56.0,50.0,63.0,67.0,65.0,57.0,64.0,55.0,66.0,60.0,58.0,44.0,44.0,61.0,37.0,30.0,32.0,53.0,56.0,53.0,51.0,40.0,46.0,46.0,53.0,40.0,62.0,63.0,56.0,49.0,66.0,54.0,55.0,54.0,56.0,49.0,69.0,71.0,79.0,81.0,46.0,80.0,73.0,77.0,58.0,93.0,71.0,67.0,69.0,67.0,80.0,63.0,70.0,62.0,61.0,48.0,42.0,54.0,63.0,53.0,40.0,52.0,55.0,45.0,55.0,53.0,37.0,58.0,47.0,47.0,38.0,33.0,38.0,37.0,20.0,22.0,18.0,15.0,33.0,14.0,22.0,14.0,10.0,9.0,4.0,2.0,4.0,5.0 M85078,49.0,52.0,39.0,48.0,66.0,53.0,64.0,68.0,81.0,79.0,76.0,77.0,88.0,89.0,105.0,95.0,103.0,122.0,82.0,98.0,98.0,78.0,109.0,85.0,98.0,71.0,103.0,96.0,88.0,91.0,93.0,78.0,75.0,96.0,98.0,79.0,85.0,107.0,97.0,98.0,93.0,94.0,98.0,87.0,81.0,85.0,93.0,82.0,74.0,85.0,74.0,78.0,81.0,92.0,73.0,82.0,67.0,67.0,58.0,53.0,58.0,48.0,46.0,51.0,39.0,48.0,37.0,30.0,38.0,43.0,42.0,32.0,31.0,23.0,32.0,26.0,19.0,14.0,10.0,9.0,8.0,10.0,10.0,11.0,11.0,7.0,6.0,5.0,4.0,2.0,4.0,3.0,2.0,3.0,5.0,6.0 M85079,53.0,63.0,76.0,53.0,69.0,68.0,64.0,72.0,73.0,70.0,78.0,83.0,73.0,71.0,78.0,89.0,75.0,79.0,75.0,53.0,57.0,75.0,60.0,68.0,63.0,82.0,70.0,70.0,74.0,72.0,74.0,85.0,92.0,93.0,82.0,89.0,81.0,98.0,72.0,83.0,65.0,66.0,72.0,62.0,80.0,65.0,58.0,58.0,40.0,51.0,50.0,31.0,67.0,54.0,58.0,71.0,67.0,65.0,67.0,70.0,52.0,59.0,68.0,56.0,43.0,55.0,39.0,41.0,48.0,33.0,34.0,36.0,27.0,25.0,22.0,20.0,20.0,26.0,21.0,21.0,23.0,21.0,13.0,11.0,14.0,17.0,13.0,11.0,10.0,11.0,6.0,4.0,7.0,3.0,3.0,4.0 M85081,40.0,57.0,53.0,45.0,63.0,52.0,54.0,75.0,49.0,52.0,80.0,67.0,79.0,79.0,82.0,70.0,68.0,62.0,57.0,63.0,68.0,77.0,44.0,56.0,55.0,66.0,70.0,59.0,43.0,64.0,60.0,54.0,58.0,79.0,57.0,54.0,67.0,68.0,61.0,57.0,70.0,72.0,56.0,49.0,55.0,49.0,52.0,47.0,51.0,46.0,48.0,55.0,44.0,51.0,58.0,57.0,58.0,51.0,50.0,46.0,53.0,48.0,66.0,47.0,47.0,48.0,56.0,52.0,46.0,46.0,41.0,25.0,47.0,32.0,28.0,24.0,40.0,29.0,25.0,25.0,15.0,29.0,27.0,20.0,10.0,12.0,7.0,11.0,8.0,4.0,3.0,4.0,4.0,1.0,3.0,2.0 M85082,62.0,44.0,28.0,26.0,25.0,22.0,28.0,34.0,28.0,24.0,39.0,27.0,40.0,41.0,24.0,32.0,23.0,30.0,25.0,27.0,21.0,44.0,84.0,72.0,94.0,78.0,85.0,85.0,78.0,85.0,69.0,59.0,67.0,84.0,90.0,63.0,78.0,59.0,61.0,51.0,53.0,41.0,48.0,34.0,50.0,35.0,42.0,26.0,40.0,51.0,31.0,46.0,41.0,31.0,44.0,31.0,32.0,30.0,31.0,14.0,27.0,20.0,23.0,21.0,18.0,19.0,23.0,18.0,18.0,13.0,13.0,13.0,13.0,15.0,15.0,8.0,7.0,7.0,1.0,3.0,3.0,3.0,2.0,7.0,6.0,6.0,3.0,,1.0,2.0,2.0,1.0,,,2.0, M85084,39.0,39.0,46.0,44.0,49.0,54.0,50.0,50.0,50.0,46.0,51.0,54.0,45.0,46.0,55.0,46.0,40.0,50.0,29.0,51.0,49.0,44.0,47.0,65.0,55.0,60.0,65.0,76.0,65.0,60.0,57.0,53.0,62.0,64.0,67.0,62.0,59.0,64.0,64.0,51.0,55.0,58.0,51.0,57.0,55.0,32.0,35.0,35.0,44.0,43.0,41.0,46.0,31.0,39.0,35.0,33.0,33.0,32.0,17.0,29.0,31.0,28.0,34.0,24.0,20.0,24.0,24.0,14.0,16.0,10.0,17.0,12.0,17.0,7.0,11.0,4.0,9.0,10.0,9.0,4.0,11.0,5.0,11.0,5.0,4.0,9.0,4.0,4.0,2.0,6.0,5.0,3.0,5.0,2.0,1.0,3.0 M85086,53.0,77.0,84.0,61.0,60.0,71.0,60.0,80.0,76.0,79.0,76.0,78.0,66.0,68.0,90.0,87.0,56.0,76.0,64.0,67.0,61.0,69.0,50.0,53.0,41.0,54.0,45.0,71.0,73.0,62.0,85.0,76.0,77.0,108.0,83.0,85.0,95.0,78.0,96.0,70.0,69.0,70.0,82.0,71.0,81.0,77.0,67.0,72.0,53.0,63.0,86.0,65.0,71.0,67.0,60.0,61.0,51.0,67.0,56.0,67.0,69.0,64.0,53.0,57.0,53.0,49.0,47.0,39.0,45.0,42.0,34.0,27.0,29.0,36.0,35.0,30.0,35.0,25.0,20.0,19.0,40.0,22.0,22.0,16.0,13.0,16.0,12.0,10.0,9.0,6.0,5.0,7.0,5.0,3.0,, M85087,62.0,70.0,51.0,62.0,76.0,59.0,80.0,75.0,77.0,94.0,88.0,102.0,96.0,106.0,84.0,82.0,94.0,97.0,83.0,85.0,88.0,72.0,72.0,55.0,80.0,80.0,60.0,67.0,68.0,74.0,72.0,69.0,84.0,74.0,89.0,88.0,67.0,76.0,85.0,69.0,84.0,90.0,72.0,81.0,70.0,70.0,63.0,50.0,60.0,50.0,61.0,57.0,60.0,67.0,53.0,57.0,64.0,77.0,56.0,64.0,66.0,52.0,69.0,54.0,63.0,51.0,43.0,45.0,32.0,39.0,32.0,24.0,30.0,30.0,38.0,38.0,27.0,26.0,25.0,16.0,21.0,26.0,20.0,13.0,13.0,14.0,13.0,10.0,7.0,8.0,10.0,6.0,4.0,2.0,2.0,5.0 M85088,108.0,87.0,96.0,81.0,91.0,86.0,87.0,98.0,87.0,87.0,90.0,78.0,96.0,92.0,93.0,84.0,99.0,90.0,87.0,94.0,88.0,97.0,119.0,113.0,141.0,190.0,186.0,206.0,214.0,200.0,233.0,214.0,197.0,242.0,251.0,253.0,211.0,209.0,183.0,182.0,189.0,175.0,168.0,143.0,166.0,160.0,145.0,118.0,126.0,96.0,111.0,107.0,108.0,95.0,119.0,97.0,98.0,97.0,90.0,75.0,85.0,92.0,88.0,103.0,72.0,62.0,71.0,43.0,60.0,45.0,55.0,56.0,41.0,39.0,33.0,29.0,28.0,24.0,36.0,32.0,26.0,26.0,22.0,22.0,16.0,16.0,5.0,11.0,11.0,7.0,10.0,9.0,6.0,2.0,1.0,4.0 M85094,16.0,22.0,21.0,10.0,23.0,24.0,27.0,16.0,21.0,23.0,16.0,18.0,25.0,16.0,16.0,18.0,15.0,21.0,18.0,13.0,18.0,14.0,19.0,28.0,17.0,29.0,29.0,26.0,40.0,30.0,26.0,23.0,27.0,25.0,30.0,20.0,16.0,32.0,30.0,21.0,39.0,34.0,25.0,41.0,25.0,26.0,24.0,26.0,15.0,14.0,12.0,16.0,17.0,10.0,15.0,21.0,14.0,22.0,19.0,11.0,16.0,17.0,13.0,17.0,17.0,10.0,8.0,9.0,8.0,7.0,8.0,4.0,2.0,2.0,4.0,5.0,7.0,4.0,6.0,4.0,2.0,2.0,5.0,1.0,4.0,3.0,3.0,2.0,3.0,,1.0,2.0,1.0,2.0,1.0,4.0 M85097,10.0,15.0,10.0,13.0,14.0,14.0,13.0,9.0,26.0,13.0,13.0,17.0,15.0,10.0,19.0,20.0,15.0,8.0,13.0,10.0,10.0,9.0,12.0,12.0,19.0,15.0,17.0,27.0,15.0,17.0,25.0,23.0,29.0,24.0,19.0,19.0,20.0,29.0,15.0,21.0,20.0,14.0,14.0,7.0,24.0,12.0,19.0,16.0,9.0,9.0,18.0,12.0,14.0,15.0,14.0,13.0,11.0,12.0,8.0,14.0,11.0,17.0,15.0,12.0,10.0,14.0,14.0,8.0,7.0,4.0,8.0,6.0,8.0,9.0,7.0,6.0,9.0,10.0,12.0,9.0,7.0,3.0,2.0,1.0,3.0,1.0,2.0,3.0,,1.0,1.0,,2.0,1.0,,1.0 M85098,25.0,30.0,27.0,29.0,26.0,36.0,26.0,29.0,35.0,26.0,30.0,41.0,33.0,41.0,31.0,28.0,39.0,57.0,40.0,37.0,45.0,40.0,31.0,43.0,47.0,42.0,50.0,50.0,51.0,46.0,51.0,56.0,61.0,49.0,66.0,53.0,44.0,49.0,54.0,53.0,55.0,54.0,70.0,55.0,57.0,51.0,59.0,72.0,54.0,34.0,45.0,50.0,55.0,47.0,49.0,33.0,43.0,31.0,29.0,23.0,29.0,31.0,27.0,24.0,31.0,19.0,27.0,19.0,14.0,19.0,21.0,10.0,12.0,12.0,13.0,6.0,11.0,9.0,3.0,9.0,10.0,4.0,7.0,6.0,7.0,8.0,3.0,6.0,4.0,,5.0,2.0,3.0,2.0,1.0,2.0 M85105,35.0,36.0,43.0,39.0,26.0,36.0,35.0,50.0,39.0,37.0,38.0,29.0,39.0,40.0,31.0,26.0,39.0,24.0,33.0,37.0,38.0,34.0,36.0,25.0,34.0,36.0,45.0,52.0,40.0,42.0,42.0,45.0,35.0,48.0,36.0,48.0,48.0,50.0,46.0,40.0,48.0,38.0,41.0,42.0,38.0,38.0,34.0,30.0,28.0,26.0,27.0,22.0,30.0,31.0,30.0,21.0,28.0,28.0,24.0,25.0,29.0,28.0,34.0,32.0,21.0,17.0,11.0,20.0,19.0,26.0,17.0,13.0,13.0,16.0,12.0,9.0,12.0,13.0,10.0,9.0,8.0,11.0,6.0,3.0,9.0,6.0,7.0,4.0,3.0,3.0,5.0,2.0,1.0,1.0,,3.0 M85107,27.0,24.0,26.0,26.0,24.0,26.0,28.0,24.0,33.0,33.0,27.0,36.0,31.0,23.0,37.0,27.0,23.0,30.0,39.0,45.0,27.0,32.0,34.0,23.0,33.0,33.0,33.0,32.0,36.0,22.0,39.0,36.0,36.0,26.0,36.0,37.0,30.0,26.0,37.0,29.0,34.0,23.0,26.0,27.0,25.0,18.0,18.0,24.0,27.0,17.0,19.0,19.0,23.0,23.0,20.0,14.0,26.0,26.0,17.0,16.0,16.0,17.0,13.0,22.0,11.0,14.0,16.0,20.0,15.0,8.0,8.0,12.0,8.0,3.0,6.0,8.0,6.0,10.0,6.0,4.0,5.0,2.0,2.0,5.0,2.0,2.0,3.0,1.0,1.0,,1.0,1.0,1.0,,1.0, M85108,41.0,27.0,27.0,47.0,29.0,47.0,36.0,46.0,47.0,52.0,54.0,50.0,52.0,63.0,55.0,61.0,60.0,58.0,71.0,54.0,57.0,64.0,63.0,63.0,63.0,52.0,59.0,67.0,70.0,55.0,51.0,39.0,38.0,50.0,42.0,48.0,35.0,44.0,49.0,44.0,37.0,61.0,50.0,53.0,50.0,43.0,38.0,28.0,42.0,40.0,33.0,37.0,42.0,26.0,51.0,45.0,33.0,44.0,38.0,25.0,18.0,30.0,24.0,24.0,24.0,26.0,21.0,19.0,18.0,14.0,18.0,10.0,20.0,8.0,8.0,1.0,7.0,9.0,7.0,6.0,6.0,8.0,5.0,2.0,7.0,3.0,1.0,3.0,7.0,3.0,3.0,2.0,,3.0,4.0,2.0 M85110,68.0,56.0,58.0,71.0,68.0,71.0,71.0,63.0,75.0,73.0,75.0,77.0,90.0,79.0,87.0,95.0,80.0,112.0,99.0,94.0,112.0,90.0,95.0,102.0,110.0,108.0,80.0,93.0,90.0,98.0,89.0,79.0,93.0,70.0,96.0,87.0,91.0,92.0,93.0,81.0,84.0,74.0,76.0,88.0,68.0,86.0,74.0,81.0,72.0,92.0,89.0,72.0,77.0,93.0,68.0,65.0,73.0,48.0,60.0,47.0,38.0,55.0,50.0,47.0,51.0,30.0,30.0,31.0,25.0,30.0,25.0,13.0,33.0,13.0,20.0,17.0,8.0,10.0,12.0,5.0,10.0,9.0,9.0,10.0,11.0,3.0,7.0,4.0,10.0,15.0,6.0,3.0,5.0,2.0,6.0,13.0 M85113,35.0,30.0,38.0,34.0,44.0,43.0,35.0,42.0,42.0,49.0,44.0,47.0,42.0,33.0,51.0,54.0,49.0,50.0,43.0,42.0,54.0,53.0,62.0,50.0,55.0,51.0,61.0,58.0,57.0,34.0,39.0,50.0,40.0,55.0,36.0,41.0,39.0,36.0,37.0,46.0,43.0,38.0,37.0,48.0,36.0,39.0,41.0,25.0,40.0,23.0,35.0,31.0,37.0,54.0,38.0,33.0,34.0,37.0,31.0,29.0,44.0,27.0,46.0,31.0,43.0,33.0,37.0,30.0,23.0,29.0,17.0,20.0,29.0,23.0,19.0,17.0,21.0,31.0,21.0,21.0,14.0,12.0,19.0,9.0,7.0,6.0,9.0,5.0,1.0,2.0,7.0,3.0,4.0,3.0,1.0,6.0 M85115,13.0,10.0,9.0,9.0,9.0,9.0,9.0,15.0,15.0,12.0,10.0,14.0,9.0,12.0,16.0,9.0,17.0,20.0,9.0,19.0,11.0,5.0,15.0,10.0,11.0,11.0,13.0,13.0,12.0,10.0,9.0,14.0,7.0,14.0,14.0,25.0,17.0,16.0,25.0,21.0,10.0,13.0,13.0,20.0,13.0,21.0,12.0,21.0,11.0,19.0,21.0,13.0,15.0,19.0,17.0,8.0,17.0,15.0,18.0,16.0,18.0,14.0,19.0,16.0,20.0,15.0,27.0,10.0,19.0,12.0,12.0,11.0,12.0,7.0,10.0,2.0,11.0,10.0,11.0,10.0,4.0,7.0,5.0,3.0,6.0,1.0,2.0,5.0,1.0,5.0,,,1.0,2.0,,1.0 M85116,55.0,54.0,57.0,58.0,60.0,63.0,66.0,68.0,80.0,51.0,74.0,71.0,74.0,73.0,75.0,76.0,79.0,70.0,71.0,77.0,75.0,63.0,69.0,77.0,76.0,73.0,81.0,57.0,73.0,72.0,66.0,64.0,51.0,70.0,60.0,58.0,62.0,66.0,60.0,69.0,48.0,79.0,52.0,80.0,67.0,67.0,54.0,69.0,57.0,65.0,39.0,61.0,60.0,56.0,57.0,44.0,31.0,56.0,49.0,45.0,28.0,32.0,27.0,31.0,35.0,23.0,27.0,22.0,26.0,30.0,17.0,14.0,23.0,17.0,19.0,19.0,10.0,6.0,13.0,12.0,7.0,12.0,6.0,8.0,9.0,7.0,12.0,5.0,11.0,3.0,5.0,3.0,4.0,3.0,,2.0 M85117,22.0,27.0,30.0,29.0,34.0,36.0,36.0,47.0,36.0,45.0,40.0,49.0,46.0,47.0,47.0,48.0,47.0,47.0,32.0,38.0,32.0,38.0,29.0,32.0,38.0,40.0,25.0,37.0,42.0,36.0,36.0,31.0,30.0,33.0,36.0,44.0,40.0,36.0,29.0,36.0,38.0,24.0,44.0,39.0,24.0,34.0,32.0,30.0,30.0,47.0,43.0,40.0,39.0,39.0,24.0,42.0,40.0,32.0,33.0,44.0,34.0,31.0,36.0,29.0,28.0,35.0,26.0,35.0,24.0,23.0,19.0,26.0,32.0,16.0,22.0,17.0,20.0,31.0,25.0,16.0,14.0,12.0,20.0,2.0,7.0,11.0,9.0,2.0,3.0,3.0,2.0,1.0,3.0,,1.0,3.0 M85118,12.0,18.0,12.0,11.0,15.0,19.0,25.0,11.0,24.0,19.0,22.0,20.0,25.0,26.0,17.0,24.0,29.0,21.0,18.0,18.0,23.0,21.0,19.0,20.0,12.0,12.0,21.0,18.0,18.0,16.0,25.0,14.0,18.0,11.0,23.0,13.0,23.0,15.0,21.0,21.0,19.0,23.0,17.0,21.0,25.0,21.0,13.0,28.0,17.0,15.0,24.0,15.0,25.0,25.0,23.0,31.0,13.0,19.0,26.0,16.0,29.0,20.0,28.0,18.0,18.0,16.0,17.0,23.0,13.0,21.0,14.0,18.0,13.0,18.0,18.0,11.0,10.0,11.0,18.0,12.0,8.0,9.0,12.0,4.0,10.0,13.0,8.0,7.0,7.0,6.0,1.0,3.0,1.0,1.0,2.0, M85123,51.0,71.0,62.0,49.0,53.0,68.0,77.0,71.0,71.0,68.0,67.0,68.0,88.0,55.0,83.0,76.0,103.0,105.0,76.0,92.0,91.0,84.0,70.0,84.0,82.0,83.0,87.0,79.0,85.0,95.0,83.0,73.0,85.0,73.0,68.0,82.0,82.0,77.0,75.0,76.0,87.0,72.0,60.0,64.0,68.0,64.0,55.0,64.0,86.0,66.0,58.0,70.0,68.0,59.0,62.0,62.0,59.0,56.0,45.0,42.0,31.0,31.0,32.0,23.0,20.0,19.0,31.0,14.0,20.0,13.0,16.0,24.0,21.0,26.0,13.0,8.0,7.0,3.0,9.0,1.0,4.0,7.0,9.0,5.0,3.0,7.0,4.0,5.0,10.0,5.0,9.0,3.0,4.0,6.0,1.0,10.0 M85124,46.0,62.0,52.0,50.0,64.0,67.0,63.0,56.0,58.0,73.0,69.0,65.0,87.0,64.0,68.0,72.0,60.0,55.0,81.0,74.0,69.0,106.0,141.0,162.0,206.0,210.0,226.0,174.0,174.0,165.0,165.0,166.0,156.0,159.0,146.0,149.0,153.0,144.0,150.0,164.0,121.0,125.0,127.0,118.0,89.0,84.0,96.0,78.0,85.0,67.0,66.0,63.0,61.0,58.0,57.0,60.0,52.0,49.0,60.0,58.0,55.0,57.0,48.0,45.0,46.0,40.0,51.0,42.0,30.0,27.0,29.0,27.0,35.0,23.0,16.0,21.0,12.0,17.0,15.0,18.0,20.0,15.0,8.0,10.0,7.0,10.0,13.0,10.0,3.0,5.0,5.0,3.0,1.0,4.0,1.0,5.0 M85128,29.0,19.0,25.0,29.0,32.0,18.0,33.0,46.0,22.0,30.0,32.0,41.0,32.0,43.0,35.0,34.0,35.0,44.0,53.0,45.0,39.0,45.0,45.0,45.0,36.0,46.0,48.0,39.0,32.0,38.0,37.0,32.0,34.0,30.0,44.0,44.0,51.0,42.0,43.0,45.0,52.0,40.0,52.0,42.0,35.0,38.0,41.0,37.0,45.0,45.0,36.0,30.0,31.0,37.0,31.0,32.0,34.0,30.0,30.0,24.0,32.0,30.0,20.0,26.0,26.0,26.0,17.0,21.0,17.0,18.0,13.0,15.0,15.0,19.0,8.0,13.0,10.0,9.0,4.0,8.0,7.0,5.0,7.0,6.0,6.0,6.0,2.0,2.0,3.0,4.0,1.0,2.0,3.0,,1.0, M85136,51.0,80.0,72.0,84.0,73.0,74.0,90.0,96.0,92.0,92.0,88.0,99.0,97.0,95.0,81.0,76.0,78.0,82.0,90.0,75.0,76.0,87.0,76.0,71.0,79.0,61.0,84.0,84.0,71.0,84.0,76.0,74.0,85.0,91.0,110.0,94.0,90.0,81.0,84.0,97.0,82.0,83.0,84.0,70.0,85.0,83.0,69.0,72.0,73.0,61.0,57.0,56.0,58.0,56.0,76.0,58.0,55.0,56.0,57.0,63.0,58.0,73.0,61.0,46.0,50.0,56.0,60.0,44.0,36.0,27.0,32.0,31.0,26.0,31.0,22.0,22.0,23.0,23.0,26.0,17.0,15.0,16.0,14.0,12.0,10.0,11.0,13.0,9.0,4.0,10.0,5.0,1.0,5.0,2.0,3.0,3.0 M85139,46.0,48.0,30.0,36.0,43.0,34.0,44.0,37.0,51.0,47.0,45.0,44.0,64.0,47.0,37.0,50.0,53.0,57.0,45.0,49.0,52.0,55.0,47.0,56.0,55.0,63.0,66.0,60.0,50.0,60.0,75.0,49.0,60.0,56.0,38.0,59.0,42.0,49.0,48.0,52.0,40.0,49.0,47.0,45.0,46.0,52.0,45.0,41.0,30.0,30.0,30.0,33.0,38.0,45.0,39.0,33.0,29.0,33.0,23.0,23.0,25.0,14.0,15.0,24.0,16.0,19.0,24.0,17.0,17.0,14.0,15.0,11.0,10.0,14.0,5.0,13.0,6.0,3.0,1.0,2.0,1.0,1.0,2.0,2.0,3.0,4.0,5.0,1.0,2.0,,,1.0,,2.0,1.0,2.0 M85141,7.0,18.0,14.0,20.0,15.0,22.0,22.0,22.0,22.0,18.0,22.0,25.0,25.0,19.0,22.0,25.0,14.0,10.0,15.0,18.0,19.0,18.0,14.0,20.0,20.0,14.0,11.0,17.0,19.0,15.0,24.0,13.0,26.0,22.0,23.0,19.0,15.0,22.0,18.0,13.0,23.0,18.0,13.0,20.0,22.0,10.0,20.0,19.0,14.0,17.0,13.0,17.0,21.0,24.0,13.0,15.0,18.0,22.0,18.0,18.0,11.0,20.0,15.0,17.0,18.0,14.0,18.0,16.0,11.0,22.0,18.0,14.0,11.0,9.0,14.0,10.0,17.0,7.0,18.0,9.0,11.0,11.0,9.0,7.0,3.0,6.0,6.0,5.0,1.0,1.0,3.0,1.0,,,1.0,1.0 M85143,21.0,38.0,31.0,28.0,47.0,34.0,36.0,52.0,58.0,54.0,51.0,53.0,41.0,44.0,55.0,50.0,67.0,51.0,45.0,53.0,41.0,42.0,44.0,47.0,49.0,47.0,39.0,38.0,51.0,41.0,49.0,49.0,62.0,66.0,56.0,50.0,49.0,55.0,56.0,48.0,46.0,51.0,57.0,55.0,50.0,58.0,48.0,47.0,42.0,45.0,36.0,49.0,47.0,42.0,34.0,44.0,42.0,48.0,49.0,46.0,40.0,51.0,38.0,54.0,39.0,30.0,32.0,39.0,25.0,27.0,26.0,29.0,29.0,15.0,23.0,32.0,26.0,31.0,35.0,27.0,14.0,23.0,21.0,13.0,13.0,5.0,7.0,6.0,6.0,5.0,3.0,1.0,2.0,2.0,,4.0 M85145,53.0,47.0,66.0,55.0,48.0,59.0,66.0,38.0,55.0,64.0,48.0,70.0,66.0,78.0,62.0,83.0,73.0,68.0,102.0,75.0,69.0,80.0,46.0,67.0,76.0,77.0,75.0,77.0,77.0,69.0,76.0,65.0,77.0,72.0,83.0,82.0,88.0,80.0,81.0,67.0,70.0,55.0,70.0,64.0,72.0,68.0,66.0,57.0,71.0,60.0,44.0,68.0,60.0,64.0,67.0,52.0,76.0,71.0,51.0,44.0,54.0,47.0,69.0,55.0,57.0,49.0,40.0,45.0,40.0,30.0,40.0,44.0,33.0,31.0,25.0,23.0,32.0,31.0,20.0,21.0,17.0,16.0,8.0,12.0,15.0,14.0,7.0,15.0,9.0,10.0,6.0,6.0,3.0,2.0,7.0,3.0 M85146,49.0,62.0,51.0,45.0,78.0,46.0,37.0,52.0,56.0,44.0,41.0,50.0,52.0,47.0,46.0,54.0,62.0,55.0,58.0,50.0,61.0,44.0,56.0,44.0,69.0,75.0,66.0,66.0,65.0,71.0,65.0,52.0,64.0,74.0,76.0,69.0,69.0,70.0,71.0,61.0,59.0,61.0,49.0,58.0,55.0,61.0,53.0,56.0,55.0,45.0,45.0,46.0,43.0,49.0,35.0,42.0,47.0,46.0,36.0,27.0,18.0,18.0,16.0,23.0,22.0,18.0,17.0,17.0,12.0,20.0,15.0,6.0,17.0,15.0,7.0,12.0,8.0,5.0,3.0,3.0,4.0,4.0,4.0,2.0,2.0,2.0,3.0,1.0,4.0,3.0,2.0,4.0,,4.0,,4.0 M85149,24.0,25.0,28.0,45.0,27.0,35.0,31.0,31.0,49.0,43.0,49.0,66.0,54.0,46.0,44.0,45.0,57.0,57.0,43.0,57.0,59.0,64.0,56.0,64.0,50.0,52.0,52.0,59.0,50.0,55.0,58.0,64.0,59.0,50.0,54.0,62.0,46.0,46.0,55.0,39.0,43.0,67.0,51.0,51.0,49.0,52.0,38.0,55.0,57.0,48.0,38.0,48.0,37.0,31.0,48.0,32.0,40.0,31.0,37.0,31.0,22.0,22.0,17.0,17.0,18.0,18.0,20.0,19.0,14.0,13.0,15.0,19.0,18.0,18.0,20.0,6.0,2.0,8.0,3.0,5.0,1.0,2.0,5.0,3.0,4.0,5.0,1.0,6.0,2.0,2.0,5.0,,5.0,2.0,6.0,6.0 M85153,26.0,26.0,25.0,22.0,35.0,26.0,26.0,33.0,31.0,31.0,32.0,24.0,32.0,26.0,23.0,30.0,29.0,29.0,26.0,31.0,26.0,36.0,42.0,52.0,42.0,53.0,58.0,49.0,64.0,45.0,34.0,46.0,45.0,45.0,32.0,49.0,38.0,38.0,37.0,34.0,45.0,50.0,32.0,42.0,24.0,34.0,33.0,32.0,36.0,25.0,24.0,22.0,20.0,18.0,25.0,28.0,14.0,18.0,14.0,16.0,13.0,13.0,17.0,10.0,6.0,10.0,17.0,11.0,12.0,12.0,6.0,9.0,7.0,6.0,6.0,6.0,4.0,3.0,5.0,3.0,5.0,1.0,1.0,4.0,3.0,2.0,1.0,3.0,2.0,3.0,,,,3.0,1.0,1.0 M85154,29.0,34.0,41.0,37.0,31.0,32.0,31.0,36.0,28.0,29.0,37.0,35.0,42.0,37.0,32.0,36.0,44.0,42.0,41.0,44.0,47.0,35.0,41.0,44.0,33.0,47.0,52.0,39.0,40.0,31.0,36.0,36.0,28.0,25.0,41.0,38.0,34.0,45.0,41.0,35.0,32.0,32.0,28.0,39.0,56.0,34.0,33.0,30.0,34.0,36.0,31.0,33.0,36.0,28.0,27.0,29.0,26.0,15.0,25.0,15.0,15.0,10.0,13.0,7.0,9.0,9.0,12.0,16.0,14.0,11.0,10.0,11.0,16.0,10.0,8.0,8.0,2.0,3.0,4.0,6.0,3.0,5.0,5.0,1.0,,4.0,1.0,1.0,1.0,6.0,3.0,,,1.0,,1.0 M85155,38.0,53.0,43.0,45.0,42.0,45.0,61.0,40.0,40.0,47.0,52.0,46.0,52.0,54.0,57.0,57.0,59.0,71.0,62.0,52.0,46.0,46.0,41.0,36.0,43.0,31.0,56.0,45.0,41.0,49.0,44.0,49.0,53.0,68.0,52.0,59.0,52.0,66.0,55.0,51.0,47.0,34.0,40.0,55.0,39.0,40.0,38.0,40.0,32.0,29.0,41.0,36.0,31.0,21.0,40.0,44.0,28.0,44.0,32.0,44.0,34.0,43.0,23.0,38.0,38.0,25.0,35.0,22.0,27.0,26.0,18.0,23.0,21.0,14.0,19.0,27.0,20.0,14.0,20.0,11.0,16.0,24.0,6.0,2.0,9.0,8.0,10.0,6.0,9.0,4.0,5.0,,,,2.0,2.0 M85156,56.0,41.0,60.0,45.0,44.0,68.0,69.0,72.0,60.0,49.0,52.0,58.0,55.0,47.0,51.0,54.0,73.0,60.0,52.0,51.0,53.0,57.0,78.0,86.0,108.0,98.0,145.0,150.0,132.0,123.0,113.0,101.0,137.0,122.0,133.0,94.0,99.0,102.0,80.0,80.0,97.0,83.0,66.0,81.0,74.0,77.0,49.0,53.0,73.0,62.0,46.0,37.0,57.0,53.0,54.0,52.0,55.0,60.0,43.0,71.0,45.0,64.0,60.0,48.0,44.0,38.0,39.0,41.0,25.0,35.0,29.0,29.0,25.0,26.0,25.0,15.0,22.0,18.0,23.0,19.0,17.0,13.0,12.0,11.0,9.0,9.0,5.0,10.0,5.0,6.0,3.0,7.0,4.0,1.0,,1.0 M85158,4.0,14.0,12.0,11.0,8.0,12.0,14.0,7.0,21.0,10.0,22.0,12.0,22.0,14.0,18.0,16.0,9.0,12.0,19.0,14.0,6.0,9.0,13.0,13.0,14.0,13.0,11.0,12.0,11.0,16.0,14.0,13.0,18.0,14.0,16.0,14.0,10.0,17.0,18.0,9.0,14.0,13.0,13.0,8.0,19.0,13.0,13.0,18.0,10.0,8.0,12.0,8.0,8.0,10.0,10.0,14.0,12.0,11.0,20.0,12.0,20.0,13.0,18.0,19.0,21.0,12.0,13.0,12.0,12.0,8.0,18.0,8.0,12.0,10.0,12.0,11.0,12.0,11.0,11.0,7.0,7.0,5.0,5.0,5.0,4.0,,5.0,2.0,5.0,2.0,1.0,1.0,1.0,1.0,, M85164,81.0,97.0,92.0,74.0,109.0,108.0,103.0,100.0,95.0,93.0,97.0,114.0,125.0,116.0,134.0,117.0,124.0,137.0,107.0,121.0,98.0,98.0,115.0,137.0,130.0,102.0,125.0,96.0,129.0,101.0,132.0,128.0,112.0,102.0,120.0,126.0,134.0,131.0,115.0,118.0,112.0,141.0,137.0,123.0,146.0,127.0,134.0,112.0,108.0,94.0,101.0,123.0,94.0,92.0,80.0,77.0,97.0,68.0,62.0,69.0,60.0,58.0,49.0,53.0,42.0,46.0,50.0,58.0,42.0,36.0,30.0,39.0,39.0,31.0,18.0,28.0,14.0,12.0,18.0,12.0,12.0,13.0,15.0,25.0,8.0,13.0,14.0,9.0,11.0,10.0,5.0,4.0,8.0,4.0,2.0,6.0 M85167,15.0,27.0,14.0,16.0,21.0,19.0,19.0,24.0,26.0,17.0,31.0,22.0,22.0,30.0,23.0,20.0,27.0,45.0,247.0,473.0,565.0,481.0,475.0,422.0,396.0,356.0,357.0,332.0,298.0,264.0,261.0,267.0,245.0,153.0,76.0,64.0,56.0,59.0,57.0,47.0,52.0,48.0,59.0,109.0,61.0,58.0,40.0,34.0,27.0,35.0,28.0,28.0,25.0,22.0,22.0,32.0,23.0,32.0,30.0,21.0,19.0,22.0,24.0,22.0,16.0,12.0,20.0,18.0,15.0,8.0,18.0,20.0,13.0,14.0,18.0,19.0,15.0,16.0,16.0,15.0,21.0,10.0,16.0,13.0,4.0,10.0,11.0,6.0,6.0,3.0,3.0,2.0,2.0,1.0,2.0,4.0 M85170,41.0,43.0,59.0,53.0,37.0,36.0,47.0,45.0,43.0,45.0,43.0,38.0,36.0,32.0,34.0,39.0,47.0,42.0,38.0,29.0,39.0,48.0,38.0,52.0,60.0,56.0,48.0,55.0,44.0,59.0,50.0,47.0,49.0,59.0,51.0,49.0,47.0,61.0,52.0,45.0,53.0,40.0,48.0,48.0,46.0,57.0,48.0,33.0,29.0,34.0,45.0,48.0,54.0,44.0,38.0,35.0,22.0,28.0,20.0,15.0,27.0,15.0,16.0,17.0,18.0,20.0,17.0,13.0,19.0,16.0,15.0,16.0,20.0,20.0,13.0,7.0,10.0,7.0,6.0,6.0,5.0,4.0,6.0,4.0,4.0,5.0,3.0,3.0,3.0,2.0,2.0,3.0,3.0,3.0,1.0,3.0 M85171,12.0,19.0,17.0,22.0,24.0,20.0,21.0,19.0,24.0,23.0,21.0,17.0,21.0,21.0,19.0,21.0,21.0,14.0,23.0,26.0,16.0,16.0,15.0,17.0,16.0,12.0,19.0,21.0,20.0,20.0,20.0,20.0,22.0,24.0,25.0,18.0,26.0,25.0,23.0,19.0,24.0,22.0,19.0,23.0,24.0,19.0,18.0,12.0,24.0,18.0,21.0,23.0,11.0,18.0,22.0,27.0,16.0,23.0,9.0,20.0,18.0,21.0,15.0,19.0,20.0,14.0,14.0,13.0,24.0,12.0,9.0,18.0,9.0,8.0,10.0,9.0,13.0,6.0,6.0,5.0,4.0,8.0,7.0,2.0,3.0,2.0,5.0,4.0,3.0,,2.0,2.0,1.0,1.0,5.0,2.0 M85172,72.0,71.0,79.0,71.0,84.0,85.0,84.0,113.0,96.0,108.0,101.0,95.0,112.0,107.0,90.0,109.0,108.0,97.0,88.0,93.0,71.0,77.0,60.0,68.0,54.0,92.0,72.0,73.0,78.0,71.0,94.0,93.0,109.0,91.0,114.0,96.0,107.0,129.0,112.0,106.0,114.0,104.0,99.0,97.0,108.0,101.0,91.0,81.0,92.0,89.0,86.0,85.0,73.0,86.0,100.0,100.0,85.0,87.0,68.0,83.0,76.0,94.0,68.0,59.0,74.0,53.0,56.0,53.0,53.0,51.0,53.0,48.0,46.0,45.0,44.0,38.0,43.0,43.0,58.0,39.0,53.0,26.0,34.0,25.0,19.0,18.0,21.0,10.0,10.0,6.0,5.0,5.0,7.0,4.0,4.0,7.0 M85174,30.0,29.0,33.0,24.0,25.0,28.0,27.0,35.0,22.0,36.0,34.0,37.0,28.0,32.0,41.0,40.0,29.0,33.0,37.0,26.0,26.0,37.0,40.0,40.0,40.0,35.0,49.0,47.0,50.0,44.0,46.0,46.0,48.0,49.0,54.0,43.0,44.0,47.0,54.0,56.0,48.0,50.0,40.0,39.0,29.0,47.0,38.0,36.0,42.0,45.0,42.0,34.0,27.0,43.0,34.0,33.0,33.0,32.0,37.0,22.0,27.0,29.0,20.0,14.0,17.0,21.0,27.0,14.0,14.0,19.0,19.0,15.0,8.0,8.0,11.0,6.0,4.0,,7.0,4.0,5.0,6.0,2.0,3.0,2.0,3.0,2.0,2.0,3.0,2.0,2.0,1.0,2.0,,, M85175,22.0,27.0,39.0,45.0,39.0,34.0,42.0,52.0,41.0,44.0,54.0,50.0,62.0,54.0,60.0,62.0,73.0,52.0,56.0,46.0,49.0,47.0,49.0,58.0,51.0,44.0,49.0,52.0,49.0,50.0,36.0,38.0,47.0,56.0,52.0,46.0,51.0,47.0,49.0,56.0,69.0,68.0,60.0,64.0,74.0,71.0,68.0,60.0,64.0,75.0,63.0,91.0,69.0,77.0,70.0,74.0,71.0,89.0,91.0,87.0,93.0,83.0,82.0,75.0,73.0,81.0,86.0,64.0,58.0,62.0,69.0,64.0,59.0,72.0,60.0,59.0,63.0,83.0,73.0,60.0,48.0,44.0,54.0,34.0,28.0,38.0,31.0,18.0,28.0,12.0,12.0,10.0,8.0,5.0,4.0,12.0 M85176,39.0,42.0,31.0,35.0,22.0,34.0,34.0,28.0,36.0,27.0,38.0,37.0,46.0,28.0,38.0,34.0,34.0,40.0,36.0,42.0,45.0,45.0,60.0,55.0,72.0,69.0,81.0,84.0,75.0,63.0,49.0,73.0,53.0,51.0,48.0,47.0,53.0,43.0,45.0,40.0,42.0,53.0,45.0,42.0,44.0,41.0,36.0,29.0,31.0,29.0,43.0,32.0,40.0,36.0,26.0,30.0,31.0,36.0,27.0,26.0,27.0,18.0,27.0,30.0,24.0,16.0,20.0,21.0,20.0,14.0,7.0,19.0,23.0,17.0,14.0,4.0,8.0,8.0,9.0,9.0,2.0,5.0,3.0,6.0,6.0,3.0,2.0,3.0,4.0,4.0,1.0,1.0,1.0,3.0,,3.0 M85177,31.0,31.0,42.0,40.0,34.0,38.0,39.0,47.0,38.0,42.0,59.0,38.0,45.0,53.0,52.0,43.0,53.0,52.0,44.0,63.0,33.0,49.0,42.0,34.0,48.0,47.0,53.0,44.0,54.0,40.0,48.0,56.0,63.0,59.0,59.0,50.0,49.0,42.0,45.0,44.0,59.0,43.0,44.0,45.0,46.0,39.0,36.0,41.0,39.0,31.0,45.0,36.0,33.0,38.0,45.0,44.0,41.0,32.0,25.0,35.0,41.0,36.0,32.0,39.0,25.0,38.0,25.0,28.0,26.0,23.0,22.0,18.0,24.0,25.0,12.0,17.0,20.0,11.0,15.0,9.0,13.0,7.0,9.0,7.0,6.0,13.0,8.0,5.0,2.0,8.0,5.0,2.0,2.0,2.0,1.0,3.0 M85178,177.0,172.0,206.0,207.0,199.0,207.0,220.0,275.0,285.0,258.0,288.0,268.0,292.0,311.0,318.0,301.0,324.0,312.0,352.0,331.0,297.0,366.0,334.0,361.0,363.0,394.0,356.0,397.0,480.0,440.0,408.0,420.0,430.0,455.0,489.0,533.0,565.0,553.0,535.0,482.0,485.0,477.0,463.0,439.0,457.0,419.0,392.0,374.0,379.0,369.0,358.0,322.0,304.0,289.0,285.0,280.0,302.0,246.0,251.0,241.0,235.0,221.0,241.0,222.0,189.0,182.0,158.0,130.0,131.0,147.0,95.0,103.0,85.0,79.0,81.0,75.0,55.0,56.0,54.0,44.0,41.0,48.0,50.0,40.0,34.0,37.0,38.0,26.0,24.0,28.0,21.0,20.0,10.0,6.0,6.0,22.0 M85179,19.0,21.0,28.0,25.0,24.0,22.0,29.0,33.0,35.0,38.0,24.0,36.0,41.0,36.0,36.0,32.0,41.0,30.0,29.0,22.0,24.0,19.0,17.0,29.0,37.0,38.0,37.0,25.0,48.0,43.0,42.0,50.0,36.0,35.0,42.0,31.0,29.0,32.0,35.0,26.0,39.0,26.0,30.0,25.0,31.0,23.0,34.0,30.0,27.0,26.0,23.0,28.0,23.0,34.0,23.0,31.0,35.0,29.0,36.0,30.0,46.0,19.0,37.0,34.0,18.0,39.0,21.0,28.0,22.0,21.0,25.0,13.0,13.0,24.0,17.0,18.0,16.0,24.0,9.0,9.0,12.0,15.0,13.0,7.0,6.0,6.0,6.0,7.0,6.0,3.0,4.0,4.0,5.0,1.0,2.0,2.0 M85600,95.0,101.0,84.0,110.0,113.0,104.0,103.0,123.0,100.0,109.0,112.0,97.0,93.0,98.0,112.0,88.0,98.0,85.0,87.0,76.0,64.0,77.0,83.0,82.0,74.0,104.0,77.0,90.0,102.0,99.0,128.0,121.0,155.0,170.0,170.0,168.0,150.0,176.0,130.0,149.0,153.0,164.0,159.0,117.0,140.0,127.0,109.0,100.0,103.0,90.0,101.0,85.0,102.0,91.0,94.0,92.0,74.0,78.0,91.0,78.0,82.0,90.0,78.0,85.0,76.0,57.0,69.0,51.0,54.0,59.0,47.0,43.0,39.0,49.0,43.0,48.0,49.0,41.0,44.0,28.0,34.0,30.0,21.0,13.0,25.0,15.0,15.0,15.0,18.0,13.0,3.0,5.0,6.0,2.0,3.0,10.0 M85624,23.0,44.0,34.0,44.0,34.0,48.0,38.0,36.0,42.0,43.0,38.0,34.0,39.0,43.0,45.0,48.0,48.0,58.0,53.0,41.0,48.0,58.0,30.0,31.0,43.0,34.0,46.0,48.0,45.0,59.0,55.0,60.0,47.0,54.0,43.0,62.0,53.0,60.0,45.0,54.0,43.0,45.0,54.0,39.0,49.0,45.0,45.0,30.0,31.0,44.0,34.0,51.0,43.0,43.0,51.0,35.0,35.0,42.0,43.0,43.0,37.0,39.0,39.0,37.0,33.0,31.0,39.0,26.0,25.0,27.0,17.0,16.0,27.0,22.0,23.0,19.0,17.0,29.0,21.0,11.0,15.0,17.0,8.0,8.0,8.0,9.0,7.0,4.0,5.0,2.0,6.0,4.0,2.0,,,1.0 M85634,62.0,74.0,71.0,73.0,63.0,77.0,66.0,80.0,66.0,74.0,66.0,69.0,69.0,58.0,61.0,76.0,67.0,91.0,92.0,75.0,72.0,79.0,81.0,90.0,76.0,88.0,99.0,97.0,101.0,112.0,100.0,98.0,96.0,102.0,99.0,115.0,94.0,96.0,79.0,83.0,81.0,94.0,81.0,69.0,81.0,90.0,63.0,94.0,74.0,76.0,81.0,68.0,68.0,82.0,69.0,63.0,47.0,53.0,40.0,39.0,52.0,46.0,50.0,54.0,48.0,32.0,54.0,32.0,25.0,30.0,34.0,21.0,26.0,22.0,27.0,19.0,18.0,7.0,8.0,6.0,12.0,7.0,9.0,12.0,11.0,14.0,6.0,9.0,7.0,8.0,5.0,7.0,2.0,3.0,2.0,5.0 M85642,25.0,26.0,29.0,27.0,27.0,32.0,32.0,31.0,39.0,48.0,49.0,44.0,52.0,43.0,54.0,47.0,44.0,40.0,38.0,40.0,66.0,39.0,39.0,45.0,37.0,44.0,51.0,49.0,38.0,43.0,47.0,35.0,52.0,36.0,39.0,36.0,47.0,44.0,50.0,52.0,33.0,51.0,50.0,58.0,56.0,35.0,44.0,37.0,38.0,51.0,46.0,33.0,61.0,32.0,40.0,48.0,28.0,29.0,32.0,21.0,34.0,36.0,34.0,34.0,20.0,28.0,23.0,21.0,23.0,16.0,15.0,24.0,28.0,18.0,10.0,11.0,13.0,7.0,5.0,11.0,2.0,10.0,9.0,5.0,5.0,7.0,4.0,3.0,3.0,5.0,4.0,5.0,2.0,2.0,3.0, M85669,57.0,60.0,50.0,54.0,73.0,52.0,43.0,46.0,60.0,42.0,57.0,49.0,42.0,40.0,45.0,40.0,52.0,49.0,80.0,63.0,50.0,60.0,56.0,59.0,55.0,57.0,82.0,72.0,74.0,87.0,82.0,85.0,93.0,78.0,88.0,85.0,82.0,85.0,89.0,79.0,103.0,70.0,71.0,67.0,76.0,54.0,58.0,47.0,40.0,27.0,34.0,37.0,41.0,34.0,29.0,34.0,29.0,35.0,35.0,33.0,34.0,25.0,30.0,18.0,16.0,28.0,19.0,22.0,14.0,23.0,12.0,13.0,9.0,8.0,13.0,7.0,5.0,9.0,6.0,7.0,6.0,3.0,7.0,5.0,4.0,2.0,3.0,1.0,1.0,2.0,2.0,,1.0,,2.0,1.0 M85670,23.0,22.0,24.0,29.0,25.0,35.0,24.0,29.0,32.0,22.0,35.0,38.0,39.0,32.0,37.0,23.0,32.0,31.0,28.0,26.0,29.0,29.0,33.0,45.0,37.0,55.0,41.0,40.0,38.0,47.0,29.0,34.0,48.0,27.0,33.0,24.0,39.0,45.0,29.0,48.0,35.0,41.0,33.0,37.0,29.0,40.0,32.0,21.0,26.0,30.0,31.0,30.0,33.0,20.0,26.0,23.0,19.0,16.0,20.0,13.0,18.0,9.0,9.0,12.0,7.0,9.0,15.0,12.0,14.0,15.0,14.0,5.0,7.0,5.0,2.0,1.0,2.0,3.0,3.0,,2.0,3.0,3.0,2.0,,3.0,,,1.0,3.0,,,1.0,,, M85676,54.0,66.0,56.0,42.0,49.0,44.0,53.0,38.0,43.0,52.0,46.0,47.0,46.0,41.0,52.0,45.0,54.0,40.0,40.0,51.0,52.0,72.0,64.0,72.0,72.0,73.0,64.0,72.0,74.0,76.0,63.0,71.0,73.0,68.0,61.0,52.0,53.0,59.0,60.0,55.0,46.0,38.0,61.0,72.0,54.0,48.0,42.0,52.0,40.0,40.0,36.0,35.0,33.0,40.0,45.0,35.0,25.0,34.0,23.0,18.0,25.0,25.0,18.0,16.0,21.0,25.0,11.0,19.0,22.0,15.0,13.0,18.0,12.0,10.0,7.0,13.0,7.0,8.0,2.0,8.0,7.0,4.0,2.0,,2.0,3.0,2.0,2.0,3.0,1.0,4.0,1.0,,1.0,1.0,3.0 M85679,44.0,38.0,38.0,46.0,43.0,38.0,42.0,36.0,63.0,52.0,53.0,48.0,50.0,47.0,50.0,48.0,47.0,45.0,64.0,55.0,45.0,43.0,44.0,47.0,46.0,47.0,63.0,65.0,38.0,47.0,41.0,49.0,34.0,48.0,47.0,65.0,53.0,50.0,49.0,45.0,52.0,47.0,55.0,44.0,39.0,40.0,41.0,30.0,44.0,43.0,28.0,39.0,36.0,40.0,36.0,35.0,29.0,36.0,19.0,19.0,13.0,14.0,10.0,16.0,9.0,13.0,7.0,21.0,23.0,20.0,15.0,8.0,15.0,16.0,11.0,4.0,3.0,4.0,5.0,5.0,2.0,2.0,1.0,4.0,6.0,5.0,4.0,4.0,5.0,7.0,5.0,1.0,2.0,1.0,2.0,5.0 M85680,24.0,27.0,20.0,23.0,30.0,20.0,20.0,22.0,23.0,25.0,34.0,26.0,23.0,26.0,22.0,29.0,26.0,31.0,20.0,29.0,18.0,19.0,24.0,31.0,32.0,32.0,18.0,21.0,35.0,22.0,25.0,15.0,26.0,31.0,30.0,20.0,29.0,33.0,25.0,33.0,23.0,28.0,17.0,22.0,29.0,27.0,17.0,28.0,18.0,23.0,19.0,20.0,18.0,22.0,15.0,16.0,15.0,15.0,13.0,12.0,9.0,12.0,7.0,10.0,9.0,8.0,5.0,7.0,6.0,4.0,4.0,2.0,6.0,3.0,3.0,1.0,2.0,2.0,1.0,1.0,1.0,,,2.0,2.0,2.0,1.0,,,,,,,,,1.0 M85684,33.0,34.0,42.0,30.0,19.0,16.0,16.0,23.0,22.0,14.0,21.0,13.0,17.0,10.0,10.0,16.0,16.0,21.0,16.0,30.0,14.0,24.0,27.0,32.0,45.0,68.0,62.0,72.0,58.0,82.0,68.0,62.0,74.0,64.0,61.0,54.0,54.0,55.0,40.0,51.0,48.0,33.0,33.0,39.0,27.0,32.0,33.0,30.0,31.0,23.0,31.0,27.0,19.0,24.0,31.0,28.0,13.0,18.0,14.0,14.0,8.0,17.0,17.0,18.0,8.0,8.0,9.0,5.0,4.0,5.0,8.0,4.0,2.0,6.0,7.0,5.0,3.0,1.0,,2.0,2.0,1.0,4.0,3.0,2.0,2.0,1.0,2.0,,2.0,1.0,,1.0,,,2.0 M85686,8.0,2.0,7.0,12.0,7.0,3.0,5.0,14.0,6.0,10.0,13.0,11.0,10.0,13.0,12.0,21.0,15.0,13.0,11.0,11.0,14.0,12.0,7.0,9.0,11.0,7.0,12.0,8.0,15.0,15.0,5.0,14.0,17.0,12.0,13.0,13.0,11.0,14.0,13.0,11.0,8.0,10.0,9.0,11.0,12.0,7.0,13.0,10.0,7.0,12.0,9.0,9.0,14.0,10.0,12.0,9.0,7.0,11.0,5.0,6.0,5.0,7.0,7.0,11.0,9.0,5.0,10.0,6.0,4.0,1.0,4.0,5.0,6.0,2.0,,8.0,2.0,4.0,7.0,1.0,,3.0,3.0,,2.0,1.0,,1.0,1.0,,,,,,, M85693,9.0,16.0,16.0,15.0,19.0,12.0,11.0,13.0,19.0,10.0,19.0,18.0,15.0,19.0,16.0,13.0,16.0,15.0,18.0,10.0,9.0,9.0,14.0,19.0,20.0,14.0,15.0,12.0,16.0,17.0,18.0,17.0,24.0,25.0,27.0,24.0,21.0,13.0,13.0,23.0,30.0,21.0,26.0,17.0,17.0,24.0,22.0,21.0,19.0,17.0,12.0,15.0,20.0,19.0,20.0,16.0,12.0,10.0,23.0,12.0,17.0,13.0,13.0,16.0,12.0,17.0,9.0,18.0,8.0,11.0,12.0,8.0,15.0,13.0,10.0,8.0,5.0,9.0,3.0,4.0,7.0,6.0,8.0,3.0,5.0,4.0,2.0,5.0,3.0,1.0,3.0,,1.0,,1.0, M85694,37.0,28.0,37.0,30.0,31.0,28.0,22.0,37.0,20.0,30.0,31.0,25.0,31.0,27.0,23.0,21.0,29.0,20.0,27.0,29.0,26.0,20.0,14.0,26.0,19.0,18.0,33.0,18.0,19.0,29.0,27.0,41.0,32.0,27.0,31.0,40.0,39.0,31.0,35.0,28.0,35.0,19.0,24.0,32.0,32.0,22.0,23.0,21.0,21.0,17.0,19.0,19.0,23.0,27.0,26.0,21.0,23.0,16.0,23.0,14.0,24.0,21.0,21.0,24.0,15.0,16.0,14.0,15.0,15.0,20.0,18.0,14.0,14.0,16.0,14.0,6.0,7.0,12.0,7.0,7.0,8.0,8.0,5.0,2.0,3.0,5.0,2.0,4.0,3.0,1.0,,1.0,1.0,1.0,,2.0 M85697,33.0,29.0,41.0,25.0,31.0,33.0,30.0,32.0,36.0,40.0,44.0,32.0,42.0,36.0,42.0,35.0,39.0,27.0,40.0,35.0,36.0,31.0,32.0,41.0,26.0,29.0,41.0,47.0,45.0,47.0,32.0,42.0,30.0,33.0,39.0,26.0,40.0,28.0,35.0,30.0,27.0,35.0,45.0,26.0,38.0,31.0,26.0,32.0,37.0,43.0,25.0,30.0,35.0,36.0,36.0,38.0,21.0,26.0,27.0,28.0,19.0,16.0,23.0,16.0,26.0,20.0,22.0,25.0,17.0,8.0,13.0,10.0,14.0,9.0,8.0,7.0,11.0,10.0,8.0,8.0,5.0,7.0,5.0,6.0,4.0,3.0,4.0,1.0,3.0,1.0,3.0,1.0,1.0,1.0,, M85699,19.0,32.0,20.0,27.0,22.0,41.0,40.0,39.0,44.0,35.0,33.0,34.0,49.0,53.0,35.0,41.0,43.0,48.0,37.0,43.0,50.0,53.0,56.0,56.0,54.0,50.0,51.0,52.0,45.0,43.0,45.0,49.0,60.0,61.0,43.0,49.0,56.0,62.0,59.0,48.0,71.0,58.0,58.0,52.0,52.0,54.0,51.0,53.0,47.0,49.0,47.0,46.0,40.0,35.0,41.0,43.0,34.0,26.0,25.0,31.0,23.0,21.0,10.0,18.0,21.0,20.0,20.0,28.0,22.0,8.0,13.0,11.0,12.0,8.0,3.0,12.0,4.0,2.0,2.0,,1.0,4.0,8.0,2.0,3.0,4.0,4.0,6.0,5.0,,5.0,2.0,4.0,3.0,1.0,4.0 M85701,32.0,25.0,27.0,31.0,41.0,44.0,33.0,32.0,40.0,28.0,38.0,45.0,37.0,41.0,29.0,42.0,34.0,44.0,38.0,42.0,43.0,54.0,46.0,56.0,59.0,54.0,52.0,67.0,59.0,66.0,52.0,43.0,69.0,34.0,40.0,34.0,39.0,46.0,48.0,48.0,43.0,33.0,44.0,41.0,42.0,47.0,34.0,31.0,27.0,23.0,28.0,30.0,37.0,30.0,28.0,32.0,21.0,22.0,22.0,7.0,14.0,18.0,15.0,18.0,12.0,15.0,12.0,18.0,14.0,10.0,10.0,11.0,9.0,8.0,7.0,4.0,4.0,1.0,2.0,1.0,,3.0,4.0,2.0,3.0,3.0,2.0,,1.0,,,,,1.0,, M85706,76.0,106.0,81.0,82.0,89.0,94.0,105.0,90.0,114.0,107.0,107.0,94.0,132.0,114.0,116.0,125.0,129.0,121.0,119.0,115.0,97.0,117.0,113.0,118.0,102.0,108.0,103.0,116.0,142.0,122.0,108.0,122.0,114.0,140.0,110.0,119.0,119.0,117.0,126.0,120.0,103.0,115.0,118.0,132.0,129.0,109.0,105.0,97.0,100.0,95.0,107.0,93.0,89.0,84.0,83.0,94.0,100.0,79.0,67.0,79.0,66.0,59.0,67.0,56.0,55.0,51.0,50.0,45.0,52.0,37.0,42.0,36.0,26.0,26.0,38.0,33.0,18.0,20.0,25.0,14.0,22.0,20.0,18.0,13.0,8.0,11.0,9.0,6.0,8.0,5.0,10.0,5.0,5.0,4.0,2.0,3.0 M85711,28.0,27.0,30.0,25.0,22.0,26.0,22.0,24.0,15.0,28.0,21.0,18.0,27.0,21.0,24.0,23.0,33.0,24.0,26.0,23.0,30.0,27.0,24.0,46.0,52.0,56.0,49.0,50.0,54.0,64.0,58.0,62.0,51.0,57.0,50.0,53.0,45.0,44.0,40.0,38.0,49.0,38.0,44.0,33.0,38.0,36.0,29.0,23.0,31.0,29.0,15.0,17.0,27.0,31.0,20.0,24.0,25.0,18.0,14.0,16.0,15.0,10.0,8.0,9.0,12.0,13.0,8.0,6.0,9.0,8.0,5.0,11.0,2.0,4.0,5.0,8.0,2.0,6.0,2.0,5.0,2.0,2.0,1.0,1.0,3.0,2.0,1.0,1.0,2.0,,2.0,,1.0,1.0,,2.0 M85713,36.0,49.0,32.0,36.0,40.0,36.0,31.0,44.0,39.0,58.0,49.0,45.0,47.0,29.0,31.0,37.0,42.0,32.0,34.0,33.0,34.0,46.0,45.0,36.0,42.0,42.0,57.0,49.0,50.0,58.0,65.0,54.0,52.0,51.0,49.0,49.0,43.0,43.0,56.0,44.0,50.0,44.0,36.0,33.0,39.0,46.0,46.0,35.0,44.0,48.0,33.0,30.0,26.0,29.0,26.0,26.0,23.0,22.0,29.0,15.0,19.0,14.0,14.0,21.0,21.0,14.0,12.0,17.0,14.0,8.0,20.0,10.0,11.0,11.0,9.0,10.0,6.0,3.0,3.0,3.0,4.0,4.0,4.0,5.0,4.0,2.0,5.0,2.0,5.0,,2.0,2.0,1.0,,1.0,5.0 M85715,60.0,75.0,62.0,63.0,75.0,83.0,70.0,94.0,96.0,84.0,94.0,81.0,97.0,89.0,111.0,92.0,99.0,88.0,100.0,95.0,94.0,119.0,107.0,101.0,127.0,108.0,100.0,111.0,118.0,99.0,99.0,98.0,105.0,98.0,94.0,101.0,110.0,95.0,90.0,90.0,105.0,107.0,102.0,89.0,84.0,81.0,76.0,73.0,80.0,74.0,60.0,69.0,53.0,73.0,58.0,61.0,68.0,75.0,47.0,45.0,49.0,49.0,39.0,29.0,42.0,55.0,33.0,31.0,29.0,25.0,35.0,25.0,21.0,22.0,16.0,12.0,12.0,6.0,10.0,10.0,10.0,13.0,3.0,10.0,7.0,10.0,4.0,1.0,4.0,3.0,4.0,6.0,1.0,5.0,1.0,4.0 M85716,31.0,36.0,34.0,44.0,34.0,35.0,40.0,37.0,33.0,41.0,35.0,36.0,38.0,31.0,35.0,35.0,45.0,36.0,50.0,35.0,37.0,36.0,33.0,38.0,31.0,46.0,38.0,42.0,46.0,55.0,42.0,56.0,64.0,61.0,67.0,72.0,81.0,65.0,75.0,59.0,50.0,60.0,58.0,57.0,51.0,44.0,45.0,31.0,43.0,32.0,28.0,28.0,30.0,24.0,26.0,28.0,26.0,42.0,32.0,27.0,29.0,34.0,26.0,36.0,19.0,20.0,12.0,15.0,17.0,12.0,19.0,8.0,14.0,11.0,5.0,5.0,5.0,3.0,9.0,6.0,6.0,3.0,3.0,3.0,3.0,3.0,2.0,2.0,1.0,5.0,1.0,1.0,1.0,1.0,1.0,1.0 M85717,10.0,15.0,22.0,39.0,34.0,34.0,31.0,26.0,29.0,35.0,28.0,32.0,38.0,42.0,40.0,28.0,33.0,34.0,28.0,28.0,27.0,36.0,40.0,26.0,22.0,29.0,41.0,33.0,35.0,35.0,22.0,24.0,36.0,37.0,29.0,35.0,34.0,27.0,31.0,29.0,35.0,24.0,25.0,32.0,32.0,22.0,21.0,19.0,19.0,22.0,20.0,22.0,25.0,17.0,26.0,28.0,16.0,26.0,23.0,24.0,25.0,18.0,21.0,15.0,13.0,16.0,21.0,18.0,11.0,13.0,9.0,9.0,16.0,15.0,5.0,8.0,18.0,13.0,10.0,9.0,6.0,5.0,5.0,7.0,2.0,3.0,2.0,1.0,4.0,1.0,,1.0,1.0,1.0,1.0,1.0 M85721,73.0,68.0,61.0,67.0,49.0,56.0,42.0,56.0,61.0,97.0,61.0,86.0,56.0,57.0,73.0,76.0,59.0,70.0,76.0,72.0,92.0,107.0,119.0,138.0,135.0,166.0,163.0,173.0,156.0,132.0,142.0,172.0,161.0,165.0,144.0,166.0,186.0,199.0,165.0,157.0,164.0,125.0,151.0,139.0,140.0,133.0,136.0,137.0,125.0,124.0,108.0,98.0,87.0,87.0,90.0,82.0,66.0,74.0,52.0,72.0,52.0,48.0,44.0,34.0,39.0,29.0,22.0,26.0,19.0,21.0,10.0,14.0,14.0,13.0,7.0,10.0,11.0,5.0,6.0,2.0,2.0,3.0,3.0,1.0,4.0,1.0,2.0,,,1.0,1.0,,1.0,1.0,1.0,1.0 M85722,36.0,27.0,32.0,42.0,40.0,39.0,45.0,36.0,47.0,38.0,54.0,46.0,47.0,52.0,47.0,65.0,56.0,53.0,51.0,46.0,46.0,72.0,57.0,56.0,65.0,59.0,42.0,55.0,66.0,41.0,59.0,46.0,39.0,47.0,35.0,50.0,42.0,45.0,36.0,36.0,43.0,49.0,33.0,59.0,55.0,49.0,44.0,36.0,35.0,47.0,35.0,38.0,47.0,27.0,30.0,34.0,36.0,44.0,24.0,26.0,22.0,13.0,13.0,15.0,20.0,12.0,10.0,9.0,13.0,7.0,18.0,14.0,13.0,10.0,10.0,4.0,2.0,4.0,4.0,1.0,4.0,,3.0,1.0,4.0,5.0,2.0,6.0,3.0,1.0,,1.0,,3.0,2.0,5.0 M85730,37.0,31.0,33.0,37.0,36.0,31.0,45.0,34.0,34.0,28.0,46.0,40.0,44.0,50.0,35.0,47.0,37.0,38.0,29.0,31.0,31.0,37.0,42.0,37.0,41.0,33.0,36.0,45.0,43.0,62.0,43.0,58.0,55.0,53.0,52.0,57.0,59.0,42.0,53.0,54.0,67.0,67.0,50.0,50.0,55.0,46.0,34.0,52.0,50.0,51.0,36.0,33.0,53.0,29.0,33.0,35.0,43.0,35.0,32.0,27.0,35.0,27.0,27.0,18.0,29.0,22.0,18.0,23.0,20.0,16.0,17.0,15.0,12.0,13.0,16.0,9.0,15.0,9.0,12.0,6.0,8.0,8.0,7.0,1.0,4.0,3.0,3.0,1.0,1.0,9.0,2.0,1.0,,1.0,1.0, M85732,13.0,14.0,5.0,15.0,10.0,13.0,9.0,11.0,22.0,14.0,10.0,17.0,18.0,17.0,13.0,12.0,14.0,16.0,17.0,19.0,17.0,18.0,32.0,30.0,33.0,33.0,43.0,33.0,30.0,33.0,27.0,26.0,22.0,21.0,19.0,20.0,11.0,17.0,20.0,15.0,20.0,16.0,17.0,18.0,17.0,7.0,10.0,6.0,13.0,14.0,15.0,13.0,16.0,6.0,19.0,20.0,18.0,15.0,14.0,12.0,21.0,13.0,11.0,19.0,15.0,7.0,10.0,8.0,8.0,4.0,7.0,2.0,4.0,5.0,4.0,2.0,2.0,4.0,2.0,2.0,2.0,1.0,4.0,,3.0,5.0,3.0,,2.0,,1.0,,,,1.0,1.0 M85733,37.0,42.0,47.0,36.0,43.0,53.0,51.0,42.0,51.0,47.0,42.0,47.0,58.0,51.0,52.0,53.0,45.0,42.0,40.0,46.0,35.0,33.0,54.0,57.0,36.0,54.0,47.0,63.0,58.0,55.0,64.0,61.0,74.0,60.0,53.0,46.0,70.0,60.0,74.0,66.0,55.0,60.0,64.0,54.0,59.0,50.0,59.0,48.0,54.0,60.0,51.0,42.0,40.0,50.0,42.0,42.0,58.0,44.0,41.0,37.0,41.0,36.0,40.0,31.0,23.0,31.0,26.0,32.0,29.0,26.0,14.0,22.0,25.0,11.0,13.0,19.0,17.0,18.0,16.0,10.0,16.0,8.0,12.0,6.0,10.0,10.0,6.0,2.0,2.0,4.0,4.0,3.0,1.0,1.0,,2.0 M85735,40.0,42.0,34.0,45.0,46.0,45.0,56.0,53.0,59.0,57.0,69.0,68.0,57.0,60.0,57.0,63.0,68.0,54.0,61.0,59.0,57.0,85.0,60.0,70.0,55.0,75.0,70.0,57.0,70.0,54.0,54.0,55.0,56.0,56.0,47.0,58.0,38.0,51.0,56.0,45.0,56.0,62.0,59.0,46.0,42.0,58.0,51.0,56.0,48.0,52.0,31.0,52.0,41.0,41.0,29.0,33.0,33.0,31.0,30.0,22.0,19.0,19.0,9.0,23.0,8.0,10.0,17.0,19.0,8.0,15.0,19.0,15.0,7.0,9.0,8.0,6.0,5.0,3.0,3.0,2.0,2.0,2.0,3.0,3.0,2.0,5.0,4.0,1.0,3.0,3.0,2.0,,2.0,4.0,4.0,2.0 M85736,35.0,32.0,30.0,29.0,41.0,54.0,43.0,31.0,44.0,38.0,39.0,34.0,37.0,30.0,62.0,44.0,44.0,38.0,53.0,33.0,37.0,38.0,48.0,33.0,45.0,25.0,47.0,32.0,41.0,35.0,51.0,34.0,45.0,38.0,46.0,50.0,48.0,47.0,51.0,49.0,64.0,73.0,50.0,43.0,54.0,59.0,54.0,40.0,53.0,44.0,50.0,34.0,35.0,48.0,42.0,40.0,25.0,24.0,30.0,32.0,31.0,24.0,28.0,24.0,19.0,21.0,16.0,21.0,12.0,22.0,15.0,11.0,10.0,14.0,12.0,12.0,9.0,7.0,6.0,8.0,9.0,4.0,5.0,5.0,5.0,1.0,4.0,1.0,2.0,4.0,3.0,3.0,3.0,4.0,,4.0 M85739,30.0,28.0,32.0,35.0,28.0,38.0,36.0,43.0,47.0,36.0,35.0,55.0,45.0,39.0,65.0,43.0,53.0,54.0,57.0,53.0,63.0,52.0,51.0,73.0,58.0,65.0,78.0,62.0,73.0,55.0,63.0,47.0,43.0,77.0,64.0,71.0,56.0,53.0,61.0,54.0,50.0,46.0,56.0,48.0,53.0,53.0,63.0,44.0,42.0,48.0,40.0,39.0,36.0,29.0,37.0,34.0,40.0,38.0,26.0,21.0,22.0,25.0,21.0,14.0,13.0,18.0,16.0,24.0,9.0,15.0,18.0,14.0,11.0,8.0,6.0,8.0,2.0,2.0,6.0,2.0,4.0,5.0,2.0,1.0,4.0,1.0,3.0,1.0,,1.0,3.0,,2.0,2.0,, M85746,27.0,29.0,38.0,33.0,32.0,35.0,30.0,51.0,42.0,56.0,52.0,53.0,53.0,49.0,44.0,54.0,47.0,57.0,44.0,45.0,52.0,40.0,41.0,37.0,40.0,46.0,45.0,39.0,41.0,46.0,38.0,37.0,53.0,38.0,43.0,50.0,44.0,56.0,48.0,39.0,39.0,48.0,39.0,37.0,45.0,42.0,39.0,31.0,31.0,29.0,30.0,35.0,26.0,32.0,30.0,36.0,29.0,21.0,33.0,28.0,33.0,36.0,16.0,22.0,21.0,20.0,19.0,19.0,22.0,14.0,12.0,16.0,11.0,9.0,11.0,8.0,18.0,9.0,9.0,7.0,13.0,11.0,6.0,6.0,,2.0,3.0,2.0,3.0,3.0,1.0,1.0,,,2.0, M85749,15.0,21.0,20.0,14.0,28.0,17.0,23.0,29.0,27.0,26.0,29.0,28.0,29.0,22.0,23.0,27.0,32.0,29.0,25.0,22.0,27.0,27.0,28.0,26.0,33.0,25.0,18.0,32.0,41.0,31.0,32.0,30.0,26.0,23.0,19.0,33.0,25.0,24.0,29.0,32.0,29.0,33.0,29.0,24.0,24.0,22.0,27.0,30.0,21.0,21.0,29.0,17.0,19.0,20.0,12.0,17.0,17.0,22.0,19.0,9.0,6.0,5.0,4.0,17.0,12.0,7.0,11.0,13.0,10.0,8.0,7.0,9.0,11.0,8.0,3.0,4.0,3.0,5.0,2.0,2.0,3.0,5.0,2.0,,4.0,5.0,1.0,3.0,5.0,2.0,,,,,, M85756,12.0,8.0,12.0,8.0,10.0,9.0,11.0,10.0,13.0,10.0,19.0,18.0,26.0,13.0,18.0,15.0,26.0,19.0,20.0,27.0,26.0,24.0,31.0,24.0,32.0,28.0,27.0,35.0,36.0,27.0,23.0,33.0,29.0,22.0,13.0,34.0,24.0,30.0,32.0,40.0,28.0,23.0,19.0,28.0,29.0,27.0,26.0,26.0,33.0,22.0,33.0,39.0,25.0,30.0,30.0,22.0,21.0,22.0,23.0,10.0,26.0,12.0,15.0,15.0,14.0,19.0,14.0,12.0,10.0,12.0,13.0,7.0,6.0,4.0,4.0,5.0,3.0,2.0,3.0,1.0,5.0,4.0,5.0,2.0,3.0,1.0,7.0,3.0,,1.0,1.0,1.0,1.0,,2.0,2.0 M85757,28.0,37.0,24.0,30.0,29.0,19.0,27.0,27.0,25.0,41.0,39.0,26.0,23.0,31.0,38.0,21.0,26.0,28.0,30.0,31.0,36.0,40.0,39.0,49.0,43.0,43.0,65.0,54.0,38.0,48.0,40.0,52.0,43.0,50.0,37.0,44.0,44.0,39.0,46.0,45.0,43.0,41.0,37.0,38.0,26.0,37.0,32.0,27.0,32.0,24.0,26.0,19.0,25.0,14.0,23.0,19.0,22.0,17.0,17.0,19.0,15.0,21.0,11.0,20.0,12.0,19.0,13.0,9.0,9.0,6.0,16.0,6.0,7.0,8.0,6.0,4.0,4.0,4.0,5.0,1.0,,1.0,2.0,5.0,2.0,1.0,5.0,1.0,,,,,1.0,1.0,, M85759,30.0,48.0,38.0,39.0,51.0,58.0,57.0,53.0,67.0,77.0,61.0,60.0,53.0,89.0,59.0,59.0,84.0,60.0,65.0,72.0,80.0,72.0,88.0,79.0,83.0,76.0,59.0,82.0,56.0,59.0,45.0,51.0,53.0,47.0,47.0,42.0,40.0,38.0,53.0,34.0,51.0,49.0,35.0,56.0,32.0,51.0,46.0,41.0,42.0,58.0,45.0,31.0,38.0,36.0,40.0,31.0,39.0,31.0,30.0,27.0,30.0,29.0,29.0,27.0,24.0,32.0,32.0,25.0,19.0,18.0,23.0,13.0,13.0,12.0,7.0,13.0,9.0,9.0,14.0,7.0,9.0,9.0,2.0,4.0,3.0,8.0,2.0,5.0,,2.0,1.0,,2.0,1.0,1.0, M85766,29.0,27.0,28.0,21.0,33.0,33.0,28.0,25.0,44.0,31.0,48.0,38.0,42.0,33.0,35.0,33.0,49.0,35.0,41.0,43.0,35.0,38.0,33.0,39.0,40.0,41.0,51.0,55.0,34.0,41.0,46.0,34.0,28.0,43.0,44.0,50.0,49.0,37.0,40.0,48.0,33.0,49.0,48.0,37.0,50.0,26.0,35.0,41.0,41.0,28.0,26.0,14.0,27.0,21.0,26.0,15.0,19.0,22.0,14.0,6.0,15.0,11.0,13.0,12.0,11.0,17.0,10.0,10.0,10.0,18.0,7.0,7.0,10.0,4.0,2.0,7.0,10.0,2.0,5.0,1.0,3.0,,4.0,1.0,2.0,4.0,1.0,3.0,3.0,3.0,,,1.0,1.0,2.0,2.0 M85770,7.0,6.0,6.0,7.0,5.0,7.0,16.0,5.0,12.0,8.0,14.0,9.0,12.0,13.0,14.0,13.0,11.0,9.0,18.0,5.0,10.0,13.0,14.0,4.0,10.0,19.0,14.0,14.0,15.0,11.0,16.0,11.0,15.0,15.0,20.0,16.0,19.0,18.0,15.0,10.0,22.0,20.0,19.0,16.0,15.0,21.0,12.0,11.0,19.0,15.0,11.0,8.0,14.0,19.0,18.0,10.0,15.0,18.0,27.0,15.0,16.0,19.0,21.0,22.0,16.0,17.0,23.0,16.0,12.0,17.0,12.0,7.0,16.0,8.0,8.0,11.0,11.0,8.0,7.0,5.0,8.0,9.0,4.0,1.0,4.0,2.0,1.0,2.0,,,,2.0,2.0,1.0,1.0, M85774,50.0,54.0,67.0,62.0,67.0,74.0,70.0,77.0,64.0,78.0,54.0,77.0,65.0,71.0,78.0,67.0,68.0,72.0,74.0,51.0,68.0,68.0,59.0,62.0,65.0,85.0,70.0,70.0,76.0,57.0,77.0,71.0,57.0,56.0,51.0,54.0,62.0,61.0,65.0,67.0,61.0,53.0,53.0,43.0,56.0,73.0,53.0,52.0,49.0,41.0,33.0,41.0,34.0,40.0,37.0,36.0,43.0,33.0,28.0,23.0,21.0,20.0,20.0,25.0,18.0,22.0,5.0,15.0,19.0,19.0,12.0,20.0,15.0,12.0,14.0,10.0,6.0,6.0,10.0,1.0,4.0,2.0,2.0,3.0,2.0,1.0,5.0,,2.0,3.0,2.0,1.0,,,,3.0 M85778,31.0,43.0,39.0,34.0,31.0,21.0,24.0,25.0,21.0,17.0,15.0,16.0,18.0,8.0,12.0,10.0,8.0,20.0,88.0,212.0,265.0,255.0,276.0,335.0,413.0,433.0,443.0,438.0,443.0,470.0,438.0,426.0,380.0,341.0,322.0,328.0,271.0,247.0,214.0,178.0,174.0,114.0,93.0,98.0,75.0,90.0,71.0,56.0,50.0,48.0,44.0,54.0,30.0,30.0,34.0,33.0,34.0,25.0,30.0,20.0,29.0,18.0,22.0,17.0,20.0,22.0,15.0,8.0,4.0,8.0,8.0,3.0,5.0,1.0,3.0,9.0,8.0,2.0,6.0,2.0,,3.0,1.0,,,,1.0,,,1.0,,,,,,2.0 M85779,10.0,10.0,18.0,23.0,26.0,17.0,25.0,26.0,23.0,18.0,22.0,24.0,17.0,20.0,21.0,24.0,19.0,19.0,16.0,24.0,11.0,17.0,13.0,17.0,14.0,21.0,16.0,18.0,17.0,24.0,20.0,24.0,26.0,25.0,22.0,17.0,19.0,19.0,11.0,15.0,16.0,17.0,21.0,18.0,11.0,16.0,14.0,17.0,15.0,11.0,17.0,16.0,20.0,23.0,26.0,24.0,15.0,13.0,24.0,22.0,27.0,18.0,15.0,24.0,10.0,16.0,15.0,18.0,16.0,6.0,9.0,13.0,4.0,7.0,8.0,10.0,6.0,9.0,10.0,4.0,2.0,6.0,1.0,2.0,2.0,3.0,5.0,3.0,3.0,1.0,1.0,2.0,,1.0,, M85781,22.0,23.0,25.0,25.0,34.0,29.0,26.0,30.0,15.0,28.0,35.0,26.0,32.0,31.0,36.0,44.0,31.0,32.0,37.0,43.0,59.0,56.0,53.0,47.0,50.0,39.0,63.0,54.0,56.0,34.0,37.0,52.0,44.0,32.0,40.0,45.0,25.0,29.0,40.0,41.0,35.0,26.0,40.0,39.0,36.0,34.0,26.0,30.0,27.0,32.0,17.0,27.0,24.0,31.0,26.0,29.0,23.0,23.0,16.0,24.0,12.0,12.0,20.0,20.0,11.0,12.0,15.0,11.0,9.0,7.0,5.0,5.0,7.0,2.0,3.0,3.0,2.0,1.0,3.0,1.0,1.0,5.0,,1.0,1.0,2.0,3.0,4.0,2.0,1.0,,1.0,2.0,,1.0,2.0 M85783,44.0,37.0,46.0,52.0,43.0,48.0,41.0,56.0,49.0,45.0,55.0,53.0,48.0,56.0,37.0,70.0,60.0,56.0,56.0,59.0,54.0,57.0,53.0,60.0,61.0,58.0,53.0,58.0,58.0,58.0,44.0,51.0,42.0,52.0,49.0,70.0,58.0,52.0,49.0,51.0,43.0,54.0,35.0,49.0,26.0,32.0,37.0,40.0,38.0,38.0,27.0,33.0,24.0,23.0,19.0,34.0,30.0,29.0,20.0,30.0,19.0,17.0,30.0,14.0,15.0,20.0,14.0,16.0,9.0,12.0,11.0,8.0,8.0,8.0,6.0,6.0,2.0,3.0,5.0,2.0,1.0,2.0,1.0,,3.0,3.0,2.0,2.0,1.0,1.0,1.0,2.0,,2.0,1.0,3.0 M85792,14.0,20.0,14.0,28.0,12.0,16.0,26.0,19.0,24.0,20.0,20.0,18.0,22.0,26.0,27.0,21.0,12.0,25.0,16.0,14.0,15.0,20.0,16.0,19.0,22.0,19.0,16.0,15.0,14.0,22.0,20.0,22.0,17.0,25.0,25.0,22.0,23.0,22.0,27.0,24.0,25.0,22.0,23.0,25.0,21.0,23.0,17.0,20.0,17.0,16.0,20.0,18.0,23.0,21.0,21.0,17.0,28.0,28.0,20.0,22.0,15.0,19.0,25.0,26.0,14.0,13.0,33.0,16.0,21.0,18.0,15.0,14.0,14.0,8.0,13.0,14.0,15.0,24.0,15.0,15.0,10.0,11.0,12.0,9.0,9.0,11.0,4.0,7.0,9.0,6.0,6.0,3.0,1.0,1.0,, M85794,24.0,36.0,29.0,40.0,22.0,23.0,27.0,37.0,25.0,26.0,16.0,28.0,22.0,31.0,27.0,24.0,43.0,32.0,29.0,37.0,49.0,36.0,52.0,57.0,62.0,68.0,54.0,57.0,55.0,65.0,52.0,49.0,48.0,40.0,43.0,41.0,54.0,44.0,44.0,38.0,29.0,35.0,42.0,34.0,43.0,27.0,31.0,21.0,33.0,25.0,36.0,27.0,26.0,18.0,29.0,27.0,25.0,22.0,16.0,20.0,11.0,16.0,8.0,5.0,9.0,14.0,7.0,9.0,13.0,11.0,11.0,10.0,8.0,10.0,5.0,2.0,3.0,4.0,4.0,3.0,3.0,4.0,2.0,4.0,3.0,2.0,,,,1.0,2.0,1.0,1.0,1.0,, M85797,58.0,66.0,56.0,54.0,57.0,55.0,52.0,43.0,58.0,46.0,48.0,41.0,57.0,40.0,45.0,33.0,36.0,38.0,62.0,60.0,53.0,100.0,93.0,111.0,135.0,190.0,155.0,183.0,204.0,213.0,217.0,197.0,218.0,197.0,180.0,170.0,162.0,139.0,127.0,143.0,113.0,101.0,124.0,109.0,105.0,79.0,78.0,62.0,65.0,63.0,52.0,58.0,58.0,47.0,52.0,46.0,44.0,49.0,57.0,40.0,49.0,42.0,53.0,35.0,37.0,28.0,35.0,24.0,25.0,25.0,14.0,14.0,10.0,11.0,11.0,7.0,11.0,5.0,9.0,6.0,6.0,3.0,8.0,9.0,2.0,3.0,6.0,2.0,2.0,5.0,2.0,4.0,,,1.0,2.0 M85803,85.0,54.0,82.0,78.0,79.0,89.0,70.0,94.0,104.0,87.0,100.0,110.0,112.0,109.0,117.0,137.0,124.0,118.0,111.0,113.0,99.0,107.0,142.0,128.0,117.0,130.0,137.0,125.0,131.0,100.0,82.0,127.0,125.0,109.0,112.0,130.0,117.0,102.0,104.0,94.0,117.0,106.0,97.0,110.0,95.0,117.0,93.0,97.0,101.0,93.0,83.0,73.0,52.0,56.0,59.0,69.0,51.0,46.0,47.0,35.0,28.0,32.0,31.0,17.0,26.0,21.0,23.0,26.0,24.0,25.0,14.0,12.0,5.0,13.0,6.0,6.0,5.0,9.0,4.0,1.0,5.0,2.0,4.0,4.0,1.0,4.0,1.0,3.0,3.0,1.0,3.0,1.0,2.0,1.0,,4.0 M88020,55.0,49.0,66.0,53.0,53.0,42.0,58.0,66.0,74.0,66.0,73.0,79.0,73.0,61.0,72.0,81.0,59.0,66.0,60.0,48.0,69.0,49.0,58.0,61.0,68.0,51.0,76.0,71.0,71.0,71.0,63.0,74.0,110.0,93.0,97.0,94.0,104.0,116.0,113.0,88.0,104.0,97.0,89.0,96.0,112.0,124.0,122.0,111.0,92.0,99.0,102.0,103.0,95.0,101.0,100.0,87.0,96.0,92.0,87.0,98.0,82.0,73.0,94.0,85.0,77.0,69.0,79.0,70.0,52.0,46.0,53.0,48.0,46.0,46.0,49.0,43.0,60.0,46.0,42.0,36.0,45.0,38.0,39.0,20.0,24.0,27.0,22.0,19.0,16.0,14.0,11.0,10.0,6.0,5.0,9.0,7.0 M89001,15.0,24.0,18.0,18.0,24.0,25.0,18.0,22.0,22.0,29.0,19.0,18.0,21.0,22.0,17.0,16.0,20.0,17.0,17.0,19.0,23.0,9.0,14.0,12.0,11.0,15.0,19.0,20.0,25.0,19.0,16.0,30.0,27.0,29.0,34.0,22.0,27.0,28.0,32.0,23.0,27.0,29.0,24.0,21.0,28.0,13.0,17.0,27.0,17.0,14.0,20.0,17.0,27.0,27.0,30.0,26.0,33.0,26.0,13.0,44.0,20.0,24.0,24.0,26.0,16.0,21.0,22.0,26.0,26.0,25.0,22.0,11.0,20.0,20.0,18.0,30.0,19.0,14.0,22.0,13.0,24.0,12.0,17.0,2.0,5.0,2.0,6.0,7.0,1.0,5.0,3.0,1.0,1.0,,2.0,4.0 M89002,37.0,32.0,36.0,37.0,40.0,42.0,47.0,45.0,49.0,54.0,49.0,51.0,55.0,56.0,46.0,59.0,59.0,58.0,67.0,42.0,36.0,41.0,38.0,33.0,41.0,46.0,31.0,32.0,31.0,49.0,45.0,44.0,55.0,48.0,58.0,47.0,40.0,40.0,54.0,49.0,47.0,51.0,49.0,43.0,36.0,46.0,35.0,41.0,24.0,40.0,27.0,38.0,30.0,42.0,28.0,35.0,49.0,37.0,29.0,33.0,33.0,37.0,34.0,37.0,32.0,19.0,31.0,21.0,30.0,23.0,25.0,24.0,30.0,18.0,24.0,19.0,19.0,14.0,17.0,13.0,14.0,5.0,7.0,6.0,7.0,6.0,8.0,3.0,3.0,,3.0,,1.0,1.0,,2.0 M89003,138.0,148.0,171.0,165.0,179.0,208.0,208.0,220.0,242.0,264.0,284.0,299.0,269.0,290.0,272.0,242.0,247.0,250.0,209.0,214.0,213.0,189.0,199.0,214.0,218.0,208.0,230.0,197.0,247.0,193.0,224.0,232.0,229.0,220.0,219.0,220.0,211.0,266.0,226.0,273.0,273.0,246.0,267.0,269.0,290.0,296.0,263.0,259.0,253.0,254.0,226.0,272.0,266.0,275.0,278.0,269.0,301.0,240.0,244.0,311.0,275.0,231.0,222.0,238.0,225.0,217.0,223.0,220.0,209.0,198.0,160.0,187.0,194.0,204.0,175.0,182.0,201.0,222.0,198.0,169.0,159.0,132.0,122.0,90.0,98.0,74.0,58.0,79.0,55.0,56.0,39.0,39.0,29.0,24.0,17.0,47.0 M89005,36.0,42.0,47.0,54.0,42.0,53.0,47.0,48.0,35.0,50.0,51.0,54.0,56.0,63.0,59.0,27.0,44.0,55.0,32.0,51.0,54.0,48.0,43.0,42.0,36.0,42.0,43.0,38.0,51.0,39.0,45.0,59.0,43.0,63.0,50.0,55.0,78.0,35.0,60.0,57.0,71.0,53.0,65.0,50.0,66.0,58.0,47.0,43.0,47.0,66.0,49.0,55.0,43.0,61.0,57.0,52.0,83.0,61.0,55.0,69.0,62.0,60.0,53.0,52.0,52.0,42.0,52.0,47.0,40.0,40.0,40.0,31.0,48.0,32.0,28.0,42.0,38.0,55.0,43.0,31.0,31.0,29.0,24.0,23.0,30.0,20.0,18.0,16.0,14.0,15.0,15.0,7.0,5.0,6.0,6.0,10.0 M89007,43.0,36.0,40.0,43.0,39.0,38.0,63.0,38.0,36.0,34.0,48.0,46.0,54.0,46.0,42.0,42.0,44.0,43.0,61.0,47.0,40.0,36.0,49.0,40.0,36.0,44.0,41.0,50.0,48.0,36.0,39.0,44.0,44.0,48.0,48.0,45.0,39.0,47.0,72.0,51.0,44.0,42.0,40.0,51.0,45.0,37.0,46.0,46.0,37.0,37.0,47.0,41.0,39.0,50.0,53.0,37.0,46.0,29.0,49.0,51.0,40.0,50.0,50.0,51.0,37.0,37.0,32.0,33.0,31.0,25.0,32.0,26.0,30.0,23.0,31.0,13.0,23.0,23.0,21.0,10.0,28.0,12.0,12.0,18.0,7.0,10.0,14.0,9.0,7.0,2.0,5.0,5.0,4.0,2.0,3.0,1.0 M89008,79.0,87.0,80.0,78.0,93.0,76.0,93.0,118.0,102.0,98.0,93.0,90.0,92.0,115.0,86.0,102.0,94.0,96.0,95.0,84.0,68.0,71.0,63.0,86.0,70.0,92.0,87.0,92.0,92.0,81.0,86.0,86.0,123.0,103.0,101.0,111.0,121.0,104.0,122.0,98.0,105.0,94.0,87.0,68.0,95.0,85.0,58.0,68.0,60.0,62.0,56.0,62.0,90.0,75.0,81.0,95.0,77.0,90.0,72.0,93.0,86.0,79.0,78.0,75.0,73.0,70.0,75.0,58.0,58.0,61.0,48.0,46.0,28.0,37.0,44.0,48.0,53.0,53.0,46.0,29.0,31.0,41.0,32.0,28.0,19.0,19.0,20.0,10.0,13.0,5.0,2.0,4.0,6.0,2.0,3.0,7.0 M89009,47.0,47.0,61.0,61.0,55.0,73.0,75.0,75.0,45.0,74.0,73.0,83.0,68.0,58.0,65.0,72.0,68.0,74.0,64.0,58.0,66.0,69.0,64.0,64.0,60.0,75.0,69.0,67.0,56.0,64.0,94.0,80.0,83.0,69.0,83.0,81.0,78.0,95.0,83.0,84.0,72.0,76.0,67.0,63.0,66.0,73.0,77.0,61.0,61.0,64.0,52.0,67.0,78.0,70.0,95.0,87.0,73.0,83.0,75.0,74.0,84.0,67.0,84.0,73.0,54.0,68.0,75.0,52.0,51.0,37.0,47.0,42.0,35.0,35.0,41.0,48.0,27.0,38.0,43.0,38.0,34.0,31.0,25.0,25.0,21.0,20.0,20.0,14.0,8.0,9.0,9.0,9.0,7.0,5.0,4.0,3.0 M89010,26.0,37.0,48.0,58.0,44.0,49.0,72.0,69.0,57.0,68.0,77.0,87.0,76.0,75.0,72.0,60.0,60.0,75.0,70.0,55.0,55.0,54.0,59.0,62.0,51.0,56.0,53.0,60.0,60.0,50.0,36.0,49.0,50.0,56.0,56.0,45.0,36.0,57.0,65.0,55.0,68.0,56.0,54.0,65.0,72.0,93.0,86.0,76.0,58.0,66.0,67.0,72.0,64.0,82.0,79.0,68.0,71.0,77.0,75.0,73.0,96.0,74.0,92.0,77.0,82.0,63.0,73.0,57.0,73.0,54.0,67.0,41.0,49.0,48.0,74.0,61.0,71.0,66.0,60.0,49.0,42.0,60.0,33.0,29.0,26.0,26.0,27.0,29.0,17.0,21.0,12.0,8.0,9.0,7.0,9.0,7.0 M89012,42.0,74.0,56.0,50.0,66.0,90.0,76.0,86.0,84.0,73.0,87.0,78.0,85.0,71.0,82.0,83.0,80.0,84.0,79.0,85.0,59.0,58.0,58.0,58.0,65.0,77.0,80.0,78.0,82.0,80.0,70.0,59.0,97.0,90.0,96.0,87.0,105.0,87.0,84.0,82.0,92.0,59.0,82.0,93.0,63.0,45.0,56.0,58.0,58.0,52.0,73.0,60.0,76.0,81.0,82.0,89.0,98.0,80.0,71.0,78.0,78.0,68.0,60.0,55.0,35.0,43.0,48.0,51.0,37.0,26.0,30.0,29.0,29.0,25.0,29.0,23.0,36.0,43.0,32.0,29.0,31.0,34.0,26.0,24.0,14.0,19.0,11.0,13.0,4.0,3.0,8.0,5.0,3.0,1.0,4.0,7.0 M89013,27.0,49.0,36.0,44.0,39.0,38.0,45.0,42.0,61.0,56.0,48.0,70.0,52.0,59.0,65.0,56.0,67.0,45.0,65.0,42.0,39.0,44.0,39.0,37.0,34.0,61.0,28.0,46.0,42.0,36.0,40.0,41.0,49.0,37.0,39.0,45.0,44.0,52.0,39.0,49.0,41.0,56.0,46.0,49.0,42.0,39.0,38.0,27.0,22.0,36.0,38.0,31.0,36.0,40.0,35.0,43.0,32.0,37.0,42.0,40.0,30.0,28.0,33.0,32.0,26.0,20.0,21.0,10.0,25.0,17.0,16.0,16.0,9.0,15.0,16.0,20.0,14.0,23.0,12.0,6.0,11.0,11.0,8.0,6.0,7.0,6.0,7.0,3.0,1.0,1.0,2.0,1.0,,1.0,, M89015,53.0,56.0,61.0,65.0,70.0,68.0,67.0,78.0,86.0,83.0,89.0,72.0,82.0,101.0,75.0,80.0,90.0,89.0,82.0,67.0,60.0,59.0,61.0,50.0,53.0,72.0,67.0,51.0,86.0,69.0,62.0,59.0,63.0,60.0,83.0,69.0,98.0,86.0,108.0,84.0,72.0,80.0,80.0,78.0,76.0,83.0,72.0,76.0,79.0,66.0,84.0,77.0,88.0,79.0,83.0,73.0,80.0,84.0,93.0,97.0,83.0,52.0,65.0,82.0,80.0,55.0,51.0,57.0,55.0,61.0,57.0,63.0,66.0,54.0,54.0,46.0,48.0,48.0,39.0,43.0,45.0,31.0,39.0,30.0,25.0,28.0,22.0,10.0,25.0,8.0,12.0,6.0,5.0,2.0,3.0,16.0 M89016,45.0,48.0,41.0,51.0,60.0,58.0,56.0,68.0,72.0,66.0,93.0,84.0,74.0,101.0,94.0,57.0,89.0,67.0,75.0,60.0,55.0,58.0,63.0,70.0,56.0,65.0,72.0,67.0,54.0,42.0,55.0,50.0,46.0,51.0,80.0,61.0,58.0,63.0,58.0,63.0,72.0,74.0,75.0,64.0,81.0,70.0,87.0,73.0,65.0,67.0,67.0,106.0,99.0,105.0,108.0,80.0,123.0,78.0,93.0,98.0,99.0,102.0,99.0,83.0,110.0,64.0,79.0,70.0,85.0,76.0,59.0,72.0,64.0,64.0,69.0,77.0,79.0,64.0,90.0,63.0,66.0,55.0,54.0,43.0,33.0,38.0,24.0,32.0,19.0,20.0,16.0,12.0,7.0,9.0,4.0,13.0 M89017,220.0,235.0,269.0,289.0,285.0,304.0,325.0,364.0,372.0,389.0,386.0,420.0,400.0,447.0,400.0,379.0,380.0,407.0,349.0,294.0,296.0,280.0,279.0,286.0,287.0,278.0,290.0,310.0,283.0,287.0,332.0,303.0,314.0,342.0,362.0,370.0,385.0,339.0,380.0,400.0,411.0,435.0,429.0,403.0,458.0,486.0,425.0,392.0,413.0,401.0,384.0,369.0,376.0,396.0,405.0,392.0,396.0,378.0,375.0,358.0,399.0,341.0,324.0,337.0,300.0,305.0,303.0,278.0,264.0,249.0,236.0,236.0,214.0,250.0,247.0,193.0,253.0,264.0,276.0,201.0,218.0,173.0,151.0,141.0,120.0,114.0,110.0,99.0,94.0,87.0,53.0,65.0,40.0,29.0,24.0,55.0 M89019,48.0,49.0,44.0,68.0,78.0,61.0,64.0,73.0,72.0,85.0,78.0,73.0,91.0,72.0,83.0,76.0,92.0,98.0,70.0,82.0,66.0,61.0,65.0,70.0,85.0,68.0,77.0,63.0,78.0,85.0,92.0,80.0,67.0,73.0,78.0,80.0,93.0,92.0,73.0,104.0,71.0,77.0,64.0,72.0,70.0,77.0,62.0,64.0,75.0,66.0,73.0,78.0,76.0,91.0,79.0,80.0,78.0,71.0,63.0,80.0,91.0,93.0,60.0,57.0,57.0,62.0,51.0,49.0,38.0,39.0,36.0,38.0,19.0,30.0,34.0,33.0,24.0,37.0,36.0,33.0,34.0,32.0,26.0,16.0,17.0,16.0,7.0,9.0,15.0,4.0,8.0,6.0,3.0,5.0,1.0,6.0 M89021,23.0,24.0,30.0,31.0,25.0,24.0,24.0,19.0,25.0,23.0,27.0,19.0,27.0,25.0,28.0,25.0,23.0,25.0,23.0,28.0,23.0,19.0,25.0,24.0,29.0,27.0,30.0,44.0,36.0,37.0,38.0,43.0,35.0,47.0,41.0,43.0,33.0,39.0,35.0,52.0,36.0,38.0,32.0,32.0,32.0,30.0,25.0,28.0,32.0,23.0,21.0,18.0,26.0,29.0,33.0,33.0,36.0,36.0,18.0,49.0,33.0,32.0,39.0,32.0,38.0,29.0,27.0,28.0,28.0,16.0,28.0,19.0,16.0,12.0,16.0,19.0,9.0,19.0,26.0,13.0,12.0,16.0,14.0,10.0,22.0,8.0,20.0,8.0,5.0,8.0,2.0,4.0,5.0,3.0,2.0,2.0 M89024,23.0,24.0,21.0,21.0,20.0,31.0,23.0,20.0,33.0,31.0,33.0,28.0,29.0,31.0,22.0,24.0,30.0,24.0,22.0,16.0,16.0,19.0,24.0,17.0,22.0,30.0,26.0,23.0,27.0,14.0,32.0,31.0,28.0,35.0,32.0,27.0,27.0,41.0,27.0,29.0,31.0,40.0,30.0,32.0,30.0,29.0,21.0,26.0,26.0,25.0,26.0,26.0,24.0,26.0,21.0,19.0,35.0,20.0,22.0,27.0,27.0,27.0,23.0,24.0,32.0,30.0,28.0,25.0,25.0,15.0,21.0,14.0,14.0,15.0,5.0,18.0,15.0,14.0,23.0,9.0,14.0,11.0,8.0,6.0,5.0,6.0,5.0,3.0,3.0,3.0,3.0,2.0,1.0,1.0,2.0,3.0 M89026,49.0,49.0,58.0,60.0,67.0,63.0,52.0,73.0,74.0,66.0,64.0,69.0,75.0,76.0,71.0,71.0,68.0,66.0,76.0,63.0,63.0,59.0,52.0,62.0,55.0,58.0,58.0,69.0,53.0,61.0,59.0,61.0,51.0,68.0,66.0,81.0,79.0,76.0,65.0,62.0,66.0,69.0,53.0,57.0,62.0,54.0,50.0,44.0,66.0,53.0,57.0,60.0,66.0,67.0,61.0,81.0,80.0,76.0,80.0,92.0,79.0,77.0,53.0,65.0,60.0,65.0,38.0,72.0,54.0,45.0,43.0,52.0,41.0,30.0,49.0,42.0,47.0,59.0,51.0,29.0,33.0,35.0,28.0,25.0,20.0,23.0,13.0,19.0,12.0,5.0,8.0,4.0,6.0,3.0,2.0,7.0 M89027,59.0,62.0,57.0,63.0,62.0,73.0,71.0,56.0,81.0,73.0,49.0,66.0,60.0,61.0,66.0,64.0,70.0,60.0,54.0,71.0,65.0,45.0,44.0,46.0,45.0,48.0,49.0,56.0,47.0,50.0,51.0,48.0,48.0,47.0,83.0,78.0,65.0,50.0,52.0,55.0,59.0,51.0,50.0,58.0,64.0,57.0,45.0,56.0,41.0,45.0,40.0,50.0,53.0,45.0,61.0,51.0,52.0,58.0,61.0,42.0,40.0,43.0,33.0,31.0,38.0,29.0,24.0,26.0,27.0,26.0,23.0,28.0,22.0,21.0,17.0,17.0,29.0,23.0,23.0,19.0,19.0,15.0,19.0,18.0,10.0,12.0,8.0,4.0,4.0,3.0,4.0,1.0,1.0,6.0,, M89030,10.0,22.0,20.0,21.0,24.0,34.0,19.0,35.0,37.0,33.0,38.0,40.0,39.0,42.0,50.0,44.0,51.0,54.0,43.0,43.0,28.0,26.0,22.0,28.0,27.0,28.0,31.0,20.0,27.0,18.0,18.0,31.0,27.0,17.0,20.0,27.0,28.0,19.0,27.0,29.0,38.0,26.0,34.0,27.0,42.0,39.0,52.0,42.0,33.0,39.0,48.0,38.0,34.0,41.0,39.0,51.0,51.0,45.0,40.0,50.0,45.0,35.0,38.0,34.0,42.0,46.0,37.0,35.0,36.0,36.0,29.0,28.0,24.0,30.0,37.0,26.0,32.0,33.0,47.0,18.0,29.0,24.0,14.0,22.0,15.0,9.0,11.0,12.0,2.0,4.0,9.0,3.0,7.0,3.0,2.0,6.0 M89608,14.0,18.0,17.0,16.0,20.0,28.0,19.0,14.0,23.0,26.0,21.0,29.0,23.0,31.0,25.0,35.0,15.0,26.0,28.0,26.0,13.0,20.0,15.0,16.0,16.0,20.0,17.0,17.0,14.0,22.0,17.0,25.0,26.0,19.0,19.0,19.0,21.0,16.0,18.0,25.0,19.0,16.0,27.0,25.0,25.0,25.0,21.0,20.0,21.0,25.0,27.0,15.0,25.0,33.0,32.0,32.0,33.0,29.0,22.0,25.0,24.0,22.0,29.0,36.0,25.0,24.0,21.0,29.0,14.0,18.0,12.0,21.0,14.0,12.0,24.0,14.0,19.0,25.0,17.0,20.0,18.0,9.0,20.0,5.0,12.0,4.0,10.0,4.0,6.0,7.0,5.0,1.0,1.0,1.0,2.0,3.0 M91642,11.0,9.0,6.0,14.0,7.0,11.0,10.0,13.0,9.0,11.0,10.0,14.0,12.0,10.0,9.0,6.0,10.0,9.0,9.0,11.0,8.0,6.0,15.0,11.0,10.0,10.0,11.0,11.0,10.0,14.0,11.0,11.0,17.0,19.0,12.0,23.0,16.0,16.0,12.0,13.0,18.0,11.0,15.0,16.0,18.0,9.0,9.0,6.0,9.0,13.0,8.0,7.0,8.0,5.0,12.0,8.0,8.0,14.0,16.0,9.0,9.0,16.0,8.0,13.0,15.0,12.0,11.0,9.0,8.0,7.0,6.0,8.0,4.0,8.0,7.0,4.0,4.0,8.0,6.0,2.0,6.0,8.0,3.0,3.0,3.0,2.0,2.0,4.0,,2.0,1.0,,,1.0,, Y00159,205.0,226.0,189.0,218.0,204.0,207.0,193.0,207.0,232.0,216.0,222.0,209.0,217.0,239.0,216.0,244.0,258.0,239.0,226.0,209.0,193.0,231.0,198.0,228.0,230.0,219.0,239.0,276.0,262.0,224.0,267.0,257.0,263.0,232.0,243.0,261.0,230.0,266.0,201.0,247.0,259.0,206.0,224.0,230.0,219.0,194.0,223.0,196.0,203.0,176.0,175.0,187.0,186.0,191.0,194.0,178.0,193.0,173.0,176.0,177.0,168.0,170.0,142.0,171.0,142.0,156.0,125.0,118.0,120.0,113.0,96.0,99.0,94.0,82.0,86.0,78.0,67.0,88.0,69.0,46.0,51.0,67.0,50.0,39.0,40.0,35.0,39.0,23.0,21.0,19.0,19.0,11.0,11.0,3.0,5.0,11.0 Y00412,39.0,41.0,26.0,32.0,35.0,29.0,34.0,34.0,39.0,38.0,40.0,34.0,40.0,46.0,40.0,36.0,47.0,39.0,34.0,38.0,49.0,51.0,54.0,77.0,68.0,66.0,70.0,69.0,79.0,68.0,66.0,70.0,69.0,63.0,58.0,67.0,61.0,54.0,56.0,65.0,45.0,47.0,40.0,35.0,38.0,43.0,47.0,36.0,46.0,48.0,48.0,46.0,39.0,37.0,29.0,33.0,35.0,26.0,30.0,29.0,25.0,25.0,19.0,20.0,24.0,22.0,30.0,18.0,16.0,13.0,16.0,9.0,17.0,9.0,12.0,6.0,8.0,5.0,4.0,6.0,3.0,7.0,6.0,5.0,4.0,6.0,4.0,3.0,5.0,2.0,2.0,2.0,2.0,2.0,1.0,1.0 Y00471,38.0,28.0,36.0,31.0,39.0,40.0,39.0,45.0,41.0,42.0,36.0,36.0,50.0,56.0,46.0,33.0,35.0,29.0,35.0,46.0,40.0,42.0,51.0,48.0,75.0,92.0,85.0,89.0,103.0,108.0,100.0,113.0,119.0,116.0,101.0,99.0,116.0,111.0,102.0,83.0,101.0,87.0,88.0,109.0,77.0,87.0,71.0,57.0,67.0,52.0,69.0,47.0,55.0,45.0,46.0,36.0,49.0,55.0,42.0,44.0,41.0,36.0,29.0,32.0,35.0,25.0,28.0,23.0,25.0,13.0,17.0,14.0,12.0,24.0,8.0,10.0,10.0,11.0,7.0,5.0,8.0,8.0,8.0,6.0,4.0,4.0,7.0,5.0,3.0,2.0,2.0,3.0,1.0,1.0,1.0, Y00492,50.0,62.0,52.0,59.0,69.0,60.0,82.0,77.0,68.0,80.0,87.0,71.0,86.0,95.0,84.0,79.0,81.0,80.0,61.0,68.0,55.0,64.0,63.0,68.0,53.0,85.0,68.0,71.0,75.0,55.0,77.0,86.0,108.0,78.0,72.0,101.0,83.0,109.0,91.0,101.0,89.0,98.0,115.0,107.0,106.0,110.0,91.0,93.0,79.0,77.0,89.0,62.0,67.0,58.0,64.0,57.0,50.0,42.0,22.0,29.0,27.0,27.0,31.0,16.0,27.0,15.0,18.0,19.0,18.0,5.0,6.0,14.0,2.0,2.0,7.0,6.0,1.0,4.0,1.0,,1.0,1.0,3.0,1.0,2.0,2.0,1.0,1.0,,1.0,,,2.0,,, Y01057,,,,,,,,,,,,,,1.0,,,,,,8.0,14.0,14.0,15.0,17.0,22.0,39.0,28.0,19.0,27.0,27.0,30.0,22.0,24.0,32.0,28.0,24.0,29.0,37.0,20.0,35.0,24.0,31.0,29.0,33.0,24.0,32.0,20.0,21.0,17.0,22.0,24.0,16.0,28.0,14.0,19.0,16.0,15.0,19.0,7.0,9.0,12.0,5.0,9.0,15.0,6.0,9.0,2.0,3.0,2.0,5.0,4.0,3.0,1.0,1.0,,2.0,1.0,1.0,,,,,1.0,,,,,,,,,,,,, Y01068,41.0,36.0,37.0,36.0,35.0,32.0,48.0,36.0,41.0,40.0,45.0,40.0,46.0,56.0,41.0,56.0,47.0,52.0,69.0,53.0,43.0,60.0,55.0,54.0,55.0,54.0,44.0,40.0,38.0,47.0,38.0,38.0,47.0,45.0,48.0,43.0,34.0,34.0,45.0,35.0,43.0,40.0,37.0,37.0,46.0,38.0,37.0,29.0,36.0,35.0,32.0,21.0,27.0,21.0,29.0,22.0,25.0,23.0,16.0,17.0,18.0,9.0,11.0,13.0,8.0,6.0,6.0,10.0,7.0,11.0,10.0,3.0,13.0,6.0,4.0,4.0,3.0,1.0,1.0,3.0,2.0,2.0,1.0,1.0,1.0,2.0,1.0,3.0,,4.0,1.0,2.0,1.0,1.0,, Y02567,57.0,48.0,58.0,53.0,60.0,65.0,66.0,59.0,76.0,69.0,66.0,67.0,73.0,81.0,61.0,68.0,73.0,64.0,72.0,42.0,57.0,42.0,38.0,50.0,47.0,46.0,40.0,38.0,49.0,45.0,39.0,41.0,50.0,53.0,40.0,43.0,49.0,52.0,51.0,52.0,59.0,42.0,36.0,46.0,43.0,47.0,49.0,32.0,29.0,34.0,28.0,33.0,29.0,30.0,44.0,20.0,24.0,16.0,27.0,21.0,18.0,19.0,14.0,20.0,27.0,21.0,15.0,11.0,11.0,15.0,5.0,9.0,16.0,7.0,6.0,13.0,8.0,2.0,5.0,4.0,4.0,7.0,2.0,8.0,1.0,6.0,3.0,,,1.0,1.0,1.0,1.0,1.0,,2.0 Y02571,63.0,53.0,45.0,63.0,61.0,64.0,78.0,61.0,79.0,58.0,73.0,75.0,75.0,75.0,56.0,69.0,62.0,45.0,39.0,50.0,33.0,30.0,32.0,29.0,30.0,44.0,36.0,43.0,47.0,66.0,55.0,52.0,61.0,85.0,83.0,79.0,79.0,77.0,100.0,66.0,64.0,110.0,84.0,75.0,72.0,73.0,75.0,71.0,72.0,57.0,41.0,65.0,69.0,50.0,51.0,46.0,41.0,38.0,37.0,39.0,28.0,32.0,29.0,24.0,25.0,21.0,32.0,23.0,23.0,17.0,21.0,18.0,21.0,23.0,21.0,21.0,24.0,18.0,20.0,8.0,9.0,6.0,7.0,6.0,9.0,3.0,7.0,1.0,6.0,4.0,2.0,2.0,2.0,4.0,1.0,2.0 Y02794,110.0,112.0,115.0,115.0,122.0,113.0,151.0,135.0,158.0,159.0,135.0,139.0,163.0,138.0,129.0,142.0,134.0,147.0,128.0,120.0,120.0,111.0,116.0,94.0,91.0,104.0,99.0,100.0,101.0,118.0,96.0,107.0,103.0,100.0,113.0,94.0,108.0,105.0,103.0,108.0,106.0,100.0,91.0,97.0,76.0,76.0,74.0,75.0,67.0,57.0,61.0,59.0,65.0,65.0,51.0,48.0,42.0,44.0,22.0,32.0,27.0,27.0,27.0,21.0,16.0,22.0,18.0,15.0,14.0,16.0,11.0,10.0,13.0,14.0,14.0,8.0,8.0,6.0,3.0,3.0,4.0,1.0,6.0,2.0,1.0,3.0,3.0,4.0,,3.0,4.0,,,,,1.0 Y02893,141.0,163.0,176.0,170.0,169.0,182.0,198.0,182.0,214.0,192.0,193.0,195.0,190.0,179.0,169.0,207.0,176.0,166.0,161.0,159.0,172.0,139.0,125.0,148.0,154.0,191.0,183.0,153.0,174.0,162.0,157.0,153.0,159.0,166.0,158.0,178.0,161.0,172.0,159.0,183.0,159.0,178.0,148.0,159.0,142.0,159.0,133.0,127.0,112.0,137.0,125.0,106.0,149.0,158.0,129.0,106.0,130.0,129.0,79.0,107.0,113.0,107.0,95.0,95.0,88.0,100.0,83.0,80.0,81.0,64.0,70.0,66.0,45.0,57.0,54.0,40.0,51.0,50.0,44.0,37.0,41.0,36.0,25.0,27.0,20.0,20.0,20.0,12.0,14.0,16.0,8.0,7.0,7.0,4.0,5.0,6.0 Y03597,55.0,64.0,61.0,73.0,61.0,76.0,55.0,64.0,76.0,90.0,95.0,92.0,63.0,67.0,60.0,58.0,79.0,60.0,72.0,62.0,73.0,76.0,51.0,74.0,78.0,73.0,62.0,66.0,66.0,71.0,81.0,58.0,58.0,53.0,60.0,64.0,78.0,73.0,55.0,63.0,57.0,45.0,59.0,39.0,46.0,60.0,41.0,41.0,36.0,42.0,24.0,39.0,43.0,36.0,39.0,35.0,34.0,18.0,21.0,22.0,18.0,16.0,16.0,14.0,12.0,9.0,15.0,14.0,9.0,9.0,8.0,11.0,10.0,12.0,5.0,5.0,7.0,1.0,3.0,2.0,4.0,1.0,8.0,3.0,1.0,2.0,7.0,2.0,,1.0,1.0,,1.0,,1.0,1.0 Y05826,43.0,39.0,48.0,39.0,49.0,55.0,70.0,61.0,68.0,51.0,58.0,70.0,75.0,65.0,74.0,69.0,76.0,79.0,46.0,43.0,49.0,59.0,63.0,48.0,66.0,68.0,46.0,50.0,52.0,65.0,47.0,51.0,59.0,58.0,70.0,78.0,64.0,75.0,65.0,66.0,61.0,63.0,68.0,63.0,63.0,62.0,65.0,42.0,52.0,31.0,45.0,38.0,43.0,41.0,40.0,24.0,33.0,24.0,16.0,19.0,21.0,15.0,11.0,14.0,9.0,10.0,8.0,9.0,13.0,10.0,11.0,6.0,12.0,8.0,5.0,5.0,2.0,5.0,,2.0,2.0,1.0,2.0,4.0,,2.0,3.0,1.0,,2.0,,,,,,1.0 Y06378,31.0,47.0,43.0,52.0,45.0,61.0,68.0,57.0,65.0,59.0,62.0,61.0,55.0,45.0,44.0,66.0,50.0,48.0,50.0,41.0,56.0,54.0,47.0,46.0,50.0,62.0,42.0,61.0,63.0,76.0,79.0,70.0,78.0,90.0,99.0,107.0,98.0,88.0,101.0,99.0,79.0,75.0,82.0,81.0,57.0,71.0,56.0,55.0,56.0,56.0,48.0,38.0,49.0,35.0,32.0,24.0,30.0,23.0,24.0,31.0,20.0,33.0,24.0,17.0,14.0,20.0,16.0,15.0,12.0,14.0,5.0,13.0,7.0,5.0,9.0,2.0,1.0,7.0,2.0,6.0,4.0,1.0,2.0,4.0,3.0,2.0,3.0,4.0,2.0,2.0,3.0,,2.0,,1.0,2.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 A81001,13.0,17.0,24.0,17.0,17.0,17.0,23.0,23.0,24.0,16.0,26.0,31.0,14.0,29.0,27.0,26.0,22.0,24.0,21.0,26.0,23.0,21.0,22.0,20.0,20.0,30.0,21.0,28.0,20.0,19.0,25.0,32.0,24.0,23.0,37.0,24.0,22.0,23.0,28.0,27.0,32.0,26.0,30.0,28.0,30.0,17.0,22.0,15.0,25.0,22.0,27.0,17.0,28.0,33.0,30.0,24.0,16.0,35.0,18.0,24.0,19.0,23.0,26.0,15.0,26.0,14.0,36.0,22.0,21.0,19.0,21.0,20.0,26.0,19.0,12.0,25.0,27.0,12.0,18.0,11.0,18.0,11.0,16.0,11.0,12.0,11.0,15.0,6.0,7.0,1.0,7.0,1.0,4.0,,3.0,4.0 A81002,94.0,102.0,83.0,77.0,88.0,68.0,84.0,92.0,88.0,118.0,100.0,112.0,105.0,94.0,123.0,106.0,95.0,116.0,115.0,102.0,98.0,96.0,86.0,90.0,78.0,113.0,112.0,104.0,109.0,108.0,107.0,113.0,128.0,158.0,149.0,134.0,122.0,141.0,130.0,136.0,132.0,116.0,106.0,113.0,124.0,99.0,93.0,89.0,91.0,100.0,106.0,111.0,94.0,97.0,106.0,124.0,135.0,144.0,145.0,142.0,145.0,129.0,167.0,153.0,158.0,141.0,131.0,113.0,113.0,113.0,88.0,108.0,99.0,92.0,96.0,96.0,95.0,98.0,81.0,68.0,58.0,59.0,45.0,46.0,49.0,30.0,39.0,30.0,23.0,22.0,17.0,11.0,12.0,7.0,3.0,14.0 A81004,59.0,66.0,62.0,63.0,74.0,75.0,65.0,77.0,66.0,60.0,56.0,60.0,71.0,71.0,79.0,72.0,51.0,59.0,61.0,80.0,58.0,50.0,56.0,55.0,73.0,57.0,47.0,63.0,71.0,78.0,99.0,103.0,107.0,103.0,103.0,118.0,119.0,99.0,110.0,90.0,94.0,103.0,72.0,67.0,89.0,79.0,75.0,63.0,51.0,63.0,74.0,72.0,63.0,67.0,78.0,72.0,78.0,76.0,62.0,73.0,70.0,58.0,78.0,59.0,78.0,68.0,78.0,60.0,71.0,63.0,54.0,47.0,58.0,48.0,50.0,46.0,39.0,40.0,47.0,33.0,40.0,35.0,23.0,31.0,20.0,21.0,18.0,15.0,15.0,11.0,12.0,9.0,5.0,2.0,3.0,5.0 A81005,38.0,25.0,28.0,29.0,16.0,28.0,34.0,36.0,37.0,34.0,36.0,47.0,32.0,50.0,51.0,43.0,57.0,32.0,50.0,37.0,43.0,27.0,28.0,33.0,31.0,31.0,30.0,33.0,34.0,30.0,22.0,47.0,42.0,37.0,41.0,36.0,30.0,33.0,44.0,37.0,60.0,33.0,36.0,42.0,43.0,42.0,48.0,46.0,35.0,53.0,44.0,56.0,60.0,50.0,39.0,46.0,51.0,62.0,52.0,61.0,60.0,51.0,43.0,53.0,40.0,50.0,59.0,48.0,51.0,45.0,59.0,48.0,58.0,60.0,49.0,52.0,65.0,55.0,58.0,39.0,46.0,43.0,36.0,41.0,25.0,22.0,25.0,11.0,13.0,12.0,5.0,11.0,9.0,10.0,7.0,10.0 A81006,70.0,66.0,76.0,74.0,82.0,71.0,85.0,87.0,97.0,86.0,93.0,103.0,95.0,113.0,104.0,109.0,104.0,101.0,94.0,83.0,72.0,86.0,73.0,78.0,74.0,66.0,90.0,80.0,78.0,97.0,92.0,97.0,113.0,90.0,96.0,137.0,110.0,100.0,96.0,113.0,94.0,104.0,97.0,87.0,80.0,95.0,84.0,82.0,81.0,97.0,78.0,79.0,85.0,93.0,98.0,94.0,100.0,101.0,105.0,109.0,88.0,98.0,92.0,114.0,104.0,81.0,87.0,93.0,93.0,83.0,75.0,80.0,62.0,60.0,61.0,59.0,74.0,71.0,67.0,37.0,39.0,39.0,29.0,40.0,18.0,16.0,19.0,15.0,22.0,8.0,10.0,7.0,6.0,1.0,5.0,8.0 A81007,49.0,51.0,59.0,59.0,57.0,61.0,50.0,65.0,77.0,74.0,49.0,66.0,60.0,60.0,76.0,70.0,75.0,70.0,73.0,69.0,71.0,67.0,70.0,69.0,65.0,67.0,76.0,78.0,84.0,72.0,72.0,77.0,83.0,66.0,76.0,75.0,76.0,87.0,63.0,62.0,63.0,71.0,84.0,60.0,68.0,77.0,56.0,59.0,54.0,47.0,55.0,52.0,73.0,70.0,67.0,64.0,54.0,74.0,76.0,86.0,90.0,54.0,69.0,71.0,70.0,55.0,60.0,58.0,48.0,56.0,55.0,50.0,50.0,49.0,36.0,45.0,39.0,49.0,45.0,33.0,23.0,20.0,22.0,16.0,15.0,15.0,13.0,15.0,11.0,12.0,5.0,9.0,1.0,4.0,4.0,9.0 A81009,29.0,31.0,30.0,39.0,35.0,41.0,31.0,51.0,54.0,49.0,55.0,58.0,68.0,69.0,52.0,50.0,48.0,56.0,45.0,42.0,42.0,47.0,55.0,51.0,52.0,57.0,41.0,54.0,61.0,54.0,55.0,65.0,54.0,60.0,58.0,60.0,69.0,56.0,66.0,58.0,55.0,60.0,68.0,60.0,72.0,60.0,41.0,37.0,44.0,46.0,47.0,50.0,45.0,62.0,36.0,63.0,49.0,62.0,62.0,56.0,71.0,69.0,56.0,55.0,41.0,51.0,57.0,51.0,57.0,41.0,54.0,37.0,36.0,33.0,27.0,28.0,22.0,20.0,28.0,19.0,21.0,16.0,20.0,18.0,7.0,14.0,4.0,7.0,7.0,10.0,6.0,3.0,2.0,1.0,2.0,3.0 A81011,47.0,52.0,62.0,66.0,52.0,53.0,82.0,61.0,65.0,72.0,63.0,68.0,77.0,75.0,66.0,66.0,62.0,88.0,54.0,56.0,56.0,52.0,58.0,66.0,53.0,70.0,60.0,86.0,78.0,67.0,69.0,83.0,70.0,101.0,85.0,69.0,85.0,73.0,84.0,73.0,75.0,71.0,68.0,62.0,74.0,63.0,60.0,58.0,48.0,57.0,62.0,91.0,82.0,63.0,87.0,86.0,88.0,82.0,97.0,73.0,99.0,80.0,86.0,86.0,66.0,89.0,81.0,69.0,68.0,59.0,59.0,67.0,55.0,73.0,59.0,56.0,54.0,61.0,51.0,45.0,49.0,27.0,20.0,22.0,27.0,27.0,17.0,15.0,18.0,16.0,9.0,14.0,6.0,5.0,3.0,3.0 A81012,33.0,21.0,32.0,44.0,29.0,38.0,41.0,40.0,47.0,43.0,54.0,45.0,50.0,54.0,42.0,35.0,42.0,43.0,44.0,27.0,32.0,37.0,40.0,37.0,44.0,53.0,50.0,38.0,36.0,52.0,53.0,39.0,47.0,47.0,54.0,39.0,47.0,56.0,50.0,50.0,35.0,37.0,56.0,41.0,34.0,35.0,37.0,23.0,29.0,38.0,31.0,34.0,39.0,37.0,31.0,29.0,22.0,30.0,37.0,36.0,32.0,38.0,38.0,51.0,33.0,33.0,21.0,30.0,33.0,26.0,25.0,13.0,23.0,17.0,8.0,13.0,10.0,14.0,14.0,10.0,10.0,7.0,8.0,4.0,7.0,8.0,2.0,4.0,5.0,2.0,3.0,,2.0,,1.0,5.0 A81013,34.0,30.0,36.0,48.0,34.0,47.0,43.0,35.0,41.0,34.0,52.0,31.0,59.0,48.0,46.0,55.0,43.0,44.0,54.0,44.0,52.0,34.0,38.0,50.0,38.0,38.0,47.0,33.0,34.0,54.0,38.0,47.0,44.0,44.0,35.0,35.0,38.0,60.0,43.0,36.0,55.0,56.0,29.0,39.0,36.0,39.0,47.0,38.0,30.0,41.0,55.0,48.0,62.0,57.0,54.0,43.0,48.0,55.0,61.0,58.0,56.0,54.0,62.0,52.0,65.0,39.0,54.0,38.0,47.0,29.0,45.0,45.0,44.0,33.0,44.0,35.0,42.0,43.0,43.0,30.0,26.0,26.0,22.0,15.0,15.0,18.0,13.0,14.0,13.0,2.0,4.0,4.0,3.0,,,4.0 A81014,19.0,22.0,12.0,23.0,24.0,33.0,17.0,13.0,26.0,26.0,17.0,19.0,25.0,22.0,20.0,14.0,27.0,25.0,16.0,18.0,15.0,15.0,22.0,17.0,16.0,18.0,21.0,25.0,27.0,19.0,27.0,23.0,33.0,27.0,27.0,27.0,25.0,30.0,35.0,26.0,34.0,25.0,26.0,22.0,23.0,29.0,26.0,23.0,20.0,16.0,24.0,24.0,29.0,24.0,23.0,23.0,25.0,25.0,29.0,44.0,36.0,28.0,30.0,34.0,30.0,38.0,22.0,36.0,28.0,35.0,19.0,21.0,22.0,22.0,21.0,26.0,21.0,29.0,24.0,16.0,23.0,20.0,11.0,15.0,6.0,8.0,12.0,14.0,5.0,4.0,4.0,5.0,3.0,1.0,3.0,3.0 A81016,76.0,77.0,75.0,74.0,60.0,77.0,84.0,91.0,95.0,84.0,90.0,93.0,87.0,79.0,89.0,86.0,80.0,82.0,65.0,64.0,80.0,57.0,70.0,113.0,114.0,111.0,120.0,142.0,157.0,137.0,120.0,145.0,135.0,125.0,135.0,153.0,140.0,124.0,138.0,144.0,116.0,113.0,126.0,100.0,100.0,101.0,85.0,88.0,68.0,77.0,77.0,63.0,64.0,58.0,51.0,61.0,42.0,66.0,52.0,64.0,57.0,51.0,48.0,68.0,46.0,46.0,50.0,56.0,55.0,39.0,36.0,36.0,41.0,25.0,24.0,30.0,32.0,26.0,36.0,13.0,19.0,18.0,16.0,10.0,15.0,14.0,9.0,10.0,9.0,6.0,4.0,2.0,5.0,2.0,2.0,1.0 A81017,72.0,80.0,68.0,75.0,82.0,110.0,95.0,95.0,118.0,130.0,126.0,141.0,140.0,125.0,136.0,148.0,115.0,126.0,145.0,128.0,103.0,129.0,100.0,100.0,84.0,105.0,116.0,101.0,113.0,106.0,104.0,114.0,93.0,108.0,109.0,96.0,123.0,114.0,112.0,132.0,119.0,133.0,137.0,134.0,130.0,121.0,131.0,115.0,127.0,114.0,127.0,134.0,125.0,146.0,148.0,145.0,126.0,125.0,137.0,132.0,117.0,136.0,129.0,102.0,110.0,105.0,86.0,95.0,98.0,85.0,69.0,108.0,84.0,84.0,91.0,65.0,71.0,79.0,66.0,56.0,32.0,39.0,31.0,34.0,29.0,24.0,17.0,22.0,10.0,10.0,9.0,4.0,12.0,4.0,4.0,8.0 A81018,42.0,34.0,35.0,51.0,39.0,46.0,49.0,50.0,72.0,57.0,60.0,61.0,78.0,80.0,75.0,59.0,60.0,77.0,56.0,58.0,60.0,55.0,48.0,61.0,45.0,49.0,64.0,39.0,61.0,64.0,46.0,58.0,44.0,76.0,71.0,66.0,66.0,73.0,71.0,66.0,63.0,64.0,59.0,77.0,75.0,64.0,62.0,51.0,51.0,63.0,64.0,60.0,61.0,75.0,72.0,69.0,78.0,78.0,69.0,74.0,97.0,90.0,86.0,75.0,88.0,83.0,76.0,62.0,61.0,63.0,55.0,63.0,45.0,47.0,41.0,50.0,55.0,51.0,65.0,35.0,53.0,33.0,27.0,31.0,17.0,13.0,22.0,13.0,8.0,17.0,8.0,8.0,5.0,3.0,3.0,6.0 A81019,40.0,48.0,49.0,47.0,56.0,52.0,59.0,63.0,69.0,67.0,60.0,67.0,81.0,80.0,63.0,70.0,51.0,55.0,62.0,81.0,46.0,68.0,61.0,52.0,65.0,46.0,80.0,70.0,58.0,66.0,62.0,54.0,54.0,66.0,59.0,55.0,67.0,60.0,60.0,68.0,55.0,50.0,43.0,52.0,46.0,56.0,49.0,31.0,34.0,48.0,38.0,52.0,35.0,46.0,55.0,60.0,57.0,53.0,57.0,57.0,54.0,53.0,58.0,58.0,54.0,48.0,56.0,50.0,51.0,48.0,42.0,39.0,32.0,44.0,26.0,31.0,34.0,28.0,36.0,22.0,15.0,14.0,11.0,13.0,7.0,12.0,6.0,7.0,4.0,5.0,1.0,7.0,5.0,2.0,,4.0 A81020,35.0,40.0,40.0,50.0,38.0,53.0,53.0,67.0,50.0,58.0,52.0,59.0,41.0,55.0,61.0,37.0,41.0,52.0,45.0,39.0,42.0,31.0,35.0,32.0,37.0,39.0,30.0,55.0,46.0,41.0,49.0,40.0,51.0,45.0,43.0,71.0,57.0,84.0,60.0,68.0,59.0,58.0,52.0,62.0,54.0,50.0,50.0,34.0,45.0,42.0,50.0,49.0,53.0,36.0,45.0,47.0,47.0,33.0,52.0,54.0,58.0,45.0,36.0,40.0,40.0,37.0,52.0,53.0,37.0,40.0,49.0,41.0,43.0,36.0,35.0,40.0,33.0,28.0,38.0,28.0,22.0,24.0,36.0,20.0,27.0,15.0,13.0,15.0,10.0,9.0,6.0,2.0,6.0,3.0,,10.0 A81021,100.0,125.0,117.0,122.0,125.0,110.0,138.0,111.0,147.0,136.0,158.0,146.0,157.0,146.0,138.0,156.0,133.0,139.0,139.0,142.0,113.0,103.0,112.0,123.0,115.0,138.0,126.0,125.0,155.0,157.0,124.0,119.0,153.0,167.0,155.0,163.0,149.0,132.0,151.0,157.0,156.0,144.0,143.0,121.0,137.0,157.0,115.0,106.0,95.0,122.0,106.0,132.0,114.0,168.0,158.0,159.0,140.0,163.0,170.0,175.0,159.0,161.0,158.0,183.0,141.0,141.0,134.0,123.0,123.0,106.0,114.0,102.0,104.0,95.0,85.0,76.0,94.0,126.0,101.0,74.0,78.0,58.0,51.0,49.0,57.0,40.0,47.0,33.0,24.0,30.0,17.0,16.0,17.0,5.0,4.0,13.0 A81022,34.0,50.0,36.0,53.0,37.0,48.0,51.0,31.0,43.0,45.0,52.0,60.0,65.0,57.0,53.0,57.0,59.0,56.0,65.0,64.0,56.0,60.0,47.0,43.0,39.0,41.0,55.0,33.0,38.0,51.0,63.0,54.0,51.0,55.0,63.0,52.0,47.0,44.0,52.0,55.0,48.0,55.0,59.0,49.0,58.0,61.0,64.0,43.0,44.0,53.0,56.0,58.0,43.0,65.0,68.0,68.0,80.0,85.0,90.0,75.0,65.0,85.0,60.0,69.0,64.0,65.0,78.0,64.0,53.0,54.0,66.0,44.0,52.0,54.0,57.0,49.0,51.0,69.0,67.0,47.0,34.0,33.0,20.0,30.0,20.0,25.0,14.0,15.0,11.0,8.0,12.0,7.0,3.0,2.0,3.0,3.0 A81023,39.0,48.0,51.0,45.0,40.0,38.0,53.0,41.0,52.0,59.0,53.0,33.0,42.0,52.0,56.0,39.0,44.0,52.0,53.0,52.0,51.0,46.0,66.0,83.0,101.0,138.0,143.0,161.0,138.0,152.0,130.0,141.0,104.0,110.0,116.0,110.0,116.0,108.0,98.0,87.0,74.0,76.0,60.0,55.0,56.0,52.0,51.0,33.0,34.0,27.0,34.0,27.0,30.0,40.0,33.0,24.0,40.0,46.0,29.0,32.0,42.0,29.0,44.0,44.0,29.0,31.0,37.0,40.0,30.0,25.0,35.0,24.0,37.0,13.0,24.0,23.0,20.0,20.0,15.0,14.0,7.0,11.0,11.0,5.0,6.0,4.0,5.0,5.0,4.0,4.0,1.0,3.0,2.0,2.0,3.0,1.0 A81025,18.0,12.0,20.0,25.0,16.0,23.0,17.0,24.0,24.0,25.0,26.0,31.0,31.0,29.0,29.0,22.0,25.0,32.0,20.0,19.0,23.0,20.0,28.0,13.0,11.0,20.0,21.0,18.0,24.0,29.0,38.0,24.0,36.0,29.0,38.0,33.0,28.0,27.0,36.0,23.0,36.0,30.0,23.0,31.0,27.0,31.0,33.0,30.0,19.0,33.0,21.0,24.0,24.0,20.0,28.0,32.0,26.0,37.0,31.0,26.0,31.0,27.0,18.0,28.0,17.0,32.0,29.0,20.0,16.0,21.0,29.0,26.0,26.0,17.0,14.0,14.0,22.0,24.0,15.0,16.0,21.0,7.0,9.0,8.0,10.0,5.0,4.0,3.0,7.0,3.0,3.0,5.0,1.0,3.0,2.0,1.0 A81026,113.0,125.0,131.0,143.0,139.0,145.0,119.0,146.0,137.0,178.0,147.0,149.0,168.0,146.0,165.0,162.0,132.0,147.0,139.0,120.0,134.0,128.0,122.0,126.0,140.0,148.0,136.0,143.0,160.0,171.0,187.0,166.0,187.0,188.0,171.0,186.0,167.0,180.0,171.0,161.0,168.0,162.0,144.0,157.0,131.0,156.0,138.0,137.0,113.0,122.0,118.0,118.0,106.0,126.0,144.0,119.0,112.0,121.0,131.0,122.0,130.0,121.0,132.0,132.0,118.0,107.0,106.0,96.0,93.0,80.0,101.0,87.0,64.0,76.0,72.0,60.0,80.0,71.0,56.0,56.0,50.0,26.0,30.0,36.0,29.0,20.0,21.0,21.0,14.0,9.0,17.0,7.0,8.0,2.0,5.0,4.0 A81027,44.0,52.0,60.0,60.0,64.0,73.0,82.0,79.0,81.0,93.0,78.0,67.0,92.0,78.0,84.0,102.0,92.0,101.0,80.0,75.0,77.0,72.0,73.0,48.0,77.0,53.0,65.0,77.0,71.0,62.0,62.0,79.0,75.0,89.0,86.0,85.0,106.0,104.0,85.0,108.0,85.0,97.0,96.0,100.0,108.0,122.0,128.0,85.0,86.0,92.0,86.0,92.0,98.0,105.0,109.0,99.0,97.0,92.0,112.0,101.0,99.0,118.0,78.0,92.0,89.0,81.0,107.0,84.0,96.0,82.0,72.0,76.0,78.0,74.0,76.0,96.0,73.0,92.0,81.0,61.0,64.0,38.0,46.0,41.0,44.0,21.0,46.0,36.0,21.0,11.0,13.0,6.0,10.0,6.0,4.0,13.0 A81029,36.0,43.0,44.0,41.0,44.0,32.0,46.0,53.0,40.0,33.0,30.0,38.0,35.0,34.0,38.0,41.0,27.0,42.0,34.0,41.0,45.0,45.0,47.0,71.0,89.0,112.0,128.0,155.0,172.0,158.0,103.0,102.0,93.0,93.0,111.0,108.0,106.0,105.0,91.0,84.0,65.0,54.0,41.0,43.0,34.0,41.0,39.0,30.0,21.0,25.0,34.0,39.0,32.0,32.0,26.0,20.0,28.0,32.0,34.0,17.0,27.0,24.0,32.0,34.0,34.0,49.0,30.0,35.0,21.0,22.0,19.0,26.0,21.0,22.0,17.0,15.0,18.0,16.0,23.0,19.0,12.0,8.0,12.0,5.0,12.0,3.0,9.0,4.0,3.0,,2.0,3.0,2.0,1.0,1.0,1.0 A81030,98.0,104.0,81.0,92.0,96.0,92.0,74.0,116.0,100.0,104.0,127.0,120.0,109.0,106.0,103.0,104.0,99.0,114.0,92.0,105.0,102.0,98.0,91.0,93.0,119.0,113.0,127.0,120.0,134.0,114.0,105.0,120.0,127.0,157.0,114.0,117.0,129.0,132.0,120.0,136.0,104.0,123.0,104.0,104.0,103.0,112.0,85.0,91.0,84.0,97.0,91.0,104.0,111.0,97.0,88.0,106.0,104.0,80.0,103.0,114.0,119.0,83.0,99.0,104.0,93.0,86.0,80.0,89.0,78.0,83.0,60.0,71.0,65.0,73.0,66.0,84.0,43.0,77.0,74.0,43.0,45.0,47.0,30.0,38.0,31.0,23.0,25.0,19.0,18.0,16.0,21.0,13.0,8.0,3.0,6.0,17.0 A81031,65.0,76.0,80.0,68.0,83.0,78.0,81.0,93.0,81.0,81.0,98.0,86.0,90.0,88.0,87.0,101.0,77.0,90.0,73.0,77.0,75.0,62.0,75.0,78.0,71.0,75.0,80.0,65.0,84.0,90.0,80.0,95.0,102.0,107.0,88.0,67.0,102.0,113.0,105.0,93.0,87.0,107.0,96.0,84.0,92.0,86.0,80.0,70.0,70.0,84.0,83.0,70.0,80.0,74.0,79.0,74.0,79.0,92.0,92.0,105.0,85.0,87.0,101.0,82.0,94.0,95.0,77.0,69.0,86.0,70.0,65.0,59.0,59.0,51.0,56.0,38.0,49.0,58.0,56.0,34.0,45.0,32.0,24.0,23.0,28.0,34.0,16.0,18.0,16.0,16.0,11.0,10.0,7.0,1.0,3.0,10.0 A81032,36.0,46.0,52.0,62.0,47.0,41.0,62.0,60.0,54.0,56.0,47.0,60.0,75.0,73.0,58.0,62.0,56.0,66.0,63.0,50.0,55.0,43.0,57.0,56.0,61.0,49.0,56.0,59.0,60.0,65.0,74.0,71.0,76.0,75.0,77.0,73.0,63.0,78.0,72.0,68.0,73.0,66.0,64.0,64.0,49.0,55.0,46.0,67.0,61.0,79.0,57.0,54.0,60.0,73.0,92.0,64.0,88.0,90.0,74.0,80.0,67.0,88.0,102.0,80.0,100.0,85.0,71.0,70.0,80.0,71.0,69.0,55.0,59.0,75.0,63.0,68.0,68.0,88.0,69.0,56.0,48.0,47.0,46.0,37.0,37.0,29.0,20.0,27.0,21.0,26.0,10.0,11.0,5.0,5.0,5.0,13.0 A81034,76.0,84.0,80.0,105.0,106.0,126.0,132.0,132.0,140.0,163.0,160.0,178.0,162.0,147.0,146.0,181.0,166.0,147.0,154.0,113.0,121.0,139.0,106.0,90.0,102.0,150.0,118.0,104.0,134.0,123.0,132.0,131.0,132.0,131.0,142.0,160.0,141.0,169.0,139.0,152.0,138.0,158.0,169.0,139.0,146.0,140.0,132.0,137.0,121.0,120.0,128.0,146.0,148.0,161.0,161.0,161.0,172.0,170.0,134.0,134.0,135.0,123.0,126.0,114.0,113.0,119.0,116.0,111.0,117.0,90.0,94.0,93.0,91.0,76.0,85.0,76.0,66.0,75.0,75.0,43.0,50.0,38.0,21.0,37.0,21.0,25.0,27.0,23.0,20.0,14.0,4.0,10.0,3.0,5.0,6.0,8.0 A81035,35.0,44.0,52.0,54.0,44.0,43.0,66.0,60.0,70.0,67.0,59.0,72.0,59.0,71.0,76.0,66.0,53.0,57.0,73.0,65.0,49.0,67.0,54.0,67.0,53.0,61.0,68.0,90.0,90.0,71.0,79.0,92.0,99.0,86.0,67.0,82.0,87.0,85.0,90.0,84.0,91.0,88.0,67.0,85.0,68.0,77.0,69.0,62.0,56.0,60.0,75.0,73.0,63.0,49.0,72.0,46.0,54.0,62.0,55.0,58.0,64.0,65.0,69.0,51.0,69.0,67.0,50.0,58.0,55.0,48.0,48.0,36.0,48.0,50.0,31.0,29.0,43.0,51.0,43.0,18.0,25.0,13.0,14.0,19.0,15.0,19.0,13.0,6.0,7.0,11.0,4.0,2.0,3.0,2.0,3.0,6.0 A81036,69.0,59.0,71.0,85.0,64.0,86.0,64.0,83.0,105.0,107.0,105.0,97.0,109.0,120.0,126.0,117.0,109.0,102.0,85.0,107.0,94.0,81.0,70.0,91.0,78.0,85.0,71.0,88.0,98.0,86.0,101.0,105.0,106.0,101.0,105.0,109.0,99.0,104.0,129.0,128.0,111.0,99.0,119.0,94.0,104.0,106.0,106.0,87.0,79.0,84.0,95.0,106.0,113.0,113.0,130.0,102.0,96.0,113.0,116.0,115.0,108.0,108.0,102.0,112.0,95.0,104.0,90.0,95.0,78.0,95.0,84.0,81.0,81.0,74.0,87.0,77.0,66.0,85.0,90.0,45.0,54.0,43.0,43.0,41.0,32.0,28.0,31.0,20.0,26.0,20.0,13.0,5.0,7.0,7.0,6.0,20.0 A81037,23.0,27.0,23.0,27.0,21.0,32.0,25.0,27.0,33.0,41.0,30.0,47.0,43.0,37.0,42.0,39.0,42.0,35.0,44.0,41.0,49.0,46.0,50.0,61.0,70.0,104.0,113.0,116.0,119.0,96.0,85.0,78.0,79.0,72.0,64.0,85.0,59.0,63.0,71.0,56.0,53.0,40.0,51.0,40.0,41.0,51.0,37.0,35.0,32.0,30.0,31.0,32.0,27.0,59.0,20.0,36.0,39.0,47.0,42.0,52.0,29.0,41.0,38.0,52.0,31.0,36.0,36.0,43.0,27.0,20.0,23.0,16.0,22.0,16.0,12.0,13.0,17.0,23.0,15.0,13.0,11.0,13.0,10.0,6.0,4.0,9.0,10.0,6.0,5.0,5.0,1.0,2.0,2.0,2.0,3.0, A81038,24.0,28.0,26.0,25.0,14.0,32.0,27.0,36.0,29.0,26.0,31.0,31.0,33.0,27.0,41.0,34.0,39.0,25.0,23.0,25.0,15.0,19.0,20.0,14.0,16.0,26.0,19.0,26.0,25.0,26.0,22.0,19.0,31.0,28.0,22.0,35.0,30.0,30.0,35.0,34.0,26.0,25.0,31.0,26.0,29.0,34.0,36.0,33.0,25.0,25.0,26.0,29.0,17.0,24.0,21.0,21.0,13.0,29.0,18.0,21.0,23.0,23.0,16.0,10.0,22.0,18.0,17.0,19.0,16.0,13.0,19.0,12.0,11.0,16.0,3.0,9.0,6.0,10.0,10.0,8.0,3.0,5.0,7.0,2.0,3.0,8.0,6.0,2.0,2.0,3.0,,3.0,3.0,,1.0, A81039,54.0,64.0,56.0,80.0,65.0,71.0,60.0,91.0,69.0,86.0,92.0,74.0,103.0,83.0,92.0,85.0,91.0,82.0,81.0,51.0,60.0,57.0,65.0,61.0,46.0,42.0,52.0,57.0,62.0,52.0,57.0,75.0,71.0,72.0,80.0,71.0,77.0,75.0,66.0,96.0,77.0,94.0,70.0,85.0,96.0,90.0,87.0,73.0,79.0,79.0,82.0,95.0,89.0,87.0,71.0,74.0,89.0,102.0,78.0,74.0,78.0,80.0,87.0,82.0,74.0,61.0,77.0,73.0,62.0,62.0,61.0,67.0,65.0,54.0,66.0,55.0,61.0,68.0,65.0,49.0,53.0,33.0,21.0,27.0,29.0,21.0,18.0,15.0,12.0,13.0,15.0,7.0,2.0,7.0,4.0,8.0 A81040,27.0,33.0,35.0,34.0,42.0,37.0,46.0,44.0,62.0,39.0,56.0,55.0,63.0,48.0,56.0,65.0,47.0,56.0,48.0,44.0,45.0,38.0,35.0,55.0,35.0,42.0,44.0,44.0,47.0,40.0,52.0,54.0,44.0,52.0,55.0,61.0,49.0,68.0,62.0,66.0,48.0,56.0,61.0,53.0,58.0,52.0,49.0,34.0,42.0,45.0,55.0,60.0,68.0,55.0,46.0,60.0,65.0,49.0,65.0,61.0,72.0,67.0,69.0,65.0,62.0,65.0,58.0,57.0,55.0,59.0,52.0,45.0,48.0,36.0,44.0,35.0,37.0,42.0,43.0,25.0,23.0,27.0,21.0,14.0,16.0,19.0,9.0,11.0,15.0,5.0,5.0,2.0,4.0,5.0,3.0,2.0 A81041,32.0,43.0,38.0,46.0,53.0,54.0,47.0,56.0,55.0,52.0,58.0,56.0,61.0,65.0,65.0,53.0,60.0,55.0,46.0,38.0,42.0,34.0,49.0,35.0,50.0,54.0,51.0,43.0,62.0,67.0,84.0,72.0,62.0,67.0,72.0,70.0,66.0,59.0,69.0,58.0,75.0,64.0,61.0,48.0,60.0,70.0,51.0,54.0,45.0,54.0,50.0,50.0,49.0,60.0,62.0,57.0,75.0,55.0,51.0,62.0,68.0,66.0,81.0,63.0,88.0,69.0,68.0,66.0,79.0,54.0,57.0,55.0,50.0,42.0,50.0,54.0,46.0,58.0,44.0,38.0,29.0,31.0,15.0,24.0,9.0,17.0,13.0,14.0,13.0,8.0,3.0,6.0,4.0,5.0,4.0,5.0 A81042,77.0,93.0,95.0,98.0,80.0,92.0,106.0,108.0,98.0,110.0,108.0,100.0,108.0,108.0,105.0,93.0,102.0,90.0,102.0,109.0,89.0,79.0,93.0,94.0,73.0,99.0,93.0,93.0,96.0,115.0,115.0,114.0,117.0,128.0,114.0,98.0,132.0,110.0,118.0,120.0,123.0,99.0,108.0,107.0,101.0,77.0,105.0,69.0,85.0,75.0,86.0,69.0,89.0,96.0,97.0,90.0,107.0,78.0,115.0,105.0,99.0,118.0,103.0,95.0,97.0,83.0,90.0,113.0,93.0,84.0,73.0,72.0,47.0,81.0,58.0,63.0,57.0,52.0,41.0,37.0,48.0,27.0,32.0,28.0,17.0,18.0,16.0,17.0,14.0,12.0,6.0,7.0,3.0,4.0,5.0,11.0 A81044,67.0,106.0,100.0,96.0,87.0,92.0,106.0,94.0,124.0,104.0,103.0,104.0,117.0,108.0,107.0,125.0,138.0,117.0,116.0,104.0,112.0,111.0,103.0,109.0,112.0,101.0,102.0,108.0,125.0,112.0,139.0,139.0,112.0,145.0,116.0,134.0,130.0,134.0,126.0,127.0,142.0,115.0,115.0,130.0,121.0,119.0,135.0,90.0,95.0,114.0,101.0,96.0,126.0,149.0,131.0,120.0,119.0,134.0,117.0,133.0,130.0,157.0,140.0,140.0,128.0,125.0,129.0,134.0,122.0,112.0,104.0,103.0,104.0,104.0,84.0,89.0,89.0,73.0,92.0,58.0,49.0,38.0,34.0,37.0,35.0,23.0,25.0,33.0,21.0,19.0,11.0,11.0,12.0,7.0,6.0,9.0 A81045,24.0,20.0,34.0,34.0,32.0,23.0,28.0,32.0,34.0,32.0,38.0,29.0,36.0,49.0,41.0,36.0,41.0,30.0,39.0,42.0,37.0,32.0,32.0,40.0,37.0,40.0,41.0,43.0,51.0,39.0,55.0,49.0,39.0,42.0,42.0,30.0,38.0,39.0,36.0,41.0,38.0,36.0,27.0,39.0,39.0,51.0,27.0,36.0,29.0,29.0,35.0,40.0,44.0,45.0,44.0,39.0,43.0,49.0,61.0,45.0,45.0,47.0,44.0,39.0,49.0,44.0,44.0,41.0,29.0,29.0,31.0,32.0,25.0,30.0,30.0,27.0,26.0,33.0,34.0,16.0,27.0,19.0,14.0,21.0,13.0,14.0,16.0,11.0,12.0,10.0,7.0,4.0,1.0,1.0,6.0,6.0 A81046,55.0,66.0,43.0,80.0,72.0,70.0,68.0,75.0,72.0,68.0,76.0,92.0,72.0,103.0,75.0,75.0,85.0,79.0,72.0,73.0,67.0,48.0,44.0,65.0,53.0,69.0,93.0,70.0,76.0,77.0,77.0,89.0,91.0,81.0,77.0,106.0,95.0,88.0,89.0,80.0,69.0,94.0,77.0,86.0,85.0,81.0,74.0,67.0,70.0,63.0,67.0,63.0,68.0,67.0,79.0,56.0,86.0,94.0,79.0,77.0,101.0,99.0,74.0,73.0,82.0,84.0,75.0,73.0,79.0,63.0,58.0,81.0,59.0,50.0,44.0,46.0,49.0,52.0,52.0,38.0,56.0,30.0,43.0,37.0,29.0,25.0,25.0,18.0,20.0,17.0,8.0,11.0,5.0,7.0,1.0,7.0 A81048,15.0,19.0,22.0,19.0,22.0,28.0,23.0,32.0,29.0,42.0,32.0,30.0,35.0,55.0,37.0,32.0,40.0,45.0,38.0,37.0,32.0,30.0,28.0,31.0,28.0,32.0,29.0,28.0,34.0,29.0,26.0,36.0,38.0,21.0,32.0,23.0,36.0,34.0,32.0,32.0,44.0,37.0,33.0,30.0,33.0,31.0,36.0,37.0,34.0,41.0,47.0,64.0,52.0,44.0,62.0,63.0,54.0,59.0,68.0,60.0,54.0,49.0,46.0,64.0,48.0,40.0,57.0,47.0,45.0,45.0,46.0,46.0,44.0,45.0,40.0,37.0,50.0,39.0,32.0,51.0,36.0,38.0,38.0,25.0,37.0,26.0,21.0,17.0,17.0,17.0,12.0,11.0,12.0,2.0,4.0,6.0 A81049,31.0,31.0,34.0,40.0,36.0,48.0,52.0,47.0,33.0,47.0,52.0,63.0,56.0,58.0,60.0,57.0,56.0,47.0,49.0,33.0,40.0,39.0,29.0,33.0,40.0,33.0,35.0,34.0,40.0,34.0,43.0,48.0,37.0,59.0,47.0,49.0,42.0,44.0,45.0,55.0,33.0,45.0,54.0,38.0,49.0,39.0,45.0,34.0,27.0,38.0,39.0,31.0,37.0,33.0,42.0,38.0,40.0,40.0,30.0,50.0,56.0,31.0,42.0,42.0,39.0,33.0,29.0,33.0,32.0,33.0,33.0,24.0,22.0,22.0,16.0,27.0,25.0,25.0,18.0,13.0,16.0,12.0,11.0,7.0,7.0,10.0,6.0,7.0,5.0,6.0,2.0,3.0,3.0,2.0,,1.0 A81051,26.0,34.0,42.0,47.0,30.0,33.0,45.0,45.0,48.0,45.0,60.0,47.0,54.0,40.0,44.0,49.0,39.0,35.0,33.0,35.0,46.0,32.0,39.0,46.0,40.0,49.0,51.0,58.0,57.0,47.0,66.0,41.0,68.0,47.0,58.0,65.0,59.0,69.0,44.0,59.0,53.0,55.0,45.0,53.0,49.0,57.0,53.0,48.0,42.0,37.0,32.0,45.0,56.0,51.0,46.0,43.0,43.0,36.0,56.0,53.0,58.0,41.0,47.0,49.0,47.0,44.0,38.0,44.0,34.0,38.0,34.0,39.0,23.0,36.0,17.0,36.0,28.0,24.0,35.0,20.0,19.0,13.0,9.0,8.0,13.0,9.0,9.0,11.0,3.0,5.0,2.0,4.0,4.0,2.0,,5.0 A81052,31.0,48.0,51.0,51.0,42.0,42.0,46.0,54.0,66.0,62.0,44.0,66.0,60.0,58.0,53.0,58.0,53.0,67.0,56.0,51.0,55.0,45.0,52.0,43.0,42.0,41.0,54.0,53.0,50.0,52.0,65.0,53.0,64.0,72.0,55.0,66.0,69.0,70.0,70.0,70.0,49.0,59.0,59.0,47.0,60.0,63.0,50.0,56.0,60.0,57.0,47.0,55.0,74.0,74.0,58.0,53.0,74.0,64.0,93.0,71.0,71.0,87.0,85.0,75.0,75.0,63.0,72.0,68.0,68.0,58.0,47.0,40.0,38.0,50.0,42.0,32.0,49.0,45.0,68.0,28.0,25.0,27.0,26.0,26.0,24.0,20.0,23.0,15.0,9.0,12.0,7.0,4.0,7.0,1.0,4.0,7.0 A81053,17.0,25.0,29.0,18.0,36.0,29.0,27.0,32.0,35.0,26.0,32.0,37.0,38.0,48.0,32.0,40.0,32.0,41.0,42.0,37.0,35.0,34.0,12.0,31.0,23.0,48.0,32.0,34.0,27.0,42.0,41.0,43.0,47.0,37.0,49.0,37.0,35.0,25.0,44.0,34.0,41.0,27.0,41.0,36.0,48.0,47.0,24.0,32.0,31.0,30.0,25.0,35.0,31.0,40.0,36.0,39.0,35.0,41.0,49.0,58.0,43.0,44.0,41.0,55.0,47.0,32.0,37.0,39.0,38.0,43.0,32.0,35.0,38.0,33.0,27.0,38.0,32.0,39.0,33.0,18.0,39.0,24.0,17.0,19.0,13.0,8.0,12.0,5.0,4.0,2.0,2.0,5.0,3.0,4.0,2.0,1.0 A81054,40.0,41.0,36.0,36.0,43.0,48.0,48.0,47.0,54.0,44.0,52.0,47.0,51.0,41.0,50.0,49.0,49.0,36.0,46.0,55.0,54.0,58.0,51.0,59.0,47.0,49.0,34.0,49.0,62.0,52.0,50.0,62.0,63.0,59.0,68.0,50.0,62.0,61.0,56.0,51.0,48.0,49.0,62.0,48.0,54.0,41.0,49.0,46.0,40.0,48.0,34.0,54.0,57.0,53.0,65.0,61.0,71.0,36.0,57.0,54.0,65.0,67.0,51.0,72.0,57.0,48.0,61.0,62.0,47.0,55.0,39.0,41.0,35.0,35.0,35.0,39.0,34.0,42.0,50.0,28.0,32.0,27.0,12.0,17.0,25.0,16.0,21.0,19.0,10.0,7.0,6.0,5.0,2.0,1.0,3.0,2.0 A81056,10.0,8.0,13.0,10.0,8.0,10.0,11.0,8.0,14.0,11.0,6.0,14.0,15.0,6.0,13.0,16.0,19.0,17.0,9.0,15.0,10.0,8.0,9.0,8.0,16.0,13.0,15.0,9.0,16.0,6.0,12.0,12.0,13.0,17.0,14.0,9.0,13.0,16.0,15.0,11.0,15.0,9.0,11.0,22.0,14.0,14.0,12.0,10.0,5.0,16.0,11.0,15.0,17.0,15.0,17.0,11.0,15.0,16.0,22.0,22.0,26.0,27.0,35.0,24.0,18.0,15.0,19.0,22.0,23.0,22.0,16.0,13.0,15.0,19.0,12.0,10.0,8.0,9.0,8.0,4.0,14.0,5.0,5.0,9.0,4.0,4.0,5.0,5.0,4.0,2.0,2.0,2.0,2.0,1.0,3.0,2.0 A81057,37.0,55.0,43.0,49.0,46.0,38.0,51.0,66.0,72.0,66.0,59.0,62.0,65.0,71.0,58.0,69.0,51.0,69.0,48.0,50.0,55.0,52.0,51.0,41.0,58.0,59.0,41.0,54.0,67.0,47.0,55.0,69.0,73.0,76.0,78.0,64.0,71.0,73.0,86.0,74.0,72.0,63.0,51.0,68.0,63.0,57.0,49.0,51.0,50.0,42.0,54.0,50.0,57.0,59.0,51.0,64.0,65.0,73.0,62.0,68.0,63.0,60.0,63.0,70.0,61.0,39.0,61.0,60.0,72.0,45.0,47.0,44.0,33.0,38.0,39.0,37.0,39.0,41.0,35.0,29.0,26.0,31.0,13.0,21.0,13.0,19.0,10.0,10.0,6.0,6.0,4.0,5.0,3.0,2.0,,3.0 A81058,43.0,57.0,45.0,52.0,44.0,61.0,63.0,52.0,59.0,55.0,60.0,58.0,59.0,64.0,66.0,79.0,65.0,62.0,65.0,53.0,62.0,64.0,51.0,41.0,43.0,39.0,37.0,51.0,49.0,51.0,54.0,47.0,74.0,58.0,51.0,57.0,51.0,59.0,46.0,64.0,46.0,58.0,47.0,41.0,47.0,51.0,50.0,43.0,45.0,57.0,45.0,44.0,47.0,49.0,66.0,64.0,65.0,56.0,58.0,58.0,62.0,55.0,68.0,44.0,50.0,54.0,47.0,48.0,43.0,44.0,52.0,56.0,49.0,36.0,45.0,33.0,32.0,35.0,51.0,30.0,24.0,18.0,26.0,20.0,18.0,9.0,17.0,10.0,10.0,7.0,7.0,7.0,5.0,3.0,1.0,3.0 A81060,33.0,34.0,35.0,35.0,25.0,35.0,38.0,31.0,30.0,46.0,36.0,38.0,38.0,50.0,34.0,37.0,35.0,39.0,31.0,36.0,35.0,37.0,29.0,30.0,32.0,37.0,39.0,36.0,35.0,44.0,37.0,31.0,37.0,43.0,33.0,41.0,48.0,43.0,45.0,40.0,44.0,42.0,38.0,45.0,26.0,29.0,30.0,34.0,25.0,38.0,31.0,30.0,30.0,46.0,33.0,45.0,33.0,30.0,44.0,47.0,49.0,56.0,36.0,40.0,43.0,44.0,49.0,41.0,45.0,45.0,31.0,31.0,36.0,25.0,25.0,31.0,32.0,32.0,25.0,27.0,20.0,20.0,6.0,14.0,5.0,11.0,12.0,8.0,5.0,4.0,5.0,5.0,1.0,1.0,,1.0 A81063,15.0,17.0,35.0,26.0,18.0,28.0,24.0,23.0,30.0,28.0,30.0,38.0,34.0,42.0,38.0,45.0,35.0,35.0,39.0,26.0,35.0,30.0,35.0,26.0,30.0,37.0,32.0,18.0,24.0,38.0,23.0,30.0,29.0,41.0,43.0,51.0,34.0,36.0,46.0,39.0,39.0,32.0,34.0,40.0,39.0,43.0,40.0,46.0,34.0,29.0,35.0,30.0,32.0,37.0,45.0,44.0,35.0,43.0,32.0,35.0,66.0,32.0,45.0,42.0,39.0,41.0,39.0,36.0,26.0,37.0,33.0,32.0,27.0,26.0,21.0,32.0,20.0,38.0,33.0,29.0,21.0,11.0,9.0,11.0,16.0,11.0,13.0,8.0,9.0,3.0,4.0,2.0,2.0,2.0,1.0,3.0 A81064,47.0,49.0,40.0,48.0,56.0,48.0,64.0,43.0,40.0,55.0,56.0,51.0,53.0,41.0,46.0,50.0,54.0,46.0,41.0,38.0,55.0,51.0,88.0,112.0,111.0,136.0,143.0,179.0,144.0,158.0,138.0,137.0,132.0,113.0,117.0,102.0,125.0,98.0,114.0,106.0,78.0,64.0,71.0,48.0,56.0,57.0,48.0,49.0,42.0,38.0,38.0,35.0,34.0,31.0,36.0,39.0,24.0,33.0,33.0,37.0,30.0,25.0,37.0,23.0,27.0,24.0,25.0,32.0,22.0,13.0,18.0,19.0,16.0,23.0,20.0,14.0,11.0,15.0,13.0,11.0,14.0,12.0,8.0,6.0,5.0,3.0,7.0,6.0,2.0,2.0,2.0,1.0,2.0,1.0,1.0,2.0 A81065,13.0,18.0,18.0,22.0,19.0,28.0,19.0,27.0,32.0,26.0,34.0,28.0,24.0,26.0,34.0,29.0,35.0,27.0,13.0,21.0,19.0,20.0,16.0,24.0,19.0,16.0,29.0,33.0,23.0,26.0,18.0,27.0,26.0,27.0,26.0,27.0,31.0,43.0,23.0,22.0,27.0,23.0,25.0,26.0,30.0,31.0,13.0,20.0,19.0,19.0,22.0,16.0,16.0,20.0,28.0,26.0,33.0,24.0,38.0,25.0,16.0,27.0,24.0,31.0,24.0,19.0,20.0,25.0,24.0,16.0,22.0,17.0,11.0,12.0,17.0,8.0,13.0,6.0,15.0,12.0,11.0,7.0,10.0,6.0,7.0,1.0,5.0,4.0,5.0,3.0,1.0,,,1.0,, A81066,15.0,33.0,25.0,23.0,29.0,25.0,28.0,27.0,27.0,33.0,26.0,22.0,22.0,34.0,31.0,29.0,30.0,23.0,28.0,22.0,29.0,26.0,21.0,26.0,22.0,29.0,25.0,24.0,21.0,21.0,29.0,27.0,34.0,38.0,42.0,40.0,27.0,27.0,34.0,18.0,27.0,43.0,33.0,33.0,29.0,25.0,29.0,27.0,26.0,37.0,39.0,31.0,44.0,44.0,49.0,38.0,48.0,47.0,37.0,37.0,41.0,41.0,43.0,39.0,41.0,50.0,40.0,31.0,47.0,27.0,36.0,34.0,23.0,25.0,35.0,30.0,27.0,24.0,30.0,14.0,19.0,16.0,19.0,13.0,13.0,5.0,10.0,7.0,7.0,4.0,7.0,1.0,5.0,2.0,2.0,1.0 A81067,54.0,41.0,64.0,68.0,62.0,75.0,57.0,61.0,65.0,69.0,60.0,75.0,90.0,78.0,75.0,75.0,79.0,75.0,62.0,57.0,57.0,77.0,76.0,93.0,132.0,98.0,90.0,113.0,131.0,148.0,127.0,132.0,130.0,112.0,137.0,123.0,111.0,78.0,111.0,92.0,73.0,71.0,80.0,78.0,76.0,65.0,62.0,59.0,58.0,57.0,54.0,52.0,57.0,67.0,76.0,60.0,70.0,58.0,61.0,45.0,54.0,55.0,60.0,49.0,67.0,71.0,57.0,56.0,54.0,63.0,45.0,36.0,47.0,33.0,46.0,34.0,42.0,37.0,27.0,32.0,20.0,27.0,12.0,18.0,10.0,7.0,9.0,4.0,10.0,10.0,8.0,1.0,3.0,4.0,1.0,3.0 A81070,18.0,25.0,20.0,34.0,25.0,44.0,39.0,31.0,46.0,43.0,40.0,62.0,58.0,57.0,64.0,54.0,64.0,48.0,57.0,52.0,44.0,45.0,38.0,37.0,38.0,26.0,37.0,32.0,35.0,31.0,33.0,24.0,24.0,23.0,44.0,45.0,47.0,43.0,40.0,40.0,49.0,44.0,45.0,37.0,42.0,59.0,37.0,34.0,36.0,54.0,43.0,49.0,54.0,48.0,44.0,55.0,51.0,40.0,34.0,46.0,34.0,43.0,27.0,41.0,31.0,22.0,33.0,29.0,24.0,20.0,17.0,21.0,20.0,19.0,29.0,13.0,20.0,13.0,29.0,14.0,10.0,11.0,5.0,5.0,9.0,4.0,10.0,2.0,4.0,3.0,4.0,2.0,8.0,2.0,1.0,1.0 A81602,7.0,8.0,6.0,9.0,7.0,12.0,8.0,5.0,12.0,10.0,15.0,11.0,9.0,9.0,12.0,5.0,13.0,12.0,16.0,14.0,14.0,6.0,10.0,12.0,9.0,12.0,17.0,11.0,6.0,12.0,9.0,14.0,16.0,14.0,9.0,14.0,10.0,13.0,14.0,10.0,13.0,8.0,16.0,9.0,16.0,12.0,14.0,8.0,13.0,11.0,18.0,8.0,12.0,21.0,21.0,18.0,16.0,21.0,22.0,17.0,20.0,16.0,17.0,20.0,20.0,18.0,16.0,9.0,15.0,18.0,10.0,16.0,17.0,8.0,19.0,13.0,11.0,18.0,12.0,16.0,13.0,9.0,11.0,5.0,12.0,2.0,6.0,3.0,4.0,4.0,1.0,2.0,4.0,2.0,2.0,1.0 A81608,119.0,94.0,100.0,89.0,76.0,99.0,108.0,100.0,92.0,81.0,88.0,84.0,80.0,81.0,90.0,77.0,67.0,76.0,131.0,237.0,253.0,184.0,304.0,335.0,390.0,285.0,231.0,200.0,179.0,179.0,184.0,169.0,145.0,163.0,138.0,138.0,132.0,119.0,110.0,110.0,102.0,106.0,81.0,85.0,77.0,78.0,67.0,59.0,57.0,55.0,54.0,60.0,55.0,54.0,64.0,53.0,56.0,76.0,51.0,55.0,57.0,42.0,34.0,54.0,51.0,45.0,34.0,42.0,35.0,40.0,25.0,39.0,42.0,31.0,29.0,31.0,24.0,18.0,24.0,14.0,20.0,11.0,13.0,7.0,11.0,7.0,2.0,5.0,1.0,5.0,3.0,3.0,2.0,1.0,,2.0 A81610,41.0,40.0,47.0,45.0,45.0,50.0,55.0,48.0,42.0,55.0,52.0,53.0,66.0,52.0,61.0,44.0,48.0,39.0,56.0,47.0,50.0,39.0,39.0,40.0,41.0,51.0,44.0,45.0,60.0,43.0,50.0,39.0,61.0,47.0,57.0,53.0,47.0,72.0,56.0,50.0,59.0,55.0,46.0,54.0,49.0,42.0,36.0,39.0,35.0,26.0,41.0,39.0,55.0,58.0,51.0,51.0,45.0,57.0,60.0,57.0,64.0,44.0,51.0,48.0,46.0,43.0,54.0,48.0,53.0,45.0,36.0,34.0,41.0,38.0,36.0,28.0,30.0,33.0,26.0,22.0,21.0,17.0,18.0,16.0,15.0,11.0,11.0,14.0,4.0,6.0,5.0,2.0,1.0,6.0,2.0,2.0 A81611,51.0,53.0,56.0,57.0,56.0,53.0,63.0,60.0,62.0,59.0,64.0,79.0,59.0,59.0,45.0,52.0,56.0,80.0,54.0,59.0,38.0,47.0,41.0,33.0,42.0,43.0,47.0,49.0,53.0,70.0,47.0,74.0,67.0,44.0,78.0,60.0,59.0,56.0,86.0,75.0,62.0,70.0,52.0,58.0,58.0,66.0,55.0,56.0,64.0,52.0,51.0,55.0,52.0,69.0,60.0,47.0,44.0,52.0,53.0,51.0,63.0,53.0,51.0,59.0,44.0,52.0,51.0,55.0,59.0,55.0,33.0,38.0,45.0,49.0,42.0,44.0,35.0,34.0,32.0,23.0,30.0,26.0,16.0,20.0,16.0,10.0,10.0,7.0,11.0,5.0,3.0,6.0,4.0,5.0,6.0,3.0 A81612,9.0,16.0,16.0,14.0,15.0,18.0,15.0,22.0,20.0,22.0,23.0,26.0,24.0,13.0,16.0,20.0,25.0,27.0,25.0,23.0,15.0,17.0,14.0,15.0,20.0,18.0,15.0,15.0,19.0,22.0,18.0,26.0,22.0,19.0,21.0,25.0,36.0,14.0,41.0,27.0,25.0,33.0,24.0,26.0,25.0,33.0,16.0,20.0,19.0,23.0,25.0,23.0,26.0,32.0,34.0,32.0,18.0,30.0,20.0,36.0,32.0,27.0,39.0,25.0,36.0,30.0,33.0,24.0,28.0,25.0,22.0,26.0,21.0,25.0,19.0,31.0,19.0,25.0,16.0,16.0,16.0,7.0,12.0,4.0,6.0,7.0,11.0,6.0,3.0,5.0,2.0,3.0,3.0,1.0,, A81618,26.0,21.0,38.0,34.0,34.0,43.0,29.0,40.0,42.0,46.0,49.0,49.0,43.0,59.0,48.0,51.0,47.0,57.0,46.0,44.0,49.0,60.0,43.0,45.0,50.0,40.0,45.0,37.0,41.0,40.0,39.0,36.0,41.0,50.0,52.0,48.0,45.0,55.0,50.0,55.0,50.0,51.0,48.0,58.0,72.0,64.0,55.0,63.0,41.0,60.0,65.0,73.0,55.0,81.0,104.0,84.0,94.0,81.0,82.0,92.0,85.0,86.0,86.0,78.0,82.0,64.0,68.0,67.0,63.0,67.0,64.0,71.0,69.0,50.0,66.0,65.0,74.0,53.0,61.0,54.0,49.0,53.0,39.0,23.0,34.0,37.0,32.0,20.0,13.0,15.0,15.0,12.0,6.0,5.0,6.0,5.0 A81621,14.0,15.0,17.0,24.0,20.0,24.0,27.0,26.0,19.0,27.0,20.0,25.0,30.0,27.0,33.0,31.0,26.0,21.0,23.0,18.0,24.0,20.0,19.0,17.0,23.0,19.0,20.0,15.0,17.0,16.0,23.0,16.0,8.0,28.0,14.0,18.0,24.0,20.0,18.0,19.0,17.0,25.0,16.0,18.0,14.0,18.0,20.0,20.0,13.0,17.0,15.0,10.0,13.0,10.0,12.0,11.0,12.0,11.0,13.0,10.0,12.0,13.0,12.0,14.0,14.0,18.0,14.0,9.0,11.0,10.0,13.0,11.0,12.0,1.0,7.0,4.0,8.0,1.0,4.0,2.0,2.0,2.0,3.0,3.0,6.0,2.0,,2.0,2.0,2.0,,,,,1.0, A81622,24.0,34.0,31.0,40.0,38.0,40.0,39.0,45.0,34.0,39.0,37.0,35.0,35.0,37.0,40.0,30.0,36.0,37.0,37.0,35.0,29.0,24.0,28.0,26.0,25.0,45.0,40.0,39.0,46.0,49.0,43.0,37.0,37.0,44.0,58.0,32.0,34.0,34.0,41.0,39.0,32.0,45.0,34.0,34.0,35.0,39.0,32.0,29.0,33.0,32.0,27.0,33.0,29.0,36.0,40.0,42.0,45.0,43.0,51.0,34.0,30.0,48.0,44.0,38.0,37.0,30.0,34.0,23.0,27.0,22.0,19.0,21.0,21.0,24.0,18.0,20.0,19.0,17.0,22.0,19.0,13.0,18.0,11.0,7.0,13.0,8.0,8.0,2.0,6.0,3.0,3.0,3.0,4.0,5.0,1.0,4.0 A81629,49.0,47.0,50.0,41.0,37.0,33.0,46.0,44.0,51.0,46.0,46.0,51.0,50.0,58.0,50.0,48.0,38.0,28.0,45.0,45.0,31.0,30.0,49.0,22.0,41.0,37.0,49.0,63.0,49.0,49.0,51.0,60.0,60.0,49.0,51.0,52.0,55.0,45.0,50.0,72.0,54.0,58.0,52.0,49.0,50.0,54.0,50.0,48.0,39.0,48.0,36.0,31.0,46.0,49.0,44.0,43.0,36.0,44.0,44.0,42.0,41.0,38.0,39.0,42.0,25.0,36.0,40.0,33.0,26.0,29.0,38.0,20.0,33.0,34.0,17.0,23.0,39.0,20.0,34.0,25.0,20.0,12.0,14.0,13.0,6.0,9.0,12.0,4.0,6.0,3.0,,4.0,4.0,3.0,1.0,2.0 A81631,34.0,39.0,26.0,37.0,36.0,44.0,50.0,36.0,45.0,41.0,35.0,56.0,62.0,44.0,55.0,54.0,46.0,54.0,40.0,55.0,45.0,54.0,36.0,38.0,48.0,33.0,37.0,40.0,54.0,43.0,46.0,46.0,43.0,49.0,50.0,41.0,52.0,46.0,27.0,42.0,46.0,40.0,43.0,47.0,41.0,36.0,40.0,35.0,37.0,35.0,27.0,49.0,49.0,47.0,59.0,42.0,68.0,56.0,51.0,50.0,65.0,60.0,57.0,50.0,56.0,54.0,57.0,40.0,35.0,42.0,39.0,29.0,28.0,25.0,38.0,43.0,24.0,36.0,32.0,23.0,20.0,22.0,19.0,8.0,11.0,11.0,11.0,10.0,6.0,4.0,7.0,5.0,2.0,4.0,5.0,1.0 A81634,19.0,24.0,20.0,20.0,21.0,20.0,23.0,31.0,14.0,31.0,17.0,15.0,20.0,18.0,16.0,21.0,15.0,23.0,18.0,26.0,18.0,31.0,31.0,37.0,34.0,58.0,70.0,67.0,67.0,66.0,67.0,53.0,67.0,61.0,65.0,73.0,52.0,47.0,44.0,57.0,39.0,38.0,41.0,17.0,26.0,28.0,24.0,26.0,16.0,24.0,23.0,19.0,7.0,9.0,18.0,7.0,6.0,8.0,10.0,7.0,7.0,6.0,5.0,5.0,7.0,5.0,5.0,4.0,1.0,5.0,5.0,4.0,4.0,1.0,5.0,1.0,3.0,1.0,2.0,1.0,,1.0,,3.0,2.0,,,,,,,,,,, A82004,12.0,8.0,4.0,9.0,7.0,6.0,9.0,8.0,7.0,6.0,5.0,12.0,10.0,8.0,6.0,10.0,7.0,6.0,7.0,8.0,9.0,9.0,7.0,4.0,9.0,8.0,14.0,7.0,16.0,12.0,7.0,19.0,17.0,10.0,17.0,13.0,17.0,12.0,9.0,10.0,10.0,13.0,14.0,15.0,13.0,11.0,10.0,14.0,8.0,10.0,8.0,10.0,14.0,18.0,12.0,24.0,19.0,24.0,18.0,24.0,15.0,19.0,23.0,21.0,14.0,24.0,23.0,27.0,24.0,19.0,18.0,25.0,17.0,12.0,22.0,16.0,14.0,20.0,11.0,9.0,13.0,6.0,8.0,8.0,8.0,6.0,3.0,2.0,5.0,2.0,3.0,1.0,,1.0,1.0,1.0 A82006,16.0,19.0,21.0,20.0,22.0,20.0,20.0,24.0,21.0,22.0,24.0,19.0,28.0,22.0,34.0,27.0,20.0,24.0,26.0,24.0,20.0,26.0,24.0,15.0,18.0,28.0,20.0,21.0,21.0,25.0,29.0,20.0,26.0,21.0,20.0,24.0,19.0,24.0,31.0,18.0,28.0,25.0,21.0,27.0,30.0,31.0,23.0,25.0,26.0,26.0,31.0,27.0,35.0,32.0,39.0,35.0,45.0,41.0,34.0,48.0,52.0,42.0,45.0,37.0,27.0,43.0,48.0,36.0,39.0,37.0,42.0,51.0,36.0,42.0,45.0,39.0,38.0,48.0,30.0,39.0,28.0,18.0,30.0,19.0,17.0,21.0,14.0,14.0,6.0,5.0,9.0,4.0,3.0,5.0,3.0, A82012,40.0,53.0,54.0,60.0,56.0,73.0,78.0,68.0,72.0,103.0,73.0,60.0,89.0,105.0,88.0,77.0,94.0,89.0,91.0,97.0,94.0,72.0,76.0,59.0,73.0,66.0,85.0,67.0,66.0,70.0,66.0,69.0,67.0,68.0,66.0,66.0,96.0,70.0,71.0,81.0,81.0,84.0,92.0,80.0,93.0,78.0,88.0,89.0,67.0,91.0,106.0,96.0,107.0,127.0,131.0,110.0,137.0,128.0,135.0,173.0,173.0,131.0,181.0,139.0,155.0,152.0,147.0,139.0,126.0,117.0,129.0,126.0,113.0,111.0,111.0,126.0,120.0,109.0,124.0,80.0,74.0,83.0,69.0,64.0,45.0,44.0,46.0,51.0,25.0,26.0,19.0,16.0,12.0,14.0,6.0,12.0 A82013,19.0,16.0,20.0,17.0,32.0,27.0,29.0,36.0,32.0,30.0,44.0,35.0,42.0,27.0,41.0,29.0,39.0,29.0,29.0,38.0,34.0,29.0,34.0,28.0,23.0,28.0,29.0,21.0,34.0,33.0,22.0,23.0,31.0,29.0,29.0,33.0,24.0,38.0,37.0,29.0,30.0,25.0,35.0,41.0,39.0,28.0,35.0,34.0,37.0,36.0,32.0,43.0,42.0,40.0,44.0,57.0,52.0,49.0,66.0,60.0,69.0,58.0,63.0,61.0,64.0,35.0,57.0,66.0,48.0,52.0,51.0,51.0,38.0,43.0,43.0,37.0,46.0,47.0,43.0,31.0,36.0,42.0,29.0,27.0,19.0,28.0,28.0,16.0,8.0,8.0,4.0,10.0,3.0,4.0,4.0,5.0 A82014,13.0,15.0,11.0,16.0,15.0,17.0,13.0,18.0,10.0,10.0,9.0,22.0,12.0,13.0,20.0,24.0,17.0,23.0,10.0,16.0,12.0,28.0,15.0,26.0,22.0,25.0,31.0,28.0,28.0,12.0,31.0,20.0,16.0,22.0,20.0,23.0,19.0,15.0,13.0,10.0,17.0,19.0,21.0,14.0,14.0,14.0,14.0,17.0,20.0,18.0,22.0,23.0,38.0,34.0,32.0,25.0,29.0,37.0,40.0,36.0,54.0,46.0,44.0,51.0,38.0,31.0,44.0,36.0,39.0,37.0,43.0,34.0,34.0,35.0,30.0,32.0,30.0,41.0,29.0,28.0,17.0,21.0,27.0,13.0,19.0,14.0,11.0,8.0,12.0,7.0,4.0,4.0,6.0,4.0,,5.0 A82015,44.0,56.0,68.0,74.0,65.0,77.0,82.0,59.0,68.0,77.0,84.0,88.0,72.0,83.0,85.0,75.0,72.0,73.0,81.0,66.0,60.0,69.0,76.0,78.0,98.0,89.0,105.0,133.0,101.0,127.0,130.0,118.0,131.0,119.0,125.0,114.0,124.0,109.0,113.0,106.0,104.0,124.0,116.0,104.0,93.0,97.0,85.0,76.0,92.0,95.0,65.0,69.0,114.0,90.0,92.0,90.0,99.0,90.0,81.0,92.0,87.0,98.0,80.0,63.0,62.0,65.0,79.0,71.0,52.0,66.0,62.0,45.0,54.0,44.0,41.0,49.0,48.0,45.0,54.0,40.0,27.0,21.0,34.0,26.0,18.0,25.0,19.0,13.0,7.0,13.0,5.0,7.0,3.0,3.0,5.0,6.0 A82016,180.0,174.0,197.0,209.0,187.0,225.0,217.0,229.0,231.0,241.0,251.0,228.0,237.0,252.0,240.0,265.0,243.0,255.0,228.0,203.0,201.0,222.0,225.0,172.0,195.0,190.0,225.0,217.0,279.0,233.0,256.0,252.0,282.0,315.0,297.0,309.0,269.0,285.0,260.0,280.0,296.0,284.0,269.0,255.0,250.0,248.0,233.0,224.0,247.0,220.0,220.0,260.0,255.0,278.0,264.0,259.0,287.0,274.0,276.0,265.0,260.0,281.0,254.0,252.0,290.0,239.0,238.0,214.0,211.0,192.0,204.0,203.0,231.0,178.0,195.0,208.0,180.0,174.0,178.0,113.0,125.0,113.0,101.0,72.0,76.0,65.0,67.0,58.0,40.0,44.0,38.0,22.0,24.0,20.0,12.0,26.0 A82018,54.0,63.0,52.0,71.0,60.0,69.0,73.0,73.0,82.0,80.0,89.0,82.0,92.0,90.0,76.0,74.0,81.0,81.0,65.0,62.0,61.0,68.0,59.0,51.0,62.0,61.0,69.0,73.0,81.0,80.0,86.0,120.0,88.0,97.0,99.0,96.0,93.0,105.0,113.0,112.0,106.0,107.0,107.0,109.0,82.0,87.0,91.0,89.0,94.0,63.0,97.0,67.0,92.0,95.0,88.0,87.0,80.0,84.0,93.0,88.0,95.0,102.0,85.0,93.0,97.0,78.0,66.0,83.0,59.0,63.0,72.0,76.0,61.0,61.0,56.0,72.0,57.0,61.0,69.0,45.0,32.0,31.0,26.0,23.0,28.0,16.0,31.0,21.0,18.0,13.0,11.0,4.0,7.0,4.0,1.0,9.0 A82020,76.0,77.0,78.0,85.0,67.0,85.0,78.0,98.0,98.0,101.0,106.0,99.0,99.0,104.0,96.0,112.0,95.0,92.0,76.0,81.0,76.0,69.0,71.0,58.0,79.0,68.0,87.0,77.0,89.0,101.0,101.0,95.0,109.0,109.0,120.0,97.0,128.0,131.0,111.0,124.0,91.0,125.0,88.0,118.0,107.0,103.0,109.0,93.0,76.0,94.0,112.0,114.0,116.0,102.0,110.0,87.0,107.0,101.0,95.0,94.0,104.0,98.0,92.0,99.0,97.0,108.0,98.0,95.0,69.0,85.0,79.0,75.0,57.0,77.0,66.0,75.0,65.0,75.0,66.0,55.0,49.0,45.0,47.0,35.0,35.0,19.0,23.0,18.0,17.0,10.0,7.0,8.0,10.0,3.0,4.0,4.0 A82021,61.0,60.0,47.0,81.0,67.0,73.0,75.0,82.0,84.0,76.0,78.0,80.0,93.0,96.0,121.0,99.0,105.0,86.0,94.0,75.0,79.0,64.0,69.0,86.0,74.0,89.0,98.0,87.0,113.0,88.0,103.0,89.0,112.0,112.0,112.0,89.0,80.0,108.0,105.0,115.0,99.0,111.0,100.0,94.0,105.0,111.0,105.0,104.0,93.0,88.0,117.0,108.0,124.0,124.0,138.0,152.0,157.0,140.0,162.0,163.0,158.0,150.0,140.0,141.0,146.0,157.0,153.0,132.0,111.0,113.0,119.0,113.0,111.0,135.0,115.0,106.0,120.0,104.0,119.0,66.0,92.0,72.0,69.0,44.0,50.0,48.0,40.0,36.0,26.0,27.0,20.0,14.0,6.0,9.0,10.0,14.0 A82022,15.0,17.0,13.0,20.0,25.0,24.0,19.0,24.0,30.0,27.0,17.0,28.0,31.0,39.0,28.0,30.0,44.0,38.0,29.0,34.0,20.0,27.0,21.0,20.0,16.0,26.0,25.0,23.0,23.0,25.0,19.0,20.0,29.0,22.0,29.0,29.0,27.0,18.0,23.0,34.0,23.0,22.0,30.0,15.0,26.0,29.0,21.0,24.0,23.0,24.0,27.0,47.0,28.0,39.0,32.0,50.0,45.0,43.0,42.0,45.0,38.0,42.0,45.0,34.0,34.0,40.0,39.0,38.0,32.0,30.0,32.0,37.0,33.0,29.0,33.0,30.0,39.0,32.0,41.0,19.0,29.0,22.0,32.0,15.0,20.0,12.0,20.0,12.0,6.0,11.0,6.0,7.0,6.0,4.0,1.0,6.0 A82023,30.0,26.0,24.0,19.0,31.0,34.0,39.0,34.0,35.0,35.0,34.0,42.0,29.0,37.0,36.0,30.0,39.0,38.0,43.0,25.0,28.0,19.0,30.0,25.0,18.0,28.0,27.0,26.0,36.0,30.0,35.0,32.0,34.0,33.0,39.0,47.0,44.0,42.0,54.0,34.0,44.0,39.0,43.0,45.0,31.0,33.0,19.0,30.0,19.0,35.0,42.0,31.0,41.0,48.0,41.0,47.0,55.0,35.0,54.0,44.0,45.0,53.0,50.0,59.0,64.0,49.0,39.0,46.0,44.0,37.0,36.0,41.0,35.0,39.0,31.0,55.0,34.0,39.0,34.0,30.0,28.0,22.0,24.0,26.0,16.0,16.0,7.0,10.0,12.0,9.0,10.0,7.0,3.0,2.0,1.0,7.0 A82024,18.0,14.0,20.0,22.0,27.0,21.0,27.0,14.0,36.0,26.0,27.0,32.0,33.0,33.0,30.0,36.0,33.0,28.0,28.0,27.0,18.0,26.0,28.0,12.0,18.0,27.0,16.0,21.0,31.0,30.0,26.0,28.0,39.0,25.0,28.0,27.0,26.0,32.0,24.0,33.0,18.0,23.0,35.0,30.0,33.0,34.0,24.0,36.0,37.0,33.0,35.0,35.0,35.0,30.0,26.0,50.0,51.0,42.0,47.0,60.0,60.0,53.0,59.0,72.0,54.0,50.0,56.0,47.0,54.0,54.0,45.0,49.0,35.0,36.0,35.0,44.0,41.0,52.0,42.0,26.0,35.0,35.0,31.0,23.0,13.0,10.0,12.0,14.0,13.0,10.0,7.0,3.0,6.0,3.0,5.0,11.0 A82028,18.0,24.0,23.0,21.0,28.0,22.0,25.0,19.0,28.0,32.0,34.0,25.0,46.0,35.0,47.0,52.0,48.0,46.0,37.0,38.0,36.0,38.0,41.0,38.0,29.0,43.0,42.0,41.0,34.0,38.0,58.0,58.0,45.0,72.0,53.0,57.0,47.0,43.0,46.0,43.0,48.0,52.0,43.0,46.0,69.0,63.0,48.0,49.0,50.0,39.0,45.0,59.0,64.0,69.0,69.0,63.0,61.0,85.0,86.0,61.0,71.0,67.0,65.0,68.0,69.0,57.0,73.0,76.0,66.0,64.0,39.0,55.0,35.0,40.0,43.0,44.0,57.0,60.0,74.0,39.0,50.0,29.0,29.0,20.0,31.0,26.0,20.0,20.0,14.0,19.0,10.0,14.0,11.0,9.0,3.0,8.0 A82029,15.0,16.0,16.0,10.0,13.0,7.0,14.0,15.0,17.0,15.0,7.0,14.0,18.0,13.0,14.0,17.0,18.0,22.0,15.0,17.0,17.0,16.0,13.0,12.0,13.0,12.0,19.0,16.0,17.0,16.0,12.0,14.0,18.0,15.0,17.0,13.0,10.0,21.0,13.0,16.0,16.0,14.0,11.0,16.0,20.0,20.0,21.0,14.0,13.0,19.0,20.0,17.0,25.0,22.0,34.0,35.0,29.0,39.0,22.0,35.0,32.0,34.0,29.0,32.0,38.0,31.0,41.0,39.0,29.0,37.0,19.0,31.0,26.0,24.0,22.0,25.0,31.0,29.0,24.0,21.0,19.0,17.0,16.0,16.0,10.0,11.0,9.0,4.0,3.0,4.0,7.0,1.0,,1.0,1.0,3.0 A82031,16.0,13.0,16.0,13.0,11.0,15.0,18.0,12.0,7.0,21.0,24.0,7.0,16.0,13.0,7.0,20.0,11.0,16.0,15.0,10.0,18.0,15.0,8.0,9.0,15.0,17.0,15.0,13.0,21.0,9.0,11.0,12.0,21.0,21.0,27.0,20.0,12.0,15.0,15.0,15.0,18.0,21.0,13.0,18.0,15.0,10.0,18.0,13.0,12.0,22.0,20.0,13.0,18.0,30.0,27.0,28.0,33.0,34.0,28.0,25.0,25.0,37.0,36.0,37.0,40.0,38.0,35.0,37.0,28.0,27.0,21.0,26.0,15.0,26.0,25.0,13.0,24.0,19.0,20.0,16.0,13.0,12.0,12.0,7.0,6.0,6.0,8.0,7.0,8.0,2.0,2.0,3.0,3.0,2.0,2.0,1.0 A82032,66.0,52.0,51.0,60.0,65.0,68.0,63.0,70.0,86.0,77.0,86.0,77.0,82.0,79.0,81.0,103.0,96.0,75.0,71.0,81.0,64.0,73.0,68.0,69.0,69.0,63.0,77.0,72.0,81.0,74.0,87.0,89.0,86.0,80.0,81.0,69.0,72.0,87.0,71.0,92.0,80.0,77.0,87.0,72.0,78.0,78.0,57.0,75.0,83.0,69.0,84.0,86.0,93.0,91.0,115.0,88.0,107.0,115.0,123.0,100.0,113.0,107.0,104.0,91.0,92.0,93.0,86.0,85.0,91.0,71.0,68.0,68.0,80.0,82.0,78.0,84.0,86.0,80.0,67.0,60.0,56.0,54.0,46.0,41.0,38.0,33.0,25.0,26.0,25.0,15.0,18.0,8.0,5.0,6.0,3.0,12.0 A82035,39.0,53.0,50.0,53.0,56.0,51.0,70.0,56.0,57.0,64.0,67.0,95.0,81.0,68.0,76.0,86.0,99.0,85.0,85.0,62.0,63.0,78.0,63.0,67.0,86.0,57.0,75.0,84.0,88.0,71.0,58.0,76.0,79.0,82.0,91.0,87.0,83.0,101.0,91.0,83.0,83.0,96.0,87.0,80.0,81.0,112.0,84.0,71.0,83.0,96.0,103.0,86.0,110.0,104.0,95.0,95.0,102.0,101.0,115.0,106.0,138.0,98.0,117.0,98.0,111.0,107.0,100.0,107.0,90.0,75.0,82.0,81.0,87.0,85.0,100.0,76.0,85.0,85.0,112.0,71.0,63.0,66.0,58.0,33.0,40.0,41.0,23.0,34.0,27.0,26.0,16.0,13.0,20.0,13.0,2.0,18.0 A82036,56.0,54.0,54.0,54.0,44.0,66.0,43.0,41.0,59.0,56.0,52.0,57.0,60.0,77.0,53.0,64.0,73.0,54.0,55.0,49.0,55.0,42.0,35.0,47.0,37.0,67.0,53.0,62.0,85.0,77.0,94.0,62.0,84.0,88.0,73.0,73.0,97.0,73.0,86.0,81.0,63.0,82.0,73.0,70.0,73.0,55.0,69.0,61.0,57.0,69.0,61.0,57.0,62.0,77.0,83.0,88.0,81.0,101.0,81.0,92.0,119.0,92.0,85.0,97.0,81.0,91.0,68.0,77.0,77.0,68.0,68.0,66.0,49.0,61.0,63.0,63.0,58.0,67.0,75.0,41.0,40.0,38.0,32.0,17.0,33.0,29.0,29.0,16.0,16.0,16.0,17.0,10.0,8.0,9.0,4.0,6.0 A82037,18.0,16.0,15.0,14.0,16.0,19.0,14.0,13.0,16.0,20.0,20.0,24.0,15.0,22.0,15.0,24.0,25.0,14.0,22.0,10.0,19.0,14.0,14.0,14.0,18.0,16.0,16.0,31.0,22.0,34.0,24.0,22.0,24.0,23.0,27.0,22.0,24.0,28.0,20.0,26.0,13.0,16.0,20.0,12.0,17.0,20.0,22.0,18.0,16.0,26.0,19.0,21.0,23.0,32.0,33.0,34.0,30.0,31.0,40.0,47.0,47.0,46.0,41.0,39.0,44.0,45.0,39.0,32.0,32.0,41.0,29.0,32.0,33.0,33.0,32.0,36.0,35.0,26.0,29.0,29.0,22.0,24.0,16.0,16.0,24.0,13.0,12.0,8.0,9.0,8.0,4.0,4.0,2.0,3.0,3.0,5.0 A82038,11.0,20.0,16.0,21.0,24.0,25.0,15.0,23.0,20.0,23.0,26.0,23.0,24.0,23.0,29.0,26.0,27.0,30.0,32.0,32.0,25.0,25.0,25.0,26.0,17.0,28.0,19.0,12.0,18.0,23.0,14.0,21.0,16.0,30.0,23.0,23.0,19.0,25.0,24.0,26.0,29.0,31.0,25.0,23.0,29.0,31.0,14.0,17.0,17.0,26.0,33.0,33.0,27.0,25.0,32.0,29.0,47.0,35.0,42.0,28.0,42.0,55.0,52.0,36.0,37.0,56.0,31.0,36.0,20.0,30.0,33.0,36.0,28.0,42.0,27.0,34.0,27.0,27.0,28.0,24.0,17.0,19.0,20.0,10.0,12.0,13.0,16.0,9.0,9.0,5.0,1.0,2.0,2.0,3.0,3.0,2.0 A82041,45.0,55.0,42.0,63.0,48.0,49.0,61.0,69.0,76.0,68.0,94.0,76.0,86.0,111.0,76.0,82.0,88.0,80.0,83.0,95.0,62.0,67.0,76.0,71.0,86.0,82.0,97.0,72.0,84.0,93.0,76.0,85.0,75.0,91.0,75.0,78.0,97.0,102.0,71.0,99.0,81.0,87.0,89.0,76.0,83.0,87.0,73.0,83.0,74.0,74.0,82.0,107.0,96.0,99.0,111.0,124.0,95.0,114.0,116.0,123.0,110.0,111.0,107.0,94.0,112.0,88.0,99.0,90.0,99.0,80.0,77.0,69.0,66.0,73.0,70.0,73.0,79.0,80.0,79.0,49.0,59.0,32.0,31.0,49.0,28.0,33.0,22.0,22.0,21.0,17.0,9.0,10.0,3.0,6.0,3.0,15.0 A82044,93.0,90.0,105.0,116.0,147.0,111.0,133.0,138.0,143.0,153.0,128.0,144.0,159.0,135.0,132.0,123.0,137.0,126.0,132.0,130.0,121.0,125.0,123.0,110.0,125.0,115.0,147.0,137.0,133.0,155.0,147.0,172.0,164.0,182.0,120.0,149.0,179.0,157.0,153.0,159.0,151.0,162.0,147.0,172.0,124.0,148.0,129.0,122.0,121.0,122.0,109.0,136.0,154.0,137.0,170.0,158.0,186.0,168.0,183.0,192.0,188.0,178.0,205.0,185.0,155.0,154.0,176.0,153.0,137.0,139.0,124.0,116.0,96.0,128.0,124.0,105.0,122.0,96.0,115.0,66.0,92.0,77.0,61.0,59.0,32.0,50.0,31.0,39.0,27.0,23.0,21.0,11.0,10.0,6.0,5.0,11.0 A82045,29.0,31.0,44.0,46.0,36.0,51.0,40.0,54.0,57.0,57.0,46.0,43.0,67.0,43.0,51.0,62.0,57.0,55.0,52.0,39.0,44.0,47.0,37.0,37.0,48.0,45.0,49.0,52.0,45.0,48.0,57.0,61.0,60.0,57.0,61.0,48.0,49.0,45.0,36.0,55.0,42.0,38.0,43.0,50.0,30.0,58.0,57.0,38.0,47.0,54.0,54.0,61.0,63.0,66.0,62.0,62.0,73.0,60.0,95.0,72.0,71.0,75.0,67.0,65.0,57.0,64.0,51.0,46.0,64.0,54.0,47.0,57.0,51.0,47.0,51.0,47.0,43.0,69.0,55.0,34.0,26.0,29.0,25.0,26.0,15.0,22.0,18.0,17.0,22.0,12.0,9.0,5.0,3.0,4.0,3.0,1.0 A82047,121.0,168.0,158.0,144.0,172.0,165.0,191.0,196.0,168.0,202.0,208.0,169.0,180.0,187.0,215.0,209.0,222.0,205.0,205.0,173.0,174.0,179.0,153.0,152.0,154.0,180.0,200.0,173.0,199.0,192.0,216.0,225.0,211.0,249.0,252.0,204.0,232.0,207.0,225.0,213.0,210.0,208.0,211.0,218.0,228.0,197.0,195.0,170.0,190.0,176.0,190.0,215.0,216.0,196.0,261.0,225.0,268.0,236.0,259.0,237.0,281.0,239.0,242.0,230.0,231.0,219.0,192.0,197.0,177.0,187.0,167.0,172.0,157.0,156.0,160.0,150.0,168.0,184.0,179.0,125.0,105.0,108.0,88.0,86.0,76.0,72.0,58.0,53.0,49.0,30.0,25.0,16.0,24.0,15.0,8.0,15.0 A82055,18.0,29.0,27.0,28.0,30.0,26.0,45.0,41.0,48.0,38.0,33.0,43.0,41.0,35.0,33.0,37.0,49.0,51.0,40.0,45.0,44.0,31.0,31.0,36.0,33.0,25.0,30.0,38.0,29.0,26.0,36.0,45.0,37.0,48.0,37.0,35.0,34.0,34.0,45.0,43.0,28.0,34.0,32.0,40.0,38.0,42.0,32.0,43.0,33.0,28.0,38.0,31.0,51.0,62.0,60.0,45.0,59.0,53.0,76.0,56.0,61.0,69.0,55.0,66.0,46.0,59.0,72.0,56.0,59.0,43.0,45.0,43.0,49.0,36.0,55.0,41.0,41.0,34.0,41.0,29.0,33.0,26.0,29.0,14.0,21.0,19.0,18.0,5.0,7.0,9.0,7.0,7.0,6.0,5.0,,5.0 A82064,22.0,34.0,26.0,27.0,19.0,23.0,25.0,28.0,24.0,36.0,27.0,37.0,29.0,34.0,37.0,21.0,26.0,28.0,19.0,33.0,21.0,31.0,29.0,33.0,25.0,33.0,31.0,45.0,23.0,37.0,38.0,45.0,30.0,40.0,29.0,35.0,31.0,34.0,33.0,41.0,47.0,40.0,31.0,26.0,36.0,30.0,32.0,22.0,31.0,32.0,28.0,40.0,41.0,47.0,38.0,49.0,40.0,36.0,61.0,39.0,62.0,55.0,54.0,52.0,48.0,58.0,62.0,54.0,42.0,53.0,37.0,52.0,55.0,44.0,35.0,29.0,43.0,44.0,33.0,20.0,30.0,22.0,18.0,21.0,18.0,19.0,10.0,11.0,6.0,6.0,6.0,4.0,3.0,6.0,2.0,1.0 A82075,28.0,30.0,38.0,25.0,29.0,28.0,25.0,36.0,43.0,26.0,43.0,29.0,55.0,46.0,37.0,50.0,40.0,36.0,45.0,52.0,42.0,44.0,36.0,39.0,42.0,39.0,49.0,51.0,49.0,59.0,57.0,44.0,51.0,68.0,57.0,47.0,53.0,54.0,40.0,47.0,46.0,45.0,50.0,47.0,51.0,46.0,26.0,53.0,30.0,46.0,35.0,39.0,44.0,57.0,49.0,41.0,60.0,45.0,53.0,68.0,58.0,37.0,66.0,41.0,54.0,52.0,53.0,45.0,51.0,49.0,49.0,40.0,39.0,40.0,41.0,31.0,27.0,41.0,36.0,26.0,31.0,18.0,14.0,13.0,15.0,9.0,7.0,13.0,11.0,7.0,7.0,3.0,4.0,2.0,4.0,3.0 A82617,11.0,6.0,13.0,13.0,8.0,18.0,18.0,10.0,15.0,13.0,11.0,12.0,16.0,15.0,13.0,11.0,10.0,21.0,18.0,17.0,9.0,12.0,12.0,10.0,7.0,13.0,7.0,14.0,14.0,11.0,10.0,8.0,15.0,12.0,16.0,8.0,22.0,12.0,14.0,10.0,10.0,16.0,9.0,20.0,11.0,13.0,13.0,6.0,17.0,12.0,11.0,17.0,18.0,23.0,25.0,15.0,21.0,22.0,17.0,25.0,36.0,32.0,19.0,37.0,30.0,31.0,34.0,25.0,26.0,26.0,26.0,23.0,21.0,22.0,24.0,18.0,14.0,17.0,16.0,14.0,11.0,16.0,6.0,8.0,6.0,7.0,4.0,4.0,4.0,1.0,4.0,2.0,2.0,1.0,2.0,1.0 A82620,3.0,2.0,2.0,1.0,4.0,3.0,1.0,4.0,2.0,4.0,6.0,4.0,6.0,4.0,4.0,5.0,5.0,2.0,8.0,4.0,4.0,7.0,1.0,2.0,1.0,5.0,4.0,12.0,8.0,5.0,9.0,9.0,6.0,7.0,6.0,5.0,6.0,3.0,11.0,3.0,7.0,11.0,8.0,7.0,7.0,3.0,6.0,11.0,7.0,8.0,5.0,5.0,8.0,5.0,6.0,12.0,5.0,9.0,12.0,9.0,9.0,11.0,12.0,7.0,10.0,13.0,11.0,7.0,3.0,8.0,4.0,3.0,9.0,3.0,8.0,8.0,4.0,2.0,3.0,5.0,4.0,4.0,3.0,3.0,3.0,4.0,2.0,1.0,1.0,1.0,1.0,,,,,3.0 A82631,15.0,9.0,11.0,16.0,14.0,22.0,24.0,16.0,18.0,23.0,19.0,19.0,16.0,22.0,11.0,22.0,15.0,20.0,15.0,19.0,19.0,21.0,15.0,16.0,15.0,15.0,16.0,14.0,20.0,14.0,22.0,16.0,15.0,16.0,21.0,17.0,14.0,13.0,23.0,21.0,22.0,18.0,18.0,23.0,19.0,30.0,14.0,16.0,21.0,20.0,24.0,13.0,25.0,33.0,36.0,29.0,25.0,14.0,32.0,38.0,39.0,48.0,41.0,33.0,36.0,33.0,25.0,43.0,20.0,26.0,29.0,23.0,28.0,25.0,19.0,28.0,22.0,32.0,21.0,22.0,21.0,19.0,17.0,7.0,9.0,7.0,4.0,5.0,2.0,3.0,5.0,1.0,4.0,2.0,2.0,2.0 A82646,10.0,21.0,19.0,28.0,17.0,22.0,16.0,19.0,15.0,20.0,24.0,17.0,22.0,30.0,19.0,17.0,19.0,13.0,23.0,15.0,19.0,18.0,16.0,15.0,14.0,14.0,19.0,18.0,14.0,17.0,13.0,24.0,23.0,27.0,22.0,28.0,19.0,24.0,16.0,29.0,31.0,37.0,25.0,29.0,25.0,19.0,18.0,17.0,20.0,16.0,24.0,22.0,26.0,26.0,23.0,31.0,32.0,28.0,27.0,36.0,29.0,33.0,35.0,35.0,31.0,32.0,42.0,30.0,33.0,23.0,27.0,24.0,27.0,23.0,33.0,27.0,22.0,17.0,23.0,20.0,9.0,19.0,11.0,6.0,13.0,11.0,11.0,6.0,10.0,7.0,3.0,2.0,2.0,2.0,1.0,3.0 A82654,24.0,43.0,33.0,50.0,38.0,48.0,35.0,55.0,38.0,32.0,47.0,39.0,39.0,48.0,44.0,48.0,35.0,46.0,34.0,43.0,45.0,40.0,43.0,37.0,35.0,49.0,40.0,63.0,53.0,51.0,55.0,56.0,53.0,71.0,71.0,62.0,61.0,52.0,61.0,44.0,52.0,54.0,43.0,54.0,49.0,37.0,52.0,39.0,42.0,46.0,56.0,58.0,57.0,63.0,63.0,65.0,58.0,56.0,52.0,67.0,65.0,65.0,72.0,62.0,55.0,67.0,60.0,46.0,51.0,42.0,32.0,35.0,33.0,29.0,37.0,26.0,29.0,31.0,40.0,28.0,25.0,25.0,22.0,16.0,10.0,14.0,13.0,11.0,5.0,7.0,4.0,6.0,1.0,4.0,1.0,8.0 A83001,72.0,103.0,85.0,95.0,93.0,87.0,91.0,86.0,86.0,107.0,88.0,89.0,89.0,96.0,82.0,95.0,89.0,90.0,85.0,80.0,72.0,68.0,78.0,79.0,64.0,89.0,88.0,89.0,92.0,98.0,102.0,94.0,112.0,121.0,119.0,107.0,120.0,108.0,109.0,106.0,112.0,98.0,100.0,101.0,106.0,113.0,96.0,100.0,73.0,69.0,94.0,99.0,97.0,103.0,93.0,105.0,106.0,107.0,99.0,124.0,107.0,99.0,77.0,100.0,105.0,86.0,78.0,94.0,91.0,77.0,90.0,92.0,75.0,71.0,75.0,84.0,64.0,69.0,82.0,68.0,46.0,28.0,31.0,22.0,17.0,34.0,19.0,14.0,18.0,15.0,14.0,5.0,12.0,8.0,5.0,9.0 A83003,29.0,29.0,30.0,48.0,54.0,39.0,41.0,50.0,45.0,52.0,59.0,60.0,54.0,60.0,68.0,63.0,53.0,59.0,50.0,55.0,50.0,60.0,43.0,32.0,44.0,59.0,58.0,31.0,60.0,47.0,48.0,42.0,57.0,55.0,51.0,48.0,69.0,52.0,57.0,56.0,43.0,45.0,64.0,49.0,61.0,53.0,55.0,48.0,54.0,50.0,52.0,66.0,42.0,66.0,78.0,61.0,65.0,79.0,89.0,76.0,73.0,86.0,78.0,62.0,62.0,67.0,63.0,74.0,56.0,68.0,64.0,59.0,57.0,57.0,56.0,55.0,44.0,56.0,43.0,30.0,35.0,35.0,18.0,19.0,16.0,18.0,12.0,12.0,15.0,8.0,4.0,2.0,2.0,1.0,4.0,3.0 A83005,57.0,70.0,57.0,63.0,61.0,53.0,68.0,62.0,71.0,68.0,76.0,77.0,75.0,82.0,80.0,72.0,81.0,65.0,67.0,61.0,80.0,78.0,64.0,58.0,54.0,66.0,64.0,72.0,58.0,61.0,68.0,78.0,70.0,80.0,68.0,82.0,82.0,73.0,79.0,79.0,70.0,72.0,61.0,79.0,66.0,72.0,70.0,57.0,64.0,59.0,49.0,74.0,54.0,87.0,77.0,71.0,86.0,73.0,91.0,81.0,78.0,82.0,96.0,103.0,65.0,70.0,81.0,73.0,71.0,68.0,47.0,70.0,67.0,64.0,58.0,51.0,68.0,70.0,60.0,43.0,52.0,30.0,25.0,25.0,26.0,27.0,30.0,10.0,8.0,14.0,8.0,5.0,8.0,2.0,7.0,6.0 A83006,34.0,40.0,36.0,43.0,53.0,50.0,53.0,43.0,43.0,49.0,58.0,48.0,61.0,59.0,54.0,57.0,56.0,62.0,40.0,42.0,38.0,41.0,45.0,37.0,41.0,52.0,46.0,53.0,50.0,48.0,50.0,56.0,63.0,69.0,78.0,55.0,63.0,50.0,54.0,60.0,53.0,67.0,49.0,64.0,52.0,46.0,54.0,50.0,40.0,48.0,57.0,50.0,57.0,70.0,69.0,63.0,60.0,48.0,50.0,63.0,74.0,45.0,74.0,59.0,66.0,53.0,47.0,53.0,34.0,53.0,38.0,41.0,43.0,30.0,37.0,41.0,36.0,34.0,33.0,20.0,38.0,19.0,22.0,16.0,13.0,29.0,12.0,14.0,12.0,11.0,7.0,5.0,1.0,5.0,1.0,2.0 A83007,45.0,38.0,47.0,42.0,55.0,51.0,53.0,66.0,58.0,58.0,49.0,59.0,61.0,42.0,56.0,52.0,54.0,53.0,46.0,65.0,51.0,51.0,54.0,43.0,51.0,54.0,65.0,68.0,58.0,70.0,55.0,54.0,71.0,78.0,60.0,65.0,57.0,56.0,57.0,74.0,67.0,64.0,53.0,61.0,64.0,54.0,47.0,56.0,56.0,55.0,52.0,53.0,77.0,80.0,72.0,72.0,68.0,73.0,74.0,80.0,94.0,70.0,80.0,75.0,87.0,83.0,64.0,72.0,71.0,68.0,73.0,61.0,49.0,58.0,49.0,43.0,46.0,45.0,45.0,41.0,34.0,40.0,28.0,25.0,12.0,26.0,18.0,16.0,8.0,8.0,8.0,8.0,6.0,5.0,3.0,2.0 A83008,24.0,24.0,33.0,28.0,22.0,28.0,27.0,29.0,33.0,26.0,29.0,39.0,34.0,31.0,35.0,48.0,33.0,36.0,36.0,25.0,25.0,22.0,26.0,31.0,34.0,37.0,41.0,34.0,36.0,35.0,39.0,38.0,35.0,52.0,40.0,34.0,43.0,35.0,38.0,38.0,35.0,39.0,35.0,28.0,32.0,34.0,29.0,28.0,27.0,25.0,28.0,31.0,36.0,34.0,32.0,32.0,44.0,38.0,35.0,37.0,37.0,34.0,59.0,30.0,30.0,30.0,42.0,38.0,29.0,33.0,29.0,29.0,28.0,23.0,31.0,24.0,24.0,24.0,26.0,17.0,19.0,10.0,15.0,9.0,9.0,7.0,5.0,9.0,8.0,5.0,3.0,5.0,4.0,1.0,3.0,1.0 A83009,23.0,16.0,28.0,19.0,19.0,33.0,23.0,24.0,38.0,26.0,40.0,27.0,37.0,41.0,47.0,42.0,34.0,47.0,60.0,46.0,42.0,44.0,36.0,46.0,44.0,39.0,40.0,46.0,33.0,46.0,45.0,49.0,39.0,41.0,36.0,49.0,45.0,45.0,45.0,52.0,52.0,40.0,43.0,43.0,49.0,55.0,39.0,47.0,39.0,42.0,36.0,64.0,72.0,54.0,84.0,60.0,64.0,57.0,62.0,67.0,51.0,69.0,64.0,48.0,51.0,47.0,53.0,42.0,42.0,44.0,50.0,57.0,41.0,34.0,36.0,45.0,34.0,33.0,45.0,24.0,51.0,28.0,28.0,30.0,17.0,22.0,23.0,29.0,14.0,21.0,10.0,10.0,7.0,7.0,1.0,7.0 A83010,59.0,48.0,44.0,53.0,55.0,48.0,57.0,64.0,70.0,83.0,79.0,82.0,68.0,83.0,78.0,76.0,83.0,82.0,65.0,59.0,78.0,73.0,77.0,81.0,51.0,66.0,62.0,69.0,76.0,63.0,71.0,80.0,84.0,89.0,92.0,69.0,91.0,76.0,92.0,85.0,72.0,81.0,87.0,80.0,88.0,87.0,84.0,89.0,76.0,61.0,78.0,93.0,81.0,103.0,101.0,105.0,119.0,93.0,97.0,103.0,103.0,109.0,95.0,95.0,94.0,82.0,73.0,78.0,77.0,77.0,79.0,64.0,64.0,59.0,58.0,77.0,68.0,66.0,68.0,55.0,50.0,50.0,47.0,42.0,39.0,28.0,28.0,20.0,25.0,15.0,13.0,9.0,13.0,6.0,5.0,15.0 A83011,44.0,45.0,48.0,50.0,55.0,57.0,53.0,54.0,53.0,66.0,60.0,65.0,69.0,77.0,67.0,77.0,73.0,81.0,478.0,1109.0,1258.0,1261.0,1248.0,971.0,780.0,744.0,671.0,567.0,494.0,444.0,363.0,248.0,261.0,200.0,207.0,211.0,197.0,144.0,162.0,113.0,106.0,106.0,108.0,97.0,81.0,96.0,91.0,83.0,67.0,83.0,85.0,87.0,75.0,91.0,79.0,79.0,84.0,98.0,94.0,76.0,86.0,82.0,82.0,94.0,75.0,64.0,72.0,71.0,72.0,62.0,72.0,62.0,76.0,79.0,55.0,57.0,60.0,72.0,78.0,49.0,59.0,45.0,36.0,32.0,27.0,29.0,36.0,28.0,31.0,12.0,14.0,12.0,7.0,8.0,5.0,6.0 A83012,55.0,64.0,70.0,63.0,75.0,79.0,99.0,92.0,84.0,106.0,83.0,90.0,99.0,103.0,126.0,86.0,101.0,96.0,92.0,85.0,109.0,72.0,88.0,82.0,80.0,94.0,82.0,93.0,95.0,87.0,92.0,88.0,92.0,116.0,96.0,96.0,93.0,103.0,112.0,115.0,117.0,118.0,86.0,98.0,104.0,117.0,84.0,95.0,99.0,82.0,92.0,95.0,94.0,103.0,96.0,101.0,113.0,96.0,107.0,100.0,117.0,106.0,122.0,98.0,100.0,117.0,93.0,83.0,77.0,92.0,89.0,73.0,77.0,77.0,61.0,79.0,60.0,75.0,61.0,52.0,48.0,47.0,22.0,33.0,35.0,24.0,24.0,15.0,25.0,17.0,12.0,10.0,10.0,8.0,6.0,11.0 A83013,72.0,74.0,68.0,92.0,90.0,84.0,94.0,84.0,91.0,77.0,90.0,97.0,108.0,92.0,91.0,103.0,85.0,58.0,86.0,82.0,78.0,78.0,73.0,68.0,64.0,79.0,78.0,85.0,96.0,99.0,88.0,101.0,113.0,111.0,120.0,114.0,103.0,129.0,99.0,114.0,110.0,102.0,113.0,91.0,111.0,91.0,87.0,73.0,90.0,75.0,77.0,74.0,89.0,78.0,79.0,81.0,77.0,76.0,78.0,71.0,79.0,79.0,89.0,61.0,67.0,73.0,65.0,75.0,53.0,54.0,66.0,57.0,51.0,39.0,48.0,46.0,46.0,42.0,46.0,28.0,31.0,21.0,26.0,13.0,20.0,18.0,12.0,15.0,9.0,11.0,8.0,3.0,5.0,5.0,3.0,7.0 A83014,26.0,25.0,35.0,22.0,35.0,35.0,29.0,34.0,33.0,27.0,42.0,37.0,32.0,37.0,45.0,27.0,38.0,39.0,47.0,42.0,36.0,33.0,36.0,25.0,36.0,38.0,43.0,37.0,35.0,26.0,29.0,54.0,32.0,40.0,40.0,47.0,33.0,39.0,42.0,39.0,40.0,44.0,25.0,43.0,51.0,37.0,38.0,33.0,27.0,30.0,42.0,29.0,43.0,48.0,49.0,48.0,51.0,44.0,48.0,55.0,47.0,50.0,48.0,51.0,45.0,50.0,49.0,45.0,33.0,36.0,45.0,21.0,37.0,45.0,38.0,25.0,29.0,29.0,39.0,26.0,21.0,24.0,21.0,13.0,14.0,12.0,18.0,6.0,5.0,4.0,10.0,5.0,3.0,3.0,1.0,3.0 A83015,50.0,32.0,46.0,36.0,39.0,66.0,55.0,51.0,44.0,55.0,58.0,45.0,49.0,48.0,52.0,50.0,50.0,58.0,40.0,58.0,48.0,41.0,41.0,64.0,57.0,50.0,46.0,55.0,56.0,44.0,53.0,53.0,48.0,58.0,65.0,54.0,53.0,73.0,41.0,67.0,66.0,56.0,48.0,41.0,57.0,63.0,49.0,52.0,42.0,54.0,55.0,55.0,50.0,89.0,76.0,78.0,77.0,95.0,72.0,99.0,59.0,68.0,67.0,73.0,63.0,54.0,66.0,50.0,50.0,60.0,59.0,56.0,69.0,47.0,47.0,62.0,56.0,65.0,60.0,36.0,32.0,46.0,26.0,30.0,26.0,18.0,18.0,15.0,18.0,12.0,13.0,7.0,9.0,4.0,4.0,5.0 A83016,38.0,43.0,55.0,53.0,50.0,50.0,59.0,56.0,65.0,64.0,67.0,69.0,76.0,69.0,63.0,74.0,63.0,79.0,62.0,67.0,47.0,60.0,63.0,51.0,54.0,47.0,57.0,63.0,67.0,70.0,74.0,74.0,74.0,62.0,87.0,61.0,57.0,64.0,76.0,77.0,53.0,64.0,69.0,49.0,56.0,73.0,69.0,46.0,42.0,59.0,61.0,58.0,62.0,75.0,71.0,74.0,78.0,88.0,78.0,81.0,82.0,72.0,89.0,73.0,69.0,72.0,81.0,74.0,77.0,68.0,64.0,53.0,50.0,50.0,56.0,49.0,54.0,50.0,52.0,40.0,53.0,36.0,37.0,36.0,15.0,13.0,21.0,14.0,16.0,10.0,4.0,6.0,7.0,5.0,1.0,5.0 A83018,48.0,59.0,48.0,64.0,52.0,86.0,81.0,65.0,87.0,75.0,96.0,92.0,107.0,100.0,108.0,104.0,104.0,107.0,89.0,84.0,105.0,96.0,83.0,81.0,88.0,102.0,97.0,103.0,95.0,94.0,97.0,134.0,94.0,98.0,106.0,99.0,106.0,110.0,105.0,123.0,128.0,111.0,124.0,119.0,115.0,106.0,94.0,101.0,79.0,102.0,117.0,111.0,111.0,119.0,148.0,103.0,128.0,125.0,134.0,150.0,131.0,131.0,122.0,146.0,115.0,92.0,102.0,105.0,102.0,113.0,96.0,92.0,106.0,88.0,83.0,85.0,87.0,78.0,81.0,62.0,49.0,42.0,53.0,35.0,42.0,48.0,29.0,27.0,21.0,24.0,18.0,10.0,4.0,5.0,5.0,9.0 A83020,45.0,73.0,66.0,63.0,81.0,67.0,74.0,64.0,89.0,68.0,87.0,89.0,89.0,74.0,77.0,86.0,78.0,88.0,82.0,76.0,79.0,65.0,67.0,56.0,60.0,67.0,66.0,64.0,59.0,71.0,55.0,57.0,75.0,94.0,86.0,75.0,77.0,90.0,84.0,89.0,78.0,76.0,70.0,93.0,104.0,87.0,79.0,71.0,59.0,88.0,69.0,84.0,85.0,108.0,96.0,104.0,105.0,103.0,83.0,115.0,104.0,104.0,92.0,99.0,100.0,86.0,80.0,95.0,97.0,86.0,84.0,67.0,80.0,73.0,83.0,66.0,71.0,48.0,71.0,49.0,56.0,38.0,45.0,39.0,32.0,35.0,21.0,26.0,9.0,9.0,10.0,8.0,5.0,2.0,3.0,9.0 A83021,80.0,93.0,76.0,86.0,85.0,95.0,107.0,76.0,87.0,106.0,79.0,107.0,107.0,86.0,111.0,94.0,90.0,106.0,77.0,95.0,96.0,85.0,72.0,81.0,86.0,107.0,70.0,96.0,93.0,102.0,97.0,80.0,95.0,108.0,92.0,94.0,89.0,121.0,97.0,103.0,110.0,117.0,92.0,92.0,102.0,98.0,112.0,82.0,93.0,99.0,93.0,97.0,106.0,103.0,110.0,104.0,110.0,123.0,109.0,108.0,101.0,119.0,104.0,119.0,94.0,102.0,98.0,76.0,81.0,82.0,88.0,71.0,77.0,75.0,80.0,74.0,94.0,83.0,70.0,55.0,39.0,41.0,44.0,35.0,35.0,28.0,18.0,19.0,11.0,15.0,7.0,10.0,8.0,9.0,6.0,4.0 A83022,101.0,111.0,125.0,121.0,148.0,117.0,143.0,131.0,138.0,163.0,136.0,169.0,167.0,201.0,172.0,153.0,133.0,142.0,164.0,119.0,137.0,133.0,136.0,137.0,133.0,143.0,143.0,125.0,158.0,131.0,138.0,141.0,159.0,184.0,173.0,178.0,177.0,185.0,176.0,168.0,176.0,178.0,186.0,200.0,173.0,175.0,185.0,136.0,139.0,132.0,148.0,157.0,196.0,185.0,198.0,178.0,165.0,216.0,184.0,199.0,195.0,215.0,186.0,192.0,204.0,190.0,177.0,160.0,164.0,130.0,147.0,143.0,149.0,121.0,144.0,140.0,131.0,148.0,124.0,95.0,98.0,84.0,56.0,57.0,51.0,40.0,40.0,29.0,42.0,25.0,20.0,9.0,14.0,10.0,7.0,9.0 A83023,51.0,54.0,69.0,70.0,68.0,66.0,69.0,65.0,90.0,83.0,84.0,91.0,87.0,89.0,96.0,88.0,72.0,87.0,80.0,67.0,64.0,78.0,46.0,69.0,68.0,68.0,67.0,75.0,102.0,92.0,82.0,86.0,89.0,110.0,86.0,92.0,86.0,95.0,83.0,73.0,73.0,89.0,102.0,77.0,84.0,79.0,82.0,73.0,68.0,78.0,70.0,64.0,77.0,81.0,88.0,84.0,74.0,72.0,80.0,92.0,98.0,76.0,91.0,67.0,77.0,84.0,78.0,72.0,82.0,57.0,57.0,58.0,47.0,58.0,66.0,63.0,59.0,62.0,61.0,42.0,35.0,32.0,26.0,27.0,19.0,22.0,13.0,13.0,8.0,9.0,6.0,4.0,2.0,1.0,2.0,4.0 A83024,25.0,21.0,17.0,23.0,26.0,14.0,26.0,22.0,26.0,29.0,30.0,32.0,35.0,43.0,27.0,28.0,34.0,20.0,24.0,27.0,31.0,29.0,27.0,21.0,35.0,28.0,32.0,26.0,22.0,25.0,31.0,33.0,34.0,28.0,26.0,27.0,26.0,44.0,28.0,37.0,34.0,37.0,35.0,26.0,30.0,33.0,37.0,27.0,24.0,27.0,34.0,36.0,35.0,40.0,49.0,55.0,37.0,53.0,35.0,47.0,38.0,29.0,35.0,45.0,42.0,42.0,42.0,38.0,32.0,30.0,31.0,44.0,22.0,38.0,31.0,39.0,28.0,31.0,33.0,29.0,28.0,23.0,13.0,13.0,13.0,18.0,9.0,5.0,9.0,5.0,7.0,7.0,3.0,2.0,3.0,4.0 A83025,59.0,68.0,57.0,59.0,61.0,75.0,74.0,73.0,86.0,81.0,76.0,84.0,75.0,68.0,63.0,75.0,84.0,88.0,86.0,92.0,82.0,89.0,83.0,64.0,82.0,80.0,81.0,92.0,86.0,68.0,80.0,92.0,85.0,66.0,91.0,89.0,92.0,97.0,66.0,90.0,77.0,84.0,99.0,82.0,101.0,79.0,72.0,70.0,66.0,72.0,77.0,91.0,75.0,108.0,97.0,104.0,100.0,93.0,98.0,122.0,106.0,119.0,102.0,107.0,103.0,97.0,109.0,89.0,93.0,74.0,83.0,69.0,53.0,70.0,70.0,61.0,67.0,57.0,75.0,53.0,41.0,34.0,40.0,26.0,13.0,16.0,23.0,16.0,19.0,12.0,7.0,10.0,7.0,7.0,4.0,4.0 A83026,39.0,42.0,55.0,61.0,53.0,45.0,74.0,48.0,65.0,56.0,72.0,60.0,66.0,81.0,56.0,63.0,57.0,60.0,73.0,58.0,51.0,54.0,56.0,71.0,42.0,49.0,54.0,64.0,61.0,64.0,56.0,74.0,70.0,73.0,86.0,66.0,61.0,91.0,82.0,69.0,63.0,72.0,82.0,81.0,80.0,84.0,57.0,71.0,55.0,71.0,62.0,58.0,81.0,105.0,103.0,62.0,90.0,75.0,68.0,84.0,75.0,75.0,65.0,56.0,68.0,62.0,68.0,60.0,54.0,52.0,59.0,46.0,54.0,62.0,51.0,60.0,42.0,59.0,48.0,38.0,31.0,28.0,32.0,18.0,19.0,22.0,14.0,19.0,12.0,8.0,13.0,4.0,3.0,5.0,,5.0 A83027,31.0,45.0,35.0,49.0,36.0,36.0,34.0,42.0,45.0,37.0,43.0,45.0,41.0,35.0,34.0,44.0,34.0,37.0,33.0,49.0,39.0,42.0,43.0,38.0,33.0,47.0,49.0,46.0,55.0,56.0,58.0,54.0,52.0,53.0,49.0,55.0,75.0,51.0,58.0,49.0,41.0,45.0,51.0,49.0,50.0,50.0,48.0,37.0,33.0,44.0,38.0,52.0,39.0,54.0,52.0,65.0,58.0,59.0,48.0,64.0,58.0,58.0,57.0,51.0,48.0,44.0,37.0,44.0,39.0,33.0,38.0,34.0,32.0,30.0,31.0,28.0,22.0,33.0,29.0,23.0,25.0,24.0,18.0,10.0,18.0,18.0,14.0,9.0,8.0,6.0,2.0,4.0,2.0,,1.0,1.0 A83028,37.0,29.0,38.0,36.0,38.0,37.0,46.0,44.0,50.0,43.0,31.0,45.0,56.0,40.0,52.0,53.0,43.0,57.0,62.0,45.0,34.0,33.0,47.0,40.0,45.0,55.0,39.0,55.0,47.0,54.0,58.0,55.0,54.0,61.0,67.0,62.0,53.0,47.0,57.0,52.0,51.0,51.0,57.0,55.0,50.0,57.0,51.0,55.0,41.0,44.0,70.0,49.0,49.0,54.0,73.0,74.0,66.0,75.0,81.0,70.0,77.0,77.0,76.0,78.0,72.0,73.0,78.0,79.0,68.0,61.0,66.0,58.0,48.0,65.0,61.0,53.0,45.0,45.0,49.0,36.0,42.0,42.0,24.0,18.0,30.0,17.0,14.0,14.0,14.0,5.0,12.0,4.0,9.0,4.0,3.0,4.0 A83029,22.0,21.0,21.0,21.0,25.0,23.0,32.0,22.0,22.0,32.0,24.0,26.0,39.0,33.0,25.0,25.0,25.0,35.0,36.0,22.0,27.0,26.0,17.0,24.0,34.0,31.0,21.0,37.0,23.0,19.0,28.0,38.0,31.0,33.0,29.0,22.0,30.0,26.0,37.0,26.0,29.0,42.0,21.0,36.0,31.0,22.0,31.0,34.0,23.0,33.0,28.0,34.0,33.0,40.0,37.0,42.0,40.0,35.0,44.0,48.0,50.0,42.0,51.0,39.0,27.0,33.0,38.0,30.0,38.0,29.0,39.0,31.0,28.0,28.0,27.0,27.0,25.0,32.0,36.0,27.0,18.0,16.0,13.0,15.0,16.0,12.0,5.0,12.0,9.0,7.0,4.0,3.0,7.0,5.0,3.0, A83030,64.0,66.0,76.0,69.0,77.0,93.0,61.0,83.0,81.0,97.0,93.0,106.0,91.0,103.0,91.0,83.0,94.0,85.0,74.0,63.0,83.0,72.0,85.0,59.0,86.0,93.0,73.0,88.0,74.0,102.0,104.0,90.0,113.0,100.0,119.0,101.0,121.0,106.0,88.0,100.0,122.0,107.0,104.0,115.0,120.0,105.0,107.0,92.0,95.0,91.0,97.0,98.0,99.0,117.0,118.0,89.0,91.0,105.0,93.0,106.0,95.0,109.0,118.0,86.0,68.0,77.0,68.0,98.0,73.0,68.0,61.0,48.0,45.0,50.0,63.0,63.0,61.0,57.0,48.0,32.0,40.0,30.0,23.0,21.0,21.0,26.0,12.0,17.0,10.0,10.0,8.0,6.0,6.0,5.0,5.0,9.0 A83031,52.0,58.0,48.0,52.0,53.0,44.0,54.0,66.0,62.0,59.0,57.0,60.0,62.0,63.0,75.0,62.0,69.0,71.0,58.0,61.0,54.0,70.0,64.0,48.0,51.0,54.0,62.0,60.0,52.0,71.0,55.0,68.0,68.0,70.0,65.0,63.0,54.0,54.0,81.0,70.0,62.0,52.0,71.0,67.0,88.0,67.0,72.0,59.0,73.0,59.0,69.0,81.0,75.0,83.0,96.0,91.0,79.0,75.0,99.0,106.0,87.0,95.0,88.0,86.0,96.0,83.0,80.0,65.0,76.0,81.0,67.0,61.0,65.0,57.0,48.0,72.0,62.0,78.0,62.0,36.0,53.0,38.0,41.0,34.0,24.0,28.0,28.0,12.0,25.0,13.0,7.0,15.0,8.0,3.0,7.0,12.0 A83032,13.0,11.0,10.0,8.0,8.0,8.0,7.0,10.0,14.0,11.0,5.0,7.0,16.0,8.0,12.0,12.0,10.0,13.0,16.0,10.0,11.0,13.0,8.0,8.0,14.0,11.0,13.0,12.0,13.0,12.0,19.0,13.0,11.0,14.0,19.0,11.0,15.0,8.0,13.0,15.0,8.0,10.0,14.0,11.0,10.0,13.0,12.0,12.0,14.0,10.0,15.0,19.0,17.0,19.0,21.0,18.0,14.0,15.0,23.0,23.0,22.0,26.0,31.0,18.0,22.0,21.0,18.0,15.0,18.0,23.0,34.0,12.0,20.0,19.0,7.0,19.0,15.0,23.0,16.0,13.0,16.0,17.0,9.0,9.0,9.0,8.0,6.0,2.0,9.0,3.0,4.0,2.0,2.0,2.0,2.0,2.0 A83033,48.0,76.0,59.0,43.0,53.0,51.0,47.0,62.0,47.0,64.0,51.0,68.0,57.0,50.0,54.0,53.0,43.0,50.0,50.0,58.0,46.0,49.0,37.0,52.0,44.0,57.0,56.0,67.0,67.0,64.0,62.0,68.0,61.0,71.0,79.0,70.0,79.0,87.0,65.0,74.0,65.0,60.0,64.0,56.0,76.0,73.0,67.0,51.0,57.0,51.0,46.0,63.0,68.0,62.0,72.0,75.0,61.0,69.0,73.0,70.0,92.0,65.0,83.0,72.0,80.0,62.0,51.0,44.0,60.0,49.0,64.0,49.0,50.0,53.0,48.0,31.0,51.0,44.0,45.0,37.0,38.0,30.0,30.0,18.0,21.0,22.0,15.0,9.0,11.0,10.0,11.0,3.0,4.0,3.0,1.0,6.0 A83034,57.0,63.0,73.0,49.0,52.0,52.0,66.0,69.0,73.0,66.0,65.0,70.0,59.0,75.0,73.0,85.0,88.0,61.0,65.0,61.0,60.0,55.0,54.0,65.0,52.0,84.0,52.0,62.0,70.0,78.0,82.0,69.0,71.0,74.0,98.0,74.0,77.0,90.0,94.0,91.0,93.0,81.0,71.0,84.0,87.0,90.0,95.0,74.0,86.0,65.0,73.0,81.0,69.0,67.0,70.0,73.0,68.0,74.0,87.0,79.0,81.0,61.0,63.0,69.0,53.0,55.0,72.0,60.0,54.0,62.0,46.0,57.0,55.0,46.0,35.0,42.0,53.0,45.0,41.0,37.0,35.0,26.0,25.0,16.0,21.0,19.0,21.0,16.0,9.0,16.0,12.0,6.0,5.0,8.0,8.0,9.0 A83035,11.0,14.0,22.0,22.0,21.0,21.0,27.0,27.0,22.0,30.0,34.0,35.0,30.0,39.0,33.0,36.0,41.0,37.0,45.0,33.0,22.0,28.0,27.0,24.0,22.0,37.0,33.0,29.0,44.0,25.0,35.0,29.0,31.0,32.0,19.0,26.0,30.0,28.0,42.0,31.0,40.0,38.0,29.0,34.0,40.0,26.0,36.0,34.0,39.0,52.0,53.0,35.0,47.0,63.0,62.0,60.0,68.0,70.0,70.0,80.0,75.0,61.0,69.0,71.0,59.0,74.0,62.0,70.0,66.0,52.0,43.0,52.0,55.0,45.0,47.0,63.0,52.0,61.0,64.0,44.0,39.0,40.0,30.0,33.0,17.0,22.0,18.0,14.0,15.0,7.0,6.0,7.0,4.0,5.0,4.0,5.0 A83036,22.0,36.0,37.0,45.0,41.0,41.0,43.0,54.0,47.0,63.0,57.0,67.0,61.0,58.0,57.0,58.0,55.0,62.0,62.0,36.0,56.0,46.0,46.0,47.0,40.0,44.0,47.0,46.0,38.0,45.0,43.0,37.0,51.0,66.0,55.0,41.0,57.0,46.0,56.0,60.0,64.0,64.0,65.0,71.0,62.0,78.0,57.0,67.0,69.0,69.0,72.0,60.0,65.0,64.0,71.0,64.0,69.0,58.0,69.0,58.0,63.0,66.0,73.0,75.0,77.0,69.0,61.0,63.0,63.0,80.0,67.0,74.0,84.0,69.0,72.0,63.0,75.0,77.0,94.0,45.0,62.0,57.0,44.0,37.0,41.0,28.0,33.0,15.0,15.0,14.0,12.0,6.0,11.0,6.0,7.0,8.0 A83037,52.0,47.0,57.0,48.0,59.0,49.0,62.0,55.0,61.0,84.0,68.0,81.0,76.0,67.0,84.0,84.0,94.0,75.0,69.0,68.0,71.0,66.0,57.0,61.0,62.0,65.0,66.0,88.0,69.0,89.0,66.0,71.0,76.0,86.0,72.0,86.0,73.0,86.0,74.0,68.0,76.0,77.0,60.0,54.0,65.0,76.0,76.0,69.0,84.0,70.0,57.0,78.0,83.0,82.0,87.0,85.0,116.0,91.0,107.0,111.0,117.0,105.0,119.0,98.0,96.0,90.0,71.0,79.0,71.0,77.0,70.0,83.0,69.0,71.0,64.0,61.0,62.0,81.0,74.0,50.0,54.0,54.0,37.0,33.0,45.0,33.0,36.0,24.0,20.0,19.0,12.0,9.0,1.0,6.0,3.0,13.0 A83038,37.0,27.0,26.0,32.0,34.0,26.0,31.0,30.0,33.0,39.0,43.0,48.0,36.0,42.0,51.0,37.0,43.0,37.0,37.0,20.0,35.0,27.0,27.0,30.0,19.0,33.0,24.0,30.0,45.0,36.0,25.0,32.0,34.0,40.0,42.0,44.0,45.0,41.0,37.0,52.0,25.0,36.0,42.0,46.0,41.0,36.0,42.0,36.0,24.0,34.0,49.0,36.0,43.0,41.0,48.0,52.0,48.0,39.0,54.0,45.0,55.0,37.0,33.0,36.0,35.0,38.0,41.0,43.0,27.0,24.0,25.0,23.0,26.0,24.0,25.0,26.0,23.0,20.0,20.0,19.0,23.0,21.0,18.0,12.0,13.0,5.0,13.0,10.0,9.0,2.0,4.0,2.0,3.0,1.0,1.0,2.0 A83040,53.0,63.0,59.0,66.0,57.0,72.0,70.0,58.0,57.0,79.0,64.0,92.0,87.0,70.0,78.0,70.0,80.0,50.0,69.0,66.0,67.0,71.0,75.0,62.0,66.0,77.0,75.0,86.0,98.0,82.0,93.0,114.0,114.0,108.0,95.0,97.0,108.0,107.0,84.0,84.0,98.0,95.0,80.0,92.0,89.0,100.0,100.0,66.0,75.0,69.0,94.0,70.0,80.0,70.0,85.0,74.0,76.0,69.0,88.0,76.0,80.0,70.0,84.0,73.0,69.0,76.0,65.0,58.0,54.0,67.0,42.0,65.0,59.0,47.0,43.0,46.0,57.0,47.0,40.0,33.0,35.0,28.0,22.0,29.0,11.0,14.0,13.0,16.0,10.0,11.0,10.0,8.0,4.0,3.0,1.0,4.0 A83041,34.0,35.0,39.0,31.0,34.0,37.0,43.0,30.0,39.0,36.0,47.0,46.0,58.0,37.0,56.0,47.0,41.0,34.0,31.0,35.0,42.0,37.0,39.0,38.0,31.0,34.0,43.0,38.0,35.0,52.0,57.0,35.0,45.0,68.0,60.0,48.0,55.0,52.0,49.0,58.0,42.0,49.0,45.0,48.0,55.0,51.0,40.0,40.0,32.0,38.0,46.0,48.0,53.0,47.0,49.0,36.0,54.0,50.0,57.0,57.0,57.0,42.0,42.0,48.0,47.0,45.0,37.0,43.0,57.0,47.0,40.0,37.0,41.0,41.0,35.0,38.0,37.0,28.0,27.0,28.0,36.0,21.0,19.0,17.0,12.0,8.0,17.0,9.0,9.0,7.0,8.0,,4.0,1.0,7.0,4.0 A83043,4.0,5.0,2.0,6.0,4.0,7.0,10.0,7.0,10.0,7.0,10.0,15.0,19.0,17.0,12.0,9.0,15.0,13.0,14.0,6.0,17.0,16.0,11.0,9.0,7.0,5.0,7.0,12.0,5.0,6.0,10.0,14.0,11.0,10.0,23.0,8.0,14.0,11.0,15.0,15.0,14.0,18.0,12.0,23.0,12.0,15.0,11.0,18.0,12.0,11.0,15.0,9.0,20.0,26.0,11.0,19.0,27.0,28.0,26.0,25.0,26.0,37.0,34.0,23.0,24.0,25.0,25.0,19.0,26.0,23.0,17.0,20.0,22.0,29.0,20.0,16.0,29.0,29.0,21.0,23.0,13.0,9.0,13.0,12.0,10.0,8.0,6.0,7.0,3.0,4.0,3.0,1.0,,2.0,1.0, A83044,28.0,54.0,38.0,39.0,48.0,47.0,35.0,35.0,55.0,54.0,42.0,45.0,61.0,46.0,55.0,58.0,51.0,53.0,46.0,45.0,38.0,33.0,42.0,46.0,44.0,44.0,51.0,63.0,49.0,58.0,38.0,61.0,54.0,48.0,62.0,55.0,56.0,72.0,57.0,61.0,51.0,49.0,53.0,53.0,49.0,45.0,51.0,44.0,44.0,38.0,40.0,46.0,58.0,54.0,80.0,48.0,57.0,59.0,56.0,66.0,55.0,69.0,58.0,74.0,49.0,59.0,60.0,53.0,50.0,36.0,39.0,26.0,38.0,27.0,43.0,31.0,40.0,18.0,31.0,26.0,24.0,21.0,25.0,15.0,12.0,13.0,6.0,7.0,9.0,4.0,6.0,6.0,3.0,5.0,2.0,3.0 A83045,60.0,79.0,74.0,61.0,65.0,80.0,71.0,74.0,63.0,74.0,79.0,87.0,77.0,76.0,99.0,75.0,82.0,85.0,87.0,60.0,84.0,100.0,66.0,82.0,80.0,83.0,95.0,107.0,73.0,81.0,109.0,85.0,93.0,80.0,106.0,104.0,89.0,94.0,88.0,103.0,93.0,97.0,93.0,93.0,88.0,93.0,97.0,73.0,77.0,81.0,81.0,79.0,92.0,103.0,99.0,126.0,130.0,128.0,128.0,115.0,115.0,115.0,109.0,99.0,101.0,87.0,100.0,95.0,80.0,107.0,70.0,94.0,88.0,80.0,64.0,73.0,59.0,89.0,71.0,50.0,61.0,55.0,40.0,31.0,31.0,34.0,32.0,19.0,16.0,14.0,12.0,8.0,8.0,,5.0,9.0 A83046,37.0,34.0,43.0,47.0,43.0,45.0,45.0,47.0,33.0,53.0,54.0,59.0,51.0,63.0,74.0,73.0,83.0,70.0,65.0,50.0,49.0,36.0,34.0,44.0,47.0,46.0,66.0,54.0,48.0,44.0,62.0,51.0,46.0,49.0,33.0,50.0,53.0,44.0,50.0,42.0,41.0,50.0,46.0,43.0,62.0,52.0,55.0,50.0,53.0,55.0,48.0,62.0,65.0,77.0,82.0,72.0,90.0,80.0,92.0,91.0,108.0,99.0,87.0,95.0,100.0,99.0,81.0,89.0,91.0,70.0,62.0,72.0,71.0,86.0,73.0,67.0,74.0,82.0,81.0,49.0,56.0,44.0,43.0,33.0,26.0,42.0,34.0,13.0,24.0,21.0,11.0,8.0,9.0,2.0,5.0,14.0 A83047,54.0,67.0,88.0,85.0,77.0,64.0,91.0,85.0,75.0,108.0,90.0,89.0,72.0,90.0,87.0,99.0,77.0,89.0,87.0,83.0,93.0,70.0,99.0,75.0,75.0,81.0,92.0,116.0,113.0,112.0,130.0,118.0,126.0,116.0,114.0,116.0,115.0,128.0,122.0,117.0,106.0,115.0,109.0,101.0,100.0,103.0,110.0,101.0,93.0,88.0,95.0,86.0,89.0,99.0,109.0,115.0,102.0,112.0,112.0,100.0,98.0,93.0,82.0,79.0,92.0,86.0,70.0,85.0,72.0,80.0,74.0,72.0,51.0,59.0,56.0,66.0,60.0,69.0,60.0,51.0,42.0,34.0,29.0,32.0,29.0,25.0,20.0,20.0,10.0,14.0,13.0,11.0,8.0,7.0,3.0,7.0 A83048,21.0,17.0,17.0,31.0,23.0,19.0,35.0,25.0,25.0,33.0,41.0,27.0,35.0,37.0,41.0,31.0,47.0,35.0,48.0,30.0,40.0,37.0,30.0,33.0,29.0,23.0,24.0,21.0,21.0,29.0,16.0,34.0,24.0,29.0,35.0,33.0,31.0,29.0,31.0,38.0,33.0,29.0,37.0,35.0,33.0,45.0,43.0,36.0,35.0,38.0,46.0,39.0,48.0,42.0,47.0,53.0,38.0,57.0,60.0,43.0,48.0,46.0,50.0,48.0,59.0,39.0,39.0,37.0,43.0,44.0,42.0,33.0,33.0,40.0,28.0,31.0,35.0,39.0,52.0,30.0,33.0,27.0,19.0,23.0,14.0,14.0,17.0,7.0,9.0,7.0,14.0,4.0,2.0,,1.0,5.0 A83049,60.0,73.0,73.0,83.0,88.0,91.0,71.0,101.0,107.0,101.0,86.0,103.0,86.0,104.0,90.0,109.0,84.0,95.0,94.0,74.0,79.0,76.0,80.0,78.0,79.0,89.0,89.0,104.0,86.0,90.0,95.0,100.0,120.0,110.0,121.0,75.0,122.0,99.0,107.0,91.0,104.0,100.0,106.0,99.0,116.0,95.0,116.0,91.0,94.0,102.0,110.0,103.0,108.0,123.0,123.0,102.0,113.0,123.0,128.0,121.0,121.0,114.0,118.0,117.0,101.0,94.0,118.0,84.0,80.0,86.0,82.0,82.0,90.0,71.0,66.0,56.0,70.0,63.0,59.0,63.0,53.0,58.0,38.0,21.0,38.0,29.0,30.0,29.0,10.0,13.0,12.0,11.0,8.0,5.0,,2.0 A83050,36.0,46.0,40.0,57.0,52.0,63.0,65.0,63.0,63.0,63.0,60.0,71.0,72.0,75.0,86.0,74.0,87.0,90.0,69.0,66.0,67.0,63.0,62.0,64.0,58.0,59.0,65.0,61.0,73.0,68.0,83.0,69.0,72.0,97.0,82.0,69.0,71.0,94.0,80.0,85.0,68.0,83.0,71.0,84.0,77.0,70.0,62.0,75.0,51.0,84.0,68.0,77.0,102.0,91.0,107.0,92.0,90.0,95.0,106.0,94.0,108.0,107.0,105.0,93.0,67.0,72.0,88.0,79.0,76.0,67.0,81.0,82.0,69.0,49.0,50.0,64.0,58.0,75.0,60.0,47.0,49.0,43.0,36.0,28.0,21.0,12.0,24.0,27.0,13.0,10.0,8.0,8.0,5.0,2.0,1.0,9.0 A83051,44.0,64.0,46.0,57.0,56.0,58.0,75.0,63.0,68.0,79.0,64.0,68.0,67.0,61.0,81.0,66.0,82.0,60.0,75.0,61.0,60.0,56.0,51.0,50.0,59.0,62.0,51.0,59.0,54.0,66.0,74.0,79.0,77.0,78.0,84.0,68.0,81.0,76.0,85.0,74.0,90.0,73.0,74.0,91.0,73.0,84.0,71.0,72.0,65.0,56.0,49.0,65.0,75.0,73.0,77.0,78.0,78.0,76.0,83.0,75.0,80.0,82.0,75.0,87.0,79.0,67.0,84.0,64.0,74.0,74.0,69.0,60.0,38.0,49.0,49.0,43.0,41.0,57.0,48.0,38.0,40.0,34.0,24.0,21.0,20.0,20.0,17.0,21.0,11.0,11.0,8.0,8.0,8.0,2.0,4.0,5.0 A83052,31.0,33.0,40.0,36.0,49.0,43.0,50.0,35.0,50.0,40.0,39.0,36.0,64.0,45.0,60.0,47.0,43.0,47.0,43.0,42.0,40.0,50.0,33.0,40.0,33.0,43.0,50.0,44.0,44.0,41.0,44.0,49.0,53.0,61.0,51.0,45.0,55.0,55.0,54.0,58.0,53.0,61.0,53.0,59.0,49.0,54.0,55.0,57.0,45.0,54.0,58.0,54.0,56.0,64.0,62.0,58.0,66.0,67.0,61.0,56.0,58.0,57.0,50.0,74.0,58.0,60.0,46.0,76.0,48.0,59.0,56.0,62.0,40.0,59.0,48.0,54.0,62.0,58.0,59.0,45.0,22.0,28.0,30.0,16.0,13.0,14.0,13.0,11.0,14.0,13.0,7.0,5.0,2.0,3.0,2.0,5.0 A83054,73.0,89.0,64.0,76.0,74.0,77.0,72.0,86.0,94.0,89.0,100.0,101.0,115.0,110.0,102.0,100.0,96.0,85.0,96.0,91.0,80.0,81.0,78.0,80.0,81.0,81.0,75.0,77.0,80.0,94.0,85.0,91.0,85.0,104.0,102.0,73.0,93.0,102.0,106.0,92.0,115.0,82.0,101.0,124.0,86.0,100.0,96.0,92.0,89.0,87.0,116.0,147.0,118.0,140.0,130.0,113.0,132.0,128.0,135.0,133.0,145.0,118.0,142.0,112.0,124.0,106.0,111.0,104.0,104.0,94.0,85.0,94.0,99.0,93.0,84.0,76.0,84.0,96.0,86.0,64.0,93.0,67.0,68.0,43.0,25.0,23.0,26.0,28.0,28.0,12.0,11.0,11.0,5.0,5.0,,7.0 A83055,24.0,25.0,24.0,18.0,19.0,26.0,19.0,30.0,28.0,39.0,25.0,24.0,16.0,37.0,29.0,24.0,22.0,24.0,27.0,23.0,23.0,15.0,15.0,16.0,19.0,30.0,20.0,22.0,25.0,28.0,27.0,27.0,30.0,33.0,21.0,30.0,28.0,23.0,41.0,38.0,32.0,26.0,32.0,34.0,33.0,32.0,33.0,26.0,32.0,35.0,22.0,25.0,32.0,30.0,30.0,34.0,33.0,30.0,30.0,29.0,31.0,31.0,34.0,32.0,21.0,24.0,32.0,28.0,28.0,30.0,33.0,29.0,19.0,31.0,33.0,26.0,42.0,32.0,35.0,23.0,35.0,18.0,18.0,24.0,11.0,10.0,12.0,7.0,6.0,6.0,4.0,6.0,1.0,1.0,, A83057,92.0,95.0,86.0,108.0,92.0,82.0,101.0,107.0,123.0,95.0,93.0,91.0,128.0,135.0,118.0,102.0,92.0,104.0,94.0,98.0,96.0,90.0,89.0,91.0,86.0,81.0,108.0,112.0,118.0,101.0,128.0,128.0,114.0,128.0,161.0,113.0,96.0,135.0,100.0,147.0,107.0,122.0,137.0,112.0,118.0,135.0,115.0,96.0,96.0,114.0,114.0,105.0,106.0,128.0,133.0,137.0,143.0,152.0,163.0,133.0,145.0,137.0,131.0,136.0,130.0,131.0,133.0,112.0,94.0,80.0,111.0,94.0,72.0,78.0,73.0,90.0,79.0,82.0,83.0,67.0,56.0,44.0,50.0,38.0,34.0,31.0,26.0,29.0,18.0,14.0,9.0,10.0,5.0,8.0,3.0,7.0 A83060,5.0,9.0,9.0,11.0,15.0,10.0,18.0,12.0,7.0,17.0,10.0,21.0,18.0,15.0,13.0,16.0,15.0,14.0,12.0,16.0,14.0,20.0,16.0,11.0,15.0,21.0,13.0,13.0,13.0,13.0,11.0,26.0,11.0,11.0,14.0,23.0,13.0,19.0,18.0,19.0,17.0,17.0,7.0,14.0,14.0,13.0,20.0,10.0,7.0,10.0,10.0,20.0,25.0,23.0,18.0,22.0,20.0,27.0,26.0,30.0,29.0,28.0,20.0,29.0,23.0,29.0,29.0,26.0,22.0,16.0,19.0,23.0,18.0,22.0,15.0,16.0,29.0,14.0,15.0,11.0,16.0,12.0,11.0,7.0,7.0,5.0,3.0,4.0,7.0,3.0,,3.0,2.0,,,1.0 A83061,7.0,9.0,8.0,9.0,9.0,12.0,7.0,9.0,20.0,17.0,16.0,20.0,23.0,26.0,16.0,27.0,27.0,11.0,19.0,19.0,19.0,18.0,20.0,15.0,20.0,13.0,11.0,16.0,19.0,13.0,11.0,20.0,15.0,14.0,15.0,18.0,21.0,15.0,14.0,8.0,19.0,12.0,19.0,19.0,16.0,21.0,21.0,12.0,16.0,27.0,24.0,28.0,30.0,21.0,26.0,23.0,37.0,28.0,30.0,32.0,46.0,28.0,39.0,40.0,34.0,34.0,29.0,18.0,31.0,25.0,31.0,34.0,37.0,22.0,23.0,26.0,22.0,23.0,25.0,20.0,18.0,18.0,14.0,13.0,9.0,8.0,11.0,7.0,8.0,6.0,4.0,3.0,3.0,2.0,1.0,5.0 A83066,53.0,78.0,62.0,80.0,78.0,72.0,80.0,82.0,82.0,63.0,82.0,63.0,82.0,93.0,94.0,79.0,87.0,84.0,91.0,84.0,78.0,57.0,64.0,73.0,67.0,58.0,76.0,70.0,83.0,76.0,96.0,112.0,91.0,91.0,90.0,75.0,85.0,90.0,83.0,67.0,75.0,84.0,73.0,84.0,84.0,95.0,79.0,65.0,66.0,89.0,79.0,72.0,102.0,109.0,87.0,98.0,93.0,83.0,93.0,104.0,86.0,99.0,80.0,84.0,85.0,70.0,67.0,83.0,71.0,60.0,67.0,54.0,66.0,39.0,51.0,49.0,52.0,43.0,46.0,34.0,26.0,33.0,21.0,18.0,22.0,20.0,12.0,12.0,10.0,10.0,4.0,13.0,17.0,2.0,2.0,3.0 A83070,19.0,27.0,20.0,25.0,24.0,34.0,29.0,34.0,28.0,25.0,37.0,26.0,37.0,33.0,37.0,23.0,36.0,38.0,39.0,27.0,30.0,23.0,26.0,27.0,22.0,25.0,13.0,21.0,30.0,20.0,39.0,38.0,28.0,33.0,35.0,29.0,36.0,31.0,23.0,37.0,29.0,35.0,41.0,33.0,34.0,26.0,32.0,32.0,28.0,42.0,49.0,32.0,34.0,60.0,50.0,48.0,44.0,40.0,45.0,48.0,51.0,38.0,40.0,39.0,41.0,42.0,44.0,43.0,42.0,41.0,41.0,36.0,34.0,28.0,35.0,42.0,37.0,35.0,42.0,33.0,30.0,25.0,17.0,16.0,17.0,11.0,16.0,14.0,8.0,7.0,3.0,6.0,4.0,2.0,4.0,5.0 A83071,18.0,22.0,20.0,23.0,22.0,23.0,22.0,22.0,29.0,28.0,14.0,28.0,25.0,37.0,27.0,33.0,25.0,31.0,25.0,28.0,33.0,27.0,20.0,27.0,28.0,23.0,24.0,23.0,33.0,32.0,36.0,21.0,29.0,33.0,31.0,36.0,25.0,40.0,30.0,34.0,19.0,37.0,25.0,27.0,32.0,35.0,23.0,18.0,19.0,27.0,32.0,26.0,28.0,22.0,39.0,40.0,31.0,33.0,28.0,35.0,23.0,31.0,29.0,35.0,41.0,38.0,32.0,30.0,28.0,33.0,16.0,22.0,31.0,25.0,24.0,16.0,16.0,19.0,19.0,8.0,12.0,5.0,8.0,10.0,7.0,5.0,4.0,5.0,7.0,1.0,2.0,2.0,1.0,,, A83072,15.0,6.0,18.0,19.0,22.0,21.0,27.0,29.0,28.0,39.0,22.0,19.0,26.0,23.0,23.0,26.0,20.0,32.0,20.0,16.0,21.0,10.0,24.0,15.0,20.0,26.0,14.0,14.0,21.0,16.0,14.0,12.0,14.0,25.0,23.0,13.0,21.0,23.0,22.0,28.0,27.0,29.0,25.0,29.0,22.0,21.0,20.0,17.0,29.0,28.0,25.0,26.0,23.0,30.0,28.0,37.0,31.0,30.0,35.0,37.0,34.0,31.0,32.0,22.0,26.0,28.0,26.0,19.0,24.0,23.0,29.0,27.0,22.0,25.0,19.0,16.0,30.0,20.0,31.0,25.0,28.0,20.0,10.0,12.0,10.0,12.0,8.0,9.0,17.0,3.0,9.0,2.0,1.0,2.0,1.0,5.0 A83073,21.0,16.0,23.0,26.0,25.0,26.0,28.0,24.0,28.0,25.0,29.0,27.0,43.0,25.0,34.0,33.0,35.0,34.0,34.0,25.0,28.0,32.0,17.0,22.0,30.0,25.0,30.0,30.0,28.0,46.0,28.0,29.0,41.0,31.0,35.0,33.0,28.0,34.0,33.0,36.0,31.0,37.0,32.0,32.0,30.0,26.0,39.0,26.0,21.0,30.0,33.0,37.0,31.0,32.0,40.0,31.0,35.0,27.0,36.0,49.0,33.0,29.0,47.0,39.0,37.0,25.0,32.0,36.0,30.0,33.0,22.0,27.0,32.0,37.0,28.0,30.0,28.0,29.0,22.0,17.0,28.0,26.0,17.0,13.0,11.0,8.0,7.0,9.0,8.0,5.0,4.0,3.0,1.0,4.0,,2.0 A83074,69.0,60.0,63.0,64.0,76.0,55.0,73.0,58.0,90.0,81.0,68.0,85.0,76.0,90.0,85.0,90.0,76.0,73.0,87.0,69.0,73.0,80.0,60.0,55.0,53.0,61.0,76.0,70.0,66.0,54.0,96.0,75.0,78.0,76.0,93.0,79.0,89.0,79.0,73.0,90.0,80.0,82.0,94.0,96.0,86.0,58.0,65.0,52.0,67.0,59.0,69.0,56.0,80.0,63.0,65.0,68.0,95.0,67.0,87.0,92.0,92.0,76.0,87.0,94.0,84.0,70.0,71.0,66.0,65.0,65.0,68.0,64.0,57.0,62.0,57.0,45.0,49.0,51.0,60.0,38.0,35.0,28.0,18.0,13.0,19.0,14.0,6.0,12.0,13.0,5.0,8.0,5.0,4.0,1.0,5.0,9.0 A83075,30.0,29.0,28.0,38.0,32.0,32.0,55.0,29.0,45.0,44.0,43.0,59.0,46.0,56.0,56.0,34.0,51.0,56.0,53.0,40.0,46.0,39.0,38.0,45.0,35.0,45.0,46.0,42.0,47.0,47.0,46.0,62.0,65.0,45.0,63.0,51.0,59.0,64.0,44.0,61.0,56.0,48.0,62.0,53.0,58.0,54.0,56.0,56.0,51.0,66.0,66.0,40.0,57.0,51.0,70.0,65.0,61.0,59.0,49.0,70.0,79.0,72.0,59.0,61.0,70.0,59.0,68.0,63.0,55.0,52.0,50.0,49.0,50.0,37.0,43.0,34.0,49.0,43.0,45.0,32.0,33.0,18.0,8.0,14.0,25.0,12.0,10.0,15.0,14.0,8.0,7.0,3.0,5.0,1.0,2.0,5.0 A83610,12.0,14.0,18.0,20.0,17.0,21.0,19.0,20.0,24.0,29.0,17.0,26.0,28.0,25.0,21.0,23.0,20.0,23.0,23.0,21.0,12.0,23.0,15.0,26.0,19.0,9.0,13.0,21.0,18.0,25.0,27.0,19.0,13.0,19.0,27.0,25.0,25.0,27.0,23.0,21.0,21.0,28.0,24.0,24.0,28.0,27.0,15.0,29.0,26.0,20.0,31.0,20.0,28.0,29.0,28.0,20.0,31.0,28.0,28.0,26.0,30.0,22.0,16.0,29.0,20.0,22.0,17.0,21.0,21.0,21.0,9.0,22.0,13.0,18.0,19.0,12.0,6.0,20.0,18.0,17.0,8.0,9.0,3.0,13.0,7.0,7.0,6.0,1.0,4.0,1.0,2.0,,1.0,,, A83616,37.0,45.0,48.0,48.0,45.0,53.0,46.0,60.0,50.0,55.0,61.0,55.0,58.0,67.0,43.0,55.0,45.0,47.0,39.0,40.0,61.0,37.0,57.0,44.0,41.0,55.0,54.0,44.0,59.0,71.0,52.0,57.0,61.0,67.0,44.0,70.0,81.0,58.0,75.0,54.0,65.0,50.0,47.0,56.0,53.0,58.0,66.0,52.0,37.0,61.0,39.0,54.0,60.0,49.0,70.0,68.0,61.0,60.0,54.0,65.0,59.0,63.0,58.0,66.0,53.0,42.0,62.0,71.0,53.0,50.0,30.0,54.0,38.0,45.0,29.0,38.0,36.0,43.0,43.0,24.0,18.0,18.0,22.0,18.0,15.0,14.0,8.0,8.0,9.0,4.0,2.0,1.0,3.0,2.0,1.0,2.0 A83617,6.0,8.0,10.0,10.0,11.0,10.0,20.0,3.0,6.0,12.0,12.0,20.0,16.0,14.0,13.0,17.0,16.0,15.0,15.0,9.0,15.0,12.0,13.0,19.0,20.0,18.0,12.0,17.0,15.0,11.0,20.0,14.0,20.0,12.0,13.0,23.0,17.0,15.0,19.0,15.0,21.0,17.0,20.0,20.0,13.0,15.0,18.0,10.0,18.0,11.0,17.0,14.0,21.0,21.0,28.0,22.0,20.0,28.0,27.0,20.0,19.0,20.0,18.0,17.0,15.0,22.0,19.0,20.0,24.0,12.0,14.0,14.0,19.0,11.0,6.0,22.0,11.0,14.0,7.0,9.0,10.0,7.0,6.0,5.0,5.0,5.0,3.0,1.0,3.0,2.0,3.0,3.0,1.0,,, A83618,31.0,42.0,28.0,34.0,29.0,37.0,39.0,41.0,39.0,42.0,46.0,42.0,47.0,47.0,44.0,45.0,39.0,61.0,48.0,36.0,33.0,28.0,31.0,30.0,32.0,31.0,38.0,40.0,41.0,37.0,29.0,41.0,55.0,39.0,43.0,47.0,49.0,48.0,51.0,54.0,42.0,48.0,54.0,43.0,40.0,55.0,42.0,43.0,34.0,41.0,41.0,51.0,51.0,41.0,57.0,62.0,57.0,58.0,62.0,64.0,67.0,53.0,65.0,63.0,41.0,49.0,48.0,58.0,41.0,46.0,52.0,41.0,47.0,44.0,41.0,44.0,41.0,34.0,57.0,27.0,29.0,18.0,23.0,25.0,14.0,20.0,9.0,8.0,13.0,7.0,3.0,4.0,5.0,1.0,4.0,4.0 A83619,16.0,22.0,14.0,24.0,14.0,14.0,20.0,18.0,21.0,18.0,19.0,18.0,17.0,21.0,27.0,26.0,21.0,23.0,22.0,21.0,18.0,19.0,19.0,20.0,14.0,19.0,18.0,22.0,15.0,29.0,18.0,25.0,30.0,15.0,21.0,23.0,30.0,30.0,19.0,32.0,33.0,20.0,22.0,20.0,20.0,17.0,23.0,22.0,12.0,22.0,22.0,20.0,20.0,30.0,21.0,19.0,26.0,28.0,34.0,19.0,27.0,29.0,36.0,25.0,30.0,21.0,29.0,14.0,23.0,26.0,12.0,10.0,15.0,14.0,15.0,15.0,13.0,5.0,10.0,13.0,8.0,9.0,7.0,6.0,1.0,4.0,7.0,3.0,4.0,1.0,1.0,1.0,,,,3.0 A83622,7.0,7.0,3.0,5.0,6.0,7.0,8.0,11.0,9.0,16.0,15.0,12.0,12.0,8.0,9.0,8.0,7.0,7.0,10.0,10.0,11.0,7.0,9.0,9.0,5.0,7.0,8.0,6.0,6.0,5.0,14.0,9.0,8.0,13.0,8.0,9.0,10.0,11.0,10.0,7.0,15.0,8.0,18.0,12.0,19.0,10.0,11.0,9.0,10.0,12.0,8.0,18.0,9.0,14.0,11.0,12.0,17.0,6.0,14.0,20.0,14.0,12.0,9.0,16.0,19.0,8.0,13.0,11.0,8.0,16.0,14.0,16.0,17.0,9.0,11.0,13.0,7.0,10.0,7.0,5.0,10.0,3.0,7.0,3.0,3.0,1.0,2.0,4.0,2.0,6.0,1.0,,,,1.0,1.0 A83626,4.0,5.0,10.0,12.0,9.0,11.0,10.0,19.0,13.0,18.0,6.0,14.0,11.0,13.0,22.0,13.0,18.0,13.0,13.0,13.0,6.0,5.0,4.0,15.0,12.0,11.0,13.0,15.0,15.0,12.0,19.0,7.0,14.0,14.0,15.0,17.0,13.0,10.0,14.0,12.0,10.0,19.0,12.0,7.0,14.0,19.0,17.0,17.0,17.0,11.0,16.0,16.0,14.0,22.0,13.0,19.0,13.0,16.0,23.0,15.0,12.0,18.0,15.0,20.0,13.0,20.0,17.0,10.0,14.0,15.0,18.0,27.0,10.0,19.0,11.0,21.0,14.0,9.0,17.0,4.0,9.0,4.0,6.0,5.0,4.0,6.0,5.0,1.0,2.0,2.0,1.0,,1.0,,,1.0 A83627,44.0,40.0,42.0,38.0,47.0,42.0,27.0,42.0,46.0,49.0,40.0,50.0,43.0,54.0,61.0,46.0,43.0,40.0,42.0,40.0,36.0,35.0,29.0,28.0,28.0,49.0,32.0,35.0,42.0,35.0,45.0,51.0,61.0,55.0,43.0,43.0,57.0,47.0,47.0,47.0,60.0,55.0,50.0,43.0,45.0,36.0,37.0,34.0,32.0,33.0,46.0,44.0,44.0,50.0,51.0,39.0,43.0,56.0,45.0,41.0,41.0,40.0,37.0,40.0,45.0,35.0,27.0,31.0,32.0,31.0,35.0,12.0,20.0,34.0,19.0,31.0,18.0,15.0,22.0,13.0,21.0,18.0,12.0,6.0,8.0,5.0,7.0,11.0,3.0,3.0,2.0,,2.0,1.0,, A83634,7.0,10.0,22.0,16.0,14.0,11.0,25.0,12.0,14.0,22.0,19.0,14.0,21.0,16.0,13.0,22.0,17.0,15.0,12.0,11.0,11.0,14.0,7.0,9.0,17.0,17.0,9.0,14.0,13.0,20.0,14.0,17.0,23.0,13.0,19.0,26.0,17.0,21.0,24.0,20.0,22.0,12.0,18.0,14.0,15.0,16.0,12.0,13.0,18.0,10.0,18.0,18.0,14.0,25.0,20.0,14.0,18.0,22.0,22.0,18.0,17.0,25.0,23.0,22.0,24.0,18.0,18.0,21.0,21.0,9.0,14.0,17.0,17.0,12.0,13.0,13.0,10.0,14.0,14.0,15.0,13.0,8.0,8.0,11.0,7.0,11.0,5.0,5.0,6.0,2.0,2.0,1.0,2.0,2.0,,1.0 A83635,39.0,24.0,28.0,28.0,25.0,31.0,29.0,28.0,31.0,33.0,35.0,24.0,27.0,28.0,29.0,24.0,28.0,24.0,23.0,22.0,18.0,28.0,26.0,24.0,38.0,26.0,36.0,26.0,36.0,32.0,25.0,34.0,41.0,47.0,38.0,39.0,43.0,50.0,45.0,36.0,43.0,34.0,28.0,35.0,18.0,40.0,34.0,43.0,25.0,27.0,24.0,21.0,34.0,22.0,27.0,23.0,21.0,35.0,18.0,30.0,20.0,15.0,25.0,25.0,32.0,23.0,21.0,19.0,13.0,15.0,19.0,15.0,22.0,8.0,19.0,14.0,8.0,13.0,14.0,8.0,10.0,12.0,9.0,3.0,6.0,9.0,8.0,3.0,3.0,2.0,1.0,2.0,1.0,1.0,2.0,1.0 A83636,21.0,31.0,30.0,27.0,33.0,27.0,32.0,28.0,40.0,35.0,42.0,40.0,34.0,38.0,31.0,32.0,46.0,30.0,39.0,36.0,31.0,34.0,30.0,37.0,27.0,32.0,41.0,25.0,28.0,25.0,28.0,29.0,37.0,37.0,45.0,29.0,40.0,41.0,40.0,49.0,44.0,39.0,37.0,36.0,34.0,38.0,34.0,28.0,33.0,32.0,52.0,38.0,37.0,37.0,42.0,45.0,35.0,50.0,44.0,41.0,47.0,44.0,42.0,33.0,39.0,33.0,33.0,34.0,27.0,37.0,30.0,28.0,19.0,20.0,25.0,17.0,29.0,30.0,23.0,17.0,21.0,12.0,14.0,7.0,9.0,6.0,12.0,11.0,7.0,4.0,5.0,3.0,,2.0,1.0,5.0 A83637,18.0,14.0,24.0,12.0,11.0,19.0,15.0,25.0,10.0,26.0,16.0,24.0,26.0,23.0,18.0,25.0,21.0,19.0,36.0,25.0,30.0,21.0,20.0,19.0,18.0,15.0,23.0,26.0,31.0,29.0,23.0,33.0,32.0,28.0,29.0,26.0,27.0,30.0,27.0,25.0,28.0,36.0,31.0,23.0,33.0,25.0,26.0,20.0,25.0,23.0,24.0,29.0,36.0,33.0,28.0,35.0,27.0,32.0,41.0,39.0,33.0,37.0,29.0,25.0,33.0,32.0,28.0,32.0,32.0,33.0,30.0,26.0,25.0,24.0,28.0,24.0,25.0,25.0,26.0,17.0,18.0,13.0,13.0,12.0,7.0,7.0,7.0,9.0,4.0,4.0,3.0,1.0,3.0,1.0,,2.0 A83641,20.0,17.0,23.0,26.0,23.0,28.0,25.0,31.0,28.0,31.0,18.0,37.0,36.0,32.0,30.0,37.0,28.0,36.0,38.0,34.0,30.0,23.0,23.0,23.0,27.0,25.0,42.0,34.0,41.0,41.0,39.0,31.0,32.0,54.0,45.0,48.0,38.0,39.0,47.0,46.0,54.0,47.0,49.0,47.0,47.0,33.0,52.0,47.0,40.0,46.0,48.0,29.0,32.0,40.0,26.0,43.0,38.0,24.0,40.0,37.0,30.0,32.0,40.0,38.0,29.0,29.0,23.0,22.0,20.0,29.0,15.0,16.0,14.0,19.0,16.0,16.0,19.0,24.0,21.0,15.0,9.0,11.0,4.0,9.0,6.0,7.0,3.0,3.0,1.0,5.0,1.0,3.0,2.0,1.0,,1.0 A83644,10.0,10.0,18.0,19.0,16.0,17.0,20.0,16.0,18.0,16.0,20.0,21.0,26.0,17.0,30.0,16.0,27.0,27.0,34.0,22.0,22.0,19.0,15.0,19.0,18.0,16.0,15.0,18.0,17.0,15.0,25.0,20.0,23.0,28.0,15.0,35.0,27.0,24.0,27.0,23.0,38.0,31.0,23.0,24.0,27.0,23.0,27.0,28.0,12.0,28.0,28.0,22.0,26.0,24.0,28.0,29.0,26.0,28.0,30.0,35.0,34.0,21.0,27.0,22.0,19.0,16.0,24.0,34.0,21.0,26.0,21.0,17.0,18.0,15.0,18.0,20.0,13.0,15.0,20.0,9.0,6.0,11.0,14.0,11.0,9.0,9.0,8.0,4.0,3.0,8.0,1.0,1.0,1.0,5.0,4.0,1.0 A84002,12.0,16.0,17.0,16.0,21.0,20.0,20.0,23.0,24.0,21.0,20.0,27.0,24.0,22.0,34.0,26.0,31.0,27.0,28.0,29.0,23.0,26.0,23.0,22.0,17.0,20.0,23.0,24.0,23.0,23.0,12.0,15.0,25.0,24.0,17.0,23.0,10.0,25.0,24.0,31.0,19.0,21.0,17.0,30.0,22.0,24.0,34.0,34.0,34.0,34.0,34.0,31.0,40.0,42.0,52.0,35.0,42.0,39.0,53.0,59.0,59.0,52.0,69.0,76.0,56.0,67.0,72.0,57.0,59.0,54.0,65.0,56.0,64.0,61.0,47.0,41.0,37.0,58.0,52.0,48.0,40.0,50.0,25.0,23.0,25.0,26.0,16.0,11.0,18.0,10.0,6.0,3.0,8.0,2.0,3.0,5.0 A84005,47.0,59.0,62.0,51.0,66.0,60.0,53.0,62.0,72.0,73.0,55.0,78.0,94.0,63.0,68.0,100.0,77.0,77.0,69.0,69.0,59.0,64.0,75.0,58.0,57.0,67.0,61.0,63.0,68.0,82.0,80.0,80.0,80.0,73.0,75.0,85.0,90.0,91.0,74.0,74.0,65.0,67.0,60.0,56.0,58.0,88.0,75.0,78.0,55.0,61.0,54.0,60.0,73.0,107.0,85.0,100.0,93.0,101.0,92.0,94.0,104.0,100.0,92.0,96.0,80.0,83.0,89.0,80.0,76.0,68.0,71.0,94.0,67.0,62.0,75.0,65.0,44.0,72.0,53.0,47.0,58.0,32.0,23.0,30.0,30.0,17.0,19.0,18.0,8.0,12.0,12.0,8.0,10.0,4.0,1.0,2.0 A84006,52.0,53.0,60.0,84.0,80.0,58.0,73.0,78.0,80.0,73.0,90.0,80.0,97.0,91.0,106.0,94.0,105.0,98.0,110.0,74.0,73.0,98.0,85.0,89.0,86.0,81.0,86.0,85.0,75.0,81.0,81.0,87.0,91.0,77.0,105.0,96.0,98.0,102.0,87.0,89.0,111.0,90.0,73.0,90.0,89.0,90.0,101.0,94.0,84.0,77.0,101.0,104.0,112.0,112.0,136.0,105.0,142.0,157.0,141.0,129.0,176.0,169.0,169.0,174.0,166.0,155.0,150.0,162.0,168.0,170.0,129.0,159.0,138.0,141.0,132.0,119.0,134.0,152.0,133.0,103.0,95.0,85.0,91.0,62.0,57.0,46.0,57.0,36.0,37.0,32.0,17.0,27.0,8.0,9.0,3.0,20.0 A84007,42.0,47.0,51.0,40.0,62.0,42.0,45.0,41.0,50.0,52.0,71.0,57.0,59.0,70.0,70.0,69.0,58.0,62.0,60.0,52.0,61.0,40.0,64.0,44.0,52.0,35.0,57.0,56.0,50.0,55.0,52.0,52.0,62.0,50.0,58.0,47.0,62.0,60.0,51.0,54.0,65.0,51.0,57.0,65.0,64.0,67.0,73.0,58.0,61.0,58.0,62.0,66.0,67.0,65.0,64.0,76.0,79.0,75.0,82.0,89.0,78.0,102.0,65.0,75.0,66.0,78.0,78.0,66.0,73.0,60.0,58.0,78.0,66.0,67.0,63.0,64.0,68.0,67.0,76.0,47.0,49.0,57.0,29.0,34.0,32.0,28.0,33.0,29.0,27.0,25.0,29.0,17.0,11.0,7.0,5.0,16.0 A84008,9.0,11.0,17.0,11.0,16.0,9.0,10.0,19.0,18.0,19.0,17.0,15.0,13.0,13.0,21.0,17.0,18.0,15.0,20.0,23.0,14.0,15.0,16.0,14.0,18.0,21.0,21.0,23.0,16.0,17.0,8.0,23.0,24.0,26.0,19.0,15.0,20.0,20.0,16.0,24.0,24.0,12.0,17.0,10.0,12.0,20.0,14.0,25.0,21.0,20.0,17.0,26.0,27.0,21.0,36.0,25.0,29.0,45.0,43.0,39.0,42.0,45.0,48.0,48.0,49.0,51.0,43.0,44.0,44.0,38.0,40.0,54.0,37.0,39.0,23.0,37.0,46.0,40.0,33.0,23.0,34.0,24.0,26.0,21.0,13.0,19.0,9.0,13.0,10.0,8.0,8.0,5.0,3.0,4.0,1.0,8.0 A84009,122.0,143.0,146.0,151.0,134.0,134.0,149.0,178.0,144.0,167.0,169.0,160.0,163.0,189.0,168.0,173.0,164.0,183.0,168.0,150.0,170.0,153.0,130.0,124.0,147.0,161.0,183.0,176.0,166.0,198.0,162.0,184.0,186.0,184.0,194.0,181.0,197.0,209.0,203.0,186.0,182.0,198.0,177.0,175.0,152.0,176.0,145.0,144.0,129.0,164.0,182.0,166.0,180.0,167.0,171.0,153.0,185.0,157.0,182.0,180.0,190.0,165.0,151.0,172.0,165.0,164.0,166.0,164.0,143.0,159.0,122.0,122.0,158.0,132.0,117.0,132.0,135.0,131.0,119.0,81.0,99.0,66.0,57.0,57.0,48.0,37.0,33.0,34.0,23.0,19.0,19.0,12.0,4.0,8.0,5.0,7.0 A84011,31.0,34.0,27.0,32.0,53.0,37.0,41.0,37.0,55.0,62.0,57.0,55.0,55.0,48.0,59.0,51.0,54.0,60.0,55.0,39.0,45.0,40.0,37.0,34.0,38.0,39.0,33.0,38.0,38.0,33.0,32.0,42.0,31.0,42.0,43.0,44.0,43.0,54.0,38.0,53.0,57.0,55.0,50.0,49.0,48.0,65.0,61.0,57.0,45.0,54.0,44.0,54.0,41.0,59.0,63.0,47.0,53.0,61.0,65.0,64.0,70.0,70.0,62.0,61.0,65.0,64.0,76.0,40.0,63.0,50.0,58.0,40.0,39.0,54.0,65.0,43.0,49.0,59.0,62.0,28.0,34.0,34.0,21.0,21.0,24.0,27.0,23.0,16.0,23.0,14.0,15.0,10.0,7.0,3.0,4.0,11.0 A84013,16.0,30.0,31.0,25.0,30.0,27.0,44.0,27.0,24.0,34.0,25.0,39.0,26.0,33.0,31.0,34.0,45.0,40.0,39.0,35.0,26.0,31.0,25.0,39.0,31.0,41.0,39.0,41.0,56.0,33.0,40.0,34.0,27.0,33.0,37.0,36.0,40.0,52.0,33.0,36.0,37.0,47.0,35.0,36.0,34.0,37.0,42.0,21.0,36.0,40.0,40.0,34.0,47.0,47.0,50.0,39.0,44.0,49.0,52.0,42.0,42.0,41.0,50.0,55.0,46.0,54.0,42.0,48.0,35.0,35.0,26.0,35.0,27.0,35.0,30.0,37.0,31.0,35.0,29.0,24.0,22.0,16.0,19.0,15.0,18.0,10.0,9.0,8.0,8.0,7.0,5.0,5.0,4.0,,, A84014,67.0,68.0,92.0,75.0,68.0,69.0,71.0,79.0,80.0,87.0,63.0,98.0,69.0,91.0,55.0,77.0,60.0,84.0,75.0,81.0,80.0,78.0,76.0,64.0,77.0,90.0,91.0,97.0,70.0,90.0,80.0,95.0,99.0,80.0,90.0,77.0,87.0,77.0,88.0,84.0,70.0,82.0,95.0,69.0,74.0,83.0,64.0,75.0,63.0,77.0,78.0,86.0,91.0,92.0,94.0,89.0,98.0,89.0,102.0,96.0,106.0,107.0,79.0,91.0,93.0,86.0,85.0,84.0,70.0,79.0,73.0,84.0,76.0,62.0,63.0,65.0,60.0,72.0,64.0,45.0,59.0,42.0,36.0,27.0,29.0,25.0,24.0,20.0,15.0,13.0,15.0,10.0,7.0,8.0,2.0,3.0 A84016,21.0,23.0,30.0,32.0,27.0,39.0,38.0,42.0,31.0,37.0,37.0,40.0,43.0,47.0,43.0,36.0,44.0,52.0,54.0,38.0,30.0,36.0,38.0,25.0,48.0,32.0,35.0,30.0,28.0,39.0,38.0,39.0,47.0,48.0,33.0,39.0,48.0,39.0,35.0,40.0,43.0,38.0,38.0,49.0,48.0,44.0,39.0,40.0,53.0,51.0,33.0,47.0,50.0,53.0,59.0,46.0,47.0,46.0,41.0,62.0,63.0,47.0,48.0,52.0,51.0,46.0,39.0,50.0,28.0,36.0,36.0,38.0,30.0,34.0,25.0,28.0,38.0,34.0,34.0,28.0,18.0,23.0,15.0,11.0,18.0,15.0,13.0,6.0,5.0,3.0,7.0,4.0,,3.0,1.0,5.0 A84018,21.0,24.0,20.0,31.0,28.0,23.0,29.0,26.0,37.0,37.0,41.0,49.0,32.0,37.0,36.0,33.0,33.0,49.0,39.0,26.0,25.0,41.0,22.0,33.0,32.0,22.0,25.0,22.0,23.0,19.0,24.0,28.0,25.0,29.0,17.0,30.0,36.0,29.0,28.0,38.0,43.0,33.0,29.0,37.0,50.0,34.0,36.0,37.0,33.0,53.0,42.0,43.0,45.0,38.0,51.0,54.0,41.0,50.0,52.0,46.0,55.0,42.0,66.0,55.0,71.0,73.0,77.0,54.0,59.0,57.0,62.0,60.0,67.0,49.0,41.0,43.0,57.0,62.0,46.0,42.0,45.0,33.0,32.0,21.0,19.0,27.0,22.0,21.0,18.0,13.0,13.0,7.0,5.0,7.0,6.0,12.0 A84020,42.0,21.0,34.0,30.0,31.0,28.0,31.0,32.0,38.0,35.0,46.0,38.0,49.0,54.0,49.0,46.0,33.0,54.0,42.0,50.0,38.0,38.0,33.0,30.0,32.0,35.0,39.0,40.0,53.0,33.0,47.0,53.0,59.0,44.0,44.0,47.0,46.0,42.0,56.0,44.0,50.0,46.0,60.0,45.0,39.0,40.0,55.0,36.0,35.0,42.0,38.0,49.0,48.0,66.0,61.0,47.0,70.0,63.0,64.0,56.0,78.0,75.0,68.0,75.0,65.0,59.0,52.0,58.0,55.0,54.0,56.0,60.0,44.0,47.0,43.0,49.0,47.0,32.0,46.0,36.0,27.0,38.0,26.0,29.0,27.0,19.0,18.0,14.0,18.0,15.0,10.0,2.0,10.0,7.0,2.0,3.0 A84022,27.0,40.0,33.0,45.0,50.0,53.0,57.0,55.0,59.0,62.0,51.0,63.0,66.0,53.0,43.0,58.0,61.0,45.0,57.0,51.0,52.0,45.0,47.0,50.0,54.0,43.0,53.0,54.0,63.0,47.0,54.0,61.0,62.0,69.0,51.0,72.0,53.0,56.0,67.0,75.0,60.0,61.0,51.0,62.0,51.0,58.0,54.0,56.0,38.0,55.0,57.0,67.0,75.0,79.0,89.0,81.0,100.0,83.0,118.0,99.0,113.0,119.0,106.0,107.0,124.0,104.0,106.0,105.0,115.0,86.0,86.0,108.0,72.0,72.0,76.0,87.0,80.0,74.0,86.0,61.0,62.0,59.0,49.0,27.0,37.0,38.0,33.0,33.0,21.0,21.0,6.0,17.0,5.0,2.0,4.0,10.0 A84024,31.0,37.0,30.0,33.0,45.0,56.0,40.0,52.0,50.0,55.0,48.0,60.0,64.0,45.0,68.0,57.0,59.0,62.0,53.0,37.0,51.0,43.0,44.0,51.0,42.0,44.0,49.0,41.0,47.0,43.0,43.0,34.0,66.0,69.0,77.0,55.0,57.0,60.0,65.0,42.0,66.0,49.0,50.0,42.0,58.0,58.0,50.0,54.0,42.0,61.0,53.0,62.0,62.0,72.0,61.0,70.0,56.0,75.0,87.0,88.0,95.0,75.0,88.0,77.0,65.0,86.0,84.0,77.0,94.0,73.0,61.0,61.0,43.0,77.0,62.0,52.0,63.0,85.0,74.0,56.0,59.0,41.0,39.0,37.0,20.0,28.0,28.0,28.0,20.0,12.0,10.0,11.0,14.0,10.0,3.0,13.0 A84025,25.0,23.0,22.0,24.0,29.0,20.0,24.0,33.0,19.0,32.0,30.0,32.0,34.0,43.0,31.0,33.0,27.0,30.0,29.0,28.0,30.0,24.0,28.0,22.0,29.0,30.0,26.0,24.0,26.0,29.0,26.0,31.0,37.0,32.0,27.0,30.0,39.0,38.0,37.0,39.0,36.0,34.0,40.0,36.0,36.0,47.0,38.0,43.0,31.0,43.0,25.0,32.0,31.0,29.0,28.0,39.0,44.0,34.0,36.0,29.0,32.0,35.0,39.0,34.0,25.0,25.0,44.0,32.0,38.0,48.0,39.0,45.0,36.0,40.0,34.0,31.0,36.0,37.0,31.0,19.0,19.0,14.0,18.0,9.0,5.0,14.0,14.0,6.0,11.0,4.0,1.0,6.0,2.0,2.0,1.0,3.0 A84026,30.0,22.0,28.0,29.0,39.0,29.0,38.0,42.0,38.0,39.0,45.0,47.0,49.0,54.0,66.0,45.0,49.0,54.0,48.0,52.0,51.0,50.0,52.0,43.0,34.0,42.0,47.0,41.0,57.0,45.0,53.0,50.0,45.0,58.0,46.0,61.0,45.0,55.0,49.0,66.0,56.0,48.0,51.0,54.0,63.0,50.0,50.0,64.0,51.0,50.0,55.0,50.0,48.0,54.0,65.0,55.0,65.0,56.0,74.0,52.0,71.0,79.0,68.0,67.0,72.0,70.0,69.0,65.0,53.0,53.0,67.0,54.0,69.0,49.0,57.0,64.0,50.0,83.0,75.0,43.0,36.0,43.0,36.0,30.0,26.0,19.0,10.0,17.0,21.0,18.0,15.0,8.0,10.0,4.0,5.0,11.0 A84027,4.0,7.0,12.0,15.0,8.0,15.0,6.0,21.0,12.0,19.0,8.0,17.0,24.0,16.0,20.0,13.0,16.0,17.0,17.0,14.0,26.0,18.0,15.0,7.0,11.0,4.0,16.0,9.0,10.0,13.0,13.0,15.0,20.0,20.0,16.0,16.0,21.0,15.0,15.0,12.0,12.0,16.0,16.0,14.0,13.0,16.0,17.0,12.0,15.0,18.0,21.0,26.0,19.0,30.0,37.0,28.0,23.0,24.0,33.0,25.0,29.0,31.0,29.0,42.0,39.0,30.0,37.0,33.0,45.0,26.0,40.0,27.0,30.0,27.0,17.0,23.0,25.0,31.0,24.0,14.0,20.0,18.0,14.0,7.0,12.0,6.0,9.0,6.0,3.0,1.0,5.0,6.0,5.0,3.0,1.0,4.0 A84028,72.0,76.0,97.0,104.0,91.0,87.0,71.0,108.0,95.0,118.0,106.0,97.0,120.0,104.0,120.0,139.0,119.0,136.0,100.0,121.0,104.0,121.0,103.0,129.0,111.0,135.0,127.0,121.0,136.0,131.0,140.0,104.0,141.0,143.0,117.0,126.0,120.0,139.0,123.0,103.0,155.0,96.0,127.0,112.0,106.0,130.0,125.0,108.0,123.0,112.0,112.0,119.0,149.0,127.0,135.0,127.0,133.0,159.0,138.0,163.0,137.0,155.0,148.0,139.0,128.0,142.0,120.0,138.0,132.0,113.0,107.0,112.0,115.0,89.0,93.0,95.0,96.0,88.0,104.0,83.0,73.0,59.0,44.0,36.0,34.0,35.0,38.0,28.0,23.0,23.0,11.0,9.0,9.0,5.0,5.0,8.0 A84029,14.0,11.0,18.0,24.0,18.0,19.0,21.0,22.0,14.0,20.0,27.0,23.0,24.0,26.0,32.0,22.0,24.0,21.0,14.0,24.0,22.0,20.0,11.0,24.0,7.0,15.0,16.0,20.0,14.0,20.0,15.0,32.0,13.0,27.0,22.0,27.0,23.0,31.0,27.0,23.0,29.0,21.0,25.0,21.0,11.0,31.0,20.0,26.0,20.0,27.0,33.0,27.0,24.0,32.0,36.0,27.0,36.0,32.0,33.0,54.0,41.0,46.0,36.0,38.0,43.0,38.0,40.0,47.0,44.0,45.0,33.0,42.0,34.0,37.0,32.0,44.0,33.0,42.0,33.0,25.0,15.0,18.0,21.0,9.0,9.0,8.0,9.0,6.0,8.0,9.0,4.0,2.0,2.0,1.0,1.0,1.0 A84030,48.0,55.0,53.0,53.0,55.0,50.0,52.0,63.0,52.0,44.0,55.0,57.0,49.0,57.0,72.0,57.0,65.0,57.0,49.0,59.0,74.0,54.0,44.0,57.0,62.0,61.0,57.0,65.0,54.0,71.0,72.0,77.0,68.0,78.0,80.0,63.0,61.0,68.0,75.0,58.0,71.0,50.0,63.0,66.0,62.0,63.0,68.0,62.0,70.0,62.0,87.0,76.0,54.0,82.0,88.0,85.0,67.0,74.0,78.0,72.0,78.0,76.0,61.0,78.0,59.0,61.0,53.0,71.0,59.0,66.0,57.0,64.0,56.0,67.0,54.0,68.0,78.0,74.0,72.0,60.0,52.0,39.0,38.0,33.0,27.0,18.0,15.0,22.0,16.0,10.0,15.0,6.0,4.0,3.0,3.0,9.0 A84031,38.0,43.0,46.0,36.0,42.0,45.0,48.0,49.0,54.0,45.0,47.0,66.0,52.0,48.0,49.0,44.0,56.0,56.0,55.0,45.0,48.0,45.0,47.0,40.0,39.0,42.0,51.0,56.0,46.0,50.0,53.0,49.0,50.0,44.0,55.0,57.0,51.0,61.0,55.0,67.0,65.0,51.0,58.0,67.0,64.0,69.0,62.0,60.0,48.0,46.0,62.0,53.0,64.0,57.0,72.0,77.0,54.0,87.0,93.0,77.0,96.0,95.0,86.0,94.0,88.0,72.0,90.0,93.0,91.0,71.0,73.0,73.0,82.0,64.0,56.0,61.0,71.0,79.0,75.0,55.0,46.0,47.0,34.0,46.0,30.0,27.0,29.0,26.0,21.0,15.0,8.0,6.0,12.0,10.0,5.0,8.0 A84033,18.0,15.0,20.0,16.0,23.0,23.0,20.0,21.0,29.0,41.0,30.0,31.0,40.0,24.0,30.0,39.0,32.0,19.0,37.0,30.0,37.0,28.0,21.0,28.0,21.0,24.0,20.0,24.0,26.0,22.0,37.0,26.0,24.0,25.0,25.0,26.0,34.0,29.0,33.0,33.0,32.0,26.0,29.0,23.0,46.0,30.0,28.0,23.0,35.0,33.0,38.0,34.0,50.0,39.0,44.0,35.0,60.0,43.0,36.0,49.0,56.0,46.0,49.0,51.0,56.0,39.0,46.0,46.0,42.0,47.0,39.0,43.0,39.0,45.0,31.0,38.0,35.0,41.0,48.0,28.0,31.0,28.0,26.0,19.0,15.0,15.0,12.0,12.0,12.0,10.0,6.0,7.0,6.0,2.0,2.0,2.0 A84034,14.0,18.0,23.0,24.0,22.0,20.0,33.0,22.0,27.0,20.0,20.0,23.0,37.0,29.0,29.0,27.0,34.0,29.0,24.0,27.0,22.0,33.0,17.0,17.0,27.0,28.0,18.0,15.0,20.0,27.0,17.0,29.0,29.0,24.0,26.0,29.0,35.0,37.0,23.0,27.0,34.0,28.0,29.0,29.0,24.0,31.0,27.0,20.0,24.0,24.0,31.0,22.0,41.0,34.0,34.0,49.0,38.0,42.0,47.0,45.0,49.0,42.0,44.0,53.0,55.0,39.0,42.0,47.0,38.0,53.0,41.0,54.0,36.0,39.0,34.0,39.0,41.0,49.0,43.0,35.0,34.0,23.0,33.0,29.0,17.0,17.0,16.0,9.0,16.0,6.0,9.0,4.0,4.0,4.0,3.0,3.0 A84035,21.0,17.0,23.0,25.0,22.0,25.0,25.0,19.0,31.0,34.0,24.0,25.0,27.0,43.0,34.0,31.0,37.0,41.0,37.0,29.0,21.0,26.0,29.0,25.0,28.0,32.0,27.0,30.0,24.0,21.0,24.0,22.0,25.0,27.0,24.0,30.0,31.0,24.0,33.0,35.0,37.0,44.0,34.0,39.0,26.0,41.0,32.0,35.0,37.0,34.0,40.0,36.0,30.0,42.0,40.0,43.0,52.0,38.0,56.0,44.0,53.0,43.0,49.0,50.0,42.0,49.0,46.0,40.0,36.0,44.0,43.0,36.0,33.0,34.0,42.0,41.0,44.0,45.0,37.0,20.0,28.0,25.0,19.0,20.0,27.0,16.0,12.0,13.0,9.0,7.0,7.0,3.0,5.0,13.0,2.0,3.0 A84036,194.0,214.0,240.0,284.0,224.0,241.0,284.0,279.0,272.0,272.0,321.0,273.0,280.0,305.0,288.0,297.0,292.0,289.0,234.0,268.0,274.0,257.0,211.0,230.0,262.0,260.0,296.0,266.0,277.0,279.0,281.0,305.0,319.0,334.0,314.0,299.0,308.0,292.0,330.0,369.0,306.0,297.0,319.0,315.0,297.0,331.0,249.0,253.0,284.0,287.0,317.0,317.0,353.0,358.0,339.0,320.0,357.0,356.0,324.0,376.0,341.0,329.0,355.0,362.0,332.0,342.0,335.0,303.0,292.0,300.0,292.0,296.0,269.0,278.0,286.0,269.0,237.0,275.0,257.0,192.0,157.0,135.0,117.0,95.0,93.0,84.0,69.0,49.0,54.0,45.0,37.0,29.0,26.0,13.0,8.0,15.0 A84037,17.0,41.0,15.0,25.0,26.0,29.0,32.0,39.0,32.0,25.0,26.0,33.0,25.0,30.0,24.0,30.0,22.0,33.0,33.0,25.0,29.0,22.0,27.0,25.0,29.0,32.0,33.0,33.0,34.0,42.0,35.0,26.0,38.0,49.0,43.0,30.0,35.0,35.0,26.0,30.0,43.0,36.0,38.0,36.0,35.0,41.0,33.0,33.0,40.0,27.0,30.0,39.0,40.0,51.0,43.0,48.0,46.0,39.0,40.0,44.0,49.0,55.0,52.0,49.0,44.0,47.0,50.0,48.0,42.0,35.0,35.0,34.0,34.0,19.0,34.0,43.0,33.0,53.0,33.0,25.0,28.0,25.0,12.0,9.0,13.0,14.0,10.0,12.0,13.0,5.0,5.0,2.0,3.0,,1.0,2.0 A84038,42.0,54.0,46.0,48.0,34.0,46.0,60.0,50.0,50.0,49.0,55.0,45.0,56.0,55.0,45.0,54.0,52.0,44.0,54.0,42.0,33.0,41.0,32.0,34.0,44.0,38.0,51.0,38.0,47.0,74.0,51.0,51.0,53.0,58.0,54.0,57.0,52.0,61.0,52.0,69.0,54.0,53.0,63.0,47.0,68.0,60.0,55.0,50.0,53.0,58.0,44.0,54.0,60.0,52.0,58.0,48.0,69.0,68.0,51.0,51.0,47.0,65.0,37.0,44.0,41.0,52.0,39.0,32.0,48.0,35.0,54.0,58.0,39.0,48.0,53.0,61.0,45.0,66.0,70.0,42.0,49.0,21.0,32.0,26.0,12.0,20.0,9.0,15.0,7.0,8.0,3.0,3.0,3.0,1.0,1.0,2.0 A84039,35.0,34.0,24.0,28.0,34.0,40.0,24.0,38.0,38.0,36.0,32.0,36.0,42.0,33.0,31.0,36.0,38.0,32.0,29.0,39.0,21.0,26.0,33.0,25.0,22.0,34.0,28.0,34.0,28.0,35.0,47.0,43.0,41.0,45.0,40.0,44.0,46.0,38.0,42.0,39.0,50.0,38.0,39.0,35.0,40.0,37.0,48.0,33.0,31.0,39.0,35.0,37.0,50.0,48.0,56.0,38.0,53.0,47.0,54.0,56.0,63.0,44.0,52.0,56.0,55.0,47.0,49.0,44.0,47.0,52.0,55.0,47.0,43.0,62.0,49.0,54.0,36.0,44.0,43.0,27.0,33.0,18.0,23.0,18.0,24.0,21.0,12.0,11.0,6.0,9.0,10.0,10.0,5.0,3.0,3.0,4.0 A84040,7.0,11.0,13.0,12.0,9.0,11.0,9.0,15.0,13.0,11.0,18.0,15.0,15.0,19.0,21.0,13.0,17.0,12.0,15.0,19.0,14.0,11.0,11.0,12.0,14.0,14.0,12.0,10.0,16.0,15.0,16.0,9.0,15.0,17.0,11.0,13.0,20.0,24.0,18.0,17.0,13.0,14.0,14.0,11.0,22.0,22.0,19.0,20.0,26.0,15.0,24.0,28.0,22.0,24.0,25.0,20.0,28.0,19.0,41.0,26.0,29.0,30.0,31.0,36.0,32.0,34.0,34.0,19.0,39.0,28.0,28.0,22.0,29.0,33.0,32.0,27.0,25.0,21.0,33.0,23.0,19.0,16.0,15.0,11.0,8.0,7.0,12.0,5.0,7.0,6.0,2.0,4.0,2.0,2.0,1.0,6.0 A84042,8.0,11.0,3.0,7.0,6.0,7.0,8.0,9.0,6.0,9.0,9.0,13.0,7.0,7.0,10.0,7.0,10.0,8.0,11.0,5.0,9.0,13.0,6.0,10.0,9.0,7.0,5.0,8.0,12.0,8.0,8.0,10.0,9.0,16.0,7.0,14.0,7.0,10.0,12.0,11.0,11.0,16.0,13.0,12.0,18.0,8.0,19.0,11.0,8.0,5.0,17.0,11.0,16.0,20.0,17.0,21.0,19.0,10.0,23.0,18.0,18.0,28.0,18.0,19.0,26.0,29.0,25.0,19.0,18.0,21.0,20.0,13.0,13.0,15.0,9.0,7.0,14.0,21.0,15.0,15.0,12.0,10.0,8.0,12.0,7.0,5.0,8.0,5.0,1.0,3.0,4.0,3.0,1.0,3.0,1.0,2.0 A84044,20.0,30.0,42.0,29.0,21.0,27.0,36.0,37.0,34.0,37.0,37.0,34.0,59.0,37.0,43.0,31.0,41.0,42.0,38.0,34.0,42.0,38.0,28.0,33.0,32.0,32.0,24.0,31.0,23.0,43.0,43.0,30.0,32.0,43.0,38.0,38.0,40.0,50.0,34.0,33.0,29.0,55.0,41.0,33.0,46.0,32.0,38.0,33.0,37.0,32.0,47.0,33.0,46.0,43.0,41.0,33.0,51.0,51.0,47.0,50.0,65.0,63.0,53.0,62.0,50.0,69.0,56.0,62.0,49.0,45.0,44.0,61.0,57.0,44.0,47.0,43.0,58.0,44.0,46.0,32.0,37.0,27.0,25.0,30.0,13.0,13.0,14.0,20.0,13.0,8.0,7.0,3.0,6.0,3.0,1.0,2.0 A84045,14.0,11.0,18.0,16.0,21.0,22.0,21.0,29.0,19.0,23.0,30.0,17.0,28.0,26.0,19.0,20.0,30.0,26.0,21.0,25.0,19.0,28.0,26.0,25.0,20.0,24.0,22.0,22.0,19.0,22.0,22.0,25.0,23.0,24.0,26.0,22.0,20.0,17.0,29.0,26.0,22.0,19.0,26.0,24.0,30.0,16.0,28.0,28.0,22.0,29.0,30.0,34.0,37.0,36.0,36.0,46.0,43.0,50.0,35.0,33.0,74.0,64.0,44.0,51.0,61.0,56.0,38.0,47.0,46.0,37.0,43.0,44.0,39.0,37.0,42.0,58.0,39.0,34.0,35.0,31.0,34.0,29.0,15.0,18.0,16.0,13.0,9.0,13.0,7.0,5.0,5.0,4.0,4.0,2.0,2.0,5.0 A84047,11.0,18.0,12.0,13.0,10.0,20.0,27.0,24.0,25.0,35.0,31.0,24.0,33.0,21.0,36.0,31.0,23.0,31.0,25.0,33.0,27.0,20.0,34.0,24.0,21.0,29.0,35.0,21.0,26.0,22.0,19.0,19.0,25.0,21.0,25.0,17.0,27.0,37.0,22.0,24.0,23.0,33.0,39.0,37.0,36.0,41.0,27.0,27.0,24.0,39.0,30.0,30.0,34.0,51.0,39.0,39.0,40.0,46.0,41.0,50.0,53.0,40.0,47.0,33.0,41.0,34.0,44.0,40.0,46.0,32.0,37.0,35.0,28.0,34.0,30.0,30.0,41.0,38.0,37.0,25.0,28.0,21.0,17.0,20.0,17.0,11.0,16.0,13.0,7.0,13.0,5.0,5.0,3.0,7.0,1.0,3.0 A84604,4.0,14.0,21.0,14.0,16.0,21.0,11.0,14.0,33.0,21.0,14.0,16.0,23.0,20.0,25.0,20.0,17.0,23.0,19.0,16.0,10.0,10.0,17.0,24.0,13.0,17.0,15.0,23.0,16.0,14.0,21.0,19.0,16.0,23.0,28.0,24.0,22.0,21.0,21.0,21.0,22.0,22.0,22.0,17.0,19.0,17.0,18.0,19.0,20.0,22.0,18.0,18.0,29.0,28.0,39.0,34.0,29.0,42.0,42.0,49.0,44.0,53.0,60.0,62.0,52.0,35.0,46.0,56.0,45.0,53.0,48.0,46.0,49.0,49.0,39.0,41.0,46.0,45.0,29.0,37.0,30.0,24.0,21.0,18.0,18.0,10.0,9.0,12.0,5.0,10.0,10.0,4.0,6.0,2.0,2.0,5.0 A84614,12.0,7.0,11.0,5.0,9.0,12.0,12.0,15.0,19.0,15.0,13.0,13.0,17.0,11.0,15.0,11.0,10.0,13.0,6.0,16.0,14.0,13.0,10.0,9.0,9.0,18.0,14.0,13.0,13.0,10.0,12.0,15.0,9.0,15.0,21.0,17.0,10.0,14.0,8.0,16.0,14.0,8.0,14.0,8.0,14.0,15.0,14.0,8.0,16.0,13.0,15.0,20.0,15.0,15.0,18.0,19.0,14.0,28.0,15.0,20.0,16.0,25.0,18.0,11.0,16.0,18.0,9.0,15.0,16.0,11.0,13.0,10.0,10.0,6.0,13.0,10.0,10.0,11.0,12.0,5.0,7.0,12.0,9.0,7.0,6.0,,1.0,3.0,1.0,1.0,2.0,1.0,1.0,1.0,1.0,2.0 A84619,21.0,12.0,20.0,28.0,24.0,19.0,28.0,25.0,15.0,19.0,18.0,20.0,23.0,18.0,24.0,12.0,20.0,20.0,21.0,27.0,11.0,19.0,17.0,15.0,26.0,12.0,21.0,15.0,38.0,23.0,28.0,28.0,30.0,39.0,23.0,29.0,27.0,25.0,26.0,27.0,25.0,24.0,29.0,19.0,33.0,33.0,32.0,20.0,20.0,34.0,32.0,28.0,31.0,35.0,32.0,37.0,26.0,28.0,28.0,28.0,31.0,28.0,24.0,37.0,31.0,35.0,29.0,28.0,19.0,26.0,18.0,29.0,28.0,30.0,21.0,24.0,13.0,20.0,21.0,16.0,18.0,18.0,15.0,13.0,7.0,6.0,5.0,3.0,2.0,5.0,5.0,4.0,2.0,2.0,2.0,1.0 A85001,30.0,38.0,34.0,35.0,29.0,39.0,34.0,51.0,28.0,43.0,37.0,46.0,50.0,42.0,55.0,56.0,42.0,35.0,40.0,40.0,45.0,37.0,28.0,36.0,34.0,39.0,37.0,33.0,32.0,39.0,35.0,36.0,45.0,44.0,41.0,45.0,45.0,54.0,54.0,53.0,56.0,60.0,52.0,48.0,53.0,61.0,43.0,59.0,47.0,34.0,65.0,48.0,59.0,61.0,62.0,62.0,51.0,61.0,52.0,68.0,58.0,54.0,68.0,62.0,53.0,56.0,35.0,44.0,36.0,43.0,33.0,33.0,29.0,33.0,29.0,30.0,39.0,28.0,34.0,20.0,21.0,28.0,30.0,13.0,16.0,15.0,14.0,9.0,12.0,8.0,5.0,2.0,3.0,1.0,2.0,3.0 A85002,4.0,10.0,16.0,12.0,14.0,20.0,22.0,18.0,15.0,19.0,19.0,18.0,19.0,21.0,23.0,18.0,24.0,19.0,18.0,20.0,19.0,12.0,13.0,19.0,19.0,17.0,18.0,23.0,21.0,35.0,21.0,23.0,35.0,37.0,32.0,27.0,27.0,26.0,21.0,22.0,35.0,32.0,20.0,36.0,21.0,22.0,38.0,26.0,24.0,22.0,28.0,23.0,29.0,30.0,43.0,34.0,48.0,33.0,30.0,38.0,35.0,32.0,28.0,32.0,33.0,40.0,21.0,31.0,30.0,26.0,33.0,24.0,20.0,17.0,8.0,18.0,18.0,33.0,26.0,11.0,17.0,14.0,9.0,5.0,12.0,11.0,7.0,13.0,4.0,,2.0,4.0,3.0,2.0,,2.0 A85004,38.0,44.0,44.0,50.0,53.0,60.0,46.0,60.0,64.0,60.0,62.0,54.0,59.0,67.0,66.0,65.0,52.0,70.0,58.0,56.0,59.0,44.0,58.0,58.0,53.0,55.0,60.0,63.0,53.0,74.0,56.0,60.0,64.0,62.0,50.0,60.0,81.0,77.0,71.0,75.0,51.0,75.0,80.0,65.0,61.0,63.0,67.0,45.0,54.0,61.0,69.0,46.0,50.0,73.0,80.0,69.0,54.0,65.0,67.0,63.0,70.0,48.0,78.0,75.0,62.0,75.0,78.0,67.0,49.0,63.0,59.0,56.0,52.0,42.0,52.0,51.0,51.0,37.0,37.0,28.0,21.0,21.0,22.0,19.0,17.0,19.0,17.0,16.0,12.0,10.0,5.0,3.0,5.0,7.0,2.0,8.0 A85005,89.0,94.0,86.0,97.0,90.0,106.0,93.0,107.0,90.0,96.0,111.0,104.0,105.0,114.0,99.0,102.0,82.0,98.0,86.0,87.0,83.0,97.0,69.0,77.0,93.0,125.0,135.0,137.0,157.0,166.0,146.0,154.0,171.0,163.0,192.0,175.0,183.0,170.0,182.0,180.0,177.0,143.0,166.0,171.0,148.0,152.0,145.0,110.0,104.0,112.0,107.0,106.0,120.0,123.0,106.0,117.0,108.0,116.0,122.0,95.0,105.0,104.0,127.0,98.0,105.0,106.0,94.0,100.0,85.0,88.0,66.0,73.0,58.0,63.0,64.0,66.0,69.0,70.0,73.0,42.0,46.0,31.0,24.0,27.0,28.0,27.0,35.0,20.0,20.0,8.0,16.0,18.0,13.0,9.0,4.0,7.0 A85006,50.0,60.0,62.0,66.0,59.0,66.0,76.0,74.0,96.0,82.0,87.0,75.0,81.0,85.0,93.0,71.0,65.0,74.0,83.0,82.0,63.0,60.0,65.0,65.0,95.0,80.0,93.0,88.0,103.0,92.0,119.0,115.0,101.0,122.0,111.0,138.0,114.0,122.0,127.0,136.0,111.0,116.0,127.0,117.0,126.0,93.0,105.0,86.0,100.0,96.0,97.0,106.0,89.0,126.0,96.0,96.0,104.0,110.0,118.0,95.0,99.0,90.0,94.0,96.0,85.0,84.0,81.0,77.0,80.0,58.0,69.0,66.0,61.0,60.0,54.0,63.0,63.0,53.0,52.0,37.0,43.0,37.0,15.0,25.0,16.0,22.0,22.0,13.0,15.0,4.0,11.0,10.0,9.0,1.0,2.0,6.0 A85007,43.0,23.0,35.0,40.0,35.0,49.0,34.0,61.0,46.0,39.0,65.0,44.0,44.0,48.0,39.0,39.0,57.0,40.0,34.0,50.0,27.0,29.0,28.0,44.0,54.0,39.0,45.0,37.0,41.0,60.0,57.0,43.0,67.0,58.0,63.0,67.0,56.0,66.0,55.0,48.0,63.0,69.0,51.0,58.0,64.0,59.0,50.0,53.0,58.0,58.0,51.0,48.0,66.0,46.0,65.0,51.0,60.0,58.0,69.0,62.0,48.0,59.0,70.0,52.0,48.0,50.0,54.0,46.0,53.0,46.0,41.0,32.0,37.0,45.0,45.0,41.0,37.0,40.0,54.0,25.0,33.0,18.0,26.0,18.0,12.0,16.0,19.0,12.0,16.0,12.0,6.0,6.0,5.0,3.0,3.0,6.0 A85008,57.0,47.0,66.0,78.0,66.0,67.0,79.0,78.0,93.0,84.0,100.0,89.0,84.0,106.0,90.0,85.0,78.0,73.0,94.0,69.0,70.0,62.0,92.0,66.0,77.0,62.0,72.0,81.0,109.0,84.0,93.0,102.0,91.0,85.0,106.0,96.0,100.0,107.0,116.0,115.0,101.0,92.0,93.0,100.0,109.0,106.0,91.0,103.0,68.0,85.0,80.0,82.0,94.0,111.0,111.0,109.0,116.0,112.0,107.0,106.0,108.0,118.0,107.0,103.0,94.0,83.0,108.0,90.0,84.0,79.0,86.0,81.0,91.0,69.0,76.0,82.0,80.0,78.0,75.0,63.0,58.0,64.0,58.0,33.0,35.0,30.0,31.0,28.0,23.0,16.0,20.0,17.0,9.0,10.0,5.0,9.0 A85009,26.0,33.0,35.0,27.0,26.0,37.0,27.0,31.0,36.0,39.0,30.0,37.0,38.0,32.0,44.0,38.0,40.0,32.0,37.0,34.0,39.0,42.0,41.0,35.0,34.0,53.0,37.0,51.0,44.0,61.0,60.0,83.0,69.0,60.0,60.0,50.0,62.0,42.0,46.0,53.0,51.0,48.0,38.0,38.0,49.0,42.0,33.0,21.0,24.0,33.0,32.0,41.0,38.0,49.0,55.0,47.0,54.0,49.0,50.0,43.0,49.0,47.0,42.0,50.0,37.0,42.0,49.0,45.0,34.0,29.0,32.0,28.0,28.0,34.0,25.0,26.0,22.0,34.0,32.0,14.0,19.0,18.0,10.0,15.0,13.0,12.0,8.0,10.0,9.0,3.0,1.0,,4.0,3.0,,1.0 A85010,41.0,52.0,45.0,42.0,56.0,58.0,65.0,58.0,57.0,65.0,63.0,71.0,76.0,65.0,69.0,65.0,61.0,68.0,56.0,62.0,50.0,48.0,50.0,50.0,64.0,64.0,78.0,73.0,67.0,75.0,60.0,71.0,69.0,71.0,70.0,67.0,65.0,71.0,77.0,79.0,74.0,77.0,78.0,83.0,77.0,86.0,74.0,58.0,57.0,67.0,75.0,59.0,71.0,96.0,85.0,89.0,78.0,92.0,72.0,89.0,100.0,71.0,71.0,68.0,71.0,65.0,78.0,72.0,68.0,57.0,63.0,54.0,61.0,56.0,57.0,59.0,47.0,54.0,57.0,37.0,34.0,47.0,39.0,28.0,30.0,19.0,21.0,21.0,10.0,19.0,3.0,8.0,5.0,3.0,4.0,3.0 A85011,33.0,33.0,35.0,33.0,40.0,39.0,36.0,44.0,42.0,47.0,46.0,46.0,50.0,55.0,39.0,56.0,52.0,47.0,50.0,47.0,38.0,42.0,30.0,40.0,43.0,29.0,37.0,43.0,43.0,39.0,51.0,49.0,51.0,63.0,44.0,45.0,53.0,60.0,49.0,51.0,53.0,60.0,53.0,45.0,49.0,59.0,33.0,42.0,48.0,50.0,40.0,39.0,38.0,42.0,44.0,45.0,48.0,45.0,43.0,50.0,34.0,48.0,42.0,58.0,37.0,46.0,47.0,47.0,41.0,34.0,46.0,30.0,42.0,35.0,27.0,36.0,24.0,30.0,26.0,17.0,19.0,14.0,11.0,14.0,16.0,11.0,16.0,8.0,12.0,4.0,8.0,4.0,3.0,3.0,5.0,5.0 A85013,10.0,9.0,16.0,16.0,17.0,12.0,19.0,19.0,15.0,18.0,7.0,18.0,19.0,16.0,19.0,16.0,15.0,10.0,16.0,27.0,15.0,22.0,21.0,25.0,24.0,21.0,37.0,35.0,32.0,40.0,43.0,40.0,61.0,45.0,42.0,32.0,45.0,48.0,30.0,39.0,38.0,42.0,31.0,22.0,29.0,32.0,28.0,21.0,19.0,32.0,25.0,35.0,21.0,25.0,41.0,22.0,28.0,35.0,31.0,37.0,42.0,32.0,40.0,21.0,35.0,25.0,29.0,20.0,21.0,26.0,36.0,18.0,18.0,19.0,17.0,19.0,12.0,15.0,14.0,10.0,6.0,11.0,6.0,11.0,9.0,6.0,7.0,5.0,1.0,3.0,4.0,3.0,3.0,2.0,,1.0 A85014,74.0,96.0,94.0,101.0,109.0,99.0,95.0,100.0,109.0,115.0,110.0,96.0,108.0,111.0,129.0,103.0,114.0,110.0,101.0,93.0,99.0,92.0,92.0,97.0,100.0,82.0,108.0,111.0,105.0,103.0,140.0,136.0,145.0,143.0,148.0,154.0,131.0,128.0,139.0,114.0,122.0,125.0,136.0,138.0,142.0,129.0,137.0,112.0,116.0,122.0,112.0,133.0,112.0,130.0,162.0,126.0,150.0,150.0,137.0,166.0,134.0,132.0,144.0,157.0,128.0,132.0,113.0,120.0,103.0,99.0,98.0,114.0,88.0,95.0,95.0,93.0,106.0,103.0,95.0,77.0,85.0,78.0,55.0,44.0,43.0,37.0,34.0,51.0,23.0,33.0,20.0,22.0,23.0,8.0,7.0,15.0 A85016,63.0,66.0,54.0,66.0,59.0,65.0,68.0,66.0,88.0,69.0,72.0,76.0,68.0,62.0,92.0,67.0,77.0,59.0,62.0,71.0,66.0,67.0,64.0,72.0,67.0,66.0,70.0,73.0,72.0,91.0,85.0,60.0,120.0,85.0,107.0,81.0,83.0,94.0,105.0,81.0,78.0,98.0,76.0,75.0,73.0,69.0,64.0,68.0,63.0,70.0,65.0,68.0,69.0,77.0,84.0,79.0,75.0,78.0,80.0,89.0,81.0,86.0,81.0,71.0,72.0,61.0,81.0,69.0,65.0,58.0,44.0,55.0,63.0,53.0,57.0,52.0,47.0,59.0,45.0,38.0,31.0,33.0,19.0,21.0,19.0,19.0,28.0,14.0,14.0,7.0,8.0,8.0,2.0,4.0,1.0,4.0 A85017,67.0,71.0,67.0,80.0,74.0,73.0,57.0,75.0,79.0,67.0,90.0,77.0,88.0,66.0,55.0,72.0,95.0,98.0,109.0,74.0,86.0,86.0,73.0,68.0,70.0,66.0,59.0,66.0,59.0,69.0,81.0,69.0,61.0,62.0,52.0,61.0,65.0,62.0,51.0,64.0,48.0,52.0,52.0,38.0,41.0,44.0,39.0,43.0,39.0,34.0,27.0,32.0,19.0,29.0,35.0,24.0,27.0,23.0,25.0,22.0,25.0,39.0,25.0,33.0,26.0,27.0,27.0,24.0,27.0,25.0,19.0,22.0,17.0,19.0,13.0,15.0,24.0,20.0,23.0,16.0,15.0,12.0,7.0,4.0,6.0,7.0,10.0,8.0,7.0,7.0,5.0,2.0,4.0,,2.0,1.0 A85018,16.0,25.0,13.0,23.0,17.0,17.0,18.0,25.0,16.0,36.0,31.0,31.0,33.0,19.0,43.0,33.0,36.0,29.0,26.0,21.0,34.0,24.0,27.0,32.0,26.0,25.0,27.0,25.0,36.0,35.0,29.0,25.0,33.0,27.0,27.0,20.0,29.0,28.0,32.0,30.0,25.0,38.0,24.0,35.0,35.0,34.0,23.0,25.0,23.0,23.0,20.0,19.0,25.0,49.0,34.0,35.0,31.0,40.0,32.0,30.0,33.0,36.0,28.0,34.0,43.0,31.0,44.0,37.0,22.0,29.0,32.0,17.0,19.0,26.0,20.0,16.0,20.0,29.0,27.0,15.0,18.0,19.0,11.0,14.0,14.0,13.0,12.0,6.0,8.0,4.0,2.0,3.0,5.0,4.0,3.0,2.0 A85019,40.0,66.0,45.0,46.0,45.0,40.0,53.0,49.0,66.0,56.0,50.0,50.0,52.0,59.0,48.0,65.0,65.0,62.0,51.0,57.0,41.0,51.0,51.0,47.0,54.0,74.0,81.0,87.0,90.0,92.0,96.0,91.0,96.0,100.0,116.0,120.0,109.0,95.0,119.0,100.0,94.0,91.0,101.0,72.0,94.0,86.0,91.0,68.0,59.0,73.0,62.0,71.0,69.0,94.0,74.0,68.0,76.0,72.0,84.0,72.0,81.0,91.0,78.0,77.0,67.0,72.0,69.0,66.0,65.0,53.0,46.0,44.0,34.0,39.0,49.0,31.0,34.0,36.0,31.0,27.0,24.0,13.0,10.0,16.0,12.0,16.0,9.0,5.0,12.0,2.0,12.0,9.0,1.0,1.0,,2.0 A85020,46.0,52.0,72.0,51.0,73.0,76.0,60.0,86.0,81.0,70.0,104.0,72.0,89.0,80.0,90.0,79.0,88.0,86.0,72.0,66.0,58.0,71.0,60.0,57.0,67.0,67.0,78.0,63.0,81.0,79.0,70.0,83.0,79.0,96.0,92.0,95.0,91.0,87.0,101.0,103.0,111.0,77.0,94.0,95.0,111.0,102.0,90.0,92.0,95.0,118.0,102.0,84.0,103.0,113.0,87.0,104.0,104.0,97.0,92.0,119.0,111.0,90.0,112.0,114.0,85.0,101.0,88.0,100.0,92.0,97.0,104.0,101.0,95.0,96.0,91.0,107.0,107.0,134.0,115.0,71.0,83.0,63.0,51.0,55.0,52.0,57.0,45.0,40.0,37.0,17.0,16.0,17.0,12.0,15.0,7.0,16.0 A85021,20.0,14.0,24.0,16.0,27.0,19.0,26.0,19.0,15.0,22.0,25.0,22.0,16.0,17.0,19.0,16.0,19.0,57.0,92.0,138.0,133.0,138.0,100.0,136.0,131.0,116.0,100.0,127.0,113.0,73.0,65.0,65.0,53.0,50.0,37.0,36.0,34.0,40.0,32.0,26.0,36.0,25.0,34.0,34.0,23.0,28.0,16.0,23.0,20.0,18.0,22.0,15.0,24.0,16.0,22.0,25.0,25.0,16.0,18.0,16.0,14.0,17.0,15.0,12.0,18.0,14.0,14.0,17.0,7.0,12.0,13.0,11.0,13.0,5.0,6.0,5.0,10.0,11.0,8.0,10.0,9.0,4.0,3.0,4.0,3.0,5.0,2.0,3.0,2.0,1.0,2.0,,,2.0,1.0, A85024,14.0,18.0,11.0,5.0,9.0,12.0,11.0,19.0,9.0,14.0,6.0,9.0,17.0,11.0,8.0,15.0,10.0,15.0,16.0,18.0,10.0,15.0,5.0,20.0,18.0,12.0,17.0,16.0,23.0,16.0,23.0,19.0,21.0,22.0,24.0,19.0,15.0,17.0,25.0,25.0,18.0,20.0,24.0,12.0,22.0,24.0,17.0,10.0,12.0,5.0,16.0,15.0,13.0,26.0,17.0,11.0,20.0,20.0,17.0,19.0,18.0,20.0,14.0,22.0,18.0,15.0,19.0,10.0,19.0,14.0,15.0,12.0,19.0,10.0,15.0,11.0,13.0,17.0,10.0,16.0,8.0,9.0,9.0,6.0,3.0,6.0,5.0,2.0,4.0,3.0,3.0,2.0,2.0,3.0,,1.0 A85026,34.0,24.0,35.0,28.0,27.0,25.0,27.0,35.0,33.0,37.0,32.0,34.0,28.0,46.0,35.0,40.0,39.0,36.0,29.0,38.0,32.0,35.0,25.0,34.0,34.0,40.0,32.0,28.0,39.0,35.0,32.0,37.0,54.0,43.0,50.0,39.0,44.0,50.0,38.0,41.0,40.0,42.0,53.0,41.0,51.0,35.0,30.0,35.0,27.0,40.0,41.0,30.0,39.0,40.0,39.0,47.0,46.0,49.0,35.0,46.0,45.0,44.0,48.0,46.0,30.0,30.0,34.0,35.0,26.0,27.0,28.0,27.0,21.0,14.0,21.0,17.0,21.0,25.0,26.0,15.0,9.0,14.0,8.0,18.0,8.0,12.0,4.0,6.0,6.0,6.0,1.0,1.0,1.0,,5.0,1.0 A85611,23.0,19.0,26.0,28.0,22.0,21.0,32.0,18.0,30.0,42.0,36.0,31.0,22.0,37.0,38.0,44.0,41.0,22.0,30.0,30.0,16.0,30.0,30.0,34.0,29.0,27.0,35.0,27.0,36.0,40.0,49.0,38.0,43.0,39.0,32.0,37.0,36.0,47.0,36.0,38.0,29.0,41.0,36.0,36.0,32.0,43.0,28.0,55.0,28.0,43.0,31.0,41.0,35.0,34.0,43.0,42.0,35.0,31.0,49.0,42.0,53.0,36.0,45.0,43.0,44.0,42.0,38.0,29.0,42.0,31.0,23.0,24.0,23.0,26.0,15.0,22.0,16.0,17.0,21.0,11.0,8.0,11.0,9.0,7.0,9.0,8.0,6.0,3.0,4.0,2.0,5.0,1.0,2.0,2.0,,4.0 A85614,28.0,37.0,26.0,25.0,32.0,26.0,24.0,33.0,38.0,27.0,26.0,24.0,28.0,23.0,29.0,39.0,30.0,34.0,72.0,131.0,147.0,115.0,110.0,102.0,113.0,119.0,130.0,135.0,114.0,132.0,142.0,113.0,94.0,106.0,97.0,99.0,80.0,87.0,84.0,89.0,64.0,60.0,45.0,54.0,61.0,34.0,28.0,36.0,30.0,44.0,30.0,31.0,43.0,32.0,34.0,35.0,21.0,34.0,38.0,28.0,28.0,39.0,33.0,30.0,29.0,28.0,27.0,32.0,20.0,25.0,25.0,23.0,30.0,18.0,17.0,15.0,17.0,10.0,21.0,17.0,8.0,7.0,8.0,7.0,7.0,5.0,7.0,4.0,4.0,1.0,5.0,1.0,2.0,1.0,1.0,1.0 A85616,18.0,19.0,19.0,21.0,24.0,25.0,17.0,18.0,21.0,22.0,18.0,30.0,22.0,40.0,24.0,33.0,28.0,25.0,24.0,14.0,29.0,21.0,19.0,22.0,27.0,29.0,18.0,27.0,14.0,26.0,27.0,33.0,36.0,42.0,25.0,41.0,38.0,32.0,33.0,34.0,25.0,36.0,33.0,25.0,29.0,35.0,31.0,27.0,31.0,22.0,23.0,29.0,24.0,42.0,31.0,40.0,35.0,41.0,38.0,32.0,57.0,41.0,47.0,35.0,39.0,30.0,26.0,44.0,28.0,29.0,26.0,41.0,27.0,30.0,25.0,27.0,31.0,33.0,23.0,24.0,17.0,15.0,12.0,15.0,8.0,9.0,11.0,16.0,8.0,8.0,4.0,2.0,1.0,3.0,2.0,1.0 A85617,12.0,13.0,22.0,22.0,27.0,25.0,21.0,24.0,21.0,25.0,23.0,22.0,19.0,32.0,29.0,20.0,16.0,29.0,20.0,17.0,15.0,21.0,18.0,17.0,17.0,21.0,21.0,17.0,14.0,18.0,25.0,18.0,23.0,18.0,23.0,29.0,23.0,32.0,14.0,26.0,31.0,31.0,22.0,27.0,25.0,23.0,20.0,30.0,25.0,22.0,16.0,24.0,23.0,22.0,29.0,22.0,26.0,34.0,29.0,22.0,31.0,31.0,26.0,22.0,30.0,12.0,20.0,24.0,22.0,17.0,18.0,19.0,13.0,14.0,17.0,21.0,20.0,26.0,23.0,14.0,7.0,7.0,10.0,6.0,6.0,4.0,9.0,4.0,4.0,3.0,3.0,2.0,1.0,2.0,, A86003,111.0,91.0,104.0,101.0,81.0,89.0,99.0,89.0,109.0,109.0,92.0,110.0,97.0,110.0,101.0,95.0,93.0,87.0,232.0,493.0,585.0,686.0,703.0,805.0,858.0,918.0,942.0,1009.0,946.0,872.0,845.0,757.0,734.0,702.0,688.0,666.0,577.0,529.0,423.0,449.0,400.0,334.0,342.0,295.0,271.0,247.0,214.0,169.0,147.0,152.0,154.0,127.0,129.0,150.0,148.0,123.0,114.0,109.0,120.0,135.0,134.0,125.0,127.0,126.0,102.0,102.0,90.0,110.0,69.0,90.0,79.0,58.0,56.0,59.0,61.0,61.0,67.0,57.0,64.0,41.0,50.0,40.0,30.0,32.0,15.0,18.0,25.0,14.0,10.0,15.0,8.0,8.0,6.0,6.0,1.0,6.0 A86004,99.0,87.0,96.0,99.0,107.0,81.0,97.0,87.0,124.0,107.0,125.0,113.0,109.0,104.0,104.0,88.0,107.0,91.0,104.0,96.0,90.0,90.0,88.0,99.0,123.0,128.0,115.0,141.0,122.0,133.0,139.0,118.0,144.0,149.0,178.0,168.0,162.0,180.0,201.0,162.0,175.0,175.0,160.0,159.0,156.0,148.0,147.0,126.0,114.0,119.0,117.0,98.0,102.0,102.0,98.0,104.0,73.0,77.0,73.0,68.0,61.0,62.0,53.0,63.0,57.0,72.0,57.0,48.0,55.0,43.0,27.0,38.0,53.0,30.0,42.0,26.0,31.0,27.0,30.0,21.0,29.0,20.0,20.0,18.0,12.0,9.0,14.0,9.0,7.0,8.0,4.0,5.0,7.0,7.0,1.0,7.0 A86005,27.0,30.0,39.0,34.0,30.0,32.0,42.0,42.0,42.0,47.0,34.0,39.0,30.0,32.0,32.0,33.0,33.0,27.0,27.0,33.0,35.0,24.0,27.0,25.0,30.0,24.0,45.0,40.0,38.0,51.0,45.0,54.0,50.0,57.0,62.0,67.0,56.0,75.0,57.0,60.0,51.0,35.0,49.0,42.0,46.0,61.0,52.0,42.0,43.0,29.0,37.0,37.0,31.0,36.0,29.0,37.0,32.0,29.0,34.0,39.0,36.0,40.0,30.0,30.0,39.0,37.0,23.0,34.0,27.0,28.0,15.0,26.0,28.0,31.0,20.0,18.0,14.0,24.0,23.0,13.0,12.0,18.0,9.0,6.0,10.0,6.0,11.0,8.0,5.0,6.0,3.0,5.0,3.0,2.0,1.0,2.0 A86006,25.0,26.0,26.0,32.0,38.0,25.0,34.0,32.0,30.0,34.0,34.0,11.0,30.0,25.0,27.0,21.0,21.0,23.0,20.0,22.0,33.0,30.0,44.0,29.0,34.0,38.0,35.0,38.0,44.0,46.0,32.0,38.0,51.0,31.0,49.0,54.0,42.0,50.0,49.0,48.0,42.0,45.0,47.0,39.0,50.0,36.0,34.0,40.0,31.0,32.0,32.0,27.0,34.0,43.0,37.0,22.0,33.0,28.0,28.0,33.0,42.0,38.0,41.0,40.0,38.0,36.0,47.0,42.0,35.0,34.0,28.0,39.0,33.0,32.0,23.0,29.0,32.0,32.0,25.0,18.0,23.0,23.0,14.0,16.0,8.0,5.0,10.0,7.0,11.0,10.0,2.0,6.0,4.0,1.0,1.0,4.0 A86008,57.0,59.0,71.0,65.0,85.0,76.0,82.0,96.0,78.0,105.0,76.0,86.0,93.0,88.0,95.0,91.0,79.0,87.0,83.0,73.0,63.0,63.0,57.0,91.0,52.0,61.0,90.0,79.0,87.0,117.0,96.0,82.0,91.0,114.0,107.0,101.0,106.0,103.0,83.0,109.0,105.0,110.0,98.0,81.0,115.0,113.0,112.0,77.0,105.0,79.0,91.0,97.0,83.0,88.0,64.0,73.0,62.0,84.0,72.0,97.0,68.0,75.0,87.0,99.0,84.0,79.0,78.0,79.0,67.0,69.0,69.0,52.0,53.0,49.0,43.0,46.0,53.0,45.0,47.0,28.0,23.0,36.0,24.0,14.0,13.0,8.0,12.0,13.0,11.0,17.0,7.0,6.0,8.0,1.0,2.0,4.0 A86010,44.0,44.0,39.0,31.0,46.0,47.0,55.0,50.0,48.0,53.0,46.0,57.0,47.0,48.0,51.0,60.0,52.0,48.0,36.0,45.0,51.0,59.0,84.0,89.0,101.0,120.0,127.0,135.0,144.0,129.0,146.0,131.0,141.0,128.0,122.0,138.0,122.0,135.0,115.0,132.0,99.0,90.0,98.0,84.0,84.0,77.0,80.0,76.0,77.0,68.0,46.0,57.0,56.0,70.0,52.0,55.0,64.0,62.0,55.0,60.0,56.0,65.0,37.0,43.0,53.0,40.0,43.0,51.0,41.0,35.0,35.0,24.0,31.0,27.0,32.0,27.0,26.0,26.0,20.0,17.0,18.0,15.0,11.0,13.0,10.0,10.0,7.0,9.0,6.0,7.0,3.0,4.0,5.0,7.0,1.0,4.0 A86011,45.0,44.0,41.0,59.0,68.0,64.0,62.0,67.0,54.0,79.0,62.0,98.0,65.0,67.0,54.0,73.0,54.0,62.0,58.0,51.0,47.0,65.0,66.0,47.0,54.0,64.0,66.0,66.0,71.0,56.0,77.0,101.0,73.0,111.0,76.0,87.0,90.0,102.0,84.0,88.0,78.0,75.0,85.0,82.0,67.0,71.0,56.0,43.0,47.0,71.0,75.0,66.0,59.0,57.0,68.0,64.0,78.0,61.0,77.0,60.0,80.0,78.0,59.0,88.0,67.0,64.0,49.0,75.0,53.0,68.0,49.0,54.0,47.0,52.0,40.0,39.0,31.0,44.0,42.0,33.0,21.0,19.0,20.0,15.0,19.0,13.0,10.0,15.0,7.0,8.0,7.0,10.0,4.0,6.0,4.0,4.0 A86012,52.0,78.0,73.0,76.0,77.0,67.0,94.0,94.0,99.0,86.0,92.0,80.0,111.0,104.0,98.0,91.0,97.0,78.0,84.0,67.0,86.0,102.0,97.0,117.0,148.0,154.0,133.0,162.0,176.0,140.0,139.0,131.0,100.0,121.0,130.0,121.0,132.0,158.0,120.0,120.0,114.0,113.0,105.0,97.0,108.0,99.0,94.0,76.0,99.0,90.0,85.0,75.0,61.0,68.0,67.0,71.0,74.0,56.0,58.0,59.0,53.0,52.0,42.0,35.0,49.0,42.0,45.0,46.0,35.0,40.0,27.0,20.0,34.0,26.0,20.0,19.0,25.0,14.0,16.0,21.0,17.0,18.0,14.0,9.0,8.0,6.0,4.0,4.0,7.0,8.0,7.0,4.0,2.0,1.0,2.0,4.0 A86013,27.0,47.0,40.0,53.0,33.0,50.0,50.0,44.0,58.0,38.0,54.0,55.0,44.0,49.0,60.0,49.0,48.0,40.0,42.0,37.0,42.0,32.0,34.0,43.0,26.0,25.0,39.0,28.0,53.0,35.0,45.0,53.0,62.0,54.0,41.0,46.0,48.0,55.0,44.0,50.0,55.0,58.0,36.0,50.0,45.0,43.0,35.0,34.0,45.0,37.0,39.0,32.0,47.0,42.0,40.0,34.0,39.0,66.0,46.0,56.0,56.0,55.0,43.0,54.0,45.0,49.0,47.0,41.0,48.0,25.0,32.0,35.0,34.0,26.0,30.0,32.0,29.0,39.0,34.0,29.0,23.0,21.0,24.0,10.0,9.0,15.0,10.0,14.0,11.0,7.0,4.0,4.0,7.0,1.0,1.0,5.0 A86016,43.0,38.0,53.0,53.0,57.0,45.0,56.0,40.0,45.0,52.0,40.0,48.0,53.0,40.0,48.0,45.0,60.0,60.0,46.0,43.0,45.0,47.0,44.0,46.0,42.0,46.0,35.0,58.0,47.0,46.0,63.0,54.0,77.0,68.0,83.0,83.0,70.0,74.0,69.0,79.0,85.0,72.0,87.0,67.0,78.0,68.0,63.0,73.0,50.0,60.0,60.0,65.0,53.0,82.0,54.0,63.0,51.0,51.0,61.0,67.0,53.0,65.0,89.0,61.0,59.0,53.0,57.0,50.0,42.0,41.0,46.0,53.0,37.0,49.0,35.0,41.0,49.0,32.0,41.0,33.0,37.0,21.0,12.0,12.0,19.0,12.0,11.0,9.0,7.0,3.0,13.0,7.0,4.0,4.0,4.0,7.0 A86017,53.0,50.0,62.0,66.0,49.0,64.0,56.0,67.0,75.0,84.0,74.0,67.0,69.0,67.0,70.0,80.0,70.0,65.0,84.0,94.0,85.0,75.0,113.0,113.0,103.0,121.0,127.0,138.0,119.0,109.0,107.0,107.0,120.0,96.0,122.0,118.0,104.0,112.0,119.0,117.0,99.0,99.0,101.0,91.0,98.0,85.0,81.0,79.0,73.0,63.0,80.0,95.0,59.0,71.0,85.0,74.0,69.0,63.0,58.0,75.0,71.0,79.0,81.0,83.0,66.0,54.0,54.0,55.0,64.0,50.0,45.0,41.0,38.0,32.0,43.0,38.0,26.0,27.0,32.0,30.0,18.0,17.0,11.0,17.0,8.0,11.0,13.0,8.0,5.0,11.0,3.0,5.0,4.0,5.0,2.0,10.0 A86018,51.0,58.0,57.0,54.0,50.0,61.0,41.0,87.0,66.0,69.0,65.0,81.0,67.0,73.0,87.0,68.0,68.0,95.0,62.0,54.0,49.0,73.0,54.0,80.0,79.0,61.0,83.0,98.0,73.0,80.0,91.0,77.0,78.0,86.0,74.0,68.0,88.0,83.0,74.0,87.0,91.0,74.0,82.0,85.0,87.0,94.0,83.0,88.0,80.0,94.0,88.0,87.0,83.0,84.0,102.0,93.0,89.0,84.0,82.0,86.0,100.0,91.0,86.0,87.0,67.0,86.0,79.0,70.0,75.0,58.0,87.0,74.0,66.0,72.0,73.0,66.0,68.0,79.0,65.0,46.0,59.0,35.0,29.0,31.0,38.0,26.0,26.0,18.0,27.0,13.0,11.0,9.0,13.0,9.0,6.0,13.0 A86020,91.0,94.0,88.0,125.0,119.0,117.0,103.0,121.0,109.0,132.0,109.0,113.0,140.0,120.0,126.0,121.0,117.0,121.0,132.0,127.0,221.0,305.0,265.0,309.0,234.0,256.0,251.0,263.0,252.0,251.0,265.0,270.0,271.0,293.0,278.0,236.0,263.0,262.0,239.0,237.0,227.0,245.0,236.0,229.0,196.0,183.0,195.0,166.0,168.0,138.0,163.0,147.0,148.0,175.0,158.0,137.0,165.0,147.0,140.0,162.0,171.0,129.0,164.0,140.0,130.0,132.0,114.0,124.0,136.0,116.0,108.0,112.0,116.0,94.0,97.0,100.0,97.0,88.0,106.0,69.0,74.0,47.0,47.0,32.0,34.0,40.0,35.0,25.0,20.0,22.0,17.0,11.0,12.0,13.0,9.0,7.0 A86021,49.0,66.0,54.0,63.0,55.0,57.0,70.0,68.0,58.0,61.0,63.0,53.0,58.0,75.0,59.0,58.0,63.0,59.0,64.0,52.0,65.0,41.0,57.0,55.0,58.0,75.0,70.0,47.0,77.0,64.0,68.0,73.0,86.0,86.0,81.0,81.0,87.0,79.0,92.0,88.0,102.0,79.0,70.0,69.0,90.0,72.0,62.0,50.0,50.0,52.0,50.0,55.0,64.0,55.0,58.0,52.0,70.0,65.0,52.0,56.0,64.0,68.0,64.0,55.0,54.0,58.0,52.0,61.0,51.0,34.0,37.0,41.0,36.0,46.0,51.0,39.0,36.0,40.0,47.0,29.0,31.0,26.0,26.0,25.0,16.0,17.0,23.0,19.0,9.0,13.0,11.0,9.0,7.0,11.0,5.0,5.0 A86022,51.0,33.0,33.0,48.0,22.0,44.0,43.0,49.0,40.0,54.0,45.0,43.0,39.0,42.0,59.0,51.0,36.0,48.0,44.0,42.0,45.0,46.0,46.0,42.0,34.0,43.0,50.0,42.0,53.0,51.0,35.0,48.0,45.0,43.0,55.0,57.0,53.0,61.0,53.0,50.0,49.0,49.0,49.0,45.0,45.0,53.0,54.0,53.0,43.0,45.0,46.0,39.0,53.0,60.0,63.0,57.0,51.0,40.0,57.0,57.0,55.0,60.0,62.0,52.0,39.0,55.0,72.0,61.0,64.0,41.0,43.0,40.0,35.0,46.0,41.0,29.0,46.0,42.0,63.0,34.0,39.0,25.0,28.0,14.0,10.0,20.0,26.0,11.0,15.0,12.0,12.0,8.0,4.0,1.0,4.0,1.0 A86023,47.0,48.0,48.0,63.0,61.0,43.0,46.0,43.0,51.0,51.0,51.0,59.0,49.0,53.0,55.0,46.0,68.0,55.0,60.0,52.0,51.0,55.0,56.0,74.0,79.0,74.0,75.0,99.0,85.0,89.0,105.0,111.0,111.0,104.0,126.0,112.0,108.0,91.0,75.0,93.0,97.0,102.0,91.0,71.0,71.0,65.0,66.0,38.0,49.0,47.0,45.0,67.0,73.0,64.0,63.0,57.0,59.0,54.0,51.0,63.0,70.0,67.0,63.0,63.0,53.0,65.0,44.0,76.0,68.0,63.0,49.0,49.0,43.0,39.0,32.0,28.0,25.0,44.0,39.0,23.0,21.0,21.0,16.0,20.0,11.0,14.0,9.0,9.0,11.0,10.0,4.0,3.0,2.0,2.0,1.0,4.0 A86024,25.0,30.0,34.0,24.0,44.0,35.0,41.0,41.0,36.0,45.0,40.0,30.0,37.0,38.0,42.0,39.0,40.0,34.0,33.0,39.0,45.0,49.0,50.0,47.0,44.0,63.0,80.0,88.0,89.0,113.0,80.0,81.0,94.0,97.0,96.0,104.0,87.0,86.0,72.0,73.0,71.0,70.0,47.0,47.0,56.0,55.0,42.0,46.0,34.0,30.0,33.0,52.0,41.0,35.0,44.0,42.0,46.0,36.0,43.0,39.0,40.0,26.0,46.0,30.0,34.0,31.0,36.0,27.0,40.0,27.0,18.0,19.0,28.0,13.0,15.0,17.0,19.0,14.0,10.0,11.0,14.0,13.0,12.0,5.0,8.0,12.0,4.0,4.0,3.0,5.0,5.0,4.0,3.0,,1.0, A86025,63.0,71.0,101.0,76.0,86.0,92.0,101.0,88.0,98.0,87.0,103.0,95.0,108.0,107.0,95.0,95.0,97.0,105.0,85.0,85.0,78.0,68.0,51.0,71.0,79.0,88.0,86.0,73.0,79.0,113.0,101.0,109.0,112.0,95.0,93.0,111.0,88.0,102.0,90.0,86.0,94.0,89.0,111.0,93.0,98.0,73.0,69.0,89.0,84.0,82.0,69.0,59.0,72.0,84.0,81.0,82.0,98.0,79.0,68.0,92.0,79.0,80.0,66.0,101.0,74.0,73.0,57.0,86.0,63.0,70.0,49.0,55.0,46.0,44.0,44.0,52.0,42.0,36.0,43.0,41.0,22.0,33.0,23.0,14.0,19.0,14.0,10.0,11.0,12.0,10.0,8.0,8.0,2.0,2.0,5.0,3.0 A86026,35.0,34.0,30.0,29.0,40.0,42.0,49.0,44.0,37.0,53.0,47.0,41.0,55.0,40.0,54.0,45.0,51.0,32.0,52.0,33.0,33.0,34.0,38.0,24.0,34.0,31.0,33.0,47.0,44.0,42.0,49.0,39.0,49.0,51.0,52.0,55.0,47.0,52.0,49.0,57.0,46.0,55.0,36.0,55.0,38.0,52.0,41.0,43.0,46.0,51.0,36.0,47.0,41.0,47.0,47.0,49.0,49.0,40.0,51.0,46.0,57.0,49.0,48.0,42.0,42.0,42.0,42.0,34.0,34.0,33.0,32.0,29.0,25.0,41.0,27.0,34.0,26.0,33.0,37.0,20.0,26.0,34.0,22.0,18.0,12.0,13.0,13.0,15.0,8.0,10.0,4.0,7.0,3.0,6.0,3.0,6.0 A86027,24.0,21.0,19.0,16.0,15.0,15.0,6.0,17.0,23.0,6.0,5.0,11.0,9.0,12.0,17.0,7.0,13.0,21.0,198.0,493.0,626.0,629.0,684.0,679.0,739.0,753.0,699.0,691.0,660.0,629.0,582.0,549.0,475.0,437.0,434.0,388.0,355.0,260.0,169.0,134.0,54.0,47.0,35.0,38.0,40.0,32.0,33.0,28.0,24.0,27.0,11.0,21.0,27.0,15.0,23.0,29.0,17.0,10.0,22.0,19.0,20.0,13.0,10.0,20.0,14.0,8.0,12.0,10.0,18.0,9.0,2.0,7.0,5.0,8.0,5.0,2.0,8.0,6.0,4.0,1.0,5.0,3.0,3.0,3.0,1.0,1.0,1.0,1.0,,1.0,1.0,,,,,1.0 A86028,29.0,29.0,29.0,33.0,50.0,47.0,43.0,52.0,45.0,59.0,47.0,44.0,48.0,46.0,41.0,38.0,39.0,41.0,26.0,41.0,35.0,32.0,33.0,42.0,50.0,41.0,47.0,59.0,60.0,56.0,68.0,56.0,69.0,58.0,66.0,76.0,74.0,71.0,89.0,67.0,76.0,69.0,70.0,58.0,61.0,51.0,42.0,43.0,47.0,58.0,75.0,46.0,46.0,47.0,54.0,40.0,30.0,42.0,45.0,41.0,47.0,48.0,42.0,45.0,43.0,42.0,38.0,40.0,46.0,36.0,38.0,33.0,32.0,35.0,36.0,30.0,26.0,27.0,36.0,19.0,17.0,20.0,18.0,7.0,7.0,12.0,12.0,7.0,5.0,9.0,4.0,5.0,3.0,3.0,2.0,3.0 A86029,62.0,70.0,60.0,67.0,53.0,70.0,61.0,75.0,87.0,93.0,102.0,64.0,90.0,96.0,89.0,93.0,84.0,89.0,166.0,297.0,308.0,263.0,247.0,302.0,307.0,318.0,352.0,340.0,329.0,306.0,305.0,286.0,293.0,277.0,249.0,233.0,225.0,200.0,168.0,164.0,114.0,144.0,141.0,139.0,141.0,125.0,122.0,107.0,95.0,103.0,98.0,106.0,104.0,98.0,108.0,100.0,100.0,118.0,99.0,107.0,121.0,115.0,104.0,116.0,76.0,82.0,81.0,71.0,72.0,74.0,67.0,61.0,67.0,51.0,48.0,65.0,52.0,50.0,52.0,40.0,33.0,28.0,31.0,29.0,22.0,22.0,23.0,25.0,20.0,12.0,10.0,9.0,6.0,7.0,2.0,6.0 A86030,46.0,47.0,58.0,66.0,70.0,49.0,70.0,63.0,61.0,76.0,63.0,88.0,69.0,102.0,87.0,87.0,89.0,78.0,71.0,78.0,78.0,55.0,59.0,57.0,60.0,57.0,50.0,71.0,71.0,79.0,72.0,71.0,71.0,79.0,83.0,90.0,76.0,87.0,80.0,78.0,69.0,89.0,76.0,77.0,68.0,79.0,82.0,66.0,57.0,84.0,64.0,58.0,71.0,67.0,71.0,74.0,69.0,54.0,78.0,87.0,82.0,62.0,72.0,76.0,67.0,83.0,61.0,66.0,49.0,34.0,37.0,48.0,41.0,39.0,45.0,32.0,30.0,48.0,28.0,22.0,21.0,15.0,11.0,12.0,15.0,13.0,18.0,10.0,5.0,7.0,7.0,6.0,2.0,3.0,1.0,4.0 A86031,52.0,58.0,68.0,68.0,83.0,61.0,73.0,87.0,72.0,84.0,82.0,73.0,73.0,79.0,88.0,70.0,75.0,75.0,69.0,69.0,61.0,59.0,76.0,81.0,88.0,90.0,102.0,133.0,89.0,81.0,84.0,93.0,87.0,96.0,82.0,103.0,97.0,99.0,76.0,90.0,87.0,90.0,76.0,90.0,72.0,73.0,67.0,67.0,69.0,74.0,63.0,66.0,72.0,66.0,72.0,60.0,55.0,50.0,51.0,72.0,59.0,74.0,58.0,41.0,50.0,39.0,37.0,39.0,35.0,39.0,37.0,41.0,27.0,26.0,25.0,16.0,35.0,25.0,21.0,13.0,18.0,17.0,12.0,12.0,8.0,6.0,6.0,14.0,6.0,6.0,2.0,3.0,1.0,1.0,2.0,5.0 A86033,49.0,69.0,72.0,69.0,76.0,81.0,70.0,69.0,75.0,85.0,73.0,81.0,67.0,64.0,62.0,55.0,49.0,56.0,47.0,43.0,40.0,25.0,23.0,33.0,34.0,35.0,16.0,25.0,40.0,39.0,37.0,52.0,45.0,44.0,65.0,67.0,80.0,89.0,75.0,77.0,63.0,85.0,91.0,61.0,94.0,81.0,89.0,63.0,65.0,57.0,62.0,52.0,55.0,44.0,55.0,49.0,44.0,37.0,32.0,36.0,37.0,28.0,39.0,20.0,33.0,28.0,27.0,29.0,26.0,19.0,21.0,18.0,28.0,21.0,14.0,21.0,20.0,18.0,14.0,9.0,17.0,13.0,13.0,8.0,14.0,9.0,9.0,8.0,7.0,8.0,2.0,4.0,4.0,2.0,3.0,6.0 A86037,52.0,35.0,46.0,41.0,49.0,42.0,47.0,46.0,48.0,68.0,64.0,51.0,43.0,59.0,59.0,77.0,53.0,61.0,53.0,92.0,73.0,84.0,112.0,112.0,133.0,149.0,130.0,150.0,126.0,106.0,99.0,111.0,96.0,101.0,87.0,100.0,91.0,80.0,80.0,89.0,79.0,80.0,61.0,67.0,75.0,74.0,52.0,59.0,68.0,59.0,51.0,69.0,44.0,51.0,47.0,36.0,40.0,42.0,47.0,49.0,40.0,35.0,35.0,38.0,44.0,26.0,32.0,37.0,17.0,31.0,22.0,21.0,22.0,15.0,9.0,20.0,21.0,11.0,18.0,18.0,15.0,7.0,4.0,3.0,5.0,8.0,7.0,1.0,3.0,4.0,3.0,4.0,6.0,1.0,3.0,3.0 A86038,31.0,36.0,28.0,39.0,25.0,24.0,27.0,39.0,39.0,28.0,27.0,25.0,35.0,26.0,36.0,31.0,38.0,36.0,28.0,19.0,21.0,27.0,23.0,38.0,29.0,38.0,35.0,32.0,43.0,52.0,45.0,48.0,48.0,53.0,48.0,42.0,47.0,44.0,48.0,51.0,52.0,51.0,42.0,47.0,37.0,28.0,38.0,33.0,28.0,50.0,39.0,24.0,41.0,53.0,48.0,27.0,46.0,46.0,54.0,30.0,47.0,43.0,33.0,42.0,36.0,43.0,50.0,33.0,24.0,28.0,24.0,29.0,25.0,32.0,27.0,27.0,28.0,37.0,24.0,17.0,18.0,22.0,13.0,8.0,8.0,10.0,14.0,4.0,6.0,9.0,4.0,9.0,,3.0,3.0,3.0 A86040,32.0,40.0,36.0,45.0,37.0,55.0,57.0,62.0,49.0,43.0,41.0,57.0,41.0,62.0,54.0,68.0,58.0,50.0,46.0,38.0,41.0,40.0,41.0,27.0,33.0,42.0,41.0,36.0,50.0,55.0,43.0,49.0,50.0,51.0,56.0,64.0,59.0,39.0,57.0,49.0,41.0,38.0,53.0,50.0,53.0,48.0,35.0,37.0,30.0,35.0,30.0,40.0,34.0,40.0,36.0,41.0,39.0,43.0,42.0,33.0,36.0,29.0,43.0,41.0,38.0,38.0,28.0,35.0,31.0,17.0,23.0,25.0,18.0,11.0,8.0,20.0,24.0,15.0,13.0,17.0,7.0,8.0,9.0,7.0,4.0,8.0,10.0,5.0,5.0,7.0,1.0,,3.0,1.0,2.0,3.0 A86041,27.0,37.0,33.0,42.0,38.0,45.0,46.0,32.0,25.0,49.0,39.0,33.0,42.0,32.0,35.0,29.0,39.0,32.0,30.0,29.0,25.0,35.0,30.0,27.0,24.0,31.0,37.0,38.0,42.0,43.0,49.0,55.0,42.0,55.0,63.0,67.0,57.0,67.0,62.0,55.0,65.0,59.0,65.0,57.0,59.0,56.0,66.0,50.0,38.0,39.0,31.0,34.0,47.0,47.0,46.0,33.0,36.0,34.0,31.0,48.0,28.0,30.0,54.0,50.0,36.0,39.0,36.0,41.0,30.0,34.0,32.0,27.0,27.0,32.0,43.0,19.0,25.0,17.0,35.0,21.0,14.0,11.0,12.0,9.0,9.0,6.0,8.0,7.0,9.0,10.0,3.0,5.0,1.0,5.0,1.0,4.0 A86601,34.0,54.0,55.0,53.0,42.0,49.0,55.0,63.0,50.0,48.0,59.0,47.0,54.0,47.0,55.0,57.0,55.0,49.0,68.0,54.0,54.0,46.0,75.0,49.0,45.0,58.0,51.0,47.0,61.0,53.0,55.0,64.0,63.0,62.0,71.0,61.0,60.0,59.0,74.0,66.0,55.0,63.0,59.0,63.0,64.0,65.0,61.0,51.0,52.0,48.0,45.0,63.0,57.0,66.0,57.0,70.0,60.0,69.0,54.0,66.0,68.0,77.0,70.0,56.0,58.0,65.0,64.0,49.0,43.0,46.0,46.0,34.0,34.0,37.0,37.0,39.0,48.0,42.0,50.0,21.0,19.0,20.0,21.0,18.0,12.0,17.0,11.0,11.0,8.0,7.0,7.0,6.0,3.0,4.0,1.0,2.0 A87002,19.0,16.0,21.0,20.0,20.0,14.0,16.0,18.0,19.0,33.0,31.0,36.0,21.0,26.0,37.0,25.0,37.0,21.0,26.0,34.0,21.0,25.0,19.0,35.0,31.0,41.0,35.0,46.0,33.0,42.0,46.0,38.0,38.0,48.0,38.0,51.0,50.0,36.0,36.0,46.0,38.0,49.0,38.0,36.0,37.0,43.0,37.0,29.0,28.0,28.0,34.0,42.0,41.0,53.0,43.0,48.0,44.0,53.0,51.0,62.0,62.0,55.0,56.0,59.0,54.0,42.0,34.0,50.0,38.0,34.0,43.0,47.0,36.0,28.0,33.0,38.0,30.0,34.0,35.0,25.0,16.0,16.0,15.0,14.0,11.0,15.0,14.0,10.0,6.0,14.0,11.0,4.0,3.0,2.0,3.0,1.0 A87004,104.0,106.0,91.0,104.0,105.0,127.0,121.0,135.0,149.0,129.0,126.0,138.0,132.0,133.0,156.0,164.0,150.0,151.0,142.0,132.0,109.0,118.0,121.0,123.0,135.0,138.0,127.0,146.0,160.0,152.0,154.0,161.0,150.0,157.0,144.0,174.0,148.0,179.0,175.0,162.0,177.0,143.0,173.0,168.0,147.0,168.0,152.0,134.0,133.0,122.0,140.0,150.0,163.0,171.0,170.0,171.0,158.0,177.0,168.0,192.0,174.0,187.0,165.0,150.0,162.0,160.0,153.0,145.0,142.0,120.0,119.0,136.0,125.0,118.0,110.0,124.0,119.0,121.0,121.0,76.0,73.0,65.0,76.0,43.0,44.0,45.0,34.0,41.0,25.0,28.0,21.0,12.0,16.0,7.0,5.0,14.0 A87005,43.0,54.0,53.0,62.0,55.0,72.0,61.0,50.0,77.0,94.0,63.0,87.0,91.0,81.0,73.0,76.0,74.0,69.0,55.0,62.0,50.0,50.0,52.0,48.0,62.0,51.0,54.0,62.0,66.0,54.0,63.0,62.0,73.0,71.0,69.0,75.0,80.0,71.0,78.0,94.0,96.0,95.0,84.0,94.0,106.0,90.0,101.0,69.0,73.0,71.0,78.0,79.0,94.0,100.0,112.0,90.0,83.0,81.0,103.0,79.0,122.0,98.0,94.0,91.0,84.0,72.0,83.0,83.0,89.0,99.0,87.0,82.0,82.0,67.0,74.0,79.0,81.0,90.0,76.0,62.0,63.0,44.0,41.0,28.0,29.0,40.0,33.0,38.0,24.0,11.0,15.0,17.0,12.0,6.0,5.0,5.0 A87006,13.0,18.0,21.0,22.0,23.0,21.0,24.0,27.0,34.0,29.0,30.0,24.0,26.0,24.0,30.0,26.0,35.0,40.0,23.0,27.0,20.0,19.0,26.0,24.0,23.0,28.0,23.0,38.0,42.0,24.0,30.0,34.0,28.0,37.0,41.0,36.0,42.0,44.0,48.0,33.0,40.0,29.0,39.0,41.0,46.0,39.0,40.0,37.0,39.0,44.0,33.0,36.0,40.0,43.0,46.0,44.0,43.0,41.0,53.0,41.0,50.0,54.0,38.0,38.0,32.0,29.0,33.0,47.0,31.0,38.0,35.0,46.0,35.0,28.0,32.0,26.0,39.0,45.0,42.0,26.0,29.0,18.0,17.0,15.0,11.0,12.0,16.0,15.0,11.0,5.0,15.0,4.0,3.0,1.0,3.0,8.0 A87007,72.0,71.0,109.0,86.0,74.0,103.0,98.0,101.0,101.0,116.0,112.0,118.0,115.0,95.0,112.0,113.0,94.0,112.0,105.0,93.0,105.0,78.0,76.0,97.0,103.0,95.0,84.0,83.0,103.0,114.0,100.0,104.0,119.0,107.0,118.0,123.0,128.0,129.0,109.0,147.0,154.0,111.0,125.0,121.0,123.0,142.0,108.0,130.0,96.0,99.0,102.0,113.0,117.0,123.0,125.0,107.0,125.0,124.0,121.0,146.0,111.0,125.0,130.0,144.0,114.0,114.0,115.0,98.0,90.0,96.0,91.0,101.0,88.0,86.0,79.0,85.0,93.0,79.0,84.0,71.0,51.0,56.0,40.0,35.0,21.0,23.0,26.0,18.0,18.0,19.0,11.0,12.0,8.0,4.0,6.0,5.0 A87008,29.0,28.0,36.0,51.0,50.0,64.0,59.0,58.0,53.0,59.0,65.0,66.0,69.0,57.0,62.0,78.0,72.0,50.0,59.0,47.0,51.0,39.0,39.0,33.0,36.0,41.0,25.0,34.0,30.0,34.0,31.0,44.0,39.0,43.0,44.0,56.0,44.0,50.0,45.0,53.0,59.0,79.0,55.0,59.0,74.0,81.0,69.0,79.0,49.0,52.0,82.0,68.0,61.0,67.0,66.0,58.0,53.0,60.0,51.0,46.0,52.0,48.0,46.0,51.0,45.0,49.0,41.0,31.0,37.0,37.0,38.0,22.0,24.0,44.0,22.0,33.0,50.0,44.0,39.0,36.0,31.0,32.0,20.0,17.0,20.0,14.0,14.0,6.0,13.0,11.0,7.0,5.0,4.0,2.0,5.0,4.0 A87009,45.0,59.0,69.0,75.0,74.0,86.0,86.0,97.0,84.0,84.0,93.0,90.0,100.0,85.0,94.0,93.0,92.0,101.0,76.0,76.0,76.0,55.0,73.0,61.0,59.0,76.0,85.0,69.0,66.0,65.0,99.0,85.0,88.0,104.0,107.0,86.0,100.0,105.0,109.0,125.0,100.0,115.0,114.0,127.0,127.0,136.0,125.0,95.0,115.0,109.0,108.0,100.0,117.0,116.0,99.0,110.0,103.0,107.0,117.0,112.0,112.0,100.0,103.0,94.0,96.0,94.0,93.0,87.0,100.0,84.0,80.0,88.0,87.0,90.0,68.0,87.0,73.0,79.0,67.0,48.0,46.0,39.0,34.0,28.0,20.0,22.0,23.0,17.0,20.0,20.0,9.0,9.0,2.0,2.0,3.0,12.0 A87011,14.0,18.0,11.0,22.0,19.0,33.0,33.0,25.0,43.0,38.0,50.0,48.0,42.0,43.0,45.0,46.0,39.0,49.0,46.0,35.0,41.0,26.0,41.0,31.0,31.0,27.0,22.0,24.0,39.0,22.0,27.0,34.0,32.0,28.0,28.0,32.0,31.0,22.0,48.0,39.0,32.0,36.0,31.0,41.0,35.0,44.0,45.0,40.0,53.0,38.0,46.0,40.0,31.0,55.0,48.0,57.0,57.0,43.0,41.0,48.0,43.0,49.0,47.0,40.0,39.0,35.0,38.0,52.0,38.0,42.0,32.0,34.0,35.0,50.0,33.0,48.0,47.0,38.0,39.0,25.0,26.0,35.0,23.0,14.0,15.0,23.0,13.0,10.0,7.0,14.0,9.0,4.0,4.0,7.0,2.0,6.0 A87012,44.0,30.0,35.0,52.0,44.0,41.0,41.0,50.0,34.0,32.0,36.0,37.0,39.0,44.0,42.0,39.0,46.0,44.0,36.0,47.0,38.0,38.0,22.0,38.0,28.0,28.0,29.0,47.0,43.0,40.0,59.0,39.0,40.0,43.0,61.0,62.0,56.0,42.0,49.0,50.0,47.0,42.0,44.0,36.0,43.0,47.0,41.0,39.0,23.0,46.0,40.0,46.0,36.0,44.0,68.0,59.0,47.0,52.0,45.0,75.0,49.0,46.0,65.0,41.0,49.0,56.0,52.0,41.0,34.0,42.0,33.0,48.0,39.0,34.0,38.0,31.0,42.0,37.0,45.0,27.0,37.0,33.0,31.0,15.0,13.0,15.0,16.0,15.0,5.0,5.0,5.0,3.0,3.0,1.0,5.0,5.0 A87013,34.0,47.0,51.0,44.0,43.0,58.0,47.0,54.0,59.0,49.0,56.0,71.0,40.0,68.0,66.0,68.0,60.0,64.0,66.0,65.0,55.0,59.0,47.0,40.0,43.0,55.0,60.0,58.0,66.0,58.0,69.0,57.0,65.0,68.0,67.0,62.0,73.0,62.0,66.0,77.0,53.0,61.0,71.0,66.0,60.0,82.0,51.0,48.0,58.0,54.0,59.0,52.0,58.0,58.0,60.0,43.0,46.0,59.0,59.0,57.0,67.0,53.0,54.0,58.0,46.0,63.0,57.0,57.0,59.0,52.0,41.0,43.0,46.0,41.0,37.0,23.0,41.0,34.0,34.0,31.0,34.0,25.0,14.0,16.0,11.0,10.0,10.0,10.0,10.0,4.0,5.0,2.0,5.0,2.0,1.0,6.0 A87016,60.0,50.0,71.0,59.0,73.0,61.0,60.0,73.0,85.0,90.0,67.0,63.0,76.0,72.0,59.0,76.0,73.0,73.0,86.0,86.0,76.0,59.0,61.0,61.0,70.0,78.0,83.0,85.0,112.0,107.0,103.0,110.0,99.0,82.0,111.0,104.0,108.0,109.0,106.0,100.0,116.0,98.0,96.0,90.0,114.0,114.0,84.0,61.0,73.0,83.0,66.0,81.0,82.0,91.0,62.0,83.0,86.0,72.0,85.0,81.0,78.0,88.0,92.0,45.0,63.0,83.0,69.0,62.0,68.0,77.0,66.0,65.0,61.0,53.0,45.0,51.0,68.0,47.0,45.0,29.0,42.0,21.0,25.0,27.0,28.0,11.0,22.0,7.0,12.0,4.0,6.0,6.0,5.0,4.0,5.0, A87017,33.0,44.0,46.0,43.0,39.0,28.0,48.0,32.0,31.0,40.0,40.0,37.0,33.0,25.0,27.0,31.0,25.0,36.0,29.0,21.0,34.0,40.0,31.0,21.0,29.0,30.0,33.0,32.0,31.0,32.0,33.0,46.0,52.0,49.0,60.0,45.0,48.0,49.0,32.0,48.0,43.0,41.0,34.0,43.0,44.0,41.0,32.0,30.0,32.0,36.0,45.0,32.0,34.0,45.0,41.0,44.0,42.0,25.0,34.0,33.0,52.0,45.0,47.0,40.0,37.0,37.0,45.0,39.0,34.0,34.0,42.0,41.0,26.0,42.0,29.0,37.0,37.0,37.0,42.0,29.0,17.0,22.0,20.0,8.0,15.0,18.0,12.0,11.0,14.0,6.0,10.0,4.0,5.0,7.0,3.0,3.0 A87019,15.0,16.0,14.0,16.0,20.0,30.0,20.0,21.0,29.0,27.0,23.0,27.0,28.0,26.0,24.0,32.0,27.0,27.0,34.0,39.0,23.0,18.0,22.0,30.0,26.0,29.0,30.0,36.0,25.0,33.0,31.0,36.0,34.0,40.0,31.0,45.0,41.0,35.0,36.0,29.0,29.0,30.0,40.0,37.0,42.0,26.0,27.0,21.0,17.0,36.0,24.0,27.0,25.0,31.0,46.0,35.0,46.0,40.0,37.0,40.0,37.0,37.0,40.0,32.0,34.0,30.0,37.0,38.0,38.0,35.0,28.0,32.0,27.0,28.0,18.0,11.0,16.0,26.0,24.0,18.0,10.0,14.0,14.0,9.0,6.0,8.0,12.0,7.0,7.0,5.0,2.0,4.0,2.0,,3.0,4.0 A87020,32.0,32.0,50.0,57.0,47.0,56.0,62.0,55.0,60.0,69.0,77.0,78.0,77.0,86.0,79.0,86.0,97.0,81.0,92.0,72.0,75.0,59.0,61.0,61.0,76.0,58.0,59.0,64.0,62.0,70.0,59.0,54.0,61.0,71.0,77.0,60.0,84.0,80.0,79.0,81.0,79.0,76.0,76.0,81.0,101.0,95.0,115.0,81.0,94.0,93.0,102.0,96.0,97.0,97.0,103.0,103.0,88.0,90.0,104.0,96.0,95.0,102.0,99.0,86.0,79.0,96.0,102.0,81.0,87.0,78.0,74.0,76.0,65.0,65.0,62.0,68.0,67.0,85.0,61.0,47.0,63.0,43.0,34.0,28.0,32.0,26.0,26.0,19.0,21.0,18.0,12.0,8.0,8.0,7.0,6.0,9.0 A87022,53.0,54.0,62.0,80.0,67.0,64.0,68.0,76.0,67.0,65.0,62.0,58.0,69.0,57.0,80.0,59.0,42.0,61.0,53.0,55.0,43.0,65.0,46.0,40.0,37.0,40.0,39.0,55.0,59.0,65.0,66.0,68.0,64.0,91.0,80.0,86.0,97.0,75.0,96.0,85.0,78.0,73.0,77.0,62.0,79.0,103.0,66.0,70.0,48.0,64.0,69.0,49.0,73.0,77.0,61.0,55.0,52.0,60.0,54.0,57.0,49.0,61.0,48.0,50.0,50.0,44.0,42.0,37.0,41.0,35.0,39.0,36.0,41.0,34.0,33.0,32.0,21.0,29.0,19.0,17.0,21.0,11.0,5.0,9.0,6.0,7.0,6.0,7.0,5.0,4.0,5.0,2.0,1.0,1.0,,4.0 A87029,102.0,101.0,102.0,110.0,117.0,123.0,128.0,135.0,125.0,131.0,138.0,115.0,138.0,113.0,135.0,105.0,106.0,132.0,93.0,119.0,93.0,106.0,107.0,90.0,112.0,121.0,132.0,149.0,138.0,132.0,186.0,155.0,175.0,172.0,153.0,186.0,195.0,167.0,173.0,144.0,163.0,147.0,168.0,142.0,153.0,175.0,148.0,114.0,120.0,131.0,117.0,113.0,131.0,130.0,138.0,112.0,111.0,148.0,129.0,148.0,164.0,143.0,115.0,128.0,149.0,132.0,118.0,146.0,118.0,95.0,95.0,102.0,98.0,92.0,77.0,72.0,74.0,70.0,69.0,67.0,65.0,34.0,49.0,33.0,24.0,30.0,24.0,15.0,17.0,15.0,15.0,13.0,1.0,4.0,3.0,9.0 A87030,26.0,43.0,18.0,43.0,35.0,34.0,42.0,31.0,47.0,37.0,40.0,35.0,48.0,44.0,52.0,60.0,54.0,57.0,43.0,36.0,40.0,42.0,37.0,37.0,45.0,28.0,46.0,39.0,38.0,44.0,47.0,48.0,52.0,53.0,58.0,46.0,49.0,61.0,55.0,44.0,65.0,44.0,52.0,38.0,48.0,41.0,46.0,37.0,29.0,34.0,36.0,26.0,34.0,41.0,37.0,43.0,27.0,29.0,41.0,27.0,48.0,37.0,30.0,33.0,35.0,26.0,24.0,20.0,26.0,22.0,24.0,16.0,17.0,17.0,9.0,15.0,16.0,15.0,12.0,16.0,12.0,10.0,7.0,5.0,4.0,7.0,2.0,7.0,1.0,5.0,3.0,,,,1.0, A87600,11.0,15.0,16.0,28.0,32.0,17.0,23.0,18.0,23.0,27.0,31.0,28.0,22.0,32.0,23.0,26.0,39.0,34.0,29.0,28.0,30.0,28.0,29.0,30.0,27.0,32.0,23.0,30.0,26.0,23.0,19.0,25.0,22.0,27.0,26.0,27.0,24.0,28.0,43.0,40.0,33.0,20.0,40.0,38.0,46.0,26.0,37.0,31.0,31.0,26.0,41.0,37.0,32.0,42.0,30.0,26.0,28.0,35.0,44.0,27.0,42.0,39.0,38.0,27.0,29.0,28.0,28.0,25.0,18.0,20.0,23.0,15.0,16.0,30.0,20.0,23.0,16.0,24.0,15.0,16.0,20.0,16.0,11.0,13.0,5.0,12.0,8.0,9.0,7.0,7.0,2.0,5.0,3.0,4.0,,2.0 A87612,31.0,32.0,34.0,25.0,20.0,34.0,42.0,35.0,36.0,37.0,45.0,44.0,41.0,47.0,39.0,49.0,45.0,44.0,32.0,41.0,32.0,21.0,36.0,17.0,26.0,38.0,24.0,28.0,25.0,25.0,25.0,34.0,38.0,36.0,46.0,37.0,46.0,51.0,35.0,31.0,43.0,43.0,42.0,63.0,32.0,39.0,42.0,43.0,38.0,43.0,35.0,45.0,40.0,50.0,48.0,48.0,49.0,42.0,47.0,38.0,38.0,51.0,42.0,33.0,39.0,41.0,34.0,34.0,32.0,37.0,44.0,34.0,38.0,33.0,31.0,28.0,32.0,26.0,32.0,19.0,17.0,14.0,10.0,6.0,11.0,10.0,8.0,12.0,8.0,3.0,5.0,3.0,5.0,1.0,2.0,3.0 A87615,31.0,22.0,31.0,30.0,27.0,31.0,31.0,36.0,22.0,26.0,44.0,38.0,36.0,36.0,38.0,38.0,39.0,36.0,43.0,29.0,26.0,28.0,21.0,16.0,30.0,31.0,32.0,35.0,39.0,34.0,46.0,37.0,45.0,35.0,40.0,37.0,46.0,53.0,44.0,35.0,36.0,37.0,40.0,42.0,46.0,45.0,26.0,21.0,29.0,26.0,32.0,29.0,35.0,48.0,35.0,31.0,40.0,31.0,35.0,27.0,31.0,28.0,29.0,30.0,29.0,22.0,20.0,22.0,24.0,17.0,31.0,33.0,15.0,28.0,17.0,27.0,19.0,31.0,30.0,18.0,17.0,14.0,13.0,9.0,5.0,4.0,11.0,10.0,8.0,5.0,4.0,7.0,3.0,1.0,2.0, A88001,22.0,22.0,17.0,19.0,21.0,31.0,17.0,22.0,16.0,22.0,26.0,18.0,29.0,19.0,18.0,21.0,21.0,15.0,18.0,16.0,20.0,16.0,14.0,14.0,18.0,18.0,13.0,19.0,28.0,24.0,33.0,24.0,39.0,33.0,25.0,28.0,25.0,33.0,21.0,38.0,38.0,33.0,21.0,28.0,29.0,26.0,30.0,22.0,16.0,20.0,28.0,22.0,30.0,31.0,23.0,18.0,22.0,29.0,35.0,38.0,28.0,26.0,24.0,21.0,28.0,24.0,17.0,18.0,14.0,18.0,22.0,16.0,15.0,15.0,15.0,21.0,11.0,18.0,28.0,12.0,11.0,3.0,9.0,8.0,9.0,9.0,7.0,3.0,4.0,6.0,4.0,2.0,2.0,2.0,3.0,1.0 A88002,48.0,74.0,93.0,77.0,79.0,114.0,109.0,97.0,118.0,115.0,90.0,96.0,107.0,111.0,114.0,73.0,102.0,84.0,109.0,101.0,81.0,108.0,95.0,93.0,79.0,103.0,86.0,116.0,100.0,111.0,105.0,99.0,129.0,146.0,119.0,153.0,131.0,157.0,145.0,138.0,131.0,123.0,118.0,101.0,131.0,116.0,111.0,103.0,77.0,96.0,98.0,111.0,107.0,110.0,110.0,95.0,122.0,116.0,103.0,112.0,120.0,129.0,125.0,115.0,115.0,131.0,104.0,103.0,107.0,99.0,95.0,90.0,92.0,78.0,67.0,79.0,76.0,85.0,70.0,56.0,58.0,34.0,30.0,17.0,26.0,28.0,22.0,24.0,23.0,12.0,10.0,10.0,7.0,6.0,1.0,3.0 A88003,77.0,89.0,108.0,92.0,126.0,96.0,111.0,120.0,114.0,116.0,109.0,115.0,126.0,94.0,140.0,120.0,125.0,137.0,129.0,117.0,137.0,103.0,112.0,98.0,115.0,123.0,119.0,133.0,145.0,125.0,141.0,174.0,210.0,224.0,195.0,190.0,189.0,172.0,185.0,171.0,159.0,137.0,138.0,156.0,147.0,169.0,179.0,155.0,146.0,145.0,163.0,171.0,161.0,173.0,151.0,164.0,163.0,175.0,178.0,146.0,170.0,142.0,151.0,141.0,160.0,167.0,166.0,136.0,153.0,134.0,124.0,110.0,111.0,97.0,108.0,120.0,88.0,109.0,99.0,94.0,79.0,54.0,56.0,57.0,47.0,45.0,44.0,39.0,34.0,21.0,13.0,10.0,14.0,9.0,2.0,13.0 A88004,41.0,26.0,38.0,48.0,33.0,40.0,48.0,54.0,41.0,59.0,68.0,67.0,60.0,59.0,58.0,59.0,66.0,44.0,54.0,62.0,59.0,45.0,50.0,47.0,48.0,64.0,49.0,55.0,55.0,52.0,55.0,54.0,48.0,62.0,55.0,60.0,62.0,65.0,73.0,69.0,67.0,61.0,65.0,67.0,68.0,62.0,44.0,47.0,51.0,41.0,51.0,44.0,63.0,81.0,59.0,69.0,64.0,79.0,73.0,58.0,66.0,72.0,65.0,52.0,66.0,57.0,57.0,47.0,47.0,47.0,48.0,41.0,58.0,39.0,44.0,35.0,36.0,40.0,38.0,28.0,14.0,17.0,22.0,11.0,12.0,16.0,7.0,5.0,14.0,5.0,6.0,3.0,5.0,1.0,,2.0 A88005,22.0,27.0,19.0,25.0,19.0,30.0,23.0,27.0,23.0,28.0,36.0,26.0,27.0,28.0,34.0,24.0,24.0,24.0,26.0,24.0,27.0,35.0,24.0,20.0,20.0,28.0,23.0,32.0,34.0,23.0,35.0,41.0,30.0,29.0,28.0,43.0,40.0,39.0,36.0,35.0,33.0,35.0,29.0,32.0,31.0,30.0,34.0,30.0,17.0,20.0,38.0,24.0,24.0,37.0,31.0,25.0,29.0,43.0,27.0,34.0,38.0,34.0,39.0,31.0,33.0,24.0,24.0,24.0,21.0,24.0,41.0,27.0,19.0,14.0,24.0,21.0,30.0,24.0,25.0,10.0,9.0,9.0,17.0,9.0,5.0,4.0,5.0,4.0,3.0,2.0,4.0,2.0,1.0,4.0,,2.0 A88006,31.0,25.0,39.0,38.0,36.0,40.0,45.0,44.0,53.0,61.0,43.0,43.0,49.0,43.0,49.0,46.0,38.0,43.0,43.0,37.0,31.0,35.0,35.0,46.0,42.0,48.0,44.0,41.0,51.0,48.0,53.0,48.0,57.0,45.0,68.0,58.0,51.0,57.0,45.0,52.0,40.0,51.0,47.0,50.0,44.0,50.0,56.0,37.0,31.0,50.0,26.0,33.0,47.0,51.0,49.0,45.0,58.0,50.0,50.0,55.0,73.0,67.0,60.0,62.0,48.0,52.0,56.0,59.0,51.0,43.0,49.0,41.0,40.0,39.0,32.0,45.0,35.0,44.0,32.0,22.0,25.0,15.0,20.0,12.0,23.0,15.0,8.0,9.0,14.0,4.0,4.0,8.0,1.0,1.0,,3.0 A88008,27.0,27.0,32.0,26.0,33.0,31.0,24.0,24.0,25.0,38.0,28.0,29.0,44.0,18.0,38.0,33.0,28.0,35.0,36.0,29.0,29.0,34.0,32.0,39.0,35.0,51.0,41.0,61.0,55.0,64.0,63.0,61.0,75.0,58.0,81.0,71.0,80.0,65.0,55.0,56.0,51.0,49.0,50.0,37.0,50.0,47.0,46.0,33.0,37.0,41.0,35.0,43.0,43.0,41.0,45.0,48.0,51.0,46.0,40.0,53.0,29.0,44.0,45.0,50.0,45.0,35.0,52.0,40.0,32.0,32.0,46.0,32.0,33.0,32.0,33.0,34.0,30.0,28.0,35.0,18.0,21.0,22.0,10.0,9.0,10.0,11.0,8.0,3.0,8.0,11.0,5.0,,2.0,1.0,1.0,1.0 A88009,21.0,17.0,21.0,34.0,36.0,25.0,25.0,33.0,39.0,33.0,34.0,24.0,38.0,33.0,24.0,29.0,43.0,37.0,37.0,32.0,30.0,31.0,32.0,25.0,21.0,42.0,32.0,27.0,30.0,30.0,23.0,28.0,41.0,38.0,35.0,44.0,47.0,38.0,43.0,44.0,34.0,38.0,43.0,35.0,28.0,49.0,38.0,31.0,32.0,29.0,31.0,45.0,46.0,42.0,57.0,44.0,41.0,39.0,50.0,53.0,53.0,62.0,51.0,37.0,49.0,41.0,51.0,35.0,29.0,29.0,39.0,39.0,40.0,31.0,23.0,27.0,34.0,33.0,32.0,15.0,23.0,19.0,15.0,13.0,5.0,22.0,11.0,18.0,12.0,10.0,15.0,3.0,7.0,6.0,3.0,3.0 A88010,11.0,15.0,16.0,20.0,19.0,12.0,14.0,13.0,22.0,13.0,17.0,24.0,15.0,23.0,16.0,22.0,13.0,22.0,12.0,17.0,12.0,24.0,20.0,17.0,15.0,26.0,26.0,15.0,23.0,24.0,23.0,20.0,29.0,27.0,21.0,28.0,25.0,14.0,26.0,19.0,12.0,20.0,22.0,24.0,27.0,24.0,14.0,10.0,15.0,19.0,18.0,27.0,18.0,22.0,23.0,26.0,27.0,29.0,24.0,36.0,37.0,32.0,27.0,20.0,27.0,19.0,22.0,22.0,21.0,20.0,25.0,26.0,12.0,18.0,16.0,13.0,17.0,14.0,16.0,12.0,13.0,16.0,12.0,9.0,10.0,11.0,4.0,5.0,3.0,1.0,4.0,2.0,,,1.0,4.0 A88012,21.0,30.0,31.0,40.0,37.0,38.0,33.0,38.0,38.0,39.0,30.0,32.0,43.0,36.0,32.0,45.0,32.0,40.0,34.0,21.0,37.0,29.0,26.0,22.0,27.0,19.0,35.0,33.0,34.0,32.0,41.0,40.0,45.0,50.0,33.0,36.0,35.0,61.0,57.0,46.0,48.0,51.0,49.0,33.0,35.0,42.0,31.0,27.0,27.0,36.0,36.0,37.0,43.0,29.0,32.0,31.0,31.0,39.0,29.0,40.0,40.0,33.0,51.0,55.0,36.0,35.0,56.0,39.0,41.0,34.0,31.0,43.0,24.0,39.0,28.0,29.0,35.0,21.0,31.0,12.0,15.0,18.0,11.0,11.0,8.0,11.0,7.0,6.0,6.0,5.0,3.0,4.0,1.0,2.0,1.0,3.0 A88013,90.0,80.0,97.0,109.0,98.0,134.0,115.0,141.0,143.0,145.0,134.0,131.0,119.0,118.0,124.0,129.0,112.0,92.0,116.0,110.0,105.0,102.0,90.0,89.0,93.0,97.0,104.0,102.0,120.0,116.0,112.0,149.0,119.0,139.0,128.0,129.0,150.0,124.0,160.0,147.0,134.0,120.0,117.0,148.0,139.0,133.0,121.0,100.0,121.0,103.0,102.0,129.0,133.0,113.0,103.0,117.0,151.0,123.0,135.0,127.0,122.0,116.0,134.0,106.0,97.0,116.0,115.0,125.0,101.0,82.0,96.0,97.0,75.0,83.0,80.0,72.0,71.0,71.0,84.0,46.0,49.0,39.0,35.0,32.0,26.0,33.0,24.0,20.0,21.0,20.0,13.0,8.0,11.0,6.0,7.0,11.0 A88014,10.0,15.0,9.0,19.0,11.0,15.0,13.0,16.0,15.0,10.0,10.0,18.0,11.0,14.0,9.0,11.0,10.0,17.0,21.0,12.0,22.0,17.0,11.0,17.0,25.0,17.0,26.0,23.0,30.0,42.0,25.0,45.0,53.0,57.0,51.0,40.0,44.0,51.0,30.0,46.0,42.0,33.0,52.0,32.0,34.0,27.0,29.0,37.0,26.0,24.0,31.0,32.0,13.0,18.0,23.0,19.0,25.0,24.0,19.0,16.0,18.0,13.0,12.0,21.0,21.0,10.0,13.0,13.0,7.0,9.0,14.0,10.0,7.0,9.0,7.0,7.0,8.0,15.0,5.0,7.0,7.0,3.0,3.0,5.0,3.0,1.0,1.0,4.0,5.0,,1.0,1.0,3.0,,,2.0 A88015,40.0,34.0,40.0,36.0,42.0,35.0,41.0,34.0,34.0,41.0,40.0,41.0,37.0,36.0,53.0,50.0,44.0,40.0,42.0,40.0,40.0,40.0,41.0,46.0,44.0,55.0,47.0,57.0,53.0,67.0,63.0,60.0,67.0,59.0,56.0,62.0,60.0,52.0,63.0,60.0,58.0,61.0,56.0,50.0,45.0,73.0,64.0,55.0,50.0,54.0,50.0,55.0,53.0,51.0,59.0,49.0,59.0,53.0,62.0,55.0,58.0,55.0,68.0,45.0,60.0,60.0,42.0,44.0,41.0,34.0,36.0,42.0,27.0,28.0,30.0,23.0,32.0,31.0,23.0,20.0,19.0,21.0,11.0,18.0,18.0,11.0,13.0,11.0,11.0,2.0,6.0,2.0,6.0,1.0,2.0,3.0 A88016,35.0,36.0,24.0,45.0,48.0,40.0,41.0,50.0,38.0,45.0,40.0,57.0,50.0,45.0,53.0,49.0,53.0,45.0,52.0,39.0,39.0,37.0,46.0,35.0,38.0,39.0,45.0,39.0,54.0,35.0,41.0,34.0,49.0,41.0,45.0,48.0,39.0,50.0,42.0,51.0,42.0,49.0,39.0,39.0,64.0,44.0,40.0,41.0,42.0,53.0,51.0,51.0,45.0,49.0,68.0,73.0,55.0,57.0,72.0,66.0,71.0,60.0,48.0,63.0,50.0,65.0,41.0,47.0,53.0,41.0,36.0,43.0,43.0,52.0,30.0,30.0,48.0,47.0,48.0,30.0,22.0,32.0,24.0,17.0,20.0,7.0,14.0,15.0,10.0,10.0,6.0,6.0,7.0,7.0,2.0,6.0 A88022,65.0,63.0,59.0,61.0,57.0,69.0,69.0,64.0,82.0,75.0,77.0,76.0,66.0,90.0,82.0,70.0,71.0,67.0,58.0,72.0,58.0,61.0,65.0,56.0,58.0,58.0,52.0,89.0,82.0,68.0,77.0,81.0,67.0,81.0,85.0,90.0,73.0,88.0,84.0,96.0,79.0,75.0,71.0,80.0,94.0,83.0,80.0,61.0,60.0,49.0,54.0,58.0,58.0,61.0,81.0,65.0,75.0,80.0,66.0,82.0,71.0,58.0,73.0,80.0,58.0,55.0,54.0,64.0,65.0,67.0,50.0,47.0,30.0,29.0,38.0,37.0,34.0,24.0,40.0,21.0,15.0,17.0,15.0,16.0,14.0,6.0,12.0,13.0,12.0,5.0,4.0,4.0,2.0,2.0,1.0,7.0 A88023,25.0,23.0,22.0,26.0,34.0,18.0,23.0,33.0,29.0,29.0,22.0,22.0,23.0,32.0,29.0,38.0,39.0,31.0,31.0,25.0,20.0,28.0,25.0,22.0,21.0,26.0,25.0,30.0,21.0,29.0,31.0,33.0,29.0,26.0,31.0,23.0,29.0,22.0,29.0,37.0,27.0,33.0,25.0,33.0,36.0,32.0,17.0,30.0,19.0,34.0,39.0,30.0,32.0,43.0,41.0,36.0,45.0,37.0,45.0,35.0,40.0,37.0,45.0,37.0,44.0,36.0,30.0,40.0,37.0,38.0,32.0,32.0,32.0,20.0,42.0,35.0,29.0,30.0,32.0,15.0,22.0,21.0,17.0,15.0,14.0,11.0,15.0,9.0,5.0,9.0,8.0,6.0,2.0,1.0,2.0,3.0 A88025,10.0,12.0,14.0,13.0,14.0,12.0,9.0,15.0,15.0,23.0,23.0,25.0,30.0,24.0,27.0,27.0,32.0,16.0,22.0,21.0,25.0,20.0,29.0,24.0,13.0,22.0,15.0,28.0,22.0,22.0,21.0,27.0,22.0,24.0,30.0,13.0,22.0,25.0,38.0,32.0,26.0,24.0,26.0,30.0,24.0,28.0,18.0,17.0,20.0,24.0,25.0,36.0,23.0,21.0,38.0,33.0,32.0,33.0,41.0,36.0,32.0,32.0,43.0,41.0,36.0,40.0,27.0,34.0,32.0,28.0,34.0,24.0,43.0,21.0,25.0,25.0,23.0,24.0,20.0,19.0,17.0,14.0,18.0,10.0,10.0,7.0,9.0,6.0,9.0,5.0,1.0,5.0,3.0,2.0,1.0,3.0 A88601,24.0,19.0,11.0,24.0,14.0,20.0,17.0,16.0,18.0,29.0,17.0,26.0,20.0,28.0,21.0,22.0,17.0,19.0,13.0,15.0,8.0,19.0,11.0,18.0,21.0,32.0,20.0,21.0,28.0,26.0,31.0,25.0,41.0,65.0,48.0,38.0,37.0,45.0,32.0,40.0,27.0,35.0,33.0,33.0,30.0,42.0,24.0,28.0,20.0,35.0,30.0,24.0,27.0,24.0,34.0,30.0,30.0,22.0,30.0,28.0,28.0,37.0,34.0,33.0,24.0,32.0,35.0,26.0,23.0,26.0,27.0,21.0,19.0,23.0,27.0,21.0,22.0,17.0,26.0,14.0,9.0,6.0,10.0,13.0,5.0,4.0,11.0,5.0,10.0,8.0,2.0,2.0,3.0,1.0,3.0,3.0 A88608,20.0,25.0,28.0,25.0,28.0,29.0,23.0,28.0,41.0,26.0,27.0,40.0,35.0,31.0,28.0,36.0,41.0,39.0,28.0,28.0,26.0,40.0,21.0,29.0,33.0,37.0,32.0,32.0,45.0,58.0,47.0,48.0,51.0,45.0,45.0,47.0,48.0,60.0,50.0,46.0,37.0,40.0,42.0,37.0,39.0,36.0,43.0,31.0,33.0,44.0,38.0,32.0,36.0,42.0,38.0,49.0,44.0,33.0,45.0,45.0,49.0,43.0,46.0,33.0,55.0,40.0,49.0,40.0,47.0,41.0,36.0,26.0,31.0,31.0,29.0,31.0,22.0,39.0,21.0,22.0,14.0,10.0,19.0,17.0,8.0,13.0,13.0,7.0,9.0,10.0,4.0,3.0,1.0,1.0,1.0,3.0 A88613,23.0,26.0,22.0,23.0,15.0,22.0,24.0,23.0,22.0,22.0,27.0,24.0,32.0,23.0,23.0,25.0,25.0,25.0,22.0,28.0,19.0,11.0,11.0,22.0,23.0,18.0,25.0,32.0,24.0,33.0,31.0,24.0,31.0,45.0,32.0,34.0,30.0,24.0,32.0,33.0,32.0,33.0,28.0,24.0,27.0,23.0,22.0,24.0,16.0,19.0,21.0,25.0,28.0,36.0,23.0,32.0,34.0,37.0,20.0,29.0,33.0,31.0,26.0,24.0,18.0,30.0,18.0,22.0,20.0,20.0,20.0,9.0,17.0,15.0,17.0,22.0,25.0,25.0,25.0,20.0,14.0,15.0,9.0,2.0,11.0,8.0,6.0,5.0,4.0,1.0,9.0,3.0,3.0,1.0,,3.0 A89001,67.0,78.0,50.0,78.0,72.0,70.0,78.0,88.0,76.0,86.0,67.0,70.0,77.0,88.0,89.0,85.0,80.0,85.0,79.0,66.0,77.0,63.0,62.0,61.0,71.0,71.0,75.0,81.0,83.0,90.0,94.0,76.0,75.0,110.0,108.0,122.0,109.0,108.0,107.0,97.0,114.0,83.0,101.0,101.0,93.0,94.0,81.0,58.0,58.0,92.0,76.0,77.0,73.0,94.0,98.0,82.0,81.0,84.0,85.0,85.0,91.0,89.0,85.0,101.0,85.0,103.0,90.0,93.0,87.0,79.0,71.0,70.0,57.0,67.0,68.0,55.0,44.0,51.0,50.0,27.0,29.0,26.0,27.0,19.0,13.0,23.0,20.0,16.0,14.0,18.0,8.0,9.0,11.0,,2.0,7.0 A89002,30.0,33.0,29.0,30.0,21.0,35.0,28.0,34.0,28.0,32.0,23.0,32.0,24.0,31.0,42.0,27.0,34.0,35.0,44.0,50.0,55.0,57.0,54.0,55.0,58.0,61.0,74.0,82.0,77.0,75.0,77.0,87.0,80.0,83.0,64.0,88.0,74.0,62.0,57.0,83.0,54.0,62.0,62.0,66.0,59.0,61.0,49.0,39.0,42.0,49.0,44.0,35.0,43.0,40.0,44.0,46.0,42.0,58.0,51.0,45.0,55.0,46.0,38.0,46.0,39.0,34.0,47.0,37.0,38.0,34.0,27.0,29.0,31.0,34.0,27.0,19.0,24.0,25.0,25.0,18.0,13.0,14.0,6.0,13.0,8.0,11.0,6.0,5.0,8.0,7.0,5.0,3.0,2.0,4.0,1.0,1.0 A89004,49.0,60.0,47.0,65.0,59.0,50.0,73.0,73.0,73.0,64.0,69.0,67.0,70.0,60.0,58.0,63.0,48.0,56.0,61.0,62.0,68.0,65.0,68.0,69.0,67.0,76.0,67.0,77.0,67.0,67.0,69.0,92.0,79.0,83.0,83.0,75.0,86.0,98.0,80.0,84.0,64.0,82.0,80.0,53.0,81.0,74.0,79.0,54.0,55.0,69.0,45.0,59.0,59.0,72.0,100.0,79.0,72.0,78.0,73.0,86.0,84.0,83.0,87.0,63.0,66.0,73.0,70.0,89.0,78.0,65.0,54.0,50.0,53.0,57.0,58.0,69.0,53.0,76.0,58.0,67.0,43.0,40.0,27.0,44.0,24.0,31.0,27.0,21.0,20.0,12.0,9.0,5.0,8.0,5.0,5.0,5.0 A89005,15.0,27.0,28.0,45.0,25.0,22.0,49.0,25.0,41.0,33.0,33.0,33.0,29.0,39.0,27.0,30.0,36.0,32.0,21.0,23.0,30.0,27.0,34.0,29.0,20.0,36.0,31.0,26.0,29.0,40.0,37.0,37.0,53.0,41.0,37.0,57.0,44.0,34.0,34.0,46.0,39.0,37.0,29.0,43.0,41.0,37.0,36.0,28.0,36.0,29.0,31.0,25.0,29.0,42.0,43.0,32.0,37.0,37.0,39.0,37.0,42.0,47.0,54.0,55.0,36.0,42.0,39.0,35.0,33.0,34.0,34.0,35.0,35.0,38.0,36.0,23.0,20.0,28.0,34.0,23.0,18.0,14.0,21.0,19.0,11.0,15.0,6.0,10.0,18.0,7.0,6.0,5.0,2.0,3.0,1.0,2.0 A89006,36.0,33.0,52.0,29.0,47.0,43.0,55.0,54.0,41.0,55.0,61.0,51.0,50.0,52.0,46.0,51.0,43.0,57.0,40.0,50.0,45.0,50.0,56.0,47.0,53.0,67.0,77.0,81.0,78.0,77.0,97.0,96.0,82.0,100.0,85.0,83.0,79.0,67.0,81.0,66.0,66.0,54.0,53.0,55.0,53.0,42.0,47.0,40.0,36.0,48.0,47.0,33.0,55.0,51.0,51.0,42.0,52.0,58.0,39.0,47.0,48.0,55.0,37.0,44.0,45.0,42.0,51.0,44.0,31.0,26.0,34.0,27.0,24.0,29.0,26.0,32.0,22.0,25.0,27.0,13.0,24.0,12.0,13.0,14.0,10.0,8.0,4.0,9.0,4.0,6.0,4.0,2.0,4.0,1.0,,2.0 A89007,43.0,44.0,41.0,42.0,43.0,51.0,55.0,46.0,57.0,51.0,60.0,52.0,68.0,63.0,61.0,45.0,55.0,63.0,74.0,58.0,56.0,46.0,46.0,43.0,53.0,53.0,68.0,73.0,68.0,64.0,64.0,90.0,85.0,84.0,101.0,80.0,88.0,92.0,70.0,87.0,72.0,81.0,62.0,64.0,67.0,66.0,61.0,64.0,55.0,55.0,58.0,43.0,57.0,83.0,73.0,65.0,68.0,53.0,56.0,65.0,72.0,70.0,73.0,61.0,53.0,61.0,56.0,53.0,58.0,38.0,44.0,44.0,47.0,45.0,37.0,46.0,38.0,55.0,44.0,45.0,30.0,30.0,30.0,15.0,17.0,23.0,9.0,15.0,9.0,7.0,9.0,5.0,8.0,6.0,4.0,7.0 A89008,27.0,36.0,22.0,43.0,33.0,34.0,40.0,31.0,38.0,31.0,28.0,34.0,33.0,44.0,32.0,33.0,32.0,40.0,25.0,32.0,28.0,28.0,31.0,29.0,32.0,43.0,42.0,38.0,44.0,47.0,45.0,47.0,48.0,42.0,32.0,46.0,44.0,40.0,42.0,46.0,39.0,48.0,43.0,27.0,40.0,32.0,28.0,27.0,28.0,35.0,33.0,26.0,37.0,38.0,38.0,41.0,52.0,43.0,38.0,37.0,43.0,43.0,37.0,28.0,39.0,31.0,39.0,35.0,25.0,24.0,22.0,25.0,21.0,20.0,30.0,14.0,21.0,14.0,15.0,9.0,21.0,18.0,11.0,11.0,2.0,8.0,8.0,13.0,4.0,4.0,6.0,5.0,4.0,1.0,,3.0 A89009,47.0,64.0,53.0,68.0,65.0,48.0,42.0,66.0,65.0,49.0,60.0,63.0,58.0,54.0,66.0,45.0,49.0,52.0,50.0,52.0,38.0,43.0,56.0,28.0,50.0,41.0,34.0,53.0,68.0,51.0,59.0,68.0,66.0,70.0,85.0,71.0,59.0,84.0,67.0,67.0,66.0,63.0,59.0,54.0,58.0,64.0,51.0,44.0,59.0,46.0,52.0,57.0,70.0,74.0,76.0,53.0,74.0,93.0,56.0,66.0,62.0,79.0,65.0,57.0,60.0,71.0,53.0,51.0,56.0,51.0,34.0,45.0,57.0,31.0,49.0,26.0,36.0,35.0,31.0,20.0,24.0,25.0,25.0,25.0,18.0,15.0,19.0,15.0,13.0,11.0,6.0,9.0,2.0,5.0,2.0,5.0 A89010,49.0,55.0,47.0,54.0,55.0,60.0,70.0,83.0,67.0,45.0,72.0,61.0,55.0,64.0,94.0,71.0,71.0,67.0,74.0,68.0,57.0,71.0,61.0,52.0,69.0,56.0,72.0,67.0,61.0,65.0,62.0,69.0,79.0,72.0,79.0,72.0,81.0,73.0,69.0,75.0,79.0,63.0,87.0,79.0,69.0,87.0,88.0,66.0,51.0,67.0,56.0,77.0,81.0,90.0,105.0,107.0,77.0,112.0,89.0,97.0,95.0,96.0,88.0,85.0,80.0,87.0,83.0,93.0,65.0,63.0,81.0,58.0,68.0,61.0,65.0,59.0,59.0,66.0,69.0,34.0,53.0,43.0,39.0,28.0,30.0,22.0,30.0,28.0,14.0,10.0,7.0,6.0,7.0,4.0,5.0,7.0 A89011,27.0,25.0,30.0,14.0,27.0,22.0,19.0,24.0,29.0,30.0,33.0,38.0,30.0,29.0,33.0,24.0,22.0,30.0,29.0,26.0,20.0,33.0,18.0,18.0,28.0,26.0,20.0,22.0,29.0,26.0,30.0,24.0,44.0,39.0,35.0,36.0,29.0,39.0,33.0,38.0,34.0,32.0,31.0,26.0,32.0,36.0,25.0,30.0,29.0,17.0,23.0,22.0,37.0,22.0,33.0,34.0,29.0,40.0,44.0,34.0,28.0,35.0,44.0,32.0,26.0,31.0,33.0,39.0,24.0,22.0,24.0,29.0,15.0,23.0,16.0,18.0,21.0,24.0,22.0,18.0,14.0,14.0,8.0,9.0,6.0,5.0,8.0,2.0,6.0,2.0,4.0,1.0,2.0,4.0,1.0, A89012,51.0,57.0,51.0,61.0,76.0,49.0,54.0,71.0,74.0,76.0,68.0,71.0,72.0,76.0,81.0,76.0,98.0,70.0,88.0,74.0,56.0,79.0,49.0,54.0,74.0,73.0,56.0,57.0,81.0,74.0,65.0,64.0,63.0,78.0,79.0,83.0,95.0,96.0,73.0,98.0,72.0,100.0,83.0,80.0,80.0,76.0,74.0,86.0,72.0,76.0,78.0,90.0,84.0,81.0,85.0,74.0,55.0,60.0,53.0,59.0,65.0,54.0,57.0,63.0,50.0,58.0,43.0,65.0,59.0,60.0,75.0,72.0,65.0,86.0,75.0,72.0,73.0,73.0,61.0,34.0,25.0,24.0,23.0,15.0,13.0,14.0,11.0,12.0,4.0,3.0,4.0,3.0,3.0,5.0,,2.0 A89013,13.0,21.0,25.0,21.0,19.0,19.0,19.0,33.0,23.0,21.0,18.0,22.0,18.0,24.0,16.0,19.0,11.0,28.0,21.0,33.0,42.0,38.0,60.0,48.0,66.0,64.0,59.0,54.0,70.0,69.0,53.0,61.0,66.0,60.0,56.0,58.0,53.0,50.0,43.0,49.0,47.0,47.0,39.0,51.0,39.0,26.0,37.0,34.0,33.0,32.0,22.0,25.0,37.0,33.0,25.0,39.0,41.0,29.0,37.0,29.0,32.0,40.0,44.0,44.0,41.0,30.0,24.0,36.0,34.0,20.0,29.0,28.0,27.0,19.0,26.0,21.0,23.0,28.0,24.0,22.0,13.0,31.0,13.0,8.0,13.0,17.0,10.0,12.0,5.0,6.0,5.0,5.0,3.0,6.0,1.0,1.0 A89015,26.0,25.0,41.0,23.0,35.0,36.0,38.0,42.0,35.0,32.0,32.0,42.0,45.0,42.0,31.0,48.0,43.0,51.0,52.0,50.0,52.0,55.0,54.0,37.0,58.0,47.0,42.0,39.0,43.0,43.0,46.0,48.0,43.0,46.0,58.0,52.0,43.0,49.0,41.0,52.0,53.0,41.0,62.0,53.0,44.0,50.0,59.0,49.0,37.0,48.0,50.0,55.0,55.0,80.0,62.0,62.0,69.0,65.0,64.0,78.0,87.0,77.0,80.0,68.0,73.0,64.0,75.0,67.0,78.0,54.0,49.0,54.0,56.0,50.0,46.0,49.0,52.0,58.0,49.0,43.0,37.0,36.0,34.0,22.0,31.0,23.0,31.0,16.0,14.0,6.0,13.0,17.0,7.0,6.0,2.0,9.0 A89016,32.0,26.0,44.0,31.0,41.0,32.0,39.0,35.0,39.0,36.0,34.0,42.0,44.0,44.0,58.0,44.0,49.0,36.0,55.0,40.0,36.0,47.0,52.0,50.0,84.0,67.0,72.0,65.0,78.0,90.0,101.0,93.0,71.0,94.0,82.0,83.0,99.0,81.0,87.0,78.0,76.0,96.0,77.0,83.0,74.0,78.0,65.0,52.0,47.0,46.0,54.0,36.0,51.0,55.0,76.0,59.0,75.0,62.0,59.0,50.0,55.0,53.0,68.0,54.0,61.0,56.0,62.0,68.0,51.0,47.0,53.0,51.0,37.0,40.0,40.0,35.0,38.0,55.0,37.0,22.0,27.0,21.0,22.0,12.0,22.0,18.0,22.0,15.0,8.0,9.0,5.0,12.0,1.0,2.0,1.0,2.0 A89017,55.0,64.0,80.0,76.0,76.0,83.0,78.0,87.0,83.0,79.0,81.0,80.0,89.0,77.0,68.0,86.0,69.0,78.0,78.0,69.0,91.0,88.0,79.0,87.0,85.0,91.0,94.0,110.0,118.0,132.0,105.0,109.0,132.0,139.0,145.0,135.0,135.0,125.0,111.0,124.0,116.0,103.0,110.0,108.0,96.0,85.0,91.0,83.0,83.0,84.0,92.0,107.0,93.0,103.0,99.0,89.0,88.0,81.0,97.0,88.0,106.0,100.0,84.0,95.0,92.0,88.0,112.0,101.0,88.0,80.0,61.0,73.0,68.0,63.0,46.0,44.0,51.0,60.0,57.0,35.0,28.0,31.0,27.0,14.0,21.0,11.0,16.0,22.0,16.0,14.0,12.0,7.0,10.0,5.0,2.0,1.0 A89018,26.0,21.0,22.0,21.0,27.0,19.0,28.0,34.0,18.0,31.0,29.0,25.0,36.0,28.0,29.0,23.0,34.0,26.0,36.0,41.0,24.0,29.0,23.0,30.0,28.0,47.0,25.0,35.0,36.0,34.0,45.0,42.0,42.0,37.0,41.0,38.0,33.0,54.0,47.0,44.0,46.0,35.0,40.0,32.0,38.0,33.0,35.0,28.0,41.0,35.0,35.0,40.0,44.0,45.0,41.0,45.0,45.0,36.0,53.0,31.0,39.0,38.0,36.0,35.0,36.0,31.0,26.0,32.0,35.0,28.0,27.0,24.0,27.0,26.0,29.0,18.0,16.0,27.0,22.0,15.0,16.0,19.0,16.0,11.0,3.0,11.0,10.0,5.0,14.0,4.0,3.0,3.0,2.0,1.0,2.0,3.0 A89019,63.0,69.0,69.0,70.0,81.0,72.0,92.0,86.0,120.0,93.0,87.0,93.0,96.0,109.0,82.0,97.0,78.0,98.0,81.0,96.0,85.0,83.0,105.0,75.0,91.0,93.0,94.0,95.0,99.0,86.0,95.0,103.0,86.0,109.0,126.0,109.0,106.0,104.0,115.0,103.0,96.0,96.0,89.0,92.0,106.0,80.0,91.0,59.0,76.0,67.0,92.0,87.0,81.0,91.0,96.0,96.0,83.0,92.0,106.0,87.0,94.0,119.0,96.0,103.0,111.0,111.0,93.0,102.0,87.0,83.0,62.0,59.0,62.0,49.0,66.0,64.0,46.0,63.0,56.0,40.0,35.0,25.0,40.0,22.0,30.0,19.0,23.0,21.0,14.0,13.0,11.0,14.0,4.0,2.0,2.0,7.0 A89020,35.0,36.0,33.0,33.0,40.0,50.0,43.0,37.0,42.0,41.0,45.0,57.0,36.0,45.0,40.0,50.0,46.0,39.0,46.0,46.0,47.0,60.0,51.0,67.0,54.0,59.0,62.0,45.0,65.0,70.0,62.0,70.0,67.0,69.0,78.0,104.0,78.0,97.0,90.0,93.0,98.0,75.0,65.0,75.0,72.0,75.0,69.0,68.0,61.0,53.0,72.0,55.0,69.0,85.0,73.0,60.0,80.0,71.0,54.0,59.0,66.0,63.0,72.0,59.0,59.0,54.0,66.0,51.0,48.0,45.0,46.0,38.0,36.0,44.0,32.0,28.0,37.0,36.0,27.0,18.0,23.0,17.0,20.0,21.0,16.0,11.0,5.0,9.0,10.0,6.0,2.0,2.0,3.0,2.0,1.0,2.0 A89021,41.0,41.0,37.0,38.0,43.0,42.0,51.0,64.0,42.0,47.0,37.0,52.0,49.0,51.0,46.0,51.0,54.0,61.0,58.0,46.0,43.0,56.0,37.0,45.0,60.0,38.0,58.0,55.0,42.0,70.0,54.0,58.0,54.0,55.0,65.0,51.0,54.0,65.0,58.0,52.0,42.0,46.0,55.0,49.0,60.0,44.0,41.0,38.0,38.0,37.0,53.0,53.0,52.0,47.0,52.0,66.0,67.0,58.0,56.0,63.0,78.0,70.0,68.0,64.0,56.0,55.0,50.0,53.0,47.0,43.0,55.0,48.0,40.0,37.0,42.0,41.0,39.0,45.0,32.0,34.0,17.0,25.0,20.0,16.0,13.0,17.0,10.0,14.0,11.0,10.0,8.0,6.0,4.0,1.0,3.0,2.0 A89022,21.0,19.0,24.0,27.0,24.0,22.0,13.0,24.0,24.0,28.0,27.0,31.0,23.0,29.0,30.0,23.0,31.0,31.0,26.0,38.0,22.0,27.0,35.0,34.0,23.0,25.0,25.0,29.0,23.0,23.0,29.0,33.0,29.0,27.0,36.0,31.0,33.0,33.0,36.0,29.0,40.0,27.0,27.0,26.0,40.0,30.0,29.0,25.0,25.0,46.0,34.0,34.0,44.0,36.0,43.0,30.0,28.0,38.0,31.0,40.0,38.0,28.0,34.0,34.0,41.0,20.0,30.0,31.0,33.0,29.0,26.0,29.0,21.0,30.0,32.0,31.0,42.0,30.0,27.0,22.0,17.0,19.0,17.0,9.0,12.0,18.0,15.0,12.0,9.0,5.0,2.0,,3.0,1.0,1.0,2.0 A89023,44.0,39.0,37.0,40.0,59.0,40.0,50.0,47.0,40.0,61.0,54.0,43.0,51.0,52.0,42.0,38.0,55.0,48.0,41.0,51.0,44.0,40.0,37.0,50.0,52.0,35.0,38.0,40.0,34.0,44.0,50.0,58.0,59.0,63.0,60.0,52.0,58.0,51.0,52.0,57.0,52.0,38.0,60.0,57.0,42.0,57.0,44.0,43.0,43.0,58.0,38.0,47.0,44.0,50.0,60.0,56.0,78.0,55.0,57.0,67.0,67.0,59.0,55.0,52.0,54.0,46.0,61.0,44.0,58.0,36.0,44.0,31.0,49.0,32.0,43.0,40.0,28.0,34.0,38.0,34.0,33.0,24.0,13.0,20.0,13.0,16.0,12.0,15.0,13.0,5.0,6.0,7.0,3.0,12.0,5.0,4.0 A89024,43.0,38.0,41.0,47.0,42.0,35.0,45.0,33.0,50.0,41.0,37.0,46.0,39.0,36.0,48.0,47.0,44.0,47.0,32.0,51.0,47.0,34.0,33.0,31.0,65.0,42.0,37.0,50.0,56.0,54.0,36.0,58.0,61.0,59.0,57.0,34.0,54.0,57.0,53.0,45.0,49.0,55.0,40.0,55.0,38.0,40.0,36.0,41.0,29.0,47.0,44.0,55.0,43.0,57.0,60.0,65.0,61.0,62.0,49.0,56.0,60.0,52.0,41.0,39.0,50.0,45.0,44.0,46.0,49.0,36.0,29.0,37.0,35.0,24.0,27.0,33.0,42.0,34.0,34.0,33.0,31.0,16.0,17.0,7.0,13.0,11.0,15.0,14.0,11.0,4.0,5.0,4.0,4.0,1.0,2.0,3.0 A89025,33.0,49.0,39.0,40.0,38.0,47.0,56.0,68.0,65.0,79.0,68.0,76.0,66.0,73.0,86.0,88.0,79.0,75.0,72.0,50.0,69.0,61.0,56.0,59.0,47.0,47.0,74.0,70.0,70.0,52.0,59.0,66.0,78.0,73.0,58.0,71.0,69.0,75.0,70.0,72.0,62.0,86.0,60.0,88.0,66.0,77.0,80.0,56.0,68.0,54.0,77.0,72.0,58.0,73.0,78.0,66.0,59.0,72.0,55.0,52.0,68.0,49.0,46.0,59.0,44.0,52.0,47.0,58.0,48.0,41.0,45.0,51.0,38.0,57.0,55.0,38.0,58.0,50.0,35.0,19.0,21.0,18.0,17.0,14.0,10.0,12.0,7.0,5.0,3.0,5.0,3.0,4.0,,2.0,4.0,5.0 A89026,25.0,25.0,22.0,21.0,21.0,41.0,39.0,30.0,29.0,45.0,35.0,40.0,43.0,45.0,45.0,44.0,37.0,43.0,47.0,29.0,34.0,42.0,37.0,42.0,32.0,52.0,39.0,41.0,61.0,43.0,50.0,51.0,47.0,57.0,43.0,50.0,56.0,46.0,54.0,42.0,45.0,36.0,41.0,55.0,37.0,50.0,56.0,36.0,43.0,44.0,38.0,28.0,37.0,59.0,46.0,53.0,42.0,48.0,58.0,41.0,48.0,56.0,45.0,50.0,53.0,56.0,64.0,45.0,48.0,35.0,50.0,50.0,31.0,38.0,37.0,33.0,53.0,36.0,29.0,35.0,28.0,17.0,14.0,15.0,16.0,11.0,11.0,9.0,12.0,6.0,5.0,3.0,4.0,2.0,5.0,1.0 A89027,30.0,25.0,34.0,39.0,28.0,33.0,38.0,31.0,45.0,41.0,40.0,44.0,39.0,43.0,52.0,45.0,40.0,47.0,39.0,37.0,31.0,30.0,34.0,38.0,23.0,33.0,34.0,35.0,38.0,38.0,30.0,36.0,35.0,43.0,44.0,40.0,51.0,33.0,47.0,50.0,36.0,42.0,51.0,38.0,28.0,41.0,39.0,24.0,34.0,34.0,34.0,26.0,44.0,38.0,45.0,33.0,51.0,41.0,51.0,55.0,35.0,41.0,51.0,44.0,43.0,49.0,41.0,37.0,27.0,31.0,21.0,25.0,23.0,23.0,22.0,22.0,18.0,24.0,30.0,12.0,10.0,14.0,14.0,7.0,10.0,8.0,8.0,10.0,5.0,5.0,4.0,1.0,2.0,5.0,,1.0 A89028,29.0,29.0,34.0,40.0,43.0,31.0,33.0,33.0,38.0,37.0,57.0,35.0,42.0,51.0,47.0,43.0,52.0,48.0,55.0,47.0,45.0,38.0,47.0,35.0,46.0,44.0,44.0,56.0,37.0,41.0,31.0,46.0,33.0,43.0,42.0,53.0,40.0,50.0,41.0,47.0,34.0,47.0,33.0,47.0,49.0,37.0,40.0,36.0,43.0,33.0,52.0,50.0,68.0,73.0,75.0,57.0,71.0,58.0,55.0,59.0,59.0,41.0,59.0,38.0,39.0,43.0,60.0,47.0,52.0,38.0,38.0,37.0,36.0,24.0,29.0,39.0,38.0,29.0,38.0,27.0,26.0,22.0,24.0,21.0,17.0,18.0,10.0,16.0,12.0,8.0,3.0,5.0,3.0,7.0,,5.0 A89030,25.0,31.0,35.0,41.0,25.0,22.0,36.0,34.0,41.0,38.0,37.0,34.0,37.0,53.0,37.0,41.0,45.0,37.0,44.0,41.0,36.0,27.0,35.0,28.0,36.0,38.0,45.0,43.0,41.0,30.0,36.0,39.0,51.0,40.0,50.0,45.0,44.0,35.0,40.0,52.0,49.0,39.0,39.0,40.0,56.0,52.0,34.0,32.0,37.0,36.0,32.0,44.0,41.0,50.0,49.0,39.0,39.0,46.0,45.0,43.0,41.0,43.0,42.0,45.0,38.0,39.0,42.0,35.0,32.0,33.0,34.0,38.0,29.0,34.0,36.0,35.0,38.0,38.0,35.0,23.0,21.0,16.0,20.0,14.0,14.0,14.0,16.0,6.0,12.0,4.0,6.0,9.0,4.0,2.0,3.0,1.0 A89031,53.0,45.0,31.0,25.0,34.0,33.0,33.0,46.0,39.0,45.0,39.0,35.0,38.0,49.0,35.0,26.0,38.0,37.0,48.0,43.0,48.0,49.0,36.0,56.0,58.0,62.0,76.0,85.0,77.0,85.0,76.0,90.0,105.0,99.0,96.0,97.0,68.0,89.0,78.0,68.0,58.0,53.0,60.0,40.0,39.0,50.0,35.0,41.0,47.0,48.0,35.0,42.0,52.0,33.0,42.0,31.0,41.0,31.0,44.0,26.0,35.0,48.0,48.0,36.0,31.0,38.0,27.0,17.0,33.0,19.0,22.0,24.0,25.0,23.0,16.0,14.0,21.0,15.0,16.0,7.0,15.0,13.0,10.0,8.0,5.0,10.0,8.0,,6.0,2.0,1.0,3.0,,1.0,3.0, A89032,37.0,35.0,38.0,33.0,32.0,44.0,39.0,56.0,43.0,51.0,52.0,39.0,43.0,56.0,33.0,48.0,55.0,52.0,52.0,52.0,51.0,52.0,65.0,41.0,44.0,50.0,52.0,47.0,60.0,51.0,64.0,41.0,52.0,85.0,71.0,64.0,66.0,63.0,56.0,47.0,68.0,51.0,64.0,50.0,58.0,64.0,60.0,61.0,49.0,49.0,60.0,40.0,71.0,61.0,59.0,70.0,77.0,66.0,50.0,66.0,71.0,61.0,68.0,62.0,62.0,57.0,63.0,65.0,70.0,56.0,50.0,46.0,47.0,47.0,44.0,33.0,50.0,33.0,43.0,22.0,23.0,23.0,17.0,21.0,20.0,19.0,21.0,19.0,10.0,6.0,5.0,8.0,4.0,3.0,4.0,6.0 A89034,19.0,19.0,15.0,19.0,28.0,19.0,20.0,21.0,24.0,17.0,24.0,18.0,20.0,20.0,18.0,19.0,24.0,17.0,35.0,39.0,34.0,39.0,33.0,35.0,41.0,52.0,53.0,74.0,60.0,48.0,60.0,75.0,56.0,61.0,78.0,56.0,65.0,55.0,51.0,50.0,52.0,46.0,46.0,38.0,30.0,39.0,35.0,25.0,28.0,27.0,29.0,26.0,25.0,20.0,27.0,28.0,22.0,32.0,17.0,27.0,27.0,17.0,18.0,15.0,21.0,19.0,20.0,22.0,19.0,11.0,12.0,10.0,14.0,11.0,9.0,12.0,12.0,11.0,17.0,6.0,6.0,1.0,5.0,3.0,3.0,3.0,2.0,4.0,3.0,2.0,2.0,1.0,,1.0,, A89035,62.0,59.0,64.0,80.0,64.0,61.0,64.0,71.0,56.0,63.0,51.0,76.0,73.0,71.0,75.0,63.0,49.0,60.0,55.0,45.0,51.0,64.0,48.0,47.0,43.0,62.0,60.0,60.0,73.0,60.0,63.0,66.0,88.0,74.0,95.0,76.0,67.0,72.0,73.0,70.0,71.0,76.0,66.0,61.0,71.0,65.0,78.0,57.0,57.0,54.0,43.0,56.0,70.0,53.0,71.0,52.0,76.0,60.0,50.0,73.0,74.0,72.0,72.0,60.0,68.0,64.0,52.0,59.0,53.0,54.0,58.0,46.0,45.0,46.0,34.0,44.0,47.0,38.0,44.0,30.0,23.0,27.0,18.0,9.0,13.0,16.0,6.0,12.0,15.0,9.0,6.0,5.0,6.0,6.0,2.0,3.0 A89036,10.0,8.0,8.0,12.0,5.0,14.0,13.0,15.0,16.0,9.0,15.0,16.0,16.0,18.0,17.0,13.0,8.0,10.0,17.0,11.0,15.0,9.0,11.0,12.0,11.0,9.0,21.0,15.0,13.0,7.0,16.0,17.0,12.0,15.0,12.0,15.0,20.0,17.0,19.0,16.0,25.0,12.0,12.0,8.0,14.0,4.0,14.0,16.0,20.0,10.0,16.0,18.0,19.0,19.0,9.0,16.0,25.0,12.0,17.0,18.0,14.0,18.0,23.0,10.0,23.0,11.0,18.0,12.0,12.0,7.0,8.0,11.0,16.0,10.0,7.0,11.0,11.0,8.0,9.0,8.0,3.0,9.0,1.0,7.0,4.0,4.0,6.0,1.0,1.0,2.0,2.0,,,,,1.0 A89040,11.0,10.0,14.0,15.0,18.0,11.0,15.0,16.0,17.0,22.0,21.0,26.0,13.0,17.0,26.0,15.0,17.0,19.0,13.0,26.0,30.0,38.0,33.0,20.0,33.0,35.0,34.0,32.0,48.0,51.0,45.0,48.0,44.0,50.0,46.0,51.0,40.0,53.0,34.0,39.0,38.0,39.0,41.0,46.0,37.0,34.0,28.0,25.0,31.0,26.0,25.0,29.0,31.0,31.0,38.0,27.0,37.0,32.0,58.0,26.0,30.0,38.0,42.0,37.0,37.0,38.0,32.0,30.0,30.0,37.0,26.0,30.0,25.0,31.0,28.0,27.0,28.0,19.0,21.0,16.0,14.0,21.0,21.0,10.0,15.0,11.0,9.0,6.0,8.0,4.0,3.0,2.0,4.0,5.0,1.0,2.0 A89041,43.0,39.0,48.0,54.0,50.0,64.0,53.0,50.0,42.0,55.0,67.0,52.0,50.0,65.0,41.0,68.0,53.0,66.0,60.0,43.0,59.0,35.0,37.0,39.0,32.0,42.0,46.0,47.0,48.0,49.0,41.0,56.0,56.0,54.0,65.0,60.0,57.0,58.0,63.0,61.0,44.0,55.0,52.0,55.0,55.0,56.0,61.0,53.0,41.0,40.0,42.0,49.0,54.0,71.0,37.0,45.0,47.0,64.0,53.0,44.0,53.0,52.0,58.0,49.0,44.0,38.0,41.0,58.0,43.0,34.0,46.0,36.0,33.0,31.0,19.0,29.0,29.0,31.0,16.0,22.0,19.0,21.0,9.0,12.0,8.0,14.0,6.0,6.0,11.0,3.0,1.0,5.0,3.0,4.0,3.0,4.0 A89614,15.0,24.0,24.0,25.0,27.0,19.0,24.0,33.0,41.0,22.0,21.0,30.0,32.0,22.0,34.0,26.0,31.0,38.0,33.0,23.0,33.0,27.0,32.0,23.0,25.0,20.0,25.0,26.0,28.0,28.0,38.0,30.0,34.0,35.0,27.0,33.0,36.0,29.0,39.0,25.0,33.0,35.0,32.0,28.0,20.0,23.0,37.0,22.0,24.0,23.0,23.0,33.0,21.0,45.0,35.0,33.0,30.0,29.0,27.0,25.0,40.0,28.0,38.0,27.0,35.0,18.0,27.0,29.0,22.0,22.0,12.0,26.0,16.0,16.0,16.0,16.0,17.0,17.0,20.0,12.0,11.0,10.0,16.0,10.0,7.0,6.0,5.0,10.0,5.0,3.0,2.0,2.0,7.0,2.0,,6.0 A89616,9.0,17.0,9.0,6.0,11.0,14.0,11.0,12.0,16.0,8.0,14.0,14.0,17.0,19.0,13.0,26.0,19.0,15.0,15.0,12.0,20.0,8.0,23.0,12.0,13.0,15.0,17.0,21.0,17.0,15.0,20.0,29.0,18.0,18.0,13.0,20.0,22.0,19.0,16.0,10.0,13.0,16.0,22.0,13.0,13.0,23.0,13.0,25.0,15.0,23.0,14.0,20.0,16.0,22.0,21.0,20.0,20.0,17.0,17.0,14.0,20.0,18.0,17.0,24.0,15.0,23.0,15.0,17.0,14.0,16.0,16.0,16.0,11.0,14.0,17.0,11.0,7.0,21.0,16.0,13.0,6.0,9.0,5.0,5.0,5.0,2.0,2.0,2.0,2.0,,1.0,,1.0,1.0,, A89617,8.0,11.0,7.0,20.0,12.0,10.0,17.0,15.0,26.0,29.0,18.0,15.0,22.0,27.0,15.0,17.0,17.0,15.0,20.0,15.0,17.0,22.0,28.0,19.0,16.0,11.0,20.0,20.0,17.0,20.0,26.0,23.0,21.0,24.0,39.0,22.0,27.0,27.0,29.0,24.0,25.0,27.0,31.0,23.0,28.0,16.0,17.0,25.0,20.0,22.0,21.0,20.0,23.0,24.0,31.0,27.0,18.0,24.0,37.0,42.0,39.0,18.0,26.0,29.0,31.0,23.0,27.0,27.0,31.0,43.0,21.0,28.0,17.0,21.0,16.0,19.0,23.0,16.0,16.0,19.0,23.0,10.0,7.0,8.0,6.0,3.0,8.0,6.0,9.0,2.0,4.0,5.0,1.0,2.0,3.0,5.0 A89623,11.0,15.0,14.0,15.0,15.0,14.0,18.0,20.0,25.0,11.0,13.0,23.0,14.0,20.0,20.0,20.0,24.0,16.0,15.0,12.0,18.0,15.0,23.0,12.0,17.0,23.0,22.0,31.0,29.0,31.0,23.0,28.0,36.0,30.0,43.0,43.0,32.0,31.0,33.0,37.0,34.0,29.0,32.0,19.0,31.0,32.0,22.0,23.0,23.0,19.0,16.0,22.0,16.0,24.0,21.0,17.0,21.0,17.0,22.0,16.0,16.0,19.0,16.0,20.0,14.0,18.0,12.0,10.0,18.0,22.0,9.0,8.0,14.0,17.0,18.0,8.0,9.0,7.0,15.0,6.0,10.0,10.0,1.0,4.0,1.0,5.0,3.0,2.0,4.0,,,4.0,2.0,2.0,,1.0 Y00184,49.0,65.0,57.0,61.0,61.0,63.0,82.0,71.0,68.0,70.0,57.0,67.0,76.0,73.0,81.0,76.0,65.0,71.0,73.0,64.0,58.0,93.0,67.0,96.0,102.0,106.0,133.0,167.0,170.0,151.0,147.0,121.0,138.0,167.0,165.0,206.0,167.0,192.0,145.0,161.0,136.0,118.0,97.0,125.0,86.0,98.0,83.0,88.0,78.0,71.0,59.0,50.0,55.0,39.0,46.0,51.0,40.0,33.0,28.0,25.0,28.0,28.0,15.0,19.0,15.0,22.0,11.0,22.0,13.0,11.0,19.0,12.0,18.0,9.0,4.0,3.0,3.0,5.0,4.0,3.0,2.0,3.0,3.0,3.0,3.0,4.0,1.0,,2.0,2.0,3.0,1.0,1.0,,, Y00286,17.0,18.0,13.0,18.0,10.0,23.0,10.0,21.0,19.0,15.0,23.0,26.0,15.0,22.0,14.0,21.0,20.0,14.0,18.0,10.0,25.0,27.0,17.0,20.0,22.0,25.0,15.0,21.0,23.0,21.0,23.0,21.0,22.0,26.0,23.0,32.0,25.0,21.0,15.0,34.0,23.0,26.0,21.0,23.0,16.0,20.0,20.0,18.0,24.0,13.0,21.0,13.0,22.0,24.0,21.0,27.0,17.0,24.0,24.0,23.0,16.0,34.0,25.0,22.0,16.0,28.0,18.0,21.0,12.0,27.0,17.0,13.0,17.0,16.0,15.0,9.0,13.0,16.0,13.0,9.0,8.0,8.0,6.0,6.0,1.0,3.0,4.0,7.0,3.0,4.0,,1.0,2.0,2.0,,2.0 Y01262,,,,,,,,,,,,,,,,,,,,,,1.0,,,,1.0,1.0,,,,,2.0,1.0,,,,2.0,,3.0,,1.0,,1.0,1.0,1.0,2.0,3.0,,,2.0,2.0,1.0,,,,,,,,,1.0,,,2.0,,,1.0,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,, Y03303,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,1.0,,,,1.0,,,,,,1.0,,,1.0,2.0,,1.0,2.0,,,,1.0,2.0,,1.0,,,,,,1.0,,1.0,,,,,,2.0,,,,,,,,,,,,,,,,,,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 C81001,46.0,48.0,64.0,66.0,55.0,56.0,52.0,79.0,54.0,72.0,70.0,50.0,68.0,70.0,72.0,52.0,71.0,59.0,68.0,63.0,49.0,41.0,51.0,36.0,54.0,68.0,63.0,68.0,89.0,85.0,81.0,72.0,85.0,107.0,86.0,86.0,77.0,58.0,79.0,93.0,73.0,76.0,86.0,67.0,60.0,73.0,54.0,42.0,63.0,68.0,62.0,63.0,63.0,73.0,86.0,89.0,87.0,98.0,82.0,79.0,91.0,69.0,93.0,77.0,81.0,66.0,98.0,68.0,73.0,51.0,64.0,52.0,64.0,40.0,51.0,66.0,69.0,52.0,55.0,54.0,46.0,32.0,33.0,29.0,19.0,22.0,13.0,13.0,16.0,13.0,10.0,7.0,3.0,1.0,,4.0 C81002,47.0,38.0,47.0,46.0,64.0,51.0,54.0,76.0,69.0,50.0,55.0,64.0,58.0,77.0,67.0,81.0,72.0,56.0,74.0,60.0,63.0,53.0,59.0,75.0,49.0,50.0,60.0,54.0,52.0,61.0,80.0,71.0,71.0,56.0,79.0,75.0,64.0,77.0,80.0,79.0,52.0,73.0,86.0,66.0,83.0,88.0,67.0,83.0,52.0,76.0,86.0,79.0,100.0,112.0,92.0,79.0,88.0,93.0,104.0,114.0,90.0,77.0,91.0,82.0,72.0,85.0,87.0,71.0,71.0,68.0,63.0,66.0,64.0,58.0,54.0,73.0,58.0,86.0,71.0,56.0,67.0,55.0,34.0,32.0,33.0,25.0,32.0,19.0,16.0,15.0,16.0,8.0,6.0,11.0,5.0,9.0 C81003,28.0,37.0,38.0,32.0,38.0,35.0,44.0,43.0,51.0,40.0,45.0,53.0,42.0,50.0,55.0,56.0,49.0,54.0,47.0,40.0,46.0,34.0,52.0,35.0,48.0,45.0,46.0,47.0,56.0,44.0,54.0,48.0,67.0,66.0,73.0,71.0,67.0,55.0,82.0,88.0,69.0,60.0,66.0,77.0,59.0,52.0,79.0,51.0,57.0,56.0,78.0,69.0,87.0,82.0,92.0,90.0,76.0,78.0,88.0,88.0,82.0,93.0,89.0,89.0,73.0,77.0,76.0,59.0,71.0,60.0,56.0,60.0,58.0,59.0,66.0,59.0,52.0,67.0,59.0,49.0,42.0,42.0,25.0,24.0,18.0,13.0,13.0,17.0,20.0,9.0,12.0,5.0,5.0,3.0,6.0,7.0 C81004,34.0,50.0,40.0,38.0,34.0,44.0,51.0,62.0,51.0,49.0,46.0,45.0,52.0,54.0,64.0,48.0,50.0,51.0,48.0,53.0,53.0,53.0,46.0,50.0,42.0,57.0,46.0,52.0,58.0,72.0,67.0,74.0,57.0,71.0,59.0,67.0,60.0,53.0,57.0,56.0,54.0,54.0,63.0,47.0,53.0,66.0,71.0,46.0,54.0,64.0,73.0,62.0,78.0,73.0,65.0,75.0,77.0,65.0,79.0,79.0,82.0,71.0,73.0,71.0,62.0,67.0,65.0,49.0,61.0,60.0,70.0,54.0,68.0,59.0,57.0,69.0,64.0,71.0,70.0,33.0,42.0,47.0,42.0,25.0,34.0,18.0,25.0,26.0,18.0,12.0,5.0,7.0,7.0,3.0,4.0,4.0 C81005,75.0,73.0,73.0,68.0,90.0,79.0,87.0,103.0,111.0,79.0,117.0,113.0,103.0,86.0,98.0,94.0,83.0,83.0,62.0,89.0,88.0,71.0,74.0,91.0,89.0,78.0,87.0,99.0,103.0,104.0,98.0,109.0,116.0,106.0,126.0,100.0,110.0,128.0,113.0,110.0,91.0,107.0,105.0,86.0,102.0,92.0,116.0,103.0,95.0,88.0,106.0,104.0,147.0,131.0,132.0,121.0,142.0,114.0,136.0,134.0,110.0,137.0,116.0,120.0,116.0,94.0,95.0,95.0,114.0,88.0,91.0,96.0,87.0,104.0,87.0,78.0,107.0,101.0,99.0,68.0,79.0,54.0,55.0,43.0,30.0,29.0,24.0,17.0,18.0,13.0,10.0,10.0,9.0,5.0,4.0,8.0 C81006,185.0,162.0,159.0,165.0,151.0,159.0,169.0,158.0,187.0,171.0,161.0,160.0,154.0,148.0,156.0,164.0,161.0,150.0,147.0,153.0,149.0,151.0,148.0,165.0,182.0,212.0,218.0,261.0,228.0,280.0,263.0,293.0,261.0,260.0,314.0,273.0,271.0,267.0,258.0,254.0,261.0,245.0,235.0,203.0,199.0,148.0,188.0,215.0,180.0,162.0,169.0,149.0,160.0,135.0,151.0,133.0,178.0,145.0,146.0,134.0,132.0,129.0,117.0,109.0,140.0,115.0,82.0,87.0,85.0,83.0,84.0,79.0,67.0,76.0,56.0,50.0,65.0,77.0,53.0,33.0,46.0,33.0,32.0,23.0,20.0,33.0,11.0,14.0,13.0,12.0,8.0,7.0,7.0,8.0,1.0,13.0 C81007,68.0,68.0,69.0,69.0,63.0,74.0,72.0,59.0,75.0,74.0,65.0,77.0,73.0,73.0,70.0,66.0,61.0,69.0,63.0,55.0,55.0,65.0,64.0,58.0,70.0,91.0,102.0,120.0,107.0,96.0,112.0,85.0,109.0,136.0,118.0,110.0,104.0,102.0,94.0,116.0,92.0,101.0,92.0,98.0,97.0,85.0,79.0,81.0,79.0,72.0,84.0,67.0,44.0,72.0,79.0,68.0,67.0,62.0,59.0,61.0,65.0,58.0,58.0,56.0,52.0,44.0,48.0,44.0,38.0,48.0,39.0,45.0,35.0,35.0,35.0,37.0,30.0,47.0,38.0,29.0,31.0,28.0,24.0,17.0,17.0,21.0,13.0,13.0,14.0,7.0,8.0,3.0,3.0,4.0,1.0,7.0 C81008,49.0,47.0,54.0,53.0,42.0,50.0,61.0,47.0,61.0,67.0,60.0,47.0,49.0,59.0,58.0,54.0,59.0,55.0,52.0,36.0,55.0,45.0,38.0,38.0,37.0,40.0,55.0,54.0,61.0,70.0,62.0,60.0,64.0,69.0,70.0,68.0,58.0,75.0,66.0,49.0,66.0,57.0,70.0,54.0,83.0,66.0,46.0,65.0,55.0,48.0,41.0,60.0,57.0,69.0,54.0,77.0,61.0,71.0,72.0,66.0,82.0,57.0,84.0,66.0,73.0,69.0,56.0,57.0,51.0,63.0,58.0,50.0,54.0,39.0,48.0,41.0,46.0,45.0,51.0,47.0,48.0,52.0,28.0,31.0,23.0,22.0,17.0,13.0,8.0,11.0,7.0,5.0,5.0,9.0,4.0,8.0 C81009,105.0,105.0,104.0,132.0,106.0,103.0,111.0,118.0,107.0,112.0,124.0,118.0,146.0,151.0,136.0,147.0,96.0,156.0,147.0,164.0,174.0,166.0,198.0,227.0,206.0,234.0,279.0,232.0,224.0,229.0,226.0,229.0,261.0,255.0,256.0,243.0,226.0,242.0,213.0,243.0,234.0,234.0,237.0,190.0,222.0,200.0,176.0,163.0,188.0,203.0,189.0,161.0,166.0,159.0,136.0,134.0,149.0,116.0,114.0,110.0,120.0,117.0,117.0,106.0,101.0,75.0,102.0,80.0,78.0,61.0,54.0,62.0,84.0,52.0,40.0,45.0,48.0,35.0,55.0,30.0,37.0,26.0,25.0,21.0,21.0,15.0,14.0,22.0,12.0,4.0,9.0,8.0,5.0,4.0,7.0,8.0 C81010,41.0,50.0,74.0,71.0,42.0,58.0,58.0,63.0,67.0,77.0,68.0,57.0,78.0,65.0,69.0,83.0,73.0,83.0,71.0,74.0,74.0,85.0,75.0,94.0,90.0,116.0,136.0,113.0,108.0,112.0,103.0,108.0,110.0,101.0,117.0,100.0,102.0,111.0,90.0,95.0,101.0,84.0,83.0,81.0,84.0,96.0,82.0,85.0,84.0,93.0,77.0,81.0,101.0,97.0,100.0,88.0,88.0,96.0,104.0,117.0,103.0,96.0,111.0,94.0,85.0,87.0,101.0,68.0,73.0,60.0,71.0,60.0,59.0,64.0,46.0,81.0,76.0,66.0,53.0,52.0,57.0,50.0,41.0,35.0,31.0,31.0,24.0,20.0,22.0,13.0,15.0,16.0,14.0,5.0,5.0,11.0 C81012,64.0,78.0,76.0,84.0,76.0,67.0,73.0,72.0,64.0,87.0,87.0,90.0,97.0,91.0,92.0,101.0,75.0,84.0,89.0,99.0,74.0,78.0,70.0,66.0,82.0,111.0,77.0,108.0,103.0,99.0,93.0,94.0,113.0,122.0,93.0,114.0,114.0,124.0,103.0,103.0,112.0,123.0,117.0,107.0,105.0,134.0,109.0,96.0,99.0,88.0,108.0,92.0,107.0,105.0,126.0,93.0,129.0,88.0,109.0,116.0,96.0,118.0,128.0,111.0,101.0,90.0,102.0,94.0,90.0,100.0,73.0,98.0,88.0,81.0,73.0,75.0,54.0,86.0,74.0,61.0,68.0,59.0,34.0,35.0,36.0,26.0,23.0,26.0,16.0,13.0,16.0,8.0,6.0,5.0,5.0,16.0 C81013,10.0,12.0,8.0,17.0,12.0,14.0,19.0,17.0,28.0,16.0,26.0,17.0,16.0,29.0,23.0,18.0,14.0,25.0,20.0,17.0,16.0,24.0,23.0,16.0,18.0,13.0,21.0,22.0,16.0,14.0,12.0,17.0,11.0,15.0,22.0,17.0,24.0,19.0,12.0,23.0,19.0,15.0,24.0,20.0,28.0,19.0,22.0,22.0,31.0,21.0,30.0,30.0,25.0,27.0,24.0,41.0,37.0,43.0,31.0,42.0,48.0,42.0,48.0,33.0,52.0,44.0,27.0,36.0,45.0,45.0,32.0,22.0,27.0,39.0,48.0,36.0,31.0,35.0,43.0,30.0,34.0,36.0,28.0,16.0,14.0,16.0,19.0,9.0,10.0,8.0,8.0,4.0,3.0,1.0,2.0,3.0 C81014,61.0,54.0,62.0,77.0,67.0,53.0,63.0,60.0,80.0,70.0,83.0,58.0,86.0,88.0,79.0,88.0,77.0,72.0,93.0,75.0,70.0,61.0,78.0,58.0,65.0,73.0,73.0,56.0,81.0,75.0,88.0,70.0,92.0,85.0,82.0,96.0,65.0,96.0,88.0,82.0,85.0,78.0,75.0,79.0,95.0,74.0,63.0,56.0,65.0,66.0,65.0,98.0,72.0,78.0,86.0,81.0,76.0,97.0,82.0,77.0,68.0,71.0,65.0,55.0,72.0,58.0,61.0,46.0,58.0,45.0,39.0,45.0,53.0,36.0,56.0,52.0,56.0,62.0,50.0,40.0,40.0,36.0,26.0,30.0,21.0,33.0,28.0,14.0,16.0,15.0,16.0,5.0,6.0,1.0,4.0,4.0 C81015,40.0,63.0,40.0,54.0,58.0,67.0,57.0,58.0,66.0,69.0,60.0,62.0,72.0,73.0,72.0,81.0,69.0,70.0,55.0,62.0,57.0,44.0,52.0,64.0,47.0,64.0,58.0,59.0,66.0,59.0,75.0,61.0,79.0,66.0,79.0,66.0,74.0,62.0,83.0,67.0,88.0,70.0,74.0,70.0,91.0,84.0,57.0,56.0,54.0,66.0,73.0,78.0,75.0,83.0,121.0,83.0,74.0,76.0,91.0,86.0,86.0,87.0,70.0,87.0,114.0,86.0,77.0,73.0,63.0,72.0,68.0,78.0,64.0,65.0,72.0,79.0,73.0,63.0,75.0,60.0,56.0,36.0,38.0,24.0,35.0,38.0,24.0,24.0,13.0,14.0,11.0,9.0,5.0,2.0,3.0,12.0 C81016,25.0,26.0,27.0,19.0,36.0,30.0,26.0,44.0,27.0,36.0,45.0,36.0,44.0,34.0,50.0,38.0,56.0,45.0,53.0,42.0,32.0,47.0,43.0,42.0,34.0,38.0,48.0,37.0,37.0,28.0,55.0,40.0,40.0,45.0,53.0,41.0,44.0,38.0,37.0,40.0,38.0,40.0,26.0,33.0,51.0,50.0,41.0,32.0,42.0,36.0,54.0,59.0,47.0,78.0,73.0,62.0,97.0,72.0,59.0,87.0,80.0,83.0,68.0,81.0,81.0,64.0,76.0,69.0,59.0,76.0,60.0,51.0,60.0,60.0,58.0,45.0,49.0,66.0,68.0,48.0,48.0,43.0,37.0,30.0,27.0,26.0,17.0,24.0,17.0,9.0,8.0,8.0,6.0,6.0,4.0,5.0 C81017,39.0,45.0,48.0,44.0,41.0,39.0,42.0,48.0,48.0,40.0,54.0,55.0,49.0,44.0,66.0,42.0,43.0,63.0,56.0,34.0,38.0,38.0,28.0,46.0,42.0,47.0,45.0,42.0,35.0,55.0,46.0,48.0,58.0,49.0,64.0,57.0,55.0,64.0,54.0,62.0,58.0,55.0,50.0,56.0,62.0,49.0,50.0,56.0,58.0,50.0,56.0,61.0,59.0,67.0,66.0,63.0,54.0,76.0,46.0,75.0,83.0,63.0,76.0,63.0,64.0,60.0,59.0,52.0,56.0,63.0,54.0,48.0,49.0,51.0,50.0,47.0,62.0,48.0,40.0,33.0,36.0,34.0,41.0,33.0,25.0,16.0,16.0,10.0,8.0,9.0,10.0,5.0,6.0,4.0,1.0,7.0 C81020,49.0,62.0,48.0,59.0,53.0,37.0,57.0,70.0,60.0,67.0,57.0,70.0,63.0,74.0,98.0,105.0,110.0,114.0,124.0,98.0,72.0,73.0,58.0,61.0,46.0,57.0,73.0,58.0,58.0,67.0,80.0,69.0,75.0,62.0,74.0,73.0,61.0,77.0,62.0,58.0,69.0,55.0,62.0,71.0,49.0,65.0,65.0,53.0,65.0,43.0,65.0,47.0,66.0,73.0,75.0,74.0,69.0,84.0,80.0,80.0,75.0,75.0,68.0,81.0,57.0,74.0,62.0,72.0,62.0,62.0,45.0,65.0,65.0,52.0,61.0,46.0,58.0,50.0,52.0,34.0,42.0,33.0,27.0,10.0,23.0,14.0,14.0,15.0,10.0,15.0,5.0,7.0,1.0,1.0,2.0,7.0 C81021,58.0,78.0,81.0,70.0,79.0,83.0,75.0,103.0,84.0,103.0,126.0,118.0,103.0,90.0,107.0,102.0,118.0,109.0,95.0,85.0,94.0,91.0,72.0,71.0,73.0,80.0,79.0,81.0,109.0,91.0,93.0,111.0,95.0,99.0,103.0,101.0,98.0,99.0,90.0,110.0,83.0,90.0,83.0,95.0,83.0,108.0,100.0,82.0,74.0,89.0,98.0,87.0,112.0,115.0,115.0,86.0,109.0,123.0,100.0,116.0,104.0,112.0,88.0,93.0,99.0,91.0,77.0,75.0,78.0,74.0,79.0,62.0,60.0,51.0,55.0,52.0,66.0,79.0,69.0,42.0,62.0,41.0,46.0,28.0,28.0,37.0,23.0,25.0,12.0,9.0,9.0,12.0,5.0,4.0,3.0,2.0 C81022,19.0,19.0,19.0,15.0,12.0,23.0,20.0,12.0,22.0,16.0,24.0,15.0,19.0,17.0,15.0,22.0,18.0,26.0,22.0,18.0,23.0,26.0,17.0,18.0,21.0,32.0,24.0,28.0,31.0,27.0,20.0,31.0,33.0,31.0,26.0,27.0,39.0,30.0,27.0,27.0,23.0,21.0,31.0,28.0,12.0,22.0,19.0,23.0,17.0,34.0,31.0,24.0,18.0,28.0,27.0,40.0,37.0,26.0,27.0,27.0,24.0,15.0,22.0,26.0,23.0,20.0,18.0,25.0,23.0,22.0,26.0,17.0,29.0,24.0,18.0,23.0,17.0,33.0,27.0,15.0,19.0,25.0,8.0,9.0,7.0,10.0,8.0,6.0,8.0,6.0,4.0,2.0,1.0,1.0,2.0,2.0 C81023,22.0,19.0,21.0,28.0,28.0,26.0,37.0,36.0,36.0,42.0,54.0,41.0,51.0,44.0,46.0,55.0,55.0,56.0,41.0,31.0,40.0,42.0,34.0,44.0,40.0,45.0,47.0,42.0,37.0,38.0,42.0,42.0,45.0,51.0,47.0,50.0,45.0,48.0,56.0,38.0,52.0,51.0,47.0,47.0,56.0,46.0,42.0,39.0,47.0,40.0,69.0,58.0,64.0,80.0,63.0,59.0,52.0,70.0,53.0,61.0,61.0,49.0,66.0,51.0,61.0,41.0,54.0,63.0,35.0,47.0,46.0,46.0,45.0,39.0,50.0,47.0,45.0,43.0,54.0,26.0,44.0,36.0,20.0,20.0,16.0,21.0,11.0,11.0,10.0,7.0,9.0,6.0,4.0,,3.0,4.0 C81025,31.0,41.0,38.0,57.0,49.0,42.0,52.0,54.0,66.0,60.0,50.0,59.0,63.0,64.0,70.0,58.0,59.0,67.0,51.0,50.0,44.0,55.0,43.0,43.0,40.0,50.0,36.0,44.0,36.0,43.0,46.0,60.0,61.0,64.0,60.0,54.0,51.0,64.0,48.0,59.0,76.0,76.0,66.0,56.0,64.0,54.0,55.0,57.0,61.0,73.0,48.0,67.0,51.0,67.0,75.0,77.0,75.0,70.0,76.0,57.0,74.0,76.0,55.0,60.0,79.0,61.0,68.0,65.0,51.0,52.0,57.0,67.0,50.0,57.0,64.0,55.0,56.0,71.0,48.0,43.0,45.0,53.0,29.0,24.0,31.0,18.0,27.0,19.0,18.0,13.0,9.0,9.0,8.0,6.0,6.0,9.0 C81026,18.0,22.0,17.0,18.0,25.0,29.0,18.0,32.0,43.0,29.0,26.0,40.0,46.0,48.0,38.0,41.0,37.0,39.0,29.0,41.0,30.0,33.0,31.0,38.0,43.0,34.0,47.0,53.0,42.0,41.0,52.0,48.0,45.0,50.0,44.0,45.0,48.0,39.0,46.0,40.0,37.0,42.0,39.0,41.0,42.0,52.0,42.0,38.0,28.0,46.0,49.0,41.0,55.0,40.0,51.0,48.0,42.0,49.0,46.0,44.0,47.0,50.0,45.0,41.0,38.0,45.0,42.0,46.0,35.0,31.0,30.0,33.0,38.0,38.0,34.0,24.0,27.0,29.0,37.0,31.0,21.0,24.0,16.0,15.0,10.0,8.0,7.0,12.0,7.0,12.0,8.0,4.0,5.0,4.0,2.0,6.0 C81027,32.0,34.0,39.0,55.0,44.0,49.0,39.0,39.0,46.0,40.0,47.0,39.0,52.0,46.0,54.0,42.0,38.0,40.0,48.0,38.0,46.0,47.0,51.0,44.0,50.0,47.0,46.0,56.0,42.0,50.0,49.0,64.0,71.0,56.0,66.0,61.0,64.0,48.0,51.0,56.0,54.0,44.0,54.0,35.0,41.0,55.0,49.0,36.0,46.0,56.0,61.0,70.0,40.0,79.0,68.0,43.0,64.0,62.0,82.0,48.0,61.0,51.0,57.0,53.0,46.0,34.0,45.0,51.0,42.0,39.0,41.0,39.0,43.0,46.0,32.0,45.0,40.0,46.0,44.0,22.0,33.0,23.0,31.0,15.0,13.0,12.0,8.0,11.0,9.0,1.0,4.0,2.0,3.0,3.0,2.0,1.0 C81028,24.0,18.0,19.0,29.0,26.0,23.0,28.0,28.0,37.0,29.0,41.0,35.0,39.0,37.0,39.0,29.0,32.0,44.0,39.0,43.0,33.0,45.0,22.0,24.0,36.0,26.0,37.0,34.0,31.0,28.0,40.0,30.0,40.0,37.0,30.0,34.0,44.0,45.0,39.0,34.0,38.0,42.0,36.0,42.0,58.0,40.0,39.0,47.0,33.0,44.0,46.0,41.0,49.0,63.0,53.0,54.0,55.0,60.0,63.0,61.0,58.0,53.0,65.0,61.0,52.0,53.0,60.0,53.0,50.0,67.0,47.0,47.0,46.0,43.0,39.0,61.0,53.0,48.0,59.0,45.0,46.0,31.0,37.0,28.0,14.0,28.0,22.0,16.0,9.0,5.0,9.0,5.0,7.0,10.0,4.0,8.0 C81029,59.0,84.0,88.0,99.0,103.0,90.0,93.0,86.0,114.0,120.0,95.0,90.0,110.0,96.0,114.0,98.0,96.0,115.0,88.0,76.0,79.0,88.0,87.0,73.0,81.0,93.0,96.0,98.0,92.0,118.0,117.0,116.0,119.0,115.0,141.0,125.0,110.0,103.0,125.0,105.0,118.0,100.0,91.0,100.0,106.0,93.0,103.0,90.0,85.0,90.0,112.0,101.0,102.0,128.0,123.0,114.0,116.0,105.0,118.0,150.0,116.0,122.0,126.0,118.0,133.0,111.0,114.0,105.0,126.0,92.0,107.0,89.0,89.0,82.0,90.0,81.0,61.0,96.0,85.0,69.0,74.0,62.0,50.0,49.0,22.0,34.0,30.0,23.0,18.0,19.0,9.0,7.0,10.0,4.0,1.0,6.0 C81030,27.0,39.0,32.0,31.0,33.0,34.0,42.0,21.0,41.0,33.0,46.0,36.0,37.0,38.0,43.0,53.0,52.0,41.0,44.0,41.0,35.0,36.0,31.0,39.0,36.0,34.0,33.0,37.0,31.0,34.0,35.0,44.0,50.0,52.0,49.0,51.0,53.0,41.0,51.0,47.0,38.0,40.0,47.0,44.0,36.0,44.0,56.0,44.0,48.0,58.0,58.0,51.0,71.0,62.0,73.0,59.0,72.0,77.0,70.0,75.0,58.0,71.0,87.0,77.0,80.0,72.0,62.0,75.0,71.0,62.0,64.0,74.0,54.0,62.0,63.0,66.0,58.0,69.0,61.0,53.0,62.0,40.0,34.0,32.0,21.0,31.0,37.0,22.0,18.0,13.0,11.0,13.0,16.0,7.0,5.0,6.0 C81031,55.0,52.0,40.0,50.0,52.0,41.0,46.0,41.0,55.0,64.0,42.0,48.0,56.0,57.0,62.0,64.0,57.0,52.0,45.0,54.0,47.0,47.0,45.0,59.0,50.0,49.0,60.0,63.0,68.0,80.0,52.0,64.0,66.0,60.0,79.0,65.0,59.0,80.0,69.0,63.0,63.0,54.0,63.0,63.0,72.0,85.0,49.0,43.0,55.0,60.0,62.0,52.0,53.0,69.0,59.0,68.0,81.0,73.0,75.0,53.0,65.0,70.0,53.0,72.0,64.0,49.0,52.0,52.0,59.0,47.0,52.0,39.0,40.0,45.0,42.0,47.0,48.0,32.0,40.0,29.0,36.0,25.0,24.0,15.0,13.0,19.0,17.0,9.0,7.0,7.0,2.0,5.0,3.0,3.0,1.0,7.0 C81032,62.0,46.0,59.0,69.0,66.0,62.0,62.0,71.0,60.0,73.0,78.0,72.0,70.0,89.0,90.0,76.0,79.0,89.0,101.0,80.0,74.0,70.0,73.0,85.0,80.0,60.0,76.0,101.0,88.0,82.0,92.0,107.0,99.0,117.0,109.0,91.0,94.0,111.0,105.0,92.0,89.0,87.0,94.0,76.0,90.0,89.0,85.0,77.0,85.0,73.0,91.0,85.0,94.0,102.0,97.0,101.0,109.0,100.0,112.0,99.0,107.0,91.0,92.0,91.0,79.0,74.0,56.0,73.0,61.0,76.0,66.0,72.0,79.0,69.0,78.0,71.0,64.0,75.0,71.0,63.0,51.0,50.0,45.0,31.0,27.0,28.0,18.0,16.0,8.0,12.0,7.0,11.0,4.0,4.0,7.0,4.0 C81033,58.0,76.0,69.0,88.0,83.0,94.0,94.0,89.0,98.0,110.0,98.0,114.0,95.0,88.0,102.0,85.0,89.0,93.0,89.0,79.0,89.0,85.0,92.0,78.0,89.0,91.0,115.0,75.0,107.0,100.0,95.0,115.0,124.0,123.0,147.0,153.0,130.0,100.0,117.0,130.0,121.0,121.0,117.0,102.0,110.0,94.0,89.0,77.0,81.0,91.0,82.0,94.0,118.0,100.0,126.0,114.0,122.0,117.0,116.0,123.0,107.0,122.0,108.0,95.0,95.0,106.0,97.0,91.0,62.0,74.0,71.0,77.0,48.0,52.0,56.0,64.0,50.0,38.0,67.0,53.0,57.0,36.0,46.0,26.0,25.0,27.0,20.0,25.0,17.0,9.0,9.0,8.0,6.0,5.0,5.0,4.0 C81034,46.0,45.0,49.0,48.0,58.0,59.0,53.0,72.0,46.0,57.0,64.0,43.0,52.0,72.0,61.0,50.0,67.0,67.0,60.0,57.0,57.0,60.0,53.0,58.0,53.0,74.0,73.0,54.0,74.0,59.0,69.0,59.0,75.0,76.0,68.0,88.0,78.0,67.0,74.0,58.0,62.0,67.0,69.0,56.0,53.0,59.0,57.0,65.0,55.0,69.0,60.0,77.0,77.0,84.0,100.0,95.0,79.0,93.0,90.0,89.0,96.0,92.0,78.0,86.0,96.0,69.0,73.0,71.0,63.0,54.0,49.0,65.0,63.0,53.0,57.0,60.0,44.0,60.0,71.0,44.0,39.0,25.0,31.0,26.0,29.0,32.0,20.0,18.0,17.0,21.0,10.0,4.0,6.0,7.0,6.0,10.0 C81035,59.0,41.0,62.0,75.0,67.0,57.0,61.0,81.0,64.0,81.0,104.0,81.0,78.0,75.0,93.0,89.0,93.0,88.0,86.0,96.0,66.0,84.0,74.0,64.0,59.0,82.0,74.0,78.0,76.0,84.0,93.0,69.0,78.0,89.0,85.0,73.0,91.0,96.0,92.0,92.0,94.0,91.0,98.0,98.0,101.0,87.0,88.0,77.0,87.0,93.0,89.0,92.0,67.0,76.0,80.0,74.0,67.0,66.0,57.0,64.0,80.0,62.0,65.0,68.0,39.0,64.0,58.0,63.0,56.0,59.0,59.0,61.0,66.0,60.0,49.0,37.0,39.0,37.0,53.0,29.0,40.0,30.0,24.0,25.0,30.0,13.0,17.0,16.0,13.0,9.0,14.0,6.0,10.0,7.0,1.0,10.0 C81036,24.0,19.0,18.0,12.0,17.0,13.0,15.0,24.0,15.0,13.0,20.0,20.0,18.0,14.0,19.0,16.0,17.0,16.0,27.0,45.0,43.0,34.0,43.0,42.0,60.0,61.0,59.0,59.0,67.0,63.0,62.0,73.0,72.0,59.0,75.0,60.0,75.0,58.0,62.0,39.0,43.0,36.0,42.0,40.0,45.0,35.0,34.0,37.0,29.0,42.0,39.0,25.0,36.0,28.0,26.0,28.0,30.0,22.0,22.0,32.0,34.0,24.0,18.0,29.0,19.0,26.0,24.0,17.0,15.0,23.0,19.0,21.0,10.0,12.0,15.0,16.0,12.0,24.0,17.0,14.0,16.0,10.0,3.0,4.0,7.0,6.0,10.0,7.0,5.0,4.0,5.0,3.0,2.0,3.0,3.0,2.0 C81037,31.0,49.0,41.0,53.0,41.0,45.0,53.0,38.0,48.0,34.0,50.0,61.0,55.0,70.0,75.0,50.0,58.0,62.0,52.0,38.0,46.0,46.0,51.0,47.0,39.0,47.0,56.0,45.0,51.0,64.0,61.0,58.0,63.0,70.0,61.0,50.0,59.0,55.0,57.0,57.0,49.0,60.0,62.0,47.0,57.0,65.0,60.0,55.0,60.0,64.0,55.0,70.0,75.0,64.0,67.0,83.0,76.0,90.0,89.0,92.0,104.0,97.0,82.0,89.0,90.0,74.0,74.0,72.0,72.0,69.0,49.0,69.0,62.0,72.0,58.0,71.0,69.0,80.0,64.0,53.0,34.0,44.0,38.0,36.0,22.0,24.0,21.0,20.0,21.0,9.0,11.0,5.0,4.0,5.0,2.0,3.0 C81038,47.0,42.0,52.0,41.0,61.0,49.0,73.0,62.0,57.0,54.0,70.0,67.0,69.0,77.0,70.0,65.0,60.0,57.0,64.0,53.0,72.0,45.0,49.0,61.0,51.0,59.0,62.0,67.0,50.0,79.0,70.0,63.0,82.0,75.0,78.0,73.0,76.0,63.0,81.0,57.0,65.0,88.0,69.0,80.0,67.0,65.0,77.0,64.0,71.0,63.0,83.0,79.0,103.0,104.0,101.0,105.0,113.0,97.0,118.0,97.0,105.0,94.0,100.0,89.0,90.0,87.0,93.0,81.0,76.0,77.0,59.0,57.0,69.0,79.0,84.0,66.0,43.0,69.0,81.0,63.0,50.0,40.0,45.0,38.0,32.0,34.0,29.0,18.0,11.0,14.0,14.0,6.0,7.0,7.0,4.0,10.0 C81039,16.0,7.0,10.0,20.0,12.0,13.0,13.0,16.0,15.0,16.0,19.0,15.0,14.0,14.0,12.0,20.0,14.0,17.0,12.0,16.0,15.0,20.0,18.0,15.0,10.0,16.0,12.0,13.0,17.0,13.0,21.0,24.0,15.0,16.0,14.0,19.0,18.0,19.0,17.0,14.0,21.0,16.0,19.0,13.0,16.0,15.0,13.0,18.0,17.0,18.0,27.0,22.0,25.0,23.0,32.0,24.0,29.0,40.0,40.0,37.0,31.0,42.0,33.0,44.0,32.0,31.0,30.0,31.0,29.0,33.0,15.0,22.0,24.0,23.0,32.0,26.0,15.0,29.0,24.0,23.0,13.0,16.0,13.0,13.0,12.0,8.0,12.0,3.0,10.0,5.0,5.0,5.0,4.0,1.0,1.0,4.0 C81040,29.0,31.0,46.0,43.0,34.0,37.0,43.0,41.0,48.0,47.0,52.0,32.0,50.0,53.0,54.0,52.0,42.0,56.0,28.0,32.0,36.0,38.0,36.0,44.0,33.0,36.0,37.0,35.0,28.0,49.0,38.0,38.0,37.0,44.0,38.0,42.0,32.0,54.0,38.0,56.0,35.0,44.0,49.0,49.0,52.0,59.0,50.0,36.0,63.0,57.0,49.0,55.0,53.0,56.0,59.0,58.0,52.0,67.0,61.0,61.0,65.0,67.0,59.0,53.0,62.0,52.0,52.0,49.0,41.0,55.0,51.0,52.0,42.0,43.0,36.0,41.0,62.0,57.0,34.0,41.0,48.0,38.0,34.0,23.0,23.0,15.0,24.0,13.0,19.0,19.0,6.0,10.0,12.0,3.0,3.0,3.0 C81041,63.0,55.0,53.0,64.0,61.0,66.0,73.0,80.0,68.0,76.0,62.0,82.0,81.0,79.0,77.0,76.0,65.0,69.0,65.0,52.0,53.0,58.0,60.0,57.0,57.0,53.0,71.0,69.0,69.0,66.0,85.0,86.0,90.0,91.0,73.0,80.0,84.0,83.0,85.0,82.0,82.0,75.0,79.0,62.0,60.0,70.0,76.0,64.0,61.0,72.0,74.0,66.0,84.0,70.0,93.0,79.0,82.0,77.0,82.0,79.0,83.0,82.0,98.0,82.0,59.0,74.0,55.0,69.0,66.0,69.0,71.0,54.0,59.0,48.0,59.0,65.0,52.0,55.0,59.0,40.0,37.0,33.0,36.0,29.0,28.0,19.0,22.0,13.0,9.0,7.0,12.0,6.0,5.0,3.0,1.0,3.0 C81042,76.0,78.0,82.0,83.0,75.0,62.0,85.0,73.0,59.0,78.0,68.0,65.0,76.0,78.0,76.0,81.0,54.0,89.0,69.0,61.0,49.0,67.0,51.0,49.0,48.0,63.0,54.0,71.0,76.0,75.0,80.0,80.0,96.0,98.0,87.0,92.0,79.0,101.0,79.0,73.0,75.0,87.0,98.0,81.0,98.0,63.0,58.0,66.0,75.0,79.0,89.0,67.0,73.0,73.0,71.0,80.0,88.0,95.0,90.0,85.0,87.0,79.0,92.0,80.0,85.0,81.0,76.0,75.0,81.0,72.0,68.0,60.0,63.0,67.0,75.0,82.0,67.0,68.0,55.0,41.0,55.0,39.0,38.0,33.0,18.0,40.0,30.0,26.0,19.0,10.0,12.0,12.0,9.0,12.0,4.0,10.0 C81044,32.0,42.0,37.0,42.0,38.0,38.0,47.0,50.0,47.0,45.0,27.0,45.0,49.0,47.0,54.0,41.0,49.0,48.0,41.0,45.0,50.0,48.0,33.0,34.0,43.0,45.0,61.0,46.0,46.0,54.0,64.0,60.0,56.0,63.0,71.0,49.0,54.0,55.0,65.0,49.0,57.0,61.0,66.0,65.0,40.0,47.0,65.0,46.0,42.0,28.0,41.0,47.0,72.0,82.0,61.0,74.0,75.0,68.0,58.0,75.0,62.0,64.0,71.0,71.0,76.0,52.0,49.0,46.0,49.0,50.0,46.0,42.0,49.0,30.0,31.0,38.0,35.0,47.0,39.0,29.0,30.0,33.0,26.0,23.0,26.0,12.0,24.0,7.0,6.0,10.0,8.0,6.0,3.0,2.0,2.0,3.0 C81045,47.0,60.0,65.0,53.0,48.0,72.0,44.0,64.0,60.0,61.0,72.0,73.0,83.0,64.0,67.0,62.0,76.0,62.0,63.0,58.0,65.0,66.0,73.0,75.0,71.0,99.0,99.0,110.0,100.0,116.0,96.0,114.0,108.0,103.0,96.0,95.0,100.0,84.0,90.0,94.0,107.0,93.0,84.0,88.0,86.0,72.0,77.0,73.0,65.0,79.0,78.0,68.0,115.0,92.0,75.0,103.0,104.0,97.0,112.0,105.0,109.0,110.0,105.0,100.0,100.0,98.0,78.0,72.0,76.0,85.0,64.0,73.0,56.0,65.0,53.0,63.0,48.0,51.0,51.0,49.0,50.0,54.0,32.0,32.0,32.0,32.0,29.0,17.0,16.0,9.0,16.0,9.0,1.0,5.0,3.0,4.0 C81046,16.0,17.0,19.0,12.0,12.0,14.0,25.0,10.0,22.0,17.0,21.0,22.0,17.0,32.0,29.0,28.0,20.0,21.0,27.0,25.0,21.0,19.0,14.0,23.0,26.0,26.0,28.0,22.0,27.0,23.0,28.0,19.0,24.0,23.0,27.0,28.0,23.0,33.0,20.0,23.0,27.0,36.0,29.0,16.0,21.0,36.0,36.0,22.0,28.0,22.0,21.0,34.0,28.0,37.0,38.0,35.0,35.0,40.0,49.0,36.0,40.0,38.0,39.0,34.0,33.0,31.0,37.0,37.0,34.0,30.0,22.0,37.0,33.0,28.0,28.0,26.0,31.0,30.0,39.0,27.0,22.0,14.0,16.0,22.0,12.0,14.0,11.0,10.0,6.0,8.0,12.0,5.0,5.0,2.0,1.0,1.0 C81047,49.0,45.0,52.0,59.0,47.0,60.0,66.0,60.0,57.0,59.0,65.0,71.0,61.0,57.0,59.0,69.0,60.0,82.0,61.0,56.0,55.0,60.0,58.0,57.0,64.0,64.0,62.0,69.0,75.0,73.0,70.0,86.0,74.0,77.0,73.0,107.0,76.0,78.0,75.0,73.0,78.0,83.0,59.0,65.0,72.0,54.0,53.0,52.0,60.0,66.0,68.0,77.0,76.0,95.0,75.0,82.0,96.0,109.0,102.0,92.0,77.0,91.0,95.0,88.0,77.0,82.0,84.0,71.0,62.0,52.0,71.0,63.0,60.0,51.0,56.0,59.0,51.0,66.0,62.0,54.0,61.0,56.0,47.0,31.0,30.0,39.0,35.0,27.0,18.0,16.0,19.0,12.0,7.0,7.0,1.0,7.0 C81048,18.0,22.0,31.0,49.0,40.0,37.0,48.0,52.0,58.0,61.0,63.0,85.0,71.0,72.0,62.0,62.0,62.0,79.0,59.0,68.0,60.0,57.0,64.0,60.0,54.0,56.0,40.0,47.0,43.0,51.0,51.0,42.0,57.0,58.0,51.0,38.0,47.0,46.0,25.0,50.0,58.0,57.0,68.0,61.0,65.0,89.0,78.0,61.0,68.0,78.0,79.0,75.0,83.0,74.0,98.0,91.0,81.0,72.0,79.0,103.0,79.0,80.0,85.0,90.0,92.0,76.0,64.0,80.0,74.0,59.0,47.0,68.0,51.0,61.0,62.0,69.0,61.0,68.0,71.0,48.0,59.0,65.0,45.0,39.0,33.0,32.0,17.0,18.0,29.0,18.0,16.0,12.0,10.0,8.0,4.0,12.0 C81049,38.0,46.0,51.0,49.0,46.0,51.0,55.0,51.0,48.0,56.0,44.0,57.0,66.0,58.0,72.0,77.0,51.0,65.0,56.0,53.0,51.0,62.0,46.0,40.0,46.0,51.0,57.0,51.0,60.0,57.0,64.0,60.0,61.0,68.0,82.0,86.0,61.0,74.0,42.0,63.0,70.0,60.0,59.0,66.0,52.0,62.0,54.0,49.0,54.0,58.0,59.0,66.0,66.0,84.0,79.0,66.0,71.0,84.0,81.0,66.0,85.0,73.0,81.0,50.0,54.0,50.0,51.0,57.0,64.0,42.0,43.0,39.0,38.0,50.0,41.0,48.0,46.0,52.0,49.0,36.0,27.0,22.0,21.0,18.0,18.0,19.0,11.0,15.0,6.0,11.0,5.0,5.0,3.0,3.0,2.0,4.0 C81050,43.0,36.0,40.0,44.0,43.0,57.0,58.0,49.0,50.0,61.0,62.0,52.0,57.0,57.0,60.0,67.0,62.0,58.0,43.0,54.0,46.0,33.0,44.0,66.0,58.0,52.0,51.0,55.0,60.0,54.0,69.0,76.0,52.0,73.0,65.0,63.0,80.0,67.0,65.0,60.0,56.0,65.0,70.0,56.0,54.0,54.0,62.0,48.0,71.0,61.0,67.0,61.0,69.0,60.0,78.0,76.0,86.0,70.0,70.0,72.0,69.0,52.0,71.0,80.0,69.0,65.0,46.0,46.0,45.0,50.0,33.0,36.0,49.0,56.0,42.0,50.0,34.0,53.0,40.0,28.0,44.0,32.0,31.0,21.0,20.0,25.0,13.0,21.0,12.0,5.0,4.0,5.0,5.0,2.0,4.0,7.0 C81051,109.0,107.0,103.0,108.0,124.0,122.0,133.0,145.0,115.0,131.0,133.0,130.0,139.0,135.0,146.0,148.0,151.0,148.0,192.0,254.0,308.0,274.0,256.0,249.0,281.0,281.0,302.0,266.0,274.0,240.0,232.0,236.0,232.0,237.0,212.0,203.0,206.0,185.0,187.0,180.0,150.0,154.0,166.0,152.0,184.0,147.0,142.0,138.0,137.0,121.0,126.0,134.0,145.0,168.0,166.0,143.0,156.0,148.0,152.0,200.0,168.0,162.0,173.0,152.0,135.0,135.0,122.0,129.0,138.0,126.0,95.0,83.0,94.0,86.0,103.0,99.0,104.0,128.0,103.0,81.0,91.0,69.0,60.0,50.0,50.0,43.0,51.0,28.0,29.0,20.0,16.0,16.0,17.0,8.0,6.0,10.0 C81052,20.0,36.0,36.0,38.0,31.0,44.0,39.0,35.0,40.0,42.0,19.0,43.0,45.0,41.0,49.0,46.0,46.0,47.0,52.0,40.0,38.0,36.0,51.0,36.0,32.0,43.0,42.0,44.0,52.0,40.0,56.0,44.0,45.0,54.0,52.0,50.0,45.0,44.0,53.0,45.0,46.0,53.0,41.0,35.0,44.0,52.0,55.0,37.0,40.0,52.0,39.0,58.0,61.0,55.0,71.0,59.0,55.0,57.0,34.0,45.0,56.0,43.0,52.0,51.0,47.0,43.0,51.0,41.0,43.0,34.0,34.0,37.0,39.0,35.0,33.0,35.0,29.0,43.0,28.0,33.0,38.0,17.0,14.0,19.0,8.0,10.0,10.0,9.0,5.0,5.0,6.0,3.0,3.0,3.0,1.0,4.0 C81053,56.0,53.0,55.0,56.0,57.0,50.0,63.0,45.0,79.0,60.0,75.0,60.0,57.0,70.0,46.0,69.0,63.0,57.0,58.0,54.0,58.0,47.0,45.0,40.0,62.0,49.0,58.0,60.0,54.0,62.0,75.0,90.0,78.0,67.0,96.0,77.0,69.0,54.0,81.0,68.0,62.0,80.0,74.0,76.0,82.0,74.0,54.0,53.0,61.0,59.0,88.0,66.0,78.0,75.0,81.0,81.0,86.0,78.0,91.0,78.0,99.0,73.0,71.0,59.0,65.0,64.0,59.0,60.0,54.0,73.0,58.0,68.0,44.0,49.0,43.0,51.0,44.0,51.0,54.0,44.0,35.0,24.0,27.0,21.0,30.0,17.0,13.0,15.0,12.0,5.0,6.0,6.0,4.0,2.0,1.0,6.0 C81054,188.0,202.0,194.0,199.0,212.0,218.0,218.0,220.0,241.0,280.0,286.0,238.0,286.0,284.0,272.0,293.0,288.0,265.0,264.0,216.0,216.0,202.0,191.0,211.0,204.0,223.0,221.0,193.0,232.0,209.0,222.0,259.0,277.0,292.0,278.0,257.0,283.0,265.0,284.0,276.0,265.0,273.0,296.0,264.0,301.0,271.0,256.0,256.0,225.0,231.0,241.0,235.0,224.0,225.0,264.0,224.0,232.0,216.0,192.0,211.0,213.0,173.0,215.0,147.0,184.0,133.0,134.0,140.0,129.0,138.0,112.0,142.0,117.0,118.0,93.0,104.0,109.0,103.0,104.0,74.0,67.0,67.0,40.0,36.0,37.0,39.0,45.0,41.0,22.0,17.0,15.0,16.0,17.0,9.0,5.0,22.0 C81055,23.0,38.0,29.0,26.0,24.0,29.0,26.0,36.0,28.0,23.0,27.0,19.0,31.0,21.0,25.0,27.0,27.0,25.0,22.0,26.0,12.0,29.0,25.0,21.0,22.0,35.0,32.0,30.0,34.0,45.0,38.0,34.0,46.0,43.0,40.0,46.0,29.0,34.0,31.0,28.0,35.0,20.0,32.0,36.0,28.0,33.0,30.0,15.0,39.0,32.0,19.0,22.0,23.0,37.0,28.0,35.0,34.0,27.0,31.0,28.0,26.0,22.0,30.0,32.0,34.0,27.0,24.0,27.0,19.0,27.0,34.0,23.0,20.0,23.0,21.0,28.0,16.0,17.0,27.0,17.0,18.0,19.0,16.0,11.0,8.0,9.0,2.0,7.0,7.0,7.0,6.0,5.0,2.0,,5.0, C81056,45.0,30.0,42.0,47.0,43.0,42.0,34.0,34.0,42.0,42.0,49.0,36.0,42.0,29.0,33.0,47.0,26.0,25.0,28.0,31.0,20.0,35.0,31.0,32.0,31.0,29.0,45.0,40.0,34.0,42.0,41.0,42.0,50.0,41.0,42.0,42.0,43.0,43.0,22.0,37.0,39.0,45.0,41.0,44.0,37.0,43.0,32.0,42.0,33.0,31.0,39.0,33.0,44.0,40.0,47.0,42.0,56.0,43.0,46.0,44.0,48.0,46.0,42.0,53.0,39.0,31.0,38.0,43.0,31.0,40.0,31.0,41.0,33.0,32.0,39.0,38.0,42.0,27.0,34.0,30.0,36.0,35.0,21.0,22.0,12.0,16.0,15.0,7.0,11.0,7.0,6.0,6.0,5.0,1.0,4.0,2.0 C81057,48.0,42.0,33.0,62.0,41.0,46.0,46.0,56.0,49.0,51.0,51.0,39.0,59.0,66.0,60.0,49.0,58.0,54.0,69.0,54.0,57.0,35.0,62.0,47.0,30.0,36.0,49.0,43.0,44.0,51.0,40.0,58.0,59.0,66.0,61.0,64.0,48.0,71.0,61.0,73.0,45.0,64.0,73.0,58.0,60.0,56.0,55.0,56.0,61.0,69.0,63.0,58.0,72.0,75.0,81.0,78.0,88.0,75.0,99.0,85.0,92.0,76.0,81.0,91.0,79.0,69.0,76.0,72.0,64.0,67.0,63.0,76.0,72.0,65.0,51.0,60.0,44.0,70.0,84.0,43.0,55.0,40.0,27.0,28.0,18.0,26.0,16.0,10.0,10.0,14.0,9.0,9.0,6.0,5.0,4.0,8.0 C81058,45.0,39.0,38.0,48.0,29.0,45.0,48.0,45.0,38.0,51.0,52.0,58.0,61.0,43.0,47.0,43.0,55.0,50.0,36.0,36.0,40.0,44.0,53.0,42.0,38.0,41.0,52.0,51.0,73.0,69.0,65.0,54.0,69.0,64.0,65.0,64.0,59.0,59.0,57.0,58.0,44.0,55.0,54.0,63.0,57.0,47.0,42.0,39.0,36.0,53.0,56.0,55.0,74.0,75.0,72.0,69.0,85.0,62.0,54.0,76.0,78.0,67.0,60.0,54.0,56.0,46.0,55.0,55.0,52.0,50.0,34.0,46.0,51.0,45.0,42.0,41.0,46.0,48.0,32.0,28.0,30.0,30.0,32.0,21.0,20.0,21.0,13.0,14.0,14.0,10.0,5.0,8.0,6.0,3.0,3.0,7.0 C81059,33.0,26.0,36.0,32.0,30.0,31.0,33.0,25.0,30.0,43.0,35.0,31.0,30.0,34.0,27.0,34.0,28.0,33.0,23.0,30.0,34.0,33.0,27.0,21.0,33.0,34.0,33.0,19.0,43.0,38.0,46.0,35.0,41.0,53.0,50.0,47.0,48.0,32.0,45.0,40.0,40.0,39.0,44.0,35.0,43.0,34.0,23.0,23.0,30.0,38.0,39.0,35.0,41.0,41.0,56.0,56.0,42.0,72.0,40.0,47.0,52.0,43.0,50.0,41.0,48.0,43.0,36.0,38.0,41.0,28.0,27.0,28.0,35.0,30.0,30.0,21.0,34.0,24.0,32.0,23.0,28.0,22.0,17.0,18.0,10.0,13.0,17.0,8.0,7.0,5.0,3.0,6.0,6.0,4.0,,1.0 C81060,52.0,59.0,44.0,72.0,64.0,71.0,62.0,65.0,56.0,60.0,61.0,62.0,60.0,60.0,67.0,51.0,62.0,65.0,50.0,63.0,60.0,48.0,56.0,65.0,57.0,67.0,72.0,71.0,53.0,86.0,71.0,88.0,74.0,89.0,85.0,81.0,74.0,72.0,70.0,76.0,70.0,76.0,75.0,68.0,68.0,64.0,61.0,53.0,57.0,79.0,77.0,68.0,71.0,103.0,101.0,74.0,91.0,96.0,103.0,79.0,76.0,77.0,65.0,74.0,74.0,68.0,50.0,55.0,38.0,52.0,48.0,52.0,39.0,53.0,43.0,37.0,38.0,33.0,46.0,38.0,36.0,34.0,25.0,18.0,9.0,19.0,19.0,11.0,12.0,6.0,9.0,6.0,5.0,2.0,3.0,1.0 C81061,62.0,89.0,83.0,77.0,80.0,71.0,101.0,83.0,102.0,92.0,104.0,107.0,107.0,111.0,123.0,96.0,99.0,93.0,97.0,99.0,91.0,78.0,94.0,96.0,84.0,96.0,116.0,106.0,95.0,123.0,126.0,125.0,120.0,157.0,146.0,150.0,142.0,142.0,152.0,104.0,125.0,127.0,126.0,123.0,134.0,117.0,121.0,99.0,96.0,102.0,124.0,127.0,116.0,140.0,118.0,141.0,145.0,153.0,126.0,138.0,111.0,138.0,142.0,107.0,119.0,109.0,87.0,114.0,84.0,79.0,102.0,75.0,92.0,84.0,88.0,73.0,94.0,90.0,96.0,67.0,64.0,41.0,46.0,40.0,31.0,35.0,34.0,23.0,27.0,17.0,14.0,13.0,7.0,3.0,4.0,8.0 C81062,22.0,22.0,18.0,26.0,21.0,37.0,31.0,26.0,35.0,48.0,49.0,34.0,47.0,55.0,52.0,44.0,46.0,55.0,48.0,38.0,35.0,37.0,40.0,44.0,39.0,37.0,44.0,42.0,34.0,46.0,34.0,32.0,45.0,34.0,31.0,38.0,45.0,49.0,45.0,45.0,40.0,40.0,43.0,45.0,50.0,48.0,38.0,46.0,56.0,53.0,57.0,56.0,61.0,79.0,69.0,83.0,76.0,77.0,80.0,94.0,88.0,75.0,84.0,67.0,82.0,83.0,63.0,64.0,58.0,63.0,68.0,75.0,64.0,59.0,64.0,53.0,57.0,67.0,53.0,44.0,42.0,46.0,26.0,31.0,20.0,19.0,19.0,22.0,24.0,10.0,13.0,9.0,5.0,1.0,4.0,5.0 C81063,21.0,45.0,43.0,42.0,44.0,49.0,47.0,51.0,48.0,56.0,65.0,46.0,43.0,67.0,62.0,56.0,46.0,51.0,46.0,60.0,61.0,54.0,48.0,29.0,42.0,43.0,37.0,46.0,34.0,44.0,47.0,48.0,58.0,67.0,52.0,66.0,58.0,63.0,57.0,48.0,60.0,59.0,58.0,53.0,66.0,46.0,60.0,48.0,50.0,47.0,52.0,59.0,55.0,56.0,57.0,64.0,79.0,70.0,83.0,72.0,74.0,70.0,76.0,64.0,54.0,67.0,66.0,92.0,67.0,55.0,66.0,59.0,52.0,52.0,51.0,50.0,54.0,64.0,53.0,43.0,41.0,41.0,33.0,29.0,20.0,25.0,23.0,26.0,12.0,8.0,7.0,4.0,7.0,7.0,2.0,4.0 C81064,26.0,41.0,56.0,51.0,49.0,58.0,77.0,53.0,87.0,71.0,82.0,78.0,80.0,83.0,72.0,74.0,81.0,83.0,67.0,71.0,60.0,69.0,48.0,54.0,61.0,63.0,61.0,83.0,73.0,63.0,65.0,72.0,79.0,75.0,72.0,99.0,70.0,92.0,78.0,92.0,78.0,104.0,101.0,111.0,115.0,69.0,100.0,78.0,73.0,83.0,67.0,79.0,81.0,90.0,80.0,74.0,88.0,71.0,97.0,83.0,86.0,82.0,92.0,67.0,72.0,61.0,67.0,71.0,57.0,55.0,50.0,45.0,55.0,45.0,55.0,52.0,59.0,65.0,61.0,40.0,43.0,53.0,34.0,30.0,31.0,34.0,38.0,37.0,26.0,14.0,22.0,17.0,12.0,8.0,5.0,12.0 C81065,32.0,39.0,30.0,36.0,44.0,55.0,56.0,37.0,53.0,51.0,40.0,53.0,57.0,47.0,53.0,51.0,57.0,65.0,47.0,38.0,47.0,43.0,41.0,43.0,43.0,44.0,55.0,74.0,56.0,55.0,48.0,81.0,64.0,76.0,89.0,62.0,58.0,73.0,69.0,55.0,60.0,51.0,66.0,45.0,64.0,56.0,54.0,51.0,46.0,41.0,71.0,53.0,59.0,67.0,61.0,60.0,81.0,78.0,83.0,62.0,73.0,81.0,72.0,66.0,59.0,53.0,58.0,62.0,47.0,56.0,45.0,46.0,43.0,31.0,45.0,41.0,40.0,46.0,35.0,26.0,31.0,25.0,20.0,17.0,19.0,17.0,15.0,11.0,18.0,8.0,14.0,6.0,3.0,5.0,2.0,7.0 C81066,38.0,40.0,45.0,37.0,46.0,52.0,53.0,53.0,55.0,61.0,71.0,70.0,66.0,74.0,71.0,82.0,68.0,89.0,61.0,60.0,66.0,61.0,43.0,59.0,61.0,60.0,61.0,56.0,59.0,56.0,55.0,83.0,67.0,55.0,86.0,71.0,80.0,73.0,66.0,82.0,80.0,74.0,68.0,79.0,79.0,74.0,63.0,63.0,77.0,68.0,75.0,82.0,85.0,84.0,83.0,96.0,91.0,105.0,100.0,97.0,102.0,97.0,95.0,91.0,86.0,77.0,71.0,74.0,62.0,70.0,56.0,66.0,71.0,69.0,60.0,64.0,56.0,52.0,64.0,49.0,59.0,38.0,43.0,42.0,27.0,28.0,14.0,18.0,10.0,19.0,14.0,13.0,8.0,6.0,6.0,8.0 C81067,28.0,27.0,34.0,39.0,30.0,33.0,41.0,32.0,37.0,40.0,40.0,41.0,53.0,51.0,54.0,63.0,50.0,57.0,42.0,33.0,41.0,51.0,34.0,46.0,26.0,49.0,45.0,39.0,34.0,46.0,53.0,35.0,50.0,42.0,45.0,43.0,40.0,38.0,52.0,43.0,53.0,42.0,42.0,51.0,37.0,43.0,54.0,52.0,43.0,56.0,72.0,66.0,77.0,64.0,73.0,63.0,71.0,69.0,67.0,99.0,60.0,82.0,91.0,79.0,65.0,80.0,78.0,81.0,74.0,64.0,75.0,69.0,69.0,63.0,69.0,67.0,67.0,63.0,64.0,60.0,61.0,48.0,42.0,26.0,33.0,24.0,33.0,18.0,24.0,18.0,9.0,14.0,9.0,8.0,5.0,6.0 C81068,61.0,46.0,42.0,62.0,57.0,60.0,74.0,81.0,70.0,84.0,67.0,102.0,70.0,102.0,75.0,86.0,89.0,88.0,88.0,87.0,74.0,78.0,66.0,63.0,60.0,78.0,53.0,71.0,65.0,72.0,83.0,81.0,82.0,72.0,91.0,74.0,83.0,85.0,67.0,91.0,80.0,94.0,75.0,72.0,84.0,69.0,86.0,72.0,72.0,63.0,80.0,91.0,90.0,107.0,82.0,88.0,70.0,69.0,79.0,88.0,90.0,81.0,97.0,79.0,70.0,84.0,66.0,45.0,54.0,68.0,47.0,52.0,46.0,60.0,60.0,41.0,45.0,45.0,55.0,28.0,63.0,42.0,32.0,34.0,28.0,15.0,19.0,26.0,21.0,7.0,7.0,13.0,8.0,5.0,1.0,6.0 C81069,38.0,45.0,45.0,57.0,59.0,53.0,45.0,47.0,71.0,74.0,52.0,80.0,64.0,72.0,65.0,76.0,78.0,61.0,60.0,59.0,57.0,48.0,64.0,75.0,83.0,72.0,67.0,58.0,78.0,69.0,67.0,77.0,91.0,77.0,71.0,72.0,71.0,65.0,85.0,84.0,57.0,79.0,91.0,70.0,77.0,78.0,80.0,69.0,69.0,85.0,102.0,91.0,127.0,130.0,113.0,107.0,106.0,126.0,110.0,116.0,124.0,105.0,116.0,100.0,117.0,91.0,87.0,91.0,83.0,95.0,75.0,73.0,64.0,61.0,78.0,70.0,71.0,77.0,76.0,62.0,56.0,52.0,49.0,39.0,23.0,36.0,34.0,24.0,21.0,11.0,8.0,7.0,7.0,3.0,2.0,5.0 C81070,8.0,14.0,9.0,10.0,16.0,9.0,14.0,10.0,15.0,18.0,21.0,22.0,21.0,17.0,13.0,21.0,11.0,16.0,24.0,18.0,26.0,23.0,15.0,17.0,21.0,16.0,24.0,23.0,21.0,18.0,15.0,16.0,16.0,17.0,25.0,16.0,27.0,11.0,21.0,16.0,13.0,22.0,22.0,25.0,23.0,23.0,17.0,18.0,26.0,25.0,23.0,32.0,23.0,26.0,29.0,26.0,44.0,37.0,33.0,31.0,39.0,31.0,30.0,30.0,20.0,30.0,25.0,29.0,15.0,22.0,22.0,17.0,22.0,20.0,29.0,24.0,16.0,30.0,33.0,16.0,27.0,24.0,27.0,16.0,17.0,24.0,16.0,10.0,12.0,10.0,10.0,5.0,6.0,4.0,3.0,6.0 C81071,47.0,60.0,57.0,61.0,69.0,68.0,87.0,83.0,84.0,88.0,69.0,75.0,80.0,97.0,98.0,88.0,90.0,93.0,66.0,69.0,68.0,104.0,85.0,76.0,84.0,96.0,104.0,109.0,105.0,103.0,102.0,118.0,126.0,105.0,114.0,93.0,120.0,119.0,111.0,139.0,109.0,126.0,118.0,115.0,124.0,107.0,90.0,108.0,86.0,97.0,89.0,111.0,95.0,90.0,97.0,98.0,86.0,82.0,102.0,78.0,95.0,79.0,67.0,75.0,64.0,55.0,64.0,51.0,52.0,50.0,44.0,46.0,47.0,36.0,50.0,32.0,30.0,33.0,31.0,22.0,29.0,20.0,25.0,22.0,12.0,17.0,18.0,13.0,11.0,11.0,9.0,1.0,6.0,5.0,3.0,3.0 C81072,219.0,204.0,206.0,221.0,227.0,193.0,207.0,229.0,237.0,236.0,257.0,200.0,265.0,240.0,231.0,256.0,211.0,240.0,220.0,212.0,208.0,203.0,228.0,243.0,256.0,252.0,261.0,264.0,278.0,282.0,282.0,266.0,283.0,270.0,288.0,323.0,259.0,266.0,242.0,233.0,235.0,224.0,228.0,225.0,228.0,224.0,184.0,196.0,209.0,180.0,176.0,177.0,196.0,172.0,177.0,182.0,171.0,199.0,163.0,145.0,148.0,143.0,125.0,137.0,131.0,117.0,94.0,95.0,66.0,77.0,73.0,79.0,73.0,67.0,64.0,54.0,47.0,47.0,52.0,54.0,36.0,26.0,36.0,30.0,17.0,18.0,27.0,21.0,16.0,14.0,10.0,10.0,4.0,6.0,4.0,6.0 C81073,72.0,49.0,56.0,74.0,60.0,67.0,59.0,68.0,60.0,83.0,72.0,60.0,63.0,52.0,73.0,70.0,63.0,63.0,86.0,84.0,62.0,65.0,76.0,91.0,98.0,114.0,121.0,124.0,135.0,136.0,129.0,127.0,155.0,136.0,163.0,160.0,158.0,156.0,114.0,134.0,147.0,125.0,128.0,132.0,123.0,108.0,83.0,88.0,75.0,75.0,84.0,75.0,78.0,75.0,81.0,76.0,69.0,72.0,61.0,54.0,71.0,73.0,68.0,67.0,49.0,60.0,54.0,56.0,44.0,47.0,48.0,53.0,50.0,50.0,39.0,31.0,35.0,46.0,54.0,29.0,32.0,26.0,15.0,17.0,16.0,15.0,10.0,20.0,13.0,12.0,7.0,7.0,6.0,4.0,5.0,8.0 C81074,16.0,11.0,22.0,17.0,24.0,27.0,24.0,23.0,29.0,28.0,36.0,19.0,38.0,25.0,36.0,41.0,39.0,34.0,24.0,25.0,26.0,27.0,28.0,24.0,25.0,33.0,42.0,37.0,31.0,37.0,44.0,31.0,44.0,40.0,36.0,46.0,41.0,44.0,35.0,33.0,34.0,29.0,35.0,39.0,37.0,38.0,22.0,27.0,33.0,39.0,39.0,40.0,43.0,40.0,58.0,35.0,40.0,54.0,32.0,41.0,48.0,52.0,51.0,47.0,51.0,45.0,33.0,32.0,41.0,36.0,24.0,28.0,29.0,40.0,25.0,28.0,24.0,31.0,18.0,24.0,18.0,31.0,16.0,18.0,15.0,8.0,12.0,9.0,8.0,2.0,4.0,3.0,1.0,3.0,3.0,2.0 C81075,19.0,13.0,17.0,25.0,22.0,23.0,27.0,16.0,20.0,22.0,37.0,20.0,25.0,24.0,30.0,25.0,36.0,32.0,27.0,18.0,25.0,21.0,25.0,21.0,27.0,30.0,22.0,16.0,21.0,25.0,24.0,18.0,21.0,25.0,23.0,30.0,28.0,20.0,15.0,25.0,21.0,26.0,17.0,28.0,27.0,31.0,32.0,24.0,29.0,31.0,26.0,32.0,25.0,46.0,47.0,44.0,43.0,51.0,50.0,57.0,44.0,51.0,47.0,37.0,40.0,41.0,50.0,48.0,47.0,32.0,39.0,31.0,30.0,26.0,27.0,36.0,37.0,43.0,32.0,24.0,29.0,32.0,22.0,11.0,22.0,14.0,9.0,17.0,10.0,10.0,6.0,5.0,6.0,1.0,1.0,3.0 C81080,27.0,22.0,30.0,36.0,37.0,47.0,34.0,43.0,43.0,43.0,38.0,33.0,49.0,45.0,41.0,42.0,46.0,48.0,46.0,33.0,43.0,34.0,35.0,29.0,41.0,30.0,37.0,45.0,39.0,34.0,35.0,43.0,41.0,52.0,41.0,44.0,40.0,50.0,35.0,48.0,52.0,37.0,55.0,49.0,48.0,36.0,43.0,37.0,39.0,34.0,59.0,42.0,69.0,59.0,84.0,57.0,61.0,73.0,85.0,66.0,73.0,71.0,75.0,87.0,69.0,59.0,56.0,60.0,62.0,72.0,43.0,51.0,54.0,57.0,47.0,51.0,49.0,53.0,53.0,38.0,26.0,39.0,30.0,22.0,23.0,11.0,23.0,6.0,10.0,8.0,6.0,5.0,6.0,3.0,1.0,5.0 C81081,82.0,78.0,94.0,84.0,81.0,120.0,87.0,107.0,115.0,106.0,112.0,101.0,120.0,130.0,111.0,124.0,114.0,125.0,118.0,97.0,83.0,85.0,78.0,75.0,97.0,98.0,104.0,108.0,113.0,122.0,125.0,121.0,124.0,138.0,139.0,152.0,126.0,153.0,137.0,120.0,157.0,118.0,132.0,144.0,114.0,133.0,151.0,122.0,112.0,119.0,130.0,110.0,145.0,134.0,152.0,162.0,144.0,155.0,117.0,168.0,142.0,183.0,132.0,171.0,125.0,132.0,123.0,133.0,108.0,118.0,89.0,111.0,104.0,101.0,105.0,99.0,89.0,93.0,109.0,70.0,70.0,63.0,51.0,47.0,35.0,49.0,16.0,34.0,22.0,23.0,17.0,15.0,3.0,8.0,3.0,9.0 C81082,2.0,7.0,13.0,9.0,18.0,15.0,14.0,20.0,14.0,15.0,11.0,13.0,9.0,15.0,14.0,11.0,14.0,17.0,14.0,13.0,12.0,12.0,14.0,13.0,15.0,20.0,16.0,21.0,18.0,19.0,17.0,16.0,21.0,23.0,18.0,24.0,17.0,14.0,17.0,16.0,13.0,14.0,23.0,10.0,27.0,20.0,13.0,15.0,17.0,22.0,20.0,21.0,22.0,14.0,28.0,43.0,28.0,34.0,27.0,44.0,36.0,36.0,35.0,30.0,26.0,36.0,35.0,33.0,25.0,37.0,34.0,27.0,23.0,35.0,31.0,18.0,23.0,23.0,19.0,12.0,16.0,16.0,15.0,13.0,6.0,13.0,7.0,6.0,2.0,2.0,3.0,4.0,,1.0,1.0, C81083,75.0,66.0,73.0,79.0,79.0,101.0,100.0,110.0,105.0,121.0,85.0,92.0,117.0,82.0,95.0,84.0,100.0,85.0,84.0,84.0,84.0,83.0,93.0,90.0,83.0,105.0,101.0,103.0,113.0,122.0,115.0,125.0,135.0,149.0,157.0,154.0,131.0,146.0,122.0,141.0,142.0,124.0,117.0,100.0,126.0,116.0,97.0,85.0,79.0,105.0,96.0,118.0,100.0,121.0,105.0,105.0,132.0,99.0,119.0,121.0,125.0,115.0,107.0,116.0,112.0,84.0,96.0,87.0,80.0,79.0,66.0,69.0,64.0,66.0,59.0,60.0,63.0,68.0,66.0,46.0,54.0,55.0,35.0,25.0,16.0,21.0,29.0,25.0,15.0,12.0,13.0,11.0,16.0,6.0,3.0,2.0 C81084,95.0,90.0,111.0,110.0,100.0,99.0,110.0,124.0,111.0,115.0,105.0,119.0,108.0,109.0,117.0,107.0,101.0,99.0,90.0,98.0,97.0,82.0,105.0,83.0,94.0,94.0,127.0,108.0,109.0,125.0,134.0,137.0,163.0,168.0,152.0,151.0,154.0,158.0,147.0,133.0,148.0,133.0,127.0,150.0,183.0,168.0,138.0,138.0,110.0,123.0,147.0,105.0,144.0,149.0,145.0,135.0,142.0,149.0,161.0,171.0,155.0,147.0,135.0,141.0,139.0,131.0,106.0,109.0,108.0,106.0,98.0,83.0,94.0,89.0,93.0,91.0,78.0,88.0,95.0,65.0,62.0,65.0,65.0,42.0,39.0,35.0,34.0,32.0,32.0,14.0,13.0,12.0,11.0,5.0,5.0,11.0 C81086,20.0,32.0,27.0,26.0,34.0,40.0,26.0,40.0,42.0,42.0,42.0,35.0,40.0,41.0,45.0,41.0,46.0,44.0,45.0,43.0,35.0,51.0,52.0,38.0,42.0,36.0,48.0,43.0,50.0,44.0,42.0,36.0,47.0,42.0,49.0,40.0,28.0,51.0,48.0,42.0,43.0,36.0,32.0,41.0,47.0,49.0,51.0,34.0,43.0,41.0,41.0,46.0,60.0,69.0,73.0,81.0,78.0,74.0,85.0,81.0,75.0,68.0,55.0,59.0,66.0,49.0,66.0,61.0,51.0,51.0,32.0,39.0,43.0,45.0,38.0,51.0,59.0,53.0,47.0,42.0,33.0,28.0,35.0,25.0,29.0,17.0,15.0,11.0,8.0,16.0,11.0,8.0,6.0,6.0,3.0, C81089,20.0,40.0,29.0,32.0,34.0,35.0,38.0,37.0,33.0,41.0,29.0,28.0,36.0,33.0,32.0,25.0,24.0,18.0,27.0,30.0,27.0,27.0,25.0,22.0,27.0,21.0,27.0,28.0,35.0,35.0,30.0,36.0,40.0,32.0,37.0,33.0,45.0,35.0,34.0,33.0,43.0,38.0,30.0,37.0,41.0,37.0,30.0,37.0,33.0,50.0,37.0,41.0,33.0,49.0,54.0,43.0,47.0,42.0,51.0,46.0,48.0,29.0,58.0,50.0,41.0,34.0,33.0,31.0,38.0,32.0,40.0,32.0,22.0,22.0,30.0,30.0,35.0,55.0,62.0,41.0,41.0,35.0,38.0,24.0,21.0,25.0,23.0,12.0,18.0,6.0,6.0,6.0,8.0,2.0,4.0,2.0 C81091,27.0,39.0,31.0,37.0,42.0,47.0,41.0,43.0,43.0,32.0,42.0,56.0,40.0,51.0,43.0,57.0,47.0,51.0,42.0,35.0,30.0,34.0,36.0,55.0,51.0,39.0,51.0,37.0,48.0,62.0,62.0,60.0,47.0,58.0,69.0,54.0,45.0,56.0,70.0,63.0,62.0,42.0,44.0,62.0,51.0,45.0,46.0,31.0,34.0,46.0,32.0,46.0,50.0,60.0,77.0,44.0,73.0,51.0,71.0,66.0,50.0,62.0,64.0,74.0,68.0,58.0,58.0,65.0,60.0,64.0,55.0,49.0,51.0,55.0,45.0,55.0,59.0,42.0,46.0,30.0,35.0,37.0,19.0,17.0,12.0,12.0,12.0,11.0,7.0,9.0,5.0,7.0,5.0,3.0,1.0,2.0 C81092,11.0,16.0,16.0,17.0,17.0,17.0,28.0,17.0,21.0,20.0,28.0,13.0,27.0,39.0,24.0,30.0,38.0,31.0,34.0,24.0,24.0,24.0,29.0,19.0,18.0,28.0,19.0,27.0,22.0,19.0,22.0,28.0,19.0,22.0,20.0,23.0,24.0,30.0,41.0,29.0,26.0,13.0,24.0,35.0,34.0,33.0,22.0,28.0,25.0,30.0,42.0,28.0,38.0,44.0,34.0,45.0,46.0,39.0,48.0,49.0,59.0,73.0,52.0,57.0,60.0,54.0,63.0,28.0,30.0,50.0,41.0,32.0,36.0,40.0,35.0,38.0,37.0,35.0,47.0,30.0,28.0,29.0,29.0,19.0,21.0,24.0,19.0,15.0,8.0,6.0,8.0,9.0,4.0,8.0,1.0,7.0 C81094,25.0,29.0,30.0,29.0,36.0,41.0,35.0,40.0,27.0,42.0,39.0,47.0,42.0,40.0,38.0,35.0,40.0,35.0,36.0,24.0,35.0,31.0,23.0,29.0,27.0,40.0,33.0,34.0,38.0,40.0,33.0,38.0,50.0,38.0,49.0,44.0,45.0,45.0,42.0,33.0,43.0,33.0,26.0,38.0,40.0,54.0,50.0,40.0,38.0,50.0,49.0,46.0,33.0,64.0,59.0,71.0,51.0,66.0,81.0,60.0,89.0,77.0,78.0,69.0,53.0,58.0,65.0,73.0,73.0,62.0,60.0,61.0,54.0,63.0,61.0,56.0,70.0,54.0,55.0,38.0,41.0,44.0,39.0,25.0,31.0,24.0,29.0,16.0,8.0,12.0,9.0,7.0,1.0,4.0,3.0,8.0 C81095,25.0,29.0,29.0,21.0,25.0,27.0,29.0,24.0,35.0,19.0,28.0,27.0,40.0,41.0,27.0,24.0,44.0,38.0,43.0,31.0,22.0,24.0,23.0,26.0,24.0,32.0,28.0,28.0,27.0,34.0,39.0,32.0,42.0,30.0,32.0,30.0,29.0,36.0,32.0,31.0,29.0,23.0,22.0,31.0,45.0,35.0,26.0,36.0,27.0,39.0,30.0,31.0,40.0,30.0,46.0,39.0,37.0,36.0,34.0,35.0,44.0,39.0,20.0,30.0,32.0,24.0,25.0,27.0,26.0,20.0,20.0,25.0,26.0,13.0,19.0,17.0,26.0,20.0,15.0,21.0,17.0,13.0,13.0,7.0,10.0,7.0,6.0,7.0,2.0,6.0,3.0,1.0,,3.0,,1.0 C81096,16.0,30.0,21.0,37.0,31.0,31.0,27.0,26.0,29.0,31.0,22.0,24.0,36.0,39.0,40.0,34.0,33.0,39.0,39.0,30.0,33.0,27.0,14.0,19.0,27.0,25.0,26.0,39.0,38.0,42.0,28.0,35.0,33.0,33.0,47.0,28.0,45.0,43.0,33.0,35.0,37.0,29.0,31.0,38.0,39.0,39.0,39.0,32.0,27.0,30.0,36.0,38.0,52.0,41.0,45.0,40.0,58.0,59.0,43.0,47.0,37.0,45.0,43.0,33.0,29.0,32.0,42.0,36.0,34.0,33.0,27.0,37.0,23.0,24.0,38.0,31.0,24.0,34.0,29.0,24.0,27.0,21.0,17.0,14.0,8.0,14.0,7.0,6.0,10.0,6.0,4.0,2.0,2.0,,1.0,4.0 C81097,13.0,20.0,19.0,34.0,24.0,31.0,25.0,36.0,39.0,39.0,49.0,48.0,44.0,45.0,45.0,46.0,42.0,47.0,36.0,30.0,32.0,26.0,26.0,23.0,25.0,32.0,36.0,35.0,34.0,49.0,36.0,25.0,24.0,33.0,39.0,27.0,49.0,48.0,42.0,44.0,39.0,44.0,41.0,46.0,59.0,46.0,40.0,50.0,24.0,34.0,42.0,39.0,48.0,49.0,65.0,50.0,41.0,59.0,52.0,53.0,38.0,55.0,57.0,43.0,41.0,33.0,30.0,32.0,35.0,28.0,22.0,27.0,27.0,26.0,28.0,22.0,23.0,21.0,28.0,32.0,21.0,12.0,15.0,15.0,10.0,19.0,7.0,18.0,4.0,6.0,2.0,1.0,2.0,4.0,2.0,6.0 C81099,35.0,31.0,41.0,43.0,46.0,48.0,53.0,43.0,46.0,52.0,52.0,43.0,61.0,57.0,59.0,62.0,51.0,61.0,64.0,61.0,60.0,50.0,47.0,59.0,50.0,41.0,66.0,78.0,73.0,53.0,68.0,70.0,85.0,80.0,79.0,78.0,67.0,63.0,53.0,58.0,53.0,67.0,66.0,68.0,58.0,70.0,51.0,57.0,64.0,59.0,63.0,75.0,80.0,99.0,103.0,86.0,83.0,109.0,85.0,93.0,92.0,93.0,87.0,74.0,72.0,73.0,75.0,62.0,61.0,51.0,59.0,66.0,56.0,66.0,62.0,50.0,54.0,49.0,55.0,46.0,42.0,47.0,26.0,37.0,14.0,22.0,26.0,11.0,12.0,8.0,8.0,4.0,4.0,5.0,3.0,4.0 C81101,25.0,15.0,24.0,34.0,23.0,36.0,35.0,35.0,42.0,51.0,40.0,41.0,50.0,47.0,40.0,41.0,49.0,51.0,41.0,39.0,49.0,41.0,42.0,52.0,38.0,42.0,37.0,48.0,38.0,35.0,53.0,28.0,49.0,51.0,51.0,41.0,49.0,39.0,31.0,54.0,48.0,51.0,49.0,50.0,55.0,62.0,48.0,56.0,64.0,60.0,48.0,58.0,52.0,51.0,80.0,60.0,84.0,65.0,59.0,67.0,65.0,69.0,59.0,61.0,73.0,47.0,61.0,62.0,51.0,42.0,44.0,65.0,49.0,53.0,52.0,40.0,48.0,45.0,58.0,40.0,32.0,35.0,28.0,24.0,21.0,17.0,19.0,11.0,7.0,7.0,6.0,6.0,6.0,6.0,2.0,3.0 C81106,26.0,37.0,27.0,28.0,30.0,38.0,36.0,30.0,34.0,39.0,39.0,51.0,45.0,43.0,41.0,42.0,36.0,43.0,47.0,36.0,34.0,46.0,32.0,33.0,33.0,29.0,45.0,48.0,44.0,50.0,46.0,48.0,45.0,45.0,67.0,51.0,58.0,54.0,64.0,60.0,53.0,50.0,49.0,57.0,54.0,47.0,44.0,43.0,54.0,30.0,20.0,36.0,37.0,61.0,65.0,43.0,57.0,49.0,68.0,47.0,62.0,55.0,53.0,47.0,52.0,49.0,39.0,51.0,35.0,39.0,29.0,38.0,31.0,24.0,28.0,33.0,28.0,35.0,42.0,25.0,20.0,16.0,11.0,12.0,10.0,13.0,16.0,6.0,4.0,4.0,4.0,4.0,3.0,3.0,1.0,5.0 C81108,49.0,59.0,64.0,85.0,79.0,92.0,98.0,82.0,92.0,106.0,108.0,95.0,106.0,98.0,95.0,104.0,105.0,113.0,109.0,87.0,73.0,94.0,76.0,84.0,72.0,76.0,76.0,63.0,64.0,78.0,86.0,90.0,83.0,78.0,98.0,91.0,94.0,75.0,102.0,91.0,84.0,104.0,98.0,104.0,109.0,97.0,112.0,97.0,87.0,100.0,115.0,105.0,115.0,108.0,122.0,103.0,107.0,120.0,126.0,115.0,116.0,123.0,108.0,109.0,108.0,95.0,96.0,90.0,78.0,82.0,51.0,83.0,81.0,79.0,63.0,71.0,77.0,73.0,73.0,48.0,55.0,47.0,40.0,31.0,34.0,33.0,17.0,19.0,15.0,15.0,7.0,10.0,10.0,4.0,4.0,6.0 C81110,61.0,69.0,73.0,72.0,66.0,60.0,70.0,73.0,64.0,79.0,90.0,83.0,84.0,92.0,78.0,85.0,96.0,80.0,93.0,82.0,57.0,74.0,64.0,52.0,71.0,64.0,83.0,66.0,66.0,78.0,90.0,79.0,80.0,77.0,86.0,71.0,66.0,87.0,90.0,71.0,57.0,99.0,66.0,80.0,98.0,94.0,74.0,78.0,92.0,69.0,77.0,69.0,102.0,94.0,99.0,77.0,76.0,95.0,91.0,84.0,81.0,75.0,72.0,70.0,59.0,39.0,53.0,49.0,56.0,62.0,40.0,51.0,37.0,31.0,35.0,38.0,43.0,29.0,54.0,32.0,32.0,34.0,40.0,21.0,19.0,21.0,15.0,7.0,9.0,12.0,6.0,7.0,4.0,6.0,6.0,7.0 C81113,26.0,39.0,39.0,37.0,40.0,34.0,45.0,40.0,55.0,44.0,45.0,53.0,41.0,45.0,39.0,33.0,32.0,33.0,37.0,29.0,36.0,17.0,37.0,23.0,30.0,21.0,34.0,29.0,27.0,24.0,42.0,48.0,34.0,33.0,41.0,46.0,43.0,47.0,49.0,52.0,49.0,50.0,51.0,43.0,46.0,48.0,47.0,34.0,40.0,58.0,55.0,46.0,40.0,42.0,45.0,42.0,31.0,37.0,47.0,36.0,36.0,33.0,35.0,43.0,32.0,26.0,30.0,35.0,24.0,38.0,39.0,41.0,29.0,38.0,33.0,20.0,27.0,32.0,34.0,28.0,18.0,21.0,16.0,15.0,16.0,10.0,12.0,11.0,11.0,4.0,12.0,5.0,5.0,6.0,6.0,3.0 C81114,95.0,87.0,86.0,86.0,84.0,72.0,98.0,79.0,90.0,95.0,90.0,88.0,110.0,92.0,87.0,85.0,82.0,87.0,74.0,78.0,53.0,50.0,60.0,50.0,65.0,71.0,81.0,74.0,94.0,76.0,91.0,87.0,125.0,115.0,117.0,115.0,109.0,91.0,104.0,94.0,105.0,110.0,102.0,81.0,99.0,73.0,90.0,100.0,72.0,83.0,88.0,115.0,112.0,114.0,91.0,118.0,94.0,98.0,106.0,108.0,79.0,76.0,92.0,70.0,70.0,62.0,74.0,72.0,62.0,47.0,49.0,41.0,41.0,45.0,45.0,55.0,40.0,42.0,35.0,28.0,40.0,13.0,31.0,13.0,15.0,14.0,17.0,12.0,6.0,5.0,5.0,4.0,3.0,4.0,6.0, C81115,20.0,12.0,23.0,27.0,25.0,26.0,20.0,24.0,30.0,24.0,21.0,32.0,28.0,30.0,29.0,13.0,26.0,22.0,35.0,26.0,26.0,23.0,25.0,23.0,39.0,26.0,39.0,35.0,29.0,39.0,39.0,32.0,29.0,35.0,23.0,36.0,35.0,26.0,28.0,34.0,25.0,36.0,30.0,33.0,28.0,23.0,15.0,19.0,32.0,21.0,26.0,35.0,24.0,43.0,37.0,38.0,41.0,30.0,30.0,43.0,41.0,36.0,35.0,43.0,36.0,39.0,38.0,29.0,27.0,25.0,29.0,32.0,25.0,28.0,28.0,25.0,18.0,19.0,34.0,17.0,23.0,23.0,9.0,12.0,12.0,17.0,12.0,14.0,5.0,9.0,1.0,4.0,2.0,5.0,,5.0 C81118,45.0,44.0,61.0,45.0,69.0,49.0,67.0,69.0,53.0,50.0,64.0,60.0,63.0,63.0,57.0,75.0,54.0,66.0,64.0,44.0,60.0,64.0,64.0,68.0,68.0,59.0,80.0,59.0,64.0,79.0,68.0,50.0,80.0,73.0,66.0,71.0,76.0,75.0,73.0,92.0,61.0,67.0,61.0,80.0,73.0,59.0,62.0,62.0,64.0,70.0,67.0,86.0,53.0,54.0,42.0,63.0,51.0,50.0,41.0,37.0,38.0,27.0,32.0,27.0,27.0,30.0,28.0,24.0,31.0,28.0,27.0,21.0,27.0,27.0,21.0,21.0,8.0,7.0,5.0,6.0,14.0,11.0,18.0,7.0,10.0,9.0,6.0,4.0,5.0,7.0,5.0,1.0,2.0,1.0,2.0,3.0 C81604,30.0,21.0,34.0,26.0,29.0,27.0,29.0,30.0,21.0,33.0,27.0,31.0,33.0,29.0,36.0,36.0,29.0,27.0,27.0,22.0,22.0,18.0,19.0,22.0,27.0,15.0,35.0,32.0,19.0,33.0,36.0,35.0,47.0,37.0,27.0,21.0,37.0,28.0,34.0,35.0,24.0,36.0,31.0,27.0,31.0,15.0,29.0,28.0,20.0,26.0,28.0,30.0,32.0,36.0,25.0,41.0,23.0,31.0,32.0,28.0,38.0,31.0,34.0,31.0,26.0,25.0,24.0,25.0,15.0,20.0,22.0,27.0,12.0,17.0,15.0,24.0,21.0,28.0,21.0,10.0,13.0,10.0,7.0,5.0,6.0,6.0,9.0,4.0,1.0,7.0,3.0,1.0,1.0,,1.0,3.0 C81611,10.0,6.0,12.0,7.0,10.0,6.0,10.0,7.0,12.0,5.0,10.0,4.0,16.0,14.0,13.0,13.0,8.0,13.0,5.0,8.0,8.0,5.0,7.0,6.0,7.0,7.0,11.0,6.0,8.0,12.0,9.0,10.0,17.0,10.0,15.0,6.0,13.0,11.0,13.0,8.0,11.0,11.0,14.0,11.0,4.0,13.0,6.0,11.0,22.0,17.0,12.0,13.0,19.0,23.0,21.0,18.0,20.0,21.0,21.0,18.0,32.0,27.0,22.0,22.0,20.0,23.0,26.0,26.0,25.0,26.0,16.0,16.0,13.0,14.0,10.0,12.0,22.0,21.0,14.0,14.0,16.0,15.0,17.0,13.0,9.0,7.0,10.0,5.0,6.0,1.0,5.0,2.0,1.0,1.0,2.0,5.0 C81615,10.0,12.0,9.0,18.0,11.0,8.0,12.0,9.0,12.0,11.0,19.0,10.0,20.0,23.0,22.0,15.0,22.0,18.0,25.0,22.0,13.0,15.0,8.0,11.0,11.0,13.0,19.0,17.0,14.0,13.0,25.0,15.0,14.0,10.0,24.0,21.0,21.0,30.0,15.0,19.0,12.0,14.0,11.0,12.0,10.0,19.0,14.0,10.0,10.0,10.0,12.0,13.0,13.0,8.0,15.0,17.0,21.0,14.0,18.0,20.0,23.0,9.0,12.0,20.0,10.0,10.0,16.0,14.0,14.0,6.0,12.0,10.0,13.0,10.0,5.0,3.0,4.0,8.0,11.0,2.0,6.0,3.0,5.0,1.0,5.0,4.0,4.0,,1.0,2.0,1.0,,1.0,,,1.0 C81616,43.0,31.0,27.0,38.0,35.0,26.0,33.0,42.0,37.0,37.0,40.0,56.0,40.0,58.0,46.0,51.0,49.0,55.0,44.0,51.0,38.0,46.0,46.0,46.0,33.0,58.0,46.0,47.0,46.0,31.0,37.0,41.0,37.0,38.0,34.0,38.0,38.0,37.0,36.0,47.0,34.0,36.0,39.0,39.0,46.0,42.0,41.0,42.0,42.0,39.0,43.0,33.0,43.0,38.0,28.0,29.0,37.0,22.0,32.0,26.0,24.0,13.0,12.0,31.0,18.0,11.0,14.0,19.0,15.0,19.0,16.0,15.0,22.0,15.0,14.0,8.0,7.0,8.0,8.0,7.0,5.0,3.0,7.0,5.0,3.0,5.0,3.0,4.0,4.0,4.0,5.0,4.0,2.0,1.0,1.0,3.0 C81634,16.0,23.0,22.0,21.0,30.0,19.0,24.0,28.0,27.0,18.0,24.0,29.0,24.0,23.0,26.0,19.0,28.0,27.0,29.0,16.0,18.0,12.0,22.0,14.0,32.0,19.0,14.0,31.0,22.0,21.0,30.0,29.0,31.0,28.0,37.0,33.0,37.0,29.0,39.0,31.0,24.0,38.0,36.0,31.0,26.0,33.0,26.0,24.0,31.0,22.0,26.0,37.0,48.0,36.0,29.0,29.0,42.0,44.0,51.0,28.0,40.0,44.0,21.0,33.0,30.0,23.0,28.0,34.0,30.0,23.0,28.0,21.0,22.0,24.0,17.0,22.0,21.0,25.0,17.0,20.0,17.0,18.0,13.0,8.0,7.0,10.0,8.0,9.0,7.0,2.0,4.0,,2.0,,,3.0 C81638,18.0,31.0,14.0,22.0,24.0,30.0,21.0,23.0,19.0,18.0,23.0,16.0,27.0,19.0,14.0,12.0,19.0,24.0,11.0,14.0,14.0,19.0,12.0,19.0,20.0,30.0,24.0,34.0,28.0,19.0,35.0,30.0,35.0,33.0,43.0,24.0,23.0,38.0,28.0,25.0,30.0,33.0,27.0,18.0,13.0,29.0,30.0,25.0,11.0,25.0,20.0,24.0,25.0,38.0,26.0,31.0,33.0,33.0,36.0,31.0,35.0,38.0,24.0,23.0,24.0,31.0,22.0,37.0,18.0,23.0,18.0,16.0,20.0,17.0,16.0,9.0,19.0,9.0,18.0,14.0,13.0,13.0,7.0,7.0,10.0,6.0,7.0,6.0,6.0,,2.0,1.0,,,1.0,2.0 C81640,6.0,15.0,15.0,24.0,17.0,24.0,16.0,22.0,22.0,26.0,23.0,19.0,29.0,30.0,20.0,20.0,19.0,19.0,25.0,20.0,22.0,12.0,15.0,13.0,16.0,18.0,25.0,21.0,21.0,20.0,18.0,21.0,28.0,22.0,22.0,19.0,29.0,36.0,22.0,27.0,18.0,35.0,21.0,21.0,31.0,21.0,22.0,17.0,30.0,26.0,18.0,24.0,20.0,25.0,37.0,36.0,29.0,25.0,28.0,25.0,31.0,27.0,26.0,21.0,25.0,25.0,20.0,29.0,20.0,17.0,23.0,26.0,26.0,25.0,21.0,23.0,10.0,24.0,16.0,17.0,16.0,12.0,9.0,6.0,8.0,4.0,3.0,3.0,4.0,3.0,5.0,,,1.0,1.0,1.0 C81647,13.0,18.0,12.0,12.0,13.0,18.0,11.0,19.0,29.0,17.0,20.0,21.0,31.0,20.0,27.0,30.0,24.0,24.0,19.0,16.0,21.0,22.0,12.0,16.0,20.0,15.0,20.0,19.0,25.0,23.0,21.0,13.0,26.0,28.0,14.0,21.0,20.0,25.0,15.0,25.0,30.0,26.0,27.0,18.0,22.0,19.0,15.0,21.0,21.0,21.0,22.0,26.0,32.0,27.0,37.0,37.0,37.0,40.0,38.0,40.0,35.0,26.0,36.0,40.0,39.0,34.0,28.0,21.0,36.0,27.0,23.0,29.0,19.0,23.0,21.0,28.0,22.0,23.0,32.0,23.0,12.0,16.0,12.0,14.0,15.0,12.0,12.0,10.0,9.0,7.0,1.0,1.0,2.0,2.0,,1.0 C81649,39.0,42.0,38.0,48.0,30.0,42.0,41.0,41.0,45.0,43.0,43.0,37.0,36.0,48.0,50.0,43.0,48.0,41.0,40.0,41.0,32.0,24.0,35.0,34.0,32.0,40.0,50.0,42.0,38.0,51.0,56.0,56.0,53.0,55.0,61.0,50.0,43.0,77.0,57.0,49.0,49.0,50.0,41.0,48.0,54.0,40.0,49.0,49.0,32.0,47.0,40.0,55.0,54.0,44.0,51.0,54.0,53.0,67.0,73.0,50.0,62.0,56.0,66.0,51.0,46.0,60.0,61.0,53.0,51.0,41.0,43.0,34.0,32.0,38.0,38.0,31.0,33.0,24.0,33.0,22.0,35.0,20.0,16.0,23.0,13.0,19.0,13.0,10.0,14.0,6.0,8.0,4.0,2.0,2.0,2.0,5.0 C81652,21.0,14.0,23.0,17.0,27.0,22.0,25.0,22.0,20.0,29.0,33.0,25.0,11.0,19.0,20.0,21.0,29.0,24.0,29.0,14.0,19.0,17.0,22.0,22.0,21.0,34.0,35.0,44.0,40.0,40.0,42.0,50.0,44.0,68.0,58.0,54.0,53.0,52.0,49.0,78.0,66.0,64.0,58.0,57.0,65.0,42.0,42.0,38.0,35.0,39.0,44.0,41.0,28.0,54.0,40.0,37.0,26.0,33.0,44.0,41.0,42.0,45.0,38.0,24.0,26.0,33.0,26.0,25.0,25.0,15.0,22.0,19.0,21.0,16.0,28.0,16.0,14.0,18.0,14.0,8.0,11.0,10.0,5.0,11.0,4.0,5.0,6.0,3.0,2.0,1.0,5.0,1.0,3.0,,,4.0 C81653,17.0,23.0,28.0,26.0,30.0,31.0,30.0,28.0,24.0,36.0,34.0,24.0,32.0,41.0,35.0,39.0,33.0,37.0,34.0,19.0,22.0,25.0,17.0,25.0,22.0,28.0,31.0,28.0,30.0,35.0,22.0,30.0,26.0,37.0,35.0,44.0,42.0,37.0,38.0,49.0,59.0,37.0,38.0,43.0,34.0,41.0,35.0,46.0,36.0,36.0,34.0,31.0,39.0,45.0,30.0,35.0,29.0,38.0,20.0,30.0,35.0,34.0,18.0,15.0,22.0,22.0,19.0,17.0,25.0,15.0,19.0,12.0,12.0,19.0,19.0,19.0,21.0,12.0,16.0,10.0,11.0,4.0,5.0,7.0,6.0,7.0,6.0,10.0,6.0,3.0,5.0,2.0,,2.0,,5.0 C81655,11.0,19.0,11.0,11.0,18.0,10.0,16.0,16.0,12.0,17.0,21.0,24.0,20.0,17.0,22.0,24.0,20.0,20.0,21.0,12.0,14.0,16.0,19.0,18.0,22.0,20.0,21.0,20.0,20.0,27.0,31.0,22.0,31.0,27.0,28.0,19.0,15.0,32.0,26.0,21.0,25.0,13.0,23.0,17.0,20.0,23.0,14.0,15.0,25.0,16.0,22.0,27.0,25.0,21.0,32.0,27.0,32.0,41.0,35.0,28.0,28.0,30.0,37.0,22.0,24.0,24.0,20.0,26.0,31.0,22.0,24.0,25.0,23.0,23.0,19.0,24.0,26.0,19.0,23.0,14.0,28.0,17.0,14.0,10.0,10.0,6.0,7.0,7.0,4.0,4.0,4.0,,2.0,1.0,3.0,1.0 C81658,34.0,45.0,46.0,39.0,39.0,44.0,54.0,42.0,37.0,43.0,45.0,39.0,32.0,45.0,36.0,27.0,38.0,37.0,39.0,32.0,35.0,40.0,32.0,38.0,29.0,21.0,35.0,38.0,50.0,39.0,42.0,53.0,48.0,55.0,44.0,46.0,43.0,46.0,56.0,43.0,45.0,37.0,37.0,62.0,49.0,61.0,38.0,33.0,37.0,40.0,47.0,42.0,44.0,53.0,58.0,39.0,51.0,47.0,50.0,63.0,44.0,53.0,53.0,58.0,56.0,46.0,43.0,50.0,51.0,46.0,50.0,47.0,46.0,27.0,50.0,45.0,45.0,40.0,47.0,32.0,33.0,30.0,31.0,27.0,22.0,16.0,9.0,10.0,16.0,7.0,12.0,5.0,4.0,2.0,3.0,2.0 C81662,43.0,42.0,44.0,37.0,39.0,35.0,38.0,35.0,50.0,41.0,49.0,41.0,42.0,41.0,42.0,49.0,62.0,60.0,52.0,44.0,49.0,59.0,41.0,39.0,54.0,52.0,50.0,36.0,54.0,41.0,55.0,50.0,35.0,61.0,60.0,41.0,43.0,41.0,40.0,60.0,65.0,35.0,58.0,40.0,48.0,38.0,45.0,54.0,47.0,55.0,56.0,62.0,67.0,61.0,74.0,59.0,67.0,69.0,46.0,66.0,72.0,65.0,65.0,56.0,58.0,53.0,34.0,63.0,53.0,38.0,46.0,45.0,39.0,40.0,46.0,34.0,38.0,35.0,39.0,36.0,41.0,28.0,18.0,19.0,12.0,14.0,16.0,10.0,6.0,6.0,2.0,4.0,5.0,,2.0,5.0 Y01812,60.0,67.0,72.0,83.0,64.0,72.0,72.0,69.0,81.0,59.0,70.0,77.0,69.0,87.0,76.0,72.0,87.0,75.0,63.0,59.0,47.0,50.0,42.0,47.0,42.0,56.0,70.0,64.0,64.0,73.0,59.0,60.0,83.0,87.0,73.0,94.0,101.0,94.0,73.0,82.0,69.0,69.0,68.0,80.0,78.0,84.0,54.0,81.0,70.0,81.0,62.0,59.0,81.0,98.0,84.0,78.0,61.0,95.0,89.0,67.0,80.0,68.0,68.0,65.0,46.0,48.0,57.0,64.0,48.0,37.0,44.0,34.0,43.0,49.0,36.0,36.0,32.0,38.0,39.0,26.0,40.0,31.0,24.0,17.0,16.0,19.0,15.0,11.0,10.0,11.0,4.0,3.0,5.0,5.0,, Y04977,32.0,38.0,31.0,34.0,25.0,35.0,35.0,38.0,25.0,22.0,21.0,32.0,18.0,27.0,27.0,29.0,37.0,38.0,32.0,19.0,29.0,18.0,21.0,26.0,38.0,26.0,47.0,41.0,41.0,41.0,48.0,45.0,43.0,47.0,57.0,37.0,54.0,41.0,46.0,43.0,54.0,46.0,39.0,22.0,36.0,33.0,44.0,32.0,24.0,20.0,17.0,33.0,32.0,41.0,28.0,34.0,52.0,51.0,53.0,34.0,44.0,41.0,39.0,55.0,32.0,33.0,35.0,28.0,33.0,29.0,30.0,20.0,25.0,27.0,25.0,24.0,22.0,18.0,27.0,18.0,30.0,13.0,14.0,15.0,12.0,8.0,7.0,9.0,6.0,4.0,1.0,4.0,2.0,,1.0,1.0 Y04995,70.0,95.0,91.0,93.0,108.0,87.0,109.0,95.0,110.0,114.0,114.0,100.0,107.0,147.0,148.0,135.0,128.0,135.0,105.0,128.0,97.0,103.0,87.0,109.0,112.0,127.0,130.0,129.0,141.0,113.0,121.0,150.0,135.0,152.0,139.0,134.0,130.0,137.0,113.0,124.0,130.0,127.0,135.0,114.0,121.0,116.0,101.0,114.0,121.0,111.0,117.0,140.0,126.0,158.0,142.0,161.0,131.0,137.0,130.0,113.0,148.0,132.0,119.0,95.0,104.0,95.0,114.0,105.0,98.0,95.0,87.0,108.0,98.0,80.0,83.0,91.0,72.0,90.0,77.0,65.0,55.0,41.0,54.0,42.0,41.0,23.0,24.0,29.0,12.0,18.0,16.0,6.0,10.0,9.0,9.0,7.0 Y05286,88.0,102.0,119.0,137.0,110.0,152.0,140.0,123.0,162.0,147.0,159.0,146.0,146.0,160.0,148.0,158.0,145.0,148.0,121.0,106.0,101.0,103.0,80.0,100.0,94.0,114.0,86.0,102.0,96.0,107.0,116.0,124.0,127.0,117.0,142.0,121.0,124.0,145.0,118.0,110.0,130.0,156.0,144.0,124.0,121.0,111.0,98.0,108.0,108.0,95.0,102.0,99.0,110.0,113.0,109.0,102.0,105.0,100.0,86.0,93.0,104.0,97.0,85.0,87.0,72.0,74.0,70.0,64.0,44.0,61.0,40.0,34.0,40.0,34.0,48.0,40.0,36.0,34.0,33.0,33.0,22.0,20.0,19.0,13.0,20.0,9.0,13.0,16.0,8.0,7.0,8.0,8.0,4.0,5.0,2.0,6.0 Y05733,16.0,18.0,44.0,36.0,38.0,40.0,24.0,44.0,46.0,54.0,45.0,39.0,49.0,44.0,48.0,38.0,51.0,23.0,33.0,34.0,38.0,43.0,41.0,29.0,38.0,43.0,44.0,48.0,53.0,51.0,62.0,59.0,56.0,58.0,64.0,82.0,63.0,63.0,57.0,51.0,59.0,53.0,41.0,43.0,68.0,48.0,46.0,43.0,48.0,38.0,44.0,46.0,58.0,27.0,38.0,45.0,41.0,45.0,42.0,31.0,37.0,51.0,49.0,47.0,38.0,34.0,33.0,34.0,30.0,32.0,18.0,28.0,17.0,20.0,21.0,25.0,20.0,17.0,24.0,16.0,19.0,14.0,11.0,13.0,6.0,8.0,8.0,7.0,4.0,4.0,,1.0,5.0,,2.0,3.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 D83001,51.0,45.0,48.0,50.0,62.0,53.0,42.0,58.0,39.0,54.0,44.0,54.0,59.0,53.0,54.0,50.0,54.0,70.0,65.0,55.0,59.0,49.0,51.0,58.0,59.0,48.0,59.0,62.0,54.0,52.0,48.0,56.0,59.0,45.0,60.0,54.0,52.0,59.0,64.0,61.0,52.0,59.0,77.0,58.0,47.0,62.0,62.0,70.0,61.0,64.0,53.0,69.0,82.0,80.0,89.0,71.0,77.0,84.0,86.0,99.0,91.0,84.0,87.0,90.0,87.0,78.0,76.0,72.0,64.0,58.0,69.0,72.0,56.0,64.0,74.0,65.0,58.0,86.0,81.0,57.0,82.0,56.0,54.0,44.0,44.0,26.0,46.0,24.0,24.0,20.0,11.0,12.0,7.0,4.0,7.0,11.0 D83003,10.0,14.0,15.0,16.0,20.0,26.0,28.0,30.0,20.0,20.0,26.0,28.0,22.0,30.0,27.0,26.0,25.0,21.0,20.0,22.0,11.0,20.0,23.0,28.0,24.0,21.0,24.0,21.0,25.0,22.0,17.0,28.0,21.0,27.0,24.0,25.0,27.0,23.0,18.0,28.0,25.0,20.0,19.0,32.0,32.0,22.0,19.0,27.0,26.0,26.0,33.0,29.0,32.0,32.0,36.0,44.0,30.0,36.0,50.0,38.0,59.0,52.0,48.0,39.0,40.0,39.0,36.0,49.0,41.0,31.0,31.0,29.0,30.0,45.0,56.0,33.0,50.0,42.0,41.0,29.0,33.0,28.0,25.0,27.0,10.0,19.0,14.0,15.0,8.0,9.0,4.0,4.0,,5.0,,5.0 D83004,33.0,38.0,29.0,45.0,38.0,55.0,56.0,49.0,62.0,65.0,58.0,61.0,57.0,65.0,65.0,53.0,54.0,50.0,61.0,53.0,59.0,66.0,42.0,52.0,57.0,69.0,40.0,55.0,57.0,57.0,75.0,54.0,59.0,77.0,76.0,65.0,64.0,67.0,70.0,73.0,65.0,86.0,69.0,70.0,75.0,93.0,66.0,72.0,67.0,72.0,69.0,79.0,60.0,55.0,67.0,72.0,69.0,66.0,77.0,76.0,73.0,73.0,75.0,73.0,74.0,62.0,68.0,80.0,72.0,47.0,33.0,40.0,54.0,52.0,41.0,43.0,56.0,56.0,46.0,49.0,38.0,37.0,28.0,21.0,19.0,19.0,21.0,25.0,19.0,15.0,11.0,12.0,16.0,2.0,9.0,7.0 D83005,41.0,54.0,57.0,62.0,66.0,51.0,55.0,54.0,60.0,54.0,46.0,57.0,73.0,77.0,69.0,73.0,77.0,69.0,70.0,74.0,59.0,68.0,63.0,70.0,64.0,68.0,83.0,84.0,85.0,88.0,88.0,89.0,90.0,108.0,101.0,107.0,98.0,89.0,96.0,81.0,81.0,98.0,84.0,99.0,85.0,100.0,103.0,68.0,73.0,102.0,83.0,90.0,92.0,94.0,110.0,113.0,103.0,83.0,101.0,119.0,98.0,81.0,92.0,96.0,88.0,76.0,67.0,102.0,67.0,80.0,60.0,81.0,83.0,73.0,73.0,81.0,59.0,89.0,92.0,70.0,74.0,63.0,51.0,61.0,41.0,38.0,31.0,34.0,40.0,17.0,21.0,13.0,13.0,9.0,9.0,17.0 D83006,31.0,28.0,28.0,28.0,32.0,32.0,35.0,38.0,42.0,27.0,49.0,18.0,28.0,36.0,30.0,46.0,30.0,28.0,33.0,33.0,34.0,26.0,26.0,39.0,24.0,28.0,31.0,31.0,29.0,18.0,32.0,43.0,24.0,32.0,37.0,35.0,28.0,31.0,36.0,32.0,28.0,33.0,26.0,37.0,35.0,42.0,32.0,35.0,30.0,30.0,40.0,40.0,51.0,48.0,44.0,54.0,55.0,58.0,72.0,71.0,74.0,63.0,64.0,66.0,70.0,56.0,56.0,58.0,68.0,50.0,58.0,59.0,56.0,51.0,42.0,62.0,49.0,63.0,62.0,36.0,43.0,30.0,26.0,29.0,25.0,27.0,19.0,18.0,16.0,11.0,9.0,7.0,4.0,6.0,2.0,8.0 D83007,35.0,41.0,41.0,35.0,41.0,35.0,41.0,58.0,41.0,57.0,61.0,54.0,63.0,56.0,74.0,53.0,59.0,59.0,46.0,40.0,36.0,40.0,43.0,54.0,60.0,49.0,48.0,37.0,44.0,40.0,47.0,37.0,40.0,57.0,31.0,47.0,41.0,44.0,39.0,49.0,34.0,45.0,41.0,38.0,45.0,53.0,46.0,32.0,36.0,54.0,58.0,52.0,67.0,60.0,63.0,61.0,79.0,79.0,75.0,70.0,71.0,76.0,76.0,67.0,73.0,69.0,76.0,75.0,60.0,57.0,55.0,61.0,58.0,57.0,59.0,60.0,44.0,59.0,66.0,52.0,42.0,43.0,45.0,44.0,22.0,23.0,19.0,23.0,10.0,11.0,12.0,5.0,5.0,7.0,,7.0 D83008,87.0,82.0,96.0,98.0,89.0,88.0,94.0,83.0,110.0,120.0,123.0,109.0,104.0,95.0,103.0,96.0,84.0,116.0,86.0,112.0,104.0,88.0,101.0,101.0,87.0,109.0,135.0,136.0,129.0,148.0,145.0,164.0,162.0,152.0,175.0,170.0,166.0,188.0,163.0,189.0,216.0,164.0,178.0,169.0,153.0,169.0,115.0,131.0,92.0,102.0,104.0,101.0,110.0,119.0,116.0,116.0,95.0,105.0,86.0,91.0,90.0,79.0,83.0,68.0,78.0,75.0,73.0,100.0,69.0,66.0,75.0,72.0,53.0,63.0,48.0,57.0,56.0,50.0,59.0,38.0,40.0,26.0,33.0,28.0,25.0,23.0,13.0,11.0,16.0,11.0,9.0,7.0,4.0,4.0,2.0,3.0 D83012,81.0,84.0,111.0,96.0,103.0,120.0,119.0,138.0,127.0,157.0,134.0,143.0,126.0,156.0,150.0,142.0,145.0,135.0,141.0,150.0,125.0,126.0,96.0,109.0,108.0,108.0,130.0,121.0,115.0,138.0,125.0,139.0,139.0,149.0,150.0,165.0,157.0,168.0,151.0,157.0,159.0,140.0,178.0,159.0,168.0,136.0,182.0,146.0,147.0,154.0,145.0,148.0,191.0,188.0,179.0,201.0,173.0,202.0,188.0,178.0,170.0,200.0,191.0,175.0,167.0,148.0,167.0,168.0,147.0,112.0,130.0,145.0,122.0,124.0,153.0,142.0,140.0,179.0,149.0,109.0,101.0,94.0,114.0,80.0,71.0,64.0,51.0,41.0,30.0,37.0,30.0,22.0,17.0,10.0,14.0,12.0 D83013,45.0,58.0,56.0,57.0,68.0,68.0,69.0,63.0,73.0,73.0,46.0,55.0,72.0,63.0,60.0,65.0,58.0,66.0,57.0,55.0,62.0,49.0,55.0,54.0,72.0,73.0,71.0,72.0,76.0,85.0,85.0,83.0,90.0,87.0,104.0,84.0,94.0,107.0,112.0,80.0,74.0,88.0,90.0,89.0,87.0,86.0,81.0,71.0,74.0,79.0,84.0,85.0,80.0,90.0,103.0,90.0,90.0,84.0,93.0,93.0,101.0,113.0,102.0,90.0,80.0,71.0,68.0,90.0,66.0,75.0,63.0,66.0,71.0,59.0,58.0,66.0,77.0,74.0,98.0,53.0,62.0,75.0,52.0,45.0,48.0,40.0,45.0,34.0,27.0,31.0,10.0,11.0,13.0,11.0,6.0,9.0 D83015,20.0,34.0,29.0,35.0,32.0,22.0,31.0,28.0,33.0,34.0,35.0,34.0,25.0,33.0,29.0,42.0,37.0,32.0,30.0,32.0,45.0,34.0,24.0,31.0,30.0,53.0,39.0,34.0,47.0,34.0,49.0,38.0,52.0,50.0,36.0,33.0,44.0,47.0,40.0,50.0,42.0,39.0,50.0,35.0,46.0,49.0,47.0,42.0,39.0,55.0,45.0,64.0,45.0,53.0,51.0,57.0,65.0,62.0,57.0,64.0,51.0,77.0,49.0,58.0,60.0,67.0,74.0,66.0,53.0,55.0,49.0,52.0,64.0,62.0,67.0,46.0,71.0,73.0,71.0,42.0,54.0,52.0,37.0,48.0,34.0,26.0,31.0,17.0,15.0,23.0,15.0,8.0,11.0,7.0,10.0,15.0 D83017,73.0,74.0,75.0,66.0,59.0,53.0,54.0,79.0,65.0,70.0,67.0,83.0,75.0,69.0,69.0,77.0,80.0,63.0,63.0,53.0,69.0,56.0,65.0,64.0,75.0,78.0,62.0,78.0,77.0,85.0,78.0,91.0,91.0,73.0,81.0,90.0,96.0,77.0,74.0,89.0,77.0,87.0,89.0,75.0,71.0,78.0,91.0,62.0,84.0,82.0,67.0,93.0,98.0,101.0,94.0,99.0,99.0,108.0,97.0,97.0,105.0,103.0,81.0,107.0,104.0,90.0,88.0,88.0,82.0,79.0,79.0,107.0,76.0,61.0,82.0,92.0,78.0,99.0,75.0,57.0,69.0,49.0,52.0,40.0,37.0,45.0,32.0,20.0,26.0,25.0,15.0,18.0,10.0,5.0,4.0,18.0 D83018,59.0,42.0,59.0,78.0,68.0,80.0,66.0,80.0,83.0,78.0,94.0,77.0,95.0,86.0,75.0,78.0,73.0,67.0,69.0,57.0,59.0,63.0,63.0,68.0,66.0,69.0,73.0,69.0,67.0,60.0,64.0,83.0,86.0,85.0,88.0,82.0,83.0,71.0,68.0,90.0,78.0,79.0,97.0,86.0,98.0,93.0,93.0,69.0,81.0,80.0,73.0,66.0,85.0,80.0,78.0,91.0,91.0,88.0,83.0,88.0,88.0,84.0,97.0,80.0,87.0,78.0,65.0,59.0,73.0,54.0,69.0,62.0,69.0,61.0,70.0,67.0,57.0,84.0,54.0,51.0,58.0,34.0,41.0,36.0,33.0,28.0,22.0,23.0,13.0,13.0,18.0,9.0,8.0,5.0,1.0,7.0 D83019,23.0,36.0,27.0,25.0,31.0,23.0,33.0,32.0,25.0,48.0,35.0,36.0,38.0,40.0,42.0,33.0,53.0,38.0,38.0,31.0,39.0,36.0,29.0,45.0,34.0,43.0,38.0,30.0,29.0,36.0,39.0,41.0,44.0,45.0,33.0,38.0,39.0,34.0,44.0,38.0,43.0,37.0,46.0,45.0,50.0,48.0,39.0,50.0,40.0,42.0,45.0,50.0,56.0,55.0,60.0,71.0,48.0,60.0,59.0,70.0,71.0,67.0,72.0,65.0,76.0,61.0,71.0,56.0,58.0,61.0,63.0,59.0,58.0,47.0,55.0,39.0,47.0,68.0,59.0,55.0,37.0,35.0,42.0,26.0,19.0,11.0,18.0,12.0,9.0,10.0,7.0,10.0,2.0,1.0,3.0,4.0 D83020,17.0,23.0,26.0,26.0,19.0,30.0,27.0,42.0,28.0,49.0,44.0,46.0,51.0,56.0,72.0,71.0,78.0,73.0,73.0,52.0,50.0,43.0,24.0,35.0,31.0,42.0,32.0,34.0,30.0,28.0,37.0,23.0,35.0,36.0,34.0,42.0,39.0,41.0,42.0,37.0,36.0,43.0,30.0,46.0,44.0,51.0,46.0,29.0,30.0,40.0,51.0,49.0,48.0,56.0,60.0,62.0,66.0,46.0,58.0,61.0,72.0,63.0,68.0,76.0,64.0,62.0,67.0,63.0,52.0,59.0,60.0,48.0,46.0,50.0,53.0,49.0,46.0,55.0,56.0,39.0,40.0,33.0,23.0,27.0,24.0,16.0,29.0,20.0,23.0,11.0,8.0,11.0,9.0,3.0,3.0,13.0 D83021,97.0,80.0,119.0,121.0,113.0,126.0,109.0,106.0,150.0,100.0,94.0,123.0,119.0,113.0,144.0,129.0,132.0,124.0,113.0,107.0,100.0,92.0,95.0,110.0,91.0,118.0,115.0,129.0,123.0,160.0,151.0,147.0,164.0,167.0,158.0,176.0,161.0,190.0,200.0,158.0,148.0,148.0,140.0,149.0,125.0,152.0,134.0,100.0,108.0,108.0,122.0,125.0,113.0,131.0,122.0,156.0,148.0,119.0,122.0,123.0,134.0,93.0,100.0,91.0,97.0,81.0,83.0,81.0,74.0,78.0,75.0,67.0,72.0,70.0,55.0,78.0,68.0,61.0,94.0,45.0,51.0,42.0,58.0,27.0,35.0,33.0,22.0,22.0,15.0,17.0,12.0,4.0,6.0,7.0,2.0,8.0 D83024,40.0,52.0,49.0,58.0,63.0,62.0,60.0,64.0,74.0,74.0,72.0,74.0,68.0,67.0,86.0,77.0,87.0,85.0,86.0,80.0,86.0,70.0,78.0,76.0,107.0,88.0,97.0,69.0,84.0,85.0,90.0,85.0,94.0,93.0,94.0,99.0,108.0,100.0,91.0,80.0,96.0,86.0,90.0,73.0,91.0,99.0,95.0,87.0,101.0,85.0,100.0,104.0,94.0,118.0,112.0,104.0,97.0,112.0,108.0,117.0,99.0,76.0,81.0,89.0,82.0,84.0,83.0,74.0,71.0,87.0,61.0,59.0,67.0,67.0,64.0,70.0,60.0,76.0,69.0,46.0,48.0,47.0,39.0,27.0,29.0,27.0,19.0,21.0,14.0,4.0,9.0,14.0,11.0,5.0,9.0,12.0 D83026,16.0,35.0,39.0,29.0,29.0,35.0,39.0,31.0,43.0,39.0,52.0,48.0,58.0,61.0,63.0,57.0,73.0,87.0,80.0,60.0,39.0,58.0,45.0,55.0,51.0,41.0,42.0,35.0,32.0,33.0,46.0,32.0,33.0,37.0,38.0,39.0,45.0,49.0,42.0,38.0,33.0,43.0,34.0,41.0,36.0,44.0,47.0,38.0,37.0,44.0,55.0,55.0,61.0,70.0,59.0,72.0,66.0,65.0,69.0,77.0,83.0,75.0,80.0,86.0,73.0,89.0,64.0,73.0,69.0,43.0,64.0,77.0,69.0,49.0,53.0,68.0,68.0,72.0,61.0,37.0,52.0,39.0,42.0,32.0,40.0,23.0,26.0,21.0,16.0,17.0,10.0,13.0,7.0,9.0,4.0,9.0 D83027,52.0,72.0,64.0,76.0,50.0,73.0,73.0,61.0,53.0,70.0,68.0,67.0,56.0,64.0,55.0,53.0,63.0,65.0,57.0,50.0,51.0,47.0,67.0,54.0,55.0,65.0,64.0,75.0,71.0,93.0,82.0,99.0,91.0,96.0,116.0,106.0,97.0,95.0,105.0,80.0,99.0,79.0,93.0,79.0,83.0,88.0,78.0,60.0,64.0,74.0,70.0,60.0,86.0,95.0,73.0,82.0,82.0,78.0,72.0,77.0,62.0,87.0,71.0,79.0,76.0,75.0,60.0,64.0,58.0,44.0,58.0,46.0,59.0,56.0,48.0,51.0,53.0,44.0,60.0,39.0,48.0,30.0,23.0,31.0,20.0,21.0,19.0,17.0,11.0,15.0,7.0,10.0,6.0,9.0,4.0,2.0 D83028,40.0,37.0,40.0,37.0,37.0,54.0,51.0,44.0,46.0,52.0,53.0,46.0,43.0,40.0,64.0,47.0,39.0,39.0,50.0,47.0,27.0,41.0,33.0,41.0,33.0,46.0,50.0,50.0,42.0,48.0,60.0,48.0,51.0,46.0,49.0,49.0,56.0,55.0,64.0,49.0,58.0,56.0,48.0,55.0,50.0,44.0,52.0,58.0,38.0,37.0,47.0,51.0,53.0,40.0,55.0,68.0,52.0,59.0,69.0,64.0,59.0,76.0,65.0,72.0,57.0,52.0,78.0,65.0,75.0,54.0,80.0,81.0,70.0,72.0,64.0,60.0,60.0,64.0,77.0,59.0,38.0,42.0,56.0,30.0,24.0,30.0,28.0,20.0,23.0,15.0,15.0,12.0,6.0,2.0,2.0,8.0 D83029,44.0,42.0,73.0,60.0,65.0,50.0,65.0,67.0,69.0,86.0,64.0,58.0,74.0,67.0,95.0,61.0,57.0,75.0,59.0,69.0,69.0,68.0,70.0,67.0,82.0,87.0,78.0,93.0,88.0,104.0,101.0,101.0,96.0,101.0,133.0,122.0,131.0,112.0,128.0,143.0,122.0,153.0,135.0,133.0,131.0,141.0,117.0,100.0,105.0,94.0,119.0,88.0,78.0,112.0,106.0,88.0,115.0,96.0,105.0,103.0,108.0,100.0,107.0,77.0,91.0,104.0,73.0,79.0,55.0,69.0,47.0,75.0,55.0,65.0,60.0,69.0,67.0,78.0,84.0,45.0,50.0,43.0,37.0,38.0,34.0,40.0,30.0,26.0,21.0,24.0,12.0,14.0,10.0,5.0,9.0,11.0 D83033,31.0,19.0,38.0,36.0,37.0,42.0,34.0,32.0,38.0,39.0,38.0,46.0,58.0,47.0,61.0,51.0,39.0,62.0,49.0,53.0,41.0,54.0,40.0,48.0,48.0,52.0,44.0,45.0,51.0,51.0,49.0,50.0,39.0,49.0,24.0,41.0,44.0,53.0,41.0,60.0,39.0,56.0,54.0,53.0,63.0,41.0,45.0,43.0,46.0,60.0,58.0,62.0,71.0,69.0,61.0,75.0,74.0,86.0,86.0,82.0,92.0,84.0,84.0,77.0,92.0,73.0,89.0,72.0,88.0,68.0,74.0,78.0,75.0,58.0,77.0,78.0,72.0,88.0,76.0,76.0,61.0,48.0,51.0,42.0,25.0,30.0,26.0,17.0,20.0,15.0,14.0,10.0,9.0,1.0,3.0,3.0 D83037,51.0,66.0,66.0,64.0,67.0,85.0,71.0,81.0,71.0,106.0,84.0,82.0,104.0,87.0,98.0,113.0,115.0,108.0,91.0,70.0,66.0,80.0,77.0,66.0,75.0,85.0,62.0,71.0,82.0,49.0,91.0,75.0,71.0,70.0,97.0,76.0,81.0,68.0,76.0,82.0,69.0,84.0,81.0,82.0,94.0,103.0,85.0,78.0,93.0,103.0,110.0,97.0,123.0,120.0,115.0,94.0,117.0,108.0,122.0,119.0,122.0,112.0,115.0,109.0,118.0,101.0,103.0,109.0,110.0,93.0,90.0,87.0,87.0,91.0,98.0,120.0,78.0,116.0,123.0,86.0,87.0,81.0,72.0,48.0,48.0,50.0,43.0,39.0,28.0,23.0,19.0,14.0,14.0,6.0,12.0,14.0 D83038,69.0,69.0,87.0,74.0,89.0,93.0,75.0,98.0,93.0,99.0,85.0,90.0,109.0,117.0,87.0,112.0,100.0,87.0,89.0,115.0,76.0,83.0,67.0,68.0,69.0,75.0,89.0,99.0,86.0,90.0,113.0,103.0,79.0,95.0,105.0,94.0,89.0,114.0,103.0,101.0,97.0,99.0,96.0,121.0,114.0,103.0,99.0,100.0,100.0,84.0,95.0,109.0,112.0,117.0,99.0,109.0,114.0,98.0,124.0,113.0,92.0,106.0,109.0,116.0,90.0,90.0,69.0,99.0,72.0,68.0,68.0,68.0,74.0,84.0,61.0,80.0,73.0,67.0,64.0,65.0,57.0,48.0,46.0,46.0,21.0,33.0,27.0,23.0,14.0,15.0,15.0,19.0,13.0,8.0,9.0,11.0 D83040,34.0,51.0,40.0,44.0,53.0,36.0,44.0,53.0,51.0,48.0,70.0,66.0,74.0,83.0,89.0,81.0,91.0,73.0,103.0,86.0,80.0,61.0,88.0,42.0,46.0,58.0,53.0,59.0,53.0,57.0,51.0,54.0,61.0,66.0,92.0,63.0,51.0,70.0,68.0,77.0,60.0,64.0,61.0,75.0,75.0,58.0,68.0,67.0,70.0,74.0,67.0,77.0,65.0,73.0,83.0,72.0,88.0,69.0,78.0,94.0,77.0,72.0,58.0,78.0,58.0,67.0,64.0,61.0,58.0,56.0,67.0,52.0,48.0,62.0,72.0,49.0,66.0,66.0,56.0,63.0,41.0,44.0,44.0,31.0,28.0,38.0,28.0,26.0,16.0,9.0,12.0,7.0,7.0,5.0,7.0,8.0 D83041,25.0,31.0,26.0,26.0,39.0,41.0,38.0,46.0,48.0,49.0,41.0,44.0,52.0,70.0,56.0,73.0,67.0,51.0,59.0,48.0,44.0,58.0,39.0,43.0,53.0,38.0,59.0,36.0,39.0,36.0,45.0,40.0,34.0,40.0,36.0,43.0,41.0,40.0,40.0,36.0,44.0,39.0,40.0,46.0,65.0,53.0,59.0,47.0,51.0,64.0,61.0,62.0,70.0,88.0,75.0,80.0,76.0,94.0,73.0,105.0,86.0,76.0,81.0,81.0,84.0,75.0,95.0,79.0,70.0,74.0,63.0,69.0,66.0,72.0,65.0,57.0,71.0,78.0,73.0,36.0,44.0,39.0,39.0,18.0,25.0,28.0,27.0,17.0,12.0,13.0,12.0,3.0,6.0,3.0,2.0,2.0 D83043,16.0,19.0,28.0,18.0,18.0,26.0,16.0,27.0,26.0,27.0,25.0,32.0,33.0,33.0,45.0,30.0,39.0,40.0,30.0,25.0,31.0,26.0,18.0,34.0,28.0,25.0,28.0,28.0,25.0,28.0,26.0,40.0,29.0,40.0,26.0,35.0,24.0,34.0,34.0,37.0,40.0,28.0,36.0,29.0,34.0,29.0,36.0,35.0,41.0,36.0,34.0,42.0,45.0,64.0,40.0,51.0,40.0,50.0,47.0,62.0,51.0,54.0,57.0,59.0,39.0,53.0,56.0,49.0,40.0,32.0,40.0,47.0,38.0,45.0,37.0,44.0,67.0,46.0,48.0,26.0,42.0,29.0,28.0,29.0,21.0,18.0,13.0,17.0,13.0,9.0,6.0,6.0,9.0,2.0,2.0,3.0 D83044,131.0,124.0,134.0,130.0,149.0,132.0,130.0,130.0,132.0,141.0,167.0,137.0,118.0,150.0,136.0,135.0,122.0,128.0,119.0,122.0,94.0,108.0,98.0,105.0,123.0,123.0,148.0,159.0,161.0,168.0,163.0,175.0,182.0,184.0,169.0,179.0,180.0,182.0,183.0,169.0,175.0,148.0,167.0,177.0,178.0,118.0,144.0,119.0,129.0,141.0,125.0,127.0,165.0,143.0,152.0,154.0,147.0,149.0,141.0,143.0,131.0,136.0,139.0,148.0,114.0,120.0,132.0,108.0,113.0,107.0,83.0,118.0,94.0,102.0,90.0,96.0,82.0,92.0,110.0,75.0,81.0,63.0,51.0,61.0,46.0,55.0,34.0,31.0,21.0,24.0,14.0,17.0,12.0,6.0,10.0,21.0 D83045,23.0,18.0,22.0,23.0,27.0,21.0,24.0,21.0,26.0,25.0,20.0,25.0,41.0,28.0,29.0,37.0,22.0,23.0,33.0,19.0,34.0,28.0,24.0,28.0,24.0,27.0,31.0,23.0,32.0,51.0,32.0,36.0,33.0,25.0,42.0,35.0,45.0,32.0,30.0,36.0,31.0,20.0,40.0,31.0,31.0,38.0,26.0,29.0,35.0,30.0,32.0,36.0,32.0,42.0,39.0,40.0,52.0,26.0,43.0,52.0,36.0,46.0,40.0,44.0,35.0,44.0,36.0,32.0,28.0,28.0,28.0,32.0,38.0,29.0,27.0,30.0,36.0,38.0,26.0,30.0,23.0,24.0,25.0,6.0,18.0,21.0,20.0,13.0,8.0,6.0,5.0,4.0,5.0,5.0,1.0,3.0 D83046,127.0,134.0,145.0,162.0,140.0,161.0,176.0,154.0,160.0,163.0,175.0,177.0,179.0,186.0,194.0,177.0,196.0,184.0,189.0,192.0,145.0,183.0,145.0,146.0,163.0,182.0,169.0,159.0,181.0,194.0,159.0,193.0,206.0,221.0,224.0,219.0,213.0,201.0,268.0,243.0,221.0,222.0,210.0,199.0,218.0,236.0,243.0,215.0,235.0,210.0,174.0,186.0,230.0,183.0,224.0,217.0,224.0,194.0,197.0,194.0,207.0,198.0,172.0,149.0,163.0,144.0,157.0,134.0,136.0,110.0,121.0,135.0,104.0,116.0,131.0,118.0,121.0,142.0,136.0,74.0,90.0,82.0,83.0,55.0,51.0,52.0,45.0,53.0,34.0,30.0,32.0,17.0,21.0,6.0,12.0,28.0 D83048,58.0,59.0,62.0,65.0,71.0,71.0,73.0,86.0,88.0,63.0,95.0,75.0,74.0,96.0,79.0,73.0,84.0,84.0,82.0,74.0,78.0,77.0,72.0,71.0,76.0,89.0,82.0,85.0,97.0,87.0,89.0,87.0,100.0,102.0,98.0,107.0,96.0,130.0,104.0,105.0,106.0,108.0,97.0,101.0,101.0,88.0,103.0,87.0,85.0,110.0,108.0,108.0,122.0,103.0,127.0,126.0,123.0,120.0,121.0,128.0,130.0,144.0,162.0,141.0,131.0,121.0,137.0,134.0,139.0,137.0,125.0,142.0,111.0,115.0,104.0,117.0,131.0,126.0,127.0,90.0,98.0,80.0,57.0,49.0,38.0,53.0,35.0,36.0,42.0,28.0,18.0,25.0,19.0,11.0,11.0,15.0 D83049,18.0,11.0,27.0,13.0,18.0,30.0,29.0,32.0,40.0,27.0,28.0,31.0,37.0,41.0,35.0,36.0,44.0,23.0,35.0,25.0,31.0,19.0,27.0,33.0,26.0,24.0,26.0,29.0,30.0,25.0,34.0,34.0,26.0,28.0,35.0,26.0,29.0,28.0,39.0,35.0,41.0,33.0,20.0,38.0,32.0,43.0,37.0,29.0,31.0,39.0,33.0,48.0,50.0,49.0,43.0,43.0,52.0,45.0,53.0,62.0,60.0,67.0,60.0,55.0,50.0,35.0,46.0,46.0,42.0,43.0,38.0,34.0,39.0,46.0,43.0,49.0,53.0,54.0,60.0,48.0,30.0,34.0,33.0,28.0,27.0,24.0,16.0,10.0,10.0,20.0,10.0,14.0,12.0,3.0,6.0,9.0 D83050,114.0,141.0,132.0,158.0,153.0,186.0,171.0,190.0,179.0,183.0,172.0,190.0,209.0,214.0,182.0,197.0,187.0,215.0,202.0,185.0,152.0,163.0,149.0,151.0,156.0,168.0,169.0,169.0,134.0,182.0,191.0,165.0,203.0,210.0,232.0,215.0,216.0,234.0,214.0,224.0,203.0,233.0,212.0,217.0,210.0,200.0,177.0,166.0,174.0,195.0,188.0,160.0,197.0,205.0,189.0,182.0,196.0,174.0,177.0,209.0,182.0,164.0,184.0,159.0,180.0,136.0,122.0,135.0,129.0,131.0,136.0,126.0,104.0,118.0,105.0,110.0,123.0,125.0,126.0,93.0,87.0,84.0,68.0,75.0,56.0,52.0,45.0,44.0,47.0,37.0,25.0,21.0,18.0,11.0,18.0,22.0 D83051,106.0,87.0,89.0,108.0,85.0,100.0,120.0,95.0,124.0,133.0,134.0,129.0,140.0,117.0,141.0,116.0,135.0,126.0,136.0,113.0,96.0,104.0,110.0,101.0,96.0,144.0,130.0,119.0,143.0,136.0,145.0,136.0,152.0,153.0,122.0,140.0,144.0,132.0,155.0,105.0,135.0,137.0,151.0,122.0,130.0,137.0,102.0,136.0,130.0,112.0,110.0,122.0,123.0,133.0,132.0,130.0,123.0,126.0,121.0,111.0,134.0,111.0,108.0,113.0,93.0,90.0,93.0,91.0,92.0,88.0,68.0,77.0,69.0,67.0,73.0,64.0,63.0,93.0,77.0,67.0,63.0,37.0,46.0,39.0,34.0,32.0,30.0,21.0,25.0,17.0,10.0,10.0,9.0,7.0,6.0,8.0 D83053,28.0,33.0,44.0,38.0,36.0,44.0,51.0,55.0,52.0,49.0,44.0,47.0,54.0,44.0,48.0,68.0,48.0,46.0,41.0,36.0,40.0,56.0,46.0,30.0,23.0,53.0,45.0,40.0,42.0,24.0,52.0,42.0,52.0,47.0,38.0,45.0,60.0,37.0,41.0,55.0,50.0,48.0,40.0,48.0,34.0,33.0,37.0,46.0,45.0,47.0,43.0,45.0,71.0,62.0,69.0,76.0,55.0,69.0,79.0,57.0,76.0,89.0,86.0,78.0,80.0,70.0,71.0,85.0,56.0,53.0,62.0,68.0,64.0,71.0,68.0,66.0,67.0,67.0,80.0,55.0,45.0,42.0,46.0,31.0,26.0,38.0,39.0,17.0,19.0,15.0,9.0,9.0,3.0,5.0,3.0,6.0 D83054,16.0,18.0,13.0,21.0,22.0,24.0,28.0,26.0,26.0,32.0,34.0,25.0,30.0,27.0,30.0,25.0,41.0,26.0,21.0,28.0,40.0,30.0,24.0,21.0,27.0,27.0,25.0,32.0,25.0,40.0,31.0,34.0,35.0,27.0,34.0,35.0,29.0,27.0,31.0,34.0,39.0,36.0,33.0,32.0,37.0,35.0,34.0,29.0,28.0,24.0,27.0,39.0,43.0,34.0,41.0,53.0,57.0,53.0,45.0,63.0,63.0,63.0,66.0,67.0,65.0,77.0,64.0,52.0,56.0,67.0,64.0,65.0,52.0,43.0,41.0,62.0,53.0,53.0,49.0,52.0,35.0,38.0,27.0,31.0,23.0,26.0,16.0,27.0,13.0,17.0,10.0,3.0,8.0,3.0,6.0,12.0 D83055,57.0,82.0,79.0,80.0,88.0,95.0,73.0,79.0,80.0,77.0,88.0,88.0,83.0,78.0,103.0,88.0,96.0,95.0,82.0,87.0,78.0,67.0,79.0,69.0,80.0,97.0,72.0,74.0,71.0,82.0,90.0,78.0,83.0,92.0,91.0,93.0,99.0,102.0,80.0,79.0,75.0,82.0,75.0,102.0,88.0,89.0,107.0,77.0,60.0,69.0,83.0,98.0,96.0,123.0,91.0,115.0,109.0,116.0,132.0,127.0,126.0,135.0,140.0,123.0,140.0,103.0,102.0,109.0,93.0,87.0,99.0,102.0,106.0,103.0,92.0,86.0,125.0,105.0,105.0,80.0,85.0,73.0,59.0,52.0,42.0,39.0,36.0,27.0,29.0,27.0,11.0,10.0,13.0,7.0,8.0,13.0 D83056,51.0,61.0,48.0,54.0,75.0,74.0,58.0,76.0,71.0,88.0,72.0,83.0,72.0,87.0,76.0,80.0,75.0,83.0,68.0,70.0,62.0,59.0,58.0,55.0,50.0,49.0,51.0,69.0,72.0,66.0,83.0,92.0,73.0,89.0,86.0,83.0,102.0,99.0,85.0,87.0,94.0,81.0,89.0,111.0,107.0,73.0,75.0,75.0,74.0,51.0,70.0,54.0,57.0,73.0,51.0,63.0,62.0,58.0,57.0,57.0,59.0,53.0,52.0,55.0,53.0,35.0,44.0,36.0,39.0,40.0,40.0,30.0,41.0,33.0,26.0,36.0,24.0,34.0,34.0,37.0,21.0,17.0,20.0,14.0,16.0,15.0,10.0,17.0,5.0,11.0,6.0,4.0,6.0,3.0,2.0,10.0 D83057,48.0,60.0,54.0,67.0,41.0,59.0,76.0,95.0,90.0,92.0,88.0,89.0,95.0,110.0,90.0,91.0,89.0,101.0,88.0,73.0,62.0,79.0,59.0,57.0,55.0,57.0,58.0,61.0,72.0,62.0,62.0,77.0,73.0,66.0,79.0,69.0,71.0,88.0,62.0,71.0,62.0,79.0,85.0,85.0,94.0,88.0,72.0,85.0,78.0,86.0,84.0,100.0,89.0,92.0,84.0,103.0,76.0,98.0,101.0,99.0,104.0,93.0,85.0,98.0,92.0,108.0,66.0,92.0,74.0,85.0,85.0,92.0,74.0,79.0,75.0,84.0,80.0,97.0,101.0,65.0,78.0,68.0,67.0,40.0,28.0,42.0,33.0,41.0,22.0,29.0,25.0,12.0,11.0,11.0,12.0,17.0 D83059,125.0,137.0,134.0,126.0,156.0,150.0,138.0,146.0,130.0,163.0,146.0,169.0,143.0,166.0,149.0,137.0,164.0,159.0,133.0,131.0,134.0,122.0,134.0,126.0,129.0,122.0,160.0,168.0,140.0,191.0,178.0,191.0,165.0,173.0,192.0,194.0,205.0,206.0,203.0,221.0,180.0,190.0,201.0,202.0,184.0,164.0,197.0,164.0,153.0,159.0,153.0,141.0,168.0,138.0,128.0,120.0,129.0,122.0,132.0,112.0,100.0,122.0,112.0,93.0,74.0,80.0,86.0,68.0,73.0,62.0,62.0,76.0,62.0,68.0,45.0,77.0,59.0,51.0,64.0,37.0,38.0,27.0,27.0,33.0,17.0,15.0,18.0,18.0,9.0,13.0,12.0,14.0,8.0,5.0,4.0,8.0 D83060,92.0,87.0,82.0,134.0,99.0,145.0,123.0,124.0,110.0,139.0,102.0,134.0,118.0,146.0,135.0,117.0,139.0,165.0,143.0,139.0,133.0,120.0,117.0,109.0,115.0,131.0,133.0,135.0,145.0,108.0,147.0,144.0,136.0,157.0,155.0,147.0,135.0,164.0,133.0,132.0,133.0,121.0,130.0,151.0,148.0,126.0,151.0,132.0,117.0,154.0,141.0,145.0,169.0,167.0,170.0,189.0,179.0,172.0,195.0,198.0,187.0,177.0,182.0,155.0,151.0,136.0,145.0,123.0,140.0,113.0,112.0,126.0,108.0,134.0,131.0,120.0,141.0,164.0,137.0,98.0,114.0,107.0,96.0,89.0,63.0,56.0,61.0,48.0,47.0,30.0,25.0,21.0,16.0,9.0,8.0,14.0 D83061,35.0,40.0,37.0,49.0,46.0,35.0,50.0,50.0,40.0,56.0,42.0,52.0,55.0,64.0,63.0,60.0,59.0,57.0,74.0,35.0,46.0,38.0,58.0,44.0,46.0,52.0,49.0,59.0,44.0,39.0,40.0,46.0,41.0,47.0,47.0,57.0,51.0,57.0,45.0,43.0,48.0,48.0,46.0,56.0,60.0,61.0,62.0,68.0,47.0,46.0,51.0,60.0,68.0,66.0,75.0,65.0,84.0,87.0,90.0,74.0,82.0,67.0,82.0,70.0,66.0,85.0,68.0,74.0,60.0,60.0,73.0,66.0,63.0,55.0,74.0,69.0,70.0,84.0,59.0,56.0,50.0,40.0,36.0,37.0,31.0,25.0,30.0,23.0,13.0,9.0,17.0,11.0,5.0,6.0,3.0,14.0 D83062,23.0,33.0,36.0,40.0,30.0,30.0,43.0,43.0,44.0,30.0,38.0,42.0,38.0,39.0,49.0,48.0,26.0,31.0,44.0,32.0,31.0,32.0,37.0,30.0,27.0,43.0,30.0,32.0,47.0,34.0,38.0,43.0,41.0,45.0,39.0,52.0,38.0,37.0,62.0,47.0,45.0,53.0,56.0,33.0,56.0,48.0,43.0,39.0,43.0,46.0,51.0,45.0,64.0,51.0,62.0,52.0,43.0,49.0,59.0,57.0,57.0,59.0,72.0,71.0,48.0,41.0,54.0,39.0,49.0,37.0,46.0,46.0,46.0,46.0,44.0,52.0,40.0,51.0,40.0,41.0,41.0,33.0,30.0,16.0,15.0,16.0,21.0,20.0,19.0,9.0,8.0,9.0,8.0,5.0,3.0,5.0 D83064,15.0,25.0,16.0,24.0,20.0,23.0,26.0,28.0,23.0,23.0,25.0,27.0,35.0,31.0,25.0,29.0,23.0,22.0,17.0,13.0,25.0,15.0,29.0,17.0,21.0,19.0,21.0,21.0,19.0,14.0,29.0,20.0,20.0,34.0,17.0,29.0,22.0,31.0,23.0,22.0,23.0,26.0,28.0,18.0,25.0,25.0,13.0,15.0,26.0,29.0,37.0,28.0,29.0,30.0,37.0,32.0,28.0,38.0,32.0,34.0,40.0,45.0,33.0,39.0,33.0,26.0,38.0,38.0,25.0,36.0,29.0,35.0,40.0,29.0,34.0,38.0,35.0,39.0,30.0,27.0,27.0,32.0,24.0,17.0,15.0,9.0,21.0,8.0,12.0,5.0,3.0,4.0,3.0,2.0,,4.0 D83067,38.0,30.0,48.0,36.0,48.0,48.0,57.0,34.0,46.0,48.0,40.0,64.0,44.0,42.0,56.0,56.0,44.0,46.0,47.0,43.0,32.0,31.0,34.0,34.0,40.0,42.0,42.0,46.0,48.0,49.0,37.0,53.0,42.0,66.0,53.0,53.0,64.0,51.0,70.0,69.0,58.0,45.0,56.0,89.0,63.0,63.0,83.0,54.0,47.0,58.0,51.0,57.0,63.0,53.0,65.0,55.0,69.0,50.0,52.0,71.0,61.0,51.0,55.0,51.0,47.0,42.0,42.0,35.0,36.0,36.0,35.0,30.0,29.0,25.0,38.0,39.0,25.0,36.0,27.0,13.0,20.0,26.0,21.0,15.0,10.0,11.0,10.0,15.0,10.0,10.0,8.0,7.0,9.0,1.0,1.0,5.0 D83069,15.0,20.0,16.0,24.0,19.0,30.0,28.0,37.0,37.0,34.0,38.0,36.0,40.0,33.0,32.0,35.0,21.0,41.0,30.0,31.0,19.0,34.0,30.0,28.0,29.0,29.0,29.0,25.0,26.0,27.0,18.0,24.0,24.0,25.0,39.0,21.0,26.0,26.0,25.0,38.0,28.0,37.0,27.0,39.0,38.0,37.0,16.0,23.0,31.0,32.0,36.0,38.0,36.0,44.0,50.0,38.0,58.0,50.0,50.0,48.0,51.0,54.0,52.0,59.0,72.0,54.0,57.0,67.0,58.0,37.0,41.0,53.0,43.0,38.0,43.0,51.0,43.0,48.0,61.0,40.0,39.0,38.0,29.0,21.0,17.0,26.0,24.0,15.0,6.0,15.0,11.0,5.0,4.0,2.0,4.0,2.0 D83070,17.0,17.0,26.0,22.0,9.0,19.0,22.0,26.0,25.0,24.0,36.0,33.0,27.0,25.0,23.0,22.0,24.0,31.0,21.0,22.0,19.0,28.0,21.0,18.0,15.0,20.0,20.0,21.0,32.0,16.0,30.0,33.0,32.0,27.0,22.0,28.0,26.0,20.0,21.0,24.0,31.0,23.0,14.0,27.0,20.0,25.0,23.0,18.0,22.0,27.0,38.0,28.0,28.0,41.0,39.0,33.0,31.0,38.0,42.0,50.0,48.0,59.0,37.0,47.0,38.0,39.0,39.0,41.0,26.0,40.0,33.0,42.0,27.0,33.0,36.0,31.0,41.0,43.0,47.0,29.0,34.0,28.0,21.0,22.0,11.0,15.0,19.0,15.0,13.0,15.0,4.0,5.0,3.0,5.0,4.0,2.0 D83073,32.0,36.0,36.0,30.0,31.0,28.0,29.0,39.0,33.0,41.0,32.0,37.0,33.0,30.0,34.0,41.0,36.0,33.0,31.0,24.0,35.0,29.0,30.0,27.0,38.0,33.0,40.0,44.0,29.0,46.0,39.0,59.0,59.0,47.0,57.0,58.0,74.0,75.0,61.0,67.0,80.0,83.0,58.0,74.0,68.0,63.0,59.0,66.0,58.0,54.0,45.0,41.0,42.0,45.0,39.0,41.0,24.0,43.0,32.0,28.0,31.0,19.0,33.0,42.0,30.0,24.0,19.0,19.0,24.0,23.0,21.0,28.0,20.0,21.0,14.0,23.0,16.0,17.0,18.0,14.0,18.0,8.0,9.0,10.0,9.0,13.0,8.0,6.0,2.0,6.0,2.0,3.0,2.0,3.0,1.0,3.0 D83074,48.0,59.0,57.0,70.0,69.0,72.0,78.0,82.0,95.0,100.0,95.0,88.0,82.0,102.0,85.0,79.0,95.0,81.0,88.0,82.0,84.0,78.0,72.0,72.0,75.0,65.0,87.0,83.0,89.0,93.0,102.0,123.0,123.0,142.0,155.0,126.0,165.0,145.0,169.0,169.0,156.0,173.0,171.0,152.0,164.0,160.0,169.0,132.0,151.0,121.0,111.0,91.0,85.0,107.0,84.0,90.0,96.0,77.0,73.0,93.0,77.0,75.0,101.0,73.0,76.0,65.0,65.0,54.0,62.0,69.0,43.0,35.0,47.0,49.0,45.0,35.0,28.0,38.0,50.0,33.0,28.0,30.0,18.0,16.0,20.0,12.0,22.0,10.0,26.0,10.0,18.0,10.0,2.0,5.0,4.0,7.0 D83075,61.0,77.0,50.0,70.0,70.0,57.0,75.0,69.0,60.0,74.0,63.0,58.0,70.0,81.0,83.0,69.0,63.0,55.0,56.0,34.0,61.0,55.0,57.0,52.0,64.0,69.0,64.0,72.0,87.0,79.0,93.0,76.0,67.0,85.0,92.0,100.0,101.0,94.0,84.0,84.0,82.0,81.0,79.0,69.0,105.0,68.0,73.0,60.0,79.0,68.0,76.0,75.0,65.0,91.0,90.0,83.0,95.0,79.0,85.0,86.0,89.0,103.0,83.0,90.0,86.0,72.0,85.0,76.0,59.0,78.0,70.0,52.0,65.0,58.0,62.0,64.0,52.0,64.0,57.0,53.0,53.0,43.0,27.0,35.0,33.0,29.0,19.0,19.0,14.0,15.0,14.0,8.0,8.0,5.0,8.0,5.0 D83076,16.0,24.0,15.0,18.0,22.0,20.0,23.0,28.0,16.0,22.0,26.0,33.0,30.0,29.0,33.0,35.0,31.0,39.0,24.0,25.0,26.0,17.0,18.0,24.0,22.0,27.0,17.0,20.0,27.0,25.0,21.0,17.0,12.0,27.0,28.0,22.0,18.0,20.0,19.0,12.0,24.0,23.0,27.0,29.0,37.0,31.0,21.0,27.0,40.0,21.0,25.0,35.0,37.0,36.0,41.0,44.0,44.0,42.0,56.0,44.0,44.0,48.0,46.0,42.0,47.0,38.0,38.0,44.0,51.0,40.0,39.0,32.0,28.0,43.0,51.0,28.0,47.0,50.0,45.0,39.0,37.0,48.0,24.0,16.0,21.0,14.0,23.0,11.0,12.0,14.0,6.0,7.0,5.0,1.0,2.0,5.0 D83078,51.0,49.0,80.0,71.0,71.0,77.0,61.0,80.0,86.0,82.0,77.0,74.0,61.0,81.0,73.0,71.0,55.0,67.0,56.0,56.0,48.0,43.0,35.0,39.0,52.0,45.0,53.0,48.0,54.0,56.0,73.0,66.0,69.0,96.0,85.0,98.0,88.0,94.0,95.0,89.0,93.0,83.0,63.0,84.0,71.0,62.0,66.0,65.0,50.0,65.0,56.0,62.0,57.0,76.0,54.0,58.0,66.0,69.0,78.0,59.0,64.0,67.0,50.0,49.0,60.0,62.0,47.0,55.0,43.0,51.0,38.0,42.0,37.0,35.0,28.0,34.0,32.0,22.0,24.0,15.0,14.0,11.0,19.0,14.0,6.0,15.0,7.0,11.0,6.0,3.0,8.0,2.0,3.0,1.0,1.0,3.0 D83079,26.0,25.0,26.0,44.0,30.0,40.0,35.0,53.0,47.0,49.0,46.0,45.0,55.0,58.0,58.0,64.0,63.0,58.0,56.0,65.0,62.0,50.0,44.0,46.0,39.0,67.0,66.0,52.0,79.0,49.0,63.0,46.0,60.0,61.0,55.0,52.0,54.0,61.0,46.0,48.0,64.0,56.0,56.0,57.0,47.0,41.0,59.0,45.0,51.0,59.0,61.0,70.0,69.0,76.0,61.0,91.0,82.0,67.0,92.0,70.0,78.0,69.0,71.0,77.0,73.0,55.0,47.0,64.0,57.0,51.0,49.0,47.0,47.0,43.0,46.0,41.0,38.0,49.0,51.0,27.0,37.0,30.0,28.0,24.0,23.0,26.0,19.0,19.0,14.0,10.0,13.0,11.0,2.0,2.0,2.0,7.0 D83080,15.0,21.0,19.0,27.0,26.0,24.0,41.0,42.0,34.0,43.0,34.0,36.0,28.0,36.0,34.0,24.0,27.0,31.0,28.0,41.0,22.0,11.0,34.0,29.0,27.0,27.0,26.0,35.0,26.0,29.0,41.0,23.0,40.0,36.0,33.0,28.0,22.0,43.0,34.0,40.0,43.0,37.0,39.0,48.0,45.0,35.0,50.0,37.0,43.0,31.0,39.0,29.0,42.0,41.0,44.0,34.0,39.0,28.0,33.0,47.0,45.0,49.0,38.0,39.0,33.0,37.0,34.0,38.0,41.0,43.0,30.0,37.0,42.0,41.0,49.0,37.0,38.0,49.0,31.0,24.0,30.0,32.0,23.0,17.0,18.0,16.0,15.0,12.0,8.0,5.0,10.0,3.0,4.0,3.0,,7.0 D83081,28.0,23.0,47.0,32.0,30.0,39.0,47.0,39.0,35.0,50.0,41.0,44.0,53.0,49.0,49.0,66.0,46.0,53.0,52.0,44.0,47.0,42.0,43.0,49.0,44.0,56.0,54.0,63.0,47.0,52.0,63.0,43.0,49.0,59.0,57.0,60.0,55.0,60.0,49.0,51.0,33.0,37.0,35.0,49.0,41.0,72.0,47.0,50.0,55.0,64.0,47.0,53.0,60.0,64.0,62.0,64.0,63.0,69.0,66.0,68.0,72.0,62.0,47.0,57.0,58.0,49.0,62.0,59.0,42.0,47.0,47.0,45.0,50.0,26.0,45.0,43.0,39.0,48.0,37.0,20.0,23.0,27.0,28.0,19.0,19.0,14.0,15.0,11.0,13.0,4.0,10.0,5.0,5.0,3.0,2.0,6.0 D83084,9.0,15.0,26.0,23.0,19.0,29.0,27.0,37.0,31.0,46.0,52.0,42.0,57.0,51.0,60.0,43.0,54.0,61.0,40.0,39.0,29.0,34.0,32.0,35.0,30.0,29.0,45.0,33.0,30.0,31.0,30.0,27.0,39.0,31.0,27.0,31.0,36.0,37.0,35.0,43.0,54.0,38.0,48.0,52.0,44.0,39.0,59.0,34.0,50.0,36.0,38.0,39.0,60.0,58.0,42.0,40.0,50.0,53.0,44.0,51.0,39.0,39.0,47.0,32.0,36.0,45.0,29.0,45.0,37.0,37.0,21.0,30.0,28.0,29.0,27.0,31.0,30.0,32.0,23.0,24.0,31.0,18.0,24.0,18.0,16.0,22.0,20.0,19.0,15.0,17.0,13.0,8.0,7.0,3.0,4.0,4.0 D83610,52.0,59.0,56.0,63.0,57.0,58.0,73.0,63.0,67.0,71.0,85.0,64.0,88.0,76.0,70.0,97.0,87.0,78.0,62.0,61.0,62.0,82.0,69.0,71.0,66.0,68.0,82.0,87.0,79.0,83.0,88.0,100.0,89.0,80.0,90.0,79.0,116.0,101.0,88.0,83.0,85.0,102.0,88.0,93.0,100.0,90.0,102.0,78.0,88.0,84.0,96.0,85.0,84.0,93.0,86.0,101.0,107.0,85.0,93.0,95.0,73.0,81.0,72.0,98.0,89.0,82.0,65.0,71.0,59.0,53.0,59.0,53.0,44.0,42.0,38.0,43.0,36.0,62.0,48.0,45.0,34.0,31.0,29.0,23.0,19.0,21.0,25.0,16.0,16.0,10.0,13.0,7.0,9.0,4.0,6.0,12.0 F81012,18.0,13.0,24.0,18.0,22.0,26.0,23.0,28.0,29.0,29.0,34.0,28.0,36.0,30.0,40.0,47.0,33.0,39.0,31.0,44.0,30.0,36.0,38.0,39.0,29.0,36.0,22.0,27.0,25.0,27.0,17.0,31.0,38.0,29.0,22.0,22.0,22.0,26.0,23.0,21.0,28.0,29.0,29.0,21.0,32.0,31.0,37.0,43.0,42.0,36.0,39.0,39.0,38.0,48.0,57.0,54.0,71.0,57.0,69.0,63.0,50.0,61.0,72.0,69.0,66.0,45.0,60.0,49.0,49.0,47.0,36.0,55.0,59.0,56.0,55.0,54.0,67.0,87.0,76.0,53.0,54.0,48.0,47.0,29.0,29.0,36.0,27.0,18.0,17.0,14.0,12.0,15.0,5.0,10.0,8.0,10.0 F81017,26.0,20.0,41.0,24.0,36.0,38.0,31.0,36.0,37.0,40.0,47.0,32.0,37.0,38.0,37.0,45.0,37.0,41.0,29.0,29.0,47.0,36.0,28.0,26.0,31.0,34.0,34.0,43.0,31.0,37.0,39.0,41.0,38.0,39.0,40.0,42.0,39.0,28.0,23.0,27.0,37.0,29.0,26.0,36.0,45.0,33.0,17.0,40.0,32.0,30.0,36.0,31.0,37.0,30.0,33.0,34.0,51.0,50.0,65.0,71.0,72.0,70.0,47.0,63.0,62.0,72.0,69.0,58.0,61.0,52.0,73.0,64.0,64.0,64.0,64.0,76.0,66.0,75.0,80.0,68.0,83.0,47.0,49.0,36.0,32.0,34.0,34.0,26.0,22.0,19.0,16.0,12.0,15.0,6.0,3.0,10.0 F81019,66.0,85.0,88.0,83.0,95.0,95.0,100.0,107.0,104.0,122.0,121.0,140.0,122.0,93.0,130.0,111.0,101.0,109.0,110.0,110.0,99.0,91.0,110.0,94.0,96.0,74.0,95.0,112.0,102.0,102.0,85.0,96.0,121.0,93.0,97.0,90.0,99.0,93.0,105.0,90.0,85.0,96.0,80.0,85.0,115.0,97.0,84.0,75.0,84.0,92.0,89.0,99.0,119.0,134.0,123.0,102.0,111.0,113.0,112.0,131.0,127.0,103.0,100.0,112.0,93.0,110.0,103.0,100.0,108.0,101.0,84.0,89.0,96.0,81.0,73.0,86.0,96.0,97.0,111.0,77.0,82.0,55.0,69.0,39.0,52.0,49.0,43.0,41.0,30.0,18.0,15.0,14.0,13.0,8.0,4.0,18.0 F81021,39.0,38.0,54.0,46.0,41.0,62.0,56.0,69.0,43.0,53.0,55.0,55.0,54.0,76.0,66.0,64.0,63.0,64.0,54.0,45.0,65.0,55.0,60.0,41.0,49.0,48.0,59.0,47.0,57.0,49.0,61.0,51.0,51.0,64.0,70.0,60.0,56.0,58.0,56.0,51.0,60.0,61.0,59.0,59.0,51.0,67.0,50.0,54.0,71.0,68.0,72.0,70.0,73.0,90.0,84.0,85.0,95.0,97.0,106.0,91.0,109.0,78.0,93.0,101.0,116.0,86.0,77.0,96.0,70.0,76.0,88.0,73.0,84.0,71.0,81.0,69.0,87.0,84.0,84.0,79.0,76.0,60.0,46.0,32.0,22.0,33.0,24.0,22.0,24.0,13.0,8.0,6.0,6.0,7.0,4.0,5.0 F81026,17.0,24.0,19.0,27.0,37.0,23.0,28.0,28.0,26.0,17.0,30.0,31.0,41.0,36.0,40.0,27.0,40.0,30.0,31.0,28.0,39.0,31.0,32.0,25.0,29.0,37.0,21.0,38.0,20.0,28.0,20.0,28.0,31.0,29.0,30.0,48.0,40.0,29.0,31.0,28.0,20.0,20.0,34.0,36.0,29.0,32.0,28.0,31.0,36.0,46.0,38.0,36.0,44.0,49.0,48.0,52.0,60.0,54.0,78.0,58.0,75.0,61.0,53.0,70.0,73.0,75.0,77.0,74.0,68.0,64.0,67.0,70.0,78.0,69.0,75.0,80.0,102.0,99.0,103.0,61.0,62.0,48.0,49.0,36.0,38.0,46.0,30.0,33.0,46.0,22.0,13.0,11.0,14.0,9.0,6.0,17.0 F81028,26.0,31.0,33.0,44.0,56.0,49.0,47.0,40.0,60.0,63.0,55.0,66.0,54.0,50.0,51.0,49.0,57.0,54.0,48.0,38.0,43.0,44.0,50.0,48.0,41.0,60.0,53.0,49.0,50.0,50.0,50.0,39.0,52.0,42.0,48.0,36.0,43.0,52.0,57.0,56.0,54.0,55.0,75.0,70.0,70.0,64.0,57.0,58.0,49.0,49.0,73.0,58.0,60.0,60.0,51.0,68.0,48.0,51.0,64.0,68.0,54.0,57.0,66.0,47.0,63.0,56.0,62.0,52.0,47.0,55.0,35.0,48.0,56.0,43.0,41.0,48.0,41.0,68.0,54.0,29.0,39.0,37.0,45.0,33.0,18.0,13.0,24.0,15.0,11.0,16.0,11.0,5.0,8.0,2.0,,6.0 F81037,42.0,46.0,34.0,50.0,45.0,41.0,48.0,66.0,39.0,43.0,59.0,45.0,64.0,61.0,50.0,53.0,59.0,50.0,48.0,41.0,57.0,46.0,47.0,60.0,51.0,53.0,55.0,58.0,69.0,51.0,65.0,54.0,57.0,69.0,63.0,62.0,60.0,68.0,52.0,50.0,56.0,45.0,57.0,45.0,46.0,48.0,69.0,34.0,49.0,41.0,41.0,37.0,53.0,43.0,56.0,71.0,61.0,61.0,60.0,56.0,58.0,71.0,58.0,62.0,47.0,49.0,49.0,39.0,41.0,38.0,49.0,44.0,37.0,38.0,33.0,29.0,43.0,40.0,43.0,26.0,22.0,29.0,29.0,19.0,21.0,19.0,21.0,15.0,9.0,6.0,8.0,11.0,6.0,,3.0,11.0 F81042,205.0,206.0,203.0,239.0,211.0,197.0,263.0,266.0,270.0,265.0,296.0,271.0,269.0,258.0,294.0,275.0,268.0,296.0,222.0,223.0,219.0,205.0,241.0,232.0,239.0,278.0,272.0,314.0,286.0,281.0,294.0,296.0,356.0,316.0,318.0,314.0,331.0,310.0,354.0,333.0,302.0,320.0,281.0,295.0,293.0,279.0,283.0,269.0,253.0,254.0,254.0,230.0,272.0,306.0,297.0,259.0,244.0,266.0,258.0,231.0,245.0,233.0,220.0,218.0,204.0,180.0,182.0,164.0,159.0,151.0,148.0,142.0,145.0,143.0,140.0,134.0,143.0,153.0,153.0,106.0,120.0,93.0,89.0,71.0,49.0,69.0,41.0,55.0,45.0,37.0,28.0,17.0,17.0,15.0,10.0,20.0 F81044,15.0,28.0,25.0,34.0,27.0,38.0,24.0,38.0,38.0,45.0,38.0,43.0,38.0,46.0,35.0,48.0,31.0,54.0,37.0,35.0,26.0,31.0,29.0,28.0,31.0,37.0,32.0,35.0,30.0,42.0,32.0,37.0,29.0,42.0,39.0,43.0,38.0,44.0,36.0,40.0,38.0,49.0,39.0,41.0,45.0,48.0,35.0,46.0,44.0,44.0,47.0,51.0,48.0,53.0,44.0,54.0,53.0,70.0,49.0,68.0,61.0,58.0,44.0,68.0,65.0,56.0,49.0,59.0,57.0,43.0,46.0,51.0,47.0,48.0,39.0,45.0,42.0,40.0,42.0,41.0,38.0,32.0,26.0,12.0,15.0,18.0,16.0,13.0,8.0,9.0,10.0,7.0,7.0,3.0,2.0,6.0 F81052,49.0,71.0,50.0,67.0,71.0,78.0,70.0,81.0,80.0,80.0,78.0,81.0,65.0,100.0,86.0,80.0,70.0,60.0,80.0,68.0,64.0,54.0,61.0,67.0,65.0,65.0,74.0,73.0,82.0,76.0,76.0,91.0,82.0,66.0,75.0,85.0,70.0,77.0,85.0,73.0,85.0,70.0,70.0,67.0,79.0,75.0,61.0,60.0,74.0,66.0,69.0,66.0,61.0,94.0,88.0,94.0,108.0,92.0,116.0,93.0,126.0,98.0,113.0,114.0,119.0,93.0,113.0,101.0,101.0,93.0,102.0,89.0,90.0,98.0,90.0,89.0,100.0,135.0,117.0,65.0,89.0,83.0,78.0,43.0,46.0,48.0,42.0,53.0,28.0,30.0,23.0,16.0,17.0,11.0,6.0,19.0 F81067,41.0,38.0,53.0,61.0,67.0,68.0,71.0,95.0,83.0,76.0,75.0,84.0,101.0,95.0,80.0,94.0,81.0,85.0,78.0,69.0,70.0,65.0,83.0,69.0,61.0,77.0,64.0,56.0,77.0,75.0,62.0,62.0,79.0,101.0,94.0,83.0,92.0,88.0,96.0,72.0,74.0,76.0,84.0,91.0,101.0,110.0,89.0,76.0,105.0,75.0,92.0,98.0,108.0,102.0,95.0,107.0,104.0,103.0,90.0,107.0,94.0,84.0,91.0,107.0,89.0,80.0,77.0,66.0,78.0,70.0,70.0,81.0,75.0,71.0,77.0,64.0,72.0,82.0,92.0,58.0,60.0,63.0,55.0,40.0,23.0,36.0,33.0,41.0,25.0,27.0,22.0,9.0,17.0,7.0,3.0,12.0 F81069,39.0,48.0,48.0,56.0,47.0,52.0,58.0,61.0,61.0,61.0,56.0,53.0,65.0,57.0,63.0,56.0,62.0,57.0,58.0,53.0,43.0,45.0,39.0,34.0,36.0,41.0,36.0,39.0,57.0,43.0,50.0,47.0,51.0,58.0,60.0,55.0,58.0,60.0,59.0,57.0,67.0,48.0,50.0,54.0,60.0,48.0,59.0,66.0,48.0,50.0,56.0,75.0,53.0,65.0,55.0,62.0,57.0,47.0,64.0,55.0,55.0,43.0,52.0,55.0,51.0,34.0,29.0,44.0,41.0,33.0,41.0,44.0,36.0,40.0,24.0,44.0,41.0,50.0,41.0,13.0,34.0,26.0,21.0,14.0,13.0,12.0,17.0,16.0,7.0,3.0,8.0,3.0,7.0,5.0,2.0,4.0 F81091,56.0,50.0,51.0,40.0,54.0,45.0,43.0,52.0,46.0,34.0,47.0,41.0,48.0,46.0,52.0,48.0,44.0,40.0,46.0,40.0,41.0,42.0,44.0,56.0,51.0,76.0,86.0,90.0,82.0,96.0,76.0,91.0,84.0,93.0,105.0,76.0,86.0,81.0,85.0,77.0,89.0,87.0,61.0,74.0,71.0,54.0,65.0,59.0,59.0,53.0,66.0,58.0,55.0,54.0,66.0,57.0,54.0,54.0,63.0,36.0,59.0,54.0,45.0,46.0,48.0,52.0,45.0,48.0,29.0,41.0,38.0,24.0,32.0,38.0,24.0,31.0,41.0,39.0,33.0,27.0,24.0,26.0,24.0,23.0,19.0,17.0,14.0,14.0,12.0,9.0,1.0,4.0,4.0,2.0,,7.0 F81095,108.0,140.0,134.0,125.0,147.0,152.0,144.0,167.0,162.0,176.0,163.0,187.0,167.0,189.0,158.0,174.0,130.0,151.0,133.0,115.0,109.0,111.0,120.0,133.0,146.0,181.0,173.0,204.0,172.0,200.0,195.0,163.0,183.0,171.0,194.0,173.0,183.0,177.0,187.0,175.0,194.0,168.0,177.0,176.0,143.0,162.0,147.0,162.0,138.0,122.0,128.0,117.0,130.0,128.0,110.0,108.0,137.0,125.0,145.0,134.0,128.0,101.0,82.0,100.0,104.0,111.0,89.0,81.0,93.0,74.0,59.0,75.0,58.0,57.0,60.0,64.0,69.0,75.0,64.0,40.0,48.0,33.0,36.0,31.0,18.0,20.0,21.0,16.0,10.0,11.0,8.0,7.0,9.0,4.0,3.0,6.0 F81115,96.0,116.0,120.0,119.0,134.0,137.0,157.0,152.0,176.0,149.0,183.0,176.0,206.0,174.0,171.0,188.0,160.0,171.0,161.0,138.0,120.0,134.0,106.0,106.0,126.0,143.0,141.0,119.0,125.0,148.0,159.0,144.0,165.0,172.0,171.0,167.0,180.0,177.0,204.0,188.0,187.0,185.0,192.0,199.0,193.0,193.0,187.0,182.0,184.0,150.0,197.0,200.0,180.0,212.0,171.0,207.0,189.0,181.0,175.0,192.0,177.0,183.0,161.0,178.0,152.0,159.0,147.0,155.0,148.0,140.0,115.0,121.0,127.0,145.0,131.0,129.0,140.0,156.0,140.0,106.0,110.0,96.0,72.0,94.0,66.0,58.0,64.0,53.0,44.0,40.0,34.0,31.0,27.0,15.0,6.0,28.0 F81116,36.0,47.0,47.0,43.0,56.0,45.0,47.0,42.0,55.0,35.0,50.0,63.0,59.0,57.0,64.0,65.0,59.0,44.0,57.0,70.0,50.0,50.0,46.0,51.0,71.0,54.0,53.0,69.0,51.0,57.0,59.0,45.0,63.0,58.0,55.0,52.0,68.0,62.0,77.0,65.0,60.0,50.0,55.0,59.0,38.0,58.0,54.0,56.0,62.0,61.0,63.0,53.0,80.0,75.0,99.0,63.0,73.0,80.0,82.0,84.0,78.0,68.0,60.0,91.0,73.0,68.0,70.0,75.0,74.0,67.0,68.0,62.0,74.0,55.0,80.0,71.0,67.0,63.0,96.0,44.0,55.0,52.0,55.0,41.0,35.0,38.0,34.0,27.0,17.0,25.0,14.0,10.0,11.0,5.0,6.0,11.0 F81133,48.0,58.0,60.0,59.0,51.0,62.0,69.0,71.0,58.0,73.0,57.0,54.0,74.0,62.0,69.0,59.0,54.0,70.0,67.0,58.0,66.0,56.0,59.0,56.0,57.0,59.0,61.0,62.0,64.0,56.0,58.0,64.0,79.0,63.0,63.0,74.0,74.0,70.0,76.0,78.0,56.0,62.0,45.0,51.0,54.0,58.0,54.0,56.0,62.0,78.0,71.0,89.0,80.0,91.0,90.0,78.0,88.0,92.0,99.0,64.0,84.0,93.0,73.0,83.0,88.0,72.0,76.0,58.0,73.0,68.0,53.0,64.0,73.0,75.0,69.0,71.0,72.0,103.0,85.0,78.0,68.0,50.0,52.0,47.0,32.0,36.0,20.0,29.0,24.0,12.0,9.0,12.0,5.0,6.0,5.0,9.0 F81141,24.0,15.0,32.0,18.0,22.0,28.0,22.0,28.0,28.0,22.0,24.0,18.0,21.0,19.0,19.0,18.0,26.0,31.0,90.0,203.0,260.0,367.0,418.0,522.0,636.0,587.0,564.0,543.0,557.0,503.0,494.0,444.0,414.0,402.0,340.0,241.0,189.0,160.0,113.0,100.0,98.0,82.0,50.0,59.0,46.0,45.0,35.0,36.0,30.0,23.0,32.0,30.0,28.0,27.0,35.0,40.0,33.0,35.0,30.0,34.0,26.0,28.0,33.0,32.0,27.0,22.0,27.0,31.0,24.0,21.0,21.0,19.0,35.0,20.0,21.0,20.0,21.0,20.0,25.0,13.0,16.0,20.0,6.0,8.0,9.0,9.0,10.0,9.0,4.0,2.0,8.0,4.0,7.0,2.0,2.0,1.0 F81156,46.0,52.0,46.0,57.0,62.0,50.0,60.0,60.0,59.0,71.0,58.0,51.0,62.0,57.0,66.0,57.0,64.0,59.0,50.0,42.0,34.0,39.0,40.0,36.0,62.0,55.0,53.0,52.0,46.0,61.0,62.0,62.0,62.0,63.0,71.0,69.0,76.0,71.0,71.0,45.0,62.0,62.0,57.0,49.0,36.0,55.0,46.0,34.0,37.0,49.0,49.0,55.0,50.0,56.0,64.0,42.0,67.0,68.0,68.0,63.0,57.0,49.0,57.0,66.0,62.0,63.0,57.0,50.0,44.0,38.0,41.0,41.0,49.0,47.0,43.0,41.0,54.0,42.0,45.0,40.0,33.0,35.0,21.0,15.0,24.0,22.0,18.0,9.0,10.0,16.0,10.0,10.0,2.0,7.0,2.0,6.0 F81212,48.0,45.0,53.0,60.0,45.0,68.0,61.0,55.0,77.0,52.0,66.0,70.0,66.0,65.0,75.0,78.0,59.0,71.0,66.0,49.0,56.0,53.0,54.0,63.0,52.0,60.0,67.0,58.0,66.0,63.0,69.0,70.0,69.0,59.0,77.0,81.0,67.0,79.0,61.0,58.0,60.0,63.0,57.0,63.0,60.0,61.0,44.0,57.0,66.0,54.0,50.0,50.0,65.0,70.0,64.0,71.0,77.0,71.0,83.0,68.0,83.0,73.0,58.0,72.0,77.0,64.0,68.0,57.0,45.0,41.0,51.0,48.0,53.0,44.0,41.0,43.0,55.0,38.0,56.0,30.0,30.0,24.0,26.0,17.0,19.0,20.0,10.0,11.0,7.0,8.0,12.0,1.0,3.0,3.0,2.0,7.0 F81213,22.0,16.0,37.0,39.0,28.0,27.0,28.0,40.0,43.0,36.0,49.0,44.0,33.0,40.0,36.0,44.0,35.0,43.0,27.0,30.0,24.0,36.0,21.0,35.0,30.0,40.0,40.0,39.0,35.0,30.0,27.0,25.0,26.0,41.0,40.0,34.0,32.0,38.0,51.0,36.0,33.0,33.0,32.0,45.0,33.0,32.0,35.0,33.0,31.0,32.0,41.0,43.0,44.0,42.0,54.0,51.0,52.0,63.0,73.0,54.0,45.0,64.0,70.0,62.0,64.0,56.0,67.0,47.0,60.0,58.0,61.0,63.0,56.0,72.0,49.0,55.0,50.0,65.0,56.0,44.0,32.0,40.0,36.0,29.0,22.0,23.0,24.0,19.0,17.0,10.0,13.0,5.0,7.0,6.0,1.0,4.0 F81221,17.0,17.0,27.0,17.0,27.0,33.0,14.0,35.0,18.0,25.0,30.0,20.0,38.0,31.0,23.0,21.0,29.0,21.0,24.0,20.0,22.0,31.0,31.0,27.0,30.0,27.0,37.0,32.0,21.0,30.0,28.0,43.0,29.0,33.0,32.0,32.0,40.0,32.0,20.0,22.0,32.0,19.0,33.0,36.0,27.0,27.0,34.0,33.0,25.0,30.0,34.0,28.0,34.0,45.0,29.0,35.0,35.0,37.0,34.0,43.0,44.0,26.0,44.0,39.0,34.0,33.0,36.0,32.0,39.0,51.0,33.0,24.0,26.0,22.0,31.0,33.0,21.0,29.0,40.0,30.0,22.0,24.0,13.0,13.0,10.0,11.0,5.0,3.0,8.0,8.0,4.0,1.0,,2.0,,6.0 F81606,9.0,7.0,13.0,11.0,14.0,6.0,11.0,16.0,7.0,14.0,20.0,14.0,11.0,17.0,15.0,14.0,10.0,12.0,15.0,17.0,13.0,15.0,14.0,13.0,13.0,18.0,15.0,10.0,11.0,10.0,14.0,13.0,7.0,15.0,19.0,10.0,9.0,15.0,14.0,5.0,10.0,16.0,13.0,18.0,18.0,18.0,17.0,15.0,8.0,20.0,11.0,17.0,21.0,36.0,20.0,18.0,23.0,27.0,28.0,26.0,19.0,18.0,25.0,22.0,24.0,25.0,25.0,16.0,22.0,13.0,25.0,18.0,18.0,27.0,22.0,15.0,19.0,22.0,27.0,14.0,14.0,16.0,6.0,9.0,7.0,6.0,7.0,7.0,5.0,5.0,6.0,4.0,,1.0,1.0,1.0 F81633,29.0,33.0,26.0,29.0,38.0,30.0,22.0,33.0,16.0,28.0,25.0,31.0,26.0,25.0,31.0,27.0,21.0,15.0,20.0,13.0,13.0,9.0,13.0,23.0,23.0,17.0,10.0,21.0,31.0,29.0,27.0,47.0,46.0,44.0,31.0,37.0,38.0,38.0,40.0,30.0,37.0,30.0,38.0,40.0,28.0,20.0,31.0,28.0,26.0,34.0,42.0,31.0,24.0,26.0,35.0,30.0,43.0,26.0,24.0,32.0,16.0,40.0,35.0,32.0,30.0,28.0,28.0,35.0,31.0,27.0,21.0,21.0,26.0,27.0,19.0,25.0,25.0,25.0,17.0,24.0,15.0,18.0,17.0,11.0,11.0,11.0,9.0,4.0,7.0,6.0,10.0,2.0,2.0,2.0,,4.0 F81636,119.0,114.0,111.0,122.0,116.0,137.0,113.0,132.0,119.0,150.0,113.0,130.0,132.0,141.0,159.0,140.0,131.0,121.0,117.0,94.0,82.0,86.0,68.0,81.0,108.0,87.0,98.0,101.0,134.0,107.0,113.0,118.0,148.0,136.0,137.0,163.0,167.0,177.0,155.0,137.0,139.0,157.0,143.0,150.0,158.0,169.0,151.0,143.0,142.0,118.0,139.0,123.0,118.0,146.0,115.0,100.0,111.0,97.0,77.0,101.0,106.0,96.0,86.0,112.0,76.0,54.0,66.0,62.0,52.0,43.0,46.0,40.0,42.0,46.0,45.0,45.0,42.0,56.0,44.0,39.0,27.0,30.0,29.0,17.0,16.0,16.0,19.0,19.0,12.0,6.0,8.0,4.0,1.0,6.0,2.0,3.0 F81679,36.0,32.0,40.0,49.0,33.0,38.0,47.0,53.0,49.0,56.0,63.0,48.0,70.0,47.0,55.0,47.0,53.0,45.0,52.0,46.0,42.0,37.0,30.0,34.0,44.0,52.0,46.0,62.0,60.0,60.0,75.0,69.0,59.0,70.0,69.0,61.0,81.0,74.0,54.0,60.0,49.0,57.0,61.0,55.0,61.0,70.0,48.0,60.0,58.0,50.0,58.0,51.0,55.0,45.0,49.0,64.0,53.0,52.0,45.0,46.0,49.0,47.0,45.0,41.0,35.0,33.0,36.0,36.0,31.0,29.0,24.0,23.0,19.0,21.0,18.0,25.0,22.0,28.0,18.0,14.0,27.0,23.0,15.0,11.0,8.0,8.0,7.0,8.0,7.0,7.0,2.0,8.0,1.0,4.0,2.0,2.0 F81681,49.0,51.0,48.0,54.0,63.0,43.0,52.0,61.0,56.0,62.0,77.0,67.0,72.0,76.0,71.0,73.0,90.0,71.0,83.0,65.0,67.0,75.0,68.0,67.0,81.0,86.0,62.0,73.0,66.0,74.0,69.0,71.0,69.0,59.0,89.0,72.0,65.0,84.0,59.0,65.0,70.0,70.0,60.0,70.0,63.0,85.0,75.0,61.0,68.0,70.0,82.0,69.0,83.0,109.0,108.0,98.0,117.0,111.0,108.0,121.0,104.0,124.0,116.0,139.0,134.0,125.0,116.0,149.0,152.0,141.0,123.0,121.0,130.0,120.0,133.0,133.0,160.0,168.0,176.0,113.0,99.0,111.0,88.0,67.0,66.0,57.0,56.0,40.0,30.0,37.0,29.0,26.0,11.0,10.0,9.0,21.0 F81716,56.0,74.0,75.0,63.0,56.0,72.0,73.0,63.0,74.0,55.0,79.0,73.0,60.0,71.0,88.0,76.0,73.0,74.0,47.0,61.0,48.0,57.0,50.0,40.0,52.0,44.0,67.0,56.0,73.0,58.0,73.0,85.0,68.0,68.0,80.0,78.0,61.0,81.0,85.0,69.0,63.0,69.0,63.0,89.0,90.0,79.0,71.0,71.0,74.0,55.0,80.0,67.0,71.0,70.0,73.0,65.0,57.0,60.0,62.0,59.0,50.0,47.0,43.0,46.0,44.0,44.0,40.0,35.0,30.0,14.0,37.0,27.0,29.0,32.0,25.0,28.0,27.0,29.0,27.0,30.0,14.0,18.0,17.0,8.0,10.0,14.0,9.0,15.0,14.0,3.0,8.0,1.0,2.0,2.0,3.0,3.0 F81741,45.0,47.0,39.0,51.0,34.0,36.0,39.0,59.0,46.0,61.0,53.0,52.0,47.0,56.0,51.0,51.0,49.0,54.0,58.0,37.0,47.0,48.0,61.0,48.0,63.0,63.0,55.0,63.0,56.0,52.0,64.0,57.0,64.0,55.0,50.0,56.0,62.0,65.0,57.0,51.0,49.0,55.0,55.0,53.0,42.0,58.0,51.0,34.0,49.0,63.0,47.0,55.0,59.0,58.0,72.0,80.0,88.0,80.0,81.0,68.0,89.0,86.0,84.0,81.0,100.0,73.0,92.0,80.0,87.0,64.0,73.0,76.0,68.0,63.0,63.0,83.0,74.0,98.0,97.0,67.0,65.0,69.0,59.0,43.0,42.0,42.0,43.0,18.0,25.0,19.0,13.0,4.0,10.0,5.0,3.0,10.0 F81746,21.0,14.0,15.0,27.0,22.0,24.0,19.0,24.0,30.0,31.0,32.0,42.0,42.0,32.0,36.0,31.0,23.0,34.0,19.0,37.0,26.0,17.0,27.0,21.0,17.0,18.0,26.0,24.0,27.0,19.0,33.0,23.0,26.0,27.0,22.0,37.0,38.0,33.0,27.0,41.0,31.0,32.0,33.0,34.0,31.0,45.0,30.0,28.0,24.0,29.0,29.0,22.0,21.0,29.0,34.0,26.0,25.0,21.0,23.0,21.0,28.0,15.0,24.0,15.0,12.0,14.0,8.0,5.0,11.0,9.0,11.0,10.0,3.0,2.0,6.0,8.0,8.0,5.0,3.0,3.0,1.0,1.0,1.0,,2.0,2.0,2.0,2.0,,3.0,,2.0,1.0,1.0,1.0,1.0 F81757,30.0,30.0,30.0,25.0,31.0,37.0,33.0,40.0,37.0,42.0,45.0,22.0,24.0,40.0,36.0,37.0,37.0,49.0,19.0,21.0,30.0,19.0,22.0,20.0,22.0,17.0,33.0,23.0,24.0,15.0,36.0,37.0,28.0,42.0,48.0,44.0,40.0,52.0,30.0,41.0,48.0,33.0,52.0,41.0,49.0,42.0,36.0,49.0,44.0,37.0,34.0,39.0,62.0,44.0,43.0,47.0,51.0,39.0,55.0,69.0,48.0,56.0,51.0,57.0,49.0,50.0,41.0,47.0,27.0,47.0,40.0,46.0,32.0,34.0,30.0,41.0,25.0,42.0,38.0,24.0,28.0,18.0,27.0,14.0,12.0,9.0,7.0,9.0,9.0,6.0,7.0,5.0,4.0,6.0,1.0,6.0 Y00774,10.0,17.0,14.0,19.0,17.0,20.0,32.0,24.0,29.0,28.0,31.0,29.0,31.0,33.0,37.0,21.0,26.0,33.0,26.0,20.0,28.0,26.0,20.0,27.0,21.0,29.0,26.0,29.0,25.0,31.0,36.0,36.0,38.0,43.0,28.0,44.0,35.0,30.0,41.0,38.0,37.0,54.0,39.0,40.0,43.0,39.0,51.0,39.0,32.0,34.0,29.0,40.0,37.0,40.0,32.0,47.0,27.0,38.0,53.0,45.0,48.0,35.0,39.0,31.0,41.0,36.0,42.0,39.0,17.0,26.0,30.0,36.0,28.0,32.0,28.0,25.0,22.0,29.0,25.0,22.0,26.0,23.0,19.0,15.0,18.0,16.0,13.0,6.0,3.0,6.0,4.0,4.0,3.0,1.0,2.0,2.0 Y01794,59.0,60.0,56.0,83.0,55.0,79.0,76.0,94.0,118.0,101.0,110.0,99.0,107.0,110.0,103.0,96.0,125.0,129.0,105.0,82.0,77.0,103.0,79.0,74.0,84.0,76.0,66.0,96.0,89.0,84.0,81.0,78.0,101.0,105.0,80.0,96.0,100.0,102.0,98.0,102.0,89.0,103.0,104.0,112.0,107.0,111.0,94.0,104.0,91.0,94.0,96.0,98.0,94.0,86.0,107.0,107.0,103.0,94.0,111.0,110.0,101.0,87.0,100.0,91.0,86.0,96.0,83.0,76.0,80.0,73.0,67.0,71.0,52.0,69.0,72.0,71.0,68.0,64.0,55.0,62.0,54.0,27.0,32.0,39.0,28.0,39.0,25.0,19.0,33.0,28.0,11.0,5.0,9.0,5.0,5.0,12.0 Y02646,57.0,82.0,80.0,95.0,97.0,81.0,93.0,113.0,95.0,81.0,78.0,97.0,93.0,82.0,85.0,69.0,81.0,52.0,36.0,46.0,38.0,28.0,27.0,33.0,47.0,50.0,54.0,58.0,72.0,65.0,78.0,100.0,108.0,123.0,127.0,116.0,137.0,118.0,132.0,125.0,124.0,122.0,116.0,112.0,104.0,87.0,103.0,62.0,87.0,69.0,68.0,67.0,74.0,60.0,60.0,62.0,53.0,50.0,43.0,43.0,46.0,40.0,30.0,36.0,31.0,21.0,30.0,28.0,16.0,12.0,12.0,10.0,11.0,15.0,10.0,9.0,17.0,17.0,12.0,3.0,5.0,9.0,3.0,6.0,2.0,2.0,5.0,2.0,3.0,1.0,,,,1.0,, Y06499,,,,1.0,,,1.0,,,2.0,1.0,,1.0,1.0,,,,,,1.0,2.0,2.0,1.0,,2.0,4.0,3.0,5.0,2.0,4.0,4.0,5.0,4.0,4.0,8.0,7.0,11.0,6.0,8.0,7.0,3.0,5.0,6.0,5.0,3.0,5.0,4.0,3.0,3.0,6.0,3.0,4.0,3.0,3.0,3.0,6.0,4.0,8.0,2.0,2.0,7.0,3.0,,4.0,3.0,,,,4.0,3.0,,,,1.0,1.0,1.0,1.0,2.0,,,2.0,,,,,,,,,,,,,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 L83002,68,75,80,89,90,77,92,80,91,91,85,96,98,104,97,96,67,94,97,69,75,73,68,82,81,80,84,96,91,88,99,85,97,102,99,106,102,113,109,87,89,105,103,85,111,87,92,95,81,103,114,108,130,99,127,121,113,128,135,134,122,126,112,115,139,110,139,120,110,103,101,89,116,94,109,115,99,134,130,101,84,89,62,59,57,58,49,42,36,29,24,25,16,9,9,17 L83003,49,47,60,52,51,63,59,70,64,56,52,72,80,64,61,63,56,67,58,54,64,63,57,53,78,94,91,96,75,92,85,132,103,94,114,106,99,99,85,88,61,81,78,80,69,75,74,70,75,55,69,78,69,74,83,83,79,77,95,91,85,103,97,77,84,83,76,68,64,73,60,66,33,54,55,55,56,55,63,49,36,24,32,22,22,28,15,13,11,15,13,9,5,8,9,5 L83004,34,37,44,46,58,57,67,52,50,53,70,57,76,69,65,79,59,67,61,50,58,50,42,37,59,69,68,75,57,65,55,76,72,66,65,71,81,75,78,71,82,64,79,52,61,67,71,69,48,72,60,79,63,72,71,74,78,84,84,89,74,98,94,86,64,68,70,63,77,69,64,65,58,54,50,52,69,64,62,43,60,38,44,32,24,27,14,21,18,14,11,14,12,6,7,10 L83005,49,55,45,63,62,57,60,68,60,69,75,73,67,96,76,63,75,67,71,60,58,60,69,63,54,76,78,60,72,70,85,88,88,82,77,78,79,77,86,88,78,65,76,66,58,104,69,80,83,75,94,96,80,91,119,106,120,106,94,132,98,118,119,106,128,124,102,122,117,102,118,125,92,117,113,84,115,128,111,71,81,83,54,59,40,38,38,33,29,26,21,15,15,9,4,14 L83006,134,128,139,151,163,163,162,214,189,226,220,209,230,238,222,227,237,230,212,200,201,183,219,215,212,205,215,224,210,213,218,218,221,206,241,208,246,237,225,226,203,233,212,216,216,200,214,177,198,192,194,227,213,206,226,224,258,226,241,256,262,244,256,214,196,212,200,210,175,171,153,161,150,138,145,137,160,152,167,126,120,95,85,82,68,71,52,43,42,38,32,20,12,16,8,16 L83007,27,32,28,32,36,30,29,34,41,35,34,41,55,52,52,42,35,31,42,29,21,33,44,32,37,42,35,37,26,25,36,39,25,38,33,42,41,42,33,26,31,24,35,37,41,43,34,25,45,44,43,35,56,61,57,61,58,59,64,70,59,63,65,70,69,79,82,68,82,67,63,61,71,87,90,88,68,79,82,55,72,63,45,41,39,41,30,29,24,18,16,17,16,11,6,20 L83008,111,144,134,170,139,165,186,148,168,182,198,190,187,177,196,181,193,175,162,144,173,138,147,160,141,175,226,228,270,352,345,323,337,326,306,289,252,266,270,244,230,239,212,225,224,187,211,189,174,185,207,187,163,183,210,179,189,171,173,186,177,169,166,143,171,159,133,146,121,121,122,118,121,94,117,87,107,105,103,90,76,77,63,54,52,38,38,25,31,14,15,17,10,12,10,11 L83010,25,20,28,32,25,36,29,40,39,39,29,48,30,40,50,56,37,41,38,36,38,41,35,34,27,24,34,49,30,29,36,32,36,44,38,35,31,45,37,36,39,42,42,45,48,27,49,41,32,40,46,38,42,54,55,58,49,54,60,53,65,50,56,55,40,38,52,51,38,42,50,44,35,56,43,36,34,47,38,20,31,27,27,21,24,16,14,9,11,12,7,7,6,6,2,2 L83011,13,17,21,24,20,35,34,26,29,30,33,35,42,35,41,46,39,35,37,31,31,35,21,29,37,27,24,28,24,30,14,26,28,24,20,28,28,30,25,24,39,31,27,22,34,42,40,30,41,40,42,35,52,43,71,51,62,47,52,65,59,59,61,67,56,65,47,69,73,62,82,70,72,77,83,83,74,71,74,60,73,51,57,44,35,53,32,32,29,26,25,18,14,8,3,14 L83012,11,11,9,13,13,9,7,20,14,14,16,17,19,15,19,12,26,19,21,15,12,16,17,16,15,12,15,8,16,13,15,14,10,12,18,12,12,16,7,21,8,17,17,12,6,15,18,7,10,20,17,11,19,27,33,26,31,25,26,30,34,31,27,30,38,25,24,25,23,28,19,31,25,29,31,27,18,23,27,23,18,16,11,12,13,6,4,10,4,8,1,3,4,3,3,1 L83013,54,61,57,67,58,81,78,77,85,80,89,83,88,92,89,95,94,69,85,86,75,70,89,55,64,75,90,82,98,100,80,85,104,101,100,115,113,90,101,98,105,85,86,70,92,86,94,87,79,85,101,112,112,92,92,110,99,114,98,132,99,123,107,91,98,111,87,112,97,73,89,79,89,86,78,70,84,98,98,80,76,67,47,44,47,42,36,32,36,19,22,21,17,16,10,15 L83014,32,57,79,64,84,78,85,92,104,89,110,132,113,118,104,124,90,107,109,123,96,82,96,97,85,105,111,95,111,93,89,95,99,112,124,100,131,130,99,108,90,114,110,113,99,112,101,92,90,103,101,130,97,122,147,158,147,155,149,146,155,169,185,140,170,161,152,154,124,138,139,145,150,123,128,147,148,151,163,105,135,95,92,84,75,73,43,54,39,25,24,22,13,14,8,18 L83015,45,46,46,39,54,54,50,56,64,57,59,51,70,61,68,57,60,53,57,47,47,52,41,51,41,52,42,60,54,48,61,71,47,65,63,63,58,51,52,55,58,48,51,53,38,39,43,41,35,53,39,44,36,47,50,42,50,51,66,43,59,50,31,51,36,35,53,42,29,36,36,22,36,24,23,14,25,33,25,18,16,22,16,7,6,8,12,9,2,7,5,3,3,1,3,2 L83016,67,73,62,99,68,97,100,96,108,99,121,117,126,137,100,108,108,114,561,1217,1249,1208,1132,934,1033,915,805,864,668,574,454,402,353,282,232,251,192,191,204,176,152,167,185,158,147,128,129,128,129,118,134,120,116,116,110,104,148,120,120,124,120,146,118,108,103,104,121,113,107,113,100,78,93,72,82,94,91,92,101,71,85,61,50,46,53,49,36,40,29,22,16,10,7,8,14,15 L83019,30,28,32,48,36,40,53,56,51,63,62,61,70,59,53,59,61,56,68,69,84,88,72,72,51,73,58,55,65,62,51,53,67,59,57,72,61,50,50,61,65,58,41,75,66,61,68,68,63,56,55,55,55,59,48,46,53,65,53,50,50,43,47,37,54,56,59,59,56,56,54,63,44,57,62,61,60,68,62,35,48,38,25,24,21,16,15,12,7,10,6,4,6,3,1,2 L83020,40,52,58,51,51,52,64,64,64,76,59,72,73,66,65,68,66,62,55,54,49,50,53,58,44,58,42,46,49,64,60,54,70,62,55,61,56,60,61,82,56,72,66,72,75,78,69,67,59,65,68,67,77,78,71,89,89,84,111,102,91,97,90,95,96,93,92,92,85,74,81,104,92,80,70,86,89,100,104,79,76,76,70,51,37,44,39,35,35,23,15,20,14,6,12,13 L83021,31,36,28,23,44,43,56,52,42,59,49,64,70,62,58,72,57,51,56,51,40,48,30,45,43,37,56,51,37,34,47,38,47,51,35,54,51,44,53,50,39,57,47,49,63,42,66,52,62,65,56,54,61,65,63,71,71,65,78,69,79,70,72,81,67,72,69,71,52,53,55,69,57,55,46,64,71,72,72,50,83,50,59,31,30,35,29,32,22,19,12,16,6,6,6,13 L83023,21,29,14,21,19,18,32,21,25,26,30,29,30,28,34,33,25,33,33,23,24,32,18,26,19,26,19,32,21,27,26,16,29,22,24,27,28,17,27,22,37,25,22,33,25,18,20,28,23,19,35,23,36,52,38,51,47,47,50,52,39,52,54,56,57,42,54,44,56,45,38,39,44,35,28,37,35,33,33,28,27,23,25,17,14,10,7,11,12,15,6,5,5,5,5, L83024,32,42,33,46,50,37,28,39,32,46,40,42,45,57,41,39,55,44,40,48,48,46,51,50,64,53,63,58,53,73,70,61,69,63,73,67,77,69,69,81,80,60,65,74,62,59,73,48,54,54,66,49,66,57,54,40,59,48,38,61,49,56,42,37,33,46,47,43,46,49,28,52,25,40,31,28,29,36,36,17,22,29,30,29,11,10,11,10,12,2,7,3,3,1,5,7 L83025,13,16,21,19,8,17,25,21,26,39,29,45,41,37,33,38,45,41,39,40,30,33,29,32,32,31,34,39,27,32,26,39,39,35,24,32,38,28,24,35,34,37,20,32,28,28,30,35,35,34,33,57,51,66,56,56,57,66,72,87,75,70,67,61,79,61,73,64,55,71,61,57,59,60,61,54,55,52,60,30,47,37,39,28,27,16,18,19,16,8,10,11,4,8,6,7 L83026,8,16,21,15,37,19,29,16,25,28,20,30,24,34,27,18,25,32,23,25,23,24,21,20,28,20,23,20,33,25,30,35,29,33,30,27,24,24,27,18,27,18,31,31,27,25,24,15,27,17,24,34,30,36,44,34,41,48,42,50,42,50,31,40,54,47,51,41,40,32,41,33,37,38,34,35,41,37,30,26,38,25,16,16,14,16,12,6,6,6,2,6,7,2,,7 L83027,22,25,32,32,25,44,43,40,39,38,59,39,44,42,47,47,47,42,31,35,48,58,62,74,57,60,48,50,49,47,65,63,58,56,59,73,79,69,87,59,67,56,65,73,56,74,63,49,54,55,53,58,46,68,64,59,70,72,74,53,49,61,66,65,59,54,41,49,50,46,41,40,42,41,37,36,40,36,30,19,24,21,15,18,17,13,8,7,7,6,4,7,2,2,2,8 L83028,51,57,63,53,44,56,71,60,71,84,82,70,83,78,85,71,73,71,56,69,65,55,63,57,66,63,63,73,79,67,90,82,78,72,83,78,79,81,81,77,78,86,86,76,83,66,63,71,50,75,53,69,57,68,65,81,72,63,75,90,73,69,75,73,87,76,65,64,75,67,43,64,53,40,45,47,37,42,35,23,17,36,30,9,14,16,23,16,20,6,5,2,6,3,3,3 L83029,33,36,28,46,36,46,50,48,43,54,46,52,47,57,44,47,57,61,49,52,38,44,43,35,35,58,54,48,57,49,35,48,63,62,55,45,52,67,54,45,32,66,48,59,56,54,50,55,55,59,63,50,42,63,60,57,64,64,62,64,61,58,63,60,55,39,49,48,34,32,33,42,32,29,27,35,42,43,38,33,29,30,30,16,16,19,20,16,15,13,6,2,8,1,5,6 L83030,46,40,40,46,42,38,47,41,41,38,40,38,52,42,55,45,57,46,61,68,69,75,82,72,94,104,103,102,118,106,112,113,101,101,102,112,112,95,97,79,91,88,84,82,69,86,81,75,50,65,72,58,48,71,71,62,71,50,56,56,59,58,56,56,53,54,42,64,40,54,44,43,48,34,35,35,39,36,29,15,19,12,18,15,15,10,11,6,8,6,4,1,5,4,1,4 L83031,37,49,46,52,48,48,61,65,61,74,63,63,64,82,64,80,61,63,73,64,55,42,54,41,59,49,48,54,50,53,51,38,52,76,61,74,76,56,59,52,59,66,47,64,64,79,58,59,72,57,70,62,66,78,75,68,71,95,97,90,109,96,94,90,87,80,89,88,78,70,70,80,73,81,85,80,76,71,91,68,83,57,54,32,29,24,36,29,17,11,18,12,10,6,7,9 L83034,34,48,39,52,40,56,68,45,61,57,51,68,39,58,57,72,56,63,50,47,36,50,40,55,56,48,63,52,85,57,60,59,83,66,79,66,59,63,63,76,77,73,63,68,69,48,60,54,45,54,45,64,82,70,88,75,74,77,82,84,78,53,53,75,58,65,57,49,59,69,62,49,45,44,45,47,53,57,49,46,47,28,22,25,27,25,24,20,14,18,15,6,11,11,3,6 L83035,68,66,81,81,85,84,94,81,97,81,101,103,114,100,114,104,89,97,99,77,80,67,70,80,80,69,79,87,112,79,94,98,88,96,104,97,87,97,82,82,112,89,99,73,85,119,100,88,79,100,91,100,111,118,113,115,126,127,118,122,149,139,118,117,120,116,104,102,119,94,95,97,101,97,92,96,93,94,96,72,63,67,70,38,36,33,37,26,27,23,17,13,8,4,5,12 L83036,46,55,57,61,50,68,72,59,66,70,59,68,64,63,66,78,75,62,66,61,54,47,46,49,51,62,56,57,60,53,51,49,75,66,80,75,80,74,71,79,65,77,75,88,76,61,67,78,46,58,72,68,58,72,67,81,87,86,87,84,89,63,64,61,77,72,69,71,64,47,58,74,54,69,57,68,77,78,78,45,49,54,41,35,33,36,30,22,20,15,10,20,7,7,13,14 L83038,30,54,45,61,62,66,49,61,68,71,53,75,76,69,72,82,86,104,84,69,61,68,62,56,53,46,60,71,56,62,48,69,65,64,63,60,75,65,73,67,77,52,75,72,74,70,67,57,57,69,75,85,81,96,101,96,87,102,98,125,129,111,100,121,134,117,97,103,104,84,96,89,89,97,86,85,87,89,91,76,68,69,62,33,45,34,36,15,28,11,17,11,11,6,3,12 L83039,26,33,28,34,34,25,37,54,40,56,39,42,47,44,43,34,40,51,35,44,34,34,32,25,19,34,25,34,32,40,45,35,42,46,47,43,35,42,38,36,41,43,39,41,28,39,32,25,24,21,30,31,24,33,32,35,40,36,33,35,37,30,27,36,29,32,32,28,21,19,19,21,16,24,18,20,12,22,16,15,14,14,9,12,8,7,12,5,5,2,6,1,3,,1,4 L83040,125,124,113,141,122,136,129,123,138,149,134,122,126,119,111,113,98,95,112,92,92,81,83,64,90,91,92,84,123,133,113,143,136,151,131,155,125,176,127,143,154,138,148,127,126,121,109,100,107,92,106,97,113,107,91,108,97,110,96,75,97,115,94,89,75,74,71,72,53,65,51,63,60,56,51,54,48,70,65,54,52,44,40,31,28,24,27,18,26,25,22,11,6,7,6,16 L83041,36,43,28,37,48,40,54,56,41,59,54,56,60,56,59,61,45,56,40,46,28,40,37,45,32,43,37,52,60,34,45,56,40,54,54,52,70,57,51,64,50,56,64,66,54,59,53,48,42,59,40,56,62,59,69,79,59,51,75,69,63,54,71,64,59,64,56,55,53,53,43,56,57,45,42,56,58,56,48,39,56,35,33,27,24,19,12,10,13,7,6,3,4,2,5,6 L83042,32,45,52,40,62,55,41,47,65,63,44,62,44,48,68,50,39,48,39,54,39,49,64,49,50,55,64,60,74,60,69,64,76,84,86,88,100,84,78,83,90,92,75,63,96,91,88,66,56,88,83,63,69,76,54,69,58,65,63,74,80,68,49,63,41,54,49,41,42,40,48,37,29,30,43,42,28,25,36,21,26,21,16,20,23,12,8,4,12,7,6,5,5,3,1,6 L83043,40,42,51,63,49,67,57,68,77,67,74,70,80,73,88,74,79,80,84,71,57,63,71,71,61,62,55,58,70,63,63,78,65,80,80,93,89,85,77,73,73,84,84,94,84,75,91,84,95,92,90,86,97,107,102,101,114,115,112,126,118,119,102,106,96,92,99,106,113,97,105,75,100,101,93,93,84,108,94,65,68,59,59,51,32,26,36,27,19,22,18,9,7,8,2,14 L83044,16,27,28,25,43,45,27,36,42,45,42,44,42,46,47,42,40,45,50,42,35,30,26,26,29,35,26,22,35,41,27,42,37,31,38,43,35,35,34,35,39,41,49,45,54,50,49,42,30,47,53,38,67,65,55,66,67,64,82,91,81,81,72,69,58,66,68,70,63,55,51,74,47,53,61,52,55,58,67,47,44,61,37,34,21,23,21,22,16,17,9,6,8,7,2,5 L83045,50,59,56,70,67,66,81,59,66,71,81,93,98,88,73,82,83,81,76,73,77,57,54,72,58,75,80,68,62,67,77,73,76,74,84,67,82,75,78,68,66,73,74,86,67,95,72,73,64,77,70,73,88,97,110,84,108,104,116,117,116,126,104,130,114,88,95,103,110,107,103,112,106,87,91,86,68,100,111,93,90,71,61,47,42,46,34,35,24,32,13,22,10,11,14,17 L83046,51,40,41,35,42,40,51,55,61,58,46,71,53,75,62,70,38,66,57,56,47,45,45,37,52,54,59,55,55,43,60,65,61,60,74,67,62,68,64,60,87,85,71,60,50,74,52,53,50,41,60,62,54,50,53,69,65,56,65,75,60,68,62,88,63,68,65,50,44,55,51,50,41,37,55,48,36,44,45,37,31,44,23,19,18,23,14,24,9,11,10,8,5,3,6,7 L83048,38,51,46,54,51,60,70,69,57,67,51,78,65,83,49,68,60,52,49,46,38,41,41,48,43,37,39,48,42,43,54,50,64,71,62,62,48,83,77,68,61,64,64,86,48,60,71,53,43,55,63,57,65,58,66,74,83,77,70,74,68,76,83,78,75,71,70,67,61,60,65,56,61,66,56,56,69,61,74,69,49,50,36,30,42,29,26,20,15,12,16,8,8,9,3,10 L83049,14,9,9,15,10,15,12,15,11,17,7,14,15,14,9,14,13,11,12,11,12,14,9,7,14,12,22,12,14,12,11,21,18,16,15,13,14,15,22,17,25,18,13,17,16,22,11,13,10,16,23,20,25,25,26,22,37,23,26,29,33,39,35,34,24,24,31,23,37,20,27,29,24,19,36,23,21,29,25,17,18,26,16,11,11,8,12,3,5,7,7,2,6,1,3,2 L83050,34,29,37,47,41,42,42,57,62,61,65,68,79,71,80,66,54,64,65,58,48,55,53,53,47,48,44,54,55,53,66,75,56,57,59,65,59,61,53,69,65,66,54,61,69,76,78,66,73,78,73,71,87,86,88,86,96,96,101,120,102,101,117,105,92,111,90,100,99,77,83,80,90,90,84,89,84,122,99,61,76,73,68,58,36,38,34,38,29,31,16,22,10,6,8,14 L83051,32,37,52,70,54,36,57,51,61,62,52,56,51,45,64,59,58,51,43,42,50,56,41,53,55,45,69,45,59,70,67,66,74,81,78,89,71,81,79,79,62,50,50,63,54,64,56,52,49,48,56,65,78,71,69,76,75,62,67,83,81,88,78,102,68,68,63,65,77,54,57,56,59,55,55,55,50,62,49,41,43,34,22,29,32,17,19,15,22,7,8,5,7,5,5,9 L83052,45,41,41,55,57,62,68,73,72,55,73,74,87,76,90,89,78,98,83,98,56,71,61,78,70,66,76,75,79,77,73,74,69,80,57,83,78,83,88,81,86,99,74,65,71,81,83,62,70,80,77,84,76,98,107,87,81,93,94,95,110,100,98,91,91,94,85,89,68,63,68,92,69,59,64,79,60,72,72,62,44,54,40,41,40,29,25,25,26,21,11,12,7,6,7,11 L83054,13,15,16,18,19,16,21,13,23,24,18,17,19,26,28,20,24,22,22,13,15,18,15,15,21,22,16,27,16,19,21,25,29,23,22,34,24,29,27,20,21,27,24,24,19,23,23,24,16,22,37,25,50,45,33,47,47,49,35,46,43,37,38,51,40,41,46,33,43,51,49,42,40,41,49,48,41,66,61,47,45,29,31,38,39,22,22,23,22,18,8,9,9,6,9,12 L83055,25,39,44,49,51,59,55,54,62,70,61,62,61,66,67,77,66,61,74,64,65,65,56,49,52,70,56,80,69,58,54,68,81,73,97,70,87,81,61,77,80,79,73,68,74,58,67,56,67,73,87,93,93,97,96,129,113,128,135,130,136,129,127,136,126,149,120,130,129,137,120,139,124,99,116,108,129,115,152,88,124,94,65,57,48,57,38,40,33,32,16,19,14,9,4,14 L83056,81,99,87,120,99,114,108,130,132,130,163,134,163,165,159,156,163,162,127,147,124,123,116,102,133,106,144,134,133,130,117,134,151,135,135,148,127,156,138,131,133,130,142,145,145,140,148,145,123,147,167,177,166,169,164,144,200,197,199,185,200,184,196,201,188,222,209,153,177,164,157,181,148,160,170,171,177,191,157,142,152,110,126,90,75,65,71,55,57,52,35,31,15,17,18,25 L83057,21,28,28,25,37,34,39,32,44,46,38,31,33,45,37,46,28,43,41,28,28,37,29,39,28,36,14,31,42,34,35,33,31,37,41,42,42,38,33,29,31,29,34,32,51,42,38,33,31,35,42,48,51,45,54,47,48,52,53,61,66,78,63,57,62,62,63,76,67,47,54,52,48,61,44,57,54,58,66,49,58,32,40,27,31,24,27,28,16,22,9,12,10,6,4,11 L83058,32,32,40,40,33,41,31,33,28,41,27,35,39,43,28,37,45,35,35,36,43,36,35,39,50,49,49,57,72,56,68,72,84,81,77,73,65,71,75,64,64,71,70,58,62,64,55,55,40,57,52,49,60,47,43,53,62,51,49,52,52,47,51,38,49,40,36,34,38,36,25,31,39,35,34,37,33,26,33,23,29,26,15,14,12,19,16,10,6,9,10,7,,3,,4 L83059,33,32,37,34,37,43,38,50,43,56,58,55,61,66,61,54,64,52,56,48,49,60,58,54,40,35,49,53,52,41,41,53,46,65,52,54,48,53,56,69,49,59,54,63,68,56,58,46,51,57,59,61,68,53,85,65,73,58,60,80,79,78,78,94,85,70,80,71,65,77,76,60,56,54,53,54,59,72,65,46,55,45,33,41,29,24,20,26,17,26,13,11,6,5,8,10 L83064,58,42,48,49,44,59,71,62,78,82,76,68,89,85,75,73,92,91,77,70,62,64,63,58,63,58,48,55,61,54,62,66,49,53,66,55,72,56,53,73,66,67,51,53,65,55,59,52,72,70,56,72,61,87,80,65,87,91,91,73,92,93,102,93,88,74,76,62,70,52,76,60,64,69,73,70,60,88,76,54,57,58,65,37,32,37,32,23,16,25,17,33,17,14,7,18 L83066,54,70,80,73,77,75,87,81,84,99,90,85,100,120,96,104,96,114,112,142,154,172,152,137,140,134,136,150,124,126,129,134,142,134,148,130,157,147,142,155,134,121,141,124,129,151,134,112,101,118,103,114,119,116,118,121,109,108,103,117,89,85,94,79,87,84,71,88,75,66,74,72,71,75,70,67,55,62,64,45,41,40,30,27,37,29,24,31,15,13,13,10,9,7,8,11 L83067,26,29,27,41,34,39,53,49,43,57,50,73,63,79,60,59,63,68,72,57,52,55,48,42,68,49,37,58,61,47,60,52,43,49,65,60,57,66,45,60,51,58,60,62,72,53,76,52,80,47,63,64,69,82,82,103,91,103,101,100,105,114,113,132,103,103,125,114,113,98,98,117,118,107,123,152,123,161,160,109,122,117,128,91,67,71,72,58,67,50,35,36,31,19,19,32 L83069,51,63,62,57,49,54,71,80,78,73,76,73,93,80,75,86,91,79,75,69,73,71,71,66,68,70,77,79,72,86,76,62,67,85,81,80,75,80,74,78,67,78,89,78,83,78,61,74,55,59,93,99,95,120,105,112,117,112,121,131,146,118,148,111,138,119,131,119,130,130,100,119,108,92,113,115,126,103,93,77,81,65,68,57,33,44,36,35,22,19,16,10,16,5,3,11 L83070,9,18,23,22,19,29,18,42,27,27,29,23,29,23,26,36,21,23,30,29,24,29,22,17,30,23,20,24,25,31,29,29,25,24,30,21,31,35,32,22,23,33,46,24,39,41,26,26,24,25,27,37,45,35,37,33,32,43,42,49,41,51,34,51,26,31,32,35,39,30,27,19,24,33,32,30,36,27,20,21,32,21,25,21,8,13,9,6,8,4,5,4,3,,6,3 L83071,31,34,40,36,27,38,41,38,36,43,33,46,51,47,53,43,42,36,42,33,44,36,30,45,44,30,48,63,40,56,72,64,63,60,62,56,75,58,68,52,68,59,63,59,58,63,59,54,54,40,42,39,55,43,55,68,63,64,66,60,77,54,52,62,56,54,54,43,53,40,31,32,41,41,33,39,38,36,37,23,18,19,20,18,13,19,11,10,5,8,6,3,5,4,4,4 L83072,48,51,59,56,70,64,67,67,56,60,72,57,60,80,65,74,60,68,71,66,78,77,79,96,82,116,118,121,123,122,122,138,115,135,139,139,131,112,106,110,91,125,104,100,115,90,88,78,58,98,88,73,83,96,99,78,90,76,75,76,90,69,71,79,82,63,57,62,54,55,57,50,42,43,49,39,40,43,38,34,42,25,34,24,14,18,15,19,10,7,7,6,3,3,3,4 L83073,71,79,87,110,82,109,98,120,115,105,106,110,126,107,116,110,125,116,95,85,83,90,75,74,89,91,86,106,114,100,129,115,132,138,155,140,114,141,152,122,112,103,125,131,116,116,116,105,117,99,100,112,126,131,126,148,149,134,137,108,120,128,119,124,137,116,109,107,94,106,83,89,93,90,71,95,98,123,100,64,73,83,60,60,39,29,44,32,32,23,18,11,13,5,4,12 L83075,26,16,23,20,29,31,38,35,32,39,29,24,27,41,41,33,35,29,41,28,29,27,22,25,23,22,17,29,23,21,19,24,31,37,20,27,33,29,23,25,24,21,13,40,34,33,28,25,34,27,39,32,27,38,38,45,45,55,67,48,48,51,47,44,55,43,53,38,41,35,42,34,39,37,35,38,45,61,28,27,24,26,14,11,9,13,10,12,9,11,5,4,5,3,3,8 L83076,67,69,80,80,71,83,70,68,81,86,65,66,80,54,66,53,64,61,39,52,48,62,61,59,61,73,87,78,89,89,113,100,108,113,110,116,113,108,100,96,106,88,84,89,91,86,64,72,63,62,66,58,62,92,58,67,70,62,76,81,71,66,63,51,50,69,46,64,62,61,47,53,47,44,43,38,30,41,34,34,21,19,16,15,15,15,14,10,10,5,7,8,7,1,,5 L83077,27,31,35,43,26,38,40,53,49,52,43,46,48,37,44,49,31,54,57,74,84,56,64,69,50,62,48,66,62,52,55,57,60,48,61,71,57,61,60,62,59,50,67,52,48,49,59,58,45,42,42,43,44,39,52,47,58,53,55,31,44,37,41,43,39,28,42,42,30,32,29,27,27,27,22,24,29,21,33,21,14,24,14,15,12,9,16,10,8,6,3,8,2,3,5,1 L83079,31,36,30,40,39,50,34,47,50,33,53,49,50,49,57,49,50,36,35,38,29,40,33,50,41,49,44,48,51,61,62,53,52,58,53,56,55,61,53,62,64,47,47,51,44,49,49,54,42,40,55,51,59,61,54,59,59,68,72,46,56,56,52,59,73,51,52,43,45,57,40,34,58,44,50,37,38,48,44,33,31,26,28,17,20,22,19,18,18,11,9,7,3,7,6,5 L83081,13,19,17,23,27,30,34,50,37,37,27,49,36,27,40,29,36,39,38,25,28,30,32,22,24,25,26,23,24,29,21,16,29,36,27,29,25,26,20,28,40,39,30,44,37,33,29,34,34,34,43,44,36,37,46,36,49,52,45,48,54,54,56,42,62,58,44,47,46,38,32,53,41,38,38,45,36,55,51,38,48,34,30,19,23,19,22,17,16,9,9,11,8,2,3,7 L83082,16,11,16,10,12,9,11,9,15,11,20,15,24,17,16,14,10,14,11,16,14,10,5,18,16,10,14,15,7,14,12,20,9,9,13,14,24,11,13,22,20,14,12,13,18,17,19,20,13,16,17,15,20,28,23,22,30,29,28,27,38,31,34,32,24,25,34,23,32,29,26,28,26,28,20,27,13,32,17,17,30,13,13,15,8,10,7,11,13,6,4,7,3,2,,2 L83083,56,52,71,55,66,68,80,73,80,97,103,109,92,111,94,116,118,104,74,78,63,80,62,65,90,80,88,81,93,98,87,70,74,85,90,108,86,93,84,87,82,67,93,87,87,79,85,90,74,88,74,83,93,94,98,127,107,112,105,105,133,118,96,109,111,99,109,107,91,82,99,84,103,87,91,87,78,104,83,66,72,48,60,51,39,35,33,28,22,15,20,15,10,13,4,17 L83084,22,26,42,39,44,42,44,30,35,47,46,46,49,40,60,51,44,51,66,45,39,55,43,65,55,56,64,46,47,53,53,55,64,64,58,51,60,48,60,52,48,63,51,42,52,41,50,40,39,48,43,46,38,55,65,57,67,40,56,52,50,57,50,52,51,35,38,41,36,38,30,34,36,33,34,29,32,38,30,20,32,19,18,21,14,16,14,15,14,14,11,4,3,1,1,9 L83085,76,87,76,82,78,79,90,89,99,119,103,105,112,115,120,138,162,149,119,137,91,87,99,97,88,92,88,92,97,89,103,122,96,111,106,126,113,112,110,116,123,118,107,113,98,117,91,91,102,97,125,105,109,123,123,143,140,117,118,106,128,139,127,127,105,123,106,117,122,106,104,107,102,95,93,116,89,94,116,79,81,74,74,57,45,53,24,29,28,27,27,17,8,12,9,12 L83086,19,15,23,25,23,24,35,26,23,22,32,21,32,28,36,26,31,17,21,17,15,10,12,21,17,11,17,18,19,20,16,22,25,25,25,20,27,24,33,24,27,26,29,27,25,39,21,31,20,23,26,38,17,32,28,30,43,36,39,49,42,32,56,40,39,42,45,40,40,39,42,36,39,33,41,33,46,46,27,22,31,22,23,16,17,7,15,6,9,11,4,5,3,1,6,1 L83087,50,68,69,74,67,67,73,77,79,101,81,82,89,88,98,90,88,83,89,86,86,73,69,77,73,68,87,84,92,82,77,89,89,96,91,104,98,76,92,98,93,87,105,79,95,101,73,88,76,75,88,116,97,85,95,105,104,107,107,101,137,105,118,89,112,101,104,101,97,87,85,99,97,71,75,89,74,94,97,66,73,67,49,47,35,37,29,33,19,14,18,13,11,6,8,17 L83088,19,20,20,19,13,26,18,26,21,28,31,19,27,33,35,26,22,23,18,31,21,11,23,19,22,17,11,32,20,20,20,10,24,19,28,18,19,25,30,29,26,32,22,28,29,29,26,22,31,24,17,21,31,29,30,35,41,29,34,42,39,41,50,40,57,39,40,50,51,42,32,37,47,34,37,30,44,52,46,23,34,29,31,21,14,12,15,6,12,11,6,3,1,5,1,8 L83089,62,60,67,78,58,61,56,72,84,76,70,99,93,88,90,107,88,105,71,63,76,58,76,68,74,84,61,71,84,63,85,84,76,90,75,70,95,71,78,83,74,74,62,83,76,82,62,63,92,81,69,73,83,97,81,103,96,94,74,90,89,108,94,84,98,80,64,78,65,70,67,57,53,68,66,54,66,72,51,56,57,45,42,24,29,29,22,23,15,21,14,7,12,5,4,3 L83092,75,63,66,80,88,100,110,99,99,97,110,111,127,102,97,111,106,90,85,84,92,72,77,59,62,64,83,66,78,79,85,83,89,97,90,97,84,101,95,103,103,87,88,106,111,96,92,78,103,101,83,118,99,102,112,114,135,108,98,109,125,109,107,89,107,100,112,97,92,99,81,85,96,87,70,81,90,95,87,67,70,74,69,41,24,27,35,25,26,17,17,13,8,12,5,19 L83094,24,16,27,35,30,23,35,38,22,45,43,33,46,43,45,35,38,25,39,36,28,37,37,32,28,41,35,28,43,39,34,38,36,31,51,42,44,53,41,42,39,49,39,46,45,41,30,27,33,53,45,38,61,54,51,54,54,58,59,66,61,91,74,90,66,73,88,67,64,68,65,67,64,74,56,68,70,76,72,49,51,50,35,38,30,33,23,26,15,17,4,10,3,5,3,15 L83095,41,40,44,60,54,69,67,65,90,83,100,80,110,101,96,105,99,112,96,88,83,70,72,84,73,52,50,59,54,57,61,48,62,60,63,66,73,71,73,79,81,70,79,84,85,93,69,81,77,100,86,110,115,147,115,120,142,123,109,113,127,144,118,112,110,112,105,94,107,84,100,109,87,96,107,118,116,126,120,82,96,75,67,52,45,40,53,33,37,24,18,9,16,7,8,14 L83096,41,45,63,60,58,71,73,70,105,87,101,97,114,107,102,112,106,103,103,99,86,87,76,79,87,97,95,105,79,99,96,90,123,104,108,98,101,117,110,113,96,90,84,119,117,115,124,107,96,88,114,116,124,129,152,156,136,138,154,172,142,158,143,130,146,134,114,129,132,110,103,114,121,140,114,100,122,108,131,84,91,73,64,56,52,34,33,33,27,20,21,15,2,7,1,18 L83097,44,41,41,43,57,58,66,73,78,80,95,81,102,98,99,99,97,87,74,55,69,51,72,52,44,56,61,49,64,55,68,43,53,41,59,63,54,55,47,69,61,67,84,57,83,97,86,85,78,87,91,102,78,95,92,106,99,102,88,88,94,85,79,100,82,76,81,84,78,52,58,67,67,59,60,64,64,66,77,68,59,51,46,42,33,34,32,28,25,22,12,14,7,7,7,8 L83098,12,27,24,19,14,24,30,28,21,19,23,24,21,19,38,24,27,26,34,24,18,17,22,22,25,23,28,22,16,22,20,21,25,18,28,12,24,21,36,29,29,29,43,31,30,24,30,24,32,29,30,44,33,40,41,33,45,39,36,52,39,39,40,44,44,49,51,42,40,28,52,47,36,38,52,29,37,37,56,27,33,21,17,11,11,20,9,9,15,4,3,4,3,,3,4 L83099,26,22,21,20,22,27,26,29,34,27,23,24,26,20,29,35,19,36,30,24,24,38,32,36,39,47,31,43,33,23,38,56,50,58,35,59,46,51,52,60,53,56,51,45,43,61,36,47,37,39,53,31,30,50,28,40,30,37,37,36,42,38,36,23,31,24,37,25,24,23,17,20,28,22,20,23,22,30,32,23,17,17,19,15,12,14,7,4,5,2,11,2,3,2,4,6 L83100,158,174,185,224,211,192,218,227,214,264,253,245,286,295,340,285,289,254,285,230,209,232,196,211,204,196,233,227,216,216,232,226,256,273,276,265,266,272,273,242,258,258,274,272,251,245,214,223,227,264,250,238,302,299,289,289,295,307,311,316,286,308,309,330,258,289,274,258,241,211,209,204,214,199,196,210,223,233,236,172,199,149,146,96,100,94,94,83,63,47,40,30,24,13,8,32 L83101,29,41,51,62,53,62,45,59,72,64,64,73,67,81,79,88,93,96,99,73,57,61,55,54,52,61,74,79,58,66,51,75,80,66,77,68,87,72,59,77,75,78,69,80,75,77,72,61,63,76,82,81,117,86,110,111,111,127,111,128,137,146,122,112,114,126,127,121,114,100,103,96,99,91,112,118,85,128,109,95,83,76,64,50,38,47,31,27,31,28,22,21,18,8,8,8 L83102,12,20,21,29,28,31,21,19,31,31,35,33,35,34,35,28,45,46,37,32,41,29,23,28,31,28,30,30,22,34,23,35,25,32,39,32,26,34,28,39,38,37,34,20,46,37,32,36,33,38,41,51,43,34,65,57,61,61,61,50,66,74,67,82,76,56,56,54,65,60,63,62,43,56,61,55,47,66,47,49,51,40,29,19,37,29,20,26,18,13,14,9,3,7,2,13 L83103,40,54,51,68,73,80,59,87,85,73,89,93,105,92,93,85,85,87,81,83,73,78,73,74,85,87,89,72,90,103,98,95,91,107,107,80,90,97,89,85,94,81,86,95,105,94,93,66,90,92,116,105,87,99,114,117,120,122,118,120,136,107,124,123,132,108,89,124,97,95,80,109,82,87,84,102,103,87,87,80,79,77,68,53,50,46,28,40,36,24,15,18,19,8,8,11 L83105,23,41,19,27,30,28,30,35,27,26,31,41,41,36,37,44,42,27,33,34,39,32,25,24,21,30,34,39,31,41,30,30,36,47,41,33,31,36,43,39,24,30,24,32,34,34,21,32,28,45,33,29,35,45,46,48,43,55,55,63,52,50,57,66,55,54,56,65,46,40,53,48,56,53,44,41,41,57,48,49,32,32,23,17,19,21,19,15,10,7,7,8,2,3,2,4 L83106,27,37,39,38,44,50,50,51,61,61,49,46,65,52,58,60,63,41,48,36,51,49,37,45,42,49,32,46,66,56,58,59,52,50,52,70,62,61,44,53,54,42,47,53,50,49,49,46,48,53,50,43,56,66,66,76,68,69,78,87,67,85,65,63,71,56,71,64,67,62,60,66,61,47,47,71,59,69,45,40,44,43,33,30,21,18,25,19,9,10,10,9,7,6,6,3 L83111,38,59,66,68,52,57,50,68,65,71,79,74,87,86,103,74,83,77,69,63,61,54,61,57,54,72,64,60,79,86,94,94,101,93,89,76,87,82,102,82,78,73,93,80,85,89,82,75,71,91,83,94,122,107,99,96,84,128,115,108,124,117,109,115,111,100,106,92,118,94,92,81,86,87,74,96,118,106,106,87,76,78,58,42,39,43,42,29,27,23,16,16,13,9,5,15 L83112,19,20,12,16,11,13,16,19,19,23,15,10,21,16,11,13,14,13,15,23,33,35,32,35,40,46,49,56,55,64,53,78,49,55,48,40,48,42,41,55,54,34,34,41,47,44,40,26,36,34,34,35,32,42,42,44,53,36,47,38,58,52,53,48,37,40,37,45,38,29,39,37,39,39,30,35,33,35,36,24,33,20,22,12,16,21,11,10,7,12,6,5,1,4,4,1 L83113,36,37,45,30,42,53,50,48,59,54,69,60,53,63,60,56,41,40,40,35,41,40,25,29,33,36,47,44,44,59,46,39,68,61,58,58,58,63,43,64,62,46,45,53,51,39,37,34,33,42,41,51,34,39,36,59,45,44,45,62,50,49,47,30,42,43,38,37,34,35,36,30,31,31,31,31,27,27,35,23,18,19,10,6,11,8,9,8,3,3,6,3,4,3,3,3 L83115,37,34,26,22,39,34,28,46,35,30,40,33,34,47,39,36,47,32,26,29,33,29,31,14,34,28,30,31,29,26,39,32,43,33,42,26,41,40,38,31,34,25,28,39,28,27,35,23,27,21,32,26,25,31,23,36,23,20,15,27,22,22,33,29,27,12,23,21,24,11,18,13,12,21,17,18,18,16,13,13,10,11,8,7,8,8,7,4,1,,5,4,4,3,3,1 L83116,13,21,12,25,28,29,19,29,19,26,33,33,23,31,29,29,20,29,22,22,23,23,23,20,18,12,15,12,19,24,19,23,26,32,20,26,24,27,20,28,36,28,24,30,33,28,30,40,32,30,28,30,35,32,36,41,34,37,26,49,49,47,43,37,35,39,35,38,39,45,39,38,44,36,39,41,32,35,34,27,20,22,26,15,12,11,12,12,11,6,2,4,2,3,,4 L83118,59,75,65,73,93,102,102,111,97,114,131,123,112,138,110,126,128,157,120,111,101,98,89,74,102,91,103,102,90,88,112,124,135,105,141,135,122,121,109,113,123,124,108,110,109,113,115,98,96,108,103,113,122,128,147,131,131,135,147,135,141,121,117,136,118,110,97,124,101,81,91,83,82,85,72,89,71,96,109,58,77,61,44,33,38,29,28,24,16,12,21,10,10,3,6,16 L83120,36,38,50,54,62,59,68,69,69,87,86,91,105,91,94,105,106,105,89,89,64,67,74,73,73,80,71,80,71,70,65,72,68,74,82,58,78,81,89,102,88,94,75,106,83,94,78,91,88,91,95,103,98,111,116,128,114,121,122,119,127,142,125,121,130,135,149,138,113,137,121,116,123,122,113,147,129,138,143,109,99,90,94,66,50,52,45,35,26,42,23,20,8,11,9,20 L83127,52,51,71,79,77,80,99,72,88,75,79,108,107,105,112,107,78,127,128,87,83,77,57,78,68,72,70,70,75,103,89,88,85,93,86,81,85,89,100,81,80,81,108,79,96,85,85,95,99,97,101,97,120,95,109,132,113,109,106,110,112,116,107,126,114,106,114,90,86,91,100,86,105,97,81,100,100,96,92,60,73,70,61,41,43,32,31,33,23,24,16,19,14,10,3,9 L83128,32,35,30,38,47,43,32,40,32,41,33,41,41,48,53,35,46,48,45,42,42,35,44,44,52,42,47,44,44,50,47,45,47,55,53,49,51,56,50,50,66,48,41,52,55,60,39,42,47,54,45,45,45,46,51,47,47,63,50,56,54,58,66,50,43,42,40,39,35,41,44,32,41,33,42,37,25,36,38,36,24,19,16,24,12,14,11,16,7,7,4,6,4,3,4,5 L83129,6,14,11,12,3,9,15,5,17,16,19,21,13,18,12,10,16,9,21,11,7,9,8,12,10,20,19,12,21,17,10,13,20,10,18,24,17,23,11,14,11,11,13,16,7,15,23,13,20,17,17,15,13,22,18,20,18,28,29,29,32,25,34,26,34,23,17,19,23,25,24,22,25,21,23,18,31,30,19,15,14,17,13,12,7,8,12,4,2,9,4,2,3,,3,1 L83131,70,94,93,104,99,97,98,108,95,124,124,125,137,149,129,139,146,151,142,102,113,110,128,108,110,118,115,124,123,149,136,124,173,158,133,148,156,147,160,160,138,160,134,167,162,154,137,110,139,137,146,171,162,187,181,203,183,167,189,184,230,212,214,199,200,170,181,172,151,189,166,173,153,170,148,152,149,176,156,138,114,100,127,72,63,57,67,56,42,45,32,30,20,21,15,29 L83134,13,14,15,12,13,18,13,18,16,22,21,21,27,20,17,20,24,24,20,17,21,11,15,19,24,12,19,26,15,15,15,16,14,13,21,20,21,19,28,16,15,12,25,16,22,23,24,15,18,28,25,22,33,22,27,31,27,33,45,28,35,33,41,38,29,17,29,28,25,25,23,22,24,25,21,39,21,27,34,21,23,22,20,16,9,11,11,11,7,8,1,2,5,1,2,4 L83136,8,19,19,23,28,17,23,20,17,32,24,40,31,24,38,21,35,28,27,29,25,25,20,29,26,27,24,34,25,27,41,31,29,40,29,31,40,31,30,39,31,31,35,48,39,43,61,40,35,25,38,37,27,35,39,33,43,42,46,47,59,49,36,38,26,40,40,42,48,30,41,43,38,43,31,49,38,35,50,30,35,28,33,18,22,15,12,19,10,9,8,9,6,7,6,5 L83137,37,48,52,56,61,50,44,75,64,67,67,69,61,84,70,76,80,60,73,76,69,55,64,66,49,57,52,48,57,71,71,66,61,68,72,70,78,67,56,48,57,64,72,68,63,55,59,53,59,52,73,68,72,70,93,71,65,83,95,84,123,99,91,102,94,103,84,109,100,87,96,76,92,69,90,73,99,85,87,71,59,65,53,39,33,37,29,34,20,23,24,12,8,6,9,10 L83143,27,24,21,20,31,22,26,32,33,25,31,37,37,35,24,31,31,29,34,27,27,19,14,27,33,28,26,33,32,26,31,26,30,40,43,34,38,44,31,44,26,37,33,30,45,41,32,25,33,28,27,27,27,38,35,35,45,22,41,30,30,22,30,20,29,22,23,22,13,22,20,13,9,18,14,15,15,18,26,20,7,6,11,5,6,5,9,4,5,5,2,2,4,,,5 L83146,16,22,21,20,19,31,23,24,29,24,12,20,22,17,23,22,21,23,16,30,13,20,11,21,15,34,18,18,20,18,26,25,27,27,30,20,34,36,24,33,36,39,34,23,30,26,39,32,33,24,27,34,28,34,32,31,29,32,34,28,34,50,29,25,26,47,34,37,37,33,21,30,30,24,30,32,26,31,23,14,17,15,18,11,13,10,7,4,7,5,9,5,1,1,2,5 L83147,68,74,74,57,59,65,63,73,66,59,64,58,58,66,77,67,69,77,60,65,86,90,98,99,121,129,142,147,123,176,133,136,157,153,159,156,137,113,117,158,120,125,102,95,86,80,79,112,68,85,79,70,88,74,70,86,77,85,96,80,74,87,95,73,72,63,59,60,59,55,56,40,42,51,31,62,49,41,36,25,30,28,22,16,11,19,10,15,12,12,8,8,4,1,,3 L83148,12,8,6,6,8,15,6,14,12,15,16,28,17,19,16,33,17,14,12,17,17,14,12,14,17,19,7,12,7,11,13,15,15,19,10,15,19,18,12,9,11,15,12,19,11,9,14,18,28,22,14,18,19,23,29,17,24,22,35,35,24,27,36,30,42,41,42,28,25,35,26,31,32,31,27,42,32,43,39,21,28,21,26,11,14,13,12,15,6,12,7,6,8,3,2,2 L83607,22,29,27,29,29,33,38,35,45,38,38,47,47,53,37,39,36,43,31,43,25,49,37,22,22,26,32,33,37,29,32,34,29,47,38,43,42,26,40,38,33,30,36,27,29,34,29,20,33,29,33,29,35,29,39,53,39,47,44,49,42,48,38,43,39,35,22,33,28,31,39,21,30,27,24,22,32,29,32,18,12,13,9,17,11,6,14,10,3,4,3,2,5,3,,4 L83616,8,12,8,11,10,14,19,14,19,13,10,16,19,28,25,14,13,18,16,13,13,8,14,9,11,10,10,8,9,8,14,8,9,12,5,10,16,13,13,15,11,14,13,18,21,5,14,14,19,15,11,12,14,22,19,17,15,20,30,18,21,20,13,19,14,13,18,15,14,19,12,13,9,15,19,18,12,10,14,9,14,8,8,10,4,7,6,4,6,3,3,1,,2,,2 L83624,34,41,42,52,42,55,45,39,61,44,64,64,63,54,57,45,61,46,51,26,48,42,38,44,43,45,62,62,48,68,60,62,62,57,55,60,53,71,66,66,76,70,67,75,68,68,67,51,68,56,42,73,50,58,61,54,53,45,44,62,58,47,43,40,40,43,41,32,42,46,27,38,35,23,27,27,27,38,33,24,15,15,9,5,7,7,8,6,10,5,4,6,2,2,1,2 L83628,18,20,33,30,38,29,19,38,27,30,36,28,34,32,37,40,34,31,29,29,22,25,24,22,33,36,25,41,48,34,36,38,39,39,46,40,37,37,43,39,35,36,35,33,42,36,48,44,33,38,43,42,42,37,59,44,45,51,36,31,30,44,36,37,46,37,30,35,39,44,32,33,35,14,38,44,32,48,38,17,31,25,24,24,12,14,10,10,7,6,10,6,5,5,1,2 L83639,8,8,12,15,10,12,7,15,13,16,12,11,14,15,19,15,19,9,12,10,10,7,12,6,5,12,10,11,7,10,6,7,10,9,14,10,11,13,8,11,10,14,14,15,14,13,20,16,19,19,17,11,20,16,18,16,22,30,26,22,22,32,18,23,16,16,17,28,28,29,25,19,17,22,18,26,22,21,22,18,25,18,19,9,8,13,10,3,5,10,5,4,4,1,,3 L83646,45,40,43,52,52,46,51,59,60,40,58,57,51,58,46,58,54,56,47,51,63,45,47,46,47,49,52,65,68,69,71,71,71,77,80,81,75,81,56,73,65,65,65,81,69,64,65,56,56,34,45,56,68,68,45,62,59,76,52,59,66,70,64,57,51,58,40,52,46,40,28,24,27,26,31,23,25,24,21,21,21,18,13,10,10,10,7,6,2,3,2,5,4,1,,1 L83648,62,45,91,65,72,75,85,88,77,91,84,99,81,86,93,86,84,86,187,357,480,552,495,435,448,419,411,349,347,335,262,239,248,201,179,159,142,122,134,127,131,133,111,112,111,118,90,114,93,87,87,92,96,105,90,114,85,76,94,96,111,89,74,78,79,69,67,66,55,62,62,56,52,31,48,46,42,46,65,33,38,26,33,23,13,21,19,12,11,9,15,5,8,7,4,1 L83651,34,22,28,32,26,26,26,35,15,32,30,26,27,27,24,26,29,30,34,27,33,29,35,35,29,30,30,36,32,41,54,45,56,45,47,49,51,49,47,51,44,37,37,41,48,33,32,27,36,33,36,38,42,27,28,35,27,29,24,29,31,28,23,27,22,18,18,20,21,13,10,14,8,10,12,14,12,9,10,11,9,7,3,5,6,5,2,3,3,1,2,2,1,,,2 L83655,53,31,48,47,39,39,53,56,51,48,52,54,65,65,61,54,42,45,44,41,40,34,40,46,48,35,64,73,73,71,75,65,67,86,95,88,66,73,87,61,62,82,71,70,69,55,53,51,36,36,36,44,37,45,36,52,37,38,40,38,37,36,33,27,36,28,25,21,26,24,27,18,16,17,13,23,13,11,14,8,8,6,6,8,2,1,2,2,3,1,4,1,1,,, L83657,12,19,20,32,13,23,21,26,23,25,24,35,29,28,36,24,28,31,34,25,22,16,29,17,19,23,18,18,32,27,20,20,25,19,18,27,27,27,25,30,23,29,21,32,34,33,26,29,22,29,33,37,23,34,27,36,25,46,38,51,57,45,37,49,43,49,43,41,44,39,40,46,31,30,23,45,41,42,44,27,32,21,24,18,17,21,14,11,9,7,7,9,2,3,3,6 L83663,2,5,12,6,10,9,7,20,12,19,16,10,23,14,16,20,12,13,12,15,20,20,6,10,8,10,5,15,12,12,12,15,11,12,12,16,18,6,10,14,15,12,17,12,8,21,15,8,13,8,14,21,13,24,32,29,16,24,30,31,22,23,32,27,22,29,26,35,25,27,22,25,27,24,20,27,16,27,23,16,26,23,21,10,9,11,3,5,4,9,7,3,2,,2,1 L83666,16,15,26,26,20,24,26,27,23,22,34,34,36,32,26,25,31,20,23,23,18,22,22,19,16,21,18,29,33,32,37,26,27,32,36,34,31,37,25,29,25,23,26,24,26,32,18,16,20,15,14,20,32,25,30,21,30,21,23,33,21,25,20,27,23,22,24,22,19,14,20,23,14,11,20,15,14,18,12,9,8,12,12,5,8,7,2,7,3,2,,2,2,2,1,1 L83673,,,,,,,,,,,,,,,,,,3,1,4,3,5,11,15,4,9,7,10,13,22,13,24,17,15,8,15,24,16,14,18,16,19,8,9,13,16,6,11,12,20,8,11,17,12,18,10,11,11,9,11,11,5,2,2,5,3,4,2,3,,1,1,2,1,,,,,,,1,,,,,,,,,,,,,,, Y00568,11,21,17,28,26,24,31,24,16,30,24,27,25,28,21,34,36,23,39,60,54,54,69,51,78,62,56,64,48,51,48,41,32,44,45,44,48,44,57,38,32,38,33,37,37,41,43,18,28,33,36,36,28,27,30,25,28,22,22,26,28,18,25,18,22,12,16,17,15,11,11,16,10,8,12,10,9,8,12,5,16,7,3,3,5,5,3,9,4,4,2,,1,,1,2 Y02633,19,20,27,24,23,24,28,47,26,37,26,27,34,38,30,38,44,31,31,19,27,26,28,40,26,16,20,22,20,29,32,34,18,25,31,36,25,39,26,34,25,34,29,37,46,33,28,33,29,30,44,34,42,35,40,39,35,47,54,64,49,48,62,45,46,49,55,30,41,45,39,33,37,41,37,32,22,46,40,29,20,26,22,14,10,10,14,12,14,6,7,2,6,,,4 Y04662,60,68,52,55,66,67,65,68,52,62,52,55,51,52,44,25,23,26,29,17,21,15,18,19,28,47,44,44,40,46,57,50,64,74,73,77,72,80,66,64,74,56,50,62,32,42,29,26,29,29,23,22,30,29,20,26,20,21,15,11,11,11,6,13,15,8,14,13,16,8,8,6,3,5,7,4,6,4,6,3,,5,4,,2,2,1,,,,,,,,,1 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 C82076,21.0,20.0,17.0,22.0,25.0,20.0,22.0,26.0,34.0,28.0,31.0,51.0,40.0,59.0,43.0,54.0,52.0,48.0,43.0,33.0,29.0,41.0,25.0,24.0,22.0,25.0,31.0,23.0,33.0,34.0,30.0,25.0,25.0,26.0,34.0,40.0,28.0,25.0,31.0,24.0,25.0,34.0,38.0,36.0,46.0,35.0,33.0,43.0,33.0,44.0,39.0,52.0,60.0,39.0,61.0,57.0,64.0,57.0,63.0,74.0,59.0,59.0,60.0,57.0,61.0,51.0,60.0,59.0,59.0,42.0,64.0,49.0,37.0,53.0,52.0,41.0,38.0,48.0,57.0,37.0,22.0,31.0,32.0,31.0,18.0,24.0,13.0,19.0,9.0,10.0,11.0,6.0,4.0,2.0,2.0,3.0 C83001,82.0,93.0,98.0,87.0,108.0,118.0,110.0,120.0,114.0,142.0,110.0,109.0,101.0,139.0,83.0,108.0,133.0,105.0,187.0,383.0,470.0,505.0,454.0,450.0,487.0,438.0,452.0,432.0,438.0,379.0,369.0,325.0,308.0,311.0,271.0,286.0,253.0,261.0,222.0,238.0,212.0,202.0,177.0,162.0,205.0,203.0,187.0,142.0,161.0,133.0,143.0,129.0,143.0,173.0,141.0,115.0,125.0,123.0,117.0,103.0,125.0,133.0,120.0,126.0,127.0,99.0,81.0,90.0,94.0,89.0,73.0,83.0,80.0,91.0,56.0,70.0,73.0,59.0,66.0,38.0,57.0,46.0,32.0,23.0,29.0,23.0,17.0,20.0,12.0,10.0,8.0,11.0,7.0,7.0,3.0,8.0 C83002,39.0,55.0,43.0,51.0,44.0,47.0,62.0,36.0,56.0,59.0,56.0,42.0,67.0,57.0,59.0,61.0,62.0,37.0,51.0,46.0,44.0,29.0,33.0,31.0,36.0,35.0,37.0,37.0,44.0,51.0,38.0,32.0,34.0,34.0,35.0,53.0,46.0,44.0,40.0,42.0,28.0,41.0,39.0,46.0,32.0,47.0,45.0,34.0,38.0,35.0,47.0,37.0,57.0,53.0,59.0,52.0,51.0,73.0,61.0,53.0,67.0,69.0,91.0,68.0,75.0,53.0,52.0,52.0,57.0,46.0,63.0,48.0,49.0,47.0,33.0,50.0,35.0,75.0,66.0,37.0,47.0,44.0,37.0,41.0,27.0,21.0,22.0,16.0,14.0,12.0,13.0,9.0,2.0,9.0,4.0,4.0 C83003,90.0,95.0,105.0,104.0,96.0,126.0,130.0,132.0,129.0,126.0,141.0,145.0,161.0,131.0,132.0,126.0,124.0,135.0,101.0,110.0,86.0,94.0,88.0,95.0,110.0,113.0,143.0,145.0,161.0,147.0,164.0,168.0,209.0,191.0,193.0,217.0,195.0,211.0,219.0,191.0,195.0,194.0,181.0,189.0,182.0,162.0,160.0,168.0,161.0,142.0,127.0,114.0,146.0,139.0,133.0,129.0,146.0,132.0,139.0,120.0,143.0,104.0,109.0,113.0,107.0,91.0,116.0,103.0,78.0,79.0,88.0,78.0,76.0,72.0,81.0,83.0,87.0,79.0,89.0,53.0,55.0,58.0,42.0,32.0,46.0,37.0,34.0,36.0,23.0,12.0,10.0,14.0,15.0,11.0,8.0,14.0 C83004,43.0,41.0,51.0,61.0,44.0,67.0,48.0,67.0,58.0,72.0,70.0,67.0,68.0,78.0,70.0,72.0,66.0,74.0,68.0,67.0,55.0,57.0,64.0,66.0,56.0,71.0,61.0,67.0,65.0,73.0,83.0,87.0,76.0,80.0,99.0,90.0,106.0,78.0,97.0,113.0,99.0,90.0,95.0,111.0,110.0,87.0,90.0,77.0,93.0,81.0,77.0,85.0,77.0,90.0,72.0,76.0,101.0,81.0,70.0,89.0,85.0,70.0,70.0,64.0,83.0,59.0,64.0,51.0,52.0,48.0,57.0,42.0,44.0,35.0,45.0,45.0,50.0,48.0,52.0,40.0,38.0,42.0,37.0,24.0,15.0,19.0,16.0,24.0,13.0,11.0,15.0,7.0,7.0,2.0,4.0,6.0 C83005,21.0,24.0,32.0,26.0,27.0,29.0,25.0,25.0,50.0,34.0,45.0,33.0,36.0,38.0,36.0,40.0,34.0,34.0,38.0,38.0,41.0,33.0,24.0,24.0,31.0,27.0,35.0,36.0,25.0,20.0,40.0,30.0,51.0,33.0,44.0,33.0,29.0,49.0,36.0,27.0,43.0,29.0,26.0,45.0,38.0,33.0,34.0,32.0,40.0,39.0,39.0,39.0,54.0,41.0,64.0,49.0,58.0,45.0,53.0,76.0,68.0,58.0,65.0,64.0,74.0,54.0,45.0,54.0,71.0,58.0,50.0,59.0,59.0,59.0,55.0,58.0,43.0,60.0,73.0,36.0,47.0,35.0,38.0,28.0,19.0,23.0,25.0,21.0,14.0,14.0,14.0,9.0,6.0,8.0,2.0,6.0 C83007,80.0,89.0,85.0,117.0,101.0,131.0,123.0,136.0,124.0,152.0,172.0,151.0,156.0,185.0,159.0,172.0,160.0,205.0,161.0,131.0,126.0,126.0,133.0,141.0,136.0,147.0,117.0,125.0,130.0,137.0,139.0,150.0,139.0,169.0,156.0,172.0,157.0,159.0,158.0,172.0,154.0,141.0,173.0,175.0,203.0,199.0,170.0,143.0,183.0,188.0,188.0,186.0,185.0,212.0,205.0,225.0,187.0,196.0,184.0,183.0,194.0,190.0,214.0,187.0,192.0,179.0,172.0,151.0,129.0,133.0,122.0,117.0,127.0,123.0,133.0,147.0,137.0,145.0,176.0,132.0,116.0,100.0,91.0,73.0,68.0,65.0,66.0,53.0,54.0,54.0,27.0,21.0,32.0,19.0,16.0,33.0 C83008,43.0,41.0,42.0,40.0,50.0,48.0,45.0,53.0,57.0,58.0,60.0,45.0,60.0,66.0,63.0,51.0,57.0,59.0,47.0,49.0,50.0,37.0,41.0,34.0,29.0,39.0,46.0,42.0,50.0,55.0,46.0,54.0,56.0,40.0,41.0,52.0,61.0,48.0,50.0,39.0,48.0,46.0,55.0,63.0,68.0,41.0,51.0,51.0,33.0,44.0,42.0,40.0,41.0,43.0,61.0,45.0,57.0,38.0,41.0,52.0,34.0,44.0,47.0,35.0,36.0,30.0,42.0,31.0,25.0,24.0,26.0,26.0,32.0,21.0,21.0,33.0,28.0,26.0,23.0,25.0,12.0,16.0,24.0,8.0,9.0,11.0,11.0,10.0,4.0,3.0,3.0,4.0,3.0,5.0,1.0,3.0 C83009,40.0,38.0,50.0,53.0,54.0,47.0,61.0,56.0,66.0,60.0,52.0,64.0,48.0,52.0,80.0,56.0,69.0,56.0,59.0,55.0,66.0,48.0,37.0,55.0,42.0,71.0,47.0,53.0,44.0,46.0,67.0,64.0,65.0,62.0,66.0,71.0,70.0,65.0,72.0,57.0,58.0,59.0,60.0,49.0,46.0,52.0,52.0,63.0,50.0,50.0,46.0,47.0,49.0,57.0,59.0,45.0,56.0,51.0,64.0,47.0,58.0,45.0,44.0,51.0,54.0,47.0,42.0,38.0,41.0,37.0,41.0,31.0,32.0,34.0,43.0,39.0,34.0,20.0,34.0,17.0,14.0,14.0,22.0,13.0,12.0,23.0,13.0,9.0,7.0,5.0,9.0,4.0,6.0,4.0,3.0,1.0 C83010,79.0,113.0,80.0,94.0,106.0,107.0,113.0,142.0,140.0,134.0,141.0,136.0,151.0,154.0,137.0,142.0,131.0,130.0,115.0,111.0,116.0,105.0,91.0,83.0,103.0,99.0,138.0,125.0,134.0,132.0,157.0,163.0,151.0,174.0,166.0,184.0,187.0,196.0,216.0,175.0,172.0,182.0,171.0,179.0,174.0,165.0,157.0,123.0,123.0,137.0,118.0,122.0,116.0,108.0,114.0,117.0,112.0,110.0,94.0,108.0,107.0,111.0,89.0,100.0,91.0,74.0,93.0,96.0,65.0,70.0,70.0,78.0,62.0,47.0,66.0,70.0,78.0,71.0,54.0,51.0,41.0,38.0,25.0,32.0,27.0,26.0,25.0,15.0,19.0,10.0,13.0,7.0,9.0,3.0,8.0,23.0 C83011,48.0,49.0,55.0,46.0,43.0,45.0,60.0,72.0,64.0,67.0,73.0,70.0,67.0,90.0,88.0,89.0,73.0,63.0,76.0,58.0,64.0,62.0,51.0,72.0,56.0,61.0,57.0,52.0,67.0,64.0,59.0,60.0,60.0,64.0,80.0,71.0,61.0,70.0,67.0,62.0,56.0,50.0,52.0,44.0,54.0,56.0,57.0,44.0,71.0,73.0,66.0,80.0,85.0,96.0,82.0,76.0,99.0,107.0,104.0,85.0,103.0,84.0,91.0,101.0,81.0,69.0,80.0,67.0,78.0,61.0,74.0,72.0,67.0,52.0,65.0,71.0,58.0,63.0,75.0,75.0,59.0,53.0,39.0,35.0,27.0,33.0,29.0,17.0,22.0,13.0,20.0,10.0,6.0,7.0,7.0,9.0 C83013,24.0,39.0,35.0,31.0,35.0,35.0,34.0,45.0,35.0,42.0,41.0,48.0,42.0,56.0,49.0,55.0,44.0,40.0,38.0,35.0,34.0,36.0,41.0,31.0,34.0,33.0,39.0,40.0,32.0,34.0,42.0,45.0,32.0,49.0,40.0,32.0,40.0,35.0,36.0,33.0,38.0,43.0,35.0,35.0,36.0,43.0,32.0,33.0,26.0,38.0,42.0,44.0,59.0,59.0,57.0,58.0,56.0,65.0,65.0,70.0,63.0,69.0,66.0,78.0,58.0,59.0,59.0,62.0,52.0,48.0,61.0,53.0,40.0,71.0,42.0,39.0,41.0,58.0,49.0,40.0,23.0,41.0,38.0,25.0,24.0,20.0,29.0,14.0,16.0,15.0,16.0,6.0,2.0,4.0,4.0,9.0 C83014,40.0,52.0,39.0,59.0,67.0,62.0,57.0,70.0,61.0,65.0,76.0,76.0,66.0,79.0,93.0,41.0,75.0,70.0,64.0,63.0,52.0,55.0,58.0,57.0,60.0,59.0,63.0,67.0,73.0,80.0,73.0,70.0,59.0,73.0,75.0,56.0,78.0,79.0,80.0,71.0,84.0,65.0,97.0,62.0,70.0,64.0,55.0,44.0,59.0,57.0,73.0,74.0,59.0,67.0,61.0,76.0,64.0,57.0,74.0,73.0,71.0,65.0,65.0,63.0,58.0,60.0,43.0,46.0,56.0,42.0,42.0,32.0,37.0,44.0,41.0,35.0,34.0,41.0,43.0,38.0,30.0,27.0,33.0,13.0,25.0,15.0,21.0,17.0,12.0,9.0,15.0,12.0,4.0,2.0,4.0,7.0 C83015,34.0,34.0,30.0,43.0,33.0,46.0,32.0,51.0,37.0,48.0,33.0,36.0,49.0,34.0,45.0,46.0,52.0,48.0,45.0,36.0,48.0,46.0,33.0,42.0,36.0,33.0,45.0,45.0,44.0,43.0,56.0,50.0,39.0,53.0,49.0,48.0,61.0,44.0,51.0,44.0,50.0,52.0,34.0,45.0,39.0,53.0,34.0,48.0,39.0,40.0,53.0,64.0,53.0,62.0,56.0,53.0,69.0,64.0,71.0,76.0,71.0,84.0,67.0,67.0,72.0,66.0,65.0,61.0,60.0,63.0,60.0,56.0,73.0,75.0,62.0,47.0,51.0,74.0,63.0,49.0,47.0,36.0,41.0,26.0,26.0,20.0,21.0,19.0,10.0,13.0,13.0,7.0,7.0,,3.0,8.0 C83018,51.0,51.0,55.0,64.0,71.0,72.0,69.0,93.0,84.0,79.0,97.0,77.0,82.0,90.0,93.0,81.0,83.0,70.0,84.0,76.0,71.0,68.0,60.0,72.0,64.0,67.0,74.0,74.0,83.0,66.0,82.0,72.0,56.0,104.0,87.0,92.0,80.0,89.0,85.0,68.0,63.0,60.0,66.0,89.0,91.0,73.0,77.0,61.0,66.0,70.0,72.0,89.0,75.0,81.0,80.0,99.0,66.0,75.0,82.0,75.0,101.0,85.0,79.0,79.0,68.0,76.0,57.0,71.0,52.0,62.0,60.0,56.0,55.0,50.0,58.0,52.0,53.0,71.0,60.0,45.0,35.0,41.0,42.0,30.0,26.0,18.0,21.0,10.0,15.0,11.0,10.0,8.0,6.0,3.0,1.0,5.0 C83019,76.0,71.0,90.0,87.0,115.0,97.0,88.0,90.0,95.0,114.0,102.0,109.0,101.0,106.0,114.0,110.0,101.0,123.0,99.0,83.0,110.0,100.0,123.0,99.0,109.0,124.0,100.0,105.0,95.0,125.0,121.0,140.0,125.0,125.0,126.0,127.0,119.0,120.0,122.0,116.0,110.0,128.0,113.0,109.0,124.0,109.0,95.0,114.0,119.0,96.0,103.0,121.0,131.0,126.0,167.0,149.0,159.0,156.0,169.0,187.0,183.0,203.0,192.0,182.0,204.0,213.0,191.0,198.0,167.0,154.0,163.0,156.0,171.0,121.0,157.0,147.0,165.0,196.0,155.0,125.0,122.0,102.0,87.0,70.0,79.0,40.0,53.0,46.0,31.0,15.0,25.0,14.0,12.0,13.0,4.0,16.0 C83020,28.0,31.0,40.0,54.0,45.0,48.0,57.0,38.0,49.0,60.0,50.0,53.0,59.0,66.0,57.0,71.0,59.0,51.0,58.0,47.0,40.0,46.0,44.0,38.0,43.0,38.0,47.0,40.0,34.0,39.0,38.0,47.0,39.0,38.0,50.0,55.0,43.0,46.0,41.0,38.0,43.0,48.0,45.0,60.0,52.0,48.0,51.0,53.0,53.0,51.0,50.0,50.0,76.0,85.0,67.0,75.0,75.0,88.0,86.0,75.0,98.0,95.0,86.0,87.0,80.0,87.0,88.0,66.0,84.0,63.0,57.0,63.0,55.0,68.0,55.0,72.0,61.0,60.0,67.0,48.0,53.0,53.0,42.0,29.0,30.0,27.0,24.0,20.0,29.0,8.0,11.0,9.0,9.0,3.0,4.0,8.0 C83022,58.0,88.0,94.0,123.0,137.0,119.0,117.0,128.0,132.0,139.0,133.0,138.0,143.0,137.0,148.0,159.0,134.0,133.0,131.0,103.0,93.0,116.0,105.0,106.0,122.0,126.0,131.0,156.0,148.0,149.0,167.0,163.0,163.0,170.0,184.0,189.0,203.0,218.0,174.0,211.0,194.0,179.0,194.0,188.0,188.0,175.0,172.0,143.0,155.0,135.0,189.0,140.0,164.0,159.0,167.0,145.0,155.0,161.0,160.0,145.0,150.0,144.0,142.0,135.0,127.0,119.0,125.0,110.0,100.0,101.0,105.0,87.0,89.0,83.0,81.0,92.0,102.0,112.0,112.0,93.0,72.0,83.0,66.0,58.0,39.0,44.0,33.0,32.0,36.0,29.0,16.0,21.0,13.0,14.0,7.0,14.0 C83023,43.0,56.0,73.0,55.0,65.0,67.0,68.0,87.0,98.0,89.0,101.0,110.0,107.0,127.0,129.0,100.0,125.0,101.0,102.0,87.0,88.0,90.0,82.0,85.0,85.0,93.0,101.0,98.0,107.0,104.0,119.0,105.0,106.0,107.0,104.0,102.0,108.0,103.0,86.0,111.0,118.0,115.0,93.0,107.0,104.0,109.0,100.0,80.0,91.0,99.0,99.0,100.0,99.0,141.0,125.0,133.0,123.0,144.0,129.0,137.0,121.0,147.0,147.0,103.0,127.0,109.0,112.0,99.0,103.0,77.0,110.0,94.0,76.0,106.0,91.0,90.0,80.0,100.0,103.0,78.0,72.0,63.0,55.0,46.0,47.0,46.0,41.0,33.0,22.0,19.0,28.0,18.0,12.0,13.0,9.0,12.0 C83024,15.0,16.0,12.0,16.0,18.0,17.0,10.0,17.0,17.0,8.0,13.0,21.0,16.0,20.0,29.0,21.0,20.0,22.0,30.0,12.0,16.0,15.0,15.0,16.0,20.0,12.0,13.0,12.0,16.0,18.0,21.0,20.0,9.0,17.0,15.0,20.0,27.0,19.0,14.0,17.0,24.0,19.0,22.0,30.0,19.0,20.0,18.0,27.0,19.0,23.0,22.0,30.0,23.0,27.0,31.0,26.0,32.0,34.0,46.0,41.0,29.0,32.0,35.0,36.0,28.0,34.0,30.0,26.0,27.0,21.0,25.0,26.0,26.0,28.0,18.0,25.0,23.0,33.0,30.0,20.0,13.0,20.0,14.0,14.0,7.0,5.0,8.0,7.0,4.0,6.0,2.0,5.0,,,,2.0 C83025,66.0,82.0,76.0,86.0,94.0,97.0,94.0,116.0,118.0,119.0,135.0,99.0,102.0,108.0,105.0,111.0,129.0,97.0,98.0,101.0,85.0,103.0,78.0,95.0,76.0,91.0,92.0,111.0,105.0,102.0,98.0,102.0,122.0,134.0,131.0,108.0,130.0,124.0,111.0,126.0,108.0,117.0,132.0,106.0,117.0,126.0,104.0,120.0,81.0,88.0,120.0,90.0,121.0,115.0,122.0,106.0,131.0,130.0,116.0,129.0,116.0,127.0,116.0,122.0,110.0,94.0,95.0,107.0,84.0,95.0,85.0,80.0,81.0,81.0,79.0,91.0,88.0,106.0,90.0,68.0,82.0,69.0,51.0,69.0,46.0,51.0,36.0,43.0,32.0,21.0,11.0,16.0,10.0,9.0,8.0,16.0 C83026,95.0,84.0,81.0,86.0,104.0,112.0,120.0,140.0,120.0,134.0,129.0,135.0,162.0,152.0,156.0,157.0,162.0,138.0,127.0,112.0,109.0,108.0,110.0,123.0,85.0,101.0,94.0,91.0,80.0,97.0,111.0,102.0,112.0,103.0,102.0,108.0,111.0,141.0,101.0,107.0,131.0,122.0,126.0,127.0,132.0,140.0,143.0,138.0,120.0,142.0,148.0,112.0,153.0,183.0,167.0,190.0,180.0,158.0,175.0,179.0,173.0,173.0,190.0,168.0,166.0,178.0,165.0,176.0,150.0,173.0,149.0,150.0,154.0,140.0,152.0,140.0,128.0,153.0,142.0,123.0,106.0,90.0,80.0,67.0,60.0,61.0,47.0,35.0,26.0,21.0,33.0,10.0,14.0,10.0,9.0,18.0 C83027,35.0,29.0,42.0,44.0,47.0,34.0,49.0,37.0,58.0,36.0,49.0,47.0,48.0,54.0,45.0,55.0,45.0,65.0,63.0,42.0,36.0,50.0,37.0,42.0,52.0,47.0,49.0,50.0,35.0,40.0,48.0,43.0,60.0,49.0,62.0,55.0,57.0,49.0,53.0,37.0,58.0,53.0,48.0,50.0,36.0,50.0,43.0,38.0,49.0,48.0,47.0,61.0,56.0,76.0,57.0,64.0,90.0,74.0,83.0,85.0,93.0,87.0,103.0,91.0,98.0,79.0,79.0,60.0,74.0,68.0,72.0,77.0,57.0,69.0,63.0,61.0,60.0,71.0,82.0,56.0,52.0,46.0,53.0,51.0,30.0,26.0,23.0,26.0,20.0,21.0,11.0,10.0,11.0,13.0,7.0,13.0 C83028,23.0,44.0,40.0,43.0,38.0,28.0,37.0,49.0,44.0,48.0,33.0,51.0,43.0,45.0,43.0,42.0,46.0,54.0,35.0,45.0,35.0,39.0,31.0,38.0,37.0,36.0,43.0,44.0,52.0,55.0,44.0,49.0,39.0,43.0,49.0,66.0,45.0,46.0,58.0,53.0,45.0,37.0,48.0,46.0,52.0,32.0,50.0,36.0,41.0,51.0,41.0,42.0,45.0,48.0,56.0,40.0,55.0,72.0,58.0,50.0,48.0,75.0,73.0,72.0,58.0,55.0,44.0,41.0,62.0,47.0,50.0,45.0,41.0,42.0,36.0,38.0,50.0,47.0,58.0,35.0,28.0,27.0,32.0,12.0,17.0,27.0,16.0,21.0,17.0,13.0,10.0,12.0,8.0,4.0,4.0,8.0 C83029,12.0,13.0,21.0,16.0,33.0,26.0,20.0,32.0,26.0,26.0,24.0,30.0,26.0,31.0,31.0,33.0,34.0,25.0,30.0,29.0,17.0,20.0,35.0,21.0,25.0,29.0,22.0,24.0,22.0,28.0,21.0,23.0,23.0,21.0,25.0,26.0,26.0,30.0,19.0,31.0,27.0,26.0,26.0,21.0,26.0,20.0,22.0,18.0,19.0,22.0,25.0,20.0,27.0,39.0,30.0,39.0,40.0,40.0,48.0,33.0,42.0,42.0,40.0,44.0,29.0,29.0,38.0,24.0,25.0,26.0,18.0,25.0,22.0,27.0,19.0,24.0,25.0,31.0,27.0,26.0,22.0,18.0,16.0,13.0,17.0,8.0,11.0,9.0,6.0,6.0,6.0,6.0,4.0,2.0,2.0,2.0 C83030,18.0,19.0,15.0,25.0,23.0,17.0,24.0,22.0,29.0,26.0,26.0,32.0,33.0,34.0,25.0,23.0,24.0,26.0,22.0,28.0,27.0,27.0,22.0,19.0,24.0,27.0,26.0,24.0,19.0,18.0,30.0,23.0,18.0,20.0,25.0,26.0,26.0,31.0,31.0,26.0,22.0,25.0,20.0,28.0,22.0,37.0,26.0,18.0,17.0,18.0,33.0,31.0,29.0,34.0,36.0,28.0,48.0,52.0,43.0,54.0,50.0,47.0,41.0,54.0,55.0,48.0,39.0,37.0,31.0,27.0,27.0,33.0,20.0,33.0,36.0,33.0,40.0,33.0,41.0,21.0,33.0,23.0,15.0,18.0,8.0,11.0,8.0,7.0,9.0,3.0,7.0,6.0,4.0,3.0,3.0,1.0 C83031,30.0,41.0,37.0,51.0,52.0,44.0,48.0,57.0,65.0,56.0,66.0,77.0,71.0,64.0,76.0,64.0,88.0,78.0,70.0,66.0,58.0,63.0,53.0,46.0,51.0,52.0,57.0,66.0,52.0,54.0,44.0,76.0,56.0,58.0,72.0,64.0,67.0,68.0,58.0,70.0,77.0,72.0,58.0,67.0,75.0,61.0,66.0,81.0,62.0,62.0,61.0,72.0,68.0,78.0,81.0,79.0,80.0,75.0,95.0,81.0,91.0,95.0,109.0,75.0,91.0,77.0,90.0,67.0,66.0,74.0,80.0,76.0,84.0,87.0,73.0,78.0,88.0,84.0,99.0,77.0,79.0,61.0,69.0,42.0,44.0,39.0,48.0,24.0,23.0,33.0,26.0,15.0,8.0,8.0,6.0,11.0 C83032,13.0,25.0,24.0,19.0,24.0,26.0,33.0,26.0,30.0,35.0,30.0,36.0,41.0,36.0,41.0,29.0,35.0,37.0,28.0,27.0,30.0,29.0,32.0,22.0,29.0,23.0,27.0,24.0,30.0,32.0,31.0,32.0,33.0,33.0,28.0,27.0,28.0,41.0,39.0,29.0,22.0,24.0,33.0,33.0,17.0,39.0,31.0,21.0,32.0,34.0,29.0,36.0,31.0,44.0,42.0,54.0,48.0,51.0,57.0,61.0,53.0,68.0,63.0,46.0,59.0,61.0,54.0,63.0,60.0,63.0,58.0,56.0,56.0,58.0,56.0,62.0,57.0,57.0,58.0,49.0,52.0,39.0,33.0,25.0,26.0,29.0,18.0,14.0,16.0,17.0,16.0,9.0,9.0,2.0,5.0,10.0 C83033,11.0,14.0,14.0,15.0,9.0,11.0,16.0,15.0,20.0,22.0,15.0,21.0,20.0,10.0,21.0,32.0,17.0,22.0,17.0,16.0,16.0,18.0,13.0,11.0,16.0,16.0,14.0,19.0,23.0,16.0,21.0,16.0,19.0,20.0,15.0,12.0,17.0,20.0,24.0,24.0,20.0,15.0,24.0,16.0,16.0,20.0,10.0,13.0,23.0,24.0,19.0,27.0,24.0,35.0,24.0,23.0,34.0,24.0,34.0,41.0,31.0,43.0,39.0,33.0,40.0,30.0,27.0,30.0,31.0,25.0,30.0,20.0,27.0,25.0,24.0,19.0,27.0,29.0,19.0,19.0,19.0,19.0,18.0,14.0,18.0,9.0,14.0,8.0,9.0,7.0,4.0,1.0,3.0,1.0,2.0,4.0 C83035,32.0,47.0,53.0,65.0,56.0,64.0,64.0,70.0,75.0,73.0,79.0,92.0,90.0,80.0,82.0,74.0,93.0,89.0,90.0,59.0,52.0,56.0,57.0,57.0,59.0,71.0,68.0,64.0,71.0,73.0,67.0,60.0,79.0,70.0,66.0,74.0,69.0,74.0,68.0,65.0,78.0,65.0,64.0,79.0,90.0,78.0,82.0,68.0,80.0,73.0,78.0,83.0,78.0,72.0,95.0,81.0,91.0,99.0,82.0,88.0,100.0,92.0,79.0,71.0,77.0,67.0,62.0,68.0,49.0,54.0,60.0,54.0,59.0,61.0,71.0,54.0,65.0,68.0,71.0,41.0,50.0,41.0,41.0,28.0,24.0,27.0,23.0,14.0,22.0,15.0,15.0,6.0,4.0,6.0,4.0,13.0 C83036,29.0,22.0,36.0,31.0,38.0,37.0,35.0,50.0,48.0,41.0,34.0,47.0,44.0,51.0,54.0,47.0,54.0,41.0,36.0,38.0,34.0,34.0,32.0,30.0,32.0,41.0,29.0,41.0,46.0,47.0,42.0,27.0,48.0,37.0,41.0,50.0,39.0,43.0,31.0,30.0,35.0,56.0,30.0,40.0,36.0,50.0,35.0,32.0,37.0,42.0,51.0,49.0,58.0,59.0,54.0,56.0,58.0,58.0,56.0,76.0,80.0,67.0,71.0,72.0,67.0,59.0,59.0,75.0,75.0,51.0,57.0,51.0,45.0,52.0,46.0,61.0,47.0,55.0,55.0,24.0,42.0,34.0,33.0,26.0,26.0,22.0,18.0,23.0,13.0,9.0,4.0,9.0,5.0,2.0,4.0,4.0 C83037,40.0,34.0,46.0,45.0,46.0,53.0,48.0,58.0,46.0,68.0,60.0,60.0,75.0,75.0,56.0,61.0,79.0,64.0,62.0,59.0,47.0,49.0,59.0,48.0,44.0,59.0,55.0,48.0,46.0,48.0,57.0,37.0,47.0,51.0,56.0,49.0,59.0,62.0,62.0,53.0,50.0,62.0,61.0,48.0,58.0,57.0,47.0,66.0,51.0,36.0,55.0,57.0,59.0,70.0,75.0,70.0,60.0,70.0,85.0,57.0,79.0,75.0,73.0,50.0,72.0,53.0,74.0,56.0,51.0,54.0,51.0,56.0,57.0,56.0,46.0,52.0,59.0,47.0,46.0,44.0,54.0,39.0,27.0,22.0,25.0,22.0,29.0,17.0,15.0,8.0,6.0,6.0,1.0,10.0,1.0,8.0 C83038,25.0,16.0,32.0,37.0,24.0,40.0,41.0,48.0,39.0,52.0,50.0,43.0,35.0,46.0,35.0,39.0,37.0,36.0,28.0,39.0,23.0,39.0,31.0,25.0,55.0,30.0,42.0,38.0,30.0,40.0,49.0,49.0,23.0,31.0,42.0,47.0,46.0,36.0,41.0,35.0,54.0,43.0,50.0,45.0,38.0,41.0,37.0,34.0,51.0,36.0,42.0,56.0,73.0,72.0,68.0,55.0,51.0,76.0,61.0,72.0,51.0,79.0,61.0,75.0,61.0,68.0,58.0,54.0,67.0,59.0,67.0,42.0,47.0,39.0,47.0,42.0,65.0,60.0,64.0,43.0,58.0,56.0,38.0,29.0,30.0,17.0,19.0,20.0,18.0,19.0,6.0,6.0,7.0,2.0,3.0,3.0 C83039,15.0,10.0,17.0,20.0,20.0,9.0,24.0,33.0,21.0,32.0,28.0,17.0,23.0,25.0,30.0,26.0,26.0,37.0,28.0,27.0,14.0,20.0,21.0,32.0,32.0,24.0,24.0,24.0,28.0,15.0,22.0,29.0,26.0,18.0,18.0,34.0,28.0,26.0,21.0,19.0,19.0,16.0,25.0,27.0,22.0,22.0,37.0,31.0,22.0,17.0,19.0,34.0,40.0,39.0,52.0,52.0,51.0,51.0,54.0,62.0,53.0,46.0,52.0,58.0,57.0,56.0,44.0,42.0,31.0,38.0,48.0,51.0,30.0,37.0,43.0,41.0,53.0,43.0,47.0,38.0,35.0,22.0,23.0,16.0,14.0,21.0,17.0,13.0,19.0,12.0,8.0,3.0,4.0,4.0,3.0,10.0 C83040,48.0,55.0,53.0,61.0,52.0,74.0,58.0,69.0,69.0,71.0,87.0,89.0,75.0,81.0,105.0,89.0,88.0,77.0,77.0,67.0,75.0,66.0,51.0,69.0,84.0,79.0,77.0,80.0,97.0,112.0,114.0,122.0,105.0,104.0,117.0,101.0,95.0,111.0,117.0,111.0,108.0,103.0,94.0,90.0,91.0,108.0,104.0,85.0,85.0,92.0,95.0,119.0,103.0,132.0,104.0,109.0,98.0,103.0,114.0,109.0,116.0,110.0,106.0,91.0,97.0,79.0,81.0,67.0,86.0,78.0,75.0,81.0,75.0,67.0,80.0,78.0,63.0,88.0,77.0,57.0,70.0,49.0,55.0,45.0,25.0,36.0,24.0,27.0,20.0,14.0,17.0,14.0,9.0,3.0,3.0,11.0 C83041,31.0,20.0,36.0,39.0,51.0,44.0,39.0,43.0,35.0,45.0,41.0,46.0,56.0,48.0,43.0,46.0,52.0,46.0,43.0,32.0,25.0,35.0,39.0,31.0,27.0,34.0,34.0,36.0,40.0,49.0,47.0,58.0,49.0,52.0,53.0,64.0,54.0,47.0,56.0,56.0,44.0,60.0,52.0,51.0,54.0,35.0,50.0,38.0,48.0,41.0,51.0,27.0,45.0,38.0,52.0,44.0,33.0,48.0,43.0,51.0,47.0,55.0,48.0,56.0,56.0,50.0,47.0,44.0,52.0,30.0,39.0,33.0,36.0,40.0,43.0,38.0,39.0,60.0,39.0,28.0,35.0,34.0,25.0,24.0,18.0,20.0,16.0,14.0,19.0,11.0,4.0,7.0,3.0,4.0,2.0,8.0 C83042,12.0,19.0,27.0,23.0,20.0,27.0,28.0,29.0,26.0,23.0,28.0,20.0,41.0,41.0,38.0,28.0,34.0,41.0,33.0,35.0,16.0,31.0,22.0,18.0,32.0,31.0,28.0,26.0,25.0,28.0,30.0,25.0,30.0,27.0,25.0,29.0,38.0,33.0,31.0,34.0,32.0,26.0,27.0,26.0,37.0,25.0,31.0,15.0,29.0,32.0,40.0,29.0,37.0,42.0,51.0,58.0,55.0,52.0,61.0,62.0,61.0,56.0,59.0,70.0,74.0,60.0,61.0,75.0,57.0,59.0,56.0,48.0,62.0,54.0,66.0,59.0,52.0,59.0,52.0,48.0,42.0,43.0,24.0,26.0,20.0,20.0,17.0,17.0,15.0,11.0,6.0,8.0,3.0,6.0,1.0,2.0 C83043,28.0,25.0,42.0,48.0,49.0,52.0,54.0,50.0,46.0,40.0,67.0,50.0,40.0,46.0,51.0,58.0,46.0,67.0,51.0,51.0,43.0,42.0,34.0,53.0,54.0,33.0,43.0,42.0,46.0,60.0,53.0,53.0,60.0,59.0,52.0,56.0,58.0,62.0,53.0,56.0,58.0,49.0,54.0,47.0,63.0,52.0,52.0,54.0,58.0,54.0,57.0,64.0,63.0,83.0,78.0,84.0,82.0,89.0,109.0,99.0,83.0,73.0,84.0,82.0,90.0,90.0,74.0,72.0,86.0,83.0,82.0,68.0,77.0,61.0,73.0,68.0,61.0,79.0,85.0,47.0,49.0,53.0,44.0,37.0,35.0,25.0,18.0,19.0,13.0,18.0,17.0,5.0,6.0,4.0,1.0,9.0 C83044,54.0,64.0,62.0,78.0,76.0,67.0,74.0,83.0,76.0,90.0,95.0,78.0,83.0,79.0,87.0,79.0,73.0,79.0,59.0,54.0,75.0,57.0,63.0,57.0,74.0,75.0,73.0,84.0,93.0,83.0,91.0,95.0,107.0,84.0,77.0,97.0,89.0,94.0,89.0,103.0,91.0,84.0,68.0,66.0,76.0,60.0,67.0,60.0,54.0,67.0,87.0,83.0,82.0,83.0,70.0,77.0,90.0,72.0,75.0,83.0,74.0,83.0,71.0,63.0,72.0,56.0,74.0,55.0,65.0,43.0,49.0,64.0,49.0,50.0,61.0,49.0,45.0,37.0,48.0,40.0,51.0,28.0,29.0,22.0,23.0,23.0,16.0,11.0,14.0,13.0,11.0,7.0,8.0,2.0,6.0,6.0 C83045,56.0,54.0,43.0,62.0,60.0,68.0,89.0,74.0,66.0,65.0,71.0,81.0,84.0,95.0,83.0,115.0,93.0,98.0,77.0,91.0,87.0,75.0,71.0,94.0,85.0,83.0,85.0,100.0,82.0,95.0,96.0,100.0,98.0,91.0,91.0,71.0,83.0,80.0,108.0,84.0,98.0,79.0,96.0,94.0,100.0,92.0,80.0,60.0,85.0,108.0,94.0,80.0,111.0,123.0,120.0,131.0,149.0,109.0,136.0,122.0,163.0,142.0,155.0,145.0,123.0,130.0,139.0,146.0,126.0,122.0,125.0,123.0,111.0,108.0,132.0,111.0,122.0,115.0,113.0,101.0,76.0,69.0,74.0,50.0,42.0,43.0,41.0,31.0,24.0,20.0,14.0,10.0,9.0,7.0,10.0,17.0 C83046,25.0,23.0,29.0,19.0,24.0,24.0,32.0,28.0,40.0,39.0,25.0,38.0,30.0,33.0,44.0,36.0,41.0,34.0,43.0,28.0,26.0,35.0,34.0,36.0,28.0,40.0,26.0,38.0,40.0,35.0,46.0,43.0,38.0,42.0,39.0,43.0,36.0,47.0,43.0,49.0,41.0,41.0,32.0,42.0,46.0,43.0,43.0,40.0,42.0,45.0,46.0,41.0,48.0,49.0,43.0,47.0,39.0,52.0,48.0,34.0,48.0,52.0,49.0,51.0,39.0,44.0,33.0,32.0,29.0,25.0,27.0,29.0,22.0,24.0,19.0,36.0,20.0,28.0,17.0,16.0,28.0,13.0,14.0,16.0,17.0,14.0,8.0,9.0,6.0,5.0,7.0,2.0,,1.0,1.0,5.0 C83048,42.0,53.0,54.0,56.0,74.0,58.0,73.0,80.0,83.0,112.0,97.0,92.0,89.0,98.0,85.0,86.0,95.0,87.0,78.0,81.0,74.0,61.0,62.0,84.0,58.0,69.0,82.0,82.0,72.0,87.0,85.0,94.0,96.0,89.0,108.0,109.0,105.0,111.0,106.0,91.0,110.0,92.0,126.0,97.0,106.0,97.0,96.0,103.0,76.0,84.0,72.0,78.0,107.0,110.0,101.0,104.0,94.0,96.0,89.0,70.0,77.0,92.0,71.0,68.0,73.0,79.0,59.0,62.0,52.0,48.0,53.0,45.0,60.0,55.0,50.0,59.0,53.0,57.0,60.0,43.0,44.0,42.0,36.0,29.0,27.0,32.0,31.0,17.0,17.0,8.0,5.0,7.0,8.0,4.0,5.0,7.0 C83049,20.0,13.0,25.0,21.0,27.0,30.0,31.0,30.0,26.0,36.0,33.0,34.0,36.0,37.0,46.0,37.0,39.0,33.0,28.0,39.0,60.0,84.0,110.0,137.0,179.0,189.0,200.0,193.0,200.0,211.0,179.0,181.0,156.0,167.0,149.0,127.0,155.0,133.0,129.0,99.0,105.0,88.0,78.0,91.0,82.0,73.0,73.0,58.0,72.0,52.0,51.0,52.0,58.0,67.0,60.0,54.0,68.0,68.0,77.0,46.0,72.0,63.0,75.0,57.0,62.0,71.0,43.0,63.0,66.0,39.0,54.0,46.0,58.0,50.0,43.0,41.0,45.0,53.0,47.0,33.0,37.0,25.0,32.0,25.0,28.0,19.0,20.0,20.0,8.0,8.0,12.0,16.0,5.0,4.0,4.0,3.0 C83051,57.0,48.0,38.0,43.0,35.0,54.0,48.0,58.0,62.0,58.0,66.0,50.0,40.0,49.0,37.0,50.0,48.0,52.0,40.0,53.0,53.0,44.0,54.0,61.0,57.0,63.0,82.0,90.0,74.0,101.0,109.0,111.0,127.0,123.0,108.0,128.0,126.0,114.0,107.0,109.0,120.0,102.0,99.0,95.0,108.0,90.0,82.0,87.0,89.0,72.0,79.0,70.0,67.0,55.0,73.0,53.0,54.0,44.0,45.0,42.0,39.0,33.0,38.0,43.0,45.0,36.0,28.0,30.0,24.0,25.0,28.0,27.0,16.0,18.0,9.0,24.0,12.0,23.0,18.0,11.0,11.0,10.0,8.0,4.0,3.0,9.0,7.0,3.0,6.0,3.0,4.0,3.0,3.0,2.0,,3.0 C83052,17.0,12.0,23.0,20.0,17.0,19.0,22.0,15.0,16.0,20.0,15.0,32.0,23.0,28.0,18.0,22.0,31.0,20.0,22.0,17.0,20.0,15.0,16.0,9.0,20.0,20.0,21.0,27.0,12.0,19.0,19.0,21.0,23.0,21.0,29.0,22.0,26.0,15.0,21.0,20.0,26.0,24.0,26.0,21.0,24.0,21.0,14.0,19.0,14.0,28.0,24.0,22.0,28.0,21.0,18.0,34.0,34.0,40.0,42.0,39.0,42.0,33.0,41.0,31.0,42.0,33.0,34.0,20.0,38.0,33.0,26.0,21.0,22.0,17.0,15.0,20.0,19.0,23.0,26.0,23.0,13.0,17.0,15.0,6.0,6.0,10.0,7.0,7.0,6.0,9.0,5.0,4.0,1.0,3.0,,2.0 C83053,11.0,11.0,5.0,13.0,15.0,10.0,16.0,6.0,16.0,13.0,16.0,15.0,9.0,12.0,13.0,16.0,8.0,14.0,7.0,12.0,9.0,14.0,10.0,12.0,9.0,7.0,7.0,17.0,12.0,16.0,19.0,11.0,9.0,19.0,12.0,12.0,24.0,18.0,11.0,11.0,13.0,11.0,12.0,18.0,10.0,14.0,18.0,7.0,11.0,16.0,16.0,20.0,19.0,22.0,13.0,20.0,22.0,21.0,22.0,16.0,23.0,20.0,17.0,22.0,22.0,23.0,10.0,26.0,16.0,10.0,19.0,22.0,14.0,14.0,10.0,10.0,12.0,19.0,27.0,19.0,9.0,9.0,8.0,15.0,8.0,9.0,3.0,6.0,3.0,4.0,1.0,6.0,1.0,2.0,,1.0 C83054,58.0,67.0,70.0,75.0,110.0,69.0,80.0,131.0,103.0,106.0,118.0,106.0,80.0,97.0,108.0,103.0,98.0,97.0,72.0,71.0,78.0,54.0,56.0,67.0,65.0,65.0,85.0,75.0,83.0,78.0,76.0,87.0,121.0,90.0,100.0,106.0,105.0,106.0,95.0,100.0,88.0,90.0,101.0,101.0,104.0,81.0,101.0,93.0,73.0,85.0,74.0,109.0,110.0,80.0,110.0,117.0,107.0,98.0,101.0,118.0,121.0,108.0,102.0,95.0,92.0,86.0,92.0,82.0,76.0,81.0,76.0,76.0,84.0,73.0,73.0,71.0,75.0,83.0,70.0,57.0,61.0,63.0,51.0,40.0,29.0,29.0,27.0,23.0,18.0,22.0,17.0,13.0,9.0,8.0,3.0,10.0 C83055,23.0,18.0,13.0,37.0,22.0,32.0,28.0,22.0,27.0,22.0,25.0,32.0,29.0,30.0,47.0,29.0,33.0,32.0,25.0,15.0,25.0,28.0,24.0,22.0,28.0,24.0,18.0,25.0,32.0,23.0,27.0,33.0,33.0,34.0,29.0,34.0,24.0,31.0,30.0,21.0,31.0,23.0,28.0,21.0,24.0,28.0,20.0,29.0,31.0,33.0,35.0,35.0,40.0,40.0,49.0,37.0,37.0,51.0,48.0,70.0,56.0,58.0,56.0,69.0,53.0,64.0,54.0,41.0,46.0,55.0,63.0,37.0,56.0,46.0,48.0,45.0,44.0,54.0,47.0,32.0,35.0,25.0,30.0,19.0,23.0,21.0,16.0,14.0,7.0,8.0,5.0,4.0,2.0,2.0,3.0,6.0 C83056,37.0,36.0,34.0,53.0,47.0,46.0,60.0,92.0,70.0,78.0,77.0,65.0,64.0,78.0,85.0,84.0,92.0,72.0,62.0,50.0,68.0,61.0,50.0,49.0,51.0,49.0,63.0,84.0,52.0,66.0,65.0,71.0,65.0,65.0,82.0,71.0,75.0,76.0,76.0,74.0,53.0,71.0,64.0,80.0,83.0,86.0,69.0,64.0,57.0,66.0,87.0,73.0,84.0,113.0,111.0,105.0,107.0,113.0,116.0,92.0,114.0,111.0,118.0,113.0,121.0,107.0,103.0,95.0,87.0,94.0,79.0,104.0,93.0,95.0,88.0,98.0,101.0,105.0,108.0,87.0,69.0,85.0,54.0,43.0,37.0,21.0,30.0,41.0,25.0,19.0,13.0,15.0,12.0,5.0,7.0,12.0 C83057,32.0,45.0,36.0,58.0,46.0,56.0,49.0,65.0,52.0,50.0,55.0,58.0,55.0,58.0,60.0,54.0,58.0,42.0,45.0,39.0,44.0,33.0,32.0,38.0,31.0,52.0,59.0,52.0,51.0,48.0,39.0,62.0,59.0,64.0,69.0,57.0,68.0,60.0,71.0,55.0,54.0,53.0,57.0,60.0,54.0,45.0,38.0,42.0,39.0,37.0,35.0,40.0,48.0,62.0,46.0,52.0,56.0,56.0,63.0,47.0,68.0,45.0,44.0,51.0,46.0,43.0,47.0,51.0,50.0,42.0,40.0,43.0,40.0,36.0,33.0,40.0,26.0,26.0,32.0,28.0,33.0,23.0,19.0,21.0,17.0,21.0,13.0,9.0,8.0,7.0,8.0,8.0,9.0,5.0,1.0,6.0 C83058,25.0,30.0,32.0,36.0,48.0,34.0,32.0,43.0,49.0,50.0,42.0,52.0,55.0,54.0,54.0,47.0,46.0,43.0,43.0,40.0,39.0,40.0,35.0,31.0,33.0,28.0,37.0,38.0,33.0,40.0,43.0,33.0,41.0,38.0,51.0,42.0,43.0,36.0,46.0,37.0,49.0,36.0,50.0,47.0,40.0,51.0,40.0,49.0,46.0,44.0,61.0,61.0,54.0,56.0,65.0,58.0,75.0,61.0,68.0,72.0,62.0,76.0,66.0,70.0,53.0,59.0,54.0,58.0,64.0,52.0,48.0,58.0,62.0,66.0,56.0,66.0,65.0,66.0,57.0,42.0,45.0,54.0,37.0,41.0,32.0,32.0,29.0,22.0,13.0,15.0,15.0,4.0,6.0,4.0,5.0,5.0 C83059,66.0,75.0,72.0,69.0,58.0,76.0,90.0,99.0,82.0,74.0,98.0,92.0,107.0,93.0,87.0,113.0,96.0,97.0,84.0,59.0,64.0,75.0,72.0,55.0,75.0,86.0,92.0,84.0,81.0,91.0,98.0,105.0,126.0,124.0,114.0,126.0,120.0,134.0,116.0,111.0,126.0,123.0,107.0,150.0,110.0,116.0,99.0,99.0,84.0,102.0,69.0,91.0,109.0,80.0,84.0,96.0,79.0,84.0,78.0,100.0,98.0,94.0,74.0,70.0,83.0,58.0,54.0,55.0,63.0,66.0,52.0,62.0,35.0,48.0,44.0,51.0,34.0,50.0,46.0,32.0,40.0,24.0,35.0,33.0,18.0,17.0,16.0,9.0,21.0,12.0,9.0,6.0,5.0,7.0,7.0,9.0 C83060,50.0,63.0,64.0,78.0,80.0,90.0,100.0,106.0,97.0,108.0,100.0,104.0,98.0,112.0,112.0,112.0,120.0,127.0,99.0,83.0,92.0,80.0,76.0,75.0,84.0,78.0,88.0,102.0,109.0,96.0,136.0,133.0,132.0,126.0,129.0,150.0,172.0,156.0,137.0,130.0,158.0,137.0,136.0,116.0,120.0,128.0,139.0,123.0,101.0,96.0,114.0,110.0,114.0,112.0,100.0,106.0,112.0,93.0,90.0,105.0,89.0,103.0,91.0,94.0,91.0,98.0,89.0,77.0,82.0,72.0,70.0,59.0,56.0,61.0,51.0,52.0,59.0,46.0,66.0,50.0,49.0,40.0,32.0,31.0,26.0,23.0,19.0,15.0,14.0,13.0,9.0,4.0,9.0,4.0,3.0,17.0 C83061,19.0,25.0,35.0,31.0,23.0,47.0,28.0,39.0,30.0,41.0,46.0,31.0,45.0,36.0,44.0,39.0,49.0,47.0,44.0,46.0,32.0,34.0,32.0,32.0,44.0,41.0,38.0,37.0,34.0,42.0,28.0,39.0,39.0,51.0,46.0,49.0,44.0,39.0,35.0,40.0,40.0,45.0,34.0,36.0,41.0,37.0,36.0,33.0,39.0,41.0,50.0,52.0,63.0,60.0,75.0,71.0,65.0,60.0,71.0,75.0,94.0,72.0,82.0,78.0,73.0,77.0,69.0,71.0,70.0,67.0,60.0,73.0,70.0,61.0,63.0,65.0,70.0,78.0,77.0,62.0,66.0,31.0,38.0,45.0,29.0,28.0,25.0,28.0,18.0,19.0,7.0,11.0,6.0,5.0,3.0,5.0 C83062,22.0,19.0,22.0,27.0,29.0,30.0,37.0,35.0,28.0,27.0,37.0,32.0,40.0,47.0,24.0,32.0,39.0,25.0,35.0,30.0,16.0,25.0,20.0,26.0,22.0,19.0,22.0,30.0,28.0,28.0,27.0,27.0,27.0,31.0,28.0,27.0,22.0,34.0,19.0,23.0,29.0,22.0,31.0,37.0,24.0,44.0,32.0,19.0,24.0,30.0,38.0,33.0,21.0,35.0,43.0,46.0,44.0,52.0,52.0,46.0,51.0,52.0,41.0,51.0,41.0,40.0,34.0,52.0,34.0,45.0,29.0,37.0,39.0,39.0,38.0,28.0,17.0,36.0,38.0,28.0,25.0,26.0,27.0,23.0,14.0,14.0,14.0,8.0,8.0,12.0,6.0,7.0,1.0,2.0,1.0,2.0 C83063,44.0,54.0,58.0,62.0,72.0,81.0,76.0,73.0,107.0,78.0,78.0,87.0,99.0,84.0,81.0,84.0,103.0,79.0,91.0,72.0,49.0,66.0,73.0,72.0,71.0,62.0,77.0,74.0,79.0,84.0,72.0,72.0,98.0,77.0,91.0,91.0,95.0,82.0,73.0,96.0,96.0,85.0,71.0,72.0,90.0,91.0,73.0,74.0,78.0,70.0,64.0,86.0,99.0,98.0,133.0,122.0,120.0,108.0,124.0,138.0,143.0,143.0,138.0,114.0,137.0,120.0,110.0,93.0,116.0,119.0,90.0,111.0,96.0,104.0,112.0,97.0,125.0,114.0,118.0,81.0,81.0,78.0,78.0,50.0,50.0,54.0,41.0,41.0,35.0,29.0,23.0,19.0,11.0,12.0,1.0,12.0 C83064,25.0,38.0,35.0,38.0,39.0,43.0,44.0,64.0,41.0,73.0,57.0,61.0,65.0,54.0,59.0,60.0,43.0,49.0,49.0,63.0,46.0,45.0,43.0,47.0,57.0,47.0,56.0,58.0,56.0,52.0,59.0,58.0,55.0,58.0,46.0,61.0,57.0,60.0,40.0,36.0,57.0,55.0,53.0,66.0,54.0,54.0,59.0,46.0,49.0,58.0,53.0,62.0,80.0,85.0,91.0,69.0,108.0,114.0,104.0,133.0,137.0,152.0,129.0,142.0,135.0,136.0,159.0,166.0,153.0,146.0,156.0,133.0,154.0,143.0,146.0,132.0,120.0,150.0,144.0,121.0,104.0,108.0,87.0,68.0,53.0,50.0,39.0,40.0,18.0,27.0,17.0,9.0,14.0,7.0,4.0,15.0 C83065,44.0,50.0,47.0,39.0,50.0,37.0,48.0,53.0,48.0,58.0,53.0,46.0,54.0,50.0,57.0,44.0,51.0,47.0,49.0,36.0,36.0,34.0,48.0,41.0,42.0,59.0,54.0,63.0,74.0,66.0,67.0,63.0,59.0,49.0,57.0,64.0,52.0,60.0,58.0,57.0,47.0,50.0,53.0,50.0,56.0,46.0,46.0,53.0,63.0,58.0,57.0,47.0,69.0,60.0,67.0,63.0,57.0,62.0,75.0,60.0,69.0,76.0,79.0,62.0,65.0,57.0,53.0,54.0,60.0,53.0,44.0,52.0,61.0,52.0,42.0,53.0,53.0,46.0,60.0,38.0,34.0,28.0,36.0,31.0,18.0,29.0,17.0,22.0,17.0,11.0,6.0,5.0,7.0,6.0,4.0,9.0 C83067,21.0,17.0,25.0,22.0,29.0,30.0,26.0,25.0,33.0,38.0,34.0,38.0,30.0,30.0,35.0,35.0,35.0,41.0,35.0,38.0,31.0,31.0,25.0,40.0,22.0,28.0,26.0,26.0,25.0,23.0,24.0,21.0,15.0,22.0,18.0,30.0,25.0,34.0,24.0,30.0,28.0,31.0,32.0,28.0,31.0,39.0,29.0,25.0,23.0,30.0,28.0,48.0,43.0,63.0,53.0,43.0,63.0,63.0,68.0,71.0,61.0,74.0,69.0,58.0,60.0,52.0,51.0,60.0,54.0,50.0,61.0,61.0,39.0,48.0,39.0,54.0,47.0,69.0,51.0,36.0,26.0,25.0,33.0,30.0,22.0,22.0,12.0,15.0,19.0,13.0,5.0,11.0,6.0,1.0,1.0,2.0 C83072,44.0,33.0,39.0,44.0,52.0,48.0,57.0,52.0,73.0,71.0,70.0,60.0,79.0,87.0,81.0,67.0,64.0,81.0,54.0,60.0,57.0,50.0,52.0,43.0,48.0,49.0,50.0,47.0,58.0,53.0,53.0,59.0,53.0,56.0,52.0,51.0,73.0,52.0,56.0,55.0,62.0,69.0,56.0,51.0,60.0,58.0,61.0,48.0,49.0,57.0,53.0,52.0,61.0,70.0,57.0,71.0,59.0,65.0,65.0,81.0,65.0,68.0,93.0,74.0,64.0,60.0,48.0,52.0,68.0,40.0,47.0,40.0,47.0,53.0,47.0,48.0,42.0,42.0,43.0,39.0,35.0,28.0,24.0,13.0,30.0,10.0,20.0,8.0,11.0,17.0,9.0,5.0,6.0,5.0,3.0,6.0 C83073,49.0,36.0,44.0,42.0,54.0,52.0,60.0,41.0,40.0,44.0,45.0,33.0,41.0,45.0,42.0,44.0,42.0,25.0,52.0,47.0,51.0,63.0,44.0,49.0,67.0,68.0,52.0,77.0,52.0,70.0,75.0,78.0,83.0,67.0,72.0,78.0,70.0,96.0,72.0,75.0,80.0,69.0,59.0,52.0,62.0,68.0,52.0,43.0,49.0,52.0,55.0,52.0,58.0,47.0,60.0,61.0,58.0,50.0,47.0,45.0,51.0,53.0,40.0,46.0,40.0,43.0,51.0,19.0,27.0,30.0,27.0,22.0,21.0,16.0,25.0,22.0,22.0,23.0,25.0,22.0,11.0,18.0,11.0,9.0,16.0,10.0,3.0,7.0,4.0,2.0,7.0,4.0,4.0,,1.0,2.0 C83074,10.0,17.0,20.0,17.0,20.0,18.0,17.0,21.0,24.0,17.0,18.0,27.0,28.0,19.0,27.0,25.0,23.0,27.0,11.0,18.0,21.0,17.0,22.0,19.0,12.0,14.0,20.0,19.0,22.0,21.0,19.0,18.0,21.0,31.0,25.0,17.0,21.0,15.0,19.0,20.0,24.0,24.0,25.0,25.0,24.0,20.0,27.0,23.0,26.0,25.0,26.0,22.0,32.0,30.0,33.0,41.0,50.0,41.0,55.0,49.0,40.0,44.0,50.0,48.0,46.0,36.0,35.0,34.0,36.0,40.0,33.0,34.0,39.0,37.0,35.0,39.0,39.0,42.0,38.0,28.0,35.0,22.0,26.0,17.0,17.0,21.0,12.0,11.0,7.0,7.0,6.0,8.0,2.0,,,3.0 C83075,49.0,45.0,49.0,59.0,54.0,42.0,67.0,55.0,58.0,57.0,65.0,59.0,57.0,66.0,54.0,64.0,50.0,62.0,60.0,49.0,36.0,41.0,47.0,47.0,45.0,44.0,52.0,52.0,64.0,67.0,72.0,65.0,78.0,58.0,73.0,59.0,69.0,67.0,78.0,67.0,59.0,46.0,57.0,80.0,49.0,76.0,49.0,65.0,60.0,63.0,67.0,56.0,68.0,83.0,65.0,72.0,71.0,80.0,70.0,69.0,58.0,64.0,77.0,68.0,78.0,56.0,74.0,52.0,47.0,62.0,49.0,48.0,45.0,53.0,49.0,33.0,45.0,37.0,49.0,40.0,48.0,33.0,23.0,23.0,26.0,17.0,19.0,14.0,7.0,13.0,5.0,6.0,6.0,2.0,6.0,7.0 C83078,45.0,30.0,48.0,47.0,45.0,57.0,51.0,62.0,48.0,60.0,51.0,49.0,58.0,58.0,50.0,52.0,61.0,55.0,48.0,46.0,37.0,33.0,44.0,45.0,34.0,56.0,55.0,43.0,37.0,50.0,61.0,74.0,77.0,68.0,82.0,74.0,49.0,67.0,58.0,76.0,69.0,62.0,61.0,57.0,50.0,54.0,58.0,52.0,50.0,65.0,62.0,49.0,51.0,64.0,66.0,57.0,56.0,65.0,59.0,49.0,59.0,57.0,65.0,55.0,80.0,47.0,51.0,39.0,47.0,48.0,40.0,27.0,40.0,31.0,48.0,34.0,36.0,31.0,41.0,27.0,32.0,25.0,33.0,15.0,21.0,16.0,17.0,17.0,7.0,6.0,7.0,6.0,4.0,3.0,3.0,2.0 C83079,30.0,41.0,31.0,41.0,37.0,36.0,47.0,33.0,41.0,35.0,42.0,44.0,29.0,35.0,30.0,43.0,44.0,36.0,33.0,31.0,29.0,25.0,24.0,25.0,27.0,35.0,42.0,38.0,55.0,47.0,44.0,52.0,61.0,48.0,57.0,63.0,48.0,62.0,61.0,65.0,50.0,48.0,47.0,48.0,36.0,46.0,42.0,36.0,32.0,40.0,29.0,37.0,29.0,32.0,37.0,31.0,39.0,38.0,31.0,31.0,38.0,44.0,44.0,33.0,31.0,30.0,28.0,21.0,33.0,26.0,27.0,27.0,32.0,15.0,24.0,27.0,20.0,30.0,27.0,19.0,16.0,12.0,11.0,5.0,5.0,14.0,7.0,4.0,6.0,4.0,2.0,3.0,2.0,,,2.0 C83080,19.0,22.0,26.0,20.0,37.0,33.0,35.0,31.0,34.0,41.0,33.0,40.0,35.0,42.0,39.0,39.0,43.0,48.0,34.0,35.0,35.0,29.0,23.0,28.0,26.0,30.0,35.0,28.0,36.0,27.0,29.0,28.0,36.0,39.0,18.0,34.0,43.0,26.0,29.0,41.0,32.0,31.0,35.0,36.0,47.0,40.0,36.0,31.0,31.0,47.0,26.0,33.0,38.0,39.0,50.0,40.0,42.0,45.0,34.0,34.0,65.0,40.0,39.0,46.0,39.0,30.0,25.0,31.0,48.0,33.0,33.0,29.0,32.0,28.0,18.0,24.0,37.0,27.0,27.0,18.0,13.0,20.0,16.0,9.0,8.0,8.0,11.0,8.0,7.0,5.0,3.0,2.0,4.0,3.0,,2.0 C83082,45.0,40.0,77.0,64.0,67.0,65.0,59.0,75.0,75.0,76.0,70.0,65.0,70.0,71.0,60.0,78.0,62.0,57.0,62.0,56.0,51.0,57.0,51.0,44.0,58.0,52.0,64.0,63.0,68.0,69.0,71.0,68.0,79.0,69.0,81.0,69.0,83.0,83.0,94.0,92.0,89.0,71.0,77.0,78.0,66.0,68.0,49.0,68.0,52.0,55.0,56.0,52.0,64.0,71.0,71.0,60.0,75.0,65.0,64.0,78.0,68.0,79.0,59.0,54.0,75.0,63.0,57.0,44.0,56.0,46.0,50.0,48.0,52.0,49.0,48.0,47.0,50.0,56.0,50.0,35.0,29.0,35.0,18.0,18.0,22.0,15.0,13.0,17.0,5.0,10.0,11.0,6.0,5.0,3.0,5.0,4.0 C83083,32.0,34.0,39.0,42.0,33.0,47.0,34.0,48.0,48.0,43.0,54.0,51.0,47.0,58.0,53.0,45.0,52.0,42.0,45.0,51.0,23.0,31.0,32.0,32.0,33.0,31.0,38.0,31.0,37.0,27.0,36.0,37.0,36.0,46.0,45.0,62.0,34.0,46.0,44.0,35.0,37.0,34.0,36.0,35.0,37.0,35.0,52.0,30.0,30.0,22.0,42.0,38.0,45.0,36.0,47.0,52.0,61.0,58.0,60.0,51.0,62.0,67.0,68.0,66.0,51.0,59.0,60.0,48.0,45.0,52.0,62.0,42.0,46.0,42.0,39.0,46.0,42.0,42.0,53.0,27.0,31.0,36.0,29.0,22.0,23.0,15.0,11.0,18.0,18.0,10.0,5.0,6.0,5.0,1.0,2.0,7.0 C83085,48.0,55.0,57.0,64.0,64.0,78.0,66.0,64.0,65.0,79.0,71.0,80.0,84.0,72.0,79.0,78.0,67.0,77.0,73.0,61.0,42.0,80.0,67.0,72.0,63.0,72.0,65.0,63.0,83.0,67.0,95.0,82.0,79.0,73.0,78.0,72.0,90.0,84.0,77.0,81.0,73.0,79.0,71.0,66.0,69.0,71.0,54.0,60.0,57.0,70.0,80.0,79.0,73.0,106.0,100.0,90.0,104.0,103.0,82.0,95.0,112.0,110.0,103.0,105.0,95.0,96.0,101.0,101.0,87.0,102.0,88.0,68.0,99.0,76.0,82.0,72.0,65.0,73.0,67.0,58.0,59.0,48.0,43.0,41.0,45.0,32.0,29.0,28.0,22.0,9.0,14.0,11.0,9.0,7.0,3.0,12.0 C83611,31.0,33.0,33.0,40.0,38.0,41.0,37.0,46.0,57.0,49.0,40.0,49.0,56.0,52.0,43.0,42.0,46.0,52.0,42.0,41.0,27.0,34.0,31.0,31.0,31.0,34.0,34.0,35.0,34.0,36.0,54.0,45.0,33.0,37.0,47.0,37.0,38.0,55.0,46.0,26.0,42.0,48.0,58.0,42.0,47.0,46.0,57.0,36.0,43.0,35.0,37.0,63.0,42.0,65.0,55.0,50.0,53.0,59.0,44.0,55.0,48.0,41.0,54.0,41.0,39.0,38.0,47.0,35.0,33.0,31.0,36.0,28.0,29.0,21.0,25.0,37.0,32.0,35.0,39.0,28.0,17.0,21.0,17.0,21.0,13.0,11.0,7.0,8.0,6.0,8.0,4.0,4.0,,2.0,2.0,4.0 C83613,20.0,11.0,23.0,12.0,19.0,37.0,18.0,24.0,29.0,17.0,28.0,31.0,29.0,34.0,39.0,39.0,30.0,33.0,27.0,24.0,27.0,21.0,17.0,20.0,29.0,22.0,25.0,18.0,24.0,32.0,25.0,23.0,22.0,27.0,35.0,37.0,18.0,17.0,31.0,25.0,25.0,25.0,26.0,31.0,27.0,29.0,27.0,29.0,35.0,35.0,31.0,39.0,32.0,27.0,39.0,34.0,52.0,47.0,48.0,41.0,43.0,47.0,38.0,52.0,57.0,41.0,47.0,46.0,42.0,42.0,37.0,25.0,34.0,37.0,22.0,51.0,39.0,30.0,26.0,26.0,35.0,21.0,27.0,23.0,11.0,12.0,12.0,9.0,7.0,5.0,6.0,6.0,,5.0,,2.0 C83614,7.0,11.0,10.0,13.0,11.0,10.0,16.0,13.0,17.0,17.0,14.0,16.0,19.0,16.0,20.0,19.0,20.0,15.0,13.0,16.0,15.0,20.0,19.0,14.0,14.0,20.0,22.0,18.0,23.0,15.0,20.0,11.0,19.0,31.0,15.0,22.0,23.0,16.0,19.0,27.0,23.0,28.0,17.0,17.0,14.0,14.0,21.0,17.0,20.0,10.0,18.0,26.0,27.0,36.0,41.0,31.0,26.0,35.0,37.0,32.0,29.0,32.0,30.0,34.0,37.0,31.0,26.0,22.0,25.0,26.0,24.0,31.0,23.0,29.0,27.0,23.0,20.0,21.0,30.0,16.0,18.0,18.0,8.0,15.0,9.0,8.0,13.0,4.0,4.0,5.0,2.0,1.0,,1.0,2.0, C83617,39.0,53.0,64.0,58.0,46.0,56.0,57.0,49.0,49.0,45.0,46.0,55.0,50.0,55.0,47.0,54.0,47.0,47.0,49.0,39.0,44.0,46.0,41.0,23.0,37.0,45.0,42.0,56.0,58.0,47.0,58.0,56.0,57.0,53.0,58.0,58.0,71.0,50.0,50.0,64.0,48.0,47.0,64.0,50.0,64.0,57.0,45.0,53.0,44.0,51.0,50.0,65.0,58.0,62.0,74.0,92.0,74.0,65.0,71.0,66.0,75.0,73.0,61.0,70.0,65.0,52.0,55.0,56.0,63.0,44.0,45.0,53.0,38.0,37.0,42.0,46.0,45.0,55.0,51.0,42.0,34.0,29.0,31.0,23.0,12.0,26.0,14.0,11.0,11.0,16.0,5.0,3.0,5.0,3.0,2.0,3.0 C83626,67.0,59.0,58.0,41.0,62.0,57.0,56.0,57.0,75.0,46.0,59.0,43.0,60.0,39.0,53.0,51.0,50.0,51.0,56.0,51.0,70.0,96.0,108.0,99.0,116.0,120.0,109.0,128.0,140.0,137.0,121.0,163.0,162.0,127.0,121.0,126.0,123.0,123.0,113.0,95.0,93.0,106.0,88.0,76.0,88.0,68.0,75.0,57.0,61.0,58.0,60.0,65.0,60.0,50.0,49.0,50.0,49.0,53.0,52.0,64.0,58.0,45.0,42.0,31.0,29.0,40.0,41.0,21.0,40.0,28.0,16.0,35.0,23.0,24.0,20.0,19.0,17.0,14.0,18.0,16.0,14.0,14.0,10.0,6.0,6.0,8.0,8.0,3.0,5.0,2.0,3.0,2.0,1.0,3.0,1.0,1.0 C83634,10.0,12.0,15.0,22.0,14.0,19.0,18.0,24.0,24.0,26.0,28.0,25.0,20.0,23.0,22.0,24.0,25.0,25.0,14.0,22.0,11.0,14.0,18.0,25.0,13.0,9.0,15.0,17.0,15.0,15.0,14.0,17.0,22.0,19.0,18.0,23.0,23.0,22.0,9.0,21.0,25.0,17.0,14.0,22.0,20.0,23.0,21.0,23.0,20.0,18.0,21.0,16.0,32.0,32.0,28.0,28.0,29.0,34.0,37.0,39.0,42.0,35.0,40.0,42.0,41.0,43.0,35.0,40.0,40.0,43.0,34.0,32.0,27.0,32.0,42.0,41.0,49.0,48.0,40.0,34.0,27.0,40.0,30.0,33.0,21.0,17.0,24.0,19.0,15.0,9.0,10.0,1.0,5.0,2.0,3.0,5.0 C83635,14.0,12.0,11.0,16.0,22.0,19.0,22.0,11.0,28.0,20.0,26.0,27.0,26.0,28.0,21.0,24.0,20.0,32.0,22.0,25.0,24.0,16.0,29.0,25.0,27.0,21.0,18.0,24.0,12.0,16.0,17.0,27.0,28.0,18.0,22.0,23.0,26.0,27.0,19.0,26.0,23.0,21.0,27.0,20.0,23.0,18.0,22.0,23.0,22.0,25.0,23.0,25.0,32.0,36.0,37.0,36.0,37.0,36.0,43.0,53.0,46.0,45.0,55.0,50.0,47.0,45.0,55.0,48.0,36.0,53.0,40.0,45.0,39.0,41.0,37.0,39.0,41.0,49.0,38.0,45.0,31.0,34.0,27.0,16.0,18.0,15.0,18.0,14.0,17.0,14.0,9.0,10.0,2.0,2.0,4.0,4.0 C83641,9.0,16.0,15.0,9.0,17.0,15.0,12.0,27.0,19.0,10.0,23.0,17.0,15.0,29.0,19.0,26.0,17.0,19.0,14.0,19.0,18.0,17.0,14.0,10.0,14.0,11.0,23.0,12.0,19.0,10.0,16.0,20.0,21.0,16.0,21.0,26.0,27.0,32.0,22.0,21.0,21.0,15.0,17.0,19.0,11.0,16.0,19.0,16.0,14.0,12.0,23.0,25.0,20.0,40.0,27.0,24.0,29.0,23.0,32.0,38.0,27.0,30.0,46.0,37.0,34.0,40.0,26.0,33.0,36.0,49.0,28.0,25.0,30.0,39.0,26.0,29.0,35.0,35.0,43.0,26.0,33.0,28.0,29.0,14.0,19.0,9.0,13.0,16.0,9.0,8.0,5.0,8.0,1.0,4.0,,1.0 C83643,10.0,3.0,5.0,4.0,9.0,11.0,8.0,5.0,12.0,9.0,7.0,13.0,9.0,10.0,11.0,11.0,12.0,10.0,9.0,12.0,12.0,14.0,7.0,12.0,3.0,8.0,14.0,7.0,15.0,11.0,10.0,7.0,9.0,12.0,18.0,21.0,6.0,8.0,11.0,10.0,14.0,9.0,6.0,12.0,13.0,13.0,11.0,8.0,7.0,9.0,7.0,14.0,14.0,22.0,17.0,17.0,29.0,16.0,14.0,19.0,21.0,24.0,21.0,16.0,28.0,32.0,22.0,26.0,25.0,18.0,16.0,25.0,26.0,32.0,22.0,14.0,20.0,19.0,21.0,17.0,17.0,13.0,8.0,6.0,8.0,6.0,3.0,2.0,5.0,3.0,1.0,,1.0,,,1.0 C83649,17.0,18.0,21.0,23.0,13.0,20.0,23.0,24.0,27.0,24.0,27.0,29.0,38.0,30.0,30.0,35.0,30.0,17.0,32.0,28.0,21.0,29.0,30.0,21.0,22.0,30.0,29.0,29.0,21.0,21.0,21.0,27.0,24.0,37.0,22.0,27.0,29.0,34.0,18.0,22.0,22.0,24.0,27.0,38.0,32.0,44.0,19.0,21.0,30.0,26.0,32.0,40.0,42.0,35.0,35.0,46.0,61.0,36.0,51.0,48.0,41.0,46.0,52.0,30.0,36.0,35.0,41.0,38.0,37.0,36.0,36.0,34.0,33.0,34.0,33.0,27.0,28.0,23.0,31.0,22.0,15.0,26.0,14.0,13.0,12.0,10.0,5.0,8.0,5.0,5.0,7.0,3.0,3.0,1.0,2.0,1.0 C83650,12.0,11.0,18.0,15.0,17.0,19.0,17.0,21.0,22.0,14.0,24.0,24.0,23.0,23.0,24.0,14.0,32.0,17.0,20.0,21.0,20.0,25.0,15.0,13.0,14.0,16.0,17.0,21.0,23.0,20.0,21.0,21.0,14.0,17.0,20.0,19.0,22.0,23.0,21.0,22.0,22.0,20.0,13.0,19.0,16.0,22.0,28.0,19.0,13.0,18.0,17.0,20.0,22.0,22.0,29.0,29.0,37.0,29.0,31.0,32.0,35.0,34.0,32.0,34.0,45.0,39.0,31.0,28.0,33.0,25.0,32.0,31.0,31.0,25.0,25.0,25.0,22.0,23.0,28.0,28.0,14.0,24.0,26.0,13.0,14.0,10.0,10.0,15.0,10.0,2.0,4.0,2.0,4.0,3.0,,5.0 Y01652,12.0,11.0,28.0,25.0,24.0,21.0,31.0,32.0,22.0,41.0,42.0,35.0,39.0,37.0,29.0,34.0,24.0,36.0,20.0,29.0,29.0,24.0,26.0,25.0,28.0,17.0,25.0,18.0,24.0,27.0,22.0,26.0,29.0,22.0,23.0,23.0,25.0,23.0,22.0,21.0,35.0,24.0,26.0,27.0,30.0,37.0,24.0,24.0,16.0,23.0,36.0,38.0,36.0,45.0,37.0,35.0,50.0,56.0,45.0,57.0,81.0,66.0,79.0,50.0,72.0,56.0,52.0,44.0,46.0,50.0,56.0,37.0,46.0,32.0,40.0,41.0,49.0,48.0,52.0,33.0,41.0,26.0,29.0,21.0,16.0,18.0,14.0,20.0,9.0,15.0,7.0,5.0,3.0,5.0,1.0,4.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 C82001,105.0,127.0,108.0,126.0,136.0,136.0,121.0,140.0,153.0,150.0,175.0,181.0,168.0,171.0,172.0,181.0,170.0,175.0,140.0,130.0,108.0,116.0,101.0,117.0,112.0,97.0,86.0,109.0,110.0,90.0,123.0,100.0,136.0,146.0,128.0,135.0,139.0,146.0,142.0,146.0,158.0,157.0,156.0,178.0,173.0,182.0,147.0,149.0,149.0,152.0,167.0,180.0,182.0,207.0,206.0,154.0,190.0,177.0,186.0,188.0,187.0,180.0,182.0,159.0,172.0,134.0,153.0,148.0,131.0,142.0,138.0,126.0,135.0,130.0,117.0,135.0,154.0,149.0,143.0,100.0,102.0,105.0,96.0,63.0,45.0,56.0,47.0,44.0,36.0,36.0,24.0,18.0,15.0,7.0,,25.0 C82002,38.0,50.0,59.0,54.0,50.0,45.0,51.0,57.0,69.0,59.0,66.0,58.0,84.0,69.0,61.0,65.0,73.0,76.0,60.0,53.0,55.0,51.0,57.0,45.0,61.0,60.0,50.0,61.0,55.0,44.0,70.0,51.0,52.0,59.0,72.0,58.0,86.0,68.0,62.0,54.0,61.0,53.0,58.0,57.0,69.0,80.0,59.0,59.0,59.0,54.0,64.0,77.0,79.0,71.0,82.0,74.0,62.0,63.0,90.0,76.0,86.0,77.0,71.0,77.0,85.0,64.0,72.0,63.0,56.0,65.0,63.0,58.0,59.0,70.0,71.0,71.0,52.0,61.0,68.0,38.0,42.0,39.0,41.0,18.0,29.0,18.0,18.0,17.0,17.0,11.0,8.0,11.0,9.0,5.0,2.0,3.0 C82003,34.0,45.0,41.0,54.0,55.0,59.0,59.0,66.0,40.0,65.0,62.0,63.0,92.0,79.0,60.0,65.0,68.0,66.0,73.0,62.0,60.0,67.0,64.0,48.0,73.0,65.0,61.0,72.0,66.0,49.0,68.0,57.0,61.0,66.0,76.0,76.0,76.0,75.0,80.0,55.0,98.0,95.0,67.0,76.0,70.0,71.0,82.0,62.0,71.0,64.0,85.0,55.0,70.0,94.0,82.0,102.0,82.0,80.0,73.0,86.0,77.0,84.0,85.0,78.0,73.0,77.0,71.0,61.0,60.0,47.0,39.0,47.0,47.0,56.0,54.0,54.0,75.0,47.0,48.0,37.0,41.0,27.0,46.0,24.0,26.0,27.0,26.0,19.0,19.0,16.0,17.0,17.0,6.0,7.0,5.0,12.0 C82005,53.0,46.0,61.0,69.0,66.0,70.0,66.0,80.0,83.0,91.0,81.0,71.0,71.0,94.0,82.0,85.0,74.0,68.0,85.0,55.0,71.0,56.0,60.0,81.0,70.0,82.0,80.0,85.0,88.0,84.0,74.0,91.0,93.0,112.0,91.0,92.0,107.0,121.0,96.0,89.0,84.0,84.0,96.0,93.0,82.0,71.0,82.0,87.0,86.0,80.0,60.0,80.0,68.0,82.0,62.0,62.0,55.0,79.0,44.0,56.0,64.0,52.0,55.0,53.0,57.0,49.0,44.0,46.0,29.0,32.0,34.0,30.0,32.0,32.0,28.0,25.0,33.0,32.0,40.0,23.0,22.0,18.0,16.0,13.0,10.0,8.0,11.0,11.0,9.0,9.0,5.0,11.0,3.0,1.0,,2.0 C82007,37.0,42.0,78.0,48.0,49.0,54.0,54.0,58.0,56.0,60.0,53.0,44.0,53.0,46.0,60.0,58.0,47.0,52.0,47.0,47.0,48.0,52.0,41.0,40.0,48.0,52.0,52.0,58.0,69.0,69.0,70.0,61.0,60.0,69.0,87.0,82.0,79.0,69.0,68.0,71.0,69.0,65.0,58.0,68.0,72.0,70.0,60.0,53.0,69.0,63.0,72.0,79.0,75.0,77.0,87.0,89.0,79.0,92.0,87.0,74.0,75.0,80.0,98.0,80.0,77.0,69.0,59.0,59.0,56.0,47.0,51.0,58.0,65.0,59.0,50.0,54.0,63.0,63.0,61.0,36.0,46.0,38.0,30.0,25.0,24.0,27.0,16.0,18.0,7.0,12.0,3.0,9.0,6.0,1.0,3.0,8.0 C82008,36.0,51.0,40.0,46.0,34.0,50.0,43.0,49.0,44.0,58.0,75.0,73.0,66.0,72.0,72.0,67.0,69.0,76.0,71.0,59.0,54.0,46.0,48.0,50.0,46.0,65.0,52.0,58.0,50.0,61.0,52.0,52.0,49.0,53.0,70.0,61.0,51.0,48.0,56.0,62.0,55.0,71.0,72.0,66.0,55.0,55.0,71.0,49.0,48.0,58.0,51.0,44.0,50.0,51.0,56.0,53.0,55.0,64.0,51.0,38.0,38.0,46.0,55.0,38.0,35.0,40.0,46.0,35.0,29.0,34.0,35.0,14.0,33.0,25.0,35.0,27.0,30.0,26.0,31.0,24.0,26.0,16.0,19.0,10.0,11.0,12.0,12.0,6.0,7.0,11.0,5.0,5.0,4.0,3.0,3.0,4.0 C82009,121.0,145.0,132.0,137.0,141.0,161.0,170.0,156.0,148.0,137.0,156.0,159.0,150.0,145.0,163.0,171.0,197.0,212.0,206.0,203.0,208.0,169.0,169.0,133.0,155.0,148.0,162.0,183.0,139.0,160.0,193.0,161.0,174.0,187.0,206.0,208.0,217.0,222.0,187.0,197.0,185.0,141.0,172.0,162.0,198.0,177.0,171.0,176.0,157.0,182.0,189.0,168.0,197.0,211.0,220.0,201.0,195.0,217.0,222.0,194.0,221.0,182.0,173.0,196.0,183.0,171.0,181.0,163.0,156.0,177.0,143.0,130.0,137.0,135.0,137.0,129.0,133.0,130.0,150.0,115.0,104.0,119.0,98.0,71.0,53.0,76.0,58.0,51.0,46.0,38.0,37.0,30.0,19.0,23.0,14.0,14.0 C82010,35.0,58.0,53.0,46.0,55.0,60.0,48.0,86.0,74.0,73.0,86.0,93.0,95.0,96.0,108.0,128.0,114.0,137.0,137.0,81.0,89.0,74.0,64.0,75.0,59.0,67.0,56.0,66.0,73.0,71.0,64.0,66.0,66.0,72.0,86.0,87.0,97.0,72.0,79.0,79.0,85.0,72.0,105.0,88.0,86.0,85.0,90.0,90.0,80.0,89.0,89.0,85.0,94.0,105.0,99.0,97.0,102.0,106.0,104.0,92.0,96.0,125.0,100.0,96.0,82.0,91.0,93.0,88.0,84.0,77.0,74.0,84.0,91.0,84.0,73.0,87.0,89.0,91.0,100.0,60.0,82.0,55.0,63.0,51.0,53.0,37.0,49.0,38.0,34.0,26.0,26.0,22.0,15.0,13.0,9.0,14.0 C82011,59.0,64.0,58.0,62.0,71.0,71.0,79.0,69.0,79.0,75.0,75.0,61.0,68.0,75.0,79.0,74.0,75.0,53.0,87.0,94.0,79.0,74.0,69.0,102.0,77.0,95.0,90.0,83.0,98.0,94.0,85.0,97.0,93.0,129.0,104.0,116.0,113.0,114.0,105.0,120.0,129.0,117.0,106.0,92.0,90.0,107.0,81.0,64.0,90.0,90.0,72.0,82.0,50.0,96.0,82.0,81.0,78.0,62.0,79.0,65.0,51.0,71.0,64.0,82.0,71.0,57.0,66.0,48.0,48.0,50.0,48.0,49.0,55.0,33.0,52.0,49.0,41.0,53.0,32.0,36.0,35.0,32.0,23.0,23.0,18.0,24.0,21.0,17.0,9.0,10.0,12.0,9.0,6.0,2.0,3.0,5.0 C82012,56.0,49.0,51.0,69.0,61.0,90.0,75.0,63.0,73.0,83.0,72.0,59.0,76.0,84.0,66.0,77.0,68.0,81.0,74.0,66.0,67.0,59.0,48.0,65.0,62.0,68.0,60.0,57.0,73.0,69.0,69.0,78.0,79.0,76.0,85.0,76.0,85.0,95.0,77.0,71.0,72.0,50.0,66.0,86.0,80.0,72.0,69.0,65.0,77.0,63.0,67.0,80.0,77.0,93.0,97.0,89.0,87.0,82.0,96.0,93.0,96.0,76.0,71.0,82.0,83.0,77.0,54.0,56.0,57.0,67.0,54.0,65.0,56.0,58.0,65.0,53.0,48.0,55.0,58.0,38.0,38.0,43.0,28.0,26.0,25.0,24.0,21.0,18.0,9.0,10.0,7.0,6.0,6.0,5.0,1.0,4.0 C82013,78.0,65.0,84.0,76.0,79.0,75.0,84.0,82.0,83.0,91.0,79.0,73.0,87.0,86.0,85.0,86.0,69.0,80.0,71.0,85.0,77.0,68.0,62.0,64.0,65.0,58.0,88.0,73.0,85.0,77.0,75.0,92.0,87.0,88.0,87.0,92.0,83.0,81.0,88.0,84.0,86.0,65.0,89.0,76.0,84.0,85.0,84.0,71.0,81.0,67.0,74.0,67.0,89.0,92.0,97.0,62.0,97.0,73.0,81.0,77.0,72.0,71.0,79.0,71.0,84.0,60.0,66.0,79.0,60.0,72.0,53.0,69.0,60.0,52.0,47.0,62.0,69.0,72.0,55.0,41.0,67.0,45.0,46.0,28.0,28.0,32.0,21.0,18.0,22.0,21.0,19.0,11.0,12.0,7.0,11.0,7.0 C82014,72.0,87.0,79.0,92.0,106.0,88.0,89.0,104.0,104.0,114.0,103.0,96.0,117.0,122.0,119.0,128.0,110.0,113.0,125.0,82.0,88.0,94.0,86.0,76.0,89.0,95.0,107.0,102.0,84.0,78.0,88.0,110.0,115.0,84.0,117.0,110.0,105.0,103.0,90.0,121.0,123.0,129.0,127.0,123.0,115.0,106.0,119.0,94.0,106.0,103.0,95.0,117.0,145.0,123.0,137.0,113.0,121.0,126.0,137.0,112.0,128.0,132.0,133.0,111.0,109.0,94.0,113.0,98.0,107.0,74.0,99.0,107.0,86.0,85.0,101.0,84.0,98.0,101.0,112.0,71.0,84.0,52.0,64.0,46.0,33.0,33.0,22.0,25.0,24.0,16.0,15.0,10.0,7.0,4.0,4.0,13.0 C82016,31.0,30.0,48.0,45.0,44.0,49.0,51.0,61.0,61.0,65.0,56.0,53.0,71.0,58.0,70.0,72.0,70.0,74.0,51.0,53.0,44.0,63.0,49.0,39.0,53.0,45.0,53.0,47.0,50.0,40.0,42.0,60.0,49.0,36.0,39.0,52.0,67.0,54.0,50.0,53.0,55.0,56.0,54.0,55.0,76.0,52.0,62.0,56.0,53.0,50.0,66.0,61.0,79.0,92.0,82.0,97.0,121.0,95.0,82.0,100.0,124.0,98.0,114.0,74.0,96.0,91.0,88.0,70.0,76.0,61.0,84.0,57.0,63.0,72.0,76.0,60.0,65.0,72.0,57.0,36.0,50.0,48.0,34.0,25.0,33.0,23.0,16.0,21.0,18.0,10.0,11.0,8.0,9.0,4.0,3.0,6.0 C82017,56.0,66.0,73.0,59.0,85.0,73.0,99.0,83.0,102.0,86.0,85.0,89.0,92.0,91.0,104.0,91.0,90.0,73.0,82.0,88.0,84.0,79.0,84.0,76.0,71.0,78.0,91.0,87.0,80.0,84.0,83.0,93.0,76.0,110.0,104.0,105.0,96.0,80.0,123.0,90.0,108.0,76.0,99.0,95.0,72.0,87.0,90.0,99.0,91.0,93.0,96.0,99.0,106.0,123.0,138.0,117.0,124.0,141.0,147.0,132.0,135.0,121.0,110.0,111.0,111.0,122.0,107.0,107.0,90.0,73.0,77.0,97.0,83.0,86.0,66.0,77.0,87.0,86.0,99.0,76.0,65.0,51.0,50.0,50.0,32.0,38.0,27.0,21.0,18.0,10.0,16.0,10.0,10.0,2.0,4.0,7.0 C82018,74.0,65.0,68.0,59.0,75.0,64.0,77.0,77.0,96.0,87.0,87.0,89.0,94.0,107.0,102.0,108.0,96.0,95.0,68.0,97.0,75.0,111.0,88.0,83.0,92.0,88.0,88.0,92.0,98.0,78.0,104.0,96.0,109.0,94.0,103.0,115.0,107.0,113.0,112.0,104.0,125.0,110.0,122.0,104.0,115.0,111.0,103.0,94.0,110.0,89.0,85.0,84.0,109.0,105.0,108.0,85.0,95.0,79.0,96.0,88.0,65.0,77.0,76.0,80.0,85.0,75.0,94.0,68.0,91.0,71.0,79.0,71.0,72.0,56.0,59.0,49.0,33.0,35.0,47.0,38.0,22.0,21.0,26.0,18.0,12.0,16.0,11.0,18.0,9.0,8.0,14.0,6.0,5.0,2.0,3.0,6.0 C82019,31.0,30.0,36.0,23.0,46.0,45.0,48.0,41.0,51.0,59.0,53.0,41.0,41.0,46.0,45.0,37.0,51.0,46.0,43.0,34.0,41.0,35.0,27.0,33.0,49.0,35.0,39.0,25.0,39.0,45.0,38.0,42.0,42.0,42.0,44.0,41.0,47.0,37.0,65.0,49.0,38.0,37.0,42.0,42.0,46.0,36.0,40.0,39.0,36.0,35.0,29.0,22.0,25.0,41.0,36.0,33.0,29.0,39.0,42.0,29.0,28.0,36.0,38.0,27.0,33.0,26.0,29.0,40.0,33.0,19.0,25.0,33.0,25.0,18.0,22.0,24.0,25.0,21.0,14.0,18.0,12.0,8.0,7.0,4.0,5.0,8.0,6.0,10.0,7.0,2.0,1.0,1.0,3.0,3.0,1.0,2.0 C82020,53.0,52.0,48.0,44.0,42.0,51.0,34.0,34.0,36.0,41.0,40.0,33.0,45.0,36.0,33.0,25.0,33.0,33.0,88.0,206.0,364.0,439.0,525.0,646.0,759.0,785.0,739.0,879.0,884.0,732.0,625.0,502.0,369.0,278.0,238.0,208.0,199.0,214.0,218.0,198.0,179.0,190.0,187.0,95.0,81.0,96.0,78.0,66.0,68.0,59.0,42.0,38.0,37.0,40.0,37.0,44.0,27.0,34.0,25.0,32.0,35.0,27.0,26.0,20.0,22.0,18.0,14.0,22.0,14.0,13.0,6.0,3.0,11.0,4.0,9.0,9.0,11.0,3.0,6.0,1.0,2.0,2.0,4.0,2.0,1.0,2.0,1.0,1.0,1.0,,2.0,,,,, C82021,25.0,32.0,25.0,25.0,36.0,29.0,45.0,49.0,51.0,58.0,58.0,57.0,47.0,53.0,56.0,55.0,67.0,53.0,41.0,48.0,56.0,37.0,30.0,30.0,48.0,43.0,52.0,43.0,44.0,30.0,47.0,44.0,51.0,38.0,47.0,47.0,49.0,34.0,68.0,58.0,54.0,38.0,64.0,58.0,59.0,47.0,40.0,37.0,48.0,52.0,39.0,47.0,52.0,49.0,58.0,49.0,49.0,48.0,50.0,39.0,50.0,55.0,53.0,54.0,65.0,49.0,45.0,36.0,42.0,40.0,23.0,35.0,33.0,30.0,20.0,25.0,33.0,42.0,24.0,22.0,27.0,27.0,23.0,18.0,24.0,10.0,19.0,15.0,6.0,11.0,8.0,8.0,7.0,2.0,3.0,9.0 C82022,24.0,33.0,30.0,33.0,32.0,24.0,44.0,53.0,28.0,43.0,40.0,42.0,26.0,50.0,37.0,44.0,43.0,42.0,38.0,33.0,33.0,32.0,27.0,35.0,47.0,26.0,37.0,39.0,35.0,28.0,29.0,34.0,29.0,29.0,26.0,38.0,39.0,35.0,33.0,48.0,36.0,37.0,44.0,36.0,48.0,53.0,38.0,34.0,44.0,38.0,40.0,28.0,46.0,51.0,60.0,53.0,55.0,51.0,59.0,65.0,48.0,58.0,60.0,48.0,73.0,68.0,50.0,49.0,41.0,57.0,57.0,44.0,48.0,41.0,43.0,43.0,44.0,53.0,48.0,33.0,45.0,33.0,33.0,26.0,30.0,23.0,17.0,21.0,17.0,14.0,8.0,9.0,6.0,5.0,3.0,5.0 C82024,94.0,89.0,88.0,86.0,82.0,109.0,86.0,106.0,95.0,119.0,121.0,110.0,108.0,124.0,109.0,119.0,110.0,135.0,117.0,134.0,144.0,157.0,189.0,182.0,186.0,178.0,195.0,178.0,188.0,174.0,178.0,171.0,166.0,161.0,170.0,161.0,159.0,154.0,186.0,185.0,180.0,168.0,183.0,162.0,171.0,181.0,151.0,144.0,141.0,151.0,142.0,126.0,141.0,122.0,128.0,138.0,143.0,116.0,110.0,94.0,113.0,135.0,115.0,113.0,129.0,108.0,122.0,109.0,117.0,125.0,111.0,104.0,72.0,97.0,89.0,62.0,59.0,43.0,35.0,40.0,26.0,27.0,16.0,18.0,29.0,18.0,22.0,15.0,11.0,10.0,6.0,2.0,8.0,6.0,2.0,11.0 C82025,31.0,42.0,33.0,54.0,60.0,51.0,44.0,50.0,60.0,58.0,51.0,71.0,60.0,51.0,57.0,69.0,61.0,60.0,59.0,57.0,60.0,76.0,59.0,45.0,62.0,59.0,55.0,64.0,56.0,57.0,65.0,44.0,59.0,44.0,60.0,68.0,76.0,57.0,61.0,54.0,58.0,58.0,55.0,61.0,65.0,70.0,65.0,45.0,67.0,58.0,70.0,62.0,84.0,81.0,81.0,64.0,88.0,92.0,89.0,79.0,98.0,86.0,88.0,74.0,71.0,81.0,70.0,80.0,59.0,62.0,54.0,49.0,49.0,51.0,61.0,65.0,48.0,81.0,73.0,53.0,53.0,50.0,37.0,43.0,33.0,33.0,36.0,17.0,16.0,15.0,11.0,6.0,13.0,9.0,4.0,5.0 C82026,25.0,31.0,31.0,36.0,35.0,37.0,42.0,46.0,51.0,47.0,40.0,46.0,39.0,36.0,50.0,50.0,56.0,62.0,66.0,55.0,58.0,55.0,56.0,61.0,66.0,51.0,71.0,63.0,56.0,61.0,72.0,57.0,67.0,58.0,58.0,50.0,61.0,71.0,59.0,65.0,57.0,50.0,57.0,50.0,59.0,44.0,64.0,49.0,48.0,56.0,48.0,48.0,54.0,67.0,58.0,53.0,63.0,51.0,67.0,51.0,54.0,64.0,59.0,50.0,54.0,44.0,60.0,49.0,45.0,47.0,37.0,38.0,41.0,38.0,44.0,36.0,26.0,38.0,31.0,23.0,29.0,23.0,21.0,15.0,18.0,17.0,18.0,9.0,19.0,4.0,6.0,3.0,6.0,2.0,7.0,2.0 C82027,27.0,44.0,34.0,46.0,34.0,32.0,54.0,67.0,47.0,43.0,47.0,54.0,50.0,52.0,48.0,46.0,30.0,49.0,34.0,29.0,43.0,33.0,25.0,26.0,25.0,30.0,33.0,31.0,36.0,37.0,38.0,37.0,50.0,51.0,50.0,42.0,38.0,59.0,58.0,50.0,69.0,49.0,62.0,37.0,49.0,54.0,40.0,35.0,37.0,45.0,38.0,42.0,54.0,59.0,54.0,41.0,56.0,54.0,59.0,50.0,38.0,50.0,53.0,52.0,35.0,40.0,45.0,48.0,42.0,38.0,38.0,38.0,29.0,26.0,51.0,42.0,39.0,44.0,39.0,34.0,40.0,38.0,26.0,21.0,19.0,11.0,14.0,16.0,14.0,9.0,7.0,4.0,3.0,3.0,3.0,3.0 C82028,21.0,35.0,33.0,36.0,36.0,32.0,34.0,23.0,43.0,28.0,38.0,25.0,43.0,39.0,42.0,30.0,40.0,44.0,29.0,39.0,32.0,23.0,28.0,34.0,37.0,30.0,35.0,41.0,49.0,23.0,41.0,43.0,39.0,38.0,54.0,46.0,32.0,43.0,46.0,36.0,32.0,37.0,37.0,44.0,34.0,37.0,34.0,27.0,23.0,36.0,31.0,46.0,37.0,55.0,56.0,44.0,56.0,62.0,47.0,60.0,66.0,48.0,50.0,54.0,46.0,45.0,37.0,45.0,46.0,50.0,41.0,56.0,48.0,50.0,62.0,53.0,44.0,56.0,52.0,34.0,40.0,38.0,26.0,33.0,22.0,15.0,19.0,13.0,14.0,10.0,12.0,6.0,4.0,4.0,,10.0 C82030,22.0,31.0,28.0,30.0,21.0,37.0,33.0,38.0,36.0,30.0,45.0,33.0,36.0,40.0,63.0,37.0,45.0,43.0,40.0,34.0,43.0,39.0,40.0,42.0,44.0,39.0,31.0,45.0,59.0,39.0,33.0,32.0,46.0,26.0,53.0,34.0,32.0,29.0,48.0,50.0,45.0,42.0,41.0,47.0,39.0,34.0,49.0,29.0,38.0,24.0,33.0,29.0,41.0,34.0,32.0,38.0,44.0,24.0,39.0,54.0,42.0,48.0,41.0,44.0,52.0,49.0,37.0,48.0,44.0,43.0,45.0,36.0,37.0,41.0,39.0,37.0,38.0,41.0,30.0,26.0,28.0,30.0,22.0,19.0,18.0,12.0,11.0,16.0,12.0,12.0,13.0,5.0,11.0,9.0,8.0,10.0 C82031,83.0,77.0,82.0,95.0,106.0,130.0,115.0,125.0,123.0,130.0,130.0,122.0,129.0,125.0,136.0,122.0,137.0,113.0,118.0,117.0,91.0,98.0,90.0,85.0,101.0,84.0,81.0,93.0,96.0,79.0,100.0,98.0,80.0,112.0,96.0,109.0,119.0,124.0,116.0,127.0,122.0,132.0,143.0,148.0,126.0,134.0,108.0,115.0,96.0,125.0,88.0,86.0,77.0,93.0,85.0,82.0,73.0,84.0,76.0,69.0,71.0,73.0,70.0,57.0,63.0,59.0,45.0,54.0,44.0,32.0,42.0,47.0,44.0,34.0,44.0,34.0,35.0,29.0,17.0,26.0,17.0,20.0,12.0,12.0,12.0,9.0,11.0,7.0,5.0,7.0,6.0,3.0,3.0,1.0,1.0,1.0 C82032,26.0,34.0,41.0,45.0,40.0,43.0,40.0,38.0,46.0,44.0,39.0,56.0,47.0,41.0,55.0,47.0,50.0,39.0,51.0,49.0,38.0,30.0,33.0,25.0,29.0,37.0,40.0,28.0,33.0,40.0,43.0,39.0,38.0,41.0,44.0,39.0,33.0,53.0,37.0,40.0,39.0,54.0,49.0,53.0,44.0,48.0,50.0,30.0,28.0,44.0,43.0,50.0,61.0,35.0,61.0,69.0,63.0,58.0,42.0,50.0,48.0,43.0,52.0,33.0,52.0,52.0,46.0,31.0,40.0,39.0,38.0,41.0,23.0,36.0,38.0,35.0,46.0,51.0,36.0,31.0,32.0,24.0,19.0,23.0,16.0,24.0,12.0,7.0,12.0,11.0,5.0,7.0,2.0,2.0,1.0,2.0 C82033,55.0,68.0,54.0,70.0,87.0,99.0,76.0,98.0,96.0,73.0,100.0,84.0,76.0,87.0,92.0,80.0,100.0,96.0,94.0,97.0,99.0,70.0,105.0,91.0,88.0,100.0,81.0,95.0,100.0,90.0,74.0,78.0,78.0,80.0,85.0,77.0,85.0,78.0,72.0,86.0,86.0,87.0,89.0,81.0,93.0,79.0,81.0,86.0,69.0,55.0,77.0,58.0,46.0,68.0,60.0,72.0,61.0,67.0,62.0,65.0,60.0,58.0,50.0,63.0,48.0,51.0,64.0,32.0,37.0,43.0,33.0,39.0,29.0,39.0,38.0,33.0,26.0,34.0,27.0,14.0,15.0,18.0,22.0,10.0,11.0,10.0,12.0,11.0,8.0,6.0,6.0,1.0,3.0,2.0,2.0,1.0 C82034,37.0,38.0,35.0,48.0,60.0,37.0,57.0,65.0,53.0,46.0,55.0,52.0,66.0,67.0,64.0,53.0,54.0,73.0,44.0,62.0,61.0,44.0,49.0,53.0,48.0,47.0,49.0,56.0,41.0,53.0,52.0,51.0,64.0,51.0,56.0,53.0,44.0,65.0,45.0,62.0,56.0,57.0,67.0,55.0,61.0,58.0,51.0,52.0,54.0,64.0,75.0,75.0,76.0,85.0,69.0,83.0,69.0,76.0,56.0,60.0,73.0,69.0,68.0,75.0,52.0,47.0,52.0,57.0,42.0,59.0,53.0,50.0,46.0,40.0,43.0,54.0,44.0,48.0,57.0,38.0,38.0,40.0,30.0,27.0,19.0,29.0,17.0,15.0,16.0,18.0,8.0,12.0,8.0,4.0,4.0,12.0 C82035,31.0,26.0,43.0,32.0,30.0,30.0,42.0,36.0,35.0,46.0,39.0,38.0,55.0,38.0,49.0,43.0,58.0,53.0,65.0,41.0,67.0,56.0,54.0,72.0,82.0,64.0,73.0,67.0,61.0,54.0,63.0,50.0,60.0,81.0,75.0,60.0,58.0,67.0,62.0,56.0,76.0,70.0,61.0,64.0,53.0,59.0,51.0,61.0,60.0,55.0,62.0,50.0,50.0,50.0,63.0,55.0,46.0,72.0,59.0,45.0,60.0,40.0,39.0,42.0,53.0,35.0,46.0,27.0,32.0,47.0,41.0,42.0,36.0,42.0,29.0,27.0,30.0,35.0,29.0,31.0,34.0,22.0,27.0,11.0,11.0,13.0,8.0,8.0,9.0,11.0,1.0,4.0,5.0,2.0,1.0,6.0 C82037,47.0,58.0,54.0,54.0,47.0,46.0,57.0,54.0,54.0,58.0,51.0,62.0,44.0,56.0,56.0,48.0,48.0,55.0,51.0,65.0,47.0,82.0,83.0,108.0,83.0,113.0,80.0,95.0,97.0,87.0,96.0,100.0,102.0,84.0,101.0,105.0,80.0,100.0,105.0,89.0,87.0,88.0,77.0,76.0,88.0,78.0,81.0,57.0,68.0,63.0,46.0,43.0,55.0,58.0,65.0,77.0,60.0,38.0,49.0,43.0,56.0,49.0,51.0,72.0,66.0,66.0,63.0,79.0,77.0,65.0,66.0,56.0,56.0,48.0,56.0,48.0,40.0,39.0,27.0,20.0,29.0,25.0,23.0,21.0,8.0,13.0,11.0,12.0,7.0,9.0,6.0,9.0,2.0,4.0,1.0,6.0 C82038,143.0,158.0,173.0,185.0,173.0,194.0,211.0,213.0,192.0,208.0,225.0,226.0,211.0,233.0,224.0,218.0,210.0,219.0,196.0,184.0,164.0,164.0,154.0,142.0,178.0,166.0,196.0,208.0,189.0,221.0,215.0,222.0,248.0,229.0,261.0,262.0,241.0,263.0,243.0,245.0,216.0,218.0,235.0,239.0,260.0,255.0,215.0,205.0,205.0,191.0,229.0,209.0,207.0,267.0,274.0,254.0,266.0,280.0,268.0,267.0,324.0,279.0,282.0,248.0,229.0,213.0,200.0,220.0,208.0,215.0,184.0,196.0,208.0,181.0,170.0,205.0,202.0,215.0,192.0,148.0,153.0,130.0,118.0,81.0,79.0,86.0,80.0,54.0,41.0,39.0,29.0,23.0,23.0,19.0,15.0,24.0 C82039,53.0,53.0,75.0,60.0,57.0,76.0,75.0,68.0,65.0,66.0,78.0,88.0,72.0,83.0,95.0,63.0,85.0,73.0,78.0,64.0,76.0,46.0,59.0,60.0,69.0,76.0,70.0,74.0,81.0,69.0,79.0,71.0,81.0,73.0,93.0,84.0,80.0,82.0,92.0,83.0,86.0,82.0,89.0,80.0,78.0,74.0,70.0,78.0,76.0,65.0,75.0,55.0,77.0,66.0,80.0,80.0,53.0,60.0,61.0,69.0,58.0,61.0,53.0,72.0,68.0,56.0,39.0,55.0,60.0,45.0,50.0,42.0,49.0,35.0,33.0,29.0,32.0,41.0,31.0,24.0,32.0,21.0,23.0,17.0,13.0,18.0,15.0,12.0,15.0,12.0,7.0,2.0,4.0,2.0,5.0,5.0 C82041,32.0,54.0,46.0,58.0,69.0,51.0,62.0,79.0,83.0,83.0,77.0,80.0,72.0,95.0,82.0,91.0,93.0,120.0,112.0,115.0,81.0,91.0,109.0,87.0,97.0,72.0,105.0,87.0,81.0,76.0,76.0,85.0,79.0,94.0,84.0,104.0,90.0,109.0,103.0,79.0,113.0,119.0,88.0,118.0,106.0,69.0,99.0,101.0,109.0,82.0,70.0,91.0,71.0,70.0,70.0,77.0,80.0,84.0,90.0,95.0,77.0,72.0,73.0,74.0,76.0,72.0,64.0,64.0,65.0,61.0,55.0,55.0,56.0,60.0,72.0,45.0,47.0,55.0,53.0,40.0,34.0,44.0,22.0,20.0,22.0,21.0,13.0,20.0,14.0,11.0,11.0,7.0,4.0,6.0,4.0,6.0 C82042,41.0,53.0,54.0,66.0,64.0,59.0,63.0,67.0,83.0,67.0,67.0,71.0,59.0,87.0,89.0,90.0,82.0,89.0,78.0,71.0,66.0,65.0,64.0,78.0,66.0,71.0,57.0,73.0,61.0,47.0,62.0,51.0,75.0,66.0,84.0,76.0,90.0,78.0,74.0,76.0,83.0,65.0,80.0,79.0,83.0,70.0,90.0,74.0,59.0,66.0,91.0,80.0,81.0,79.0,104.0,103.0,119.0,73.0,91.0,83.0,88.0,99.0,95.0,61.0,80.0,78.0,90.0,71.0,73.0,73.0,69.0,68.0,74.0,57.0,75.0,78.0,71.0,85.0,80.0,56.0,49.0,48.0,42.0,39.0,27.0,28.0,30.0,26.0,17.0,22.0,12.0,10.0,7.0,5.0,1.0,9.0 C82043,55.0,36.0,46.0,36.0,47.0,57.0,63.0,57.0,67.0,64.0,68.0,66.0,61.0,75.0,64.0,48.0,67.0,69.0,70.0,50.0,79.0,57.0,56.0,60.0,49.0,41.0,59.0,59.0,47.0,72.0,83.0,56.0,73.0,72.0,65.0,92.0,78.0,84.0,69.0,72.0,64.0,71.0,74.0,67.0,87.0,72.0,73.0,63.0,87.0,79.0,69.0,67.0,68.0,78.0,101.0,88.0,81.0,88.0,79.0,89.0,83.0,88.0,81.0,70.0,87.0,69.0,75.0,66.0,42.0,56.0,49.0,53.0,51.0,39.0,64.0,47.0,57.0,81.0,62.0,43.0,56.0,46.0,45.0,25.0,32.0,30.0,28.0,23.0,16.0,13.0,18.0,4.0,11.0,7.0,6.0,11.0 C82044,39.0,38.0,44.0,40.0,41.0,55.0,53.0,48.0,55.0,52.0,61.0,51.0,66.0,55.0,59.0,66.0,58.0,58.0,40.0,48.0,31.0,29.0,37.0,40.0,32.0,38.0,29.0,27.0,34.0,39.0,36.0,33.0,39.0,24.0,37.0,30.0,41.0,60.0,41.0,45.0,48.0,47.0,38.0,54.0,48.0,58.0,54.0,55.0,47.0,56.0,53.0,49.0,54.0,62.0,69.0,65.0,63.0,56.0,62.0,74.0,66.0,90.0,75.0,69.0,71.0,62.0,76.0,57.0,55.0,65.0,48.0,58.0,60.0,52.0,51.0,58.0,60.0,58.0,64.0,53.0,35.0,49.0,44.0,39.0,28.0,23.0,26.0,21.0,22.0,8.0,5.0,9.0,4.0,5.0,4.0,5.0 C82045,33.0,56.0,53.0,61.0,66.0,56.0,49.0,43.0,57.0,50.0,56.0,45.0,63.0,52.0,56.0,50.0,40.0,43.0,44.0,38.0,43.0,48.0,31.0,49.0,31.0,32.0,48.0,47.0,61.0,45.0,57.0,66.0,73.0,77.0,65.0,83.0,60.0,71.0,57.0,58.0,57.0,56.0,50.0,52.0,48.0,60.0,47.0,33.0,45.0,50.0,56.0,53.0,48.0,49.0,65.0,54.0,48.0,56.0,48.0,59.0,41.0,36.0,54.0,52.0,55.0,36.0,41.0,44.0,33.0,39.0,25.0,35.0,34.0,21.0,19.0,27.0,36.0,28.0,35.0,22.0,17.0,20.0,19.0,9.0,11.0,5.0,8.0,10.0,4.0,7.0,5.0,6.0,2.0,,3.0,5.0 C82046,76.0,81.0,101.0,97.0,93.0,99.0,108.0,126.0,110.0,101.0,130.0,144.0,145.0,138.0,136.0,138.0,136.0,157.0,144.0,148.0,107.0,110.0,95.0,114.0,106.0,99.0,111.0,107.0,111.0,133.0,117.0,128.0,132.0,134.0,132.0,116.0,117.0,121.0,122.0,132.0,126.0,119.0,122.0,126.0,140.0,150.0,125.0,106.0,109.0,116.0,127.0,90.0,100.0,114.0,95.0,88.0,122.0,115.0,101.0,91.0,103.0,95.0,113.0,81.0,81.0,86.0,73.0,77.0,66.0,72.0,56.0,67.0,30.0,57.0,51.0,55.0,44.0,39.0,52.0,29.0,40.0,33.0,30.0,18.0,18.0,19.0,13.0,18.0,14.0,8.0,8.0,7.0,4.0,5.0,1.0,8.0 C82047,39.0,44.0,63.0,57.0,44.0,68.0,36.0,57.0,61.0,69.0,49.0,65.0,65.0,76.0,66.0,57.0,69.0,52.0,58.0,58.0,59.0,54.0,48.0,39.0,78.0,65.0,91.0,55.0,84.0,71.0,65.0,61.0,70.0,73.0,71.0,70.0,79.0,74.0,78.0,77.0,88.0,83.0,68.0,80.0,78.0,69.0,65.0,66.0,55.0,53.0,73.0,67.0,81.0,80.0,73.0,91.0,79.0,85.0,100.0,74.0,85.0,68.0,68.0,69.0,85.0,80.0,61.0,63.0,49.0,63.0,47.0,53.0,47.0,57.0,60.0,44.0,47.0,60.0,44.0,30.0,31.0,33.0,25.0,16.0,26.0,12.0,17.0,10.0,7.0,9.0,10.0,8.0,3.0,6.0,1.0,6.0 C82048,15.0,19.0,22.0,20.0,21.0,16.0,32.0,33.0,32.0,36.0,36.0,19.0,37.0,42.0,30.0,26.0,33.0,37.0,35.0,35.0,24.0,29.0,20.0,14.0,20.0,24.0,23.0,20.0,26.0,30.0,38.0,24.0,32.0,29.0,28.0,34.0,31.0,34.0,39.0,30.0,39.0,36.0,30.0,38.0,28.0,33.0,27.0,38.0,33.0,33.0,24.0,38.0,20.0,27.0,31.0,28.0,35.0,21.0,36.0,30.0,31.0,20.0,24.0,24.0,26.0,43.0,26.0,39.0,29.0,25.0,29.0,18.0,31.0,30.0,20.0,26.0,29.0,23.0,24.0,25.0,16.0,28.0,18.0,11.0,11.0,11.0,11.0,12.0,11.0,9.0,12.0,2.0,5.0,2.0,3.0,1.0 C82050,56.0,63.0,69.0,70.0,69.0,65.0,76.0,82.0,79.0,74.0,97.0,75.0,90.0,84.0,86.0,68.0,90.0,80.0,85.0,79.0,76.0,82.0,63.0,81.0,52.0,76.0,67.0,79.0,91.0,90.0,74.0,90.0,85.0,91.0,112.0,90.0,86.0,93.0,102.0,83.0,93.0,99.0,91.0,97.0,81.0,106.0,90.0,82.0,97.0,81.0,95.0,109.0,120.0,108.0,92.0,98.0,139.0,110.0,108.0,112.0,116.0,110.0,84.0,87.0,86.0,74.0,88.0,66.0,60.0,81.0,66.0,70.0,55.0,61.0,59.0,73.0,67.0,72.0,73.0,52.0,65.0,53.0,35.0,37.0,23.0,34.0,28.0,18.0,19.0,18.0,11.0,6.0,6.0,4.0,5.0,10.0 C82051,38.0,50.0,44.0,53.0,45.0,73.0,66.0,69.0,62.0,64.0,68.0,81.0,90.0,74.0,73.0,63.0,76.0,61.0,66.0,54.0,54.0,54.0,50.0,50.0,47.0,48.0,52.0,52.0,52.0,62.0,61.0,57.0,50.0,65.0,62.0,76.0,67.0,61.0,60.0,92.0,65.0,63.0,74.0,65.0,59.0,78.0,54.0,66.0,51.0,61.0,78.0,67.0,67.0,99.0,98.0,69.0,99.0,84.0,106.0,95.0,86.0,91.0,76.0,81.0,82.0,79.0,70.0,78.0,65.0,79.0,73.0,76.0,85.0,77.0,91.0,74.0,82.0,79.0,67.0,70.0,67.0,60.0,47.0,27.0,32.0,28.0,19.0,21.0,11.0,18.0,8.0,7.0,9.0,4.0,5.0,5.0 C82052,8.0,13.0,17.0,10.0,12.0,15.0,30.0,16.0,18.0,19.0,16.0,19.0,17.0,19.0,22.0,21.0,19.0,25.0,19.0,29.0,21.0,21.0,20.0,18.0,17.0,15.0,15.0,24.0,12.0,19.0,22.0,21.0,19.0,23.0,28.0,28.0,21.0,28.0,18.0,23.0,29.0,20.0,11.0,27.0,27.0,23.0,21.0,27.0,24.0,21.0,18.0,24.0,27.0,35.0,33.0,25.0,38.0,34.0,33.0,35.0,33.0,20.0,24.0,32.0,30.0,31.0,34.0,18.0,26.0,32.0,24.0,29.0,19.0,28.0,23.0,27.0,24.0,36.0,23.0,25.0,28.0,16.0,8.0,16.0,11.0,7.0,4.0,8.0,3.0,3.0,6.0,1.0,3.0,3.0,2.0,3.0 C82053,42.0,53.0,62.0,67.0,57.0,79.0,70.0,73.0,89.0,76.0,97.0,89.0,83.0,103.0,107.0,114.0,118.0,108.0,87.0,101.0,84.0,78.0,88.0,69.0,67.0,87.0,80.0,58.0,65.0,65.0,57.0,73.0,64.0,55.0,71.0,80.0,68.0,71.0,64.0,64.0,97.0,72.0,79.0,83.0,91.0,75.0,56.0,67.0,57.0,67.0,52.0,65.0,67.0,79.0,60.0,73.0,69.0,61.0,53.0,85.0,66.0,78.0,37.0,51.0,56.0,81.0,57.0,55.0,51.0,43.0,43.0,32.0,35.0,38.0,24.0,27.0,28.0,30.0,34.0,21.0,18.0,13.0,18.0,9.0,12.0,14.0,8.0,12.0,8.0,4.0,3.0,5.0,2.0,1.0,1.0,2.0 C82054,56.0,56.0,64.0,71.0,54.0,49.0,62.0,66.0,74.0,66.0,63.0,70.0,75.0,66.0,73.0,55.0,52.0,55.0,69.0,58.0,51.0,45.0,40.0,47.0,53.0,50.0,52.0,56.0,51.0,59.0,66.0,66.0,84.0,62.0,83.0,84.0,75.0,72.0,73.0,84.0,95.0,55.0,80.0,85.0,83.0,86.0,80.0,78.0,81.0,82.0,77.0,83.0,74.0,91.0,85.0,78.0,81.0,75.0,94.0,73.0,99.0,69.0,89.0,93.0,75.0,69.0,62.0,73.0,59.0,61.0,70.0,70.0,68.0,53.0,84.0,65.0,81.0,79.0,68.0,53.0,68.0,52.0,30.0,24.0,31.0,25.0,21.0,23.0,22.0,14.0,10.0,7.0,9.0,7.0,4.0,10.0 C82055,66.0,52.0,57.0,67.0,60.0,75.0,79.0,78.0,87.0,83.0,64.0,93.0,88.0,91.0,76.0,81.0,70.0,82.0,80.0,85.0,67.0,84.0,74.0,92.0,62.0,70.0,82.0,81.0,73.0,68.0,85.0,86.0,86.0,90.0,90.0,84.0,69.0,91.0,83.0,86.0,89.0,82.0,86.0,92.0,91.0,90.0,73.0,96.0,85.0,79.0,98.0,75.0,99.0,108.0,94.0,107.0,106.0,109.0,116.0,113.0,119.0,108.0,125.0,114.0,91.0,97.0,96.0,76.0,85.0,79.0,50.0,81.0,76.0,64.0,77.0,68.0,69.0,80.0,81.0,45.0,71.0,55.0,50.0,37.0,26.0,31.0,33.0,13.0,21.0,17.0,12.0,11.0,7.0,9.0,5.0,9.0 C82056,63.0,71.0,54.0,68.0,55.0,72.0,82.0,89.0,77.0,93.0,75.0,82.0,75.0,103.0,95.0,99.0,84.0,92.0,78.0,65.0,63.0,56.0,78.0,66.0,68.0,61.0,78.0,55.0,71.0,81.0,70.0,81.0,68.0,96.0,81.0,76.0,87.0,83.0,75.0,82.0,84.0,91.0,75.0,91.0,98.0,83.0,74.0,87.0,85.0,92.0,81.0,76.0,96.0,99.0,111.0,96.0,100.0,123.0,100.0,89.0,99.0,93.0,84.0,89.0,98.0,96.0,83.0,78.0,82.0,85.0,81.0,70.0,77.0,73.0,65.0,73.0,84.0,77.0,71.0,51.0,60.0,47.0,49.0,40.0,39.0,36.0,33.0,32.0,20.0,33.0,11.0,11.0,14.0,3.0,9.0,9.0 C82059,4.0,15.0,11.0,7.0,10.0,14.0,19.0,13.0,13.0,17.0,8.0,17.0,12.0,13.0,7.0,10.0,14.0,10.0,15.0,11.0,6.0,9.0,13.0,9.0,17.0,17.0,29.0,17.0,28.0,26.0,19.0,25.0,27.0,26.0,34.0,27.0,28.0,23.0,30.0,22.0,30.0,23.0,17.0,23.0,20.0,11.0,11.0,13.0,12.0,17.0,13.0,9.0,10.0,12.0,13.0,7.0,6.0,10.0,10.0,11.0,11.0,7.0,5.0,6.0,7.0,6.0,1.0,7.0,6.0,1.0,3.0,4.0,4.0,1.0,9.0,3.0,4.0,5.0,2.0,2.0,7.0,5.0,2.0,1.0,1.0,3.0,3.0,1.0,1.0,,3.0,1.0,2.0,,,2.0 C82060,26.0,33.0,26.0,29.0,28.0,35.0,23.0,32.0,42.0,34.0,34.0,28.0,35.0,33.0,32.0,46.0,33.0,42.0,50.0,37.0,39.0,33.0,52.0,39.0,43.0,48.0,32.0,37.0,37.0,34.0,33.0,35.0,33.0,31.0,23.0,31.0,34.0,31.0,28.0,21.0,22.0,31.0,28.0,32.0,31.0,37.0,34.0,36.0,40.0,32.0,26.0,42.0,32.0,22.0,26.0,18.0,27.0,22.0,26.0,14.0,19.0,15.0,22.0,10.0,24.0,21.0,10.0,4.0,6.0,3.0,13.0,13.0,17.0,12.0,10.0,7.0,3.0,7.0,7.0,2.0,4.0,2.0,3.0,1.0,4.0,3.0,4.0,1.0,2.0,1.0,1.0,,3.0,,2.0,2.0 C82061,62.0,100.0,85.0,102.0,92.0,78.0,90.0,88.0,110.0,105.0,102.0,89.0,116.0,89.0,87.0,115.0,86.0,87.0,91.0,56.0,77.0,77.0,73.0,57.0,84.0,91.0,82.0,87.0,84.0,99.0,100.0,120.0,127.0,127.0,139.0,144.0,129.0,93.0,125.0,123.0,133.0,123.0,120.0,105.0,135.0,114.0,105.0,73.0,98.0,94.0,85.0,88.0,90.0,110.0,100.0,99.0,117.0,101.0,112.0,109.0,92.0,97.0,71.0,83.0,77.0,92.0,76.0,67.0,62.0,53.0,60.0,66.0,53.0,61.0,44.0,58.0,82.0,60.0,77.0,40.0,46.0,42.0,30.0,19.0,21.0,25.0,17.0,13.0,10.0,9.0,6.0,7.0,3.0,5.0,2.0,6.0 C82062,48.0,31.0,56.0,44.0,45.0,44.0,48.0,52.0,46.0,31.0,43.0,57.0,52.0,59.0,63.0,57.0,50.0,61.0,48.0,36.0,36.0,38.0,34.0,30.0,21.0,32.0,36.0,43.0,44.0,31.0,36.0,47.0,62.0,49.0,54.0,46.0,44.0,48.0,33.0,67.0,47.0,60.0,45.0,47.0,54.0,51.0,53.0,48.0,52.0,58.0,53.0,63.0,58.0,73.0,78.0,78.0,71.0,70.0,59.0,74.0,76.0,55.0,76.0,53.0,71.0,53.0,58.0,62.0,59.0,47.0,73.0,36.0,51.0,59.0,45.0,54.0,57.0,47.0,57.0,39.0,31.0,39.0,27.0,25.0,13.0,22.0,17.0,13.0,13.0,5.0,6.0,6.0,2.0,2.0,1.0,5.0 C82063,59.0,78.0,58.0,73.0,66.0,69.0,73.0,75.0,76.0,78.0,66.0,80.0,74.0,82.0,73.0,84.0,81.0,74.0,96.0,104.0,106.0,136.0,133.0,118.0,131.0,129.0,114.0,141.0,141.0,103.0,120.0,97.0,113.0,91.0,116.0,106.0,97.0,92.0,94.0,100.0,102.0,102.0,84.0,103.0,103.0,84.0,83.0,77.0,88.0,82.0,80.0,93.0,84.0,60.0,90.0,86.0,75.0,71.0,73.0,73.0,64.0,70.0,70.0,50.0,53.0,59.0,58.0,44.0,49.0,48.0,44.0,50.0,33.0,37.0,39.0,31.0,26.0,33.0,32.0,21.0,21.0,23.0,20.0,11.0,16.0,16.0,7.0,9.0,11.0,7.0,2.0,3.0,4.0,7.0,3.0,6.0 C82064,55.0,41.0,60.0,64.0,66.0,63.0,70.0,63.0,72.0,71.0,58.0,66.0,81.0,72.0,60.0,57.0,71.0,57.0,70.0,47.0,42.0,59.0,56.0,76.0,61.0,59.0,61.0,67.0,70.0,67.0,71.0,81.0,77.0,75.0,86.0,89.0,78.0,87.0,88.0,83.0,93.0,77.0,70.0,72.0,85.0,74.0,60.0,71.0,71.0,70.0,74.0,77.0,86.0,78.0,91.0,78.0,73.0,93.0,79.0,80.0,89.0,107.0,78.0,94.0,68.0,65.0,66.0,71.0,70.0,82.0,70.0,76.0,67.0,69.0,58.0,49.0,73.0,77.0,59.0,43.0,51.0,46.0,41.0,29.0,27.0,24.0,21.0,24.0,13.0,13.0,10.0,6.0,10.0,7.0,7.0,8.0 C82066,86.0,87.0,114.0,99.0,107.0,106.0,118.0,118.0,131.0,93.0,117.0,118.0,107.0,115.0,103.0,88.0,105.0,107.0,83.0,98.0,70.0,74.0,63.0,78.0,73.0,76.0,79.0,78.0,95.0,81.0,98.0,118.0,126.0,129.0,127.0,138.0,117.0,168.0,125.0,130.0,123.0,147.0,116.0,127.0,129.0,115.0,117.0,122.0,99.0,111.0,111.0,82.0,102.0,105.0,118.0,89.0,91.0,96.0,88.0,109.0,114.0,82.0,78.0,107.0,106.0,82.0,86.0,80.0,83.0,79.0,82.0,81.0,76.0,70.0,58.0,70.0,61.0,73.0,62.0,47.0,70.0,55.0,58.0,35.0,29.0,36.0,32.0,33.0,27.0,22.0,19.0,12.0,13.0,7.0,5.0,11.0 C82067,23.0,34.0,35.0,43.0,41.0,46.0,43.0,60.0,57.0,55.0,61.0,72.0,62.0,69.0,66.0,73.0,47.0,65.0,62.0,46.0,46.0,43.0,35.0,52.0,49.0,58.0,43.0,47.0,34.0,47.0,45.0,45.0,50.0,36.0,35.0,57.0,49.0,45.0,52.0,58.0,49.0,59.0,44.0,57.0,71.0,73.0,68.0,55.0,51.0,53.0,62.0,67.0,51.0,49.0,54.0,66.0,53.0,52.0,51.0,63.0,56.0,48.0,55.0,65.0,51.0,66.0,50.0,54.0,47.0,41.0,40.0,44.0,49.0,37.0,36.0,42.0,45.0,33.0,50.0,35.0,24.0,16.0,27.0,22.0,18.0,20.0,20.0,15.0,16.0,11.0,9.0,16.0,7.0,4.0,3.0,7.0 C82068,45.0,51.0,61.0,68.0,55.0,61.0,63.0,67.0,81.0,57.0,74.0,66.0,72.0,69.0,59.0,58.0,64.0,70.0,55.0,64.0,73.0,59.0,52.0,54.0,60.0,68.0,53.0,52.0,57.0,73.0,66.0,73.0,79.0,91.0,90.0,89.0,83.0,83.0,72.0,84.0,80.0,71.0,63.0,60.0,84.0,65.0,78.0,58.0,70.0,69.0,74.0,89.0,87.0,92.0,86.0,75.0,97.0,89.0,78.0,88.0,75.0,81.0,67.0,85.0,89.0,70.0,73.0,80.0,75.0,62.0,53.0,52.0,73.0,75.0,52.0,52.0,54.0,74.0,68.0,57.0,59.0,58.0,39.0,40.0,33.0,28.0,36.0,22.0,20.0,11.0,18.0,10.0,7.0,4.0,5.0,12.0 C82070,45.0,40.0,47.0,39.0,54.0,51.0,56.0,69.0,67.0,60.0,72.0,51.0,68.0,58.0,53.0,59.0,55.0,58.0,52.0,72.0,94.0,89.0,77.0,87.0,82.0,74.0,88.0,100.0,82.0,74.0,73.0,91.0,94.0,80.0,84.0,85.0,82.0,106.0,85.0,96.0,82.0,74.0,69.0,84.0,73.0,87.0,89.0,74.0,60.0,68.0,65.0,76.0,67.0,73.0,77.0,63.0,61.0,66.0,65.0,54.0,70.0,57.0,48.0,53.0,71.0,51.0,47.0,51.0,49.0,51.0,51.0,50.0,57.0,42.0,52.0,38.0,31.0,31.0,39.0,38.0,27.0,30.0,30.0,12.0,17.0,17.0,14.0,14.0,13.0,8.0,4.0,3.0,1.0,2.0,4.0,2.0 C82071,71.0,77.0,75.0,77.0,82.0,83.0,85.0,86.0,86.0,89.0,75.0,85.0,84.0,82.0,82.0,68.0,85.0,78.0,76.0,77.0,94.0,73.0,71.0,70.0,79.0,75.0,83.0,83.0,98.0,75.0,86.0,76.0,107.0,99.0,84.0,94.0,90.0,96.0,90.0,107.0,97.0,104.0,91.0,82.0,105.0,89.0,80.0,65.0,78.0,84.0,91.0,86.0,99.0,90.0,111.0,80.0,98.0,118.0,95.0,83.0,104.0,86.0,102.0,83.0,87.0,75.0,67.0,88.0,65.0,70.0,61.0,80.0,69.0,57.0,67.0,52.0,71.0,55.0,57.0,42.0,43.0,43.0,32.0,38.0,32.0,30.0,25.0,23.0,17.0,19.0,12.0,10.0,8.0,16.0,5.0,12.0 C82072,36.0,40.0,42.0,44.0,42.0,42.0,41.0,53.0,45.0,53.0,31.0,56.0,57.0,55.0,41.0,56.0,54.0,42.0,55.0,54.0,54.0,38.0,33.0,54.0,56.0,52.0,50.0,57.0,49.0,56.0,69.0,65.0,63.0,75.0,61.0,60.0,68.0,62.0,63.0,49.0,50.0,61.0,64.0,45.0,57.0,47.0,49.0,50.0,46.0,56.0,53.0,58.0,53.0,67.0,55.0,67.0,61.0,50.0,57.0,63.0,51.0,65.0,49.0,51.0,42.0,49.0,40.0,45.0,56.0,47.0,28.0,32.0,35.0,40.0,51.0,31.0,35.0,36.0,42.0,24.0,21.0,17.0,14.0,25.0,14.0,15.0,14.0,15.0,6.0,9.0,10.0,4.0,4.0,2.0,1.0,3.0 C82073,67.0,59.0,74.0,74.0,83.0,65.0,80.0,111.0,90.0,95.0,117.0,102.0,119.0,114.0,120.0,117.0,122.0,92.0,104.0,100.0,93.0,105.0,79.0,90.0,115.0,112.0,121.0,123.0,121.0,100.0,134.0,144.0,153.0,118.0,154.0,142.0,174.0,120.0,160.0,131.0,147.0,148.0,152.0,134.0,113.0,108.0,105.0,96.0,113.0,107.0,95.0,103.0,85.0,87.0,106.0,93.0,88.0,99.0,93.0,89.0,91.0,100.0,60.0,71.0,69.0,60.0,46.0,57.0,56.0,33.0,41.0,49.0,42.0,40.0,23.0,32.0,31.0,25.0,32.0,22.0,23.0,25.0,19.0,20.0,17.0,15.0,13.0,5.0,6.0,2.0,6.0,5.0,2.0,,2.0,3.0 C82075,53.0,56.0,49.0,64.0,58.0,68.0,58.0,58.0,68.0,70.0,76.0,55.0,58.0,75.0,55.0,63.0,69.0,47.0,63.0,65.0,61.0,52.0,50.0,53.0,52.0,56.0,52.0,33.0,49.0,65.0,59.0,55.0,62.0,62.0,66.0,67.0,59.0,60.0,72.0,77.0,73.0,58.0,72.0,71.0,73.0,64.0,72.0,61.0,50.0,73.0,60.0,59.0,63.0,83.0,72.0,79.0,75.0,73.0,84.0,80.0,71.0,85.0,89.0,87.0,70.0,65.0,69.0,55.0,61.0,65.0,63.0,60.0,62.0,60.0,56.0,58.0,58.0,63.0,52.0,48.0,46.0,28.0,39.0,28.0,21.0,20.0,23.0,19.0,18.0,11.0,12.0,6.0,3.0,2.0,3.0,7.0 C82077,28.0,37.0,40.0,38.0,41.0,47.0,38.0,50.0,54.0,54.0,52.0,53.0,56.0,104.0,134.0,159.0,205.0,188.0,145.0,65.0,50.0,50.0,45.0,45.0,53.0,54.0,57.0,41.0,48.0,43.0,43.0,52.0,65.0,50.0,48.0,63.0,65.0,49.0,56.0,56.0,54.0,62.0,56.0,58.0,48.0,77.0,62.0,61.0,66.0,64.0,75.0,78.0,82.0,95.0,98.0,89.0,89.0,97.0,115.0,108.0,107.0,93.0,112.0,88.0,99.0,93.0,105.0,89.0,98.0,87.0,74.0,89.0,75.0,77.0,76.0,80.0,73.0,81.0,104.0,52.0,66.0,53.0,49.0,29.0,22.0,32.0,33.0,22.0,16.0,20.0,14.0,14.0,9.0,10.0,4.0,7.0 C82078,44.0,44.0,62.0,56.0,55.0,57.0,70.0,64.0,50.0,74.0,62.0,71.0,63.0,62.0,87.0,66.0,71.0,67.0,62.0,60.0,58.0,61.0,77.0,60.0,76.0,70.0,60.0,52.0,79.0,78.0,78.0,57.0,69.0,72.0,99.0,63.0,81.0,78.0,70.0,83.0,68.0,76.0,70.0,69.0,80.0,77.0,53.0,74.0,69.0,64.0,67.0,77.0,78.0,100.0,89.0,86.0,88.0,80.0,89.0,88.0,94.0,83.0,104.0,88.0,79.0,68.0,69.0,71.0,90.0,58.0,69.0,80.0,55.0,57.0,61.0,54.0,58.0,63.0,67.0,37.0,40.0,36.0,47.0,34.0,32.0,27.0,27.0,15.0,18.0,11.0,11.0,4.0,9.0,10.0,2.0,11.0 C82079,19.0,22.0,28.0,26.0,34.0,37.0,35.0,43.0,61.0,46.0,44.0,37.0,42.0,45.0,41.0,44.0,41.0,39.0,46.0,43.0,41.0,38.0,33.0,42.0,32.0,50.0,48.0,42.0,43.0,53.0,41.0,51.0,38.0,57.0,47.0,57.0,47.0,52.0,51.0,43.0,52.0,58.0,45.0,41.0,51.0,48.0,43.0,52.0,37.0,30.0,43.0,39.0,42.0,44.0,50.0,31.0,64.0,36.0,54.0,47.0,54.0,50.0,58.0,47.0,38.0,37.0,33.0,48.0,46.0,33.0,31.0,25.0,30.0,31.0,28.0,23.0,28.0,25.0,22.0,29.0,25.0,15.0,16.0,14.0,21.0,16.0,7.0,12.0,9.0,4.0,5.0,6.0,2.0,2.0,1.0,3.0 C82080,35.0,28.0,31.0,32.0,33.0,31.0,42.0,35.0,37.0,33.0,43.0,36.0,31.0,41.0,19.0,33.0,40.0,42.0,37.0,30.0,29.0,29.0,28.0,34.0,39.0,44.0,43.0,38.0,36.0,35.0,42.0,50.0,37.0,48.0,28.0,46.0,33.0,28.0,34.0,41.0,38.0,36.0,33.0,40.0,47.0,47.0,38.0,40.0,41.0,36.0,25.0,29.0,35.0,38.0,41.0,30.0,29.0,28.0,26.0,23.0,37.0,26.0,22.0,20.0,28.0,27.0,23.0,13.0,14.0,25.0,18.0,14.0,19.0,18.0,12.0,12.0,13.0,6.0,8.0,9.0,8.0,9.0,6.0,,8.0,3.0,5.0,1.0,1.0,4.0,3.0,3.0,2.0,,,1.0 C82082,20.0,21.0,25.0,17.0,22.0,22.0,32.0,32.0,31.0,28.0,27.0,34.0,24.0,31.0,33.0,37.0,29.0,31.0,33.0,21.0,27.0,28.0,23.0,19.0,41.0,37.0,39.0,31.0,52.0,43.0,49.0,46.0,37.0,60.0,41.0,43.0,48.0,40.0,35.0,38.0,46.0,41.0,34.0,42.0,37.0,36.0,35.0,34.0,41.0,38.0,40.0,42.0,30.0,38.0,37.0,49.0,41.0,40.0,45.0,43.0,46.0,38.0,28.0,36.0,34.0,20.0,35.0,33.0,31.0,16.0,26.0,25.0,21.0,26.0,28.0,16.0,28.0,26.0,31.0,22.0,26.0,16.0,18.0,11.0,9.0,13.0,9.0,16.0,6.0,6.0,5.0,6.0,1.0,2.0,,3.0 C82084,13.0,18.0,21.0,26.0,19.0,20.0,21.0,10.0,26.0,22.0,12.0,24.0,33.0,25.0,22.0,14.0,23.0,25.0,22.0,26.0,27.0,23.0,24.0,27.0,35.0,30.0,28.0,36.0,42.0,35.0,36.0,32.0,27.0,35.0,32.0,27.0,29.0,41.0,32.0,27.0,23.0,27.0,36.0,29.0,32.0,32.0,19.0,31.0,35.0,26.0,25.0,19.0,21.0,25.0,22.0,33.0,25.0,24.0,21.0,21.0,29.0,20.0,36.0,21.0,19.0,30.0,12.0,22.0,11.0,12.0,17.0,14.0,15.0,7.0,8.0,10.0,15.0,11.0,6.0,7.0,10.0,6.0,6.0,4.0,3.0,6.0,1.0,3.0,1.0,3.0,2.0,,1.0,,,1.0 C82086,59.0,52.0,44.0,59.0,79.0,66.0,78.0,61.0,79.0,75.0,61.0,80.0,95.0,82.0,73.0,78.0,85.0,64.0,92.0,50.0,59.0,68.0,79.0,67.0,84.0,84.0,109.0,110.0,98.0,105.0,111.0,115.0,96.0,106.0,127.0,106.0,106.0,116.0,99.0,108.0,104.0,101.0,102.0,93.0,90.0,88.0,76.0,66.0,69.0,72.0,77.0,67.0,66.0,53.0,66.0,68.0,65.0,66.0,50.0,51.0,33.0,52.0,42.0,37.0,46.0,33.0,38.0,39.0,33.0,29.0,23.0,31.0,32.0,27.0,21.0,17.0,17.0,22.0,25.0,8.0,16.0,7.0,9.0,4.0,8.0,7.0,6.0,5.0,6.0,3.0,2.0,3.0,2.0,4.0,3.0, C82088,47.0,49.0,53.0,65.0,41.0,55.0,55.0,45.0,59.0,65.0,67.0,78.0,59.0,82.0,77.0,87.0,75.0,75.0,80.0,79.0,72.0,77.0,80.0,87.0,86.0,69.0,85.0,98.0,83.0,82.0,75.0,80.0,109.0,84.0,99.0,87.0,80.0,91.0,87.0,75.0,84.0,87.0,73.0,66.0,81.0,65.0,70.0,63.0,73.0,85.0,51.0,64.0,62.0,58.0,58.0,53.0,61.0,61.0,47.0,51.0,66.0,62.0,73.0,45.0,66.0,53.0,49.0,60.0,49.0,59.0,48.0,55.0,37.0,38.0,35.0,31.0,37.0,21.0,19.0,18.0,11.0,13.0,15.0,9.0,15.0,13.0,8.0,9.0,9.0,6.0,4.0,3.0,1.0,3.0,1.0,2.0 C82091,57.0,59.0,58.0,52.0,63.0,66.0,58.0,71.0,67.0,81.0,90.0,80.0,65.0,70.0,72.0,68.0,76.0,55.0,47.0,54.0,60.0,39.0,51.0,70.0,62.0,54.0,60.0,67.0,61.0,73.0,67.0,65.0,61.0,56.0,77.0,74.0,83.0,68.0,68.0,75.0,80.0,87.0,67.0,77.0,60.0,74.0,65.0,51.0,52.0,52.0,59.0,59.0,59.0,65.0,65.0,60.0,61.0,61.0,57.0,59.0,59.0,56.0,57.0,63.0,47.0,42.0,61.0,44.0,49.0,32.0,33.0,22.0,28.0,29.0,22.0,27.0,28.0,30.0,33.0,12.0,17.0,19.0,25.0,13.0,15.0,8.0,9.0,12.0,11.0,5.0,4.0,6.0,3.0,2.0,3.0,8.0 C82092,30.0,23.0,27.0,34.0,30.0,19.0,37.0,24.0,23.0,31.0,28.0,26.0,29.0,33.0,21.0,28.0,29.0,29.0,24.0,22.0,25.0,23.0,24.0,27.0,13.0,39.0,34.0,37.0,31.0,41.0,46.0,45.0,46.0,45.0,47.0,49.0,38.0,60.0,40.0,35.0,41.0,40.0,32.0,44.0,38.0,40.0,46.0,28.0,32.0,35.0,32.0,36.0,26.0,27.0,44.0,29.0,23.0,37.0,22.0,33.0,22.0,23.0,21.0,33.0,25.0,21.0,29.0,26.0,20.0,24.0,15.0,21.0,12.0,23.0,9.0,18.0,23.0,18.0,10.0,17.0,8.0,3.0,6.0,6.0,4.0,3.0,8.0,2.0,1.0,6.0,4.0,1.0,1.0,1.0,1.0,1.0 C82093,50.0,65.0,41.0,64.0,47.0,63.0,69.0,67.0,68.0,82.0,65.0,68.0,82.0,83.0,76.0,93.0,90.0,91.0,85.0,86.0,69.0,69.0,79.0,57.0,71.0,81.0,58.0,65.0,66.0,71.0,72.0,75.0,67.0,95.0,72.0,75.0,70.0,80.0,73.0,82.0,64.0,67.0,58.0,74.0,67.0,92.0,74.0,58.0,64.0,73.0,88.0,86.0,100.0,94.0,87.0,106.0,94.0,96.0,105.0,95.0,106.0,78.0,99.0,98.0,93.0,72.0,81.0,81.0,65.0,62.0,54.0,73.0,59.0,49.0,62.0,53.0,67.0,62.0,72.0,56.0,42.0,38.0,28.0,23.0,25.0,20.0,18.0,20.0,19.0,5.0,5.0,6.0,4.0,1.0,2.0,2.0 C82094,27.0,28.0,37.0,29.0,48.0,29.0,47.0,46.0,51.0,55.0,38.0,61.0,67.0,60.0,52.0,62.0,62.0,55.0,59.0,50.0,52.0,49.0,28.0,37.0,44.0,34.0,54.0,47.0,39.0,37.0,48.0,33.0,38.0,55.0,47.0,55.0,43.0,44.0,51.0,61.0,62.0,60.0,63.0,61.0,57.0,54.0,45.0,60.0,64.0,40.0,48.0,44.0,29.0,50.0,44.0,40.0,39.0,44.0,34.0,40.0,27.0,38.0,39.0,33.0,39.0,28.0,31.0,19.0,29.0,29.0,29.0,24.0,18.0,25.0,23.0,26.0,19.0,15.0,21.0,15.0,13.0,16.0,13.0,3.0,5.0,5.0,4.0,3.0,3.0,3.0,1.0,1.0,,1.0,,2.0 C82095,26.0,33.0,36.0,51.0,48.0,62.0,55.0,59.0,55.0,80.0,56.0,60.0,55.0,49.0,65.0,69.0,52.0,56.0,40.0,53.0,42.0,41.0,52.0,47.0,46.0,40.0,47.0,52.0,46.0,44.0,35.0,52.0,57.0,54.0,60.0,52.0,50.0,53.0,67.0,57.0,61.0,57.0,65.0,61.0,58.0,55.0,41.0,43.0,57.0,36.0,53.0,40.0,68.0,50.0,65.0,66.0,66.0,55.0,66.0,50.0,74.0,67.0,67.0,70.0,66.0,49.0,41.0,43.0,63.0,54.0,37.0,38.0,43.0,32.0,37.0,34.0,49.0,32.0,47.0,32.0,38.0,24.0,31.0,19.0,20.0,16.0,18.0,14.0,10.0,8.0,4.0,11.0,9.0,7.0,2.0,9.0 C82096,51.0,81.0,72.0,74.0,74.0,67.0,82.0,66.0,62.0,61.0,75.0,58.0,68.0,53.0,70.0,64.0,52.0,56.0,56.0,59.0,51.0,48.0,47.0,33.0,55.0,51.0,62.0,67.0,73.0,64.0,71.0,88.0,70.0,97.0,89.0,81.0,100.0,83.0,72.0,78.0,88.0,62.0,55.0,86.0,80.0,71.0,57.0,60.0,63.0,54.0,75.0,57.0,66.0,79.0,79.0,62.0,61.0,66.0,57.0,72.0,67.0,59.0,56.0,56.0,48.0,50.0,53.0,53.0,47.0,36.0,43.0,28.0,28.0,40.0,43.0,32.0,30.0,40.0,33.0,22.0,27.0,26.0,18.0,16.0,6.0,14.0,11.0,12.0,8.0,10.0,7.0,3.0,4.0,3.0,,2.0 C82097,29.0,24.0,19.0,18.0,17.0,19.0,16.0,17.0,15.0,18.0,13.0,13.0,11.0,23.0,18.0,14.0,11.0,12.0,14.0,13.0,6.0,8.0,5.0,11.0,16.0,14.0,16.0,17.0,17.0,22.0,23.0,20.0,30.0,25.0,25.0,26.0,28.0,20.0,31.0,22.0,25.0,20.0,26.0,24.0,29.0,17.0,18.0,19.0,19.0,18.0,18.0,22.0,19.0,26.0,23.0,17.0,15.0,15.0,15.0,16.0,14.0,18.0,18.0,21.0,15.0,11.0,21.0,12.0,13.0,14.0,11.0,16.0,10.0,12.0,14.0,8.0,7.0,11.0,9.0,3.0,6.0,9.0,5.0,6.0,4.0,5.0,7.0,4.0,1.0,2.0,1.0,1.0,1.0,,,1.0 C82098,20.0,30.0,38.0,42.0,24.0,36.0,43.0,40.0,48.0,44.0,48.0,38.0,48.0,38.0,41.0,46.0,45.0,69.0,46.0,35.0,39.0,48.0,46.0,36.0,28.0,35.0,43.0,38.0,46.0,46.0,36.0,49.0,43.0,47.0,38.0,51.0,44.0,62.0,54.0,47.0,49.0,36.0,53.0,40.0,38.0,44.0,27.0,32.0,53.0,45.0,39.0,41.0,45.0,46.0,56.0,54.0,63.0,55.0,58.0,41.0,49.0,52.0,57.0,44.0,38.0,45.0,52.0,39.0,40.0,36.0,38.0,35.0,44.0,38.0,31.0,39.0,30.0,47.0,26.0,33.0,28.0,20.0,19.0,18.0,18.0,9.0,14.0,9.0,10.0,8.0,1.0,7.0,3.0,2.0,1.0,2.0 C82099,30.0,28.0,37.0,22.0,28.0,26.0,24.0,42.0,28.0,35.0,42.0,36.0,36.0,48.0,32.0,33.0,46.0,39.0,41.0,30.0,37.0,31.0,39.0,32.0,46.0,34.0,46.0,40.0,47.0,50.0,31.0,37.0,41.0,37.0,44.0,25.0,43.0,47.0,48.0,22.0,39.0,37.0,38.0,35.0,37.0,26.0,32.0,30.0,25.0,34.0,33.0,19.0,25.0,22.0,32.0,21.0,18.0,22.0,17.0,28.0,22.0,23.0,19.0,30.0,25.0,20.0,20.0,20.0,15.0,32.0,21.0,14.0,16.0,15.0,10.0,15.0,11.0,13.0,8.0,7.0,8.0,2.0,6.0,4.0,6.0,4.0,2.0,3.0,2.0,3.0,1.0,,1.0,2.0,3.0,1.0 C82100,29.0,22.0,29.0,29.0,47.0,48.0,43.0,51.0,47.0,44.0,42.0,51.0,62.0,53.0,58.0,52.0,41.0,43.0,52.0,63.0,41.0,42.0,36.0,25.0,26.0,27.0,32.0,41.0,29.0,36.0,40.0,40.0,36.0,42.0,44.0,37.0,32.0,41.0,35.0,43.0,59.0,42.0,46.0,44.0,48.0,48.0,35.0,33.0,43.0,39.0,36.0,25.0,28.0,33.0,34.0,39.0,29.0,32.0,29.0,28.0,35.0,25.0,32.0,28.0,30.0,28.0,27.0,24.0,36.0,18.0,29.0,19.0,25.0,15.0,17.0,17.0,16.0,25.0,18.0,14.0,10.0,12.0,14.0,7.0,10.0,10.0,7.0,9.0,4.0,6.0,4.0,,2.0,3.0,2.0,5.0 C82102,16.0,13.0,18.0,13.0,19.0,28.0,14.0,25.0,17.0,24.0,25.0,26.0,21.0,40.0,27.0,36.0,32.0,42.0,24.0,29.0,17.0,15.0,24.0,22.0,17.0,21.0,23.0,14.0,18.0,23.0,20.0,19.0,19.0,23.0,24.0,19.0,29.0,24.0,28.0,25.0,18.0,32.0,28.0,21.0,31.0,24.0,35.0,23.0,27.0,30.0,44.0,26.0,40.0,44.0,33.0,55.0,38.0,38.0,43.0,36.0,54.0,52.0,38.0,40.0,32.0,49.0,32.0,35.0,26.0,38.0,36.0,25.0,37.0,35.0,33.0,31.0,23.0,25.0,30.0,26.0,20.0,24.0,13.0,8.0,17.0,4.0,6.0,8.0,6.0,1.0,5.0,1.0,2.0,1.0,1.0,2.0 C82103,26.0,34.0,27.0,29.0,36.0,41.0,38.0,50.0,53.0,51.0,57.0,38.0,50.0,61.0,58.0,48.0,32.0,50.0,37.0,48.0,44.0,35.0,32.0,37.0,46.0,44.0,43.0,35.0,42.0,41.0,44.0,46.0,49.0,40.0,51.0,61.0,28.0,54.0,65.0,57.0,64.0,56.0,62.0,48.0,63.0,64.0,54.0,53.0,45.0,37.0,60.0,45.0,57.0,52.0,56.0,53.0,62.0,42.0,48.0,54.0,48.0,41.0,48.0,53.0,42.0,32.0,45.0,38.0,38.0,32.0,29.0,34.0,29.0,27.0,32.0,29.0,41.0,22.0,27.0,20.0,22.0,22.0,21.0,9.0,18.0,12.0,5.0,6.0,8.0,5.0,4.0,4.0,3.0,2.0,,2.0 C82107,45.0,38.0,50.0,35.0,48.0,54.0,43.0,56.0,54.0,52.0,44.0,50.0,54.0,72.0,59.0,52.0,51.0,52.0,48.0,46.0,47.0,62.0,66.0,68.0,48.0,52.0,58.0,65.0,58.0,66.0,69.0,70.0,76.0,68.0,58.0,52.0,65.0,65.0,58.0,67.0,61.0,68.0,70.0,57.0,71.0,66.0,67.0,48.0,39.0,47.0,47.0,62.0,54.0,38.0,44.0,40.0,42.0,36.0,52.0,40.0,38.0,39.0,38.0,28.0,32.0,38.0,32.0,31.0,32.0,21.0,30.0,24.0,29.0,25.0,20.0,18.0,16.0,14.0,16.0,12.0,14.0,13.0,9.0,9.0,7.0,8.0,6.0,6.0,3.0,3.0,2.0,2.0,,,3.0,1.0 C82109,15.0,34.0,31.0,28.0,22.0,28.0,34.0,32.0,19.0,28.0,25.0,22.0,23.0,21.0,27.0,25.0,25.0,26.0,21.0,17.0,26.0,19.0,13.0,21.0,23.0,24.0,28.0,19.0,32.0,28.0,31.0,19.0,31.0,36.0,29.0,42.0,35.0,28.0,37.0,34.0,25.0,29.0,25.0,26.0,31.0,37.0,27.0,20.0,17.0,32.0,19.0,24.0,37.0,41.0,45.0,42.0,40.0,37.0,35.0,36.0,55.0,48.0,48.0,46.0,46.0,37.0,33.0,42.0,31.0,31.0,33.0,38.0,25.0,24.0,33.0,25.0,31.0,28.0,37.0,15.0,24.0,21.0,22.0,23.0,11.0,8.0,8.0,8.0,8.0,8.0,3.0,5.0,3.0,,3.0,4.0 C82111,6.0,9.0,8.0,11.0,12.0,8.0,16.0,6.0,8.0,11.0,19.0,8.0,16.0,8.0,15.0,12.0,7.0,13.0,335.0,858.0,962.0,1040.0,997.0,726.0,543.0,524.0,498.0,529.0,469.0,418.0,433.0,416.0,345.0,262.0,220.0,273.0,227.0,193.0,148.0,126.0,100.0,70.0,54.0,33.0,32.0,22.0,23.0,16.0,18.0,15.0,9.0,5.0,12.0,8.0,9.0,9.0,5.0,8.0,7.0,9.0,8.0,6.0,7.0,2.0,8.0,3.0,4.0,9.0,2.0,2.0,4.0,4.0,1.0,1.0,1.0,4.0,1.0,3.0,2.0,1.0,,1.0,1.0,1.0,1.0,2.0,,,,,2.0,1.0,1.0,,3.0,3.0 C82112,49.0,63.0,48.0,61.0,57.0,67.0,59.0,72.0,72.0,75.0,68.0,72.0,72.0,78.0,75.0,77.0,68.0,65.0,77.0,45.0,61.0,58.0,54.0,60.0,55.0,54.0,43.0,55.0,66.0,75.0,72.0,57.0,66.0,72.0,75.0,77.0,61.0,70.0,70.0,56.0,63.0,59.0,64.0,57.0,55.0,62.0,78.0,68.0,63.0,65.0,61.0,61.0,57.0,51.0,56.0,58.0,52.0,61.0,47.0,57.0,50.0,49.0,40.0,47.0,52.0,53.0,53.0,37.0,37.0,31.0,32.0,31.0,31.0,32.0,31.0,35.0,23.0,23.0,18.0,16.0,19.0,13.0,22.0,9.0,11.0,9.0,11.0,10.0,8.0,7.0,3.0,1.0,4.0,2.0,2.0,4.0 C82114,6.0,8.0,9.0,9.0,11.0,18.0,11.0,16.0,14.0,12.0,12.0,18.0,15.0,18.0,9.0,17.0,11.0,16.0,10.0,16.0,15.0,22.0,21.0,16.0,19.0,24.0,21.0,24.0,29.0,27.0,32.0,32.0,30.0,31.0,36.0,37.0,36.0,33.0,28.0,26.0,26.0,20.0,31.0,37.0,27.0,25.0,18.0,35.0,22.0,29.0,28.0,19.0,21.0,16.0,26.0,22.0,16.0,13.0,13.0,16.0,22.0,9.0,9.0,14.0,11.0,13.0,10.0,7.0,12.0,11.0,5.0,4.0,10.0,9.0,5.0,2.0,11.0,7.0,7.0,1.0,6.0,4.0,3.0,3.0,3.0,2.0,4.0,2.0,,,,,1.0,,,1.0 C82116,30.0,24.0,29.0,29.0,26.0,26.0,31.0,22.0,26.0,29.0,31.0,27.0,31.0,36.0,39.0,28.0,40.0,37.0,35.0,37.0,37.0,66.0,58.0,67.0,58.0,88.0,71.0,66.0,68.0,67.0,58.0,60.0,47.0,61.0,41.0,42.0,57.0,43.0,39.0,48.0,43.0,44.0,40.0,34.0,32.0,42.0,40.0,53.0,36.0,44.0,44.0,32.0,38.0,28.0,36.0,32.0,41.0,24.0,23.0,17.0,25.0,15.0,20.0,22.0,19.0,23.0,18.0,16.0,14.0,17.0,19.0,22.0,8.0,12.0,18.0,9.0,9.0,4.0,14.0,3.0,8.0,8.0,5.0,5.0,7.0,9.0,6.0,5.0,5.0,,,3.0,3.0,,2.0,7.0 C82119,22.0,24.0,21.0,15.0,24.0,10.0,16.0,15.0,16.0,24.0,11.0,17.0,21.0,19.0,15.0,18.0,21.0,16.0,19.0,15.0,15.0,14.0,25.0,25.0,36.0,46.0,32.0,29.0,44.0,46.0,38.0,35.0,47.0,35.0,33.0,55.0,41.0,40.0,22.0,37.0,38.0,35.0,17.0,40.0,27.0,30.0,23.0,24.0,18.0,14.0,33.0,24.0,17.0,14.0,19.0,15.0,16.0,24.0,24.0,17.0,12.0,21.0,19.0,14.0,13.0,17.0,14.0,9.0,12.0,12.0,9.0,8.0,13.0,15.0,13.0,11.0,3.0,7.0,6.0,9.0,6.0,2.0,6.0,1.0,4.0,4.0,5.0,2.0,2.0,2.0,3.0,1.0,1.0,1.0,,3.0 C82120,16.0,20.0,18.0,17.0,19.0,15.0,22.0,19.0,9.0,26.0,18.0,15.0,23.0,18.0,23.0,19.0,27.0,21.0,30.0,23.0,22.0,21.0,21.0,15.0,18.0,22.0,31.0,22.0,29.0,22.0,27.0,31.0,24.0,20.0,26.0,33.0,27.0,15.0,20.0,17.0,27.0,26.0,25.0,34.0,27.0,19.0,28.0,21.0,19.0,20.0,19.0,18.0,26.0,24.0,19.0,23.0,21.0,33.0,27.0,23.0,21.0,29.0,24.0,25.0,30.0,26.0,22.0,14.0,25.0,33.0,23.0,28.0,23.0,25.0,24.0,20.0,18.0,17.0,20.0,24.0,24.0,11.0,16.0,10.0,12.0,4.0,6.0,4.0,7.0,4.0,1.0,1.0,,1.0,1.0,1.0 C82121,48.0,76.0,74.0,64.0,63.0,76.0,64.0,83.0,81.0,79.0,68.0,81.0,89.0,82.0,73.0,86.0,88.0,96.0,84.0,65.0,73.0,72.0,63.0,63.0,60.0,84.0,83.0,87.0,95.0,97.0,111.0,103.0,92.0,114.0,132.0,105.0,96.0,119.0,100.0,99.0,93.0,92.0,99.0,96.0,99.0,104.0,93.0,87.0,73.0,93.0,84.0,99.0,113.0,81.0,99.0,103.0,93.0,96.0,106.0,133.0,112.0,113.0,98.0,89.0,105.0,102.0,81.0,94.0,84.0,80.0,70.0,76.0,71.0,69.0,71.0,74.0,82.0,74.0,89.0,66.0,51.0,53.0,45.0,32.0,37.0,28.0,21.0,25.0,15.0,11.0,11.0,10.0,9.0,6.0,8.0,7.0 C82124,71.0,57.0,54.0,66.0,53.0,57.0,64.0,68.0,56.0,53.0,74.0,61.0,59.0,60.0,52.0,47.0,43.0,50.0,158.0,332.0,496.0,462.0,417.0,480.0,522.0,627.0,669.0,705.0,625.0,581.0,541.0,516.0,528.0,458.0,376.0,352.0,346.0,311.0,264.0,242.0,246.0,197.0,196.0,189.0,185.0,176.0,157.0,133.0,125.0,105.0,102.0,92.0,80.0,58.0,69.0,82.0,75.0,67.0,60.0,46.0,46.0,50.0,56.0,35.0,42.0,31.0,32.0,28.0,25.0,31.0,19.0,19.0,28.0,17.0,12.0,16.0,21.0,20.0,14.0,17.0,13.0,8.0,9.0,3.0,11.0,5.0,5.0,6.0,4.0,4.0,2.0,2.0,1.0,1.0,1.0, C82600,44.0,33.0,40.0,31.0,35.0,33.0,37.0,30.0,53.0,35.0,43.0,32.0,37.0,43.0,33.0,40.0,35.0,30.0,43.0,35.0,38.0,42.0,35.0,26.0,33.0,26.0,42.0,38.0,30.0,44.0,53.0,49.0,46.0,55.0,46.0,56.0,49.0,46.0,42.0,52.0,39.0,34.0,43.0,29.0,40.0,37.0,48.0,44.0,38.0,43.0,40.0,48.0,32.0,46.0,39.0,40.0,40.0,39.0,34.0,45.0,48.0,32.0,32.0,35.0,32.0,37.0,37.0,33.0,31.0,26.0,24.0,27.0,28.0,35.0,15.0,30.0,20.0,23.0,25.0,20.0,21.0,12.0,17.0,11.0,9.0,6.0,9.0,6.0,5.0,3.0,3.0,2.0,3.0,1.0,5.0,2.0 C82610,26.0,41.0,38.0,46.0,38.0,46.0,60.0,55.0,59.0,71.0,72.0,66.0,82.0,64.0,74.0,70.0,77.0,82.0,56.0,57.0,39.0,51.0,40.0,36.0,47.0,45.0,55.0,34.0,31.0,33.0,34.0,35.0,38.0,46.0,36.0,38.0,55.0,47.0,50.0,54.0,48.0,55.0,46.0,34.0,43.0,50.0,47.0,36.0,45.0,43.0,47.0,35.0,40.0,36.0,44.0,43.0,38.0,24.0,34.0,43.0,33.0,26.0,34.0,42.0,27.0,16.0,23.0,21.0,16.0,14.0,19.0,20.0,12.0,14.0,12.0,16.0,21.0,16.0,12.0,7.0,7.0,7.0,7.0,6.0,7.0,2.0,3.0,2.0,3.0,,3.0,2.0,,,1.0,1.0 C82611,34.0,33.0,34.0,47.0,38.0,39.0,39.0,32.0,37.0,46.0,47.0,50.0,42.0,34.0,45.0,49.0,53.0,47.0,35.0,39.0,25.0,31.0,33.0,29.0,36.0,41.0,32.0,28.0,32.0,34.0,44.0,30.0,34.0,40.0,36.0,36.0,55.0,58.0,40.0,41.0,47.0,35.0,36.0,49.0,54.0,48.0,40.0,39.0,40.0,52.0,36.0,39.0,47.0,50.0,53.0,57.0,64.0,59.0,46.0,47.0,68.0,49.0,53.0,51.0,51.0,55.0,34.0,31.0,34.0,36.0,30.0,37.0,32.0,36.0,32.0,26.0,23.0,26.0,32.0,26.0,29.0,22.0,26.0,10.0,8.0,12.0,15.0,7.0,7.0,6.0,7.0,4.0,2.0,1.0,1.0,3.0 C82614,18.0,25.0,21.0,32.0,28.0,32.0,18.0,34.0,30.0,36.0,39.0,32.0,37.0,40.0,32.0,27.0,37.0,27.0,27.0,25.0,29.0,38.0,24.0,29.0,21.0,41.0,28.0,26.0,37.0,25.0,23.0,27.0,28.0,29.0,33.0,35.0,25.0,30.0,20.0,35.0,45.0,26.0,35.0,40.0,38.0,36.0,30.0,38.0,29.0,22.0,26.0,29.0,35.0,38.0,36.0,35.0,25.0,31.0,34.0,29.0,19.0,21.0,23.0,25.0,24.0,11.0,23.0,18.0,11.0,18.0,18.0,22.0,13.0,14.0,12.0,13.0,14.0,19.0,12.0,12.0,14.0,8.0,7.0,13.0,4.0,6.0,13.0,5.0,5.0,3.0,2.0,2.0,2.0,5.0,1.0,2.0 C82620,12.0,6.0,15.0,5.0,17.0,11.0,11.0,10.0,10.0,16.0,19.0,7.0,9.0,10.0,9.0,4.0,6.0,7.0,8.0,14.0,14.0,14.0,21.0,18.0,30.0,14.0,35.0,35.0,31.0,26.0,41.0,39.0,36.0,21.0,41.0,34.0,37.0,38.0,37.0,40.0,45.0,27.0,23.0,22.0,27.0,34.0,16.0,7.0,21.0,17.0,8.0,19.0,19.0,16.0,18.0,12.0,7.0,9.0,6.0,13.0,11.0,9.0,12.0,13.0,13.0,13.0,12.0,8.0,15.0,5.0,9.0,8.0,4.0,7.0,5.0,8.0,2.0,1.0,2.0,1.0,2.0,2.0,2.0,1.0,2.0,,1.0,1.0,1.0,1.0,1.0,,,1.0,,1.0 C82624,44.0,73.0,53.0,62.0,65.0,71.0,66.0,86.0,73.0,71.0,95.0,85.0,60.0,88.0,93.0,78.0,80.0,84.0,74.0,74.0,78.0,62.0,62.0,65.0,59.0,57.0,44.0,51.0,57.0,59.0,76.0,65.0,64.0,68.0,57.0,86.0,85.0,64.0,82.0,62.0,76.0,77.0,65.0,52.0,64.0,62.0,49.0,53.0,58.0,33.0,54.0,46.0,48.0,39.0,45.0,45.0,32.0,34.0,39.0,40.0,39.0,28.0,25.0,28.0,30.0,23.0,25.0,15.0,32.0,18.0,11.0,11.0,16.0,15.0,10.0,11.0,10.0,13.0,11.0,11.0,10.0,6.0,14.0,4.0,7.0,,6.0,5.0,2.0,1.0,2.0,3.0,2.0,1.0,1.0,2.0 C82627,48.0,42.0,36.0,53.0,45.0,43.0,37.0,51.0,54.0,64.0,57.0,52.0,65.0,45.0,57.0,50.0,47.0,46.0,48.0,52.0,25.0,57.0,60.0,58.0,49.0,51.0,40.0,50.0,63.0,68.0,65.0,53.0,49.0,55.0,68.0,73.0,75.0,50.0,59.0,73.0,73.0,75.0,50.0,68.0,53.0,60.0,53.0,51.0,52.0,52.0,52.0,33.0,38.0,43.0,37.0,42.0,37.0,38.0,31.0,41.0,38.0,40.0,51.0,31.0,42.0,43.0,53.0,46.0,40.0,47.0,26.0,44.0,33.0,25.0,36.0,38.0,29.0,19.0,21.0,19.0,23.0,23.0,17.0,7.0,20.0,20.0,9.0,7.0,4.0,6.0,3.0,2.0,2.0,4.0,3.0,4.0 C82628,15.0,15.0,10.0,25.0,18.0,26.0,29.0,25.0,39.0,15.0,30.0,15.0,21.0,23.0,18.0,25.0,28.0,18.0,19.0,24.0,16.0,16.0,15.0,18.0,11.0,10.0,11.0,15.0,7.0,13.0,23.0,13.0,20.0,21.0,26.0,16.0,20.0,28.0,18.0,21.0,22.0,38.0,32.0,25.0,35.0,30.0,31.0,15.0,21.0,18.0,19.0,25.0,17.0,20.0,23.0,30.0,20.0,18.0,22.0,29.0,16.0,27.0,21.0,26.0,26.0,25.0,26.0,28.0,24.0,21.0,22.0,19.0,21.0,21.0,18.0,22.0,16.0,13.0,21.0,24.0,10.0,7.0,15.0,7.0,4.0,8.0,4.0,11.0,3.0,5.0,2.0,,4.0,2.0,1.0,1.0 C82631,39.0,40.0,39.0,50.0,43.0,52.0,53.0,45.0,62.0,60.0,61.0,42.0,54.0,41.0,38.0,40.0,54.0,48.0,40.0,34.0,43.0,36.0,31.0,43.0,35.0,31.0,39.0,31.0,49.0,43.0,48.0,45.0,48.0,59.0,53.0,55.0,61.0,57.0,65.0,62.0,43.0,57.0,59.0,68.0,31.0,55.0,44.0,41.0,45.0,40.0,40.0,45.0,45.0,51.0,51.0,43.0,56.0,53.0,46.0,43.0,49.0,39.0,38.0,39.0,49.0,32.0,40.0,26.0,33.0,24.0,36.0,29.0,21.0,19.0,20.0,25.0,22.0,20.0,31.0,21.0,16.0,17.0,8.0,5.0,13.0,10.0,3.0,5.0,4.0,6.0,,1.0,5.0,1.0,1.0, C82634,42.0,33.0,52.0,35.0,37.0,40.0,39.0,52.0,37.0,32.0,47.0,37.0,44.0,34.0,34.0,29.0,28.0,29.0,32.0,20.0,31.0,25.0,18.0,29.0,24.0,30.0,32.0,41.0,40.0,52.0,48.0,36.0,34.0,64.0,57.0,54.0,47.0,57.0,41.0,46.0,51.0,38.0,48.0,46.0,39.0,35.0,37.0,40.0,38.0,28.0,36.0,31.0,39.0,37.0,30.0,26.0,45.0,36.0,47.0,40.0,40.0,35.0,40.0,45.0,33.0,50.0,36.0,33.0,32.0,26.0,22.0,24.0,21.0,26.0,19.0,32.0,27.0,12.0,21.0,20.0,17.0,16.0,13.0,11.0,10.0,9.0,7.0,5.0,4.0,3.0,2.0,1.0,2.0,2.0,3.0,2.0 C82639,54.0,54.0,48.0,58.0,57.0,59.0,58.0,55.0,68.0,61.0,56.0,70.0,75.0,78.0,61.0,48.0,64.0,59.0,57.0,70.0,56.0,60.0,57.0,56.0,67.0,68.0,57.0,56.0,82.0,74.0,95.0,93.0,110.0,97.0,101.0,118.0,87.0,121.0,97.0,100.0,123.0,114.0,86.0,104.0,90.0,92.0,101.0,84.0,75.0,80.0,67.0,67.0,73.0,98.0,58.0,74.0,77.0,80.0,56.0,61.0,67.0,56.0,72.0,65.0,61.0,44.0,42.0,54.0,39.0,45.0,35.0,41.0,37.0,35.0,39.0,34.0,28.0,40.0,28.0,31.0,18.0,19.0,23.0,15.0,13.0,11.0,12.0,10.0,12.0,9.0,6.0,3.0,3.0,1.0,6.0,6.0 C82642,48.0,59.0,62.0,49.0,71.0,61.0,57.0,52.0,63.0,67.0,62.0,62.0,77.0,67.0,67.0,76.0,78.0,67.0,71.0,65.0,77.0,74.0,88.0,85.0,90.0,75.0,88.0,92.0,82.0,83.0,88.0,99.0,95.0,78.0,80.0,65.0,79.0,83.0,81.0,85.0,86.0,83.0,63.0,71.0,79.0,78.0,73.0,76.0,67.0,76.0,69.0,66.0,65.0,57.0,56.0,54.0,49.0,46.0,45.0,40.0,53.0,39.0,50.0,47.0,55.0,40.0,50.0,25.0,36.0,24.0,34.0,34.0,30.0,18.0,28.0,17.0,13.0,22.0,9.0,17.0,9.0,18.0,13.0,6.0,4.0,8.0,4.0,3.0,2.0,5.0,1.0,1.0,,1.0,1.0,1.0 C82643,99.0,103.0,106.0,89.0,121.0,97.0,96.0,95.0,110.0,121.0,101.0,134.0,103.0,131.0,134.0,133.0,147.0,148.0,138.0,146.0,144.0,107.0,127.0,138.0,114.0,110.0,120.0,125.0,118.0,98.0,124.0,89.0,100.0,103.0,92.0,92.0,100.0,101.0,101.0,102.0,95.0,96.0,96.0,89.0,98.0,100.0,111.0,103.0,103.0,101.0,121.0,86.0,89.0,88.0,85.0,74.0,71.0,63.0,78.0,55.0,70.0,62.0,50.0,63.0,43.0,64.0,59.0,55.0,35.0,36.0,39.0,38.0,32.0,29.0,30.0,34.0,23.0,27.0,27.0,13.0,5.0,11.0,8.0,13.0,9.0,12.0,4.0,5.0,5.0,5.0,6.0,1.0,,1.0,2.0,1.0 C82644,32.0,37.0,38.0,44.0,21.0,37.0,31.0,46.0,49.0,38.0,33.0,32.0,33.0,37.0,34.0,35.0,40.0,30.0,23.0,25.0,21.0,14.0,26.0,15.0,17.0,22.0,20.0,21.0,25.0,20.0,30.0,43.0,41.0,40.0,52.0,53.0,32.0,40.0,49.0,33.0,35.0,29.0,30.0,48.0,42.0,31.0,17.0,25.0,30.0,25.0,35.0,23.0,29.0,30.0,27.0,28.0,27.0,30.0,29.0,29.0,26.0,25.0,28.0,29.0,31.0,26.0,21.0,15.0,21.0,21.0,11.0,17.0,25.0,22.0,17.0,21.0,23.0,8.0,18.0,16.0,6.0,11.0,8.0,9.0,4.0,4.0,2.0,3.0,3.0,2.0,5.0,,1.0,1.0,3.0,3.0 C82649,24.0,21.0,38.0,25.0,17.0,31.0,22.0,29.0,31.0,34.0,28.0,34.0,37.0,33.0,28.0,27.0,25.0,34.0,30.0,23.0,20.0,18.0,18.0,23.0,18.0,19.0,21.0,14.0,19.0,20.0,14.0,28.0,28.0,21.0,25.0,22.0,18.0,24.0,23.0,27.0,23.0,27.0,36.0,29.0,26.0,36.0,32.0,22.0,26.0,29.0,34.0,31.0,29.0,37.0,44.0,41.0,39.0,44.0,42.0,51.0,29.0,52.0,55.0,44.0,41.0,51.0,48.0,42.0,49.0,38.0,35.0,30.0,33.0,42.0,42.0,30.0,41.0,33.0,40.0,31.0,35.0,29.0,24.0,19.0,24.0,16.0,10.0,11.0,13.0,10.0,9.0,3.0,3.0,2.0,, C82650,19.0,28.0,32.0,28.0,23.0,34.0,29.0,20.0,31.0,39.0,47.0,47.0,52.0,43.0,36.0,34.0,39.0,33.0,37.0,29.0,34.0,27.0,18.0,18.0,20.0,23.0,21.0,17.0,24.0,31.0,15.0,28.0,24.0,38.0,25.0,41.0,31.0,32.0,35.0,33.0,26.0,36.0,42.0,30.0,40.0,25.0,34.0,35.0,42.0,40.0,30.0,34.0,46.0,24.0,38.0,48.0,43.0,40.0,44.0,21.0,37.0,36.0,24.0,33.0,33.0,34.0,25.0,27.0,35.0,22.0,19.0,18.0,34.0,24.0,19.0,26.0,32.0,22.0,22.0,14.0,25.0,15.0,12.0,11.0,12.0,8.0,13.0,8.0,4.0,9.0,4.0,2.0,2.0,,,2.0 C82651,15.0,15.0,10.0,18.0,15.0,25.0,22.0,16.0,23.0,18.0,21.0,30.0,20.0,19.0,25.0,22.0,22.0,28.0,26.0,19.0,29.0,31.0,32.0,33.0,32.0,23.0,35.0,23.0,35.0,37.0,31.0,35.0,27.0,32.0,28.0,31.0,35.0,35.0,37.0,26.0,40.0,27.0,35.0,33.0,28.0,35.0,26.0,29.0,32.0,24.0,28.0,22.0,29.0,23.0,20.0,29.0,23.0,14.0,23.0,17.0,11.0,22.0,21.0,24.0,28.0,24.0,24.0,22.0,24.0,19.0,16.0,17.0,21.0,16.0,20.0,12.0,9.0,11.0,6.0,15.0,7.0,7.0,5.0,3.0,6.0,5.0,7.0,7.0,4.0,5.0,,3.0,1.0,,,1.0 C82653,11.0,9.0,11.0,16.0,18.0,10.0,13.0,9.0,9.0,10.0,18.0,8.0,14.0,7.0,9.0,12.0,8.0,8.0,8.0,10.0,9.0,11.0,16.0,17.0,10.0,28.0,28.0,19.0,18.0,24.0,17.0,18.0,31.0,35.0,33.0,41.0,34.0,27.0,28.0,32.0,29.0,26.0,20.0,24.0,27.0,14.0,21.0,9.0,18.0,17.0,14.0,7.0,12.0,15.0,11.0,13.0,7.0,11.0,10.0,9.0,10.0,11.0,10.0,10.0,6.0,5.0,6.0,5.0,5.0,4.0,8.0,3.0,2.0,3.0,1.0,3.0,1.0,6.0,2.0,2.0,3.0,4.0,3.0,1.0,1.0,,1.0,1.0,1.0,,1.0,,,,, C82656,12.0,26.0,22.0,23.0,17.0,11.0,17.0,15.0,16.0,10.0,12.0,16.0,23.0,29.0,13.0,16.0,19.0,11.0,13.0,26.0,10.0,17.0,7.0,11.0,10.0,17.0,15.0,17.0,16.0,19.0,20.0,34.0,26.0,17.0,28.0,24.0,26.0,17.0,10.0,30.0,25.0,13.0,17.0,25.0,27.0,16.0,17.0,14.0,11.0,11.0,15.0,21.0,13.0,11.0,24.0,17.0,25.0,23.0,18.0,19.0,22.0,20.0,19.0,10.0,13.0,12.0,18.0,13.0,18.0,15.0,7.0,11.0,10.0,10.0,16.0,18.0,20.0,19.0,17.0,7.0,9.0,7.0,6.0,3.0,8.0,6.0,4.0,1.0,7.0,4.0,1.0,1.0,,2.0,1.0,1.0 C82659,17.0,19.0,11.0,21.0,21.0,14.0,19.0,14.0,11.0,17.0,19.0,16.0,20.0,13.0,24.0,15.0,27.0,27.0,23.0,17.0,21.0,25.0,20.0,27.0,29.0,37.0,26.0,27.0,27.0,37.0,26.0,43.0,23.0,27.0,25.0,29.0,23.0,21.0,26.0,22.0,19.0,18.0,29.0,30.0,33.0,30.0,24.0,24.0,28.0,23.0,18.0,25.0,28.0,18.0,16.0,29.0,12.0,22.0,23.0,10.0,17.0,11.0,14.0,12.0,12.0,19.0,9.0,11.0,12.0,10.0,6.0,5.0,7.0,9.0,5.0,5.0,7.0,3.0,6.0,7.0,2.0,2.0,5.0,1.0,1.0,1.0,,,,2.0,,1.0,1.0,,1.0, C82660,43.0,42.0,28.0,43.0,43.0,40.0,47.0,27.0,44.0,33.0,43.0,36.0,41.0,51.0,48.0,41.0,52.0,50.0,57.0,53.0,65.0,48.0,55.0,54.0,57.0,61.0,78.0,63.0,64.0,64.0,80.0,52.0,69.0,47.0,62.0,64.0,63.0,57.0,64.0,61.0,81.0,63.0,57.0,61.0,76.0,70.0,63.0,53.0,49.0,58.0,53.0,60.0,62.0,43.0,68.0,35.0,36.0,44.0,43.0,38.0,44.0,34.0,38.0,37.0,33.0,34.0,24.0,22.0,27.0,31.0,27.0,24.0,28.0,20.0,17.0,23.0,14.0,11.0,18.0,14.0,16.0,11.0,15.0,14.0,5.0,11.0,8.0,6.0,7.0,7.0,2.0,3.0,6.0,3.0,2.0,1.0 C82662,47.0,61.0,57.0,51.0,52.0,49.0,56.0,45.0,58.0,56.0,48.0,51.0,43.0,41.0,58.0,47.0,33.0,47.0,47.0,60.0,56.0,60.0,59.0,68.0,69.0,97.0,99.0,90.0,97.0,96.0,98.0,117.0,135.0,131.0,127.0,113.0,125.0,113.0,113.0,86.0,88.0,93.0,91.0,78.0,74.0,65.0,68.0,69.0,59.0,55.0,61.0,40.0,52.0,49.0,28.0,33.0,43.0,34.0,35.0,35.0,25.0,18.0,28.0,21.0,14.0,17.0,21.0,20.0,12.0,16.0,13.0,15.0,11.0,6.0,9.0,11.0,6.0,8.0,5.0,1.0,3.0,4.0,6.0,3.0,2.0,3.0,1.0,2.0,1.0,1.0,,1.0,2.0,,,1.0 C82667,36.0,51.0,47.0,52.0,60.0,54.0,54.0,30.0,54.0,60.0,57.0,71.0,54.0,58.0,49.0,66.0,56.0,56.0,55.0,63.0,68.0,61.0,73.0,65.0,74.0,62.0,63.0,52.0,62.0,67.0,66.0,64.0,61.0,63.0,52.0,59.0,47.0,62.0,50.0,60.0,60.0,55.0,63.0,50.0,63.0,64.0,61.0,46.0,44.0,55.0,61.0,44.0,44.0,49.0,48.0,50.0,40.0,41.0,37.0,34.0,48.0,46.0,45.0,33.0,42.0,43.0,33.0,36.0,27.0,26.0,28.0,24.0,20.0,18.0,25.0,20.0,15.0,9.0,17.0,13.0,8.0,9.0,10.0,4.0,7.0,10.0,5.0,7.0,6.0,5.0,1.0,3.0,1.0,1.0,1.0,3.0 C82669,24.0,22.0,31.0,27.0,29.0,23.0,23.0,36.0,31.0,29.0,25.0,31.0,27.0,21.0,20.0,28.0,32.0,37.0,29.0,34.0,25.0,28.0,20.0,23.0,18.0,17.0,24.0,31.0,28.0,29.0,42.0,32.0,35.0,33.0,37.0,35.0,44.0,40.0,34.0,27.0,43.0,38.0,40.0,42.0,39.0,25.0,37.0,28.0,27.0,38.0,22.0,23.0,29.0,21.0,19.0,29.0,26.0,31.0,21.0,22.0,19.0,21.0,27.0,20.0,16.0,29.0,14.0,16.0,22.0,14.0,15.0,17.0,5.0,7.0,4.0,14.0,7.0,10.0,7.0,7.0,10.0,6.0,7.0,3.0,4.0,2.0,3.0,1.0,2.0,,3.0,1.0,1.0,3.0,,1.0 C82670,,,,,,,,,,,,,,,,,,,2.0,7.0,6.0,9.0,11.0,15.0,17.0,20.0,15.0,18.0,24.0,23.0,23.0,24.0,20.0,24.0,27.0,28.0,19.0,24.0,23.0,25.0,23.0,23.0,22.0,25.0,27.0,19.0,25.0,18.0,18.0,12.0,17.0,17.0,19.0,15.0,8.0,8.0,8.0,2.0,5.0,8.0,5.0,4.0,2.0,,9.0,4.0,5.0,1.0,,,1.0,,1.0,,2.0,,,,1.0,1.0,,,,,,,,,,,,,,,, C82671,52.0,59.0,43.0,42.0,45.0,59.0,50.0,68.0,56.0,53.0,56.0,64.0,41.0,50.0,39.0,35.0,43.0,46.0,43.0,51.0,67.0,62.0,66.0,63.0,77.0,83.0,74.0,96.0,86.0,81.0,79.0,88.0,83.0,81.0,64.0,52.0,57.0,64.0,56.0,47.0,61.0,82.0,66.0,63.0,79.0,77.0,63.0,65.0,57.0,81.0,61.0,67.0,50.0,35.0,50.0,46.0,44.0,43.0,40.0,33.0,40.0,30.0,39.0,36.0,44.0,29.0,41.0,33.0,23.0,22.0,22.0,28.0,16.0,23.0,20.0,18.0,19.0,10.0,7.0,4.0,6.0,2.0,8.0,4.0,2.0,1.0,5.0,2.0,2.0,2.0,,2.0,,1.0,, C82676,44.0,59.0,53.0,34.0,48.0,60.0,41.0,60.0,56.0,64.0,58.0,68.0,60.0,46.0,45.0,69.0,59.0,63.0,62.0,37.0,46.0,56.0,46.0,54.0,33.0,46.0,39.0,33.0,58.0,43.0,49.0,36.0,41.0,44.0,44.0,54.0,50.0,53.0,61.0,59.0,62.0,63.0,49.0,50.0,66.0,54.0,63.0,43.0,41.0,42.0,52.0,57.0,45.0,48.0,41.0,46.0,24.0,34.0,34.0,38.0,30.0,34.0,34.0,30.0,41.0,19.0,26.0,24.0,39.0,27.0,24.0,28.0,21.0,20.0,23.0,21.0,14.0,19.0,22.0,16.0,13.0,12.0,11.0,13.0,11.0,12.0,10.0,4.0,6.0,12.0,3.0,5.0,4.0,4.0,1.0,2.0 C82678,18.0,17.0,19.0,31.0,24.0,33.0,26.0,26.0,43.0,28.0,36.0,43.0,46.0,44.0,35.0,33.0,27.0,31.0,30.0,33.0,33.0,34.0,43.0,29.0,31.0,40.0,37.0,38.0,37.0,37.0,32.0,45.0,37.0,46.0,41.0,43.0,36.0,38.0,35.0,54.0,49.0,43.0,50.0,51.0,40.0,65.0,40.0,38.0,48.0,33.0,31.0,34.0,36.0,42.0,41.0,41.0,32.0,23.0,38.0,36.0,35.0,39.0,29.0,32.0,32.0,32.0,34.0,33.0,25.0,21.0,27.0,27.0,25.0,27.0,23.0,23.0,21.0,29.0,24.0,19.0,22.0,14.0,8.0,16.0,12.0,18.0,11.0,9.0,7.0,4.0,5.0,3.0,1.0,2.0,3.0,3.0 C82680,20.0,21.0,21.0,19.0,13.0,18.0,28.0,18.0,31.0,21.0,26.0,42.0,23.0,37.0,40.0,22.0,36.0,39.0,28.0,29.0,39.0,30.0,43.0,35.0,35.0,37.0,46.0,36.0,49.0,51.0,44.0,35.0,35.0,39.0,40.0,43.0,29.0,34.0,22.0,50.0,34.0,40.0,26.0,34.0,40.0,29.0,30.0,38.0,27.0,31.0,30.0,38.0,34.0,36.0,40.0,20.0,42.0,31.0,25.0,33.0,30.0,36.0,33.0,31.0,22.0,25.0,30.0,26.0,18.0,17.0,23.0,14.0,24.0,18.0,20.0,22.0,16.0,19.0,20.0,21.0,8.0,11.0,11.0,10.0,7.0,9.0,10.0,4.0,8.0,1.0,6.0,7.0,1.0,5.0,,5.0 Y00137,158.0,178.0,161.0,212.0,187.0,224.0,232.0,214.0,237.0,237.0,263.0,243.0,264.0,243.0,230.0,244.0,240.0,222.0,222.0,250.0,239.0,262.0,237.0,250.0,242.0,233.0,260.0,220.0,257.0,214.0,236.0,241.0,225.0,225.0,255.0,241.0,254.0,258.0,254.0,257.0,233.0,293.0,253.0,209.0,229.0,222.0,251.0,200.0,234.0,210.0,208.0,209.0,195.0,222.0,210.0,189.0,207.0,196.0,188.0,185.0,194.0,174.0,181.0,154.0,191.0,177.0,148.0,130.0,144.0,135.0,109.0,126.0,109.0,92.0,103.0,83.0,92.0,108.0,106.0,61.0,57.0,60.0,57.0,37.0,47.0,40.0,40.0,34.0,28.0,19.0,18.0,21.0,16.0,21.0,10.0,28.0 Y00252,10.0,15.0,7.0,14.0,17.0,13.0,24.0,19.0,17.0,29.0,12.0,16.0,24.0,19.0,29.0,16.0,15.0,31.0,10.0,9.0,15.0,14.0,10.0,12.0,12.0,17.0,16.0,13.0,5.0,12.0,8.0,15.0,16.0,14.0,17.0,18.0,23.0,17.0,19.0,16.0,35.0,13.0,19.0,23.0,19.0,23.0,21.0,18.0,26.0,19.0,23.0,18.0,16.0,16.0,26.0,27.0,22.0,25.0,37.0,25.0,28.0,20.0,21.0,25.0,19.0,21.0,16.0,24.0,21.0,16.0,20.0,17.0,22.0,17.0,18.0,14.0,22.0,11.0,19.0,14.0,12.0,11.0,11.0,9.0,7.0,9.0,4.0,9.0,4.0,2.0,1.0,1.0,2.0,,1.0,1.0 Y00344,7.0,8.0,9.0,2.0,6.0,9.0,3.0,5.0,5.0,2.0,7.0,5.0,6.0,4.0,4.0,2.0,8.0,6.0,25.0,44.0,41.0,40.0,48.0,61.0,71.0,85.0,67.0,69.0,64.0,91.0,54.0,48.0,45.0,56.0,45.0,36.0,34.0,26.0,32.0,27.0,25.0,24.0,20.0,16.0,16.0,9.0,14.0,12.0,8.0,10.0,12.0,5.0,6.0,6.0,7.0,3.0,2.0,,3.0,4.0,2.0,1.0,2.0,2.0,3.0,1.0,4.0,1.0,1.0,,2.0,1.0,,,,,1.0,,,,,,,,,,1.0,,,,,,,,, Y02469,56.0,55.0,56.0,63.0,75.0,67.0,86.0,77.0,108.0,83.0,97.0,97.0,86.0,89.0,83.0,94.0,98.0,109.0,95.0,93.0,84.0,74.0,93.0,84.0,86.0,79.0,86.0,93.0,81.0,65.0,66.0,73.0,78.0,64.0,70.0,68.0,64.0,78.0,78.0,64.0,84.0,68.0,75.0,70.0,74.0,80.0,75.0,82.0,61.0,80.0,65.0,69.0,77.0,68.0,69.0,58.0,63.0,49.0,46.0,46.0,36.0,37.0,29.0,37.0,38.0,28.0,34.0,29.0,29.0,22.0,17.0,19.0,26.0,21.0,14.0,9.0,10.0,14.0,4.0,9.0,7.0,4.0,6.0,3.0,3.0,3.0,7.0,4.0,3.0,1.0,,,,,,1.0 Y02686,76.0,73.0,66.0,58.0,62.0,39.0,45.0,51.0,38.0,46.0,60.0,35.0,41.0,33.0,36.0,27.0,26.0,28.0,39.0,52.0,83.0,67.0,86.0,100.0,121.0,135.0,146.0,137.0,143.0,170.0,152.0,127.0,172.0,155.0,133.0,131.0,123.0,117.0,102.0,93.0,111.0,67.0,70.0,76.0,79.0,60.0,55.0,43.0,35.0,41.0,41.0,30.0,35.0,33.0,44.0,36.0,39.0,23.0,16.0,29.0,22.0,18.0,25.0,20.0,20.0,14.0,14.0,13.0,9.0,10.0,9.0,9.0,6.0,10.0,8.0,4.0,3.0,3.0,8.0,2.0,4.0,1.0,1.0,,2.0,,,,,1.0,1.0,,,1.0,, Y03584,,,,,,,,,,,,,,,,,,,,,,2.0,2.0,,2.0,2.0,2.0,1.0,1.0,2.0,1.0,4.0,2.0,3.0,1.0,3.0,1.0,4.0,5.0,4.0,5.0,2.0,3.0,2.0,3.0,4.0,,3.0,2.0,3.0,2.0,2.0,1.0,2.0,2.0,3.0,2.0,1.0,1.0,2.0,,,1.0,1.0,,,,2.0,,,,,,,1.0,,,,,,,,,,,,,,,,,,,,, Y05412,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,1.0,,1.0,,,1.0,,,,,,,,,,,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 G83001,50.0,58.0,53.0,67.0,56.0,56.0,65.0,63.0,65.0,87.0,68.0,82.0,93.0,76.0,88.0,85.0,79.0,85.0,79.0,54.0,58.0,42.0,67.0,64.0,65.0,67.0,73.0,64.0,69.0,54.0,74.0,80.0,73.0,78.0,79.0,87.0,104.0,95.0,77.0,115.0,87.0,97.0,83.0,94.0,93.0,111.0,128.0,118.0,98.0,75.0,85.0,71.0,79.0,79.0,115.0,78.0,72.0,78.0,78.0,98.0,65.0,70.0,63.0,62.0,68.0,60.0,52.0,57.0,45.0,57.0,49.0,43.0,36.0,29.0,39.0,53.0,50.0,47.0,47.0,25.0,35.0,37.0,12.0,21.0,24.0,17.0,14.0,10.0,10.0,8.0,7.0,2.0,2.0,2.0,4.0,2.0 G83002,59.0,33.0,44.0,56.0,68.0,53.0,68.0,67.0,63.0,63.0,78.0,72.0,73.0,83.0,62.0,71.0,58.0,73.0,53.0,44.0,45.0,44.0,58.0,69.0,54.0,55.0,57.0,50.0,55.0,48.0,67.0,60.0,62.0,66.0,74.0,75.0,82.0,72.0,74.0,70.0,94.0,70.0,84.0,90.0,93.0,68.0,80.0,76.0,72.0,57.0,62.0,63.0,52.0,58.0,72.0,61.0,65.0,50.0,65.0,54.0,58.0,58.0,49.0,55.0,45.0,47.0,50.0,40.0,51.0,40.0,39.0,49.0,32.0,41.0,35.0,27.0,31.0,32.0,40.0,24.0,19.0,15.0,29.0,14.0,19.0,15.0,15.0,10.0,5.0,8.0,8.0,5.0,8.0,3.0,2.0,7.0 G83004,53.0,45.0,51.0,71.0,72.0,71.0,60.0,83.0,64.0,93.0,91.0,104.0,76.0,97.0,85.0,95.0,60.0,90.0,78.0,71.0,70.0,79.0,66.0,74.0,59.0,67.0,60.0,62.0,63.0,67.0,59.0,75.0,73.0,71.0,68.0,72.0,79.0,67.0,79.0,69.0,93.0,78.0,84.0,89.0,92.0,93.0,89.0,88.0,85.0,71.0,93.0,77.0,77.0,79.0,84.0,92.0,89.0,97.0,87.0,97.0,97.0,94.0,90.0,74.0,78.0,69.0,85.0,78.0,50.0,86.0,68.0,63.0,48.0,79.0,55.0,84.0,57.0,69.0,86.0,60.0,45.0,41.0,49.0,41.0,25.0,42.0,27.0,25.0,21.0,20.0,15.0,15.0,11.0,8.0,3.0,8.0 G83006,84.0,83.0,68.0,85.0,74.0,94.0,63.0,90.0,91.0,106.0,96.0,80.0,110.0,119.0,83.0,105.0,102.0,101.0,98.0,63.0,74.0,83.0,60.0,74.0,74.0,84.0,86.0,101.0,83.0,81.0,103.0,99.0,110.0,102.0,99.0,122.0,129.0,119.0,111.0,121.0,121.0,131.0,127.0,121.0,122.0,131.0,107.0,93.0,85.0,110.0,89.0,82.0,87.0,100.0,84.0,84.0,94.0,84.0,113.0,108.0,109.0,111.0,108.0,100.0,86.0,88.0,71.0,73.0,59.0,56.0,60.0,59.0,72.0,57.0,56.0,55.0,72.0,66.0,54.0,53.0,52.0,38.0,42.0,33.0,32.0,27.0,24.0,29.0,39.0,23.0,16.0,12.0,7.0,2.0,7.0,12.0 G83009,47.0,47.0,65.0,73.0,62.0,68.0,72.0,73.0,66.0,88.0,72.0,79.0,79.0,69.0,91.0,67.0,81.0,79.0,65.0,55.0,58.0,67.0,59.0,56.0,55.0,58.0,59.0,53.0,57.0,56.0,62.0,60.0,58.0,70.0,66.0,59.0,63.0,86.0,91.0,74.0,104.0,95.0,98.0,88.0,98.0,88.0,92.0,77.0,105.0,65.0,83.0,72.0,81.0,77.0,80.0,69.0,77.0,64.0,71.0,72.0,84.0,91.0,68.0,72.0,75.0,57.0,61.0,54.0,53.0,50.0,51.0,40.0,44.0,42.0,32.0,42.0,42.0,40.0,31.0,33.0,33.0,16.0,15.0,20.0,19.0,16.0,21.0,20.0,12.0,11.0,8.0,4.0,7.0,,5.0,1.0 G83010,53.0,65.0,81.0,66.0,63.0,85.0,79.0,75.0,87.0,91.0,93.0,98.0,104.0,116.0,112.0,118.0,97.0,115.0,95.0,90.0,88.0,92.0,95.0,106.0,96.0,88.0,90.0,100.0,85.0,93.0,98.0,118.0,89.0,87.0,95.0,109.0,106.0,107.0,113.0,89.0,88.0,95.0,119.0,88.0,111.0,103.0,85.0,81.0,91.0,78.0,96.0,98.0,111.0,103.0,94.0,93.0,90.0,94.0,84.0,97.0,112.0,85.0,94.0,85.0,85.0,73.0,80.0,63.0,60.0,74.0,67.0,50.0,47.0,69.0,40.0,33.0,43.0,49.0,43.0,35.0,24.0,32.0,20.0,22.0,18.0,21.0,23.0,19.0,13.0,13.0,12.0,8.0,5.0,8.0,7.0,7.0 G83012,75.0,61.0,72.0,75.0,77.0,86.0,97.0,108.0,96.0,119.0,109.0,124.0,122.0,121.0,146.0,127.0,164.0,132.0,141.0,126.0,83.0,130.0,116.0,105.0,114.0,107.0,114.0,91.0,100.0,116.0,132.0,103.0,117.0,108.0,94.0,130.0,110.0,106.0,105.0,119.0,109.0,119.0,103.0,128.0,140.0,110.0,104.0,116.0,126.0,126.0,122.0,125.0,111.0,138.0,136.0,142.0,142.0,126.0,116.0,119.0,112.0,87.0,97.0,93.0,110.0,74.0,72.0,59.0,70.0,57.0,46.0,50.0,43.0,34.0,32.0,27.0,30.0,30.0,32.0,19.0,15.0,10.0,9.0,9.0,12.0,8.0,7.0,10.0,3.0,4.0,6.0,3.0,,2.0,3.0,1.0 G83013,35.0,37.0,36.0,31.0,28.0,50.0,28.0,37.0,36.0,41.0,41.0,38.0,45.0,45.0,51.0,48.0,39.0,46.0,38.0,26.0,28.0,25.0,33.0,29.0,48.0,49.0,60.0,50.0,66.0,66.0,71.0,70.0,71.0,84.0,81.0,74.0,72.0,66.0,65.0,67.0,86.0,81.0,53.0,63.0,68.0,76.0,74.0,76.0,69.0,62.0,66.0,64.0,52.0,59.0,44.0,43.0,49.0,41.0,41.0,48.0,47.0,39.0,37.0,36.0,37.0,36.0,36.0,29.0,27.0,24.0,16.0,16.0,26.0,20.0,26.0,25.0,25.0,22.0,17.0,14.0,9.0,18.0,11.0,18.0,7.0,11.0,12.0,7.0,1.0,5.0,7.0,1.0,1.0,1.0,3.0,1.0 G83015,22.0,35.0,37.0,49.0,55.0,39.0,54.0,49.0,51.0,44.0,40.0,60.0,53.0,54.0,66.0,52.0,68.0,58.0,55.0,43.0,47.0,39.0,53.0,32.0,42.0,43.0,57.0,58.0,49.0,47.0,56.0,68.0,59.0,69.0,59.0,51.0,64.0,75.0,67.0,49.0,75.0,72.0,58.0,52.0,60.0,70.0,63.0,49.0,43.0,59.0,47.0,39.0,56.0,49.0,50.0,48.0,39.0,40.0,44.0,40.0,38.0,45.0,44.0,44.0,45.0,32.0,25.0,22.0,25.0,35.0,24.0,22.0,35.0,16.0,26.0,18.0,22.0,20.0,30.0,14.0,10.0,17.0,11.0,13.0,14.0,8.0,10.0,6.0,10.0,11.0,4.0,3.0,1.0,1.0,4.0,7.0 G83016,68.0,66.0,59.0,69.0,62.0,53.0,81.0,68.0,45.0,57.0,53.0,43.0,46.0,35.0,39.0,43.0,44.0,45.0,35.0,35.0,38.0,41.0,36.0,48.0,73.0,77.0,116.0,105.0,118.0,143.0,143.0,134.0,147.0,163.0,179.0,155.0,179.0,168.0,143.0,164.0,129.0,150.0,143.0,139.0,115.0,121.0,94.0,90.0,82.0,85.0,72.0,77.0,65.0,47.0,58.0,65.0,63.0,49.0,60.0,44.0,54.0,54.0,47.0,49.0,43.0,49.0,48.0,35.0,34.0,28.0,19.0,24.0,23.0,13.0,29.0,21.0,23.0,21.0,28.0,14.0,16.0,14.0,14.0,6.0,9.0,6.0,3.0,2.0,2.0,3.0,1.0,3.0,1.0,1.0,1.0, G83018,100.0,123.0,114.0,109.0,106.0,109.0,105.0,123.0,128.0,147.0,146.0,154.0,137.0,145.0,146.0,142.0,163.0,147.0,142.0,117.0,105.0,124.0,112.0,112.0,143.0,149.0,134.0,146.0,151.0,153.0,143.0,141.0,157.0,173.0,170.0,157.0,154.0,157.0,168.0,137.0,112.0,148.0,151.0,126.0,139.0,135.0,151.0,97.0,116.0,113.0,124.0,107.0,132.0,139.0,164.0,140.0,135.0,109.0,111.0,135.0,108.0,104.0,89.0,65.0,98.0,81.0,56.0,66.0,55.0,60.0,33.0,44.0,40.0,40.0,42.0,32.0,33.0,31.0,36.0,19.0,26.0,20.0,24.0,7.0,9.0,12.0,12.0,8.0,7.0,5.0,3.0,4.0,4.0,1.0,,2.0 G83019,71.0,77.0,89.0,94.0,75.0,108.0,95.0,99.0,100.0,101.0,97.0,90.0,102.0,102.0,99.0,93.0,95.0,112.0,90.0,87.0,92.0,80.0,87.0,94.0,96.0,93.0,89.0,120.0,114.0,119.0,102.0,109.0,110.0,109.0,120.0,124.0,121.0,152.0,116.0,129.0,127.0,90.0,127.0,127.0,127.0,114.0,102.0,94.0,97.0,82.0,93.0,93.0,101.0,113.0,84.0,94.0,92.0,103.0,108.0,106.0,100.0,86.0,105.0,101.0,98.0,77.0,81.0,72.0,65.0,76.0,59.0,72.0,61.0,55.0,56.0,50.0,42.0,43.0,36.0,29.0,37.0,33.0,29.0,20.0,20.0,30.0,13.0,6.0,14.0,6.0,6.0,5.0,1.0,3.0,4.0,5.0 G83021,94.0,96.0,125.0,125.0,86.0,100.0,95.0,105.0,113.0,103.0,92.0,115.0,103.0,97.0,96.0,67.0,77.0,74.0,79.0,56.0,60.0,68.0,76.0,73.0,96.0,125.0,136.0,163.0,172.0,173.0,192.0,203.0,215.0,213.0,232.0,248.0,230.0,250.0,241.0,206.0,222.0,222.0,176.0,188.0,174.0,182.0,171.0,131.0,118.0,115.0,111.0,103.0,105.0,92.0,107.0,98.0,84.0,68.0,77.0,64.0,82.0,77.0,65.0,76.0,65.0,60.0,68.0,51.0,38.0,33.0,45.0,27.0,30.0,36.0,20.0,34.0,26.0,33.0,33.0,25.0,25.0,15.0,11.0,13.0,6.0,13.0,13.0,8.0,8.0,4.0,6.0,6.0,4.0,1.0,2.0,3.0 G83024,15.0,25.0,24.0,21.0,16.0,32.0,37.0,28.0,36.0,38.0,38.0,34.0,36.0,44.0,31.0,36.0,33.0,27.0,20.0,19.0,33.0,19.0,21.0,31.0,26.0,33.0,25.0,19.0,29.0,27.0,26.0,24.0,32.0,26.0,43.0,35.0,30.0,38.0,39.0,28.0,37.0,39.0,32.0,45.0,49.0,46.0,38.0,33.0,39.0,29.0,30.0,24.0,21.0,26.0,20.0,30.0,41.0,24.0,29.0,27.0,38.0,28.0,24.0,29.0,26.0,34.0,29.0,27.0,25.0,24.0,17.0,16.0,24.0,10.0,24.0,21.0,17.0,25.0,17.0,15.0,12.0,12.0,12.0,8.0,9.0,4.0,7.0,5.0,2.0,4.0,5.0,4.0,6.0,1.0,2.0,2.0 G83025,42.0,29.0,56.0,60.0,49.0,50.0,41.0,54.0,56.0,55.0,67.0,69.0,71.0,68.0,75.0,66.0,67.0,80.0,67.0,61.0,60.0,64.0,49.0,76.0,68.0,83.0,66.0,72.0,77.0,67.0,79.0,91.0,77.0,88.0,75.0,64.0,80.0,84.0,62.0,90.0,84.0,71.0,85.0,75.0,74.0,67.0,61.0,64.0,77.0,60.0,66.0,49.0,58.0,63.0,77.0,84.0,74.0,85.0,82.0,76.0,86.0,88.0,68.0,87.0,74.0,65.0,70.0,77.0,64.0,52.0,52.0,48.0,48.0,46.0,55.0,50.0,51.0,58.0,52.0,31.0,37.0,27.0,25.0,31.0,20.0,22.0,19.0,18.0,11.0,13.0,7.0,10.0,6.0,1.0,6.0,8.0 G83026,43.0,44.0,45.0,54.0,52.0,53.0,49.0,51.0,81.0,52.0,62.0,61.0,74.0,62.0,77.0,71.0,62.0,59.0,73.0,58.0,62.0,65.0,54.0,55.0,62.0,69.0,73.0,70.0,73.0,56.0,75.0,70.0,78.0,73.0,85.0,84.0,79.0,71.0,80.0,74.0,74.0,90.0,106.0,67.0,74.0,63.0,66.0,60.0,47.0,56.0,50.0,52.0,52.0,45.0,52.0,54.0,48.0,57.0,44.0,38.0,52.0,52.0,40.0,25.0,31.0,28.0,31.0,33.0,25.0,26.0,17.0,18.0,20.0,11.0,11.0,10.0,15.0,13.0,3.0,7.0,2.0,9.0,5.0,5.0,5.0,7.0,5.0,6.0,2.0,5.0,2.0,1.0,2.0,1.0,,3.0 G83027,98.0,115.0,104.0,121.0,99.0,110.0,103.0,133.0,103.0,124.0,141.0,117.0,142.0,104.0,129.0,127.0,131.0,126.0,118.0,108.0,102.0,95.0,104.0,110.0,122.0,125.0,134.0,137.0,161.0,157.0,173.0,163.0,181.0,170.0,209.0,197.0,190.0,191.0,163.0,170.0,172.0,136.0,180.0,163.0,166.0,142.0,158.0,136.0,131.0,118.0,117.0,102.0,116.0,101.0,106.0,112.0,121.0,112.0,127.0,128.0,96.0,81.0,92.0,96.0,101.0,97.0,71.0,81.0,73.0,62.0,70.0,56.0,55.0,50.0,56.0,55.0,51.0,41.0,51.0,31.0,45.0,28.0,29.0,19.0,21.0,20.0,22.0,15.0,8.0,13.0,15.0,8.0,4.0,1.0,2.0,9.0 G83028,67.0,69.0,107.0,80.0,74.0,87.0,94.0,104.0,94.0,99.0,89.0,78.0,73.0,95.0,94.0,98.0,84.0,99.0,85.0,74.0,77.0,91.0,80.0,68.0,78.0,94.0,108.0,87.0,101.0,96.0,102.0,116.0,100.0,110.0,125.0,113.0,113.0,115.0,125.0,120.0,118.0,115.0,108.0,109.0,121.0,104.0,112.0,105.0,102.0,93.0,86.0,97.0,88.0,82.0,87.0,91.0,89.0,76.0,76.0,73.0,81.0,67.0,60.0,84.0,77.0,71.0,57.0,59.0,62.0,63.0,42.0,37.0,38.0,37.0,50.0,37.0,41.0,51.0,38.0,21.0,23.0,22.0,22.0,18.0,18.0,17.0,9.0,16.0,19.0,11.0,5.0,4.0,7.0,3.0,3.0,4.0 G83029,23.0,25.0,35.0,28.0,34.0,42.0,42.0,36.0,40.0,43.0,44.0,45.0,38.0,50.0,40.0,45.0,41.0,61.0,50.0,29.0,38.0,46.0,32.0,36.0,43.0,42.0,40.0,39.0,44.0,44.0,47.0,41.0,28.0,35.0,38.0,32.0,50.0,46.0,37.0,39.0,46.0,39.0,40.0,55.0,52.0,44.0,45.0,46.0,38.0,42.0,43.0,55.0,57.0,69.0,50.0,53.0,65.0,44.0,59.0,63.0,57.0,44.0,39.0,50.0,48.0,43.0,33.0,39.0,31.0,30.0,32.0,27.0,23.0,29.0,34.0,29.0,26.0,31.0,29.0,29.0,23.0,23.0,15.0,19.0,15.0,21.0,20.0,10.0,17.0,12.0,8.0,4.0,10.0,3.0,7.0,7.0 G83030,43.0,35.0,45.0,57.0,49.0,44.0,40.0,46.0,38.0,44.0,49.0,44.0,41.0,41.0,48.0,40.0,41.0,44.0,42.0,39.0,39.0,39.0,42.0,36.0,42.0,57.0,43.0,51.0,55.0,56.0,46.0,65.0,46.0,51.0,51.0,56.0,49.0,58.0,64.0,55.0,61.0,55.0,58.0,53.0,47.0,47.0,54.0,56.0,47.0,52.0,36.0,44.0,42.0,27.0,43.0,40.0,38.0,45.0,31.0,36.0,34.0,43.0,43.0,38.0,38.0,30.0,22.0,22.0,23.0,17.0,19.0,16.0,9.0,17.0,12.0,8.0,14.0,12.0,23.0,4.0,10.0,7.0,10.0,5.0,6.0,10.0,1.0,2.0,3.0,2.0,2.0,2.0,3.0,1.0,1.0, G83031,35.0,30.0,29.0,37.0,27.0,30.0,40.0,46.0,48.0,42.0,42.0,59.0,51.0,61.0,51.0,67.0,62.0,55.0,60.0,49.0,46.0,44.0,48.0,48.0,50.0,66.0,50.0,56.0,53.0,62.0,54.0,60.0,55.0,55.0,60.0,73.0,59.0,64.0,76.0,58.0,57.0,41.0,51.0,40.0,51.0,61.0,33.0,40.0,43.0,43.0,51.0,41.0,40.0,47.0,54.0,48.0,54.0,42.0,55.0,41.0,48.0,51.0,44.0,31.0,36.0,52.0,50.0,36.0,27.0,36.0,23.0,25.0,28.0,18.0,25.0,13.0,19.0,26.0,19.0,17.0,5.0,5.0,10.0,9.0,,9.0,4.0,3.0,5.0,2.0,1.0,3.0,3.0,,,2.0 G83033,24.0,29.0,34.0,29.0,39.0,24.0,31.0,27.0,22.0,37.0,22.0,26.0,30.0,27.0,34.0,23.0,34.0,27.0,26.0,31.0,30.0,30.0,22.0,31.0,29.0,29.0,27.0,34.0,27.0,30.0,26.0,29.0,32.0,24.0,46.0,39.0,42.0,47.0,40.0,45.0,36.0,41.0,45.0,38.0,41.0,36.0,34.0,45.0,29.0,38.0,39.0,29.0,40.0,33.0,27.0,41.0,34.0,37.0,34.0,35.0,38.0,43.0,38.0,37.0,22.0,31.0,26.0,24.0,28.0,22.0,41.0,42.0,31.0,34.0,30.0,30.0,24.0,38.0,35.0,26.0,17.0,28.0,17.0,14.0,10.0,13.0,10.0,19.0,5.0,6.0,7.0,9.0,4.0,1.0,1.0,3.0 G83039,56.0,58.0,55.0,75.0,61.0,64.0,62.0,72.0,63.0,80.0,65.0,69.0,79.0,57.0,67.0,70.0,60.0,68.0,69.0,63.0,66.0,62.0,72.0,66.0,63.0,70.0,79.0,66.0,79.0,80.0,70.0,79.0,73.0,74.0,83.0,85.0,78.0,70.0,92.0,86.0,94.0,73.0,73.0,79.0,86.0,81.0,86.0,68.0,59.0,60.0,85.0,61.0,56.0,61.0,63.0,66.0,75.0,57.0,73.0,58.0,59.0,57.0,54.0,57.0,53.0,51.0,54.0,40.0,30.0,43.0,36.0,36.0,25.0,25.0,19.0,20.0,16.0,12.0,18.0,13.0,16.0,10.0,7.0,3.0,7.0,9.0,3.0,4.0,8.0,2.0,3.0,,1.0,,,2.0 G83044,67.0,49.0,74.0,76.0,62.0,62.0,84.0,90.0,87.0,79.0,99.0,86.0,86.0,97.0,88.0,78.0,78.0,69.0,74.0,78.0,66.0,78.0,65.0,75.0,84.0,85.0,91.0,107.0,108.0,98.0,114.0,103.0,117.0,111.0,123.0,129.0,119.0,121.0,130.0,116.0,115.0,124.0,131.0,108.0,107.0,103.0,80.0,88.0,77.0,105.0,86.0,78.0,70.0,74.0,90.0,82.0,91.0,72.0,59.0,70.0,63.0,52.0,49.0,64.0,57.0,43.0,58.0,36.0,43.0,36.0,38.0,36.0,32.0,34.0,26.0,24.0,20.0,30.0,21.0,19.0,14.0,15.0,13.0,12.0,8.0,7.0,8.0,5.0,6.0,4.0,1.0,4.0,2.0,2.0,2.0,2.0 G83046,38.0,36.0,34.0,37.0,32.0,28.0,38.0,31.0,40.0,49.0,45.0,29.0,33.0,49.0,34.0,31.0,25.0,35.0,33.0,30.0,25.0,29.0,29.0,36.0,33.0,46.0,29.0,37.0,33.0,38.0,41.0,55.0,58.0,62.0,57.0,47.0,70.0,58.0,35.0,60.0,46.0,52.0,46.0,47.0,50.0,56.0,54.0,35.0,48.0,31.0,44.0,31.0,34.0,36.0,42.0,41.0,42.0,40.0,41.0,29.0,43.0,33.0,56.0,44.0,33.0,34.0,26.0,29.0,22.0,24.0,26.0,33.0,27.0,32.0,17.0,24.0,23.0,33.0,28.0,22.0,14.0,20.0,17.0,5.0,8.0,10.0,6.0,6.0,5.0,8.0,7.0,6.0,2.0,2.0,2.0, G83047,44.0,38.0,41.0,37.0,45.0,50.0,39.0,54.0,47.0,56.0,49.0,50.0,48.0,48.0,48.0,64.0,51.0,61.0,65.0,66.0,58.0,65.0,55.0,64.0,85.0,53.0,61.0,66.0,79.0,68.0,76.0,64.0,81.0,60.0,69.0,61.0,62.0,62.0,54.0,61.0,57.0,65.0,71.0,56.0,54.0,64.0,53.0,49.0,46.0,50.0,52.0,85.0,75.0,67.0,67.0,61.0,82.0,85.0,77.0,63.0,73.0,73.0,76.0,55.0,71.0,64.0,44.0,50.0,43.0,50.0,44.0,29.0,35.0,40.0,40.0,43.0,36.0,38.0,40.0,25.0,33.0,26.0,23.0,22.0,18.0,10.0,20.0,13.0,17.0,6.0,13.0,8.0,9.0,5.0,4.0,6.0 G83049,84.0,62.0,63.0,87.0,84.0,78.0,81.0,81.0,77.0,75.0,81.0,77.0,84.0,69.0,69.0,73.0,65.0,60.0,62.0,51.0,61.0,63.0,41.0,58.0,71.0,60.0,69.0,57.0,53.0,71.0,72.0,68.0,61.0,103.0,84.0,87.0,99.0,106.0,112.0,88.0,94.0,101.0,89.0,101.0,106.0,77.0,87.0,65.0,86.0,77.0,73.0,65.0,67.0,70.0,78.0,75.0,81.0,65.0,73.0,61.0,58.0,57.0,60.0,61.0,72.0,55.0,76.0,59.0,49.0,52.0,43.0,36.0,43.0,51.0,55.0,50.0,47.0,48.0,58.0,29.0,35.0,30.0,36.0,28.0,18.0,20.0,34.0,19.0,17.0,16.0,18.0,15.0,9.0,4.0,3.0,12.0 G83052,92.0,100.0,96.0,113.0,102.0,116.0,128.0,113.0,130.0,141.0,137.0,114.0,119.0,130.0,127.0,117.0,123.0,103.0,132.0,117.0,119.0,81.0,86.0,106.0,134.0,125.0,122.0,124.0,126.0,148.0,120.0,130.0,122.0,148.0,158.0,154.0,164.0,153.0,135.0,116.0,152.0,151.0,145.0,127.0,163.0,124.0,130.0,116.0,105.0,105.0,126.0,109.0,113.0,89.0,109.0,96.0,106.0,95.0,111.0,96.0,100.0,94.0,93.0,98.0,93.0,78.0,79.0,64.0,64.0,69.0,72.0,62.0,61.0,53.0,49.0,41.0,35.0,52.0,41.0,33.0,28.0,34.0,14.0,23.0,23.0,19.0,19.0,19.0,15.0,9.0,13.0,10.0,4.0,3.0,2.0,3.0 G83053,118.0,114.0,130.0,173.0,140.0,149.0,146.0,136.0,132.0,170.0,150.0,137.0,161.0,137.0,162.0,160.0,139.0,140.0,126.0,138.0,112.0,89.0,110.0,135.0,143.0,141.0,131.0,114.0,127.0,117.0,129.0,131.0,134.0,142.0,122.0,168.0,163.0,163.0,151.0,155.0,157.0,162.0,159.0,152.0,156.0,144.0,158.0,135.0,132.0,123.0,130.0,103.0,108.0,128.0,132.0,146.0,106.0,117.0,97.0,122.0,125.0,140.0,124.0,112.0,99.0,80.0,95.0,84.0,82.0,72.0,74.0,74.0,69.0,57.0,66.0,54.0,56.0,59.0,76.0,50.0,50.0,47.0,45.0,27.0,23.0,26.0,25.0,23.0,23.0,22.0,7.0,10.0,8.0,5.0,4.0,4.0 G83057,73.0,67.0,85.0,85.0,66.0,56.0,67.0,63.0,60.0,74.0,67.0,60.0,54.0,56.0,64.0,61.0,70.0,50.0,69.0,62.0,53.0,65.0,55.0,51.0,60.0,69.0,60.0,73.0,71.0,69.0,60.0,73.0,85.0,83.0,97.0,101.0,93.0,91.0,83.0,67.0,75.0,78.0,72.0,87.0,75.0,65.0,80.0,58.0,64.0,81.0,73.0,66.0,64.0,65.0,74.0,68.0,67.0,69.0,79.0,67.0,68.0,74.0,78.0,62.0,87.0,65.0,69.0,61.0,59.0,51.0,58.0,48.0,57.0,59.0,45.0,44.0,39.0,51.0,63.0,36.0,34.0,31.0,24.0,17.0,15.0,20.0,20.0,19.0,17.0,12.0,11.0,7.0,5.0,3.0,1.0,7.0 G83058,58.0,48.0,49.0,59.0,41.0,42.0,50.0,47.0,32.0,54.0,52.0,51.0,51.0,54.0,51.0,53.0,48.0,63.0,45.0,44.0,49.0,57.0,74.0,87.0,76.0,87.0,122.0,94.0,117.0,102.0,140.0,124.0,112.0,138.0,143.0,152.0,124.0,109.0,101.0,110.0,103.0,101.0,111.0,85.0,116.0,95.0,104.0,87.0,92.0,72.0,87.0,93.0,80.0,74.0,67.0,60.0,76.0,59.0,74.0,68.0,59.0,56.0,31.0,57.0,53.0,39.0,29.0,39.0,29.0,34.0,30.0,18.0,21.0,23.0,11.0,22.0,13.0,19.0,14.0,13.0,7.0,9.0,9.0,12.0,10.0,3.0,3.0,3.0,2.0,2.0,5.0,1.0,2.0,2.0,, G83060,35.0,50.0,34.0,33.0,33.0,39.0,52.0,37.0,53.0,45.0,46.0,49.0,61.0,66.0,59.0,45.0,53.0,73.0,67.0,61.0,69.0,45.0,50.0,60.0,53.0,59.0,56.0,85.0,68.0,71.0,44.0,68.0,71.0,70.0,56.0,63.0,60.0,61.0,73.0,68.0,54.0,67.0,65.0,50.0,53.0,46.0,50.0,59.0,55.0,36.0,55.0,49.0,57.0,50.0,51.0,56.0,52.0,60.0,57.0,46.0,48.0,52.0,48.0,37.0,44.0,40.0,35.0,34.0,36.0,33.0,27.0,22.0,24.0,15.0,19.0,15.0,13.0,16.0,15.0,13.0,13.0,8.0,12.0,5.0,8.0,6.0,1.0,2.0,4.0,1.0,1.0,,,,1.0,4.0 G83062,47.0,70.0,81.0,83.0,80.0,88.0,93.0,91.0,97.0,109.0,106.0,78.0,84.0,85.0,103.0,100.0,84.0,88.0,95.0,85.0,57.0,83.0,68.0,72.0,75.0,65.0,86.0,70.0,72.0,75.0,88.0,91.0,80.0,84.0,110.0,80.0,87.0,87.0,66.0,77.0,101.0,75.0,86.0,83.0,84.0,81.0,75.0,75.0,77.0,82.0,75.0,64.0,90.0,73.0,59.0,84.0,66.0,71.0,62.0,83.0,75.0,57.0,47.0,53.0,45.0,51.0,49.0,35.0,23.0,28.0,22.0,16.0,19.0,21.0,21.0,12.0,13.0,14.0,10.0,10.0,7.0,4.0,9.0,4.0,7.0,8.0,3.0,4.0,1.0,3.0,,3.0,1.0,2.0,, G83065,49.0,73.0,66.0,63.0,77.0,81.0,74.0,92.0,98.0,97.0,78.0,76.0,108.0,89.0,67.0,80.0,80.0,60.0,88.0,79.0,83.0,93.0,102.0,89.0,100.0,121.0,118.0,138.0,149.0,183.0,172.0,175.0,164.0,149.0,173.0,160.0,193.0,166.0,169.0,158.0,174.0,149.0,171.0,170.0,161.0,140.0,132.0,138.0,121.0,119.0,117.0,123.0,101.0,104.0,99.0,91.0,86.0,71.0,65.0,70.0,69.0,81.0,91.0,54.0,53.0,39.0,41.0,40.0,44.0,31.0,35.0,26.0,37.0,25.0,20.0,28.0,28.0,25.0,25.0,19.0,23.0,15.0,8.0,7.0,2.0,11.0,9.0,5.0,3.0,3.0,8.0,7.0,2.0,4.0,1.0,5.0 G83066,82.0,96.0,123.0,100.0,124.0,119.0,117.0,117.0,119.0,109.0,111.0,154.0,160.0,138.0,158.0,121.0,138.0,156.0,127.0,127.0,106.0,107.0,124.0,116.0,132.0,120.0,120.0,105.0,104.0,133.0,120.0,156.0,128.0,118.0,126.0,150.0,143.0,133.0,143.0,137.0,125.0,132.0,142.0,130.0,159.0,136.0,147.0,140.0,125.0,142.0,151.0,143.0,129.0,119.0,135.0,133.0,130.0,125.0,110.0,124.0,112.0,104.0,105.0,100.0,95.0,87.0,87.0,108.0,98.0,76.0,72.0,79.0,88.0,64.0,71.0,69.0,87.0,87.0,81.0,56.0,55.0,43.0,52.0,51.0,34.0,43.0,54.0,48.0,28.0,25.0,26.0,16.0,16.0,15.0,15.0,30.0 G83067,162.0,160.0,179.0,197.0,185.0,167.0,194.0,225.0,200.0,217.0,223.0,190.0,227.0,217.0,216.0,212.0,201.0,224.0,231.0,216.0,201.0,195.0,180.0,236.0,232.0,246.0,277.0,297.0,319.0,320.0,300.0,345.0,309.0,325.0,313.0,354.0,345.0,330.0,329.0,328.0,339.0,335.0,276.0,280.0,278.0,295.0,237.0,233.0,258.0,208.0,235.0,221.0,191.0,205.0,232.0,185.0,200.0,200.0,171.0,192.0,140.0,170.0,122.0,133.0,120.0,114.0,109.0,97.0,77.0,85.0,63.0,59.0,49.0,41.0,41.0,53.0,34.0,34.0,26.0,22.0,25.0,14.0,19.0,19.0,6.0,14.0,12.0,9.0,8.0,6.0,5.0,5.0,4.0,,,1.0 G83628,71.0,77.0,58.0,73.0,98.0,86.0,83.0,94.0,90.0,77.0,88.0,70.0,80.0,69.0,74.0,74.0,64.0,63.0,67.0,51.0,45.0,54.0,54.0,46.0,46.0,55.0,60.0,66.0,67.0,54.0,64.0,53.0,79.0,68.0,84.0,90.0,103.0,82.0,114.0,100.0,108.0,95.0,126.0,84.0,103.0,88.0,82.0,76.0,78.0,73.0,52.0,72.0,74.0,71.0,58.0,74.0,58.0,54.0,60.0,59.0,50.0,64.0,58.0,51.0,55.0,52.0,43.0,35.0,31.0,41.0,22.0,30.0,17.0,24.0,20.0,28.0,29.0,30.0,36.0,20.0,18.0,15.0,15.0,20.0,18.0,15.0,8.0,9.0,5.0,5.0,6.0,4.0,5.0,3.0,2.0,4.0 G83630,71.0,59.0,67.0,89.0,88.0,71.0,97.0,92.0,113.0,109.0,83.0,96.0,102.0,99.0,96.0,82.0,99.0,100.0,88.0,68.0,82.0,84.0,83.0,82.0,76.0,89.0,82.0,100.0,82.0,93.0,77.0,85.0,94.0,69.0,99.0,113.0,70.0,88.0,98.0,95.0,93.0,109.0,100.0,95.0,108.0,91.0,78.0,76.0,66.0,96.0,86.0,96.0,92.0,84.0,80.0,70.0,85.0,74.0,70.0,92.0,69.0,72.0,67.0,58.0,56.0,60.0,59.0,60.0,42.0,54.0,53.0,38.0,37.0,29.0,37.0,23.0,25.0,20.0,21.0,12.0,15.0,17.0,14.0,8.0,14.0,19.0,9.0,5.0,4.0,8.0,4.0,8.0,3.0,,1.0, G83631,27.0,33.0,31.0,23.0,26.0,24.0,24.0,26.0,27.0,33.0,38.0,31.0,38.0,32.0,30.0,39.0,36.0,34.0,30.0,45.0,38.0,32.0,51.0,52.0,51.0,38.0,36.0,50.0,55.0,47.0,40.0,49.0,42.0,44.0,43.0,48.0,44.0,46.0,43.0,54.0,49.0,42.0,32.0,33.0,35.0,33.0,46.0,36.0,36.0,42.0,36.0,24.0,25.0,30.0,45.0,32.0,28.0,38.0,34.0,36.0,24.0,25.0,26.0,27.0,26.0,24.0,20.0,18.0,13.0,15.0,18.0,12.0,16.0,15.0,8.0,4.0,11.0,4.0,9.0,7.0,8.0,8.0,7.0,2.0,3.0,3.0,,,1.0,1.0,1.0,,1.0,,,1.0 G83633,30.0,34.0,27.0,31.0,30.0,38.0,38.0,29.0,26.0,36.0,36.0,36.0,27.0,33.0,33.0,18.0,27.0,21.0,35.0,36.0,45.0,57.0,64.0,71.0,57.0,75.0,60.0,69.0,79.0,81.0,54.0,61.0,72.0,65.0,73.0,67.0,67.0,63.0,65.0,49.0,52.0,65.0,61.0,53.0,49.0,46.0,41.0,38.0,40.0,42.0,42.0,27.0,34.0,32.0,33.0,36.0,31.0,26.0,33.0,20.0,28.0,24.0,41.0,45.0,30.0,24.0,26.0,28.0,29.0,18.0,11.0,12.0,14.0,14.0,10.0,12.0,6.0,7.0,6.0,5.0,7.0,13.0,3.0,4.0,4.0,2.0,4.0,6.0,2.0,2.0,2.0,2.0,2.0,,1.0, G83635,20.0,22.0,31.0,30.0,14.0,19.0,19.0,23.0,18.0,25.0,20.0,26.0,28.0,19.0,21.0,27.0,27.0,24.0,22.0,36.0,23.0,17.0,31.0,26.0,25.0,33.0,30.0,35.0,31.0,39.0,37.0,33.0,37.0,39.0,31.0,37.0,35.0,45.0,45.0,29.0,46.0,37.0,35.0,32.0,28.0,27.0,43.0,25.0,18.0,26.0,36.0,30.0,20.0,22.0,40.0,29.0,40.0,38.0,37.0,34.0,30.0,30.0,30.0,37.0,28.0,31.0,24.0,18.0,20.0,12.0,28.0,22.0,17.0,14.0,22.0,17.0,11.0,21.0,12.0,7.0,13.0,11.0,9.0,9.0,5.0,4.0,5.0,4.0,3.0,4.0,2.0,,1.0,2.0,1.0,1.0 G83641,17.0,20.0,8.0,13.0,17.0,12.0,16.0,9.0,17.0,16.0,13.0,9.0,11.0,16.0,15.0,12.0,14.0,16.0,13.0,13.0,20.0,26.0,20.0,35.0,25.0,42.0,40.0,34.0,49.0,39.0,39.0,52.0,53.0,40.0,58.0,44.0,30.0,50.0,27.0,36.0,27.0,32.0,31.0,34.0,29.0,26.0,35.0,21.0,27.0,24.0,22.0,18.0,32.0,22.0,23.0,28.0,16.0,27.0,27.0,20.0,14.0,13.0,11.0,13.0,20.0,16.0,14.0,20.0,10.0,13.0,14.0,8.0,8.0,13.0,6.0,8.0,2.0,5.0,4.0,4.0,,3.0,5.0,1.0,2.0,2.0,3.0,1.0,1.0,,1.0,,,,, G83642,52.0,63.0,71.0,59.0,58.0,82.0,78.0,82.0,85.0,94.0,75.0,80.0,79.0,69.0,62.0,69.0,68.0,75.0,60.0,71.0,76.0,66.0,60.0,65.0,65.0,52.0,57.0,70.0,69.0,76.0,83.0,69.0,79.0,93.0,97.0,92.0,79.0,88.0,95.0,93.0,107.0,65.0,84.0,70.0,79.0,76.0,84.0,75.0,70.0,74.0,61.0,61.0,81.0,70.0,64.0,55.0,55.0,72.0,62.0,45.0,59.0,46.0,49.0,50.0,50.0,29.0,33.0,43.0,27.0,23.0,21.0,30.0,22.0,13.0,19.0,17.0,19.0,18.0,16.0,12.0,15.0,15.0,14.0,16.0,4.0,7.0,7.0,8.0,6.0,5.0,1.0,2.0,2.0,1.0,,2.0 G83647,53.0,46.0,41.0,38.0,36.0,42.0,40.0,35.0,42.0,45.0,46.0,55.0,62.0,39.0,57.0,47.0,54.0,45.0,51.0,49.0,66.0,61.0,62.0,40.0,63.0,79.0,65.0,86.0,65.0,62.0,68.0,81.0,64.0,73.0,80.0,85.0,64.0,77.0,77.0,78.0,63.0,68.0,60.0,70.0,52.0,62.0,66.0,64.0,50.0,54.0,50.0,70.0,43.0,50.0,50.0,54.0,38.0,44.0,43.0,46.0,59.0,47.0,46.0,41.0,60.0,32.0,26.0,34.0,19.0,30.0,28.0,17.0,24.0,14.0,10.0,10.0,14.0,10.0,19.0,11.0,17.0,10.0,3.0,9.0,6.0,8.0,5.0,6.0,6.0,4.0,1.0,4.0,1.0,,,1.0 G83651,16.0,24.0,18.0,25.0,28.0,28.0,29.0,28.0,28.0,38.0,35.0,33.0,29.0,19.0,27.0,33.0,38.0,24.0,33.0,32.0,32.0,26.0,31.0,44.0,46.0,39.0,56.0,50.0,72.0,63.0,65.0,63.0,62.0,72.0,63.0,74.0,68.0,73.0,54.0,50.0,70.0,53.0,56.0,54.0,55.0,57.0,55.0,49.0,49.0,47.0,28.0,39.0,39.0,45.0,51.0,23.0,32.0,38.0,36.0,30.0,37.0,31.0,29.0,31.0,23.0,28.0,18.0,24.0,29.0,20.0,21.0,18.0,19.0,15.0,15.0,17.0,8.0,13.0,13.0,8.0,7.0,5.0,9.0,1.0,5.0,8.0,6.0,4.0,3.0,1.0,3.0,3.0,3.0,1.0,,3.0 G83654,21.0,44.0,32.0,30.0,36.0,26.0,37.0,42.0,32.0,43.0,35.0,46.0,40.0,31.0,26.0,37.0,38.0,31.0,39.0,35.0,44.0,61.0,57.0,60.0,58.0,48.0,51.0,58.0,75.0,58.0,52.0,66.0,61.0,43.0,58.0,65.0,85.0,56.0,56.0,78.0,76.0,46.0,47.0,58.0,61.0,51.0,51.0,40.0,26.0,39.0,26.0,42.0,46.0,39.0,43.0,34.0,36.0,24.0,24.0,24.0,30.0,31.0,39.0,32.0,29.0,14.0,19.0,15.0,11.0,14.0,14.0,14.0,11.0,10.0,14.0,8.0,9.0,11.0,10.0,7.0,6.0,7.0,5.0,4.0,2.0,6.0,5.0,1.0,1.0,,2.0,,,1.0,, G83673,38.0,25.0,36.0,29.0,40.0,45.0,35.0,33.0,32.0,39.0,32.0,34.0,60.0,37.0,33.0,34.0,47.0,52.0,36.0,36.0,47.0,53.0,47.0,56.0,70.0,62.0,57.0,79.0,66.0,75.0,72.0,61.0,72.0,56.0,57.0,55.0,53.0,38.0,47.0,44.0,41.0,51.0,47.0,45.0,31.0,47.0,50.0,46.0,50.0,50.0,43.0,38.0,31.0,37.0,38.0,41.0,47.0,43.0,38.0,35.0,36.0,19.0,26.0,27.0,28.0,21.0,28.0,30.0,23.0,22.0,16.0,16.0,15.0,17.0,17.0,11.0,15.0,15.0,9.0,5.0,6.0,9.0,8.0,6.0,5.0,4.0,3.0,7.0,7.0,4.0,1.0,2.0,1.0,1.0,,2.0 G83680,101.0,132.0,135.0,155.0,165.0,150.0,162.0,189.0,180.0,179.0,162.0,174.0,176.0,175.0,191.0,150.0,180.0,167.0,162.0,129.0,137.0,151.0,128.0,154.0,154.0,143.0,143.0,139.0,162.0,167.0,147.0,150.0,175.0,179.0,170.0,196.0,217.0,197.0,199.0,206.0,230.0,213.0,229.0,200.0,225.0,215.0,192.0,184.0,181.0,169.0,184.0,166.0,173.0,157.0,146.0,159.0,158.0,157.0,138.0,139.0,141.0,144.0,134.0,108.0,120.0,119.0,92.0,120.0,107.0,85.0,96.0,103.0,82.0,84.0,89.0,86.0,85.0,104.0,85.0,66.0,65.0,49.0,58.0,41.0,37.0,25.0,43.0,25.0,18.0,29.0,12.0,9.0,12.0,5.0,3.0,16.0 G84001,61.0,62.0,66.0,61.0,75.0,75.0,83.0,77.0,87.0,91.0,74.0,75.0,66.0,74.0,84.0,78.0,68.0,80.0,72.0,57.0,58.0,53.0,58.0,62.0,73.0,78.0,64.0,61.0,71.0,82.0,82.0,92.0,93.0,81.0,79.0,98.0,102.0,109.0,93.0,115.0,105.0,100.0,126.0,108.0,97.0,123.0,105.0,120.0,77.0,83.0,124.0,105.0,100.0,91.0,105.0,89.0,94.0,116.0,95.0,97.0,95.0,75.0,89.0,61.0,80.0,73.0,56.0,49.0,68.0,58.0,53.0,47.0,47.0,44.0,44.0,49.0,50.0,59.0,53.0,43.0,41.0,23.0,28.0,21.0,16.0,21.0,22.0,13.0,20.0,11.0,8.0,4.0,9.0,7.0,3.0,3.0 G84002,54.0,80.0,77.0,82.0,81.0,88.0,82.0,90.0,89.0,67.0,93.0,84.0,71.0,82.0,63.0,72.0,61.0,79.0,57.0,59.0,51.0,46.0,48.0,48.0,53.0,61.0,63.0,78.0,77.0,78.0,92.0,94.0,104.0,101.0,132.0,118.0,138.0,136.0,145.0,150.0,134.0,141.0,120.0,142.0,152.0,119.0,106.0,93.0,86.0,88.0,95.0,89.0,80.0,87.0,91.0,65.0,64.0,71.0,78.0,78.0,72.0,71.0,65.0,57.0,61.0,56.0,50.0,51.0,41.0,43.0,40.0,35.0,44.0,34.0,26.0,24.0,34.0,40.0,46.0,20.0,36.0,23.0,20.0,11.0,20.0,13.0,14.0,16.0,11.0,7.0,8.0,10.0,2.0,7.0,4.0,3.0 G84003,51.0,60.0,70.0,71.0,82.0,70.0,77.0,74.0,84.0,101.0,64.0,76.0,92.0,89.0,76.0,90.0,76.0,82.0,95.0,79.0,68.0,69.0,63.0,76.0,73.0,63.0,71.0,89.0,91.0,73.0,80.0,77.0,70.0,94.0,95.0,88.0,100.0,90.0,113.0,103.0,90.0,85.0,102.0,91.0,78.0,93.0,91.0,99.0,69.0,84.0,78.0,67.0,66.0,77.0,81.0,76.0,65.0,81.0,53.0,65.0,81.0,67.0,63.0,51.0,77.0,53.0,57.0,47.0,61.0,32.0,42.0,43.0,35.0,27.0,31.0,35.0,24.0,33.0,30.0,27.0,25.0,13.0,11.0,9.0,16.0,12.0,10.0,5.0,8.0,9.0,5.0,3.0,4.0,4.0,2.0,6.0 G84004,28.0,37.0,44.0,33.0,28.0,54.0,56.0,48.0,39.0,35.0,44.0,58.0,46.0,55.0,65.0,65.0,65.0,48.0,65.0,50.0,57.0,39.0,53.0,48.0,57.0,51.0,52.0,52.0,61.0,51.0,45.0,46.0,45.0,49.0,44.0,45.0,46.0,43.0,52.0,67.0,48.0,42.0,58.0,45.0,54.0,60.0,53.0,46.0,54.0,53.0,62.0,58.0,65.0,55.0,63.0,61.0,71.0,72.0,72.0,76.0,78.0,84.0,68.0,57.0,59.0,64.0,70.0,58.0,67.0,51.0,48.0,54.0,54.0,56.0,47.0,66.0,56.0,67.0,74.0,48.0,39.0,55.0,41.0,30.0,32.0,38.0,27.0,24.0,30.0,12.0,9.0,7.0,10.0,7.0,6.0,14.0 G84005,18.0,22.0,29.0,30.0,26.0,36.0,25.0,28.0,37.0,32.0,29.0,40.0,27.0,28.0,37.0,37.0,30.0,40.0,30.0,36.0,28.0,27.0,27.0,30.0,30.0,28.0,33.0,45.0,40.0,32.0,29.0,28.0,26.0,31.0,37.0,44.0,35.0,31.0,33.0,36.0,32.0,35.0,26.0,29.0,32.0,28.0,28.0,33.0,24.0,27.0,35.0,21.0,37.0,27.0,40.0,33.0,42.0,42.0,32.0,31.0,37.0,41.0,32.0,22.0,43.0,26.0,21.0,22.0,27.0,18.0,20.0,24.0,17.0,13.0,14.0,19.0,15.0,23.0,20.0,17.0,20.0,13.0,18.0,11.0,16.0,14.0,9.0,7.0,9.0,5.0,4.0,5.0,3.0,5.0,2.0,1.0 G84006,26.0,32.0,26.0,40.0,25.0,35.0,35.0,38.0,52.0,50.0,51.0,60.0,61.0,67.0,75.0,60.0,64.0,79.0,69.0,49.0,61.0,53.0,60.0,43.0,65.0,57.0,54.0,54.0,54.0,58.0,48.0,45.0,47.0,49.0,44.0,46.0,42.0,58.0,40.0,43.0,43.0,44.0,40.0,42.0,53.0,51.0,48.0,69.0,50.0,58.0,58.0,72.0,66.0,84.0,64.0,62.0,65.0,64.0,77.0,88.0,70.0,74.0,84.0,71.0,70.0,69.0,64.0,50.0,46.0,54.0,57.0,42.0,37.0,57.0,44.0,52.0,63.0,60.0,48.0,38.0,45.0,35.0,28.0,17.0,24.0,24.0,21.0,13.0,15.0,11.0,22.0,14.0,7.0,18.0,4.0,12.0 G84007,31.0,39.0,40.0,39.0,41.0,58.0,44.0,42.0,56.0,57.0,55.0,55.0,70.0,58.0,56.0,66.0,65.0,63.0,61.0,60.0,52.0,61.0,45.0,52.0,46.0,50.0,55.0,45.0,49.0,44.0,44.0,47.0,35.0,55.0,46.0,54.0,43.0,45.0,62.0,46.0,43.0,50.0,61.0,50.0,48.0,48.0,43.0,55.0,54.0,57.0,50.0,47.0,76.0,47.0,59.0,48.0,58.0,49.0,71.0,41.0,57.0,70.0,44.0,75.0,42.0,45.0,32.0,42.0,30.0,29.0,34.0,31.0,36.0,22.0,30.0,26.0,27.0,36.0,34.0,21.0,24.0,23.0,12.0,20.0,10.0,15.0,18.0,6.0,9.0,8.0,4.0,2.0,8.0,3.0,3.0,6.0 G84008,30.0,37.0,44.0,29.0,34.0,34.0,31.0,27.0,34.0,22.0,35.0,21.0,23.0,26.0,32.0,25.0,25.0,28.0,30.0,29.0,25.0,17.0,15.0,21.0,26.0,30.0,29.0,31.0,41.0,38.0,41.0,46.0,51.0,52.0,61.0,56.0,48.0,39.0,44.0,54.0,51.0,52.0,50.0,60.0,49.0,49.0,60.0,59.0,51.0,64.0,39.0,44.0,48.0,51.0,54.0,45.0,44.0,39.0,43.0,39.0,61.0,51.0,43.0,30.0,36.0,38.0,37.0,24.0,22.0,26.0,20.0,35.0,17.0,21.0,19.0,30.0,30.0,19.0,23.0,32.0,14.0,17.0,12.0,8.0,5.0,13.0,12.0,5.0,5.0,6.0,2.0,1.0,,1.0,2.0,5.0 G84009,17.0,16.0,16.0,21.0,17.0,24.0,24.0,25.0,26.0,28.0,28.0,32.0,34.0,27.0,33.0,36.0,23.0,28.0,22.0,25.0,29.0,20.0,27.0,25.0,15.0,10.0,26.0,24.0,23.0,16.0,19.0,15.0,20.0,19.0,21.0,22.0,21.0,36.0,24.0,31.0,37.0,25.0,31.0,36.0,29.0,27.0,35.0,29.0,29.0,31.0,34.0,28.0,29.0,40.0,27.0,27.0,26.0,29.0,29.0,28.0,38.0,36.0,29.0,25.0,27.0,30.0,19.0,25.0,21.0,25.0,25.0,19.0,18.0,18.0,15.0,21.0,15.0,23.0,22.0,19.0,15.0,16.0,25.0,17.0,12.0,8.0,15.0,12.0,8.0,6.0,11.0,5.0,5.0,5.0,1.0,2.0 G84010,89.0,125.0,116.0,121.0,126.0,148.0,120.0,142.0,143.0,136.0,142.0,148.0,153.0,160.0,160.0,170.0,135.0,161.0,145.0,111.0,111.0,119.0,130.0,91.0,116.0,113.0,120.0,103.0,101.0,85.0,116.0,108.0,130.0,133.0,114.0,124.0,152.0,143.0,171.0,155.0,171.0,152.0,156.0,155.0,187.0,176.0,211.0,176.0,183.0,168.0,168.0,157.0,177.0,168.0,173.0,166.0,180.0,184.0,185.0,179.0,138.0,187.0,157.0,163.0,143.0,134.0,112.0,110.0,115.0,111.0,97.0,95.0,85.0,88.0,92.0,73.0,101.0,110.0,113.0,74.0,74.0,79.0,62.0,53.0,38.0,40.0,38.0,40.0,30.0,32.0,40.0,23.0,14.0,12.0,6.0,16.0 G84011,20.0,24.0,33.0,32.0,36.0,47.0,39.0,48.0,50.0,57.0,38.0,47.0,53.0,61.0,60.0,65.0,55.0,75.0,56.0,64.0,67.0,48.0,48.0,48.0,49.0,45.0,50.0,52.0,39.0,40.0,44.0,40.0,51.0,51.0,36.0,46.0,52.0,40.0,45.0,50.0,47.0,43.0,53.0,74.0,64.0,62.0,58.0,70.0,57.0,64.0,68.0,71.0,85.0,90.0,62.0,50.0,71.0,65.0,64.0,76.0,69.0,73.0,52.0,42.0,54.0,50.0,52.0,49.0,35.0,29.0,27.0,31.0,30.0,24.0,33.0,23.0,24.0,35.0,31.0,28.0,21.0,21.0,21.0,17.0,6.0,15.0,13.0,12.0,7.0,6.0,6.0,4.0,4.0,2.0,4.0,7.0 G84013,30.0,19.0,36.0,22.0,31.0,26.0,31.0,41.0,32.0,34.0,34.0,22.0,36.0,30.0,27.0,27.0,33.0,43.0,29.0,25.0,19.0,23.0,32.0,27.0,19.0,30.0,34.0,38.0,26.0,38.0,39.0,26.0,30.0,37.0,36.0,38.0,26.0,26.0,23.0,40.0,37.0,36.0,31.0,29.0,26.0,24.0,19.0,22.0,26.0,24.0,27.0,18.0,22.0,24.0,30.0,26.0,27.0,27.0,35.0,26.0,28.0,15.0,23.0,20.0,24.0,13.0,17.0,16.0,16.0,18.0,14.0,10.0,11.0,21.0,6.0,14.0,5.0,14.0,11.0,8.0,10.0,7.0,5.0,6.0,9.0,4.0,5.0,2.0,1.0,2.0,3.0,1.0,,1.0,1.0,6.0 G84015,18.0,30.0,26.0,42.0,31.0,36.0,40.0,52.0,35.0,60.0,54.0,61.0,67.0,67.0,70.0,64.0,66.0,79.0,76.0,71.0,67.0,66.0,58.0,64.0,68.0,63.0,64.0,66.0,71.0,56.0,61.0,66.0,49.0,52.0,66.0,57.0,58.0,51.0,55.0,49.0,48.0,58.0,48.0,57.0,53.0,59.0,64.0,64.0,65.0,68.0,81.0,71.0,73.0,85.0,78.0,69.0,70.0,75.0,87.0,80.0,103.0,103.0,79.0,89.0,82.0,71.0,85.0,72.0,71.0,57.0,52.0,57.0,62.0,62.0,66.0,51.0,74.0,62.0,54.0,46.0,38.0,40.0,35.0,25.0,28.0,24.0,19.0,14.0,18.0,14.0,6.0,13.0,9.0,1.0,9.0,11.0 G84016,44.0,70.0,45.0,66.0,65.0,63.0,72.0,74.0,68.0,92.0,64.0,85.0,92.0,88.0,91.0,83.0,84.0,78.0,72.0,75.0,54.0,53.0,67.0,66.0,56.0,68.0,81.0,71.0,74.0,72.0,71.0,75.0,89.0,72.0,75.0,81.0,86.0,89.0,90.0,88.0,105.0,121.0,96.0,90.0,123.0,110.0,107.0,109.0,115.0,113.0,102.0,130.0,128.0,108.0,100.0,99.0,116.0,87.0,82.0,92.0,98.0,87.0,79.0,89.0,81.0,80.0,76.0,90.0,80.0,52.0,71.0,50.0,59.0,52.0,55.0,63.0,47.0,55.0,57.0,44.0,28.0,33.0,29.0,22.0,22.0,27.0,18.0,15.0,9.0,15.0,14.0,7.0,4.0,5.0,2.0,14.0 G84017,20.0,26.0,30.0,32.0,38.0,37.0,30.0,44.0,61.0,53.0,56.0,52.0,69.0,70.0,51.0,47.0,52.0,72.0,58.0,57.0,49.0,43.0,49.0,53.0,50.0,61.0,70.0,54.0,41.0,44.0,52.0,54.0,42.0,34.0,50.0,48.0,35.0,51.0,40.0,53.0,42.0,48.0,46.0,39.0,48.0,51.0,68.0,59.0,49.0,55.0,58.0,66.0,45.0,70.0,66.0,69.0,53.0,59.0,71.0,83.0,76.0,77.0,64.0,61.0,65.0,46.0,62.0,46.0,51.0,55.0,47.0,35.0,42.0,33.0,41.0,44.0,43.0,73.0,45.0,36.0,29.0,28.0,36.0,27.0,22.0,24.0,20.0,15.0,13.0,8.0,4.0,6.0,9.0,3.0,5.0,5.0 G84018,26.0,22.0,15.0,29.0,37.0,33.0,39.0,37.0,47.0,37.0,42.0,38.0,34.0,46.0,43.0,36.0,34.0,42.0,37.0,27.0,24.0,28.0,32.0,35.0,33.0,35.0,38.0,30.0,38.0,43.0,41.0,48.0,52.0,46.0,39.0,58.0,62.0,51.0,49.0,49.0,56.0,79.0,78.0,59.0,69.0,61.0,64.0,57.0,71.0,60.0,66.0,58.0,50.0,61.0,62.0,64.0,55.0,48.0,48.0,56.0,48.0,52.0,51.0,34.0,50.0,36.0,63.0,44.0,44.0,46.0,34.0,25.0,29.0,35.0,44.0,47.0,41.0,40.0,48.0,37.0,40.0,24.0,20.0,19.0,17.0,17.0,10.0,14.0,12.0,14.0,7.0,10.0,8.0,7.0,3.0,7.0 G84019,47.0,70.0,69.0,74.0,59.0,79.0,86.0,73.0,92.0,74.0,87.0,73.0,92.0,84.0,83.0,87.0,85.0,71.0,89.0,67.0,62.0,61.0,56.0,79.0,68.0,61.0,70.0,90.0,77.0,71.0,80.0,68.0,83.0,83.0,81.0,83.0,72.0,83.0,81.0,88.0,95.0,92.0,88.0,77.0,73.0,83.0,64.0,71.0,49.0,57.0,62.0,71.0,78.0,66.0,75.0,70.0,71.0,73.0,77.0,68.0,67.0,58.0,61.0,48.0,62.0,61.0,57.0,49.0,37.0,42.0,37.0,27.0,27.0,30.0,30.0,32.0,34.0,28.0,35.0,21.0,17.0,12.0,22.0,12.0,9.0,13.0,12.0,7.0,6.0,8.0,7.0,6.0,2.0,1.0,1.0,6.0 G84020,38.0,40.0,41.0,52.0,41.0,44.0,48.0,38.0,54.0,45.0,73.0,59.0,78.0,59.0,58.0,64.0,60.0,64.0,57.0,49.0,55.0,40.0,49.0,43.0,47.0,40.0,41.0,45.0,50.0,45.0,54.0,46.0,46.0,30.0,49.0,46.0,53.0,49.0,55.0,52.0,57.0,66.0,62.0,76.0,63.0,63.0,73.0,65.0,61.0,65.0,73.0,63.0,53.0,66.0,70.0,63.0,70.0,63.0,68.0,64.0,65.0,69.0,48.0,68.0,60.0,73.0,55.0,55.0,56.0,44.0,46.0,31.0,41.0,46.0,50.0,48.0,34.0,62.0,48.0,34.0,39.0,26.0,32.0,19.0,20.0,16.0,19.0,10.0,14.0,9.0,9.0,9.0,8.0,9.0,4.0,8.0 G84023,35.0,35.0,53.0,46.0,53.0,62.0,53.0,73.0,49.0,53.0,53.0,63.0,84.0,73.0,68.0,66.0,65.0,68.0,70.0,59.0,63.0,43.0,49.0,52.0,47.0,44.0,69.0,55.0,48.0,40.0,54.0,56.0,59.0,70.0,46.0,69.0,60.0,86.0,71.0,52.0,66.0,93.0,66.0,62.0,77.0,76.0,70.0,59.0,67.0,76.0,71.0,64.0,75.0,68.0,62.0,81.0,69.0,79.0,67.0,67.0,55.0,62.0,50.0,67.0,68.0,61.0,43.0,42.0,33.0,40.0,47.0,36.0,38.0,42.0,40.0,51.0,34.0,47.0,34.0,35.0,30.0,28.0,27.0,28.0,16.0,25.0,16.0,20.0,17.0,6.0,4.0,4.0,6.0,5.0,4.0,7.0 G84024,57.0,48.0,61.0,72.0,61.0,55.0,97.0,75.0,83.0,91.0,77.0,81.0,74.0,69.0,62.0,91.0,59.0,49.0,63.0,43.0,42.0,51.0,47.0,36.0,50.0,63.0,54.0,49.0,37.0,38.0,53.0,58.0,71.0,57.0,65.0,84.0,74.0,93.0,72.0,72.0,80.0,104.0,95.0,86.0,93.0,86.0,100.0,90.0,94.0,86.0,79.0,72.0,61.0,58.0,71.0,46.0,54.0,65.0,45.0,45.0,62.0,59.0,58.0,38.0,39.0,32.0,37.0,33.0,23.0,42.0,33.0,30.0,19.0,31.0,32.0,26.0,25.0,25.0,40.0,21.0,19.0,19.0,16.0,20.0,14.0,14.0,7.0,13.0,7.0,9.0,8.0,11.0,5.0,3.0,2.0,4.0 G84025,60.0,51.0,49.0,58.0,52.0,44.0,54.0,46.0,64.0,58.0,42.0,43.0,54.0,62.0,57.0,50.0,61.0,57.0,44.0,51.0,47.0,48.0,40.0,54.0,36.0,67.0,61.0,61.0,73.0,72.0,77.0,86.0,79.0,82.0,94.0,86.0,77.0,86.0,70.0,98.0,110.0,72.0,78.0,79.0,79.0,71.0,72.0,63.0,66.0,68.0,70.0,48.0,66.0,74.0,67.0,70.0,60.0,60.0,64.0,56.0,56.0,54.0,39.0,45.0,40.0,35.0,30.0,34.0,34.0,28.0,20.0,24.0,21.0,17.0,17.0,15.0,21.0,10.0,16.0,10.0,7.0,8.0,7.0,6.0,,4.0,3.0,3.0,4.0,4.0,2.0,1.0,,2.0,, G84027,143.0,129.0,117.0,148.0,128.0,139.0,117.0,149.0,133.0,121.0,101.0,142.0,126.0,134.0,125.0,148.0,116.0,114.0,90.0,94.0,83.0,75.0,77.0,84.0,99.0,85.0,89.0,99.0,99.0,86.0,96.0,136.0,133.0,139.0,147.0,191.0,156.0,159.0,156.0,167.0,197.0,179.0,163.0,150.0,178.0,163.0,189.0,182.0,156.0,181.0,161.0,152.0,138.0,148.0,157.0,141.0,118.0,130.0,106.0,131.0,89.0,117.0,107.0,118.0,106.0,102.0,97.0,115.0,85.0,81.0,71.0,64.0,61.0,67.0,74.0,60.0,59.0,51.0,72.0,51.0,41.0,40.0,34.0,35.0,20.0,28.0,18.0,17.0,13.0,9.0,15.0,11.0,16.0,7.0,1.0,11.0 G84028,39.0,39.0,27.0,39.0,42.0,37.0,36.0,51.0,26.0,38.0,37.0,33.0,39.0,30.0,45.0,38.0,54.0,42.0,33.0,33.0,31.0,32.0,17.0,21.0,27.0,40.0,26.0,42.0,51.0,54.0,72.0,46.0,63.0,60.0,50.0,52.0,59.0,65.0,53.0,52.0,58.0,64.0,61.0,46.0,49.0,49.0,52.0,47.0,48.0,49.0,30.0,35.0,42.0,43.0,30.0,41.0,50.0,43.0,43.0,48.0,44.0,40.0,53.0,47.0,42.0,50.0,42.0,36.0,35.0,31.0,34.0,24.0,29.0,21.0,28.0,29.0,25.0,19.0,26.0,14.0,11.0,21.0,13.0,16.0,16.0,10.0,7.0,14.0,12.0,5.0,9.0,9.0,6.0,5.0,3.0,5.0 G84029,14.0,15.0,9.0,21.0,14.0,16.0,16.0,19.0,16.0,23.0,15.0,16.0,19.0,19.0,15.0,21.0,29.0,21.0,38.0,28.0,25.0,18.0,24.0,14.0,31.0,22.0,26.0,26.0,25.0,40.0,27.0,32.0,18.0,31.0,30.0,34.0,36.0,27.0,22.0,22.0,23.0,29.0,30.0,30.0,27.0,19.0,34.0,30.0,36.0,32.0,27.0,25.0,35.0,29.0,25.0,37.0,26.0,34.0,36.0,28.0,40.0,33.0,34.0,22.0,29.0,29.0,28.0,25.0,18.0,13.0,18.0,12.0,12.0,14.0,11.0,15.0,19.0,15.0,7.0,15.0,12.0,6.0,12.0,8.0,3.0,4.0,5.0,10.0,4.0,3.0,1.0,2.0,,3.0,2.0,2.0 G84030,24.0,16.0,13.0,26.0,28.0,18.0,34.0,39.0,47.0,41.0,42.0,38.0,57.0,54.0,58.0,53.0,77.0,53.0,55.0,41.0,29.0,32.0,39.0,36.0,49.0,41.0,44.0,50.0,35.0,40.0,27.0,30.0,24.0,25.0,26.0,28.0,23.0,32.0,34.0,37.0,39.0,36.0,48.0,48.0,34.0,47.0,46.0,37.0,56.0,54.0,37.0,55.0,40.0,55.0,60.0,58.0,50.0,56.0,60.0,53.0,61.0,49.0,44.0,55.0,37.0,40.0,36.0,33.0,37.0,38.0,26.0,26.0,20.0,25.0,28.0,32.0,39.0,22.0,36.0,28.0,22.0,15.0,16.0,11.0,10.0,9.0,12.0,12.0,5.0,6.0,4.0,6.0,6.0,1.0,1.0,4.0 G84032,69.0,76.0,76.0,77.0,67.0,86.0,83.0,84.0,79.0,85.0,82.0,71.0,82.0,80.0,86.0,86.0,76.0,90.0,94.0,64.0,67.0,59.0,62.0,52.0,80.0,78.0,77.0,70.0,68.0,61.0,86.0,85.0,78.0,80.0,99.0,88.0,92.0,96.0,71.0,114.0,121.0,97.0,110.0,101.0,90.0,90.0,92.0,103.0,106.0,81.0,86.0,71.0,92.0,89.0,112.0,83.0,90.0,81.0,91.0,85.0,90.0,94.0,69.0,68.0,64.0,78.0,55.0,65.0,65.0,70.0,58.0,65.0,56.0,48.0,66.0,50.0,58.0,48.0,70.0,51.0,51.0,48.0,44.0,39.0,43.0,29.0,20.0,24.0,20.0,18.0,19.0,15.0,10.0,7.0,2.0,14.0 G84033,39.0,51.0,45.0,50.0,47.0,50.0,55.0,70.0,71.0,65.0,71.0,65.0,63.0,73.0,73.0,64.0,63.0,50.0,49.0,44.0,46.0,38.0,54.0,40.0,38.0,48.0,60.0,38.0,40.0,56.0,37.0,48.0,56.0,41.0,40.0,50.0,59.0,61.0,70.0,50.0,64.0,61.0,68.0,87.0,70.0,74.0,64.0,72.0,80.0,65.0,49.0,53.0,53.0,66.0,62.0,51.0,47.0,44.0,75.0,56.0,59.0,49.0,50.0,49.0,41.0,34.0,36.0,34.0,41.0,41.0,28.0,31.0,27.0,29.0,39.0,31.0,42.0,49.0,43.0,25.0,36.0,36.0,26.0,14.0,22.0,15.0,19.0,13.0,9.0,8.0,5.0,3.0,2.0,3.0,2.0,8.0 G84035,30.0,43.0,46.0,57.0,56.0,56.0,54.0,53.0,51.0,58.0,63.0,55.0,43.0,51.0,70.0,60.0,58.0,49.0,46.0,39.0,36.0,38.0,35.0,36.0,36.0,36.0,35.0,35.0,25.0,35.0,39.0,43.0,42.0,49.0,46.0,51.0,43.0,60.0,61.0,59.0,55.0,65.0,67.0,80.0,64.0,70.0,71.0,57.0,72.0,68.0,63.0,71.0,83.0,60.0,51.0,53.0,46.0,45.0,46.0,63.0,47.0,52.0,51.0,49.0,38.0,42.0,46.0,35.0,36.0,40.0,26.0,32.0,26.0,45.0,40.0,21.0,39.0,29.0,32.0,34.0,27.0,24.0,22.0,6.0,27.0,16.0,8.0,12.0,16.0,13.0,4.0,8.0,6.0,2.0,5.0,5.0 G84039,10.0,20.0,27.0,21.0,21.0,19.0,32.0,25.0,18.0,28.0,29.0,27.0,29.0,35.0,28.0,32.0,29.0,24.0,23.0,16.0,30.0,18.0,27.0,14.0,27.0,25.0,16.0,21.0,15.0,15.0,18.0,11.0,22.0,22.0,16.0,42.0,31.0,26.0,27.0,15.0,28.0,25.0,33.0,21.0,44.0,34.0,33.0,31.0,37.0,17.0,16.0,25.0,29.0,24.0,22.0,30.0,26.0,26.0,28.0,36.0,14.0,30.0,20.0,17.0,17.0,15.0,12.0,13.0,12.0,15.0,11.0,15.0,17.0,15.0,13.0,14.0,19.0,17.0,20.0,12.0,17.0,12.0,12.0,9.0,3.0,8.0,6.0,4.0,4.0,3.0,1.0,4.0,,1.0,1.0,1.0 G84040,44.0,56.0,56.0,91.0,68.0,63.0,109.0,94.0,95.0,101.0,92.0,79.0,83.0,76.0,80.0,74.0,68.0,46.0,56.0,42.0,40.0,29.0,48.0,38.0,53.0,40.0,36.0,57.0,42.0,45.0,49.0,52.0,55.0,60.0,70.0,74.0,84.0,91.0,70.0,104.0,89.0,111.0,114.0,95.0,93.0,106.0,98.0,80.0,80.0,86.0,89.0,83.0,80.0,83.0,80.0,66.0,68.0,48.0,61.0,50.0,55.0,58.0,51.0,55.0,35.0,49.0,56.0,46.0,46.0,40.0,35.0,35.0,34.0,29.0,32.0,45.0,41.0,35.0,37.0,33.0,34.0,18.0,24.0,15.0,11.0,13.0,14.0,16.0,15.0,15.0,7.0,3.0,3.0,3.0,2.0,3.0 G84041,13.0,18.0,25.0,31.0,26.0,18.0,32.0,39.0,27.0,22.0,27.0,43.0,38.0,49.0,29.0,35.0,38.0,36.0,28.0,31.0,30.0,34.0,24.0,26.0,26.0,28.0,30.0,26.0,29.0,42.0,19.0,40.0,26.0,31.0,39.0,37.0,35.0,25.0,35.0,43.0,41.0,43.0,34.0,45.0,40.0,24.0,41.0,34.0,38.0,30.0,18.0,37.0,25.0,26.0,37.0,30.0,26.0,28.0,23.0,31.0,21.0,28.0,17.0,23.0,15.0,15.0,20.0,17.0,6.0,7.0,10.0,12.0,11.0,6.0,9.0,8.0,6.0,7.0,6.0,6.0,6.0,3.0,5.0,9.0,3.0,3.0,2.0,1.0,3.0,,2.0,1.0,,2.0,,1.0 G84604,42.0,54.0,55.0,62.0,64.0,71.0,64.0,48.0,54.0,63.0,49.0,47.0,53.0,48.0,39.0,57.0,57.0,47.0,38.0,33.0,41.0,32.0,30.0,40.0,38.0,41.0,38.0,47.0,62.0,56.0,51.0,63.0,56.0,74.0,105.0,66.0,79.0,93.0,84.0,72.0,74.0,81.0,96.0,86.0,82.0,81.0,65.0,70.0,64.0,73.0,69.0,61.0,51.0,62.0,52.0,52.0,45.0,56.0,46.0,58.0,43.0,43.0,56.0,52.0,45.0,33.0,41.0,36.0,36.0,27.0,26.0,30.0,32.0,18.0,22.0,29.0,19.0,18.0,23.0,16.0,12.0,16.0,20.0,18.0,9.0,11.0,6.0,8.0,6.0,6.0,5.0,7.0,5.0,9.0,3.0,1.0 G84607,22.0,20.0,29.0,31.0,16.0,29.0,30.0,38.0,40.0,39.0,35.0,20.0,46.0,37.0,51.0,43.0,38.0,34.0,24.0,30.0,28.0,29.0,51.0,17.0,26.0,32.0,37.0,29.0,33.0,36.0,26.0,34.0,34.0,24.0,29.0,32.0,36.0,32.0,27.0,35.0,33.0,36.0,35.0,34.0,33.0,35.0,43.0,24.0,29.0,27.0,31.0,33.0,26.0,34.0,46.0,36.0,30.0,30.0,38.0,38.0,24.0,37.0,33.0,43.0,29.0,36.0,21.0,22.0,18.0,31.0,27.0,26.0,16.0,25.0,23.0,24.0,23.0,21.0,25.0,20.0,21.0,7.0,14.0,12.0,11.0,11.0,7.0,7.0,10.0,1.0,1.0,3.0,1.0,2.0,1.0,7.0 G84609,9.0,14.0,9.0,15.0,19.0,16.0,23.0,17.0,16.0,19.0,21.0,25.0,34.0,27.0,24.0,19.0,18.0,21.0,16.0,30.0,25.0,20.0,22.0,20.0,17.0,23.0,10.0,25.0,16.0,21.0,27.0,17.0,19.0,13.0,18.0,21.0,23.0,22.0,19.0,31.0,28.0,14.0,30.0,17.0,24.0,23.0,30.0,25.0,24.0,14.0,33.0,19.0,21.0,36.0,19.0,25.0,25.0,28.0,29.0,18.0,23.0,27.0,34.0,24.0,22.0,14.0,22.0,18.0,18.0,23.0,14.0,10.0,19.0,17.0,16.0,12.0,15.0,25.0,23.0,15.0,13.0,10.0,13.0,10.0,11.0,9.0,2.0,5.0,3.0,5.0,5.0,2.0,5.0,1.0,1.0,4.0 G84621,22.0,13.0,18.0,23.0,35.0,20.0,27.0,31.0,34.0,30.0,35.0,29.0,40.0,28.0,31.0,36.0,27.0,36.0,23.0,22.0,17.0,27.0,25.0,28.0,17.0,17.0,24.0,22.0,14.0,19.0,32.0,29.0,21.0,27.0,34.0,31.0,28.0,25.0,33.0,37.0,33.0,26.0,33.0,35.0,22.0,40.0,39.0,35.0,26.0,21.0,35.0,44.0,34.0,19.0,20.0,30.0,34.0,33.0,34.0,34.0,22.0,33.0,22.0,20.0,25.0,11.0,19.0,19.0,13.0,11.0,14.0,14.0,13.0,7.0,11.0,12.0,11.0,10.0,13.0,11.0,7.0,4.0,14.0,14.0,4.0,8.0,5.0,5.0,2.0,2.0,3.0,1.0,1.0,2.0,4.0,2.0 G84624,11.0,15.0,9.0,13.0,16.0,12.0,11.0,8.0,7.0,12.0,11.0,13.0,14.0,17.0,17.0,10.0,17.0,10.0,13.0,16.0,14.0,17.0,15.0,22.0,13.0,19.0,22.0,23.0,17.0,30.0,27.0,22.0,28.0,24.0,35.0,30.0,36.0,23.0,16.0,27.0,34.0,24.0,30.0,37.0,15.0,19.0,23.0,25.0,20.0,26.0,21.0,16.0,21.0,29.0,24.0,19.0,20.0,17.0,18.0,17.0,15.0,21.0,15.0,21.0,21.0,13.0,11.0,10.0,5.0,12.0,8.0,5.0,7.0,10.0,10.0,7.0,7.0,9.0,4.0,5.0,5.0,2.0,6.0,4.0,2.0,1.0,,4.0,2.0,1.0,2.0,,1.0,,, G84625,44.0,60.0,58.0,64.0,49.0,58.0,39.0,44.0,41.0,43.0,39.0,41.0,41.0,37.0,25.0,45.0,36.0,35.0,28.0,31.0,28.0,41.0,45.0,37.0,46.0,51.0,57.0,69.0,61.0,62.0,78.0,100.0,81.0,84.0,101.0,108.0,99.0,110.0,93.0,80.0,76.0,75.0,68.0,54.0,71.0,52.0,53.0,54.0,46.0,45.0,46.0,35.0,43.0,46.0,43.0,37.0,45.0,43.0,34.0,38.0,45.0,41.0,31.0,17.0,31.0,20.0,21.0,12.0,23.0,14.0,15.0,20.0,16.0,10.0,8.0,6.0,9.0,6.0,4.0,7.0,8.0,5.0,4.0,4.0,5.0,2.0,1.0,1.0,1.0,,1.0,,1.0,,, G84627,21.0,24.0,19.0,36.0,24.0,32.0,31.0,45.0,54.0,61.0,46.0,42.0,42.0,46.0,46.0,54.0,42.0,49.0,40.0,51.0,40.0,32.0,37.0,42.0,36.0,39.0,33.0,36.0,34.0,29.0,40.0,32.0,25.0,35.0,36.0,38.0,36.0,29.0,41.0,27.0,38.0,42.0,40.0,52.0,44.0,56.0,46.0,51.0,48.0,44.0,42.0,61.0,43.0,60.0,61.0,36.0,56.0,54.0,53.0,52.0,54.0,57.0,27.0,36.0,49.0,34.0,44.0,42.0,42.0,43.0,35.0,42.0,38.0,37.0,36.0,35.0,44.0,57.0,42.0,22.0,28.0,20.0,22.0,20.0,12.0,20.0,21.0,6.0,7.0,3.0,5.0,8.0,2.0,5.0,3.0,5.0 G84629,33.0,47.0,29.0,37.0,32.0,33.0,34.0,65.0,34.0,42.0,30.0,51.0,46.0,51.0,49.0,52.0,51.0,37.0,50.0,36.0,31.0,37.0,29.0,25.0,33.0,28.0,23.0,26.0,32.0,44.0,33.0,45.0,57.0,52.0,55.0,62.0,49.0,50.0,52.0,68.0,62.0,55.0,65.0,57.0,46.0,58.0,48.0,52.0,55.0,50.0,48.0,60.0,51.0,44.0,49.0,40.0,39.0,48.0,55.0,36.0,36.0,37.0,19.0,19.0,35.0,25.0,25.0,23.0,25.0,18.0,21.0,17.0,23.0,12.0,19.0,21.0,15.0,14.0,19.0,19.0,11.0,11.0,11.0,5.0,9.0,7.0,7.0,2.0,4.0,6.0,5.0,2.0,3.0,3.0,2.0,6.0 G84630,14.0,16.0,13.0,14.0,17.0,22.0,23.0,17.0,22.0,19.0,17.0,19.0,12.0,18.0,19.0,29.0,16.0,25.0,14.0,20.0,15.0,17.0,13.0,17.0,15.0,22.0,12.0,14.0,13.0,23.0,13.0,26.0,22.0,17.0,18.0,29.0,24.0,26.0,22.0,32.0,26.0,23.0,33.0,27.0,22.0,24.0,20.0,16.0,26.0,27.0,25.0,27.0,15.0,23.0,20.0,19.0,20.0,20.0,13.0,13.0,16.0,20.0,11.0,22.0,11.0,16.0,12.0,15.0,19.0,14.0,12.0,8.0,13.0,10.0,13.0,4.0,6.0,16.0,10.0,5.0,4.0,5.0,3.0,4.0,2.0,4.0,2.0,2.0,,,1.0,1.0,,,, G85001,35.0,49.0,46.0,53.0,37.0,52.0,46.0,63.0,51.0,57.0,69.0,75.0,75.0,76.0,59.0,83.0,73.0,63.0,58.0,45.0,40.0,45.0,49.0,45.0,58.0,48.0,56.0,67.0,68.0,79.0,77.0,91.0,86.0,99.0,89.0,77.0,79.0,82.0,74.0,81.0,73.0,75.0,91.0,103.0,82.0,98.0,87.0,68.0,69.0,75.0,64.0,74.0,82.0,80.0,58.0,54.0,71.0,59.0,77.0,52.0,55.0,69.0,68.0,71.0,47.0,68.0,47.0,51.0,54.0,39.0,45.0,43.0,33.0,42.0,39.0,38.0,36.0,31.0,19.0,20.0,20.0,14.0,18.0,7.0,15.0,13.0,13.0,13.0,2.0,5.0,4.0,2.0,,3.0,2.0,6.0 G85002,127.0,137.0,152.0,128.0,143.0,134.0,133.0,117.0,141.0,151.0,147.0,117.0,131.0,135.0,124.0,135.0,144.0,107.0,102.0,103.0,91.0,111.0,122.0,137.0,130.0,177.0,215.0,229.0,262.0,283.0,318.0,330.0,344.0,362.0,341.0,369.0,345.0,328.0,295.0,331.0,343.0,300.0,296.0,287.0,260.0,236.0,238.0,241.0,214.0,197.0,190.0,164.0,117.0,155.0,115.0,118.0,126.0,80.0,99.0,85.0,77.0,75.0,66.0,60.0,61.0,50.0,46.0,45.0,37.0,24.0,32.0,21.0,27.0,19.0,27.0,18.0,26.0,17.0,8.0,14.0,8.0,6.0,7.0,10.0,9.0,3.0,6.0,2.0,4.0,2.0,3.0,,3.0,,1.0,4.0 G85004,120.0,142.0,168.0,175.0,184.0,217.0,218.0,204.0,216.0,232.0,211.0,226.0,225.0,233.0,244.0,223.0,238.0,225.0,224.0,196.0,209.0,200.0,185.0,178.0,214.0,201.0,218.0,196.0,205.0,249.0,223.0,221.0,279.0,289.0,241.0,306.0,283.0,291.0,278.0,362.0,283.0,304.0,285.0,271.0,289.0,274.0,291.0,229.0,264.0,255.0,234.0,226.0,228.0,250.0,219.0,220.0,240.0,287.0,232.0,243.0,233.0,218.0,233.0,229.0,184.0,173.0,167.0,151.0,152.0,138.0,132.0,118.0,112.0,104.0,99.0,83.0,73.0,93.0,63.0,69.0,66.0,48.0,54.0,39.0,39.0,33.0,27.0,31.0,27.0,19.0,15.0,14.0,18.0,5.0,5.0,18.0 G85006,25.0,35.0,33.0,29.0,31.0,30.0,43.0,42.0,60.0,54.0,53.0,66.0,68.0,67.0,64.0,83.0,65.0,70.0,59.0,71.0,59.0,68.0,58.0,48.0,61.0,58.0,72.0,77.0,71.0,67.0,60.0,52.0,67.0,52.0,76.0,78.0,76.0,72.0,89.0,82.0,91.0,70.0,76.0,79.0,87.0,73.0,87.0,95.0,85.0,66.0,113.0,82.0,97.0,70.0,93.0,96.0,86.0,81.0,80.0,70.0,65.0,56.0,83.0,53.0,60.0,50.0,42.0,51.0,25.0,33.0,23.0,28.0,20.0,16.0,15.0,13.0,8.0,16.0,15.0,9.0,15.0,8.0,13.0,4.0,8.0,7.0,5.0,7.0,6.0,4.0,7.0,5.0,1.0,1.0,3.0,2.0 G85011,47.0,51.0,54.0,50.0,68.0,49.0,54.0,55.0,69.0,73.0,64.0,80.0,69.0,74.0,70.0,67.0,71.0,69.0,71.0,61.0,61.0,75.0,88.0,94.0,168.0,190.0,283.0,269.0,326.0,308.0,310.0,305.0,317.0,297.0,288.0,262.0,311.0,268.0,222.0,229.0,226.0,196.0,194.0,228.0,196.0,179.0,190.0,192.0,146.0,143.0,153.0,128.0,146.0,150.0,121.0,120.0,127.0,134.0,92.0,102.0,92.0,109.0,85.0,69.0,67.0,63.0,45.0,50.0,34.0,41.0,32.0,32.0,36.0,32.0,18.0,22.0,33.0,14.0,22.0,20.0,14.0,10.0,13.0,8.0,12.0,9.0,8.0,5.0,,3.0,3.0,3.0,4.0,1.0,1.0,4.0 G85013,22.0,36.0,24.0,27.0,23.0,32.0,28.0,35.0,41.0,37.0,45.0,44.0,46.0,41.0,48.0,49.0,42.0,52.0,54.0,41.0,49.0,44.0,47.0,60.0,39.0,62.0,87.0,87.0,79.0,92.0,92.0,96.0,114.0,102.0,90.0,114.0,101.0,108.0,76.0,85.0,84.0,104.0,83.0,75.0,74.0,74.0,95.0,87.0,65.0,66.0,47.0,58.0,69.0,77.0,85.0,68.0,75.0,61.0,81.0,61.0,59.0,54.0,67.0,65.0,56.0,50.0,55.0,41.0,45.0,31.0,30.0,32.0,32.0,19.0,19.0,17.0,19.0,23.0,16.0,7.0,9.0,17.0,10.0,6.0,7.0,7.0,6.0,9.0,5.0,4.0,5.0,1.0,,1.0,2.0,3.0 G85014,42.0,61.0,48.0,56.0,51.0,64.0,58.0,63.0,53.0,74.0,59.0,90.0,55.0,73.0,61.0,85.0,91.0,84.0,53.0,49.0,53.0,47.0,55.0,68.0,61.0,53.0,82.0,93.0,82.0,103.0,91.0,95.0,113.0,109.0,122.0,119.0,124.0,117.0,107.0,129.0,97.0,126.0,105.0,85.0,107.0,97.0,108.0,114.0,84.0,83.0,113.0,93.0,94.0,76.0,84.0,66.0,74.0,77.0,71.0,73.0,64.0,63.0,64.0,65.0,66.0,45.0,59.0,51.0,44.0,38.0,31.0,36.0,30.0,34.0,28.0,27.0,24.0,29.0,27.0,14.0,22.0,14.0,17.0,11.0,9.0,13.0,7.0,12.0,11.0,3.0,4.0,6.0,1.0,5.0,2.0,5.0 G85015,31.0,35.0,26.0,29.0,24.0,33.0,36.0,40.0,35.0,41.0,52.0,32.0,37.0,48.0,48.0,51.0,51.0,52.0,51.0,38.0,39.0,52.0,55.0,50.0,62.0,78.0,89.0,92.0,100.0,88.0,89.0,83.0,87.0,63.0,110.0,101.0,84.0,99.0,102.0,75.0,77.0,78.0,95.0,83.0,73.0,73.0,79.0,71.0,57.0,83.0,64.0,68.0,69.0,78.0,69.0,75.0,78.0,66.0,57.0,75.0,68.0,61.0,63.0,58.0,66.0,40.0,40.0,41.0,47.0,37.0,31.0,37.0,28.0,27.0,21.0,14.0,20.0,22.0,13.0,9.0,12.0,11.0,9.0,13.0,7.0,9.0,12.0,8.0,2.0,7.0,2.0,7.0,,4.0,,4.0 G85016,72.0,72.0,63.0,67.0,49.0,78.0,60.0,59.0,65.0,81.0,69.0,82.0,80.0,82.0,84.0,93.0,79.0,93.0,93.0,79.0,66.0,76.0,65.0,88.0,109.0,111.0,133.0,145.0,149.0,165.0,151.0,165.0,159.0,184.0,164.0,165.0,146.0,151.0,123.0,121.0,117.0,133.0,123.0,115.0,104.0,122.0,117.0,109.0,93.0,117.0,114.0,114.0,111.0,107.0,128.0,102.0,116.0,106.0,114.0,97.0,93.0,98.0,89.0,84.0,80.0,57.0,64.0,59.0,61.0,52.0,45.0,47.0,44.0,37.0,46.0,46.0,35.0,33.0,29.0,17.0,15.0,15.0,11.0,10.0,10.0,13.0,15.0,9.0,11.0,4.0,2.0,1.0,1.0,1.0,6.0,4.0 G85019,9.0,10.0,13.0,13.0,14.0,12.0,21.0,15.0,15.0,17.0,17.0,22.0,21.0,19.0,33.0,14.0,32.0,28.0,26.0,30.0,25.0,29.0,29.0,34.0,26.0,32.0,27.0,38.0,34.0,30.0,27.0,36.0,32.0,34.0,29.0,32.0,27.0,44.0,41.0,25.0,43.0,31.0,28.0,21.0,37.0,46.0,38.0,22.0,27.0,34.0,25.0,18.0,26.0,29.0,23.0,29.0,27.0,35.0,30.0,29.0,24.0,26.0,20.0,18.0,21.0,22.0,14.0,18.0,16.0,10.0,8.0,8.0,8.0,5.0,8.0,9.0,3.0,3.0,2.0,4.0,7.0,2.0,3.0,2.0,3.0,5.0,1.0,2.0,1.0,1.0,1.0,,1.0,2.0,, G85020,78.0,63.0,61.0,56.0,48.0,59.0,52.0,38.0,49.0,67.0,53.0,56.0,36.0,56.0,50.0,52.0,49.0,58.0,65.0,71.0,79.0,85.0,142.0,168.0,201.0,255.0,270.0,264.0,315.0,298.0,250.0,260.0,250.0,230.0,265.0,230.0,230.0,196.0,190.0,164.0,144.0,149.0,155.0,149.0,121.0,110.0,118.0,121.0,101.0,92.0,117.0,86.0,98.0,87.0,73.0,89.0,87.0,70.0,88.0,77.0,81.0,75.0,73.0,59.0,67.0,65.0,52.0,35.0,42.0,42.0,40.0,35.0,31.0,24.0,18.0,22.0,17.0,25.0,13.0,8.0,12.0,17.0,7.0,9.0,8.0,7.0,7.0,4.0,9.0,4.0,2.0,2.0,2.0,1.0,5.0,2.0 G85021,14.0,15.0,14.0,7.0,20.0,19.0,25.0,20.0,21.0,23.0,25.0,24.0,27.0,18.0,23.0,22.0,22.0,29.0,31.0,26.0,14.0,27.0,21.0,26.0,39.0,39.0,40.0,41.0,48.0,36.0,52.0,48.0,46.0,39.0,55.0,46.0,47.0,55.0,37.0,44.0,46.0,49.0,42.0,37.0,49.0,52.0,43.0,38.0,30.0,39.0,51.0,40.0,44.0,27.0,53.0,32.0,38.0,47.0,29.0,47.0,35.0,43.0,40.0,31.0,28.0,26.0,18.0,16.0,24.0,34.0,29.0,29.0,12.0,14.0,10.0,8.0,19.0,9.0,17.0,8.0,11.0,10.0,9.0,4.0,7.0,6.0,4.0,1.0,4.0,4.0,5.0,,2.0,2.0,1.0,5.0 G85022,53.0,57.0,60.0,53.0,59.0,68.0,59.0,68.0,81.0,83.0,62.0,88.0,95.0,89.0,99.0,97.0,91.0,108.0,116.0,106.0,107.0,107.0,82.0,115.0,123.0,129.0,116.0,127.0,127.0,150.0,139.0,122.0,129.0,138.0,116.0,133.0,137.0,124.0,117.0,120.0,107.0,121.0,105.0,109.0,118.0,104.0,117.0,122.0,138.0,121.0,119.0,124.0,110.0,125.0,121.0,119.0,122.0,132.0,127.0,111.0,107.0,100.0,101.0,76.0,67.0,85.0,86.0,67.0,53.0,49.0,49.0,44.0,48.0,57.0,37.0,38.0,32.0,37.0,35.0,32.0,21.0,18.0,24.0,14.0,12.0,11.0,16.0,7.0,7.0,6.0,8.0,5.0,4.0,4.0,4.0,4.0 G85023,87.0,79.0,66.0,83.0,87.0,85.0,70.0,88.0,67.0,63.0,73.0,78.0,61.0,72.0,79.0,50.0,50.0,54.0,58.0,72.0,59.0,65.0,66.0,76.0,97.0,108.0,136.0,167.0,181.0,167.0,186.0,173.0,203.0,193.0,213.0,215.0,169.0,210.0,159.0,181.0,209.0,181.0,140.0,157.0,135.0,153.0,112.0,125.0,92.0,106.0,109.0,86.0,81.0,75.0,71.0,78.0,65.0,67.0,66.0,55.0,62.0,69.0,58.0,47.0,50.0,57.0,39.0,47.0,36.0,30.0,28.0,36.0,38.0,23.0,22.0,20.0,12.0,21.0,13.0,12.0,14.0,12.0,16.0,5.0,10.0,7.0,5.0,9.0,3.0,7.0,6.0,3.0,4.0,4.0,1.0,4.0 G85024,49.0,59.0,59.0,66.0,69.0,73.0,87.0,69.0,81.0,94.0,91.0,88.0,101.0,107.0,87.0,102.0,98.0,97.0,82.0,96.0,78.0,82.0,87.0,88.0,92.0,82.0,78.0,106.0,100.0,101.0,99.0,138.0,114.0,127.0,110.0,108.0,120.0,129.0,113.0,131.0,118.0,123.0,129.0,104.0,143.0,134.0,130.0,121.0,115.0,122.0,107.0,105.0,90.0,94.0,111.0,96.0,106.0,98.0,106.0,87.0,130.0,86.0,104.0,76.0,86.0,71.0,85.0,63.0,67.0,60.0,51.0,65.0,48.0,40.0,45.0,32.0,33.0,38.0,43.0,31.0,25.0,11.0,19.0,22.0,18.0,14.0,22.0,18.0,12.0,6.0,10.0,5.0,5.0,4.0,2.0,1.0 G85025,46.0,40.0,50.0,37.0,34.0,36.0,35.0,37.0,40.0,41.0,53.0,39.0,50.0,42.0,51.0,47.0,51.0,56.0,51.0,44.0,33.0,55.0,71.0,86.0,138.0,158.0,203.0,224.0,213.0,223.0,206.0,220.0,206.0,154.0,181.0,155.0,139.0,168.0,140.0,144.0,149.0,108.0,108.0,102.0,110.0,95.0,89.0,95.0,97.0,92.0,85.0,74.0,64.0,74.0,79.0,68.0,79.0,75.0,80.0,63.0,76.0,81.0,62.0,47.0,52.0,41.0,36.0,30.0,38.0,29.0,25.0,23.0,21.0,21.0,13.0,20.0,12.0,20.0,12.0,12.0,4.0,8.0,13.0,2.0,4.0,2.0,2.0,8.0,4.0,3.0,2.0,2.0,,2.0,1.0,3.0 G85026,14.0,16.0,19.0,12.0,14.0,17.0,19.0,25.0,22.0,22.0,24.0,22.0,18.0,25.0,23.0,22.0,26.0,24.0,19.0,21.0,36.0,19.0,28.0,25.0,29.0,38.0,31.0,37.0,41.0,36.0,37.0,36.0,41.0,37.0,41.0,42.0,35.0,38.0,30.0,40.0,33.0,34.0,38.0,32.0,26.0,31.0,24.0,25.0,26.0,34.0,25.0,24.0,24.0,26.0,25.0,35.0,32.0,34.0,44.0,37.0,33.0,35.0,33.0,23.0,33.0,20.0,19.0,29.0,20.0,23.0,11.0,14.0,15.0,15.0,9.0,9.0,10.0,7.0,7.0,7.0,7.0,5.0,8.0,8.0,10.0,8.0,7.0,10.0,4.0,4.0,3.0,2.0,4.0,5.0,2.0,4.0 G85028,26.0,45.0,36.0,40.0,35.0,37.0,49.0,46.0,43.0,55.0,52.0,56.0,48.0,50.0,56.0,58.0,63.0,67.0,62.0,63.0,60.0,74.0,85.0,106.0,129.0,152.0,135.0,151.0,154.0,144.0,143.0,119.0,124.0,141.0,117.0,125.0,134.0,117.0,124.0,147.0,116.0,99.0,110.0,86.0,109.0,98.0,94.0,91.0,78.0,88.0,76.0,58.0,84.0,90.0,99.0,97.0,113.0,82.0,80.0,81.0,83.0,86.0,91.0,74.0,69.0,55.0,65.0,60.0,41.0,40.0,41.0,41.0,32.0,33.0,27.0,31.0,20.0,24.0,22.0,16.0,20.0,14.0,12.0,10.0,12.0,20.0,8.0,9.0,12.0,6.0,4.0,7.0,5.0,4.0,3.0,5.0 G85029,56.0,69.0,51.0,39.0,58.0,64.0,35.0,45.0,42.0,38.0,59.0,45.0,49.0,51.0,44.0,50.0,57.0,58.0,63.0,87.0,108.0,122.0,153.0,177.0,219.0,270.0,316.0,333.0,362.0,394.0,351.0,350.0,322.0,296.0,271.0,247.0,229.0,216.0,180.0,164.0,152.0,121.0,148.0,125.0,115.0,86.0,103.0,81.0,85.0,89.0,100.0,77.0,109.0,87.0,77.0,73.0,87.0,74.0,69.0,69.0,74.0,55.0,60.0,59.0,56.0,47.0,35.0,35.0,25.0,25.0,22.0,17.0,24.0,21.0,28.0,14.0,13.0,8.0,13.0,11.0,5.0,7.0,8.0,6.0,10.0,5.0,4.0,7.0,2.0,4.0,4.0,3.0,,,2.0,1.0 G85030,19.0,33.0,32.0,19.0,23.0,27.0,14.0,27.0,21.0,40.0,33.0,31.0,33.0,35.0,35.0,39.0,34.0,31.0,41.0,36.0,45.0,32.0,41.0,44.0,38.0,51.0,46.0,55.0,51.0,56.0,80.0,65.0,71.0,71.0,74.0,87.0,67.0,62.0,68.0,74.0,60.0,70.0,67.0,54.0,62.0,71.0,38.0,44.0,58.0,46.0,48.0,49.0,52.0,41.0,56.0,57.0,41.0,48.0,51.0,47.0,49.0,41.0,36.0,36.0,38.0,36.0,27.0,31.0,23.0,24.0,10.0,11.0,13.0,10.0,8.0,12.0,11.0,11.0,10.0,5.0,8.0,6.0,5.0,9.0,2.0,6.0,5.0,8.0,5.0,5.0,9.0,3.0,2.0,2.0,1.0,7.0 G85031,37.0,28.0,37.0,33.0,19.0,28.0,26.0,29.0,33.0,29.0,36.0,33.0,30.0,30.0,31.0,29.0,33.0,34.0,38.0,27.0,36.0,30.0,20.0,29.0,26.0,39.0,48.0,53.0,70.0,62.0,90.0,83.0,89.0,83.0,97.0,86.0,78.0,62.0,85.0,68.0,59.0,50.0,63.0,78.0,55.0,58.0,75.0,58.0,61.0,37.0,42.0,42.0,50.0,47.0,60.0,46.0,44.0,56.0,40.0,51.0,43.0,40.0,43.0,33.0,38.0,44.0,18.0,18.0,20.0,11.0,25.0,14.0,20.0,14.0,15.0,10.0,15.0,7.0,15.0,10.0,12.0,8.0,6.0,8.0,5.0,6.0,3.0,7.0,4.0,6.0,,1.0,3.0,3.0,2.0,4.0 G85032,60.0,49.0,66.0,70.0,61.0,76.0,62.0,81.0,63.0,61.0,47.0,80.0,64.0,83.0,72.0,81.0,70.0,82.0,62.0,59.0,74.0,77.0,86.0,72.0,98.0,97.0,71.0,93.0,68.0,104.0,85.0,81.0,77.0,83.0,92.0,105.0,94.0,102.0,91.0,99.0,107.0,99.0,98.0,84.0,93.0,92.0,107.0,69.0,77.0,81.0,87.0,74.0,72.0,85.0,93.0,85.0,81.0,88.0,66.0,74.0,97.0,66.0,91.0,68.0,72.0,57.0,71.0,60.0,52.0,37.0,48.0,34.0,36.0,26.0,27.0,31.0,34.0,30.0,25.0,16.0,18.0,24.0,21.0,12.0,9.0,12.0,11.0,10.0,9.0,2.0,6.0,8.0,4.0,2.0,3.0,6.0 G85034,251.0,246.0,319.0,292.0,251.0,277.0,338.0,308.0,309.0,355.0,358.0,380.0,390.0,354.0,403.0,382.0,387.0,381.0,388.0,396.0,414.0,407.0,509.0,473.0,548.0,642.0,731.0,790.0,789.0,833.0,800.0,785.0,805.0,839.0,893.0,856.0,860.0,814.0,840.0,851.0,825.0,815.0,779.0,735.0,727.0,679.0,669.0,564.0,576.0,588.0,564.0,553.0,542.0,502.0,537.0,510.0,534.0,511.0,475.0,496.0,495.0,458.0,443.0,410.0,400.0,362.0,312.0,283.0,264.0,240.0,220.0,189.0,155.0,140.0,136.0,107.0,118.0,122.0,120.0,92.0,84.0,57.0,50.0,50.0,39.0,39.0,48.0,31.0,29.0,34.0,20.0,15.0,8.0,7.0,7.0,9.0 G85038,246.0,234.0,252.0,244.0,246.0,277.0,291.0,329.0,358.0,318.0,262.0,336.0,330.0,287.0,318.0,311.0,264.0,274.0,288.0,286.0,253.0,255.0,221.0,245.0,292.0,328.0,347.0,356.0,364.0,399.0,434.0,465.0,484.0,504.0,514.0,476.0,520.0,494.0,521.0,446.0,502.0,490.0,521.0,485.0,478.0,482.0,477.0,433.0,424.0,392.0,406.0,367.0,379.0,370.0,377.0,349.0,367.0,319.0,364.0,328.0,325.0,291.0,265.0,249.0,252.0,227.0,210.0,201.0,148.0,162.0,125.0,123.0,109.0,107.0,101.0,100.0,91.0,96.0,85.0,73.0,73.0,73.0,45.0,51.0,48.0,33.0,50.0,40.0,26.0,27.0,22.0,19.0,12.0,11.0,6.0,16.0 G85039,95.0,97.0,100.0,98.0,110.0,123.0,115.0,122.0,107.0,132.0,125.0,148.0,121.0,127.0,127.0,118.0,141.0,142.0,121.0,102.0,105.0,83.0,101.0,95.0,102.0,114.0,107.0,105.0,126.0,117.0,111.0,128.0,137.0,141.0,159.0,169.0,146.0,144.0,164.0,153.0,148.0,152.0,160.0,145.0,136.0,153.0,152.0,158.0,143.0,144.0,168.0,133.0,146.0,136.0,135.0,135.0,134.0,128.0,127.0,128.0,113.0,115.0,104.0,87.0,92.0,80.0,84.0,71.0,57.0,41.0,62.0,54.0,59.0,50.0,49.0,43.0,42.0,50.0,61.0,34.0,41.0,28.0,30.0,30.0,18.0,25.0,10.0,17.0,12.0,7.0,4.0,4.0,5.0,8.0,2.0,6.0 G85040,78.0,72.0,81.0,69.0,66.0,51.0,61.0,54.0,49.0,56.0,53.0,48.0,57.0,40.0,54.0,57.0,52.0,36.0,49.0,51.0,57.0,64.0,74.0,87.0,103.0,130.0,174.0,187.0,222.0,235.0,210.0,251.0,251.0,232.0,256.0,217.0,218.0,193.0,176.0,155.0,135.0,140.0,117.0,108.0,107.0,80.0,93.0,97.0,75.0,86.0,70.0,65.0,67.0,69.0,62.0,62.0,58.0,54.0,68.0,56.0,51.0,51.0,56.0,45.0,53.0,44.0,34.0,24.0,29.0,23.0,23.0,21.0,14.0,22.0,10.0,8.0,17.0,9.0,11.0,6.0,4.0,5.0,7.0,6.0,10.0,8.0,14.0,5.0,4.0,3.0,4.0,1.0,2.0,,1.0, G85041,33.0,33.0,38.0,39.0,27.0,39.0,38.0,32.0,28.0,46.0,45.0,41.0,45.0,37.0,39.0,53.0,40.0,65.0,52.0,35.0,46.0,35.0,47.0,45.0,52.0,66.0,54.0,51.0,67.0,63.0,78.0,66.0,54.0,75.0,66.0,71.0,77.0,72.0,65.0,63.0,57.0,69.0,77.0,63.0,78.0,73.0,54.0,80.0,57.0,78.0,66.0,67.0,64.0,63.0,62.0,52.0,65.0,89.0,54.0,61.0,74.0,44.0,52.0,57.0,63.0,38.0,30.0,42.0,31.0,40.0,30.0,28.0,17.0,26.0,27.0,20.0,14.0,19.0,17.0,14.0,11.0,6.0,7.0,6.0,10.0,3.0,6.0,5.0,3.0,5.0,3.0,3.0,,1.0,,1.0 G85042,28.0,34.0,31.0,34.0,30.0,30.0,31.0,30.0,26.0,36.0,21.0,31.0,31.0,29.0,26.0,35.0,29.0,19.0,29.0,45.0,40.0,50.0,36.0,46.0,41.0,63.0,75.0,85.0,76.0,79.0,82.0,73.0,76.0,102.0,79.0,72.0,71.0,74.0,77.0,62.0,57.0,59.0,54.0,50.0,40.0,54.0,48.0,30.0,35.0,39.0,39.0,32.0,43.0,28.0,32.0,25.0,39.0,31.0,28.0,32.0,31.0,25.0,22.0,26.0,29.0,25.0,24.0,17.0,15.0,22.0,20.0,12.0,11.0,13.0,14.0,13.0,7.0,8.0,8.0,7.0,3.0,3.0,5.0,2.0,2.0,3.0,5.0,3.0,3.0,2.0,2.0,,,1.0,,1.0 G85044,31.0,22.0,27.0,33.0,27.0,32.0,27.0,24.0,27.0,28.0,33.0,24.0,27.0,20.0,25.0,21.0,28.0,33.0,33.0,25.0,23.0,34.0,26.0,32.0,32.0,37.0,36.0,37.0,53.0,45.0,60.0,55.0,61.0,54.0,63.0,64.0,48.0,47.0,44.0,58.0,47.0,50.0,70.0,35.0,32.0,45.0,46.0,47.0,47.0,47.0,64.0,36.0,34.0,35.0,34.0,37.0,47.0,28.0,38.0,46.0,38.0,51.0,45.0,32.0,28.0,13.0,27.0,19.0,17.0,30.0,13.0,22.0,24.0,18.0,13.0,17.0,11.0,17.0,13.0,12.0,7.0,7.0,7.0,7.0,9.0,7.0,4.0,4.0,3.0,5.0,1.0,1.0,,,2.0,2.0 G85045,30.0,22.0,22.0,36.0,26.0,18.0,27.0,32.0,24.0,38.0,28.0,27.0,36.0,42.0,33.0,24.0,33.0,42.0,38.0,20.0,34.0,35.0,31.0,29.0,63.0,69.0,90.0,98.0,109.0,98.0,83.0,93.0,89.0,90.0,102.0,83.0,78.0,94.0,113.0,73.0,87.0,62.0,94.0,85.0,97.0,70.0,50.0,69.0,59.0,60.0,63.0,55.0,54.0,51.0,60.0,44.0,61.0,54.0,60.0,53.0,73.0,57.0,53.0,40.0,32.0,43.0,33.0,34.0,38.0,31.0,20.0,16.0,26.0,14.0,28.0,15.0,18.0,15.0,17.0,11.0,7.0,11.0,10.0,7.0,9.0,10.0,7.0,5.0,4.0,3.0,1.0,3.0,1.0,1.0,1.0, G85046,61.0,58.0,74.0,70.0,68.0,67.0,71.0,66.0,73.0,71.0,75.0,75.0,55.0,57.0,64.0,78.0,59.0,63.0,63.0,42.0,31.0,32.0,39.0,27.0,52.0,64.0,48.0,73.0,74.0,78.0,74.0,94.0,95.0,109.0,88.0,118.0,102.0,105.0,96.0,122.0,110.0,114.0,124.0,108.0,116.0,130.0,112.0,121.0,108.0,118.0,117.0,92.0,92.0,86.0,99.0,84.0,71.0,73.0,80.0,59.0,58.0,68.0,67.0,76.0,62.0,42.0,52.0,50.0,44.0,42.0,30.0,39.0,24.0,33.0,34.0,29.0,35.0,38.0,34.0,28.0,41.0,27.0,19.0,18.0,16.0,11.0,13.0,14.0,11.0,10.0,9.0,4.0,3.0,5.0,4.0,6.0 G85047,76.0,114.0,86.0,91.0,88.0,86.0,61.0,88.0,65.0,69.0,67.0,49.0,66.0,65.0,44.0,56.0,54.0,56.0,45.0,50.0,33.0,49.0,50.0,58.0,63.0,91.0,93.0,87.0,97.0,89.0,100.0,135.0,123.0,139.0,138.0,182.0,134.0,137.0,128.0,125.0,116.0,138.0,103.0,113.0,133.0,120.0,101.0,89.0,82.0,98.0,84.0,76.0,82.0,73.0,72.0,70.0,70.0,56.0,59.0,54.0,56.0,45.0,42.0,37.0,40.0,32.0,33.0,28.0,20.0,20.0,18.0,14.0,16.0,15.0,20.0,14.0,8.0,15.0,19.0,10.0,9.0,8.0,7.0,4.0,8.0,6.0,7.0,7.0,5.0,,2.0,7.0,3.0,2.0,1.0,1.0 G85051,37.0,38.0,40.0,38.0,47.0,50.0,60.0,59.0,67.0,64.0,73.0,63.0,59.0,65.0,71.0,71.0,61.0,75.0,59.0,46.0,50.0,51.0,47.0,59.0,54.0,44.0,65.0,56.0,73.0,69.0,57.0,47.0,59.0,45.0,67.0,59.0,62.0,47.0,54.0,57.0,60.0,65.0,48.0,60.0,68.0,73.0,65.0,76.0,79.0,70.0,80.0,65.0,65.0,81.0,56.0,66.0,49.0,47.0,53.0,68.0,62.0,51.0,40.0,51.0,50.0,48.0,38.0,47.0,43.0,42.0,42.0,24.0,30.0,33.0,24.0,23.0,27.0,20.0,21.0,30.0,11.0,16.0,16.0,15.0,12.0,12.0,11.0,12.0,6.0,5.0,10.0,2.0,2.0,1.0,1.0,6.0 G85052,31.0,42.0,53.0,52.0,40.0,54.0,50.0,49.0,65.0,58.0,60.0,66.0,61.0,65.0,76.0,82.0,61.0,79.0,68.0,78.0,65.0,53.0,63.0,66.0,66.0,89.0,96.0,80.0,95.0,101.0,103.0,120.0,119.0,115.0,117.0,145.0,128.0,121.0,122.0,119.0,117.0,89.0,79.0,116.0,111.0,118.0,99.0,109.0,100.0,109.0,105.0,86.0,94.0,104.0,99.0,90.0,76.0,92.0,60.0,74.0,68.0,78.0,55.0,42.0,49.0,48.0,47.0,36.0,25.0,24.0,19.0,14.0,7.0,13.0,7.0,13.0,8.0,6.0,6.0,5.0,4.0,4.0,5.0,3.0,8.0,4.0,1.0,1.0,,2.0,1.0,2.0,2.0,,, G85053,67.0,51.0,50.0,68.0,50.0,61.0,73.0,78.0,89.0,80.0,80.0,78.0,76.0,84.0,87.0,95.0,73.0,79.0,98.0,105.0,117.0,119.0,132.0,165.0,171.0,202.0,226.0,217.0,267.0,263.0,306.0,286.0,302.0,346.0,357.0,354.0,350.0,349.0,309.0,337.0,339.0,267.0,270.0,307.0,254.0,271.0,237.0,231.0,201.0,165.0,174.0,191.0,163.0,177.0,190.0,163.0,195.0,173.0,125.0,139.0,135.0,119.0,120.0,104.0,108.0,83.0,96.0,96.0,77.0,69.0,52.0,61.0,53.0,38.0,41.0,30.0,27.0,27.0,32.0,18.0,20.0,13.0,16.0,12.0,12.0,10.0,7.0,5.0,6.0,6.0,7.0,1.0,2.0,4.0,3.0,3.0 G85054,21.0,25.0,28.0,25.0,27.0,28.0,28.0,27.0,31.0,32.0,28.0,36.0,32.0,41.0,37.0,32.0,46.0,38.0,47.0,47.0,47.0,48.0,43.0,56.0,41.0,58.0,83.0,65.0,75.0,67.0,87.0,74.0,97.0,92.0,85.0,91.0,85.0,87.0,57.0,74.0,76.0,70.0,77.0,68.0,55.0,72.0,62.0,60.0,67.0,46.0,75.0,52.0,62.0,59.0,81.0,54.0,62.0,54.0,64.0,65.0,56.0,66.0,60.0,47.0,51.0,59.0,37.0,28.0,32.0,34.0,38.0,27.0,25.0,23.0,29.0,30.0,18.0,28.0,23.0,18.0,16.0,6.0,14.0,10.0,4.0,9.0,9.0,10.0,3.0,5.0,4.0,4.0,5.0,1.0,1.0,2.0 G85057,61.0,63.0,70.0,63.0,62.0,71.0,55.0,67.0,102.0,86.0,93.0,72.0,103.0,122.0,98.0,110.0,103.0,103.0,97.0,110.0,83.0,94.0,91.0,79.0,84.0,105.0,73.0,78.0,99.0,78.0,96.0,100.0,83.0,71.0,91.0,86.0,101.0,100.0,120.0,109.0,96.0,95.0,112.0,104.0,92.0,92.0,91.0,86.0,90.0,77.0,77.0,78.0,75.0,73.0,90.0,75.0,82.0,106.0,98.0,90.0,70.0,71.0,72.0,83.0,54.0,47.0,54.0,51.0,49.0,44.0,37.0,38.0,26.0,25.0,40.0,30.0,19.0,28.0,22.0,23.0,14.0,31.0,18.0,18.0,18.0,11.0,16.0,11.0,9.0,13.0,2.0,8.0,5.0,5.0,,4.0 G85061,62.0,65.0,72.0,56.0,56.0,50.0,58.0,64.0,57.0,60.0,44.0,53.0,36.0,48.0,56.0,52.0,49.0,45.0,38.0,30.0,31.0,41.0,36.0,44.0,62.0,44.0,68.0,63.0,55.0,67.0,80.0,96.0,101.0,101.0,114.0,95.0,95.0,89.0,100.0,108.0,102.0,79.0,94.0,84.0,71.0,76.0,71.0,61.0,67.0,52.0,40.0,58.0,53.0,43.0,54.0,48.0,54.0,61.0,55.0,52.0,52.0,63.0,42.0,57.0,43.0,34.0,39.0,31.0,30.0,27.0,27.0,22.0,22.0,25.0,19.0,15.0,18.0,23.0,20.0,12.0,14.0,19.0,11.0,9.0,11.0,9.0,7.0,7.0,4.0,8.0,4.0,1.0,4.0,2.0,2.0,1.0 G85073,26.0,18.0,20.0,30.0,21.0,36.0,23.0,28.0,28.0,34.0,26.0,22.0,28.0,36.0,29.0,27.0,38.0,26.0,34.0,36.0,30.0,31.0,43.0,56.0,71.0,81.0,95.0,122.0,101.0,94.0,103.0,121.0,99.0,88.0,102.0,107.0,114.0,98.0,103.0,97.0,91.0,86.0,76.0,81.0,70.0,64.0,85.0,72.0,61.0,59.0,64.0,62.0,67.0,68.0,43.0,58.0,50.0,61.0,48.0,53.0,49.0,48.0,46.0,33.0,40.0,36.0,35.0,29.0,34.0,23.0,31.0,17.0,16.0,16.0,10.0,10.0,9.0,11.0,8.0,6.0,5.0,6.0,4.0,4.0,5.0,5.0,5.0,4.0,5.0,1.0,2.0,2.0,1.0,2.0,3.0,1.0 G85076,25.0,21.0,33.0,47.0,30.0,36.0,40.0,42.0,38.0,51.0,47.0,69.0,66.0,65.0,62.0,73.0,67.0,79.0,55.0,64.0,58.0,70.0,53.0,65.0,69.0,67.0,80.0,85.0,76.0,83.0,104.0,104.0,103.0,94.0,112.0,121.0,128.0,94.0,123.0,101.0,128.0,103.0,102.0,112.0,98.0,96.0,85.0,90.0,78.0,63.0,79.0,73.0,65.0,80.0,67.0,70.0,83.0,55.0,71.0,79.0,64.0,75.0,49.0,58.0,45.0,34.0,36.0,39.0,33.0,21.0,26.0,18.0,25.0,14.0,11.0,15.0,10.0,7.0,14.0,8.0,8.0,7.0,7.0,1.0,3.0,7.0,4.0,5.0,2.0,2.0,,4.0,,2.0,2.0,5.0 G85083,24.0,28.0,29.0,32.0,25.0,35.0,35.0,36.0,32.0,34.0,44.0,33.0,52.0,42.0,39.0,38.0,57.0,36.0,45.0,41.0,44.0,43.0,62.0,81.0,106.0,133.0,150.0,176.0,190.0,179.0,189.0,189.0,179.0,155.0,172.0,153.0,151.0,135.0,135.0,143.0,136.0,121.0,141.0,121.0,133.0,143.0,116.0,122.0,120.0,135.0,109.0,75.0,104.0,88.0,101.0,92.0,94.0,86.0,93.0,107.0,73.0,82.0,88.0,59.0,84.0,65.0,61.0,48.0,42.0,32.0,28.0,20.0,23.0,21.0,25.0,17.0,14.0,14.0,14.0,6.0,6.0,13.0,12.0,12.0,13.0,9.0,7.0,11.0,11.0,2.0,3.0,4.0,4.0,2.0,3.0,2.0 G85084,65.0,65.0,54.0,66.0,48.0,55.0,42.0,51.0,65.0,60.0,58.0,49.0,46.0,54.0,71.0,58.0,58.0,63.0,57.0,67.0,74.0,74.0,105.0,108.0,171.0,184.0,234.0,250.0,250.0,265.0,278.0,297.0,305.0,263.0,249.0,212.0,215.0,210.0,173.0,200.0,148.0,138.0,137.0,145.0,162.0,127.0,115.0,100.0,99.0,80.0,78.0,65.0,64.0,74.0,75.0,70.0,75.0,87.0,66.0,60.0,63.0,56.0,48.0,54.0,55.0,41.0,36.0,36.0,35.0,23.0,22.0,23.0,14.0,16.0,15.0,20.0,16.0,15.0,16.0,12.0,9.0,3.0,17.0,5.0,6.0,4.0,7.0,1.0,6.0,5.0,2.0,3.0,2.0,1.0,2.0,4.0 G85085,49.0,67.0,55.0,56.0,54.0,49.0,38.0,37.0,54.0,42.0,48.0,51.0,52.0,57.0,45.0,43.0,44.0,48.0,45.0,57.0,46.0,68.0,64.0,90.0,116.0,126.0,146.0,193.0,217.0,194.0,190.0,220.0,213.0,191.0,196.0,211.0,227.0,197.0,187.0,190.0,151.0,131.0,147.0,130.0,107.0,104.0,74.0,99.0,70.0,76.0,69.0,63.0,70.0,58.0,63.0,67.0,55.0,70.0,64.0,55.0,68.0,44.0,56.0,46.0,38.0,47.0,30.0,39.0,20.0,19.0,18.0,18.0,10.0,20.0,15.0,16.0,13.0,10.0,14.0,10.0,6.0,3.0,2.0,5.0,3.0,7.0,1.0,3.0,2.0,3.0,,2.0,2.0,1.0,, G85086,41.0,33.0,30.0,35.0,19.0,26.0,27.0,33.0,34.0,36.0,29.0,46.0,32.0,27.0,36.0,38.0,42.0,42.0,34.0,32.0,44.0,51.0,64.0,78.0,99.0,127.0,183.0,171.0,139.0,172.0,154.0,158.0,142.0,119.0,111.0,142.0,120.0,100.0,116.0,111.0,99.0,105.0,104.0,92.0,93.0,90.0,81.0,89.0,80.0,82.0,63.0,68.0,64.0,55.0,70.0,62.0,44.0,51.0,70.0,62.0,51.0,64.0,46.0,44.0,30.0,38.0,31.0,33.0,18.0,26.0,20.0,17.0,15.0,21.0,11.0,15.0,12.0,11.0,5.0,6.0,5.0,14.0,10.0,6.0,6.0,7.0,6.0,4.0,1.0,4.0,2.0,1.0,2.0,1.0,1.0, G85087,88.0,73.0,79.0,83.0,68.0,80.0,72.0,82.0,68.0,71.0,88.0,70.0,71.0,62.0,61.0,66.0,68.0,67.0,74.0,84.0,71.0,76.0,94.0,116.0,168.0,222.0,187.0,220.0,267.0,265.0,262.0,276.0,276.0,283.0,276.0,272.0,240.0,221.0,188.0,184.0,172.0,178.0,141.0,146.0,137.0,111.0,114.0,99.0,73.0,94.0,96.0,73.0,74.0,68.0,70.0,72.0,72.0,63.0,63.0,71.0,49.0,61.0,50.0,56.0,44.0,47.0,39.0,40.0,37.0,36.0,25.0,21.0,25.0,14.0,16.0,14.0,14.0,13.0,12.0,10.0,5.0,14.0,4.0,1.0,5.0,3.0,3.0,3.0,1.0,1.0,2.0,,,,1.0, G85091,71.0,58.0,62.0,52.0,53.0,52.0,57.0,50.0,56.0,37.0,34.0,42.0,39.0,21.0,31.0,31.0,25.0,18.0,16.0,12.0,16.0,14.0,14.0,16.0,18.0,19.0,24.0,54.0,43.0,62.0,69.0,93.0,92.0,93.0,108.0,101.0,96.0,96.0,85.0,92.0,70.0,72.0,89.0,78.0,80.0,78.0,44.0,54.0,45.0,47.0,44.0,46.0,42.0,22.0,39.0,32.0,22.0,22.0,27.0,29.0,22.0,24.0,24.0,19.0,17.0,19.0,12.0,12.0,15.0,12.0,14.0,11.0,12.0,9.0,8.0,8.0,6.0,7.0,13.0,5.0,4.0,6.0,6.0,3.0,6.0,5.0,2.0,1.0,1.0,1.0,3.0,,,,1.0,2.0 G85096,52.0,44.0,42.0,54.0,51.0,45.0,68.0,44.0,50.0,53.0,57.0,61.0,56.0,64.0,52.0,62.0,44.0,62.0,82.0,54.0,61.0,64.0,55.0,77.0,82.0,70.0,82.0,103.0,132.0,122.0,126.0,98.0,130.0,113.0,133.0,131.0,138.0,122.0,115.0,127.0,110.0,133.0,131.0,131.0,114.0,117.0,104.0,102.0,121.0,116.0,109.0,96.0,104.0,98.0,101.0,83.0,87.0,81.0,80.0,84.0,75.0,77.0,72.0,59.0,57.0,50.0,44.0,40.0,46.0,47.0,37.0,25.0,24.0,18.0,19.0,22.0,20.0,15.0,16.0,9.0,11.0,12.0,9.0,8.0,8.0,13.0,8.0,9.0,11.0,8.0,4.0,5.0,4.0,2.0,1.0,4.0 G85100,24.0,26.0,26.0,21.0,20.0,19.0,18.0,24.0,24.0,27.0,25.0,22.0,16.0,23.0,27.0,30.0,27.0,31.0,26.0,36.0,29.0,29.0,48.0,68.0,106.0,141.0,159.0,165.0,159.0,147.0,167.0,121.0,135.0,128.0,125.0,117.0,93.0,84.0,68.0,103.0,87.0,89.0,98.0,87.0,72.0,72.0,67.0,64.0,62.0,70.0,65.0,59.0,77.0,64.0,57.0,62.0,63.0,57.0,60.0,58.0,45.0,62.0,54.0,34.0,35.0,36.0,23.0,21.0,18.0,14.0,28.0,16.0,10.0,9.0,7.0,7.0,9.0,6.0,7.0,7.0,8.0,4.0,4.0,3.0,2.0,4.0,1.0,1.0,2.0,1.0,1.0,,,1.0,,1.0 G85102,31.0,21.0,19.0,21.0,24.0,26.0,25.0,31.0,23.0,29.0,26.0,20.0,24.0,19.0,21.0,21.0,21.0,18.0,19.0,33.0,40.0,36.0,67.0,120.0,133.0,171.0,219.0,236.0,224.0,227.0,202.0,199.0,146.0,169.0,130.0,141.0,112.0,93.0,110.0,96.0,69.0,82.0,80.0,68.0,70.0,51.0,56.0,45.0,46.0,42.0,54.0,37.0,33.0,36.0,35.0,39.0,46.0,36.0,29.0,35.0,36.0,36.0,37.0,30.0,28.0,29.0,20.0,20.0,25.0,16.0,21.0,6.0,7.0,13.0,5.0,9.0,12.0,11.0,8.0,2.0,6.0,6.0,2.0,6.0,5.0,4.0,4.0,1.0,,2.0,1.0,,1.0,2.0,1.0,2.0 G85104,31.0,43.0,45.0,42.0,52.0,44.0,74.0,51.0,49.0,66.0,65.0,71.0,81.0,74.0,74.0,77.0,71.0,79.0,75.0,73.0,68.0,66.0,67.0,71.0,71.0,73.0,68.0,64.0,83.0,71.0,69.0,70.0,69.0,65.0,59.0,71.0,69.0,61.0,93.0,66.0,83.0,70.0,62.0,76.0,84.0,70.0,63.0,65.0,60.0,68.0,69.0,57.0,74.0,61.0,72.0,59.0,78.0,58.0,56.0,73.0,72.0,59.0,62.0,60.0,60.0,51.0,48.0,57.0,61.0,46.0,26.0,34.0,34.0,35.0,20.0,25.0,25.0,30.0,36.0,19.0,19.0,17.0,9.0,18.0,18.0,11.0,14.0,9.0,10.0,2.0,6.0,5.0,6.0,4.0,,3.0 G85105,33.0,44.0,37.0,33.0,39.0,25.0,28.0,48.0,38.0,41.0,39.0,31.0,42.0,28.0,28.0,29.0,25.0,28.0,31.0,21.0,32.0,19.0,30.0,28.0,39.0,52.0,45.0,67.0,57.0,68.0,77.0,83.0,75.0,92.0,91.0,80.0,86.0,62.0,70.0,82.0,68.0,63.0,56.0,60.0,68.0,50.0,56.0,56.0,47.0,60.0,45.0,46.0,46.0,43.0,42.0,35.0,40.0,32.0,40.0,43.0,34.0,35.0,36.0,40.0,26.0,23.0,22.0,20.0,13.0,12.0,6.0,14.0,16.0,11.0,17.0,7.0,8.0,6.0,7.0,4.0,4.0,4.0,4.0,4.0,7.0,4.0,3.0,3.0,1.0,2.0,3.0,3.0,1.0,,2.0,2.0 G85109,125.0,87.0,82.0,95.0,69.0,85.0,55.0,84.0,70.0,77.0,55.0,73.0,77.0,73.0,75.0,91.0,81.0,86.0,73.0,78.0,75.0,82.0,98.0,139.0,181.0,285.0,320.0,416.0,412.0,433.0,435.0,380.0,345.0,350.0,355.0,297.0,269.0,239.0,228.0,210.0,192.0,168.0,156.0,142.0,158.0,126.0,128.0,117.0,112.0,116.0,89.0,100.0,85.0,84.0,95.0,91.0,78.0,98.0,90.0,78.0,77.0,79.0,61.0,57.0,70.0,56.0,61.0,52.0,39.0,27.0,31.0,35.0,37.0,20.0,27.0,20.0,31.0,23.0,23.0,19.0,17.0,22.0,10.0,16.0,16.0,13.0,8.0,2.0,,5.0,3.0,2.0,,3.0,2.0,3.0 G85114,67.0,80.0,85.0,81.0,65.0,68.0,81.0,73.0,102.0,80.0,75.0,75.0,85.0,82.0,69.0,76.0,89.0,81.0,88.0,66.0,75.0,65.0,60.0,72.0,73.0,74.0,88.0,77.0,93.0,82.0,109.0,88.0,120.0,123.0,115.0,132.0,127.0,116.0,127.0,109.0,84.0,117.0,98.0,111.0,96.0,98.0,102.0,85.0,90.0,104.0,102.0,92.0,104.0,92.0,85.0,89.0,58.0,69.0,85.0,74.0,82.0,70.0,63.0,65.0,67.0,60.0,53.0,39.0,48.0,44.0,40.0,38.0,20.0,18.0,25.0,28.0,30.0,14.0,26.0,10.0,16.0,19.0,12.0,11.0,8.0,4.0,12.0,9.0,7.0,7.0,4.0,1.0,4.0,4.0,2.0,2.0 G85119,35.0,32.0,28.0,32.0,25.0,29.0,24.0,24.0,27.0,22.0,22.0,13.0,26.0,30.0,29.0,26.0,27.0,25.0,30.0,22.0,24.0,40.0,37.0,40.0,37.0,41.0,61.0,85.0,57.0,84.0,77.0,83.0,94.0,77.0,95.0,92.0,90.0,89.0,81.0,63.0,71.0,64.0,56.0,59.0,65.0,62.0,53.0,37.0,40.0,37.0,36.0,34.0,41.0,35.0,55.0,35.0,37.0,28.0,31.0,40.0,19.0,24.0,28.0,25.0,26.0,24.0,21.0,18.0,20.0,20.0,12.0,13.0,15.0,13.0,6.0,9.0,12.0,10.0,7.0,7.0,7.0,4.0,4.0,7.0,7.0,3.0,8.0,3.0,5.0,7.0,5.0,3.0,2.0,,1.0,1.0 G85120,25.0,36.0,25.0,29.0,27.0,30.0,30.0,38.0,32.0,37.0,36.0,34.0,53.0,44.0,45.0,39.0,38.0,35.0,36.0,35.0,37.0,27.0,33.0,31.0,49.0,39.0,33.0,53.0,47.0,54.0,54.0,64.0,63.0,56.0,57.0,72.0,61.0,55.0,60.0,53.0,83.0,60.0,53.0,50.0,64.0,60.0,63.0,48.0,44.0,52.0,40.0,50.0,49.0,56.0,32.0,36.0,47.0,42.0,36.0,47.0,43.0,36.0,43.0,40.0,41.0,33.0,40.0,26.0,22.0,21.0,24.0,24.0,24.0,11.0,19.0,17.0,19.0,10.0,8.0,3.0,3.0,7.0,8.0,2.0,5.0,1.0,6.0,4.0,6.0,3.0,3.0,2.0,2.0,1.0,, G85121,72.0,88.0,82.0,80.0,57.0,52.0,59.0,65.0,46.0,54.0,43.0,50.0,27.0,46.0,39.0,41.0,37.0,51.0,42.0,36.0,69.0,63.0,57.0,47.0,69.0,87.0,77.0,89.0,91.0,107.0,106.0,106.0,131.0,121.0,116.0,121.0,136.0,135.0,116.0,123.0,90.0,99.0,80.0,89.0,81.0,93.0,60.0,62.0,60.0,59.0,50.0,46.0,43.0,51.0,55.0,44.0,47.0,64.0,42.0,50.0,54.0,47.0,41.0,32.0,33.0,31.0,21.0,25.0,29.0,22.0,19.0,14.0,12.0,12.0,18.0,10.0,10.0,16.0,12.0,6.0,12.0,9.0,7.0,4.0,8.0,11.0,4.0,4.0,5.0,2.0,4.0,4.0,1.0,4.0,, G85123,41.0,38.0,34.0,32.0,35.0,25.0,33.0,37.0,30.0,33.0,36.0,43.0,42.0,38.0,42.0,41.0,43.0,35.0,42.0,49.0,40.0,47.0,46.0,87.0,102.0,110.0,153.0,168.0,143.0,147.0,133.0,176.0,131.0,134.0,158.0,128.0,141.0,111.0,120.0,117.0,113.0,110.0,110.0,100.0,75.0,85.0,93.0,86.0,65.0,73.0,83.0,65.0,64.0,77.0,64.0,70.0,57.0,67.0,55.0,56.0,61.0,57.0,56.0,43.0,54.0,41.0,34.0,39.0,26.0,27.0,26.0,22.0,24.0,12.0,17.0,18.0,19.0,15.0,17.0,1.0,10.0,9.0,8.0,8.0,3.0,1.0,8.0,2.0,5.0,3.0,1.0,1.0,2.0,3.0,, G85125,19.0,33.0,30.0,27.0,30.0,27.0,41.0,38.0,37.0,32.0,34.0,36.0,30.0,52.0,45.0,30.0,39.0,33.0,35.0,40.0,42.0,28.0,45.0,53.0,63.0,56.0,57.0,67.0,61.0,79.0,51.0,68.0,56.0,73.0,56.0,63.0,50.0,69.0,55.0,52.0,44.0,49.0,45.0,42.0,55.0,61.0,34.0,35.0,31.0,38.0,31.0,38.0,45.0,39.0,30.0,37.0,31.0,31.0,36.0,40.0,27.0,29.0,37.0,39.0,30.0,36.0,23.0,20.0,25.0,27.0,20.0,18.0,16.0,11.0,18.0,10.0,13.0,9.0,6.0,7.0,6.0,5.0,9.0,6.0,3.0,4.0,5.0,6.0,7.0,4.0,1.0,2.0,1.0,2.0,1.0,2.0 G85127,24.0,23.0,24.0,25.0,17.0,24.0,26.0,20.0,22.0,26.0,18.0,29.0,34.0,15.0,26.0,29.0,24.0,40.0,30.0,25.0,29.0,30.0,38.0,32.0,27.0,51.0,67.0,64.0,59.0,77.0,74.0,74.0,83.0,103.0,98.0,88.0,85.0,68.0,69.0,78.0,78.0,63.0,61.0,63.0,73.0,55.0,54.0,69.0,75.0,57.0,50.0,65.0,58.0,64.0,64.0,50.0,41.0,63.0,44.0,45.0,55.0,41.0,38.0,31.0,33.0,32.0,23.0,25.0,21.0,14.0,18.0,7.0,10.0,6.0,5.0,11.0,4.0,11.0,6.0,6.0,3.0,3.0,6.0,7.0,2.0,2.0,2.0,2.0,,2.0,1.0,1.0,2.0,,,3.0 G85129,36.0,47.0,38.0,33.0,30.0,32.0,36.0,33.0,31.0,28.0,38.0,27.0,32.0,25.0,33.0,33.0,50.0,31.0,26.0,38.0,34.0,29.0,38.0,42.0,49.0,65.0,66.0,84.0,105.0,102.0,111.0,108.0,93.0,97.0,110.0,88.0,85.0,81.0,76.0,59.0,59.0,59.0,63.0,40.0,57.0,68.0,47.0,43.0,38.0,47.0,41.0,47.0,41.0,50.0,46.0,42.0,35.0,42.0,29.0,42.0,43.0,30.0,30.0,29.0,25.0,24.0,19.0,17.0,18.0,20.0,6.0,21.0,9.0,10.0,14.0,12.0,7.0,9.0,4.0,2.0,6.0,4.0,1.0,2.0,7.0,3.0,4.0,,3.0,3.0,4.0,4.0,,2.0,,2.0 G85130,40.0,53.0,43.0,50.0,43.0,45.0,44.0,52.0,54.0,51.0,50.0,50.0,50.0,43.0,56.0,59.0,46.0,55.0,45.0,71.0,56.0,62.0,76.0,79.0,106.0,109.0,142.0,153.0,146.0,153.0,131.0,143.0,124.0,127.0,145.0,133.0,136.0,128.0,120.0,125.0,126.0,126.0,106.0,108.0,92.0,90.0,77.0,92.0,91.0,74.0,84.0,69.0,74.0,69.0,63.0,62.0,73.0,58.0,65.0,64.0,76.0,63.0,54.0,67.0,55.0,56.0,41.0,36.0,41.0,32.0,25.0,21.0,20.0,19.0,23.0,14.0,19.0,15.0,23.0,7.0,9.0,12.0,14.0,8.0,4.0,18.0,6.0,4.0,4.0,4.0,1.0,4.0,1.0,,1.0,1.0 G85132,109.0,111.0,90.0,101.0,99.0,74.0,74.0,91.0,54.0,69.0,82.0,93.0,70.0,88.0,79.0,80.0,68.0,69.0,69.0,76.0,73.0,56.0,58.0,58.0,89.0,80.0,93.0,125.0,143.0,149.0,162.0,193.0,194.0,206.0,202.0,192.0,195.0,199.0,179.0,141.0,155.0,126.0,137.0,130.0,136.0,110.0,112.0,97.0,110.0,94.0,97.0,103.0,100.0,77.0,106.0,100.0,86.0,76.0,91.0,68.0,67.0,89.0,73.0,67.0,70.0,67.0,35.0,43.0,48.0,31.0,30.0,29.0,23.0,18.0,23.0,16.0,18.0,14.0,13.0,19.0,13.0,16.0,13.0,7.0,2.0,5.0,6.0,6.0,5.0,10.0,4.0,1.0,1.0,3.0,2.0,4.0 G85134,42.0,42.0,36.0,45.0,37.0,41.0,43.0,39.0,43.0,39.0,58.0,37.0,44.0,62.0,45.0,65.0,63.0,64.0,59.0,60.0,56.0,67.0,73.0,63.0,76.0,79.0,88.0,99.0,96.0,106.0,89.0,72.0,57.0,73.0,93.0,87.0,85.0,87.0,77.0,76.0,86.0,71.0,73.0,62.0,78.0,67.0,57.0,80.0,74.0,78.0,69.0,63.0,75.0,61.0,78.0,70.0,61.0,61.0,58.0,59.0,59.0,47.0,49.0,49.0,54.0,38.0,42.0,35.0,32.0,35.0,18.0,11.0,10.0,14.0,12.0,9.0,14.0,9.0,9.0,6.0,9.0,6.0,8.0,5.0,8.0,6.0,2.0,4.0,4.0,1.0,2.0,1.0,1.0,,1.0,1.0 G85135,44.0,41.0,46.0,43.0,38.0,55.0,47.0,47.0,61.0,67.0,63.0,63.0,66.0,63.0,48.0,64.0,71.0,61.0,63.0,69.0,50.0,76.0,59.0,62.0,90.0,98.0,111.0,107.0,117.0,98.0,101.0,102.0,102.0,125.0,111.0,96.0,96.0,101.0,80.0,106.0,103.0,91.0,103.0,100.0,100.0,85.0,106.0,91.0,84.0,89.0,81.0,73.0,82.0,85.0,89.0,91.0,80.0,93.0,107.0,94.0,88.0,98.0,83.0,58.0,74.0,70.0,66.0,56.0,50.0,43.0,37.0,34.0,35.0,29.0,19.0,25.0,21.0,20.0,18.0,8.0,8.0,12.0,12.0,9.0,4.0,4.0,3.0,7.0,3.0,6.0,7.0,4.0,6.0,1.0,4.0,3.0 G85136,30.0,32.0,38.0,31.0,33.0,28.0,37.0,32.0,38.0,41.0,41.0,28.0,32.0,26.0,42.0,34.0,57.0,68.0,87.0,92.0,120.0,111.0,131.0,176.0,189.0,194.0,188.0,215.0,225.0,232.0,227.0,219.0,233.0,176.0,213.0,220.0,177.0,203.0,164.0,163.0,154.0,172.0,153.0,122.0,129.0,129.0,107.0,123.0,98.0,92.0,94.0,74.0,89.0,81.0,77.0,81.0,88.0,66.0,56.0,55.0,73.0,53.0,64.0,38.0,52.0,53.0,37.0,42.0,42.0,28.0,37.0,30.0,26.0,23.0,12.0,24.0,23.0,18.0,16.0,12.0,15.0,13.0,14.0,9.0,9.0,9.0,12.0,6.0,5.0,5.0,1.0,3.0,4.0,3.0,2.0,3.0 G85137,62.0,58.0,57.0,45.0,49.0,52.0,62.0,49.0,49.0,60.0,52.0,54.0,52.0,34.0,45.0,36.0,44.0,41.0,37.0,29.0,27.0,31.0,24.0,24.0,48.0,46.0,65.0,71.0,98.0,94.0,98.0,129.0,114.0,126.0,118.0,121.0,105.0,127.0,101.0,113.0,116.0,101.0,82.0,83.0,86.0,72.0,70.0,72.0,59.0,68.0,41.0,42.0,49.0,44.0,51.0,44.0,43.0,38.0,46.0,37.0,37.0,36.0,29.0,40.0,26.0,27.0,32.0,20.0,23.0,18.0,17.0,15.0,19.0,13.0,15.0,14.0,15.0,12.0,10.0,8.0,12.0,7.0,6.0,6.0,5.0,2.0,3.0,3.0,1.0,3.0,1.0,,,1.0,1.0, G85138,60.0,71.0,49.0,59.0,50.0,57.0,65.0,64.0,63.0,63.0,54.0,68.0,68.0,78.0,60.0,62.0,54.0,62.0,62.0,57.0,61.0,60.0,82.0,96.0,98.0,154.0,180.0,192.0,196.0,187.0,213.0,223.0,232.0,225.0,272.0,247.0,228.0,246.0,227.0,211.0,193.0,228.0,178.0,163.0,156.0,144.0,95.0,132.0,121.0,95.0,105.0,103.0,90.0,90.0,91.0,77.0,82.0,76.0,82.0,76.0,77.0,67.0,81.0,63.0,64.0,63.0,45.0,55.0,43.0,38.0,25.0,31.0,35.0,24.0,20.0,30.0,20.0,26.0,19.0,14.0,18.0,21.0,14.0,12.0,13.0,9.0,5.0,4.0,6.0,3.0,3.0,1.0,4.0,3.0,,1.0 G85623,47.0,32.0,32.0,41.0,32.0,53.0,57.0,49.0,58.0,63.0,61.0,52.0,74.0,61.0,45.0,50.0,64.0,57.0,68.0,55.0,53.0,57.0,58.0,65.0,80.0,82.0,128.0,126.0,124.0,135.0,133.0,160.0,156.0,145.0,142.0,154.0,168.0,153.0,136.0,137.0,127.0,108.0,100.0,115.0,109.0,82.0,64.0,54.0,68.0,68.0,66.0,63.0,73.0,66.0,56.0,69.0,65.0,59.0,61.0,51.0,54.0,60.0,47.0,36.0,38.0,44.0,36.0,32.0,34.0,31.0,34.0,23.0,15.0,20.0,20.0,26.0,20.0,23.0,18.0,14.0,4.0,10.0,7.0,2.0,5.0,9.0,3.0,1.0,5.0,2.0,2.0,1.0,1.0,1.0,1.0,7.0 G85632,51.0,33.0,35.0,38.0,37.0,40.0,38.0,43.0,56.0,48.0,31.0,37.0,55.0,61.0,35.0,46.0,49.0,46.0,52.0,50.0,47.0,57.0,50.0,61.0,83.0,109.0,90.0,115.0,115.0,116.0,110.0,115.0,130.0,138.0,141.0,141.0,123.0,113.0,98.0,108.0,103.0,90.0,98.0,90.0,79.0,78.0,90.0,62.0,53.0,56.0,58.0,60.0,56.0,49.0,48.0,49.0,41.0,42.0,56.0,42.0,43.0,39.0,46.0,34.0,39.0,38.0,24.0,27.0,15.0,15.0,14.0,11.0,21.0,10.0,10.0,10.0,14.0,10.0,6.0,5.0,7.0,4.0,4.0,5.0,6.0,5.0,2.0,4.0,2.0,1.0,1.0,,1.0,1.0,, G85633,113.0,104.0,115.0,100.0,142.0,134.0,142.0,148.0,143.0,153.0,138.0,125.0,158.0,117.0,148.0,133.0,117.0,127.0,117.0,106.0,126.0,121.0,117.0,121.0,130.0,158.0,140.0,141.0,155.0,170.0,155.0,173.0,170.0,172.0,194.0,192.0,199.0,197.0,169.0,179.0,209.0,209.0,180.0,174.0,204.0,184.0,161.0,170.0,170.0,161.0,142.0,160.0,157.0,148.0,169.0,139.0,144.0,156.0,134.0,130.0,138.0,131.0,123.0,114.0,97.0,98.0,99.0,75.0,71.0,74.0,62.0,52.0,48.0,42.0,32.0,37.0,39.0,23.0,38.0,16.0,26.0,21.0,21.0,19.0,15.0,17.0,11.0,13.0,22.0,7.0,7.0,11.0,7.0,4.0,,5.0 G85642,31.0,27.0,23.0,29.0,23.0,16.0,27.0,33.0,19.0,33.0,19.0,19.0,29.0,24.0,27.0,27.0,12.0,39.0,49.0,75.0,111.0,77.0,88.0,115.0,120.0,142.0,151.0,176.0,167.0,216.0,212.0,184.0,166.0,153.0,157.0,135.0,132.0,114.0,96.0,94.0,96.0,73.0,82.0,75.0,86.0,77.0,65.0,52.0,54.0,57.0,64.0,48.0,56.0,36.0,46.0,46.0,52.0,53.0,48.0,52.0,64.0,49.0,31.0,37.0,40.0,43.0,26.0,19.0,25.0,27.0,19.0,16.0,19.0,23.0,29.0,18.0,17.0,10.0,14.0,7.0,11.0,5.0,9.0,9.0,3.0,3.0,7.0,3.0,5.0,2.0,2.0,1.0,2.0,1.0,,2.0 G85644,29.0,21.0,25.0,31.0,26.0,18.0,36.0,26.0,36.0,39.0,38.0,41.0,35.0,41.0,32.0,39.0,34.0,23.0,34.0,20.0,22.0,27.0,30.0,18.0,22.0,33.0,28.0,47.0,60.0,48.0,56.0,66.0,65.0,86.0,58.0,67.0,67.0,53.0,64.0,51.0,45.0,61.0,44.0,49.0,48.0,53.0,67.0,47.0,41.0,45.0,52.0,58.0,40.0,46.0,28.0,41.0,29.0,36.0,46.0,40.0,59.0,35.0,27.0,34.0,24.0,26.0,32.0,33.0,23.0,14.0,12.0,7.0,8.0,14.0,20.0,14.0,14.0,15.0,12.0,10.0,6.0,7.0,6.0,6.0,5.0,2.0,2.0,4.0,1.0,3.0,1.0,1.0,,,,1.0 G85647,35.0,47.0,35.0,42.0,36.0,27.0,36.0,31.0,38.0,43.0,50.0,50.0,41.0,50.0,46.0,49.0,56.0,49.0,53.0,42.0,40.0,41.0,41.0,40.0,55.0,46.0,48.0,41.0,42.0,65.0,65.0,68.0,63.0,57.0,75.0,66.0,78.0,68.0,67.0,76.0,75.0,61.0,78.0,72.0,66.0,79.0,87.0,53.0,76.0,82.0,63.0,57.0,64.0,60.0,37.0,61.0,54.0,55.0,45.0,44.0,30.0,43.0,30.0,23.0,31.0,21.0,20.0,18.0,25.0,16.0,16.0,21.0,12.0,13.0,13.0,7.0,13.0,19.0,7.0,8.0,5.0,10.0,6.0,3.0,5.0,5.0,3.0,4.0,5.0,3.0,2.0,3.0,2.0,,,1.0 G85651,20.0,20.0,17.0,22.0,27.0,27.0,42.0,25.0,45.0,62.0,44.0,52.0,51.0,50.0,59.0,59.0,67.0,63.0,45.0,40.0,28.0,36.0,24.0,39.0,28.0,35.0,38.0,48.0,47.0,35.0,50.0,69.0,55.0,52.0,50.0,51.0,50.0,53.0,45.0,51.0,52.0,54.0,62.0,72.0,67.0,70.0,80.0,73.0,68.0,90.0,66.0,86.0,87.0,76.0,53.0,64.0,79.0,53.0,53.0,44.0,47.0,50.0,37.0,33.0,33.0,34.0,22.0,25.0,19.0,18.0,13.0,22.0,14.0,14.0,13.0,8.0,12.0,13.0,13.0,9.0,10.0,8.0,7.0,7.0,9.0,3.0,4.0,6.0,3.0,2.0,2.0,1.0,2.0,,1.0,2.0 G85662,18.0,23.0,22.0,24.0,17.0,26.0,23.0,20.0,26.0,27.0,28.0,36.0,30.0,41.0,40.0,39.0,35.0,43.0,40.0,27.0,34.0,37.0,37.0,44.0,69.0,55.0,88.0,83.0,83.0,90.0,90.0,80.0,69.0,97.0,97.0,83.0,91.0,85.0,84.0,72.0,74.0,75.0,67.0,78.0,71.0,70.0,76.0,56.0,54.0,61.0,62.0,49.0,46.0,67.0,40.0,51.0,50.0,49.0,44.0,54.0,59.0,44.0,47.0,42.0,43.0,33.0,35.0,40.0,26.0,22.0,31.0,24.0,31.0,19.0,19.0,22.0,20.0,8.0,12.0,13.0,11.0,4.0,18.0,7.0,7.0,4.0,7.0,6.0,8.0,3.0,1.0,2.0,1.0,1.0,2.0,5.0 G85673,25.0,31.0,38.0,17.0,21.0,30.0,34.0,35.0,39.0,32.0,40.0,44.0,29.0,43.0,50.0,56.0,46.0,42.0,42.0,44.0,43.0,48.0,34.0,60.0,53.0,81.0,87.0,90.0,90.0,84.0,74.0,95.0,84.0,67.0,79.0,78.0,85.0,70.0,64.0,70.0,82.0,67.0,78.0,67.0,65.0,65.0,57.0,64.0,46.0,50.0,51.0,48.0,52.0,46.0,41.0,43.0,46.0,58.0,47.0,39.0,33.0,38.0,30.0,30.0,23.0,21.0,24.0,23.0,9.0,13.0,17.0,14.0,6.0,10.0,8.0,8.0,6.0,10.0,4.0,2.0,5.0,4.0,5.0,3.0,3.0,1.0,2.0,1.0,4.0,1.0,1.0,,,,, G85674,40.0,39.0,32.0,36.0,19.0,29.0,18.0,29.0,40.0,34.0,25.0,21.0,23.0,28.0,17.0,21.0,16.0,17.0,10.0,12.0,19.0,16.0,20.0,21.0,53.0,83.0,83.0,120.0,123.0,119.0,96.0,101.0,101.0,124.0,109.0,131.0,114.0,113.0,107.0,95.0,96.0,81.0,67.0,77.0,65.0,69.0,67.0,48.0,57.0,33.0,46.0,39.0,41.0,26.0,26.0,31.0,26.0,22.0,25.0,31.0,19.0,21.0,15.0,19.0,16.0,14.0,21.0,15.0,16.0,19.0,10.0,6.0,7.0,6.0,7.0,9.0,2.0,7.0,4.0,8.0,3.0,6.0,5.0,3.0,2.0,2.0,2.0,,,2.0,1.0,1.0,1.0,,1.0,1.0 G85681,28.0,10.0,18.0,19.0,19.0,29.0,23.0,31.0,27.0,36.0,34.0,31.0,41.0,31.0,26.0,36.0,34.0,35.0,28.0,27.0,33.0,24.0,31.0,32.0,44.0,36.0,19.0,43.0,46.0,42.0,45.0,56.0,48.0,68.0,58.0,54.0,51.0,51.0,36.0,48.0,58.0,44.0,51.0,45.0,43.0,52.0,42.0,48.0,46.0,38.0,39.0,33.0,40.0,41.0,44.0,40.0,27.0,39.0,37.0,38.0,35.0,25.0,32.0,23.0,33.0,15.0,24.0,19.0,21.0,11.0,11.0,4.0,14.0,8.0,7.0,11.0,12.0,5.0,9.0,6.0,3.0,12.0,5.0,5.0,1.0,10.0,6.0,5.0,1.0,,4.0,1.0,1.0,1.0,2.0,3.0 G85685,54.0,55.0,58.0,47.0,42.0,56.0,58.0,53.0,70.0,60.0,53.0,41.0,48.0,49.0,50.0,45.0,54.0,42.0,43.0,36.0,36.0,43.0,47.0,52.0,41.0,62.0,56.0,71.0,83.0,86.0,88.0,85.0,95.0,117.0,100.0,104.0,116.0,94.0,97.0,75.0,88.0,87.0,96.0,74.0,66.0,61.0,68.0,56.0,53.0,67.0,48.0,59.0,59.0,39.0,51.0,52.0,61.0,47.0,51.0,47.0,64.0,38.0,41.0,32.0,39.0,31.0,47.0,30.0,31.0,33.0,23.0,22.0,24.0,19.0,20.0,19.0,13.0,20.0,19.0,8.0,10.0,12.0,12.0,8.0,7.0,9.0,7.0,5.0,2.0,7.0,3.0,1.0,2.0,2.0,,1.0 G85690,34.0,26.0,35.0,28.0,22.0,39.0,35.0,31.0,35.0,32.0,41.0,36.0,38.0,30.0,28.0,43.0,38.0,35.0,43.0,39.0,29.0,35.0,28.0,49.0,50.0,76.0,92.0,115.0,118.0,81.0,87.0,108.0,116.0,105.0,98.0,75.0,94.0,99.0,68.0,76.0,65.0,66.0,46.0,64.0,51.0,42.0,55.0,38.0,44.0,45.0,50.0,57.0,38.0,38.0,48.0,44.0,49.0,40.0,47.0,40.0,43.0,36.0,32.0,28.0,30.0,29.0,25.0,17.0,21.0,9.0,15.0,16.0,9.0,13.0,12.0,5.0,8.0,6.0,2.0,2.0,3.0,4.0,5.0,7.0,5.0,4.0,2.0,4.0,4.0,,1.0,,2.0,1.0,,1.0 G85695,24.0,21.0,22.0,24.0,18.0,21.0,22.0,30.0,31.0,27.0,39.0,35.0,33.0,35.0,25.0,30.0,34.0,28.0,26.0,25.0,32.0,34.0,37.0,47.0,70.0,93.0,93.0,104.0,115.0,111.0,102.0,99.0,107.0,111.0,120.0,109.0,111.0,113.0,81.0,90.0,85.0,79.0,67.0,72.0,83.0,68.0,57.0,67.0,61.0,56.0,44.0,45.0,49.0,42.0,43.0,42.0,32.0,55.0,38.0,36.0,38.0,40.0,23.0,30.0,37.0,35.0,18.0,20.0,17.0,20.0,17.0,14.0,8.0,12.0,12.0,8.0,7.0,7.0,5.0,3.0,3.0,3.0,1.0,6.0,1.0,2.0,1.0,1.0,1.0,1.0,,,,,1.0, G85696,131.0,116.0,133.0,119.0,113.0,126.0,129.0,134.0,95.0,109.0,96.0,93.0,84.0,102.0,87.0,94.0,89.0,101.0,81.0,66.0,57.0,62.0,78.0,67.0,70.0,93.0,112.0,116.0,122.0,123.0,145.0,163.0,165.0,189.0,179.0,204.0,207.0,176.0,184.0,190.0,189.0,161.0,204.0,152.0,140.0,151.0,165.0,130.0,109.0,117.0,111.0,111.0,116.0,98.0,118.0,94.0,89.0,79.0,75.0,71.0,79.0,76.0,53.0,61.0,58.0,47.0,41.0,37.0,38.0,31.0,25.0,28.0,26.0,29.0,25.0,19.0,16.0,17.0,23.0,15.0,9.0,10.0,14.0,10.0,17.0,6.0,7.0,3.0,2.0,4.0,2.0,3.0,3.0,1.0,1.0,2.0 G85698,71.0,59.0,72.0,55.0,68.0,60.0,51.0,50.0,57.0,57.0,46.0,74.0,54.0,61.0,55.0,58.0,58.0,52.0,60.0,88.0,125.0,135.0,121.0,151.0,177.0,234.0,227.0,252.0,204.0,198.0,223.0,205.0,224.0,179.0,173.0,179.0,166.0,143.0,153.0,156.0,126.0,142.0,129.0,147.0,116.0,100.0,112.0,87.0,96.0,92.0,112.0,73.0,86.0,101.0,66.0,67.0,51.0,70.0,56.0,64.0,57.0,75.0,57.0,50.0,45.0,43.0,35.0,34.0,26.0,24.0,23.0,21.0,17.0,16.0,15.0,19.0,8.0,9.0,7.0,7.0,6.0,8.0,10.0,4.0,6.0,3.0,4.0,4.0,5.0,1.0,3.0,2.0,,1.0,,2.0 G85705,30.0,28.0,18.0,11.0,17.0,11.0,10.0,9.0,11.0,17.0,16.0,13.0,10.0,19.0,19.0,11.0,10.0,16.0,14.0,19.0,17.0,12.0,28.0,65.0,58.0,110.0,105.0,107.0,122.0,153.0,144.0,139.0,140.0,140.0,133.0,115.0,109.0,113.0,93.0,91.0,107.0,76.0,88.0,75.0,77.0,71.0,58.0,34.0,46.0,49.0,37.0,36.0,44.0,36.0,31.0,39.0,57.0,39.0,38.0,42.0,42.0,30.0,29.0,28.0,30.0,29.0,23.0,18.0,17.0,26.0,13.0,15.0,15.0,16.0,9.0,15.0,11.0,16.0,11.0,4.0,9.0,5.0,4.0,3.0,1.0,3.0,2.0,2.0,2.0,,3.0,2.0,1.0,,, G85706,24.0,22.0,22.0,31.0,28.0,37.0,42.0,32.0,38.0,43.0,34.0,48.0,44.0,50.0,71.0,59.0,66.0,84.0,75.0,56.0,22.0,24.0,29.0,29.0,22.0,29.0,45.0,36.0,50.0,47.0,38.0,33.0,42.0,49.0,44.0,37.0,48.0,38.0,38.0,51.0,53.0,44.0,45.0,51.0,53.0,67.0,67.0,44.0,47.0,42.0,38.0,35.0,47.0,54.0,31.0,43.0,53.0,40.0,34.0,36.0,31.0,37.0,38.0,32.0,26.0,32.0,26.0,20.0,19.0,19.0,18.0,22.0,17.0,14.0,13.0,11.0,13.0,17.0,18.0,11.0,11.0,6.0,11.0,5.0,7.0,4.0,4.0,3.0,4.0,3.0,1.0,5.0,1.0,2.0,1.0,3.0 G85708,44.0,38.0,40.0,30.0,42.0,32.0,52.0,36.0,28.0,32.0,51.0,28.0,49.0,34.0,41.0,38.0,36.0,31.0,44.0,34.0,36.0,32.0,36.0,48.0,79.0,102.0,151.0,159.0,197.0,191.0,173.0,184.0,183.0,161.0,180.0,157.0,142.0,139.0,143.0,129.0,117.0,107.0,124.0,109.0,84.0,86.0,64.0,58.0,56.0,61.0,56.0,63.0,55.0,61.0,58.0,61.0,56.0,46.0,54.0,57.0,46.0,51.0,37.0,34.0,30.0,37.0,27.0,41.0,26.0,24.0,21.0,26.0,27.0,20.0,18.0,15.0,15.0,14.0,9.0,10.0,7.0,10.0,4.0,9.0,6.0,4.0,4.0,4.0,2.0,3.0,2.0,1.0,,1.0,1.0,1.0 G85711,77.0,65.0,51.0,57.0,45.0,48.0,30.0,35.0,38.0,36.0,43.0,30.0,29.0,29.0,23.0,49.0,32.0,26.0,29.0,36.0,44.0,53.0,54.0,66.0,88.0,127.0,152.0,190.0,212.0,234.0,230.0,234.0,246.0,248.0,267.0,213.0,197.0,179.0,166.0,190.0,140.0,125.0,125.0,99.0,78.0,96.0,84.0,72.0,57.0,49.0,54.0,49.0,40.0,44.0,53.0,44.0,39.0,34.0,34.0,34.0,33.0,37.0,32.0,30.0,25.0,20.0,26.0,18.0,10.0,15.0,9.0,12.0,10.0,9.0,13.0,8.0,9.0,5.0,5.0,3.0,6.0,8.0,5.0,3.0,2.0,2.0,1.0,,,2.0,,1.0,1.0,1.0,,3.0 G85715,48.0,52.0,54.0,48.0,62.0,55.0,60.0,55.0,64.0,67.0,72.0,63.0,58.0,56.0,76.0,72.0,76.0,64.0,78.0,81.0,72.0,58.0,74.0,98.0,76.0,90.0,94.0,99.0,128.0,140.0,123.0,133.0,115.0,140.0,143.0,161.0,134.0,164.0,129.0,114.0,73.0,78.0,70.0,53.0,84.0,71.0,86.0,73.0,63.0,77.0,79.0,75.0,75.0,62.0,72.0,87.0,68.0,85.0,73.0,59.0,67.0,65.0,59.0,44.0,42.0,53.0,46.0,43.0,42.0,22.0,28.0,19.0,24.0,13.0,24.0,11.0,10.0,6.0,12.0,2.0,4.0,8.0,7.0,5.0,10.0,3.0,3.0,2.0,3.0,3.0,1.0,3.0,1.0,1.0,,4.0 G85716,29.0,43.0,56.0,50.0,48.0,50.0,56.0,41.0,47.0,60.0,48.0,45.0,50.0,44.0,47.0,40.0,41.0,45.0,51.0,49.0,34.0,40.0,44.0,49.0,44.0,50.0,47.0,53.0,47.0,46.0,46.0,52.0,58.0,52.0,41.0,56.0,52.0,66.0,63.0,45.0,47.0,52.0,53.0,63.0,35.0,51.0,36.0,35.0,44.0,42.0,38.0,35.0,42.0,35.0,32.0,36.0,34.0,35.0,31.0,32.0,26.0,23.0,26.0,28.0,19.0,18.0,24.0,22.0,15.0,17.0,13.0,9.0,11.0,7.0,11.0,6.0,9.0,7.0,7.0,3.0,1.0,5.0,4.0,9.0,4.0,4.0,4.0,,1.0,2.0,3.0,1.0,,,2.0, G85721,16.0,20.0,20.0,18.0,21.0,35.0,29.0,28.0,37.0,28.0,33.0,40.0,28.0,24.0,34.0,31.0,37.0,46.0,43.0,38.0,40.0,35.0,44.0,33.0,44.0,59.0,54.0,55.0,53.0,59.0,55.0,53.0,72.0,65.0,68.0,81.0,72.0,85.0,77.0,86.0,79.0,72.0,84.0,87.0,87.0,78.0,68.0,77.0,67.0,84.0,74.0,71.0,52.0,62.0,65.0,86.0,70.0,51.0,54.0,66.0,47.0,50.0,51.0,28.0,39.0,32.0,36.0,33.0,24.0,24.0,14.0,20.0,11.0,7.0,10.0,13.0,6.0,9.0,13.0,6.0,5.0,5.0,4.0,3.0,2.0,5.0,3.0,2.0,1.0,2.0,,,,1.0,,1.0 G85722,106.0,71.0,75.0,78.0,96.0,74.0,63.0,65.0,81.0,71.0,61.0,60.0,71.0,45.0,63.0,68.0,56.0,61.0,49.0,53.0,49.0,47.0,49.0,39.0,51.0,67.0,45.0,60.0,80.0,97.0,91.0,106.0,127.0,134.0,145.0,159.0,139.0,125.0,142.0,124.0,141.0,118.0,110.0,106.0,115.0,73.0,90.0,77.0,72.0,73.0,69.0,66.0,66.0,70.0,59.0,51.0,61.0,40.0,45.0,42.0,62.0,39.0,41.0,42.0,48.0,51.0,19.0,32.0,27.0,30.0,14.0,13.0,11.0,10.0,9.0,10.0,11.0,11.0,9.0,5.0,4.0,6.0,7.0,6.0,3.0,5.0,2.0,4.0,1.0,2.0,2.0,2.0,,1.0,,1.0 G85724,89.0,86.0,80.0,99.0,70.0,88.0,80.0,82.0,87.0,104.0,85.0,92.0,91.0,94.0,74.0,92.0,89.0,96.0,91.0,88.0,85.0,88.0,84.0,111.0,128.0,171.0,169.0,190.0,224.0,232.0,262.0,289.0,280.0,299.0,305.0,281.0,315.0,303.0,265.0,277.0,263.0,225.0,225.0,194.0,214.0,197.0,193.0,161.0,189.0,155.0,146.0,131.0,150.0,113.0,111.0,105.0,119.0,104.0,106.0,93.0,109.0,91.0,75.0,63.0,63.0,57.0,43.0,37.0,37.0,32.0,23.0,25.0,29.0,22.0,24.0,15.0,12.0,18.0,13.0,11.0,8.0,8.0,9.0,10.0,14.0,7.0,9.0,3.0,1.0,5.0,2.0,,5.0,1.0,1.0,2.0 G85726,30.0,41.0,33.0,35.0,43.0,44.0,47.0,34.0,38.0,40.0,38.0,40.0,40.0,39.0,42.0,53.0,42.0,34.0,36.0,52.0,41.0,53.0,37.0,48.0,61.0,83.0,65.0,76.0,90.0,93.0,80.0,81.0,84.0,88.0,86.0,87.0,77.0,72.0,86.0,85.0,75.0,50.0,61.0,69.0,56.0,54.0,45.0,45.0,39.0,53.0,48.0,50.0,34.0,41.0,43.0,52.0,40.0,39.0,44.0,45.0,36.0,43.0,35.0,37.0,32.0,37.0,27.0,27.0,33.0,22.0,17.0,18.0,13.0,8.0,4.0,18.0,6.0,10.0,12.0,7.0,4.0,5.0,4.0,2.0,5.0,2.0,3.0,6.0,1.0,2.0,1.0,1.0,1.0,2.0,1.0,4.0 G85727,50.0,36.0,38.0,36.0,39.0,44.0,41.0,51.0,56.0,60.0,51.0,51.0,70.0,43.0,61.0,49.0,48.0,33.0,52.0,39.0,22.0,35.0,35.0,30.0,50.0,37.0,37.0,35.0,43.0,31.0,37.0,46.0,54.0,42.0,63.0,59.0,54.0,56.0,76.0,59.0,75.0,70.0,54.0,62.0,74.0,59.0,69.0,63.0,67.0,48.0,53.0,42.0,43.0,61.0,46.0,40.0,45.0,38.0,43.0,32.0,33.0,31.0,32.0,27.0,27.0,23.0,21.0,25.0,27.0,15.0,17.0,14.0,13.0,15.0,11.0,13.0,8.0,7.0,14.0,8.0,6.0,8.0,10.0,7.0,4.0,3.0,3.0,3.0,3.0,,,2.0,1.0,1.0,2.0,1.0 G85736,19.0,15.0,19.0,16.0,15.0,17.0,18.0,18.0,24.0,23.0,37.0,29.0,22.0,20.0,29.0,22.0,21.0,32.0,28.0,30.0,21.0,31.0,37.0,26.0,27.0,37.0,38.0,51.0,40.0,51.0,57.0,54.0,35.0,49.0,48.0,50.0,46.0,52.0,53.0,52.0,44.0,35.0,38.0,46.0,47.0,52.0,46.0,44.0,35.0,32.0,56.0,29.0,37.0,36.0,39.0,23.0,29.0,28.0,33.0,34.0,26.0,23.0,28.0,13.0,13.0,18.0,16.0,19.0,8.0,12.0,19.0,14.0,11.0,7.0,6.0,7.0,3.0,5.0,4.0,2.0,6.0,7.0,3.0,3.0,,8.0,3.0,1.0,4.0,2.0,1.0,1.0,2.0,3.0,,6.0 Y00020,20.0,24.0,36.0,23.0,37.0,33.0,29.0,32.0,30.0,25.0,23.0,32.0,27.0,22.0,25.0,28.0,25.0,29.0,25.0,22.0,40.0,27.0,29.0,41.0,53.0,56.0,80.0,91.0,130.0,125.0,142.0,169.0,147.0,167.0,155.0,154.0,120.0,141.0,101.0,104.0,105.0,99.0,106.0,79.0,83.0,92.0,78.0,78.0,73.0,60.0,59.0,55.0,65.0,66.0,63.0,50.0,57.0,77.0,48.0,57.0,45.0,51.0,39.0,52.0,36.0,36.0,32.0,33.0,27.0,17.0,21.0,13.0,17.0,14.0,15.0,14.0,17.0,9.0,17.0,11.0,7.0,10.0,8.0,4.0,11.0,7.0,2.0,6.0,2.0,2.0,4.0,1.0,1.0,1.0,2.0,1.0 Y02811,63.0,67.0,88.0,111.0,92.0,100.0,128.0,126.0,112.0,126.0,108.0,103.0,113.0,88.0,101.0,87.0,74.0,68.0,52.0,51.0,38.0,40.0,35.0,26.0,38.0,38.0,43.0,37.0,35.0,34.0,48.0,48.0,58.0,68.0,69.0,94.0,83.0,106.0,122.0,141.0,116.0,122.0,120.0,127.0,137.0,127.0,136.0,108.0,116.0,104.0,104.0,81.0,96.0,84.0,71.0,80.0,73.0,63.0,46.0,55.0,58.0,46.0,63.0,31.0,40.0,27.0,42.0,49.0,39.0,30.0,28.0,29.0,26.0,17.0,17.0,19.0,12.0,21.0,21.0,16.0,18.0,9.0,15.0,8.0,10.0,4.0,8.0,6.0,2.0,6.0,5.0,1.0,5.0,5.0,,1.0 Y02974,81.0,90.0,93.0,109.0,84.0,92.0,87.0,99.0,97.0,90.0,94.0,99.0,107.0,99.0,104.0,91.0,85.0,82.0,72.0,68.0,71.0,70.0,66.0,73.0,84.0,105.0,105.0,115.0,101.0,119.0,93.0,125.0,113.0,121.0,123.0,153.0,136.0,130.0,141.0,120.0,132.0,145.0,126.0,138.0,150.0,136.0,123.0,118.0,104.0,133.0,103.0,83.0,92.0,78.0,90.0,68.0,73.0,56.0,69.0,64.0,50.0,38.0,50.0,36.0,37.0,23.0,11.0,20.0,19.0,12.0,12.0,9.0,9.0,8.0,7.0,6.0,3.0,5.0,8.0,4.0,4.0,4.0,3.0,2.0,1.0,1.0,1.0,,1.0,2.0,1.0,,1.0,1.0,, Y03063,24.0,39.0,27.0,19.0,12.0,30.0,23.0,19.0,33.0,26.0,39.0,37.0,41.0,38.0,28.0,25.0,33.0,39.0,26.0,31.0,40.0,33.0,42.0,50.0,61.0,94.0,97.0,120.0,120.0,135.0,128.0,125.0,109.0,124.0,113.0,138.0,123.0,108.0,91.0,115.0,102.0,84.0,107.0,88.0,86.0,85.0,85.0,72.0,74.0,56.0,53.0,58.0,58.0,59.0,58.0,52.0,58.0,42.0,45.0,52.0,51.0,45.0,40.0,42.0,36.0,43.0,33.0,37.0,20.0,17.0,15.0,16.0,11.0,16.0,11.0,10.0,5.0,12.0,10.0,4.0,3.0,5.0,3.0,9.0,3.0,7.0,6.0,4.0,5.0,3.0,2.0,1.0,2.0,,2.0,1.0 Y03755,61.0,82.0,77.0,80.0,62.0,78.0,70.0,57.0,80.0,78.0,73.0,73.0,59.0,72.0,41.0,54.0,54.0,56.0,57.0,55.0,64.0,68.0,66.0,82.0,113.0,133.0,156.0,183.0,167.0,158.0,189.0,185.0,198.0,204.0,211.0,183.0,204.0,173.0,156.0,133.0,135.0,136.0,156.0,124.0,101.0,113.0,86.0,79.0,81.0,72.0,64.0,76.0,75.0,55.0,56.0,52.0,41.0,36.0,53.0,37.0,43.0,47.0,27.0,35.0,34.0,21.0,25.0,25.0,20.0,22.0,16.0,22.0,26.0,27.0,23.0,19.0,18.0,18.0,20.0,21.0,13.0,18.0,21.0,11.0,13.0,12.0,11.0,12.0,9.0,6.0,7.0,7.0,4.0,6.0,1.0,9.0 Y06113,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,1.0,2.0,1.0,4.0,,,,1.0,2.0,1.0,,4.0,4.0,2.0,1.0,3.0,2.0,3.0,3.0,5.0,3.0,4.0,5.0,5.0,6.0,10.0,5.0,9.0,9.0,9.0,12.0,5.0,9.0,5.0,7.0,9.0,7.0,5.0,5.0,6.0,3.0,,4.0 Y06345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,2.0,,1.0,,,,,,,1.0,,,,1.0,,,,1.0,,,2.0,2.0,1.0,4.0,3.0,1.0,1.0,2.0,1.0,2.0,3.0,2.0,3.0,2.0,6.0,4.0,9.0,5.0,3.0,6.0,8.0,9.0,11.0,11.0,15.0,9.0,10.0,19.0,18.0,20.0,12.0,19.0,18.0,17.0,10.0,26.0,19.0,14.0,14.0,18.0,12.0,11.0,19.0,10.0,30.0 Y06545,,,,,,,,,,,,,,,,,,,1.0,1.0,1.0,1.0,1.0,,2.0,1.0,5.0,3.0,1.0,1.0,5.0,4.0,7.0,4.0,6.0,2.0,8.0,7.0,2.0,4.0,7.0,7.0,3.0,3.0,4.0,1.0,4.0,5.0,4.0,4.0,5.0,3.0,3.0,4.0,6.0,2.0,4.0,1.0,4.0,2.0,3.0,,2.0,3.0,,2.0,1.0,1.0,,,,,,1.0,,,,,,,,1.0,,,,,,,,,,,,,, Y07020,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,1.0,2.0,1.0,,,,,,1.0,1.0,1.0,2.0,,,2.0,2.0,,2.0,2.0,3.0,,2.0,2.0,1.0,2.0,1.0,2.0,,4.0,4.0,3.0,5.0,2.0,2.0,6.0,3.0,4.0,5.0,4.0,6.0,12.0,6.0,5.0,10.0,8.0,4.0,8.0,7.0,7.0,6.0,4.0,6.0,7.0,5.0,4.0,8.0,5.0,8.0,3.0,7.0,6.0,8.0,4.0,3.0,6.0,5.0,2.0,5.0,4.0 Y08411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2.0,,,,1.0,1.0,,1.0,1.0,1.0,3.0,2.0,1.0,2.0,2.0,1.0,3.0,1.0,5.0,3.0,4.0,4.0,7.0,5.0,5.0,6.0,3.0,3.0,3.0,3.0,4.0,1.0,2.0,3.0,1.0,7.0,2.0,4.0,6.0,3.0,3.0,2.0,4.0,1.0,1.0,,2.0,2.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 G82002,54.0,41.0,52.0,46.0,60.0,58.0,52.0,59.0,53.0,79.0,45.0,65.0,85.0,95.0,97.0,108.0,111.0,98.0,66.0,71.0,43.0,55.0,47.0,64.0,51.0,52.0,57.0,67.0,82.0,71.0,67.0,64.0,59.0,72.0,50.0,78.0,54.0,74.0,62.0,62.0,59.0,71.0,58.0,52.0,56.0,68.0,55.0,47.0,47.0,55.0,45.0,39.0,62.0,59.0,59.0,49.0,59.0,52.0,69.0,64.0,65.0,63.0,70.0,57.0,47.0,50.0,48.0,49.0,56.0,51.0,42.0,38.0,32.0,31.0,47.0,39.0,43.0,39.0,37.0,25.0,33.0,30.0,21.0,18.0,17.0,15.0,9.0,15.0,6.0,5.0,4.0,11.0,1.0,1.0,4.0,1.0 G82006,95.0,85.0,82.0,107.0,84.0,88.0,101.0,118.0,109.0,114.0,104.0,146.0,108.0,128.0,128.0,143.0,161.0,115.0,117.0,96.0,72.0,73.0,93.0,67.0,80.0,91.0,94.0,105.0,87.0,85.0,97.0,104.0,98.0,96.0,114.0,112.0,119.0,139.0,123.0,131.0,111.0,118.0,117.0,108.0,124.0,130.0,119.0,122.0,124.0,129.0,125.0,106.0,109.0,84.0,100.0,103.0,117.0,118.0,99.0,103.0,92.0,87.0,80.0,96.0,75.0,65.0,52.0,53.0,44.0,56.0,58.0,54.0,53.0,41.0,51.0,40.0,32.0,48.0,46.0,34.0,21.0,29.0,20.0,15.0,27.0,13.0,9.0,16.0,15.0,13.0,5.0,8.0,6.0,4.0,2.0,6.0 G82007,20.0,18.0,15.0,22.0,20.0,24.0,25.0,25.0,29.0,21.0,23.0,24.0,31.0,33.0,23.0,27.0,21.0,26.0,41.0,38.0,35.0,34.0,30.0,38.0,31.0,35.0,40.0,39.0,35.0,39.0,36.0,42.0,31.0,34.0,32.0,31.0,29.0,35.0,30.0,28.0,33.0,36.0,27.0,19.0,32.0,25.0,28.0,19.0,28.0,27.0,33.0,36.0,29.0,36.0,46.0,31.0,53.0,49.0,51.0,63.0,59.0,55.0,61.0,60.0,58.0,64.0,54.0,51.0,48.0,52.0,29.0,49.0,51.0,43.0,39.0,45.0,46.0,56.0,52.0,30.0,47.0,40.0,31.0,14.0,31.0,17.0,17.0,12.0,10.0,9.0,4.0,11.0,4.0,2.0,1.0,8.0 G82013,69.0,76.0,87.0,79.0,96.0,74.0,105.0,87.0,91.0,106.0,106.0,87.0,96.0,106.0,130.0,144.0,151.0,151.0,125.0,55.0,52.0,66.0,60.0,60.0,72.0,70.0,76.0,68.0,61.0,58.0,74.0,67.0,66.0,100.0,89.0,88.0,96.0,83.0,98.0,78.0,115.0,89.0,80.0,100.0,106.0,108.0,96.0,90.0,88.0,85.0,102.0,102.0,96.0,101.0,90.0,86.0,92.0,91.0,96.0,101.0,96.0,106.0,86.0,99.0,82.0,79.0,76.0,73.0,83.0,83.0,71.0,94.0,62.0,76.0,67.0,62.0,60.0,76.0,74.0,72.0,63.0,59.0,43.0,36.0,27.0,27.0,33.0,26.0,20.0,24.0,24.0,14.0,15.0,13.0,8.0,18.0 G82014,99.0,110.0,108.0,127.0,128.0,112.0,142.0,176.0,138.0,135.0,152.0,161.0,144.0,137.0,187.0,141.0,145.0,150.0,145.0,129.0,115.0,110.0,104.0,109.0,108.0,113.0,120.0,111.0,129.0,122.0,123.0,145.0,132.0,138.0,142.0,148.0,138.0,153.0,153.0,135.0,133.0,154.0,131.0,137.0,145.0,142.0,146.0,138.0,133.0,125.0,112.0,137.0,123.0,126.0,124.0,132.0,157.0,132.0,145.0,153.0,128.0,108.0,129.0,127.0,101.0,101.0,96.0,84.0,94.0,85.0,86.0,82.0,70.0,65.0,52.0,64.0,85.0,65.0,67.0,46.0,48.0,38.0,28.0,33.0,17.0,28.0,12.0,22.0,14.0,8.0,7.0,8.0,5.0,4.0,1.0,7.0 G82015,50.0,68.0,58.0,52.0,49.0,61.0,71.0,67.0,62.0,77.0,81.0,79.0,74.0,80.0,94.0,80.0,81.0,67.0,77.0,65.0,88.0,84.0,71.0,89.0,80.0,85.0,99.0,96.0,98.0,96.0,89.0,97.0,93.0,110.0,100.0,96.0,94.0,104.0,88.0,94.0,68.0,98.0,93.0,73.0,93.0,82.0,80.0,68.0,81.0,74.0,76.0,72.0,88.0,81.0,111.0,76.0,79.0,81.0,91.0,89.0,103.0,84.0,72.0,65.0,68.0,70.0,75.0,69.0,69.0,57.0,65.0,60.0,56.0,48.0,45.0,50.0,57.0,49.0,48.0,30.0,30.0,25.0,34.0,21.0,14.0,17.0,19.0,8.0,9.0,9.0,3.0,5.0,5.0,10.0,4.0,5.0 G82016,52.0,61.0,56.0,59.0,59.0,59.0,80.0,60.0,68.0,71.0,79.0,66.0,83.0,85.0,78.0,82.0,76.0,66.0,73.0,51.0,45.0,54.0,37.0,45.0,51.0,45.0,40.0,47.0,42.0,37.0,44.0,48.0,66.0,66.0,63.0,77.0,70.0,85.0,72.0,74.0,67.0,68.0,74.0,91.0,69.0,95.0,78.0,73.0,69.0,79.0,92.0,84.0,78.0,89.0,67.0,71.0,88.0,69.0,92.0,75.0,81.0,79.0,68.0,68.0,64.0,77.0,56.0,60.0,54.0,44.0,41.0,40.0,44.0,43.0,42.0,46.0,49.0,59.0,39.0,30.0,37.0,35.0,25.0,24.0,27.0,23.0,31.0,17.0,17.0,18.0,12.0,16.0,8.0,11.0,8.0,11.0 G82018,11.0,11.0,18.0,20.0,19.0,18.0,24.0,18.0,15.0,20.0,18.0,19.0,21.0,27.0,27.0,23.0,33.0,60.0,80.0,50.0,40.0,29.0,19.0,27.0,30.0,28.0,29.0,27.0,19.0,21.0,19.0,19.0,32.0,23.0,22.0,29.0,26.0,30.0,27.0,15.0,26.0,29.0,16.0,30.0,30.0,29.0,28.0,21.0,29.0,27.0,23.0,30.0,38.0,31.0,30.0,36.0,37.0,28.0,33.0,52.0,40.0,43.0,44.0,49.0,42.0,51.0,40.0,43.0,29.0,36.0,33.0,35.0,32.0,32.0,35.0,38.0,35.0,45.0,55.0,30.0,33.0,30.0,23.0,19.0,25.0,16.0,17.0,14.0,20.0,9.0,15.0,8.0,4.0,4.0,4.0,8.0 G82019,74.0,64.0,74.0,90.0,80.0,77.0,81.0,91.0,75.0,92.0,73.0,82.0,104.0,94.0,87.0,88.0,80.0,88.0,75.0,56.0,61.0,54.0,54.0,62.0,52.0,86.0,67.0,54.0,63.0,72.0,69.0,76.0,85.0,84.0,77.0,92.0,84.0,84.0,82.0,109.0,97.0,79.0,69.0,77.0,87.0,86.0,73.0,93.0,76.0,81.0,103.0,84.0,76.0,72.0,79.0,94.0,74.0,97.0,98.0,111.0,95.0,75.0,87.0,116.0,90.0,83.0,77.0,78.0,53.0,60.0,50.0,60.0,67.0,61.0,57.0,47.0,61.0,69.0,61.0,47.0,46.0,50.0,48.0,36.0,22.0,19.0,27.0,23.0,17.0,21.0,15.0,10.0,9.0,10.0,6.0,17.0 G82020,56.0,59.0,68.0,65.0,73.0,74.0,55.0,71.0,66.0,88.0,82.0,76.0,95.0,88.0,70.0,78.0,81.0,83.0,71.0,70.0,77.0,64.0,63.0,63.0,78.0,68.0,80.0,89.0,69.0,69.0,61.0,70.0,73.0,76.0,86.0,71.0,78.0,67.0,74.0,81.0,79.0,63.0,79.0,72.0,81.0,75.0,69.0,81.0,81.0,63.0,86.0,82.0,85.0,74.0,98.0,82.0,106.0,79.0,83.0,70.0,85.0,80.0,71.0,82.0,69.0,70.0,66.0,73.0,65.0,65.0,54.0,53.0,51.0,37.0,60.0,57.0,57.0,69.0,72.0,51.0,41.0,41.0,29.0,29.0,36.0,20.0,21.0,20.0,13.0,9.0,11.0,5.0,4.0,2.0,4.0,7.0 G82021,69.0,100.0,107.0,102.0,111.0,98.0,114.0,96.0,142.0,117.0,99.0,109.0,129.0,119.0,131.0,122.0,110.0,132.0,109.0,122.0,93.0,118.0,90.0,89.0,81.0,112.0,87.0,100.0,101.0,95.0,86.0,102.0,110.0,123.0,106.0,126.0,119.0,129.0,117.0,127.0,106.0,104.0,112.0,114.0,124.0,103.0,125.0,92.0,98.0,98.0,90.0,107.0,97.0,94.0,109.0,107.0,114.0,108.0,111.0,99.0,93.0,94.0,94.0,83.0,96.0,75.0,100.0,80.0,66.0,63.0,64.0,59.0,66.0,62.0,60.0,45.0,59.0,59.0,71.0,50.0,56.0,57.0,22.0,37.0,24.0,33.0,23.0,29.0,18.0,17.0,16.0,14.0,8.0,8.0,6.0,13.0 G82022,53.0,55.0,56.0,69.0,59.0,64.0,54.0,67.0,69.0,87.0,68.0,73.0,72.0,73.0,68.0,59.0,58.0,54.0,80.0,44.0,38.0,36.0,47.0,33.0,44.0,45.0,50.0,52.0,53.0,39.0,45.0,60.0,75.0,75.0,57.0,70.0,66.0,63.0,66.0,80.0,68.0,74.0,58.0,73.0,70.0,77.0,70.0,76.0,63.0,73.0,73.0,56.0,57.0,56.0,58.0,58.0,50.0,56.0,61.0,55.0,55.0,49.0,45.0,50.0,49.0,52.0,43.0,42.0,37.0,31.0,32.0,37.0,32.0,50.0,38.0,36.0,34.0,38.0,32.0,28.0,24.0,30.0,15.0,13.0,13.0,19.0,13.0,9.0,12.0,10.0,5.0,7.0,8.0,4.0,1.0,12.0 G82023,41.0,49.0,43.0,34.0,44.0,55.0,56.0,48.0,46.0,56.0,43.0,49.0,46.0,54.0,56.0,39.0,37.0,36.0,42.0,42.0,29.0,33.0,47.0,36.0,36.0,42.0,45.0,34.0,47.0,43.0,50.0,53.0,56.0,51.0,52.0,55.0,60.0,36.0,51.0,65.0,44.0,49.0,47.0,43.0,44.0,45.0,42.0,28.0,29.0,36.0,24.0,46.0,37.0,46.0,38.0,41.0,51.0,57.0,50.0,52.0,53.0,50.0,50.0,40.0,49.0,30.0,43.0,33.0,33.0,30.0,26.0,22.0,26.0,31.0,21.0,21.0,30.0,24.0,29.0,21.0,19.0,20.0,18.0,14.0,11.0,12.0,13.0,4.0,7.0,3.0,5.0,1.0,2.0,2.0,1.0,1.0 G82024,123.0,129.0,161.0,147.0,157.0,161.0,160.0,168.0,161.0,151.0,167.0,142.0,165.0,141.0,143.0,139.0,167.0,140.0,136.0,120.0,102.0,108.0,87.0,114.0,118.0,130.0,145.0,139.0,120.0,131.0,160.0,156.0,186.0,165.0,163.0,184.0,188.0,171.0,162.0,160.0,176.0,143.0,170.0,141.0,177.0,184.0,157.0,140.0,150.0,128.0,159.0,153.0,193.0,144.0,185.0,185.0,163.0,193.0,169.0,193.0,174.0,175.0,160.0,161.0,162.0,159.0,146.0,138.0,133.0,123.0,127.0,104.0,108.0,106.0,119.0,117.0,104.0,134.0,140.0,97.0,115.0,86.0,91.0,68.0,55.0,59.0,45.0,37.0,41.0,35.0,18.0,12.0,15.0,18.0,7.0,15.0 G82025,96.0,80.0,91.0,99.0,103.0,101.0,128.0,110.0,102.0,147.0,123.0,115.0,127.0,154.0,119.0,147.0,173.0,117.0,132.0,96.0,81.0,99.0,81.0,93.0,90.0,114.0,113.0,132.0,111.0,117.0,140.0,136.0,171.0,148.0,151.0,152.0,151.0,190.0,198.0,165.0,162.0,169.0,171.0,147.0,172.0,163.0,151.0,144.0,142.0,138.0,156.0,142.0,152.0,152.0,141.0,144.0,129.0,137.0,135.0,124.0,141.0,121.0,109.0,87.0,98.0,91.0,93.0,83.0,69.0,60.0,82.0,77.0,54.0,53.0,72.0,63.0,66.0,75.0,69.0,52.0,58.0,35.0,44.0,24.0,28.0,25.0,22.0,22.0,15.0,15.0,20.0,13.0,9.0,9.0,3.0,10.0 G82026,48.0,43.0,59.0,44.0,49.0,49.0,39.0,56.0,57.0,56.0,42.0,51.0,42.0,58.0,37.0,52.0,55.0,40.0,48.0,51.0,39.0,46.0,34.0,53.0,45.0,54.0,50.0,55.0,40.0,50.0,57.0,69.0,68.0,51.0,65.0,49.0,47.0,57.0,46.0,43.0,52.0,43.0,45.0,44.0,41.0,51.0,56.0,56.0,44.0,45.0,41.0,51.0,39.0,42.0,69.0,52.0,49.0,49.0,46.0,65.0,64.0,67.0,49.0,39.0,42.0,36.0,43.0,38.0,43.0,38.0,38.0,33.0,40.0,31.0,32.0,30.0,33.0,28.0,33.0,21.0,30.0,18.0,19.0,12.0,14.0,15.0,7.0,5.0,7.0,4.0,6.0,1.0,3.0,4.0,2.0,2.0 G82027,62.0,70.0,58.0,76.0,54.0,73.0,91.0,96.0,60.0,68.0,92.0,81.0,89.0,81.0,99.0,72.0,93.0,94.0,97.0,68.0,70.0,81.0,61.0,73.0,67.0,89.0,87.0,93.0,84.0,94.0,81.0,86.0,94.0,80.0,103.0,91.0,102.0,82.0,108.0,94.0,80.0,88.0,72.0,99.0,76.0,88.0,74.0,73.0,78.0,86.0,86.0,81.0,96.0,98.0,100.0,98.0,86.0,99.0,123.0,88.0,104.0,122.0,113.0,92.0,89.0,83.0,69.0,91.0,78.0,82.0,70.0,79.0,69.0,66.0,75.0,72.0,74.0,90.0,74.0,57.0,55.0,58.0,43.0,42.0,30.0,37.0,33.0,23.0,19.0,21.0,11.0,10.0,12.0,4.0,3.0,6.0 G82028,123.0,122.0,161.0,146.0,169.0,154.0,132.0,151.0,172.0,143.0,133.0,162.0,155.0,149.0,177.0,148.0,166.0,167.0,151.0,131.0,131.0,139.0,105.0,106.0,123.0,133.0,141.0,124.0,151.0,126.0,151.0,157.0,145.0,165.0,193.0,164.0,153.0,181.0,184.0,142.0,181.0,163.0,160.0,173.0,154.0,175.0,124.0,166.0,141.0,151.0,137.0,131.0,127.0,142.0,147.0,133.0,171.0,173.0,146.0,152.0,157.0,139.0,161.0,151.0,144.0,131.0,138.0,136.0,120.0,101.0,109.0,104.0,106.0,81.0,109.0,84.0,96.0,103.0,124.0,82.0,64.0,75.0,57.0,48.0,55.0,35.0,44.0,43.0,37.0,26.0,27.0,17.0,13.0,13.0,11.0,25.0 G82031,31.0,38.0,47.0,54.0,60.0,52.0,55.0,57.0,54.0,69.0,60.0,72.0,80.0,68.0,78.0,69.0,61.0,62.0,68.0,53.0,46.0,51.0,58.0,46.0,51.0,58.0,45.0,71.0,49.0,51.0,59.0,64.0,77.0,72.0,64.0,74.0,61.0,73.0,92.0,61.0,92.0,91.0,78.0,93.0,90.0,74.0,86.0,66.0,93.0,82.0,69.0,72.0,111.0,80.0,96.0,77.0,87.0,76.0,94.0,85.0,75.0,75.0,61.0,68.0,51.0,54.0,59.0,40.0,53.0,52.0,54.0,45.0,55.0,41.0,42.0,51.0,52.0,53.0,78.0,42.0,37.0,28.0,25.0,25.0,27.0,23.0,26.0,21.0,12.0,18.0,12.0,15.0,10.0,7.0,8.0,9.0 G82032,102.0,84.0,73.0,78.0,68.0,92.0,79.0,113.0,84.0,92.0,113.0,103.0,100.0,105.0,103.0,101.0,122.0,115.0,97.0,90.0,88.0,101.0,110.0,99.0,112.0,108.0,117.0,112.0,99.0,116.0,125.0,125.0,117.0,109.0,94.0,113.0,108.0,104.0,118.0,123.0,105.0,104.0,116.0,106.0,102.0,127.0,108.0,70.0,101.0,95.0,94.0,80.0,97.0,99.0,91.0,87.0,108.0,92.0,88.0,108.0,90.0,97.0,80.0,80.0,61.0,78.0,73.0,56.0,59.0,57.0,64.0,48.0,42.0,51.0,56.0,52.0,56.0,45.0,54.0,41.0,35.0,24.0,18.0,27.0,21.0,18.0,23.0,17.0,13.0,12.0,17.0,9.0,4.0,7.0,4.0,7.0 G82035,43.0,47.0,51.0,67.0,44.0,50.0,57.0,75.0,50.0,70.0,62.0,57.0,68.0,84.0,59.0,60.0,72.0,62.0,73.0,51.0,42.0,42.0,48.0,49.0,43.0,47.0,55.0,55.0,54.0,43.0,74.0,72.0,63.0,83.0,62.0,69.0,57.0,65.0,70.0,67.0,64.0,71.0,68.0,56.0,69.0,59.0,67.0,59.0,49.0,44.0,64.0,84.0,81.0,67.0,65.0,64.0,54.0,60.0,41.0,69.0,62.0,71.0,65.0,59.0,53.0,71.0,50.0,55.0,41.0,53.0,46.0,49.0,37.0,41.0,50.0,48.0,39.0,56.0,41.0,31.0,53.0,34.0,29.0,31.0,29.0,23.0,19.0,9.0,14.0,8.0,9.0,5.0,9.0,8.0,4.0,4.0 G82036,41.0,43.0,47.0,49.0,52.0,50.0,43.0,51.0,46.0,57.0,58.0,67.0,53.0,61.0,62.0,64.0,69.0,54.0,46.0,63.0,50.0,40.0,52.0,51.0,57.0,60.0,60.0,44.0,67.0,42.0,65.0,52.0,65.0,70.0,62.0,66.0,71.0,79.0,64.0,73.0,50.0,56.0,64.0,63.0,60.0,54.0,52.0,53.0,58.0,64.0,63.0,63.0,70.0,78.0,69.0,82.0,70.0,67.0,91.0,101.0,91.0,80.0,92.0,90.0,90.0,92.0,91.0,102.0,84.0,71.0,93.0,80.0,71.0,77.0,62.0,76.0,65.0,78.0,90.0,54.0,78.0,43.0,45.0,40.0,22.0,38.0,26.0,22.0,14.0,22.0,10.0,5.0,11.0,8.0,10.0,17.0 G82037,53.0,57.0,58.0,75.0,79.0,78.0,91.0,92.0,97.0,117.0,113.0,124.0,114.0,108.0,114.0,125.0,116.0,105.0,113.0,103.0,93.0,88.0,83.0,90.0,68.0,85.0,76.0,73.0,70.0,68.0,75.0,64.0,100.0,73.0,75.0,80.0,91.0,92.0,80.0,94.0,79.0,89.0,101.0,106.0,106.0,102.0,96.0,119.0,114.0,111.0,118.0,121.0,105.0,121.0,137.0,139.0,112.0,126.0,121.0,128.0,115.0,141.0,116.0,111.0,115.0,96.0,79.0,82.0,72.0,73.0,77.0,76.0,78.0,54.0,73.0,76.0,74.0,93.0,76.0,53.0,62.0,75.0,57.0,47.0,35.0,39.0,38.0,36.0,41.0,28.0,16.0,13.0,12.0,16.0,5.0,20.0 G82038,41.0,44.0,44.0,50.0,60.0,51.0,54.0,51.0,59.0,61.0,61.0,62.0,52.0,56.0,61.0,65.0,59.0,49.0,40.0,61.0,29.0,42.0,31.0,42.0,49.0,47.0,46.0,57.0,51.0,60.0,75.0,78.0,70.0,59.0,65.0,55.0,76.0,73.0,65.0,66.0,51.0,52.0,60.0,49.0,52.0,59.0,45.0,58.0,71.0,57.0,46.0,59.0,54.0,52.0,60.0,79.0,75.0,70.0,62.0,82.0,85.0,79.0,84.0,66.0,66.0,59.0,61.0,81.0,74.0,56.0,78.0,84.0,55.0,63.0,44.0,57.0,55.0,58.0,74.0,59.0,46.0,44.0,29.0,33.0,27.0,28.0,21.0,25.0,18.0,13.0,10.0,10.0,4.0,8.0,3.0,9.0 G82039,83.0,96.0,74.0,88.0,94.0,99.0,103.0,94.0,95.0,98.0,87.0,105.0,128.0,115.0,102.0,115.0,110.0,105.0,90.0,88.0,78.0,103.0,74.0,110.0,106.0,110.0,156.0,141.0,139.0,148.0,149.0,140.0,140.0,119.0,145.0,140.0,160.0,158.0,163.0,165.0,163.0,156.0,158.0,141.0,150.0,155.0,114.0,136.0,126.0,109.0,127.0,118.0,145.0,136.0,123.0,141.0,131.0,129.0,122.0,132.0,131.0,144.0,116.0,102.0,135.0,99.0,120.0,110.0,106.0,105.0,83.0,91.0,73.0,68.0,70.0,79.0,76.0,84.0,82.0,71.0,71.0,61.0,52.0,33.0,37.0,48.0,36.0,25.0,23.0,14.0,11.0,12.0,7.0,5.0,7.0,12.0 G82041,46.0,65.0,65.0,82.0,72.0,61.0,60.0,99.0,82.0,70.0,88.0,101.0,94.0,107.0,103.0,98.0,100.0,84.0,86.0,61.0,57.0,62.0,67.0,66.0,64.0,75.0,74.0,92.0,97.0,102.0,90.0,81.0,95.0,110.0,121.0,121.0,118.0,125.0,131.0,128.0,123.0,115.0,113.0,130.0,107.0,122.0,127.0,120.0,129.0,106.0,116.0,107.0,113.0,111.0,131.0,110.0,114.0,112.0,104.0,95.0,96.0,103.0,62.0,68.0,74.0,62.0,63.0,70.0,53.0,53.0,47.0,57.0,40.0,40.0,33.0,53.0,49.0,45.0,55.0,44.0,25.0,35.0,30.0,29.0,15.0,24.0,25.0,28.0,15.0,21.0,11.0,4.0,4.0,6.0,3.0,7.0 G82042,90.0,74.0,98.0,108.0,96.0,118.0,115.0,126.0,112.0,101.0,111.0,116.0,128.0,108.0,119.0,123.0,109.0,112.0,79.0,91.0,67.0,75.0,64.0,85.0,77.0,92.0,100.0,101.0,118.0,112.0,133.0,121.0,137.0,171.0,137.0,150.0,154.0,156.0,149.0,145.0,126.0,142.0,146.0,145.0,134.0,140.0,129.0,144.0,129.0,124.0,127.0,115.0,113.0,116.0,101.0,103.0,104.0,105.0,122.0,123.0,110.0,119.0,104.0,118.0,118.0,88.0,83.0,65.0,78.0,76.0,59.0,46.0,46.0,53.0,49.0,65.0,60.0,60.0,64.0,40.0,40.0,37.0,31.0,28.0,32.0,30.0,33.0,29.0,22.0,10.0,13.0,9.0,11.0,7.0,4.0,13.0 G82044,101.0,147.0,148.0,152.0,158.0,169.0,150.0,202.0,202.0,190.0,167.0,171.0,191.0,178.0,166.0,165.0,163.0,161.0,165.0,123.0,113.0,96.0,119.0,120.0,88.0,117.0,125.0,128.0,131.0,126.0,150.0,170.0,170.0,163.0,193.0,186.0,210.0,224.0,221.0,232.0,219.0,217.0,164.0,185.0,192.0,172.0,162.0,155.0,148.0,165.0,140.0,134.0,143.0,153.0,159.0,128.0,126.0,128.0,128.0,147.0,100.0,101.0,99.0,97.0,102.0,80.0,82.0,93.0,73.0,72.0,84.0,59.0,64.0,42.0,55.0,43.0,40.0,50.0,42.0,35.0,33.0,33.0,23.0,31.0,20.0,24.0,8.0,19.0,12.0,11.0,8.0,7.0,2.0,2.0,4.0,5.0 G82046,25.0,29.0,27.0,23.0,25.0,34.0,36.0,42.0,32.0,43.0,36.0,31.0,31.0,35.0,40.0,48.0,42.0,40.0,33.0,26.0,29.0,36.0,39.0,34.0,29.0,36.0,45.0,41.0,30.0,44.0,32.0,38.0,32.0,38.0,47.0,33.0,38.0,38.0,38.0,49.0,36.0,44.0,26.0,38.0,29.0,39.0,43.0,32.0,33.0,38.0,28.0,31.0,29.0,41.0,35.0,31.0,44.0,49.0,39.0,44.0,49.0,45.0,49.0,42.0,36.0,44.0,42.0,28.0,32.0,34.0,34.0,36.0,29.0,33.0,28.0,35.0,30.0,29.0,24.0,15.0,13.0,21.0,15.0,20.0,13.0,11.0,14.0,13.0,7.0,7.0,4.0,4.0,4.0,2.0,5.0,3.0 G82048,37.0,45.0,40.0,38.0,44.0,55.0,54.0,52.0,52.0,51.0,59.0,52.0,56.0,75.0,74.0,55.0,63.0,67.0,70.0,56.0,56.0,59.0,59.0,52.0,63.0,63.0,60.0,57.0,61.0,59.0,57.0,72.0,59.0,65.0,67.0,74.0,62.0,58.0,72.0,71.0,72.0,73.0,75.0,65.0,72.0,60.0,64.0,65.0,71.0,72.0,76.0,78.0,65.0,61.0,70.0,58.0,59.0,77.0,70.0,63.0,74.0,59.0,66.0,56.0,49.0,49.0,37.0,42.0,55.0,51.0,40.0,29.0,24.0,27.0,38.0,34.0,28.0,23.0,36.0,24.0,17.0,21.0,19.0,21.0,17.0,11.0,12.0,13.0,14.0,14.0,10.0,7.0,6.0,1.0,2.0,3.0 G82050,115.0,119.0,122.0,129.0,144.0,154.0,142.0,146.0,156.0,182.0,184.0,164.0,162.0,172.0,171.0,173.0,181.0,162.0,144.0,130.0,134.0,119.0,114.0,126.0,141.0,146.0,132.0,165.0,155.0,203.0,185.0,189.0,215.0,198.0,226.0,202.0,201.0,228.0,188.0,191.0,189.0,214.0,192.0,175.0,183.0,211.0,166.0,170.0,168.0,152.0,147.0,164.0,135.0,140.0,164.0,170.0,168.0,183.0,162.0,157.0,146.0,151.0,140.0,149.0,99.0,111.0,98.0,99.0,73.0,75.0,79.0,79.0,80.0,87.0,72.0,81.0,78.0,80.0,82.0,59.0,68.0,48.0,52.0,49.0,33.0,33.0,23.0,36.0,18.0,11.0,6.0,10.0,13.0,7.0,9.0,9.0 G82051,64.0,63.0,72.0,84.0,83.0,69.0,82.0,93.0,87.0,73.0,80.0,72.0,98.0,97.0,81.0,85.0,97.0,102.0,82.0,73.0,78.0,82.0,62.0,59.0,74.0,77.0,73.0,71.0,77.0,82.0,91.0,95.0,76.0,102.0,104.0,86.0,88.0,88.0,89.0,93.0,107.0,89.0,89.0,97.0,92.0,93.0,89.0,79.0,89.0,99.0,85.0,87.0,93.0,83.0,86.0,87.0,79.0,92.0,81.0,95.0,91.0,54.0,62.0,80.0,76.0,66.0,50.0,56.0,56.0,58.0,41.0,46.0,43.0,39.0,51.0,45.0,39.0,37.0,53.0,37.0,23.0,29.0,19.0,18.0,16.0,15.0,13.0,15.0,14.0,12.0,6.0,8.0,3.0,5.0,3.0,1.0 G82052,78.0,84.0,114.0,135.0,105.0,104.0,128.0,128.0,131.0,126.0,89.0,111.0,107.0,131.0,120.0,100.0,126.0,105.0,101.0,84.0,86.0,93.0,86.0,73.0,84.0,97.0,107.0,100.0,105.0,113.0,118.0,150.0,133.0,130.0,147.0,149.0,147.0,142.0,153.0,148.0,149.0,137.0,112.0,121.0,123.0,121.0,117.0,113.0,100.0,100.0,99.0,109.0,113.0,94.0,119.0,93.0,115.0,106.0,116.0,107.0,122.0,97.0,95.0,112.0,98.0,77.0,81.0,77.0,58.0,59.0,61.0,69.0,57.0,57.0,61.0,61.0,60.0,74.0,49.0,45.0,41.0,38.0,39.0,21.0,18.0,24.0,18.0,19.0,12.0,12.0,8.0,4.0,5.0,2.0,5.0,8.0 G82053,17.0,28.0,33.0,25.0,32.0,31.0,21.0,27.0,26.0,22.0,27.0,35.0,36.0,36.0,21.0,26.0,33.0,27.0,27.0,20.0,21.0,18.0,33.0,30.0,26.0,17.0,26.0,24.0,20.0,20.0,26.0,19.0,24.0,25.0,35.0,38.0,26.0,39.0,32.0,26.0,30.0,32.0,30.0,30.0,28.0,37.0,29.0,26.0,24.0,31.0,26.0,20.0,30.0,29.0,40.0,47.0,42.0,57.0,40.0,39.0,40.0,49.0,54.0,42.0,40.0,46.0,26.0,34.0,36.0,41.0,35.0,34.0,35.0,30.0,35.0,34.0,34.0,42.0,46.0,38.0,27.0,32.0,28.0,25.0,22.0,21.0,13.0,12.0,10.0,10.0,9.0,6.0,4.0,3.0,2.0,6.0 G82055,29.0,30.0,40.0,45.0,45.0,64.0,36.0,47.0,53.0,62.0,59.0,53.0,59.0,78.0,64.0,53.0,67.0,80.0,67.0,66.0,38.0,56.0,52.0,34.0,47.0,48.0,55.0,59.0,37.0,54.0,42.0,43.0,34.0,42.0,50.0,54.0,60.0,52.0,44.0,46.0,48.0,40.0,49.0,51.0,55.0,62.0,58.0,46.0,37.0,57.0,47.0,64.0,75.0,59.0,72.0,69.0,86.0,88.0,80.0,76.0,88.0,71.0,71.0,66.0,51.0,72.0,75.0,58.0,59.0,56.0,67.0,67.0,52.0,55.0,47.0,59.0,78.0,54.0,54.0,42.0,39.0,45.0,33.0,20.0,25.0,22.0,27.0,28.0,14.0,16.0,10.0,7.0,14.0,9.0,4.0,10.0 G82056,43.0,50.0,63.0,55.0,56.0,61.0,66.0,62.0,70.0,74.0,71.0,94.0,78.0,86.0,90.0,82.0,80.0,85.0,88.0,73.0,62.0,73.0,67.0,63.0,57.0,69.0,56.0,57.0,48.0,57.0,55.0,71.0,64.0,64.0,67.0,71.0,71.0,84.0,71.0,73.0,80.0,82.0,59.0,85.0,89.0,91.0,68.0,77.0,87.0,86.0,68.0,85.0,75.0,89.0,83.0,90.0,83.0,64.0,86.0,102.0,78.0,86.0,82.0,80.0,59.0,71.0,60.0,49.0,51.0,38.0,47.0,32.0,45.0,43.0,55.0,32.0,43.0,50.0,39.0,25.0,32.0,30.0,28.0,32.0,20.0,25.0,15.0,17.0,14.0,11.0,12.0,6.0,5.0,5.0,7.0,10.0 G82057,59.0,53.0,58.0,58.0,59.0,63.0,65.0,68.0,58.0,77.0,67.0,72.0,93.0,72.0,73.0,75.0,52.0,65.0,79.0,59.0,50.0,56.0,68.0,41.0,54.0,62.0,59.0,68.0,59.0,52.0,64.0,68.0,59.0,91.0,66.0,75.0,65.0,66.0,66.0,61.0,64.0,61.0,81.0,59.0,79.0,56.0,79.0,55.0,40.0,69.0,64.0,48.0,56.0,69.0,59.0,76.0,88.0,72.0,80.0,79.0,87.0,83.0,85.0,84.0,83.0,75.0,67.0,68.0,75.0,65.0,79.0,66.0,46.0,60.0,59.0,57.0,77.0,66.0,61.0,34.0,41.0,35.0,37.0,37.0,24.0,26.0,20.0,9.0,11.0,10.0,3.0,,5.0,3.0,,6.0 G82058,27.0,32.0,32.0,42.0,33.0,39.0,37.0,40.0,45.0,42.0,41.0,38.0,41.0,43.0,39.0,44.0,49.0,43.0,36.0,40.0,34.0,39.0,36.0,47.0,35.0,43.0,54.0,35.0,44.0,44.0,43.0,36.0,37.0,43.0,49.0,46.0,55.0,56.0,40.0,38.0,39.0,57.0,38.0,39.0,48.0,38.0,32.0,50.0,33.0,43.0,35.0,38.0,55.0,49.0,62.0,54.0,59.0,50.0,38.0,42.0,53.0,50.0,46.0,44.0,38.0,45.0,43.0,35.0,27.0,29.0,27.0,34.0,39.0,25.0,22.0,33.0,31.0,29.0,34.0,26.0,21.0,17.0,18.0,23.0,15.0,14.0,17.0,11.0,11.0,13.0,2.0,6.0,4.0,7.0,6.0,11.0 G82059,67.0,69.0,81.0,71.0,72.0,92.0,91.0,107.0,111.0,98.0,131.0,122.0,141.0,168.0,216.0,231.0,207.0,209.0,192.0,110.0,92.0,91.0,91.0,78.0,90.0,83.0,95.0,85.0,96.0,83.0,95.0,87.0,95.0,103.0,93.0,105.0,104.0,81.0,100.0,112.0,93.0,104.0,137.0,139.0,136.0,133.0,129.0,123.0,117.0,124.0,131.0,119.0,134.0,156.0,140.0,134.0,119.0,149.0,132.0,129.0,112.0,121.0,113.0,127.0,132.0,119.0,95.0,88.0,83.0,83.0,88.0,74.0,66.0,79.0,74.0,76.0,82.0,86.0,91.0,56.0,54.0,45.0,49.0,38.0,35.0,39.0,35.0,22.0,27.0,19.0,25.0,17.0,10.0,13.0,4.0,10.0 G82060,77.0,81.0,110.0,118.0,129.0,97.0,102.0,125.0,107.0,133.0,104.0,145.0,134.0,132.0,144.0,130.0,128.0,160.0,210.0,190.0,167.0,155.0,179.0,163.0,167.0,198.0,190.0,212.0,174.0,174.0,191.0,181.0,200.0,175.0,177.0,180.0,188.0,153.0,166.0,165.0,148.0,144.0,130.0,137.0,156.0,147.0,122.0,122.0,133.0,146.0,113.0,125.0,118.0,118.0,132.0,117.0,125.0,106.0,106.0,101.0,124.0,95.0,85.0,91.0,99.0,79.0,93.0,86.0,77.0,84.0,68.0,83.0,70.0,79.0,76.0,75.0,79.0,73.0,88.0,70.0,40.0,54.0,41.0,47.0,37.0,36.0,28.0,29.0,20.0,9.0,15.0,11.0,8.0,8.0,4.0,12.0 G82062,9.0,9.0,15.0,8.0,13.0,12.0,8.0,13.0,12.0,18.0,25.0,17.0,16.0,27.0,12.0,13.0,16.0,18.0,20.0,21.0,13.0,18.0,14.0,18.0,25.0,19.0,23.0,24.0,17.0,16.0,11.0,26.0,22.0,19.0,23.0,19.0,28.0,15.0,35.0,24.0,21.0,27.0,14.0,18.0,26.0,28.0,16.0,18.0,18.0,23.0,18.0,20.0,14.0,16.0,21.0,14.0,24.0,22.0,21.0,13.0,11.0,17.0,14.0,14.0,12.0,14.0,23.0,12.0,11.0,10.0,13.0,15.0,10.0,11.0,12.0,6.0,12.0,11.0,8.0,7.0,12.0,2.0,8.0,5.0,1.0,4.0,1.0,3.0,,2.0,2.0,,2.0,1.0,,3.0 G82063,45.0,39.0,51.0,41.0,44.0,58.0,39.0,70.0,68.0,48.0,58.0,65.0,82.0,82.0,74.0,82.0,101.0,75.0,70.0,66.0,57.0,65.0,49.0,69.0,67.0,66.0,65.0,65.0,64.0,62.0,61.0,53.0,72.0,60.0,57.0,76.0,73.0,64.0,64.0,62.0,68.0,72.0,50.0,60.0,67.0,61.0,71.0,56.0,49.0,63.0,72.0,74.0,100.0,77.0,101.0,94.0,95.0,101.0,114.0,130.0,100.0,98.0,112.0,106.0,116.0,90.0,112.0,106.0,107.0,92.0,92.0,88.0,93.0,102.0,85.0,74.0,84.0,101.0,101.0,77.0,79.0,54.0,42.0,53.0,38.0,40.0,36.0,21.0,21.0,17.0,14.0,12.0,13.0,12.0,7.0,6.0 G82064,65.0,53.0,62.0,62.0,77.0,66.0,66.0,79.0,82.0,81.0,69.0,84.0,81.0,90.0,80.0,75.0,73.0,91.0,65.0,56.0,61.0,77.0,64.0,55.0,57.0,61.0,71.0,72.0,81.0,65.0,67.0,85.0,67.0,66.0,88.0,75.0,81.0,90.0,89.0,75.0,96.0,85.0,95.0,90.0,78.0,97.0,70.0,62.0,66.0,72.0,69.0,77.0,70.0,85.0,65.0,70.0,67.0,68.0,66.0,76.0,89.0,69.0,76.0,69.0,62.0,53.0,51.0,64.0,42.0,30.0,74.0,48.0,49.0,58.0,57.0,35.0,39.0,36.0,46.0,46.0,29.0,22.0,26.0,16.0,19.0,13.0,16.0,12.0,11.0,10.0,2.0,7.0,2.0,,2.0,3.0 G82066,78.0,75.0,89.0,82.0,82.0,95.0,92.0,78.0,83.0,90.0,81.0,80.0,79.0,108.0,76.0,83.0,83.0,77.0,76.0,72.0,69.0,58.0,77.0,67.0,80.0,88.0,80.0,94.0,91.0,93.0,98.0,82.0,94.0,97.0,95.0,108.0,77.0,87.0,98.0,111.0,85.0,84.0,79.0,75.0,101.0,72.0,85.0,46.0,68.0,67.0,63.0,62.0,63.0,82.0,62.0,68.0,72.0,71.0,56.0,67.0,70.0,62.0,55.0,71.0,60.0,60.0,62.0,52.0,50.0,49.0,51.0,47.0,49.0,45.0,51.0,46.0,46.0,54.0,47.0,35.0,42.0,35.0,30.0,30.0,27.0,24.0,25.0,14.0,17.0,6.0,17.0,10.0,9.0,9.0,7.0,16.0 G82067,42.0,37.0,62.0,51.0,50.0,55.0,37.0,48.0,47.0,66.0,58.0,62.0,65.0,58.0,47.0,55.0,50.0,62.0,62.0,59.0,40.0,57.0,42.0,59.0,56.0,55.0,66.0,73.0,59.0,68.0,59.0,75.0,59.0,68.0,55.0,61.0,63.0,54.0,67.0,73.0,58.0,59.0,55.0,77.0,83.0,68.0,71.0,48.0,56.0,50.0,58.0,59.0,64.0,66.0,66.0,66.0,61.0,78.0,61.0,60.0,58.0,60.0,57.0,59.0,54.0,53.0,47.0,50.0,41.0,49.0,37.0,41.0,39.0,42.0,44.0,35.0,47.0,43.0,31.0,28.0,36.0,18.0,27.0,16.0,18.0,17.0,17.0,6.0,11.0,9.0,8.0,3.0,5.0,7.0,,4.0 G82069,61.0,51.0,46.0,51.0,68.0,68.0,58.0,57.0,65.0,65.0,73.0,57.0,76.0,69.0,70.0,71.0,70.0,70.0,71.0,75.0,72.0,76.0,70.0,86.0,88.0,104.0,79.0,101.0,93.0,101.0,93.0,96.0,86.0,99.0,83.0,85.0,101.0,74.0,101.0,87.0,85.0,93.0,86.0,72.0,78.0,79.0,70.0,67.0,54.0,49.0,69.0,74.0,69.0,81.0,75.0,74.0,86.0,74.0,66.0,74.0,64.0,78.0,70.0,78.0,74.0,48.0,61.0,49.0,46.0,46.0,54.0,49.0,48.0,35.0,49.0,40.0,39.0,72.0,64.0,36.0,43.0,37.0,22.0,29.0,17.0,16.0,17.0,10.0,13.0,12.0,12.0,9.0,13.0,2.0,,10.0 G82071,146.0,140.0,172.0,183.0,180.0,194.0,204.0,216.0,223.0,251.0,195.0,251.0,246.0,249.0,245.0,242.0,234.0,251.0,248.0,198.0,194.0,214.0,199.0,204.0,184.0,204.0,207.0,212.0,210.0,195.0,244.0,209.0,244.0,205.0,210.0,241.0,240.0,251.0,267.0,250.0,279.0,248.0,246.0,220.0,277.0,244.0,244.0,225.0,250.0,248.0,256.0,278.0,302.0,304.0,339.0,330.0,335.0,336.0,392.0,339.0,358.0,391.0,365.0,350.0,331.0,285.0,340.0,288.0,312.0,279.0,295.0,238.0,271.0,245.0,268.0,263.0,276.0,280.0,254.0,206.0,214.0,155.0,171.0,125.0,120.0,134.0,94.0,80.0,68.0,56.0,44.0,27.0,22.0,14.0,19.0,39.0 G82073,36.0,38.0,51.0,59.0,46.0,49.0,46.0,65.0,61.0,52.0,64.0,53.0,65.0,70.0,61.0,71.0,50.0,60.0,73.0,59.0,51.0,55.0,46.0,45.0,55.0,58.0,50.0,52.0,37.0,49.0,45.0,43.0,60.0,54.0,52.0,56.0,53.0,51.0,50.0,43.0,55.0,57.0,67.0,54.0,55.0,58.0,71.0,55.0,64.0,36.0,61.0,66.0,58.0,70.0,51.0,78.0,79.0,78.0,84.0,101.0,73.0,96.0,98.0,85.0,54.0,81.0,48.0,56.0,74.0,66.0,58.0,66.0,34.0,53.0,26.0,53.0,42.0,68.0,65.0,34.0,41.0,32.0,39.0,35.0,27.0,22.0,18.0,16.0,13.0,18.0,9.0,13.0,8.0,7.0,8.0,10.0 G82074,42.0,71.0,60.0,64.0,66.0,69.0,88.0,100.0,94.0,92.0,89.0,92.0,115.0,106.0,102.0,113.0,111.0,105.0,87.0,78.0,82.0,56.0,64.0,60.0,68.0,76.0,47.0,68.0,65.0,68.0,78.0,67.0,75.0,82.0,103.0,89.0,81.0,83.0,92.0,94.0,97.0,98.0,92.0,111.0,97.0,97.0,113.0,96.0,117.0,103.0,107.0,110.0,102.0,119.0,101.0,116.0,89.0,101.0,93.0,114.0,111.0,114.0,112.0,98.0,94.0,96.0,83.0,75.0,71.0,86.0,63.0,86.0,90.0,77.0,89.0,79.0,92.0,112.0,119.0,78.0,76.0,70.0,55.0,45.0,34.0,38.0,47.0,31.0,22.0,18.0,30.0,8.0,11.0,9.0,6.0,11.0 G82076,44.0,56.0,64.0,87.0,48.0,55.0,69.0,86.0,71.0,78.0,66.0,82.0,65.0,93.0,99.0,70.0,72.0,63.0,67.0,52.0,61.0,57.0,43.0,52.0,58.0,46.0,64.0,62.0,69.0,71.0,69.0,77.0,74.0,59.0,67.0,81.0,58.0,72.0,70.0,75.0,65.0,66.0,64.0,60.0,59.0,53.0,66.0,63.0,55.0,62.0,47.0,48.0,66.0,70.0,59.0,71.0,61.0,74.0,61.0,75.0,52.0,62.0,59.0,66.0,55.0,54.0,50.0,50.0,35.0,36.0,27.0,25.0,26.0,32.0,34.0,27.0,30.0,33.0,43.0,14.0,27.0,28.0,28.0,24.0,20.0,15.0,13.0,7.0,12.0,11.0,7.0,6.0,1.0,2.0,1.0,2.0 G82077,78.0,88.0,71.0,76.0,73.0,81.0,80.0,81.0,69.0,83.0,90.0,70.0,80.0,79.0,73.0,66.0,76.0,66.0,46.0,62.0,44.0,51.0,64.0,59.0,60.0,57.0,64.0,62.0,68.0,59.0,67.0,81.0,70.0,81.0,85.0,80.0,70.0,90.0,89.0,77.0,76.0,77.0,78.0,66.0,81.0,90.0,72.0,79.0,59.0,69.0,75.0,63.0,79.0,71.0,62.0,74.0,85.0,72.0,76.0,103.0,72.0,75.0,81.0,75.0,77.0,75.0,63.0,61.0,76.0,64.0,69.0,76.0,59.0,56.0,62.0,72.0,51.0,64.0,72.0,48.0,49.0,39.0,45.0,39.0,30.0,24.0,20.0,17.0,19.0,6.0,12.0,6.0,9.0,1.0,4.0,2.0 G82079,22.0,39.0,35.0,32.0,41.0,36.0,43.0,50.0,54.0,56.0,54.0,51.0,63.0,68.0,58.0,57.0,64.0,53.0,46.0,55.0,53.0,42.0,56.0,44.0,54.0,44.0,50.0,51.0,48.0,49.0,66.0,48.0,62.0,72.0,66.0,56.0,83.0,57.0,72.0,51.0,65.0,70.0,54.0,65.0,57.0,66.0,39.0,47.0,49.0,46.0,66.0,54.0,58.0,63.0,74.0,66.0,69.0,76.0,64.0,76.0,78.0,75.0,78.0,65.0,68.0,58.0,55.0,82.0,57.0,75.0,84.0,69.0,50.0,63.0,54.0,65.0,59.0,65.0,67.0,60.0,46.0,42.0,29.0,33.0,31.0,24.0,19.0,12.0,18.0,6.0,8.0,9.0,4.0,5.0,5.0,9.0 G82080,225.0,246.0,235.0,235.0,232.0,238.0,237.0,316.0,273.0,264.0,270.0,294.0,289.0,288.0,258.0,276.0,297.0,288.0,242.0,205.0,207.0,190.0,189.0,208.0,230.0,223.0,274.0,269.0,297.0,286.0,292.0,267.0,311.0,330.0,290.0,327.0,332.0,312.0,345.0,344.0,306.0,285.0,297.0,270.0,302.0,278.0,267.0,267.0,221.0,245.0,231.0,217.0,227.0,215.0,204.0,213.0,215.0,203.0,197.0,218.0,166.0,187.0,172.0,197.0,177.0,174.0,131.0,123.0,129.0,115.0,106.0,91.0,90.0,97.0,85.0,98.0,87.0,107.0,104.0,75.0,63.0,61.0,62.0,49.0,50.0,46.0,37.0,28.0,20.0,26.0,26.0,11.0,10.0,3.0,8.0,12.0 G82082,69.0,85.0,87.0,71.0,78.0,92.0,97.0,96.0,86.0,99.0,107.0,113.0,89.0,100.0,100.0,93.0,101.0,84.0,113.0,132.0,113.0,114.0,114.0,114.0,140.0,162.0,161.0,162.0,163.0,177.0,148.0,155.0,148.0,174.0,179.0,149.0,174.0,165.0,151.0,132.0,153.0,137.0,123.0,100.0,108.0,138.0,111.0,101.0,98.0,91.0,89.0,71.0,109.0,86.0,92.0,89.0,82.0,97.0,87.0,98.0,104.0,79.0,69.0,64.0,82.0,71.0,61.0,62.0,60.0,58.0,54.0,47.0,69.0,58.0,55.0,51.0,51.0,43.0,40.0,41.0,43.0,26.0,33.0,25.0,16.0,22.0,21.0,14.0,15.0,16.0,10.0,5.0,3.0,4.0,2.0,5.0 G82083,70.0,77.0,78.0,76.0,78.0,95.0,88.0,97.0,99.0,90.0,100.0,104.0,100.0,111.0,117.0,105.0,101.0,96.0,88.0,80.0,72.0,59.0,71.0,65.0,72.0,78.0,71.0,90.0,76.0,73.0,96.0,89.0,83.0,83.0,103.0,92.0,110.0,101.0,105.0,78.0,87.0,93.0,105.0,93.0,93.0,88.0,87.0,81.0,72.0,86.0,113.0,105.0,95.0,106.0,112.0,100.0,107.0,117.0,104.0,75.0,105.0,97.0,85.0,85.0,74.0,73.0,80.0,76.0,88.0,52.0,83.0,61.0,76.0,67.0,61.0,68.0,56.0,63.0,73.0,48.0,53.0,33.0,53.0,34.0,24.0,28.0,31.0,23.0,26.0,22.0,10.0,12.0,10.0,3.0,2.0,6.0 G82085,61.0,83.0,72.0,71.0,70.0,78.0,82.0,69.0,93.0,62.0,92.0,88.0,75.0,91.0,72.0,82.0,73.0,68.0,68.0,60.0,51.0,64.0,64.0,50.0,52.0,74.0,73.0,72.0,66.0,76.0,83.0,76.0,79.0,78.0,77.0,95.0,87.0,88.0,90.0,71.0,82.0,78.0,85.0,89.0,80.0,77.0,86.0,70.0,77.0,65.0,73.0,76.0,78.0,90.0,85.0,90.0,63.0,83.0,80.0,79.0,95.0,62.0,74.0,58.0,76.0,55.0,78.0,68.0,46.0,62.0,59.0,52.0,45.0,53.0,40.0,47.0,55.0,56.0,51.0,33.0,45.0,43.0,38.0,21.0,19.0,10.0,23.0,17.0,17.0,11.0,5.0,7.0,5.0,5.0,2.0,2.0 G82086,37.0,42.0,42.0,45.0,49.0,57.0,54.0,53.0,59.0,66.0,66.0,69.0,66.0,72.0,81.0,88.0,84.0,86.0,70.0,70.0,60.0,45.0,63.0,60.0,63.0,73.0,69.0,67.0,66.0,62.0,55.0,66.0,68.0,74.0,69.0,60.0,64.0,70.0,79.0,56.0,66.0,59.0,70.0,78.0,66.0,72.0,56.0,55.0,54.0,64.0,51.0,49.0,54.0,70.0,60.0,61.0,61.0,77.0,66.0,66.0,75.0,69.0,71.0,60.0,67.0,66.0,54.0,42.0,55.0,30.0,52.0,43.0,40.0,51.0,34.0,37.0,42.0,52.0,54.0,33.0,16.0,27.0,27.0,11.0,15.0,20.0,10.0,12.0,12.0,11.0,3.0,3.0,3.0,,,1.0 G82087,72.0,67.0,75.0,78.0,99.0,95.0,97.0,109.0,101.0,109.0,110.0,112.0,128.0,113.0,123.0,138.0,116.0,109.0,132.0,110.0,102.0,93.0,107.0,101.0,90.0,101.0,112.0,114.0,105.0,126.0,104.0,117.0,121.0,117.0,126.0,153.0,120.0,159.0,126.0,99.0,100.0,108.0,108.0,109.0,142.0,120.0,131.0,109.0,118.0,114.0,109.0,124.0,122.0,111.0,121.0,128.0,128.0,121.0,112.0,104.0,122.0,118.0,102.0,83.0,78.0,91.0,89.0,84.0,88.0,72.0,73.0,90.0,76.0,81.0,68.0,73.0,71.0,75.0,85.0,50.0,66.0,51.0,44.0,29.0,35.0,36.0,31.0,21.0,25.0,10.0,13.0,10.0,8.0,10.0,4.0,8.0 G82089,50.0,35.0,42.0,51.0,44.0,44.0,41.0,56.0,48.0,61.0,52.0,46.0,50.0,68.0,56.0,46.0,56.0,51.0,44.0,39.0,51.0,45.0,39.0,51.0,46.0,48.0,48.0,47.0,50.0,61.0,53.0,66.0,65.0,67.0,75.0,78.0,73.0,86.0,67.0,64.0,76.0,67.0,74.0,77.0,78.0,77.0,58.0,70.0,61.0,51.0,71.0,57.0,65.0,53.0,61.0,60.0,78.0,68.0,64.0,55.0,80.0,72.0,62.0,52.0,48.0,47.0,45.0,45.0,42.0,51.0,39.0,42.0,42.0,45.0,37.0,32.0,43.0,41.0,46.0,34.0,38.0,32.0,15.0,22.0,18.0,12.0,11.0,15.0,11.0,14.0,7.0,4.0,4.0,4.0,,1.0 G82090,49.0,54.0,50.0,83.0,63.0,78.0,84.0,76.0,100.0,92.0,107.0,80.0,104.0,127.0,92.0,116.0,86.0,93.0,104.0,101.0,99.0,101.0,96.0,97.0,96.0,82.0,107.0,111.0,94.0,88.0,85.0,117.0,101.0,98.0,100.0,104.0,100.0,108.0,82.0,103.0,101.0,91.0,72.0,105.0,95.0,96.0,83.0,91.0,76.0,76.0,110.0,102.0,94.0,130.0,112.0,125.0,113.0,107.0,129.0,159.0,145.0,114.0,148.0,123.0,121.0,114.0,112.0,118.0,115.0,125.0,112.0,106.0,116.0,108.0,113.0,115.0,136.0,142.0,122.0,92.0,81.0,79.0,77.0,59.0,51.0,55.0,39.0,43.0,32.0,23.0,26.0,14.0,11.0,13.0,7.0,14.0 G82091,42.0,36.0,50.0,52.0,64.0,67.0,62.0,59.0,53.0,64.0,48.0,69.0,83.0,54.0,52.0,74.0,79.0,83.0,100.0,77.0,81.0,50.0,56.0,62.0,72.0,77.0,75.0,78.0,83.0,63.0,73.0,77.0,86.0,84.0,71.0,78.0,76.0,75.0,87.0,84.0,83.0,73.0,85.0,81.0,70.0,77.0,80.0,67.0,58.0,58.0,70.0,56.0,63.0,65.0,67.0,63.0,67.0,66.0,54.0,63.0,63.0,51.0,72.0,67.0,57.0,52.0,44.0,48.0,51.0,50.0,40.0,29.0,39.0,32.0,44.0,27.0,27.0,39.0,38.0,26.0,27.0,25.0,17.0,15.0,14.0,17.0,16.0,4.0,10.0,4.0,8.0,4.0,1.0,1.0,2.0,4.0 G82092,41.0,32.0,38.0,39.0,49.0,48.0,43.0,49.0,46.0,52.0,52.0,36.0,49.0,61.0,51.0,52.0,38.0,56.0,47.0,42.0,43.0,39.0,47.0,37.0,37.0,29.0,37.0,42.0,34.0,36.0,35.0,33.0,30.0,50.0,46.0,47.0,42.0,39.0,38.0,47.0,40.0,45.0,51.0,37.0,37.0,43.0,52.0,43.0,42.0,38.0,61.0,36.0,62.0,60.0,59.0,71.0,48.0,51.0,68.0,56.0,74.0,83.0,53.0,70.0,74.0,53.0,59.0,57.0,51.0,46.0,42.0,46.0,40.0,50.0,40.0,45.0,42.0,48.0,43.0,37.0,39.0,30.0,24.0,30.0,19.0,21.0,18.0,14.0,12.0,10.0,4.0,10.0,5.0,2.0,5.0,3.0 G82093,49.0,43.0,60.0,50.0,47.0,56.0,61.0,68.0,52.0,57.0,57.0,54.0,57.0,51.0,54.0,72.0,48.0,58.0,54.0,54.0,42.0,44.0,42.0,39.0,35.0,43.0,40.0,48.0,53.0,46.0,47.0,61.0,58.0,50.0,60.0,55.0,66.0,55.0,65.0,73.0,54.0,54.0,58.0,67.0,56.0,47.0,58.0,45.0,48.0,58.0,67.0,57.0,73.0,76.0,65.0,67.0,76.0,76.0,79.0,87.0,92.0,80.0,82.0,76.0,64.0,83.0,75.0,71.0,52.0,57.0,59.0,56.0,54.0,67.0,48.0,58.0,59.0,60.0,61.0,52.0,47.0,35.0,32.0,25.0,27.0,22.0,25.0,27.0,17.0,13.0,10.0,12.0,4.0,3.0,5.0,4.0 G82094,33.0,42.0,55.0,51.0,59.0,60.0,53.0,71.0,66.0,60.0,65.0,72.0,77.0,57.0,60.0,72.0,72.0,66.0,68.0,64.0,51.0,58.0,51.0,55.0,57.0,47.0,70.0,48.0,52.0,44.0,60.0,57.0,61.0,62.0,67.0,65.0,64.0,69.0,60.0,65.0,60.0,60.0,70.0,53.0,56.0,61.0,63.0,51.0,66.0,63.0,74.0,64.0,71.0,95.0,86.0,97.0,97.0,98.0,97.0,95.0,93.0,99.0,72.0,98.0,105.0,68.0,86.0,76.0,61.0,62.0,56.0,54.0,69.0,56.0,70.0,59.0,56.0,54.0,63.0,37.0,33.0,34.0,46.0,20.0,24.0,29.0,23.0,16.0,12.0,15.0,10.0,7.0,4.0,8.0,3.0,12.0 G82095,52.0,40.0,47.0,46.0,49.0,65.0,71.0,47.0,76.0,58.0,57.0,80.0,71.0,74.0,87.0,96.0,114.0,117.0,101.0,86.0,104.0,91.0,63.0,88.0,74.0,77.0,84.0,73.0,62.0,76.0,76.0,79.0,79.0,69.0,81.0,91.0,81.0,77.0,91.0,88.0,90.0,85.0,87.0,86.0,92.0,85.0,82.0,62.0,85.0,69.0,92.0,83.0,102.0,73.0,90.0,97.0,94.0,90.0,97.0,107.0,82.0,82.0,92.0,89.0,78.0,64.0,77.0,63.0,53.0,60.0,51.0,58.0,41.0,43.0,28.0,37.0,38.0,62.0,41.0,35.0,37.0,40.0,21.0,24.0,24.0,21.0,22.0,11.0,18.0,7.0,8.0,3.0,3.0,9.0,3.0,6.0 G82097,39.0,61.0,70.0,68.0,78.0,76.0,82.0,102.0,102.0,97.0,97.0,81.0,89.0,107.0,89.0,104.0,85.0,100.0,69.0,75.0,75.0,77.0,83.0,82.0,79.0,83.0,79.0,74.0,64.0,90.0,79.0,86.0,74.0,74.0,89.0,82.0,75.0,75.0,94.0,86.0,96.0,87.0,102.0,110.0,85.0,93.0,88.0,100.0,75.0,89.0,74.0,82.0,88.0,88.0,89.0,73.0,112.0,95.0,96.0,105.0,118.0,92.0,122.0,94.0,91.0,95.0,99.0,86.0,97.0,97.0,88.0,102.0,93.0,91.0,72.0,79.0,105.0,98.0,108.0,70.0,83.0,72.0,62.0,58.0,49.0,36.0,26.0,39.0,28.0,25.0,27.0,9.0,13.0,12.0,8.0,17.0 G82098,29.0,37.0,55.0,47.0,46.0,56.0,48.0,69.0,51.0,57.0,55.0,49.0,53.0,62.0,72.0,53.0,57.0,44.0,50.0,51.0,43.0,48.0,38.0,46.0,40.0,42.0,38.0,39.0,33.0,36.0,49.0,55.0,57.0,58.0,66.0,68.0,48.0,63.0,59.0,59.0,52.0,61.0,62.0,48.0,51.0,52.0,63.0,50.0,41.0,66.0,65.0,62.0,60.0,52.0,56.0,71.0,59.0,53.0,61.0,58.0,51.0,55.0,39.0,45.0,34.0,56.0,39.0,31.0,36.0,34.0,26.0,42.0,32.0,24.0,31.0,37.0,21.0,37.0,36.0,29.0,31.0,23.0,19.0,17.0,21.0,19.0,11.0,21.0,9.0,11.0,7.0,7.0,7.0,3.0,2.0,5.0 G82099,180.0,187.0,212.0,179.0,188.0,212.0,216.0,209.0,190.0,210.0,223.0,234.0,234.0,227.0,242.0,182.0,199.0,169.0,192.0,179.0,177.0,134.0,153.0,159.0,180.0,197.0,234.0,237.0,239.0,275.0,250.0,299.0,305.0,344.0,319.0,288.0,315.0,325.0,345.0,312.0,302.0,295.0,272.0,288.0,308.0,259.0,253.0,209.0,247.0,211.0,221.0,201.0,191.0,206.0,218.0,220.0,197.0,176.0,182.0,190.0,206.0,149.0,179.0,156.0,136.0,150.0,135.0,118.0,106.0,117.0,101.0,114.0,97.0,90.0,94.0,108.0,103.0,125.0,114.0,76.0,73.0,66.0,50.0,63.0,45.0,44.0,34.0,42.0,24.0,33.0,17.0,15.0,13.0,11.0,4.0,14.0 G82100,51.0,86.0,66.0,87.0,76.0,71.0,105.0,87.0,96.0,103.0,82.0,96.0,91.0,118.0,87.0,101.0,82.0,89.0,84.0,76.0,86.0,74.0,89.0,55.0,92.0,72.0,70.0,63.0,76.0,72.0,81.0,76.0,81.0,106.0,93.0,83.0,86.0,92.0,91.0,97.0,91.0,96.0,106.0,96.0,103.0,105.0,84.0,94.0,89.0,89.0,120.0,98.0,104.0,110.0,113.0,120.0,107.0,119.0,118.0,101.0,112.0,110.0,101.0,87.0,94.0,98.0,88.0,95.0,74.0,71.0,80.0,82.0,77.0,54.0,73.0,94.0,77.0,89.0,87.0,58.0,56.0,51.0,54.0,39.0,35.0,21.0,20.0,21.0,18.0,14.0,11.0,7.0,2.0,6.0,7.0,5.0 G82105,73.0,95.0,105.0,106.0,114.0,95.0,110.0,126.0,104.0,117.0,144.0,113.0,141.0,133.0,121.0,132.0,113.0,112.0,100.0,95.0,103.0,103.0,74.0,93.0,96.0,91.0,114.0,109.0,115.0,100.0,106.0,137.0,142.0,131.0,138.0,140.0,154.0,154.0,140.0,150.0,121.0,154.0,117.0,136.0,119.0,114.0,132.0,127.0,123.0,98.0,126.0,114.0,100.0,131.0,122.0,111.0,100.0,122.0,125.0,121.0,113.0,123.0,104.0,128.0,103.0,107.0,99.0,114.0,103.0,93.0,87.0,89.0,77.0,84.0,82.0,73.0,95.0,86.0,106.0,56.0,82.0,70.0,45.0,35.0,32.0,36.0,26.0,27.0,25.0,21.0,16.0,11.0,9.0,10.0,7.0,11.0 G82106,33.0,40.0,53.0,40.0,46.0,40.0,49.0,54.0,46.0,55.0,45.0,42.0,50.0,48.0,38.0,47.0,48.0,43.0,37.0,45.0,38.0,33.0,22.0,34.0,26.0,32.0,35.0,42.0,34.0,47.0,42.0,50.0,52.0,56.0,49.0,51.0,52.0,53.0,54.0,63.0,58.0,46.0,41.0,53.0,53.0,45.0,60.0,35.0,53.0,47.0,47.0,44.0,48.0,50.0,64.0,45.0,51.0,52.0,57.0,39.0,53.0,46.0,41.0,39.0,31.0,44.0,34.0,37.0,35.0,27.0,40.0,28.0,25.0,33.0,28.0,24.0,31.0,26.0,37.0,14.0,25.0,20.0,16.0,17.0,12.0,8.0,7.0,9.0,6.0,4.0,4.0,3.0,2.0,3.0,, G82107,32.0,23.0,32.0,32.0,30.0,41.0,36.0,51.0,56.0,55.0,47.0,47.0,68.0,52.0,51.0,62.0,72.0,59.0,61.0,47.0,47.0,36.0,31.0,54.0,42.0,38.0,45.0,40.0,46.0,52.0,40.0,33.0,42.0,47.0,48.0,38.0,40.0,47.0,41.0,59.0,50.0,46.0,56.0,49.0,55.0,54.0,40.0,58.0,47.0,44.0,51.0,52.0,52.0,68.0,61.0,56.0,65.0,51.0,73.0,66.0,70.0,78.0,69.0,84.0,74.0,61.0,75.0,72.0,56.0,46.0,60.0,57.0,76.0,55.0,60.0,63.0,54.0,58.0,49.0,53.0,49.0,41.0,34.0,36.0,28.0,21.0,12.0,13.0,21.0,10.0,15.0,6.0,10.0,6.0,3.0,4.0 G82108,41.0,27.0,38.0,25.0,20.0,25.0,32.0,41.0,34.0,49.0,54.0,49.0,42.0,48.0,58.0,60.0,51.0,54.0,42.0,47.0,42.0,32.0,32.0,38.0,34.0,47.0,29.0,49.0,35.0,52.0,37.0,37.0,40.0,38.0,47.0,49.0,44.0,38.0,46.0,44.0,43.0,48.0,30.0,53.0,42.0,48.0,33.0,43.0,39.0,40.0,21.0,38.0,32.0,30.0,38.0,42.0,31.0,35.0,38.0,36.0,49.0,50.0,43.0,46.0,37.0,27.0,23.0,31.0,35.0,20.0,27.0,21.0,33.0,23.0,36.0,24.0,21.0,27.0,33.0,24.0,17.0,16.0,18.0,11.0,7.0,11.0,7.0,12.0,7.0,2.0,8.0,2.0,1.0,3.0,,3.0 G82110,23.0,31.0,45.0,42.0,36.0,53.0,50.0,41.0,52.0,45.0,49.0,54.0,49.0,60.0,48.0,55.0,65.0,61.0,49.0,38.0,36.0,40.0,35.0,32.0,24.0,20.0,35.0,34.0,29.0,36.0,39.0,35.0,30.0,45.0,36.0,47.0,51.0,57.0,50.0,46.0,53.0,55.0,59.0,54.0,46.0,52.0,63.0,73.0,51.0,61.0,69.0,65.0,67.0,60.0,45.0,60.0,49.0,48.0,61.0,51.0,44.0,41.0,48.0,39.0,40.0,30.0,31.0,32.0,30.0,32.0,15.0,23.0,25.0,30.0,19.0,21.0,22.0,34.0,25.0,21.0,21.0,15.0,13.0,17.0,17.0,10.0,20.0,15.0,9.0,7.0,9.0,3.0,5.0,6.0,5.0,4.0 G82111,32.0,43.0,43.0,46.0,44.0,43.0,40.0,49.0,39.0,51.0,56.0,50.0,70.0,45.0,59.0,61.0,64.0,48.0,62.0,50.0,26.0,35.0,38.0,39.0,30.0,45.0,57.0,52.0,50.0,51.0,45.0,48.0,51.0,50.0,54.0,50.0,52.0,54.0,57.0,63.0,58.0,55.0,33.0,50.0,63.0,51.0,64.0,62.0,60.0,71.0,51.0,68.0,59.0,67.0,75.0,104.0,88.0,81.0,83.0,104.0,99.0,95.0,100.0,82.0,79.0,86.0,97.0,80.0,77.0,85.0,64.0,82.0,71.0,78.0,65.0,80.0,90.0,88.0,88.0,69.0,70.0,54.0,47.0,45.0,35.0,29.0,34.0,27.0,15.0,24.0,17.0,9.0,10.0,9.0,6.0,6.0 G82113,32.0,45.0,31.0,42.0,43.0,48.0,51.0,50.0,57.0,45.0,69.0,59.0,49.0,52.0,70.0,51.0,49.0,58.0,38.0,59.0,60.0,45.0,37.0,37.0,42.0,67.0,37.0,54.0,60.0,47.0,63.0,60.0,51.0,61.0,61.0,62.0,64.0,59.0,73.0,61.0,63.0,43.0,50.0,52.0,48.0,57.0,57.0,57.0,50.0,40.0,57.0,61.0,56.0,65.0,64.0,54.0,53.0,53.0,57.0,61.0,54.0,60.0,71.0,60.0,44.0,63.0,43.0,38.0,44.0,30.0,35.0,41.0,39.0,38.0,29.0,30.0,24.0,33.0,28.0,15.0,16.0,22.0,22.0,11.0,20.0,15.0,11.0,9.0,2.0,4.0,1.0,4.0,2.0,6.0,1.0,2.0 G82114,55.0,59.0,61.0,65.0,70.0,76.0,72.0,76.0,95.0,76.0,76.0,73.0,76.0,89.0,82.0,72.0,76.0,80.0,77.0,59.0,57.0,66.0,74.0,75.0,59.0,61.0,86.0,95.0,68.0,70.0,66.0,54.0,57.0,73.0,64.0,72.0,70.0,72.0,68.0,62.0,82.0,78.0,72.0,61.0,55.0,74.0,72.0,58.0,58.0,69.0,86.0,83.0,94.0,101.0,106.0,107.0,102.0,113.0,115.0,113.0,128.0,126.0,123.0,129.0,111.0,102.0,105.0,111.0,97.0,114.0,104.0,86.0,98.0,121.0,101.0,111.0,91.0,110.0,125.0,102.0,109.0,96.0,71.0,70.0,61.0,61.0,40.0,43.0,44.0,24.0,21.0,30.0,12.0,16.0,6.0,16.0 G82115,52.0,40.0,55.0,45.0,45.0,48.0,54.0,65.0,50.0,53.0,58.0,67.0,36.0,68.0,66.0,64.0,66.0,62.0,67.0,60.0,61.0,80.0,65.0,78.0,68.0,83.0,78.0,92.0,96.0,100.0,95.0,94.0,79.0,97.0,101.0,88.0,80.0,77.0,85.0,71.0,82.0,81.0,80.0,79.0,78.0,68.0,77.0,63.0,58.0,61.0,70.0,66.0,60.0,75.0,56.0,63.0,55.0,55.0,63.0,62.0,66.0,55.0,52.0,57.0,55.0,44.0,45.0,50.0,47.0,48.0,48.0,39.0,36.0,56.0,34.0,44.0,53.0,45.0,52.0,33.0,37.0,30.0,34.0,22.0,19.0,26.0,16.0,15.0,8.0,9.0,5.0,10.0,7.0,3.0,3.0,6.0 G82117,45.0,53.0,51.0,46.0,48.0,48.0,55.0,82.0,60.0,53.0,67.0,70.0,64.0,41.0,73.0,64.0,59.0,65.0,62.0,63.0,58.0,42.0,54.0,57.0,47.0,45.0,49.0,52.0,59.0,63.0,66.0,60.0,65.0,60.0,63.0,58.0,57.0,61.0,65.0,63.0,70.0,55.0,66.0,72.0,57.0,54.0,49.0,49.0,52.0,44.0,53.0,53.0,63.0,51.0,60.0,59.0,44.0,69.0,61.0,51.0,42.0,67.0,58.0,50.0,47.0,59.0,51.0,46.0,55.0,54.0,34.0,40.0,42.0,39.0,35.0,20.0,43.0,50.0,35.0,30.0,26.0,15.0,15.0,24.0,25.0,14.0,15.0,13.0,8.0,10.0,7.0,8.0,11.0,,1.0,5.0 G82118,78.0,73.0,81.0,76.0,71.0,68.0,88.0,82.0,75.0,88.0,96.0,87.0,82.0,107.0,96.0,79.0,73.0,86.0,106.0,66.0,73.0,71.0,69.0,82.0,48.0,59.0,57.0,66.0,83.0,71.0,88.0,84.0,80.0,74.0,91.0,82.0,95.0,91.0,89.0,81.0,87.0,86.0,72.0,84.0,91.0,81.0,106.0,81.0,88.0,95.0,82.0,97.0,95.0,115.0,94.0,91.0,114.0,94.0,99.0,84.0,90.0,97.0,80.0,66.0,73.0,64.0,81.0,68.0,77.0,49.0,68.0,62.0,61.0,57.0,53.0,68.0,76.0,67.0,79.0,46.0,51.0,43.0,43.0,38.0,25.0,26.0,28.0,18.0,19.0,21.0,14.0,9.0,4.0,8.0,5.0,8.0 G82119,97.0,104.0,103.0,106.0,124.0,123.0,130.0,126.0,136.0,132.0,153.0,126.0,137.0,175.0,155.0,158.0,174.0,122.0,134.0,136.0,113.0,125.0,132.0,111.0,116.0,116.0,139.0,114.0,148.0,141.0,125.0,111.0,149.0,153.0,159.0,131.0,152.0,156.0,146.0,134.0,147.0,145.0,119.0,138.0,160.0,134.0,128.0,134.0,115.0,139.0,149.0,131.0,154.0,171.0,175.0,145.0,183.0,175.0,155.0,169.0,193.0,165.0,185.0,172.0,144.0,167.0,147.0,171.0,153.0,162.0,128.0,137.0,124.0,123.0,114.0,132.0,133.0,124.0,164.0,112.0,113.0,82.0,78.0,55.0,48.0,54.0,58.0,36.0,35.0,36.0,26.0,20.0,12.0,5.0,10.0,16.0 G82120,62.0,70.0,59.0,97.0,80.0,83.0,96.0,87.0,91.0,86.0,102.0,98.0,96.0,93.0,84.0,99.0,117.0,95.0,83.0,85.0,69.0,96.0,77.0,63.0,68.0,73.0,85.0,75.0,78.0,62.0,67.0,75.0,74.0,79.0,91.0,91.0,91.0,109.0,75.0,74.0,84.0,83.0,98.0,91.0,99.0,112.0,91.0,96.0,81.0,108.0,102.0,113.0,105.0,112.0,111.0,130.0,128.0,108.0,109.0,117.0,112.0,115.0,106.0,91.0,93.0,87.0,80.0,100.0,78.0,70.0,66.0,77.0,82.0,69.0,89.0,71.0,87.0,95.0,94.0,73.0,57.0,57.0,52.0,36.0,31.0,36.0,32.0,22.0,25.0,24.0,16.0,19.0,11.0,10.0,9.0,12.0 G82121,49.0,53.0,59.0,66.0,61.0,63.0,66.0,61.0,63.0,65.0,66.0,62.0,55.0,69.0,73.0,74.0,95.0,88.0,88.0,83.0,59.0,32.0,49.0,40.0,51.0,45.0,54.0,43.0,65.0,53.0,67.0,75.0,84.0,80.0,78.0,87.0,75.0,78.0,80.0,73.0,83.0,80.0,80.0,82.0,87.0,89.0,77.0,89.0,73.0,76.0,90.0,86.0,77.0,91.0,91.0,76.0,89.0,78.0,75.0,97.0,107.0,92.0,98.0,86.0,73.0,76.0,72.0,65.0,68.0,66.0,67.0,61.0,64.0,71.0,66.0,72.0,66.0,94.0,72.0,56.0,67.0,46.0,42.0,35.0,32.0,18.0,28.0,17.0,18.0,13.0,10.0,8.0,7.0,7.0,4.0,13.0 G82122,312.0,303.0,295.0,286.0,258.0,291.0,274.0,309.0,306.0,295.0,281.0,299.0,276.0,285.0,255.0,241.0,225.0,229.0,207.0,185.0,167.0,133.0,166.0,140.0,171.0,170.0,205.0,205.0,216.0,246.0,265.0,249.0,295.0,295.0,365.0,328.0,362.0,308.0,304.0,329.0,344.0,291.0,296.0,296.0,301.0,286.0,254.0,267.0,245.0,216.0,254.0,220.0,201.0,221.0,202.0,206.0,202.0,230.0,184.0,184.0,171.0,198.0,151.0,144.0,154.0,148.0,133.0,125.0,118.0,112.0,102.0,88.0,92.0,86.0,91.0,91.0,60.0,92.0,71.0,60.0,54.0,52.0,48.0,52.0,32.0,28.0,22.0,21.0,19.0,20.0,14.0,9.0,6.0,9.0,4.0,8.0 G82125,48.0,51.0,45.0,43.0,59.0,64.0,66.0,66.0,64.0,73.0,83.0,90.0,82.0,87.0,93.0,82.0,78.0,71.0,81.0,62.0,55.0,55.0,53.0,67.0,57.0,74.0,48.0,57.0,47.0,46.0,49.0,60.0,62.0,52.0,60.0,52.0,51.0,74.0,55.0,73.0,62.0,68.0,59.0,65.0,81.0,62.0,70.0,58.0,79.0,71.0,67.0,83.0,102.0,85.0,89.0,73.0,66.0,84.0,82.0,84.0,65.0,86.0,76.0,96.0,61.0,71.0,52.0,57.0,50.0,54.0,52.0,57.0,67.0,46.0,46.0,53.0,50.0,61.0,74.0,38.0,50.0,42.0,34.0,20.0,30.0,30.0,22.0,23.0,16.0,16.0,13.0,11.0,7.0,13.0,7.0,16.0 G82126,46.0,72.0,73.0,57.0,67.0,87.0,72.0,86.0,75.0,75.0,82.0,70.0,96.0,96.0,98.0,73.0,105.0,101.0,85.0,85.0,76.0,63.0,74.0,80.0,69.0,66.0,75.0,88.0,71.0,69.0,73.0,73.0,87.0,100.0,78.0,80.0,95.0,105.0,78.0,85.0,89.0,84.0,89.0,94.0,102.0,98.0,102.0,87.0,76.0,103.0,78.0,92.0,95.0,115.0,118.0,128.0,114.0,101.0,99.0,125.0,118.0,111.0,109.0,97.0,117.0,108.0,106.0,91.0,105.0,92.0,87.0,89.0,83.0,102.0,88.0,69.0,71.0,98.0,88.0,63.0,68.0,52.0,65.0,27.0,28.0,29.0,23.0,24.0,20.0,18.0,14.0,16.0,6.0,7.0,7.0,6.0 G82129,27.0,21.0,20.0,23.0,28.0,17.0,28.0,21.0,17.0,27.0,28.0,21.0,42.0,28.0,26.0,34.0,42.0,25.0,33.0,28.0,26.0,25.0,28.0,36.0,35.0,26.0,32.0,30.0,26.0,27.0,34.0,31.0,29.0,31.0,34.0,45.0,25.0,35.0,40.0,36.0,14.0,31.0,31.0,26.0,27.0,31.0,30.0,24.0,27.0,26.0,27.0,30.0,27.0,32.0,27.0,25.0,36.0,29.0,38.0,37.0,29.0,39.0,37.0,28.0,40.0,29.0,27.0,31.0,37.0,28.0,28.0,18.0,22.0,27.0,25.0,27.0,20.0,19.0,14.0,11.0,15.0,9.0,16.0,10.0,9.0,6.0,4.0,8.0,5.0,2.0,2.0,,2.0,2.0,,1.0 G82135,96.0,108.0,123.0,125.0,134.0,131.0,166.0,155.0,147.0,144.0,131.0,166.0,160.0,148.0,160.0,147.0,157.0,167.0,154.0,115.0,127.0,103.0,115.0,109.0,95.0,100.0,107.0,106.0,116.0,99.0,122.0,117.0,130.0,129.0,133.0,128.0,134.0,160.0,139.0,124.0,145.0,117.0,126.0,161.0,136.0,158.0,142.0,149.0,131.0,158.0,179.0,177.0,154.0,168.0,167.0,167.0,139.0,127.0,147.0,121.0,125.0,133.0,133.0,134.0,91.0,99.0,123.0,89.0,86.0,86.0,87.0,80.0,78.0,62.0,68.0,81.0,76.0,82.0,90.0,62.0,64.0,62.0,43.0,35.0,38.0,34.0,32.0,17.0,15.0,20.0,16.0,10.0,8.0,5.0,1.0,12.0 G82137,40.0,48.0,54.0,65.0,64.0,67.0,72.0,51.0,74.0,66.0,62.0,71.0,75.0,71.0,87.0,72.0,86.0,82.0,74.0,37.0,38.0,46.0,38.0,57.0,36.0,40.0,49.0,49.0,46.0,54.0,42.0,55.0,60.0,60.0,70.0,52.0,67.0,65.0,51.0,64.0,72.0,79.0,95.0,73.0,96.0,76.0,81.0,75.0,68.0,77.0,81.0,74.0,79.0,66.0,56.0,76.0,53.0,72.0,72.0,61.0,60.0,49.0,54.0,45.0,43.0,36.0,54.0,34.0,35.0,38.0,34.0,28.0,19.0,23.0,35.0,34.0,32.0,35.0,45.0,32.0,25.0,17.0,31.0,19.0,18.0,20.0,19.0,13.0,11.0,8.0,4.0,6.0,8.0,4.0,2.0,8.0 G82138,17.0,15.0,15.0,16.0,16.0,14.0,23.0,10.0,23.0,21.0,19.0,23.0,24.0,26.0,29.0,63.0,32.0,28.0,27.0,20.0,23.0,23.0,24.0,23.0,22.0,12.0,21.0,22.0,17.0,20.0,26.0,20.0,28.0,26.0,24.0,24.0,28.0,29.0,24.0,29.0,23.0,25.0,19.0,22.0,22.0,24.0,27.0,27.0,23.0,21.0,32.0,25.0,28.0,25.0,39.0,34.0,41.0,30.0,44.0,30.0,38.0,36.0,25.0,35.0,40.0,34.0,42.0,37.0,33.0,26.0,32.0,34.0,19.0,26.0,33.0,29.0,28.0,30.0,34.0,28.0,21.0,33.0,19.0,18.0,17.0,15.0,16.0,13.0,12.0,10.0,7.0,2.0,2.0,2.0,4.0,4.0 G82139,48.0,55.0,68.0,71.0,61.0,45.0,39.0,55.0,57.0,44.0,64.0,46.0,56.0,59.0,54.0,60.0,46.0,54.0,43.0,50.0,39.0,39.0,42.0,43.0,46.0,35.0,54.0,52.0,43.0,48.0,61.0,63.0,67.0,77.0,72.0,61.0,72.0,76.0,53.0,63.0,62.0,48.0,65.0,75.0,67.0,54.0,63.0,49.0,47.0,37.0,67.0,50.0,51.0,65.0,66.0,55.0,66.0,55.0,52.0,42.0,51.0,58.0,40.0,42.0,39.0,34.0,35.0,36.0,45.0,40.0,31.0,26.0,28.0,27.0,20.0,30.0,23.0,26.0,28.0,21.0,18.0,14.0,19.0,14.0,16.0,13.0,15.0,6.0,7.0,7.0,5.0,6.0,1.0,1.0,2.0,1.0 G82140,30.0,22.0,20.0,17.0,25.0,21.0,21.0,36.0,29.0,35.0,41.0,42.0,52.0,58.0,98.0,107.0,116.0,110.0,174.0,284.0,413.0,412.0,396.0,370.0,390.0,399.0,303.0,344.0,382.0,314.0,298.0,192.0,193.0,143.0,106.0,108.0,73.0,86.0,92.0,69.0,66.0,61.0,65.0,55.0,58.0,51.0,36.0,33.0,52.0,29.0,36.0,33.0,40.0,29.0,34.0,20.0,22.0,28.0,35.0,29.0,26.0,29.0,28.0,20.0,20.0,13.0,21.0,20.0,16.0,19.0,17.0,13.0,11.0,16.0,19.0,17.0,10.0,24.0,19.0,6.0,11.0,16.0,17.0,6.0,5.0,6.0,8.0,3.0,3.0,2.0,1.0,4.0,1.0,3.0,, G82141,31.0,40.0,39.0,38.0,38.0,34.0,41.0,44.0,45.0,45.0,37.0,44.0,43.0,53.0,38.0,46.0,36.0,38.0,50.0,36.0,25.0,23.0,49.0,36.0,36.0,37.0,35.0,43.0,47.0,41.0,33.0,47.0,50.0,41.0,33.0,40.0,38.0,48.0,44.0,48.0,43.0,26.0,41.0,37.0,44.0,44.0,49.0,33.0,38.0,56.0,47.0,37.0,34.0,55.0,50.0,52.0,61.0,59.0,64.0,48.0,65.0,65.0,59.0,63.0,34.0,50.0,35.0,43.0,45.0,37.0,45.0,37.0,30.0,36.0,28.0,34.0,27.0,28.0,39.0,28.0,30.0,24.0,19.0,22.0,15.0,12.0,17.0,8.0,9.0,10.0,4.0,2.0,3.0,1.0,1.0,5.0 G82142,50.0,40.0,52.0,56.0,52.0,41.0,57.0,76.0,44.0,79.0,62.0,61.0,59.0,73.0,79.0,74.0,62.0,71.0,65.0,40.0,56.0,62.0,44.0,52.0,43.0,54.0,37.0,47.0,49.0,50.0,60.0,54.0,49.0,62.0,65.0,69.0,63.0,69.0,55.0,63.0,63.0,58.0,70.0,66.0,71.0,62.0,85.0,66.0,71.0,68.0,71.0,74.0,77.0,76.0,80.0,94.0,86.0,83.0,70.0,81.0,73.0,72.0,76.0,62.0,70.0,67.0,69.0,70.0,51.0,57.0,52.0,50.0,51.0,49.0,41.0,51.0,35.0,61.0,66.0,43.0,48.0,50.0,33.0,21.0,10.0,13.0,21.0,13.0,8.0,18.0,12.0,8.0,5.0,3.0,3.0,9.0 G82143,30.0,47.0,40.0,39.0,46.0,52.0,43.0,58.0,45.0,53.0,55.0,48.0,43.0,52.0,49.0,39.0,49.0,45.0,34.0,36.0,39.0,36.0,34.0,39.0,35.0,37.0,45.0,44.0,36.0,57.0,43.0,49.0,53.0,60.0,62.0,47.0,58.0,58.0,60.0,54.0,68.0,70.0,69.0,71.0,85.0,70.0,43.0,45.0,43.0,48.0,45.0,32.0,57.0,44.0,42.0,56.0,38.0,40.0,45.0,39.0,40.0,41.0,39.0,24.0,33.0,41.0,36.0,26.0,28.0,25.0,18.0,35.0,22.0,16.0,25.0,18.0,20.0,32.0,19.0,22.0,16.0,14.0,13.0,16.0,10.0,7.0,10.0,5.0,4.0,5.0,1.0,3.0,3.0,3.0,2.0,3.0 G82147,8.0,17.0,17.0,27.0,20.0,21.0,23.0,24.0,35.0,29.0,23.0,32.0,28.0,36.0,30.0,33.0,37.0,24.0,25.0,24.0,29.0,23.0,28.0,14.0,26.0,21.0,25.0,27.0,21.0,16.0,29.0,29.0,24.0,26.0,31.0,23.0,32.0,27.0,29.0,26.0,22.0,27.0,26.0,24.0,28.0,27.0,21.0,28.0,23.0,18.0,23.0,29.0,23.0,41.0,60.0,35.0,37.0,39.0,47.0,62.0,55.0,51.0,42.0,53.0,51.0,52.0,59.0,59.0,34.0,44.0,42.0,46.0,61.0,36.0,54.0,38.0,49.0,53.0,66.0,34.0,40.0,25.0,31.0,22.0,23.0,15.0,14.0,16.0,15.0,11.0,14.0,6.0,3.0,8.0,1.0,5.0 G82150,29.0,35.0,33.0,47.0,46.0,35.0,56.0,36.0,45.0,51.0,51.0,51.0,40.0,55.0,42.0,58.0,45.0,47.0,62.0,43.0,42.0,43.0,33.0,34.0,39.0,37.0,50.0,37.0,45.0,50.0,48.0,53.0,56.0,64.0,59.0,53.0,60.0,59.0,53.0,61.0,47.0,44.0,44.0,45.0,43.0,41.0,37.0,49.0,36.0,48.0,42.0,39.0,44.0,45.0,36.0,48.0,45.0,33.0,44.0,41.0,33.0,46.0,43.0,46.0,35.0,34.0,38.0,43.0,30.0,32.0,25.0,27.0,25.0,25.0,22.0,26.0,29.0,28.0,20.0,17.0,15.0,21.0,12.0,9.0,12.0,13.0,11.0,9.0,9.0,3.0,5.0,2.0,4.0,,,3.0 G82152,29.0,16.0,27.0,37.0,38.0,47.0,38.0,53.0,41.0,44.0,51.0,67.0,65.0,55.0,61.0,47.0,51.0,47.0,44.0,37.0,44.0,33.0,37.0,23.0,37.0,22.0,23.0,24.0,31.0,27.0,35.0,31.0,29.0,36.0,34.0,37.0,32.0,35.0,44.0,51.0,39.0,39.0,52.0,45.0,54.0,45.0,41.0,51.0,43.0,55.0,46.0,44.0,60.0,43.0,32.0,35.0,51.0,44.0,54.0,45.0,52.0,47.0,42.0,44.0,32.0,29.0,31.0,42.0,23.0,33.0,34.0,32.0,18.0,25.0,43.0,30.0,30.0,30.0,27.0,28.0,20.0,27.0,19.0,18.0,12.0,15.0,15.0,12.0,8.0,5.0,5.0,6.0,2.0,3.0,2.0,4.0 G82154,22.0,29.0,22.0,33.0,31.0,32.0,27.0,36.0,33.0,27.0,31.0,30.0,37.0,32.0,36.0,24.0,39.0,40.0,26.0,23.0,30.0,25.0,31.0,26.0,35.0,32.0,26.0,22.0,32.0,42.0,31.0,28.0,28.0,37.0,31.0,35.0,40.0,51.0,37.0,37.0,27.0,28.0,40.0,25.0,24.0,32.0,34.0,33.0,49.0,30.0,37.0,34.0,43.0,34.0,39.0,38.0,49.0,44.0,37.0,37.0,47.0,44.0,48.0,49.0,34.0,26.0,37.0,39.0,27.0,36.0,33.0,23.0,31.0,22.0,26.0,30.0,28.0,44.0,36.0,32.0,36.0,28.0,37.0,24.0,9.0,14.0,12.0,14.0,15.0,9.0,7.0,5.0,4.0,4.0,5.0,5.0 G82155,24.0,24.0,36.0,25.0,21.0,31.0,29.0,33.0,40.0,37.0,51.0,43.0,44.0,40.0,51.0,46.0,47.0,35.0,37.0,36.0,29.0,24.0,29.0,31.0,29.0,28.0,32.0,25.0,25.0,28.0,41.0,41.0,30.0,35.0,29.0,31.0,30.0,44.0,40.0,36.0,48.0,41.0,55.0,44.0,41.0,44.0,36.0,36.0,38.0,36.0,41.0,40.0,52.0,41.0,37.0,42.0,43.0,48.0,47.0,55.0,49.0,43.0,46.0,49.0,35.0,49.0,36.0,28.0,33.0,26.0,38.0,29.0,36.0,21.0,31.0,20.0,33.0,39.0,40.0,28.0,29.0,33.0,23.0,16.0,22.0,22.0,11.0,12.0,9.0,7.0,2.0,2.0,2.0,2.0,1.0,6.0 G82158,20.0,23.0,21.0,33.0,33.0,22.0,40.0,24.0,31.0,37.0,30.0,31.0,34.0,30.0,37.0,37.0,40.0,33.0,30.0,27.0,26.0,21.0,18.0,19.0,21.0,35.0,26.0,27.0,29.0,25.0,20.0,23.0,18.0,38.0,25.0,24.0,23.0,20.0,26.0,27.0,31.0,37.0,34.0,33.0,35.0,35.0,41.0,31.0,25.0,29.0,40.0,40.0,32.0,42.0,27.0,34.0,46.0,38.0,46.0,50.0,47.0,48.0,47.0,45.0,37.0,36.0,37.0,25.0,33.0,22.0,28.0,27.0,30.0,27.0,27.0,23.0,25.0,36.0,18.0,23.0,31.0,27.0,18.0,10.0,17.0,8.0,8.0,12.0,13.0,6.0,5.0,3.0,2.0,5.0,,3.0 G82160,31.0,48.0,35.0,37.0,40.0,38.0,53.0,57.0,55.0,45.0,52.0,44.0,59.0,66.0,67.0,75.0,58.0,57.0,54.0,40.0,48.0,51.0,41.0,42.0,42.0,54.0,47.0,49.0,41.0,38.0,44.0,36.0,46.0,52.0,62.0,52.0,56.0,51.0,63.0,53.0,44.0,48.0,47.0,45.0,58.0,51.0,56.0,53.0,71.0,62.0,63.0,65.0,71.0,78.0,81.0,73.0,92.0,88.0,97.0,96.0,79.0,94.0,110.0,84.0,99.0,95.0,101.0,80.0,108.0,76.0,74.0,82.0,98.0,84.0,99.0,84.0,79.0,111.0,107.0,69.0,99.0,74.0,48.0,48.0,51.0,48.0,28.0,36.0,32.0,24.0,18.0,12.0,16.0,9.0,11.0,22.0 G82161,117.0,137.0,151.0,172.0,151.0,179.0,176.0,188.0,197.0,224.0,193.0,231.0,222.0,226.0,215.0,208.0,217.0,211.0,198.0,161.0,171.0,178.0,148.0,157.0,169.0,175.0,174.0,186.0,191.0,179.0,191.0,233.0,191.0,202.0,228.0,229.0,234.0,247.0,244.0,255.0,227.0,209.0,225.0,239.0,244.0,230.0,227.0,206.0,195.0,199.0,191.0,173.0,228.0,209.0,223.0,228.0,223.0,217.0,220.0,232.0,214.0,208.0,219.0,180.0,206.0,175.0,162.0,166.0,152.0,148.0,149.0,136.0,133.0,127.0,103.0,151.0,135.0,152.0,141.0,90.0,97.0,57.0,70.0,59.0,62.0,39.0,42.0,36.0,22.0,19.0,13.0,10.0,10.0,4.0,3.0,12.0 G82162,15.0,15.0,24.0,24.0,20.0,25.0,28.0,35.0,24.0,28.0,32.0,32.0,38.0,38.0,25.0,36.0,27.0,28.0,21.0,22.0,20.0,22.0,28.0,33.0,33.0,26.0,29.0,27.0,25.0,27.0,14.0,28.0,22.0,32.0,29.0,26.0,21.0,26.0,27.0,22.0,33.0,25.0,20.0,32.0,30.0,34.0,41.0,33.0,25.0,35.0,43.0,34.0,27.0,29.0,30.0,34.0,39.0,40.0,26.0,45.0,30.0,40.0,28.0,32.0,28.0,36.0,32.0,33.0,31.0,23.0,26.0,33.0,28.0,21.0,36.0,33.0,30.0,32.0,24.0,20.0,24.0,23.0,14.0,17.0,15.0,15.0,20.0,13.0,5.0,3.0,4.0,6.0,6.0,1.0,2.0,7.0 G82164,65.0,64.0,78.0,98.0,75.0,83.0,87.0,100.0,86.0,75.0,86.0,81.0,81.0,72.0,68.0,79.0,81.0,87.0,76.0,61.0,69.0,61.0,63.0,61.0,77.0,75.0,92.0,90.0,95.0,122.0,91.0,127.0,101.0,104.0,132.0,130.0,128.0,127.0,121.0,124.0,116.0,111.0,107.0,105.0,105.0,106.0,80.0,99.0,87.0,82.0,96.0,109.0,79.0,86.0,99.0,91.0,70.0,101.0,74.0,78.0,72.0,69.0,53.0,72.0,70.0,47.0,61.0,60.0,52.0,29.0,50.0,29.0,42.0,39.0,40.0,36.0,38.0,52.0,40.0,38.0,28.0,32.0,19.0,30.0,13.0,18.0,13.0,9.0,14.0,11.0,12.0,4.0,1.0,6.0,1.0,6.0 G82165,36.0,48.0,47.0,36.0,64.0,45.0,58.0,54.0,53.0,59.0,47.0,51.0,72.0,79.0,59.0,68.0,64.0,70.0,66.0,53.0,59.0,62.0,51.0,56.0,51.0,47.0,44.0,64.0,49.0,57.0,49.0,52.0,54.0,63.0,50.0,58.0,56.0,62.0,55.0,61.0,57.0,60.0,56.0,55.0,70.0,61.0,61.0,59.0,61.0,64.0,59.0,65.0,63.0,63.0,78.0,84.0,74.0,71.0,69.0,91.0,71.0,68.0,60.0,58.0,64.0,48.0,70.0,42.0,57.0,44.0,57.0,45.0,42.0,39.0,49.0,48.0,54.0,67.0,55.0,49.0,46.0,39.0,38.0,28.0,18.0,20.0,24.0,16.0,17.0,19.0,13.0,5.0,8.0,4.0,1.0, G82170,12.0,12.0,12.0,12.0,13.0,18.0,17.0,15.0,17.0,24.0,15.0,23.0,20.0,13.0,28.0,25.0,26.0,30.0,17.0,17.0,16.0,12.0,17.0,18.0,16.0,17.0,11.0,13.0,25.0,7.0,19.0,18.0,15.0,26.0,16.0,24.0,20.0,12.0,15.0,18.0,8.0,29.0,14.0,16.0,20.0,22.0,23.0,19.0,22.0,21.0,26.0,28.0,35.0,15.0,24.0,25.0,37.0,29.0,32.0,28.0,32.0,36.0,25.0,31.0,31.0,27.0,34.0,30.0,23.0,24.0,10.0,28.0,16.0,20.0,11.0,21.0,17.0,32.0,21.0,23.0,25.0,13.0,13.0,10.0,10.0,9.0,10.0,4.0,5.0,2.0,2.0,2.0,5.0,,1.0,4.0 G82180,15.0,15.0,19.0,29.0,20.0,24.0,27.0,30.0,31.0,34.0,30.0,39.0,19.0,31.0,26.0,26.0,25.0,27.0,24.0,26.0,14.0,29.0,18.0,27.0,24.0,25.0,33.0,32.0,27.0,26.0,25.0,34.0,28.0,28.0,25.0,22.0,22.0,23.0,34.0,28.0,34.0,34.0,30.0,27.0,31.0,29.0,40.0,28.0,24.0,28.0,24.0,22.0,31.0,27.0,46.0,38.0,25.0,30.0,27.0,34.0,32.0,32.0,27.0,35.0,28.0,38.0,29.0,26.0,22.0,18.0,27.0,35.0,27.0,23.0,31.0,38.0,35.0,33.0,31.0,20.0,20.0,14.0,16.0,17.0,7.0,10.0,9.0,9.0,12.0,2.0,2.0,4.0,3.0,2.0,3.0,6.0 G82184,3.0,1.0,2.0,6.0,4.0,4.0,5.0,7.0,7.0,6.0,10.0,4.0,7.0,6.0,8.0,10.0,4.0,13.0,9.0,4.0,5.0,2.0,7.0,3.0,5.0,5.0,10.0,8.0,8.0,12.0,6.0,6.0,8.0,9.0,6.0,11.0,13.0,10.0,7.0,11.0,5.0,14.0,12.0,8.0,15.0,10.0,6.0,8.0,7.0,5.0,9.0,11.0,7.0,11.0,5.0,5.0,13.0,8.0,10.0,15.0,10.0,9.0,15.0,9.0,10.0,9.0,9.0,10.0,10.0,10.0,16.0,5.0,9.0,10.0,10.0,5.0,6.0,10.0,2.0,3.0,5.0,3.0,2.0,5.0,4.0,4.0,3.0,3.0,1.0,3.0,,1.0,1.0,,1.0,1.0 G82185,31.0,36.0,36.0,42.0,37.0,49.0,47.0,43.0,58.0,66.0,55.0,68.0,62.0,70.0,63.0,59.0,57.0,67.0,55.0,63.0,53.0,57.0,36.0,45.0,58.0,45.0,53.0,45.0,54.0,54.0,47.0,48.0,62.0,44.0,51.0,61.0,58.0,68.0,53.0,56.0,74.0,56.0,70.0,62.0,70.0,79.0,75.0,71.0,71.0,72.0,63.0,64.0,49.0,75.0,73.0,55.0,63.0,60.0,70.0,51.0,55.0,57.0,65.0,50.0,57.0,40.0,40.0,39.0,32.0,28.0,34.0,36.0,28.0,26.0,31.0,45.0,36.0,47.0,43.0,40.0,37.0,25.0,15.0,21.0,13.0,14.0,13.0,15.0,10.0,12.0,5.0,6.0,4.0,2.0,1.0,2.0 G82186,40.0,31.0,43.0,45.0,37.0,39.0,36.0,34.0,25.0,45.0,44.0,36.0,61.0,42.0,56.0,45.0,35.0,49.0,38.0,35.0,45.0,41.0,39.0,28.0,39.0,39.0,32.0,18.0,42.0,38.0,35.0,44.0,48.0,52.0,45.0,44.0,35.0,36.0,47.0,37.0,49.0,39.0,42.0,42.0,49.0,40.0,38.0,53.0,38.0,40.0,39.0,49.0,52.0,54.0,58.0,60.0,59.0,59.0,79.0,68.0,79.0,58.0,66.0,60.0,62.0,49.0,53.0,43.0,44.0,54.0,56.0,56.0,45.0,49.0,29.0,46.0,56.0,51.0,41.0,36.0,41.0,26.0,34.0,24.0,16.0,14.0,17.0,8.0,14.0,8.0,8.0,5.0,3.0,1.0,2.0,3.0 G82200,61.0,54.0,56.0,63.0,56.0,78.0,79.0,64.0,52.0,67.0,54.0,68.0,73.0,74.0,63.0,65.0,77.0,58.0,62.0,47.0,50.0,38.0,37.0,47.0,57.0,53.0,44.0,50.0,50.0,63.0,54.0,65.0,53.0,69.0,73.0,67.0,78.0,81.0,74.0,79.0,74.0,73.0,53.0,65.0,75.0,71.0,72.0,71.0,64.0,68.0,55.0,59.0,71.0,74.0,72.0,66.0,75.0,77.0,82.0,90.0,83.0,70.0,72.0,71.0,79.0,52.0,60.0,68.0,72.0,69.0,49.0,49.0,50.0,43.0,42.0,42.0,41.0,60.0,46.0,37.0,33.0,33.0,30.0,19.0,9.0,11.0,20.0,10.0,5.0,7.0,7.0,3.0,2.0,6.0,3.0,4.0 G82203,44.0,76.0,65.0,68.0,71.0,84.0,93.0,80.0,65.0,67.0,90.0,94.0,77.0,94.0,83.0,72.0,80.0,77.0,81.0,53.0,65.0,69.0,62.0,65.0,74.0,64.0,77.0,53.0,53.0,61.0,67.0,69.0,65.0,75.0,96.0,86.0,106.0,82.0,75.0,97.0,76.0,83.0,101.0,79.0,65.0,71.0,61.0,56.0,59.0,65.0,62.0,60.0,60.0,65.0,66.0,77.0,64.0,59.0,69.0,62.0,62.0,56.0,62.0,69.0,38.0,41.0,39.0,47.0,40.0,41.0,41.0,29.0,40.0,41.0,31.0,31.0,33.0,31.0,38.0,24.0,19.0,17.0,21.0,14.0,13.0,15.0,16.0,10.0,7.0,11.0,6.0,3.0,1.0,1.0,,1.0 G82205,29.0,41.0,43.0,39.0,35.0,46.0,48.0,57.0,74.0,64.0,74.0,79.0,67.0,79.0,80.0,61.0,72.0,71.0,78.0,41.0,28.0,36.0,31.0,43.0,39.0,40.0,36.0,40.0,34.0,46.0,47.0,41.0,49.0,58.0,44.0,53.0,65.0,62.0,54.0,74.0,48.0,62.0,60.0,71.0,60.0,75.0,83.0,59.0,87.0,64.0,78.0,71.0,75.0,71.0,68.0,52.0,47.0,63.0,68.0,54.0,61.0,42.0,61.0,46.0,47.0,33.0,33.0,37.0,25.0,31.0,26.0,26.0,27.0,27.0,21.0,25.0,29.0,28.0,32.0,18.0,29.0,18.0,20.0,11.0,7.0,7.0,12.0,8.0,9.0,6.0,7.0,1.0,3.0,6.0,1.0,5.0 G82211,55.0,60.0,60.0,65.0,71.0,65.0,65.0,73.0,60.0,48.0,53.0,67.0,57.0,50.0,59.0,57.0,47.0,53.0,45.0,39.0,51.0,56.0,44.0,55.0,29.0,52.0,53.0,63.0,47.0,54.0,54.0,78.0,72.0,78.0,69.0,63.0,76.0,77.0,63.0,46.0,64.0,64.0,72.0,43.0,55.0,46.0,51.0,40.0,36.0,46.0,41.0,34.0,56.0,50.0,45.0,53.0,47.0,57.0,57.0,41.0,60.0,55.0,56.0,48.0,54.0,49.0,43.0,40.0,35.0,27.0,34.0,30.0,24.0,31.0,26.0,29.0,24.0,37.0,34.0,21.0,20.0,16.0,16.0,13.0,14.0,14.0,9.0,5.0,7.0,2.0,6.0,3.0,4.0,5.0,2.0,4.0 G82212,50.0,54.0,66.0,65.0,67.0,63.0,74.0,62.0,83.0,62.0,78.0,60.0,60.0,59.0,73.0,62.0,44.0,54.0,63.0,36.0,42.0,37.0,29.0,39.0,29.0,49.0,32.0,32.0,42.0,46.0,49.0,58.0,51.0,72.0,62.0,71.0,71.0,95.0,92.0,76.0,89.0,73.0,80.0,81.0,68.0,83.0,73.0,51.0,63.0,52.0,45.0,61.0,54.0,42.0,52.0,38.0,56.0,48.0,45.0,38.0,49.0,46.0,36.0,36.0,27.0,45.0,26.0,36.0,37.0,21.0,23.0,29.0,19.0,19.0,20.0,17.0,12.0,15.0,27.0,12.0,17.0,12.0,2.0,11.0,3.0,5.0,4.0,6.0,5.0,2.0,3.0,1.0,1.0,,,5.0 G82215,48.0,42.0,56.0,43.0,55.0,54.0,43.0,53.0,45.0,36.0,46.0,46.0,44.0,43.0,43.0,38.0,39.0,56.0,36.0,57.0,27.0,33.0,38.0,35.0,46.0,39.0,43.0,43.0,35.0,29.0,33.0,43.0,47.0,46.0,50.0,41.0,45.0,49.0,58.0,56.0,51.0,40.0,55.0,46.0,44.0,57.0,38.0,57.0,37.0,48.0,45.0,37.0,62.0,49.0,64.0,54.0,55.0,62.0,72.0,46.0,57.0,50.0,47.0,57.0,54.0,48.0,45.0,37.0,42.0,37.0,46.0,30.0,27.0,38.0,41.0,44.0,36.0,30.0,37.0,30.0,22.0,29.0,29.0,20.0,9.0,14.0,14.0,9.0,9.0,9.0,7.0,8.0,5.0,3.0,,2.0 G82217,17.0,21.0,18.0,24.0,16.0,21.0,17.0,23.0,21.0,24.0,23.0,21.0,27.0,19.0,26.0,18.0,17.0,19.0,28.0,20.0,13.0,13.0,17.0,17.0,18.0,8.0,14.0,31.0,19.0,32.0,21.0,15.0,33.0,38.0,25.0,31.0,29.0,25.0,31.0,26.0,30.0,23.0,25.0,24.0,34.0,32.0,23.0,30.0,26.0,19.0,30.0,15.0,18.0,20.0,35.0,23.0,32.0,35.0,22.0,28.0,27.0,25.0,25.0,19.0,26.0,22.0,16.0,16.0,16.0,16.0,24.0,11.0,18.0,19.0,16.0,14.0,15.0,11.0,14.0,13.0,10.0,4.0,6.0,7.0,2.0,6.0,3.0,6.0,8.0,3.0,,1.0,,1.0,1.0, G82218,50.0,58.0,52.0,73.0,55.0,62.0,57.0,63.0,64.0,67.0,66.0,56.0,86.0,64.0,80.0,90.0,64.0,74.0,58.0,72.0,56.0,60.0,61.0,53.0,63.0,67.0,72.0,66.0,55.0,63.0,72.0,61.0,66.0,96.0,60.0,77.0,77.0,84.0,83.0,70.0,83.0,79.0,67.0,61.0,73.0,80.0,78.0,75.0,72.0,65.0,83.0,60.0,88.0,87.0,81.0,96.0,67.0,90.0,107.0,103.0,85.0,82.0,81.0,119.0,75.0,81.0,79.0,68.0,81.0,87.0,87.0,90.0,59.0,65.0,62.0,56.0,57.0,68.0,66.0,55.0,51.0,43.0,33.0,36.0,30.0,27.0,30.0,19.0,17.0,12.0,18.0,13.0,11.0,2.0,5.0,5.0 G82219,14.0,17.0,20.0,18.0,18.0,31.0,11.0,21.0,18.0,31.0,21.0,23.0,37.0,31.0,31.0,39.0,37.0,48.0,45.0,25.0,15.0,28.0,22.0,13.0,16.0,20.0,21.0,25.0,21.0,17.0,15.0,18.0,17.0,29.0,31.0,21.0,37.0,21.0,17.0,15.0,27.0,17.0,32.0,23.0,26.0,18.0,22.0,26.0,24.0,18.0,24.0,24.0,20.0,28.0,26.0,29.0,25.0,29.0,42.0,28.0,33.0,33.0,26.0,34.0,36.0,32.0,31.0,29.0,22.0,29.0,23.0,30.0,22.0,38.0,37.0,24.0,22.0,35.0,37.0,30.0,22.0,21.0,17.0,18.0,15.0,9.0,13.0,7.0,8.0,9.0,4.0,3.0,4.0,1.0,3.0, G82224,12.0,13.0,10.0,16.0,20.0,19.0,22.0,17.0,20.0,27.0,27.0,17.0,23.0,26.0,24.0,24.0,22.0,18.0,29.0,20.0,21.0,28.0,28.0,25.0,25.0,16.0,24.0,27.0,18.0,12.0,27.0,14.0,23.0,12.0,19.0,14.0,25.0,20.0,11.0,23.0,18.0,16.0,24.0,22.0,17.0,25.0,15.0,29.0,29.0,24.0,23.0,28.0,29.0,39.0,25.0,29.0,35.0,31.0,36.0,38.0,28.0,39.0,46.0,25.0,39.0,27.0,31.0,34.0,26.0,27.0,25.0,21.0,17.0,12.0,17.0,13.0,12.0,23.0,14.0,20.0,16.0,9.0,10.0,7.0,9.0,8.0,4.0,3.0,2.0,4.0,2.0,3.0,2.0,,1.0,2.0 G82226,23.0,18.0,23.0,32.0,22.0,35.0,27.0,25.0,29.0,42.0,35.0,26.0,26.0,30.0,19.0,22.0,41.0,16.0,33.0,27.0,27.0,28.0,25.0,24.0,24.0,30.0,35.0,29.0,23.0,28.0,25.0,25.0,25.0,30.0,22.0,31.0,36.0,37.0,35.0,35.0,25.0,31.0,33.0,36.0,34.0,39.0,32.0,28.0,23.0,34.0,27.0,36.0,37.0,39.0,36.0,33.0,40.0,35.0,25.0,30.0,20.0,34.0,30.0,24.0,28.0,26.0,24.0,33.0,27.0,31.0,28.0,27.0,41.0,31.0,21.0,27.0,22.0,49.0,31.0,30.0,24.0,26.0,10.0,17.0,21.0,13.0,14.0,11.0,3.0,10.0,7.0,11.0,4.0,2.0,1.0,2.0 G82227,17.0,22.0,18.0,28.0,21.0,19.0,24.0,23.0,21.0,30.0,26.0,27.0,31.0,36.0,32.0,30.0,34.0,30.0,23.0,41.0,27.0,22.0,25.0,30.0,22.0,22.0,24.0,21.0,20.0,24.0,24.0,28.0,33.0,31.0,28.0,33.0,26.0,37.0,33.0,34.0,29.0,30.0,40.0,27.0,34.0,34.0,36.0,22.0,28.0,30.0,33.0,38.0,39.0,48.0,47.0,40.0,29.0,46.0,44.0,51.0,55.0,46.0,49.0,49.0,42.0,30.0,52.0,35.0,33.0,35.0,37.0,50.0,39.0,27.0,47.0,37.0,47.0,52.0,41.0,23.0,23.0,36.0,22.0,18.0,19.0,10.0,8.0,9.0,8.0,7.0,8.0,5.0,6.0,2.0,3.0,6.0 G82228,85.0,112.0,108.0,94.0,128.0,103.0,119.0,131.0,123.0,113.0,130.0,123.0,141.0,151.0,148.0,149.0,199.0,199.0,235.0,168.0,189.0,173.0,164.0,193.0,188.0,167.0,163.0,171.0,180.0,162.0,166.0,174.0,187.0,187.0,202.0,176.0,172.0,193.0,187.0,157.0,164.0,164.0,153.0,167.0,181.0,153.0,149.0,153.0,129.0,147.0,145.0,142.0,160.0,143.0,149.0,149.0,150.0,142.0,141.0,137.0,178.0,147.0,135.0,134.0,126.0,151.0,138.0,116.0,110.0,105.0,113.0,133.0,108.0,91.0,94.0,113.0,104.0,114.0,117.0,84.0,71.0,49.0,51.0,46.0,52.0,37.0,56.0,42.0,37.0,39.0,17.0,14.0,17.0,13.0,7.0,19.0 G82229,31.0,24.0,41.0,35.0,28.0,44.0,34.0,46.0,45.0,45.0,46.0,41.0,49.0,48.0,42.0,54.0,40.0,37.0,49.0,39.0,43.0,35.0,31.0,26.0,25.0,56.0,46.0,32.0,51.0,44.0,49.0,53.0,40.0,54.0,61.0,65.0,66.0,61.0,73.0,63.0,72.0,41.0,46.0,58.0,58.0,40.0,51.0,48.0,37.0,41.0,34.0,48.0,41.0,62.0,40.0,60.0,61.0,50.0,56.0,47.0,46.0,55.0,58.0,43.0,52.0,46.0,61.0,52.0,34.0,30.0,36.0,30.0,34.0,32.0,37.0,34.0,29.0,44.0,41.0,26.0,26.0,36.0,16.0,15.0,12.0,20.0,8.0,7.0,12.0,6.0,6.0,4.0,3.0,4.0,3.0,8.0 G82231,27.0,35.0,29.0,30.0,32.0,30.0,38.0,37.0,38.0,48.0,32.0,32.0,46.0,53.0,41.0,42.0,43.0,51.0,46.0,47.0,30.0,36.0,45.0,36.0,47.0,47.0,41.0,41.0,30.0,47.0,33.0,45.0,56.0,48.0,41.0,33.0,38.0,45.0,40.0,54.0,41.0,44.0,38.0,38.0,37.0,44.0,48.0,28.0,38.0,39.0,37.0,43.0,55.0,54.0,47.0,36.0,38.0,47.0,56.0,54.0,44.0,45.0,40.0,43.0,45.0,36.0,43.0,42.0,46.0,26.0,34.0,30.0,37.0,29.0,35.0,44.0,31.0,43.0,44.0,40.0,41.0,32.0,20.0,17.0,15.0,15.0,20.0,13.0,14.0,10.0,12.0,10.0,5.0,2.0,1.0,1.0 G82232,48.0,40.0,53.0,47.0,35.0,39.0,65.0,45.0,60.0,55.0,66.0,58.0,69.0,43.0,58.0,59.0,60.0,59.0,71.0,69.0,60.0,51.0,49.0,53.0,51.0,56.0,52.0,63.0,62.0,49.0,67.0,62.0,74.0,80.0,76.0,65.0,65.0,79.0,72.0,65.0,82.0,65.0,50.0,68.0,82.0,61.0,56.0,57.0,53.0,68.0,56.0,75.0,66.0,76.0,67.0,82.0,84.0,78.0,63.0,84.0,75.0,61.0,74.0,59.0,60.0,50.0,50.0,50.0,48.0,45.0,40.0,52.0,27.0,38.0,40.0,30.0,33.0,44.0,38.0,29.0,20.0,33.0,20.0,15.0,18.0,20.0,16.0,13.0,7.0,9.0,13.0,4.0,7.0,8.0,1.0,2.0 G82233,37.0,30.0,50.0,51.0,51.0,50.0,53.0,68.0,58.0,93.0,62.0,71.0,65.0,86.0,62.0,77.0,63.0,69.0,56.0,47.0,60.0,52.0,52.0,46.0,50.0,62.0,50.0,69.0,51.0,64.0,53.0,59.0,54.0,64.0,74.0,75.0,83.0,60.0,65.0,72.0,74.0,70.0,63.0,63.0,63.0,69.0,59.0,56.0,49.0,49.0,67.0,78.0,50.0,66.0,57.0,71.0,59.0,50.0,53.0,51.0,61.0,70.0,61.0,55.0,67.0,50.0,59.0,56.0,38.0,56.0,41.0,33.0,31.0,27.0,33.0,24.0,37.0,33.0,39.0,22.0,24.0,17.0,11.0,19.0,5.0,6.0,11.0,6.0,6.0,,2.0,3.0,,1.0,1.0,3.0 G82234,58.0,56.0,53.0,52.0,49.0,52.0,41.0,32.0,32.0,47.0,32.0,41.0,46.0,30.0,37.0,36.0,30.0,30.0,29.0,29.0,19.0,26.0,23.0,25.0,28.0,26.0,31.0,36.0,34.0,37.0,43.0,43.0,42.0,35.0,48.0,40.0,64.0,39.0,38.0,37.0,38.0,57.0,36.0,41.0,28.0,45.0,31.0,29.0,32.0,37.0,40.0,31.0,42.0,27.0,42.0,45.0,39.0,40.0,34.0,41.0,32.0,28.0,21.0,38.0,25.0,21.0,36.0,35.0,30.0,17.0,26.0,31.0,18.0,18.0,18.0,20.0,22.0,30.0,25.0,17.0,19.0,23.0,10.0,10.0,12.0,10.0,4.0,13.0,6.0,1.0,2.0,2.0,2.0,1.0,,1.0 G82235,16.0,17.0,26.0,26.0,21.0,26.0,28.0,41.0,32.0,30.0,35.0,33.0,45.0,33.0,39.0,61.0,62.0,72.0,71.0,58.0,33.0,38.0,30.0,34.0,26.0,35.0,28.0,33.0,28.0,31.0,25.0,23.0,32.0,21.0,27.0,31.0,30.0,26.0,25.0,25.0,26.0,21.0,28.0,26.0,36.0,39.0,35.0,29.0,29.0,30.0,29.0,26.0,45.0,27.0,30.0,34.0,37.0,38.0,43.0,38.0,50.0,35.0,48.0,39.0,30.0,33.0,36.0,53.0,38.0,36.0,29.0,40.0,26.0,30.0,28.0,29.0,38.0,22.0,35.0,16.0,21.0,21.0,10.0,16.0,20.0,18.0,15.0,9.0,10.0,7.0,9.0,3.0,4.0,2.0,5.0,6.0 G82600,6.0,9.0,11.0,10.0,12.0,5.0,7.0,22.0,11.0,16.0,13.0,16.0,15.0,12.0,18.0,11.0,9.0,13.0,14.0,8.0,5.0,12.0,12.0,16.0,9.0,6.0,14.0,16.0,17.0,16.0,13.0,14.0,14.0,15.0,14.0,14.0,12.0,9.0,12.0,19.0,15.0,17.0,23.0,11.0,18.0,14.0,15.0,11.0,19.0,9.0,15.0,16.0,14.0,10.0,18.0,14.0,15.0,17.0,17.0,13.0,12.0,20.0,16.0,15.0,21.0,14.0,14.0,17.0,20.0,12.0,11.0,12.0,15.0,16.0,7.0,11.0,14.0,6.0,14.0,9.0,5.0,8.0,9.0,7.0,7.0,2.0,4.0,1.0,2.0,1.0,,3.0,1.0,3.0,2.0, G82604,75.0,62.0,90.0,84.0,90.0,119.0,108.0,122.0,121.0,126.0,135.0,110.0,144.0,134.0,117.0,114.0,104.0,120.0,97.0,88.0,95.0,96.0,59.0,82.0,75.0,89.0,73.0,77.0,65.0,85.0,81.0,93.0,104.0,107.0,101.0,105.0,98.0,102.0,114.0,113.0,112.0,93.0,123.0,114.0,95.0,115.0,106.0,109.0,98.0,78.0,90.0,127.0,109.0,86.0,102.0,109.0,99.0,118.0,107.0,113.0,77.0,95.0,80.0,73.0,88.0,83.0,83.0,72.0,70.0,56.0,54.0,54.0,64.0,49.0,58.0,55.0,49.0,56.0,55.0,39.0,42.0,36.0,33.0,27.0,16.0,21.0,24.0,18.0,16.0,16.0,23.0,7.0,9.0,7.0,5.0,10.0 G82631,29.0,50.0,56.0,55.0,51.0,64.0,62.0,74.0,60.0,66.0,64.0,62.0,61.0,72.0,58.0,70.0,58.0,59.0,57.0,45.0,49.0,42.0,46.0,44.0,65.0,54.0,59.0,57.0,55.0,61.0,54.0,75.0,69.0,71.0,80.0,70.0,65.0,85.0,70.0,93.0,81.0,70.0,78.0,75.0,60.0,63.0,64.0,50.0,51.0,68.0,51.0,55.0,54.0,47.0,53.0,54.0,53.0,50.0,49.0,56.0,53.0,48.0,56.0,37.0,48.0,33.0,41.0,39.0,27.0,37.0,23.0,24.0,18.0,25.0,21.0,23.0,12.0,17.0,26.0,11.0,12.0,6.0,11.0,10.0,6.0,6.0,10.0,6.0,7.0,5.0,2.0,1.0,2.0,1.0,3.0,4.0 G82634,57.0,50.0,69.0,69.0,68.0,70.0,77.0,82.0,83.0,85.0,83.0,89.0,102.0,80.0,79.0,75.0,80.0,94.0,69.0,67.0,41.0,52.0,71.0,48.0,46.0,67.0,58.0,61.0,69.0,77.0,85.0,68.0,87.0,71.0,88.0,122.0,104.0,104.0,100.0,98.0,88.0,87.0,84.0,84.0,73.0,88.0,88.0,73.0,87.0,71.0,59.0,77.0,79.0,87.0,70.0,76.0,64.0,93.0,60.0,59.0,84.0,56.0,65.0,54.0,59.0,59.0,50.0,39.0,52.0,32.0,30.0,40.0,36.0,47.0,36.0,39.0,54.0,52.0,61.0,31.0,38.0,33.0,30.0,22.0,18.0,16.0,11.0,8.0,11.0,8.0,5.0,4.0,2.0,3.0,2.0,4.0 G82635,6.0,10.0,11.0,18.0,11.0,8.0,11.0,10.0,4.0,10.0,12.0,12.0,15.0,13.0,14.0,16.0,18.0,21.0,16.0,9.0,7.0,5.0,14.0,10.0,13.0,14.0,14.0,8.0,8.0,11.0,11.0,7.0,8.0,10.0,9.0,11.0,7.0,7.0,11.0,8.0,15.0,11.0,17.0,17.0,13.0,12.0,14.0,11.0,16.0,23.0,11.0,11.0,13.0,13.0,17.0,14.0,17.0,14.0,14.0,15.0,13.0,15.0,20.0,6.0,13.0,17.0,12.0,6.0,13.0,10.0,12.0,7.0,14.0,10.0,9.0,12.0,13.0,15.0,11.0,7.0,7.0,8.0,8.0,9.0,12.0,9.0,5.0,3.0,6.0,3.0,6.0,1.0,2.0,,,4.0 G82641,55.0,60.0,83.0,60.0,72.0,83.0,73.0,65.0,89.0,55.0,71.0,60.0,70.0,58.0,64.0,50.0,52.0,37.0,41.0,35.0,32.0,26.0,37.0,27.0,42.0,49.0,33.0,40.0,38.0,46.0,46.0,51.0,58.0,65.0,64.0,73.0,59.0,55.0,54.0,53.0,47.0,56.0,53.0,53.0,48.0,69.0,51.0,45.0,31.0,45.0,27.0,33.0,33.0,27.0,41.0,38.0,46.0,33.0,34.0,25.0,31.0,24.0,25.0,20.0,15.0,19.0,16.0,21.0,24.0,10.0,16.0,11.0,24.0,12.0,8.0,9.0,9.0,9.0,10.0,13.0,15.0,4.0,11.0,6.0,1.0,5.0,5.0,7.0,1.0,4.0,5.0,1.0,,,1.0,2.0 G82647,130.0,174.0,185.0,200.0,183.0,205.0,213.0,210.0,201.0,214.0,189.0,206.0,224.0,184.0,168.0,167.0,150.0,147.0,120.0,140.0,91.0,93.0,71.0,90.0,105.0,103.0,97.0,122.0,106.0,124.0,147.0,147.0,141.0,175.0,169.0,194.0,186.0,205.0,208.0,214.0,218.0,203.0,219.0,222.0,191.0,180.0,235.0,168.0,163.0,172.0,147.0,142.0,115.0,113.0,124.0,127.0,103.0,92.0,135.0,98.0,103.0,82.0,93.0,65.0,70.0,73.0,74.0,68.0,71.0,57.0,50.0,55.0,45.0,53.0,55.0,51.0,53.0,44.0,46.0,38.0,45.0,33.0,23.0,19.0,24.0,22.0,21.0,12.0,16.0,8.0,6.0,11.0,3.0,6.0,1.0,5.0 G82648,24.0,27.0,19.0,20.0,26.0,23.0,28.0,23.0,33.0,19.0,28.0,37.0,26.0,31.0,34.0,34.0,25.0,37.0,29.0,29.0,36.0,32.0,30.0,37.0,24.0,30.0,30.0,26.0,32.0,29.0,32.0,31.0,23.0,29.0,35.0,28.0,28.0,41.0,37.0,37.0,26.0,31.0,44.0,40.0,37.0,30.0,29.0,32.0,37.0,32.0,33.0,28.0,36.0,25.0,26.0,24.0,25.0,19.0,18.0,23.0,12.0,16.0,28.0,21.0,14.0,19.0,24.0,10.0,17.0,18.0,17.0,15.0,15.0,16.0,8.0,10.0,10.0,7.0,11.0,11.0,8.0,6.0,10.0,5.0,5.0,4.0,3.0,3.0,4.0,3.0,6.0,,,1.0,1.0,6.0 G82650,17.0,29.0,31.0,30.0,34.0,43.0,45.0,39.0,44.0,47.0,44.0,60.0,67.0,58.0,42.0,53.0,47.0,60.0,56.0,53.0,55.0,54.0,37.0,50.0,37.0,45.0,36.0,43.0,48.0,37.0,36.0,39.0,29.0,44.0,51.0,43.0,37.0,48.0,55.0,38.0,35.0,53.0,48.0,51.0,50.0,66.0,53.0,51.0,44.0,52.0,54.0,56.0,59.0,61.0,62.0,56.0,50.0,68.0,66.0,57.0,65.0,68.0,75.0,65.0,58.0,63.0,80.0,66.0,58.0,50.0,66.0,60.0,51.0,57.0,64.0,62.0,60.0,61.0,68.0,50.0,39.0,52.0,38.0,32.0,28.0,28.0,24.0,22.0,17.0,11.0,4.0,4.0,14.0,6.0,3.0,7.0 G82652,7.0,8.0,11.0,9.0,17.0,14.0,10.0,17.0,11.0,14.0,23.0,18.0,21.0,19.0,17.0,17.0,18.0,10.0,17.0,13.0,6.0,6.0,11.0,19.0,8.0,12.0,7.0,4.0,11.0,17.0,16.0,11.0,14.0,18.0,9.0,14.0,19.0,10.0,11.0,3.0,16.0,11.0,16.0,16.0,15.0,18.0,13.0,15.0,11.0,17.0,21.0,10.0,13.0,27.0,29.0,26.0,25.0,17.0,36.0,23.0,25.0,21.0,28.0,16.0,25.0,27.0,27.0,24.0,24.0,17.0,14.0,17.0,22.0,18.0,23.0,23.0,23.0,35.0,32.0,15.0,21.0,15.0,17.0,13.0,10.0,11.0,7.0,5.0,5.0,5.0,2.0,1.0,1.0,1.0,1.0,1.0 G82658,23.0,22.0,27.0,32.0,34.0,35.0,24.0,36.0,31.0,43.0,30.0,32.0,16.0,34.0,28.0,39.0,27.0,33.0,22.0,21.0,30.0,22.0,24.0,30.0,18.0,28.0,30.0,18.0,21.0,24.0,27.0,25.0,44.0,29.0,31.0,35.0,20.0,26.0,26.0,25.0,25.0,29.0,33.0,36.0,30.0,25.0,38.0,28.0,32.0,24.0,20.0,35.0,31.0,43.0,44.0,40.0,39.0,39.0,39.0,44.0,36.0,39.0,34.0,51.0,37.0,52.0,30.0,35.0,27.0,27.0,30.0,20.0,35.0,27.0,21.0,23.0,29.0,25.0,32.0,34.0,23.0,20.0,12.0,13.0,10.0,8.0,8.0,7.0,7.0,7.0,6.0,3.0,1.0,,,3.0 G82665,19.0,17.0,16.0,16.0,23.0,22.0,23.0,30.0,26.0,19.0,22.0,18.0,27.0,23.0,16.0,27.0,27.0,27.0,29.0,16.0,15.0,12.0,20.0,16.0,20.0,25.0,18.0,25.0,23.0,24.0,25.0,19.0,18.0,20.0,16.0,23.0,23.0,19.0,19.0,32.0,21.0,19.0,19.0,25.0,23.0,40.0,21.0,22.0,21.0,32.0,23.0,37.0,28.0,36.0,41.0,33.0,42.0,46.0,50.0,44.0,48.0,53.0,39.0,44.0,40.0,44.0,54.0,46.0,43.0,49.0,39.0,48.0,42.0,40.0,56.0,53.0,50.0,62.0,69.0,37.0,29.0,32.0,35.0,21.0,24.0,21.0,16.0,18.0,16.0,5.0,11.0,4.0,2.0,1.0,1.0,5.0 G82666,37.0,48.0,40.0,46.0,36.0,51.0,45.0,54.0,51.0,61.0,68.0,66.0,60.0,73.0,63.0,70.0,65.0,74.0,43.0,56.0,54.0,57.0,48.0,45.0,32.0,44.0,67.0,57.0,44.0,57.0,57.0,65.0,66.0,71.0,59.0,68.0,64.0,63.0,60.0,68.0,60.0,72.0,51.0,46.0,64.0,69.0,61.0,60.0,49.0,59.0,69.0,63.0,69.0,82.0,80.0,79.0,86.0,81.0,102.0,100.0,100.0,103.0,95.0,81.0,89.0,99.0,107.0,108.0,102.0,83.0,90.0,91.0,101.0,102.0,98.0,93.0,129.0,118.0,99.0,79.0,95.0,63.0,69.0,63.0,56.0,57.0,29.0,46.0,46.0,28.0,17.0,11.0,12.0,9.0,8.0,15.0 G82679,29.0,32.0,34.0,46.0,43.0,40.0,57.0,36.0,46.0,56.0,46.0,55.0,48.0,48.0,49.0,52.0,49.0,47.0,44.0,52.0,36.0,34.0,42.0,39.0,37.0,38.0,37.0,45.0,38.0,34.0,44.0,51.0,48.0,57.0,59.0,69.0,54.0,73.0,61.0,63.0,65.0,69.0,47.0,61.0,43.0,52.0,50.0,43.0,47.0,45.0,35.0,55.0,41.0,54.0,62.0,44.0,56.0,56.0,50.0,40.0,64.0,44.0,40.0,46.0,32.0,37.0,28.0,33.0,37.0,34.0,22.0,31.0,39.0,30.0,25.0,25.0,26.0,17.0,17.0,16.0,23.0,10.0,7.0,10.0,6.0,19.0,5.0,4.0,8.0,3.0,7.0,1.0,3.0,1.0,,2.0 G82681,44.0,53.0,48.0,53.0,47.0,47.0,46.0,42.0,48.0,56.0,41.0,39.0,34.0,44.0,37.0,29.0,53.0,44.0,45.0,44.0,23.0,49.0,22.0,39.0,29.0,26.0,30.0,23.0,45.0,39.0,58.0,63.0,51.0,43.0,52.0,58.0,59.0,52.0,31.0,42.0,53.0,47.0,51.0,45.0,44.0,48.0,34.0,36.0,35.0,43.0,36.0,39.0,46.0,54.0,47.0,52.0,32.0,35.0,44.0,54.0,41.0,52.0,38.0,37.0,28.0,51.0,40.0,25.0,33.0,26.0,40.0,32.0,33.0,26.0,31.0,33.0,15.0,33.0,36.0,27.0,31.0,25.0,20.0,16.0,9.0,14.0,14.0,5.0,6.0,7.0,4.0,3.0,2.0,3.0,3.0,4.0 G82682,36.0,42.0,43.0,36.0,42.0,35.0,50.0,48.0,54.0,48.0,36.0,58.0,47.0,47.0,60.0,43.0,58.0,42.0,56.0,44.0,43.0,38.0,37.0,37.0,36.0,42.0,37.0,37.0,61.0,47.0,39.0,46.0,46.0,41.0,52.0,63.0,39.0,51.0,51.0,55.0,59.0,52.0,51.0,48.0,42.0,52.0,40.0,41.0,36.0,33.0,46.0,42.0,44.0,32.0,50.0,46.0,59.0,50.0,58.0,65.0,47.0,50.0,54.0,57.0,37.0,47.0,39.0,43.0,44.0,28.0,34.0,24.0,22.0,28.0,24.0,25.0,29.0,24.0,34.0,18.0,11.0,18.0,8.0,12.0,10.0,12.0,12.0,6.0,3.0,7.0,6.0,4.0,1.0,1.0,,3.0 G82684,12.0,18.0,17.0,18.0,25.0,22.0,15.0,14.0,23.0,25.0,28.0,15.0,23.0,27.0,28.0,24.0,31.0,25.0,21.0,11.0,19.0,19.0,18.0,24.0,24.0,19.0,23.0,19.0,18.0,20.0,12.0,18.0,16.0,28.0,16.0,24.0,25.0,23.0,26.0,20.0,22.0,18.0,28.0,27.0,26.0,21.0,29.0,29.0,25.0,29.0,29.0,22.0,22.0,29.0,34.0,31.0,40.0,37.0,35.0,32.0,29.0,38.0,43.0,34.0,38.0,41.0,31.0,32.0,27.0,40.0,33.0,30.0,41.0,35.0,33.0,25.0,28.0,32.0,36.0,22.0,20.0,26.0,23.0,18.0,12.0,11.0,10.0,14.0,7.0,5.0,5.0,6.0,3.0,2.0,2.0, G82687,45.0,42.0,52.0,51.0,49.0,61.0,65.0,66.0,73.0,64.0,65.0,75.0,87.0,64.0,61.0,66.0,72.0,58.0,54.0,65.0,45.0,49.0,49.0,49.0,59.0,48.0,47.0,48.0,63.0,44.0,53.0,76.0,73.0,72.0,79.0,79.0,72.0,71.0,68.0,77.0,65.0,63.0,66.0,78.0,53.0,58.0,57.0,39.0,63.0,52.0,62.0,55.0,53.0,71.0,54.0,54.0,69.0,65.0,66.0,59.0,62.0,70.0,74.0,74.0,54.0,59.0,61.0,58.0,46.0,48.0,50.0,48.0,39.0,46.0,40.0,25.0,33.0,38.0,25.0,31.0,30.0,23.0,21.0,15.0,8.0,13.0,16.0,7.0,3.0,7.0,4.0,3.0,,4.0,1.0,2.0 G82691,18.0,20.0,18.0,16.0,16.0,23.0,22.0,26.0,23.0,22.0,18.0,29.0,29.0,26.0,16.0,18.0,26.0,18.0,18.0,19.0,11.0,19.0,14.0,13.0,2.0,19.0,13.0,15.0,12.0,18.0,17.0,22.0,21.0,17.0,27.0,20.0,30.0,25.0,27.0,17.0,21.0,22.0,17.0,21.0,29.0,31.0,26.0,14.0,19.0,23.0,16.0,20.0,16.0,15.0,26.0,24.0,26.0,26.0,25.0,22.0,27.0,21.0,25.0,13.0,16.0,27.0,22.0,22.0,23.0,17.0,14.0,18.0,11.0,9.0,17.0,11.0,10.0,17.0,12.0,20.0,12.0,6.0,10.0,9.0,7.0,8.0,3.0,7.0,8.0,4.0,2.0,1.0,3.0,,,1.0 G82693,82.0,87.0,76.0,93.0,126.0,102.0,114.0,92.0,131.0,133.0,104.0,134.0,126.0,115.0,120.0,122.0,133.0,115.0,123.0,113.0,82.0,99.0,81.0,95.0,76.0,116.0,96.0,99.0,100.0,102.0,99.0,110.0,109.0,120.0,131.0,119.0,125.0,125.0,119.0,107.0,101.0,111.0,101.0,119.0,136.0,126.0,114.0,91.0,119.0,119.0,123.0,90.0,124.0,120.0,113.0,120.0,114.0,102.0,98.0,112.0,118.0,98.0,81.0,97.0,100.0,95.0,74.0,92.0,82.0,61.0,67.0,71.0,66.0,61.0,81.0,62.0,69.0,73.0,81.0,55.0,50.0,49.0,41.0,47.0,37.0,28.0,28.0,21.0,24.0,15.0,11.0,8.0,5.0,2.0,2.0,5.0 G82696,8.0,4.0,9.0,13.0,11.0,10.0,13.0,15.0,12.0,19.0,15.0,9.0,14.0,17.0,16.0,18.0,14.0,12.0,14.0,9.0,10.0,10.0,9.0,3.0,6.0,8.0,5.0,13.0,7.0,8.0,15.0,10.0,13.0,12.0,18.0,18.0,15.0,14.0,22.0,15.0,11.0,16.0,15.0,16.0,14.0,12.0,10.0,13.0,14.0,12.0,17.0,8.0,8.0,15.0,14.0,18.0,15.0,17.0,19.0,11.0,21.0,24.0,20.0,24.0,22.0,9.0,18.0,21.0,17.0,13.0,17.0,17.0,24.0,18.0,19.0,14.0,14.0,30.0,15.0,19.0,13.0,11.0,20.0,8.0,11.0,12.0,6.0,4.0,9.0,6.0,5.0,2.0,3.0,4.0,2.0,3.0 G82697,51.0,38.0,47.0,52.0,54.0,57.0,66.0,91.0,68.0,73.0,70.0,81.0,69.0,68.0,69.0,88.0,81.0,75.0,78.0,73.0,58.0,48.0,50.0,50.0,71.0,68.0,59.0,71.0,56.0,58.0,69.0,56.0,59.0,51.0,94.0,76.0,88.0,78.0,57.0,94.0,81.0,80.0,64.0,63.0,67.0,62.0,67.0,55.0,66.0,60.0,51.0,59.0,60.0,52.0,78.0,71.0,65.0,72.0,67.0,73.0,57.0,60.0,69.0,62.0,56.0,23.0,40.0,47.0,43.0,34.0,34.0,38.0,41.0,33.0,26.0,34.0,35.0,37.0,43.0,20.0,34.0,14.0,23.0,9.0,15.0,12.0,15.0,4.0,5.0,12.0,1.0,1.0,3.0,6.0,,4.0 G82698,18.0,23.0,17.0,27.0,22.0,31.0,26.0,29.0,32.0,28.0,19.0,25.0,28.0,21.0,26.0,28.0,27.0,20.0,19.0,22.0,15.0,20.0,21.0,22.0,22.0,17.0,29.0,22.0,24.0,18.0,22.0,26.0,22.0,25.0,45.0,38.0,31.0,21.0,28.0,34.0,39.0,32.0,30.0,25.0,34.0,29.0,21.0,25.0,16.0,26.0,23.0,16.0,22.0,36.0,23.0,32.0,19.0,35.0,33.0,26.0,35.0,24.0,24.0,19.0,30.0,16.0,26.0,19.0,20.0,21.0,12.0,20.0,18.0,13.0,18.0,27.0,18.0,21.0,12.0,11.0,18.0,9.0,12.0,7.0,7.0,10.0,6.0,6.0,5.0,4.0,4.0,1.0,2.0,1.0,1.0,1.0 G82700,39.0,48.0,56.0,54.0,50.0,51.0,64.0,55.0,72.0,72.0,62.0,63.0,84.0,71.0,87.0,66.0,56.0,69.0,59.0,55.0,49.0,45.0,58.0,43.0,38.0,56.0,64.0,60.0,62.0,73.0,57.0,54.0,54.0,75.0,53.0,49.0,82.0,69.0,71.0,77.0,58.0,69.0,51.0,66.0,66.0,66.0,63.0,68.0,44.0,63.0,55.0,70.0,52.0,58.0,74.0,59.0,76.0,75.0,66.0,84.0,87.0,72.0,66.0,60.0,67.0,66.0,64.0,67.0,64.0,64.0,61.0,71.0,59.0,48.0,54.0,45.0,55.0,39.0,54.0,37.0,37.0,31.0,29.0,25.0,20.0,24.0,31.0,25.0,13.0,11.0,12.0,6.0,5.0,5.0,3.0,7.0 G82702,38.0,36.0,53.0,49.0,75.0,56.0,70.0,71.0,76.0,73.0,70.0,62.0,61.0,67.0,60.0,67.0,56.0,57.0,58.0,50.0,46.0,42.0,47.0,40.0,40.0,65.0,42.0,64.0,57.0,60.0,54.0,60.0,61.0,64.0,70.0,66.0,84.0,64.0,79.0,75.0,74.0,72.0,64.0,68.0,71.0,61.0,66.0,62.0,45.0,49.0,55.0,54.0,38.0,48.0,52.0,56.0,47.0,52.0,59.0,49.0,40.0,50.0,35.0,37.0,46.0,30.0,31.0,32.0,39.0,21.0,23.0,19.0,21.0,25.0,23.0,23.0,19.0,19.0,17.0,13.0,8.0,10.0,12.0,7.0,3.0,2.0,6.0,4.0,5.0,4.0,3.0,1.0,,1.0,1.0, G82708,21.0,27.0,20.0,40.0,28.0,38.0,21.0,32.0,31.0,35.0,23.0,33.0,35.0,44.0,30.0,33.0,31.0,27.0,28.0,26.0,27.0,34.0,30.0,25.0,30.0,19.0,21.0,29.0,23.0,24.0,30.0,35.0,28.0,35.0,35.0,39.0,41.0,33.0,41.0,38.0,33.0,47.0,39.0,41.0,36.0,41.0,41.0,31.0,28.0,32.0,37.0,26.0,37.0,23.0,26.0,23.0,24.0,20.0,29.0,25.0,25.0,15.0,17.0,19.0,28.0,15.0,20.0,15.0,12.0,20.0,14.0,8.0,9.0,11.0,7.0,9.0,11.0,13.0,8.0,5.0,9.0,6.0,2.0,,4.0,3.0,1.0,4.0,3.0,,2.0,,2.0,,,1.0 G82711,24.0,31.0,29.0,31.0,31.0,29.0,33.0,30.0,43.0,26.0,20.0,28.0,40.0,29.0,30.0,35.0,26.0,22.0,24.0,17.0,18.0,26.0,13.0,22.0,23.0,20.0,21.0,21.0,26.0,21.0,16.0,24.0,30.0,25.0,34.0,26.0,32.0,29.0,31.0,39.0,29.0,23.0,25.0,29.0,23.0,34.0,28.0,27.0,29.0,27.0,38.0,21.0,35.0,30.0,34.0,23.0,25.0,33.0,37.0,30.0,33.0,22.0,28.0,27.0,19.0,25.0,21.0,21.0,18.0,23.0,21.0,21.0,19.0,13.0,10.0,14.0,17.0,19.0,21.0,12.0,10.0,15.0,4.0,12.0,11.0,8.0,7.0,6.0,7.0,6.0,6.0,,2.0,2.0,,4.0 G82719,81.0,100.0,112.0,102.0,107.0,97.0,121.0,97.0,105.0,115.0,127.0,99.0,107.0,125.0,112.0,114.0,108.0,106.0,102.0,74.0,91.0,67.0,78.0,96.0,91.0,97.0,90.0,102.0,103.0,90.0,105.0,112.0,97.0,134.0,124.0,121.0,107.0,127.0,128.0,137.0,130.0,129.0,99.0,99.0,98.0,107.0,114.0,93.0,102.0,108.0,92.0,92.0,101.0,97.0,113.0,95.0,123.0,112.0,118.0,115.0,98.0,104.0,96.0,94.0,100.0,80.0,87.0,83.0,91.0,60.0,78.0,72.0,67.0,57.0,53.0,50.0,44.0,69.0,63.0,48.0,31.0,40.0,30.0,17.0,24.0,25.0,18.0,23.0,15.0,11.0,8.0,7.0,2.0,4.0,4.0,3.0 G82721,5.0,9.0,8.0,9.0,17.0,20.0,16.0,12.0,18.0,6.0,17.0,21.0,18.0,22.0,31.0,11.0,21.0,21.0,31.0,21.0,19.0,17.0,16.0,21.0,15.0,19.0,11.0,18.0,19.0,18.0,23.0,15.0,25.0,13.0,26.0,21.0,24.0,24.0,17.0,16.0,24.0,15.0,26.0,25.0,27.0,17.0,25.0,14.0,8.0,15.0,23.0,20.0,21.0,19.0,30.0,16.0,17.0,26.0,21.0,25.0,27.0,22.0,22.0,22.0,27.0,15.0,22.0,21.0,27.0,16.0,12.0,19.0,25.0,23.0,20.0,24.0,18.0,27.0,32.0,15.0,14.0,15.0,16.0,11.0,5.0,10.0,7.0,9.0,8.0,7.0,2.0,,3.0,2.0,1.0,1.0 G82729,44.0,40.0,52.0,50.0,47.0,61.0,56.0,65.0,64.0,72.0,64.0,58.0,61.0,69.0,66.0,61.0,84.0,62.0,72.0,61.0,61.0,55.0,69.0,69.0,65.0,48.0,58.0,57.0,65.0,60.0,63.0,71.0,55.0,72.0,65.0,66.0,85.0,58.0,80.0,50.0,69.0,66.0,62.0,56.0,78.0,65.0,61.0,51.0,55.0,56.0,51.0,62.0,35.0,62.0,64.0,61.0,63.0,64.0,78.0,71.0,71.0,74.0,72.0,70.0,65.0,46.0,59.0,62.0,46.0,47.0,49.0,60.0,43.0,43.0,41.0,30.0,40.0,58.0,51.0,39.0,25.0,19.0,19.0,23.0,13.0,11.0,13.0,9.0,15.0,6.0,11.0,2.0,6.0,1.0,3.0,2.0 G82730,66.0,71.0,68.0,74.0,70.0,82.0,84.0,96.0,92.0,71.0,88.0,100.0,91.0,85.0,92.0,95.0,89.0,113.0,77.0,79.0,71.0,80.0,55.0,59.0,72.0,53.0,82.0,73.0,109.0,62.0,72.0,85.0,92.0,105.0,99.0,80.0,75.0,95.0,89.0,81.0,86.0,87.0,79.0,85.0,95.0,85.0,63.0,86.0,68.0,89.0,73.0,74.0,68.0,77.0,96.0,102.0,116.0,97.0,93.0,85.0,77.0,87.0,76.0,78.0,84.0,71.0,47.0,49.0,53.0,45.0,39.0,47.0,47.0,37.0,36.0,37.0,44.0,48.0,35.0,26.0,30.0,24.0,26.0,16.0,6.0,17.0,11.0,14.0,9.0,8.0,6.0,2.0,1.0,2.0,,3.0 G82733,16.0,15.0,20.0,20.0,22.0,27.0,25.0,25.0,23.0,23.0,22.0,25.0,28.0,27.0,25.0,26.0,36.0,28.0,37.0,27.0,24.0,20.0,18.0,18.0,21.0,17.0,16.0,16.0,13.0,14.0,17.0,14.0,18.0,25.0,14.0,18.0,11.0,19.0,18.0,18.0,16.0,21.0,17.0,20.0,28.0,29.0,25.0,22.0,12.0,24.0,18.0,29.0,26.0,31.0,41.0,35.0,18.0,32.0,25.0,29.0,31.0,27.0,25.0,19.0,22.0,18.0,19.0,18.0,24.0,24.0,13.0,18.0,12.0,15.0,19.0,17.0,19.0,20.0,13.0,16.0,17.0,12.0,12.0,7.0,5.0,8.0,11.0,4.0,1.0,6.0,2.0,3.0,1.0,1.0,,2.0 G82737,41.0,59.0,66.0,62.0,61.0,84.0,86.0,82.0,85.0,97.0,82.0,96.0,89.0,107.0,91.0,98.0,81.0,71.0,70.0,74.0,57.0,61.0,64.0,60.0,57.0,60.0,51.0,58.0,65.0,54.0,62.0,66.0,60.0,61.0,82.0,76.0,88.0,88.0,71.0,91.0,77.0,82.0,71.0,88.0,88.0,95.0,89.0,79.0,88.0,76.0,70.0,64.0,81.0,80.0,72.0,61.0,62.0,52.0,63.0,70.0,68.0,57.0,58.0,57.0,63.0,48.0,48.0,48.0,37.0,42.0,50.0,33.0,39.0,43.0,30.0,40.0,45.0,62.0,60.0,43.0,46.0,29.0,21.0,19.0,21.0,11.0,19.0,20.0,10.0,12.0,2.0,4.0,5.0,3.0,2.0,3.0 G82741,193.0,213.0,205.0,214.0,195.0,210.0,212.0,265.0,251.0,271.0,232.0,253.0,215.0,254.0,258.0,218.0,226.0,222.0,202.0,182.0,185.0,160.0,185.0,210.0,202.0,231.0,278.0,254.0,237.0,241.0,259.0,230.0,276.0,245.0,242.0,281.0,277.0,290.0,273.0,261.0,279.0,238.0,245.0,230.0,231.0,234.0,206.0,172.0,184.0,175.0,166.0,153.0,191.0,158.0,177.0,168.0,166.0,138.0,154.0,145.0,139.0,150.0,134.0,123.0,119.0,108.0,84.0,84.0,93.0,79.0,77.0,61.0,78.0,54.0,46.0,61.0,52.0,52.0,45.0,30.0,37.0,26.0,23.0,17.0,20.0,12.0,22.0,18.0,14.0,8.0,10.0,8.0,6.0,5.0,2.0,8.0 G82744,218.0,233.0,253.0,252.0,254.0,255.0,234.0,282.0,261.0,249.0,247.0,242.0,242.0,255.0,258.0,244.0,230.0,191.0,216.0,189.0,168.0,172.0,201.0,208.0,211.0,223.0,291.0,280.0,290.0,275.0,303.0,322.0,310.0,350.0,333.0,355.0,358.0,384.0,360.0,333.0,324.0,308.0,319.0,333.0,298.0,311.0,273.0,243.0,218.0,221.0,241.0,216.0,248.0,237.0,211.0,236.0,240.0,206.0,233.0,207.0,207.0,201.0,198.0,168.0,166.0,140.0,164.0,150.0,146.0,129.0,106.0,104.0,106.0,101.0,91.0,101.0,110.0,86.0,102.0,81.0,86.0,65.0,63.0,40.0,58.0,29.0,35.0,36.0,23.0,22.0,25.0,12.0,14.0,12.0,4.0,20.0 G82753,48.0,60.0,51.0,70.0,72.0,63.0,72.0,52.0,66.0,66.0,80.0,73.0,77.0,53.0,50.0,87.0,71.0,102.0,91.0,73.0,71.0,58.0,78.0,64.0,65.0,71.0,78.0,77.0,68.0,61.0,56.0,62.0,52.0,85.0,58.0,62.0,53.0,71.0,52.0,63.0,59.0,65.0,54.0,51.0,62.0,46.0,54.0,56.0,55.0,47.0,49.0,58.0,57.0,44.0,62.0,52.0,43.0,43.0,36.0,33.0,41.0,41.0,38.0,30.0,33.0,32.0,19.0,26.0,18.0,27.0,19.0,18.0,18.0,15.0,12.0,7.0,11.0,16.0,10.0,7.0,9.0,12.0,5.0,2.0,1.0,2.0,8.0,2.0,3.0,2.0,,2.0,2.0,,2.0, G82754,20.0,12.0,12.0,11.0,10.0,15.0,20.0,20.0,25.0,29.0,31.0,27.0,25.0,22.0,18.0,23.0,21.0,19.0,17.0,17.0,15.0,21.0,18.0,24.0,18.0,16.0,22.0,21.0,22.0,20.0,15.0,21.0,18.0,24.0,22.0,19.0,14.0,13.0,25.0,17.0,18.0,21.0,23.0,21.0,23.0,17.0,28.0,30.0,19.0,14.0,25.0,20.0,31.0,20.0,20.0,25.0,34.0,31.0,32.0,26.0,24.0,30.0,25.0,27.0,31.0,22.0,23.0,14.0,17.0,17.0,20.0,17.0,21.0,11.0,22.0,16.0,11.0,28.0,16.0,13.0,12.0,16.0,12.0,9.0,5.0,5.0,12.0,7.0,3.0,5.0,2.0,2.0,1.0,1.0,1.0,2.0 G82763,17.0,19.0,13.0,13.0,21.0,30.0,30.0,16.0,29.0,22.0,23.0,22.0,12.0,27.0,24.0,18.0,20.0,24.0,19.0,12.0,15.0,18.0,26.0,20.0,23.0,22.0,22.0,27.0,24.0,19.0,23.0,25.0,27.0,19.0,19.0,26.0,20.0,28.0,31.0,27.0,27.0,36.0,29.0,21.0,27.0,26.0,22.0,21.0,17.0,15.0,25.0,17.0,21.0,23.0,23.0,17.0,16.0,21.0,16.0,23.0,13.0,24.0,19.0,22.0,12.0,17.0,16.0,9.0,14.0,8.0,8.0,14.0,5.0,10.0,8.0,12.0,10.0,9.0,7.0,5.0,5.0,7.0,7.0,4.0,4.0,3.0,3.0,2.0,2.0,3.0,,1.0,,1.0,, G82768,32.0,29.0,31.0,36.0,50.0,38.0,52.0,57.0,38.0,50.0,49.0,53.0,49.0,49.0,56.0,60.0,49.0,49.0,36.0,22.0,26.0,23.0,24.0,21.0,35.0,31.0,26.0,36.0,33.0,42.0,43.0,35.0,47.0,39.0,56.0,45.0,60.0,66.0,62.0,76.0,75.0,61.0,72.0,57.0,75.0,75.0,58.0,59.0,52.0,71.0,57.0,62.0,44.0,50.0,68.0,46.0,53.0,50.0,54.0,31.0,46.0,47.0,38.0,37.0,41.0,36.0,31.0,31.0,24.0,29.0,20.0,22.0,29.0,20.0,25.0,22.0,27.0,27.0,36.0,33.0,18.0,15.0,19.0,12.0,11.0,15.0,17.0,11.0,8.0,8.0,10.0,7.0,5.0,5.0,4.0,10.0 G82780,113.0,131.0,124.0,117.0,116.0,115.0,138.0,109.0,111.0,120.0,106.0,121.0,99.0,114.0,106.0,124.0,108.0,120.0,102.0,108.0,103.0,98.0,116.0,118.0,106.0,126.0,147.0,151.0,155.0,167.0,154.0,162.0,167.0,172.0,153.0,145.0,156.0,158.0,141.0,135.0,152.0,136.0,146.0,134.0,130.0,121.0,124.0,123.0,99.0,103.0,99.0,94.0,112.0,95.0,89.0,100.0,84.0,94.0,101.0,90.0,89.0,82.0,75.0,70.0,67.0,58.0,59.0,52.0,41.0,44.0,35.0,39.0,33.0,35.0,41.0,32.0,26.0,34.0,31.0,9.0,21.0,13.0,14.0,16.0,16.0,8.0,9.0,2.0,8.0,7.0,6.0,1.0,4.0,3.0,3.0,4.0 G82790,21.0,26.0,27.0,33.0,22.0,33.0,31.0,31.0,38.0,43.0,30.0,46.0,37.0,48.0,48.0,50.0,48.0,40.0,38.0,32.0,44.0,39.0,37.0,29.0,38.0,34.0,40.0,29.0,35.0,38.0,37.0,40.0,30.0,27.0,32.0,42.0,40.0,48.0,46.0,35.0,39.0,36.0,43.0,37.0,34.0,37.0,45.0,41.0,32.0,43.0,43.0,41.0,54.0,63.0,53.0,27.0,49.0,56.0,52.0,62.0,56.0,52.0,42.0,38.0,47.0,38.0,45.0,37.0,41.0,31.0,27.0,32.0,27.0,16.0,24.0,31.0,19.0,33.0,19.0,17.0,16.0,15.0,23.0,11.0,12.0,15.0,9.0,8.0,8.0,9.0,8.0,5.0,9.0,1.0,1.0,4.0 G82796,22.0,22.0,23.0,42.0,42.0,35.0,49.0,34.0,37.0,42.0,56.0,52.0,40.0,34.0,39.0,25.0,39.0,45.0,42.0,20.0,41.0,30.0,27.0,37.0,34.0,23.0,29.0,38.0,27.0,27.0,36.0,42.0,38.0,44.0,38.0,35.0,41.0,46.0,36.0,47.0,34.0,51.0,45.0,54.0,48.0,47.0,37.0,51.0,37.0,41.0,50.0,40.0,56.0,51.0,50.0,54.0,52.0,48.0,55.0,54.0,68.0,48.0,59.0,53.0,56.0,48.0,53.0,53.0,65.0,42.0,53.0,38.0,40.0,42.0,46.0,46.0,47.0,59.0,51.0,25.0,40.0,29.0,16.0,26.0,15.0,15.0,21.0,12.0,14.0,9.0,3.0,8.0,2.0,4.0,2.0,7.0 G82799,65.0,58.0,90.0,90.0,80.0,77.0,107.0,79.0,89.0,101.0,105.0,105.0,98.0,91.0,92.0,84.0,103.0,83.0,75.0,71.0,88.0,74.0,56.0,64.0,53.0,64.0,61.0,82.0,89.0,89.0,68.0,74.0,99.0,98.0,70.0,91.0,74.0,81.0,105.0,92.0,90.0,73.0,85.0,80.0,84.0,77.0,74.0,74.0,79.0,85.0,84.0,69.0,89.0,89.0,95.0,89.0,102.0,109.0,112.0,125.0,102.0,102.0,95.0,92.0,84.0,89.0,90.0,96.0,84.0,81.0,90.0,92.0,80.0,74.0,60.0,77.0,75.0,66.0,76.0,44.0,59.0,46.0,43.0,22.0,23.0,24.0,22.0,25.0,15.0,11.0,6.0,10.0,5.0,3.0,,4.0 G82802,33.0,29.0,33.0,32.0,34.0,34.0,30.0,42.0,47.0,43.0,38.0,38.0,37.0,49.0,54.0,57.0,98.0,93.0,99.0,101.0,88.0,96.0,121.0,134.0,131.0,152.0,123.0,136.0,123.0,116.0,103.0,82.0,93.0,75.0,87.0,85.0,68.0,88.0,66.0,76.0,60.0,66.0,63.0,48.0,49.0,43.0,37.0,47.0,40.0,38.0,40.0,35.0,36.0,35.0,25.0,29.0,30.0,32.0,24.0,37.0,32.0,25.0,26.0,31.0,16.0,29.0,18.0,17.0,23.0,23.0,20.0,15.0,17.0,13.0,17.0,14.0,13.0,13.0,11.0,7.0,9.0,9.0,9.0,5.0,5.0,6.0,4.0,4.0,4.0,1.0,3.0,1.0,,,,4.0 G82808,48.0,50.0,61.0,72.0,63.0,87.0,78.0,86.0,58.0,80.0,73.0,71.0,88.0,79.0,77.0,83.0,65.0,80.0,66.0,61.0,40.0,64.0,39.0,52.0,56.0,61.0,57.0,69.0,60.0,64.0,68.0,73.0,65.0,63.0,86.0,73.0,80.0,78.0,62.0,70.0,73.0,69.0,69.0,55.0,72.0,67.0,56.0,53.0,63.0,56.0,68.0,56.0,62.0,55.0,65.0,59.0,53.0,51.0,63.0,65.0,57.0,61.0,64.0,68.0,55.0,55.0,38.0,45.0,32.0,29.0,25.0,31.0,23.0,26.0,28.0,17.0,20.0,39.0,24.0,23.0,22.0,20.0,23.0,14.0,8.0,13.0,9.0,8.0,7.0,12.0,11.0,2.0,3.0,4.0,3.0, G82809,54.0,51.0,61.0,89.0,83.0,89.0,97.0,89.0,85.0,95.0,90.0,87.0,96.0,103.0,113.0,121.0,106.0,114.0,97.0,82.0,101.0,101.0,82.0,83.0,80.0,88.0,90.0,75.0,75.0,67.0,65.0,78.0,76.0,81.0,69.0,77.0,90.0,94.0,110.0,86.0,96.0,95.0,85.0,88.0,94.0,88.0,105.0,77.0,86.0,86.0,91.0,104.0,114.0,127.0,133.0,115.0,135.0,119.0,123.0,130.0,105.0,112.0,129.0,100.0,91.0,102.0,87.0,110.0,89.0,91.0,81.0,83.0,66.0,82.0,71.0,78.0,93.0,105.0,84.0,61.0,71.0,63.0,63.0,51.0,45.0,38.0,40.0,32.0,33.0,13.0,20.0,20.0,11.0,13.0,8.0,11.0 G82888,20.0,24.0,34.0,35.0,29.0,26.0,49.0,37.0,47.0,39.0,55.0,40.0,45.0,53.0,49.0,50.0,54.0,60.0,54.0,43.0,34.0,22.0,26.0,31.0,29.0,24.0,29.0,32.0,27.0,20.0,22.0,23.0,22.0,31.0,33.0,36.0,33.0,34.0,31.0,32.0,43.0,27.0,38.0,37.0,46.0,52.0,52.0,41.0,55.0,35.0,54.0,65.0,54.0,41.0,66.0,54.0,42.0,40.0,49.0,53.0,41.0,35.0,31.0,31.0,22.0,22.0,26.0,18.0,23.0,17.0,13.0,12.0,15.0,15.0,14.0,14.0,21.0,23.0,24.0,16.0,20.0,12.0,11.0,10.0,9.0,10.0,12.0,6.0,6.0,13.0,7.0,9.0,8.0,5.0,3.0,4.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 D81047,30.0,25.0,35.0,46.0,33.0,51.0,44.0,37.0,46.0,59.0,47.0,39.0,71.0,41.0,52.0,53.0,57.0,42.0,48.0,52.0,26.0,32.0,34.0,30.0,42.0,35.0,39.0,34.0,37.0,36.0,30.0,42.0,23.0,39.0,39.0,44.0,50.0,48.0,52.0,35.0,41.0,39.0,50.0,43.0,34.0,41.0,59.0,47.0,48.0,54.0,56.0,51.0,50.0,63.0,51.0,61.0,65.0,60.0,66.0,72.0,52.0,77.0,83.0,56.0,59.0,54.0,76.0,60.0,51.0,47.0,31.0,47.0,39.0,38.0,49.0,53.0,37.0,53.0,54.0,35.0,48.0,32.0,30.0,25.0,24.0,13.0,10.0,20.0,7.0,7.0,7.0,2.0,7.0,4.0,1.0,5.0 E82001,182.0,202.0,197.0,248.0,212.0,244.0,244.0,270.0,258.0,268.0,274.0,260.0,281.0,290.0,273.0,307.0,280.0,278.0,310.0,257.0,205.0,192.0,214.0,236.0,229.0,219.0,222.0,237.0,230.0,189.0,216.0,208.0,233.0,246.0,268.0,268.0,291.0,265.0,247.0,273.0,263.0,286.0,310.0,298.0,291.0,280.0,313.0,269.0,284.0,292.0,351.0,356.0,332.0,346.0,328.0,321.0,360.0,278.0,307.0,329.0,342.0,308.0,310.0,324.0,275.0,282.0,239.0,233.0,240.0,216.0,208.0,221.0,182.0,222.0,192.0,182.0,191.0,215.0,230.0,132.0,162.0,144.0,115.0,83.0,63.0,84.0,73.0,63.0,63.0,50.0,38.0,27.0,20.0,18.0,14.0,21.0 E82002,52.0,47.0,56.0,55.0,57.0,52.0,55.0,49.0,59.0,61.0,79.0,75.0,72.0,60.0,60.0,68.0,89.0,66.0,60.0,60.0,59.0,68.0,78.0,83.0,75.0,94.0,102.0,95.0,87.0,89.0,97.0,82.0,92.0,97.0,99.0,108.0,90.0,112.0,87.0,83.0,103.0,87.0,99.0,103.0,92.0,92.0,76.0,72.0,80.0,75.0,68.0,75.0,67.0,75.0,68.0,69.0,61.0,66.0,72.0,59.0,68.0,67.0,59.0,50.0,55.0,44.0,53.0,36.0,34.0,30.0,30.0,36.0,37.0,33.0,29.0,29.0,24.0,29.0,27.0,23.0,23.0,27.0,27.0,12.0,18.0,12.0,10.0,6.0,7.0,9.0,5.0,3.0,5.0,3.0,3.0,7.0 E82004,18.0,30.0,32.0,35.0,39.0,35.0,38.0,24.0,37.0,27.0,36.0,20.0,31.0,19.0,24.0,40.0,33.0,31.0,27.0,21.0,30.0,21.0,31.0,34.0,28.0,31.0,43.0,42.0,55.0,49.0,58.0,63.0,50.0,61.0,59.0,55.0,65.0,79.0,56.0,76.0,50.0,71.0,63.0,55.0,58.0,66.0,49.0,49.0,60.0,48.0,48.0,47.0,37.0,45.0,38.0,38.0,29.0,26.0,33.0,25.0,29.0,18.0,16.0,18.0,17.0,13.0,17.0,13.0,15.0,7.0,14.0,12.0,18.0,4.0,6.0,8.0,13.0,7.0,4.0,12.0,8.0,6.0,7.0,3.0,4.0,4.0,1.0,1.0,2.0,3.0,4.0,1.0,1.0,,1.0,2.0 E82005,217.0,233.0,246.0,304.0,319.0,308.0,314.0,320.0,350.0,333.0,337.0,340.0,322.0,333.0,342.0,341.0,322.0,336.0,333.0,275.0,289.0,265.0,261.0,272.0,246.0,315.0,280.0,303.0,338.0,320.0,366.0,380.0,393.0,405.0,388.0,391.0,394.0,421.0,416.0,410.0,392.0,398.0,397.0,353.0,372.0,386.0,332.0,305.0,317.0,320.0,318.0,323.0,318.0,334.0,335.0,321.0,342.0,359.0,371.0,326.0,324.0,344.0,332.0,288.0,290.0,246.0,242.0,233.0,206.0,223.0,191.0,175.0,163.0,136.0,132.0,132.0,128.0,156.0,135.0,111.0,99.0,99.0,103.0,77.0,67.0,70.0,65.0,48.0,45.0,30.0,28.0,29.0,12.0,23.0,8.0,36.0 E82006,28.0,37.0,31.0,22.0,30.0,36.0,29.0,40.0,38.0,35.0,36.0,35.0,38.0,38.0,57.0,42.0,44.0,44.0,51.0,47.0,43.0,53.0,53.0,38.0,59.0,43.0,40.0,37.0,53.0,37.0,51.0,48.0,59.0,53.0,61.0,59.0,55.0,46.0,53.0,52.0,52.0,49.0,50.0,49.0,50.0,61.0,32.0,45.0,54.0,58.0,54.0,59.0,60.0,69.0,57.0,65.0,59.0,60.0,53.0,53.0,64.0,57.0,42.0,53.0,54.0,40.0,48.0,40.0,54.0,32.0,38.0,37.0,33.0,39.0,40.0,27.0,40.0,39.0,38.0,39.0,47.0,28.0,26.0,26.0,25.0,22.0,27.0,17.0,16.0,9.0,5.0,3.0,7.0,4.0,2.0,5.0 E82007,79.0,84.0,65.0,79.0,72.0,84.0,65.0,81.0,98.0,71.0,63.0,75.0,80.0,81.0,74.0,62.0,70.0,73.0,70.0,56.0,43.0,44.0,39.0,72.0,41.0,51.0,56.0,57.0,69.0,58.0,63.0,86.0,77.0,81.0,82.0,86.0,85.0,85.0,84.0,73.0,84.0,78.0,91.0,77.0,72.0,100.0,70.0,84.0,91.0,94.0,89.0,99.0,99.0,89.0,80.0,77.0,100.0,83.0,81.0,87.0,89.0,73.0,88.0,75.0,61.0,65.0,68.0,58.0,69.0,65.0,64.0,54.0,43.0,49.0,42.0,47.0,60.0,35.0,47.0,35.0,30.0,28.0,18.0,18.0,21.0,20.0,20.0,9.0,10.0,5.0,7.0,9.0,3.0,2.0,3.0,4.0 E82008,51.0,56.0,59.0,86.0,58.0,71.0,75.0,66.0,79.0,76.0,73.0,83.0,91.0,75.0,75.0,74.0,71.0,54.0,53.0,48.0,36.0,46.0,41.0,44.0,43.0,55.0,67.0,62.0,48.0,62.0,64.0,86.0,75.0,66.0,91.0,86.0,73.0,82.0,98.0,83.0,75.0,63.0,73.0,89.0,93.0,98.0,89.0,69.0,56.0,72.0,77.0,79.0,73.0,62.0,79.0,67.0,59.0,91.0,63.0,77.0,64.0,86.0,80.0,65.0,65.0,59.0,56.0,57.0,46.0,48.0,42.0,42.0,39.0,40.0,37.0,39.0,36.0,53.0,56.0,41.0,28.0,20.0,38.0,18.0,29.0,25.0,16.0,26.0,18.0,11.0,15.0,8.0,10.0,4.0,3.0,9.0 E82009,153.0,157.0,162.0,162.0,153.0,160.0,173.0,173.0,161.0,161.0,151.0,158.0,157.0,129.0,143.0,135.0,125.0,126.0,132.0,97.0,80.0,102.0,100.0,105.0,139.0,126.0,135.0,163.0,158.0,183.0,201.0,208.0,206.0,206.0,224.0,217.0,216.0,210.0,225.0,210.0,216.0,217.0,216.0,218.0,171.0,197.0,177.0,146.0,151.0,148.0,126.0,132.0,154.0,148.0,136.0,130.0,133.0,128.0,119.0,114.0,131.0,128.0,109.0,107.0,99.0,107.0,101.0,104.0,102.0,73.0,66.0,73.0,78.0,62.0,60.0,75.0,65.0,58.0,50.0,52.0,46.0,36.0,37.0,35.0,27.0,35.0,30.0,14.0,23.0,18.0,18.0,8.0,6.0,9.0,4.0,13.0 E82012,53.0,80.0,79.0,79.0,85.0,95.0,94.0,120.0,88.0,106.0,92.0,94.0,89.0,99.0,88.0,106.0,101.0,114.0,72.0,90.0,81.0,100.0,75.0,88.0,77.0,94.0,95.0,84.0,99.0,75.0,95.0,98.0,103.0,109.0,90.0,122.0,103.0,91.0,102.0,114.0,99.0,120.0,124.0,117.0,119.0,105.0,120.0,113.0,112.0,110.0,102.0,128.0,99.0,92.0,95.0,83.0,79.0,105.0,81.0,109.0,85.0,74.0,85.0,80.0,73.0,74.0,72.0,53.0,62.0,52.0,45.0,44.0,43.0,35.0,38.0,47.0,53.0,51.0,41.0,26.0,48.0,25.0,24.0,16.0,12.0,17.0,14.0,13.0,9.0,14.0,9.0,7.0,7.0,1.0,2.0,10.0 E82013,191.0,210.0,205.0,221.0,197.0,209.0,208.0,247.0,244.0,243.0,246.0,243.0,274.0,260.0,246.0,279.0,292.0,272.0,218.0,201.0,183.0,188.0,196.0,212.0,202.0,235.0,201.0,237.0,250.0,261.0,267.0,278.0,268.0,320.0,318.0,295.0,296.0,275.0,332.0,275.0,274.0,318.0,279.0,307.0,290.0,276.0,278.0,272.0,262.0,267.0,256.0,256.0,241.0,229.0,234.0,242.0,202.0,197.0,193.0,186.0,172.0,179.0,179.0,160.0,150.0,144.0,139.0,117.0,130.0,96.0,116.0,92.0,73.0,100.0,93.0,82.0,87.0,77.0,79.0,68.0,69.0,58.0,62.0,45.0,40.0,40.0,36.0,33.0,31.0,15.0,23.0,17.0,10.0,7.0,4.0,15.0 E82014,64.0,72.0,86.0,93.0,83.0,105.0,139.0,111.0,139.0,127.0,144.0,159.0,146.0,184.0,178.0,161.0,178.0,172.0,143.0,101.0,109.0,93.0,101.0,90.0,111.0,99.0,109.0,93.0,101.0,93.0,100.0,93.0,102.0,90.0,95.0,99.0,130.0,113.0,117.0,102.0,133.0,139.0,125.0,141.0,161.0,183.0,165.0,173.0,167.0,160.0,145.0,137.0,170.0,121.0,151.0,166.0,159.0,155.0,140.0,156.0,144.0,127.0,126.0,78.0,105.0,95.0,97.0,76.0,90.0,73.0,60.0,71.0,71.0,78.0,65.0,60.0,56.0,85.0,71.0,48.0,47.0,40.0,43.0,36.0,36.0,35.0,37.0,28.0,30.0,11.0,19.0,16.0,10.0,11.0,7.0,14.0 E82015,32.0,32.0,43.0,38.0,35.0,40.0,43.0,53.0,42.0,48.0,50.0,55.0,63.0,50.0,48.0,52.0,40.0,63.0,51.0,22.0,28.0,32.0,33.0,34.0,52.0,52.0,50.0,52.0,42.0,67.0,57.0,60.0,59.0,88.0,71.0,67.0,74.0,67.0,83.0,83.0,77.0,88.0,77.0,83.0,77.0,82.0,85.0,81.0,67.0,59.0,83.0,61.0,55.0,77.0,69.0,63.0,60.0,53.0,43.0,63.0,71.0,61.0,60.0,46.0,54.0,52.0,48.0,37.0,41.0,48.0,46.0,35.0,39.0,37.0,22.0,21.0,40.0,38.0,40.0,17.0,27.0,25.0,15.0,17.0,17.0,15.0,18.0,12.0,10.0,13.0,7.0,3.0,5.0,5.0,3.0,4.0 E82017,65.0,81.0,71.0,73.0,81.0,64.0,97.0,65.0,92.0,93.0,100.0,83.0,101.0,81.0,86.0,84.0,98.0,71.0,80.0,89.0,60.0,62.0,84.0,79.0,88.0,78.0,80.0,91.0,96.0,94.0,77.0,105.0,103.0,96.0,105.0,105.0,102.0,104.0,114.0,96.0,99.0,105.0,118.0,128.0,137.0,115.0,110.0,117.0,103.0,82.0,91.0,101.0,89.0,96.0,79.0,88.0,82.0,83.0,65.0,64.0,69.0,69.0,69.0,79.0,60.0,54.0,55.0,59.0,35.0,41.0,43.0,34.0,44.0,42.0,34.0,27.0,34.0,30.0,35.0,21.0,30.0,14.0,10.0,14.0,13.0,12.0,14.0,13.0,14.0,12.0,4.0,7.0,6.0,4.0,2.0,4.0 E82018,64.0,67.0,70.0,97.0,67.0,74.0,91.0,85.0,101.0,95.0,95.0,100.0,90.0,123.0,87.0,107.0,98.0,112.0,94.0,96.0,88.0,78.0,81.0,103.0,105.0,117.0,116.0,135.0,125.0,125.0,130.0,102.0,125.0,144.0,126.0,121.0,123.0,133.0,139.0,128.0,124.0,157.0,138.0,135.0,141.0,118.0,113.0,105.0,105.0,95.0,89.0,93.0,94.0,93.0,111.0,83.0,87.0,96.0,76.0,82.0,73.0,78.0,81.0,63.0,75.0,66.0,54.0,55.0,51.0,50.0,53.0,35.0,48.0,42.0,30.0,43.0,39.0,41.0,43.0,24.0,34.0,23.0,30.0,17.0,18.0,14.0,20.0,18.0,8.0,16.0,10.0,5.0,4.0,7.0,8.0,9.0 E82019,56.0,43.0,65.0,55.0,64.0,61.0,77.0,80.0,81.0,91.0,89.0,92.0,95.0,86.0,104.0,98.0,103.0,100.0,87.0,65.0,65.0,91.0,64.0,88.0,72.0,77.0,73.0,83.0,65.0,72.0,66.0,90.0,86.0,75.0,86.0,71.0,72.0,77.0,97.0,77.0,80.0,81.0,80.0,92.0,92.0,94.0,97.0,103.0,102.0,99.0,93.0,106.0,103.0,110.0,116.0,117.0,97.0,133.0,128.0,117.0,132.0,124.0,108.0,122.0,125.0,122.0,104.0,105.0,97.0,79.0,90.0,100.0,68.0,102.0,90.0,97.0,79.0,85.0,108.0,70.0,74.0,73.0,60.0,53.0,53.0,30.0,49.0,41.0,32.0,18.0,20.0,12.0,12.0,13.0,3.0,17.0 E82020,21.0,31.0,26.0,33.0,41.0,40.0,35.0,37.0,40.0,37.0,47.0,35.0,45.0,37.0,47.0,43.0,45.0,44.0,40.0,38.0,39.0,30.0,48.0,41.0,38.0,45.0,49.0,47.0,39.0,43.0,50.0,56.0,38.0,50.0,51.0,60.0,58.0,56.0,61.0,55.0,56.0,56.0,53.0,63.0,53.0,56.0,52.0,51.0,41.0,51.0,51.0,37.0,44.0,37.0,44.0,40.0,60.0,38.0,53.0,56.0,42.0,55.0,49.0,37.0,38.0,45.0,30.0,32.0,29.0,32.0,31.0,30.0,23.0,22.0,25.0,25.0,22.0,25.0,30.0,18.0,10.0,17.0,8.0,6.0,8.0,17.0,6.0,11.0,12.0,8.0,6.0,5.0,3.0,2.0,1.0,6.0 E82021,21.0,22.0,28.0,31.0,37.0,24.0,37.0,36.0,31.0,45.0,36.0,26.0,44.0,42.0,53.0,53.0,42.0,44.0,47.0,29.0,32.0,35.0,40.0,37.0,38.0,38.0,41.0,34.0,29.0,41.0,30.0,40.0,25.0,27.0,39.0,28.0,39.0,34.0,38.0,34.0,35.0,43.0,49.0,47.0,42.0,41.0,43.0,38.0,39.0,42.0,32.0,39.0,46.0,60.0,56.0,55.0,56.0,61.0,64.0,64.0,53.0,49.0,52.0,43.0,37.0,46.0,45.0,36.0,37.0,44.0,41.0,38.0,38.0,30.0,20.0,35.0,39.0,42.0,35.0,23.0,26.0,18.0,23.0,20.0,12.0,10.0,12.0,12.0,5.0,9.0,7.0,6.0,6.0,5.0,,5.0 E82022,99.0,103.0,110.0,103.0,106.0,102.0,123.0,108.0,123.0,122.0,122.0,119.0,135.0,128.0,139.0,111.0,121.0,105.0,91.0,85.0,82.0,82.0,88.0,108.0,108.0,114.0,118.0,127.0,141.0,129.0,155.0,155.0,144.0,130.0,150.0,150.0,171.0,163.0,156.0,133.0,142.0,154.0,146.0,153.0,143.0,132.0,144.0,117.0,132.0,145.0,136.0,115.0,112.0,112.0,141.0,116.0,127.0,112.0,112.0,98.0,95.0,99.0,111.0,93.0,98.0,90.0,89.0,69.0,68.0,54.0,60.0,67.0,53.0,48.0,58.0,54.0,51.0,53.0,42.0,37.0,33.0,39.0,34.0,28.0,34.0,30.0,23.0,15.0,19.0,12.0,7.0,12.0,4.0,4.0,1.0,7.0 E82023,45.0,51.0,64.0,65.0,68.0,86.0,73.0,98.0,88.0,100.0,90.0,79.0,84.0,70.0,88.0,81.0,83.0,67.0,94.0,75.0,71.0,64.0,63.0,99.0,80.0,112.0,127.0,123.0,131.0,116.0,133.0,123.0,118.0,123.0,146.0,130.0,143.0,132.0,134.0,119.0,121.0,139.0,129.0,131.0,154.0,134.0,139.0,97.0,104.0,105.0,86.0,68.0,73.0,67.0,68.0,72.0,68.0,53.0,66.0,48.0,59.0,49.0,47.0,44.0,53.0,41.0,41.0,40.0,31.0,41.0,28.0,26.0,29.0,25.0,31.0,34.0,19.0,23.0,21.0,15.0,17.0,7.0,8.0,10.0,12.0,13.0,15.0,6.0,14.0,7.0,4.0,6.0,2.0,4.0,1.0,4.0 E82024,78.0,88.0,79.0,69.0,84.0,83.0,93.0,91.0,85.0,93.0,86.0,88.0,93.0,103.0,110.0,97.0,100.0,101.0,95.0,96.0,77.0,90.0,93.0,86.0,100.0,98.0,110.0,111.0,99.0,136.0,128.0,138.0,145.0,146.0,150.0,134.0,137.0,112.0,117.0,112.0,108.0,104.0,127.0,136.0,131.0,119.0,116.0,115.0,107.0,109.0,123.0,122.0,112.0,147.0,135.0,127.0,139.0,116.0,136.0,124.0,117.0,127.0,124.0,112.0,92.0,104.0,88.0,96.0,73.0,56.0,67.0,61.0,59.0,51.0,61.0,38.0,57.0,61.0,65.0,43.0,43.0,56.0,41.0,38.0,27.0,30.0,24.0,22.0,19.0,15.0,15.0,13.0,11.0,5.0,6.0,21.0 E82027,36.0,55.0,49.0,51.0,54.0,45.0,67.0,62.0,57.0,82.0,62.0,73.0,70.0,69.0,86.0,86.0,86.0,76.0,57.0,68.0,62.0,67.0,71.0,79.0,81.0,84.0,77.0,91.0,79.0,95.0,85.0,88.0,60.0,91.0,94.0,71.0,90.0,76.0,87.0,84.0,95.0,96.0,85.0,94.0,83.0,82.0,81.0,81.0,86.0,76.0,82.0,97.0,79.0,82.0,78.0,91.0,91.0,91.0,97.0,83.0,107.0,94.0,87.0,65.0,84.0,70.0,62.0,51.0,64.0,56.0,57.0,66.0,47.0,53.0,41.0,58.0,43.0,57.0,51.0,51.0,48.0,56.0,42.0,25.0,32.0,26.0,31.0,29.0,15.0,23.0,16.0,14.0,11.0,11.0,9.0,14.0 E82031,96.0,97.0,84.0,91.0,95.0,91.0,110.0,120.0,107.0,102.0,122.0,92.0,118.0,112.0,97.0,123.0,112.0,115.0,102.0,76.0,63.0,83.0,79.0,90.0,117.0,129.0,107.0,131.0,135.0,173.0,202.0,165.0,172.0,201.0,173.0,183.0,170.0,168.0,165.0,169.0,137.0,150.0,178.0,157.0,189.0,184.0,171.0,184.0,179.0,161.0,147.0,150.0,145.0,163.0,133.0,138.0,141.0,129.0,133.0,141.0,123.0,129.0,107.0,95.0,85.0,83.0,80.0,93.0,74.0,56.0,58.0,72.0,50.0,38.0,46.0,43.0,29.0,38.0,30.0,29.0,27.0,22.0,17.0,14.0,19.0,21.0,16.0,14.0,16.0,11.0,15.0,8.0,9.0,7.0,9.0,13.0 E82032,54.0,61.0,60.0,69.0,82.0,70.0,77.0,102.0,105.0,109.0,104.0,110.0,79.0,98.0,107.0,127.0,114.0,122.0,116.0,94.0,91.0,87.0,79.0,96.0,79.0,82.0,97.0,100.0,88.0,82.0,91.0,105.0,100.0,103.0,96.0,117.0,88.0,144.0,121.0,125.0,96.0,122.0,109.0,126.0,110.0,119.0,116.0,102.0,119.0,97.0,111.0,89.0,113.0,96.0,90.0,95.0,107.0,96.0,86.0,102.0,103.0,122.0,93.0,82.0,88.0,86.0,92.0,77.0,96.0,63.0,61.0,66.0,60.0,63.0,56.0,48.0,45.0,39.0,55.0,36.0,40.0,32.0,31.0,25.0,17.0,22.0,21.0,16.0,10.0,17.0,7.0,9.0,5.0,5.0,6.0,10.0 E82035,75.0,69.0,63.0,89.0,61.0,79.0,89.0,77.0,89.0,80.0,61.0,71.0,91.0,86.0,86.0,75.0,75.0,80.0,71.0,48.0,56.0,63.0,46.0,59.0,77.0,67.0,82.0,65.0,87.0,86.0,92.0,78.0,95.0,75.0,90.0,97.0,97.0,76.0,111.0,81.0,110.0,106.0,96.0,102.0,97.0,90.0,81.0,93.0,82.0,71.0,70.0,89.0,86.0,77.0,74.0,73.0,97.0,81.0,97.0,72.0,82.0,92.0,72.0,88.0,74.0,77.0,73.0,65.0,62.0,66.0,53.0,47.0,52.0,57.0,50.0,62.0,38.0,60.0,57.0,38.0,41.0,35.0,36.0,26.0,22.0,30.0,29.0,19.0,16.0,28.0,8.0,15.0,10.0,5.0,4.0,9.0 E82037,59.0,59.0,59.0,84.0,82.0,76.0,85.0,103.0,94.0,93.0,125.0,122.0,127.0,146.0,149.0,131.0,134.0,113.0,110.0,86.0,91.0,68.0,61.0,75.0,67.0,58.0,65.0,49.0,54.0,49.0,48.0,42.0,58.0,83.0,52.0,61.0,76.0,80.0,74.0,74.0,81.0,98.0,91.0,91.0,94.0,106.0,125.0,123.0,117.0,123.0,114.0,136.0,124.0,135.0,130.0,98.0,113.0,113.0,115.0,115.0,106.0,91.0,80.0,95.0,91.0,79.0,63.0,86.0,86.0,73.0,60.0,74.0,67.0,55.0,78.0,55.0,74.0,66.0,86.0,66.0,58.0,68.0,53.0,40.0,33.0,44.0,32.0,34.0,30.0,26.0,22.0,19.0,12.0,12.0,4.0,11.0 E82038,80.0,94.0,94.0,116.0,118.0,143.0,128.0,133.0,128.0,134.0,126.0,137.0,146.0,138.0,133.0,150.0,147.0,119.0,132.0,101.0,90.0,98.0,89.0,97.0,100.0,100.0,84.0,106.0,74.0,87.0,106.0,82.0,106.0,106.0,108.0,109.0,115.0,123.0,110.0,106.0,116.0,110.0,113.0,112.0,115.0,151.0,114.0,113.0,111.0,110.0,128.0,135.0,136.0,152.0,134.0,144.0,144.0,169.0,146.0,182.0,167.0,147.0,148.0,162.0,141.0,122.0,133.0,116.0,123.0,97.0,103.0,88.0,93.0,85.0,108.0,89.0,107.0,103.0,105.0,63.0,85.0,74.0,56.0,47.0,60.0,37.0,28.0,44.0,33.0,24.0,16.0,12.0,9.0,11.0,3.0,10.0 E82040,84.0,104.0,108.0,115.0,109.0,106.0,124.0,129.0,148.0,130.0,133.0,143.0,157.0,145.0,132.0,143.0,142.0,142.0,135.0,138.0,115.0,110.0,95.0,134.0,113.0,117.0,134.0,138.0,122.0,143.0,139.0,156.0,165.0,176.0,171.0,163.0,178.0,144.0,157.0,146.0,162.0,189.0,166.0,137.0,140.0,196.0,162.0,156.0,146.0,125.0,131.0,135.0,147.0,161.0,163.0,148.0,157.0,133.0,141.0,145.0,152.0,129.0,127.0,139.0,110.0,119.0,124.0,117.0,110.0,98.0,93.0,82.0,77.0,78.0,65.0,70.0,73.0,64.0,86.0,37.0,58.0,43.0,39.0,29.0,28.0,34.0,35.0,12.0,22.0,18.0,14.0,13.0,12.0,6.0,6.0,14.0 E82041,71.0,87.0,90.0,86.0,79.0,104.0,75.0,76.0,86.0,81.0,78.0,70.0,82.0,93.0,86.0,69.0,66.0,91.0,60.0,62.0,66.0,51.0,62.0,57.0,66.0,71.0,82.0,74.0,81.0,91.0,90.0,115.0,99.0,96.0,122.0,103.0,116.0,89.0,89.0,93.0,112.0,92.0,101.0,103.0,101.0,95.0,88.0,86.0,87.0,83.0,80.0,93.0,84.0,78.0,83.0,89.0,79.0,73.0,77.0,80.0,77.0,70.0,74.0,77.0,53.0,60.0,44.0,56.0,42.0,39.0,42.0,36.0,30.0,38.0,36.0,30.0,32.0,33.0,38.0,22.0,17.0,19.0,15.0,18.0,15.0,11.0,21.0,20.0,8.0,14.0,5.0,8.0,10.0,10.0,6.0,8.0 E82042,46.0,43.0,50.0,53.0,48.0,50.0,58.0,54.0,48.0,61.0,63.0,57.0,57.0,47.0,54.0,57.0,76.0,59.0,67.0,64.0,60.0,55.0,56.0,58.0,47.0,64.0,66.0,62.0,57.0,78.0,53.0,63.0,64.0,68.0,55.0,69.0,67.0,81.0,76.0,75.0,82.0,60.0,72.0,71.0,82.0,78.0,72.0,72.0,68.0,65.0,67.0,64.0,79.0,46.0,64.0,68.0,63.0,61.0,64.0,73.0,64.0,74.0,46.0,52.0,58.0,45.0,41.0,36.0,42.0,30.0,28.0,23.0,25.0,22.0,27.0,23.0,26.0,26.0,31.0,18.0,18.0,22.0,21.0,9.0,7.0,11.0,14.0,6.0,6.0,12.0,7.0,2.0,4.0,2.0,1.0,6.0 E82043,75.0,78.0,75.0,73.0,85.0,79.0,77.0,83.0,86.0,94.0,103.0,88.0,96.0,101.0,105.0,101.0,106.0,109.0,79.0,64.0,81.0,71.0,80.0,90.0,69.0,84.0,66.0,72.0,76.0,82.0,93.0,79.0,79.0,90.0,90.0,108.0,94.0,97.0,92.0,118.0,108.0,115.0,100.0,93.0,111.0,125.0,118.0,116.0,124.0,109.0,106.0,115.0,94.0,97.0,100.0,81.0,82.0,90.0,78.0,91.0,83.0,74.0,81.0,97.0,93.0,89.0,83.0,83.0,79.0,66.0,73.0,55.0,72.0,62.0,71.0,59.0,55.0,72.0,62.0,51.0,61.0,49.0,41.0,34.0,20.0,26.0,27.0,25.0,16.0,15.0,7.0,16.0,5.0,4.0,9.0,15.0 E82044,50.0,68.0,68.0,61.0,71.0,80.0,76.0,78.0,76.0,85.0,86.0,72.0,74.0,78.0,81.0,92.0,89.0,83.0,80.0,57.0,70.0,60.0,60.0,47.0,57.0,78.0,81.0,74.0,67.0,88.0,92.0,91.0,87.0,81.0,105.0,100.0,102.0,93.0,99.0,95.0,86.0,83.0,89.0,95.0,93.0,107.0,105.0,94.0,96.0,92.0,105.0,108.0,114.0,111.0,99.0,90.0,100.0,108.0,99.0,106.0,110.0,94.0,109.0,71.0,93.0,78.0,88.0,85.0,78.0,62.0,57.0,73.0,76.0,54.0,73.0,49.0,60.0,60.0,71.0,46.0,47.0,29.0,41.0,32.0,29.0,26.0,24.0,27.0,21.0,15.0,18.0,15.0,7.0,7.0,2.0,10.0 E82045,98.0,110.0,92.0,103.0,85.0,112.0,105.0,105.0,105.0,118.0,113.0,95.0,91.0,83.0,107.0,101.0,101.0,100.0,98.0,98.0,98.0,98.0,119.0,122.0,141.0,184.0,206.0,215.0,224.0,202.0,195.0,229.0,229.0,237.0,238.0,234.0,249.0,245.0,228.0,240.0,223.0,206.0,190.0,228.0,193.0,195.0,182.0,185.0,191.0,154.0,156.0,142.0,142.0,144.0,138.0,118.0,126.0,101.0,114.0,103.0,106.0,95.0,88.0,100.0,82.0,60.0,68.0,70.0,67.0,57.0,46.0,53.0,40.0,37.0,38.0,21.0,21.0,29.0,22.0,23.0,21.0,24.0,24.0,18.0,15.0,11.0,8.0,12.0,12.0,14.0,10.0,5.0,2.0,3.0,2.0,6.0 E82046,43.0,31.0,29.0,49.0,53.0,53.0,54.0,62.0,41.0,69.0,65.0,71.0,56.0,72.0,82.0,81.0,89.0,85.0,76.0,64.0,60.0,47.0,50.0,61.0,64.0,50.0,60.0,69.0,69.0,37.0,53.0,61.0,69.0,69.0,66.0,59.0,50.0,61.0,81.0,54.0,48.0,53.0,78.0,59.0,84.0,65.0,62.0,78.0,65.0,70.0,79.0,87.0,86.0,71.0,78.0,95.0,85.0,61.0,77.0,78.0,82.0,81.0,76.0,74.0,68.0,59.0,76.0,67.0,64.0,55.0,54.0,50.0,40.0,47.0,49.0,39.0,45.0,45.0,50.0,51.0,31.0,37.0,28.0,26.0,21.0,15.0,19.0,13.0,9.0,12.0,7.0,11.0,8.0,7.0,1.0,15.0 E82050,29.0,25.0,21.0,21.0,30.0,48.0,28.0,39.0,38.0,37.0,33.0,31.0,37.0,36.0,49.0,38.0,42.0,37.0,30.0,38.0,23.0,22.0,25.0,24.0,27.0,33.0,31.0,35.0,39.0,32.0,50.0,37.0,41.0,34.0,38.0,48.0,47.0,35.0,40.0,49.0,36.0,26.0,45.0,48.0,50.0,48.0,39.0,42.0,41.0,40.0,32.0,41.0,32.0,25.0,41.0,35.0,34.0,21.0,29.0,26.0,28.0,28.0,25.0,17.0,27.0,24.0,26.0,12.0,26.0,24.0,29.0,28.0,18.0,20.0,19.0,26.0,11.0,23.0,23.0,9.0,16.0,9.0,6.0,3.0,6.0,4.0,3.0,1.0,2.0,1.0,,,1.0,,, E82051,68.0,70.0,74.0,92.0,86.0,90.0,89.0,97.0,96.0,104.0,101.0,106.0,98.0,95.0,98.0,99.0,92.0,102.0,89.0,87.0,74.0,59.0,64.0,90.0,80.0,85.0,70.0,69.0,102.0,90.0,76.0,83.0,99.0,97.0,118.0,111.0,102.0,125.0,116.0,137.0,121.0,117.0,98.0,116.0,132.0,95.0,111.0,100.0,98.0,98.0,96.0,94.0,89.0,92.0,96.0,83.0,88.0,91.0,102.0,80.0,72.0,82.0,77.0,77.0,89.0,78.0,80.0,71.0,63.0,76.0,66.0,69.0,54.0,58.0,46.0,37.0,56.0,64.0,50.0,48.0,38.0,29.0,31.0,18.0,18.0,19.0,21.0,11.0,14.0,14.0,9.0,8.0,8.0,6.0,4.0,9.0 E82053,101.0,112.0,99.0,98.0,124.0,129.0,105.0,112.0,113.0,106.0,120.0,132.0,112.0,121.0,102.0,97.0,107.0,105.0,89.0,63.0,70.0,76.0,70.0,84.0,75.0,69.0,111.0,107.0,131.0,135.0,115.0,140.0,165.0,170.0,149.0,151.0,147.0,160.0,148.0,146.0,166.0,166.0,129.0,158.0,156.0,155.0,134.0,145.0,111.0,146.0,129.0,119.0,121.0,119.0,108.0,92.0,103.0,104.0,101.0,106.0,104.0,109.0,111.0,97.0,87.0,80.0,71.0,75.0,63.0,60.0,85.0,63.0,73.0,55.0,42.0,67.0,53.0,61.0,57.0,53.0,41.0,42.0,45.0,38.0,33.0,26.0,19.0,22.0,20.0,22.0,17.0,8.0,11.0,9.0,4.0,11.0 E82055,47.0,44.0,46.0,68.0,63.0,82.0,88.0,80.0,86.0,74.0,86.0,84.0,100.0,111.0,107.0,101.0,104.0,102.0,95.0,75.0,62.0,73.0,66.0,60.0,71.0,71.0,61.0,52.0,59.0,68.0,69.0,55.0,64.0,69.0,75.0,70.0,80.0,85.0,83.0,70.0,61.0,90.0,65.0,79.0,93.0,91.0,103.0,96.0,101.0,98.0,109.0,102.0,93.0,102.0,103.0,101.0,88.0,98.0,101.0,90.0,98.0,93.0,93.0,73.0,88.0,71.0,65.0,57.0,63.0,67.0,55.0,65.0,61.0,56.0,62.0,66.0,46.0,72.0,80.0,60.0,63.0,42.0,47.0,41.0,35.0,27.0,28.0,14.0,33.0,20.0,13.0,17.0,14.0,8.0,6.0,21.0 E82056,48.0,59.0,59.0,61.0,56.0,71.0,67.0,69.0,67.0,76.0,60.0,80.0,79.0,64.0,79.0,78.0,61.0,74.0,66.0,47.0,50.0,52.0,43.0,67.0,54.0,56.0,55.0,69.0,80.0,78.0,68.0,65.0,90.0,87.0,85.0,78.0,92.0,97.0,81.0,68.0,90.0,67.0,89.0,80.0,89.0,74.0,73.0,79.0,62.0,58.0,64.0,55.0,42.0,49.0,60.0,65.0,68.0,57.0,46.0,57.0,71.0,75.0,54.0,59.0,57.0,49.0,59.0,46.0,50.0,48.0,44.0,29.0,37.0,26.0,22.0,38.0,30.0,32.0,25.0,18.0,17.0,20.0,18.0,11.0,12.0,13.0,10.0,7.0,12.0,10.0,8.0,9.0,2.0,8.0,5.0,10.0 E82058,40.0,38.0,37.0,43.0,41.0,46.0,47.0,53.0,54.0,57.0,57.0,53.0,50.0,66.0,55.0,50.0,49.0,57.0,120.0,243.0,265.0,371.0,489.0,500.0,524.0,539.0,471.0,472.0,384.0,295.0,195.0,182.0,153.0,131.0,106.0,104.0,105.0,82.0,71.0,82.0,76.0,76.0,69.0,52.0,71.0,60.0,55.0,59.0,67.0,58.0,54.0,54.0,60.0,62.0,69.0,65.0,61.0,67.0,72.0,59.0,65.0,61.0,75.0,56.0,68.0,72.0,66.0,63.0,51.0,52.0,41.0,62.0,40.0,42.0,46.0,44.0,46.0,47.0,35.0,29.0,36.0,33.0,22.0,18.0,10.0,27.0,17.0,15.0,14.0,11.0,7.0,6.0,4.0,7.0,2.0,8.0 E82059,46.0,47.0,55.0,59.0,50.0,57.0,59.0,65.0,83.0,63.0,55.0,74.0,65.0,84.0,76.0,69.0,90.0,73.0,54.0,49.0,58.0,49.0,48.0,53.0,49.0,54.0,41.0,48.0,48.0,59.0,44.0,44.0,74.0,45.0,62.0,76.0,74.0,78.0,67.0,72.0,75.0,68.0,66.0,74.0,81.0,78.0,95.0,90.0,80.0,89.0,92.0,68.0,90.0,99.0,90.0,80.0,82.0,85.0,64.0,73.0,71.0,52.0,59.0,52.0,68.0,43.0,43.0,43.0,43.0,38.0,41.0,47.0,31.0,35.0,32.0,41.0,47.0,44.0,36.0,28.0,29.0,37.0,29.0,19.0,12.0,23.0,16.0,16.0,12.0,12.0,9.0,5.0,7.0,6.0,3.0,5.0 E82060,101.0,101.0,113.0,139.0,126.0,135.0,154.0,125.0,160.0,157.0,142.0,162.0,176.0,160.0,173.0,144.0,153.0,133.0,132.0,113.0,99.0,100.0,88.0,91.0,72.0,96.0,127.0,104.0,104.0,107.0,145.0,119.0,163.0,157.0,193.0,165.0,189.0,180.0,189.0,190.0,172.0,212.0,184.0,181.0,213.0,202.0,182.0,199.0,204.0,184.0,152.0,191.0,154.0,185.0,157.0,160.0,142.0,142.0,127.0,123.0,129.0,118.0,90.0,95.0,110.0,76.0,90.0,99.0,84.0,89.0,95.0,79.0,68.0,77.0,61.0,74.0,56.0,68.0,56.0,62.0,52.0,48.0,41.0,30.0,28.0,27.0,24.0,20.0,14.0,15.0,13.0,15.0,9.0,5.0,6.0,13.0 E82061,63.0,70.0,86.0,88.0,62.0,72.0,90.0,83.0,78.0,74.0,73.0,98.0,77.0,87.0,80.0,82.0,88.0,85.0,75.0,58.0,67.0,79.0,76.0,83.0,96.0,80.0,93.0,99.0,95.0,107.0,111.0,101.0,90.0,83.0,93.0,101.0,125.0,111.0,107.0,96.0,93.0,110.0,100.0,100.0,108.0,81.0,116.0,97.0,80.0,94.0,104.0,76.0,90.0,91.0,89.0,98.0,103.0,75.0,103.0,94.0,102.0,90.0,86.0,77.0,101.0,58.0,73.0,80.0,58.0,59.0,64.0,44.0,60.0,47.0,48.0,55.0,52.0,59.0,68.0,47.0,53.0,33.0,35.0,26.0,27.0,25.0,26.0,24.0,25.0,25.0,13.0,6.0,6.0,7.0,5.0,10.0 E82062,71.0,92.0,74.0,78.0,89.0,84.0,85.0,94.0,88.0,84.0,98.0,91.0,94.0,98.0,80.0,100.0,100.0,87.0,107.0,66.0,85.0,76.0,74.0,93.0,88.0,78.0,98.0,93.0,88.0,100.0,78.0,110.0,91.0,103.0,123.0,126.0,102.0,116.0,127.0,119.0,101.0,103.0,116.0,121.0,110.0,99.0,106.0,96.0,112.0,117.0,95.0,114.0,95.0,97.0,103.0,106.0,126.0,115.0,126.0,110.0,100.0,97.0,112.0,99.0,96.0,87.0,107.0,86.0,88.0,75.0,68.0,81.0,64.0,57.0,64.0,56.0,68.0,71.0,62.0,53.0,44.0,38.0,41.0,35.0,28.0,32.0,23.0,30.0,27.0,16.0,16.0,14.0,14.0,9.0,2.0,12.0 E82063,71.0,81.0,92.0,89.0,101.0,71.0,86.0,101.0,66.0,119.0,90.0,96.0,94.0,103.0,92.0,89.0,85.0,74.0,91.0,70.0,63.0,70.0,61.0,83.0,59.0,88.0,62.0,67.0,57.0,76.0,60.0,77.0,78.0,89.0,83.0,80.0,75.0,104.0,88.0,80.0,79.0,92.0,100.0,77.0,85.0,81.0,88.0,73.0,85.0,66.0,80.0,71.0,99.0,78.0,81.0,80.0,91.0,91.0,76.0,70.0,86.0,57.0,60.0,61.0,57.0,68.0,52.0,52.0,47.0,41.0,42.0,42.0,37.0,33.0,34.0,45.0,29.0,30.0,38.0,21.0,35.0,30.0,25.0,18.0,19.0,17.0,20.0,14.0,7.0,10.0,4.0,5.0,2.0,8.0,5.0,6.0 E82064,21.0,22.0,24.0,43.0,33.0,39.0,38.0,42.0,51.0,45.0,52.0,56.0,59.0,53.0,64.0,54.0,52.0,54.0,65.0,46.0,39.0,50.0,45.0,50.0,29.0,38.0,36.0,37.0,37.0,31.0,30.0,25.0,25.0,32.0,32.0,44.0,28.0,42.0,37.0,30.0,45.0,45.0,35.0,48.0,51.0,65.0,63.0,70.0,60.0,56.0,64.0,62.0,57.0,72.0,68.0,56.0,64.0,61.0,53.0,45.0,49.0,56.0,49.0,71.0,32.0,49.0,43.0,30.0,42.0,29.0,31.0,22.0,28.0,22.0,36.0,26.0,27.0,28.0,35.0,25.0,31.0,24.0,13.0,21.0,10.0,16.0,13.0,9.0,17.0,14.0,9.0,5.0,5.0,7.0,3.0,6.0 E82066,15.0,24.0,21.0,16.0,20.0,19.0,17.0,19.0,21.0,10.0,15.0,24.0,27.0,20.0,30.0,27.0,28.0,25.0,19.0,21.0,16.0,15.0,24.0,26.0,24.0,24.0,15.0,25.0,25.0,15.0,21.0,19.0,18.0,25.0,22.0,19.0,23.0,21.0,25.0,19.0,29.0,25.0,31.0,27.0,26.0,28.0,13.0,35.0,23.0,31.0,29.0,26.0,27.0,24.0,30.0,28.0,33.0,33.0,32.0,33.0,32.0,27.0,27.0,28.0,23.0,18.0,20.0,25.0,19.0,15.0,21.0,21.0,13.0,15.0,12.0,7.0,8.0,11.0,9.0,9.0,9.0,14.0,18.0,9.0,9.0,6.0,6.0,1.0,5.0,5.0,2.0,,1.0,2.0,,7.0 E82067,60.0,67.0,80.0,70.0,79.0,94.0,83.0,79.0,104.0,107.0,113.0,115.0,99.0,113.0,113.0,128.0,114.0,117.0,94.0,85.0,84.0,86.0,85.0,106.0,100.0,94.0,110.0,104.0,109.0,100.0,119.0,100.0,108.0,128.0,110.0,104.0,105.0,102.0,115.0,131.0,103.0,106.0,101.0,123.0,145.0,126.0,137.0,122.0,115.0,127.0,132.0,153.0,151.0,146.0,120.0,116.0,125.0,132.0,102.0,126.0,118.0,108.0,93.0,108.0,105.0,82.0,102.0,81.0,61.0,78.0,75.0,62.0,72.0,64.0,60.0,47.0,51.0,55.0,61.0,35.0,36.0,34.0,29.0,23.0,27.0,28.0,26.0,28.0,28.0,8.0,13.0,16.0,7.0,6.0,5.0,11.0 E82068,42.0,47.0,48.0,60.0,69.0,66.0,55.0,55.0,72.0,58.0,74.0,77.0,75.0,83.0,78.0,69.0,98.0,72.0,83.0,61.0,62.0,63.0,52.0,57.0,64.0,74.0,79.0,79.0,61.0,77.0,70.0,66.0,82.0,69.0,72.0,81.0,79.0,78.0,89.0,78.0,73.0,86.0,93.0,97.0,89.0,94.0,96.0,82.0,82.0,92.0,108.0,79.0,103.0,93.0,100.0,87.0,90.0,70.0,86.0,113.0,91.0,85.0,83.0,88.0,70.0,76.0,66.0,67.0,55.0,62.0,62.0,45.0,51.0,53.0,50.0,47.0,44.0,44.0,49.0,31.0,45.0,39.0,27.0,20.0,20.0,26.0,17.0,14.0,16.0,12.0,15.0,9.0,9.0,5.0,4.0,6.0 E82069,69.0,54.0,49.0,67.0,63.0,73.0,74.0,77.0,61.0,72.0,68.0,50.0,65.0,57.0,47.0,42.0,45.0,43.0,36.0,38.0,31.0,29.0,44.0,54.0,50.0,71.0,81.0,76.0,75.0,78.0,92.0,99.0,105.0,93.0,105.0,110.0,100.0,106.0,121.0,104.0,103.0,107.0,93.0,87.0,88.0,88.0,80.0,80.0,88.0,76.0,63.0,61.0,45.0,57.0,56.0,39.0,48.0,39.0,42.0,34.0,37.0,27.0,31.0,26.0,22.0,29.0,18.0,24.0,19.0,21.0,12.0,14.0,22.0,16.0,19.0,17.0,15.0,18.0,18.0,15.0,10.0,9.0,11.0,8.0,10.0,7.0,4.0,2.0,6.0,6.0,4.0,2.0,1.0,4.0,2.0,1.0 E82070,21.0,28.0,27.0,24.0,27.0,33.0,31.0,32.0,28.0,17.0,29.0,17.0,20.0,21.0,21.0,19.0,29.0,14.0,23.0,22.0,17.0,21.0,16.0,13.0,12.0,19.0,18.0,20.0,21.0,22.0,30.0,18.0,27.0,27.0,34.0,28.0,27.0,39.0,35.0,40.0,18.0,30.0,33.0,29.0,28.0,24.0,28.0,22.0,29.0,24.0,27.0,29.0,26.0,34.0,24.0,27.0,15.0,23.0,21.0,18.0,26.0,10.0,13.0,15.0,25.0,23.0,9.0,13.0,10.0,17.0,15.0,11.0,7.0,8.0,7.0,5.0,10.0,4.0,7.0,6.0,5.0,4.0,3.0,2.0,3.0,2.0,3.0,2.0,1.0,,,2.0,,1.0,,2.0 E82071,60.0,81.0,86.0,106.0,101.0,117.0,94.0,134.0,143.0,148.0,138.0,149.0,135.0,146.0,162.0,153.0,139.0,156.0,126.0,101.0,78.0,90.0,89.0,85.0,95.0,84.0,65.0,78.0,68.0,73.0,67.0,58.0,72.0,77.0,89.0,92.0,89.0,84.0,101.0,109.0,100.0,123.0,117.0,151.0,129.0,145.0,147.0,143.0,146.0,155.0,149.0,146.0,134.0,123.0,147.0,127.0,121.0,130.0,136.0,124.0,118.0,98.0,108.0,101.0,106.0,86.0,75.0,68.0,85.0,66.0,55.0,51.0,57.0,50.0,55.0,67.0,53.0,70.0,57.0,44.0,42.0,48.0,34.0,25.0,26.0,21.0,32.0,25.0,17.0,12.0,16.0,15.0,12.0,10.0,3.0,9.0 E82073,282.0,272.0,293.0,322.0,296.0,315.0,317.0,330.0,294.0,308.0,342.0,306.0,323.0,283.0,307.0,255.0,270.0,297.0,266.0,260.0,237.0,224.0,243.0,238.0,269.0,291.0,305.0,288.0,308.0,319.0,329.0,362.0,351.0,430.0,390.0,437.0,481.0,435.0,397.0,408.0,421.0,455.0,407.0,399.0,432.0,425.0,385.0,381.0,380.0,350.0,328.0,330.0,275.0,304.0,313.0,273.0,271.0,267.0,273.0,313.0,248.0,238.0,273.0,223.0,207.0,211.0,216.0,181.0,174.0,153.0,158.0,145.0,154.0,122.0,116.0,121.0,132.0,132.0,116.0,103.0,99.0,89.0,81.0,46.0,41.0,50.0,44.0,48.0,46.0,27.0,29.0,18.0,14.0,14.0,13.0,17.0 E82074,80.0,108.0,107.0,136.0,116.0,110.0,126.0,143.0,109.0,112.0,122.0,129.0,140.0,159.0,168.0,187.0,147.0,166.0,143.0,137.0,98.0,126.0,139.0,143.0,138.0,182.0,180.0,211.0,186.0,202.0,186.0,196.0,186.0,219.0,192.0,181.0,216.0,168.0,184.0,167.0,157.0,160.0,162.0,173.0,166.0,160.0,132.0,148.0,157.0,151.0,118.0,173.0,150.0,137.0,162.0,129.0,157.0,137.0,149.0,125.0,137.0,132.0,137.0,137.0,105.0,110.0,113.0,112.0,98.0,94.0,81.0,75.0,85.0,59.0,60.0,75.0,82.0,63.0,76.0,34.0,49.0,35.0,51.0,42.0,30.0,39.0,32.0,27.0,26.0,15.0,19.0,10.0,9.0,11.0,3.0,11.0 E82075,66.0,63.0,55.0,62.0,69.0,56.0,66.0,61.0,73.0,74.0,78.0,91.0,93.0,91.0,91.0,99.0,79.0,93.0,61.0,47.0,61.0,50.0,51.0,44.0,60.0,53.0,53.0,71.0,81.0,80.0,76.0,89.0,71.0,89.0,91.0,97.0,80.0,92.0,91.0,89.0,77.0,79.0,93.0,104.0,91.0,108.0,109.0,99.0,89.0,83.0,99.0,100.0,88.0,87.0,75.0,102.0,85.0,78.0,79.0,80.0,76.0,83.0,74.0,77.0,66.0,55.0,80.0,50.0,49.0,48.0,49.0,50.0,53.0,42.0,55.0,45.0,45.0,53.0,48.0,44.0,44.0,43.0,40.0,25.0,21.0,22.0,18.0,13.0,18.0,25.0,18.0,9.0,5.0,8.0,1.0,12.0 E82077,40.0,33.0,52.0,65.0,59.0,56.0,62.0,65.0,88.0,85.0,94.0,99.0,91.0,126.0,122.0,112.0,116.0,101.0,92.0,70.0,61.0,49.0,65.0,66.0,58.0,63.0,67.0,66.0,61.0,50.0,59.0,55.0,56.0,70.0,57.0,78.0,77.0,59.0,66.0,58.0,82.0,68.0,89.0,90.0,85.0,108.0,94.0,94.0,123.0,107.0,110.0,116.0,109.0,110.0,118.0,98.0,91.0,84.0,102.0,98.0,103.0,94.0,83.0,86.0,76.0,68.0,65.0,55.0,47.0,51.0,45.0,46.0,52.0,37.0,41.0,49.0,41.0,45.0,55.0,50.0,40.0,45.0,34.0,21.0,20.0,31.0,32.0,19.0,28.0,13.0,12.0,12.0,14.0,10.0,7.0,10.0 E82078,44.0,62.0,51.0,64.0,51.0,52.0,55.0,55.0,45.0,64.0,77.0,56.0,52.0,69.0,54.0,68.0,58.0,58.0,59.0,46.0,47.0,47.0,46.0,46.0,67.0,56.0,67.0,61.0,58.0,56.0,59.0,68.0,64.0,55.0,76.0,64.0,55.0,76.0,68.0,65.0,62.0,59.0,72.0,67.0,81.0,72.0,77.0,54.0,62.0,63.0,54.0,52.0,47.0,67.0,64.0,56.0,82.0,64.0,50.0,69.0,70.0,64.0,56.0,74.0,48.0,53.0,44.0,50.0,48.0,46.0,43.0,37.0,39.0,42.0,36.0,39.0,37.0,46.0,39.0,21.0,30.0,23.0,26.0,16.0,25.0,8.0,12.0,15.0,19.0,8.0,10.0,3.0,3.0,8.0,5.0,3.0 E82079,43.0,39.0,48.0,64.0,53.0,57.0,67.0,62.0,54.0,71.0,74.0,63.0,69.0,61.0,72.0,71.0,70.0,66.0,59.0,62.0,72.0,44.0,54.0,49.0,47.0,54.0,54.0,48.0,36.0,44.0,56.0,54.0,45.0,69.0,57.0,61.0,51.0,59.0,65.0,76.0,69.0,64.0,66.0,72.0,66.0,64.0,73.0,53.0,58.0,65.0,73.0,53.0,57.0,64.0,55.0,72.0,49.0,49.0,77.0,47.0,66.0,45.0,57.0,55.0,42.0,41.0,45.0,34.0,49.0,22.0,20.0,34.0,34.0,31.0,21.0,19.0,21.0,28.0,31.0,27.0,16.0,24.0,14.0,20.0,6.0,9.0,11.0,14.0,11.0,9.0,3.0,4.0,,9.0,1.0,3.0 E82081,53.0,71.0,77.0,64.0,75.0,64.0,74.0,82.0,71.0,72.0,75.0,70.0,84.0,82.0,82.0,73.0,81.0,81.0,80.0,77.0,76.0,58.0,72.0,81.0,82.0,77.0,65.0,71.0,68.0,57.0,75.0,60.0,50.0,78.0,84.0,67.0,82.0,75.0,78.0,51.0,95.0,73.0,92.0,89.0,89.0,87.0,78.0,83.0,77.0,73.0,83.0,86.0,86.0,84.0,91.0,99.0,105.0,109.0,117.0,106.0,91.0,115.0,84.0,107.0,83.0,88.0,73.0,79.0,75.0,76.0,60.0,70.0,58.0,56.0,61.0,58.0,57.0,64.0,64.0,45.0,53.0,44.0,39.0,26.0,38.0,26.0,26.0,17.0,23.0,20.0,24.0,12.0,8.0,9.0,7.0,12.0 E82082,74.0,79.0,80.0,96.0,81.0,87.0,90.0,96.0,104.0,102.0,107.0,101.0,111.0,113.0,120.0,120.0,111.0,117.0,112.0,107.0,98.0,101.0,90.0,113.0,111.0,85.0,89.0,87.0,106.0,89.0,100.0,126.0,99.0,99.0,123.0,110.0,108.0,110.0,110.0,109.0,115.0,104.0,124.0,105.0,129.0,133.0,96.0,100.0,98.0,121.0,132.0,113.0,116.0,119.0,134.0,128.0,125.0,128.0,135.0,139.0,139.0,135.0,91.0,127.0,113.0,103.0,103.0,80.0,75.0,97.0,91.0,86.0,90.0,82.0,92.0,81.0,91.0,109.0,84.0,62.0,82.0,43.0,53.0,48.0,46.0,37.0,41.0,33.0,32.0,26.0,21.0,17.0,13.0,5.0,8.0,24.0 E82083,37.0,41.0,41.0,45.0,51.0,50.0,59.0,49.0,55.0,65.0,58.0,50.0,68.0,55.0,60.0,73.0,85.0,71.0,51.0,53.0,34.0,45.0,50.0,61.0,50.0,56.0,55.0,55.0,45.0,44.0,50.0,70.0,58.0,54.0,65.0,67.0,53.0,88.0,55.0,52.0,67.0,54.0,62.0,64.0,82.0,64.0,66.0,69.0,73.0,66.0,78.0,72.0,73.0,89.0,96.0,70.0,65.0,80.0,57.0,87.0,68.0,91.0,60.0,59.0,74.0,61.0,56.0,51.0,53.0,49.0,37.0,47.0,46.0,48.0,37.0,49.0,42.0,34.0,52.0,26.0,30.0,27.0,38.0,26.0,17.0,20.0,13.0,21.0,19.0,12.0,10.0,13.0,9.0,5.0,6.0,8.0 E82084,47.0,60.0,56.0,76.0,62.0,70.0,84.0,92.0,93.0,95.0,109.0,107.0,118.0,101.0,120.0,106.0,117.0,119.0,101.0,62.0,89.0,62.0,68.0,68.0,68.0,75.0,65.0,68.0,61.0,65.0,78.0,86.0,75.0,85.0,79.0,91.0,91.0,95.0,107.0,102.0,91.0,128.0,106.0,114.0,109.0,138.0,117.0,118.0,125.0,113.0,125.0,120.0,142.0,110.0,127.0,117.0,104.0,95.0,97.0,88.0,85.0,95.0,85.0,66.0,96.0,57.0,69.0,52.0,55.0,55.0,48.0,53.0,51.0,34.0,38.0,50.0,43.0,40.0,49.0,32.0,30.0,32.0,27.0,21.0,21.0,21.0,23.0,19.0,24.0,10.0,7.0,4.0,8.0,8.0,4.0,7.0 E82085,62.0,90.0,92.0,82.0,94.0,101.0,79.0,109.0,117.0,117.0,115.0,113.0,124.0,131.0,128.0,153.0,136.0,148.0,130.0,111.0,88.0,111.0,89.0,121.0,112.0,134.0,111.0,105.0,101.0,93.0,100.0,98.0,99.0,106.0,99.0,108.0,128.0,115.0,90.0,110.0,127.0,111.0,142.0,134.0,131.0,130.0,156.0,137.0,129.0,124.0,129.0,132.0,142.0,136.0,121.0,149.0,135.0,135.0,114.0,143.0,125.0,124.0,137.0,125.0,123.0,95.0,98.0,109.0,110.0,94.0,95.0,91.0,77.0,79.0,91.0,64.0,86.0,68.0,89.0,62.0,71.0,61.0,62.0,35.0,31.0,48.0,32.0,36.0,22.0,23.0,23.0,17.0,12.0,9.0,6.0,15.0 E82086,129.0,153.0,123.0,147.0,142.0,138.0,132.0,138.0,141.0,131.0,149.0,142.0,164.0,157.0,135.0,135.0,143.0,153.0,130.0,136.0,123.0,117.0,116.0,115.0,142.0,145.0,141.0,150.0,166.0,183.0,151.0,203.0,211.0,216.0,232.0,240.0,230.0,232.0,229.0,219.0,246.0,206.0,187.0,224.0,215.0,191.0,163.0,188.0,184.0,164.0,148.0,172.0,151.0,163.0,162.0,161.0,176.0,141.0,139.0,169.0,153.0,166.0,148.0,107.0,127.0,117.0,109.0,105.0,96.0,86.0,85.0,88.0,74.0,61.0,70.0,78.0,84.0,79.0,69.0,49.0,47.0,45.0,40.0,29.0,27.0,31.0,27.0,17.0,20.0,18.0,13.0,13.0,10.0,7.0,11.0,9.0 E82088,43.0,34.0,41.0,46.0,43.0,42.0,44.0,51.0,63.0,38.0,55.0,63.0,65.0,64.0,91.0,97.0,129.0,123.0,91.0,74.0,66.0,47.0,54.0,56.0,46.0,55.0,61.0,58.0,56.0,47.0,55.0,54.0,62.0,73.0,52.0,67.0,65.0,60.0,68.0,52.0,63.0,59.0,56.0,69.0,62.0,61.0,59.0,72.0,54.0,53.0,67.0,61.0,62.0,72.0,82.0,72.0,71.0,70.0,72.0,71.0,53.0,67.0,57.0,62.0,53.0,41.0,45.0,50.0,41.0,34.0,45.0,32.0,30.0,28.0,36.0,46.0,36.0,34.0,51.0,34.0,54.0,37.0,40.0,19.0,16.0,18.0,17.0,14.0,12.0,8.0,11.0,10.0,3.0,4.0,3.0,2.0 E82090,41.0,50.0,44.0,47.0,59.0,45.0,62.0,61.0,55.0,35.0,61.0,48.0,55.0,65.0,55.0,47.0,56.0,62.0,60.0,66.0,58.0,48.0,47.0,49.0,60.0,53.0,51.0,56.0,45.0,58.0,55.0,54.0,53.0,62.0,56.0,68.0,64.0,57.0,58.0,61.0,74.0,55.0,63.0,52.0,79.0,68.0,61.0,58.0,61.0,49.0,76.0,78.0,72.0,87.0,62.0,86.0,72.0,67.0,75.0,73.0,88.0,86.0,70.0,73.0,62.0,54.0,51.0,65.0,57.0,56.0,55.0,50.0,62.0,58.0,48.0,46.0,42.0,66.0,42.0,51.0,50.0,43.0,29.0,30.0,27.0,19.0,29.0,24.0,24.0,8.0,14.0,6.0,10.0,10.0,3.0,6.0 E82091,68.0,107.0,99.0,105.0,97.0,107.0,81.0,135.0,103.0,93.0,112.0,109.0,100.0,105.0,114.0,116.0,132.0,121.0,88.0,86.0,63.0,84.0,84.0,99.0,94.0,88.0,85.0,99.0,96.0,114.0,115.0,109.0,131.0,130.0,146.0,135.0,140.0,154.0,130.0,135.0,143.0,128.0,129.0,127.0,134.0,107.0,122.0,95.0,115.0,125.0,114.0,99.0,122.0,104.0,118.0,110.0,120.0,104.0,120.0,111.0,120.0,116.0,124.0,103.0,91.0,110.0,96.0,85.0,90.0,84.0,81.0,69.0,63.0,64.0,51.0,64.0,59.0,63.0,52.0,42.0,42.0,43.0,57.0,32.0,38.0,27.0,27.0,27.0,26.0,21.0,18.0,10.0,11.0,14.0,5.0,15.0 E82092,66.0,87.0,90.0,78.0,88.0,89.0,92.0,95.0,79.0,97.0,96.0,85.0,98.0,90.0,103.0,107.0,94.0,77.0,79.0,63.0,58.0,80.0,69.0,78.0,79.0,86.0,83.0,96.0,106.0,101.0,86.0,125.0,106.0,134.0,109.0,148.0,134.0,123.0,119.0,147.0,114.0,118.0,118.0,113.0,130.0,137.0,115.0,111.0,98.0,131.0,123.0,122.0,114.0,111.0,101.0,91.0,126.0,112.0,115.0,111.0,111.0,117.0,92.0,95.0,90.0,95.0,75.0,79.0,85.0,74.0,70.0,57.0,58.0,48.0,56.0,62.0,70.0,57.0,70.0,43.0,40.0,45.0,41.0,26.0,23.0,25.0,23.0,27.0,16.0,27.0,13.0,14.0,7.0,11.0,6.0,8.0 E82093,55.0,64.0,59.0,87.0,83.0,80.0,85.0,113.0,90.0,84.0,73.0,97.0,103.0,110.0,96.0,91.0,93.0,105.0,94.0,77.0,69.0,87.0,72.0,82.0,85.0,96.0,102.0,76.0,93.0,100.0,101.0,105.0,93.0,87.0,115.0,109.0,107.0,109.0,117.0,92.0,122.0,98.0,116.0,107.0,101.0,92.0,72.0,100.0,102.0,80.0,62.0,70.0,81.0,91.0,81.0,78.0,85.0,96.0,111.0,78.0,103.0,82.0,96.0,89.0,66.0,74.0,71.0,79.0,71.0,65.0,60.0,51.0,51.0,55.0,38.0,34.0,51.0,43.0,57.0,34.0,24.0,31.0,18.0,13.0,15.0,15.0,17.0,14.0,8.0,8.0,10.0,7.0,4.0,7.0,5.0,5.0 E82094,51.0,54.0,54.0,69.0,65.0,71.0,89.0,68.0,93.0,78.0,79.0,73.0,82.0,80.0,82.0,80.0,89.0,70.0,59.0,45.0,47.0,45.0,49.0,41.0,60.0,56.0,56.0,58.0,61.0,68.0,65.0,74.0,64.0,83.0,79.0,68.0,79.0,94.0,63.0,86.0,88.0,102.0,83.0,85.0,95.0,91.0,102.0,89.0,94.0,102.0,88.0,93.0,103.0,103.0,98.0,91.0,76.0,95.0,84.0,77.0,82.0,95.0,90.0,68.0,70.0,64.0,76.0,59.0,54.0,47.0,52.0,53.0,40.0,34.0,49.0,52.0,43.0,46.0,52.0,31.0,37.0,46.0,28.0,24.0,25.0,22.0,20.0,20.0,19.0,19.0,17.0,12.0,9.0,7.0,4.0,8.0 E82096,43.0,49.0,43.0,61.0,46.0,55.0,61.0,71.0,61.0,68.0,72.0,71.0,70.0,69.0,83.0,84.0,61.0,71.0,70.0,53.0,60.0,51.0,50.0,51.0,66.0,54.0,55.0,67.0,56.0,56.0,55.0,66.0,60.0,61.0,87.0,67.0,81.0,68.0,63.0,76.0,77.0,68.0,72.0,80.0,92.0,72.0,81.0,51.0,76.0,71.0,69.0,87.0,73.0,75.0,67.0,63.0,72.0,81.0,69.0,75.0,73.0,74.0,88.0,82.0,54.0,63.0,55.0,46.0,47.0,42.0,46.0,31.0,32.0,35.0,31.0,45.0,30.0,37.0,39.0,30.0,38.0,26.0,32.0,27.0,11.0,18.0,15.0,15.0,20.0,5.0,8.0,10.0,7.0,7.0,1.0,4.0 E82098,25.0,22.0,21.0,30.0,31.0,35.0,41.0,39.0,55.0,47.0,44.0,60.0,47.0,44.0,53.0,41.0,66.0,44.0,42.0,57.0,38.0,43.0,46.0,42.0,38.0,38.0,40.0,39.0,43.0,30.0,41.0,33.0,37.0,44.0,43.0,36.0,38.0,42.0,55.0,37.0,40.0,57.0,46.0,32.0,58.0,54.0,63.0,47.0,37.0,52.0,43.0,48.0,50.0,48.0,46.0,52.0,62.0,62.0,64.0,50.0,62.0,61.0,39.0,55.0,42.0,44.0,59.0,40.0,34.0,46.0,39.0,37.0,34.0,38.0,30.0,36.0,36.0,38.0,50.0,27.0,34.0,12.0,19.0,21.0,12.0,14.0,18.0,12.0,14.0,8.0,14.0,11.0,9.0,5.0,2.0,12.0 E82099,41.0,45.0,51.0,44.0,37.0,61.0,53.0,55.0,63.0,58.0,52.0,88.0,85.0,75.0,95.0,89.0,77.0,88.0,68.0,70.0,64.0,61.0,67.0,60.0,78.0,59.0,81.0,67.0,75.0,89.0,72.0,99.0,79.0,86.0,77.0,93.0,90.0,86.0,77.0,95.0,75.0,74.0,85.0,88.0,74.0,90.0,88.0,83.0,86.0,92.0,92.0,85.0,73.0,105.0,86.0,90.0,98.0,90.0,86.0,90.0,111.0,89.0,95.0,88.0,85.0,89.0,80.0,75.0,68.0,74.0,63.0,58.0,52.0,48.0,51.0,51.0,42.0,56.0,46.0,43.0,37.0,37.0,48.0,25.0,22.0,17.0,30.0,27.0,20.0,16.0,14.0,15.0,11.0,6.0,3.0,9.0 E82100,57.0,88.0,67.0,88.0,79.0,83.0,78.0,80.0,97.0,74.0,108.0,85.0,90.0,104.0,98.0,103.0,68.0,76.0,80.0,55.0,62.0,61.0,61.0,64.0,64.0,68.0,70.0,76.0,68.0,71.0,72.0,72.0,82.0,68.0,104.0,87.0,88.0,91.0,89.0,100.0,91.0,96.0,104.0,95.0,93.0,119.0,108.0,101.0,84.0,95.0,96.0,105.0,94.0,106.0,94.0,100.0,87.0,90.0,77.0,91.0,90.0,89.0,99.0,74.0,86.0,71.0,67.0,82.0,77.0,67.0,61.0,65.0,76.0,65.0,66.0,70.0,66.0,71.0,60.0,51.0,40.0,38.0,42.0,22.0,28.0,33.0,21.0,31.0,5.0,12.0,19.0,10.0,8.0,8.0,4.0,10.0 E82102,82.0,75.0,80.0,95.0,92.0,105.0,120.0,97.0,125.0,103.0,114.0,118.0,120.0,109.0,129.0,130.0,122.0,102.0,116.0,90.0,71.0,87.0,85.0,84.0,81.0,99.0,94.0,87.0,94.0,87.0,92.0,103.0,97.0,107.0,111.0,103.0,127.0,112.0,125.0,128.0,135.0,128.0,118.0,128.0,174.0,133.0,160.0,123.0,110.0,104.0,140.0,158.0,145.0,146.0,131.0,135.0,138.0,123.0,128.0,136.0,125.0,138.0,114.0,101.0,98.0,88.0,86.0,97.0,92.0,82.0,69.0,65.0,70.0,57.0,83.0,61.0,70.0,86.0,73.0,54.0,76.0,54.0,52.0,46.0,40.0,38.0,23.0,20.0,21.0,24.0,16.0,23.0,13.0,8.0,9.0,16.0 E82105,28.0,25.0,36.0,35.0,32.0,31.0,24.0,24.0,31.0,42.0,38.0,35.0,25.0,42.0,30.0,42.0,28.0,48.0,37.0,31.0,23.0,27.0,33.0,25.0,29.0,37.0,29.0,28.0,32.0,23.0,19.0,26.0,31.0,40.0,30.0,38.0,41.0,40.0,44.0,39.0,31.0,33.0,47.0,44.0,36.0,37.0,34.0,38.0,45.0,35.0,52.0,41.0,34.0,33.0,40.0,32.0,36.0,43.0,26.0,34.0,28.0,32.0,21.0,24.0,19.0,24.0,19.0,22.0,19.0,19.0,13.0,19.0,14.0,19.0,12.0,10.0,11.0,21.0,11.0,18.0,5.0,13.0,9.0,6.0,4.0,4.0,2.0,5.0,4.0,3.0,2.0,3.0,,1.0,3.0,2.0 E82106,40.0,52.0,55.0,62.0,65.0,71.0,69.0,91.0,98.0,98.0,98.0,95.0,98.0,95.0,101.0,77.0,93.0,98.0,74.0,67.0,73.0,66.0,57.0,68.0,62.0,82.0,79.0,73.0,79.0,60.0,60.0,59.0,58.0,60.0,87.0,82.0,62.0,77.0,74.0,73.0,88.0,82.0,101.0,117.0,107.0,127.0,108.0,116.0,120.0,103.0,105.0,105.0,102.0,102.0,95.0,100.0,81.0,102.0,107.0,94.0,80.0,92.0,82.0,98.0,82.0,79.0,79.0,89.0,59.0,57.0,73.0,62.0,60.0,67.0,54.0,56.0,73.0,71.0,54.0,37.0,64.0,45.0,39.0,32.0,27.0,16.0,27.0,19.0,32.0,23.0,24.0,10.0,15.0,8.0,3.0,16.0 E82107,53.0,64.0,64.0,63.0,58.0,56.0,85.0,58.0,67.0,58.0,84.0,66.0,72.0,77.0,90.0,73.0,78.0,82.0,62.0,56.0,57.0,59.0,49.0,49.0,53.0,64.0,54.0,69.0,71.0,60.0,73.0,65.0,74.0,71.0,75.0,82.0,63.0,85.0,67.0,72.0,82.0,78.0,81.0,94.0,84.0,67.0,79.0,71.0,65.0,88.0,74.0,79.0,78.0,76.0,72.0,73.0,76.0,75.0,67.0,56.0,62.0,62.0,53.0,57.0,56.0,69.0,42.0,37.0,44.0,41.0,32.0,39.0,33.0,37.0,32.0,40.0,39.0,27.0,31.0,21.0,16.0,21.0,16.0,17.0,16.0,14.0,16.0,11.0,8.0,11.0,7.0,4.0,3.0,7.0,3.0,1.0 E82111,36.0,42.0,32.0,39.0,28.0,37.0,35.0,33.0,45.0,50.0,44.0,28.0,53.0,28.0,47.0,40.0,40.0,46.0,36.0,42.0,33.0,45.0,41.0,57.0,56.0,66.0,43.0,44.0,67.0,53.0,53.0,59.0,62.0,69.0,67.0,73.0,50.0,55.0,55.0,54.0,43.0,49.0,38.0,47.0,59.0,53.0,34.0,45.0,43.0,32.0,54.0,42.0,34.0,40.0,29.0,33.0,43.0,44.0,36.0,50.0,36.0,29.0,33.0,37.0,35.0,31.0,27.0,23.0,28.0,23.0,32.0,20.0,31.0,21.0,16.0,20.0,16.0,31.0,25.0,22.0,8.0,12.0,15.0,6.0,7.0,9.0,4.0,9.0,2.0,1.0,2.0,4.0,,3.0,1.0,2.0 E82113,43.0,29.0,43.0,41.0,43.0,52.0,46.0,47.0,55.0,49.0,53.0,52.0,44.0,44.0,58.0,63.0,41.0,37.0,37.0,48.0,42.0,24.0,28.0,42.0,40.0,39.0,47.0,51.0,41.0,49.0,48.0,50.0,60.0,51.0,55.0,57.0,58.0,66.0,50.0,71.0,67.0,49.0,51.0,61.0,64.0,67.0,50.0,49.0,56.0,73.0,64.0,54.0,54.0,62.0,57.0,42.0,72.0,41.0,38.0,43.0,46.0,39.0,42.0,35.0,28.0,42.0,39.0,31.0,30.0,32.0,22.0,25.0,33.0,19.0,21.0,23.0,17.0,15.0,27.0,20.0,21.0,11.0,13.0,9.0,7.0,10.0,5.0,7.0,9.0,9.0,7.0,3.0,2.0,3.0,1.0,1.0 E82115,40.0,41.0,36.0,44.0,35.0,42.0,53.0,46.0,49.0,48.0,55.0,74.0,53.0,70.0,73.0,70.0,69.0,66.0,87.0,53.0,55.0,55.0,66.0,81.0,70.0,70.0,63.0,69.0,77.0,76.0,77.0,72.0,53.0,100.0,72.0,73.0,87.0,84.0,69.0,64.0,75.0,66.0,78.0,69.0,70.0,79.0,72.0,82.0,58.0,43.0,62.0,64.0,74.0,70.0,62.0,72.0,71.0,54.0,63.0,77.0,78.0,72.0,86.0,97.0,78.0,75.0,52.0,60.0,64.0,57.0,45.0,53.0,53.0,37.0,47.0,35.0,43.0,39.0,57.0,33.0,37.0,23.0,32.0,22.0,16.0,13.0,16.0,13.0,7.0,17.0,13.0,8.0,5.0,4.0,2.0,5.0 E82117,56.0,63.0,57.0,76.0,87.0,95.0,69.0,82.0,90.0,88.0,90.0,117.0,94.0,96.0,105.0,87.0,108.0,87.0,89.0,58.0,72.0,72.0,57.0,71.0,53.0,81.0,80.0,76.0,72.0,73.0,98.0,76.0,91.0,103.0,101.0,108.0,120.0,111.0,94.0,126.0,113.0,113.0,119.0,118.0,97.0,106.0,143.0,113.0,109.0,108.0,96.0,91.0,90.0,81.0,82.0,83.0,80.0,77.0,76.0,86.0,82.0,69.0,73.0,70.0,50.0,48.0,49.0,41.0,41.0,43.0,40.0,35.0,43.0,31.0,23.0,31.0,33.0,30.0,28.0,20.0,23.0,26.0,11.0,12.0,15.0,25.0,12.0,9.0,9.0,8.0,6.0,9.0,5.0,1.0,,11.0 E82121,17.0,20.0,14.0,23.0,21.0,27.0,35.0,33.0,19.0,19.0,32.0,31.0,26.0,34.0,31.0,28.0,30.0,26.0,33.0,31.0,26.0,32.0,25.0,32.0,32.0,25.0,32.0,22.0,22.0,27.0,27.0,33.0,25.0,30.0,32.0,31.0,28.0,32.0,32.0,37.0,27.0,36.0,36.0,35.0,32.0,32.0,36.0,29.0,20.0,40.0,38.0,39.0,28.0,35.0,42.0,47.0,38.0,35.0,38.0,40.0,52.0,45.0,37.0,44.0,27.0,36.0,35.0,33.0,31.0,26.0,24.0,34.0,23.0,31.0,25.0,29.0,19.0,32.0,36.0,21.0,24.0,18.0,10.0,10.0,12.0,19.0,10.0,11.0,8.0,6.0,9.0,1.0,4.0,1.0,3.0,4.0 E82123,30.0,46.0,36.0,62.0,43.0,41.0,53.0,48.0,59.0,54.0,51.0,54.0,55.0,57.0,78.0,52.0,58.0,53.0,59.0,48.0,51.0,47.0,54.0,62.0,46.0,69.0,51.0,59.0,52.0,61.0,64.0,61.0,59.0,64.0,64.0,71.0,59.0,76.0,72.0,72.0,78.0,56.0,71.0,58.0,72.0,68.0,61.0,56.0,64.0,49.0,67.0,60.0,57.0,58.0,57.0,48.0,77.0,60.0,58.0,63.0,58.0,49.0,58.0,64.0,56.0,55.0,48.0,41.0,51.0,36.0,30.0,32.0,38.0,29.0,48.0,40.0,33.0,51.0,48.0,37.0,33.0,28.0,28.0,16.0,16.0,18.0,20.0,16.0,24.0,21.0,9.0,3.0,10.0,8.0,2.0,5.0 E82124,149.0,179.0,156.0,202.0,193.0,191.0,221.0,204.0,185.0,184.0,202.0,214.0,220.0,202.0,212.0,231.0,221.0,219.0,203.0,159.0,174.0,189.0,179.0,177.0,185.0,183.0,181.0,208.0,183.0,225.0,202.0,207.0,224.0,252.0,258.0,250.0,256.0,258.0,259.0,253.0,274.0,262.0,268.0,270.0,266.0,287.0,268.0,248.0,234.0,255.0,261.0,238.0,239.0,240.0,237.0,225.0,213.0,228.0,212.0,225.0,199.0,191.0,184.0,154.0,146.0,145.0,146.0,158.0,129.0,114.0,132.0,105.0,111.0,106.0,95.0,84.0,95.0,106.0,123.0,88.0,84.0,52.0,80.0,58.0,43.0,42.0,46.0,38.0,37.0,31.0,21.0,18.0,16.0,11.0,2.0,24.0 E82129,80.0,76.0,86.0,72.0,78.0,100.0,90.0,88.0,86.0,101.0,85.0,95.0,109.0,92.0,104.0,99.0,79.0,100.0,81.0,79.0,84.0,76.0,72.0,85.0,76.0,78.0,52.0,90.0,88.0,69.0,78.0,90.0,102.0,82.0,114.0,107.0,106.0,102.0,123.0,99.0,95.0,85.0,92.0,98.0,100.0,108.0,109.0,97.0,111.0,121.0,118.0,85.0,112.0,113.0,114.0,99.0,100.0,137.0,119.0,132.0,122.0,108.0,98.0,95.0,100.0,66.0,73.0,82.0,87.0,86.0,71.0,68.0,53.0,63.0,51.0,60.0,70.0,64.0,69.0,58.0,57.0,59.0,44.0,34.0,31.0,29.0,32.0,16.0,12.0,17.0,10.0,14.0,12.0,9.0,6.0,7.0 E82133,72.0,92.0,77.0,68.0,62.0,71.0,60.0,68.0,63.0,50.0,60.0,50.0,49.0,51.0,52.0,54.0,40.0,52.0,51.0,53.0,62.0,43.0,36.0,50.0,54.0,45.0,41.0,53.0,60.0,70.0,66.0,86.0,82.0,87.0,73.0,86.0,90.0,81.0,88.0,78.0,83.0,64.0,67.0,81.0,62.0,65.0,61.0,60.0,64.0,66.0,51.0,60.0,41.0,42.0,47.0,53.0,53.0,53.0,53.0,38.0,35.0,41.0,32.0,45.0,39.0,40.0,35.0,29.0,24.0,24.0,25.0,23.0,21.0,17.0,19.0,19.0,21.0,23.0,22.0,15.0,20.0,14.0,16.0,12.0,13.0,8.0,11.0,7.0,10.0,7.0,6.0,1.0,2.0,3.0,1.0,5.0 E82626,6.0,6.0,9.0,6.0,18.0,13.0,17.0,27.0,17.0,24.0,19.0,21.0,23.0,22.0,21.0,19.0,17.0,24.0,13.0,17.0,5.0,17.0,13.0,12.0,13.0,12.0,11.0,15.0,14.0,18.0,8.0,13.0,11.0,18.0,12.0,18.0,13.0,14.0,20.0,14.0,18.0,13.0,15.0,19.0,15.0,21.0,13.0,21.0,18.0,16.0,25.0,19.0,24.0,25.0,21.0,27.0,20.0,27.0,16.0,33.0,27.0,23.0,21.0,19.0,23.0,19.0,18.0,20.0,20.0,16.0,17.0,13.0,15.0,14.0,11.0,17.0,10.0,19.0,17.0,7.0,10.0,10.0,8.0,8.0,5.0,7.0,4.0,4.0,8.0,3.0,2.0,2.0,3.0,3.0,,4.0 E82638,45.0,45.0,48.0,46.0,54.0,47.0,31.0,40.0,53.0,39.0,41.0,37.0,40.0,40.0,58.0,40.0,42.0,46.0,45.0,35.0,33.0,29.0,52.0,40.0,40.0,39.0,46.0,53.0,41.0,44.0,44.0,61.0,62.0,69.0,48.0,54.0,71.0,65.0,67.0,55.0,67.0,69.0,62.0,58.0,57.0,47.0,56.0,31.0,55.0,45.0,55.0,41.0,43.0,44.0,36.0,44.0,40.0,47.0,45.0,31.0,44.0,37.0,40.0,26.0,31.0,31.0,23.0,27.0,18.0,25.0,21.0,16.0,14.0,21.0,16.0,10.0,10.0,18.0,16.0,9.0,9.0,9.0,5.0,6.0,6.0,2.0,4.0,4.0,7.0,2.0,2.0,1.0,3.0,,2.0,2.0 E82643,14.0,13.0,13.0,14.0,11.0,17.0,12.0,23.0,15.0,18.0,16.0,15.0,15.0,17.0,14.0,24.0,14.0,22.0,13.0,15.0,14.0,15.0,12.0,12.0,13.0,7.0,17.0,5.0,9.0,21.0,16.0,20.0,16.0,18.0,20.0,12.0,22.0,20.0,22.0,19.0,24.0,12.0,12.0,22.0,22.0,19.0,23.0,21.0,19.0,15.0,18.0,17.0,21.0,17.0,17.0,19.0,17.0,19.0,25.0,23.0,19.0,29.0,11.0,26.0,18.0,14.0,13.0,15.0,14.0,15.0,14.0,8.0,15.0,13.0,14.0,12.0,12.0,10.0,16.0,5.0,17.0,10.0,6.0,7.0,7.0,9.0,4.0,6.0,4.0,1.0,3.0,,1.0,1.0,1.0,3.0 E82652,20.0,18.0,13.0,25.0,18.0,14.0,29.0,22.0,19.0,21.0,24.0,18.0,21.0,20.0,22.0,17.0,16.0,17.0,15.0,12.0,15.0,12.0,11.0,12.0,14.0,13.0,17.0,16.0,12.0,16.0,18.0,20.0,23.0,20.0,31.0,24.0,32.0,27.0,33.0,31.0,28.0,34.0,25.0,29.0,31.0,27.0,21.0,25.0,32.0,21.0,28.0,27.0,18.0,20.0,28.0,17.0,25.0,18.0,19.0,23.0,21.0,27.0,14.0,16.0,16.0,15.0,16.0,13.0,13.0,13.0,12.0,16.0,14.0,15.0,19.0,15.0,17.0,10.0,18.0,9.0,14.0,4.0,10.0,6.0,10.0,4.0,4.0,6.0,,5.0,2.0,4.0,,3.0,1.0,2.0 E82654,69.0,64.0,71.0,82.0,72.0,73.0,73.0,86.0,71.0,82.0,81.0,82.0,80.0,68.0,71.0,71.0,57.0,62.0,55.0,40.0,38.0,52.0,41.0,48.0,62.0,45.0,60.0,53.0,54.0,69.0,75.0,82.0,78.0,97.0,93.0,89.0,83.0,85.0,92.0,88.0,98.0,82.0,85.0,96.0,86.0,102.0,99.0,74.0,81.0,79.0,76.0,76.0,56.0,70.0,57.0,60.0,57.0,58.0,51.0,42.0,39.0,36.0,40.0,27.0,39.0,37.0,31.0,35.0,27.0,25.0,20.0,25.0,27.0,14.0,21.0,26.0,23.0,31.0,31.0,14.0,18.0,12.0,18.0,7.0,9.0,8.0,7.0,9.0,3.0,4.0,3.0,4.0,3.0,4.0,1.0,1.0 E82655,17.0,24.0,21.0,32.0,32.0,16.0,23.0,25.0,19.0,18.0,28.0,38.0,18.0,27.0,24.0,32.0,27.0,27.0,21.0,24.0,25.0,26.0,27.0,38.0,25.0,32.0,26.0,27.0,35.0,27.0,29.0,43.0,32.0,38.0,39.0,38.0,30.0,33.0,26.0,37.0,28.0,36.0,35.0,34.0,39.0,34.0,15.0,21.0,40.0,26.0,25.0,19.0,36.0,22.0,31.0,32.0,23.0,31.0,16.0,21.0,19.0,21.0,22.0,14.0,19.0,18.0,22.0,13.0,21.0,14.0,14.0,10.0,6.0,10.0,12.0,13.0,4.0,7.0,14.0,3.0,7.0,7.0,3.0,1.0,7.0,5.0,5.0,,1.0,4.0,1.0,,1.0,,,3.0 E82657,18.0,18.0,28.0,26.0,35.0,30.0,30.0,33.0,35.0,33.0,43.0,46.0,35.0,50.0,39.0,42.0,47.0,40.0,49.0,45.0,33.0,30.0,38.0,23.0,52.0,48.0,27.0,47.0,43.0,28.0,26.0,30.0,36.0,34.0,41.0,27.0,27.0,36.0,38.0,36.0,40.0,39.0,35.0,34.0,35.0,31.0,39.0,39.0,37.0,51.0,36.0,42.0,51.0,46.0,33.0,34.0,45.0,36.0,38.0,39.0,45.0,38.0,47.0,26.0,41.0,33.0,34.0,28.0,20.0,23.0,23.0,29.0,28.0,35.0,32.0,20.0,23.0,29.0,33.0,25.0,22.0,23.0,22.0,24.0,13.0,17.0,20.0,21.0,9.0,13.0,5.0,5.0,5.0,5.0,6.0,4.0 E82661,38.0,39.0,51.0,54.0,57.0,63.0,53.0,51.0,58.0,48.0,54.0,57.0,68.0,49.0,41.0,40.0,45.0,49.0,55.0,43.0,48.0,50.0,47.0,43.0,39.0,54.0,42.0,45.0,62.0,55.0,45.0,55.0,58.0,58.0,60.0,64.0,55.0,73.0,64.0,74.0,54.0,83.0,55.0,64.0,67.0,58.0,67.0,63.0,58.0,63.0,62.0,66.0,72.0,59.0,55.0,54.0,47.0,55.0,55.0,65.0,39.0,46.0,39.0,45.0,45.0,41.0,44.0,28.0,23.0,35.0,25.0,23.0,20.0,27.0,29.0,24.0,14.0,24.0,21.0,14.0,25.0,18.0,15.0,13.0,11.0,8.0,17.0,9.0,5.0,9.0,9.0,4.0,4.0,2.0,2.0,5.0 F81004,14.0,22.0,38.0,36.0,39.0,44.0,54.0,50.0,61.0,68.0,58.0,43.0,54.0,56.0,63.0,65.0,50.0,62.0,64.0,59.0,47.0,57.0,58.0,61.0,68.0,49.0,38.0,49.0,49.0,39.0,46.0,30.0,48.0,36.0,42.0,38.0,58.0,47.0,43.0,61.0,43.0,54.0,47.0,61.0,61.0,66.0,71.0,54.0,68.0,55.0,60.0,70.0,70.0,67.0,78.0,70.0,76.0,75.0,76.0,67.0,90.0,88.0,73.0,81.0,66.0,63.0,69.0,59.0,51.0,56.0,43.0,46.0,47.0,37.0,36.0,44.0,35.0,52.0,48.0,32.0,48.0,32.0,29.0,21.0,15.0,18.0,18.0,15.0,10.0,6.0,6.0,10.0,5.0,3.0,3.0,4.0 F81009,39.0,45.0,46.0,60.0,52.0,70.0,57.0,64.0,76.0,53.0,53.0,91.0,67.0,67.0,77.0,56.0,75.0,75.0,71.0,51.0,36.0,51.0,46.0,59.0,52.0,47.0,66.0,60.0,47.0,55.0,52.0,63.0,60.0,80.0,55.0,84.0,69.0,68.0,78.0,83.0,72.0,81.0,70.0,84.0,79.0,72.0,73.0,79.0,75.0,58.0,74.0,78.0,72.0,80.0,65.0,66.0,72.0,86.0,84.0,73.0,66.0,64.0,85.0,68.0,75.0,63.0,69.0,46.0,59.0,70.0,64.0,54.0,58.0,41.0,60.0,55.0,64.0,56.0,55.0,37.0,49.0,43.0,32.0,27.0,20.0,18.0,25.0,15.0,13.0,11.0,18.0,11.0,7.0,8.0,8.0,9.0 F81015,47.0,48.0,76.0,64.0,66.0,75.0,77.0,76.0,86.0,78.0,75.0,75.0,89.0,76.0,93.0,76.0,96.0,102.0,90.0,75.0,51.0,58.0,61.0,46.0,55.0,45.0,63.0,64.0,52.0,59.0,45.0,76.0,77.0,68.0,72.0,62.0,81.0,99.0,88.0,77.0,76.0,83.0,87.0,71.0,87.0,84.0,91.0,89.0,91.0,90.0,86.0,76.0,90.0,104.0,86.0,102.0,84.0,104.0,89.0,75.0,89.0,82.0,106.0,75.0,75.0,84.0,75.0,66.0,46.0,62.0,57.0,65.0,63.0,68.0,40.0,65.0,51.0,61.0,55.0,40.0,35.0,48.0,29.0,39.0,30.0,26.0,18.0,24.0,12.0,12.0,13.0,11.0,11.0,3.0,5.0,13.0 F81027,99.0,113.0,145.0,118.0,121.0,126.0,125.0,135.0,152.0,160.0,151.0,169.0,172.0,168.0,124.0,144.0,152.0,149.0,134.0,126.0,144.0,116.0,112.0,126.0,129.0,108.0,111.0,129.0,150.0,138.0,160.0,178.0,171.0,176.0,172.0,181.0,170.0,164.0,173.0,180.0,204.0,149.0,188.0,211.0,175.0,156.0,164.0,145.0,136.0,140.0,143.0,137.0,145.0,124.0,146.0,125.0,139.0,138.0,134.0,133.0,131.0,139.0,103.0,108.0,92.0,82.0,99.0,73.0,89.0,69.0,70.0,68.0,42.0,53.0,58.0,51.0,56.0,62.0,56.0,41.0,47.0,46.0,34.0,32.0,32.0,42.0,26.0,24.0,19.0,8.0,7.0,15.0,9.0,5.0,6.0,7.0 F81034,37.0,49.0,45.0,41.0,40.0,42.0,60.0,41.0,57.0,57.0,56.0,63.0,69.0,68.0,73.0,60.0,59.0,55.0,41.0,46.0,36.0,41.0,48.0,40.0,40.0,42.0,49.0,40.0,34.0,42.0,60.0,44.0,42.0,35.0,46.0,45.0,47.0,48.0,51.0,46.0,59.0,49.0,57.0,69.0,58.0,60.0,64.0,65.0,64.0,66.0,51.0,64.0,72.0,56.0,77.0,63.0,77.0,84.0,71.0,61.0,68.0,59.0,68.0,69.0,64.0,89.0,63.0,54.0,57.0,55.0,50.0,65.0,56.0,58.0,55.0,55.0,58.0,57.0,62.0,44.0,36.0,43.0,30.0,24.0,25.0,31.0,21.0,20.0,20.0,11.0,7.0,11.0,5.0,6.0,6.0,6.0 F81043,60.0,91.0,86.0,98.0,86.0,105.0,104.0,99.0,96.0,106.0,100.0,78.0,102.0,106.0,104.0,109.0,111.0,112.0,89.0,105.0,89.0,92.0,95.0,95.0,99.0,91.0,107.0,70.0,97.0,98.0,106.0,86.0,80.0,95.0,91.0,98.0,106.0,120.0,107.0,109.0,117.0,101.0,77.0,113.0,115.0,109.0,100.0,120.0,109.0,100.0,119.0,114.0,122.0,138.0,139.0,141.0,157.0,136.0,123.0,131.0,130.0,137.0,132.0,121.0,114.0,130.0,109.0,115.0,79.0,96.0,73.0,91.0,85.0,85.0,87.0,101.0,99.0,88.0,120.0,77.0,82.0,67.0,62.0,52.0,44.0,36.0,38.0,32.0,30.0,25.0,25.0,20.0,21.0,12.0,5.0,18.0 F81047,55.0,74.0,63.0,59.0,85.0,61.0,65.0,71.0,72.0,78.0,74.0,66.0,73.0,75.0,71.0,85.0,79.0,85.0,74.0,61.0,79.0,66.0,60.0,69.0,51.0,76.0,73.0,65.0,67.0,71.0,56.0,74.0,79.0,81.0,80.0,90.0,74.0,88.0,86.0,82.0,89.0,98.0,81.0,73.0,72.0,71.0,82.0,62.0,68.0,57.0,60.0,55.0,67.0,70.0,70.0,51.0,61.0,66.0,77.0,74.0,69.0,68.0,69.0,86.0,69.0,67.0,55.0,56.0,42.0,44.0,57.0,32.0,42.0,41.0,33.0,38.0,37.0,37.0,37.0,24.0,18.0,9.0,12.0,15.0,15.0,11.0,13.0,15.0,18.0,4.0,4.0,7.0,5.0,4.0,4.0,9.0 F81048,44.0,35.0,43.0,30.0,48.0,46.0,41.0,40.0,43.0,46.0,49.0,55.0,60.0,56.0,61.0,65.0,55.0,79.0,62.0,56.0,66.0,58.0,76.0,47.0,59.0,69.0,51.0,66.0,66.0,54.0,62.0,61.0,77.0,56.0,54.0,76.0,53.0,66.0,70.0,54.0,56.0,66.0,55.0,70.0,82.0,68.0,69.0,69.0,63.0,49.0,64.0,71.0,73.0,71.0,79.0,77.0,72.0,77.0,81.0,76.0,90.0,69.0,59.0,64.0,72.0,75.0,63.0,53.0,49.0,44.0,41.0,37.0,54.0,31.0,38.0,43.0,33.0,49.0,48.0,23.0,40.0,37.0,35.0,14.0,32.0,31.0,31.0,19.0,14.0,13.0,4.0,7.0,8.0,,3.0,3.0 F81049,51.0,49.0,63.0,58.0,68.0,93.0,68.0,82.0,69.0,80.0,68.0,79.0,76.0,83.0,86.0,74.0,76.0,68.0,74.0,68.0,63.0,52.0,49.0,63.0,91.0,65.0,74.0,71.0,68.0,59.0,70.0,67.0,76.0,61.0,79.0,80.0,49.0,72.0,81.0,68.0,80.0,74.0,81.0,65.0,64.0,85.0,62.0,62.0,56.0,81.0,75.0,72.0,83.0,81.0,98.0,79.0,81.0,84.0,109.0,83.0,95.0,104.0,89.0,95.0,95.0,88.0,69.0,69.0,85.0,83.0,65.0,78.0,59.0,44.0,59.0,61.0,83.0,77.0,74.0,42.0,60.0,37.0,45.0,39.0,27.0,29.0,22.0,23.0,15.0,22.0,13.0,16.0,10.0,10.0,6.0,12.0 F81053,113.0,119.0,109.0,128.0,133.0,133.0,138.0,125.0,154.0,138.0,143.0,141.0,131.0,153.0,145.0,117.0,135.0,118.0,110.0,111.0,85.0,91.0,100.0,95.0,95.0,101.0,93.0,126.0,104.0,98.0,129.0,145.0,141.0,152.0,135.0,151.0,146.0,148.0,147.0,153.0,151.0,165.0,144.0,164.0,160.0,156.0,154.0,122.0,127.0,135.0,120.0,128.0,122.0,153.0,159.0,138.0,146.0,140.0,156.0,137.0,124.0,131.0,125.0,129.0,119.0,98.0,95.0,105.0,102.0,87.0,92.0,86.0,75.0,74.0,77.0,67.0,73.0,92.0,101.0,54.0,64.0,47.0,43.0,40.0,35.0,32.0,34.0,31.0,22.0,16.0,19.0,8.0,12.0,7.0,5.0,6.0 F81056,82.0,89.0,96.0,91.0,65.0,84.0,80.0,66.0,65.0,73.0,64.0,64.0,62.0,68.0,51.0,79.0,66.0,67.0,52.0,55.0,51.0,50.0,51.0,48.0,58.0,59.0,65.0,67.0,54.0,74.0,76.0,90.0,90.0,106.0,87.0,95.0,97.0,94.0,89.0,105.0,92.0,96.0,89.0,82.0,88.0,89.0,77.0,87.0,72.0,61.0,65.0,57.0,70.0,69.0,80.0,68.0,67.0,65.0,69.0,79.0,59.0,79.0,61.0,74.0,73.0,74.0,41.0,48.0,55.0,60.0,56.0,45.0,53.0,54.0,51.0,45.0,40.0,41.0,49.0,37.0,23.0,37.0,20.0,24.0,20.0,17.0,16.0,16.0,12.0,9.0,9.0,10.0,5.0,2.0,5.0,8.0 F81062,38.0,41.0,42.0,55.0,54.0,71.0,55.0,51.0,60.0,64.0,53.0,55.0,52.0,58.0,52.0,53.0,57.0,54.0,45.0,47.0,51.0,54.0,45.0,45.0,46.0,49.0,42.0,62.0,64.0,79.0,55.0,69.0,67.0,58.0,64.0,57.0,61.0,62.0,69.0,52.0,79.0,78.0,83.0,63.0,75.0,58.0,75.0,72.0,83.0,58.0,49.0,50.0,56.0,60.0,61.0,43.0,51.0,51.0,44.0,45.0,57.0,44.0,44.0,43.0,52.0,37.0,31.0,40.0,30.0,46.0,31.0,27.0,40.0,24.0,33.0,33.0,42.0,35.0,34.0,28.0,28.0,19.0,25.0,17.0,15.0,17.0,15.0,16.0,11.0,11.0,11.0,6.0,11.0,4.0,3.0,10.0 F81072,57.0,56.0,50.0,64.0,54.0,51.0,52.0,54.0,39.0,54.0,42.0,44.0,62.0,38.0,39.0,52.0,36.0,34.0,30.0,26.0,40.0,33.0,25.0,47.0,34.0,34.0,45.0,39.0,63.0,47.0,67.0,53.0,53.0,61.0,65.0,62.0,54.0,70.0,54.0,58.0,44.0,70.0,61.0,64.0,63.0,49.0,64.0,46.0,60.0,56.0,62.0,54.0,64.0,49.0,47.0,48.0,45.0,47.0,64.0,50.0,65.0,55.0,40.0,50.0,40.0,40.0,46.0,37.0,37.0,37.0,30.0,34.0,39.0,35.0,35.0,36.0,36.0,38.0,43.0,28.0,32.0,23.0,23.0,13.0,16.0,11.0,13.0,6.0,12.0,1.0,3.0,3.0,9.0,4.0,1.0,3.0 F81078,64.0,60.0,87.0,91.0,75.0,65.0,87.0,85.0,78.0,95.0,79.0,93.0,82.0,79.0,92.0,93.0,89.0,85.0,80.0,67.0,72.0,75.0,67.0,73.0,50.0,74.0,62.0,63.0,64.0,69.0,68.0,82.0,80.0,83.0,79.0,78.0,84.0,93.0,101.0,98.0,90.0,96.0,98.0,104.0,82.0,92.0,87.0,94.0,66.0,88.0,88.0,79.0,86.0,81.0,83.0,80.0,72.0,81.0,84.0,72.0,69.0,57.0,59.0,61.0,58.0,51.0,42.0,51.0,42.0,38.0,47.0,40.0,32.0,36.0,30.0,17.0,43.0,29.0,46.0,18.0,29.0,21.0,17.0,15.0,9.0,13.0,10.0,12.0,8.0,8.0,2.0,,2.0,5.0,2.0,3.0 F81090,59.0,54.0,77.0,62.0,59.0,91.0,75.0,75.0,61.0,79.0,64.0,77.0,58.0,73.0,83.0,76.0,61.0,70.0,62.0,56.0,59.0,40.0,67.0,43.0,45.0,63.0,67.0,50.0,52.0,70.0,70.0,62.0,72.0,87.0,78.0,70.0,71.0,75.0,60.0,55.0,76.0,66.0,72.0,79.0,79.0,75.0,61.0,69.0,64.0,64.0,72.0,83.0,76.0,81.0,75.0,89.0,92.0,80.0,74.0,82.0,77.0,82.0,76.0,66.0,79.0,63.0,63.0,75.0,66.0,62.0,46.0,48.0,46.0,55.0,59.0,50.0,55.0,59.0,48.0,47.0,48.0,39.0,29.0,34.0,28.0,26.0,17.0,16.0,13.0,8.0,10.0,7.0,12.0,5.0,2.0,9.0 F81106,55.0,56.0,63.0,79.0,66.0,69.0,75.0,85.0,79.0,86.0,94.0,84.0,80.0,83.0,67.0,75.0,71.0,80.0,84.0,48.0,72.0,66.0,61.0,55.0,57.0,68.0,59.0,58.0,63.0,71.0,72.0,83.0,74.0,62.0,80.0,79.0,84.0,89.0,101.0,91.0,80.0,71.0,84.0,76.0,88.0,74.0,81.0,62.0,55.0,59.0,51.0,59.0,43.0,46.0,74.0,67.0,57.0,57.0,77.0,63.0,64.0,59.0,68.0,74.0,70.0,49.0,55.0,48.0,47.0,54.0,51.0,53.0,39.0,23.0,22.0,28.0,25.0,26.0,30.0,16.0,22.0,16.0,12.0,13.0,11.0,12.0,11.0,12.0,7.0,3.0,8.0,3.0,6.0,2.0,2.0,6.0 F81118,62.0,60.0,63.0,67.0,90.0,99.0,84.0,96.0,106.0,101.0,87.0,89.0,105.0,102.0,141.0,109.0,91.0,99.0,125.0,88.0,63.0,83.0,72.0,75.0,69.0,86.0,71.0,71.0,84.0,72.0,82.0,66.0,84.0,72.0,87.0,81.0,75.0,75.0,87.0,89.0,82.0,93.0,91.0,87.0,98.0,97.0,95.0,94.0,75.0,89.0,69.0,88.0,113.0,107.0,125.0,92.0,99.0,96.0,111.0,132.0,102.0,91.0,110.0,95.0,84.0,87.0,104.0,83.0,70.0,79.0,63.0,70.0,53.0,59.0,54.0,59.0,61.0,57.0,61.0,38.0,48.0,34.0,41.0,35.0,24.0,25.0,27.0,24.0,14.0,9.0,15.0,15.0,6.0,5.0,12.0,5.0 F81120,65.0,66.0,74.0,61.0,70.0,76.0,76.0,86.0,80.0,100.0,88.0,94.0,102.0,88.0,115.0,71.0,101.0,99.0,99.0,83.0,51.0,77.0,68.0,59.0,81.0,69.0,77.0,85.0,99.0,84.0,80.0,106.0,93.0,80.0,104.0,96.0,101.0,110.0,103.0,95.0,102.0,95.0,113.0,108.0,101.0,115.0,91.0,85.0,88.0,86.0,83.0,84.0,83.0,81.0,70.0,67.0,74.0,74.0,89.0,75.0,88.0,87.0,87.0,86.0,56.0,74.0,61.0,76.0,56.0,65.0,58.0,51.0,56.0,44.0,40.0,30.0,32.0,51.0,43.0,33.0,29.0,19.0,24.0,13.0,18.0,14.0,11.0,11.0,9.0,8.0,5.0,4.0,5.0,6.0,1.0,10.0 F81131,32.0,38.0,53.0,45.0,45.0,53.0,62.0,40.0,56.0,54.0,51.0,51.0,51.0,62.0,58.0,41.0,50.0,44.0,57.0,51.0,46.0,48.0,43.0,54.0,47.0,49.0,45.0,37.0,44.0,41.0,42.0,53.0,49.0,53.0,59.0,53.0,42.0,46.0,44.0,52.0,59.0,56.0,56.0,44.0,57.0,45.0,60.0,59.0,50.0,50.0,63.0,53.0,66.0,68.0,66.0,78.0,80.0,70.0,68.0,74.0,70.0,65.0,75.0,70.0,61.0,63.0,59.0,54.0,59.0,62.0,40.0,43.0,52.0,37.0,48.0,42.0,46.0,52.0,51.0,50.0,41.0,30.0,25.0,23.0,18.0,33.0,19.0,11.0,18.0,11.0,7.0,9.0,7.0,7.0,2.0,5.0 F81136,100.0,100.0,97.0,120.0,100.0,89.0,109.0,97.0,95.0,91.0,91.0,89.0,86.0,91.0,84.0,80.0,75.0,109.0,72.0,74.0,72.0,63.0,64.0,70.0,81.0,83.0,91.0,96.0,86.0,94.0,101.0,103.0,118.0,114.0,136.0,118.0,140.0,117.0,134.0,119.0,127.0,116.0,122.0,123.0,121.0,137.0,118.0,92.0,104.0,96.0,119.0,101.0,95.0,92.0,88.0,107.0,80.0,75.0,64.0,74.0,104.0,66.0,57.0,65.0,74.0,71.0,66.0,65.0,52.0,43.0,53.0,42.0,32.0,41.0,41.0,47.0,38.0,35.0,32.0,31.0,28.0,30.0,34.0,17.0,17.0,8.0,17.0,10.0,9.0,8.0,7.0,11.0,1.0,4.0,5.0,13.0 F81152,71.0,62.0,80.0,85.0,72.0,79.0,97.0,86.0,62.0,70.0,62.0,73.0,84.0,70.0,87.0,73.0,94.0,78.0,75.0,69.0,49.0,66.0,53.0,57.0,64.0,76.0,82.0,72.0,69.0,73.0,63.0,67.0,79.0,70.0,79.0,80.0,98.0,76.0,108.0,78.0,86.0,93.0,99.0,95.0,117.0,91.0,81.0,79.0,73.0,82.0,80.0,72.0,82.0,69.0,62.0,66.0,61.0,66.0,78.0,78.0,71.0,60.0,78.0,71.0,66.0,60.0,61.0,54.0,42.0,48.0,40.0,37.0,40.0,43.0,43.0,39.0,38.0,45.0,44.0,30.0,24.0,22.0,28.0,18.0,22.0,18.0,15.0,18.0,5.0,5.0,11.0,2.0,5.0,1.0,2.0,5.0 F81165,21.0,25.0,31.0,26.0,26.0,32.0,27.0,30.0,30.0,24.0,33.0,26.0,23.0,25.0,17.0,17.0,24.0,25.0,19.0,28.0,11.0,16.0,27.0,21.0,13.0,20.0,23.0,17.0,28.0,34.0,25.0,27.0,32.0,27.0,36.0,39.0,43.0,28.0,35.0,39.0,44.0,31.0,38.0,32.0,36.0,31.0,24.0,41.0,27.0,33.0,24.0,27.0,34.0,35.0,37.0,35.0,33.0,19.0,32.0,31.0,32.0,36.0,26.0,36.0,43.0,27.0,32.0,26.0,29.0,30.0,27.0,22.0,16.0,20.0,13.0,16.0,18.0,20.0,22.0,13.0,14.0,18.0,9.0,3.0,10.0,6.0,6.0,13.0,5.0,3.0,5.0,6.0,4.0,,2.0,4.0 F81169,39.0,40.0,52.0,44.0,43.0,51.0,45.0,36.0,51.0,54.0,35.0,39.0,42.0,60.0,43.0,53.0,47.0,48.0,53.0,35.0,42.0,35.0,32.0,42.0,41.0,43.0,40.0,38.0,47.0,36.0,43.0,38.0,41.0,48.0,55.0,50.0,46.0,62.0,55.0,64.0,51.0,65.0,60.0,64.0,58.0,65.0,61.0,56.0,62.0,46.0,53.0,59.0,57.0,65.0,59.0,63.0,69.0,51.0,68.0,49.0,57.0,36.0,41.0,39.0,54.0,41.0,35.0,39.0,20.0,29.0,44.0,23.0,35.0,30.0,33.0,32.0,27.0,37.0,25.0,18.0,40.0,30.0,19.0,19.0,14.0,25.0,19.0,11.0,18.0,16.0,7.0,5.0,4.0,5.0,5.0,8.0 F81181,133.0,165.0,149.0,152.0,146.0,161.0,168.0,176.0,199.0,178.0,155.0,147.0,151.0,148.0,148.0,162.0,160.0,145.0,158.0,138.0,119.0,104.0,122.0,127.0,118.0,130.0,158.0,161.0,146.0,169.0,189.0,191.0,212.0,213.0,260.0,233.0,246.0,239.0,273.0,255.0,239.0,257.0,208.0,177.0,193.0,205.0,192.0,169.0,172.0,150.0,143.0,151.0,137.0,135.0,139.0,132.0,132.0,127.0,106.0,129.0,117.0,109.0,114.0,99.0,89.0,94.0,104.0,104.0,89.0,68.0,74.0,53.0,71.0,56.0,52.0,44.0,48.0,49.0,44.0,21.0,35.0,31.0,32.0,15.0,12.0,8.0,11.0,10.0,12.0,8.0,6.0,8.0,8.0,2.0,3.0,4.0 F81184,18.0,16.0,20.0,19.0,20.0,19.0,24.0,21.0,22.0,28.0,25.0,19.0,29.0,25.0,15.0,28.0,22.0,23.0,23.0,25.0,23.0,24.0,21.0,27.0,19.0,22.0,22.0,27.0,22.0,29.0,28.0,25.0,22.0,22.0,22.0,25.0,26.0,21.0,21.0,29.0,25.0,18.0,20.0,28.0,23.0,31.0,28.0,26.0,14.0,23.0,32.0,26.0,22.0,23.0,25.0,25.0,29.0,37.0,32.0,37.0,36.0,34.0,41.0,34.0,42.0,22.0,24.0,29.0,16.0,27.0,29.0,28.0,19.0,34.0,25.0,22.0,22.0,35.0,20.0,15.0,22.0,11.0,16.0,9.0,10.0,8.0,10.0,2.0,6.0,8.0,6.0,2.0,2.0,2.0,1.0,6.0 F81216,17.0,23.0,16.0,24.0,24.0,19.0,26.0,27.0,31.0,25.0,20.0,34.0,28.0,13.0,39.0,32.0,34.0,33.0,41.0,26.0,26.0,25.0,20.0,36.0,25.0,29.0,35.0,29.0,29.0,23.0,29.0,30.0,18.0,26.0,27.0,33.0,27.0,26.0,27.0,25.0,22.0,29.0,29.0,26.0,31.0,32.0,30.0,28.0,24.0,24.0,35.0,25.0,29.0,32.0,37.0,20.0,41.0,32.0,34.0,36.0,32.0,33.0,21.0,17.0,31.0,16.0,26.0,20.0,21.0,13.0,26.0,7.0,15.0,14.0,12.0,13.0,15.0,13.0,23.0,14.0,9.0,9.0,13.0,9.0,5.0,8.0,6.0,5.0,4.0,7.0,4.0,6.0,5.0,4.0,4.0,6.0 F81619,20.0,23.0,20.0,30.0,23.0,29.0,27.0,32.0,25.0,27.0,39.0,31.0,31.0,22.0,30.0,30.0,25.0,28.0,21.0,23.0,23.0,13.0,12.0,16.0,21.0,21.0,28.0,25.0,25.0,21.0,24.0,33.0,27.0,29.0,26.0,41.0,33.0,33.0,35.0,26.0,39.0,27.0,31.0,32.0,23.0,40.0,25.0,31.0,32.0,26.0,24.0,16.0,29.0,20.0,26.0,28.0,24.0,21.0,28.0,23.0,24.0,32.0,22.0,21.0,26.0,29.0,14.0,26.0,27.0,19.0,17.0,14.0,18.0,22.0,17.0,16.0,11.0,18.0,14.0,5.0,7.0,6.0,8.0,9.0,5.0,6.0,2.0,,,4.0,3.0,1.0,2.0,1.0,1.0,3.0 F81725,39.0,48.0,51.0,71.0,48.0,64.0,55.0,69.0,53.0,74.0,60.0,54.0,58.0,64.0,47.0,51.0,55.0,66.0,61.0,57.0,59.0,39.0,72.0,65.0,50.0,44.0,58.0,77.0,55.0,54.0,72.0,59.0,64.0,75.0,84.0,90.0,91.0,75.0,77.0,59.0,63.0,71.0,73.0,69.0,55.0,61.0,56.0,71.0,66.0,60.0,84.0,62.0,76.0,65.0,80.0,77.0,75.0,77.0,70.0,67.0,65.0,51.0,61.0,64.0,65.0,49.0,43.0,40.0,44.0,54.0,35.0,32.0,28.0,26.0,27.0,33.0,29.0,39.0,39.0,29.0,30.0,27.0,30.0,13.0,19.0,14.0,15.0,9.0,16.0,8.0,5.0,3.0,4.0,3.0,5.0,8.0 F81749,78.0,86.0,95.0,93.0,89.0,101.0,102.0,83.0,89.0,84.0,81.0,98.0,97.0,112.0,105.0,105.0,97.0,109.0,87.0,77.0,82.0,71.0,75.0,83.0,65.0,91.0,71.0,75.0,72.0,71.0,92.0,82.0,96.0,99.0,102.0,118.0,117.0,108.0,121.0,121.0,90.0,103.0,98.0,124.0,123.0,124.0,97.0,106.0,95.0,99.0,91.0,83.0,89.0,99.0,101.0,106.0,92.0,96.0,94.0,100.0,100.0,89.0,81.0,101.0,76.0,78.0,68.0,66.0,85.0,66.0,57.0,59.0,39.0,47.0,54.0,57.0,52.0,53.0,61.0,37.0,27.0,39.0,36.0,24.0,24.0,19.0,20.0,19.0,25.0,13.0,15.0,9.0,3.0,6.0,3.0,3.0 Y01924,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,1.0,1.0,,,2.0,,,1.0,1.0,1.0,1.0,,1.0,1.0,,,1.0,1.0,3.0,,,1.0,,1.0,3.0,4.0,1.0,2.0,,2.0,,2.0,1.0,2.0,1.0,2.0,,,,,1.0,1.0,2.0,,1.0,,,,,,,1.0,,,,,,,,1.0,,,,,,,, Y02639,55.0,75.0,49.0,66.0,87.0,81.0,81.0,102.0,86.0,93.0,82.0,84.0,94.0,93.0,79.0,76.0,71.0,65.0,54.0,45.0,30.0,39.0,34.0,46.0,33.0,42.0,34.0,33.0,47.0,46.0,46.0,68.0,66.0,71.0,65.0,99.0,99.0,110.0,114.0,129.0,106.0,106.0,127.0,106.0,108.0,126.0,101.0,86.0,95.0,85.0,70.0,57.0,80.0,53.0,83.0,52.0,51.0,38.0,54.0,38.0,30.0,39.0,30.0,25.0,39.0,34.0,40.0,27.0,33.0,20.0,19.0,17.0,23.0,20.0,19.0,8.0,11.0,16.0,8.0,9.0,9.0,10.0,3.0,5.0,2.0,7.0,7.0,1.0,2.0,2.0,6.0,,1.0,2.0,,2.0 Y06095,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,2.0,1.0,1.0,,1.0,1.0,,,1.0,,1.0,1.0,,,,,,,2.0,,,,1.0,,,,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, Y07016,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,,,,,,1.0,,2.0,,1.0,,1.0,,1.0,1.0,,,,,,1.0,,,,1.0,,,1.0,,,,,1.0,,,,1.0,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 F82001,25.0,27.0,29.0,43.0,32.0,39.0,51.0,33.0,44.0,39.0,45.0,47.0,52.0,46.0,37.0,46.0,40.0,60.0,49.0,52.0,46.0,52.0,49.0,54.0,44.0,42.0,36.0,50.0,40.0,45.0,36.0,39.0,39.0,38.0,40.0,47.0,32.0,39.0,43.0,48.0,49.0,55.0,54.0,46.0,40.0,43.0,47.0,39.0,36.0,44.0,33.0,37.0,50.0,38.0,43.0,39.0,29.0,33.0,34.0,30.0,39.0,33.0,40.0,22.0,27.0,27.0,20.0,15.0,15.0,15.0,18.0,11.0,11.0,7.0,7.0,7.0,5.0,4.0,8.0,3.0,7.0,5.0,4.0,5.0,3.0,5.0,2.0,2.0,3.0,1.0,2.0,,,,,2.0 F82002,30.0,34.0,30.0,26.0,39.0,39.0,36.0,37.0,31.0,51.0,41.0,36.0,45.0,41.0,40.0,37.0,45.0,42.0,29.0,32.0,30.0,30.0,24.0,31.0,31.0,43.0,36.0,41.0,38.0,48.0,37.0,32.0,39.0,36.0,53.0,47.0,54.0,54.0,43.0,51.0,52.0,57.0,48.0,43.0,38.0,40.0,47.0,54.0,51.0,48.0,59.0,35.0,44.0,40.0,47.0,31.0,49.0,49.0,31.0,47.0,48.0,54.0,62.0,77.0,44.0,50.0,42.0,30.0,26.0,41.0,42.0,41.0,49.0,39.0,40.0,34.0,44.0,34.0,43.0,21.0,27.0,19.0,21.0,14.0,11.0,19.0,16.0,11.0,14.0,8.0,1.0,5.0,6.0,4.0,2.0,9.0 F82003,23.0,28.0,34.0,27.0,32.0,42.0,36.0,46.0,41.0,54.0,40.0,51.0,39.0,47.0,47.0,37.0,49.0,41.0,50.0,39.0,42.0,35.0,38.0,36.0,48.0,44.0,46.0,44.0,39.0,34.0,40.0,48.0,40.0,32.0,27.0,38.0,30.0,35.0,43.0,35.0,43.0,37.0,35.0,40.0,32.0,35.0,25.0,37.0,44.0,35.0,23.0,37.0,29.0,34.0,34.0,32.0,41.0,32.0,30.0,29.0,30.0,22.0,28.0,38.0,33.0,32.0,20.0,29.0,21.0,22.0,12.0,14.0,13.0,14.0,10.0,2.0,14.0,14.0,10.0,3.0,8.0,9.0,7.0,2.0,9.0,4.0,7.0,2.0,4.0,5.0,2.0,3.0,1.0,1.0,,1.0 F82005,58.0,42.0,35.0,55.0,51.0,63.0,67.0,76.0,64.0,51.0,61.0,62.0,68.0,56.0,60.0,54.0,55.0,54.0,44.0,47.0,45.0,58.0,41.0,39.0,54.0,41.0,47.0,56.0,63.0,60.0,46.0,59.0,60.0,45.0,50.0,59.0,67.0,51.0,52.0,49.0,62.0,58.0,56.0,63.0,59.0,47.0,45.0,39.0,49.0,40.0,52.0,48.0,45.0,39.0,48.0,44.0,32.0,36.0,42.0,25.0,35.0,26.0,26.0,31.0,23.0,27.0,25.0,15.0,19.0,20.0,10.0,18.0,12.0,13.0,10.0,20.0,12.0,11.0,14.0,9.0,8.0,9.0,5.0,4.0,5.0,7.0,6.0,8.0,3.0,4.0,2.0,2.0,2.0,1.0,1.0,2.0 F82006,46.0,51.0,63.0,68.0,56.0,66.0,58.0,83.0,70.0,89.0,69.0,76.0,76.0,84.0,99.0,75.0,83.0,81.0,81.0,62.0,64.0,71.0,72.0,67.0,85.0,65.0,71.0,66.0,72.0,68.0,71.0,69.0,53.0,59.0,61.0,62.0,68.0,80.0,59.0,73.0,82.0,76.0,77.0,69.0,81.0,80.0,83.0,77.0,91.0,87.0,82.0,94.0,86.0,108.0,93.0,84.0,102.0,92.0,90.0,79.0,88.0,78.0,79.0,72.0,97.0,83.0,84.0,71.0,61.0,52.0,58.0,79.0,54.0,59.0,69.0,67.0,69.0,83.0,87.0,63.0,59.0,59.0,47.0,32.0,34.0,29.0,22.0,34.0,19.0,18.0,21.0,16.0,16.0,15.0,6.0,17.0 F82007,32.0,34.0,46.0,42.0,51.0,42.0,50.0,49.0,46.0,56.0,35.0,59.0,73.0,72.0,62.0,53.0,73.0,78.0,55.0,62.0,48.0,51.0,52.0,60.0,55.0,76.0,62.0,48.0,63.0,58.0,66.0,61.0,61.0,76.0,59.0,70.0,73.0,65.0,50.0,60.0,74.0,72.0,56.0,84.0,80.0,70.0,63.0,52.0,50.0,65.0,57.0,82.0,64.0,68.0,76.0,72.0,76.0,77.0,57.0,69.0,68.0,70.0,70.0,73.0,79.0,62.0,80.0,58.0,59.0,50.0,69.0,36.0,47.0,66.0,49.0,52.0,56.0,57.0,69.0,40.0,52.0,33.0,22.0,26.0,26.0,31.0,23.0,18.0,14.0,6.0,10.0,12.0,8.0,8.0,3.0,11.0 F82008,41.0,49.0,54.0,66.0,58.0,51.0,64.0,73.0,58.0,65.0,78.0,63.0,61.0,67.0,68.0,83.0,75.0,72.0,63.0,60.0,66.0,71.0,66.0,61.0,71.0,81.0,77.0,81.0,72.0,74.0,86.0,77.0,87.0,85.0,79.0,94.0,87.0,83.0,69.0,84.0,71.0,81.0,79.0,84.0,82.0,68.0,66.0,54.0,67.0,66.0,79.0,70.0,94.0,84.0,77.0,83.0,85.0,97.0,96.0,93.0,97.0,94.0,97.0,93.0,92.0,89.0,94.0,94.0,90.0,81.0,76.0,66.0,68.0,66.0,71.0,63.0,50.0,71.0,63.0,46.0,46.0,42.0,38.0,38.0,29.0,22.0,16.0,26.0,20.0,19.0,23.0,9.0,14.0,13.0,3.0,8.0 F82009,143.0,135.0,126.0,129.0,125.0,135.0,132.0,147.0,165.0,141.0,153.0,137.0,140.0,138.0,136.0,140.0,123.0,136.0,129.0,112.0,114.0,126.0,106.0,132.0,129.0,130.0,126.0,150.0,144.0,126.0,142.0,144.0,175.0,162.0,162.0,190.0,169.0,167.0,169.0,167.0,160.0,159.0,172.0,155.0,142.0,165.0,134.0,146.0,128.0,129.0,111.0,135.0,125.0,113.0,108.0,113.0,136.0,107.0,109.0,109.0,114.0,124.0,103.0,86.0,100.0,103.0,92.0,88.0,97.0,67.0,74.0,79.0,75.0,70.0,62.0,65.0,81.0,67.0,86.0,70.0,52.0,48.0,49.0,29.0,37.0,23.0,30.0,19.0,22.0,9.0,11.0,7.0,8.0,7.0,7.0,9.0 F82010,43.0,61.0,50.0,65.0,54.0,58.0,67.0,66.0,75.0,85.0,63.0,63.0,76.0,58.0,57.0,65.0,73.0,58.0,58.0,60.0,36.0,48.0,45.0,39.0,48.0,40.0,58.0,46.0,49.0,43.0,61.0,44.0,51.0,58.0,67.0,63.0,74.0,67.0,74.0,82.0,67.0,78.0,64.0,60.0,60.0,73.0,78.0,65.0,40.0,55.0,58.0,52.0,53.0,69.0,62.0,42.0,56.0,64.0,50.0,45.0,45.0,51.0,54.0,48.0,50.0,40.0,43.0,34.0,37.0,41.0,26.0,25.0,17.0,30.0,32.0,22.0,23.0,30.0,33.0,17.0,6.0,15.0,13.0,8.0,9.0,4.0,6.0,5.0,5.0,6.0,3.0,2.0,4.0,1.0,1.0,1.0 F82011,47.0,50.0,54.0,48.0,62.0,73.0,62.0,57.0,78.0,64.0,65.0,58.0,60.0,57.0,60.0,63.0,58.0,51.0,36.0,52.0,44.0,38.0,59.0,40.0,51.0,55.0,59.0,66.0,49.0,54.0,53.0,72.0,68.0,49.0,81.0,83.0,90.0,67.0,71.0,81.0,74.0,80.0,68.0,89.0,81.0,76.0,62.0,58.0,66.0,57.0,60.0,66.0,54.0,57.0,65.0,58.0,59.0,55.0,74.0,62.0,53.0,73.0,54.0,62.0,45.0,51.0,40.0,39.0,32.0,45.0,45.0,29.0,34.0,34.0,30.0,28.0,27.0,28.0,36.0,19.0,22.0,19.0,19.0,13.0,18.0,13.0,11.0,10.0,16.0,12.0,10.0,6.0,8.0,,3.0,5.0 F82013,96.0,117.0,120.0,112.0,112.0,105.0,112.0,100.0,108.0,117.0,104.0,95.0,96.0,102.0,77.0,106.0,95.0,88.0,77.0,82.0,80.0,80.0,83.0,77.0,95.0,88.0,90.0,119.0,131.0,113.0,109.0,114.0,120.0,167.0,150.0,152.0,157.0,162.0,159.0,156.0,137.0,149.0,163.0,131.0,160.0,118.0,121.0,113.0,114.0,111.0,117.0,106.0,114.0,108.0,92.0,132.0,104.0,125.0,108.0,85.0,111.0,91.0,104.0,109.0,93.0,100.0,89.0,74.0,72.0,75.0,69.0,50.0,66.0,62.0,60.0,71.0,53.0,60.0,71.0,55.0,50.0,48.0,42.0,34.0,29.0,38.0,29.0,27.0,22.0,21.0,15.0,5.0,14.0,8.0,9.0,13.0 F82014,35.0,42.0,41.0,39.0,55.0,58.0,56.0,50.0,53.0,64.0,61.0,66.0,55.0,58.0,54.0,61.0,42.0,58.0,66.0,58.0,38.0,51.0,41.0,45.0,54.0,42.0,52.0,52.0,58.0,50.0,44.0,52.0,46.0,42.0,53.0,58.0,60.0,47.0,49.0,41.0,55.0,62.0,37.0,63.0,65.0,53.0,43.0,39.0,47.0,40.0,42.0,56.0,40.0,47.0,45.0,47.0,52.0,31.0,38.0,48.0,47.0,31.0,52.0,42.0,35.0,39.0,47.0,33.0,21.0,31.0,33.0,25.0,21.0,18.0,24.0,25.0,20.0,27.0,21.0,8.0,13.0,6.0,15.0,14.0,9.0,8.0,11.0,5.0,4.0,8.0,4.0,2.0,,1.0,4.0,2.0 F82015,26.0,24.0,22.0,28.0,24.0,28.0,27.0,34.0,38.0,35.0,38.0,43.0,45.0,47.0,50.0,51.0,44.0,40.0,48.0,37.0,51.0,38.0,43.0,46.0,40.0,32.0,36.0,41.0,49.0,38.0,53.0,41.0,57.0,43.0,47.0,34.0,52.0,40.0,53.0,44.0,49.0,42.0,36.0,45.0,40.0,40.0,35.0,32.0,40.0,43.0,42.0,30.0,52.0,41.0,35.0,43.0,28.0,25.0,34.0,35.0,24.0,36.0,23.0,24.0,29.0,25.0,19.0,12.0,14.0,13.0,10.0,17.0,16.0,6.0,8.0,11.0,16.0,8.0,11.0,9.0,7.0,4.0,8.0,3.0,2.0,6.0,2.0,3.0,1.0,3.0,,3.0,,1.0,1.0,1.0 F82016,20.0,31.0,26.0,31.0,29.0,27.0,36.0,33.0,44.0,40.0,46.0,50.0,53.0,53.0,46.0,45.0,42.0,63.0,55.0,47.0,47.0,37.0,42.0,60.0,53.0,45.0,41.0,34.0,38.0,37.0,40.0,44.0,39.0,47.0,37.0,36.0,45.0,40.0,44.0,48.0,34.0,36.0,42.0,56.0,49.0,48.0,43.0,51.0,40.0,42.0,50.0,38.0,44.0,37.0,40.0,33.0,42.0,35.0,39.0,38.0,37.0,44.0,37.0,26.0,26.0,24.0,31.0,22.0,30.0,18.0,21.0,21.0,17.0,14.0,16.0,20.0,13.0,13.0,12.0,11.0,15.0,9.0,8.0,5.0,9.0,7.0,3.0,8.0,8.0,3.0,1.0,3.0,1.0,2.0,,1.0 F82017,29.0,52.0,55.0,49.0,48.0,53.0,62.0,59.0,63.0,69.0,68.0,60.0,74.0,74.0,73.0,74.0,70.0,80.0,73.0,64.0,69.0,72.0,62.0,52.0,63.0,67.0,55.0,64.0,60.0,63.0,66.0,71.0,48.0,65.0,64.0,55.0,55.0,62.0,63.0,70.0,53.0,62.0,62.0,74.0,54.0,74.0,59.0,49.0,49.0,61.0,62.0,63.0,61.0,55.0,43.0,53.0,64.0,61.0,51.0,58.0,46.0,47.0,45.0,36.0,35.0,40.0,35.0,28.0,28.0,24.0,25.0,18.0,25.0,17.0,30.0,26.0,21.0,26.0,16.0,11.0,12.0,9.0,6.0,3.0,6.0,10.0,4.0,4.0,2.0,4.0,2.0,1.0,1.0,3.0,3.0,1.0 F82018,85.0,72.0,71.0,66.0,69.0,83.0,59.0,84.0,69.0,96.0,92.0,73.0,104.0,78.0,91.0,101.0,76.0,82.0,101.0,92.0,88.0,101.0,99.0,99.0,103.0,107.0,96.0,108.0,96.0,118.0,112.0,115.0,100.0,101.0,98.0,101.0,70.0,79.0,92.0,108.0,86.0,100.0,94.0,74.0,80.0,68.0,75.0,70.0,83.0,85.0,74.0,84.0,68.0,71.0,81.0,61.0,78.0,55.0,61.0,59.0,53.0,44.0,52.0,44.0,46.0,52.0,46.0,48.0,43.0,27.0,28.0,16.0,26.0,20.0,19.0,12.0,16.0,21.0,17.0,19.0,7.0,13.0,12.0,10.0,10.0,12.0,10.0,10.0,4.0,6.0,2.0,5.0,3.0,3.0,2.0,3.0 F82019,30.0,40.0,25.0,47.0,39.0,34.0,55.0,48.0,41.0,33.0,43.0,40.0,40.0,52.0,44.0,37.0,46.0,41.0,46.0,47.0,52.0,33.0,49.0,46.0,50.0,45.0,64.0,58.0,47.0,48.0,46.0,51.0,50.0,38.0,44.0,51.0,55.0,56.0,35.0,59.0,43.0,47.0,49.0,53.0,38.0,47.0,49.0,51.0,41.0,45.0,44.0,38.0,34.0,48.0,39.0,42.0,37.0,45.0,47.0,31.0,39.0,26.0,32.0,29.0,32.0,30.0,34.0,26.0,29.0,24.0,28.0,17.0,21.0,20.0,20.0,18.0,19.0,18.0,9.0,12.0,12.0,10.0,16.0,6.0,12.0,11.0,8.0,6.0,9.0,9.0,6.0,3.0,3.0,2.0,5.0,1.0 F82021,53.0,53.0,55.0,54.0,46.0,40.0,59.0,48.0,58.0,57.0,51.0,64.0,63.0,60.0,56.0,52.0,64.0,72.0,51.0,48.0,52.0,50.0,60.0,67.0,56.0,67.0,67.0,61.0,60.0,61.0,85.0,65.0,54.0,75.0,74.0,73.0,64.0,65.0,70.0,74.0,67.0,63.0,62.0,58.0,53.0,73.0,56.0,56.0,65.0,52.0,48.0,59.0,73.0,82.0,63.0,68.0,65.0,70.0,68.0,56.0,65.0,62.0,51.0,52.0,41.0,41.0,51.0,53.0,48.0,39.0,37.0,27.0,52.0,32.0,44.0,36.0,33.0,51.0,47.0,31.0,26.0,31.0,34.0,13.0,18.0,16.0,17.0,16.0,15.0,10.0,5.0,5.0,3.0,4.0,3.0,10.0 F82022,63.0,60.0,65.0,75.0,71.0,80.0,68.0,77.0,73.0,93.0,74.0,73.0,61.0,76.0,87.0,71.0,75.0,91.0,83.0,69.0,85.0,78.0,69.0,91.0,69.0,78.0,98.0,69.0,74.0,77.0,71.0,97.0,77.0,84.0,91.0,89.0,92.0,98.0,92.0,81.0,99.0,61.0,80.0,70.0,77.0,79.0,86.0,89.0,61.0,62.0,73.0,70.0,88.0,89.0,91.0,78.0,81.0,104.0,83.0,110.0,84.0,83.0,91.0,104.0,84.0,78.0,95.0,78.0,64.0,67.0,67.0,56.0,53.0,49.0,58.0,68.0,64.0,77.0,73.0,37.0,48.0,39.0,27.0,27.0,25.0,27.0,20.0,16.0,19.0,19.0,11.0,13.0,13.0,7.0,1.0,5.0 F82023,17.0,26.0,10.0,13.0,13.0,10.0,19.0,21.0,13.0,13.0,15.0,24.0,13.0,19.0,24.0,19.0,16.0,18.0,14.0,20.0,19.0,18.0,19.0,14.0,18.0,25.0,19.0,22.0,26.0,24.0,25.0,25.0,26.0,25.0,37.0,25.0,32.0,35.0,28.0,25.0,31.0,29.0,28.0,24.0,21.0,23.0,34.0,18.0,25.0,18.0,26.0,24.0,23.0,23.0,26.0,18.0,21.0,33.0,29.0,20.0,25.0,25.0,31.0,24.0,17.0,17.0,20.0,33.0,15.0,22.0,16.0,15.0,14.0,14.0,18.0,14.0,16.0,13.0,21.0,8.0,8.0,10.0,7.0,11.0,5.0,10.0,5.0,5.0,8.0,5.0,2.0,1.0,,3.0,4.0,1.0 F82025,26.0,31.0,39.0,30.0,41.0,61.0,47.0,46.0,61.0,54.0,51.0,47.0,49.0,51.0,53.0,66.0,52.0,56.0,49.0,45.0,46.0,36.0,31.0,43.0,27.0,25.0,51.0,36.0,39.0,37.0,49.0,41.0,38.0,38.0,39.0,47.0,45.0,50.0,49.0,42.0,46.0,43.0,55.0,50.0,36.0,52.0,46.0,47.0,60.0,53.0,50.0,39.0,46.0,41.0,42.0,41.0,37.0,42.0,33.0,33.0,40.0,14.0,29.0,23.0,31.0,26.0,21.0,19.0,20.0,13.0,15.0,10.0,15.0,15.0,11.0,6.0,8.0,7.0,16.0,7.0,9.0,5.0,6.0,3.0,,5.0,3.0,1.0,2.0,,5.0,,1.0,1.0,,4.0 F82027,6.0,8.0,8.0,9.0,11.0,13.0,17.0,17.0,13.0,10.0,13.0,16.0,8.0,14.0,16.0,16.0,13.0,10.0,12.0,18.0,9.0,15.0,19.0,13.0,11.0,20.0,15.0,23.0,20.0,15.0,21.0,24.0,20.0,12.0,14.0,23.0,11.0,21.0,10.0,10.0,12.0,19.0,10.0,11.0,16.0,21.0,20.0,14.0,15.0,16.0,13.0,10.0,19.0,19.0,11.0,13.0,8.0,11.0,12.0,14.0,10.0,16.0,11.0,12.0,12.0,11.0,15.0,9.0,16.0,6.0,11.0,8.0,10.0,10.0,8.0,10.0,12.0,5.0,10.0,4.0,2.0,2.0,4.0,2.0,5.0,5.0,4.0,,3.0,3.0,3.0,,,2.0,,1.0 F82028,49.0,56.0,58.0,83.0,64.0,61.0,71.0,55.0,91.0,78.0,53.0,68.0,58.0,93.0,69.0,71.0,47.0,55.0,62.0,58.0,57.0,46.0,52.0,74.0,51.0,61.0,66.0,60.0,78.0,84.0,76.0,76.0,71.0,74.0,90.0,75.0,83.0,98.0,72.0,87.0,91.0,87.0,94.0,66.0,85.0,91.0,60.0,55.0,71.0,59.0,50.0,65.0,63.0,59.0,54.0,56.0,65.0,72.0,55.0,58.0,61.0,55.0,73.0,51.0,46.0,68.0,65.0,55.0,40.0,40.0,42.0,34.0,38.0,25.0,35.0,30.0,28.0,41.0,42.0,29.0,30.0,15.0,21.0,18.0,12.0,13.0,17.0,15.0,13.0,9.0,5.0,6.0,2.0,1.0,3.0,4.0 F82030,79.0,78.0,85.0,87.0,97.0,100.0,113.0,98.0,111.0,126.0,98.0,106.0,92.0,100.0,107.0,88.0,98.0,119.0,75.0,81.0,79.0,82.0,80.0,99.0,79.0,83.0,98.0,96.0,112.0,105.0,102.0,82.0,97.0,112.0,96.0,105.0,125.0,109.0,111.0,110.0,112.0,94.0,118.0,110.0,101.0,115.0,97.0,95.0,87.0,110.0,78.0,75.0,109.0,67.0,72.0,89.0,81.0,88.0,73.0,87.0,85.0,77.0,79.0,61.0,68.0,72.0,66.0,79.0,60.0,53.0,61.0,58.0,47.0,41.0,47.0,36.0,53.0,42.0,48.0,43.0,23.0,34.0,27.0,29.0,21.0,20.0,25.0,15.0,17.0,11.0,10.0,6.0,5.0,4.0,6.0,8.0 F82031,22.0,25.0,25.0,28.0,16.0,30.0,19.0,26.0,29.0,26.0,26.0,25.0,27.0,28.0,28.0,21.0,20.0,19.0,33.0,22.0,31.0,31.0,23.0,35.0,20.0,21.0,41.0,23.0,21.0,23.0,43.0,20.0,29.0,29.0,38.0,23.0,20.0,34.0,25.0,33.0,32.0,36.0,25.0,31.0,23.0,29.0,23.0,28.0,28.0,21.0,26.0,30.0,28.0,17.0,24.0,27.0,31.0,25.0,29.0,30.0,21.0,22.0,21.0,26.0,29.0,22.0,23.0,16.0,22.0,24.0,14.0,29.0,11.0,12.0,17.0,12.0,13.0,15.0,20.0,16.0,4.0,11.0,6.0,6.0,8.0,10.0,6.0,6.0,4.0,9.0,6.0,7.0,2.0,3.0,2.0,1.0 F82033,15.0,13.0,15.0,18.0,16.0,18.0,15.0,17.0,20.0,19.0,24.0,16.0,17.0,24.0,18.0,19.0,29.0,21.0,21.0,11.0,12.0,20.0,17.0,19.0,20.0,16.0,20.0,24.0,19.0,14.0,13.0,20.0,12.0,25.0,18.0,12.0,23.0,26.0,28.0,20.0,29.0,23.0,21.0,24.0,24.0,16.0,21.0,23.0,18.0,19.0,26.0,9.0,20.0,19.0,20.0,21.0,16.0,22.0,22.0,26.0,28.0,39.0,24.0,22.0,15.0,27.0,20.0,19.0,19.0,9.0,16.0,25.0,17.0,21.0,13.0,25.0,13.0,27.0,21.0,11.0,18.0,19.0,7.0,9.0,6.0,8.0,8.0,9.0,5.0,11.0,2.0,3.0,3.0,,1.0,1.0 F82034,89.0,88.0,76.0,74.0,68.0,62.0,72.0,88.0,78.0,78.0,63.0,71.0,89.0,80.0,78.0,83.0,74.0,74.0,69.0,69.0,73.0,73.0,84.0,80.0,110.0,109.0,106.0,124.0,98.0,112.0,110.0,116.0,102.0,102.0,106.0,135.0,111.0,121.0,113.0,112.0,105.0,100.0,98.0,75.0,81.0,76.0,87.0,70.0,71.0,77.0,73.0,64.0,70.0,45.0,67.0,58.0,61.0,63.0,52.0,42.0,34.0,38.0,64.0,51.0,42.0,30.0,32.0,22.0,29.0,23.0,27.0,30.0,18.0,17.0,19.0,18.0,9.0,14.0,14.0,11.0,10.0,9.0,9.0,6.0,8.0,7.0,6.0,3.0,2.0,3.0,2.0,1.0,6.0,1.0,2.0, F82038,21.0,22.0,23.0,30.0,23.0,32.0,33.0,34.0,43.0,38.0,40.0,42.0,43.0,46.0,50.0,43.0,44.0,34.0,42.0,31.0,34.0,35.0,26.0,47.0,40.0,31.0,46.0,30.0,35.0,26.0,32.0,31.0,35.0,32.0,45.0,38.0,26.0,45.0,31.0,36.0,34.0,31.0,55.0,41.0,45.0,35.0,36.0,37.0,38.0,42.0,24.0,39.0,33.0,39.0,26.0,33.0,27.0,29.0,25.0,27.0,25.0,25.0,28.0,31.0,28.0,14.0,14.0,19.0,14.0,13.0,14.0,15.0,13.0,13.0,11.0,12.0,5.0,12.0,8.0,9.0,7.0,7.0,5.0,6.0,6.0,7.0,2.0,4.0,3.0,4.0,1.0,3.0,1.0,3.0,1.0,1.0 F82039,32.0,28.0,21.0,34.0,27.0,38.0,35.0,35.0,28.0,38.0,16.0,28.0,30.0,27.0,33.0,30.0,38.0,26.0,28.0,26.0,30.0,18.0,23.0,18.0,22.0,28.0,31.0,36.0,28.0,36.0,36.0,36.0,38.0,29.0,43.0,45.0,42.0,45.0,37.0,37.0,29.0,39.0,34.0,30.0,38.0,34.0,34.0,30.0,22.0,28.0,24.0,31.0,35.0,30.0,21.0,35.0,16.0,25.0,28.0,26.0,26.0,24.0,28.0,26.0,21.0,24.0,19.0,21.0,15.0,17.0,11.0,13.0,14.0,14.0,11.0,8.0,13.0,16.0,4.0,7.0,9.0,8.0,6.0,5.0,5.0,5.0,2.0,5.0,3.0,1.0,,4.0,,3.0,, F82040,39.0,33.0,29.0,26.0,28.0,34.0,24.0,23.0,24.0,29.0,30.0,26.0,30.0,29.0,20.0,27.0,33.0,22.0,27.0,32.0,46.0,26.0,43.0,44.0,59.0,57.0,58.0,58.0,63.0,60.0,60.0,48.0,47.0,58.0,50.0,48.0,36.0,43.0,42.0,41.0,59.0,39.0,28.0,38.0,36.0,34.0,29.0,27.0,26.0,22.0,22.0,26.0,25.0,20.0,22.0,12.0,11.0,22.0,12.0,18.0,20.0,8.0,12.0,14.0,12.0,8.0,8.0,6.0,9.0,6.0,10.0,6.0,2.0,2.0,2.0,5.0,5.0,4.0,4.0,3.0,2.0,2.0,2.0,2.0,2.0,1.0,2.0,4.0,5.0,1.0,1.0,,,,,1.0 F82042,112.0,151.0,143.0,163.0,157.0,164.0,157.0,161.0,168.0,156.0,146.0,161.0,179.0,167.0,178.0,182.0,172.0,179.0,149.0,124.0,126.0,132.0,142.0,140.0,126.0,151.0,163.0,162.0,166.0,183.0,164.0,165.0,157.0,156.0,170.0,188.0,198.0,212.0,181.0,207.0,186.0,161.0,162.0,193.0,184.0,148.0,178.0,154.0,145.0,133.0,147.0,138.0,142.0,121.0,139.0,112.0,130.0,111.0,91.0,101.0,94.0,81.0,72.0,72.0,75.0,60.0,50.0,53.0,50.0,41.0,27.0,35.0,29.0,21.0,28.0,21.0,14.0,16.0,7.0,12.0,4.0,13.0,11.0,6.0,8.0,3.0,7.0,2.0,,7.0,1.0,1.0,1.0,1.0,1.0,2.0 F82045,12.0,14.0,18.0,16.0,20.0,16.0,15.0,17.0,14.0,19.0,9.0,15.0,24.0,21.0,18.0,28.0,16.0,22.0,20.0,18.0,16.0,12.0,18.0,14.0,18.0,18.0,17.0,17.0,23.0,27.0,21.0,31.0,23.0,24.0,22.0,30.0,22.0,36.0,19.0,24.0,21.0,30.0,25.0,27.0,33.0,22.0,26.0,18.0,17.0,28.0,21.0,29.0,30.0,22.0,29.0,22.0,19.0,30.0,22.0,26.0,23.0,26.0,27.0,20.0,21.0,12.0,22.0,16.0,15.0,11.0,8.0,18.0,12.0,20.0,11.0,18.0,15.0,22.0,15.0,11.0,15.0,10.0,12.0,6.0,10.0,17.0,9.0,3.0,3.0,5.0,4.0,4.0,2.0,2.0,2.0,3.0 F82051,66.0,70.0,70.0,67.0,55.0,67.0,68.0,95.0,76.0,102.0,79.0,79.0,81.0,97.0,78.0,80.0,83.0,96.0,80.0,90.0,87.0,67.0,64.0,74.0,69.0,80.0,90.0,59.0,81.0,95.0,77.0,72.0,96.0,69.0,84.0,82.0,97.0,93.0,88.0,83.0,97.0,73.0,90.0,72.0,82.0,70.0,85.0,81.0,83.0,82.0,75.0,66.0,66.0,73.0,90.0,46.0,70.0,69.0,65.0,66.0,60.0,56.0,58.0,52.0,43.0,41.0,34.0,48.0,31.0,27.0,39.0,38.0,18.0,22.0,29.0,20.0,27.0,25.0,20.0,10.0,21.0,13.0,13.0,6.0,12.0,11.0,7.0,6.0,4.0,4.0,6.0,4.0,2.0,2.0,2.0,8.0 F82053,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,,,,,,,,, F82055,93.0,115.0,110.0,105.0,92.0,108.0,104.0,95.0,82.0,84.0,77.0,87.0,70.0,76.0,69.0,64.0,67.0,57.0,51.0,44.0,60.0,55.0,58.0,55.0,54.0,74.0,66.0,68.0,75.0,68.0,103.0,95.0,110.0,115.0,118.0,110.0,105.0,137.0,118.0,129.0,118.0,117.0,122.0,106.0,97.0,83.0,102.0,88.0,69.0,72.0,76.0,74.0,65.0,62.0,67.0,69.0,65.0,68.0,50.0,63.0,70.0,70.0,70.0,61.0,73.0,68.0,69.0,49.0,62.0,60.0,54.0,38.0,30.0,32.0,41.0,55.0,37.0,40.0,40.0,33.0,34.0,25.0,24.0,15.0,12.0,22.0,15.0,9.0,10.0,7.0,3.0,4.0,7.0,4.0,2.0,5.0 F82604,41.0,47.0,36.0,29.0,37.0,41.0,58.0,56.0,55.0,59.0,54.0,56.0,49.0,49.0,59.0,65.0,54.0,41.0,46.0,37.0,44.0,52.0,35.0,32.0,35.0,26.0,32.0,39.0,38.0,51.0,38.0,30.0,39.0,43.0,33.0,43.0,49.0,59.0,49.0,38.0,46.0,45.0,42.0,45.0,47.0,35.0,48.0,41.0,57.0,34.0,44.0,43.0,28.0,39.0,34.0,26.0,41.0,35.0,22.0,17.0,17.0,26.0,18.0,22.0,19.0,21.0,16.0,18.0,15.0,16.0,14.0,11.0,15.0,22.0,7.0,10.0,6.0,11.0,11.0,6.0,10.0,11.0,5.0,6.0,7.0,4.0,3.0,3.0,2.0,2.0,1.0,1.0,1.0,1.0,,3.0 F82607,37.0,36.0,44.0,43.0,49.0,42.0,34.0,51.0,36.0,46.0,58.0,47.0,52.0,54.0,44.0,46.0,42.0,48.0,32.0,38.0,42.0,22.0,43.0,39.0,38.0,35.0,29.0,31.0,47.0,37.0,44.0,44.0,34.0,40.0,43.0,51.0,36.0,44.0,38.0,50.0,52.0,50.0,41.0,34.0,44.0,50.0,45.0,37.0,32.0,37.0,40.0,35.0,49.0,30.0,36.0,35.0,34.0,27.0,39.0,29.0,41.0,34.0,25.0,35.0,28.0,27.0,26.0,23.0,21.0,22.0,20.0,10.0,24.0,10.0,19.0,16.0,25.0,22.0,10.0,9.0,12.0,15.0,10.0,7.0,10.0,8.0,9.0,11.0,4.0,5.0,3.0,5.0,5.0,2.0,3.0,1.0 F82609,23.0,21.0,21.0,24.0,24.0,29.0,37.0,21.0,24.0,24.0,22.0,18.0,25.0,20.0,25.0,28.0,23.0,16.0,25.0,20.0,20.0,19.0,17.0,25.0,27.0,28.0,25.0,24.0,28.0,30.0,28.0,27.0,27.0,41.0,29.0,27.0,31.0,31.0,30.0,25.0,37.0,28.0,24.0,35.0,29.0,24.0,31.0,26.0,12.0,30.0,32.0,24.0,24.0,32.0,29.0,45.0,32.0,38.0,35.0,33.0,28.0,27.0,33.0,37.0,29.0,32.0,21.0,22.0,24.0,21.0,19.0,27.0,25.0,18.0,26.0,23.0,25.0,22.0,33.0,32.0,28.0,16.0,11.0,14.0,8.0,13.0,14.0,11.0,12.0,6.0,6.0,4.0,3.0,2.0,3.0,5.0 F82610,13.0,13.0,19.0,16.0,11.0,17.0,24.0,25.0,21.0,23.0,13.0,16.0,14.0,10.0,15.0,16.0,16.0,12.0,24.0,15.0,19.0,17.0,22.0,17.0,20.0,22.0,25.0,20.0,18.0,15.0,14.0,12.0,12.0,13.0,22.0,13.0,21.0,20.0,16.0,18.0,25.0,21.0,22.0,18.0,33.0,26.0,14.0,16.0,18.0,19.0,18.0,19.0,23.0,22.0,22.0,16.0,16.0,27.0,21.0,18.0,22.0,12.0,24.0,20.0,12.0,17.0,14.0,11.0,12.0,20.0,7.0,13.0,12.0,11.0,7.0,4.0,11.0,16.0,19.0,8.0,11.0,8.0,7.0,3.0,8.0,2.0,6.0,3.0,2.0,2.0,5.0,4.0,,6.0,1.0,2.0 F82612,72.0,70.0,70.0,96.0,71.0,78.0,73.0,84.0,85.0,92.0,79.0,82.0,97.0,76.0,86.0,87.0,70.0,76.0,88.0,74.0,85.0,81.0,91.0,110.0,105.0,109.0,82.0,117.0,105.0,96.0,99.0,95.0,115.0,98.0,98.0,109.0,113.0,133.0,121.0,116.0,110.0,100.0,98.0,70.0,90.0,91.0,93.0,74.0,88.0,91.0,85.0,73.0,65.0,68.0,63.0,63.0,72.0,60.0,55.0,47.0,54.0,46.0,49.0,47.0,36.0,34.0,47.0,37.0,26.0,36.0,31.0,30.0,32.0,25.0,28.0,22.0,20.0,21.0,15.0,15.0,9.0,10.0,8.0,6.0,6.0,8.0,10.0,5.0,4.0,2.0,6.0,2.0,4.0,2.0,3.0,3.0 F82619,19.0,37.0,37.0,29.0,34.0,23.0,24.0,30.0,31.0,35.0,26.0,27.0,24.0,23.0,37.0,21.0,25.0,24.0,22.0,26.0,27.0,22.0,21.0,29.0,17.0,35.0,23.0,43.0,33.0,36.0,30.0,45.0,30.0,41.0,26.0,21.0,32.0,40.0,43.0,40.0,25.0,32.0,34.0,28.0,34.0,23.0,27.0,28.0,26.0,29.0,33.0,24.0,20.0,23.0,27.0,19.0,25.0,9.0,29.0,29.0,22.0,17.0,29.0,19.0,14.0,19.0,18.0,16.0,17.0,13.0,9.0,23.0,9.0,12.0,12.0,6.0,10.0,7.0,18.0,7.0,11.0,9.0,5.0,9.0,4.0,6.0,6.0,9.0,5.0,1.0,3.0,2.0,2.0,4.0,2.0,5.0 F82624,33.0,33.0,35.0,31.0,33.0,38.0,25.0,24.0,24.0,34.0,31.0,30.0,21.0,22.0,28.0,18.0,40.0,27.0,28.0,20.0,22.0,14.0,27.0,16.0,18.0,27.0,26.0,25.0,32.0,35.0,30.0,36.0,29.0,43.0,43.0,37.0,34.0,35.0,41.0,45.0,32.0,47.0,44.0,29.0,42.0,43.0,32.0,35.0,32.0,31.0,25.0,25.0,25.0,30.0,35.0,32.0,35.0,40.0,31.0,27.0,34.0,30.0,34.0,33.0,32.0,24.0,28.0,30.0,34.0,40.0,28.0,25.0,27.0,34.0,22.0,23.0,21.0,23.0,19.0,24.0,27.0,20.0,16.0,10.0,12.0,10.0,7.0,11.0,6.0,12.0,4.0,6.0,3.0,3.0,2.0,6.0 F82625,48.0,49.0,60.0,48.0,54.0,46.0,48.0,37.0,54.0,59.0,69.0,49.0,67.0,58.0,85.0,72.0,62.0,61.0,71.0,63.0,57.0,42.0,53.0,59.0,58.0,62.0,61.0,87.0,81.0,77.0,82.0,72.0,72.0,76.0,93.0,78.0,82.0,89.0,91.0,84.0,78.0,69.0,74.0,68.0,70.0,61.0,72.0,80.0,60.0,67.0,66.0,57.0,61.0,44.0,51.0,55.0,41.0,38.0,44.0,40.0,31.0,31.0,36.0,36.0,27.0,26.0,33.0,29.0,15.0,20.0,13.0,19.0,19.0,19.0,10.0,6.0,9.0,4.0,10.0,13.0,6.0,5.0,1.0,9.0,5.0,7.0,6.0,3.0,2.0,3.0,1.0,1.0,1.0,,,1.0 F82627,44.0,60.0,51.0,66.0,51.0,71.0,86.0,63.0,67.0,69.0,58.0,71.0,67.0,59.0,58.0,57.0,60.0,79.0,62.0,46.0,42.0,53.0,52.0,61.0,39.0,50.0,55.0,61.0,63.0,75.0,61.0,74.0,71.0,78.0,63.0,82.0,69.0,71.0,70.0,73.0,71.0,80.0,78.0,66.0,73.0,73.0,65.0,58.0,65.0,59.0,64.0,54.0,47.0,49.0,49.0,49.0,44.0,42.0,50.0,53.0,40.0,45.0,40.0,45.0,39.0,35.0,34.0,32.0,30.0,25.0,30.0,27.0,19.0,19.0,15.0,15.0,15.0,18.0,12.0,10.0,8.0,11.0,7.0,7.0,7.0,5.0,5.0,4.0,9.0,7.0,4.0,3.0,3.0,4.0,1.0,11.0 F82630,36.0,34.0,37.0,40.0,51.0,46.0,62.0,50.0,56.0,65.0,58.0,45.0,56.0,57.0,60.0,67.0,43.0,53.0,53.0,47.0,36.0,56.0,50.0,42.0,33.0,46.0,42.0,45.0,54.0,39.0,49.0,48.0,42.0,51.0,53.0,58.0,46.0,51.0,39.0,57.0,54.0,47.0,58.0,49.0,56.0,53.0,54.0,53.0,46.0,46.0,49.0,38.0,46.0,51.0,46.0,61.0,47.0,44.0,49.0,46.0,28.0,38.0,33.0,36.0,36.0,35.0,45.0,32.0,36.0,29.0,32.0,29.0,22.0,35.0,19.0,23.0,28.0,27.0,24.0,13.0,21.0,15.0,13.0,15.0,10.0,11.0,11.0,11.0,3.0,4.0,2.0,,4.0,1.0,1.0,7.0 F82634,42.0,38.0,40.0,46.0,48.0,40.0,35.0,47.0,46.0,51.0,41.0,39.0,40.0,43.0,47.0,44.0,53.0,51.0,39.0,35.0,52.0,41.0,42.0,56.0,43.0,47.0,35.0,56.0,59.0,73.0,76.0,55.0,47.0,48.0,62.0,62.0,68.0,65.0,54.0,53.0,59.0,59.0,52.0,55.0,54.0,59.0,38.0,45.0,37.0,39.0,43.0,43.0,43.0,36.0,44.0,40.0,34.0,35.0,18.0,33.0,34.0,22.0,26.0,17.0,20.0,27.0,17.0,20.0,17.0,11.0,9.0,8.0,8.0,9.0,14.0,8.0,6.0,6.0,4.0,9.0,5.0,3.0,1.0,3.0,4.0,3.0,,,2.0,3.0,1.0,,,,,1.0 F82638,41.0,57.0,55.0,54.0,52.0,60.0,61.0,61.0,60.0,76.0,54.0,70.0,59.0,62.0,37.0,46.0,28.0,55.0,42.0,41.0,47.0,44.0,39.0,57.0,44.0,54.0,56.0,51.0,61.0,60.0,81.0,64.0,64.0,60.0,88.0,79.0,71.0,67.0,68.0,72.0,70.0,75.0,65.0,61.0,63.0,65.0,55.0,36.0,51.0,42.0,47.0,30.0,40.0,47.0,34.0,41.0,44.0,42.0,35.0,37.0,33.0,24.0,19.0,34.0,31.0,33.0,32.0,19.0,24.0,13.0,19.0,15.0,16.0,11.0,13.0,15.0,12.0,7.0,18.0,8.0,6.0,3.0,11.0,9.0,6.0,4.0,5.0,3.0,8.0,6.0,1.0,1.0,4.0,,2.0,3.0 F82642,44.0,41.0,45.0,55.0,56.0,61.0,55.0,70.0,55.0,55.0,53.0,48.0,63.0,49.0,60.0,59.0,54.0,46.0,58.0,49.0,44.0,48.0,48.0,37.0,46.0,53.0,54.0,40.0,48.0,56.0,59.0,55.0,59.0,48.0,48.0,56.0,59.0,61.0,66.0,64.0,45.0,54.0,55.0,70.0,71.0,50.0,49.0,46.0,38.0,36.0,52.0,49.0,51.0,48.0,51.0,42.0,41.0,33.0,31.0,40.0,37.0,36.0,48.0,30.0,26.0,31.0,29.0,28.0,20.0,18.0,26.0,19.0,12.0,16.0,15.0,12.0,12.0,20.0,15.0,7.0,6.0,6.0,6.0,5.0,5.0,3.0,7.0,3.0,1.0,5.0,2.0,,2.0,1.0,2.0,3.0 F82647,34.0,33.0,33.0,36.0,35.0,28.0,32.0,20.0,26.0,18.0,22.0,28.0,28.0,27.0,27.0,18.0,30.0,27.0,19.0,26.0,17.0,29.0,29.0,42.0,41.0,54.0,55.0,58.0,68.0,55.0,62.0,58.0,62.0,52.0,70.0,54.0,70.0,66.0,84.0,72.0,79.0,75.0,53.0,64.0,69.0,54.0,62.0,52.0,46.0,47.0,40.0,35.0,36.0,35.0,40.0,27.0,48.0,33.0,20.0,20.0,29.0,27.0,29.0,24.0,15.0,29.0,21.0,28.0,16.0,16.0,15.0,14.0,16.0,7.0,14.0,7.0,5.0,9.0,7.0,9.0,6.0,3.0,7.0,4.0,3.0,1.0,8.0,2.0,4.0,3.0,3.0,3.0,3.0,,,3.0 F82648,23.0,21.0,25.0,28.0,30.0,38.0,28.0,24.0,35.0,39.0,27.0,24.0,27.0,20.0,30.0,21.0,34.0,23.0,25.0,25.0,29.0,14.0,21.0,12.0,16.0,21.0,15.0,18.0,28.0,25.0,29.0,23.0,28.0,33.0,27.0,35.0,29.0,33.0,46.0,37.0,25.0,34.0,29.0,30.0,41.0,33.0,38.0,21.0,28.0,26.0,28.0,20.0,21.0,22.0,21.0,20.0,21.0,21.0,24.0,15.0,16.0,16.0,33.0,18.0,26.0,32.0,15.0,17.0,20.0,15.0,13.0,6.0,13.0,11.0,9.0,6.0,8.0,8.0,8.0,6.0,8.0,4.0,7.0,3.0,2.0,5.0,3.0,2.0,4.0,,2.0,3.0,2.0,,,1.0 F82649,13.0,20.0,21.0,17.0,15.0,18.0,23.0,21.0,22.0,21.0,28.0,26.0,22.0,32.0,26.0,21.0,23.0,24.0,22.0,27.0,24.0,25.0,18.0,29.0,22.0,24.0,29.0,37.0,29.0,33.0,40.0,37.0,29.0,40.0,29.0,48.0,23.0,41.0,25.0,33.0,24.0,21.0,37.0,27.0,32.0,27.0,24.0,24.0,30.0,18.0,20.0,30.0,26.0,32.0,34.0,29.0,32.0,30.0,32.0,43.0,30.0,27.0,35.0,38.0,29.0,39.0,20.0,37.0,17.0,16.0,29.0,20.0,21.0,9.0,22.0,11.0,24.0,15.0,25.0,23.0,12.0,12.0,13.0,6.0,7.0,8.0,8.0,6.0,4.0,6.0,5.0,2.0,3.0,,2.0,1.0 F82650,62.0,62.0,61.0,69.0,63.0,70.0,65.0,95.0,82.0,100.0,71.0,78.0,87.0,82.0,76.0,74.0,68.0,77.0,74.0,73.0,72.0,75.0,86.0,97.0,93.0,117.0,91.0,117.0,90.0,99.0,97.0,78.0,84.0,80.0,82.0,112.0,108.0,98.0,99.0,103.0,86.0,94.0,99.0,90.0,96.0,94.0,85.0,70.0,85.0,83.0,84.0,67.0,74.0,78.0,70.0,52.0,58.0,64.0,53.0,53.0,46.0,57.0,46.0,33.0,33.0,38.0,28.0,35.0,24.0,25.0,20.0,20.0,18.0,19.0,19.0,17.0,14.0,9.0,9.0,7.0,10.0,7.0,6.0,5.0,3.0,2.0,2.0,6.0,1.0,1.0,1.0,3.0,1.0,,,3.0 F82660,95.0,89.0,122.0,99.0,123.0,118.0,131.0,143.0,154.0,175.0,136.0,163.0,174.0,170.0,158.0,185.0,156.0,206.0,190.0,174.0,163.0,151.0,142.0,150.0,127.0,175.0,152.0,167.0,149.0,159.0,146.0,144.0,128.0,142.0,143.0,149.0,145.0,150.0,152.0,171.0,154.0,147.0,155.0,152.0,183.0,174.0,142.0,161.0,148.0,130.0,167.0,133.0,135.0,126.0,136.0,127.0,126.0,122.0,126.0,106.0,99.0,113.0,95.0,91.0,93.0,61.0,74.0,75.0,51.0,55.0,51.0,59.0,46.0,31.0,39.0,42.0,35.0,33.0,28.0,19.0,19.0,34.0,15.0,8.0,13.0,10.0,15.0,14.0,18.0,9.0,7.0,4.0,8.0,,4.0,1.0 F82661,24.0,32.0,26.0,15.0,33.0,31.0,26.0,34.0,37.0,37.0,28.0,30.0,25.0,22.0,30.0,16.0,28.0,40.0,27.0,27.0,38.0,24.0,31.0,27.0,29.0,31.0,30.0,35.0,27.0,35.0,25.0,32.0,33.0,32.0,40.0,40.0,32.0,56.0,44.0,48.0,34.0,33.0,41.0,40.0,46.0,35.0,32.0,34.0,34.0,33.0,29.0,34.0,32.0,23.0,24.0,27.0,16.0,18.0,21.0,21.0,27.0,19.0,16.0,16.0,18.0,24.0,15.0,9.0,14.0,6.0,16.0,8.0,11.0,12.0,5.0,6.0,8.0,5.0,6.0,2.0,6.0,1.0,2.0,1.0,3.0,6.0,,,1.0,2.0,1.0,1.0,,1.0,, F82663,24.0,32.0,25.0,19.0,29.0,29.0,27.0,35.0,29.0,32.0,31.0,22.0,22.0,23.0,22.0,26.0,22.0,25.0,19.0,12.0,26.0,24.0,20.0,28.0,39.0,32.0,21.0,25.0,32.0,27.0,36.0,33.0,33.0,38.0,41.0,31.0,42.0,49.0,34.0,38.0,32.0,38.0,35.0,34.0,40.0,28.0,36.0,27.0,28.0,25.0,35.0,30.0,17.0,29.0,31.0,17.0,22.0,26.0,22.0,22.0,21.0,31.0,26.0,17.0,18.0,24.0,20.0,22.0,18.0,20.0,18.0,16.0,12.0,14.0,12.0,13.0,10.0,14.0,9.0,10.0,6.0,6.0,6.0,8.0,1.0,6.0,3.0,2.0,4.0,1.0,3.0,1.0,2.0,2.0,,1.0 F82670,50.0,40.0,36.0,42.0,54.0,56.0,42.0,51.0,46.0,47.0,54.0,34.0,47.0,43.0,50.0,42.0,31.0,22.0,32.0,25.0,17.0,23.0,16.0,34.0,25.0,34.0,19.0,30.0,29.0,40.0,34.0,39.0,41.0,36.0,50.0,51.0,46.0,57.0,42.0,50.0,45.0,40.0,53.0,46.0,41.0,43.0,36.0,32.0,25.0,21.0,22.0,30.0,24.0,29.0,25.0,17.0,22.0,28.0,21.0,30.0,18.0,29.0,19.0,18.0,20.0,24.0,14.0,20.0,15.0,6.0,17.0,7.0,14.0,7.0,5.0,4.0,7.0,7.0,5.0,6.0,3.0,3.0,2.0,,3.0,3.0,2.0,3.0,1.0,1.0,1.0,,,1.0,2.0, F82671,19.0,19.0,13.0,26.0,23.0,22.0,30.0,30.0,20.0,32.0,19.0,15.0,32.0,27.0,21.0,20.0,31.0,26.0,16.0,24.0,24.0,21.0,24.0,18.0,20.0,20.0,20.0,27.0,24.0,27.0,35.0,22.0,16.0,30.0,28.0,18.0,24.0,21.0,30.0,30.0,27.0,28.0,26.0,21.0,19.0,29.0,26.0,14.0,23.0,25.0,17.0,17.0,13.0,19.0,18.0,22.0,23.0,20.0,28.0,26.0,16.0,21.0,18.0,16.0,15.0,9.0,17.0,18.0,6.0,8.0,11.0,8.0,9.0,7.0,11.0,11.0,9.0,10.0,8.0,7.0,9.0,5.0,7.0,9.0,3.0,5.0,3.0,2.0,2.0,3.0,3.0,2.0,3.0,2.0,4.0,4.0 F82674,33.0,35.0,30.0,41.0,37.0,42.0,33.0,43.0,53.0,43.0,46.0,40.0,51.0,38.0,48.0,48.0,48.0,37.0,35.0,26.0,23.0,43.0,36.0,28.0,36.0,28.0,31.0,23.0,26.0,29.0,29.0,23.0,29.0,34.0,38.0,35.0,34.0,38.0,38.0,33.0,50.0,43.0,35.0,38.0,44.0,31.0,50.0,40.0,38.0,30.0,31.0,36.0,38.0,41.0,28.0,32.0,33.0,27.0,31.0,28.0,28.0,39.0,26.0,29.0,20.0,25.0,34.0,25.0,35.0,24.0,16.0,21.0,14.0,24.0,10.0,20.0,23.0,26.0,25.0,15.0,12.0,10.0,15.0,11.0,8.0,3.0,13.0,15.0,13.0,8.0,6.0,5.0,6.0,6.0,4.0,10.0 F82675,9.0,13.0,13.0,24.0,16.0,22.0,13.0,20.0,15.0,13.0,16.0,18.0,23.0,27.0,26.0,22.0,13.0,20.0,22.0,16.0,21.0,24.0,11.0,16.0,19.0,24.0,28.0,18.0,17.0,17.0,20.0,32.0,14.0,22.0,20.0,25.0,24.0,23.0,17.0,22.0,20.0,13.0,28.0,23.0,19.0,13.0,33.0,22.0,19.0,27.0,9.0,25.0,24.0,27.0,22.0,22.0,23.0,25.0,24.0,23.0,30.0,29.0,16.0,25.0,21.0,18.0,17.0,22.0,24.0,14.0,27.0,20.0,14.0,16.0,14.0,15.0,16.0,16.0,9.0,16.0,9.0,10.0,8.0,12.0,7.0,9.0,7.0,9.0,5.0,5.0,3.0,1.0,4.0,,1.0,3.0 F82677,58.0,72.0,60.0,69.0,71.0,76.0,63.0,73.0,75.0,71.0,78.0,62.0,78.0,71.0,73.0,79.0,61.0,70.0,60.0,67.0,46.0,59.0,69.0,47.0,69.0,51.0,56.0,73.0,59.0,66.0,55.0,60.0,59.0,67.0,68.0,66.0,59.0,49.0,64.0,53.0,69.0,74.0,74.0,71.0,65.0,67.0,55.0,49.0,52.0,63.0,51.0,63.0,42.0,46.0,48.0,48.0,63.0,58.0,40.0,33.0,39.0,40.0,36.0,34.0,28.0,25.0,25.0,26.0,20.0,15.0,17.0,11.0,23.0,7.0,13.0,15.0,13.0,18.0,9.0,10.0,9.0,6.0,3.0,2.0,8.0,5.0,6.0,6.0,,4.0,4.0,1.0,1.0,1.0,,3.0 F82678,20.0,23.0,15.0,25.0,21.0,29.0,19.0,28.0,40.0,34.0,41.0,42.0,26.0,45.0,27.0,48.0,43.0,35.0,44.0,27.0,34.0,22.0,41.0,23.0,25.0,32.0,21.0,25.0,27.0,37.0,26.0,30.0,29.0,22.0,30.0,36.0,31.0,36.0,27.0,37.0,32.0,44.0,37.0,30.0,39.0,35.0,44.0,32.0,38.0,37.0,30.0,23.0,32.0,27.0,28.0,39.0,42.0,37.0,33.0,44.0,24.0,24.0,31.0,27.0,16.0,18.0,26.0,29.0,18.0,19.0,18.0,9.0,14.0,15.0,11.0,13.0,12.0,16.0,13.0,8.0,6.0,11.0,7.0,4.0,8.0,6.0,6.0,4.0,9.0,9.0,3.0,3.0,3.0,,6.0,5.0 F82679,32.0,32.0,28.0,35.0,25.0,25.0,37.0,38.0,29.0,36.0,39.0,36.0,37.0,49.0,37.0,44.0,52.0,47.0,35.0,43.0,42.0,47.0,47.0,47.0,55.0,49.0,47.0,54.0,36.0,61.0,55.0,38.0,49.0,36.0,50.0,41.0,40.0,38.0,49.0,56.0,39.0,38.0,43.0,43.0,35.0,37.0,41.0,50.0,29.0,36.0,41.0,41.0,46.0,42.0,39.0,37.0,29.0,40.0,26.0,30.0,35.0,34.0,29.0,21.0,27.0,26.0,15.0,31.0,12.0,18.0,16.0,11.0,14.0,12.0,10.0,13.0,7.0,11.0,11.0,6.0,7.0,7.0,9.0,7.0,3.0,5.0,5.0,4.0,2.0,2.0,3.0,1.0,,1.0,,2.0 F82680,67.0,65.0,82.0,64.0,58.0,73.0,87.0,76.0,75.0,63.0,80.0,66.0,61.0,65.0,64.0,61.0,61.0,57.0,67.0,65.0,54.0,61.0,67.0,55.0,68.0,83.0,88.0,77.0,109.0,88.0,87.0,97.0,97.0,99.0,88.0,103.0,105.0,95.0,92.0,103.0,73.0,91.0,95.0,82.0,80.0,77.0,76.0,74.0,66.0,64.0,87.0,47.0,49.0,53.0,55.0,44.0,51.0,48.0,43.0,50.0,61.0,49.0,37.0,42.0,43.0,41.0,39.0,34.0,47.0,21.0,27.0,26.0,17.0,16.0,22.0,15.0,16.0,19.0,9.0,16.0,11.0,5.0,5.0,10.0,7.0,6.0,3.0,6.0,2.0,4.0,2.0,2.0,3.0,,2.0,1.0 F82686,39.0,38.0,51.0,38.0,38.0,38.0,37.0,36.0,27.0,30.0,31.0,35.0,33.0,30.0,36.0,29.0,39.0,42.0,40.0,38.0,35.0,31.0,33.0,48.0,46.0,43.0,37.0,44.0,37.0,49.0,38.0,51.0,45.0,46.0,44.0,56.0,50.0,32.0,47.0,38.0,41.0,34.0,46.0,38.0,44.0,32.0,46.0,37.0,22.0,36.0,32.0,33.0,27.0,26.0,31.0,20.0,30.0,26.0,19.0,26.0,22.0,29.0,30.0,26.0,24.0,17.0,16.0,18.0,10.0,12.0,13.0,16.0,12.0,8.0,8.0,6.0,7.0,1.0,7.0,3.0,5.0,5.0,1.0,4.0,3.0,4.0,2.0,2.0,2.0,,1.0,1.0,,,,1.0 F84003,43.0,49.0,62.0,63.0,61.0,64.0,61.0,82.0,56.0,91.0,83.0,80.0,76.0,74.0,96.0,97.0,101.0,86.0,92.0,100.0,87.0,83.0,66.0,78.0,97.0,118.0,119.0,131.0,146.0,156.0,146.0,153.0,186.0,173.0,146.0,167.0,155.0,162.0,148.0,137.0,144.0,147.0,129.0,127.0,117.0,141.0,114.0,102.0,110.0,117.0,98.0,112.0,78.0,97.0,97.0,99.0,100.0,94.0,91.0,77.0,89.0,86.0,70.0,73.0,63.0,55.0,69.0,44.0,45.0,44.0,45.0,41.0,41.0,30.0,41.0,42.0,30.0,22.0,29.0,28.0,15.0,19.0,14.0,13.0,10.0,8.0,10.0,7.0,7.0,6.0,5.0,5.0,3.0,1.0,2.0,3.0 F84004,82.0,83.0,72.0,71.0,76.0,81.0,72.0,79.0,79.0,95.0,106.0,82.0,96.0,97.0,112.0,103.0,85.0,121.0,86.0,99.0,96.0,104.0,112.0,123.0,126.0,132.0,137.0,143.0,138.0,134.0,113.0,100.0,119.0,107.0,109.0,118.0,111.0,133.0,104.0,96.0,111.0,105.0,101.0,95.0,87.0,101.0,101.0,101.0,94.0,108.0,82.0,79.0,79.0,84.0,104.0,73.0,81.0,89.0,73.0,81.0,53.0,45.0,68.0,59.0,44.0,51.0,44.0,47.0,48.0,40.0,39.0,33.0,21.0,31.0,19.0,22.0,31.0,15.0,15.0,20.0,11.0,10.0,8.0,11.0,10.0,15.0,10.0,4.0,9.0,8.0,2.0,4.0,3.0,1.0,2.0,2.0 F84006,130.0,137.0,107.0,113.0,113.0,107.0,114.0,130.0,97.0,108.0,101.0,118.0,77.0,100.0,102.0,83.0,84.0,87.0,85.0,103.0,114.0,139.0,172.0,217.0,265.0,273.0,254.0,271.0,278.0,244.0,226.0,188.0,198.0,176.0,192.0,168.0,163.0,184.0,181.0,149.0,150.0,161.0,166.0,136.0,165.0,127.0,131.0,123.0,120.0,113.0,103.0,114.0,93.0,89.0,100.0,99.0,84.0,94.0,86.0,97.0,74.0,70.0,71.0,68.0,66.0,67.0,51.0,54.0,49.0,52.0,46.0,41.0,27.0,45.0,38.0,15.0,34.0,23.0,18.0,6.0,19.0,13.0,11.0,13.0,12.0,11.0,9.0,9.0,5.0,3.0,2.0,4.0,4.0,1.0,4.0,3.0 F84008,40.0,59.0,45.0,66.0,50.0,60.0,76.0,54.0,63.0,68.0,78.0,61.0,71.0,80.0,76.0,64.0,57.0,69.0,55.0,46.0,48.0,52.0,59.0,46.0,60.0,53.0,73.0,75.0,91.0,78.0,89.0,82.0,93.0,92.0,98.0,110.0,101.0,113.0,109.0,108.0,122.0,110.0,112.0,134.0,98.0,132.0,100.0,107.0,77.0,76.0,98.0,119.0,85.0,101.0,82.0,87.0,79.0,97.0,89.0,61.0,95.0,65.0,77.0,56.0,58.0,49.0,63.0,44.0,42.0,35.0,29.0,35.0,32.0,30.0,24.0,24.0,21.0,24.0,13.0,19.0,20.0,9.0,11.0,7.0,13.0,5.0,10.0,7.0,4.0,8.0,10.0,1.0,2.0,3.0,2.0,5.0 F84009,75.0,59.0,49.0,68.0,40.0,58.0,46.0,58.0,40.0,54.0,57.0,47.0,52.0,53.0,40.0,52.0,49.0,52.0,51.0,87.0,63.0,73.0,98.0,122.0,161.0,190.0,208.0,212.0,207.0,224.0,214.0,243.0,200.0,209.0,189.0,199.0,180.0,178.0,156.0,179.0,144.0,139.0,116.0,122.0,108.0,116.0,83.0,60.0,64.0,81.0,71.0,59.0,67.0,48.0,51.0,41.0,54.0,50.0,46.0,33.0,42.0,32.0,48.0,34.0,35.0,24.0,23.0,22.0,23.0,17.0,14.0,14.0,9.0,25.0,10.0,15.0,11.0,11.0,10.0,12.0,11.0,9.0,3.0,3.0,1.0,4.0,4.0,2.0,3.0,4.0,1.0,,2.0,,2.0, F84010,58.0,53.0,50.0,53.0,55.0,60.0,64.0,56.0,57.0,68.0,68.0,68.0,67.0,68.0,79.0,76.0,71.0,66.0,78.0,73.0,77.0,86.0,90.0,89.0,100.0,105.0,114.0,128.0,111.0,105.0,101.0,102.0,99.0,95.0,102.0,99.0,137.0,145.0,132.0,117.0,103.0,115.0,95.0,80.0,97.0,81.0,100.0,72.0,69.0,64.0,82.0,71.0,68.0,62.0,38.0,70.0,53.0,62.0,60.0,49.0,49.0,40.0,56.0,29.0,46.0,37.0,30.0,19.0,21.0,24.0,30.0,22.0,16.0,17.0,18.0,17.0,17.0,7.0,18.0,15.0,8.0,6.0,9.0,2.0,6.0,11.0,12.0,8.0,8.0,3.0,1.0,3.0,1.0,2.0,,4.0 F84012,46.0,54.0,49.0,56.0,60.0,48.0,45.0,57.0,68.0,57.0,48.0,57.0,54.0,52.0,43.0,64.0,51.0,48.0,47.0,60.0,65.0,78.0,78.0,105.0,112.0,122.0,127.0,116.0,127.0,123.0,128.0,152.0,96.0,127.0,130.0,146.0,147.0,166.0,130.0,136.0,124.0,110.0,124.0,95.0,96.0,99.0,89.0,89.0,78.0,64.0,56.0,64.0,66.0,56.0,49.0,45.0,51.0,46.0,53.0,38.0,36.0,22.0,28.0,21.0,36.0,36.0,27.0,23.0,18.0,16.0,15.0,14.0,15.0,11.0,6.0,6.0,4.0,13.0,6.0,6.0,4.0,7.0,7.0,5.0,3.0,2.0,6.0,8.0,2.0,1.0,7.0,1.0,1.0,1.0,1.0,3.0 F84013,257.0,260.0,251.0,274.0,235.0,251.0,254.0,239.0,201.0,232.0,208.0,221.0,226.0,213.0,224.0,212.0,173.0,173.0,198.0,147.0,169.0,141.0,142.0,138.0,163.0,139.0,148.0,170.0,151.0,134.0,121.0,118.0,118.0,116.0,100.0,111.0,123.0,109.0,90.0,100.0,91.0,97.0,104.0,100.0,97.0,91.0,92.0,86.0,59.0,84.0,78.0,77.0,56.0,71.0,55.0,44.0,48.0,41.0,56.0,46.0,49.0,39.0,50.0,51.0,36.0,33.0,36.0,38.0,25.0,35.0,32.0,27.0,33.0,24.0,29.0,21.0,27.0,27.0,21.0,10.0,19.0,18.0,9.0,9.0,8.0,6.0,6.0,9.0,5.0,3.0,4.0,3.0,2.0,2.0,3.0,3.0 F84014,48.0,45.0,44.0,47.0,45.0,39.0,39.0,44.0,41.0,51.0,39.0,52.0,44.0,47.0,48.0,47.0,59.0,47.0,54.0,49.0,63.0,57.0,69.0,90.0,80.0,90.0,83.0,109.0,92.0,109.0,107.0,101.0,82.0,94.0,92.0,77.0,83.0,87.0,74.0,83.0,79.0,85.0,62.0,65.0,64.0,76.0,64.0,49.0,56.0,54.0,58.0,48.0,43.0,46.0,49.0,41.0,43.0,49.0,40.0,31.0,43.0,24.0,43.0,32.0,36.0,31.0,40.0,39.0,32.0,19.0,18.0,17.0,22.0,13.0,18.0,15.0,11.0,14.0,13.0,9.0,8.0,9.0,6.0,8.0,9.0,6.0,5.0,8.0,7.0,3.0,2.0,4.0,5.0,2.0,2.0,2.0 F84015,22.0,21.0,24.0,24.0,24.0,26.0,34.0,23.0,28.0,32.0,40.0,24.0,41.0,39.0,46.0,40.0,44.0,40.0,31.0,49.0,38.0,45.0,36.0,50.0,45.0,49.0,41.0,52.0,37.0,46.0,45.0,46.0,47.0,39.0,45.0,44.0,49.0,54.0,47.0,38.0,40.0,42.0,40.0,40.0,24.0,26.0,38.0,24.0,34.0,39.0,31.0,28.0,28.0,32.0,23.0,31.0,34.0,42.0,34.0,34.0,29.0,40.0,31.0,29.0,32.0,30.0,18.0,29.0,18.0,15.0,22.0,9.0,14.0,13.0,12.0,18.0,7.0,11.0,7.0,6.0,8.0,6.0,4.0,2.0,4.0,7.0,5.0,7.0,,1.0,2.0,2.0,,2.0,1.0,1.0 F84016,46.0,49.0,51.0,59.0,47.0,47.0,54.0,58.0,58.0,55.0,60.0,54.0,68.0,80.0,66.0,87.0,64.0,68.0,89.0,64.0,66.0,79.0,73.0,88.0,97.0,102.0,118.0,135.0,147.0,143.0,147.0,132.0,133.0,151.0,141.0,128.0,139.0,127.0,134.0,142.0,137.0,124.0,111.0,129.0,101.0,109.0,100.0,104.0,79.0,83.0,86.0,76.0,55.0,71.0,64.0,67.0,58.0,51.0,54.0,50.0,47.0,38.0,51.0,47.0,42.0,48.0,37.0,33.0,36.0,31.0,28.0,11.0,17.0,20.0,14.0,20.0,19.0,13.0,22.0,17.0,10.0,7.0,11.0,9.0,6.0,2.0,3.0,4.0,6.0,1.0,3.0,1.0,,2.0,3.0,2.0 F84017,103.0,103.0,109.0,107.0,100.0,91.0,116.0,122.0,107.0,130.0,125.0,117.0,113.0,126.0,116.0,110.0,122.0,108.0,117.0,101.0,145.0,115.0,141.0,141.0,182.0,203.0,193.0,223.0,240.0,229.0,275.0,225.0,222.0,259.0,269.0,296.0,253.0,236.0,213.0,226.0,203.0,194.0,201.0,202.0,182.0,185.0,143.0,149.0,150.0,147.0,156.0,125.0,111.0,113.0,118.0,107.0,120.0,100.0,113.0,94.0,95.0,94.0,89.0,86.0,88.0,64.0,57.0,69.0,58.0,52.0,46.0,32.0,46.0,32.0,29.0,27.0,30.0,29.0,20.0,21.0,14.0,13.0,10.0,13.0,11.0,9.0,12.0,7.0,7.0,6.0,1.0,4.0,1.0,1.0,3.0,2.0 F84018,65.0,55.0,66.0,70.0,73.0,80.0,73.0,93.0,71.0,75.0,63.0,65.0,64.0,61.0,73.0,72.0,71.0,69.0,63.0,55.0,62.0,57.0,68.0,59.0,76.0,70.0,81.0,115.0,113.0,116.0,116.0,122.0,131.0,124.0,144.0,123.0,124.0,143.0,163.0,140.0,117.0,142.0,116.0,122.0,104.0,111.0,91.0,78.0,80.0,79.0,85.0,76.0,75.0,64.0,65.0,80.0,53.0,61.0,48.0,85.0,76.0,66.0,52.0,47.0,43.0,39.0,50.0,31.0,28.0,34.0,22.0,20.0,26.0,22.0,17.0,18.0,14.0,14.0,13.0,13.0,6.0,10.0,6.0,11.0,6.0,10.0,7.0,5.0,10.0,2.0,1.0,4.0,,3.0,4.0, F84021,44.0,40.0,36.0,45.0,36.0,34.0,58.0,40.0,58.0,51.0,55.0,37.0,55.0,50.0,71.0,42.0,49.0,49.0,43.0,46.0,51.0,62.0,42.0,45.0,63.0,62.0,97.0,132.0,108.0,124.0,130.0,146.0,108.0,129.0,163.0,149.0,165.0,162.0,145.0,127.0,124.0,126.0,127.0,123.0,139.0,116.0,101.0,92.0,90.0,74.0,104.0,90.0,85.0,76.0,64.0,64.0,63.0,51.0,41.0,52.0,59.0,48.0,43.0,45.0,48.0,40.0,32.0,22.0,41.0,26.0,19.0,20.0,18.0,23.0,12.0,16.0,9.0,11.0,20.0,13.0,8.0,7.0,9.0,4.0,5.0,6.0,4.0,6.0,3.0,2.0,,2.0,1.0,,1.0,4.0 F84022,38.0,29.0,34.0,32.0,40.0,32.0,29.0,38.0,28.0,28.0,39.0,46.0,47.0,41.0,40.0,34.0,33.0,34.0,36.0,36.0,39.0,45.0,65.0,65.0,94.0,113.0,120.0,127.0,136.0,159.0,158.0,142.0,160.0,149.0,129.0,152.0,137.0,127.0,153.0,130.0,126.0,107.0,107.0,100.0,110.0,88.0,89.0,85.0,71.0,76.0,62.0,52.0,48.0,55.0,47.0,51.0,54.0,44.0,33.0,31.0,36.0,27.0,31.0,35.0,31.0,29.0,25.0,27.0,23.0,11.0,12.0,10.0,21.0,9.0,15.0,12.0,11.0,12.0,8.0,7.0,8.0,3.0,6.0,5.0,2.0,2.0,1.0,4.0,4.0,1.0,4.0,,2.0,6.0,,1.0 F84025,73.0,71.0,58.0,56.0,62.0,64.0,73.0,83.0,85.0,69.0,71.0,93.0,72.0,74.0,87.0,95.0,95.0,94.0,74.0,75.0,86.0,104.0,88.0,123.0,136.0,113.0,160.0,142.0,134.0,145.0,141.0,143.0,155.0,157.0,118.0,148.0,130.0,139.0,115.0,130.0,103.0,127.0,104.0,110.0,108.0,100.0,114.0,96.0,91.0,82.0,70.0,79.0,81.0,74.0,57.0,64.0,72.0,71.0,49.0,43.0,29.0,43.0,42.0,36.0,28.0,31.0,41.0,27.0,37.0,36.0,16.0,18.0,24.0,26.0,23.0,16.0,12.0,13.0,15.0,9.0,7.0,5.0,5.0,8.0,6.0,4.0,6.0,7.0,4.0,2.0,4.0,3.0,3.0,1.0,,3.0 F84030,28.0,23.0,23.0,19.0,15.0,24.0,14.0,13.0,16.0,17.0,16.0,15.0,18.0,17.0,19.0,15.0,14.0,14.0,21.0,21.0,16.0,10.0,15.0,22.0,33.0,31.0,45.0,36.0,57.0,39.0,62.0,54.0,55.0,62.0,57.0,54.0,62.0,56.0,41.0,54.0,39.0,43.0,31.0,31.0,34.0,36.0,21.0,29.0,15.0,21.0,29.0,33.0,21.0,18.0,10.0,22.0,21.0,18.0,17.0,21.0,21.0,20.0,14.0,10.0,10.0,10.0,11.0,8.0,9.0,6.0,11.0,6.0,6.0,9.0,7.0,3.0,3.0,6.0,8.0,5.0,2.0,2.0,2.0,3.0,3.0,3.0,5.0,1.0,2.0,,1.0,2.0,1.0,,1.0,1.0 F84031,114.0,81.0,82.0,81.0,75.0,80.0,112.0,94.0,91.0,84.0,76.0,72.0,79.0,95.0,88.0,90.0,81.0,94.0,92.0,82.0,121.0,98.0,139.0,155.0,181.0,186.0,195.0,210.0,216.0,187.0,225.0,201.0,193.0,186.0,204.0,189.0,165.0,184.0,185.0,155.0,155.0,147.0,124.0,126.0,113.0,115.0,117.0,134.0,101.0,122.0,104.0,97.0,98.0,91.0,89.0,76.0,90.0,71.0,75.0,53.0,59.0,51.0,51.0,53.0,47.0,50.0,43.0,49.0,45.0,22.0,33.0,29.0,33.0,27.0,25.0,22.0,16.0,15.0,24.0,12.0,13.0,21.0,10.0,11.0,13.0,11.0,11.0,7.0,10.0,6.0,2.0,2.0,2.0,2.0,2.0,4.0 F84033,36.0,29.0,33.0,52.0,44.0,42.0,42.0,46.0,66.0,62.0,63.0,51.0,72.0,59.0,64.0,61.0,63.0,65.0,67.0,58.0,59.0,68.0,67.0,62.0,73.0,88.0,99.0,99.0,121.0,93.0,109.0,115.0,131.0,122.0,128.0,139.0,123.0,136.0,138.0,117.0,117.0,138.0,128.0,141.0,120.0,135.0,114.0,95.0,90.0,88.0,100.0,63.0,81.0,83.0,79.0,81.0,84.0,75.0,63.0,82.0,70.0,65.0,58.0,52.0,63.0,38.0,42.0,33.0,38.0,36.0,27.0,20.0,26.0,27.0,19.0,17.0,20.0,12.0,16.0,15.0,13.0,6.0,10.0,12.0,4.0,4.0,,4.0,1.0,3.0,5.0,1.0,1.0,2.0,1.0,3.0 F84034,61.0,70.0,55.0,58.0,79.0,83.0,86.0,85.0,85.0,86.0,83.0,84.0,102.0,73.0,90.0,96.0,87.0,75.0,77.0,85.0,70.0,95.0,95.0,93.0,125.0,95.0,136.0,127.0,108.0,119.0,152.0,130.0,143.0,139.0,124.0,135.0,125.0,135.0,136.0,149.0,120.0,123.0,137.0,122.0,119.0,86.0,108.0,90.0,89.0,104.0,101.0,83.0,74.0,73.0,78.0,81.0,67.0,86.0,76.0,77.0,82.0,75.0,59.0,56.0,49.0,45.0,45.0,51.0,47.0,34.0,41.0,29.0,31.0,31.0,26.0,25.0,22.0,19.0,28.0,14.0,12.0,10.0,12.0,9.0,6.0,5.0,3.0,6.0,4.0,2.0,4.0,6.0,2.0,2.0,1.0,3.0 F84035,160.0,121.0,116.0,118.0,91.0,77.0,75.0,61.0,50.0,56.0,45.0,47.0,44.0,28.0,41.0,38.0,31.0,31.0,36.0,32.0,42.0,42.0,62.0,92.0,131.0,140.0,238.0,312.0,446.0,467.0,533.0,536.0,535.0,513.0,518.0,490.0,417.0,419.0,353.0,335.0,242.0,247.0,222.0,208.0,155.0,143.0,116.0,109.0,93.0,79.0,67.0,68.0,61.0,64.0,68.0,60.0,47.0,45.0,46.0,50.0,36.0,34.0,41.0,27.0,41.0,36.0,28.0,32.0,24.0,24.0,19.0,25.0,13.0,13.0,17.0,11.0,15.0,12.0,8.0,11.0,9.0,12.0,3.0,4.0,5.0,13.0,6.0,1.0,2.0,5.0,,,4.0,,,3.0 F84036,39.0,25.0,26.0,29.0,36.0,36.0,46.0,40.0,39.0,38.0,32.0,28.0,38.0,40.0,29.0,39.0,34.0,27.0,23.0,45.0,32.0,37.0,67.0,47.0,64.0,81.0,89.0,116.0,123.0,130.0,131.0,148.0,133.0,117.0,118.0,106.0,107.0,122.0,84.0,91.0,90.0,71.0,92.0,75.0,64.0,76.0,73.0,56.0,62.0,48.0,52.0,51.0,58.0,49.0,64.0,41.0,49.0,37.0,34.0,36.0,41.0,43.0,41.0,34.0,35.0,29.0,26.0,21.0,20.0,28.0,21.0,16.0,14.0,21.0,12.0,7.0,20.0,8.0,10.0,3.0,6.0,1.0,6.0,4.0,4.0,7.0,4.0,5.0,1.0,3.0,3.0,1.0,1.0,,,1.0 F84038,5.0,10.0,10.0,4.0,11.0,7.0,14.0,11.0,14.0,15.0,25.0,11.0,16.0,14.0,13.0,14.0,17.0,14.0,28.0,16.0,21.0,12.0,23.0,25.0,19.0,23.0,25.0,39.0,33.0,41.0,46.0,58.0,44.0,48.0,53.0,60.0,57.0,48.0,43.0,41.0,46.0,38.0,45.0,35.0,30.0,31.0,33.0,21.0,38.0,26.0,29.0,22.0,25.0,34.0,15.0,17.0,22.0,16.0,28.0,17.0,25.0,29.0,15.0,19.0,16.0,20.0,20.0,17.0,17.0,11.0,7.0,17.0,9.0,14.0,6.0,7.0,11.0,4.0,10.0,10.0,3.0,4.0,7.0,5.0,1.0,2.0,3.0,1.0,,,1.0,,2.0,,1.0,1.0 F84039,208.0,187.0,141.0,149.0,167.0,154.0,136.0,142.0,163.0,166.0,156.0,166.0,154.0,143.0,151.0,157.0,132.0,180.0,223.0,281.0,289.0,302.0,363.0,487.0,499.0,551.0,628.0,663.0,703.0,689.0,678.0,640.0,600.0,570.0,537.0,488.0,508.0,431.0,422.0,406.0,337.0,316.0,342.0,308.0,298.0,287.0,250.0,222.0,248.0,211.0,197.0,189.0,187.0,153.0,165.0,147.0,116.0,113.0,98.0,103.0,85.0,94.0,72.0,64.0,86.0,77.0,58.0,72.0,53.0,43.0,49.0,29.0,33.0,27.0,16.0,12.0,14.0,14.0,13.0,5.0,4.0,7.0,7.0,7.0,5.0,6.0,8.0,10.0,8.0,3.0,4.0,1.0,2.0,4.0,,5.0 F84044,59.0,47.0,42.0,43.0,44.0,46.0,50.0,49.0,38.0,37.0,46.0,45.0,47.0,51.0,42.0,36.0,38.0,55.0,51.0,31.0,54.0,51.0,64.0,80.0,99.0,96.0,87.0,111.0,108.0,124.0,93.0,105.0,112.0,107.0,109.0,122.0,123.0,110.0,91.0,89.0,97.0,81.0,88.0,85.0,72.0,81.0,63.0,52.0,73.0,54.0,48.0,54.0,50.0,52.0,50.0,41.0,34.0,39.0,31.0,30.0,28.0,20.0,23.0,22.0,22.0,21.0,16.0,19.0,23.0,15.0,14.0,11.0,12.0,12.0,9.0,6.0,7.0,6.0,12.0,4.0,2.0,5.0,6.0,3.0,7.0,1.0,4.0,2.0,1.0,1.0,,,,1.0,1.0,1.0 F84047,45.0,54.0,60.0,59.0,40.0,44.0,53.0,62.0,51.0,53.0,60.0,57.0,80.0,57.0,72.0,72.0,65.0,86.0,89.0,74.0,62.0,66.0,102.0,109.0,133.0,124.0,121.0,129.0,117.0,143.0,120.0,111.0,113.0,126.0,128.0,112.0,103.0,121.0,88.0,109.0,119.0,97.0,87.0,96.0,85.0,81.0,66.0,75.0,61.0,67.0,59.0,40.0,51.0,50.0,71.0,46.0,71.0,55.0,52.0,51.0,51.0,39.0,42.0,29.0,40.0,20.0,24.0,25.0,24.0,23.0,20.0,20.0,17.0,12.0,16.0,12.0,20.0,11.0,15.0,10.0,8.0,11.0,10.0,9.0,2.0,2.0,4.0,8.0,3.0,2.0,1.0,1.0,,2.0,1.0,1.0 F84050,62.0,95.0,75.0,85.0,85.0,83.0,96.0,81.0,89.0,101.0,78.0,93.0,105.0,113.0,105.0,88.0,105.0,105.0,89.0,96.0,91.0,112.0,126.0,126.0,136.0,128.0,148.0,166.0,166.0,155.0,151.0,146.0,127.0,129.0,123.0,112.0,137.0,141.0,144.0,162.0,123.0,138.0,123.0,122.0,114.0,134.0,118.0,91.0,101.0,112.0,117.0,99.0,72.0,100.0,83.0,92.0,83.0,61.0,72.0,51.0,65.0,53.0,47.0,43.0,45.0,41.0,34.0,33.0,28.0,28.0,30.0,19.0,18.0,17.0,14.0,10.0,13.0,10.0,8.0,7.0,12.0,6.0,4.0,8.0,6.0,8.0,5.0,2.0,8.0,2.0,2.0,2.0,2.0,3.0,,2.0 F84051,31.0,48.0,37.0,29.0,28.0,32.0,31.0,30.0,28.0,30.0,27.0,26.0,23.0,32.0,21.0,34.0,27.0,28.0,32.0,27.0,33.0,25.0,46.0,76.0,84.0,147.0,162.0,187.0,196.0,210.0,182.0,195.0,177.0,180.0,196.0,161.0,162.0,146.0,135.0,114.0,104.0,88.0,102.0,87.0,67.0,91.0,70.0,68.0,56.0,63.0,55.0,44.0,51.0,49.0,54.0,30.0,30.0,34.0,34.0,27.0,28.0,29.0,23.0,34.0,33.0,28.0,25.0,21.0,17.0,9.0,9.0,7.0,6.0,6.0,9.0,5.0,5.0,4.0,6.0,2.0,4.0,5.0,7.0,2.0,2.0,1.0,1.0,3.0,2.0,2.0,1.0,,1.0,,, F84052,95.0,85.0,109.0,96.0,84.0,85.0,136.0,94.0,91.0,74.0,97.0,111.0,95.0,99.0,100.0,114.0,115.0,111.0,86.0,86.0,109.0,115.0,109.0,107.0,172.0,147.0,196.0,188.0,159.0,175.0,180.0,186.0,161.0,171.0,163.0,186.0,183.0,184.0,163.0,162.0,191.0,177.0,144.0,142.0,158.0,143.0,145.0,153.0,132.0,138.0,120.0,115.0,114.0,100.0,96.0,108.0,102.0,84.0,88.0,84.0,74.0,95.0,64.0,64.0,71.0,63.0,50.0,43.0,54.0,38.0,47.0,28.0,29.0,26.0,45.0,24.0,23.0,13.0,20.0,13.0,17.0,16.0,14.0,3.0,9.0,8.0,8.0,5.0,5.0,7.0,3.0,3.0,3.0,2.0,3.0,3.0 F84053,33.0,25.0,32.0,39.0,54.0,39.0,32.0,32.0,47.0,36.0,49.0,44.0,37.0,51.0,46.0,59.0,63.0,46.0,52.0,55.0,60.0,41.0,53.0,51.0,54.0,65.0,71.0,49.0,54.0,72.0,56.0,56.0,61.0,66.0,52.0,102.0,73.0,89.0,87.0,85.0,95.0,68.0,75.0,68.0,87.0,55.0,74.0,73.0,77.0,62.0,67.0,63.0,62.0,66.0,74.0,68.0,67.0,50.0,65.0,56.0,54.0,64.0,42.0,36.0,42.0,36.0,38.0,31.0,34.0,20.0,25.0,19.0,10.0,14.0,17.0,10.0,10.0,13.0,5.0,4.0,4.0,8.0,8.0,14.0,6.0,5.0,3.0,4.0,2.0,2.0,3.0,2.0,3.0,2.0,3.0,1.0 F84054,73.0,61.0,52.0,54.0,62.0,69.0,77.0,57.0,78.0,52.0,79.0,59.0,73.0,64.0,74.0,76.0,73.0,60.0,76.0,66.0,62.0,68.0,92.0,107.0,122.0,151.0,153.0,167.0,174.0,149.0,138.0,149.0,147.0,171.0,150.0,140.0,146.0,147.0,153.0,125.0,124.0,129.0,114.0,93.0,108.0,99.0,96.0,68.0,92.0,88.0,92.0,77.0,79.0,68.0,58.0,59.0,66.0,52.0,66.0,60.0,42.0,56.0,39.0,43.0,48.0,39.0,34.0,38.0,27.0,26.0,25.0,20.0,30.0,14.0,17.0,18.0,20.0,12.0,14.0,8.0,4.0,6.0,9.0,4.0,8.0,3.0,3.0,7.0,4.0,2.0,1.0,1.0,3.0,2.0,1.0,2.0 F84055,14.0,14.0,9.0,13.0,7.0,13.0,18.0,16.0,14.0,17.0,28.0,14.0,20.0,18.0,16.0,15.0,19.0,8.0,10.0,14.0,15.0,9.0,19.0,25.0,15.0,28.0,42.0,43.0,48.0,50.0,45.0,49.0,66.0,62.0,51.0,71.0,48.0,65.0,73.0,56.0,55.0,61.0,53.0,37.0,56.0,35.0,39.0,47.0,49.0,25.0,34.0,29.0,27.0,37.0,22.0,17.0,24.0,27.0,17.0,15.0,16.0,16.0,12.0,14.0,10.0,6.0,13.0,15.0,15.0,12.0,11.0,5.0,7.0,11.0,11.0,5.0,6.0,6.0,4.0,3.0,5.0,6.0,3.0,4.0,2.0,4.0,4.0,2.0,3.0,1.0,4.0,,,1.0,1.0,2.0 F84060,29.0,25.0,33.0,22.0,10.0,16.0,16.0,18.0,24.0,8.0,24.0,27.0,20.0,23.0,29.0,32.0,25.0,31.0,21.0,14.0,28.0,35.0,31.0,26.0,48.0,35.0,52.0,56.0,47.0,61.0,59.0,50.0,65.0,51.0,55.0,58.0,62.0,61.0,68.0,44.0,56.0,42.0,47.0,48.0,41.0,39.0,47.0,44.0,47.0,43.0,45.0,29.0,46.0,37.0,36.0,42.0,36.0,26.0,27.0,21.0,31.0,28.0,31.0,31.0,30.0,24.0,18.0,19.0,17.0,14.0,13.0,6.0,14.0,8.0,15.0,11.0,4.0,6.0,2.0,2.0,6.0,3.0,3.0,9.0,2.0,6.0,5.0,1.0,5.0,5.0,5.0,2.0,,2.0,2.0,3.0 F84062,83.0,78.0,75.0,79.0,86.0,77.0,88.0,95.0,88.0,96.0,85.0,106.0,97.0,98.0,102.0,102.0,87.0,100.0,89.0,100.0,100.0,105.0,104.0,119.0,133.0,154.0,113.0,154.0,188.0,162.0,160.0,150.0,171.0,181.0,173.0,179.0,153.0,169.0,161.0,155.0,148.0,135.0,133.0,123.0,141.0,122.0,104.0,108.0,104.0,97.0,94.0,70.0,67.0,75.0,75.0,71.0,93.0,66.0,91.0,57.0,53.0,46.0,53.0,50.0,42.0,44.0,50.0,56.0,36.0,54.0,22.0,27.0,27.0,30.0,28.0,23.0,19.0,19.0,16.0,10.0,9.0,6.0,9.0,7.0,9.0,5.0,3.0,5.0,5.0,6.0,4.0,2.0,2.0,1.0,2.0,4.0 F84063,17.0,19.0,19.0,25.0,21.0,21.0,30.0,24.0,25.0,21.0,19.0,26.0,27.0,23.0,41.0,31.0,30.0,29.0,22.0,30.0,27.0,28.0,33.0,30.0,50.0,61.0,60.0,91.0,79.0,78.0,81.0,92.0,80.0,90.0,94.0,81.0,90.0,91.0,60.0,74.0,54.0,72.0,62.0,64.0,57.0,67.0,61.0,49.0,54.0,44.0,42.0,43.0,39.0,44.0,37.0,48.0,30.0,52.0,33.0,37.0,29.0,36.0,37.0,28.0,35.0,23.0,24.0,25.0,20.0,18.0,16.0,14.0,17.0,4.0,13.0,14.0,12.0,13.0,7.0,9.0,5.0,6.0,3.0,3.0,3.0,5.0,3.0,1.0,2.0,2.0,3.0,,1.0,1.0,,1.0 F84069,44.0,57.0,60.0,64.0,77.0,64.0,69.0,74.0,107.0,60.0,100.0,70.0,90.0,75.0,81.0,81.0,88.0,56.0,85.0,80.0,60.0,80.0,62.0,77.0,73.0,62.0,108.0,136.0,132.0,132.0,131.0,133.0,155.0,140.0,157.0,157.0,163.0,164.0,155.0,145.0,154.0,141.0,133.0,140.0,126.0,124.0,108.0,101.0,114.0,107.0,81.0,72.0,91.0,82.0,84.0,94.0,88.0,81.0,77.0,77.0,81.0,84.0,54.0,64.0,61.0,51.0,47.0,42.0,44.0,46.0,34.0,59.0,23.0,21.0,15.0,26.0,18.0,28.0,13.0,21.0,14.0,11.0,10.0,8.0,10.0,6.0,8.0,2.0,9.0,1.0,6.0,4.0,2.0,4.0,1.0, F84070,57.0,59.0,48.0,46.0,57.0,61.0,59.0,61.0,63.0,51.0,58.0,55.0,58.0,58.0,50.0,59.0,54.0,64.0,43.0,69.0,53.0,89.0,98.0,111.0,162.0,162.0,200.0,181.0,168.0,143.0,152.0,109.0,111.0,99.0,101.0,101.0,114.0,119.0,106.0,92.0,88.0,95.0,95.0,72.0,90.0,62.0,83.0,78.0,62.0,69.0,50.0,46.0,47.0,68.0,39.0,59.0,43.0,44.0,39.0,27.0,41.0,38.0,24.0,29.0,27.0,34.0,26.0,21.0,21.0,22.0,10.0,11.0,16.0,19.0,18.0,14.0,13.0,8.0,9.0,8.0,8.0,6.0,8.0,5.0,6.0,5.0,2.0,1.0,2.0,5.0,3.0,1.0,,,1.0,2.0 F84072,64.0,48.0,60.0,67.0,56.0,51.0,63.0,59.0,58.0,63.0,67.0,46.0,46.0,35.0,52.0,49.0,30.0,34.0,43.0,42.0,34.0,51.0,36.0,43.0,61.0,66.0,86.0,104.0,127.0,181.0,189.0,224.0,217.0,214.0,218.0,245.0,247.0,250.0,215.0,270.0,182.0,172.0,201.0,182.0,169.0,139.0,158.0,107.0,110.0,94.0,79.0,91.0,67.0,67.0,71.0,50.0,54.0,48.0,45.0,44.0,56.0,34.0,32.0,22.0,31.0,20.0,20.0,21.0,25.0,21.0,11.0,8.0,18.0,10.0,9.0,14.0,10.0,14.0,12.0,6.0,6.0,10.0,4.0,3.0,6.0,5.0,4.0,2.0,4.0,1.0,4.0,1.0,2.0,,,1.0 F84074,51.0,46.0,64.0,66.0,58.0,59.0,50.0,78.0,67.0,63.0,51.0,68.0,71.0,77.0,68.0,65.0,81.0,70.0,55.0,58.0,67.0,70.0,65.0,85.0,100.0,102.0,106.0,124.0,105.0,100.0,103.0,113.0,112.0,121.0,114.0,130.0,132.0,147.0,149.0,139.0,133.0,119.0,122.0,123.0,100.0,100.0,84.0,82.0,82.0,90.0,62.0,60.0,59.0,62.0,58.0,57.0,62.0,52.0,52.0,39.0,44.0,59.0,36.0,50.0,53.0,44.0,35.0,40.0,49.0,34.0,50.0,32.0,43.0,34.0,26.0,22.0,15.0,14.0,14.0,14.0,16.0,16.0,9.0,11.0,13.0,7.0,4.0,7.0,10.0,3.0,3.0,,4.0,2.0,2.0,5.0 F84077,44.0,49.0,59.0,49.0,58.0,54.0,45.0,54.0,59.0,52.0,58.0,46.0,50.0,55.0,49.0,50.0,35.0,40.0,45.0,43.0,40.0,59.0,56.0,74.0,87.0,84.0,114.0,91.0,108.0,118.0,119.0,108.0,110.0,129.0,131.0,147.0,145.0,147.0,123.0,133.0,116.0,111.0,115.0,104.0,104.0,88.0,102.0,80.0,62.0,59.0,56.0,46.0,50.0,54.0,53.0,50.0,48.0,38.0,44.0,47.0,25.0,26.0,44.0,36.0,30.0,23.0,24.0,36.0,22.0,22.0,24.0,13.0,23.0,12.0,16.0,19.0,17.0,14.0,9.0,9.0,13.0,12.0,8.0,3.0,3.0,4.0,4.0,4.0,6.0,,1.0,2.0,2.0,,2.0,3.0 F84079,41.0,52.0,40.0,52.0,44.0,35.0,52.0,55.0,42.0,52.0,40.0,41.0,49.0,35.0,64.0,35.0,45.0,47.0,44.0,36.0,39.0,47.0,53.0,64.0,113.0,123.0,131.0,166.0,179.0,151.0,181.0,173.0,198.0,158.0,194.0,180.0,190.0,163.0,180.0,163.0,143.0,140.0,135.0,113.0,142.0,123.0,95.0,106.0,86.0,104.0,79.0,99.0,88.0,65.0,77.0,64.0,73.0,53.0,62.0,59.0,64.0,56.0,49.0,57.0,49.0,53.0,36.0,42.0,25.0,24.0,29.0,15.0,29.0,19.0,20.0,12.0,22.0,17.0,15.0,11.0,11.0,6.0,6.0,10.0,6.0,7.0,5.0,8.0,3.0,3.0,6.0,2.0,3.0,,1.0,1.0 F84080,55.0,60.0,91.0,66.0,52.0,74.0,70.0,59.0,65.0,79.0,71.0,71.0,72.0,75.0,76.0,76.0,61.0,79.0,49.0,65.0,59.0,56.0,57.0,65.0,58.0,67.0,62.0,74.0,63.0,64.0,74.0,74.0,83.0,84.0,83.0,81.0,75.0,87.0,86.0,72.0,69.0,92.0,80.0,66.0,72.0,75.0,71.0,55.0,59.0,70.0,67.0,64.0,54.0,61.0,60.0,51.0,53.0,58.0,64.0,63.0,71.0,59.0,60.0,50.0,50.0,62.0,52.0,45.0,45.0,28.0,39.0,24.0,34.0,22.0,24.0,20.0,18.0,13.0,15.0,17.0,12.0,8.0,9.0,11.0,5.0,7.0,14.0,8.0,2.0,5.0,2.0,2.0,3.0,1.0,,6.0 F84081,44.0,54.0,43.0,47.0,42.0,58.0,50.0,51.0,53.0,59.0,55.0,55.0,62.0,49.0,63.0,63.0,45.0,47.0,103.0,117.0,77.0,114.0,149.0,161.0,215.0,230.0,245.0,255.0,288.0,254.0,238.0,224.0,225.0,238.0,258.0,217.0,200.0,192.0,198.0,189.0,160.0,188.0,165.0,167.0,144.0,119.0,135.0,124.0,104.0,77.0,103.0,85.0,65.0,57.0,54.0,66.0,60.0,55.0,39.0,48.0,32.0,41.0,33.0,33.0,35.0,32.0,33.0,33.0,41.0,26.0,28.0,31.0,14.0,9.0,10.0,10.0,10.0,9.0,10.0,11.0,4.0,9.0,9.0,12.0,7.0,9.0,4.0,5.0,5.0,4.0,3.0,5.0,2.0,2.0,1.0,4.0 F84083,57.0,41.0,35.0,54.0,51.0,37.0,55.0,51.0,48.0,52.0,53.0,35.0,62.0,53.0,65.0,53.0,49.0,38.0,43.0,57.0,41.0,53.0,55.0,75.0,91.0,85.0,102.0,135.0,139.0,121.0,121.0,121.0,139.0,119.0,117.0,109.0,112.0,98.0,104.0,102.0,95.0,96.0,106.0,81.0,82.0,81.0,83.0,63.0,64.0,42.0,64.0,51.0,63.0,70.0,68.0,53.0,48.0,60.0,50.0,56.0,39.0,42.0,43.0,38.0,33.0,28.0,36.0,28.0,30.0,22.0,24.0,22.0,16.0,18.0,20.0,9.0,15.0,24.0,8.0,6.0,7.0,12.0,11.0,5.0,10.0,6.0,7.0,5.0,4.0,2.0,2.0,4.0,2.0,,1.0,3.0 F84086,32.0,38.0,40.0,28.0,30.0,33.0,43.0,36.0,37.0,42.0,42.0,50.0,38.0,37.0,44.0,44.0,43.0,40.0,39.0,30.0,31.0,38.0,32.0,52.0,42.0,39.0,45.0,64.0,61.0,70.0,55.0,59.0,73.0,61.0,79.0,77.0,76.0,76.0,100.0,72.0,85.0,62.0,66.0,78.0,79.0,55.0,76.0,56.0,45.0,38.0,46.0,45.0,43.0,53.0,45.0,44.0,36.0,33.0,38.0,59.0,40.0,59.0,45.0,34.0,46.0,29.0,28.0,31.0,24.0,26.0,20.0,22.0,23.0,11.0,14.0,7.0,11.0,11.0,14.0,15.0,14.0,8.0,3.0,11.0,5.0,7.0,6.0,1.0,3.0,4.0,6.0,2.0,2.0,2.0,2.0,3.0 F84087,50.0,47.0,41.0,52.0,43.0,63.0,60.0,53.0,74.0,65.0,68.0,59.0,72.0,84.0,73.0,77.0,63.0,75.0,67.0,77.0,75.0,95.0,71.0,90.0,113.0,102.0,107.0,100.0,109.0,118.0,95.0,119.0,127.0,103.0,109.0,111.0,109.0,109.0,110.0,110.0,95.0,85.0,93.0,76.0,96.0,95.0,73.0,62.0,80.0,62.0,56.0,57.0,51.0,60.0,55.0,57.0,52.0,51.0,35.0,40.0,39.0,30.0,26.0,40.0,31.0,30.0,34.0,30.0,28.0,17.0,18.0,10.0,14.0,9.0,15.0,5.0,12.0,7.0,8.0,5.0,9.0,3.0,4.0,5.0,4.0,3.0,1.0,3.0,8.0,1.0,6.0,1.0,,1.0,3.0, F84088,52.0,62.0,49.0,43.0,40.0,39.0,47.0,40.0,45.0,44.0,35.0,35.0,33.0,36.0,34.0,43.0,42.0,32.0,31.0,46.0,56.0,65.0,65.0,119.0,129.0,137.0,134.0,152.0,139.0,156.0,119.0,122.0,103.0,80.0,101.0,101.0,101.0,98.0,90.0,95.0,81.0,63.0,72.0,82.0,63.0,66.0,72.0,55.0,60.0,54.0,58.0,59.0,41.0,30.0,37.0,42.0,34.0,36.0,34.0,20.0,22.0,23.0,30.0,33.0,19.0,17.0,25.0,22.0,16.0,15.0,24.0,14.0,11.0,15.0,14.0,10.0,10.0,7.0,5.0,7.0,6.0,5.0,3.0,8.0,7.0,8.0,2.0,3.0,5.0,3.0,3.0,3.0,1.0,3.0,2.0,1.0 F84092,60.0,88.0,75.0,77.0,68.0,83.0,97.0,86.0,75.0,95.0,91.0,80.0,96.0,93.0,107.0,102.0,87.0,115.0,87.0,87.0,77.0,100.0,84.0,119.0,127.0,131.0,128.0,137.0,157.0,145.0,135.0,127.0,117.0,135.0,132.0,132.0,123.0,151.0,163.0,127.0,142.0,115.0,109.0,128.0,102.0,114.0,109.0,112.0,89.0,102.0,96.0,99.0,82.0,85.0,76.0,74.0,83.0,86.0,78.0,66.0,73.0,69.0,68.0,56.0,56.0,54.0,38.0,37.0,38.0,32.0,38.0,29.0,24.0,34.0,20.0,21.0,21.0,14.0,14.0,15.0,10.0,8.0,14.0,10.0,7.0,3.0,12.0,3.0,6.0,2.0,1.0,2.0,2.0,,3.0,2.0 F84093,91.0,89.0,104.0,89.0,102.0,104.0,89.0,105.0,111.0,111.0,121.0,117.0,125.0,121.0,133.0,112.0,137.0,126.0,102.0,112.0,100.0,94.0,90.0,110.0,133.0,117.0,146.0,140.0,141.0,138.0,146.0,186.0,159.0,161.0,186.0,195.0,173.0,191.0,206.0,187.0,184.0,185.0,173.0,165.0,189.0,175.0,169.0,151.0,174.0,159.0,150.0,115.0,121.0,123.0,116.0,104.0,91.0,82.0,89.0,104.0,96.0,76.0,66.0,71.0,72.0,56.0,73.0,40.0,55.0,55.0,57.0,42.0,36.0,30.0,24.0,39.0,16.0,25.0,19.0,18.0,12.0,9.0,4.0,9.0,8.0,6.0,3.0,4.0,,2.0,4.0,,3.0,1.0,2.0,3.0 F84096,53.0,59.0,60.0,54.0,58.0,67.0,73.0,64.0,66.0,63.0,72.0,73.0,82.0,79.0,81.0,101.0,76.0,98.0,97.0,104.0,118.0,90.0,112.0,122.0,169.0,190.0,185.0,182.0,202.0,223.0,194.0,199.0,202.0,172.0,206.0,209.0,237.0,201.0,185.0,164.0,161.0,150.0,163.0,157.0,140.0,122.0,116.0,109.0,94.0,104.0,104.0,98.0,91.0,80.0,100.0,103.0,100.0,70.0,89.0,70.0,77.0,69.0,64.0,64.0,59.0,70.0,55.0,57.0,54.0,47.0,34.0,41.0,30.0,25.0,19.0,23.0,18.0,23.0,19.0,12.0,12.0,17.0,15.0,11.0,9.0,12.0,4.0,8.0,6.0,9.0,4.0,4.0,1.0,2.0,,2.0 F84097,67.0,73.0,73.0,77.0,72.0,90.0,86.0,91.0,76.0,71.0,81.0,66.0,84.0,77.0,83.0,80.0,89.0,90.0,85.0,72.0,85.0,97.0,88.0,114.0,116.0,129.0,115.0,126.0,126.0,109.0,121.0,113.0,104.0,94.0,88.0,116.0,105.0,135.0,130.0,143.0,116.0,105.0,120.0,113.0,107.0,112.0,117.0,99.0,87.0,74.0,92.0,87.0,72.0,59.0,76.0,64.0,60.0,60.0,54.0,59.0,49.0,44.0,56.0,48.0,51.0,43.0,47.0,44.0,47.0,27.0,30.0,28.0,28.0,25.0,24.0,25.0,24.0,18.0,15.0,14.0,16.0,13.0,13.0,9.0,15.0,6.0,9.0,4.0,6.0,2.0,2.0,4.0,,2.0,,3.0 F84105,44.0,37.0,41.0,43.0,48.0,55.0,61.0,43.0,66.0,92.0,73.0,65.0,78.0,68.0,81.0,79.0,78.0,71.0,69.0,57.0,73.0,66.0,56.0,58.0,76.0,68.0,87.0,105.0,121.0,114.0,111.0,117.0,123.0,138.0,134.0,124.0,132.0,125.0,109.0,131.0,117.0,114.0,105.0,117.0,104.0,100.0,103.0,83.0,88.0,91.0,77.0,85.0,79.0,77.0,72.0,65.0,68.0,60.0,66.0,63.0,62.0,68.0,49.0,49.0,43.0,50.0,53.0,33.0,26.0,33.0,26.0,23.0,13.0,15.0,13.0,7.0,15.0,24.0,11.0,11.0,8.0,12.0,10.0,4.0,11.0,4.0,7.0,4.0,3.0,4.0,3.0,3.0,1.0,2.0,2.0,2.0 F84111,38.0,33.0,48.0,47.0,36.0,49.0,51.0,48.0,51.0,58.0,40.0,56.0,39.0,55.0,49.0,69.0,72.0,70.0,59.0,57.0,62.0,73.0,84.0,111.0,110.0,140.0,145.0,134.0,139.0,154.0,117.0,139.0,145.0,112.0,130.0,147.0,127.0,124.0,145.0,125.0,132.0,110.0,131.0,109.0,137.0,103.0,83.0,86.0,81.0,70.0,76.0,58.0,56.0,63.0,67.0,50.0,75.0,57.0,64.0,46.0,51.0,52.0,46.0,49.0,33.0,33.0,29.0,35.0,19.0,34.0,21.0,19.0,13.0,19.0,13.0,19.0,16.0,12.0,4.0,13.0,9.0,5.0,4.0,5.0,5.0,1.0,6.0,1.0,3.0,3.0,1.0,3.0,3.0,,,2.0 F84114,63.0,71.0,59.0,59.0,70.0,83.0,68.0,62.0,82.0,74.0,76.0,69.0,61.0,76.0,52.0,64.0,61.0,63.0,61.0,79.0,61.0,64.0,91.0,107.0,125.0,124.0,132.0,152.0,146.0,135.0,160.0,133.0,131.0,138.0,173.0,150.0,175.0,159.0,145.0,142.0,140.0,132.0,120.0,112.0,111.0,93.0,101.0,100.0,104.0,71.0,79.0,76.0,66.0,84.0,76.0,51.0,57.0,54.0,45.0,41.0,39.0,33.0,36.0,31.0,36.0,30.0,36.0,31.0,30.0,30.0,16.0,22.0,19.0,11.0,16.0,10.0,9.0,15.0,13.0,11.0,13.0,9.0,12.0,3.0,12.0,4.0,4.0,7.0,3.0,2.0,3.0,1.0,3.0,1.0,1.0,2.0 F84115,54.0,35.0,47.0,41.0,44.0,34.0,43.0,44.0,37.0,34.0,34.0,37.0,34.0,39.0,38.0,49.0,44.0,40.0,40.0,34.0,25.0,33.0,27.0,49.0,49.0,65.0,81.0,109.0,112.0,98.0,109.0,103.0,92.0,112.0,124.0,100.0,121.0,116.0,117.0,87.0,106.0,91.0,105.0,84.0,98.0,78.0,77.0,59.0,58.0,74.0,57.0,44.0,50.0,44.0,38.0,40.0,47.0,49.0,59.0,55.0,49.0,44.0,42.0,45.0,32.0,31.0,41.0,31.0,16.0,21.0,20.0,25.0,18.0,13.0,23.0,13.0,16.0,11.0,12.0,7.0,10.0,5.0,6.0,7.0,4.0,,4.0,1.0,3.0,3.0,3.0,1.0,3.0,,1.0, F84117,31.0,30.0,31.0,42.0,35.0,40.0,45.0,44.0,53.0,48.0,35.0,46.0,72.0,57.0,38.0,53.0,53.0,65.0,43.0,57.0,34.0,52.0,47.0,47.0,66.0,61.0,77.0,78.0,92.0,102.0,118.0,112.0,103.0,134.0,117.0,122.0,122.0,107.0,97.0,108.0,107.0,107.0,114.0,91.0,103.0,101.0,85.0,69.0,82.0,53.0,74.0,63.0,73.0,59.0,61.0,55.0,52.0,43.0,58.0,64.0,64.0,42.0,44.0,45.0,39.0,35.0,38.0,26.0,25.0,25.0,35.0,23.0,18.0,22.0,17.0,12.0,19.0,13.0,15.0,15.0,14.0,13.0,12.0,3.0,11.0,7.0,5.0,8.0,4.0,3.0,2.0,2.0,2.0,2.0,1.0,3.0 F84118,57.0,68.0,59.0,63.0,50.0,45.0,44.0,45.0,53.0,55.0,49.0,44.0,36.0,41.0,52.0,46.0,53.0,43.0,53.0,62.0,57.0,75.0,90.0,97.0,120.0,136.0,182.0,176.0,213.0,206.0,174.0,214.0,188.0,179.0,216.0,184.0,183.0,194.0,175.0,156.0,148.0,130.0,152.0,113.0,119.0,109.0,110.0,105.0,89.0,80.0,70.0,56.0,60.0,58.0,61.0,48.0,48.0,56.0,44.0,42.0,42.0,37.0,32.0,36.0,37.0,34.0,24.0,33.0,25.0,20.0,18.0,21.0,18.0,14.0,7.0,10.0,12.0,9.0,5.0,7.0,2.0,3.0,5.0,7.0,9.0,2.0,3.0,4.0,3.0,2.0,2.0,2.0,,1.0,,3.0 F84119,66.0,65.0,71.0,62.0,71.0,70.0,76.0,61.0,69.0,74.0,69.0,66.0,60.0,58.0,58.0,64.0,57.0,63.0,48.0,45.0,47.0,61.0,53.0,56.0,62.0,84.0,91.0,112.0,120.0,137.0,166.0,138.0,161.0,165.0,157.0,168.0,157.0,160.0,160.0,150.0,138.0,140.0,142.0,131.0,107.0,107.0,104.0,103.0,97.0,84.0,89.0,100.0,68.0,63.0,65.0,65.0,49.0,58.0,61.0,62.0,66.0,57.0,48.0,55.0,61.0,54.0,45.0,31.0,26.0,35.0,27.0,34.0,27.0,23.0,23.0,17.0,14.0,17.0,14.0,12.0,14.0,6.0,8.0,10.0,10.0,8.0,3.0,2.0,4.0,,,2.0,,1.0,1.0,2.0 F84121,108.0,92.0,113.0,117.0,115.0,94.0,99.0,112.0,121.0,108.0,137.0,115.0,119.0,104.0,130.0,126.0,117.0,98.0,123.0,120.0,117.0,128.0,126.0,159.0,161.0,183.0,168.0,185.0,170.0,177.0,176.0,141.0,123.0,103.0,142.0,139.0,158.0,153.0,177.0,137.0,142.0,122.0,150.0,106.0,127.0,125.0,120.0,106.0,118.0,113.0,104.0,79.0,97.0,88.0,80.0,90.0,78.0,73.0,77.0,52.0,78.0,62.0,66.0,50.0,60.0,55.0,43.0,38.0,33.0,42.0,26.0,21.0,27.0,25.0,26.0,22.0,15.0,16.0,12.0,14.0,18.0,6.0,15.0,6.0,16.0,8.0,8.0,7.0,9.0,7.0,3.0,3.0,7.0,3.0,,3.0 F84122,98.0,89.0,101.0,77.0,97.0,94.0,102.0,83.0,99.0,95.0,88.0,108.0,87.0,108.0,93.0,110.0,97.0,102.0,104.0,118.0,138.0,131.0,131.0,195.0,214.0,204.0,242.0,234.0,221.0,231.0,252.0,228.0,216.0,194.0,224.0,201.0,184.0,185.0,189.0,177.0,174.0,160.0,162.0,192.0,157.0,138.0,147.0,114.0,118.0,95.0,110.0,126.0,96.0,88.0,89.0,84.0,89.0,82.0,58.0,64.0,65.0,76.0,69.0,49.0,71.0,51.0,56.0,54.0,45.0,42.0,29.0,28.0,34.0,15.0,16.0,18.0,20.0,20.0,18.0,14.0,21.0,18.0,8.0,13.0,16.0,8.0,4.0,10.0,6.0,10.0,1.0,2.0,4.0,1.0,2.0,4.0 F84123,48.0,70.0,47.0,50.0,55.0,52.0,63.0,43.0,76.0,64.0,60.0,58.0,57.0,76.0,69.0,67.0,59.0,87.0,111.0,148.0,187.0,252.0,265.0,306.0,343.0,372.0,443.0,439.0,485.0,460.0,433.0,428.0,382.0,328.0,318.0,262.0,235.0,175.0,164.0,142.0,149.0,106.0,126.0,100.0,87.0,90.0,88.0,86.0,80.0,80.0,60.0,87.0,45.0,58.0,60.0,47.0,44.0,57.0,50.0,52.0,38.0,51.0,28.0,37.0,26.0,29.0,24.0,19.0,16.0,25.0,15.0,16.0,18.0,5.0,12.0,7.0,7.0,8.0,11.0,8.0,12.0,4.0,1.0,1.0,1.0,6.0,5.0,6.0,2.0,3.0,2.0,1.0,,,,1.0 F84124,28.0,25.0,27.0,32.0,33.0,32.0,28.0,29.0,26.0,39.0,32.0,29.0,23.0,28.0,37.0,34.0,40.0,28.0,35.0,26.0,29.0,33.0,32.0,44.0,46.0,56.0,56.0,71.0,61.0,61.0,59.0,57.0,58.0,56.0,75.0,54.0,72.0,67.0,60.0,63.0,58.0,56.0,51.0,56.0,46.0,29.0,44.0,49.0,37.0,37.0,34.0,33.0,41.0,46.0,36.0,27.0,35.0,24.0,17.0,30.0,22.0,22.0,25.0,14.0,22.0,18.0,6.0,13.0,13.0,12.0,5.0,6.0,5.0,6.0,7.0,2.0,4.0,3.0,4.0,2.0,2.0,1.0,2.0,1.0,,2.0,2.0,,,,1.0,,,,1.0, F84601,28.0,35.0,20.0,31.0,22.0,35.0,42.0,43.0,35.0,37.0,44.0,36.0,54.0,38.0,44.0,51.0,51.0,43.0,44.0,50.0,49.0,51.0,53.0,51.0,58.0,62.0,62.0,66.0,70.0,89.0,78.0,73.0,74.0,90.0,94.0,103.0,69.0,67.0,74.0,79.0,64.0,73.0,65.0,71.0,70.0,53.0,67.0,57.0,52.0,44.0,55.0,53.0,57.0,60.0,52.0,50.0,48.0,39.0,51.0,54.0,50.0,41.0,37.0,31.0,42.0,29.0,25.0,26.0,26.0,16.0,17.0,9.0,12.0,13.0,13.0,12.0,4.0,7.0,14.0,3.0,7.0,6.0,2.0,1.0,3.0,9.0,4.0,2.0,1.0,2.0,4.0,1.0,2.0,1.0,,1.0 F84619,19.0,24.0,25.0,36.0,36.0,25.0,29.0,24.0,30.0,28.0,38.0,24.0,36.0,42.0,27.0,27.0,29.0,33.0,40.0,37.0,35.0,25.0,35.0,27.0,32.0,30.0,43.0,50.0,49.0,61.0,48.0,59.0,50.0,58.0,57.0,77.0,64.0,64.0,57.0,59.0,60.0,57.0,55.0,41.0,45.0,49.0,56.0,39.0,51.0,35.0,26.0,36.0,25.0,32.0,35.0,36.0,34.0,28.0,23.0,16.0,20.0,22.0,26.0,26.0,18.0,19.0,17.0,18.0,16.0,17.0,15.0,9.0,10.0,7.0,13.0,3.0,2.0,3.0,5.0,6.0,6.0,1.0,10.0,2.0,,3.0,2.0,2.0,3.0,4.0,,1.0,1.0,1.0,,2.0 F84620,37.0,38.0,40.0,44.0,41.0,46.0,43.0,32.0,44.0,40.0,36.0,52.0,43.0,54.0,50.0,51.0,35.0,52.0,44.0,51.0,37.0,61.0,45.0,51.0,63.0,61.0,75.0,86.0,98.0,102.0,106.0,91.0,90.0,99.0,92.0,108.0,89.0,88.0,86.0,56.0,77.0,83.0,80.0,52.0,76.0,47.0,60.0,43.0,46.0,47.0,53.0,46.0,45.0,45.0,52.0,60.0,49.0,47.0,50.0,40.0,47.0,36.0,41.0,39.0,48.0,34.0,25.0,29.0,27.0,32.0,22.0,19.0,21.0,18.0,13.0,14.0,9.0,12.0,16.0,7.0,14.0,8.0,7.0,3.0,8.0,4.0,4.0,8.0,4.0,2.0,4.0,2.0,1.0,1.0,,4.0 F84621,14.0,12.0,20.0,15.0,18.0,20.0,19.0,15.0,15.0,17.0,20.0,17.0,18.0,25.0,18.0,19.0,18.0,28.0,26.0,26.0,22.0,32.0,25.0,21.0,47.0,40.0,42.0,56.0,50.0,70.0,66.0,65.0,67.0,58.0,48.0,58.0,45.0,62.0,56.0,53.0,53.0,48.0,33.0,32.0,38.0,37.0,31.0,26.0,26.0,28.0,26.0,30.0,27.0,16.0,35.0,22.0,30.0,23.0,27.0,25.0,27.0,23.0,28.0,27.0,27.0,27.0,24.0,12.0,6.0,12.0,20.0,18.0,9.0,9.0,7.0,11.0,5.0,5.0,8.0,5.0,6.0,2.0,3.0,3.0,7.0,4.0,2.0,3.0,3.0,5.0,1.0,4.0,,1.0,2.0, F84632,,,,,,,,,,,,,,,,,,1.0,2.0,6.0,10.0,12.0,18.0,21.0,29.0,32.0,35.0,33.0,37.0,47.0,31.0,29.0,24.0,19.0,25.0,25.0,29.0,27.0,25.0,19.0,31.0,25.0,32.0,23.0,27.0,26.0,19.0,13.0,24.0,20.0,21.0,17.0,16.0,15.0,21.0,24.0,15.0,19.0,16.0,13.0,23.0,14.0,18.0,17.0,15.0,18.0,8.0,5.0,2.0,4.0,2.0,2.0,2.0,4.0,1.0,,3.0,,,,1.0,1.0,1.0,1.0,,,,,,,,,,,, F84635,37.0,31.0,33.0,30.0,32.0,29.0,31.0,43.0,32.0,50.0,36.0,43.0,40.0,51.0,45.0,49.0,49.0,40.0,62.0,55.0,51.0,57.0,56.0,68.0,84.0,95.0,118.0,117.0,135.0,127.0,148.0,152.0,162.0,141.0,162.0,157.0,135.0,125.0,129.0,108.0,103.0,116.0,89.0,86.0,88.0,90.0,70.0,84.0,52.0,49.0,52.0,62.0,53.0,58.0,55.0,56.0,54.0,52.0,50.0,59.0,44.0,43.0,39.0,35.0,36.0,34.0,27.0,18.0,26.0,18.0,14.0,21.0,18.0,11.0,6.0,14.0,10.0,12.0,7.0,5.0,5.0,2.0,7.0,6.0,2.0,6.0,4.0,2.0,3.0,1.0,2.0,1.0,,,,3.0 F84636,26.0,37.0,40.0,31.0,17.0,19.0,20.0,25.0,20.0,28.0,14.0,23.0,28.0,23.0,19.0,22.0,20.0,22.0,24.0,25.0,22.0,19.0,22.0,31.0,45.0,58.0,67.0,94.0,85.0,118.0,132.0,129.0,102.0,111.0,124.0,130.0,103.0,95.0,97.0,99.0,77.0,86.0,85.0,66.0,61.0,49.0,53.0,52.0,51.0,49.0,45.0,39.0,38.0,34.0,31.0,26.0,23.0,27.0,27.0,18.0,25.0,27.0,16.0,17.0,21.0,17.0,18.0,11.0,18.0,8.0,10.0,5.0,5.0,7.0,9.0,7.0,4.0,3.0,8.0,4.0,4.0,4.0,1.0,2.0,3.0,2.0,2.0,1.0,2.0,1.0,1.0,,1.0,,,2.0 F84640,33.0,22.0,21.0,26.0,20.0,18.0,15.0,25.0,20.0,16.0,23.0,31.0,26.0,21.0,24.0,21.0,19.0,14.0,41.0,67.0,51.0,56.0,70.0,61.0,82.0,85.0,112.0,115.0,134.0,98.0,127.0,127.0,125.0,133.0,140.0,136.0,151.0,135.0,110.0,139.0,121.0,112.0,115.0,99.0,75.0,95.0,95.0,99.0,80.0,93.0,93.0,85.0,76.0,72.0,57.0,73.0,76.0,93.0,55.0,62.0,66.0,55.0,70.0,86.0,54.0,61.0,51.0,54.0,39.0,44.0,32.0,39.0,37.0,48.0,35.0,24.0,27.0,36.0,38.0,29.0,26.0,25.0,26.0,14.0,15.0,16.0,11.0,8.0,7.0,9.0,3.0,1.0,3.0,3.0,3.0,5.0 F84641,14.0,25.0,18.0,19.0,13.0,22.0,10.0,21.0,19.0,19.0,13.0,16.0,26.0,22.0,17.0,10.0,20.0,15.0,17.0,18.0,26.0,25.0,23.0,32.0,29.0,41.0,44.0,42.0,45.0,32.0,54.0,29.0,36.0,28.0,32.0,44.0,27.0,50.0,42.0,38.0,46.0,40.0,42.0,37.0,31.0,30.0,27.0,22.0,24.0,17.0,15.0,27.0,27.0,19.0,16.0,16.0,23.0,27.0,25.0,8.0,18.0,16.0,21.0,25.0,11.0,18.0,18.0,14.0,10.0,15.0,13.0,9.0,11.0,13.0,9.0,7.0,6.0,6.0,3.0,,4.0,4.0,4.0,6.0,5.0,4.0,4.0,2.0,1.0,2.0,2.0,1.0,1.0,,1.0, F84642,98.0,103.0,103.0,85.0,103.0,80.0,57.0,67.0,75.0,65.0,71.0,53.0,67.0,55.0,64.0,46.0,55.0,52.0,46.0,66.0,78.0,100.0,112.0,160.0,197.0,219.0,227.0,235.0,237.0,238.0,263.0,189.0,234.0,210.0,251.0,238.0,262.0,269.0,248.0,214.0,213.0,207.0,179.0,154.0,162.0,142.0,129.0,119.0,98.0,74.0,80.0,79.0,81.0,73.0,68.0,68.0,53.0,62.0,48.0,34.0,37.0,37.0,41.0,34.0,36.0,44.0,32.0,34.0,34.0,26.0,20.0,22.0,12.0,23.0,10.0,11.0,7.0,5.0,7.0,1.0,6.0,2.0,4.0,5.0,3.0,5.0,3.0,1.0,1.0,1.0,1.0,1.0,1.0,,,1.0 F84647,70.0,77.0,68.0,66.0,57.0,63.0,67.0,63.0,63.0,53.0,52.0,52.0,48.0,46.0,35.0,55.0,51.0,46.0,48.0,54.0,65.0,96.0,112.0,135.0,183.0,185.0,217.0,227.0,247.0,216.0,225.0,239.0,241.0,249.0,260.0,239.0,222.0,217.0,175.0,165.0,167.0,155.0,169.0,148.0,131.0,112.0,96.0,99.0,83.0,99.0,73.0,70.0,78.0,53.0,66.0,49.0,54.0,52.0,46.0,34.0,43.0,34.0,46.0,27.0,28.0,26.0,29.0,23.0,23.0,25.0,12.0,13.0,9.0,15.0,9.0,13.0,11.0,13.0,10.0,5.0,5.0,7.0,5.0,5.0,3.0,,2.0,4.0,2.0,,3.0,3.0,,1.0,1.0,2.0 F84656,37.0,52.0,46.0,49.0,44.0,57.0,45.0,32.0,49.0,52.0,39.0,42.0,38.0,49.0,44.0,38.0,30.0,39.0,52.0,56.0,51.0,53.0,67.0,92.0,101.0,123.0,123.0,143.0,145.0,167.0,162.0,159.0,161.0,162.0,172.0,166.0,184.0,183.0,154.0,157.0,136.0,139.0,122.0,121.0,118.0,120.0,95.0,75.0,88.0,77.0,64.0,50.0,58.0,48.0,47.0,47.0,39.0,41.0,34.0,30.0,41.0,25.0,35.0,29.0,27.0,24.0,24.0,20.0,22.0,15.0,20.0,16.0,16.0,21.0,15.0,12.0,17.0,11.0,10.0,7.0,6.0,5.0,5.0,4.0,3.0,7.0,1.0,1.0,6.0,,2.0,1.0,2.0,2.0,,1.0 F84658,53.0,48.0,55.0,45.0,56.0,50.0,47.0,58.0,52.0,64.0,70.0,69.0,72.0,61.0,66.0,70.0,79.0,64.0,53.0,57.0,60.0,63.0,61.0,78.0,65.0,91.0,80.0,79.0,76.0,90.0,67.0,83.0,91.0,90.0,82.0,87.0,122.0,114.0,119.0,92.0,113.0,98.0,117.0,85.0,108.0,90.0,98.0,89.0,90.0,87.0,69.0,74.0,83.0,60.0,64.0,74.0,71.0,60.0,50.0,55.0,61.0,59.0,58.0,49.0,42.0,60.0,52.0,38.0,43.0,44.0,20.0,30.0,30.0,34.0,28.0,19.0,12.0,15.0,14.0,5.0,8.0,7.0,10.0,13.0,10.0,5.0,7.0,5.0,6.0,5.0,2.0,2.0,5.0,3.0,1.0,5.0 F84660,20.0,25.0,17.0,23.0,19.0,12.0,12.0,8.0,6.0,11.0,13.0,12.0,11.0,8.0,9.0,11.0,3.0,14.0,9.0,11.0,12.0,30.0,33.0,60.0,67.0,75.0,90.0,80.0,81.0,83.0,72.0,60.0,45.0,46.0,45.0,48.0,49.0,59.0,50.0,37.0,44.0,50.0,31.0,33.0,41.0,36.0,25.0,20.0,15.0,19.0,14.0,18.0,14.0,18.0,11.0,16.0,3.0,14.0,7.0,5.0,6.0,10.0,6.0,5.0,10.0,5.0,7.0,4.0,8.0,7.0,9.0,2.0,4.0,3.0,2.0,,2.0,1.0,1.0,,,,1.0,1.0,,,,1.0,,,,,,,, F84666,25.0,25.0,38.0,25.0,45.0,42.0,23.0,34.0,36.0,32.0,37.0,32.0,28.0,34.0,32.0,43.0,28.0,33.0,32.0,34.0,42.0,42.0,30.0,52.0,48.0,55.0,48.0,76.0,79.0,83.0,59.0,80.0,101.0,86.0,91.0,101.0,95.0,72.0,71.0,85.0,80.0,73.0,68.0,65.0,61.0,40.0,58.0,61.0,38.0,45.0,40.0,33.0,35.0,34.0,24.0,19.0,28.0,27.0,24.0,18.0,30.0,24.0,20.0,11.0,18.0,27.0,11.0,13.0,10.0,20.0,6.0,16.0,10.0,9.0,5.0,10.0,6.0,5.0,5.0,5.0,6.0,1.0,4.0,2.0,2.0,,1.0,1.0,,1.0,,,,,, F84668,48.0,55.0,65.0,65.0,58.0,47.0,59.0,46.0,56.0,48.0,64.0,60.0,67.0,71.0,43.0,72.0,51.0,63.0,55.0,53.0,63.0,46.0,61.0,54.0,57.0,59.0,55.0,48.0,61.0,41.0,49.0,52.0,44.0,46.0,61.0,40.0,59.0,51.0,47.0,35.0,45.0,45.0,50.0,46.0,33.0,43.0,35.0,34.0,30.0,27.0,32.0,26.0,25.0,31.0,34.0,26.0,26.0,21.0,19.0,14.0,30.0,31.0,17.0,14.0,21.0,17.0,17.0,21.0,16.0,18.0,9.0,13.0,8.0,13.0,5.0,15.0,10.0,7.0,6.0,2.0,3.0,,4.0,2.0,2.0,1.0,3.0,1.0,3.0,1.0,,,1.0,1.0,,2.0 F84669,69.0,58.0,67.0,68.0,63.0,66.0,56.0,54.0,90.0,57.0,61.0,86.0,79.0,77.0,75.0,67.0,77.0,72.0,70.0,55.0,69.0,62.0,86.0,92.0,93.0,115.0,104.0,124.0,127.0,142.0,105.0,115.0,106.0,101.0,106.0,125.0,109.0,116.0,119.0,97.0,101.0,82.0,76.0,86.0,94.0,91.0,80.0,87.0,82.0,72.0,70.0,58.0,71.0,50.0,75.0,61.0,64.0,42.0,44.0,41.0,33.0,50.0,45.0,44.0,39.0,31.0,29.0,21.0,27.0,25.0,20.0,19.0,17.0,16.0,19.0,10.0,11.0,11.0,8.0,8.0,6.0,5.0,6.0,4.0,8.0,9.0,2.0,2.0,3.0,2.0,3.0,4.0,,2.0,2.0,1.0 F84670,58.0,56.0,27.0,49.0,56.0,43.0,48.0,36.0,38.0,40.0,33.0,37.0,45.0,50.0,39.0,37.0,40.0,47.0,45.0,44.0,50.0,51.0,65.0,80.0,85.0,89.0,77.0,102.0,105.0,118.0,69.0,59.0,89.0,70.0,64.0,72.0,70.0,71.0,67.0,63.0,65.0,57.0,69.0,58.0,65.0,64.0,63.0,49.0,49.0,44.0,48.0,43.0,40.0,36.0,45.0,38.0,40.0,29.0,31.0,21.0,17.0,21.0,15.0,29.0,18.0,20.0,28.0,19.0,9.0,22.0,14.0,14.0,11.0,6.0,5.0,5.0,1.0,2.0,4.0,4.0,4.0,3.0,4.0,,2.0,4.0,7.0,1.0,3.0,4.0,1.0,1.0,2.0,1.0,1.0,2.0 F84672,48.0,55.0,55.0,51.0,44.0,40.0,26.0,43.0,35.0,43.0,29.0,38.0,51.0,36.0,44.0,43.0,46.0,38.0,41.0,53.0,40.0,43.0,62.0,57.0,78.0,99.0,88.0,94.0,107.0,112.0,112.0,110.0,110.0,110.0,98.0,120.0,97.0,101.0,93.0,104.0,75.0,77.0,85.0,67.0,67.0,62.0,65.0,48.0,58.0,50.0,43.0,41.0,35.0,46.0,51.0,48.0,40.0,44.0,51.0,41.0,39.0,32.0,29.0,31.0,25.0,27.0,25.0,25.0,32.0,20.0,22.0,12.0,11.0,10.0,13.0,14.0,5.0,10.0,9.0,6.0,2.0,7.0,7.0,6.0,3.0,1.0,6.0,2.0,7.0,5.0,1.0,4.0,1.0,1.0,,3.0 F84677,49.0,39.0,52.0,45.0,49.0,42.0,51.0,45.0,46.0,50.0,46.0,42.0,43.0,48.0,51.0,51.0,71.0,46.0,59.0,54.0,54.0,46.0,72.0,59.0,67.0,98.0,100.0,84.0,66.0,77.0,72.0,82.0,71.0,61.0,68.0,71.0,66.0,74.0,63.0,73.0,51.0,57.0,60.0,64.0,55.0,66.0,56.0,45.0,50.0,49.0,39.0,60.0,38.0,39.0,37.0,40.0,43.0,26.0,29.0,34.0,29.0,29.0,31.0,28.0,33.0,22.0,34.0,28.0,23.0,18.0,21.0,20.0,14.0,19.0,17.0,13.0,11.0,7.0,11.0,10.0,7.0,7.0,7.0,7.0,8.0,4.0,8.0,5.0,5.0,2.0,4.0,3.0,2.0,,1.0,2.0 F84681,57.0,81.0,53.0,61.0,57.0,45.0,39.0,64.0,43.0,50.0,37.0,54.0,51.0,45.0,53.0,47.0,56.0,55.0,57.0,58.0,71.0,70.0,83.0,81.0,131.0,97.0,127.0,127.0,123.0,141.0,125.0,125.0,107.0,101.0,89.0,76.0,84.0,90.0,89.0,74.0,98.0,82.0,68.0,58.0,66.0,61.0,67.0,61.0,51.0,68.0,56.0,50.0,58.0,55.0,49.0,60.0,52.0,49.0,58.0,53.0,47.0,34.0,45.0,24.0,33.0,36.0,24.0,25.0,24.0,11.0,22.0,12.0,18.0,21.0,14.0,14.0,8.0,11.0,4.0,10.0,4.0,6.0,3.0,2.0,6.0,5.0,3.0,1.0,3.0,1.0,2.0,1.0,1.0,,,1.0 F84686,148.0,159.0,157.0,153.0,146.0,113.0,131.0,140.0,128.0,110.0,111.0,133.0,115.0,116.0,113.0,98.0,99.0,104.0,98.0,75.0,69.0,76.0,72.0,67.0,68.0,64.0,64.0,64.0,60.0,58.0,56.0,58.0,66.0,52.0,52.0,45.0,59.0,62.0,49.0,40.0,39.0,35.0,33.0,44.0,40.0,39.0,39.0,32.0,32.0,29.0,25.0,23.0,23.0,25.0,28.0,22.0,15.0,18.0,18.0,18.0,19.0,13.0,16.0,24.0,12.0,18.0,10.0,13.0,12.0,10.0,12.0,17.0,15.0,9.0,12.0,9.0,10.0,9.0,4.0,7.0,5.0,2.0,3.0,2.0,3.0,2.0,2.0,,2.0,2.0,2.0,,,,,2.0 F84692,24.0,22.0,37.0,27.0,26.0,22.0,24.0,31.0,35.0,30.0,43.0,27.0,38.0,31.0,37.0,39.0,34.0,44.0,56.0,44.0,58.0,58.0,52.0,96.0,98.0,140.0,150.0,180.0,176.0,180.0,182.0,188.0,170.0,150.0,184.0,140.0,139.0,114.0,106.0,111.0,102.0,79.0,76.0,82.0,76.0,85.0,71.0,66.0,63.0,54.0,40.0,37.0,37.0,53.0,28.0,54.0,41.0,59.0,37.0,44.0,35.0,39.0,39.0,21.0,23.0,34.0,16.0,23.0,10.0,15.0,11.0,13.0,10.0,12.0,13.0,8.0,9.0,10.0,7.0,6.0,6.0,2.0,3.0,6.0,2.0,6.0,1.0,2.0,4.0,,,,1.0,,,1.0 F84694,19.0,22.0,23.0,18.0,28.0,21.0,13.0,21.0,12.0,11.0,16.0,11.0,9.0,16.0,10.0,15.0,7.0,16.0,7.0,10.0,17.0,12.0,18.0,15.0,25.0,33.0,37.0,58.0,52.0,74.0,89.0,88.0,87.0,84.0,77.0,90.0,72.0,79.0,72.0,74.0,52.0,55.0,65.0,55.0,50.0,45.0,36.0,42.0,24.0,36.0,34.0,28.0,26.0,18.0,18.0,22.0,18.0,18.0,26.0,17.0,21.0,18.0,11.0,16.0,12.0,16.0,15.0,12.0,7.0,8.0,6.0,5.0,8.0,3.0,3.0,7.0,5.0,4.0,2.0,2.0,2.0,1.0,1.0,1.0,3.0,,4.0,4.0,1.0,,,2.0,1.0,1.0,, F84696,31.0,36.0,21.0,18.0,26.0,24.0,21.0,29.0,24.0,29.0,31.0,25.0,27.0,27.0,25.0,27.0,17.0,26.0,18.0,20.0,26.0,33.0,19.0,28.0,45.0,45.0,48.0,69.0,94.0,103.0,90.0,87.0,88.0,83.0,99.0,89.0,92.0,83.0,81.0,74.0,71.0,68.0,69.0,58.0,62.0,57.0,46.0,41.0,47.0,32.0,22.0,30.0,24.0,24.0,30.0,20.0,27.0,36.0,25.0,20.0,22.0,25.0,30.0,26.0,14.0,16.0,15.0,9.0,5.0,14.0,14.0,7.0,14.0,10.0,9.0,12.0,3.0,6.0,10.0,3.0,7.0,5.0,3.0,6.0,1.0,3.0,1.0,4.0,5.0,,1.0,,,,2.0, F84698,74.0,77.0,68.0,74.0,59.0,68.0,59.0,77.0,66.0,67.0,74.0,54.0,68.0,67.0,71.0,56.0,61.0,67.0,63.0,71.0,70.0,85.0,105.0,124.0,156.0,205.0,210.0,244.0,282.0,276.0,259.0,259.0,253.0,252.0,245.0,216.0,212.0,207.0,166.0,146.0,131.0,144.0,118.0,105.0,88.0,103.0,70.0,78.0,58.0,67.0,62.0,54.0,42.0,56.0,61.0,58.0,51.0,31.0,39.0,35.0,32.0,27.0,30.0,37.0,22.0,23.0,10.0,13.0,22.0,16.0,13.0,9.0,5.0,8.0,5.0,4.0,8.0,6.0,4.0,3.0,2.0,3.0,2.0,1.0,1.0,2.0,1.0,4.0,3.0,,1.0,,1.0,1.0,, F84710,52.0,53.0,58.0,56.0,58.0,47.0,69.0,54.0,62.0,64.0,57.0,58.0,75.0,65.0,52.0,77.0,63.0,61.0,64.0,61.0,56.0,84.0,95.0,90.0,129.0,168.0,201.0,210.0,237.0,222.0,216.0,222.0,204.0,231.0,196.0,228.0,197.0,197.0,175.0,170.0,158.0,166.0,163.0,138.0,145.0,116.0,107.0,93.0,93.0,98.0,71.0,91.0,93.0,82.0,67.0,63.0,64.0,61.0,68.0,65.0,47.0,65.0,52.0,52.0,35.0,45.0,33.0,44.0,30.0,23.0,30.0,21.0,26.0,26.0,23.0,22.0,27.0,25.0,27.0,14.0,16.0,12.0,6.0,5.0,5.0,3.0,10.0,5.0,3.0,4.0,5.0,2.0,1.0,,1.0,3.0 F84716,40.0,56.0,51.0,58.0,62.0,55.0,42.0,41.0,33.0,37.0,45.0,41.0,32.0,38.0,45.0,42.0,37.0,47.0,36.0,30.0,28.0,49.0,42.0,26.0,39.0,39.0,53.0,75.0,62.0,72.0,82.0,75.0,68.0,75.0,75.0,72.0,52.0,66.0,75.0,53.0,56.0,56.0,42.0,49.0,39.0,45.0,33.0,44.0,26.0,21.0,33.0,23.0,21.0,26.0,19.0,22.0,23.0,14.0,20.0,28.0,20.0,20.0,21.0,20.0,23.0,13.0,5.0,11.0,9.0,10.0,15.0,18.0,11.0,9.0,6.0,12.0,11.0,15.0,11.0,3.0,5.0,7.0,2.0,1.0,3.0,5.0,,3.0,4.0,3.0,4.0,2.0,2.0,,,4.0 F84717,36.0,66.0,62.0,54.0,61.0,65.0,59.0,60.0,88.0,73.0,59.0,64.0,64.0,69.0,73.0,52.0,63.0,70.0,61.0,66.0,94.0,85.0,90.0,92.0,134.0,153.0,133.0,151.0,147.0,164.0,155.0,158.0,136.0,143.0,164.0,162.0,144.0,183.0,172.0,168.0,154.0,132.0,114.0,121.0,133.0,104.0,97.0,84.0,87.0,82.0,79.0,54.0,69.0,69.0,71.0,51.0,54.0,48.0,51.0,59.0,43.0,45.0,52.0,35.0,45.0,23.0,35.0,25.0,26.0,25.0,27.0,22.0,11.0,17.0,15.0,13.0,11.0,17.0,11.0,9.0,7.0,8.0,5.0,4.0,2.0,4.0,5.0,1.0,3.0,2.0,3.0,3.0,1.0,,1.0, F84718,79.0,68.0,66.0,80.0,73.0,44.0,60.0,70.0,47.0,71.0,76.0,66.0,74.0,54.0,56.0,65.0,54.0,61.0,58.0,63.0,79.0,86.0,106.0,106.0,120.0,148.0,178.0,196.0,217.0,255.0,245.0,272.0,256.0,283.0,262.0,293.0,239.0,264.0,231.0,223.0,224.0,179.0,152.0,165.0,148.0,126.0,120.0,92.0,89.0,88.0,78.0,94.0,62.0,75.0,79.0,56.0,61.0,46.0,51.0,46.0,46.0,45.0,45.0,44.0,53.0,39.0,27.0,33.0,28.0,28.0,26.0,19.0,24.0,14.0,12.0,3.0,14.0,11.0,17.0,8.0,2.0,3.0,8.0,5.0,1.0,2.0,7.0,9.0,5.0,1.0,,1.0,2.0,1.0,,6.0 F84719,20.0,19.0,18.0,11.0,17.0,23.0,19.0,25.0,17.0,29.0,21.0,19.0,26.0,22.0,23.0,23.0,26.0,30.0,25.0,34.0,29.0,31.0,22.0,20.0,43.0,41.0,40.0,50.0,51.0,50.0,63.0,51.0,77.0,74.0,65.0,70.0,64.0,55.0,50.0,45.0,58.0,54.0,45.0,47.0,52.0,51.0,45.0,51.0,45.0,40.0,40.0,47.0,33.0,40.0,57.0,42.0,41.0,38.0,46.0,39.0,38.0,42.0,38.0,34.0,26.0,29.0,32.0,29.0,30.0,22.0,15.0,9.0,14.0,10.0,13.0,10.0,10.0,7.0,6.0,11.0,4.0,8.0,8.0,6.0,2.0,5.0,4.0,5.0,5.0,3.0,2.0,6.0,,2.0,,1.0 F84720,26.0,40.0,33.0,48.0,47.0,38.0,41.0,44.0,42.0,46.0,37.0,29.0,52.0,31.0,40.0,36.0,31.0,27.0,32.0,32.0,40.0,43.0,33.0,38.0,35.0,30.0,38.0,28.0,45.0,36.0,48.0,40.0,33.0,40.0,41.0,56.0,40.0,34.0,40.0,36.0,49.0,40.0,37.0,58.0,52.0,52.0,41.0,35.0,41.0,39.0,36.0,31.0,48.0,23.0,37.0,20.0,44.0,27.0,42.0,36.0,32.0,32.0,26.0,18.0,23.0,20.0,25.0,31.0,12.0,22.0,15.0,21.0,20.0,12.0,20.0,13.0,7.0,13.0,12.0,9.0,7.0,7.0,10.0,6.0,3.0,6.0,2.0,4.0,5.0,5.0,1.0,2.0,2.0,,2.0,5.0 F84724,116.0,144.0,125.0,126.0,131.0,125.0,130.0,124.0,121.0,106.0,110.0,108.0,108.0,113.0,96.0,98.0,126.0,98.0,105.0,114.0,100.0,90.0,119.0,144.0,149.0,166.0,173.0,202.0,188.0,175.0,193.0,174.0,165.0,203.0,212.0,227.0,269.0,233.0,223.0,231.0,261.0,243.0,218.0,207.0,229.0,198.0,188.0,167.0,155.0,155.0,143.0,148.0,115.0,117.0,114.0,110.0,102.0,100.0,85.0,86.0,75.0,64.0,59.0,70.0,60.0,58.0,44.0,57.0,50.0,36.0,37.0,33.0,40.0,29.0,24.0,12.0,14.0,12.0,14.0,10.0,5.0,10.0,9.0,6.0,6.0,8.0,3.0,5.0,6.0,5.0,2.0,6.0,1.0,,3.0,1.0 F84729,20.0,20.0,31.0,22.0,35.0,34.0,22.0,34.0,40.0,34.0,27.0,25.0,38.0,34.0,53.0,48.0,33.0,45.0,45.0,38.0,34.0,30.0,46.0,49.0,50.0,63.0,69.0,57.0,58.0,61.0,43.0,42.0,48.0,45.0,46.0,41.0,55.0,53.0,61.0,60.0,53.0,47.0,45.0,41.0,50.0,46.0,50.0,40.0,47.0,49.0,43.0,44.0,51.0,34.0,48.0,29.0,28.0,35.0,32.0,37.0,26.0,21.0,27.0,17.0,17.0,16.0,11.0,17.0,13.0,12.0,6.0,13.0,4.0,4.0,3.0,1.0,4.0,5.0,7.0,,4.0,1.0,2.0,2.0,3.0,3.0,3.0,2.0,1.0,2.0,3.0,,,,, F84730,40.0,34.0,51.0,52.0,54.0,28.0,55.0,49.0,66.0,45.0,54.0,68.0,61.0,46.0,65.0,49.0,33.0,67.0,45.0,46.0,59.0,57.0,59.0,69.0,67.0,75.0,77.0,90.0,82.0,109.0,112.0,88.0,89.0,108.0,117.0,113.0,141.0,113.0,147.0,137.0,118.0,112.0,105.0,78.0,120.0,91.0,91.0,77.0,97.0,89.0,80.0,80.0,72.0,64.0,70.0,68.0,73.0,54.0,59.0,49.0,53.0,62.0,45.0,41.0,36.0,41.0,39.0,23.0,25.0,26.0,20.0,16.0,14.0,17.0,9.0,10.0,12.0,5.0,8.0,9.0,2.0,4.0,4.0,3.0,3.0,3.0,4.0,1.0,3.0,,1.0,3.0,,,, F84731,8.0,3.0,5.0,5.0,5.0,4.0,5.0,3.0,5.0,8.0,5.0,5.0,8.0,4.0,5.0,8.0,7.0,4.0,3.0,1.0,2.0,4.0,6.0,11.0,16.0,13.0,22.0,27.0,31.0,24.0,39.0,31.0,33.0,29.0,28.0,33.0,29.0,35.0,29.0,29.0,30.0,24.0,25.0,22.0,16.0,23.0,20.0,22.0,19.0,15.0,14.0,17.0,19.0,18.0,13.0,16.0,27.0,17.0,9.0,12.0,16.0,16.0,11.0,12.0,9.0,11.0,9.0,14.0,15.0,9.0,8.0,6.0,16.0,6.0,8.0,2.0,2.0,6.0,3.0,7.0,6.0,3.0,2.0,4.0,2.0,1.0,1.0,1.0,1.0,1.0,1.0,,,,, F84733,,,,,,,,,,,,,,,,,,,1.0,3.0,1.0,6.0,18.0,11.0,19.0,15.0,22.0,16.0,24.0,13.0,16.0,24.0,25.0,24.0,18.0,22.0,25.0,25.0,25.0,33.0,28.0,35.0,27.0,35.0,30.0,35.0,32.0,30.0,38.0,25.0,26.0,17.0,23.0,20.0,20.0,21.0,15.0,18.0,15.0,11.0,10.0,9.0,11.0,9.0,1.0,6.0,10.0,8.0,4.0,5.0,1.0,5.0,3.0,2.0,3.0,,2.0,,,,2.0,1.0,,,,,,,,,,,,,, F84735,36.0,56.0,33.0,39.0,42.0,44.0,52.0,56.0,60.0,60.0,57.0,57.0,82.0,72.0,68.0,69.0,70.0,70.0,67.0,78.0,78.0,70.0,71.0,60.0,70.0,73.0,96.0,86.0,76.0,60.0,67.0,54.0,74.0,73.0,72.0,56.0,74.0,64.0,90.0,79.0,81.0,69.0,76.0,81.0,81.0,69.0,80.0,58.0,65.0,64.0,63.0,65.0,68.0,65.0,75.0,58.0,70.0,57.0,36.0,44.0,53.0,35.0,25.0,31.0,38.0,32.0,22.0,23.0,22.0,27.0,20.0,12.0,19.0,14.0,17.0,10.0,9.0,11.0,7.0,8.0,9.0,4.0,8.0,5.0,3.0,5.0,4.0,6.0,4.0,7.0,1.0,2.0,,1.0,,2.0 F84739,25.0,34.0,32.0,23.0,32.0,22.0,15.0,33.0,31.0,30.0,30.0,34.0,29.0,29.0,38.0,35.0,34.0,42.0,45.0,41.0,40.0,41.0,52.0,48.0,44.0,57.0,85.0,62.0,86.0,67.0,57.0,53.0,56.0,46.0,52.0,79.0,56.0,68.0,78.0,62.0,62.0,55.0,66.0,57.0,32.0,54.0,78.0,62.0,50.0,53.0,53.0,45.0,44.0,43.0,41.0,45.0,29.0,39.0,23.0,29.0,29.0,16.0,14.0,20.0,30.0,12.0,12.0,10.0,13.0,6.0,10.0,8.0,4.0,6.0,8.0,4.0,3.0,3.0,1.0,2.0,1.0,,,2.0,,1.0,,,1.0,,1.0,,1.0,,, F84740,12.0,15.0,27.0,22.0,16.0,12.0,24.0,20.0,20.0,21.0,25.0,24.0,22.0,27.0,25.0,19.0,23.0,20.0,24.0,19.0,22.0,28.0,43.0,38.0,51.0,42.0,47.0,56.0,45.0,46.0,59.0,53.0,41.0,40.0,44.0,63.0,61.0,65.0,69.0,62.0,60.0,57.0,58.0,58.0,54.0,61.0,58.0,53.0,57.0,42.0,42.0,65.0,50.0,38.0,50.0,50.0,35.0,37.0,30.0,40.0,29.0,29.0,21.0,22.0,18.0,27.0,23.0,19.0,6.0,7.0,10.0,4.0,4.0,7.0,4.0,2.0,1.0,3.0,3.0,2.0,,2.0,1.0,3.0,2.0,,1.0,,2.0,,,,,,, F84741,14.0,8.0,7.0,6.0,12.0,10.0,10.0,8.0,11.0,8.0,11.0,14.0,11.0,13.0,11.0,19.0,23.0,15.0,16.0,14.0,11.0,9.0,12.0,18.0,18.0,25.0,36.0,40.0,35.0,33.0,14.0,17.0,25.0,22.0,17.0,29.0,41.0,23.0,28.0,31.0,31.0,21.0,23.0,14.0,29.0,17.0,18.0,25.0,17.0,8.0,18.0,16.0,12.0,16.0,14.0,11.0,12.0,17.0,10.0,15.0,12.0,5.0,8.0,10.0,7.0,14.0,6.0,14.0,12.0,10.0,7.0,5.0,4.0,3.0,5.0,3.0,6.0,2.0,3.0,2.0,2.0,2.0,5.0,3.0,4.0,1.0,4.0,3.0,,3.0,1.0,1.0,,,,3.0 F84747,148.0,151.0,161.0,168.0,127.0,140.0,129.0,126.0,157.0,130.0,138.0,136.0,127.0,156.0,127.0,120.0,152.0,121.0,114.0,115.0,122.0,158.0,143.0,170.0,190.0,263.0,303.0,343.0,368.0,345.0,403.0,376.0,443.0,452.0,431.0,461.0,376.0,448.0,423.0,432.0,388.0,360.0,358.0,324.0,321.0,257.0,268.0,259.0,244.0,201.0,208.0,177.0,149.0,136.0,123.0,112.0,111.0,115.0,81.0,92.0,92.0,85.0,66.0,69.0,67.0,63.0,64.0,60.0,40.0,51.0,25.0,24.0,23.0,28.0,17.0,21.0,25.0,18.0,18.0,10.0,8.0,7.0,8.0,9.0,9.0,5.0,,12.0,3.0,2.0,1.0,5.0,2.0,3.0,1.0,3.0 F84749,129.0,141.0,141.0,115.0,133.0,116.0,119.0,111.0,110.0,128.0,112.0,119.0,118.0,102.0,112.0,115.0,97.0,119.0,116.0,128.0,100.0,159.0,216.0,282.0,366.0,446.0,506.0,476.0,511.0,483.0,440.0,439.0,415.0,358.0,351.0,334.0,353.0,320.0,306.0,295.0,285.0,263.0,232.0,212.0,191.0,191.0,158.0,139.0,169.0,124.0,131.0,111.0,89.0,100.0,101.0,99.0,96.0,92.0,70.0,89.0,70.0,71.0,65.0,60.0,49.0,65.0,40.0,47.0,28.0,38.0,32.0,25.0,24.0,23.0,18.0,13.0,9.0,14.0,15.0,7.0,10.0,2.0,4.0,6.0,2.0,4.0,6.0,6.0,1.0,2.0,,4.0,,1.0,,1.0 F86001,102.0,82.0,59.0,64.0,56.0,56.0,51.0,35.0,48.0,61.0,42.0,43.0,69.0,57.0,49.0,51.0,38.0,49.0,58.0,52.0,69.0,64.0,64.0,111.0,106.0,111.0,117.0,142.0,145.0,169.0,147.0,136.0,157.0,153.0,146.0,143.0,160.0,126.0,153.0,123.0,116.0,105.0,90.0,90.0,95.0,76.0,86.0,74.0,79.0,95.0,64.0,78.0,70.0,83.0,58.0,55.0,60.0,61.0,56.0,48.0,37.0,42.0,54.0,39.0,40.0,45.0,41.0,40.0,33.0,34.0,30.0,23.0,33.0,19.0,26.0,12.0,15.0,7.0,16.0,10.0,6.0,8.0,17.0,8.0,9.0,11.0,7.0,7.0,3.0,4.0,4.0,4.0,3.0,3.0,,4.0 F86004,74.0,89.0,93.0,90.0,74.0,102.0,104.0,112.0,122.0,96.0,116.0,109.0,93.0,106.0,101.0,104.0,100.0,97.0,87.0,94.0,90.0,82.0,75.0,79.0,79.0,105.0,81.0,102.0,92.0,80.0,89.0,84.0,130.0,102.0,100.0,129.0,137.0,129.0,132.0,116.0,121.0,113.0,130.0,129.0,123.0,115.0,128.0,135.0,106.0,99.0,86.0,105.0,101.0,105.0,129.0,88.0,92.0,98.0,101.0,97.0,114.0,105.0,83.0,74.0,76.0,87.0,80.0,80.0,62.0,60.0,63.0,56.0,51.0,56.0,45.0,53.0,56.0,51.0,57.0,47.0,28.0,30.0,19.0,29.0,20.0,31.0,20.0,17.0,18.0,16.0,8.0,8.0,8.0,6.0,5.0,7.0 F86005,47.0,54.0,72.0,67.0,64.0,58.0,92.0,56.0,57.0,55.0,61.0,50.0,57.0,45.0,46.0,53.0,45.0,38.0,52.0,45.0,53.0,36.0,43.0,48.0,45.0,39.0,43.0,46.0,49.0,69.0,73.0,78.0,91.0,80.0,93.0,88.0,120.0,102.0,94.0,92.0,101.0,100.0,81.0,92.0,96.0,73.0,76.0,69.0,61.0,70.0,51.0,66.0,52.0,79.0,56.0,60.0,48.0,55.0,34.0,38.0,33.0,44.0,38.0,29.0,31.0,34.0,19.0,26.0,27.0,14.0,24.0,9.0,16.0,15.0,14.0,8.0,7.0,11.0,10.0,5.0,13.0,5.0,11.0,8.0,,4.0,4.0,6.0,3.0,3.0,,2.0,,2.0,1.0,1.0 F86006,37.0,42.0,39.0,45.0,30.0,41.0,40.0,47.0,50.0,41.0,36.0,40.0,39.0,52.0,50.0,45.0,51.0,56.0,40.0,39.0,44.0,48.0,33.0,46.0,37.0,47.0,44.0,44.0,54.0,64.0,60.0,61.0,67.0,76.0,70.0,69.0,66.0,71.0,74.0,73.0,74.0,87.0,55.0,65.0,63.0,65.0,61.0,53.0,64.0,56.0,51.0,58.0,48.0,60.0,50.0,55.0,50.0,53.0,39.0,49.0,46.0,31.0,49.0,37.0,40.0,28.0,24.0,31.0,16.0,22.0,20.0,22.0,14.0,21.0,14.0,6.0,7.0,16.0,9.0,5.0,7.0,5.0,3.0,3.0,6.0,7.0,4.0,9.0,4.0,3.0,2.0,3.0,1.0,1.0,1.0,2.0 F86007,72.0,72.0,91.0,82.0,113.0,83.0,102.0,103.0,111.0,100.0,89.0,107.0,88.0,101.0,86.0,92.0,111.0,98.0,79.0,82.0,70.0,70.0,82.0,88.0,94.0,68.0,80.0,84.0,96.0,89.0,81.0,104.0,98.0,105.0,117.0,106.0,120.0,121.0,136.0,122.0,136.0,135.0,123.0,122.0,126.0,128.0,114.0,103.0,102.0,97.0,92.0,97.0,99.0,64.0,70.0,83.0,88.0,87.0,67.0,71.0,58.0,69.0,64.0,63.0,60.0,73.0,45.0,53.0,52.0,49.0,33.0,37.0,27.0,34.0,38.0,45.0,38.0,35.0,43.0,18.0,21.0,21.0,14.0,14.0,10.0,7.0,15.0,9.0,10.0,6.0,4.0,8.0,4.0,2.0,3.0,4.0 F86008,95.0,77.0,71.0,97.0,77.0,97.0,87.0,83.0,95.0,96.0,99.0,96.0,115.0,82.0,121.0,81.0,115.0,102.0,123.0,97.0,120.0,106.0,137.0,159.0,131.0,180.0,167.0,170.0,167.0,159.0,150.0,181.0,174.0,170.0,156.0,187.0,152.0,154.0,160.0,159.0,136.0,155.0,137.0,121.0,133.0,139.0,130.0,116.0,118.0,120.0,112.0,85.0,96.0,67.0,82.0,70.0,82.0,74.0,63.0,61.0,76.0,55.0,79.0,63.0,58.0,75.0,37.0,48.0,44.0,43.0,48.0,41.0,48.0,33.0,33.0,35.0,26.0,27.0,27.0,24.0,28.0,21.0,27.0,20.0,9.0,28.0,12.0,6.0,11.0,6.0,13.0,8.0,7.0,6.0,4.0,12.0 F86009,15.0,21.0,29.0,38.0,31.0,29.0,36.0,34.0,33.0,42.0,41.0,31.0,47.0,37.0,41.0,42.0,58.0,52.0,49.0,32.0,65.0,68.0,63.0,61.0,67.0,64.0,65.0,70.0,73.0,61.0,65.0,57.0,61.0,60.0,57.0,44.0,54.0,58.0,60.0,39.0,49.0,54.0,51.0,51.0,56.0,71.0,50.0,48.0,52.0,50.0,43.0,35.0,45.0,44.0,37.0,51.0,49.0,49.0,37.0,53.0,49.0,51.0,38.0,32.0,40.0,32.0,32.0,46.0,30.0,30.0,26.0,40.0,18.0,20.0,31.0,23.0,23.0,28.0,21.0,21.0,12.0,16.0,14.0,13.0,12.0,14.0,8.0,9.0,6.0,12.0,6.0,2.0,4.0,6.0,3.0,10.0 F86010,80.0,96.0,85.0,83.0,100.0,94.0,99.0,109.0,110.0,119.0,101.0,73.0,101.0,103.0,98.0,111.0,105.0,95.0,112.0,71.0,95.0,90.0,96.0,119.0,125.0,146.0,134.0,140.0,142.0,149.0,147.0,146.0,156.0,159.0,148.0,139.0,149.0,162.0,129.0,144.0,142.0,130.0,158.0,120.0,131.0,129.0,122.0,116.0,108.0,104.0,121.0,115.0,101.0,94.0,84.0,86.0,107.0,83.0,84.0,104.0,83.0,77.0,74.0,67.0,56.0,69.0,59.0,63.0,43.0,65.0,47.0,34.0,52.0,46.0,36.0,43.0,48.0,41.0,34.0,37.0,40.0,23.0,28.0,21.0,23.0,30.0,17.0,15.0,10.0,7.0,15.0,10.0,11.0,3.0,2.0,6.0 F86011,35.0,46.0,56.0,48.0,35.0,46.0,44.0,55.0,55.0,58.0,50.0,53.0,58.0,54.0,54.0,51.0,56.0,53.0,54.0,62.0,70.0,58.0,64.0,88.0,70.0,80.0,115.0,84.0,76.0,100.0,99.0,84.0,83.0,109.0,105.0,112.0,102.0,95.0,96.0,107.0,108.0,103.0,103.0,81.0,93.0,111.0,86.0,100.0,71.0,84.0,82.0,102.0,72.0,86.0,73.0,63.0,67.0,79.0,63.0,63.0,53.0,61.0,63.0,50.0,47.0,52.0,43.0,43.0,40.0,33.0,22.0,35.0,25.0,23.0,23.0,16.0,10.0,25.0,16.0,18.0,18.0,13.0,15.0,7.0,6.0,7.0,12.0,8.0,12.0,9.0,6.0,4.0,1.0,2.0,2.0,4.0 F86012,29.0,22.0,35.0,35.0,38.0,40.0,38.0,41.0,37.0,57.0,37.0,47.0,57.0,58.0,59.0,72.0,44.0,80.0,58.0,50.0,60.0,59.0,53.0,61.0,59.0,75.0,62.0,74.0,56.0,53.0,52.0,61.0,64.0,53.0,47.0,59.0,40.0,40.0,44.0,57.0,49.0,58.0,48.0,55.0,52.0,59.0,59.0,56.0,60.0,51.0,70.0,71.0,80.0,82.0,73.0,82.0,69.0,57.0,74.0,79.0,59.0,76.0,65.0,69.0,48.0,62.0,63.0,64.0,50.0,49.0,53.0,43.0,43.0,43.0,48.0,36.0,53.0,51.0,49.0,41.0,35.0,36.0,26.0,23.0,29.0,25.0,12.0,18.0,19.0,13.0,14.0,8.0,5.0,5.0,,11.0 F86013,21.0,21.0,30.0,38.0,24.0,38.0,43.0,40.0,46.0,33.0,36.0,43.0,35.0,50.0,39.0,41.0,41.0,48.0,43.0,29.0,40.0,27.0,30.0,34.0,30.0,36.0,42.0,30.0,48.0,44.0,36.0,41.0,43.0,48.0,47.0,47.0,42.0,46.0,45.0,43.0,60.0,50.0,53.0,59.0,61.0,48.0,52.0,66.0,56.0,46.0,36.0,36.0,50.0,47.0,48.0,33.0,46.0,38.0,42.0,41.0,42.0,49.0,38.0,34.0,33.0,34.0,22.0,24.0,23.0,29.0,18.0,24.0,22.0,15.0,13.0,14.0,32.0,17.0,20.0,11.0,11.0,13.0,12.0,8.0,7.0,3.0,6.0,2.0,7.0,3.0,5.0,8.0,2.0,3.0,1.0,5.0 F86018,45.0,38.0,51.0,53.0,49.0,55.0,60.0,57.0,58.0,54.0,70.0,67.0,59.0,63.0,81.0,49.0,68.0,83.0,72.0,65.0,51.0,64.0,58.0,61.0,63.0,55.0,58.0,75.0,62.0,70.0,67.0,70.0,74.0,80.0,62.0,93.0,83.0,77.0,72.0,76.0,103.0,78.0,85.0,81.0,77.0,92.0,82.0,61.0,72.0,60.0,59.0,64.0,68.0,66.0,54.0,64.0,65.0,75.0,54.0,48.0,71.0,58.0,58.0,43.0,62.0,47.0,53.0,48.0,33.0,40.0,29.0,26.0,35.0,23.0,26.0,20.0,21.0,33.0,24.0,13.0,28.0,17.0,18.0,10.0,9.0,11.0,14.0,9.0,7.0,7.0,6.0,3.0,3.0,1.0,6.0,5.0 F86020,31.0,40.0,41.0,53.0,45.0,32.0,35.0,43.0,39.0,39.0,33.0,31.0,30.0,39.0,20.0,31.0,29.0,24.0,23.0,19.0,16.0,27.0,14.0,33.0,18.0,38.0,35.0,38.0,41.0,39.0,55.0,52.0,47.0,48.0,64.0,58.0,61.0,69.0,59.0,69.0,56.0,58.0,59.0,55.0,60.0,50.0,59.0,49.0,38.0,36.0,32.0,37.0,39.0,47.0,23.0,37.0,35.0,37.0,35.0,43.0,35.0,34.0,45.0,35.0,32.0,29.0,23.0,27.0,29.0,32.0,36.0,21.0,20.0,20.0,21.0,16.0,23.0,25.0,26.0,9.0,27.0,15.0,17.0,11.0,14.0,9.0,4.0,7.0,7.0,1.0,7.0,1.0,2.0,2.0,3.0,5.0 F86022,73.0,80.0,78.0,92.0,88.0,89.0,98.0,114.0,92.0,98.0,87.0,90.0,105.0,114.0,98.0,104.0,88.0,112.0,108.0,99.0,118.0,135.0,142.0,177.0,185.0,188.0,159.0,189.0,182.0,142.0,171.0,142.0,161.0,137.0,178.0,193.0,185.0,198.0,183.0,171.0,170.0,181.0,162.0,157.0,154.0,154.0,144.0,121.0,139.0,135.0,107.0,104.0,91.0,97.0,93.0,104.0,92.0,93.0,88.0,91.0,59.0,56.0,67.0,64.0,59.0,50.0,51.0,47.0,52.0,55.0,42.0,46.0,32.0,25.0,34.0,22.0,31.0,15.0,24.0,15.0,16.0,12.0,15.0,19.0,10.0,9.0,9.0,14.0,6.0,11.0,6.0,4.0,5.0,3.0,1.0,7.0 F86023,51.0,66.0,56.0,67.0,69.0,76.0,58.0,65.0,67.0,49.0,54.0,59.0,66.0,50.0,59.0,56.0,59.0,62.0,52.0,41.0,34.0,50.0,46.0,38.0,54.0,54.0,61.0,81.0,65.0,74.0,71.0,99.0,81.0,69.0,86.0,88.0,108.0,97.0,91.0,91.0,107.0,98.0,99.0,84.0,87.0,104.0,85.0,83.0,69.0,64.0,89.0,89.0,60.0,57.0,63.0,67.0,65.0,83.0,56.0,59.0,55.0,63.0,66.0,56.0,48.0,44.0,40.0,47.0,35.0,46.0,29.0,35.0,30.0,31.0,35.0,35.0,38.0,37.0,43.0,25.0,23.0,29.0,23.0,18.0,14.0,22.0,15.0,15.0,10.0,9.0,5.0,7.0,5.0,3.0,2.0,8.0 F86025,109.0,103.0,124.0,133.0,128.0,104.0,145.0,136.0,114.0,131.0,158.0,139.0,147.0,132.0,133.0,126.0,134.0,132.0,156.0,134.0,148.0,189.0,171.0,192.0,232.0,235.0,213.0,230.0,223.0,200.0,190.0,213.0,172.0,151.0,166.0,181.0,186.0,188.0,178.0,170.0,164.0,150.0,163.0,166.0,156.0,163.0,150.0,138.0,150.0,136.0,112.0,117.0,97.0,101.0,118.0,97.0,103.0,82.0,88.0,74.0,79.0,78.0,84.0,64.0,66.0,48.0,63.0,50.0,46.0,49.0,43.0,37.0,33.0,42.0,34.0,26.0,21.0,24.0,18.0,22.0,20.0,16.0,10.0,15.0,12.0,14.0,9.0,4.0,6.0,8.0,7.0,11.0,1.0,1.0,4.0,8.0 F86026,35.0,23.0,33.0,28.0,37.0,43.0,41.0,52.0,55.0,48.0,54.0,50.0,42.0,45.0,51.0,54.0,38.0,37.0,46.0,39.0,50.0,35.0,43.0,37.0,52.0,44.0,42.0,52.0,62.0,47.0,57.0,61.0,64.0,65.0,55.0,61.0,79.0,77.0,79.0,90.0,63.0,51.0,70.0,80.0,54.0,65.0,71.0,62.0,42.0,38.0,42.0,51.0,51.0,54.0,40.0,41.0,47.0,53.0,43.0,42.0,38.0,40.0,33.0,36.0,30.0,41.0,32.0,29.0,26.0,22.0,17.0,17.0,10.0,23.0,13.0,18.0,15.0,19.0,13.0,5.0,7.0,10.0,5.0,6.0,6.0,4.0,5.0,1.0,8.0,3.0,5.0,3.0,,2.0,2.0,2.0 F86028,61.0,73.0,64.0,62.0,58.0,77.0,91.0,89.0,92.0,91.0,92.0,94.0,89.0,79.0,78.0,92.0,103.0,98.0,90.0,75.0,91.0,87.0,84.0,92.0,75.0,72.0,85.0,79.0,88.0,87.0,83.0,76.0,84.0,84.0,79.0,74.0,85.0,90.0,72.0,96.0,91.0,75.0,94.0,81.0,90.0,93.0,94.0,75.0,91.0,84.0,71.0,77.0,57.0,74.0,64.0,52.0,68.0,60.0,51.0,56.0,56.0,45.0,47.0,43.0,41.0,39.0,38.0,38.0,32.0,23.0,26.0,22.0,22.0,23.0,18.0,13.0,16.0,14.0,16.0,6.0,14.0,10.0,8.0,12.0,5.0,7.0,11.0,12.0,12.0,11.0,4.0,3.0,3.0,3.0,2.0,4.0 F86030,46.0,55.0,50.0,50.0,45.0,60.0,55.0,42.0,42.0,44.0,50.0,55.0,45.0,58.0,53.0,54.0,48.0,43.0,55.0,51.0,52.0,47.0,55.0,57.0,53.0,63.0,54.0,60.0,77.0,81.0,90.0,99.0,91.0,94.0,97.0,102.0,108.0,106.0,108.0,106.0,108.0,112.0,118.0,105.0,90.0,92.0,71.0,73.0,65.0,66.0,85.0,59.0,63.0,80.0,53.0,60.0,51.0,41.0,34.0,34.0,28.0,24.0,21.0,25.0,29.0,21.0,17.0,19.0,17.0,19.0,15.0,19.0,25.0,19.0,9.0,7.0,12.0,10.0,10.0,8.0,9.0,8.0,6.0,3.0,6.0,13.0,3.0,6.0,5.0,6.0,,,,,,2.0 F86032,48.0,46.0,48.0,45.0,51.0,60.0,69.0,58.0,60.0,66.0,60.0,48.0,64.0,63.0,38.0,53.0,44.0,54.0,43.0,40.0,27.0,31.0,43.0,45.0,49.0,55.0,51.0,43.0,51.0,52.0,58.0,60.0,70.0,66.0,55.0,67.0,67.0,69.0,83.0,65.0,73.0,78.0,93.0,83.0,81.0,84.0,66.0,77.0,74.0,69.0,75.0,72.0,55.0,55.0,57.0,59.0,54.0,49.0,39.0,50.0,42.0,49.0,52.0,57.0,46.0,47.0,42.0,39.0,33.0,41.0,40.0,25.0,37.0,34.0,22.0,34.0,28.0,43.0,28.0,21.0,27.0,17.0,17.0,12.0,7.0,22.0,10.0,14.0,1.0,16.0,9.0,10.0,4.0,,1.0,8.0 F86034,46.0,49.0,46.0,37.0,53.0,51.0,47.0,48.0,53.0,54.0,50.0,58.0,47.0,52.0,41.0,36.0,46.0,70.0,44.0,59.0,65.0,53.0,73.0,58.0,60.0,71.0,68.0,72.0,89.0,65.0,60.0,58.0,65.0,65.0,61.0,75.0,83.0,73.0,69.0,67.0,66.0,69.0,66.0,52.0,65.0,47.0,51.0,49.0,42.0,55.0,43.0,44.0,36.0,39.0,46.0,32.0,36.0,35.0,33.0,31.0,42.0,28.0,21.0,21.0,30.0,26.0,27.0,26.0,24.0,28.0,22.0,13.0,16.0,9.0,8.0,13.0,10.0,8.0,13.0,9.0,7.0,6.0,4.0,2.0,7.0,5.0,3.0,2.0,2.0,2.0,4.0,,5.0,,1.0,1.0 F86036,81.0,76.0,73.0,73.0,87.0,70.0,96.0,88.0,91.0,96.0,96.0,89.0,95.0,82.0,85.0,89.0,75.0,95.0,84.0,60.0,71.0,75.0,68.0,66.0,72.0,89.0,103.0,92.0,101.0,100.0,91.0,95.0,123.0,117.0,146.0,117.0,179.0,184.0,147.0,164.0,201.0,157.0,171.0,160.0,178.0,158.0,129.0,150.0,149.0,119.0,117.0,113.0,109.0,84.0,108.0,84.0,95.0,81.0,64.0,72.0,72.0,62.0,77.0,84.0,68.0,65.0,52.0,60.0,47.0,44.0,51.0,50.0,60.0,42.0,30.0,35.0,32.0,23.0,34.0,20.0,22.0,13.0,13.0,8.0,9.0,15.0,13.0,9.0,10.0,4.0,2.0,3.0,2.0,1.0,,5.0 F86038,62.0,59.0,67.0,62.0,75.0,71.0,81.0,82.0,65.0,81.0,88.0,80.0,104.0,111.0,85.0,95.0,98.0,84.0,85.0,87.0,83.0,100.0,99.0,97.0,79.0,115.0,107.0,105.0,113.0,103.0,95.0,111.0,128.0,113.0,127.0,125.0,127.0,121.0,127.0,113.0,132.0,110.0,120.0,114.0,97.0,115.0,109.0,103.0,110.0,98.0,83.0,82.0,93.0,83.0,72.0,81.0,64.0,75.0,59.0,73.0,64.0,59.0,54.0,36.0,47.0,27.0,43.0,31.0,27.0,23.0,30.0,23.0,22.0,23.0,12.0,18.0,13.0,11.0,10.0,7.0,5.0,9.0,6.0,12.0,8.0,4.0,8.0,9.0,6.0,8.0,5.0,2.0,3.0,,3.0,2.0 F86040,25.0,37.0,29.0,35.0,37.0,36.0,38.0,44.0,48.0,39.0,36.0,37.0,46.0,45.0,44.0,41.0,42.0,55.0,39.0,28.0,47.0,29.0,41.0,48.0,32.0,46.0,45.0,49.0,48.0,53.0,45.0,48.0,45.0,54.0,51.0,50.0,55.0,49.0,55.0,45.0,59.0,48.0,58.0,48.0,58.0,52.0,41.0,36.0,52.0,38.0,51.0,51.0,36.0,38.0,53.0,44.0,47.0,43.0,29.0,31.0,32.0,28.0,22.0,22.0,19.0,22.0,29.0,20.0,16.0,20.0,19.0,12.0,7.0,9.0,4.0,10.0,6.0,6.0,4.0,8.0,3.0,4.0,3.0,2.0,2.0,5.0,3.0,,2.0,4.0,1.0,3.0,1.0,1.0,,1.0 F86042,30.0,24.0,31.0,31.0,46.0,45.0,46.0,58.0,46.0,45.0,67.0,58.0,56.0,62.0,65.0,64.0,39.0,48.0,39.0,49.0,49.0,33.0,42.0,36.0,37.0,47.0,43.0,47.0,34.0,37.0,22.0,47.0,38.0,53.0,58.0,64.0,66.0,61.0,60.0,70.0,88.0,59.0,74.0,76.0,85.0,75.0,49.0,45.0,67.0,49.0,49.0,47.0,48.0,32.0,24.0,28.0,37.0,25.0,22.0,25.0,23.0,18.0,23.0,16.0,23.0,15.0,16.0,21.0,20.0,16.0,15.0,20.0,10.0,10.0,12.0,17.0,11.0,10.0,8.0,9.0,3.0,7.0,5.0,6.0,2.0,8.0,2.0,3.0,2.0,,1.0,,1.0,2.0,, F86044,49.0,69.0,54.0,79.0,52.0,71.0,75.0,71.0,73.0,56.0,51.0,46.0,51.0,55.0,45.0,44.0,41.0,50.0,41.0,49.0,46.0,44.0,46.0,63.0,78.0,89.0,114.0,107.0,90.0,122.0,119.0,129.0,143.0,150.0,168.0,168.0,142.0,154.0,150.0,142.0,132.0,140.0,111.0,107.0,119.0,120.0,99.0,82.0,93.0,93.0,77.0,53.0,67.0,81.0,75.0,58.0,57.0,54.0,39.0,43.0,48.0,43.0,34.0,31.0,38.0,40.0,32.0,28.0,25.0,20.0,19.0,14.0,14.0,13.0,18.0,8.0,11.0,10.0,11.0,5.0,6.0,6.0,8.0,4.0,12.0,8.0,3.0,2.0,3.0,8.0,4.0,1.0,4.0,2.0,,5.0 F86045,7.0,14.0,5.0,7.0,6.0,9.0,6.0,6.0,3.0,12.0,7.0,8.0,9.0,8.0,10.0,8.0,10.0,10.0,7.0,11.0,15.0,15.0,17.0,18.0,15.0,24.0,27.0,20.0,31.0,35.0,29.0,23.0,27.0,20.0,23.0,23.0,30.0,30.0,29.0,21.0,21.0,25.0,26.0,24.0,34.0,20.0,26.0,16.0,22.0,21.0,22.0,18.0,25.0,18.0,11.0,18.0,17.0,15.0,18.0,9.0,11.0,8.0,12.0,6.0,8.0,8.0,8.0,12.0,5.0,5.0,6.0,6.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,2.0,1.0,1.0,3.0,3.0,3.0,2.0,2.0,1.0,3.0,1.0,,1.0,1.0,,,1.0 F86057,52.0,47.0,55.0,52.0,49.0,53.0,72.0,44.0,52.0,49.0,47.0,40.0,43.0,50.0,57.0,58.0,48.0,61.0,45.0,39.0,33.0,40.0,40.0,50.0,40.0,46.0,60.0,48.0,61.0,59.0,61.0,74.0,65.0,68.0,72.0,71.0,71.0,66.0,65.0,59.0,73.0,52.0,52.0,58.0,81.0,61.0,57.0,51.0,49.0,53.0,43.0,49.0,49.0,46.0,50.0,49.0,51.0,51.0,48.0,31.0,45.0,50.0,44.0,38.0,36.0,41.0,25.0,28.0,24.0,26.0,27.0,33.0,14.0,15.0,15.0,19.0,18.0,25.0,25.0,10.0,17.0,15.0,14.0,8.0,10.0,14.0,8.0,8.0,4.0,7.0,4.0,1.0,2.0,2.0,2.0,8.0 F86058,89.0,94.0,111.0,100.0,88.0,99.0,100.0,84.0,105.0,88.0,83.0,88.0,104.0,94.0,92.0,103.0,100.0,91.0,79.0,95.0,75.0,83.0,69.0,96.0,106.0,97.0,120.0,119.0,109.0,138.0,149.0,174.0,155.0,157.0,173.0,192.0,206.0,180.0,179.0,180.0,191.0,201.0,177.0,161.0,185.0,145.0,151.0,153.0,124.0,114.0,117.0,119.0,98.0,111.0,117.0,97.0,101.0,64.0,82.0,68.0,63.0,70.0,64.0,61.0,61.0,61.0,43.0,39.0,46.0,16.0,41.0,27.0,30.0,16.0,19.0,14.0,17.0,12.0,17.0,17.0,5.0,9.0,13.0,9.0,5.0,5.0,3.0,8.0,7.0,2.0,3.0,3.0,3.0,,1.0,2.0 F86060,77.0,72.0,88.0,105.0,79.0,82.0,109.0,103.0,106.0,105.0,121.0,92.0,109.0,111.0,111.0,126.0,118.0,118.0,111.0,97.0,98.0,104.0,119.0,105.0,126.0,110.0,123.0,135.0,109.0,110.0,120.0,90.0,114.0,124.0,131.0,125.0,123.0,141.0,123.0,138.0,129.0,133.0,150.0,118.0,133.0,97.0,122.0,127.0,115.0,114.0,105.0,88.0,77.0,99.0,92.0,77.0,75.0,92.0,76.0,86.0,66.0,68.0,73.0,59.0,60.0,55.0,48.0,52.0,47.0,40.0,33.0,33.0,39.0,39.0,29.0,28.0,26.0,36.0,24.0,25.0,15.0,16.0,17.0,21.0,15.0,16.0,16.0,13.0,5.0,3.0,8.0,5.0,4.0,2.0,4.0,6.0 F86062,32.0,31.0,28.0,40.0,34.0,34.0,33.0,36.0,48.0,39.0,40.0,35.0,37.0,43.0,52.0,46.0,36.0,32.0,38.0,29.0,41.0,41.0,47.0,36.0,42.0,43.0,39.0,52.0,67.0,50.0,56.0,58.0,67.0,72.0,75.0,73.0,77.0,74.0,80.0,68.0,87.0,61.0,82.0,63.0,55.0,73.0,55.0,55.0,39.0,46.0,33.0,40.0,50.0,53.0,48.0,39.0,40.0,46.0,38.0,49.0,36.0,29.0,30.0,36.0,30.0,19.0,31.0,23.0,22.0,20.0,20.0,15.0,14.0,19.0,17.0,18.0,10.0,15.0,13.0,12.0,9.0,10.0,8.0,4.0,6.0,10.0,13.0,7.0,4.0,4.0,5.0,4.0,,4.0,,4.0 F86064,21.0,14.0,16.0,14.0,24.0,23.0,17.0,29.0,21.0,33.0,30.0,24.0,30.0,27.0,28.0,38.0,27.0,41.0,28.0,28.0,27.0,19.0,21.0,28.0,39.0,18.0,21.0,35.0,34.0,26.0,39.0,35.0,28.0,34.0,30.0,36.0,27.0,30.0,33.0,31.0,29.0,31.0,34.0,37.0,30.0,36.0,48.0,43.0,36.0,34.0,35.0,38.0,31.0,35.0,41.0,30.0,37.0,31.0,35.0,30.0,26.0,27.0,30.0,23.0,34.0,19.0,26.0,28.0,18.0,25.0,27.0,15.0,12.0,14.0,14.0,20.0,14.0,10.0,23.0,7.0,6.0,8.0,8.0,5.0,3.0,4.0,6.0,5.0,1.0,3.0,3.0,4.0,1.0,1.0,2.0,1.0 F86066,30.0,20.0,43.0,40.0,30.0,39.0,45.0,54.0,58.0,47.0,53.0,52.0,46.0,47.0,48.0,47.0,42.0,40.0,42.0,36.0,37.0,37.0,39.0,46.0,30.0,45.0,32.0,49.0,49.0,62.0,56.0,47.0,50.0,47.0,49.0,51.0,49.0,58.0,52.0,57.0,56.0,65.0,66.0,64.0,79.0,71.0,47.0,64.0,52.0,64.0,68.0,65.0,48.0,52.0,49.0,56.0,42.0,40.0,49.0,59.0,39.0,40.0,31.0,43.0,37.0,36.0,39.0,36.0,41.0,25.0,27.0,25.0,26.0,18.0,32.0,25.0,27.0,27.0,27.0,14.0,15.0,16.0,11.0,5.0,10.0,15.0,9.0,9.0,10.0,5.0,7.0,4.0,4.0,2.0,1.0,4.0 F86074,67.0,76.0,86.0,81.0,87.0,85.0,75.0,76.0,93.0,86.0,76.0,88.0,104.0,96.0,89.0,104.0,85.0,85.0,96.0,83.0,76.0,92.0,82.0,90.0,107.0,88.0,103.0,108.0,124.0,140.0,138.0,148.0,161.0,161.0,174.0,193.0,176.0,164.0,193.0,188.0,159.0,169.0,156.0,197.0,175.0,162.0,121.0,139.0,136.0,119.0,109.0,103.0,116.0,100.0,109.0,94.0,104.0,82.0,61.0,60.0,70.0,67.0,55.0,52.0,53.0,39.0,44.0,34.0,32.0,31.0,37.0,40.0,36.0,27.0,22.0,17.0,20.0,15.0,13.0,13.0,15.0,15.0,8.0,11.0,7.0,4.0,9.0,10.0,3.0,5.0,3.0,2.0,2.0,1.0,,2.0 F86078,20.0,22.0,32.0,29.0,31.0,25.0,18.0,34.0,34.0,36.0,25.0,32.0,39.0,31.0,34.0,39.0,46.0,35.0,37.0,44.0,49.0,24.0,37.0,37.0,45.0,45.0,39.0,38.0,49.0,44.0,45.0,46.0,53.0,59.0,46.0,44.0,36.0,44.0,33.0,36.0,41.0,40.0,33.0,38.0,48.0,50.0,41.0,33.0,42.0,47.0,37.0,37.0,40.0,44.0,54.0,50.0,52.0,47.0,48.0,54.0,48.0,55.0,48.0,43.0,39.0,49.0,38.0,39.0,44.0,36.0,28.0,36.0,30.0,29.0,29.0,29.0,25.0,28.0,36.0,28.0,24.0,18.0,18.0,17.0,11.0,14.0,10.0,10.0,11.0,11.0,8.0,4.0,3.0,3.0,2.0,5.0 F86081,30.0,33.0,38.0,43.0,38.0,44.0,40.0,53.0,45.0,39.0,40.0,57.0,51.0,52.0,53.0,44.0,53.0,57.0,53.0,40.0,42.0,52.0,35.0,38.0,52.0,48.0,52.0,34.0,54.0,43.0,43.0,43.0,45.0,63.0,47.0,54.0,53.0,59.0,48.0,53.0,50.0,65.0,65.0,59.0,73.0,64.0,42.0,42.0,58.0,43.0,56.0,60.0,62.0,44.0,40.0,42.0,47.0,45.0,45.0,33.0,37.0,32.0,40.0,31.0,42.0,34.0,27.0,41.0,15.0,19.0,21.0,24.0,21.0,25.0,23.0,11.0,17.0,11.0,24.0,11.0,9.0,12.0,12.0,16.0,9.0,10.0,6.0,8.0,4.0,6.0,1.0,3.0,2.0,3.0,1.0,4.0 F86082,44.0,29.0,37.0,28.0,36.0,43.0,35.0,38.0,36.0,37.0,45.0,37.0,36.0,45.0,37.0,40.0,40.0,36.0,53.0,48.0,52.0,56.0,62.0,68.0,68.0,94.0,95.0,88.0,67.0,78.0,60.0,71.0,64.0,71.0,72.0,70.0,49.0,74.0,80.0,54.0,66.0,58.0,51.0,54.0,57.0,65.0,45.0,53.0,48.0,47.0,36.0,50.0,37.0,30.0,28.0,34.0,32.0,23.0,32.0,16.0,28.0,25.0,22.0,16.0,19.0,37.0,23.0,26.0,18.0,19.0,20.0,23.0,15.0,15.0,16.0,10.0,8.0,9.0,7.0,10.0,6.0,5.0,4.0,7.0,7.0,3.0,7.0,4.0,2.0,1.0,,3.0,,1.0,, F86083,33.0,24.0,32.0,29.0,31.0,29.0,34.0,26.0,35.0,41.0,35.0,32.0,40.0,43.0,39.0,29.0,39.0,38.0,46.0,46.0,50.0,34.0,53.0,47.0,55.0,47.0,48.0,55.0,62.0,48.0,55.0,45.0,54.0,48.0,69.0,62.0,46.0,52.0,50.0,64.0,62.0,56.0,53.0,42.0,46.0,53.0,55.0,34.0,49.0,50.0,39.0,36.0,33.0,28.0,44.0,42.0,37.0,39.0,41.0,26.0,44.0,38.0,38.0,32.0,46.0,39.0,31.0,29.0,35.0,26.0,37.0,27.0,27.0,20.0,29.0,27.0,22.0,16.0,25.0,29.0,16.0,10.0,9.0,11.0,10.0,8.0,9.0,6.0,7.0,7.0,4.0,3.0,,7.0,3.0,4.0 F86085,15.0,19.0,24.0,13.0,20.0,23.0,19.0,15.0,21.0,21.0,21.0,19.0,18.0,26.0,14.0,19.0,16.0,19.0,27.0,12.0,23.0,24.0,25.0,20.0,29.0,17.0,36.0,30.0,29.0,28.0,28.0,22.0,36.0,33.0,39.0,25.0,39.0,36.0,40.0,29.0,34.0,27.0,35.0,33.0,39.0,38.0,26.0,30.0,22.0,25.0,24.0,29.0,22.0,19.0,26.0,29.0,25.0,21.0,26.0,24.0,28.0,24.0,12.0,16.0,12.0,22.0,15.0,15.0,18.0,14.0,19.0,11.0,11.0,5.0,10.0,8.0,9.0,10.0,9.0,8.0,5.0,5.0,7.0,8.0,5.0,4.0,5.0,1.0,2.0,4.0,1.0,1.0,2.0,2.0,2.0,3.0 F86086,21.0,31.0,40.0,32.0,38.0,60.0,47.0,51.0,47.0,47.0,57.0,45.0,48.0,52.0,52.0,36.0,41.0,52.0,38.0,31.0,44.0,40.0,35.0,33.0,49.0,43.0,45.0,43.0,43.0,37.0,49.0,39.0,39.0,30.0,65.0,45.0,69.0,60.0,50.0,53.0,60.0,59.0,57.0,60.0,56.0,53.0,55.0,50.0,50.0,57.0,58.0,39.0,31.0,46.0,42.0,41.0,37.0,46.0,46.0,38.0,31.0,26.0,32.0,30.0,27.0,26.0,21.0,23.0,17.0,19.0,14.0,9.0,15.0,15.0,8.0,11.0,7.0,8.0,6.0,2.0,6.0,4.0,3.0,2.0,2.0,2.0,6.0,1.0,2.0,1.0,,1.0,1.0,,,3.0 F86087,33.0,40.0,41.0,41.0,45.0,40.0,44.0,59.0,53.0,48.0,40.0,45.0,47.0,47.0,41.0,64.0,40.0,51.0,51.0,53.0,57.0,68.0,68.0,61.0,64.0,76.0,74.0,68.0,62.0,57.0,58.0,56.0,68.0,73.0,61.0,81.0,78.0,85.0,57.0,67.0,63.0,66.0,82.0,70.0,69.0,65.0,62.0,63.0,63.0,57.0,56.0,47.0,55.0,43.0,44.0,44.0,43.0,40.0,34.0,34.0,33.0,35.0,29.0,27.0,44.0,38.0,20.0,25.0,23.0,20.0,29.0,25.0,18.0,22.0,17.0,24.0,11.0,13.0,13.0,8.0,7.0,4.0,8.0,10.0,4.0,4.0,4.0,5.0,4.0,2.0,2.0,2.0,3.0,,3.0,2.0 F86088,24.0,35.0,28.0,21.0,26.0,20.0,21.0,20.0,18.0,21.0,18.0,23.0,32.0,21.0,20.0,28.0,32.0,27.0,23.0,30.0,35.0,35.0,35.0,35.0,29.0,22.0,55.0,40.0,45.0,38.0,49.0,39.0,48.0,58.0,60.0,62.0,64.0,69.0,59.0,72.0,66.0,50.0,51.0,48.0,42.0,51.0,36.0,36.0,50.0,42.0,33.0,35.0,33.0,24.0,37.0,34.0,34.0,38.0,35.0,26.0,40.0,24.0,28.0,33.0,27.0,20.0,30.0,23.0,29.0,17.0,19.0,11.0,15.0,16.0,13.0,7.0,8.0,6.0,10.0,11.0,8.0,8.0,4.0,9.0,9.0,9.0,4.0,6.0,5.0,5.0,4.0,2.0,1.0,2.0,,3.0 F86607,128.0,135.0,115.0,141.0,119.0,101.0,108.0,89.0,101.0,120.0,106.0,107.0,102.0,120.0,104.0,101.0,91.0,85.0,89.0,79.0,62.0,75.0,69.0,88.0,86.0,84.0,110.0,119.0,146.0,140.0,160.0,169.0,198.0,229.0,191.0,221.0,211.0,222.0,222.0,203.0,206.0,201.0,165.0,190.0,175.0,145.0,139.0,146.0,150.0,135.0,119.0,138.0,110.0,140.0,121.0,116.0,88.0,96.0,92.0,79.0,77.0,79.0,88.0,66.0,48.0,58.0,43.0,33.0,42.0,41.0,31.0,34.0,23.0,24.0,22.0,16.0,28.0,20.0,35.0,22.0,13.0,17.0,14.0,14.0,9.0,12.0,8.0,6.0,7.0,4.0,2.0,5.0,3.0,2.0,1.0,3.0 F86612,10.0,10.0,11.0,13.0,17.0,21.0,25.0,21.0,16.0,27.0,13.0,30.0,17.0,20.0,19.0,26.0,25.0,17.0,20.0,15.0,17.0,18.0,21.0,19.0,29.0,17.0,27.0,25.0,24.0,13.0,22.0,23.0,20.0,24.0,22.0,25.0,21.0,26.0,20.0,30.0,25.0,22.0,23.0,28.0,25.0,24.0,22.0,23.0,15.0,20.0,19.0,20.0,21.0,20.0,14.0,22.0,21.0,11.0,23.0,23.0,19.0,19.0,11.0,15.0,12.0,19.0,19.0,13.0,13.0,12.0,10.0,12.0,10.0,10.0,3.0,4.0,9.0,11.0,7.0,9.0,8.0,10.0,8.0,5.0,8.0,3.0,3.0,7.0,1.0,4.0,1.0,5.0,,,1.0,1.0 F86616,59.0,64.0,62.0,70.0,74.0,76.0,64.0,60.0,70.0,62.0,55.0,64.0,48.0,55.0,61.0,45.0,56.0,44.0,41.0,48.0,45.0,39.0,43.0,37.0,41.0,46.0,41.0,41.0,40.0,47.0,54.0,45.0,53.0,60.0,86.0,59.0,73.0,89.0,90.0,89.0,88.0,98.0,79.0,85.0,80.0,70.0,73.0,74.0,60.0,66.0,62.0,67.0,39.0,48.0,51.0,35.0,40.0,54.0,57.0,47.0,44.0,51.0,35.0,26.0,38.0,35.0,31.0,40.0,15.0,36.0,19.0,20.0,29.0,23.0,23.0,28.0,17.0,24.0,15.0,22.0,17.0,14.0,23.0,13.0,11.0,16.0,8.0,9.0,11.0,7.0,7.0,3.0,5.0,3.0,6.0,5.0 F86621,38.0,37.0,50.0,43.0,42.0,43.0,44.0,33.0,28.0,41.0,28.0,23.0,34.0,32.0,32.0,22.0,29.0,23.0,23.0,20.0,36.0,39.0,26.0,40.0,35.0,34.0,45.0,56.0,57.0,67.0,66.0,72.0,91.0,80.0,81.0,85.0,81.0,85.0,109.0,105.0,101.0,85.0,78.0,95.0,97.0,65.0,50.0,66.0,54.0,51.0,58.0,47.0,41.0,42.0,51.0,33.0,42.0,38.0,36.0,27.0,31.0,38.0,34.0,27.0,28.0,39.0,30.0,22.0,21.0,28.0,24.0,18.0,16.0,19.0,18.0,12.0,14.0,12.0,9.0,13.0,7.0,8.0,10.0,7.0,3.0,5.0,5.0,8.0,8.0,,6.0,2.0,1.0,1.0,2.0,1.0 F86624,7.0,12.0,15.0,9.0,16.0,12.0,21.0,22.0,16.0,24.0,14.0,20.0,33.0,25.0,26.0,27.0,30.0,31.0,22.0,29.0,28.0,24.0,22.0,19.0,29.0,19.0,27.0,30.0,22.0,24.0,22.0,23.0,26.0,22.0,30.0,22.0,25.0,24.0,28.0,21.0,27.0,30.0,19.0,25.0,30.0,22.0,25.0,17.0,21.0,29.0,25.0,20.0,19.0,21.0,21.0,21.0,19.0,29.0,21.0,30.0,17.0,23.0,24.0,20.0,25.0,16.0,21.0,11.0,14.0,19.0,14.0,14.0,15.0,11.0,19.0,12.0,8.0,10.0,9.0,11.0,9.0,7.0,6.0,3.0,3.0,6.0,8.0,2.0,3.0,1.0,3.0,5.0,1.0,2.0,3.0, F86625,20.0,22.0,20.0,33.0,35.0,28.0,31.0,32.0,35.0,20.0,29.0,19.0,32.0,34.0,42.0,43.0,37.0,46.0,45.0,28.0,39.0,47.0,32.0,40.0,32.0,52.0,53.0,40.0,47.0,51.0,52.0,52.0,45.0,51.0,71.0,57.0,52.0,65.0,59.0,60.0,49.0,55.0,57.0,68.0,59.0,39.0,47.0,41.0,61.0,59.0,43.0,28.0,50.0,44.0,51.0,38.0,44.0,46.0,51.0,50.0,35.0,42.0,42.0,29.0,27.0,26.0,21.0,27.0,22.0,16.0,18.0,27.0,16.0,12.0,14.0,13.0,11.0,9.0,6.0,5.0,8.0,5.0,4.0,3.0,7.0,9.0,4.0,7.0,6.0,5.0,3.0,3.0,2.0,1.0,2.0,4.0 F86626,62.0,49.0,53.0,66.0,46.0,55.0,50.0,43.0,43.0,40.0,55.0,41.0,57.0,49.0,51.0,53.0,51.0,53.0,52.0,51.0,38.0,61.0,58.0,64.0,61.0,60.0,50.0,67.0,82.0,77.0,81.0,91.0,95.0,108.0,109.0,108.0,105.0,95.0,99.0,115.0,120.0,97.0,91.0,105.0,82.0,67.0,80.0,78.0,63.0,79.0,66.0,63.0,63.0,63.0,64.0,58.0,46.0,58.0,30.0,27.0,41.0,31.0,45.0,27.0,27.0,26.0,25.0,22.0,18.0,15.0,28.0,12.0,9.0,9.0,10.0,10.0,15.0,9.0,6.0,5.0,5.0,7.0,4.0,4.0,3.0,5.0,8.0,2.0,5.0,2.0,2.0,3.0,,1.0,2.0, F86627,64.0,60.0,79.0,56.0,68.0,73.0,62.0,72.0,80.0,65.0,92.0,97.0,98.0,86.0,93.0,98.0,85.0,103.0,88.0,76.0,78.0,69.0,85.0,101.0,95.0,96.0,101.0,102.0,103.0,110.0,103.0,106.0,107.0,102.0,108.0,107.0,109.0,100.0,106.0,89.0,98.0,84.0,101.0,91.0,107.0,88.0,82.0,98.0,83.0,80.0,97.0,78.0,87.0,72.0,96.0,97.0,114.0,99.0,105.0,107.0,106.0,78.0,80.0,69.0,68.0,83.0,71.0,53.0,60.0,71.0,39.0,53.0,51.0,39.0,43.0,36.0,36.0,42.0,54.0,33.0,32.0,22.0,22.0,23.0,19.0,20.0,20.0,15.0,14.0,9.0,3.0,8.0,11.0,9.0,5.0,4.0 F86637,27.0,33.0,14.0,36.0,28.0,25.0,41.0,35.0,36.0,37.0,35.0,32.0,32.0,36.0,27.0,36.0,29.0,38.0,24.0,37.0,34.0,33.0,32.0,40.0,39.0,53.0,49.0,51.0,42.0,41.0,41.0,48.0,40.0,52.0,40.0,48.0,53.0,46.0,40.0,47.0,49.0,46.0,43.0,42.0,44.0,44.0,29.0,41.0,34.0,40.0,24.0,29.0,34.0,31.0,29.0,30.0,26.0,36.0,35.0,32.0,31.0,30.0,34.0,34.0,26.0,38.0,19.0,23.0,28.0,26.0,25.0,18.0,26.0,25.0,12.0,15.0,16.0,19.0,13.0,10.0,7.0,6.0,2.0,10.0,4.0,11.0,5.0,5.0,7.0,5.0,1.0,1.0,3.0,2.0,,2.0 F86638,13.0,15.0,16.0,24.0,26.0,21.0,37.0,34.0,39.0,31.0,28.0,27.0,24.0,25.0,28.0,29.0,34.0,30.0,36.0,25.0,26.0,33.0,30.0,29.0,31.0,23.0,28.0,31.0,30.0,28.0,34.0,34.0,30.0,24.0,32.0,30.0,41.0,33.0,39.0,38.0,42.0,30.0,37.0,50.0,30.0,30.0,27.0,29.0,38.0,31.0,35.0,25.0,30.0,33.0,28.0,30.0,40.0,18.0,34.0,25.0,30.0,27.0,18.0,27.0,27.0,21.0,14.0,23.0,19.0,20.0,19.0,12.0,11.0,15.0,19.0,13.0,19.0,11.0,11.0,10.0,6.0,6.0,8.0,6.0,5.0,4.0,4.0,6.0,5.0,3.0,5.0,2.0,1.0,3.0,2.0,3.0 F86641,52.0,63.0,58.0,59.0,59.0,53.0,66.0,77.0,54.0,58.0,63.0,54.0,57.0,38.0,62.0,49.0,49.0,51.0,42.0,26.0,26.0,36.0,36.0,32.0,42.0,45.0,45.0,47.0,50.0,41.0,46.0,52.0,57.0,71.0,73.0,67.0,66.0,94.0,73.0,85.0,99.0,88.0,93.0,100.0,107.0,102.0,83.0,83.0,81.0,72.0,68.0,48.0,52.0,53.0,34.0,46.0,46.0,38.0,39.0,43.0,43.0,39.0,37.0,28.0,31.0,34.0,40.0,20.0,29.0,28.0,30.0,23.0,17.0,22.0,19.0,15.0,24.0,25.0,21.0,14.0,10.0,15.0,10.0,10.0,10.0,3.0,5.0,10.0,6.0,3.0,1.0,,1.0,3.0,,1.0 F86644,29.0,37.0,35.0,36.0,36.0,50.0,33.0,49.0,49.0,41.0,54.0,62.0,65.0,67.0,71.0,62.0,76.0,69.0,63.0,63.0,65.0,66.0,56.0,52.0,72.0,77.0,73.0,62.0,71.0,73.0,73.0,83.0,87.0,72.0,89.0,77.0,77.0,81.0,75.0,69.0,74.0,79.0,93.0,79.0,71.0,95.0,73.0,71.0,85.0,61.0,53.0,63.0,64.0,76.0,77.0,64.0,54.0,51.0,55.0,45.0,54.0,46.0,44.0,57.0,51.0,38.0,32.0,32.0,30.0,28.0,22.0,24.0,34.0,16.0,13.0,17.0,14.0,16.0,21.0,15.0,10.0,9.0,10.0,8.0,13.0,10.0,12.0,10.0,3.0,2.0,3.0,3.0,1.0,2.0,1.0,4.0 F86650,45.0,45.0,41.0,47.0,53.0,58.0,52.0,51.0,40.0,42.0,52.0,40.0,43.0,37.0,44.0,38.0,45.0,45.0,42.0,44.0,45.0,40.0,58.0,42.0,63.0,68.0,65.0,59.0,81.0,78.0,94.0,81.0,72.0,72.0,88.0,104.0,95.0,91.0,87.0,97.0,85.0,98.0,81.0,77.0,88.0,64.0,80.0,67.0,76.0,61.0,63.0,46.0,52.0,53.0,53.0,38.0,46.0,45.0,42.0,44.0,50.0,42.0,41.0,37.0,35.0,30.0,36.0,28.0,14.0,18.0,21.0,19.0,20.0,16.0,23.0,14.0,12.0,11.0,21.0,10.0,11.0,10.0,7.0,4.0,11.0,5.0,9.0,4.0,2.0,2.0,1.0,3.0,2.0,3.0,,7.0 F86652,36.0,39.0,41.0,45.0,35.0,40.0,36.0,47.0,36.0,48.0,52.0,51.0,54.0,56.0,53.0,50.0,68.0,67.0,53.0,51.0,50.0,50.0,38.0,54.0,57.0,61.0,54.0,73.0,67.0,63.0,62.0,63.0,69.0,52.0,57.0,66.0,58.0,83.0,59.0,67.0,58.0,58.0,66.0,53.0,47.0,57.0,56.0,57.0,60.0,56.0,40.0,62.0,50.0,43.0,51.0,40.0,35.0,40.0,34.0,32.0,28.0,18.0,34.0,21.0,31.0,28.0,25.0,27.0,24.0,28.0,32.0,19.0,22.0,23.0,17.0,10.0,18.0,7.0,13.0,10.0,13.0,12.0,10.0,10.0,7.0,6.0,11.0,3.0,6.0,3.0,2.0,2.0,2.0,1.0,2.0,2.0 F86657,59.0,48.0,47.0,42.0,38.0,49.0,51.0,53.0,45.0,49.0,42.0,43.0,42.0,64.0,47.0,62.0,57.0,42.0,46.0,48.0,46.0,37.0,42.0,45.0,53.0,63.0,69.0,78.0,84.0,86.0,65.0,64.0,69.0,97.0,87.0,84.0,100.0,111.0,102.0,119.0,104.0,119.0,100.0,92.0,102.0,91.0,87.0,85.0,77.0,71.0,66.0,62.0,72.0,57.0,49.0,45.0,47.0,45.0,44.0,34.0,30.0,29.0,33.0,34.0,23.0,22.0,25.0,16.0,22.0,21.0,25.0,19.0,16.0,15.0,20.0,17.0,19.0,18.0,8.0,7.0,10.0,3.0,4.0,2.0,13.0,6.0,4.0,5.0,,4.0,1.0,3.0,,1.0,3.0,3.0 F86658,43.0,48.0,54.0,59.0,41.0,50.0,33.0,46.0,45.0,47.0,49.0,47.0,38.0,42.0,37.0,36.0,20.0,27.0,23.0,27.0,30.0,28.0,32.0,39.0,29.0,35.0,39.0,44.0,40.0,47.0,56.0,67.0,53.0,66.0,52.0,55.0,76.0,69.0,49.0,58.0,69.0,64.0,72.0,61.0,60.0,43.0,56.0,49.0,41.0,38.0,37.0,37.0,28.0,42.0,39.0,30.0,31.0,31.0,35.0,27.0,24.0,27.0,39.0,25.0,17.0,19.0,26.0,19.0,14.0,19.0,18.0,15.0,11.0,21.0,14.0,13.0,22.0,15.0,10.0,6.0,10.0,17.0,5.0,5.0,8.0,6.0,7.0,4.0,2.0,4.0,7.0,3.0,1.0,,,1.0 F86664,36.0,53.0,56.0,42.0,41.0,70.0,50.0,42.0,49.0,55.0,49.0,37.0,51.0,52.0,70.0,56.0,56.0,58.0,38.0,51.0,56.0,44.0,51.0,45.0,45.0,48.0,44.0,52.0,51.0,53.0,47.0,53.0,52.0,66.0,71.0,50.0,69.0,68.0,77.0,63.0,52.0,81.0,70.0,64.0,62.0,64.0,63.0,60.0,72.0,64.0,66.0,62.0,51.0,69.0,62.0,59.0,69.0,61.0,63.0,53.0,62.0,52.0,53.0,36.0,43.0,50.0,40.0,30.0,38.0,24.0,19.0,33.0,26.0,25.0,20.0,17.0,35.0,28.0,29.0,7.0,24.0,19.0,13.0,12.0,16.0,8.0,12.0,8.0,10.0,5.0,3.0,6.0,4.0,3.0,5.0,4.0 F86666,91.0,82.0,76.0,100.0,57.0,90.0,87.0,88.0,93.0,101.0,102.0,99.0,95.0,95.0,89.0,75.0,91.0,93.0,88.0,85.0,93.0,92.0,86.0,109.0,140.0,147.0,134.0,130.0,188.0,132.0,145.0,191.0,191.0,175.0,190.0,222.0,213.0,205.0,193.0,209.0,158.0,195.0,169.0,171.0,161.0,158.0,146.0,137.0,110.0,110.0,103.0,86.0,113.0,79.0,91.0,95.0,79.0,89.0,79.0,97.0,71.0,74.0,62.0,52.0,73.0,60.0,46.0,42.0,39.0,29.0,32.0,33.0,26.0,35.0,22.0,24.0,15.0,16.0,15.0,11.0,13.0,12.0,16.0,13.0,8.0,6.0,2.0,5.0,5.0,1.0,5.0,3.0,,3.0,3.0,5.0 F86679,61.0,42.0,46.0,56.0,52.0,53.0,50.0,51.0,47.0,53.0,45.0,45.0,44.0,42.0,48.0,50.0,53.0,39.0,47.0,50.0,33.0,43.0,37.0,27.0,19.0,26.0,45.0,40.0,57.0,51.0,60.0,67.0,61.0,67.0,62.0,76.0,79.0,75.0,82.0,74.0,84.0,61.0,74.0,64.0,84.0,66.0,62.0,65.0,35.0,49.0,44.0,34.0,44.0,49.0,50.0,37.0,36.0,39.0,27.0,34.0,24.0,24.0,17.0,14.0,23.0,19.0,21.0,22.0,14.0,10.0,10.0,16.0,12.0,4.0,5.0,5.0,3.0,7.0,6.0,7.0,5.0,2.0,2.0,4.0,1.0,2.0,,1.0,1.0,2.0,1.0,1.0,,,, F86689,32.0,44.0,42.0,51.0,44.0,47.0,48.0,41.0,36.0,36.0,32.0,28.0,25.0,23.0,20.0,20.0,25.0,14.0,11.0,14.0,8.0,12.0,14.0,10.0,8.0,14.0,12.0,16.0,14.0,13.0,21.0,18.0,28.0,30.0,30.0,49.0,35.0,48.0,58.0,57.0,63.0,67.0,54.0,47.0,52.0,53.0,39.0,50.0,33.0,31.0,30.0,29.0,27.0,31.0,28.0,32.0,20.0,16.0,18.0,9.0,6.0,16.0,14.0,16.0,17.0,13.0,10.0,7.0,12.0,16.0,10.0,11.0,11.0,8.0,7.0,7.0,9.0,9.0,6.0,2.0,3.0,3.0,,,,2.0,,,,1.0,,1.0,,1.0,1.0,1.0 F86691,53.0,68.0,56.0,62.0,58.0,62.0,59.0,58.0,69.0,56.0,72.0,64.0,78.0,68.0,78.0,88.0,74.0,89.0,73.0,65.0,95.0,88.0,100.0,105.0,102.0,92.0,85.0,89.0,80.0,84.0,69.0,72.0,83.0,89.0,83.0,74.0,67.0,87.0,72.0,65.0,71.0,82.0,88.0,76.0,79.0,78.0,69.0,81.0,87.0,89.0,63.0,76.0,87.0,85.0,72.0,71.0,70.0,83.0,64.0,67.0,74.0,68.0,47.0,61.0,52.0,60.0,53.0,52.0,42.0,42.0,39.0,45.0,36.0,34.0,32.0,33.0,29.0,26.0,26.0,24.0,20.0,16.0,22.0,19.0,19.0,15.0,15.0,15.0,10.0,8.0,6.0,5.0,3.0,4.0,1.0,10.0 F86692,58.0,64.0,65.0,74.0,70.0,59.0,89.0,85.0,104.0,108.0,81.0,94.0,105.0,108.0,93.0,84.0,80.0,94.0,91.0,90.0,91.0,94.0,103.0,108.0,123.0,111.0,139.0,130.0,114.0,114.0,87.0,83.0,94.0,99.0,122.0,113.0,103.0,110.0,92.0,98.0,89.0,110.0,118.0,104.0,84.0,95.0,93.0,79.0,100.0,74.0,67.0,67.0,71.0,64.0,64.0,52.0,64.0,57.0,47.0,56.0,44.0,44.0,52.0,44.0,46.0,45.0,36.0,54.0,41.0,30.0,34.0,27.0,30.0,27.0,18.0,23.0,22.0,14.0,6.0,6.0,3.0,11.0,5.0,4.0,9.0,7.0,8.0,4.0,5.0,4.0,3.0,1.0,1.0,2.0,,4.0 F86696,60.0,59.0,36.0,59.0,47.0,49.0,33.0,34.0,34.0,25.0,36.0,32.0,40.0,28.0,39.0,29.0,40.0,39.0,43.0,43.0,38.0,48.0,46.0,45.0,49.0,85.0,76.0,96.0,92.0,73.0,113.0,96.0,94.0,116.0,106.0,120.0,125.0,113.0,109.0,105.0,87.0,102.0,88.0,90.0,68.0,78.0,61.0,72.0,69.0,43.0,39.0,46.0,39.0,36.0,30.0,45.0,40.0,37.0,34.0,31.0,24.0,26.0,29.0,30.0,24.0,27.0,18.0,15.0,15.0,10.0,14.0,16.0,16.0,11.0,12.0,11.0,9.0,10.0,7.0,7.0,5.0,2.0,6.0,5.0,5.0,3.0,2.0,4.0,3.0,4.0,,,,2.0,, F86698,35.0,40.0,24.0,38.0,38.0,45.0,38.0,41.0,45.0,36.0,32.0,43.0,35.0,44.0,42.0,33.0,35.0,39.0,44.0,41.0,28.0,45.0,45.0,46.0,59.0,54.0,66.0,55.0,64.0,68.0,69.0,70.0,38.0,49.0,47.0,58.0,62.0,63.0,47.0,64.0,44.0,61.0,61.0,53.0,35.0,66.0,31.0,51.0,42.0,50.0,40.0,42.0,41.0,49.0,37.0,44.0,33.0,36.0,23.0,24.0,26.0,35.0,24.0,24.0,17.0,20.0,20.0,20.0,26.0,18.0,16.0,14.0,8.0,14.0,17.0,6.0,8.0,10.0,6.0,9.0,6.0,8.0,6.0,4.0,11.0,2.0,4.0,5.0,3.0,5.0,4.0,5.0,2.0,4.0,,1.0 F86700,14.0,15.0,14.0,16.0,16.0,21.0,18.0,31.0,23.0,20.0,31.0,24.0,23.0,26.0,23.0,24.0,27.0,29.0,27.0,19.0,21.0,21.0,29.0,22.0,19.0,24.0,16.0,22.0,22.0,17.0,21.0,18.0,23.0,23.0,29.0,31.0,26.0,13.0,27.0,36.0,25.0,23.0,24.0,26.0,32.0,27.0,22.0,29.0,28.0,22.0,18.0,21.0,41.0,29.0,31.0,26.0,24.0,23.0,27.0,27.0,19.0,18.0,28.0,26.0,17.0,22.0,12.0,13.0,15.0,18.0,14.0,18.0,11.0,15.0,18.0,19.0,12.0,12.0,24.0,18.0,13.0,9.0,11.0,15.0,7.0,11.0,9.0,7.0,10.0,5.0,2.0,3.0,3.0,1.0,,2.0 F86701,17.0,21.0,14.0,27.0,21.0,32.0,19.0,23.0,22.0,28.0,24.0,19.0,20.0,28.0,26.0,21.0,25.0,21.0,14.0,20.0,23.0,22.0,23.0,21.0,31.0,26.0,21.0,33.0,31.0,34.0,31.0,49.0,43.0,44.0,46.0,59.0,45.0,44.0,54.0,56.0,45.0,38.0,48.0,34.0,46.0,40.0,28.0,45.0,27.0,32.0,38.0,30.0,26.0,38.0,32.0,29.0,21.0,35.0,20.0,21.0,22.0,24.0,23.0,10.0,22.0,17.0,15.0,13.0,13.0,15.0,13.0,10.0,7.0,10.0,8.0,7.0,5.0,8.0,7.0,9.0,4.0,6.0,3.0,3.0,5.0,5.0,1.0,3.0,,6.0,,1.0,,,,1.0 F86702,23.0,29.0,20.0,22.0,29.0,35.0,39.0,35.0,35.0,49.0,41.0,36.0,36.0,33.0,36.0,35.0,47.0,37.0,30.0,31.0,34.0,24.0,16.0,28.0,21.0,19.0,23.0,28.0,30.0,30.0,33.0,25.0,29.0,27.0,32.0,45.0,32.0,35.0,43.0,34.0,40.0,51.0,50.0,40.0,43.0,58.0,33.0,38.0,38.0,30.0,37.0,38.0,27.0,23.0,23.0,19.0,18.0,30.0,22.0,20.0,31.0,28.0,26.0,25.0,14.0,28.0,15.0,35.0,20.0,22.0,15.0,16.0,21.0,14.0,20.0,14.0,7.0,15.0,19.0,13.0,8.0,6.0,11.0,7.0,10.0,12.0,7.0,5.0,8.0,5.0,5.0,1.0,1.0,4.0,1.0,4.0 F86705,16.0,15.0,23.0,26.0,19.0,11.0,14.0,12.0,18.0,10.0,19.0,17.0,18.0,27.0,16.0,23.0,11.0,23.0,17.0,11.0,19.0,13.0,9.0,13.0,29.0,22.0,23.0,36.0,33.0,42.0,35.0,28.0,34.0,50.0,39.0,52.0,56.0,45.0,55.0,47.0,51.0,44.0,49.0,40.0,51.0,33.0,33.0,32.0,28.0,29.0,27.0,24.0,22.0,25.0,19.0,17.0,20.0,22.0,15.0,11.0,11.0,19.0,19.0,17.0,18.0,17.0,15.0,15.0,18.0,5.0,6.0,3.0,10.0,12.0,9.0,9.0,5.0,3.0,2.0,1.0,2.0,1.0,4.0,2.0,4.0,1.0,4.0,1.0,,,,,2.0,,,1.0 F86707,25.0,28.0,39.0,35.0,48.0,36.0,62.0,40.0,45.0,40.0,49.0,35.0,53.0,51.0,41.0,46.0,41.0,54.0,44.0,42.0,38.0,48.0,42.0,49.0,55.0,53.0,39.0,50.0,42.0,55.0,43.0,46.0,45.0,57.0,60.0,56.0,39.0,69.0,71.0,52.0,53.0,57.0,49.0,51.0,61.0,51.0,56.0,49.0,53.0,55.0,40.0,37.0,43.0,38.0,52.0,34.0,43.0,41.0,36.0,35.0,43.0,31.0,32.0,32.0,29.0,29.0,27.0,21.0,25.0,13.0,23.0,16.0,21.0,12.0,17.0,26.0,16.0,13.0,13.0,12.0,12.0,8.0,10.0,12.0,12.0,7.0,7.0,1.0,8.0,3.0,5.0,1.0,,1.0,1.0,1.0 F86708,13.0,18.0,12.0,14.0,10.0,14.0,14.0,17.0,19.0,16.0,14.0,17.0,17.0,27.0,17.0,14.0,22.0,20.0,25.0,28.0,25.0,19.0,24.0,29.0,27.0,21.0,28.0,25.0,17.0,14.0,29.0,26.0,27.0,27.0,27.0,27.0,28.0,19.0,15.0,21.0,12.0,24.0,15.0,20.0,21.0,29.0,18.0,14.0,13.0,18.0,18.0,26.0,20.0,8.0,16.0,22.0,17.0,28.0,22.0,20.0,18.0,19.0,20.0,16.0,13.0,14.0,18.0,11.0,12.0,11.0,9.0,5.0,9.0,6.0,6.0,7.0,6.0,3.0,8.0,2.0,3.0,4.0,2.0,2.0,,3.0,2.0,1.0,2.0,,,,,,,1.0 F86712,14.0,17.0,10.0,18.0,18.0,20.0,21.0,18.0,17.0,15.0,14.0,11.0,18.0,10.0,16.0,18.0,14.0,17.0,17.0,20.0,13.0,12.0,14.0,19.0,19.0,26.0,22.0,36.0,30.0,31.0,39.0,30.0,40.0,52.0,33.0,66.0,55.0,50.0,49.0,38.0,53.0,41.0,37.0,41.0,47.0,30.0,38.0,34.0,27.0,25.0,29.0,32.0,21.0,21.0,30.0,19.0,20.0,19.0,12.0,15.0,10.0,22.0,17.0,14.0,15.0,17.0,7.0,9.0,8.0,11.0,3.0,4.0,3.0,9.0,3.0,3.0,9.0,8.0,5.0,5.0,5.0,5.0,3.0,4.0,2.0,4.0,1.0,6.0,5.0,2.0,1.0,2.0,,,1.0, F86731,25.0,39.0,35.0,41.0,26.0,37.0,24.0,33.0,33.0,39.0,21.0,32.0,27.0,32.0,28.0,36.0,27.0,17.0,29.0,17.0,18.0,17.0,19.0,24.0,29.0,33.0,27.0,26.0,28.0,40.0,34.0,29.0,35.0,42.0,48.0,42.0,46.0,43.0,40.0,38.0,46.0,37.0,47.0,52.0,37.0,30.0,34.0,34.0,32.0,38.0,31.0,31.0,38.0,26.0,36.0,34.0,33.0,30.0,39.0,22.0,19.0,20.0,38.0,30.0,31.0,32.0,23.0,17.0,25.0,22.0,16.0,20.0,16.0,21.0,15.0,14.0,16.0,7.0,11.0,8.0,13.0,9.0,7.0,2.0,2.0,7.0,7.0,4.0,3.0,2.0,,2.0,2.0,2.0,, Y00090,34.0,43.0,40.0,40.0,42.0,54.0,54.0,47.0,50.0,50.0,61.0,60.0,53.0,68.0,65.0,55.0,69.0,56.0,63.0,73.0,74.0,69.0,65.0,69.0,83.0,77.0,78.0,79.0,94.0,83.0,70.0,85.0,68.0,63.0,70.0,82.0,88.0,83.0,75.0,81.0,82.0,75.0,74.0,78.0,67.0,49.0,68.0,49.0,56.0,68.0,57.0,39.0,57.0,41.0,48.0,49.0,55.0,57.0,42.0,45.0,47.0,38.0,41.0,46.0,29.0,36.0,30.0,24.0,25.0,21.0,17.0,20.0,18.0,19.0,12.0,18.0,20.0,13.0,18.0,8.0,8.0,4.0,5.0,14.0,9.0,6.0,4.0,6.0,6.0,2.0,3.0,4.0,,,1.0,5.0 Y00155,79.0,75.0,83.0,80.0,96.0,73.0,75.0,67.0,72.0,92.0,79.0,84.0,82.0,81.0,83.0,90.0,94.0,76.0,86.0,90.0,84.0,71.0,79.0,83.0,96.0,111.0,102.0,104.0,127.0,99.0,115.0,110.0,118.0,112.0,92.0,122.0,115.0,98.0,114.0,91.0,96.0,105.0,111.0,107.0,81.0,102.0,84.0,73.0,71.0,84.0,99.0,62.0,68.0,61.0,52.0,53.0,56.0,51.0,44.0,51.0,56.0,42.0,40.0,34.0,35.0,34.0,38.0,14.0,28.0,23.0,16.0,18.0,11.0,16.0,13.0,15.0,17.0,8.0,12.0,8.0,9.0,8.0,6.0,3.0,6.0,7.0,7.0,5.0,2.0,5.0,5.0,3.0,1.0,1.0,,3.0 Y00312,19.0,16.0,28.0,28.0,22.0,36.0,46.0,33.0,47.0,49.0,57.0,36.0,41.0,45.0,40.0,42.0,36.0,48.0,51.0,41.0,26.0,35.0,34.0,24.0,47.0,27.0,20.0,31.0,30.0,28.0,22.0,22.0,25.0,22.0,28.0,28.0,25.0,29.0,30.0,39.0,29.0,31.0,31.0,33.0,33.0,28.0,33.0,41.0,26.0,27.0,28.0,27.0,17.0,29.0,26.0,33.0,33.0,16.0,23.0,22.0,28.0,23.0,23.0,19.0,21.0,22.0,19.0,16.0,11.0,15.0,11.0,7.0,14.0,6.0,10.0,10.0,13.0,6.0,11.0,2.0,8.0,6.0,6.0,3.0,5.0,3.0,4.0,2.0,2.0,3.0,,1.0,,,,1.0 Y00403,40.0,33.0,38.0,41.0,39.0,29.0,32.0,29.0,19.0,38.0,33.0,22.0,24.0,28.0,39.0,25.0,30.0,31.0,40.0,31.0,27.0,37.0,35.0,36.0,42.0,58.0,60.0,97.0,98.0,119.0,127.0,146.0,144.0,153.0,170.0,155.0,147.0,146.0,128.0,119.0,112.0,106.0,97.0,103.0,81.0,58.0,63.0,49.0,53.0,45.0,51.0,42.0,41.0,29.0,27.0,33.0,27.0,25.0,23.0,30.0,24.0,17.0,17.0,18.0,15.0,15.0,11.0,9.0,9.0,10.0,6.0,15.0,11.0,3.0,7.0,3.0,3.0,3.0,4.0,,,2.0,1.0,2.0,1.0,1.0,1.0,,1.0,,,2.0,,,1.0, Y00918,36.0,35.0,41.0,39.0,39.0,39.0,31.0,49.0,38.0,46.0,52.0,53.0,42.0,48.0,34.0,46.0,53.0,35.0,39.0,33.0,41.0,42.0,44.0,49.0,44.0,47.0,32.0,56.0,59.0,53.0,53.0,50.0,62.0,42.0,57.0,72.0,51.0,60.0,65.0,57.0,82.0,76.0,63.0,52.0,61.0,59.0,52.0,52.0,47.0,55.0,47.0,58.0,52.0,44.0,43.0,50.0,29.0,45.0,22.0,39.0,31.0,32.0,36.0,35.0,34.0,36.0,25.0,23.0,34.0,27.0,34.0,22.0,31.0,27.0,16.0,24.0,15.0,10.0,10.0,8.0,13.0,8.0,9.0,7.0,5.0,10.0,5.0,7.0,4.0,4.0,6.0,4.0,2.0,4.0,1.0,3.0 Y01280,18.0,13.0,11.0,11.0,12.0,18.0,9.0,18.0,17.0,22.0,14.0,24.0,16.0,28.0,22.0,16.0,15.0,17.0,21.0,14.0,17.0,18.0,13.0,16.0,23.0,22.0,21.0,17.0,24.0,29.0,18.0,23.0,20.0,23.0,27.0,20.0,34.0,28.0,18.0,25.0,31.0,21.0,18.0,19.0,14.0,26.0,21.0,23.0,23.0,18.0,19.0,22.0,17.0,23.0,17.0,19.0,19.0,17.0,17.0,9.0,15.0,19.0,10.0,10.0,7.0,9.0,7.0,8.0,12.0,4.0,5.0,2.0,7.0,7.0,4.0,2.0,2.0,1.0,4.0,5.0,,,1.0,,1.0,1.0,1.0,1.0,1.0,4.0,,1.0,1.0,,,2.0 Y01291,73.0,79.0,66.0,66.0,74.0,75.0,62.0,67.0,70.0,71.0,74.0,58.0,60.0,60.0,64.0,64.0,57.0,90.0,72.0,72.0,62.0,62.0,59.0,50.0,68.0,55.0,69.0,72.0,63.0,88.0,94.0,72.0,85.0,79.0,81.0,72.0,91.0,94.0,93.0,75.0,84.0,76.0,73.0,85.0,73.0,58.0,80.0,59.0,67.0,66.0,61.0,63.0,52.0,48.0,61.0,67.0,70.0,63.0,64.0,59.0,68.0,55.0,47.0,58.0,58.0,43.0,54.0,42.0,46.0,31.0,25.0,33.0,26.0,26.0,31.0,17.0,26.0,28.0,25.0,20.0,14.0,20.0,24.0,20.0,11.0,10.0,14.0,10.0,9.0,4.0,10.0,5.0,6.0,6.0,6.0,7.0 Y01719,59.0,61.0,73.0,65.0,68.0,55.0,77.0,73.0,75.0,79.0,76.0,96.0,92.0,87.0,79.0,79.0,68.0,86.0,62.0,70.0,64.0,58.0,54.0,63.0,56.0,66.0,58.0,70.0,80.0,84.0,78.0,66.0,85.0,71.0,85.0,75.0,78.0,65.0,87.0,77.0,78.0,95.0,78.0,87.0,91.0,82.0,62.0,58.0,67.0,52.0,69.0,61.0,56.0,50.0,48.0,41.0,34.0,43.0,42.0,34.0,49.0,42.0,28.0,26.0,25.0,24.0,17.0,9.0,25.0,13.0,14.0,12.0,9.0,18.0,4.0,4.0,12.0,8.0,5.0,2.0,3.0,5.0,3.0,4.0,1.0,4.0,4.0,1.0,2.0,2.0,3.0,1.0,1.0,,,1.0 Y01795,52.0,73.0,72.0,63.0,55.0,71.0,65.0,65.0,66.0,60.0,48.0,73.0,71.0,66.0,53.0,51.0,67.0,69.0,62.0,48.0,43.0,44.0,45.0,59.0,57.0,46.0,75.0,69.0,69.0,71.0,76.0,71.0,75.0,63.0,66.0,78.0,58.0,71.0,65.0,56.0,60.0,76.0,64.0,54.0,58.0,61.0,50.0,45.0,53.0,54.0,54.0,65.0,44.0,46.0,53.0,45.0,46.0,39.0,46.0,35.0,35.0,38.0,43.0,29.0,27.0,29.0,28.0,18.0,21.0,22.0,14.0,17.0,17.0,13.0,16.0,4.0,9.0,9.0,13.0,5.0,7.0,5.0,4.0,3.0,3.0,1.0,7.0,4.0,2.0,,2.0,1.0,2.0,,,1.0 Y01839,46.0,59.0,39.0,51.0,56.0,38.0,42.0,46.0,49.0,50.0,53.0,49.0,47.0,43.0,41.0,36.0,46.0,47.0,45.0,36.0,35.0,29.0,37.0,33.0,49.0,46.0,43.0,43.0,53.0,53.0,51.0,58.0,79.0,80.0,86.0,89.0,73.0,85.0,77.0,74.0,66.0,82.0,89.0,69.0,60.0,54.0,69.0,53.0,40.0,44.0,47.0,43.0,49.0,51.0,47.0,53.0,28.0,37.0,35.0,40.0,26.0,24.0,42.0,30.0,23.0,24.0,21.0,21.0,23.0,18.0,21.0,16.0,11.0,12.0,13.0,16.0,10.0,17.0,8.0,3.0,5.0,5.0,6.0,4.0,4.0,8.0,4.0,,4.0,1.0,3.0,1.0,1.0,2.0,,1.0 Y02575,124.0,142.0,169.0,193.0,175.0,189.0,199.0,210.0,182.0,216.0,216.0,214.0,241.0,226.0,223.0,189.0,181.0,161.0,173.0,137.0,130.0,129.0,125.0,113.0,111.0,142.0,149.0,110.0,135.0,158.0,164.0,162.0,182.0,177.0,209.0,223.0,228.0,240.0,260.0,264.0,252.0,255.0,242.0,247.0,240.0,233.0,194.0,211.0,177.0,196.0,154.0,140.0,141.0,118.0,147.0,149.0,128.0,109.0,86.0,93.0,77.0,76.0,63.0,58.0,55.0,58.0,54.0,47.0,42.0,35.0,26.0,37.0,24.0,20.0,24.0,9.0,9.0,12.0,21.0,12.0,4.0,4.0,7.0,1.0,7.0,2.0,6.0,4.0,4.0,1.0,3.0,2.0,3.0,2.0,3.0,3.0 Y02928,171.0,204.0,163.0,174.0,139.0,134.0,146.0,123.0,134.0,122.0,110.0,105.0,100.0,90.0,95.0,108.0,79.0,101.0,93.0,77.0,81.0,100.0,113.0,146.0,191.0,209.0,287.0,296.0,319.0,343.0,400.0,373.0,352.0,417.0,384.0,364.0,364.0,342.0,311.0,271.0,254.0,240.0,231.0,193.0,184.0,190.0,166.0,152.0,128.0,130.0,117.0,103.0,89.0,99.0,89.0,96.0,82.0,75.0,77.0,60.0,60.0,60.0,60.0,54.0,47.0,44.0,41.0,53.0,35.0,26.0,33.0,19.0,17.0,21.0,13.0,13.0,13.0,13.0,4.0,8.0,6.0,10.0,5.0,4.0,4.0,6.0,4.0,2.0,4.0,1.0,1.0,,1.0,,, Y02973,73.0,76.0,79.0,73.0,81.0,104.0,85.0,105.0,77.0,81.0,76.0,61.0,65.0,60.0,69.0,51.0,56.0,60.0,46.0,44.0,38.0,47.0,40.0,37.0,45.0,42.0,44.0,47.0,47.0,66.0,65.0,55.0,88.0,89.0,95.0,104.0,108.0,91.0,106.0,108.0,100.0,122.0,104.0,92.0,91.0,93.0,69.0,85.0,60.0,70.0,58.0,48.0,40.0,45.0,58.0,40.0,27.0,43.0,40.0,35.0,42.0,41.0,29.0,26.0,29.0,19.0,26.0,28.0,21.0,21.0,33.0,15.0,14.0,12.0,21.0,6.0,12.0,15.0,9.0,3.0,8.0,4.0,5.0,4.0,2.0,3.0,3.0,,,,,,1.0,,, Y02987,325.0,295.0,295.0,281.0,262.0,214.0,205.0,220.0,202.0,210.0,182.0,190.0,215.0,196.0,181.0,196.0,182.0,182.0,185.0,201.0,221.0,271.0,304.0,360.0,432.0,472.0,506.0,548.0,511.0,465.0,453.0,428.0,423.0,391.0,415.0,445.0,427.0,398.0,384.0,352.0,299.0,335.0,331.0,278.0,277.0,248.0,228.0,212.0,211.0,213.0,178.0,174.0,173.0,145.0,132.0,160.0,125.0,122.0,99.0,116.0,86.0,92.0,83.0,72.0,59.0,68.0,54.0,57.0,51.0,42.0,44.0,35.0,29.0,37.0,29.0,32.0,22.0,17.0,25.0,19.0,10.0,16.0,12.0,10.0,7.0,10.0,4.0,10.0,10.0,6.0,6.0,1.0,1.0,6.0,1.0,5.0 Y03023,243.0,219.0,201.0,235.0,193.0,215.0,219.0,229.0,210.0,231.0,217.0,208.0,210.0,212.0,210.0,207.0,219.0,178.0,186.0,182.0,179.0,173.0,214.0,218.0,283.0,289.0,349.0,392.0,436.0,456.0,433.0,421.0,453.0,493.0,522.0,478.0,482.0,443.0,417.0,412.0,369.0,387.0,318.0,310.0,290.0,265.0,260.0,207.0,227.0,229.0,187.0,172.0,166.0,165.0,152.0,149.0,137.0,122.0,92.0,92.0,95.0,98.0,73.0,80.0,82.0,72.0,65.0,47.0,61.0,45.0,50.0,28.0,35.0,32.0,25.0,26.0,25.0,12.0,16.0,15.0,11.0,10.0,8.0,6.0,10.0,13.0,8.0,9.0,5.0,2.0,2.0,4.0,7.0,4.0,1.0,2.0 Y03049,120.0,138.0,123.0,143.0,140.0,130.0,132.0,134.0,133.0,148.0,142.0,128.0,131.0,144.0,115.0,107.0,124.0,103.0,108.0,103.0,120.0,108.0,106.0,96.0,125.0,141.0,142.0,182.0,165.0,187.0,166.0,176.0,195.0,186.0,189.0,175.0,185.0,174.0,161.0,161.0,156.0,172.0,148.0,151.0,122.0,150.0,139.0,118.0,102.0,122.0,120.0,116.0,98.0,76.0,75.0,88.0,89.0,87.0,71.0,71.0,87.0,76.0,78.0,54.0,49.0,41.0,43.0,48.0,35.0,37.0,33.0,32.0,23.0,19.0,29.0,21.0,21.0,15.0,9.0,9.0,5.0,9.0,5.0,10.0,11.0,9.0,9.0,5.0,4.0,5.0,2.0,2.0,3.0,3.0,2.0,2.0 Y04273,109.0,102.0,114.0,117.0,87.0,92.0,99.0,109.0,98.0,94.0,93.0,90.0,86.0,81.0,79.0,80.0,76.0,72.0,78.0,118.0,84.0,95.0,117.0,162.0,219.0,247.0,290.0,320.0,339.0,386.0,410.0,419.0,416.0,377.0,361.0,378.0,340.0,322.0,277.0,244.0,253.0,229.0,194.0,201.0,143.0,140.0,121.0,112.0,105.0,94.0,102.0,90.0,76.0,65.0,68.0,53.0,63.0,58.0,55.0,53.0,42.0,35.0,25.0,21.0,32.0,23.0,26.0,19.0,21.0,21.0,15.0,12.0,11.0,11.0,8.0,6.0,10.0,5.0,7.0,2.0,4.0,4.0,1.0,2.0,2.0,1.0,1.0,1.0,,,3.0,1.0,,1.0,, Y06592,,,,,,,,,,,,,,,,,,,,,1.0,,,2.0,1.0,1.0,4.0,1.0,2.0,2.0,4.0,2.0,3.0,3.0,6.0,5.0,6.0,6.0,8.0,5.0,7.0,4.0,7.0,7.0,5.0,2.0,,2.0,2.0,5.0,4.0,3.0,2.0,2.0,4.0,4.0,6.0,3.0,3.0,3.0,2.0,1.0,2.0,2.0,,,2.0,,,1.0,,1.0,1.0,,1.0,,,,,,,,,,,,,,,,,,,,, Y08371,39.0,42.0,39.0,37.0,32.0,17.0,18.0,23.0,27.0,16.0,13.0,16.0,17.0,20.0,17.0,11.0,10.0,15.0,11.0,8.0,17.0,15.0,16.0,17.0,17.0,29.0,28.0,38.0,29.0,35.0,46.0,41.0,30.0,37.0,30.0,37.0,32.0,33.0,30.0,30.0,30.0,20.0,20.0,26.0,22.0,17.0,24.0,7.0,9.0,13.0,9.0,8.0,9.0,2.0,9.0,16.0,11.0,4.0,6.0,8.0,4.0,3.0,5.0,4.0,1.0,5.0,4.0,,2.0,3.0,3.0,2.0,2.0,3.0,2.0,1.0,1.0,2.0,2.0,,,2.0,2.0,1.0,,1.0,,,,,,,,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 E83003,55.0,68.0,48.0,50.0,48.0,60.0,66.0,68.0,51.0,80.0,67.0,71.0,60.0,52.0,80.0,72.0,63.0,64.0,61.0,63.0,58.0,41.0,50.0,51.0,53.0,65.0,50.0,59.0,68.0,53.0,65.0,67.0,77.0,88.0,79.0,78.0,79.0,70.0,84.0,78.0,85.0,70.0,56.0,83.0,84.0,90.0,96.0,68.0,61.0,73.0,79.0,57.0,64.0,60.0,59.0,62.0,61.0,70.0,65.0,60.0,54.0,74.0,42.0,58.0,48.0,52.0,45.0,42.0,38.0,39.0,38.0,40.0,45.0,38.0,34.0,29.0,38.0,35.0,40.0,24.0,33.0,20.0,26.0,18.0,17.0,12.0,4.0,13.0,8.0,11.0,6.0,6.0,2.0,3.0,3.0,4.0 E83005,29.0,25.0,34.0,38.0,25.0,44.0,29.0,40.0,41.0,43.0,37.0,36.0,44.0,39.0,24.0,36.0,29.0,31.0,32.0,27.0,27.0,25.0,28.0,19.0,29.0,27.0,43.0,33.0,42.0,44.0,41.0,41.0,50.0,60.0,52.0,70.0,59.0,78.0,68.0,59.0,67.0,75.0,72.0,62.0,81.0,66.0,59.0,65.0,54.0,51.0,38.0,47.0,44.0,34.0,35.0,46.0,35.0,37.0,51.0,44.0,27.0,34.0,28.0,19.0,20.0,19.0,25.0,21.0,14.0,15.0,16.0,15.0,8.0,17.0,17.0,13.0,18.0,8.0,12.0,9.0,8.0,16.0,13.0,10.0,7.0,8.0,8.0,6.0,8.0,2.0,4.0,2.0,1.0,2.0,1.0,4.0 E83006,30.0,30.0,34.0,28.0,35.0,37.0,38.0,36.0,42.0,47.0,35.0,33.0,37.0,44.0,46.0,45.0,45.0,49.0,38.0,57.0,56.0,38.0,46.0,57.0,40.0,63.0,63.0,50.0,61.0,70.0,75.0,57.0,71.0,60.0,59.0,65.0,59.0,42.0,56.0,69.0,66.0,86.0,59.0,61.0,55.0,58.0,49.0,56.0,57.0,41.0,55.0,54.0,42.0,53.0,47.0,51.0,42.0,47.0,47.0,41.0,44.0,45.0,36.0,32.0,42.0,33.0,27.0,26.0,19.0,27.0,21.0,13.0,19.0,19.0,19.0,20.0,11.0,11.0,10.0,13.0,6.0,8.0,6.0,10.0,9.0,7.0,11.0,8.0,3.0,10.0,4.0,2.0,1.0,5.0,4.0,9.0 E83007,19.0,23.0,24.0,23.0,20.0,35.0,17.0,23.0,28.0,30.0,27.0,28.0,33.0,29.0,40.0,35.0,25.0,33.0,28.0,33.0,23.0,28.0,33.0,29.0,23.0,37.0,40.0,27.0,27.0,39.0,52.0,36.0,36.0,46.0,46.0,38.0,43.0,45.0,47.0,40.0,45.0,42.0,38.0,34.0,43.0,43.0,54.0,40.0,40.0,50.0,36.0,38.0,35.0,39.0,35.0,43.0,25.0,31.0,28.0,28.0,35.0,41.0,49.0,23.0,29.0,24.0,22.0,17.0,30.0,15.0,20.0,25.0,16.0,16.0,15.0,25.0,13.0,11.0,17.0,10.0,5.0,10.0,8.0,2.0,8.0,10.0,5.0,9.0,5.0,9.0,4.0,3.0,3.0,2.0,1.0,2.0 E83008,21.0,34.0,31.0,38.0,55.0,50.0,46.0,67.0,55.0,69.0,72.0,58.0,78.0,75.0,71.0,60.0,62.0,59.0,63.0,45.0,52.0,35.0,51.0,25.0,41.0,48.0,55.0,58.0,49.0,58.0,51.0,52.0,36.0,38.0,59.0,51.0,46.0,53.0,46.0,43.0,50.0,52.0,59.0,66.0,62.0,59.0,76.0,76.0,67.0,75.0,52.0,73.0,54.0,52.0,58.0,47.0,56.0,46.0,48.0,28.0,54.0,51.0,42.0,32.0,32.0,39.0,38.0,37.0,33.0,31.0,30.0,26.0,30.0,27.0,32.0,42.0,30.0,35.0,33.0,23.0,26.0,20.0,26.0,21.0,13.0,11.0,9.0,9.0,11.0,5.0,9.0,5.0,6.0,8.0,,6.0 E83009,65.0,70.0,88.0,72.0,68.0,89.0,83.0,75.0,80.0,68.0,81.0,99.0,99.0,89.0,94.0,93.0,84.0,84.0,86.0,81.0,70.0,69.0,77.0,90.0,67.0,88.0,75.0,64.0,80.0,53.0,78.0,76.0,67.0,60.0,81.0,87.0,101.0,84.0,73.0,90.0,93.0,84.0,98.0,98.0,80.0,92.0,92.0,82.0,87.0,73.0,83.0,77.0,83.0,74.0,70.0,87.0,72.0,46.0,69.0,57.0,65.0,68.0,57.0,52.0,57.0,55.0,55.0,50.0,49.0,40.0,45.0,38.0,42.0,45.0,42.0,51.0,44.0,44.0,49.0,39.0,36.0,39.0,36.0,30.0,23.0,28.0,30.0,10.0,10.0,12.0,12.0,13.0,7.0,5.0,3.0,8.0 E83010,48.0,66.0,52.0,72.0,47.0,62.0,63.0,67.0,90.0,69.0,75.0,79.0,80.0,89.0,94.0,84.0,64.0,81.0,71.0,67.0,69.0,51.0,54.0,56.0,51.0,59.0,64.0,81.0,68.0,83.0,87.0,95.0,113.0,93.0,125.0,95.0,109.0,122.0,104.0,108.0,119.0,125.0,121.0,113.0,101.0,118.0,119.0,108.0,100.0,85.0,97.0,118.0,94.0,78.0,70.0,89.0,61.0,73.0,70.0,66.0,68.0,54.0,57.0,54.0,51.0,49.0,49.0,59.0,53.0,47.0,64.0,47.0,44.0,34.0,36.0,47.0,36.0,51.0,33.0,38.0,32.0,27.0,17.0,18.0,5.0,17.0,7.0,14.0,13.0,7.0,11.0,9.0,7.0,3.0,4.0,7.0 E83011,53.0,61.0,51.0,55.0,69.0,57.0,64.0,72.0,74.0,86.0,63.0,78.0,73.0,64.0,78.0,68.0,96.0,78.0,87.0,83.0,81.0,77.0,97.0,82.0,87.0,93.0,86.0,93.0,129.0,135.0,112.0,105.0,123.0,104.0,118.0,119.0,83.0,109.0,116.0,114.0,107.0,82.0,91.0,68.0,69.0,62.0,74.0,77.0,70.0,64.0,75.0,74.0,72.0,60.0,63.0,65.0,50.0,54.0,55.0,43.0,46.0,60.0,36.0,32.0,52.0,25.0,29.0,37.0,30.0,23.0,27.0,23.0,25.0,18.0,19.0,10.0,10.0,16.0,10.0,12.0,12.0,10.0,4.0,5.0,5.0,3.0,3.0,2.0,1.0,4.0,3.0,1.0,,,,1.0 E83012,41.0,56.0,58.0,49.0,45.0,57.0,67.0,60.0,56.0,60.0,58.0,68.0,71.0,59.0,67.0,49.0,63.0,67.0,56.0,45.0,41.0,46.0,41.0,51.0,39.0,58.0,61.0,57.0,73.0,54.0,74.0,61.0,64.0,83.0,75.0,78.0,78.0,82.0,64.0,66.0,90.0,82.0,88.0,84.0,62.0,90.0,91.0,67.0,68.0,53.0,67.0,67.0,59.0,69.0,64.0,58.0,69.0,71.0,65.0,55.0,43.0,58.0,53.0,51.0,33.0,46.0,41.0,51.0,54.0,56.0,40.0,35.0,44.0,42.0,37.0,41.0,35.0,27.0,42.0,31.0,29.0,32.0,23.0,13.0,18.0,18.0,15.0,20.0,8.0,10.0,9.0,6.0,3.0,3.0,1.0,6.0 E83013,18.0,31.0,23.0,21.0,27.0,18.0,33.0,19.0,21.0,36.0,34.0,35.0,30.0,25.0,32.0,26.0,39.0,26.0,31.0,27.0,26.0,24.0,36.0,29.0,31.0,31.0,37.0,42.0,49.0,48.0,56.0,52.0,33.0,61.0,58.0,53.0,52.0,41.0,46.0,48.0,55.0,53.0,55.0,51.0,61.0,71.0,51.0,54.0,51.0,62.0,57.0,50.0,52.0,38.0,45.0,40.0,40.0,32.0,29.0,46.0,40.0,28.0,31.0,29.0,23.0,29.0,30.0,26.0,14.0,24.0,24.0,22.0,12.0,19.0,12.0,22.0,22.0,13.0,16.0,10.0,13.0,23.0,10.0,5.0,13.0,12.0,7.0,2.0,4.0,2.0,7.0,4.0,2.0,4.0,2.0,5.0 E83016,158.0,154.0,144.0,156.0,142.0,133.0,149.0,150.0,159.0,132.0,152.0,140.0,125.0,181.0,141.0,173.0,179.0,179.0,179.0,138.0,123.0,129.0,122.0,125.0,135.0,151.0,129.0,162.0,150.0,158.0,141.0,155.0,179.0,168.0,167.0,179.0,183.0,177.0,190.0,178.0,174.0,165.0,192.0,190.0,176.0,167.0,165.0,157.0,154.0,167.0,176.0,145.0,154.0,126.0,154.0,116.0,109.0,120.0,133.0,112.0,95.0,120.0,118.0,127.0,110.0,88.0,99.0,86.0,92.0,83.0,86.0,53.0,69.0,71.0,70.0,82.0,52.0,78.0,70.0,57.0,55.0,48.0,56.0,31.0,26.0,25.0,37.0,29.0,29.0,18.0,9.0,13.0,10.0,10.0,7.0,13.0 E83017,73.0,71.0,80.0,94.0,81.0,87.0,88.0,110.0,100.0,108.0,115.0,126.0,111.0,132.0,126.0,120.0,118.0,145.0,127.0,101.0,103.0,89.0,96.0,82.0,82.0,105.0,96.0,97.0,94.0,87.0,92.0,119.0,99.0,102.0,103.0,112.0,119.0,116.0,122.0,115.0,141.0,105.0,109.0,119.0,110.0,133.0,136.0,126.0,120.0,108.0,104.0,124.0,122.0,119.0,128.0,154.0,133.0,103.0,114.0,117.0,114.0,130.0,130.0,105.0,86.0,79.0,105.0,112.0,97.0,74.0,70.0,74.0,64.0,58.0,60.0,83.0,60.0,73.0,65.0,44.0,47.0,45.0,31.0,31.0,22.0,29.0,25.0,23.0,21.0,18.0,24.0,10.0,6.0,7.0,3.0,13.0 E83018,93.0,76.0,96.0,98.0,97.0,109.0,87.0,121.0,106.0,94.0,107.0,127.0,117.0,111.0,130.0,109.0,101.0,106.0,106.0,80.0,106.0,80.0,87.0,105.0,87.0,108.0,112.0,121.0,112.0,142.0,138.0,121.0,140.0,122.0,150.0,177.0,177.0,149.0,141.0,169.0,178.0,148.0,126.0,153.0,161.0,155.0,135.0,126.0,156.0,131.0,151.0,107.0,122.0,101.0,121.0,107.0,106.0,93.0,103.0,91.0,103.0,85.0,93.0,89.0,90.0,99.0,86.0,67.0,79.0,75.0,68.0,63.0,66.0,62.0,49.0,43.0,56.0,54.0,49.0,39.0,33.0,30.0,25.0,22.0,18.0,29.0,15.0,19.0,16.0,14.0,7.0,11.0,8.0,2.0,4.0,10.0 E83020,51.0,72.0,49.0,67.0,83.0,77.0,60.0,72.0,71.0,92.0,98.0,90.0,73.0,86.0,89.0,89.0,66.0,76.0,62.0,72.0,52.0,67.0,48.0,71.0,85.0,90.0,84.0,112.0,105.0,96.0,89.0,98.0,89.0,101.0,119.0,83.0,115.0,113.0,113.0,122.0,100.0,116.0,115.0,114.0,99.0,95.0,84.0,94.0,84.0,79.0,70.0,81.0,75.0,71.0,73.0,62.0,53.0,66.0,62.0,59.0,59.0,56.0,47.0,43.0,50.0,43.0,31.0,47.0,31.0,31.0,34.0,32.0,34.0,47.0,36.0,33.0,40.0,34.0,31.0,21.0,12.0,29.0,20.0,15.0,8.0,13.0,12.0,5.0,5.0,8.0,7.0,5.0,5.0,3.0,1.0,7.0 E83021,34.0,41.0,35.0,60.0,48.0,62.0,51.0,75.0,85.0,69.0,81.0,74.0,96.0,93.0,93.0,90.0,62.0,105.0,71.0,61.0,55.0,66.0,54.0,59.0,70.0,93.0,84.0,72.0,84.0,86.0,85.0,81.0,85.0,75.0,75.0,100.0,103.0,97.0,103.0,105.0,104.0,113.0,92.0,113.0,112.0,109.0,97.0,90.0,99.0,87.0,95.0,97.0,88.0,97.0,89.0,81.0,91.0,77.0,78.0,68.0,75.0,74.0,58.0,67.0,73.0,58.0,45.0,57.0,45.0,48.0,49.0,46.0,47.0,41.0,56.0,55.0,40.0,40.0,25.0,25.0,26.0,34.0,26.0,19.0,20.0,24.0,19.0,15.0,10.0,21.0,12.0,13.0,13.0,6.0,4.0,10.0 E83024,54.0,49.0,48.0,68.0,46.0,64.0,47.0,67.0,62.0,49.0,73.0,83.0,72.0,77.0,77.0,87.0,81.0,79.0,69.0,61.0,53.0,48.0,66.0,60.0,56.0,52.0,57.0,62.0,52.0,64.0,73.0,61.0,61.0,71.0,80.0,86.0,92.0,69.0,84.0,80.0,94.0,79.0,80.0,84.0,82.0,91.0,91.0,100.0,90.0,82.0,89.0,97.0,72.0,78.0,75.0,73.0,70.0,79.0,80.0,81.0,55.0,67.0,77.0,55.0,77.0,62.0,67.0,46.0,53.0,44.0,37.0,42.0,53.0,52.0,34.0,49.0,48.0,34.0,37.0,46.0,46.0,35.0,23.0,25.0,23.0,23.0,11.0,20.0,23.0,19.0,16.0,20.0,5.0,8.0,4.0,11.0 E83025,19.0,31.0,26.0,46.0,38.0,43.0,39.0,47.0,53.0,51.0,35.0,60.0,55.0,67.0,63.0,70.0,45.0,51.0,57.0,62.0,73.0,55.0,52.0,46.0,48.0,58.0,46.0,66.0,77.0,64.0,46.0,69.0,46.0,76.0,68.0,68.0,53.0,63.0,55.0,63.0,65.0,67.0,88.0,73.0,60.0,64.0,57.0,73.0,54.0,66.0,52.0,53.0,55.0,50.0,60.0,54.0,48.0,48.0,49.0,47.0,41.0,44.0,48.0,38.0,40.0,35.0,36.0,25.0,25.0,40.0,24.0,33.0,18.0,36.0,22.0,25.0,26.0,30.0,17.0,17.0,19.0,17.0,12.0,9.0,10.0,11.0,10.0,7.0,3.0,4.0,5.0,2.0,4.0,6.0,2.0,4.0 E83026,13.0,17.0,18.0,13.0,11.0,15.0,22.0,21.0,23.0,19.0,22.0,23.0,16.0,28.0,25.0,17.0,21.0,18.0,21.0,11.0,18.0,26.0,20.0,23.0,18.0,19.0,18.0,19.0,21.0,36.0,31.0,23.0,28.0,32.0,38.0,31.0,29.0,36.0,30.0,46.0,45.0,33.0,27.0,37.0,40.0,43.0,32.0,34.0,36.0,29.0,36.0,31.0,23.0,27.0,27.0,24.0,29.0,31.0,19.0,22.0,19.0,23.0,11.0,27.0,25.0,30.0,26.0,23.0,19.0,14.0,19.0,15.0,17.0,13.0,16.0,26.0,14.0,25.0,11.0,13.0,14.0,9.0,12.0,11.0,6.0,8.0,6.0,5.0,6.0,6.0,2.0,3.0,1.0,1.0,2.0,3.0 E83027,51.0,45.0,39.0,31.0,36.0,35.0,43.0,31.0,36.0,44.0,38.0,40.0,46.0,44.0,46.0,41.0,53.0,43.0,41.0,53.0,65.0,62.0,69.0,76.0,68.0,92.0,97.0,121.0,100.0,110.0,113.0,111.0,117.0,121.0,108.0,115.0,122.0,130.0,110.0,124.0,114.0,104.0,132.0,109.0,110.0,101.0,103.0,100.0,111.0,90.0,81.0,64.0,61.0,70.0,67.0,64.0,57.0,57.0,46.0,43.0,31.0,41.0,34.0,40.0,45.0,35.0,32.0,34.0,28.0,23.0,20.0,26.0,19.0,17.0,26.0,18.0,18.0,15.0,31.0,18.0,18.0,15.0,19.0,13.0,11.0,20.0,12.0,14.0,13.0,12.0,12.0,11.0,6.0,6.0,2.0,12.0 E83028,31.0,27.0,33.0,31.0,43.0,34.0,45.0,47.0,45.0,49.0,56.0,57.0,47.0,44.0,68.0,57.0,50.0,49.0,48.0,42.0,26.0,38.0,36.0,39.0,45.0,49.0,47.0,38.0,46.0,49.0,40.0,49.0,43.0,45.0,66.0,43.0,49.0,46.0,49.0,54.0,40.0,43.0,33.0,44.0,39.0,59.0,53.0,40.0,51.0,46.0,52.0,41.0,43.0,43.0,56.0,38.0,50.0,32.0,42.0,39.0,37.0,53.0,24.0,31.0,31.0,31.0,24.0,24.0,25.0,22.0,21.0,20.0,16.0,18.0,12.0,17.0,8.0,7.0,14.0,9.0,10.0,10.0,2.0,3.0,3.0,4.0,1.0,2.0,3.0,2.0,4.0,2.0,,,1.0, E83030,41.0,45.0,37.0,39.0,41.0,42.0,53.0,46.0,40.0,45.0,38.0,46.0,45.0,39.0,32.0,48.0,44.0,38.0,40.0,46.0,45.0,42.0,52.0,56.0,59.0,52.0,58.0,58.0,69.0,47.0,61.0,75.0,53.0,62.0,65.0,65.0,75.0,59.0,48.0,41.0,56.0,42.0,53.0,54.0,60.0,47.0,47.0,47.0,36.0,33.0,39.0,44.0,42.0,49.0,42.0,34.0,24.0,36.0,29.0,36.0,31.0,50.0,33.0,40.0,24.0,30.0,39.0,39.0,39.0,43.0,34.0,30.0,22.0,24.0,26.0,23.0,20.0,20.0,20.0,14.0,16.0,19.0,13.0,18.0,9.0,12.0,13.0,8.0,11.0,10.0,5.0,7.0,6.0,3.0,3.0,9.0 E83031,36.0,37.0,38.0,38.0,30.0,49.0,40.0,35.0,39.0,34.0,41.0,50.0,47.0,28.0,30.0,29.0,46.0,24.0,36.0,24.0,21.0,25.0,28.0,33.0,35.0,25.0,41.0,35.0,31.0,53.0,43.0,42.0,34.0,38.0,36.0,48.0,47.0,52.0,40.0,35.0,50.0,46.0,51.0,46.0,49.0,47.0,48.0,38.0,45.0,40.0,47.0,42.0,38.0,46.0,52.0,42.0,36.0,35.0,46.0,32.0,28.0,38.0,34.0,25.0,48.0,30.0,35.0,28.0,23.0,20.0,32.0,19.0,25.0,15.0,21.0,19.0,18.0,12.0,24.0,17.0,14.0,20.0,12.0,12.0,5.0,11.0,8.0,4.0,8.0,6.0,3.0,2.0,8.0,2.0,1.0,4.0 E83032,77.0,98.0,88.0,91.0,99.0,112.0,116.0,113.0,111.0,102.0,100.0,118.0,121.0,128.0,129.0,131.0,112.0,151.0,121.0,121.0,125.0,110.0,104.0,102.0,140.0,134.0,127.0,137.0,132.0,132.0,169.0,137.0,152.0,164.0,186.0,193.0,185.0,170.0,159.0,162.0,169.0,149.0,154.0,160.0,154.0,175.0,129.0,170.0,138.0,148.0,128.0,128.0,124.0,108.0,117.0,125.0,116.0,107.0,101.0,99.0,85.0,71.0,95.0,79.0,73.0,65.0,52.0,57.0,51.0,44.0,40.0,26.0,38.0,39.0,32.0,30.0,28.0,25.0,27.0,27.0,21.0,21.0,17.0,22.0,18.0,10.0,18.0,6.0,6.0,8.0,7.0,5.0,2.0,5.0,1.0,3.0 E83034,16.0,16.0,8.0,28.0,29.0,23.0,25.0,33.0,26.0,20.0,29.0,33.0,22.0,29.0,29.0,37.0,39.0,43.0,44.0,31.0,21.0,26.0,34.0,24.0,26.0,32.0,34.0,34.0,24.0,40.0,33.0,28.0,35.0,31.0,31.0,36.0,52.0,38.0,37.0,41.0,35.0,39.0,36.0,48.0,34.0,39.0,36.0,41.0,46.0,36.0,35.0,33.0,44.0,39.0,38.0,36.0,27.0,33.0,36.0,32.0,39.0,39.0,41.0,29.0,24.0,30.0,29.0,15.0,26.0,30.0,27.0,20.0,19.0,22.0,20.0,20.0,9.0,18.0,15.0,13.0,14.0,7.0,12.0,5.0,9.0,6.0,6.0,6.0,5.0,6.0,1.0,2.0,4.0,1.0,,2.0 E83035,60.0,78.0,83.0,93.0,103.0,92.0,95.0,112.0,136.0,135.0,127.0,107.0,142.0,118.0,159.0,148.0,124.0,131.0,122.0,96.0,85.0,90.0,92.0,116.0,108.0,102.0,108.0,105.0,125.0,118.0,106.0,109.0,106.0,130.0,119.0,128.0,147.0,169.0,168.0,169.0,159.0,148.0,160.0,155.0,160.0,168.0,173.0,149.0,152.0,126.0,160.0,158.0,136.0,148.0,135.0,127.0,122.0,117.0,91.0,96.0,88.0,92.0,103.0,89.0,81.0,76.0,94.0,76.0,68.0,61.0,65.0,58.0,69.0,55.0,64.0,43.0,62.0,51.0,56.0,43.0,48.0,30.0,46.0,27.0,28.0,26.0,29.0,26.0,28.0,21.0,13.0,21.0,13.0,9.0,4.0,21.0 E83038,40.0,33.0,48.0,27.0,36.0,33.0,57.0,40.0,55.0,77.0,50.0,51.0,42.0,42.0,66.0,48.0,41.0,49.0,42.0,55.0,49.0,52.0,49.0,49.0,60.0,64.0,85.0,85.0,68.0,85.0,80.0,92.0,83.0,87.0,83.0,97.0,104.0,102.0,100.0,81.0,79.0,83.0,75.0,71.0,87.0,89.0,75.0,79.0,69.0,72.0,65.0,57.0,70.0,61.0,63.0,63.0,58.0,51.0,51.0,52.0,50.0,48.0,39.0,44.0,44.0,31.0,43.0,41.0,40.0,40.0,29.0,28.0,26.0,21.0,17.0,16.0,18.0,20.0,24.0,22.0,18.0,17.0,9.0,15.0,16.0,22.0,14.0,13.0,16.0,12.0,11.0,10.0,5.0,2.0,3.0,9.0 E83039,27.0,40.0,22.0,26.0,32.0,26.0,30.0,35.0,27.0,30.0,26.0,30.0,20.0,37.0,22.0,28.0,21.0,22.0,31.0,23.0,27.0,25.0,28.0,32.0,27.0,48.0,55.0,67.0,58.0,67.0,102.0,112.0,121.0,112.0,118.0,76.0,70.0,67.0,68.0,58.0,73.0,73.0,49.0,54.0,56.0,51.0,39.0,40.0,31.0,41.0,37.0,33.0,32.0,25.0,30.0,38.0,28.0,31.0,32.0,17.0,29.0,23.0,18.0,19.0,15.0,32.0,9.0,22.0,19.0,23.0,16.0,14.0,17.0,21.0,14.0,13.0,23.0,10.0,12.0,9.0,6.0,10.0,6.0,4.0,4.0,8.0,10.0,5.0,4.0,7.0,6.0,5.0,3.0,5.0,4.0,7.0 E83041,27.0,20.0,23.0,16.0,25.0,27.0,22.0,19.0,25.0,30.0,22.0,21.0,20.0,28.0,23.0,31.0,25.0,18.0,27.0,17.0,28.0,25.0,28.0,35.0,32.0,39.0,40.0,38.0,42.0,59.0,44.0,48.0,63.0,71.0,51.0,65.0,72.0,69.0,56.0,73.0,63.0,50.0,43.0,62.0,65.0,47.0,46.0,53.0,44.0,38.0,44.0,57.0,49.0,43.0,43.0,43.0,43.0,46.0,29.0,19.0,31.0,33.0,23.0,18.0,22.0,32.0,26.0,18.0,16.0,13.0,15.0,15.0,7.0,13.0,13.0,6.0,9.0,5.0,8.0,6.0,14.0,3.0,8.0,2.0,6.0,9.0,8.0,3.0,5.0,6.0,3.0,6.0,3.0,1.0,2.0,8.0 E83044,36.0,43.0,48.0,36.0,52.0,54.0,34.0,58.0,78.0,48.0,53.0,64.0,74.0,78.0,65.0,60.0,71.0,55.0,47.0,37.0,42.0,42.0,39.0,40.0,44.0,39.0,40.0,55.0,63.0,59.0,47.0,49.0,50.0,68.0,59.0,61.0,89.0,72.0,72.0,63.0,55.0,69.0,73.0,89.0,74.0,74.0,83.0,81.0,79.0,65.0,68.0,63.0,55.0,65.0,67.0,56.0,54.0,61.0,65.0,64.0,61.0,55.0,65.0,57.0,68.0,55.0,75.0,50.0,42.0,44.0,50.0,36.0,37.0,49.0,33.0,33.0,31.0,29.0,27.0,24.0,30.0,23.0,13.0,11.0,13.0,17.0,16.0,15.0,14.0,13.0,7.0,11.0,9.0,4.0,2.0,16.0 E83045,33.0,42.0,51.0,48.0,52.0,75.0,57.0,58.0,56.0,62.0,66.0,61.0,73.0,61.0,66.0,74.0,73.0,72.0,60.0,55.0,56.0,69.0,48.0,49.0,46.0,60.0,59.0,48.0,55.0,84.0,55.0,54.0,68.0,71.0,59.0,58.0,74.0,71.0,84.0,91.0,76.0,66.0,85.0,91.0,93.0,87.0,95.0,85.0,80.0,74.0,73.0,71.0,66.0,68.0,72.0,63.0,85.0,62.0,57.0,62.0,57.0,59.0,47.0,46.0,51.0,48.0,31.0,39.0,43.0,39.0,23.0,30.0,37.0,31.0,27.0,25.0,26.0,25.0,22.0,22.0,17.0,21.0,18.0,12.0,20.0,10.0,11.0,11.0,10.0,8.0,2.0,4.0,2.0,,4.0,7.0 E83046,27.0,25.0,31.0,40.0,41.0,39.0,48.0,46.0,54.0,56.0,44.0,41.0,66.0,58.0,58.0,49.0,58.0,42.0,66.0,54.0,55.0,43.0,45.0,54.0,58.0,50.0,65.0,51.0,62.0,60.0,54.0,71.0,63.0,57.0,72.0,67.0,71.0,75.0,76.0,84.0,60.0,78.0,90.0,78.0,92.0,76.0,62.0,59.0,66.0,62.0,66.0,64.0,73.0,49.0,56.0,68.0,55.0,56.0,65.0,48.0,73.0,49.0,59.0,34.0,53.0,43.0,35.0,46.0,30.0,29.0,30.0,21.0,29.0,24.0,19.0,28.0,25.0,19.0,16.0,13.0,10.0,8.0,16.0,7.0,13.0,7.0,9.0,3.0,6.0,6.0,3.0,5.0,4.0,2.0,1.0,5.0 E83049,34.0,37.0,45.0,36.0,53.0,37.0,63.0,44.0,74.0,57.0,47.0,51.0,85.0,68.0,56.0,60.0,68.0,54.0,54.0,38.0,43.0,34.0,41.0,33.0,39.0,37.0,34.0,48.0,60.0,48.0,54.0,56.0,61.0,56.0,70.0,72.0,74.0,87.0,68.0,73.0,87.0,84.0,93.0,86.0,70.0,80.0,70.0,69.0,55.0,70.0,76.0,50.0,46.0,44.0,38.0,47.0,37.0,42.0,37.0,43.0,37.0,42.0,35.0,37.0,20.0,20.0,28.0,31.0,22.0,34.0,22.0,15.0,21.0,16.0,17.0,14.0,10.0,26.0,15.0,15.0,14.0,10.0,10.0,13.0,7.0,8.0,3.0,2.0,6.0,11.0,4.0,2.0,4.0,1.0,4.0,3.0 E83050,34.0,21.0,29.0,25.0,32.0,36.0,28.0,40.0,39.0,39.0,43.0,41.0,39.0,39.0,55.0,57.0,56.0,52.0,41.0,32.0,41.0,26.0,29.0,45.0,48.0,47.0,47.0,46.0,53.0,61.0,70.0,48.0,51.0,69.0,65.0,59.0,63.0,63.0,60.0,55.0,52.0,76.0,63.0,70.0,70.0,72.0,66.0,62.0,58.0,71.0,69.0,64.0,52.0,59.0,50.0,53.0,59.0,52.0,55.0,42.0,57.0,31.0,46.0,44.0,41.0,33.0,33.0,24.0,34.0,44.0,25.0,22.0,23.0,23.0,25.0,21.0,24.0,27.0,17.0,24.0,11.0,15.0,9.0,12.0,11.0,9.0,12.0,7.0,6.0,4.0,6.0,12.0,3.0,6.0,3.0,5.0 E83053,86.0,86.0,97.0,91.0,83.0,95.0,92.0,96.0,107.0,127.0,116.0,129.0,133.0,124.0,130.0,125.0,99.0,82.0,93.0,65.0,76.0,85.0,81.0,84.0,94.0,84.0,90.0,92.0,108.0,87.0,124.0,109.0,109.0,110.0,112.0,118.0,113.0,114.0,128.0,117.0,118.0,131.0,89.0,114.0,117.0,104.0,127.0,112.0,88.0,113.0,87.0,91.0,91.0,86.0,88.0,73.0,77.0,71.0,56.0,82.0,60.0,55.0,64.0,68.0,63.0,58.0,65.0,65.0,50.0,67.0,78.0,59.0,61.0,63.0,57.0,61.0,53.0,47.0,41.0,42.0,42.0,46.0,28.0,21.0,16.0,20.0,8.0,21.0,18.0,18.0,16.0,8.0,9.0,4.0,7.0,13.0 E83600,75.0,97.0,100.0,97.0,98.0,92.0,98.0,88.0,95.0,97.0,97.0,93.0,90.0,111.0,88.0,97.0,79.0,68.0,64.0,65.0,58.0,52.0,39.0,57.0,65.0,58.0,48.0,69.0,69.0,60.0,66.0,55.0,51.0,58.0,48.0,78.0,59.0,52.0,63.0,51.0,49.0,45.0,38.0,32.0,33.0,34.0,32.0,25.0,26.0,21.0,25.0,31.0,22.0,25.0,20.0,31.0,15.0,13.0,18.0,16.0,20.0,18.0,18.0,19.0,24.0,19.0,19.0,20.0,27.0,20.0,11.0,18.0,15.0,22.0,11.0,15.0,15.0,9.0,6.0,16.0,7.0,6.0,6.0,6.0,2.0,3.0,4.0,7.0,4.0,6.0,1.0,1.0,2.0,1.0,,11.0 E83613,60.0,48.0,67.0,60.0,55.0,68.0,61.0,68.0,64.0,67.0,68.0,75.0,87.0,70.0,81.0,75.0,76.0,74.0,65.0,69.0,60.0,57.0,70.0,66.0,64.0,72.0,65.0,87.0,81.0,67.0,63.0,78.0,78.0,69.0,74.0,72.0,73.0,89.0,84.0,61.0,84.0,66.0,91.0,95.0,79.0,69.0,71.0,67.0,91.0,71.0,73.0,67.0,76.0,75.0,80.0,69.0,68.0,81.0,90.0,73.0,69.0,73.0,55.0,53.0,59.0,52.0,73.0,53.0,58.0,60.0,48.0,46.0,43.0,43.0,41.0,44.0,39.0,39.0,32.0,34.0,24.0,27.0,30.0,20.0,15.0,18.0,17.0,11.0,8.0,14.0,7.0,6.0,5.0,6.0,4.0,6.0 E83621,33.0,35.0,34.0,40.0,46.0,40.0,58.0,61.0,59.0,56.0,62.0,41.0,52.0,62.0,68.0,66.0,49.0,70.0,64.0,55.0,57.0,65.0,52.0,58.0,45.0,63.0,65.0,69.0,72.0,59.0,65.0,57.0,65.0,53.0,63.0,53.0,61.0,72.0,65.0,60.0,62.0,67.0,70.0,75.0,76.0,69.0,60.0,67.0,54.0,68.0,57.0,67.0,62.0,57.0,73.0,60.0,66.0,58.0,56.0,67.0,60.0,58.0,42.0,60.0,61.0,51.0,47.0,56.0,36.0,35.0,39.0,33.0,39.0,28.0,35.0,33.0,38.0,36.0,37.0,22.0,25.0,24.0,21.0,18.0,11.0,21.0,15.0,8.0,15.0,7.0,8.0,8.0,3.0,4.0,3.0,3.0 E83622,55.0,63.0,56.0,68.0,65.0,72.0,77.0,66.0,70.0,57.0,68.0,65.0,71.0,69.0,77.0,60.0,68.0,71.0,46.0,32.0,49.0,45.0,38.0,48.0,69.0,47.0,48.0,54.0,53.0,71.0,67.0,74.0,75.0,67.0,78.0,84.0,78.0,72.0,71.0,61.0,88.0,73.0,80.0,68.0,80.0,75.0,70.0,68.0,90.0,73.0,66.0,57.0,67.0,55.0,59.0,51.0,44.0,48.0,39.0,38.0,40.0,36.0,37.0,37.0,35.0,24.0,35.0,38.0,39.0,27.0,35.0,30.0,35.0,13.0,22.0,27.0,28.0,14.0,30.0,20.0,20.0,30.0,14.0,22.0,13.0,9.0,15.0,11.0,12.0,12.0,13.0,12.0,7.0,8.0,2.0,16.0 E83637,78.0,86.0,86.0,92.0,79.0,74.0,72.0,74.0,70.0,61.0,57.0,56.0,74.0,68.0,56.0,62.0,57.0,49.0,49.0,55.0,40.0,72.0,68.0,68.0,78.0,92.0,136.0,108.0,129.0,155.0,175.0,158.0,156.0,152.0,169.0,183.0,188.0,141.0,165.0,163.0,138.0,133.0,125.0,132.0,110.0,92.0,110.0,101.0,73.0,91.0,63.0,81.0,67.0,65.0,65.0,47.0,49.0,50.0,44.0,53.0,39.0,48.0,48.0,30.0,37.0,31.0,41.0,31.0,30.0,25.0,25.0,22.0,24.0,13.0,19.0,14.0,10.0,20.0,10.0,11.0,8.0,9.0,8.0,10.0,9.0,5.0,5.0,2.0,8.0,5.0,5.0,1.0,,1.0,2.0,3.0 E83638,10.0,22.0,25.0,26.0,25.0,25.0,34.0,29.0,27.0,32.0,22.0,35.0,26.0,33.0,30.0,30.0,36.0,39.0,25.0,23.0,18.0,26.0,33.0,31.0,28.0,33.0,22.0,29.0,16.0,23.0,20.0,37.0,23.0,33.0,36.0,34.0,33.0,36.0,37.0,41.0,26.0,38.0,44.0,35.0,41.0,40.0,46.0,43.0,45.0,36.0,32.0,41.0,43.0,31.0,40.0,34.0,35.0,23.0,38.0,41.0,36.0,38.0,34.0,42.0,30.0,42.0,31.0,24.0,22.0,27.0,24.0,26.0,31.0,20.0,27.0,28.0,18.0,23.0,27.0,18.0,17.0,17.0,6.0,9.0,7.0,8.0,11.0,6.0,6.0,6.0,1.0,3.0,3.0,2.0,1.0,5.0 E83639,30.0,30.0,38.0,42.0,40.0,35.0,41.0,40.0,46.0,28.0,40.0,36.0,36.0,47.0,38.0,29.0,40.0,30.0,37.0,27.0,17.0,20.0,15.0,41.0,27.0,36.0,28.0,40.0,39.0,52.0,61.0,50.0,71.0,69.0,71.0,78.0,66.0,83.0,87.0,82.0,78.0,69.0,81.0,77.0,78.0,76.0,66.0,54.0,63.0,60.0,47.0,45.0,29.0,37.0,37.0,41.0,40.0,33.0,22.0,36.0,19.0,27.0,21.0,20.0,21.0,22.0,21.0,18.0,32.0,21.0,22.0,17.0,19.0,6.0,17.0,12.0,11.0,15.0,7.0,6.0,10.0,10.0,8.0,4.0,5.0,3.0,5.0,1.0,6.0,3.0,5.0,1.0,1.0,,1.0,1.0 E83649,23.0,31.0,25.0,27.0,20.0,21.0,16.0,21.0,21.0,33.0,24.0,26.0,20.0,30.0,20.0,21.0,28.0,29.0,14.0,19.0,18.0,21.0,21.0,30.0,29.0,39.0,36.0,28.0,36.0,41.0,32.0,43.0,48.0,41.0,51.0,43.0,50.0,49.0,52.0,52.0,49.0,50.0,44.0,37.0,38.0,33.0,36.0,42.0,34.0,37.0,29.0,36.0,31.0,24.0,26.0,24.0,20.0,28.0,24.0,13.0,17.0,19.0,24.0,12.0,21.0,24.0,10.0,8.0,15.0,12.0,13.0,17.0,16.0,16.0,10.0,10.0,10.0,11.0,10.0,9.0,8.0,11.0,5.0,7.0,5.0,1.0,7.0,2.0,4.0,3.0,3.0,7.0,6.0,1.0,1.0, E83653,71.0,57.0,71.0,72.0,62.0,74.0,73.0,68.0,58.0,74.0,89.0,90.0,83.0,93.0,65.0,90.0,99.0,99.0,84.0,80.0,88.0,59.0,76.0,93.0,93.0,88.0,96.0,89.0,102.0,93.0,103.0,95.0,88.0,93.0,98.0,93.0,91.0,91.0,90.0,102.0,104.0,82.0,99.0,89.0,97.0,84.0,71.0,88.0,101.0,84.0,70.0,70.0,69.0,79.0,84.0,60.0,56.0,64.0,65.0,60.0,42.0,72.0,54.0,48.0,54.0,45.0,51.0,33.0,36.0,35.0,33.0,21.0,32.0,25.0,26.0,34.0,29.0,35.0,30.0,31.0,23.0,22.0,20.0,22.0,9.0,15.0,14.0,10.0,10.0,13.0,8.0,5.0,8.0,1.0,6.0,13.0 E83668,12.0,21.0,11.0,20.0,23.0,24.0,24.0,19.0,28.0,23.0,17.0,25.0,24.0,24.0,23.0,27.0,24.0,28.0,25.0,25.0,18.0,21.0,25.0,28.0,23.0,32.0,27.0,27.0,25.0,37.0,31.0,32.0,28.0,36.0,43.0,49.0,42.0,66.0,33.0,33.0,42.0,53.0,33.0,57.0,47.0,34.0,38.0,28.0,36.0,36.0,26.0,29.0,35.0,38.0,23.0,26.0,34.0,32.0,24.0,35.0,36.0,36.0,23.0,17.0,18.0,22.0,21.0,20.0,15.0,22.0,16.0,15.0,20.0,13.0,11.0,12.0,16.0,7.0,10.0,5.0,4.0,4.0,4.0,2.0,4.0,3.0,5.0,6.0,2.0,1.0,,2.0,1.0,1.0,,1.0 F83002,35.0,49.0,53.0,53.0,38.0,49.0,67.0,58.0,53.0,53.0,52.0,44.0,56.0,45.0,44.0,46.0,44.0,43.0,39.0,51.0,45.0,54.0,50.0,39.0,64.0,84.0,90.0,92.0,121.0,146.0,126.0,154.0,147.0,133.0,146.0,147.0,123.0,120.0,128.0,115.0,133.0,104.0,108.0,94.0,82.0,85.0,72.0,73.0,69.0,68.0,62.0,54.0,61.0,48.0,67.0,61.0,56.0,58.0,56.0,55.0,61.0,41.0,51.0,38.0,35.0,31.0,36.0,40.0,29.0,31.0,33.0,26.0,17.0,19.0,20.0,19.0,20.0,23.0,15.0,14.0,21.0,13.0,7.0,8.0,5.0,4.0,3.0,7.0,7.0,4.0,3.0,1.0,2.0,,2.0,4.0 F83003,32.0,34.0,24.0,36.0,26.0,23.0,28.0,24.0,32.0,40.0,34.0,31.0,33.0,29.0,38.0,28.0,34.0,47.0,33.0,28.0,33.0,25.0,35.0,28.0,36.0,43.0,55.0,46.0,55.0,75.0,50.0,62.0,67.0,76.0,68.0,81.0,72.0,69.0,81.0,71.0,63.0,60.0,56.0,69.0,64.0,61.0,81.0,45.0,49.0,43.0,65.0,70.0,49.0,53.0,57.0,47.0,60.0,55.0,51.0,41.0,52.0,53.0,43.0,47.0,41.0,50.0,39.0,33.0,23.0,29.0,30.0,31.0,26.0,26.0,29.0,22.0,26.0,26.0,36.0,22.0,22.0,22.0,18.0,21.0,11.0,17.0,10.0,7.0,11.0,16.0,12.0,2.0,6.0,3.0,4.0,4.0 F83004,22.0,18.0,20.0,16.0,15.0,22.0,13.0,24.0,22.0,15.0,21.0,26.0,26.0,21.0,19.0,41.0,47.0,84.0,118.0,243.0,300.0,435.0,522.0,607.0,771.0,810.0,844.0,857.0,836.0,733.0,726.0,646.0,609.0,573.0,498.0,463.0,400.0,397.0,327.0,286.0,245.0,243.0,210.0,200.0,226.0,191.0,155.0,134.0,145.0,118.0,114.0,119.0,115.0,102.0,86.0,91.0,88.0,90.0,69.0,73.0,48.0,51.0,54.0,42.0,42.0,46.0,37.0,20.0,23.0,30.0,27.0,20.0,23.0,16.0,14.0,15.0,14.0,7.0,13.0,10.0,10.0,8.0,3.0,5.0,9.0,5.0,8.0,2.0,2.0,,3.0,6.0,1.0,1.0,,3.0 F83005,10.0,5.0,6.0,10.0,6.0,6.0,6.0,6.0,5.0,7.0,6.0,8.0,7.0,4.0,7.0,3.0,5.0,11.0,246.0,522.0,538.0,584.0,649.0,607.0,520.0,471.0,433.0,373.0,307.0,236.0,229.0,242.0,187.0,180.0,155.0,169.0,176.0,145.0,169.0,132.0,109.0,85.0,86.0,92.0,66.0,34.0,37.0,31.0,16.0,24.0,20.0,19.0,17.0,18.0,24.0,14.0,15.0,11.0,6.0,17.0,17.0,12.0,15.0,8.0,10.0,9.0,8.0,6.0,11.0,4.0,15.0,12.0,8.0,6.0,4.0,6.0,4.0,4.0,6.0,8.0,2.0,7.0,6.0,1.0,3.0,3.0,1.0,1.0,,1.0,1.0,1.0,1.0,,,2.0 F83006,65.0,49.0,54.0,60.0,66.0,60.0,70.0,65.0,74.0,72.0,81.0,73.0,75.0,82.0,84.0,95.0,76.0,101.0,109.0,134.0,146.0,120.0,134.0,168.0,168.0,172.0,159.0,139.0,173.0,153.0,158.0,133.0,156.0,157.0,146.0,141.0,138.0,154.0,165.0,136.0,130.0,116.0,116.0,125.0,126.0,116.0,107.0,85.0,92.0,96.0,99.0,105.0,92.0,112.0,100.0,100.0,84.0,92.0,85.0,91.0,91.0,92.0,84.0,95.0,68.0,50.0,54.0,60.0,54.0,56.0,43.0,31.0,44.0,30.0,35.0,24.0,21.0,31.0,25.0,21.0,17.0,17.0,16.0,12.0,19.0,10.0,13.0,7.0,9.0,11.0,9.0,2.0,2.0,2.0,2.0,1.0 F83007,6.0,8.0,15.0,10.0,12.0,10.0,11.0,9.0,15.0,11.0,17.0,8.0,20.0,19.0,12.0,11.0,12.0,19.0,17.0,16.0,21.0,14.0,16.0,16.0,15.0,32.0,29.0,42.0,38.0,44.0,44.0,34.0,44.0,51.0,30.0,38.0,30.0,41.0,29.0,42.0,35.0,28.0,29.0,38.0,31.0,34.0,27.0,23.0,29.0,27.0,26.0,29.0,25.0,24.0,28.0,23.0,31.0,25.0,24.0,21.0,22.0,33.0,19.0,21.0,13.0,22.0,22.0,17.0,13.0,13.0,13.0,13.0,13.0,9.0,11.0,10.0,9.0,10.0,12.0,7.0,3.0,2.0,5.0,2.0,4.0,9.0,7.0,3.0,3.0,2.0,1.0,1.0,1.0,1.0,,1.0 F83008,52.0,48.0,41.0,53.0,41.0,56.0,45.0,53.0,67.0,52.0,66.0,57.0,58.0,57.0,67.0,66.0,58.0,59.0,59.0,68.0,76.0,49.0,73.0,86.0,115.0,125.0,121.0,158.0,132.0,133.0,170.0,153.0,128.0,146.0,137.0,147.0,137.0,148.0,118.0,124.0,134.0,118.0,113.0,104.0,104.0,77.0,78.0,81.0,79.0,81.0,76.0,66.0,57.0,79.0,67.0,50.0,58.0,56.0,76.0,65.0,69.0,65.0,62.0,63.0,55.0,39.0,49.0,39.0,37.0,41.0,40.0,28.0,35.0,36.0,29.0,32.0,22.0,33.0,30.0,20.0,9.0,19.0,7.0,12.0,7.0,7.0,11.0,9.0,7.0,2.0,6.0,1.0,,,,3.0 F83010,84.0,91.0,96.0,98.0,107.0,80.0,100.0,113.0,101.0,112.0,107.0,108.0,89.0,90.0,93.0,84.0,103.0,83.0,86.0,65.0,76.0,71.0,64.0,79.0,110.0,125.0,166.0,193.0,216.0,253.0,248.0,291.0,265.0,272.0,269.0,278.0,291.0,244.0,307.0,278.0,259.0,260.0,227.0,213.0,223.0,206.0,202.0,192.0,161.0,160.0,148.0,130.0,124.0,148.0,133.0,118.0,116.0,85.0,109.0,105.0,94.0,96.0,94.0,92.0,67.0,78.0,52.0,57.0,62.0,57.0,47.0,42.0,36.0,41.0,34.0,38.0,34.0,36.0,32.0,19.0,29.0,31.0,24.0,25.0,21.0,14.0,13.0,8.0,11.0,7.0,6.0,2.0,3.0,3.0,2.0,4.0 F83011,35.0,33.0,28.0,32.0,39.0,33.0,31.0,43.0,35.0,38.0,49.0,27.0,46.0,28.0,37.0,35.0,41.0,34.0,31.0,35.0,40.0,25.0,35.0,38.0,48.0,69.0,54.0,75.0,72.0,72.0,60.0,75.0,77.0,96.0,78.0,84.0,80.0,90.0,73.0,77.0,68.0,74.0,84.0,60.0,66.0,63.0,85.0,60.0,75.0,58.0,59.0,49.0,61.0,61.0,55.0,43.0,69.0,56.0,49.0,48.0,47.0,53.0,49.0,46.0,34.0,36.0,38.0,49.0,35.0,34.0,28.0,27.0,30.0,25.0,32.0,30.0,23.0,26.0,17.0,20.0,19.0,17.0,9.0,12.0,9.0,13.0,7.0,7.0,8.0,2.0,2.0,4.0,1.0,1.0,3.0,1.0 F83012,22.0,33.0,24.0,31.0,15.0,30.0,29.0,30.0,31.0,21.0,24.0,35.0,26.0,26.0,28.0,28.0,31.0,29.0,31.0,30.0,27.0,25.0,20.0,32.0,31.0,43.0,50.0,74.0,63.0,69.0,77.0,87.0,93.0,96.0,111.0,80.0,82.0,89.0,94.0,75.0,77.0,83.0,71.0,76.0,82.0,70.0,54.0,51.0,52.0,57.0,51.0,56.0,48.0,51.0,56.0,44.0,42.0,52.0,45.0,41.0,50.0,47.0,36.0,48.0,31.0,32.0,25.0,29.0,33.0,23.0,22.0,27.0,26.0,28.0,28.0,26.0,25.0,32.0,22.0,13.0,20.0,10.0,9.0,8.0,7.0,5.0,8.0,8.0,7.0,5.0,6.0,,2.0,3.0,2.0,1.0 F83015,51.0,69.0,56.0,62.0,52.0,64.0,67.0,65.0,78.0,65.0,69.0,54.0,73.0,80.0,68.0,71.0,61.0,64.0,75.0,58.0,65.0,62.0,55.0,75.0,78.0,88.0,115.0,121.0,102.0,119.0,131.0,110.0,131.0,102.0,148.0,126.0,135.0,127.0,122.0,149.0,116.0,117.0,109.0,99.0,109.0,103.0,108.0,89.0,93.0,95.0,96.0,98.0,100.0,92.0,70.0,73.0,83.0,73.0,84.0,86.0,78.0,65.0,78.0,61.0,61.0,57.0,54.0,38.0,41.0,41.0,38.0,37.0,27.0,40.0,25.0,25.0,29.0,28.0,31.0,17.0,22.0,19.0,26.0,15.0,10.0,12.0,10.0,9.0,6.0,1.0,6.0,3.0,3.0,2.0,1.0,4.0 F83017,78.0,70.0,73.0,76.0,57.0,54.0,76.0,82.0,63.0,88.0,73.0,62.0,81.0,72.0,86.0,86.0,70.0,82.0,93.0,78.0,60.0,87.0,79.0,101.0,96.0,116.0,104.0,128.0,141.0,164.0,175.0,173.0,170.0,172.0,196.0,207.0,216.0,195.0,195.0,234.0,198.0,177.0,187.0,171.0,174.0,151.0,170.0,126.0,134.0,147.0,135.0,130.0,119.0,101.0,121.0,105.0,121.0,107.0,98.0,106.0,89.0,88.0,86.0,77.0,71.0,72.0,54.0,61.0,58.0,43.0,38.0,33.0,41.0,41.0,36.0,54.0,46.0,46.0,47.0,37.0,34.0,28.0,21.0,17.0,19.0,18.0,18.0,15.0,10.0,14.0,6.0,4.0,9.0,3.0,6.0,5.0 F83018,22.0,34.0,23.0,37.0,36.0,31.0,40.0,34.0,42.0,41.0,29.0,25.0,43.0,27.0,38.0,49.0,49.0,64.0,72.0,45.0,56.0,42.0,58.0,51.0,68.0,77.0,101.0,53.0,87.0,61.0,95.0,94.0,80.0,98.0,94.0,101.0,97.0,84.0,81.0,93.0,79.0,74.0,83.0,88.0,83.0,91.0,57.0,60.0,55.0,51.0,72.0,56.0,36.0,50.0,57.0,49.0,50.0,63.0,54.0,50.0,44.0,48.0,41.0,43.0,39.0,44.0,31.0,30.0,28.0,15.0,27.0,17.0,12.0,21.0,17.0,21.0,16.0,16.0,19.0,13.0,6.0,11.0,7.0,7.0,6.0,7.0,2.0,3.0,,6.0,6.0,1.0,1.0,4.0,,1.0 F83019,39.0,34.0,47.0,55.0,54.0,52.0,64.0,72.0,70.0,68.0,72.0,71.0,88.0,63.0,68.0,80.0,70.0,92.0,72.0,64.0,71.0,71.0,65.0,63.0,63.0,88.0,101.0,80.0,109.0,114.0,105.0,124.0,114.0,122.0,149.0,135.0,123.0,118.0,151.0,136.0,161.0,136.0,131.0,140.0,143.0,132.0,125.0,125.0,146.0,130.0,132.0,103.0,111.0,96.0,81.0,89.0,102.0,75.0,80.0,86.0,78.0,66.0,62.0,67.0,61.0,42.0,53.0,45.0,56.0,36.0,51.0,36.0,29.0,23.0,36.0,36.0,25.0,28.0,27.0,19.0,20.0,24.0,17.0,12.0,14.0,13.0,16.0,9.0,7.0,4.0,4.0,5.0,3.0,2.0,4.0,13.0 F83020,30.0,37.0,46.0,44.0,42.0,43.0,48.0,41.0,57.0,44.0,50.0,43.0,46.0,61.0,62.0,48.0,60.0,51.0,52.0,46.0,52.0,34.0,47.0,54.0,57.0,49.0,70.0,74.0,86.0,82.0,91.0,111.0,111.0,95.0,118.0,115.0,135.0,111.0,130.0,134.0,130.0,116.0,110.0,120.0,129.0,93.0,114.0,104.0,95.0,102.0,103.0,87.0,83.0,86.0,83.0,72.0,66.0,57.0,75.0,64.0,71.0,70.0,51.0,53.0,47.0,49.0,46.0,52.0,38.0,42.0,38.0,42.0,21.0,35.0,24.0,38.0,32.0,28.0,31.0,24.0,39.0,35.0,16.0,19.0,20.0,10.0,14.0,13.0,15.0,5.0,9.0,8.0,3.0,3.0,1.0,11.0 F83021,48.0,45.0,52.0,43.0,48.0,50.0,58.0,65.0,45.0,51.0,71.0,50.0,40.0,52.0,45.0,43.0,46.0,57.0,73.0,56.0,82.0,82.0,105.0,95.0,107.0,122.0,121.0,160.0,198.0,216.0,204.0,254.0,256.0,244.0,302.0,324.0,302.0,263.0,254.0,270.0,249.0,201.0,200.0,219.0,200.0,174.0,173.0,158.0,125.0,116.0,115.0,117.0,101.0,103.0,103.0,91.0,78.0,97.0,96.0,67.0,78.0,77.0,63.0,68.0,51.0,63.0,47.0,59.0,48.0,47.0,33.0,33.0,47.0,39.0,38.0,35.0,28.0,37.0,32.0,15.0,25.0,23.0,12.0,16.0,16.0,13.0,14.0,15.0,6.0,15.0,4.0,4.0,6.0,4.0,,1.0 F83022,56.0,70.0,73.0,52.0,72.0,60.0,60.0,74.0,85.0,57.0,66.0,76.0,83.0,80.0,84.0,80.0,99.0,81.0,90.0,71.0,76.0,96.0,89.0,97.0,123.0,140.0,144.0,160.0,191.0,198.0,193.0,203.0,195.0,196.0,183.0,171.0,185.0,199.0,148.0,168.0,155.0,148.0,148.0,142.0,151.0,128.0,147.0,119.0,98.0,85.0,98.0,80.0,101.0,92.0,76.0,89.0,89.0,89.0,84.0,83.0,74.0,75.0,67.0,63.0,77.0,53.0,56.0,67.0,60.0,44.0,51.0,44.0,45.0,41.0,52.0,42.0,36.0,41.0,45.0,31.0,34.0,37.0,32.0,24.0,16.0,16.0,16.0,12.0,7.0,7.0,8.0,1.0,3.0,4.0,3.0,3.0 F83023,69.0,86.0,88.0,97.0,108.0,90.0,94.0,102.0,87.0,112.0,105.0,103.0,108.0,124.0,120.0,144.0,139.0,129.0,130.0,125.0,142.0,136.0,146.0,136.0,202.0,200.0,208.0,203.0,216.0,226.0,206.0,202.0,187.0,227.0,203.0,231.0,227.0,232.0,191.0,231.0,223.0,215.0,200.0,177.0,182.0,208.0,171.0,173.0,158.0,148.0,137.0,135.0,156.0,148.0,141.0,123.0,138.0,140.0,137.0,145.0,135.0,130.0,102.0,104.0,108.0,91.0,94.0,85.0,70.0,78.0,58.0,59.0,63.0,60.0,50.0,41.0,53.0,46.0,44.0,32.0,27.0,27.0,20.0,23.0,11.0,21.0,22.0,14.0,12.0,8.0,7.0,7.0,4.0,,3.0,9.0 F83032,38.0,53.0,46.0,44.0,34.0,48.0,57.0,47.0,62.0,47.0,48.0,35.0,40.0,47.0,35.0,47.0,41.0,31.0,55.0,52.0,41.0,40.0,57.0,37.0,61.0,80.0,77.0,104.0,137.0,137.0,144.0,147.0,156.0,202.0,171.0,185.0,170.0,195.0,181.0,175.0,142.0,144.0,144.0,118.0,129.0,106.0,106.0,87.0,80.0,62.0,62.0,87.0,91.0,59.0,73.0,63.0,66.0,64.0,65.0,53.0,64.0,55.0,50.0,55.0,68.0,33.0,34.0,46.0,38.0,31.0,39.0,26.0,20.0,25.0,30.0,21.0,21.0,22.0,18.0,19.0,12.0,17.0,10.0,8.0,9.0,11.0,7.0,9.0,7.0,3.0,13.0,,7.0,1.0,,5.0 F83033,23.0,19.0,28.0,21.0,14.0,28.0,20.0,19.0,25.0,23.0,21.0,20.0,25.0,22.0,26.0,16.0,27.0,21.0,22.0,35.0,26.0,40.0,46.0,82.0,108.0,108.0,112.0,114.0,97.0,123.0,96.0,90.0,94.0,86.0,82.0,69.0,69.0,50.0,47.0,40.0,46.0,31.0,40.0,27.0,36.0,27.0,25.0,27.0,23.0,22.0,23.0,22.0,22.0,23.0,27.0,31.0,22.0,28.0,19.0,25.0,24.0,24.0,23.0,19.0,13.0,22.0,12.0,14.0,12.0,15.0,12.0,15.0,11.0,7.0,15.0,6.0,8.0,9.0,3.0,2.0,9.0,3.0,3.0,,5.0,2.0,5.0,3.0,3.0,4.0,3.0,,2.0,,1.0,2.0 F83034,3.0,1.0,3.0,4.0,3.0,6.0,2.0,2.0,4.0,1.0,4.0,2.0,1.0,,3.0,4.0,1.0,4.0,3.0,2.0,1.0,3.0,4.0,8.0,4.0,6.0,7.0,5.0,12.0,19.0,18.0,18.0,11.0,19.0,24.0,16.0,20.0,30.0,22.0,12.0,19.0,25.0,21.0,26.0,15.0,12.0,17.0,12.0,18.0,13.0,13.0,10.0,12.0,9.0,9.0,10.0,13.0,10.0,14.0,17.0,10.0,18.0,12.0,9.0,10.0,14.0,11.0,6.0,11.0,3.0,4.0,3.0,9.0,2.0,6.0,3.0,10.0,11.0,7.0,4.0,3.0,7.0,4.0,3.0,3.0,2.0,1.0,2.0,4.0,1.0,,1.0,,1.0,,1.0 F83039,11.0,13.0,29.0,23.0,26.0,15.0,16.0,23.0,29.0,28.0,23.0,18.0,25.0,28.0,34.0,28.0,20.0,34.0,26.0,22.0,21.0,27.0,24.0,18.0,30.0,49.0,33.0,24.0,30.0,30.0,44.0,41.0,35.0,33.0,54.0,47.0,37.0,50.0,47.0,45.0,43.0,30.0,33.0,33.0,36.0,46.0,28.0,23.0,33.0,29.0,29.0,37.0,32.0,38.0,35.0,35.0,33.0,24.0,45.0,27.0,40.0,36.0,30.0,34.0,33.0,26.0,19.0,19.0,24.0,18.0,21.0,18.0,13.0,22.0,11.0,19.0,10.0,13.0,11.0,6.0,7.0,11.0,9.0,5.0,4.0,7.0,6.0,5.0,1.0,2.0,1.0,1.0,,2.0,,1.0 F83042,26.0,18.0,13.0,9.0,14.0,10.0,20.0,10.0,26.0,18.0,14.0,13.0,16.0,12.0,12.0,12.0,29.0,24.0,32.0,46.0,61.0,66.0,72.0,92.0,134.0,155.0,148.0,179.0,183.0,174.0,218.0,179.0,166.0,182.0,153.0,171.0,121.0,105.0,83.0,86.0,99.0,78.0,58.0,70.0,59.0,52.0,45.0,33.0,42.0,39.0,37.0,40.0,36.0,35.0,28.0,40.0,31.0,42.0,40.0,45.0,28.0,25.0,30.0,28.0,23.0,22.0,22.0,21.0,14.0,20.0,20.0,10.0,17.0,15.0,11.0,6.0,10.0,15.0,6.0,5.0,3.0,6.0,3.0,2.0,4.0,5.0,3.0,1.0,1.0,,1.0,4.0,,1.0,, F83043,2.0,2.0,2.0,3.0,4.0,,2.0,2.0,2.0,1.0,,1.0,,4.0,3.0,1.0,2.0,5.0,102.0,190.0,310.0,445.0,674.0,652.0,618.0,603.0,655.0,569.0,531.0,483.0,466.0,364.0,325.0,275.0,256.0,232.0,175.0,136.0,126.0,51.0,43.0,37.0,13.0,7.0,11.0,8.0,5.0,11.0,6.0,4.0,7.0,12.0,6.0,7.0,17.0,4.0,5.0,7.0,2.0,6.0,3.0,12.0,8.0,3.0,6.0,4.0,9.0,5.0,7.0,9.0,5.0,3.0,3.0,1.0,2.0,7.0,5.0,5.0,6.0,2.0,5.0,5.0,4.0,1.0,2.0,5.0,2.0,3.0,1.0,,,1.0,1.0,2.0,,1.0 F83044,21.0,18.0,20.0,26.0,18.0,19.0,13.0,16.0,18.0,21.0,12.0,17.0,20.0,26.0,21.0,10.0,8.0,13.0,30.0,99.0,152.0,137.0,121.0,129.0,150.0,137.0,127.0,126.0,144.0,126.0,127.0,104.0,101.0,119.0,99.0,87.0,105.0,83.0,84.0,84.0,59.0,70.0,73.0,56.0,51.0,60.0,56.0,34.0,39.0,48.0,31.0,44.0,31.0,33.0,34.0,39.0,32.0,32.0,33.0,26.0,28.0,29.0,19.0,26.0,30.0,29.0,19.0,16.0,7.0,16.0,12.0,13.0,8.0,16.0,9.0,17.0,10.0,17.0,7.0,8.0,13.0,4.0,5.0,3.0,4.0,3.0,3.0,1.0,3.0,,2.0,4.0,1.0,2.0,,2.0 F83045,38.0,30.0,34.0,32.0,31.0,31.0,35.0,27.0,30.0,34.0,29.0,28.0,43.0,44.0,49.0,43.0,24.0,27.0,37.0,39.0,23.0,29.0,41.0,47.0,40.0,48.0,63.0,56.0,75.0,99.0,91.0,104.0,91.0,107.0,111.0,114.0,109.0,139.0,104.0,122.0,120.0,86.0,91.0,83.0,87.0,82.0,84.0,55.0,66.0,56.0,60.0,67.0,54.0,58.0,57.0,44.0,48.0,60.0,48.0,53.0,68.0,67.0,53.0,54.0,51.0,43.0,44.0,26.0,27.0,39.0,29.0,25.0,32.0,33.0,29.0,28.0,38.0,26.0,36.0,14.0,16.0,15.0,16.0,5.0,9.0,9.0,10.0,6.0,2.0,6.0,6.0,3.0,5.0,,2.0,2.0 F83048,22.0,17.0,17.0,20.0,23.0,23.0,23.0,35.0,18.0,22.0,29.0,24.0,30.0,28.0,25.0,24.0,29.0,20.0,64.0,98.0,92.0,90.0,108.0,118.0,157.0,134.0,169.0,169.0,163.0,135.0,141.0,149.0,147.0,119.0,119.0,139.0,109.0,112.0,111.0,94.0,100.0,75.0,94.0,65.0,76.0,51.0,59.0,53.0,52.0,45.0,55.0,45.0,40.0,40.0,39.0,43.0,49.0,30.0,40.0,32.0,29.0,42.0,28.0,28.0,31.0,27.0,18.0,26.0,16.0,24.0,19.0,23.0,17.0,11.0,11.0,14.0,21.0,7.0,14.0,15.0,10.0,8.0,3.0,2.0,3.0,4.0,3.0,2.0,1.0,1.0,2.0,2.0,,,,1.0 F83050,13.0,8.0,10.0,7.0,10.0,14.0,16.0,16.0,11.0,14.0,18.0,15.0,11.0,19.0,12.0,11.0,9.0,16.0,7.0,14.0,13.0,14.0,14.0,14.0,19.0,30.0,28.0,33.0,37.0,33.0,28.0,35.0,29.0,29.0,35.0,25.0,33.0,35.0,28.0,35.0,27.0,40.0,27.0,35.0,38.0,40.0,38.0,23.0,27.0,36.0,27.0,33.0,32.0,31.0,30.0,20.0,20.0,28.0,23.0,28.0,15.0,18.0,17.0,12.0,18.0,17.0,12.0,19.0,14.0,12.0,20.0,15.0,9.0,12.0,14.0,15.0,12.0,16.0,10.0,6.0,8.0,8.0,2.0,2.0,7.0,5.0,6.0,3.0,3.0,4.0,3.0,2.0,1.0,,,4.0 F83052,12.0,10.0,11.0,19.0,14.0,21.0,21.0,12.0,10.0,23.0,20.0,20.0,22.0,23.0,23.0,15.0,24.0,20.0,23.0,17.0,33.0,19.0,23.0,31.0,28.0,30.0,43.0,38.0,42.0,30.0,30.0,31.0,34.0,21.0,26.0,33.0,27.0,24.0,30.0,29.0,38.0,27.0,29.0,36.0,26.0,25.0,29.0,32.0,25.0,28.0,17.0,20.0,22.0,20.0,26.0,21.0,36.0,21.0,17.0,29.0,26.0,19.0,19.0,13.0,17.0,20.0,16.0,20.0,13.0,23.0,12.0,11.0,10.0,13.0,14.0,11.0,15.0,9.0,7.0,8.0,11.0,12.0,5.0,7.0,4.0,6.0,6.0,2.0,3.0,,1.0,,,2.0,1.0,3.0 F83053,30.0,32.0,38.0,35.0,27.0,37.0,30.0,32.0,37.0,37.0,41.0,29.0,43.0,27.0,38.0,36.0,50.0,43.0,34.0,31.0,46.0,43.0,53.0,47.0,49.0,59.0,71.0,77.0,80.0,100.0,94.0,101.0,94.0,102.0,84.0,78.0,81.0,83.0,86.0,70.0,76.0,67.0,48.0,75.0,80.0,46.0,70.0,53.0,39.0,51.0,50.0,46.0,51.0,50.0,40.0,42.0,57.0,43.0,45.0,42.0,43.0,33.0,29.0,33.0,30.0,26.0,22.0,13.0,18.0,21.0,18.0,17.0,17.0,13.0,14.0,13.0,9.0,9.0,11.0,9.0,9.0,5.0,6.0,2.0,5.0,8.0,3.0,5.0,5.0,3.0,,1.0,3.0,,2.0,1.0 F83055,129.0,121.0,116.0,121.0,103.0,84.0,82.0,90.0,92.0,80.0,78.0,69.0,69.0,62.0,75.0,80.0,81.0,73.0,80.0,62.0,65.0,81.0,84.0,111.0,162.0,201.0,264.0,292.0,290.0,359.0,350.0,342.0,349.0,357.0,339.0,357.0,358.0,316.0,306.0,289.0,270.0,252.0,222.0,236.0,208.0,179.0,167.0,151.0,129.0,127.0,138.0,125.0,114.0,128.0,106.0,88.0,70.0,92.0,88.0,62.0,74.0,57.0,52.0,60.0,45.0,48.0,40.0,39.0,45.0,40.0,33.0,33.0,35.0,34.0,30.0,28.0,32.0,30.0,27.0,28.0,19.0,19.0,17.0,16.0,10.0,20.0,10.0,11.0,8.0,6.0,2.0,4.0,2.0,4.0,3.0,6.0 F83056,44.0,46.0,51.0,54.0,34.0,37.0,34.0,38.0,26.0,21.0,28.0,23.0,26.0,18.0,36.0,36.0,29.0,41.0,25.0,36.0,36.0,39.0,42.0,51.0,60.0,101.0,110.0,135.0,161.0,209.0,211.0,228.0,207.0,184.0,182.0,165.0,150.0,131.0,149.0,101.0,85.0,83.0,78.0,82.0,75.0,65.0,52.0,48.0,57.0,34.0,47.0,40.0,37.0,25.0,33.0,39.0,37.0,31.0,37.0,35.0,31.0,26.0,25.0,29.0,19.0,21.0,18.0,20.0,15.0,13.0,14.0,13.0,11.0,11.0,8.0,12.0,3.0,12.0,6.0,1.0,,3.0,7.0,4.0,3.0,6.0,,,4.0,2.0,3.0,,,1.0,,1.0 F83057,34.0,30.0,25.0,30.0,42.0,26.0,34.0,42.0,33.0,31.0,28.0,29.0,27.0,37.0,29.0,35.0,33.0,29.0,38.0,25.0,25.0,42.0,32.0,47.0,49.0,66.0,68.0,94.0,86.0,109.0,106.0,114.0,119.0,115.0,114.0,122.0,89.0,102.0,79.0,86.0,102.0,82.0,74.0,64.0,67.0,58.0,84.0,47.0,50.0,50.0,51.0,63.0,43.0,50.0,51.0,52.0,52.0,35.0,41.0,40.0,35.0,44.0,39.0,45.0,32.0,33.0,34.0,24.0,29.0,39.0,17.0,19.0,22.0,15.0,22.0,15.0,20.0,19.0,13.0,10.0,9.0,10.0,11.0,7.0,12.0,6.0,7.0,6.0,1.0,5.0,6.0,2.0,1.0,,1.0,3.0 F83058,12.0,10.0,12.0,19.0,29.0,15.0,23.0,18.0,23.0,24.0,17.0,27.0,22.0,27.0,20.0,23.0,27.0,24.0,35.0,51.0,90.0,78.0,119.0,131.0,150.0,170.0,160.0,195.0,222.0,244.0,220.0,237.0,263.0,217.0,189.0,201.0,205.0,204.0,158.0,154.0,128.0,110.0,138.0,111.0,104.0,106.0,77.0,85.0,69.0,60.0,66.0,61.0,56.0,62.0,42.0,35.0,34.0,41.0,25.0,38.0,42.0,29.0,32.0,29.0,25.0,35.0,31.0,29.0,21.0,25.0,23.0,24.0,15.0,15.0,18.0,13.0,12.0,10.0,12.0,9.0,11.0,12.0,5.0,7.0,2.0,8.0,6.0,1.0,3.0,4.0,2.0,3.0,2.0,1.0,2.0,4.0 F83059,85.0,96.0,123.0,117.0,96.0,101.0,94.0,94.0,96.0,108.0,102.0,101.0,80.0,114.0,95.0,97.0,103.0,108.0,102.0,98.0,104.0,111.0,127.0,124.0,162.0,201.0,253.0,225.0,268.0,257.0,277.0,274.0,265.0,284.0,269.0,279.0,300.0,307.0,322.0,283.0,291.0,278.0,301.0,309.0,271.0,310.0,263.0,278.0,265.0,249.0,226.0,212.0,213.0,166.0,158.0,135.0,158.0,141.0,127.0,114.0,105.0,107.0,123.0,88.0,88.0,71.0,73.0,64.0,62.0,57.0,58.0,49.0,40.0,35.0,33.0,32.0,38.0,36.0,28.0,23.0,31.0,32.0,17.0,9.0,20.0,10.0,5.0,11.0,11.0,4.0,4.0,6.0,4.0,2.0,3.0,5.0 F83060,19.0,21.0,21.0,35.0,21.0,35.0,30.0,43.0,34.0,38.0,36.0,47.0,36.0,40.0,43.0,37.0,42.0,44.0,35.0,38.0,30.0,36.0,31.0,42.0,44.0,46.0,50.0,59.0,78.0,71.0,86.0,75.0,72.0,78.0,74.0,95.0,101.0,96.0,81.0,61.0,83.0,72.0,73.0,76.0,58.0,60.0,60.0,59.0,57.0,50.0,53.0,55.0,46.0,50.0,41.0,50.0,53.0,51.0,35.0,40.0,39.0,29.0,37.0,37.0,27.0,36.0,18.0,30.0,23.0,17.0,10.0,27.0,17.0,20.0,17.0,18.0,15.0,11.0,15.0,10.0,11.0,8.0,6.0,7.0,6.0,3.0,10.0,4.0,5.0,2.0,1.0,3.0,4.0,,,9.0 F83061,19.0,16.0,7.0,15.0,9.0,9.0,13.0,11.0,8.0,17.0,9.0,21.0,12.0,9.0,21.0,9.0,14.0,20.0,20.0,28.0,44.0,33.0,46.0,58.0,42.0,48.0,74.0,64.0,76.0,77.0,69.0,82.0,69.0,71.0,63.0,67.0,56.0,68.0,45.0,60.0,69.0,59.0,62.0,47.0,55.0,53.0,43.0,30.0,40.0,34.0,55.0,42.0,52.0,33.0,40.0,22.0,31.0,32.0,39.0,38.0,42.0,28.0,34.0,27.0,25.0,22.0,20.0,20.0,19.0,14.0,13.0,16.0,15.0,9.0,18.0,15.0,12.0,14.0,14.0,9.0,11.0,4.0,8.0,6.0,4.0,2.0,5.0,5.0,3.0,,1.0,4.0,1.0,1.0,,1.0 F83063,59.0,63.0,58.0,64.0,38.0,48.0,47.0,51.0,55.0,63.0,42.0,48.0,58.0,53.0,68.0,50.0,55.0,67.0,73.0,73.0,89.0,87.0,94.0,115.0,116.0,122.0,163.0,163.0,167.0,181.0,180.0,200.0,184.0,186.0,162.0,182.0,145.0,190.0,181.0,146.0,137.0,156.0,111.0,119.0,98.0,89.0,96.0,83.0,71.0,88.0,69.0,61.0,76.0,64.0,72.0,70.0,66.0,62.0,55.0,63.0,39.0,55.0,49.0,48.0,48.0,57.0,38.0,35.0,26.0,28.0,30.0,19.0,30.0,23.0,21.0,21.0,18.0,19.0,27.0,11.0,11.0,9.0,6.0,9.0,4.0,7.0,3.0,5.0,5.0,6.0,1.0,3.0,5.0,1.0,3.0,4.0 F83064,24.0,31.0,37.0,46.0,38.0,43.0,34.0,33.0,40.0,40.0,41.0,27.0,42.0,39.0,39.0,33.0,40.0,31.0,42.0,48.0,66.0,62.0,86.0,88.0,111.0,110.0,133.0,151.0,174.0,147.0,144.0,139.0,140.0,142.0,141.0,140.0,131.0,113.0,119.0,110.0,98.0,80.0,87.0,72.0,77.0,73.0,64.0,52.0,63.0,50.0,49.0,46.0,50.0,42.0,39.0,39.0,58.0,48.0,39.0,35.0,50.0,35.0,39.0,44.0,28.0,31.0,30.0,16.0,22.0,21.0,19.0,13.0,8.0,6.0,14.0,13.0,15.0,10.0,11.0,8.0,9.0,4.0,8.0,5.0,8.0,10.0,3.0,3.0,3.0,3.0,1.0,2.0,3.0,1.0,1.0,1.0 F83615,33.0,38.0,36.0,49.0,39.0,40.0,40.0,45.0,37.0,55.0,61.0,55.0,44.0,56.0,70.0,44.0,42.0,46.0,57.0,34.0,43.0,49.0,38.0,42.0,46.0,52.0,39.0,61.0,50.0,51.0,58.0,64.0,58.0,49.0,59.0,86.0,90.0,78.0,82.0,89.0,91.0,99.0,74.0,90.0,92.0,93.0,91.0,78.0,77.0,65.0,78.0,69.0,66.0,61.0,66.0,56.0,56.0,48.0,51.0,44.0,38.0,33.0,34.0,35.0,33.0,21.0,33.0,28.0,19.0,23.0,11.0,15.0,18.0,26.0,23.0,26.0,20.0,23.0,25.0,27.0,16.0,14.0,10.0,14.0,8.0,8.0,4.0,5.0,8.0,4.0,2.0,1.0,3.0,2.0,3.0,7.0 F83623,41.0,48.0,57.0,72.0,66.0,71.0,79.0,86.0,96.0,115.0,106.0,124.0,85.0,98.0,98.0,113.0,94.0,87.0,83.0,66.0,72.0,59.0,65.0,50.0,72.0,53.0,65.0,67.0,60.0,61.0,65.0,64.0,72.0,70.0,80.0,68.0,83.0,78.0,92.0,100.0,108.0,125.0,104.0,116.0,115.0,121.0,127.0,118.0,120.0,128.0,115.0,110.0,121.0,128.0,119.0,103.0,114.0,75.0,85.0,79.0,83.0,77.0,73.0,75.0,66.0,55.0,67.0,43.0,60.0,50.0,47.0,42.0,45.0,39.0,36.0,40.0,35.0,45.0,36.0,29.0,37.0,36.0,28.0,21.0,19.0,24.0,23.0,11.0,14.0,12.0,9.0,8.0,,7.0,5.0,6.0 F83624,47.0,39.0,49.0,36.0,43.0,41.0,51.0,43.0,42.0,49.0,36.0,35.0,36.0,45.0,51.0,39.0,49.0,47.0,53.0,103.0,110.0,128.0,178.0,228.0,273.0,264.0,331.0,311.0,333.0,351.0,339.0,314.0,287.0,264.0,259.0,269.0,233.0,195.0,186.0,163.0,170.0,165.0,149.0,129.0,121.0,123.0,131.0,82.0,105.0,98.0,75.0,72.0,89.0,84.0,97.0,77.0,74.0,81.0,73.0,78.0,64.0,57.0,73.0,53.0,58.0,45.0,32.0,36.0,33.0,28.0,24.0,16.0,17.0,9.0,26.0,14.0,18.0,15.0,9.0,7.0,14.0,2.0,8.0,9.0,8.0,4.0,5.0,4.0,8.0,1.0,2.0,2.0,1.0,,1.0,2.0 F83632,19.0,23.0,19.0,17.0,20.0,23.0,24.0,20.0,26.0,23.0,31.0,23.0,33.0,20.0,32.0,40.0,25.0,48.0,48.0,55.0,54.0,56.0,50.0,61.0,78.0,71.0,68.0,86.0,87.0,75.0,83.0,95.0,74.0,84.0,86.0,70.0,80.0,68.0,79.0,67.0,66.0,79.0,60.0,76.0,66.0,67.0,58.0,56.0,46.0,56.0,52.0,51.0,40.0,31.0,48.0,35.0,38.0,30.0,29.0,39.0,45.0,33.0,39.0,22.0,33.0,35.0,26.0,23.0,28.0,23.0,17.0,22.0,18.0,10.0,12.0,11.0,9.0,16.0,9.0,5.0,8.0,5.0,10.0,3.0,6.0,5.0,5.0,4.0,3.0,2.0,5.0,2.0,1.0,2.0,1.0,3.0 F83633,12.0,18.0,19.0,25.0,22.0,17.0,23.0,23.0,17.0,28.0,32.0,23.0,27.0,22.0,16.0,19.0,29.0,20.0,21.0,12.0,27.0,30.0,18.0,37.0,30.0,37.0,33.0,56.0,60.0,72.0,55.0,74.0,58.0,66.0,49.0,53.0,45.0,72.0,61.0,64.0,54.0,49.0,59.0,55.0,55.0,52.0,48.0,36.0,32.0,43.0,53.0,26.0,40.0,26.0,27.0,40.0,36.0,35.0,20.0,21.0,23.0,20.0,25.0,24.0,18.0,13.0,11.0,20.0,14.0,8.0,15.0,10.0,12.0,12.0,9.0,9.0,6.0,9.0,4.0,3.0,7.0,6.0,4.0,4.0,8.0,3.0,1.0,5.0,4.0,1.0,3.0,1.0,,2.0,1.0,2.0 F83635,18.0,22.0,17.0,25.0,24.0,19.0,21.0,18.0,19.0,12.0,15.0,11.0,12.0,20.0,22.0,17.0,18.0,17.0,29.0,61.0,74.0,78.0,93.0,113.0,134.0,119.0,147.0,202.0,216.0,223.0,217.0,178.0,177.0,179.0,187.0,148.0,172.0,120.0,131.0,117.0,87.0,91.0,87.0,60.0,57.0,57.0,50.0,46.0,31.0,43.0,39.0,28.0,23.0,29.0,25.0,28.0,24.0,20.0,27.0,19.0,16.0,23.0,13.0,9.0,10.0,18.0,10.0,10.0,10.0,9.0,9.0,9.0,2.0,5.0,3.0,4.0,6.0,3.0,5.0,1.0,,1.0,3.0,,3.0,5.0,2.0,7.0,2.0,1.0,,,1.0,,,1.0 F83652,54.0,41.0,50.0,42.0,29.0,37.0,40.0,42.0,37.0,57.0,32.0,47.0,41.0,33.0,39.0,39.0,43.0,43.0,75.0,90.0,142.0,106.0,105.0,124.0,122.0,173.0,173.0,196.0,190.0,182.0,215.0,186.0,181.0,175.0,174.0,157.0,141.0,126.0,131.0,131.0,137.0,117.0,101.0,125.0,99.0,84.0,86.0,74.0,67.0,61.0,52.0,52.0,67.0,66.0,60.0,59.0,60.0,62.0,54.0,63.0,56.0,55.0,58.0,45.0,35.0,38.0,39.0,39.0,28.0,28.0,25.0,18.0,22.0,22.0,20.0,21.0,25.0,14.0,21.0,8.0,7.0,11.0,5.0,3.0,4.0,7.0,2.0,5.0,3.0,3.0,2.0,,2.0,1.0,2.0, F83658,41.0,36.0,29.0,33.0,20.0,27.0,28.0,27.0,31.0,28.0,38.0,33.0,37.0,37.0,31.0,31.0,29.0,27.0,36.0,30.0,30.0,22.0,44.0,48.0,40.0,41.0,51.0,52.0,58.0,74.0,65.0,63.0,67.0,65.0,71.0,60.0,59.0,54.0,43.0,50.0,44.0,51.0,60.0,40.0,59.0,53.0,57.0,40.0,38.0,42.0,65.0,37.0,36.0,30.0,44.0,39.0,32.0,48.0,31.0,36.0,27.0,35.0,36.0,23.0,23.0,14.0,22.0,17.0,28.0,20.0,24.0,20.0,14.0,19.0,9.0,15.0,10.0,11.0,14.0,16.0,5.0,7.0,4.0,5.0,1.0,2.0,,4.0,2.0,2.0,2.0,1.0,1.0,1.0,1.0,1.0 F83660,36.0,35.0,41.0,32.0,48.0,43.0,45.0,61.0,54.0,61.0,56.0,50.0,48.0,68.0,49.0,63.0,56.0,54.0,47.0,45.0,41.0,32.0,40.0,31.0,53.0,58.0,69.0,64.0,62.0,91.0,102.0,94.0,108.0,91.0,72.0,91.0,98.0,83.0,84.0,91.0,92.0,83.0,75.0,97.0,74.0,100.0,86.0,71.0,79.0,63.0,84.0,74.0,69.0,73.0,62.0,65.0,64.0,77.0,63.0,59.0,53.0,54.0,45.0,38.0,36.0,39.0,37.0,33.0,23.0,27.0,30.0,18.0,28.0,19.0,19.0,18.0,11.0,17.0,11.0,13.0,16.0,8.0,7.0,16.0,5.0,11.0,5.0,2.0,4.0,4.0,2.0,3.0,2.0,3.0,2.0,1.0 F83664,55.0,73.0,56.0,62.0,45.0,52.0,50.0,51.0,51.0,47.0,48.0,37.0,55.0,38.0,51.0,58.0,52.0,50.0,48.0,53.0,46.0,63.0,72.0,87.0,102.0,110.0,148.0,172.0,183.0,196.0,220.0,192.0,183.0,168.0,189.0,193.0,159.0,181.0,148.0,141.0,133.0,121.0,127.0,118.0,106.0,72.0,71.0,64.0,90.0,80.0,68.0,75.0,63.0,62.0,49.0,56.0,66.0,53.0,68.0,64.0,57.0,46.0,44.0,35.0,45.0,38.0,26.0,25.0,24.0,20.0,13.0,21.0,11.0,18.0,13.0,11.0,10.0,15.0,10.0,9.0,10.0,10.0,3.0,4.0,3.0,4.0,2.0,3.0,2.0,5.0,3.0,,1.0,,1.0,1.0 F83665,60.0,72.0,54.0,73.0,65.0,77.0,78.0,76.0,88.0,85.0,88.0,98.0,87.0,91.0,74.0,79.0,81.0,88.0,61.0,65.0,59.0,79.0,93.0,94.0,113.0,124.0,114.0,135.0,169.0,175.0,205.0,165.0,183.0,166.0,198.0,226.0,187.0,198.0,231.0,224.0,205.0,220.0,206.0,211.0,196.0,206.0,186.0,147.0,152.0,105.0,123.0,102.0,102.0,115.0,105.0,83.0,80.0,72.0,78.0,69.0,51.0,54.0,55.0,58.0,47.0,42.0,52.0,32.0,40.0,31.0,18.0,29.0,26.0,22.0,14.0,21.0,25.0,27.0,28.0,17.0,21.0,14.0,16.0,16.0,5.0,7.0,7.0,5.0,5.0,2.0,2.0,4.0,2.0,4.0,3.0,8.0 F83666,28.0,39.0,25.0,38.0,34.0,29.0,51.0,40.0,38.0,45.0,27.0,40.0,32.0,38.0,35.0,42.0,33.0,28.0,28.0,23.0,28.0,36.0,38.0,52.0,48.0,60.0,76.0,112.0,96.0,92.0,101.0,74.0,92.0,91.0,69.0,79.0,94.0,67.0,70.0,68.0,69.0,71.0,56.0,67.0,56.0,59.0,51.0,45.0,34.0,44.0,34.0,35.0,29.0,36.0,30.0,37.0,35.0,32.0,27.0,24.0,37.0,26.0,30.0,28.0,18.0,17.0,17.0,13.0,23.0,15.0,13.0,18.0,14.0,10.0,14.0,12.0,12.0,11.0,6.0,9.0,13.0,6.0,4.0,5.0,7.0,6.0,6.0,6.0,5.0,2.0,1.0,2.0,,2.0,1.0,3.0 F83671,8.0,13.0,14.0,13.0,16.0,13.0,19.0,19.0,20.0,18.0,20.0,16.0,14.0,28.0,21.0,13.0,11.0,14.0,9.0,18.0,15.0,10.0,14.0,10.0,29.0,28.0,32.0,17.0,37.0,33.0,40.0,29.0,36.0,40.0,36.0,32.0,43.0,38.0,37.0,31.0,34.0,27.0,30.0,28.0,24.0,24.0,16.0,22.0,27.0,21.0,20.0,27.0,23.0,27.0,18.0,29.0,27.0,22.0,27.0,29.0,19.0,18.0,14.0,14.0,21.0,14.0,16.0,20.0,12.0,15.0,9.0,11.0,8.0,8.0,7.0,7.0,2.0,4.0,3.0,6.0,5.0,1.0,2.0,2.0,3.0,2.0,1.0,1.0,2.0,,,1.0,2.0,1.0,,1.0 F83672,1.0,4.0,5.0,5.0,1.0,1.0,3.0,1.0,4.0,2.0,3.0,4.0,2.0,2.0,3.0,2.0,,1.0,37.0,100.0,178.0,240.0,313.0,391.0,432.0,475.0,466.0,448.0,408.0,388.0,364.0,321.0,293.0,297.0,277.0,251.0,229.0,193.0,147.0,127.0,93.0,99.0,103.0,86.0,57.0,49.0,33.0,34.0,27.0,33.0,31.0,24.0,25.0,23.0,15.0,21.0,17.0,18.0,20.0,13.0,22.0,16.0,16.0,10.0,7.0,13.0,11.0,8.0,5.0,9.0,7.0,5.0,6.0,4.0,5.0,4.0,5.0,6.0,4.0,3.0,1.0,4.0,2.0,2.0,2.0,,,1.0,1.0,1.0,,1.0,,,,1.0 F83673,30.0,27.0,32.0,18.0,21.0,36.0,33.0,21.0,30.0,26.0,28.0,25.0,31.0,32.0,30.0,20.0,33.0,33.0,45.0,43.0,28.0,31.0,32.0,41.0,48.0,59.0,61.0,57.0,89.0,89.0,109.0,99.0,76.0,87.0,107.0,97.0,76.0,78.0,81.0,76.0,70.0,61.0,59.0,41.0,50.0,56.0,40.0,43.0,39.0,42.0,29.0,27.0,37.0,36.0,25.0,38.0,30.0,41.0,34.0,48.0,25.0,30.0,23.0,28.0,32.0,21.0,24.0,25.0,24.0,15.0,14.0,12.0,9.0,11.0,13.0,9.0,10.0,6.0,4.0,5.0,9.0,3.0,5.0,5.0,3.0,4.0,,3.0,3.0,1.0,2.0,1.0,,,1.0, F83674,25.0,22.0,20.0,37.0,32.0,34.0,41.0,25.0,35.0,26.0,42.0,38.0,43.0,36.0,34.0,31.0,49.0,46.0,39.0,54.0,50.0,57.0,47.0,73.0,73.0,70.0,86.0,83.0,114.0,85.0,100.0,88.0,74.0,110.0,98.0,92.0,106.0,97.0,89.0,91.0,112.0,77.0,83.0,86.0,82.0,93.0,87.0,75.0,73.0,76.0,59.0,63.0,60.0,71.0,70.0,69.0,65.0,72.0,71.0,78.0,57.0,66.0,60.0,53.0,39.0,55.0,48.0,46.0,22.0,32.0,25.0,31.0,28.0,31.0,26.0,16.0,23.0,23.0,22.0,16.0,11.0,12.0,10.0,14.0,12.0,7.0,7.0,4.0,4.0,1.0,4.0,3.0,1.0,1.0,3.0,1.0 F83678,6.0,5.0,9.0,5.0,8.0,10.0,6.0,13.0,12.0,12.0,5.0,8.0,10.0,11.0,14.0,4.0,18.0,7.0,11.0,6.0,9.0,5.0,12.0,12.0,4.0,12.0,12.0,15.0,24.0,19.0,16.0,15.0,19.0,15.0,26.0,17.0,18.0,15.0,20.0,16.0,20.0,23.0,17.0,20.0,18.0,16.0,13.0,23.0,21.0,16.0,15.0,10.0,18.0,28.0,26.0,19.0,14.0,16.0,16.0,14.0,22.0,19.0,17.0,8.0,23.0,10.0,17.0,16.0,11.0,7.0,6.0,13.0,16.0,12.0,13.0,11.0,7.0,11.0,5.0,7.0,4.0,6.0,1.0,1.0,4.0,2.0,3.0,3.0,1.0,,3.0,,1.0,,,1.0 F83680,15.0,15.0,14.0,12.0,13.0,20.0,10.0,14.0,17.0,13.0,14.0,8.0,9.0,9.0,13.0,14.0,10.0,12.0,19.0,18.0,26.0,17.0,40.0,60.0,58.0,52.0,53.0,59.0,72.0,82.0,62.0,62.0,78.0,82.0,78.0,91.0,91.0,71.0,59.0,54.0,60.0,49.0,36.0,41.0,37.0,39.0,42.0,40.0,29.0,30.0,36.0,36.0,22.0,40.0,25.0,30.0,26.0,25.0,27.0,18.0,29.0,20.0,30.0,27.0,21.0,24.0,14.0,14.0,12.0,8.0,9.0,13.0,6.0,11.0,8.0,5.0,9.0,7.0,2.0,9.0,4.0,6.0,2.0,2.0,4.0,1.0,2.0,3.0,,1.0,1.0,1.0,1.0,1.0,,1.0 F83681,25.0,29.0,24.0,29.0,23.0,40.0,39.0,29.0,38.0,42.0,46.0,41.0,37.0,33.0,46.0,42.0,43.0,29.0,37.0,53.0,49.0,55.0,56.0,52.0,73.0,84.0,85.0,88.0,101.0,106.0,103.0,86.0,113.0,101.0,147.0,103.0,99.0,104.0,95.0,99.0,112.0,108.0,80.0,105.0,84.0,103.0,76.0,69.0,67.0,67.0,53.0,53.0,60.0,75.0,64.0,66.0,57.0,62.0,63.0,53.0,68.0,45.0,43.0,46.0,39.0,46.0,31.0,26.0,22.0,35.0,26.0,21.0,31.0,26.0,21.0,25.0,14.0,17.0,15.0,15.0,11.0,16.0,14.0,13.0,9.0,8.0,5.0,3.0,3.0,5.0,4.0,6.0,3.0,3.0,,2.0 F83683,21.0,21.0,27.0,25.0,29.0,24.0,20.0,30.0,31.0,24.0,26.0,27.0,26.0,31.0,24.0,46.0,39.0,33.0,30.0,49.0,48.0,66.0,58.0,79.0,94.0,115.0,88.0,104.0,96.0,105.0,95.0,101.0,99.0,81.0,90.0,70.0,76.0,68.0,49.0,59.0,63.0,55.0,46.0,58.0,34.0,43.0,41.0,38.0,33.0,27.0,29.0,34.0,31.0,37.0,38.0,38.0,22.0,20.0,25.0,28.0,26.0,21.0,21.0,20.0,28.0,16.0,13.0,10.0,18.0,11.0,10.0,11.0,14.0,3.0,9.0,5.0,9.0,3.0,1.0,3.0,11.0,3.0,6.0,4.0,3.0,,,3.0,1.0,1.0,1.0,1.0,1.0,,1.0, F83686,62.0,51.0,42.0,31.0,52.0,31.0,23.0,36.0,27.0,25.0,26.0,23.0,31.0,21.0,33.0,30.0,19.0,23.0,31.0,32.0,33.0,29.0,55.0,43.0,92.0,104.0,129.0,139.0,135.0,176.0,163.0,143.0,155.0,158.0,157.0,134.0,151.0,122.0,114.0,121.0,114.0,99.0,98.0,80.0,81.0,82.0,81.0,47.0,42.0,59.0,58.0,51.0,51.0,41.0,55.0,54.0,52.0,37.0,43.0,40.0,44.0,29.0,39.0,29.0,20.0,18.0,22.0,17.0,19.0,18.0,13.0,15.0,17.0,14.0,18.0,12.0,14.0,15.0,12.0,6.0,6.0,8.0,7.0,3.0,2.0,2.0,4.0,6.0,1.0,1.0,2.0,1.0,1.0,,, F85002,428.0,437.0,483.0,551.0,530.0,537.0,625.0,676.0,607.0,671.0,670.0,651.0,675.0,718.0,686.0,722.0,740.0,757.0,724.0,666.0,712.0,635.0,603.0,688.0,641.0,657.0,674.0,635.0,655.0,687.0,645.0,596.0,683.0,685.0,629.0,665.0,672.0,701.0,648.0,684.0,664.0,649.0,670.0,657.0,680.0,704.0,628.0,622.0,601.0,626.0,588.0,577.0,646.0,579.0,616.0,589.0,636.0,589.0,587.0,624.0,649.0,515.0,520.0,504.0,472.0,458.0,433.0,388.0,350.0,326.0,284.0,274.0,254.0,217.0,239.0,208.0,202.0,240.0,240.0,160.0,147.0,169.0,139.0,107.0,110.0,106.0,92.0,72.0,60.0,49.0,54.0,36.0,42.0,24.0,16.0,42.0 F85004,43.0,51.0,54.0,57.0,60.0,62.0,73.0,82.0,78.0,92.0,81.0,91.0,87.0,79.0,90.0,80.0,98.0,106.0,100.0,89.0,89.0,66.0,98.0,82.0,80.0,78.0,100.0,78.0,90.0,80.0,91.0,80.0,77.0,87.0,79.0,85.0,98.0,87.0,82.0,92.0,96.0,98.0,87.0,94.0,92.0,93.0,93.0,82.0,88.0,85.0,82.0,78.0,92.0,88.0,88.0,81.0,88.0,96.0,72.0,94.0,72.0,70.0,56.0,69.0,67.0,90.0,77.0,54.0,50.0,54.0,50.0,36.0,37.0,38.0,28.0,35.0,38.0,42.0,33.0,26.0,23.0,20.0,20.0,18.0,15.0,18.0,13.0,14.0,12.0,3.0,9.0,3.0,2.0,3.0,4.0,4.0 F85007,65.0,66.0,63.0,94.0,76.0,94.0,87.0,87.0,85.0,86.0,90.0,57.0,74.0,72.0,93.0,93.0,80.0,106.0,90.0,109.0,83.0,107.0,84.0,109.0,110.0,123.0,119.0,141.0,129.0,111.0,130.0,155.0,152.0,154.0,149.0,181.0,169.0,178.0,193.0,187.0,180.0,189.0,188.0,178.0,156.0,169.0,154.0,171.0,144.0,174.0,156.0,129.0,138.0,113.0,149.0,136.0,138.0,138.0,125.0,110.0,118.0,103.0,93.0,89.0,97.0,87.0,86.0,60.0,69.0,51.0,60.0,56.0,45.0,38.0,41.0,41.0,32.0,32.0,30.0,20.0,19.0,16.0,17.0,18.0,10.0,18.0,17.0,10.0,11.0,7.0,4.0,8.0,4.0,2.0,4.0,4.0 F85008,38.0,43.0,48.0,44.0,39.0,55.0,55.0,52.0,45.0,41.0,65.0,57.0,55.0,59.0,64.0,68.0,86.0,74.0,69.0,85.0,62.0,81.0,77.0,79.0,86.0,94.0,80.0,105.0,119.0,94.0,120.0,113.0,106.0,123.0,120.0,126.0,140.0,135.0,124.0,117.0,125.0,106.0,129.0,125.0,120.0,124.0,115.0,102.0,112.0,96.0,98.0,84.0,88.0,100.0,88.0,79.0,94.0,87.0,75.0,70.0,74.0,63.0,66.0,62.0,60.0,65.0,51.0,65.0,51.0,46.0,48.0,34.0,33.0,25.0,21.0,27.0,25.0,28.0,16.0,14.0,20.0,15.0,14.0,9.0,10.0,10.0,13.0,5.0,8.0,5.0,8.0,3.0,1.0,2.0,4.0, F85010,18.0,13.0,19.0,22.0,17.0,24.0,24.0,23.0,24.0,32.0,22.0,21.0,23.0,41.0,28.0,42.0,28.0,28.0,31.0,26.0,38.0,45.0,25.0,20.0,35.0,32.0,28.0,35.0,34.0,37.0,41.0,39.0,40.0,29.0,30.0,35.0,29.0,34.0,32.0,38.0,44.0,25.0,34.0,35.0,29.0,32.0,31.0,34.0,18.0,37.0,24.0,27.0,26.0,24.0,37.0,39.0,26.0,37.0,30.0,41.0,32.0,35.0,28.0,31.0,26.0,20.0,31.0,26.0,19.0,14.0,16.0,17.0,20.0,18.0,15.0,17.0,20.0,12.0,14.0,10.0,10.0,7.0,7.0,9.0,9.0,4.0,5.0,7.0,5.0,4.0,3.0,5.0,,,3.0,3.0 F85013,39.0,40.0,44.0,41.0,41.0,57.0,48.0,42.0,55.0,54.0,52.0,61.0,60.0,61.0,59.0,52.0,53.0,56.0,51.0,57.0,56.0,66.0,71.0,59.0,60.0,57.0,74.0,92.0,83.0,87.0,96.0,93.0,99.0,116.0,97.0,103.0,103.0,100.0,92.0,97.0,89.0,88.0,73.0,88.0,67.0,76.0,75.0,70.0,64.0,82.0,63.0,59.0,57.0,65.0,64.0,71.0,59.0,71.0,49.0,64.0,42.0,65.0,52.0,67.0,59.0,38.0,24.0,30.0,33.0,22.0,16.0,17.0,14.0,11.0,15.0,16.0,9.0,10.0,13.0,9.0,9.0,12.0,7.0,11.0,6.0,2.0,5.0,2.0,9.0,,2.0,4.0,1.0,2.0,1.0,4.0 F85014,59.0,63.0,58.0,52.0,44.0,56.0,55.0,71.0,86.0,88.0,84.0,63.0,74.0,65.0,78.0,87.0,88.0,89.0,99.0,72.0,58.0,66.0,65.0,71.0,80.0,108.0,118.0,131.0,121.0,111.0,122.0,130.0,145.0,148.0,158.0,132.0,162.0,153.0,144.0,133.0,134.0,130.0,127.0,125.0,131.0,133.0,140.0,135.0,135.0,135.0,152.0,133.0,128.0,135.0,127.0,107.0,124.0,89.0,113.0,105.0,140.0,83.0,95.0,61.0,74.0,60.0,80.0,71.0,58.0,54.0,57.0,62.0,66.0,59.0,60.0,56.0,58.0,64.0,68.0,53.0,48.0,51.0,30.0,37.0,22.0,28.0,28.0,13.0,20.0,12.0,17.0,8.0,7.0,6.0,9.0,13.0 F85016,26.0,29.0,37.0,34.0,39.0,40.0,42.0,46.0,37.0,52.0,28.0,38.0,39.0,30.0,41.0,45.0,44.0,48.0,34.0,19.0,40.0,23.0,42.0,40.0,46.0,42.0,52.0,47.0,40.0,50.0,33.0,38.0,31.0,68.0,60.0,54.0,36.0,60.0,59.0,48.0,53.0,42.0,49.0,56.0,54.0,49.0,56.0,44.0,58.0,48.0,46.0,39.0,50.0,48.0,40.0,44.0,57.0,51.0,35.0,36.0,43.0,39.0,48.0,42.0,48.0,28.0,44.0,41.0,30.0,43.0,35.0,22.0,29.0,32.0,38.0,28.0,44.0,36.0,29.0,30.0,20.0,28.0,23.0,22.0,22.0,13.0,10.0,14.0,13.0,8.0,11.0,3.0,4.0,6.0,3.0,9.0 F85017,18.0,13.0,23.0,29.0,27.0,34.0,23.0,36.0,29.0,26.0,34.0,45.0,35.0,34.0,47.0,54.0,33.0,44.0,55.0,39.0,42.0,42.0,46.0,51.0,46.0,65.0,65.0,60.0,64.0,67.0,71.0,54.0,57.0,60.0,64.0,79.0,67.0,68.0,65.0,72.0,80.0,75.0,69.0,52.0,61.0,60.0,59.0,51.0,73.0,55.0,58.0,54.0,59.0,63.0,49.0,54.0,64.0,49.0,53.0,38.0,55.0,53.0,49.0,40.0,30.0,40.0,29.0,35.0,24.0,24.0,26.0,26.0,18.0,14.0,18.0,17.0,9.0,12.0,11.0,11.0,7.0,11.0,8.0,6.0,7.0,2.0,5.0,3.0,4.0,1.0,6.0,4.0,1.0,2.0,,1.0 F85019,63.0,71.0,78.0,62.0,62.0,84.0,63.0,83.0,82.0,74.0,94.0,89.0,99.0,89.0,103.0,103.0,97.0,99.0,97.0,105.0,108.0,98.0,101.0,103.0,105.0,118.0,101.0,120.0,124.0,111.0,129.0,109.0,116.0,127.0,148.0,128.0,102.0,118.0,117.0,127.0,120.0,139.0,107.0,121.0,118.0,116.0,94.0,104.0,106.0,113.0,104.0,102.0,88.0,106.0,102.0,95.0,80.0,103.0,82.0,97.0,108.0,86.0,88.0,85.0,79.0,62.0,64.0,72.0,48.0,58.0,52.0,37.0,40.0,35.0,23.0,31.0,25.0,33.0,23.0,16.0,15.0,16.0,15.0,19.0,15.0,14.0,11.0,10.0,9.0,7.0,1.0,6.0,5.0,2.0,1.0,4.0 F85020,49.0,54.0,63.0,53.0,49.0,63.0,67.0,59.0,60.0,55.0,56.0,55.0,47.0,59.0,59.0,70.0,34.0,65.0,47.0,50.0,51.0,49.0,46.0,48.0,61.0,55.0,61.0,49.0,54.0,65.0,68.0,53.0,55.0,80.0,72.0,77.0,79.0,92.0,73.0,72.0,71.0,81.0,84.0,72.0,71.0,90.0,83.0,81.0,67.0,58.0,81.0,85.0,72.0,87.0,78.0,63.0,70.0,60.0,69.0,74.0,71.0,70.0,58.0,57.0,69.0,53.0,58.0,47.0,52.0,49.0,41.0,45.0,40.0,33.0,30.0,32.0,46.0,34.0,23.0,24.0,31.0,32.0,21.0,18.0,21.0,18.0,20.0,8.0,11.0,12.0,9.0,2.0,3.0,3.0,7.0,3.0 F85023,74.0,90.0,111.0,102.0,101.0,132.0,110.0,119.0,113.0,141.0,125.0,120.0,103.0,107.0,121.0,116.0,123.0,105.0,114.0,91.0,87.0,81.0,84.0,92.0,93.0,75.0,85.0,83.0,96.0,118.0,90.0,96.0,94.0,103.0,93.0,121.0,110.0,93.0,96.0,107.0,98.0,87.0,91.0,94.0,94.0,112.0,91.0,100.0,78.0,83.0,95.0,91.0,72.0,70.0,78.0,78.0,52.0,62.0,57.0,63.0,64.0,57.0,51.0,36.0,47.0,42.0,29.0,26.0,31.0,14.0,27.0,22.0,21.0,17.0,23.0,14.0,14.0,6.0,11.0,14.0,9.0,7.0,7.0,12.0,6.0,7.0,3.0,2.0,2.0,3.0,2.0,2.0,3.0,2.0,1.0,5.0 F85025,82.0,79.0,83.0,90.0,92.0,80.0,78.0,93.0,99.0,79.0,84.0,73.0,90.0,101.0,102.0,89.0,87.0,109.0,87.0,76.0,74.0,80.0,71.0,74.0,84.0,92.0,86.0,97.0,103.0,115.0,93.0,106.0,109.0,123.0,127.0,127.0,115.0,111.0,121.0,99.0,139.0,100.0,102.0,124.0,125.0,108.0,96.0,118.0,104.0,108.0,92.0,97.0,107.0,111.0,83.0,96.0,88.0,106.0,75.0,87.0,94.0,99.0,77.0,82.0,71.0,76.0,65.0,67.0,47.0,49.0,62.0,52.0,47.0,42.0,50.0,36.0,56.0,50.0,44.0,32.0,34.0,30.0,22.0,17.0,28.0,21.0,9.0,21.0,11.0,10.0,6.0,8.0,8.0,5.0,5.0,10.0 F85028,14.0,27.0,13.0,30.0,23.0,22.0,27.0,28.0,31.0,29.0,30.0,26.0,54.0,34.0,41.0,39.0,45.0,45.0,40.0,41.0,49.0,60.0,42.0,46.0,42.0,53.0,59.0,60.0,70.0,63.0,80.0,70.0,73.0,65.0,54.0,79.0,96.0,69.0,82.0,81.0,70.0,80.0,84.0,80.0,84.0,72.0,84.0,82.0,84.0,59.0,58.0,57.0,84.0,52.0,70.0,71.0,56.0,60.0,48.0,64.0,56.0,64.0,57.0,54.0,39.0,35.0,37.0,32.0,33.0,29.0,32.0,23.0,33.0,17.0,9.0,12.0,10.0,15.0,6.0,6.0,10.0,9.0,10.0,8.0,9.0,11.0,4.0,5.0,4.0,3.0,4.0,2.0,,1.0,2.0,2.0 F85029,34.0,56.0,43.0,50.0,50.0,62.0,56.0,85.0,90.0,70.0,82.0,62.0,71.0,65.0,68.0,65.0,78.0,71.0,63.0,58.0,58.0,55.0,42.0,46.0,80.0,51.0,71.0,62.0,60.0,56.0,63.0,76.0,71.0,89.0,62.0,72.0,75.0,86.0,64.0,68.0,90.0,72.0,98.0,78.0,104.0,90.0,90.0,95.0,95.0,81.0,59.0,83.0,72.0,78.0,76.0,77.0,83.0,88.0,90.0,83.0,76.0,72.0,91.0,66.0,68.0,55.0,74.0,67.0,46.0,53.0,56.0,43.0,52.0,51.0,47.0,44.0,51.0,62.0,57.0,65.0,44.0,36.0,34.0,27.0,19.0,29.0,19.0,13.0,22.0,13.0,11.0,12.0,8.0,10.0,18.0,16.0 F85030,56.0,75.0,55.0,66.0,69.0,73.0,65.0,84.0,71.0,75.0,79.0,83.0,90.0,83.0,100.0,107.0,97.0,93.0,91.0,110.0,99.0,80.0,111.0,99.0,106.0,102.0,91.0,101.0,111.0,103.0,82.0,105.0,95.0,103.0,112.0,105.0,121.0,108.0,105.0,134.0,104.0,102.0,101.0,105.0,91.0,117.0,96.0,108.0,104.0,106.0,93.0,104.0,87.0,82.0,99.0,88.0,99.0,105.0,88.0,94.0,98.0,93.0,89.0,77.0,48.0,71.0,67.0,65.0,54.0,39.0,55.0,37.0,34.0,27.0,32.0,28.0,29.0,23.0,19.0,13.0,15.0,22.0,14.0,21.0,11.0,12.0,10.0,10.0,15.0,11.0,6.0,6.0,1.0,1.0,5.0,1.0 F85031,45.0,70.0,63.0,61.0,60.0,67.0,63.0,56.0,54.0,70.0,47.0,56.0,66.0,65.0,63.0,64.0,54.0,71.0,60.0,60.0,79.0,64.0,70.0,71.0,95.0,115.0,118.0,123.0,128.0,138.0,121.0,121.0,154.0,152.0,160.0,153.0,162.0,157.0,150.0,142.0,139.0,127.0,107.0,128.0,91.0,121.0,107.0,86.0,91.0,94.0,111.0,104.0,88.0,76.0,73.0,81.0,82.0,68.0,65.0,62.0,64.0,59.0,66.0,43.0,51.0,65.0,39.0,30.0,32.0,45.0,19.0,30.0,26.0,21.0,16.0,20.0,26.0,20.0,20.0,15.0,12.0,4.0,16.0,12.0,7.0,12.0,8.0,12.0,7.0,9.0,3.0,4.0,3.0,2.0,1.0, F85032,25.0,55.0,43.0,49.0,40.0,54.0,49.0,57.0,43.0,70.0,51.0,75.0,55.0,75.0,63.0,69.0,73.0,68.0,59.0,44.0,74.0,42.0,48.0,49.0,51.0,55.0,57.0,60.0,56.0,73.0,52.0,61.0,65.0,66.0,64.0,62.0,79.0,90.0,89.0,72.0,86.0,73.0,77.0,87.0,85.0,83.0,86.0,72.0,92.0,83.0,65.0,77.0,59.0,77.0,61.0,79.0,52.0,68.0,55.0,52.0,51.0,36.0,56.0,43.0,67.0,56.0,46.0,42.0,38.0,38.0,28.0,30.0,24.0,30.0,28.0,22.0,44.0,31.0,30.0,25.0,25.0,24.0,18.0,12.0,20.0,27.0,14.0,18.0,17.0,10.0,11.0,8.0,8.0,8.0,6.0,7.0 F85033,63.0,71.0,79.0,73.0,73.0,96.0,104.0,104.0,140.0,113.0,119.0,133.0,146.0,133.0,135.0,127.0,141.0,138.0,127.0,103.0,98.0,86.0,104.0,95.0,102.0,117.0,122.0,101.0,113.0,125.0,128.0,118.0,119.0,128.0,107.0,129.0,143.0,147.0,141.0,117.0,164.0,140.0,153.0,166.0,179.0,194.0,150.0,166.0,162.0,153.0,135.0,144.0,170.0,143.0,140.0,149.0,148.0,155.0,167.0,124.0,145.0,135.0,152.0,115.0,138.0,123.0,120.0,112.0,136.0,117.0,110.0,110.0,91.0,86.0,94.0,92.0,89.0,79.0,94.0,80.0,60.0,48.0,51.0,33.0,30.0,46.0,29.0,27.0,31.0,26.0,21.0,20.0,12.0,9.0,8.0,13.0 F85034,54.0,58.0,66.0,44.0,44.0,46.0,37.0,48.0,40.0,27.0,35.0,37.0,34.0,30.0,31.0,29.0,32.0,39.0,37.0,30.0,30.0,38.0,39.0,48.0,69.0,78.0,91.0,99.0,94.0,102.0,86.0,98.0,99.0,112.0,103.0,101.0,100.0,98.0,82.0,100.0,79.0,88.0,94.0,79.0,74.0,64.0,69.0,66.0,65.0,50.0,61.0,47.0,40.0,42.0,51.0,44.0,51.0,51.0,48.0,33.0,53.0,32.0,31.0,31.0,34.0,32.0,27.0,36.0,28.0,28.0,23.0,19.0,17.0,16.0,23.0,16.0,17.0,17.0,9.0,9.0,11.0,6.0,8.0,12.0,10.0,7.0,7.0,7.0,1.0,5.0,4.0,1.0,1.0,3.0,3.0,5.0 F85035,29.0,52.0,56.0,56.0,69.0,82.0,77.0,74.0,77.0,69.0,68.0,79.0,79.0,84.0,101.0,83.0,89.0,82.0,69.0,63.0,59.0,55.0,52.0,46.0,66.0,58.0,46.0,66.0,79.0,54.0,68.0,52.0,38.0,60.0,71.0,60.0,47.0,75.0,77.0,69.0,80.0,66.0,76.0,75.0,87.0,83.0,89.0,83.0,78.0,89.0,75.0,77.0,80.0,77.0,92.0,64.0,73.0,89.0,79.0,71.0,75.0,62.0,67.0,76.0,58.0,63.0,59.0,53.0,56.0,50.0,49.0,43.0,35.0,46.0,40.0,44.0,28.0,35.0,36.0,39.0,28.0,25.0,27.0,25.0,23.0,26.0,36.0,17.0,17.0,8.0,13.0,13.0,14.0,6.0,3.0,18.0 F85039,36.0,44.0,50.0,44.0,40.0,45.0,52.0,47.0,58.0,57.0,57.0,49.0,49.0,52.0,57.0,65.0,61.0,54.0,61.0,44.0,50.0,52.0,52.0,42.0,47.0,42.0,42.0,53.0,55.0,66.0,60.0,60.0,75.0,61.0,47.0,53.0,50.0,49.0,56.0,49.0,48.0,58.0,52.0,51.0,61.0,54.0,52.0,47.0,46.0,41.0,43.0,40.0,53.0,43.0,40.0,30.0,33.0,42.0,37.0,41.0,36.0,26.0,52.0,28.0,30.0,29.0,34.0,15.0,13.0,21.0,17.0,12.0,18.0,13.0,9.0,16.0,3.0,9.0,9.0,8.0,11.0,11.0,8.0,4.0,8.0,3.0,5.0,2.0,4.0,7.0,1.0,1.0,4.0,,1.0, F85044,34.0,47.0,42.0,54.0,47.0,52.0,59.0,36.0,40.0,45.0,54.0,45.0,54.0,47.0,47.0,54.0,49.0,54.0,43.0,36.0,45.0,48.0,35.0,47.0,64.0,53.0,51.0,53.0,68.0,55.0,74.0,60.0,61.0,61.0,64.0,64.0,52.0,69.0,46.0,60.0,67.0,47.0,59.0,58.0,45.0,64.0,56.0,47.0,40.0,42.0,44.0,39.0,44.0,54.0,49.0,55.0,46.0,42.0,31.0,37.0,46.0,32.0,34.0,29.0,36.0,33.0,30.0,19.0,25.0,20.0,19.0,17.0,16.0,18.0,13.0,13.0,15.0,5.0,17.0,9.0,6.0,7.0,6.0,5.0,2.0,9.0,6.0,5.0,2.0,,2.0,3.0,1.0,1.0,2.0,1.0 F85046,64.0,47.0,63.0,66.0,37.0,38.0,35.0,23.0,28.0,31.0,36.0,27.0,27.0,39.0,29.0,35.0,35.0,33.0,32.0,35.0,43.0,52.0,55.0,76.0,94.0,116.0,169.0,158.0,206.0,182.0,195.0,191.0,195.0,223.0,192.0,201.0,175.0,171.0,138.0,130.0,153.0,133.0,100.0,116.0,89.0,93.0,89.0,79.0,67.0,58.0,64.0,69.0,54.0,55.0,48.0,53.0,45.0,52.0,37.0,42.0,49.0,39.0,41.0,38.0,28.0,23.0,24.0,27.0,23.0,9.0,20.0,18.0,16.0,6.0,10.0,6.0,15.0,12.0,11.0,5.0,5.0,2.0,6.0,3.0,3.0,7.0,2.0,1.0,4.0,1.0,3.0,,,,1.0, F85058,20.0,34.0,36.0,36.0,35.0,37.0,32.0,39.0,36.0,46.0,40.0,40.0,41.0,45.0,45.0,48.0,51.0,51.0,39.0,53.0,40.0,43.0,40.0,45.0,52.0,47.0,40.0,52.0,48.0,46.0,32.0,51.0,36.0,42.0,36.0,51.0,36.0,45.0,41.0,47.0,31.0,43.0,46.0,37.0,67.0,51.0,49.0,42.0,38.0,40.0,36.0,49.0,36.0,23.0,38.0,41.0,39.0,40.0,35.0,42.0,50.0,34.0,41.0,25.0,30.0,31.0,35.0,29.0,37.0,32.0,25.0,16.0,22.0,19.0,16.0,21.0,9.0,17.0,14.0,9.0,13.0,8.0,12.0,10.0,6.0,12.0,5.0,7.0,9.0,3.0,3.0,2.0,,1.0,,1.0 F85060,14.0,21.0,16.0,18.0,15.0,28.0,26.0,17.0,19.0,23.0,28.0,28.0,33.0,20.0,27.0,29.0,28.0,25.0,31.0,22.0,31.0,30.0,25.0,35.0,43.0,36.0,41.0,56.0,34.0,59.0,57.0,72.0,60.0,65.0,62.0,69.0,79.0,58.0,81.0,58.0,72.0,55.0,67.0,55.0,61.0,48.0,55.0,53.0,43.0,43.0,45.0,47.0,35.0,37.0,44.0,47.0,46.0,34.0,35.0,23.0,22.0,32.0,40.0,25.0,22.0,19.0,17.0,18.0,20.0,24.0,8.0,12.0,12.0,12.0,10.0,14.0,6.0,5.0,9.0,6.0,5.0,4.0,2.0,3.0,6.0,9.0,9.0,3.0,7.0,3.0,5.0,3.0,1.0,3.0,2.0,2.0 F85061,7.0,5.0,12.0,6.0,11.0,11.0,9.0,17.0,11.0,12.0,12.0,15.0,18.0,19.0,9.0,12.0,14.0,12.0,9.0,12.0,14.0,11.0,19.0,17.0,10.0,11.0,16.0,11.0,17.0,17.0,15.0,20.0,16.0,17.0,14.0,26.0,25.0,27.0,26.0,15.0,25.0,24.0,36.0,39.0,27.0,32.0,32.0,28.0,33.0,31.0,24.0,27.0,24.0,23.0,23.0,16.0,24.0,26.0,23.0,29.0,27.0,14.0,24.0,23.0,17.0,13.0,18.0,18.0,12.0,14.0,12.0,12.0,9.0,12.0,17.0,19.0,12.0,10.0,9.0,8.0,1.0,8.0,1.0,5.0,6.0,3.0,2.0,2.0,1.0,,3.0,1.0,1.0,1.0,1.0, F85063,71.0,87.0,82.0,74.0,78.0,102.0,117.0,106.0,102.0,123.0,106.0,104.0,114.0,116.0,127.0,104.0,103.0,127.0,106.0,75.0,75.0,67.0,87.0,83.0,75.0,102.0,93.0,89.0,116.0,114.0,112.0,127.0,122.0,135.0,136.0,109.0,143.0,115.0,141.0,124.0,125.0,139.0,127.0,164.0,165.0,150.0,153.0,113.0,128.0,146.0,121.0,109.0,144.0,122.0,108.0,106.0,87.0,106.0,107.0,98.0,97.0,88.0,82.0,82.0,85.0,69.0,78.0,72.0,56.0,60.0,52.0,58.0,68.0,52.0,71.0,50.0,61.0,48.0,52.0,36.0,43.0,37.0,32.0,20.0,25.0,18.0,11.0,10.0,13.0,10.0,8.0,5.0,3.0,4.0,3.0,4.0 F85064,51.0,36.0,44.0,33.0,34.0,39.0,25.0,28.0,32.0,31.0,23.0,33.0,22.0,40.0,36.0,26.0,33.0,23.0,24.0,33.0,29.0,29.0,27.0,38.0,53.0,57.0,65.0,78.0,91.0,71.0,100.0,92.0,103.0,120.0,113.0,114.0,122.0,106.0,98.0,80.0,87.0,103.0,73.0,82.0,59.0,65.0,58.0,61.0,49.0,59.0,47.0,49.0,52.0,39.0,42.0,50.0,36.0,35.0,37.0,37.0,30.0,32.0,39.0,34.0,40.0,39.0,29.0,23.0,28.0,22.0,24.0,20.0,14.0,16.0,17.0,15.0,15.0,10.0,12.0,11.0,12.0,7.0,12.0,3.0,3.0,5.0,6.0,7.0,5.0,2.0,1.0,3.0,1.0,1.0,1.0,3.0 F85065,8.0,12.0,13.0,11.0,16.0,22.0,19.0,20.0,10.0,22.0,13.0,25.0,17.0,15.0,19.0,20.0,14.0,21.0,21.0,17.0,10.0,13.0,13.0,17.0,26.0,19.0,26.0,21.0,24.0,29.0,24.0,22.0,32.0,38.0,46.0,37.0,44.0,42.0,36.0,22.0,37.0,29.0,36.0,29.0,28.0,24.0,21.0,24.0,25.0,16.0,19.0,16.0,28.0,22.0,16.0,18.0,23.0,19.0,14.0,16.0,24.0,18.0,25.0,16.0,17.0,18.0,14.0,14.0,9.0,11.0,9.0,13.0,7.0,5.0,9.0,8.0,10.0,4.0,6.0,5.0,11.0,4.0,1.0,5.0,6.0,5.0,4.0,6.0,2.0,,3.0,1.0,1.0,1.0,1.0,1.0 F85066,58.0,72.0,87.0,85.0,90.0,117.0,91.0,104.0,104.0,89.0,113.0,123.0,117.0,111.0,125.0,112.0,108.0,115.0,109.0,103.0,78.0,89.0,88.0,97.0,110.0,110.0,119.0,154.0,127.0,126.0,142.0,152.0,166.0,145.0,160.0,174.0,166.0,190.0,172.0,180.0,182.0,177.0,195.0,211.0,195.0,163.0,178.0,182.0,166.0,154.0,141.0,177.0,147.0,162.0,127.0,129.0,111.0,130.0,120.0,97.0,113.0,122.0,117.0,110.0,88.0,91.0,100.0,71.0,57.0,67.0,66.0,58.0,50.0,64.0,36.0,43.0,49.0,45.0,40.0,38.0,24.0,25.0,21.0,14.0,26.0,19.0,20.0,11.0,18.0,12.0,8.0,9.0,5.0,2.0,1.0,3.0 F85067,15.0,5.0,10.0,12.0,9.0,25.0,17.0,19.0,13.0,11.0,12.0,15.0,14.0,13.0,10.0,20.0,22.0,19.0,12.0,13.0,17.0,25.0,22.0,21.0,19.0,40.0,45.0,65.0,50.0,53.0,60.0,47.0,58.0,58.0,58.0,51.0,50.0,51.0,50.0,48.0,43.0,48.0,54.0,39.0,48.0,47.0,48.0,38.0,43.0,31.0,35.0,40.0,30.0,44.0,25.0,39.0,37.0,39.0,37.0,36.0,36.0,31.0,30.0,36.0,24.0,23.0,25.0,23.0,15.0,13.0,10.0,15.0,11.0,17.0,13.0,14.0,13.0,12.0,6.0,6.0,7.0,7.0,9.0,8.0,8.0,4.0,7.0,3.0,5.0,4.0,3.0,1.0,4.0,,1.0,3.0 F85069,31.0,39.0,25.0,33.0,35.0,38.0,48.0,41.0,34.0,38.0,39.0,44.0,48.0,39.0,42.0,38.0,34.0,45.0,30.0,21.0,33.0,33.0,29.0,44.0,45.0,47.0,48.0,67.0,53.0,68.0,68.0,54.0,69.0,67.0,98.0,79.0,75.0,78.0,61.0,53.0,71.0,64.0,70.0,68.0,78.0,63.0,74.0,64.0,53.0,71.0,70.0,56.0,62.0,56.0,75.0,50.0,52.0,52.0,55.0,61.0,47.0,48.0,52.0,42.0,55.0,41.0,41.0,40.0,36.0,38.0,28.0,26.0,31.0,29.0,26.0,27.0,18.0,35.0,29.0,16.0,15.0,14.0,11.0,12.0,6.0,6.0,11.0,4.0,6.0,4.0,4.0,5.0,4.0,3.0,1.0,2.0 F85071,69.0,83.0,82.0,85.0,88.0,85.0,76.0,71.0,76.0,87.0,72.0,69.0,88.0,85.0,84.0,84.0,83.0,81.0,80.0,78.0,98.0,92.0,98.0,93.0,114.0,134.0,135.0,123.0,134.0,118.0,121.0,133.0,139.0,125.0,125.0,128.0,140.0,111.0,127.0,117.0,121.0,105.0,113.0,117.0,111.0,113.0,105.0,92.0,93.0,91.0,91.0,82.0,75.0,78.0,83.0,76.0,78.0,81.0,65.0,74.0,59.0,72.0,50.0,64.0,45.0,44.0,42.0,41.0,19.0,31.0,17.0,18.0,28.0,18.0,15.0,18.0,17.0,15.0,8.0,11.0,7.0,7.0,12.0,3.0,4.0,5.0,5.0,10.0,6.0,5.0,5.0,3.0,,2.0,1.0,2.0 F85072,40.0,40.0,44.0,53.0,37.0,48.0,56.0,52.0,51.0,64.0,64.0,42.0,63.0,59.0,75.0,56.0,74.0,65.0,63.0,52.0,62.0,55.0,47.0,52.0,51.0,46.0,58.0,65.0,62.0,73.0,75.0,56.0,73.0,69.0,66.0,74.0,88.0,75.0,79.0,87.0,70.0,91.0,86.0,100.0,84.0,75.0,84.0,60.0,80.0,67.0,84.0,77.0,90.0,62.0,77.0,69.0,60.0,67.0,58.0,59.0,62.0,56.0,63.0,63.0,41.0,53.0,42.0,53.0,51.0,40.0,37.0,32.0,37.0,33.0,31.0,35.0,34.0,20.0,24.0,23.0,26.0,30.0,26.0,19.0,18.0,11.0,15.0,12.0,14.0,7.0,5.0,8.0,5.0,2.0,5.0,7.0 F85615,31.0,14.0,23.0,29.0,29.0,40.0,25.0,29.0,33.0,33.0,35.0,38.0,37.0,34.0,29.0,47.0,41.0,40.0,34.0,39.0,41.0,44.0,40.0,41.0,45.0,40.0,54.0,57.0,40.0,53.0,59.0,58.0,54.0,60.0,49.0,67.0,65.0,52.0,57.0,64.0,63.0,47.0,55.0,48.0,51.0,57.0,41.0,61.0,46.0,49.0,39.0,39.0,37.0,44.0,48.0,44.0,53.0,46.0,50.0,42.0,43.0,41.0,37.0,31.0,34.0,31.0,21.0,16.0,12.0,16.0,16.0,13.0,11.0,10.0,9.0,4.0,5.0,8.0,4.0,10.0,2.0,6.0,6.0,4.0,3.0,5.0,1.0,1.0,1.0,2.0,2.0,2.0,1.0,,1.0,3.0 F85623,20.0,20.0,23.0,18.0,16.0,28.0,16.0,25.0,20.0,23.0,20.0,32.0,26.0,29.0,21.0,27.0,17.0,32.0,23.0,19.0,38.0,28.0,33.0,29.0,27.0,36.0,33.0,49.0,52.0,50.0,45.0,48.0,59.0,63.0,55.0,47.0,57.0,56.0,55.0,41.0,48.0,38.0,41.0,39.0,38.0,35.0,28.0,42.0,28.0,22.0,36.0,48.0,37.0,30.0,37.0,23.0,33.0,38.0,29.0,36.0,33.0,25.0,29.0,31.0,24.0,27.0,20.0,16.0,13.0,16.0,14.0,7.0,9.0,6.0,9.0,11.0,7.0,9.0,5.0,5.0,2.0,6.0,4.0,,4.0,3.0,3.0,3.0,5.0,2.0,3.0,2.0,3.0,,, F85625,27.0,34.0,28.0,39.0,36.0,37.0,37.0,32.0,34.0,39.0,52.0,37.0,47.0,42.0,53.0,56.0,45.0,47.0,29.0,31.0,32.0,28.0,45.0,27.0,40.0,36.0,48.0,41.0,38.0,44.0,39.0,51.0,32.0,41.0,46.0,55.0,53.0,25.0,49.0,53.0,60.0,39.0,40.0,45.0,44.0,54.0,47.0,51.0,35.0,50.0,51.0,47.0,50.0,58.0,43.0,45.0,43.0,48.0,62.0,69.0,51.0,36.0,41.0,47.0,50.0,36.0,43.0,40.0,26.0,31.0,30.0,25.0,21.0,21.0,18.0,21.0,27.0,23.0,21.0,10.0,19.0,25.0,14.0,15.0,9.0,23.0,16.0,11.0,15.0,6.0,4.0,6.0,3.0,4.0,4.0,7.0 F85628,53.0,35.0,39.0,43.0,36.0,29.0,35.0,42.0,48.0,39.0,38.0,35.0,36.0,44.0,34.0,37.0,46.0,37.0,39.0,52.0,47.0,48.0,71.0,71.0,91.0,76.0,84.0,89.0,82.0,90.0,107.0,110.0,102.0,94.0,90.0,95.0,105.0,81.0,87.0,73.0,67.0,68.0,66.0,57.0,58.0,59.0,59.0,39.0,48.0,54.0,52.0,45.0,42.0,39.0,42.0,35.0,30.0,42.0,31.0,34.0,29.0,28.0,27.0,26.0,33.0,28.0,17.0,19.0,16.0,16.0,11.0,17.0,6.0,16.0,9.0,9.0,11.0,4.0,14.0,5.0,4.0,8.0,6.0,4.0,4.0,4.0,4.0,6.0,2.0,6.0,2.0,4.0,3.0,,, F85634,49.0,54.0,70.0,58.0,61.0,64.0,67.0,64.0,74.0,72.0,80.0,77.0,74.0,72.0,73.0,73.0,74.0,77.0,97.0,81.0,78.0,68.0,77.0,67.0,78.0,76.0,53.0,69.0,82.0,97.0,76.0,64.0,67.0,73.0,66.0,83.0,68.0,78.0,74.0,60.0,89.0,83.0,53.0,74.0,68.0,75.0,91.0,58.0,71.0,56.0,74.0,66.0,57.0,62.0,64.0,55.0,43.0,47.0,52.0,42.0,37.0,56.0,42.0,60.0,33.0,40.0,47.0,32.0,20.0,23.0,19.0,29.0,22.0,19.0,13.0,14.0,15.0,19.0,11.0,10.0,6.0,5.0,8.0,7.0,6.0,8.0,6.0,7.0,4.0,5.0,4.0,5.0,1.0,3.0,2.0,1.0 F85640,27.0,34.0,33.0,38.0,26.0,28.0,39.0,43.0,38.0,42.0,41.0,47.0,36.0,40.0,42.0,37.0,38.0,35.0,35.0,24.0,33.0,27.0,27.0,24.0,35.0,35.0,47.0,41.0,45.0,53.0,48.0,46.0,59.0,51.0,67.0,62.0,66.0,73.0,71.0,66.0,80.0,66.0,80.0,80.0,79.0,90.0,84.0,70.0,66.0,56.0,64.0,66.0,45.0,51.0,48.0,50.0,41.0,51.0,38.0,42.0,38.0,39.0,36.0,30.0,34.0,42.0,25.0,21.0,17.0,21.0,11.0,17.0,22.0,15.0,17.0,13.0,13.0,11.0,13.0,12.0,12.0,8.0,6.0,10.0,7.0,8.0,3.0,6.0,2.0,4.0,3.0,2.0,1.0,2.0,1.0,1.0 F85642,21.0,35.0,49.0,24.0,48.0,47.0,45.0,66.0,53.0,56.0,69.0,53.0,46.0,60.0,62.0,62.0,62.0,61.0,49.0,41.0,44.0,47.0,38.0,41.0,42.0,44.0,45.0,55.0,44.0,56.0,56.0,53.0,53.0,59.0,51.0,54.0,56.0,84.0,70.0,90.0,76.0,83.0,61.0,69.0,70.0,83.0,69.0,72.0,76.0,80.0,81.0,72.0,64.0,65.0,69.0,64.0,59.0,51.0,67.0,63.0,51.0,56.0,55.0,44.0,47.0,40.0,44.0,33.0,35.0,32.0,36.0,29.0,34.0,18.0,17.0,31.0,31.0,29.0,25.0,27.0,20.0,29.0,18.0,20.0,10.0,8.0,11.0,12.0,11.0,5.0,6.0,6.0,7.0,2.0,4.0,7.0 F85650,34.0,22.0,32.0,41.0,31.0,33.0,31.0,22.0,38.0,40.0,35.0,48.0,30.0,30.0,38.0,49.0,50.0,40.0,49.0,39.0,44.0,30.0,44.0,43.0,42.0,36.0,48.0,51.0,43.0,47.0,53.0,56.0,54.0,61.0,45.0,62.0,48.0,50.0,62.0,40.0,45.0,38.0,42.0,52.0,39.0,51.0,43.0,45.0,41.0,32.0,40.0,41.0,36.0,40.0,30.0,37.0,47.0,38.0,28.0,38.0,34.0,33.0,25.0,28.0,28.0,33.0,22.0,22.0,18.0,18.0,21.0,9.0,15.0,19.0,22.0,12.0,22.0,17.0,23.0,14.0,9.0,5.0,8.0,5.0,9.0,10.0,9.0,7.0,4.0,4.0,8.0,2.0,5.0,4.0,1.0, F85663,13.0,18.0,30.0,27.0,21.0,30.0,28.0,28.0,27.0,31.0,21.0,30.0,31.0,34.0,35.0,31.0,39.0,33.0,41.0,25.0,32.0,35.0,32.0,30.0,40.0,39.0,40.0,34.0,30.0,35.0,30.0,37.0,32.0,40.0,24.0,47.0,44.0,29.0,29.0,21.0,27.0,35.0,34.0,41.0,30.0,27.0,26.0,40.0,25.0,32.0,26.0,32.0,31.0,29.0,35.0,26.0,19.0,30.0,21.0,33.0,32.0,33.0,25.0,16.0,25.0,25.0,27.0,24.0,27.0,23.0,17.0,15.0,10.0,16.0,11.0,9.0,14.0,7.0,8.0,5.0,4.0,10.0,11.0,12.0,5.0,9.0,2.0,8.0,4.0,1.0,1.0,2.0,4.0,1.0,,1.0 F85666,11.0,16.0,13.0,18.0,25.0,23.0,19.0,23.0,21.0,12.0,20.0,26.0,17.0,31.0,29.0,27.0,27.0,32.0,24.0,32.0,28.0,30.0,22.0,34.0,37.0,27.0,27.0,34.0,34.0,29.0,34.0,24.0,32.0,32.0,39.0,21.0,38.0,30.0,28.0,26.0,26.0,23.0,24.0,24.0,28.0,24.0,25.0,26.0,22.0,27.0,31.0,38.0,25.0,31.0,24.0,36.0,18.0,27.0,38.0,35.0,30.0,27.0,21.0,26.0,17.0,29.0,20.0,15.0,14.0,12.0,11.0,13.0,9.0,6.0,9.0,8.0,9.0,8.0,10.0,9.0,3.0,4.0,2.0,2.0,6.0,,3.0,6.0,5.0,4.0,2.0,3.0,3.0,1.0,, F85669,142.0,144.0,132.0,133.0,134.0,121.0,104.0,95.0,104.0,99.0,90.0,91.0,77.0,82.0,101.0,95.0,100.0,85.0,89.0,90.0,94.0,105.0,113.0,133.0,130.0,200.0,213.0,271.0,310.0,284.0,307.0,366.0,360.0,367.0,372.0,393.0,381.0,358.0,379.0,329.0,349.0,280.0,250.0,263.0,262.0,248.0,240.0,191.0,163.0,160.0,161.0,148.0,171.0,153.0,105.0,130.0,114.0,104.0,93.0,90.0,92.0,89.0,75.0,54.0,65.0,71.0,56.0,56.0,34.0,41.0,40.0,32.0,20.0,26.0,17.0,28.0,13.0,11.0,18.0,8.0,7.0,6.0,7.0,3.0,5.0,6.0,4.0,3.0,10.0,5.0,2.0,3.0,1.0,1.0,1.0, F85675,10.0,18.0,12.0,19.0,24.0,16.0,28.0,25.0,22.0,35.0,37.0,30.0,33.0,46.0,37.0,40.0,37.0,28.0,27.0,30.0,36.0,32.0,33.0,29.0,27.0,28.0,42.0,34.0,39.0,36.0,39.0,30.0,36.0,34.0,41.0,33.0,41.0,48.0,30.0,27.0,37.0,51.0,50.0,44.0,52.0,54.0,60.0,50.0,42.0,43.0,40.0,48.0,51.0,47.0,50.0,43.0,35.0,60.0,51.0,39.0,50.0,48.0,29.0,32.0,30.0,33.0,38.0,18.0,27.0,31.0,19.0,17.0,23.0,23.0,19.0,15.0,15.0,24.0,18.0,12.0,15.0,17.0,7.0,12.0,10.0,10.0,7.0,3.0,5.0,3.0,3.0,4.0,2.0,2.0,1.0,5.0 F85676,21.0,24.0,23.0,35.0,35.0,38.0,31.0,34.0,29.0,42.0,32.0,34.0,49.0,48.0,56.0,44.0,48.0,62.0,53.0,41.0,33.0,36.0,34.0,45.0,34.0,44.0,44.0,52.0,31.0,40.0,38.0,34.0,47.0,42.0,33.0,46.0,38.0,26.0,38.0,44.0,43.0,31.0,41.0,46.0,44.0,34.0,34.0,44.0,39.0,36.0,29.0,40.0,40.0,40.0,39.0,31.0,40.0,31.0,37.0,32.0,30.0,32.0,35.0,27.0,25.0,29.0,31.0,26.0,17.0,23.0,12.0,15.0,11.0,15.0,8.0,12.0,10.0,13.0,17.0,10.0,9.0,12.0,4.0,6.0,3.0,6.0,5.0,8.0,6.0,1.0,4.0,2.0,1.0,1.0,, F85678,18.0,26.0,32.0,25.0,20.0,15.0,32.0,28.0,23.0,38.0,25.0,23.0,28.0,33.0,25.0,36.0,25.0,32.0,28.0,21.0,21.0,23.0,28.0,20.0,28.0,24.0,19.0,32.0,21.0,36.0,38.0,38.0,42.0,29.0,49.0,36.0,47.0,47.0,53.0,49.0,32.0,42.0,37.0,35.0,48.0,33.0,39.0,41.0,39.0,34.0,24.0,31.0,33.0,41.0,35.0,34.0,33.0,31.0,24.0,28.0,25.0,17.0,20.0,17.0,27.0,19.0,13.0,11.0,10.0,18.0,6.0,8.0,13.0,13.0,13.0,14.0,8.0,4.0,11.0,6.0,5.0,3.0,6.0,1.0,6.0,2.0,7.0,3.0,3.0,,,2.0,,,1.0, F85682,20.0,23.0,31.0,29.0,26.0,32.0,38.0,20.0,37.0,44.0,47.0,37.0,42.0,48.0,39.0,57.0,52.0,61.0,40.0,55.0,40.0,46.0,54.0,53.0,47.0,52.0,48.0,43.0,55.0,58.0,44.0,41.0,48.0,37.0,29.0,51.0,38.0,58.0,37.0,53.0,59.0,45.0,42.0,36.0,41.0,42.0,36.0,39.0,51.0,51.0,36.0,38.0,47.0,48.0,49.0,34.0,45.0,45.0,39.0,45.0,47.0,49.0,41.0,37.0,31.0,31.0,26.0,25.0,16.0,12.0,26.0,23.0,15.0,21.0,13.0,11.0,6.0,10.0,14.0,7.0,6.0,7.0,7.0,6.0,3.0,4.0,6.0,4.0,4.0,2.0,5.0,3.0,,2.0,,1.0 F85687,34.0,30.0,46.0,39.0,30.0,45.0,45.0,42.0,50.0,58.0,55.0,53.0,59.0,53.0,32.0,49.0,64.0,65.0,49.0,76.0,44.0,53.0,48.0,60.0,54.0,59.0,56.0,69.0,57.0,54.0,59.0,50.0,59.0,57.0,80.0,72.0,70.0,72.0,68.0,80.0,58.0,70.0,86.0,71.0,77.0,59.0,62.0,67.0,54.0,77.0,67.0,76.0,79.0,51.0,53.0,65.0,63.0,51.0,58.0,67.0,53.0,55.0,47.0,28.0,52.0,38.0,27.0,32.0,30.0,38.0,21.0,24.0,18.0,23.0,22.0,30.0,16.0,11.0,17.0,19.0,21.0,16.0,15.0,16.0,20.0,17.0,15.0,12.0,11.0,8.0,6.0,11.0,3.0,1.0,2.0,3.0 F85688,35.0,43.0,32.0,48.0,59.0,57.0,47.0,55.0,70.0,78.0,69.0,78.0,76.0,82.0,77.0,81.0,98.0,73.0,70.0,50.0,61.0,62.0,61.0,62.0,57.0,56.0,56.0,59.0,46.0,61.0,54.0,64.0,54.0,62.0,54.0,69.0,70.0,87.0,64.0,82.0,88.0,82.0,90.0,107.0,96.0,118.0,78.0,99.0,94.0,86.0,97.0,93.0,94.0,84.0,82.0,103.0,80.0,80.0,78.0,79.0,56.0,60.0,72.0,61.0,63.0,42.0,37.0,45.0,38.0,40.0,34.0,24.0,38.0,27.0,25.0,26.0,22.0,38.0,22.0,27.0,18.0,27.0,10.0,15.0,15.0,10.0,12.0,14.0,10.0,11.0,4.0,3.0,3.0,5.0,4.0,7.0 F85697,4.0,9.0,7.0,6.0,1.0,5.0,3.0,7.0,7.0,12.0,4.0,12.0,9.0,9.0,6.0,8.0,9.0,12.0,5.0,10.0,9.0,6.0,9.0,8.0,12.0,9.0,8.0,11.0,9.0,15.0,18.0,17.0,15.0,16.0,22.0,16.0,29.0,19.0,18.0,31.0,28.0,30.0,26.0,38.0,19.0,22.0,15.0,21.0,27.0,23.0,14.0,28.0,13.0,16.0,11.0,14.0,22.0,13.0,8.0,6.0,12.0,8.0,12.0,15.0,8.0,8.0,9.0,12.0,4.0,7.0,5.0,5.0,7.0,8.0,2.0,3.0,4.0,4.0,5.0,4.0,1.0,2.0,3.0,1.0,2.0,,6.0,1.0,2.0,2.0,1.0,2.0,,1.0,,4.0 F85700,46.0,52.0,52.0,55.0,45.0,47.0,41.0,55.0,52.0,59.0,42.0,55.0,50.0,46.0,39.0,61.0,39.0,59.0,56.0,39.0,45.0,51.0,51.0,55.0,56.0,68.0,72.0,54.0,92.0,82.0,79.0,89.0,87.0,86.0,107.0,101.0,112.0,96.0,104.0,80.0,94.0,72.0,92.0,79.0,83.0,79.0,68.0,69.0,63.0,54.0,69.0,57.0,48.0,44.0,58.0,51.0,48.0,57.0,43.0,39.0,39.0,39.0,36.0,27.0,26.0,23.0,29.0,28.0,21.0,17.0,17.0,22.0,16.0,15.0,12.0,11.0,16.0,7.0,13.0,11.0,8.0,7.0,9.0,4.0,7.0,3.0,8.0,6.0,4.0,4.0,2.0,3.0,3.0,3.0,,7.0 F85701,66.0,96.0,88.0,86.0,72.0,80.0,79.0,90.0,83.0,84.0,90.0,79.0,89.0,66.0,76.0,69.0,73.0,66.0,77.0,53.0,71.0,66.0,65.0,76.0,85.0,77.0,93.0,93.0,71.0,107.0,111.0,113.0,101.0,130.0,138.0,127.0,122.0,125.0,125.0,130.0,161.0,121.0,122.0,150.0,137.0,132.0,113.0,105.0,102.0,91.0,84.0,86.0,83.0,98.0,63.0,85.0,71.0,74.0,72.0,61.0,53.0,62.0,64.0,45.0,55.0,56.0,35.0,49.0,45.0,36.0,28.0,25.0,25.0,33.0,23.0,26.0,26.0,27.0,27.0,27.0,24.0,20.0,13.0,9.0,12.0,17.0,7.0,8.0,8.0,9.0,6.0,5.0,8.0,5.0,3.0,2.0 F85705,45.0,63.0,61.0,64.0,78.0,78.0,83.0,67.0,79.0,77.0,82.0,73.0,65.0,62.0,78.0,61.0,73.0,62.0,74.0,69.0,59.0,66.0,59.0,59.0,76.0,90.0,95.0,99.0,119.0,108.0,135.0,130.0,137.0,159.0,165.0,124.0,186.0,142.0,158.0,181.0,149.0,141.0,144.0,139.0,135.0,147.0,129.0,100.0,86.0,117.0,104.0,105.0,105.0,70.0,87.0,100.0,103.0,76.0,86.0,85.0,80.0,73.0,68.0,60.0,56.0,56.0,46.0,42.0,39.0,43.0,25.0,23.0,25.0,24.0,16.0,23.0,21.0,21.0,21.0,5.0,16.0,17.0,9.0,13.0,14.0,13.0,8.0,3.0,7.0,4.0,7.0,3.0,3.0,3.0,1.0, Y00057,83.0,84.0,98.0,93.0,78.0,116.0,109.0,85.0,120.0,101.0,95.0,114.0,118.0,117.0,140.0,107.0,123.0,127.0,94.0,128.0,121.0,124.0,110.0,103.0,122.0,115.0,102.0,114.0,119.0,138.0,109.0,151.0,137.0,142.0,141.0,138.0,144.0,135.0,145.0,137.0,128.0,122.0,146.0,126.0,140.0,139.0,108.0,108.0,119.0,111.0,124.0,95.0,111.0,84.0,130.0,107.0,112.0,87.0,101.0,89.0,79.0,71.0,77.0,67.0,66.0,71.0,56.0,43.0,38.0,39.0,32.0,32.0,29.0,20.0,32.0,27.0,21.0,13.0,13.0,11.0,10.0,12.0,15.0,9.0,8.0,9.0,8.0,6.0,4.0,5.0,7.0,4.0,1.0,3.0,,4.0 Y00316,29.0,29.0,24.0,25.0,37.0,30.0,25.0,24.0,38.0,30.0,27.0,40.0,38.0,44.0,42.0,40.0,42.0,34.0,43.0,41.0,21.0,25.0,23.0,38.0,24.0,33.0,33.0,33.0,28.0,42.0,32.0,37.0,50.0,40.0,56.0,43.0,32.0,46.0,40.0,36.0,35.0,44.0,50.0,38.0,49.0,33.0,39.0,43.0,32.0,51.0,41.0,35.0,34.0,34.0,31.0,38.0,39.0,46.0,36.0,26.0,34.0,37.0,32.0,29.0,26.0,22.0,15.0,11.0,20.0,15.0,19.0,12.0,12.0,16.0,8.0,14.0,20.0,17.0,23.0,14.0,17.0,8.0,6.0,4.0,,5.0,3.0,5.0,4.0,4.0,2.0,1.0,1.0,,2.0, Y00612,12.0,11.0,19.0,17.0,28.0,36.0,36.0,25.0,33.0,31.0,35.0,39.0,38.0,32.0,33.0,33.0,29.0,39.0,43.0,42.0,38.0,39.0,33.0,34.0,27.0,36.0,41.0,43.0,36.0,34.0,30.0,45.0,34.0,27.0,40.0,38.0,42.0,57.0,46.0,45.0,42.0,50.0,43.0,41.0,26.0,40.0,40.0,36.0,28.0,40.0,36.0,38.0,38.0,28.0,34.0,34.0,35.0,31.0,37.0,25.0,29.0,22.0,23.0,22.0,17.0,21.0,22.0,21.0,22.0,18.0,14.0,15.0,12.0,11.0,9.0,10.0,7.0,6.0,8.0,1.0,5.0,6.0,4.0,3.0,4.0,3.0,2.0,3.0,4.0,2.0,2.0,1.0,,,,1.0 Y01066,33.0,29.0,50.0,49.0,49.0,54.0,46.0,45.0,54.0,41.0,61.0,36.0,53.0,49.0,42.0,45.0,41.0,48.0,44.0,39.0,41.0,26.0,34.0,48.0,49.0,75.0,82.0,72.0,110.0,127.0,140.0,169.0,156.0,127.0,122.0,138.0,103.0,119.0,116.0,103.0,108.0,78.0,94.0,71.0,74.0,64.0,66.0,61.0,59.0,49.0,51.0,47.0,54.0,38.0,48.0,40.0,39.0,41.0,52.0,32.0,27.0,33.0,38.0,24.0,26.0,31.0,23.0,20.0,20.0,14.0,11.0,17.0,17.0,5.0,13.0,8.0,11.0,13.0,4.0,10.0,1.0,7.0,5.0,5.0,3.0,4.0,3.0,2.0,5.0,1.0,2.0,2.0,1.0,2.0,,2.0 Y01655,48.0,55.0,71.0,60.0,60.0,48.0,37.0,55.0,59.0,60.0,47.0,48.0,48.0,45.0,71.0,57.0,51.0,55.0,47.0,33.0,31.0,27.0,36.0,47.0,42.0,40.0,49.0,81.0,64.0,70.0,85.0,95.0,100.0,117.0,111.0,124.0,120.0,136.0,110.0,160.0,149.0,132.0,125.0,125.0,107.0,97.0,95.0,105.0,78.0,84.0,95.0,77.0,66.0,77.0,68.0,63.0,55.0,63.0,45.0,59.0,44.0,35.0,42.0,37.0,32.0,22.0,23.0,32.0,34.0,27.0,24.0,14.0,14.0,17.0,13.0,15.0,18.0,17.0,15.0,9.0,15.0,6.0,2.0,4.0,1.0,3.0,2.0,2.0,2.0,,,2.0,1.0,,, Y02117,49.0,61.0,68.0,79.0,62.0,64.0,74.0,63.0,53.0,66.0,66.0,64.0,69.0,83.0,78.0,92.0,84.0,73.0,93.0,85.0,84.0,100.0,103.0,99.0,116.0,164.0,185.0,186.0,168.0,178.0,199.0,210.0,200.0,206.0,217.0,195.0,170.0,184.0,149.0,159.0,131.0,135.0,136.0,152.0,126.0,142.0,128.0,96.0,137.0,125.0,116.0,83.0,98.0,111.0,105.0,115.0,88.0,93.0,95.0,99.0,93.0,100.0,100.0,61.0,66.0,66.0,60.0,55.0,40.0,31.0,33.0,37.0,31.0,16.0,23.0,22.0,26.0,18.0,18.0,15.0,15.0,12.0,12.0,16.0,14.0,9.0,11.0,7.0,5.0,9.0,4.0,4.0,2.0,3.0,3.0,8.0 Y02674,,,,,,,,,,,,,,,,,,,1.0,3.0,3.0,3.0,3.0,4.0,8.0,10.0,9.0,10.0,9.0,10.0,13.0,15.0,10.0,12.0,11.0,8.0,10.0,6.0,15.0,6.0,18.0,23.0,8.0,13.0,22.0,15.0,17.0,6.0,13.0,7.0,11.0,8.0,14.0,8.0,10.0,18.0,7.0,8.0,9.0,10.0,9.0,11.0,11.0,4.0,8.0,6.0,6.0,5.0,3.0,2.0,4.0,2.0,,3.0,,,2.0,,1.0,1.0,1.0,,1.0,1.0,,,,,,,,,,,, Y02986,27.0,23.0,27.0,24.0,33.0,32.0,27.0,27.0,23.0,35.0,30.0,22.0,40.0,23.0,22.0,18.0,26.0,25.0,27.0,28.0,31.0,48.0,46.0,42.0,56.0,69.0,65.0,76.0,64.0,71.0,73.0,65.0,53.0,64.0,56.0,50.0,64.0,58.0,62.0,56.0,44.0,48.0,40.0,49.0,53.0,49.0,49.0,40.0,44.0,33.0,31.0,30.0,39.0,42.0,40.0,21.0,21.0,31.0,19.0,33.0,21.0,22.0,21.0,19.0,10.0,11.0,12.0,12.0,12.0,10.0,8.0,8.0,6.0,5.0,3.0,,2.0,7.0,1.0,2.0,1.0,3.0,,1.0,,1.0,1.0,,,,,,,,, Y03035,79.0,106.0,76.0,107.0,95.0,96.0,106.0,121.0,124.0,133.0,120.0,133.0,118.0,140.0,120.0,141.0,123.0,132.0,115.0,87.0,95.0,98.0,108.0,85.0,127.0,119.0,122.0,117.0,128.0,140.0,133.0,149.0,167.0,158.0,176.0,175.0,198.0,204.0,179.0,192.0,169.0,194.0,210.0,196.0,224.0,205.0,193.0,174.0,180.0,167.0,174.0,186.0,184.0,174.0,181.0,159.0,151.0,149.0,143.0,175.0,138.0,147.0,134.0,115.0,127.0,107.0,86.0,105.0,85.0,79.0,81.0,86.0,67.0,58.0,51.0,57.0,61.0,46.0,51.0,39.0,37.0,35.0,25.0,21.0,30.0,20.0,16.0,14.0,11.0,8.0,9.0,8.0,9.0,2.0,3.0,1.0 Y03103,,,,,,,,,,,,,,,,,,,,1.0,2.0,2.0,,1.0,3.0,3.0,4.0,4.0,2.0,5.0,7.0,6.0,4.0,6.0,6.0,10.0,7.0,7.0,9.0,3.0,12.0,10.0,11.0,4.0,10.0,9.0,9.0,8.0,5.0,6.0,8.0,7.0,8.0,5.0,3.0,8.0,4.0,,2.0,5.0,5.0,8.0,1.0,3.0,,1.0,2.0,1.0,5.0,3.0,,,2.0,,,1.0,1.0,,,,,,,,,,,,,,,,,,, Y03135,26.0,30.0,30.0,29.0,18.0,28.0,34.0,24.0,28.0,41.0,34.0,17.0,41.0,37.0,34.0,37.0,36.0,35.0,43.0,38.0,42.0,36.0,33.0,51.0,70.0,82.0,79.0,95.0,85.0,100.0,108.0,113.0,131.0,140.0,148.0,141.0,131.0,128.0,136.0,113.0,134.0,135.0,119.0,128.0,103.0,102.0,103.0,104.0,84.0,87.0,90.0,85.0,74.0,85.0,89.0,63.0,67.0,68.0,68.0,55.0,58.0,58.0,62.0,46.0,36.0,44.0,35.0,24.0,33.0,26.0,25.0,23.0,19.0,18.0,20.0,12.0,13.0,8.0,12.0,10.0,9.0,10.0,5.0,6.0,2.0,5.0,6.0,7.0,5.0,5.0,3.0,3.0,3.0,1.0,1.0,1.0 Y03402,84.0,94.0,111.0,119.0,103.0,127.0,137.0,128.0,157.0,129.0,142.0,126.0,145.0,158.0,170.0,155.0,176.0,148.0,144.0,149.0,150.0,149.0,148.0,139.0,158.0,144.0,163.0,157.0,160.0,150.0,147.0,166.0,148.0,157.0,158.0,169.0,183.0,164.0,182.0,173.0,163.0,163.0,166.0,177.0,188.0,159.0,144.0,168.0,137.0,153.0,149.0,159.0,124.0,139.0,148.0,139.0,120.0,119.0,104.0,121.0,113.0,117.0,104.0,78.0,83.0,70.0,70.0,58.0,67.0,55.0,37.0,36.0,41.0,26.0,25.0,34.0,20.0,21.0,24.0,14.0,21.0,10.0,12.0,9.0,18.0,9.0,8.0,13.0,11.0,7.0,7.0,4.0,,1.0,1.0,3.0 Y03663,44.0,53.0,47.0,45.0,46.0,48.0,66.0,49.0,68.0,43.0,45.0,48.0,65.0,64.0,53.0,65.0,73.0,61.0,61.0,49.0,49.0,64.0,62.0,72.0,76.0,72.0,71.0,95.0,82.0,93.0,95.0,97.0,89.0,104.0,89.0,106.0,106.0,90.0,99.0,92.0,108.0,90.0,82.0,83.0,94.0,88.0,86.0,84.0,80.0,84.0,75.0,72.0,65.0,61.0,50.0,53.0,43.0,49.0,53.0,45.0,34.0,35.0,36.0,26.0,48.0,33.0,27.0,33.0,20.0,25.0,20.0,20.0,7.0,15.0,13.0,17.0,11.0,9.0,15.0,13.0,15.0,14.0,6.0,8.0,7.0,8.0,3.0,5.0,4.0,3.0,1.0,1.0,1.0,,,4.0 Y03664,38.0,35.0,40.0,49.0,48.0,42.0,53.0,48.0,43.0,67.0,54.0,63.0,37.0,46.0,64.0,50.0,47.0,43.0,38.0,50.0,45.0,49.0,55.0,65.0,76.0,72.0,81.0,73.0,73.0,98.0,96.0,92.0,84.0,105.0,94.0,109.0,96.0,115.0,112.0,121.0,110.0,96.0,97.0,96.0,95.0,88.0,72.0,87.0,81.0,73.0,73.0,50.0,65.0,44.0,48.0,54.0,41.0,53.0,57.0,52.0,36.0,40.0,41.0,30.0,36.0,36.0,32.0,33.0,33.0,28.0,28.0,27.0,22.0,20.0,14.0,17.0,12.0,18.0,11.0,12.0,15.0,13.0,12.0,7.0,7.0,9.0,2.0,2.0,6.0,2.0,4.0,6.0,4.0,,1.0, Y05330,24.0,26.0,24.0,19.0,28.0,18.0,17.0,14.0,18.0,15.0,17.0,7.0,14.0,17.0,17.0,15.0,15.0,15.0,18.0,19.0,25.0,31.0,26.0,35.0,46.0,64.0,61.0,81.0,82.0,90.0,105.0,88.0,80.0,91.0,92.0,74.0,68.0,71.0,69.0,57.0,54.0,58.0,53.0,49.0,40.0,43.0,31.0,27.0,28.0,17.0,24.0,21.0,24.0,24.0,17.0,11.0,8.0,20.0,19.0,12.0,11.0,15.0,16.0,8.0,6.0,8.0,6.0,7.0,6.0,2.0,7.0,5.0,4.0,5.0,1.0,1.0,1.0,2.0,1.0,2.0,2.0,1.0,1.0,,2.0,1.0,,1.0,,,,,,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 D82001,33.0,37.0,39.0,53.0,61.0,59.0,60.0,46.0,57.0,54.0,66.0,56.0,75.0,64.0,59.0,77.0,71.0,72.0,58.0,49.0,69.0,56.0,57.0,44.0,41.0,48.0,44.0,60.0,55.0,50.0,68.0,56.0,65.0,70.0,43.0,69.0,52.0,61.0,62.0,63.0,60.0,45.0,74.0,59.0,64.0,56.0,58.0,53.0,75.0,52.0,94.0,63.0,82.0,97.0,79.0,93.0,100.0,89.0,109.0,107.0,100.0,115.0,99.0,138.0,131.0,97.0,120.0,131.0,115.0,102.0,128.0,122.0,101.0,118.0,139.0,121.0,136.0,134.0,123.0,95.0,110.0,95.0,75.0,76.0,50.0,57.0,38.0,38.0,39.0,32.0,27.0,26.0,18.0,17.0,8.0,21.0 D82002,52.0,48.0,65.0,61.0,70.0,68.0,55.0,74.0,77.0,85.0,73.0,79.0,70.0,63.0,71.0,80.0,87.0,75.0,79.0,60.0,57.0,72.0,58.0,59.0,74.0,86.0,106.0,100.0,87.0,96.0,88.0,101.0,105.0,103.0,115.0,132.0,112.0,123.0,126.0,106.0,111.0,96.0,94.0,103.0,98.0,92.0,64.0,89.0,77.0,69.0,73.0,87.0,100.0,102.0,95.0,77.0,75.0,79.0,95.0,82.0,88.0,90.0,89.0,63.0,92.0,74.0,71.0,75.0,48.0,58.0,47.0,46.0,52.0,49.0,56.0,50.0,52.0,54.0,39.0,33.0,40.0,27.0,17.0,28.0,26.0,24.0,24.0,20.0,15.0,16.0,9.0,11.0,6.0,3.0,5.0,6.0 D82003,97.0,102.0,108.0,104.0,121.0,154.0,130.0,131.0,145.0,122.0,153.0,138.0,170.0,171.0,159.0,159.0,139.0,172.0,149.0,134.0,141.0,139.0,147.0,122.0,145.0,132.0,134.0,143.0,146.0,147.0,159.0,158.0,184.0,190.0,178.0,180.0,183.0,168.0,188.0,148.0,160.0,172.0,144.0,157.0,135.0,150.0,163.0,131.0,123.0,142.0,140.0,135.0,139.0,171.0,165.0,181.0,197.0,151.0,195.0,145.0,189.0,197.0,175.0,174.0,166.0,173.0,144.0,141.0,129.0,120.0,135.0,135.0,117.0,131.0,115.0,126.0,123.0,147.0,134.0,98.0,83.0,92.0,74.0,65.0,64.0,57.0,56.0,44.0,30.0,18.0,28.0,10.0,15.0,11.0,7.0,13.0 D82004,25.0,32.0,30.0,26.0,38.0,34.0,52.0,42.0,67.0,57.0,61.0,70.0,51.0,53.0,59.0,43.0,69.0,42.0,55.0,56.0,44.0,46.0,42.0,58.0,40.0,50.0,49.0,57.0,57.0,50.0,49.0,50.0,43.0,59.0,59.0,54.0,53.0,59.0,68.0,48.0,60.0,63.0,59.0,67.0,72.0,53.0,56.0,55.0,65.0,68.0,58.0,71.0,61.0,71.0,83.0,82.0,87.0,87.0,90.0,86.0,105.0,82.0,100.0,91.0,120.0,82.0,110.0,101.0,110.0,100.0,87.0,104.0,106.0,115.0,98.0,115.0,107.0,105.0,98.0,87.0,73.0,75.0,56.0,46.0,49.0,38.0,36.0,34.0,34.0,28.0,14.0,24.0,13.0,15.0,6.0,16.0 D82005,17.0,24.0,17.0,23.0,24.0,20.0,34.0,23.0,40.0,36.0,35.0,36.0,38.0,48.0,43.0,51.0,49.0,39.0,40.0,36.0,44.0,31.0,48.0,36.0,36.0,40.0,39.0,31.0,37.0,25.0,23.0,45.0,35.0,29.0,30.0,42.0,36.0,40.0,38.0,45.0,39.0,35.0,37.0,45.0,38.0,45.0,44.0,34.0,29.0,50.0,52.0,45.0,47.0,53.0,52.0,56.0,71.0,55.0,68.0,66.0,65.0,77.0,75.0,72.0,82.0,106.0,80.0,78.0,83.0,82.0,68.0,81.0,71.0,78.0,79.0,112.0,70.0,104.0,95.0,70.0,79.0,74.0,59.0,41.0,34.0,44.0,34.0,34.0,28.0,23.0,27.0,25.0,7.0,13.0,13.0,11.0 D82006,33.0,32.0,36.0,40.0,50.0,25.0,40.0,37.0,54.0,39.0,36.0,49.0,46.0,54.0,53.0,61.0,61.0,40.0,40.0,55.0,59.0,54.0,41.0,59.0,49.0,43.0,44.0,42.0,47.0,43.0,48.0,46.0,42.0,33.0,45.0,52.0,40.0,57.0,43.0,40.0,46.0,48.0,49.0,42.0,41.0,41.0,50.0,52.0,42.0,47.0,44.0,63.0,57.0,54.0,58.0,81.0,71.0,73.0,58.0,81.0,65.0,76.0,56.0,61.0,52.0,73.0,73.0,61.0,69.0,59.0,57.0,54.0,62.0,51.0,71.0,56.0,62.0,49.0,65.0,41.0,37.0,38.0,49.0,37.0,23.0,23.0,22.0,11.0,15.0,12.0,15.0,7.0,9.0,5.0,4.0,6.0 D82007,105.0,104.0,102.0,107.0,109.0,134.0,141.0,168.0,128.0,143.0,141.0,174.0,138.0,157.0,157.0,152.0,149.0,151.0,140.0,155.0,122.0,147.0,138.0,137.0,135.0,155.0,158.0,181.0,168.0,191.0,207.0,201.0,205.0,200.0,220.0,231.0,192.0,195.0,225.0,180.0,196.0,184.0,172.0,164.0,174.0,195.0,179.0,155.0,175.0,171.0,161.0,167.0,171.0,198.0,179.0,175.0,199.0,188.0,174.0,149.0,163.0,158.0,168.0,167.0,153.0,161.0,132.0,153.0,136.0,139.0,126.0,116.0,110.0,108.0,106.0,105.0,135.0,110.0,111.0,84.0,74.0,70.0,57.0,56.0,53.0,37.0,37.0,35.0,26.0,20.0,15.0,15.0,14.0,13.0,4.0,8.0 D82008,70.0,61.0,61.0,56.0,69.0,85.0,64.0,72.0,73.0,91.0,84.0,81.0,89.0,91.0,91.0,90.0,90.0,107.0,98.0,96.0,97.0,115.0,96.0,106.0,118.0,137.0,127.0,138.0,135.0,144.0,137.0,160.0,149.0,132.0,148.0,146.0,155.0,153.0,134.0,147.0,138.0,159.0,149.0,163.0,143.0,131.0,153.0,147.0,129.0,129.0,140.0,155.0,140.0,141.0,137.0,121.0,125.0,127.0,143.0,109.0,126.0,112.0,124.0,115.0,126.0,113.0,88.0,96.0,96.0,90.0,78.0,86.0,79.0,104.0,99.0,81.0,95.0,99.0,87.0,74.0,77.0,68.0,49.0,42.0,40.0,42.0,35.0,27.0,26.0,18.0,27.0,8.0,13.0,10.0,8.0,14.0 D82009,16.0,14.0,27.0,20.0,16.0,26.0,34.0,22.0,42.0,29.0,27.0,46.0,36.0,49.0,37.0,30.0,46.0,44.0,35.0,25.0,21.0,23.0,24.0,25.0,37.0,40.0,24.0,35.0,34.0,29.0,35.0,28.0,21.0,31.0,38.0,42.0,34.0,42.0,21.0,36.0,45.0,22.0,26.0,32.0,33.0,39.0,28.0,27.0,31.0,28.0,39.0,46.0,49.0,45.0,61.0,66.0,52.0,49.0,59.0,56.0,57.0,69.0,77.0,58.0,62.0,55.0,56.0,65.0,73.0,56.0,65.0,53.0,65.0,55.0,60.0,67.0,64.0,60.0,61.0,48.0,37.0,40.0,45.0,26.0,20.0,17.0,22.0,17.0,8.0,19.0,6.0,2.0,6.0,1.0,1.0,8.0 D82010,17.0,15.0,19.0,16.0,15.0,12.0,25.0,16.0,26.0,27.0,28.0,26.0,22.0,24.0,24.0,22.0,17.0,31.0,33.0,19.0,19.0,25.0,15.0,23.0,20.0,20.0,26.0,23.0,20.0,20.0,20.0,20.0,24.0,23.0,32.0,34.0,21.0,25.0,35.0,29.0,21.0,32.0,17.0,27.0,29.0,19.0,27.0,23.0,36.0,39.0,23.0,49.0,33.0,39.0,36.0,45.0,54.0,35.0,36.0,47.0,59.0,47.0,46.0,41.0,46.0,38.0,52.0,50.0,37.0,37.0,39.0,43.0,41.0,38.0,37.0,35.0,39.0,44.0,44.0,26.0,37.0,25.0,23.0,24.0,21.0,11.0,15.0,13.0,7.0,8.0,5.0,6.0,5.0,3.0,4.0,1.0 D82011,67.0,72.0,75.0,69.0,74.0,76.0,91.0,87.0,98.0,96.0,98.0,80.0,97.0,115.0,77.0,117.0,95.0,94.0,99.0,83.0,81.0,89.0,70.0,89.0,114.0,109.0,97.0,121.0,123.0,135.0,117.0,138.0,131.0,138.0,153.0,169.0,140.0,139.0,136.0,130.0,113.0,119.0,119.0,139.0,134.0,142.0,116.0,122.0,118.0,120.0,119.0,113.0,117.0,122.0,121.0,111.0,121.0,118.0,101.0,114.0,104.0,103.0,96.0,89.0,119.0,112.0,97.0,78.0,71.0,76.0,82.0,63.0,80.0,80.0,87.0,73.0,65.0,91.0,69.0,54.0,64.0,47.0,50.0,33.0,31.0,40.0,37.0,38.0,20.0,17.0,16.0,17.0,10.0,9.0,9.0,18.0 D82012,46.0,54.0,69.0,53.0,60.0,74.0,77.0,79.0,72.0,59.0,79.0,89.0,81.0,75.0,81.0,74.0,82.0,81.0,77.0,58.0,57.0,58.0,62.0,72.0,81.0,94.0,89.0,115.0,97.0,104.0,106.0,127.0,133.0,130.0,129.0,124.0,134.0,125.0,116.0,132.0,131.0,117.0,125.0,128.0,119.0,78.0,100.0,84.0,102.0,94.0,96.0,91.0,101.0,101.0,100.0,82.0,116.0,88.0,83.0,96.0,99.0,93.0,88.0,77.0,72.0,68.0,55.0,55.0,71.0,46.0,56.0,64.0,55.0,59.0,38.0,68.0,70.0,68.0,63.0,41.0,46.0,37.0,50.0,24.0,27.0,25.0,22.0,31.0,27.0,20.0,8.0,4.0,7.0,5.0,4.0,13.0 D82013,41.0,45.0,51.0,32.0,50.0,39.0,43.0,44.0,50.0,57.0,59.0,54.0,57.0,53.0,54.0,48.0,59.0,59.0,51.0,28.0,35.0,44.0,45.0,51.0,61.0,49.0,59.0,46.0,65.0,37.0,57.0,59.0,77.0,80.0,74.0,70.0,67.0,73.0,72.0,60.0,51.0,60.0,65.0,69.0,69.0,67.0,59.0,54.0,48.0,43.0,64.0,58.0,62.0,57.0,59.0,47.0,46.0,68.0,38.0,57.0,52.0,57.0,57.0,42.0,48.0,30.0,53.0,40.0,45.0,36.0,39.0,34.0,32.0,27.0,45.0,40.0,31.0,32.0,38.0,33.0,37.0,18.0,21.0,19.0,16.0,9.0,9.0,14.0,11.0,9.0,8.0,1.0,5.0,5.0,3.0,4.0 D82015,31.0,44.0,36.0,30.0,40.0,43.0,41.0,38.0,33.0,41.0,44.0,37.0,59.0,39.0,43.0,46.0,42.0,32.0,26.0,43.0,35.0,29.0,42.0,21.0,38.0,31.0,32.0,45.0,46.0,49.0,37.0,63.0,36.0,58.0,46.0,59.0,54.0,45.0,44.0,48.0,45.0,33.0,48.0,44.0,51.0,35.0,49.0,37.0,48.0,37.0,46.0,48.0,42.0,50.0,56.0,63.0,76.0,65.0,72.0,62.0,63.0,58.0,74.0,69.0,55.0,56.0,59.0,54.0,58.0,52.0,44.0,52.0,47.0,49.0,47.0,59.0,46.0,74.0,45.0,49.0,45.0,43.0,42.0,25.0,31.0,31.0,31.0,16.0,27.0,28.0,13.0,5.0,14.0,7.0,5.0,13.0 D82016,26.0,39.0,33.0,43.0,35.0,54.0,36.0,42.0,48.0,59.0,58.0,48.0,53.0,58.0,59.0,51.0,56.0,64.0,51.0,58.0,42.0,39.0,38.0,49.0,42.0,40.0,36.0,36.0,44.0,37.0,49.0,50.0,58.0,55.0,70.0,47.0,58.0,47.0,52.0,43.0,60.0,53.0,41.0,69.0,54.0,61.0,47.0,48.0,40.0,63.0,49.0,58.0,56.0,54.0,69.0,79.0,79.0,88.0,75.0,62.0,74.0,75.0,65.0,94.0,74.0,71.0,62.0,76.0,81.0,67.0,59.0,61.0,63.0,64.0,62.0,70.0,72.0,104.0,79.0,53.0,50.0,47.0,36.0,45.0,19.0,26.0,28.0,26.0,17.0,12.0,5.0,7.0,7.0,3.0,6.0,3.0 D82017,51.0,53.0,51.0,56.0,62.0,57.0,65.0,70.0,79.0,70.0,62.0,68.0,100.0,79.0,77.0,52.0,69.0,90.0,103.0,84.0,78.0,59.0,76.0,63.0,76.0,83.0,91.0,84.0,88.0,86.0,101.0,88.0,100.0,105.0,95.0,119.0,109.0,96.0,97.0,97.0,110.0,99.0,91.0,86.0,89.0,97.0,81.0,72.0,77.0,75.0,84.0,58.0,94.0,72.0,58.0,63.0,64.0,46.0,62.0,60.0,51.0,55.0,57.0,61.0,51.0,34.0,39.0,34.0,43.0,40.0,44.0,47.0,40.0,51.0,53.0,39.0,39.0,41.0,39.0,34.0,41.0,19.0,14.0,24.0,14.0,8.0,8.0,9.0,6.0,8.0,6.0,3.0,4.0,6.0,1.0,5.0 D82018,26.0,54.0,51.0,52.0,53.0,58.0,34.0,47.0,57.0,51.0,60.0,61.0,75.0,63.0,59.0,75.0,54.0,61.0,50.0,56.0,59.0,47.0,55.0,53.0,60.0,53.0,47.0,56.0,57.0,77.0,66.0,66.0,63.0,79.0,72.0,79.0,73.0,68.0,73.0,75.0,60.0,79.0,58.0,68.0,79.0,81.0,52.0,72.0,62.0,70.0,71.0,63.0,88.0,73.0,88.0,90.0,85.0,85.0,95.0,75.0,76.0,79.0,82.0,80.0,85.0,64.0,82.0,61.0,69.0,59.0,56.0,49.0,61.0,64.0,48.0,48.0,62.0,58.0,72.0,48.0,37.0,52.0,40.0,39.0,30.0,27.0,34.0,22.0,21.0,21.0,20.0,18.0,13.0,11.0,4.0,7.0 D82019,74.0,82.0,61.0,79.0,115.0,70.0,104.0,82.0,100.0,95.0,117.0,110.0,107.0,116.0,109.0,109.0,108.0,98.0,112.0,94.0,101.0,88.0,98.0,93.0,96.0,88.0,109.0,96.0,98.0,119.0,110.0,102.0,123.0,107.0,113.0,113.0,121.0,130.0,130.0,134.0,126.0,109.0,86.0,108.0,126.0,108.0,104.0,121.0,109.0,125.0,100.0,119.0,134.0,143.0,113.0,124.0,113.0,147.0,104.0,150.0,148.0,139.0,133.0,141.0,132.0,121.0,127.0,131.0,130.0,114.0,133.0,115.0,109.0,129.0,102.0,119.0,106.0,128.0,155.0,73.0,91.0,61.0,89.0,40.0,50.0,51.0,48.0,49.0,34.0,30.0,26.0,15.0,9.0,7.0,4.0,18.0 D82020,57.0,57.0,52.0,77.0,63.0,68.0,85.0,75.0,71.0,74.0,79.0,81.0,78.0,71.0,64.0,83.0,77.0,64.0,86.0,63.0,60.0,57.0,59.0,76.0,63.0,77.0,79.0,80.0,78.0,86.0,98.0,78.0,93.0,83.0,87.0,100.0,83.0,86.0,84.0,79.0,77.0,58.0,77.0,90.0,85.0,73.0,83.0,75.0,65.0,64.0,73.0,83.0,67.0,80.0,96.0,91.0,100.0,97.0,83.0,84.0,87.0,92.0,92.0,73.0,72.0,75.0,73.0,59.0,73.0,63.0,69.0,68.0,60.0,61.0,56.0,47.0,78.0,57.0,80.0,63.0,62.0,33.0,45.0,47.0,29.0,45.0,34.0,14.0,20.0,20.0,21.0,16.0,11.0,6.0,7.0,8.0 D82022,22.0,20.0,28.0,31.0,27.0,33.0,32.0,38.0,32.0,41.0,30.0,33.0,35.0,46.0,53.0,33.0,42.0,40.0,41.0,30.0,33.0,34.0,23.0,27.0,35.0,44.0,30.0,39.0,31.0,37.0,38.0,38.0,34.0,47.0,43.0,37.0,57.0,51.0,47.0,52.0,47.0,45.0,46.0,53.0,46.0,49.0,57.0,45.0,35.0,31.0,36.0,56.0,40.0,54.0,60.0,46.0,46.0,62.0,56.0,56.0,56.0,56.0,39.0,54.0,56.0,49.0,53.0,52.0,41.0,36.0,38.0,47.0,48.0,34.0,39.0,38.0,39.0,46.0,52.0,32.0,27.0,42.0,31.0,16.0,22.0,36.0,14.0,19.0,13.0,16.0,5.0,7.0,6.0,3.0,5.0,6.0 D82023,77.0,79.0,76.0,82.0,93.0,104.0,100.0,110.0,105.0,107.0,90.0,97.0,90.0,107.0,99.0,104.0,99.0,98.0,84.0,81.0,65.0,57.0,60.0,74.0,61.0,88.0,88.0,87.0,99.0,90.0,105.0,94.0,126.0,117.0,110.0,134.0,120.0,122.0,113.0,127.0,114.0,134.0,119.0,120.0,112.0,117.0,93.0,128.0,101.0,108.0,89.0,96.0,113.0,93.0,84.0,112.0,96.0,89.0,74.0,73.0,91.0,71.0,61.0,62.0,76.0,61.0,53.0,62.0,48.0,51.0,62.0,49.0,58.0,44.0,43.0,54.0,45.0,60.0,69.0,35.0,39.0,32.0,34.0,32.0,23.0,29.0,19.0,29.0,7.0,16.0,8.0,6.0,3.0,7.0,3.0,6.0 D82024,26.0,20.0,30.0,32.0,34.0,40.0,32.0,41.0,43.0,41.0,47.0,42.0,65.0,45.0,47.0,52.0,39.0,61.0,47.0,41.0,44.0,51.0,50.0,45.0,46.0,33.0,41.0,43.0,39.0,55.0,37.0,52.0,48.0,41.0,58.0,47.0,47.0,45.0,48.0,53.0,51.0,47.0,41.0,54.0,48.0,49.0,46.0,48.0,59.0,52.0,49.0,63.0,68.0,76.0,60.0,68.0,62.0,55.0,74.0,83.0,57.0,66.0,54.0,55.0,59.0,37.0,46.0,56.0,34.0,51.0,36.0,40.0,39.0,40.0,36.0,31.0,39.0,43.0,40.0,29.0,35.0,25.0,15.0,29.0,17.0,15.0,18.0,23.0,21.0,7.0,3.0,9.0,3.0,4.0,7.0,7.0 D82025,29.0,41.0,34.0,38.0,34.0,39.0,46.0,39.0,53.0,56.0,37.0,31.0,42.0,48.0,56.0,44.0,42.0,51.0,38.0,31.0,39.0,44.0,52.0,35.0,47.0,60.0,53.0,58.0,54.0,62.0,61.0,55.0,54.0,55.0,52.0,62.0,59.0,62.0,57.0,55.0,61.0,50.0,50.0,53.0,57.0,49.0,60.0,47.0,54.0,46.0,60.0,64.0,80.0,70.0,67.0,69.0,62.0,71.0,62.0,74.0,93.0,81.0,69.0,74.0,76.0,73.0,91.0,76.0,73.0,73.0,66.0,67.0,74.0,66.0,69.0,76.0,59.0,78.0,110.0,67.0,60.0,53.0,50.0,50.0,33.0,35.0,28.0,35.0,21.0,17.0,22.0,17.0,7.0,7.0,7.0,10.0 D82026,36.0,29.0,41.0,47.0,29.0,40.0,37.0,42.0,42.0,46.0,37.0,55.0,59.0,34.0,50.0,53.0,50.0,53.0,46.0,31.0,43.0,41.0,40.0,44.0,60.0,60.0,60.0,80.0,82.0,92.0,83.0,95.0,64.0,75.0,89.0,83.0,109.0,74.0,64.0,67.0,67.0,71.0,83.0,57.0,69.0,59.0,73.0,52.0,58.0,50.0,69.0,67.0,61.0,64.0,76.0,55.0,48.0,55.0,72.0,56.0,59.0,49.0,52.0,52.0,58.0,39.0,47.0,35.0,37.0,30.0,50.0,34.0,52.0,49.0,38.0,41.0,46.0,31.0,38.0,45.0,23.0,28.0,31.0,22.0,16.0,19.0,14.0,11.0,11.0,9.0,8.0,4.0,2.0,2.0,2.0,2.0 D82027,16.0,10.0,23.0,25.0,28.0,17.0,23.0,21.0,28.0,20.0,28.0,19.0,27.0,17.0,29.0,36.0,34.0,30.0,26.0,30.0,22.0,32.0,29.0,19.0,31.0,16.0,23.0,22.0,22.0,27.0,25.0,33.0,34.0,26.0,25.0,32.0,24.0,23.0,23.0,33.0,20.0,30.0,20.0,32.0,30.0,28.0,31.0,40.0,24.0,31.0,40.0,51.0,55.0,44.0,46.0,54.0,52.0,70.0,57.0,63.0,51.0,89.0,80.0,60.0,53.0,61.0,51.0,61.0,53.0,54.0,70.0,67.0,69.0,49.0,64.0,72.0,77.0,85.0,99.0,72.0,73.0,52.0,46.0,38.0,31.0,32.0,39.0,26.0,23.0,27.0,7.0,10.0,17.0,9.0,5.0,12.0 D82028,17.0,17.0,12.0,18.0,12.0,28.0,18.0,21.0,22.0,28.0,23.0,30.0,23.0,25.0,26.0,32.0,28.0,22.0,23.0,25.0,16.0,33.0,26.0,23.0,19.0,27.0,25.0,27.0,21.0,17.0,16.0,25.0,20.0,17.0,25.0,24.0,26.0,21.0,32.0,30.0,23.0,22.0,24.0,29.0,27.0,20.0,27.0,26.0,36.0,26.0,23.0,28.0,30.0,44.0,52.0,46.0,46.0,39.0,51.0,47.0,63.0,65.0,48.0,48.0,47.0,46.0,52.0,43.0,57.0,49.0,49.0,47.0,45.0,44.0,45.0,56.0,51.0,58.0,60.0,48.0,42.0,52.0,29.0,21.0,23.0,22.0,17.0,17.0,9.0,13.0,8.0,10.0,12.0,7.0,1.0,9.0 D82029,80.0,75.0,76.0,98.0,86.0,106.0,107.0,118.0,101.0,107.0,115.0,114.0,111.0,98.0,109.0,120.0,111.0,104.0,102.0,82.0,87.0,81.0,91.0,91.0,97.0,88.0,96.0,94.0,97.0,98.0,114.0,101.0,80.0,108.0,107.0,123.0,116.0,112.0,138.0,115.0,97.0,99.0,109.0,102.0,123.0,112.0,94.0,105.0,98.0,110.0,121.0,121.0,126.0,138.0,148.0,148.0,169.0,165.0,140.0,150.0,138.0,154.0,131.0,118.0,131.0,123.0,113.0,94.0,115.0,99.0,107.0,93.0,82.0,100.0,105.0,109.0,123.0,119.0,88.0,83.0,77.0,80.0,62.0,53.0,57.0,52.0,45.0,39.0,34.0,25.0,24.0,20.0,12.0,7.0,8.0,9.0 D82030,24.0,21.0,18.0,27.0,20.0,36.0,44.0,39.0,42.0,43.0,33.0,31.0,55.0,56.0,61.0,56.0,49.0,50.0,50.0,49.0,44.0,37.0,43.0,49.0,37.0,42.0,46.0,35.0,30.0,38.0,41.0,49.0,36.0,37.0,28.0,31.0,46.0,43.0,58.0,43.0,38.0,57.0,35.0,42.0,53.0,42.0,44.0,50.0,44.0,35.0,56.0,51.0,54.0,52.0,85.0,59.0,56.0,75.0,75.0,55.0,65.0,74.0,73.0,80.0,82.0,70.0,62.0,63.0,57.0,67.0,75.0,56.0,57.0,59.0,73.0,70.0,73.0,77.0,74.0,51.0,40.0,40.0,38.0,27.0,26.0,21.0,27.0,25.0,16.0,11.0,11.0,8.0,8.0,7.0,6.0,6.0 D82031,22.0,23.0,30.0,28.0,41.0,27.0,32.0,41.0,43.0,36.0,51.0,32.0,34.0,46.0,42.0,45.0,40.0,33.0,40.0,40.0,41.0,44.0,38.0,33.0,30.0,34.0,47.0,42.0,55.0,54.0,65.0,43.0,60.0,57.0,55.0,46.0,54.0,57.0,41.0,55.0,52.0,55.0,43.0,52.0,53.0,58.0,47.0,36.0,47.0,50.0,41.0,66.0,42.0,63.0,57.0,48.0,45.0,58.0,65.0,57.0,58.0,58.0,65.0,68.0,62.0,56.0,50.0,62.0,46.0,48.0,52.0,51.0,45.0,48.0,55.0,41.0,38.0,55.0,51.0,45.0,41.0,44.0,31.0,24.0,30.0,22.0,16.0,19.0,19.0,11.0,6.0,9.0,3.0,4.0,3.0,10.0 D82032,30.0,25.0,26.0,40.0,42.0,36.0,40.0,48.0,37.0,34.0,40.0,47.0,54.0,38.0,46.0,50.0,54.0,40.0,50.0,33.0,34.0,30.0,29.0,33.0,41.0,34.0,36.0,47.0,36.0,36.0,45.0,47.0,45.0,38.0,45.0,38.0,51.0,44.0,48.0,47.0,59.0,56.0,43.0,48.0,44.0,48.0,39.0,43.0,36.0,52.0,41.0,59.0,61.0,65.0,45.0,55.0,76.0,46.0,52.0,63.0,77.0,60.0,61.0,69.0,57.0,57.0,69.0,67.0,56.0,55.0,46.0,59.0,59.0,41.0,65.0,41.0,55.0,52.0,55.0,37.0,36.0,29.0,39.0,33.0,22.0,20.0,21.0,19.0,16.0,14.0,9.0,5.0,9.0,2.0,2.0,4.0 D82034,80.0,86.0,80.0,80.0,75.0,87.0,106.0,96.0,101.0,94.0,113.0,106.0,128.0,113.0,140.0,133.0,129.0,140.0,121.0,101.0,71.0,80.0,84.0,115.0,119.0,96.0,118.0,127.0,111.0,131.0,111.0,125.0,106.0,132.0,145.0,114.0,124.0,121.0,115.0,95.0,116.0,103.0,102.0,109.0,118.0,107.0,94.0,108.0,104.0,97.0,120.0,105.0,125.0,120.0,144.0,112.0,148.0,118.0,133.0,132.0,140.0,143.0,123.0,119.0,111.0,97.0,115.0,117.0,93.0,105.0,92.0,110.0,92.0,109.0,100.0,94.0,108.0,103.0,101.0,77.0,80.0,73.0,63.0,46.0,38.0,34.0,43.0,35.0,34.0,23.0,20.0,18.0,13.0,16.0,6.0,11.0 D82035,45.0,47.0,39.0,52.0,42.0,50.0,49.0,40.0,62.0,59.0,52.0,57.0,71.0,62.0,65.0,60.0,49.0,55.0,61.0,46.0,51.0,46.0,40.0,42.0,46.0,45.0,57.0,38.0,52.0,53.0,61.0,60.0,67.0,64.0,62.0,59.0,56.0,57.0,59.0,58.0,49.0,52.0,62.0,52.0,61.0,54.0,58.0,73.0,61.0,52.0,65.0,76.0,69.0,71.0,78.0,77.0,97.0,75.0,100.0,93.0,99.0,115.0,82.0,81.0,93.0,71.0,109.0,69.0,67.0,78.0,81.0,56.0,72.0,64.0,61.0,66.0,73.0,73.0,76.0,57.0,61.0,43.0,42.0,25.0,29.0,31.0,32.0,16.0,15.0,13.0,10.0,13.0,7.0,3.0,3.0,5.0 D82036,31.0,31.0,40.0,40.0,44.0,51.0,45.0,54.0,48.0,56.0,49.0,40.0,49.0,61.0,54.0,44.0,48.0,43.0,53.0,44.0,35.0,28.0,39.0,43.0,42.0,39.0,41.0,35.0,49.0,23.0,48.0,50.0,42.0,34.0,54.0,39.0,54.0,59.0,48.0,60.0,64.0,51.0,55.0,45.0,55.0,58.0,50.0,59.0,52.0,44.0,44.0,49.0,60.0,77.0,62.0,69.0,53.0,48.0,52.0,63.0,64.0,61.0,65.0,59.0,74.0,69.0,64.0,61.0,48.0,60.0,53.0,72.0,49.0,44.0,32.0,51.0,50.0,54.0,63.0,40.0,56.0,40.0,39.0,29.0,23.0,18.0,25.0,22.0,11.0,15.0,9.0,7.0,10.0,7.0,7.0,8.0 D82037,30.0,46.0,37.0,48.0,42.0,54.0,49.0,69.0,64.0,70.0,62.0,52.0,85.0,59.0,72.0,67.0,67.0,56.0,63.0,52.0,54.0,44.0,54.0,52.0,62.0,48.0,41.0,48.0,59.0,50.0,54.0,48.0,57.0,63.0,60.0,64.0,77.0,78.0,63.0,57.0,63.0,64.0,70.0,62.0,53.0,68.0,61.0,61.0,57.0,63.0,69.0,68.0,80.0,85.0,83.0,72.0,79.0,105.0,88.0,97.0,80.0,91.0,94.0,71.0,81.0,83.0,71.0,74.0,68.0,74.0,68.0,62.0,61.0,62.0,65.0,75.0,66.0,64.0,85.0,63.0,53.0,49.0,49.0,26.0,22.0,33.0,35.0,21.0,20.0,13.0,11.0,6.0,10.0,3.0,1.0,5.0 D82038,8.0,10.0,11.0,11.0,9.0,18.0,13.0,14.0,17.0,14.0,7.0,24.0,14.0,18.0,16.0,14.0,22.0,11.0,22.0,15.0,18.0,13.0,7.0,10.0,9.0,12.0,9.0,10.0,11.0,18.0,19.0,11.0,18.0,8.0,13.0,25.0,16.0,18.0,12.0,16.0,15.0,20.0,20.0,13.0,9.0,18.0,15.0,15.0,16.0,20.0,31.0,16.0,20.0,17.0,25.0,23.0,24.0,21.0,28.0,28.0,20.0,19.0,24.0,30.0,35.0,18.0,19.0,36.0,24.0,22.0,26.0,22.0,14.0,25.0,24.0,25.0,29.0,20.0,24.0,19.0,22.0,23.0,17.0,17.0,12.0,13.0,12.0,13.0,9.0,5.0,12.0,7.0,6.0,3.0,4.0,5.0 D82039,29.0,27.0,35.0,27.0,30.0,29.0,38.0,44.0,35.0,46.0,44.0,35.0,54.0,57.0,42.0,43.0,47.0,46.0,47.0,45.0,39.0,38.0,45.0,33.0,29.0,44.0,35.0,37.0,46.0,29.0,49.0,44.0,36.0,38.0,39.0,40.0,40.0,55.0,47.0,47.0,46.0,37.0,45.0,57.0,45.0,56.0,45.0,47.0,29.0,50.0,46.0,57.0,56.0,67.0,64.0,64.0,59.0,73.0,69.0,68.0,71.0,74.0,78.0,79.0,68.0,70.0,64.0,53.0,46.0,51.0,51.0,58.0,64.0,58.0,57.0,66.0,54.0,81.0,61.0,52.0,57.0,51.0,41.0,27.0,29.0,25.0,25.0,18.0,14.0,12.0,9.0,4.0,4.0,2.0,5.0,9.0 D82040,58.0,56.0,71.0,58.0,76.0,76.0,88.0,87.0,93.0,119.0,112.0,104.0,99.0,102.0,97.0,113.0,108.0,115.0,141.0,97.0,111.0,89.0,105.0,81.0,89.0,116.0,98.0,107.0,127.0,110.0,105.0,133.0,102.0,94.0,129.0,122.0,99.0,109.0,99.0,91.0,113.0,106.0,106.0,93.0,95.0,92.0,89.0,70.0,89.0,69.0,78.0,93.0,75.0,79.0,65.0,75.0,86.0,97.0,78.0,71.0,58.0,57.0,50.0,53.0,52.0,31.0,50.0,48.0,44.0,32.0,40.0,33.0,31.0,28.0,33.0,21.0,32.0,36.0,31.0,21.0,18.0,28.0,17.0,15.0,10.0,4.0,4.0,4.0,8.0,10.0,6.0,5.0,7.0,,1.0,1.0 D82041,29.0,38.0,44.0,44.0,42.0,64.0,42.0,62.0,54.0,79.0,59.0,66.0,77.0,72.0,90.0,78.0,65.0,65.0,65.0,66.0,63.0,61.0,61.0,47.0,50.0,65.0,52.0,49.0,56.0,54.0,61.0,57.0,69.0,74.0,89.0,77.0,85.0,97.0,91.0,92.0,70.0,79.0,73.0,81.0,84.0,95.0,84.0,69.0,77.0,52.0,72.0,77.0,58.0,57.0,77.0,69.0,79.0,75.0,70.0,74.0,60.0,63.0,63.0,65.0,74.0,62.0,64.0,55.0,46.0,42.0,50.0,44.0,40.0,39.0,41.0,41.0,35.0,44.0,41.0,33.0,39.0,31.0,27.0,26.0,22.0,27.0,15.0,29.0,16.0,8.0,7.0,6.0,2.0,1.0,6.0,4.0 D82042,34.0,35.0,29.0,40.0,32.0,43.0,43.0,41.0,55.0,49.0,37.0,59.0,48.0,47.0,48.0,49.0,44.0,44.0,54.0,47.0,38.0,32.0,30.0,27.0,32.0,32.0,27.0,40.0,41.0,39.0,43.0,37.0,59.0,36.0,46.0,54.0,46.0,42.0,41.0,48.0,46.0,49.0,50.0,41.0,61.0,45.0,48.0,36.0,42.0,51.0,55.0,61.0,45.0,69.0,66.0,64.0,73.0,59.0,75.0,88.0,70.0,90.0,71.0,78.0,76.0,56.0,62.0,64.0,48.0,61.0,58.0,54.0,62.0,55.0,47.0,59.0,62.0,64.0,71.0,34.0,43.0,37.0,28.0,16.0,29.0,19.0,21.0,17.0,18.0,21.0,6.0,11.0,3.0,2.0,1.0,7.0 D82043,26.0,21.0,35.0,30.0,22.0,24.0,41.0,36.0,35.0,34.0,44.0,42.0,33.0,40.0,29.0,34.0,41.0,31.0,44.0,46.0,39.0,25.0,42.0,27.0,27.0,31.0,26.0,35.0,39.0,33.0,33.0,38.0,48.0,31.0,30.0,36.0,38.0,34.0,29.0,35.0,32.0,32.0,30.0,38.0,42.0,42.0,39.0,29.0,38.0,29.0,43.0,39.0,42.0,54.0,51.0,45.0,50.0,44.0,46.0,63.0,49.0,49.0,60.0,62.0,52.0,57.0,48.0,44.0,56.0,43.0,36.0,43.0,46.0,42.0,33.0,30.0,44.0,41.0,51.0,33.0,40.0,31.0,32.0,16.0,16.0,21.0,10.0,16.0,11.0,6.0,6.0,7.0,5.0,4.0,3.0,4.0 D82044,107.0,119.0,137.0,137.0,155.0,149.0,144.0,150.0,156.0,185.0,153.0,179.0,195.0,187.0,154.0,184.0,177.0,191.0,175.0,162.0,143.0,133.0,138.0,135.0,111.0,121.0,146.0,147.0,150.0,164.0,142.0,194.0,185.0,169.0,212.0,202.0,191.0,220.0,192.0,195.0,185.0,176.0,190.0,163.0,192.0,182.0,166.0,167.0,154.0,176.0,168.0,166.0,140.0,192.0,216.0,194.0,179.0,180.0,194.0,205.0,201.0,184.0,169.0,211.0,189.0,206.0,168.0,187.0,176.0,153.0,176.0,164.0,146.0,176.0,176.0,187.0,181.0,191.0,211.0,123.0,150.0,122.0,134.0,107.0,80.0,94.0,74.0,80.0,61.0,47.0,49.0,34.0,29.0,21.0,17.0,26.0 D82045,70.0,72.0,101.0,95.0,95.0,88.0,111.0,104.0,118.0,119.0,118.0,128.0,136.0,154.0,145.0,159.0,164.0,157.0,138.0,112.0,85.0,92.0,95.0,91.0,89.0,105.0,90.0,103.0,106.0,101.0,90.0,104.0,96.0,101.0,118.0,110.0,125.0,130.0,103.0,126.0,111.0,109.0,118.0,119.0,120.0,123.0,111.0,91.0,101.0,106.0,124.0,121.0,127.0,136.0,141.0,136.0,139.0,120.0,126.0,147.0,134.0,125.0,112.0,131.0,103.0,123.0,115.0,111.0,111.0,97.0,98.0,93.0,77.0,73.0,100.0,93.0,87.0,128.0,133.0,86.0,81.0,73.0,69.0,55.0,45.0,53.0,42.0,36.0,31.0,27.0,30.0,11.0,16.0,10.0,11.0,11.0 D82046,13.0,15.0,19.0,21.0,15.0,20.0,20.0,21.0,32.0,22.0,17.0,27.0,21.0,27.0,23.0,23.0,26.0,29.0,34.0,26.0,18.0,21.0,17.0,14.0,19.0,20.0,16.0,22.0,19.0,19.0,12.0,22.0,17.0,28.0,20.0,18.0,24.0,21.0,15.0,20.0,20.0,24.0,19.0,17.0,30.0,20.0,18.0,16.0,20.0,24.0,25.0,32.0,29.0,33.0,36.0,32.0,37.0,41.0,31.0,36.0,39.0,42.0,34.0,33.0,37.0,38.0,33.0,35.0,33.0,26.0,35.0,33.0,28.0,27.0,29.0,32.0,41.0,30.0,34.0,25.0,24.0,20.0,22.0,18.0,12.0,11.0,16.0,8.0,13.0,12.0,8.0,3.0,1.0,2.0,1.0,5.0 D82047,21.0,21.0,16.0,22.0,20.0,23.0,9.0,17.0,19.0,23.0,26.0,24.0,22.0,21.0,31.0,17.0,26.0,31.0,17.0,26.0,36.0,47.0,60.0,55.0,58.0,57.0,64.0,61.0,62.0,57.0,52.0,63.0,56.0,63.0,61.0,56.0,58.0,61.0,52.0,63.0,57.0,62.0,52.0,55.0,63.0,58.0,71.0,56.0,42.0,44.0,58.0,50.0,50.0,48.0,37.0,56.0,65.0,53.0,53.0,59.0,58.0,60.0,49.0,46.0,54.0,39.0,31.0,43.0,38.0,41.0,36.0,42.0,34.0,34.0,31.0,40.0,38.0,27.0,40.0,27.0,20.0,14.0,22.0,29.0,16.0,11.0,11.0,11.0,10.0,8.0,5.0,4.0,7.0,2.0,2.0,2.0 D82048,45.0,45.0,56.0,73.0,67.0,59.0,68.0,64.0,73.0,77.0,77.0,69.0,69.0,82.0,70.0,81.0,89.0,87.0,69.0,59.0,53.0,54.0,69.0,44.0,73.0,63.0,75.0,69.0,73.0,75.0,89.0,95.0,95.0,96.0,83.0,90.0,88.0,95.0,84.0,87.0,93.0,70.0,75.0,85.0,94.0,79.0,79.0,69.0,77.0,68.0,88.0,81.0,84.0,104.0,84.0,94.0,86.0,73.0,84.0,87.0,99.0,87.0,82.0,90.0,84.0,65.0,68.0,69.0,76.0,61.0,60.0,58.0,50.0,48.0,52.0,54.0,53.0,48.0,64.0,39.0,43.0,38.0,35.0,34.0,26.0,18.0,22.0,25.0,24.0,16.0,11.0,8.0,10.0,5.0,7.0,14.0 D82049,5.0,7.0,12.0,8.0,14.0,15.0,10.0,17.0,14.0,20.0,17.0,18.0,19.0,15.0,29.0,20.0,26.0,29.0,26.0,25.0,24.0,12.0,23.0,18.0,19.0,14.0,19.0,9.0,18.0,19.0,18.0,7.0,14.0,13.0,16.0,14.0,17.0,23.0,20.0,16.0,15.0,17.0,23.0,14.0,22.0,15.0,19.0,12.0,12.0,15.0,17.0,24.0,29.0,23.0,31.0,25.0,24.0,41.0,35.0,29.0,35.0,38.0,24.0,34.0,25.0,32.0,40.0,30.0,32.0,19.0,34.0,26.0,25.0,22.0,11.0,25.0,22.0,25.0,29.0,16.0,23.0,16.0,21.0,9.0,13.0,8.0,7.0,11.0,8.0,4.0,5.0,5.0,2.0,1.0,1.0,2.0 D82050,38.0,57.0,40.0,51.0,42.0,42.0,45.0,59.0,53.0,51.0,53.0,63.0,68.0,66.0,61.0,65.0,69.0,64.0,55.0,67.0,70.0,50.0,55.0,56.0,52.0,52.0,59.0,60.0,69.0,54.0,58.0,68.0,51.0,59.0,65.0,64.0,54.0,65.0,59.0,65.0,67.0,49.0,64.0,61.0,64.0,58.0,66.0,67.0,65.0,52.0,76.0,64.0,75.0,80.0,86.0,94.0,85.0,78.0,76.0,81.0,68.0,88.0,79.0,85.0,70.0,60.0,58.0,57.0,57.0,54.0,65.0,53.0,58.0,44.0,50.0,55.0,62.0,61.0,76.0,63.0,59.0,56.0,46.0,44.0,36.0,35.0,29.0,23.0,25.0,9.0,13.0,6.0,5.0,9.0,7.0,11.0 D82051,74.0,81.0,86.0,100.0,80.0,91.0,94.0,100.0,109.0,119.0,106.0,99.0,107.0,100.0,99.0,72.0,90.0,93.0,98.0,79.0,95.0,80.0,82.0,103.0,102.0,110.0,113.0,129.0,117.0,116.0,119.0,144.0,168.0,127.0,159.0,143.0,164.0,162.0,149.0,144.0,158.0,150.0,127.0,116.0,106.0,126.0,119.0,96.0,98.0,104.0,117.0,119.0,125.0,115.0,110.0,109.0,128.0,109.0,111.0,112.0,138.0,125.0,101.0,125.0,105.0,118.0,90.0,97.0,104.0,100.0,84.0,69.0,69.0,74.0,82.0,75.0,55.0,95.0,72.0,62.0,64.0,64.0,45.0,42.0,35.0,41.0,27.0,23.0,25.0,26.0,16.0,11.0,6.0,12.0,6.0,8.0 D82053,15.0,19.0,6.0,21.0,23.0,17.0,24.0,16.0,13.0,19.0,16.0,21.0,29.0,28.0,24.0,25.0,27.0,30.0,25.0,16.0,29.0,20.0,21.0,15.0,22.0,24.0,24.0,18.0,28.0,27.0,28.0,28.0,21.0,24.0,37.0,23.0,19.0,17.0,24.0,32.0,18.0,29.0,30.0,25.0,24.0,21.0,21.0,25.0,18.0,16.0,18.0,35.0,28.0,41.0,38.0,46.0,29.0,47.0,45.0,55.0,46.0,46.0,54.0,59.0,63.0,53.0,56.0,55.0,49.0,38.0,50.0,53.0,49.0,55.0,50.0,54.0,43.0,62.0,71.0,33.0,36.0,30.0,40.0,23.0,18.0,18.0,19.0,14.0,19.0,9.0,10.0,3.0,4.0,2.0,5.0,9.0 D82054,35.0,64.0,54.0,50.0,63.0,63.0,78.0,71.0,73.0,80.0,81.0,58.0,76.0,96.0,79.0,74.0,69.0,79.0,84.0,83.0,79.0,58.0,69.0,74.0,73.0,62.0,74.0,89.0,74.0,96.0,103.0,92.0,88.0,71.0,90.0,92.0,88.0,94.0,81.0,87.0,94.0,75.0,80.0,75.0,86.0,82.0,74.0,59.0,75.0,86.0,70.0,89.0,108.0,115.0,101.0,108.0,96.0,114.0,121.0,128.0,138.0,128.0,105.0,105.0,124.0,114.0,101.0,125.0,103.0,103.0,125.0,104.0,97.0,102.0,103.0,78.0,103.0,117.0,124.0,86.0,76.0,81.0,71.0,59.0,53.0,54.0,41.0,32.0,40.0,29.0,21.0,15.0,16.0,17.0,11.0,15.0 D82056,26.0,28.0,30.0,34.0,32.0,42.0,45.0,47.0,43.0,50.0,57.0,43.0,61.0,63.0,62.0,64.0,62.0,56.0,57.0,52.0,44.0,51.0,43.0,25.0,38.0,37.0,40.0,28.0,35.0,37.0,36.0,34.0,36.0,41.0,54.0,61.0,54.0,46.0,35.0,49.0,49.0,39.0,51.0,46.0,44.0,43.0,43.0,38.0,36.0,48.0,69.0,64.0,59.0,78.0,64.0,79.0,71.0,76.0,69.0,90.0,78.0,85.0,92.0,71.0,81.0,73.0,61.0,62.0,77.0,78.0,82.0,58.0,61.0,72.0,70.0,56.0,75.0,95.0,73.0,57.0,61.0,61.0,50.0,39.0,37.0,29.0,22.0,27.0,16.0,11.0,25.0,9.0,7.0,12.0,4.0,8.0 D82057,21.0,26.0,23.0,35.0,29.0,27.0,36.0,28.0,33.0,31.0,35.0,34.0,29.0,33.0,40.0,35.0,29.0,40.0,36.0,31.0,38.0,34.0,28.0,24.0,32.0,36.0,25.0,32.0,45.0,33.0,32.0,37.0,41.0,38.0,35.0,40.0,36.0,29.0,37.0,36.0,32.0,36.0,38.0,31.0,30.0,42.0,33.0,30.0,31.0,30.0,39.0,35.0,45.0,53.0,49.0,54.0,32.0,48.0,44.0,48.0,65.0,63.0,53.0,58.0,62.0,43.0,47.0,63.0,48.0,55.0,55.0,50.0,50.0,40.0,62.0,42.0,50.0,63.0,70.0,45.0,50.0,50.0,35.0,37.0,28.0,20.0,30.0,19.0,11.0,16.0,13.0,10.0,10.0,3.0,6.0,6.0 D82058,44.0,44.0,56.0,50.0,60.0,53.0,71.0,72.0,78.0,85.0,71.0,83.0,77.0,94.0,91.0,80.0,79.0,80.0,74.0,71.0,63.0,76.0,73.0,66.0,72.0,83.0,75.0,72.0,71.0,74.0,79.0,74.0,69.0,75.0,70.0,99.0,76.0,86.0,118.0,86.0,74.0,81.0,81.0,75.0,83.0,86.0,92.0,77.0,70.0,71.0,87.0,81.0,98.0,109.0,134.0,136.0,129.0,120.0,147.0,145.0,148.0,166.0,144.0,133.0,147.0,150.0,165.0,157.0,142.0,156.0,153.0,160.0,136.0,130.0,131.0,152.0,137.0,142.0,136.0,97.0,112.0,109.0,92.0,67.0,50.0,57.0,59.0,42.0,24.0,27.0,14.0,15.0,15.0,6.0,2.0,17.0 D82059,49.0,41.0,33.0,57.0,38.0,53.0,38.0,59.0,59.0,51.0,73.0,70.0,70.0,71.0,54.0,77.0,76.0,68.0,55.0,53.0,44.0,59.0,53.0,34.0,53.0,65.0,55.0,69.0,38.0,61.0,78.0,59.0,64.0,57.0,62.0,58.0,54.0,70.0,66.0,62.0,64.0,68.0,53.0,50.0,63.0,60.0,60.0,56.0,65.0,54.0,60.0,66.0,63.0,72.0,71.0,103.0,79.0,80.0,82.0,82.0,80.0,114.0,97.0,98.0,80.0,75.0,92.0,86.0,84.0,83.0,96.0,77.0,72.0,63.0,81.0,77.0,72.0,67.0,86.0,66.0,63.0,59.0,52.0,44.0,31.0,37.0,42.0,23.0,26.0,23.0,18.0,13.0,14.0,6.0,11.0,16.0 D82060,12.0,26.0,20.0,17.0,28.0,33.0,26.0,20.0,33.0,30.0,39.0,40.0,41.0,45.0,39.0,30.0,54.0,43.0,33.0,29.0,36.0,37.0,34.0,26.0,38.0,32.0,35.0,35.0,39.0,37.0,19.0,35.0,34.0,31.0,28.0,40.0,24.0,30.0,34.0,37.0,44.0,38.0,41.0,35.0,41.0,25.0,30.0,30.0,21.0,26.0,30.0,19.0,28.0,30.0,35.0,31.0,25.0,31.0,33.0,21.0,46.0,31.0,22.0,20.0,22.0,24.0,29.0,13.0,15.0,13.0,19.0,28.0,15.0,14.0,27.0,26.0,22.0,23.0,13.0,13.0,15.0,18.0,13.0,9.0,9.0,11.0,8.0,5.0,8.0,9.0,3.0,3.0,4.0,,1.0,4.0 D82062,28.0,30.0,38.0,44.0,33.0,35.0,40.0,59.0,45.0,33.0,50.0,49.0,50.0,43.0,47.0,59.0,37.0,53.0,45.0,38.0,29.0,40.0,36.0,36.0,39.0,34.0,29.0,33.0,40.0,28.0,44.0,39.0,38.0,45.0,51.0,61.0,60.0,60.0,55.0,58.0,58.0,56.0,47.0,43.0,52.0,51.0,44.0,67.0,52.0,41.0,49.0,56.0,63.0,54.0,63.0,54.0,69.0,62.0,75.0,67.0,59.0,65.0,54.0,55.0,58.0,60.0,51.0,56.0,58.0,62.0,57.0,68.0,51.0,61.0,36.0,37.0,61.0,72.0,61.0,40.0,53.0,40.0,42.0,30.0,22.0,31.0,27.0,25.0,20.0,8.0,10.0,6.0,10.0,5.0,3.0,7.0 D82063,55.0,67.0,72.0,64.0,66.0,67.0,72.0,77.0,77.0,91.0,72.0,84.0,77.0,68.0,86.0,70.0,81.0,64.0,54.0,49.0,49.0,45.0,56.0,51.0,64.0,74.0,73.0,75.0,101.0,121.0,99.0,93.0,111.0,126.0,120.0,126.0,104.0,106.0,113.0,95.0,94.0,95.0,87.0,85.0,102.0,113.0,61.0,73.0,84.0,53.0,71.0,98.0,87.0,87.0,79.0,90.0,97.0,104.0,98.0,94.0,98.0,92.0,107.0,78.0,84.0,85.0,69.0,80.0,88.0,100.0,73.0,60.0,70.0,79.0,64.0,84.0,79.0,80.0,98.0,74.0,54.0,55.0,52.0,50.0,31.0,35.0,35.0,22.0,22.0,15.0,17.0,16.0,16.0,5.0,7.0,17.0 D82064,80.0,113.0,116.0,121.0,128.0,113.0,146.0,148.0,152.0,148.0,171.0,149.0,180.0,161.0,169.0,141.0,163.0,138.0,121.0,92.0,77.0,104.0,90.0,79.0,94.0,104.0,96.0,102.0,96.0,98.0,90.0,119.0,137.0,112.0,158.0,139.0,133.0,146.0,153.0,138.0,180.0,152.0,152.0,147.0,172.0,141.0,168.0,138.0,149.0,137.0,144.0,158.0,156.0,149.0,144.0,137.0,145.0,126.0,130.0,141.0,119.0,119.0,125.0,153.0,110.0,111.0,88.0,127.0,101.0,101.0,91.0,107.0,95.0,94.0,95.0,97.0,122.0,133.0,123.0,82.0,89.0,76.0,80.0,67.0,52.0,53.0,54.0,48.0,32.0,28.0,19.0,20.0,10.0,14.0,10.0,16.0 D82065,28.0,27.0,28.0,33.0,43.0,34.0,30.0,32.0,42.0,30.0,48.0,35.0,37.0,50.0,34.0,38.0,27.0,35.0,31.0,37.0,21.0,30.0,29.0,31.0,30.0,27.0,23.0,39.0,36.0,43.0,47.0,40.0,28.0,49.0,42.0,56.0,33.0,40.0,40.0,35.0,51.0,42.0,41.0,50.0,35.0,34.0,28.0,31.0,31.0,28.0,53.0,43.0,45.0,41.0,56.0,45.0,60.0,59.0,52.0,66.0,62.0,50.0,57.0,60.0,68.0,53.0,81.0,56.0,59.0,56.0,58.0,59.0,60.0,53.0,58.0,54.0,38.0,48.0,63.0,46.0,41.0,41.0,32.0,15.0,27.0,28.0,26.0,20.0,25.0,10.0,14.0,6.0,2.0,2.0,3.0,9.0 D82066,22.0,29.0,19.0,24.0,32.0,32.0,19.0,24.0,29.0,35.0,34.0,35.0,24.0,46.0,28.0,22.0,26.0,45.0,33.0,35.0,25.0,30.0,38.0,23.0,21.0,37.0,30.0,40.0,38.0,37.0,45.0,43.0,38.0,39.0,36.0,31.0,27.0,31.0,37.0,39.0,41.0,40.0,36.0,40.0,31.0,36.0,27.0,31.0,37.0,34.0,36.0,34.0,32.0,57.0,49.0,43.0,54.0,44.0,64.0,56.0,45.0,52.0,39.0,48.0,59.0,57.0,74.0,62.0,42.0,44.0,47.0,38.0,43.0,50.0,35.0,37.0,48.0,55.0,48.0,40.0,32.0,35.0,34.0,21.0,22.0,20.0,14.0,23.0,12.0,10.0,18.0,4.0,9.0,5.0,3.0,8.0 D82067,71.0,82.0,83.0,68.0,87.0,87.0,90.0,96.0,95.0,86.0,98.0,93.0,79.0,94.0,95.0,92.0,92.0,84.0,91.0,74.0,97.0,67.0,70.0,88.0,73.0,99.0,92.0,104.0,129.0,104.0,137.0,126.0,162.0,147.0,130.0,144.0,143.0,121.0,118.0,120.0,115.0,141.0,97.0,112.0,97.0,112.0,111.0,77.0,94.0,82.0,94.0,113.0,96.0,91.0,101.0,103.0,97.0,103.0,110.0,110.0,106.0,65.0,101.0,84.0,82.0,88.0,83.0,61.0,70.0,56.0,66.0,59.0,49.0,48.0,49.0,49.0,61.0,73.0,63.0,65.0,43.0,33.0,28.0,29.0,26.0,17.0,26.0,20.0,14.0,9.0,9.0,11.0,7.0,3.0,4.0,9.0 D82068,33.0,35.0,37.0,38.0,32.0,33.0,48.0,42.0,39.0,43.0,41.0,35.0,48.0,39.0,47.0,32.0,28.0,50.0,46.0,28.0,27.0,30.0,28.0,37.0,36.0,27.0,30.0,35.0,34.0,38.0,43.0,26.0,40.0,45.0,33.0,47.0,39.0,34.0,35.0,35.0,40.0,36.0,37.0,48.0,37.0,50.0,37.0,38.0,35.0,41.0,29.0,41.0,46.0,60.0,59.0,48.0,64.0,64.0,45.0,64.0,74.0,48.0,76.0,56.0,40.0,55.0,57.0,63.0,46.0,46.0,41.0,47.0,49.0,53.0,45.0,55.0,47.0,60.0,56.0,38.0,39.0,30.0,31.0,35.0,26.0,30.0,27.0,22.0,20.0,12.0,14.0,10.0,9.0,8.0,3.0,8.0 D82070,17.0,20.0,22.0,23.0,21.0,25.0,41.0,21.0,37.0,34.0,27.0,37.0,46.0,34.0,43.0,28.0,33.0,20.0,29.0,40.0,30.0,29.0,21.0,26.0,41.0,41.0,28.0,26.0,27.0,36.0,31.0,31.0,37.0,34.0,33.0,36.0,23.0,40.0,26.0,29.0,33.0,29.0,35.0,37.0,23.0,42.0,32.0,32.0,35.0,24.0,46.0,46.0,35.0,40.0,46.0,49.0,49.0,55.0,51.0,51.0,43.0,56.0,60.0,57.0,65.0,49.0,48.0,59.0,50.0,54.0,49.0,52.0,46.0,41.0,38.0,41.0,47.0,48.0,50.0,47.0,33.0,36.0,28.0,18.0,11.0,17.0,9.0,16.0,12.0,6.0,9.0,7.0,5.0,1.0,1.0,1.0 D82071,44.0,50.0,59.0,61.0,70.0,68.0,67.0,80.0,78.0,74.0,86.0,82.0,100.0,90.0,88.0,80.0,97.0,84.0,83.0,74.0,81.0,58.0,73.0,67.0,67.0,70.0,68.0,86.0,82.0,76.0,83.0,76.0,96.0,101.0,98.0,88.0,83.0,91.0,94.0,88.0,72.0,89.0,96.0,115.0,97.0,102.0,72.0,84.0,79.0,67.0,97.0,97.0,102.0,89.0,80.0,113.0,111.0,82.0,114.0,100.0,97.0,96.0,112.0,85.0,92.0,102.0,80.0,108.0,86.0,86.0,84.0,76.0,71.0,66.0,71.0,64.0,80.0,64.0,85.0,71.0,63.0,49.0,40.0,47.0,35.0,25.0,33.0,36.0,31.0,25.0,18.0,17.0,9.0,7.0,6.0,14.0 D82072,6.0,8.0,11.0,18.0,10.0,8.0,13.0,12.0,12.0,10.0,17.0,17.0,14.0,15.0,15.0,20.0,15.0,15.0,20.0,17.0,21.0,17.0,16.0,10.0,16.0,10.0,13.0,13.0,12.0,12.0,7.0,16.0,14.0,12.0,15.0,17.0,20.0,9.0,12.0,18.0,20.0,18.0,14.0,21.0,28.0,22.0,19.0,19.0,22.0,14.0,20.0,19.0,21.0,37.0,30.0,28.0,38.0,32.0,20.0,28.0,31.0,34.0,34.0,31.0,35.0,25.0,34.0,32.0,29.0,32.0,31.0,47.0,30.0,31.0,45.0,34.0,33.0,44.0,43.0,29.0,28.0,37.0,29.0,20.0,11.0,14.0,12.0,16.0,15.0,14.0,3.0,6.0,6.0,3.0,4.0,7.0 D82073,71.0,79.0,66.0,77.0,88.0,84.0,88.0,79.0,91.0,93.0,90.0,89.0,91.0,87.0,88.0,91.0,89.0,66.0,86.0,68.0,64.0,60.0,59.0,56.0,82.0,76.0,86.0,93.0,106.0,111.0,119.0,114.0,142.0,124.0,140.0,133.0,119.0,119.0,132.0,137.0,102.0,110.0,116.0,129.0,120.0,127.0,107.0,97.0,107.0,115.0,87.0,124.0,109.0,98.0,100.0,92.0,98.0,104.0,98.0,83.0,108.0,90.0,74.0,81.0,85.0,68.0,76.0,77.0,52.0,73.0,46.0,51.0,57.0,57.0,49.0,54.0,55.0,45.0,59.0,37.0,44.0,38.0,21.0,27.0,21.0,23.0,17.0,14.0,11.0,15.0,5.0,7.0,2.0,9.0,6.0,5.0 D82076,39.0,57.0,29.0,48.0,43.0,53.0,46.0,43.0,40.0,44.0,39.0,44.0,44.0,39.0,54.0,43.0,42.0,44.0,32.0,37.0,46.0,29.0,27.0,32.0,41.0,53.0,67.0,61.0,59.0,59.0,55.0,70.0,69.0,68.0,68.0,81.0,79.0,79.0,63.0,85.0,80.0,62.0,85.0,64.0,51.0,58.0,57.0,53.0,60.0,57.0,61.0,50.0,67.0,62.0,59.0,53.0,62.0,77.0,62.0,49.0,62.0,68.0,40.0,53.0,36.0,49.0,42.0,32.0,44.0,34.0,36.0,42.0,26.0,32.0,37.0,31.0,25.0,41.0,35.0,24.0,28.0,26.0,21.0,17.0,15.0,15.0,7.0,10.0,15.0,5.0,12.0,6.0,3.0,6.0,7.0,8.0 D82078,24.0,30.0,38.0,49.0,47.0,45.0,55.0,59.0,56.0,49.0,68.0,50.0,55.0,50.0,53.0,56.0,55.0,61.0,48.0,43.0,58.0,47.0,33.0,44.0,38.0,37.0,47.0,39.0,35.0,41.0,52.0,64.0,50.0,47.0,43.0,67.0,50.0,48.0,52.0,62.0,59.0,55.0,65.0,48.0,54.0,58.0,38.0,68.0,58.0,51.0,60.0,65.0,66.0,67.0,83.0,84.0,65.0,62.0,83.0,82.0,81.0,86.0,87.0,70.0,69.0,72.0,64.0,69.0,62.0,67.0,52.0,55.0,50.0,60.0,56.0,67.0,62.0,65.0,51.0,52.0,48.0,39.0,40.0,31.0,34.0,29.0,21.0,20.0,19.0,19.0,17.0,11.0,8.0,9.0,4.0,11.0 D82079,24.0,25.0,19.0,22.0,25.0,21.0,29.0,31.0,40.0,38.0,33.0,35.0,36.0,25.0,31.0,34.0,32.0,33.0,22.0,34.0,23.0,24.0,25.0,30.0,25.0,21.0,15.0,31.0,28.0,25.0,22.0,17.0,41.0,28.0,34.0,29.0,28.0,42.0,34.0,25.0,28.0,28.0,28.0,38.0,32.0,38.0,27.0,28.0,38.0,29.0,33.0,39.0,33.0,33.0,45.0,45.0,43.0,34.0,40.0,55.0,39.0,54.0,48.0,57.0,52.0,28.0,41.0,38.0,33.0,40.0,38.0,31.0,37.0,34.0,32.0,36.0,24.0,32.0,32.0,26.0,29.0,26.0,12.0,18.0,11.0,12.0,14.0,10.0,9.0,7.0,5.0,6.0,2.0,1.0,1.0,5.0 D82080,35.0,35.0,43.0,41.0,58.0,37.0,48.0,68.0,50.0,58.0,49.0,60.0,46.0,55.0,50.0,45.0,47.0,40.0,54.0,34.0,52.0,32.0,36.0,37.0,29.0,32.0,31.0,38.0,46.0,44.0,41.0,51.0,41.0,45.0,50.0,52.0,63.0,49.0,47.0,45.0,56.0,48.0,50.0,44.0,41.0,49.0,44.0,55.0,48.0,51.0,58.0,52.0,61.0,68.0,54.0,67.0,71.0,65.0,57.0,70.0,74.0,59.0,58.0,49.0,57.0,53.0,56.0,45.0,43.0,41.0,48.0,44.0,46.0,35.0,63.0,45.0,48.0,49.0,44.0,50.0,48.0,41.0,32.0,25.0,23.0,19.0,23.0,19.0,12.0,11.0,10.0,8.0,4.0,3.0,4.0,12.0 D82084,20.0,22.0,25.0,26.0,25.0,26.0,32.0,34.0,43.0,38.0,46.0,39.0,36.0,37.0,44.0,46.0,46.0,31.0,34.0,33.0,24.0,32.0,39.0,29.0,33.0,25.0,32.0,23.0,40.0,36.0,30.0,30.0,45.0,40.0,40.0,42.0,38.0,44.0,44.0,53.0,35.0,41.0,49.0,58.0,39.0,42.0,46.0,40.0,48.0,41.0,42.0,52.0,51.0,54.0,64.0,66.0,72.0,46.0,52.0,56.0,58.0,65.0,70.0,63.0,61.0,57.0,58.0,75.0,64.0,53.0,52.0,61.0,55.0,62.0,47.0,46.0,49.0,74.0,73.0,51.0,50.0,56.0,46.0,33.0,23.0,21.0,27.0,25.0,20.0,10.0,16.0,15.0,6.0,7.0,3.0,13.0 D82085,32.0,37.0,22.0,41.0,31.0,25.0,27.0,41.0,37.0,37.0,32.0,46.0,39.0,35.0,36.0,35.0,45.0,39.0,46.0,37.0,26.0,28.0,30.0,29.0,38.0,36.0,36.0,41.0,34.0,39.0,34.0,46.0,41.0,38.0,42.0,48.0,35.0,38.0,35.0,38.0,32.0,47.0,49.0,29.0,42.0,44.0,41.0,27.0,36.0,37.0,46.0,36.0,43.0,56.0,50.0,54.0,59.0,51.0,89.0,63.0,51.0,82.0,73.0,65.0,60.0,64.0,55.0,59.0,54.0,49.0,62.0,60.0,60.0,51.0,51.0,62.0,54.0,51.0,55.0,42.0,32.0,34.0,23.0,23.0,21.0,17.0,15.0,11.0,15.0,8.0,6.0,9.0,7.0,1.0,2.0,5.0 D82087,33.0,38.0,33.0,44.0,28.0,42.0,42.0,45.0,50.0,39.0,42.0,40.0,44.0,42.0,44.0,49.0,37.0,55.0,53.0,41.0,42.0,41.0,37.0,36.0,45.0,45.0,66.0,58.0,77.0,62.0,75.0,63.0,87.0,74.0,66.0,63.0,81.0,75.0,53.0,68.0,79.0,62.0,60.0,61.0,59.0,63.0,61.0,42.0,55.0,44.0,44.0,41.0,49.0,56.0,51.0,44.0,49.0,38.0,35.0,29.0,41.0,37.0,38.0,37.0,31.0,29.0,32.0,19.0,21.0,28.0,24.0,20.0,11.0,19.0,13.0,17.0,24.0,15.0,17.0,8.0,11.0,7.0,11.0,13.0,11.0,1.0,8.0,4.0,3.0,2.0,1.0,1.0,1.0,3.0,,3.0 D82088,35.0,26.0,31.0,35.0,27.0,30.0,35.0,34.0,37.0,39.0,36.0,24.0,15.0,30.0,31.0,20.0,16.0,21.0,239.0,561.0,712.0,733.0,714.0,632.0,632.0,597.0,521.0,535.0,504.0,445.0,435.0,388.0,341.0,269.0,211.0,168.0,158.0,128.0,114.0,94.0,89.0,90.0,57.0,55.0,60.0,46.0,62.0,41.0,41.0,27.0,21.0,35.0,23.0,16.0,21.0,25.0,22.0,20.0,19.0,16.0,18.0,18.0,15.0,14.0,10.0,16.0,7.0,11.0,8.0,7.0,7.0,5.0,5.0,7.0,2.0,4.0,4.0,3.0,2.0,2.0,2.0,1.0,3.0,1.0,1.0,,1.0,,1.0,1.0,,,,,, D82096,30.0,45.0,38.0,38.0,52.0,45.0,50.0,57.0,48.0,70.0,57.0,60.0,75.0,73.0,68.0,68.0,67.0,71.0,82.0,49.0,59.0,48.0,63.0,56.0,62.0,60.0,51.0,51.0,71.0,71.0,77.0,75.0,86.0,67.0,82.0,94.0,85.0,82.0,90.0,72.0,78.0,90.0,85.0,65.0,61.0,81.0,66.0,54.0,48.0,51.0,55.0,52.0,45.0,66.0,57.0,50.0,54.0,40.0,47.0,35.0,50.0,57.0,50.0,43.0,41.0,28.0,27.0,28.0,22.0,26.0,31.0,27.0,25.0,21.0,15.0,15.0,23.0,24.0,29.0,15.0,22.0,14.0,8.0,11.0,9.0,6.0,7.0,14.0,7.0,9.0,5.0,1.0,3.0,,4.0,1.0 D82099,57.0,82.0,74.0,90.0,81.0,87.0,89.0,100.0,111.0,88.0,96.0,102.0,110.0,118.0,102.0,104.0,108.0,100.0,106.0,85.0,106.0,83.0,82.0,93.0,92.0,82.0,110.0,126.0,146.0,147.0,133.0,140.0,176.0,166.0,158.0,159.0,186.0,186.0,202.0,187.0,153.0,174.0,157.0,132.0,154.0,148.0,136.0,121.0,118.0,133.0,125.0,125.0,135.0,116.0,132.0,117.0,116.0,120.0,115.0,113.0,108.0,121.0,82.0,84.0,102.0,71.0,84.0,65.0,73.0,61.0,49.0,58.0,49.0,59.0,43.0,54.0,42.0,49.0,46.0,44.0,38.0,23.0,29.0,37.0,17.0,20.0,24.0,12.0,11.0,11.0,4.0,16.0,7.0,6.0,5.0,7.0 D82100,14.0,10.0,12.0,19.0,20.0,11.0,19.0,29.0,27.0,27.0,19.0,24.0,19.0,23.0,22.0,25.0,26.0,25.0,13.0,17.0,20.0,19.0,21.0,15.0,24.0,21.0,18.0,22.0,19.0,27.0,32.0,21.0,23.0,27.0,28.0,28.0,19.0,24.0,29.0,22.0,15.0,17.0,17.0,23.0,20.0,32.0,20.0,23.0,16.0,25.0,20.0,20.0,26.0,35.0,25.0,36.0,34.0,40.0,29.0,46.0,33.0,26.0,45.0,37.0,40.0,43.0,46.0,27.0,36.0,34.0,39.0,35.0,28.0,22.0,46.0,34.0,24.0,29.0,34.0,35.0,19.0,27.0,20.0,15.0,13.0,8.0,8.0,12.0,3.0,1.0,7.0,6.0,4.0,5.0,1.0,3.0 D82104,25.0,30.0,28.0,41.0,38.0,33.0,49.0,44.0,53.0,37.0,43.0,44.0,55.0,60.0,61.0,46.0,48.0,43.0,52.0,37.0,37.0,45.0,61.0,38.0,43.0,36.0,50.0,58.0,56.0,52.0,43.0,42.0,39.0,40.0,46.0,40.0,47.0,48.0,50.0,51.0,39.0,55.0,37.0,56.0,54.0,66.0,52.0,42.0,50.0,44.0,49.0,65.0,62.0,73.0,67.0,61.0,75.0,69.0,68.0,79.0,67.0,85.0,90.0,87.0,72.0,76.0,58.0,63.0,70.0,64.0,54.0,56.0,67.0,62.0,61.0,64.0,63.0,58.0,79.0,54.0,66.0,38.0,47.0,36.0,35.0,20.0,20.0,21.0,14.0,13.0,15.0,17.0,9.0,4.0,8.0,9.0 D82105,32.0,39.0,34.0,38.0,39.0,39.0,43.0,42.0,38.0,48.0,45.0,37.0,47.0,56.0,42.0,44.0,36.0,49.0,27.0,43.0,35.0,44.0,36.0,33.0,46.0,29.0,40.0,43.0,49.0,49.0,60.0,43.0,49.0,57.0,50.0,47.0,51.0,50.0,51.0,47.0,46.0,43.0,35.0,29.0,52.0,50.0,33.0,31.0,36.0,29.0,48.0,44.0,41.0,45.0,52.0,44.0,55.0,43.0,49.0,58.0,69.0,52.0,43.0,54.0,55.0,46.0,65.0,41.0,53.0,54.0,42.0,31.0,50.0,49.0,36.0,36.0,45.0,44.0,51.0,39.0,19.0,28.0,14.0,18.0,10.0,22.0,16.0,16.0,13.0,6.0,12.0,5.0,5.0,4.0,2.0,5.0 D82106,31.0,29.0,24.0,25.0,31.0,26.0,31.0,32.0,32.0,27.0,35.0,40.0,26.0,36.0,23.0,19.0,31.0,24.0,20.0,16.0,30.0,30.0,31.0,31.0,49.0,58.0,62.0,76.0,64.0,74.0,72.0,60.0,61.0,60.0,49.0,70.0,69.0,49.0,53.0,52.0,51.0,61.0,40.0,54.0,59.0,45.0,36.0,49.0,38.0,35.0,31.0,46.0,39.0,31.0,33.0,32.0,32.0,36.0,35.0,35.0,35.0,27.0,28.0,27.0,23.0,26.0,31.0,25.0,21.0,14.0,34.0,24.0,17.0,23.0,18.0,14.0,16.0,15.0,12.0,13.0,14.0,13.0,8.0,6.0,5.0,12.0,8.0,8.0,7.0,4.0,9.0,2.0,2.0,,1.0,3.0 D82600,6.0,5.0,7.0,5.0,10.0,10.0,5.0,10.0,11.0,10.0,10.0,13.0,7.0,9.0,13.0,8.0,7.0,13.0,7.0,5.0,4.0,7.0,8.0,3.0,7.0,9.0,8.0,5.0,9.0,4.0,8.0,5.0,13.0,6.0,5.0,10.0,5.0,9.0,13.0,13.0,7.0,8.0,8.0,8.0,11.0,17.0,3.0,9.0,9.0,12.0,12.0,12.0,8.0,17.0,14.0,22.0,11.0,23.0,17.0,21.0,20.0,17.0,15.0,16.0,10.0,20.0,17.0,18.0,20.0,20.0,20.0,20.0,17.0,18.0,13.0,17.0,18.0,16.0,15.0,17.0,17.0,7.0,11.0,9.0,6.0,4.0,5.0,1.0,2.0,3.0,3.0,3.0,,2.0,3.0,1.0 D82604,13.0,20.0,8.0,16.0,13.0,19.0,10.0,18.0,19.0,17.0,15.0,15.0,23.0,17.0,13.0,17.0,24.0,23.0,13.0,12.0,17.0,12.0,17.0,9.0,11.0,6.0,18.0,10.0,15.0,19.0,18.0,26.0,35.0,26.0,23.0,20.0,16.0,13.0,29.0,11.0,17.0,10.0,17.0,10.0,17.0,9.0,20.0,22.0,22.0,18.0,19.0,18.0,31.0,20.0,22.0,32.0,30.0,33.0,32.0,28.0,40.0,44.0,27.0,31.0,37.0,40.0,27.0,38.0,20.0,20.0,27.0,20.0,19.0,25.0,17.0,27.0,29.0,26.0,32.0,20.0,17.0,20.0,13.0,9.0,6.0,12.0,7.0,8.0,7.0,9.0,11.0,6.0,4.0,1.0,2.0,3.0 D82618,11.0,25.0,13.0,31.0,20.0,26.0,32.0,39.0,28.0,33.0,40.0,27.0,44.0,37.0,44.0,45.0,30.0,28.0,30.0,37.0,30.0,19.0,32.0,21.0,30.0,19.0,30.0,26.0,24.0,40.0,33.0,41.0,32.0,35.0,37.0,21.0,22.0,40.0,50.0,39.0,31.0,42.0,27.0,30.0,33.0,36.0,39.0,36.0,35.0,33.0,36.0,38.0,46.0,41.0,44.0,44.0,30.0,29.0,46.0,46.0,38.0,52.0,36.0,37.0,28.0,35.0,26.0,32.0,42.0,41.0,30.0,35.0,37.0,24.0,35.0,25.0,17.0,37.0,30.0,20.0,27.0,23.0,17.0,24.0,10.0,19.0,15.0,13.0,13.0,7.0,10.0,7.0,3.0,3.0,1.0,6.0 D82621,31.0,18.0,31.0,34.0,34.0,22.0,32.0,32.0,28.0,43.0,36.0,21.0,42.0,41.0,34.0,27.0,36.0,41.0,31.0,29.0,28.0,29.0,35.0,25.0,27.0,30.0,29.0,31.0,20.0,35.0,30.0,29.0,32.0,26.0,29.0,33.0,26.0,36.0,39.0,33.0,27.0,29.0,32.0,25.0,21.0,31.0,31.0,30.0,33.0,29.0,32.0,40.0,35.0,45.0,41.0,47.0,35.0,48.0,46.0,50.0,59.0,53.0,68.0,64.0,60.0,57.0,49.0,42.0,48.0,56.0,45.0,48.0,40.0,49.0,43.0,41.0,66.0,62.0,54.0,47.0,39.0,35.0,37.0,27.0,18.0,21.0,13.0,18.0,19.0,8.0,9.0,2.0,7.0,5.0,3.0,8.0 D82624,42.0,40.0,54.0,55.0,45.0,56.0,68.0,58.0,55.0,61.0,60.0,58.0,68.0,61.0,47.0,47.0,50.0,41.0,42.0,48.0,36.0,34.0,28.0,22.0,38.0,39.0,32.0,47.0,44.0,43.0,58.0,55.0,46.0,51.0,62.0,59.0,57.0,48.0,62.0,56.0,58.0,52.0,56.0,62.0,66.0,54.0,66.0,49.0,48.0,69.0,49.0,49.0,48.0,48.0,61.0,55.0,61.0,41.0,47.0,61.0,57.0,57.0,53.0,44.0,41.0,46.0,44.0,38.0,40.0,50.0,32.0,32.0,45.0,42.0,27.0,25.0,35.0,27.0,26.0,28.0,26.0,22.0,19.0,18.0,9.0,10.0,6.0,5.0,5.0,9.0,7.0,5.0,4.0,3.0,2.0,1.0 D82628,9.0,6.0,13.0,17.0,10.0,10.0,15.0,22.0,15.0,23.0,23.0,17.0,14.0,14.0,21.0,18.0,18.0,14.0,23.0,17.0,23.0,15.0,9.0,17.0,13.0,10.0,18.0,10.0,10.0,15.0,23.0,25.0,14.0,13.0,17.0,11.0,16.0,15.0,22.0,18.0,20.0,25.0,12.0,23.0,17.0,16.0,26.0,19.0,24.0,19.0,26.0,22.0,22.0,28.0,29.0,34.0,30.0,37.0,39.0,43.0,35.0,32.0,41.0,36.0,34.0,35.0,47.0,32.0,34.0,31.0,32.0,27.0,28.0,29.0,39.0,30.0,34.0,42.0,34.0,29.0,35.0,23.0,21.0,20.0,10.0,10.0,13.0,8.0,9.0,9.0,7.0,4.0,1.0,5.0,1.0,2.0 D83002,61.0,57.0,68.0,70.0,75.0,66.0,88.0,84.0,81.0,94.0,100.0,89.0,111.0,100.0,115.0,106.0,95.0,91.0,116.0,94.0,88.0,92.0,79.0,70.0,91.0,99.0,92.0,102.0,114.0,100.0,91.0,99.0,108.0,116.0,110.0,95.0,111.0,137.0,90.0,116.0,103.0,89.0,105.0,89.0,89.0,114.0,90.0,80.0,80.0,78.0,83.0,94.0,100.0,111.0,114.0,101.0,106.0,101.0,127.0,101.0,118.0,103.0,113.0,99.0,106.0,75.0,89.0,74.0,78.0,76.0,75.0,68.0,70.0,76.0,75.0,58.0,52.0,95.0,93.0,74.0,78.0,45.0,34.0,48.0,29.0,43.0,34.0,30.0,23.0,13.0,12.0,6.0,7.0,5.0,5.0,11.0 D83009,64.0,55.0,63.0,64.0,71.0,77.0,71.0,66.0,90.0,87.0,91.0,88.0,110.0,98.0,93.0,118.0,116.0,112.0,93.0,101.0,92.0,100.0,90.0,97.0,88.0,91.0,89.0,102.0,93.0,82.0,97.0,108.0,94.0,103.0,107.0,101.0,98.0,105.0,97.0,110.0,108.0,77.0,94.0,96.0,101.0,97.0,89.0,85.0,103.0,119.0,101.0,105.0,132.0,146.0,142.0,132.0,147.0,149.0,152.0,153.0,159.0,134.0,148.0,150.0,154.0,121.0,131.0,113.0,114.0,140.0,123.0,134.0,122.0,124.0,113.0,128.0,127.0,151.0,157.0,117.0,109.0,110.0,79.0,84.0,57.0,61.0,59.0,47.0,43.0,34.0,33.0,23.0,20.0,20.0,11.0,20.0 D83010,13.0,20.0,21.0,21.0,20.0,26.0,20.0,23.0,20.0,28.0,35.0,25.0,23.0,29.0,24.0,27.0,28.0,30.0,17.0,24.0,26.0,24.0,27.0,28.0,27.0,37.0,29.0,29.0,23.0,28.0,25.0,23.0,21.0,25.0,27.0,35.0,31.0,33.0,21.0,22.0,32.0,18.0,20.0,36.0,28.0,26.0,19.0,16.0,28.0,44.0,35.0,33.0,37.0,41.0,49.0,41.0,44.0,53.0,44.0,59.0,49.0,57.0,58.0,59.0,72.0,44.0,62.0,53.0,64.0,50.0,42.0,61.0,50.0,51.0,48.0,46.0,63.0,57.0,64.0,49.0,43.0,50.0,31.0,28.0,18.0,23.0,20.0,19.0,18.0,7.0,4.0,9.0,9.0,6.0,2.0,7.0 D83011,44.0,44.0,44.0,54.0,36.0,35.0,54.0,56.0,54.0,59.0,70.0,69.0,58.0,57.0,57.0,67.0,64.0,69.0,53.0,57.0,49.0,49.0,57.0,53.0,53.0,46.0,53.0,61.0,53.0,73.0,86.0,53.0,79.0,69.0,78.0,84.0,71.0,70.0,78.0,80.0,72.0,75.0,65.0,57.0,72.0,55.0,73.0,58.0,45.0,62.0,74.0,75.0,80.0,80.0,101.0,91.0,71.0,94.0,94.0,91.0,100.0,91.0,79.0,88.0,78.0,101.0,91.0,83.0,72.0,76.0,64.0,88.0,74.0,79.0,68.0,80.0,76.0,95.0,93.0,72.0,74.0,48.0,51.0,41.0,35.0,32.0,30.0,33.0,26.0,20.0,24.0,7.0,12.0,12.0,4.0,11.0 D83016,32.0,43.0,39.0,44.0,41.0,46.0,47.0,55.0,43.0,47.0,59.0,61.0,63.0,75.0,54.0,60.0,61.0,67.0,59.0,47.0,59.0,53.0,52.0,58.0,51.0,59.0,54.0,62.0,49.0,51.0,49.0,62.0,54.0,44.0,70.0,69.0,72.0,63.0,70.0,59.0,59.0,71.0,67.0,68.0,67.0,64.0,66.0,52.0,60.0,63.0,51.0,65.0,69.0,72.0,73.0,73.0,90.0,55.0,100.0,66.0,70.0,77.0,74.0,77.0,79.0,68.0,77.0,58.0,83.0,44.0,71.0,60.0,51.0,56.0,59.0,58.0,62.0,84.0,67.0,63.0,61.0,30.0,46.0,30.0,27.0,22.0,28.0,33.0,21.0,14.0,13.0,16.0,8.0,7.0,5.0,8.0 D83022,8.0,15.0,18.0,20.0,13.0,17.0,21.0,21.0,21.0,14.0,27.0,19.0,20.0,35.0,28.0,21.0,23.0,28.0,33.0,22.0,18.0,27.0,20.0,30.0,28.0,35.0,25.0,31.0,20.0,26.0,27.0,24.0,25.0,20.0,17.0,21.0,18.0,20.0,26.0,23.0,29.0,22.0,27.0,18.0,21.0,25.0,29.0,16.0,24.0,21.0,23.0,18.0,31.0,26.0,26.0,36.0,31.0,35.0,24.0,53.0,41.0,41.0,54.0,38.0,43.0,40.0,49.0,46.0,47.0,51.0,45.0,52.0,48.0,54.0,45.0,54.0,42.0,43.0,53.0,32.0,33.0,35.0,38.0,24.0,14.0,13.0,16.0,10.0,18.0,13.0,17.0,8.0,6.0,7.0,6.0,10.0 D83023,47.0,41.0,57.0,44.0,43.0,56.0,71.0,73.0,74.0,67.0,59.0,78.0,85.0,59.0,83.0,49.0,69.0,75.0,84.0,65.0,68.0,65.0,74.0,55.0,59.0,70.0,61.0,70.0,65.0,70.0,59.0,87.0,62.0,77.0,84.0,78.0,84.0,98.0,105.0,91.0,96.0,83.0,88.0,66.0,54.0,93.0,75.0,70.0,52.0,69.0,55.0,62.0,64.0,73.0,83.0,80.0,72.0,83.0,97.0,73.0,65.0,103.0,81.0,58.0,70.0,71.0,67.0,62.0,67.0,62.0,53.0,51.0,48.0,46.0,60.0,63.0,67.0,59.0,64.0,49.0,47.0,39.0,44.0,32.0,29.0,33.0,20.0,29.0,19.0,14.0,12.0,9.0,8.0,10.0,3.0,13.0 D83030,40.0,46.0,31.0,38.0,39.0,42.0,35.0,47.0,36.0,43.0,44.0,38.0,49.0,43.0,49.0,39.0,50.0,57.0,52.0,51.0,45.0,39.0,46.0,45.0,39.0,41.0,43.0,42.0,47.0,41.0,67.0,61.0,60.0,68.0,65.0,71.0,86.0,82.0,80.0,58.0,56.0,55.0,54.0,64.0,54.0,57.0,51.0,51.0,55.0,49.0,43.0,51.0,48.0,49.0,47.0,42.0,56.0,59.0,61.0,52.0,63.0,73.0,48.0,54.0,43.0,57.0,58.0,63.0,37.0,39.0,31.0,32.0,32.0,30.0,26.0,36.0,29.0,30.0,38.0,29.0,18.0,15.0,6.0,16.0,8.0,15.0,9.0,8.0,5.0,9.0,2.0,3.0,3.0,1.0,2.0,4.0 D83034,52.0,29.0,49.0,32.0,40.0,42.0,49.0,47.0,60.0,43.0,60.0,51.0,93.0,70.0,64.0,62.0,46.0,59.0,51.0,54.0,41.0,62.0,50.0,40.0,63.0,55.0,67.0,58.0,67.0,70.0,50.0,76.0,52.0,61.0,63.0,77.0,59.0,57.0,54.0,70.0,66.0,63.0,65.0,66.0,73.0,72.0,55.0,71.0,61.0,63.0,62.0,62.0,70.0,82.0,75.0,87.0,102.0,82.0,90.0,103.0,91.0,98.0,77.0,80.0,105.0,86.0,84.0,92.0,88.0,84.0,83.0,93.0,79.0,70.0,83.0,72.0,75.0,73.0,80.0,66.0,60.0,55.0,43.0,38.0,36.0,40.0,25.0,29.0,20.0,27.0,17.0,14.0,15.0,8.0,8.0,16.0 D83035,32.0,43.0,25.0,42.0,52.0,36.0,45.0,49.0,45.0,54.0,49.0,46.0,55.0,52.0,61.0,50.0,53.0,41.0,40.0,41.0,48.0,53.0,39.0,36.0,48.0,36.0,34.0,33.0,48.0,46.0,53.0,49.0,55.0,48.0,43.0,61.0,72.0,51.0,57.0,57.0,64.0,45.0,44.0,43.0,41.0,50.0,44.0,47.0,45.0,50.0,45.0,59.0,54.0,73.0,70.0,73.0,68.0,67.0,74.0,88.0,89.0,93.0,93.0,88.0,90.0,93.0,77.0,83.0,95.0,104.0,77.0,91.0,88.0,79.0,88.0,80.0,97.0,95.0,88.0,60.0,71.0,50.0,59.0,44.0,30.0,37.0,38.0,23.0,22.0,28.0,15.0,19.0,16.0,9.0,7.0,6.0 D83047,79.0,62.0,78.0,107.0,60.0,81.0,66.0,92.0,81.0,88.0,94.0,88.0,97.0,82.0,94.0,74.0,100.0,91.0,80.0,95.0,83.0,72.0,67.0,61.0,67.0,69.0,74.0,94.0,87.0,88.0,102.0,93.0,95.0,95.0,92.0,122.0,109.0,107.0,103.0,94.0,97.0,108.0,87.0,89.0,93.0,90.0,99.0,77.0,70.0,79.0,70.0,92.0,103.0,119.0,85.0,115.0,105.0,85.0,113.0,122.0,120.0,111.0,110.0,91.0,93.0,87.0,109.0,90.0,88.0,86.0,73.0,62.0,101.0,78.0,93.0,85.0,84.0,114.0,98.0,77.0,74.0,67.0,44.0,40.0,33.0,36.0,38.0,29.0,29.0,19.0,17.0,13.0,12.0,6.0,5.0,11.0 D83608,20.0,14.0,22.0,26.0,19.0,24.0,33.0,31.0,31.0,32.0,31.0,39.0,38.0,39.0,43.0,60.0,40.0,36.0,27.0,25.0,27.0,35.0,23.0,29.0,31.0,20.0,26.0,31.0,36.0,31.0,19.0,52.0,33.0,33.0,37.0,30.0,30.0,33.0,38.0,39.0,37.0,34.0,35.0,38.0,46.0,33.0,28.0,36.0,32.0,34.0,38.0,31.0,38.0,42.0,44.0,47.0,53.0,42.0,51.0,48.0,46.0,46.0,41.0,40.0,41.0,38.0,43.0,42.0,41.0,38.0,39.0,40.0,32.0,37.0,47.0,37.0,38.0,45.0,47.0,38.0,33.0,31.0,30.0,16.0,12.0,10.0,13.0,15.0,13.0,9.0,7.0,11.0,2.0,5.0,2.0,5.0 Y00297,14.0,17.0,23.0,30.0,31.0,35.0,26.0,36.0,41.0,44.0,35.0,35.0,43.0,34.0,37.0,33.0,40.0,23.0,32.0,21.0,30.0,24.0,22.0,18.0,21.0,20.0,23.0,29.0,14.0,23.0,27.0,14.0,18.0,27.0,29.0,25.0,32.0,45.0,43.0,43.0,36.0,31.0,36.0,37.0,36.0,27.0,21.0,30.0,22.0,29.0,24.0,30.0,33.0,34.0,19.0,31.0,40.0,35.0,35.0,28.0,34.0,38.0,37.0,28.0,29.0,27.0,23.0,22.0,33.0,27.0,28.0,29.0,24.0,17.0,19.0,20.0,22.0,26.0,19.0,12.0,14.0,14.0,9.0,19.0,10.0,15.0,8.0,6.0,7.0,5.0,,3.0,2.0,,,2.0 Y01690,50.0,35.0,40.0,43.0,42.0,32.0,50.0,44.0,72.0,41.0,64.0,54.0,75.0,43.0,46.0,35.0,62.0,52.0,52.0,50.0,44.0,33.0,46.0,58.0,33.0,63.0,45.0,51.0,63.0,70.0,63.0,60.0,68.0,85.0,77.0,74.0,61.0,82.0,75.0,65.0,64.0,58.0,59.0,68.0,66.0,84.0,59.0,47.0,49.0,38.0,54.0,44.0,33.0,45.0,43.0,38.0,47.0,34.0,46.0,37.0,28.0,36.0,31.0,27.0,33.0,27.0,22.0,19.0,25.0,20.0,16.0,18.0,15.0,14.0,19.0,11.0,8.0,12.0,12.0,10.0,13.0,8.0,7.0,3.0,5.0,3.0,1.0,3.0,3.0,2.0,3.0,,2.0,1.0,,1.0 Y02751,50.0,46.0,63.0,61.0,53.0,73.0,58.0,67.0,51.0,69.0,68.0,49.0,56.0,56.0,35.0,43.0,42.0,25.0,37.0,35.0,53.0,53.0,54.0,73.0,92.0,76.0,96.0,118.0,101.0,152.0,131.0,162.0,138.0,195.0,193.0,206.0,211.0,202.0,214.0,173.0,163.0,156.0,146.0,123.0,133.0,115.0,97.0,71.0,85.0,61.0,67.0,74.0,62.0,44.0,62.0,58.0,51.0,52.0,45.0,53.0,49.0,36.0,45.0,43.0,29.0,33.0,25.0,31.0,26.0,25.0,20.0,23.0,25.0,15.0,19.0,17.0,15.0,20.0,11.0,13.0,15.0,12.0,14.0,11.0,11.0,4.0,11.0,7.0,9.0,4.0,4.0,4.0,2.0,,3.0,6.0 Y03222,26.0,23.0,29.0,34.0,38.0,32.0,35.0,36.0,33.0,35.0,45.0,36.0,45.0,47.0,30.0,28.0,46.0,42.0,43.0,35.0,28.0,30.0,28.0,43.0,31.0,35.0,27.0,22.0,24.0,39.0,33.0,42.0,53.0,42.0,31.0,36.0,34.0,39.0,31.0,38.0,35.0,33.0,31.0,32.0,36.0,41.0,42.0,24.0,28.0,43.0,36.0,39.0,49.0,46.0,44.0,49.0,43.0,56.0,44.0,69.0,41.0,59.0,59.0,48.0,62.0,53.0,41.0,33.0,38.0,39.0,40.0,37.0,45.0,35.0,32.0,41.0,44.0,52.0,44.0,32.0,29.0,15.0,33.0,16.0,16.0,15.0,11.0,14.0,9.0,5.0,12.0,12.0,6.0,3.0,4.0,1.0 Y03595,17.0,26.0,32.0,36.0,35.0,41.0,37.0,38.0,39.0,35.0,48.0,39.0,40.0,50.0,50.0,40.0,41.0,34.0,38.0,30.0,45.0,40.0,28.0,38.0,29.0,45.0,36.0,43.0,56.0,43.0,47.0,45.0,53.0,53.0,46.0,57.0,57.0,53.0,45.0,47.0,51.0,58.0,55.0,56.0,41.0,55.0,54.0,42.0,40.0,43.0,43.0,42.0,37.0,50.0,41.0,33.0,46.0,37.0,51.0,47.0,45.0,48.0,54.0,38.0,38.0,42.0,31.0,36.0,33.0,34.0,28.0,32.0,33.0,30.0,41.0,37.0,30.0,31.0,40.0,23.0,28.0,16.0,21.0,18.0,15.0,20.0,16.0,14.0,6.0,13.0,6.0,5.0,2.0,2.0,,5.0 Y05291,,,,1.0,,1.0,1.0,2.0,,2.0,,,1.0,,,,,,,,,,,,,,1.0,1.0,1.0,1.0,2.0,1.0,,,1.0,,1.0,,,,,,,,,1.0,,,,,,,,,,,,,,,,,,1.0,,1.0,,1.0,,,,2.0,1.0,,,,,,,,,,,1.0,1.0,,2.0,1.0,,,,,,,, Y06275,29.0,40.0,31.0,33.0,35.0,44.0,39.0,41.0,45.0,38.0,40.0,34.0,47.0,62.0,44.0,57.0,43.0,51.0,48.0,42.0,43.0,40.0,39.0,37.0,26.0,30.0,47.0,42.0,45.0,45.0,47.0,50.0,61.0,59.0,57.0,58.0,48.0,51.0,49.0,49.0,60.0,61.0,62.0,62.0,53.0,54.0,61.0,30.0,49.0,56.0,45.0,32.0,45.0,39.0,50.0,45.0,50.0,34.0,53.0,30.0,45.0,34.0,48.0,41.0,35.0,26.0,29.0,25.0,27.0,24.0,25.0,21.0,13.0,18.0,14.0,25.0,16.0,22.0,29.0,16.0,8.0,8.0,13.0,4.0,7.0,10.0,8.0,5.0,2.0,4.0,1.0,,2.0,1.0,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 C81018,30.0,41.0,44.0,50.0,42.0,34.0,37.0,51.0,51.0,50.0,49.0,41.0,46.0,49.0,56.0,46.0,48.0,44.0,45.0,48.0,29.0,43.0,35.0,38.0,51.0,47.0,36.0,46.0,38.0,32.0,43.0,47.0,42.0,45.0,47.0,50.0,38.0,49.0,41.0,44.0,42.0,52.0,45.0,47.0,51.0,41.0,46.0,45.0,52.0,43.0,66.0,52.0,65.0,78.0,63.0,47.0,72.0,82.0,92.0,80.0,88.0,78.0,97.0,62.0,69.0,62.0,65.0,74.0,55.0,50.0,63.0,56.0,55.0,50.0,46.0,56.0,52.0,58.0,61.0,40.0,38.0,46.0,21.0,31.0,15.0,18.0,19.0,18.0,15.0,15.0,14.0,5.0,5.0,4.0,3.0,12.0 M83001,58.0,47.0,69.0,60.0,57.0,84.0,70.0,89.0,66.0,62.0,77.0,58.0,73.0,71.0,71.0,64.0,72.0,51.0,51.0,68.0,44.0,58.0,57.0,59.0,42.0,70.0,86.0,55.0,64.0,77.0,60.0,93.0,70.0,89.0,85.0,78.0,74.0,87.0,101.0,80.0,75.0,78.0,83.0,80.0,81.0,67.0,89.0,63.0,54.0,54.0,84.0,66.0,83.0,94.0,85.0,77.0,89.0,103.0,78.0,85.0,71.0,91.0,101.0,75.0,89.0,65.0,72.0,80.0,74.0,68.0,67.0,59.0,57.0,62.0,57.0,59.0,64.0,65.0,55.0,40.0,40.0,58.0,33.0,26.0,24.0,16.0,21.0,18.0,20.0,6.0,6.0,2.0,5.0,4.0,4.0,3.0 M83004,23.0,35.0,37.0,21.0,44.0,30.0,45.0,23.0,32.0,41.0,36.0,47.0,46.0,42.0,36.0,35.0,44.0,48.0,56.0,44.0,58.0,34.0,41.0,43.0,55.0,47.0,46.0,47.0,40.0,46.0,43.0,40.0,53.0,39.0,51.0,50.0,59.0,60.0,51.0,43.0,57.0,56.0,47.0,53.0,69.0,52.0,48.0,31.0,46.0,44.0,56.0,57.0,51.0,53.0,72.0,47.0,58.0,66.0,68.0,74.0,72.0,88.0,75.0,77.0,76.0,64.0,68.0,84.0,75.0,62.0,69.0,58.0,61.0,61.0,64.0,50.0,63.0,56.0,52.0,53.0,50.0,43.0,48.0,28.0,29.0,18.0,24.0,15.0,15.0,14.0,13.0,5.0,2.0,9.0,3.0,3.0 M83005,15.0,24.0,22.0,16.0,22.0,39.0,31.0,27.0,30.0,28.0,29.0,31.0,26.0,32.0,28.0,35.0,38.0,31.0,27.0,29.0,36.0,31.0,25.0,28.0,29.0,23.0,32.0,29.0,26.0,35.0,29.0,33.0,32.0,43.0,44.0,38.0,41.0,45.0,43.0,41.0,58.0,41.0,40.0,32.0,42.0,47.0,32.0,31.0,38.0,34.0,34.0,33.0,26.0,48.0,39.0,32.0,31.0,37.0,38.0,37.0,28.0,33.0,27.0,46.0,40.0,41.0,30.0,50.0,35.0,32.0,35.0,34.0,39.0,35.0,24.0,24.0,22.0,23.0,28.0,28.0,19.0,11.0,17.0,12.0,15.0,10.0,14.0,11.0,8.0,5.0,,6.0,3.0,1.0,,3.0 M83006,140.0,146.0,147.0,146.0,165.0,142.0,149.0,161.0,135.0,170.0,177.0,163.0,189.0,175.0,183.0,164.0,163.0,169.0,152.0,132.0,122.0,120.0,133.0,120.0,128.0,151.0,149.0,144.0,161.0,172.0,185.0,183.0,194.0,218.0,200.0,217.0,209.0,204.0,175.0,223.0,191.0,198.0,169.0,201.0,194.0,207.0,215.0,185.0,204.0,200.0,217.0,215.0,194.0,227.0,231.0,211.0,238.0,213.0,212.0,192.0,202.0,226.0,197.0,158.0,188.0,199.0,162.0,158.0,157.0,168.0,173.0,163.0,177.0,152.0,147.0,167.0,182.0,193.0,181.0,141.0,122.0,114.0,126.0,108.0,80.0,77.0,64.0,71.0,52.0,45.0,33.0,30.0,12.0,19.0,18.0,18.0 M83007,50.0,50.0,47.0,29.0,42.0,44.0,46.0,36.0,57.0,39.0,49.0,43.0,42.0,44.0,67.0,54.0,45.0,40.0,45.0,42.0,48.0,45.0,40.0,41.0,49.0,51.0,57.0,47.0,54.0,58.0,56.0,53.0,59.0,39.0,57.0,65.0,69.0,61.0,68.0,52.0,48.0,59.0,64.0,71.0,62.0,58.0,47.0,42.0,47.0,48.0,45.0,52.0,60.0,60.0,69.0,61.0,53.0,57.0,58.0,52.0,73.0,68.0,70.0,60.0,48.0,55.0,46.0,48.0,35.0,25.0,24.0,36.0,29.0,21.0,25.0,24.0,33.0,29.0,34.0,13.0,23.0,17.0,15.0,12.0,13.0,10.0,15.0,6.0,7.0,7.0,10.0,6.0,2.0,2.0,1.0,2.0 M83009,41.0,34.0,45.0,43.0,43.0,45.0,46.0,47.0,56.0,58.0,57.0,61.0,57.0,59.0,48.0,55.0,67.0,54.0,53.0,56.0,54.0,45.0,46.0,41.0,40.0,54.0,39.0,71.0,61.0,56.0,50.0,51.0,46.0,53.0,54.0,51.0,56.0,54.0,53.0,56.0,43.0,43.0,51.0,57.0,56.0,85.0,62.0,56.0,64.0,66.0,65.0,57.0,75.0,84.0,78.0,81.0,81.0,84.0,92.0,91.0,111.0,91.0,85.0,94.0,91.0,91.0,90.0,72.0,79.0,62.0,73.0,53.0,58.0,57.0,66.0,67.0,77.0,76.0,87.0,52.0,52.0,67.0,60.0,42.0,33.0,34.0,34.0,32.0,26.0,21.0,14.0,13.0,10.0,9.0,1.0,10.0 M83010,58.0,55.0,67.0,66.0,70.0,90.0,83.0,76.0,68.0,93.0,83.0,87.0,90.0,74.0,89.0,96.0,101.0,76.0,77.0,80.0,75.0,67.0,63.0,58.0,68.0,70.0,60.0,64.0,58.0,96.0,98.0,89.0,94.0,115.0,90.0,97.0,98.0,96.0,91.0,107.0,76.0,82.0,94.0,85.0,91.0,81.0,83.0,58.0,74.0,64.0,70.0,53.0,61.0,59.0,63.0,53.0,65.0,64.0,41.0,55.0,43.0,45.0,40.0,47.0,40.0,38.0,46.0,40.0,29.0,44.0,37.0,26.0,36.0,30.0,19.0,23.0,25.0,17.0,18.0,20.0,14.0,18.0,18.0,12.0,9.0,6.0,6.0,3.0,9.0,6.0,8.0,1.0,5.0,2.0,,7.0 M83011,27.0,24.0,32.0,29.0,29.0,33.0,38.0,38.0,32.0,31.0,37.0,36.0,36.0,43.0,39.0,47.0,46.0,36.0,47.0,31.0,44.0,36.0,47.0,45.0,38.0,33.0,32.0,44.0,43.0,31.0,44.0,44.0,46.0,50.0,55.0,49.0,47.0,46.0,44.0,43.0,56.0,45.0,45.0,46.0,53.0,36.0,37.0,39.0,35.0,39.0,41.0,43.0,48.0,60.0,56.0,74.0,69.0,60.0,48.0,58.0,61.0,67.0,74.0,55.0,45.0,53.0,49.0,41.0,57.0,46.0,56.0,50.0,60.0,50.0,46.0,44.0,40.0,52.0,69.0,46.0,32.0,44.0,28.0,25.0,16.0,29.0,17.0,11.0,17.0,10.0,9.0,10.0,,1.0,3.0,3.0 M83012,23.0,27.0,35.0,35.0,35.0,28.0,34.0,43.0,44.0,42.0,50.0,49.0,51.0,52.0,64.0,40.0,42.0,49.0,47.0,31.0,43.0,44.0,42.0,50.0,39.0,36.0,46.0,40.0,35.0,44.0,40.0,52.0,49.0,49.0,54.0,50.0,56.0,45.0,53.0,46.0,61.0,55.0,48.0,47.0,63.0,44.0,40.0,36.0,37.0,44.0,51.0,54.0,67.0,63.0,60.0,81.0,75.0,58.0,67.0,51.0,53.0,63.0,54.0,63.0,65.0,54.0,74.0,49.0,43.0,39.0,45.0,43.0,48.0,42.0,53.0,39.0,35.0,51.0,50.0,40.0,40.0,36.0,28.0,24.0,26.0,30.0,16.0,16.0,12.0,9.0,18.0,8.0,9.0,1.0,2.0,5.0 M83013,15.0,10.0,16.0,12.0,15.0,14.0,16.0,16.0,16.0,21.0,14.0,17.0,24.0,23.0,28.0,23.0,26.0,24.0,24.0,13.0,16.0,28.0,21.0,16.0,19.0,19.0,25.0,18.0,21.0,22.0,31.0,21.0,9.0,13.0,20.0,27.0,28.0,14.0,17.0,22.0,20.0,12.0,13.0,24.0,27.0,25.0,32.0,19.0,25.0,24.0,25.0,26.0,31.0,40.0,32.0,40.0,40.0,45.0,50.0,51.0,45.0,46.0,50.0,47.0,36.0,44.0,37.0,28.0,35.0,37.0,34.0,35.0,27.0,28.0,34.0,27.0,33.0,39.0,39.0,39.0,25.0,31.0,27.0,29.0,15.0,8.0,10.0,11.0,11.0,4.0,5.0,7.0,2.0,2.0,1.0,7.0 M83014,44.0,48.0,50.0,56.0,55.0,46.0,60.0,61.0,62.0,65.0,61.0,71.0,84.0,77.0,97.0,75.0,72.0,72.0,66.0,67.0,49.0,66.0,60.0,55.0,55.0,60.0,62.0,53.0,75.0,64.0,66.0,70.0,72.0,66.0,86.0,94.0,96.0,84.0,91.0,76.0,74.0,79.0,79.0,79.0,82.0,75.0,70.0,69.0,65.0,77.0,64.0,65.0,60.0,78.0,65.0,82.0,52.0,63.0,63.0,65.0,58.0,41.0,57.0,49.0,43.0,44.0,46.0,42.0,37.0,41.0,41.0,31.0,44.0,29.0,38.0,27.0,33.0,30.0,31.0,36.0,26.0,17.0,23.0,15.0,18.0,12.0,10.0,10.0,7.0,6.0,9.0,1.0,4.0,4.0,1.0,8.0 M83015,37.0,23.0,30.0,41.0,34.0,26.0,31.0,40.0,48.0,43.0,50.0,53.0,37.0,42.0,39.0,47.0,28.0,31.0,38.0,38.0,50.0,44.0,39.0,31.0,28.0,35.0,19.0,28.0,43.0,39.0,42.0,26.0,50.0,49.0,29.0,36.0,32.0,24.0,47.0,51.0,49.0,38.0,40.0,44.0,44.0,39.0,46.0,38.0,44.0,43.0,51.0,49.0,41.0,66.0,74.0,67.0,61.0,57.0,69.0,55.0,62.0,65.0,57.0,61.0,60.0,60.0,55.0,52.0,46.0,45.0,52.0,57.0,39.0,38.0,46.0,62.0,44.0,52.0,49.0,31.0,41.0,36.0,27.0,22.0,23.0,18.0,14.0,18.0,13.0,6.0,4.0,6.0,7.0,3.0,4.0,5.0 M83016,34.0,25.0,44.0,37.0,41.0,31.0,35.0,51.0,31.0,33.0,30.0,42.0,42.0,52.0,43.0,31.0,23.0,29.0,32.0,38.0,26.0,35.0,33.0,30.0,27.0,29.0,38.0,32.0,24.0,53.0,33.0,37.0,38.0,40.0,52.0,42.0,43.0,58.0,45.0,55.0,57.0,59.0,50.0,55.0,37.0,34.0,47.0,25.0,26.0,31.0,32.0,36.0,47.0,44.0,41.0,45.0,42.0,48.0,55.0,53.0,55.0,58.0,54.0,61.0,63.0,44.0,52.0,60.0,54.0,52.0,40.0,55.0,44.0,48.0,44.0,50.0,35.0,51.0,39.0,31.0,36.0,28.0,33.0,28.0,21.0,16.0,20.0,14.0,7.0,6.0,9.0,3.0,3.0,6.0,1.0,1.0 M83017,25.0,21.0,25.0,25.0,22.0,33.0,24.0,23.0,25.0,25.0,30.0,22.0,20.0,23.0,15.0,23.0,29.0,21.0,19.0,21.0,17.0,19.0,18.0,24.0,20.0,30.0,19.0,20.0,16.0,23.0,17.0,14.0,26.0,24.0,26.0,27.0,29.0,30.0,26.0,34.0,24.0,23.0,31.0,26.0,23.0,24.0,24.0,21.0,19.0,26.0,32.0,21.0,34.0,29.0,22.0,33.0,41.0,52.0,46.0,43.0,42.0,44.0,44.0,51.0,43.0,36.0,35.0,44.0,37.0,35.0,40.0,41.0,44.0,29.0,40.0,32.0,34.0,35.0,46.0,27.0,26.0,20.0,19.0,22.0,12.0,11.0,13.0,6.0,5.0,7.0,4.0,5.0,4.0,3.0,, M83018,32.0,31.0,42.0,37.0,34.0,44.0,39.0,59.0,54.0,51.0,52.0,45.0,50.0,57.0,44.0,46.0,42.0,54.0,28.0,50.0,48.0,40.0,35.0,38.0,42.0,31.0,42.0,42.0,44.0,49.0,50.0,37.0,47.0,47.0,47.0,46.0,53.0,50.0,59.0,42.0,39.0,50.0,52.0,47.0,67.0,58.0,50.0,37.0,39.0,51.0,42.0,53.0,55.0,58.0,56.0,52.0,62.0,66.0,72.0,64.0,75.0,55.0,65.0,82.0,65.0,66.0,55.0,58.0,55.0,59.0,54.0,52.0,49.0,43.0,46.0,48.0,52.0,62.0,41.0,28.0,39.0,42.0,31.0,29.0,22.0,20.0,19.0,15.0,16.0,17.0,8.0,6.0,5.0,7.0,3.0,9.0 M83020,27.0,31.0,31.0,31.0,29.0,43.0,45.0,44.0,44.0,52.0,48.0,50.0,55.0,76.0,65.0,53.0,69.0,59.0,58.0,56.0,44.0,41.0,42.0,55.0,40.0,40.0,52.0,42.0,49.0,50.0,40.0,53.0,52.0,44.0,51.0,49.0,55.0,56.0,57.0,43.0,53.0,46.0,53.0,54.0,66.0,72.0,65.0,55.0,48.0,54.0,64.0,69.0,66.0,73.0,68.0,82.0,68.0,90.0,77.0,80.0,82.0,76.0,62.0,72.0,65.0,59.0,56.0,65.0,64.0,55.0,62.0,70.0,66.0,48.0,51.0,55.0,56.0,77.0,57.0,47.0,31.0,36.0,40.0,28.0,20.0,20.0,16.0,21.0,20.0,9.0,13.0,9.0,6.0,5.0,3.0,3.0 M83021,55.0,45.0,50.0,63.0,54.0,54.0,59.0,69.0,59.0,71.0,59.0,79.0,70.0,80.0,74.0,69.0,55.0,71.0,54.0,68.0,68.0,60.0,60.0,59.0,51.0,62.0,70.0,69.0,56.0,88.0,58.0,64.0,81.0,71.0,76.0,92.0,89.0,74.0,70.0,73.0,63.0,78.0,74.0,61.0,83.0,86.0,74.0,58.0,58.0,67.0,76.0,69.0,62.0,62.0,82.0,73.0,81.0,61.0,74.0,60.0,70.0,61.0,50.0,71.0,59.0,52.0,47.0,39.0,39.0,56.0,35.0,48.0,57.0,34.0,47.0,52.0,33.0,39.0,32.0,33.0,28.0,26.0,26.0,23.0,10.0,15.0,13.0,9.0,7.0,8.0,6.0,7.0,5.0,,3.0,2.0 M83022,16.0,21.0,23.0,29.0,27.0,25.0,31.0,42.0,31.0,34.0,38.0,38.0,27.0,41.0,39.0,46.0,38.0,35.0,36.0,38.0,35.0,28.0,29.0,34.0,34.0,42.0,34.0,30.0,35.0,23.0,19.0,31.0,26.0,41.0,31.0,27.0,40.0,44.0,44.0,49.0,41.0,38.0,41.0,41.0,45.0,40.0,38.0,34.0,37.0,45.0,38.0,43.0,67.0,68.0,62.0,68.0,60.0,66.0,72.0,59.0,78.0,65.0,60.0,62.0,65.0,82.0,70.0,64.0,55.0,56.0,57.0,48.0,51.0,61.0,51.0,62.0,57.0,48.0,73.0,55.0,50.0,38.0,40.0,31.0,29.0,20.0,26.0,15.0,19.0,11.0,10.0,6.0,4.0,1.0,7.0,10.0 M83023,34.0,40.0,53.0,37.0,38.0,55.0,24.0,40.0,47.0,34.0,50.0,42.0,46.0,57.0,51.0,48.0,54.0,54.0,44.0,54.0,46.0,35.0,43.0,55.0,55.0,53.0,57.0,58.0,55.0,58.0,65.0,53.0,57.0,54.0,62.0,50.0,65.0,58.0,67.0,47.0,47.0,55.0,60.0,61.0,56.0,55.0,43.0,44.0,48.0,50.0,53.0,37.0,60.0,77.0,69.0,81.0,83.0,55.0,65.0,70.0,71.0,65.0,63.0,72.0,78.0,53.0,73.0,64.0,59.0,45.0,56.0,53.0,40.0,56.0,50.0,58.0,54.0,61.0,64.0,43.0,41.0,38.0,30.0,31.0,22.0,30.0,20.0,16.0,10.0,13.0,12.0,6.0,4.0,1.0,1.0,3.0 M83024,50.0,50.0,67.0,54.0,45.0,69.0,51.0,51.0,54.0,72.0,54.0,61.0,64.0,53.0,57.0,47.0,71.0,54.0,52.0,51.0,42.0,43.0,59.0,43.0,65.0,71.0,76.0,61.0,73.0,80.0,80.0,79.0,103.0,91.0,90.0,75.0,78.0,73.0,78.0,61.0,66.0,67.0,69.0,74.0,63.0,61.0,57.0,45.0,50.0,54.0,79.0,73.0,77.0,74.0,86.0,72.0,66.0,83.0,76.0,81.0,76.0,81.0,48.0,73.0,79.0,47.0,51.0,62.0,47.0,50.0,47.0,51.0,44.0,42.0,52.0,51.0,40.0,28.0,39.0,26.0,22.0,30.0,31.0,26.0,24.0,22.0,16.0,9.0,18.0,9.0,7.0,7.0,7.0,2.0,3.0,6.0 M83025,19.0,18.0,28.0,20.0,26.0,19.0,21.0,23.0,20.0,31.0,31.0,27.0,20.0,31.0,27.0,18.0,27.0,26.0,34.0,34.0,51.0,23.0,30.0,26.0,35.0,48.0,42.0,45.0,37.0,42.0,33.0,43.0,50.0,39.0,32.0,53.0,43.0,42.0,31.0,38.0,37.0,33.0,37.0,28.0,41.0,42.0,31.0,40.0,34.0,41.0,37.0,31.0,49.0,51.0,38.0,48.0,51.0,52.0,43.0,54.0,58.0,47.0,41.0,53.0,49.0,44.0,32.0,46.0,47.0,32.0,29.0,32.0,28.0,32.0,45.0,31.0,38.0,37.0,35.0,25.0,29.0,20.0,21.0,17.0,10.0,14.0,13.0,16.0,11.0,8.0,7.0,8.0,6.0,3.0,1.0,6.0 M83026,134.0,121.0,143.0,151.0,145.0,127.0,121.0,157.0,158.0,141.0,140.0,147.0,157.0,132.0,122.0,137.0,137.0,103.0,108.0,94.0,91.0,86.0,78.0,93.0,111.0,116.0,111.0,117.0,135.0,143.0,141.0,161.0,151.0,169.0,157.0,171.0,167.0,164.0,165.0,166.0,159.0,151.0,143.0,131.0,122.0,150.0,122.0,113.0,97.0,106.0,83.0,99.0,108.0,102.0,91.0,84.0,92.0,97.0,82.0,80.0,97.0,78.0,75.0,85.0,68.0,60.0,63.0,66.0,72.0,47.0,48.0,50.0,44.0,34.0,36.0,51.0,38.0,45.0,37.0,32.0,26.0,28.0,26.0,21.0,16.0,21.0,10.0,14.0,10.0,8.0,8.0,4.0,7.0,5.0,2.0,9.0 M83027,41.0,49.0,57.0,54.0,64.0,73.0,56.0,49.0,62.0,62.0,66.0,54.0,70.0,68.0,67.0,74.0,81.0,74.0,45.0,49.0,55.0,52.0,50.0,56.0,49.0,48.0,45.0,39.0,77.0,54.0,59.0,60.0,61.0,78.0,80.0,63.0,73.0,69.0,55.0,69.0,86.0,66.0,79.0,62.0,67.0,72.0,61.0,55.0,59.0,64.0,57.0,60.0,81.0,73.0,93.0,77.0,81.0,74.0,90.0,69.0,84.0,64.0,71.0,85.0,68.0,65.0,81.0,72.0,51.0,53.0,52.0,47.0,49.0,47.0,45.0,39.0,47.0,44.0,41.0,24.0,32.0,25.0,31.0,18.0,19.0,19.0,20.0,14.0,18.0,8.0,10.0,5.0,6.0,1.0,3.0,5.0 M83028,54.0,68.0,51.0,56.0,69.0,68.0,66.0,63.0,81.0,64.0,72.0,66.0,59.0,84.0,62.0,75.0,65.0,69.0,60.0,53.0,55.0,75.0,53.0,56.0,59.0,75.0,48.0,81.0,73.0,74.0,76.0,80.0,86.0,76.0,91.0,69.0,90.0,95.0,100.0,80.0,103.0,85.0,83.0,89.0,87.0,71.0,70.0,67.0,72.0,56.0,75.0,76.0,87.0,69.0,65.0,96.0,72.0,62.0,70.0,86.0,81.0,74.0,70.0,71.0,66.0,80.0,59.0,53.0,69.0,56.0,47.0,41.0,59.0,48.0,46.0,51.0,45.0,47.0,40.0,26.0,32.0,32.0,30.0,21.0,24.0,18.0,5.0,7.0,11.0,11.0,3.0,3.0,4.0,4.0,1.0,5.0 M83030,45.0,47.0,67.0,70.0,74.0,77.0,64.0,78.0,88.0,87.0,76.0,63.0,89.0,93.0,90.0,83.0,85.0,87.0,70.0,77.0,82.0,65.0,67.0,79.0,61.0,58.0,52.0,74.0,74.0,66.0,87.0,77.0,73.0,92.0,87.0,81.0,76.0,105.0,78.0,102.0,82.0,85.0,79.0,76.0,86.0,77.0,71.0,75.0,90.0,78.0,78.0,92.0,115.0,109.0,99.0,111.0,96.0,102.0,96.0,113.0,103.0,86.0,78.0,98.0,93.0,69.0,70.0,69.0,80.0,59.0,60.0,71.0,57.0,58.0,59.0,66.0,71.0,76.0,54.0,53.0,51.0,57.0,41.0,51.0,42.0,36.0,24.0,33.0,18.0,14.0,5.0,4.0,5.0,7.0,4.0,4.0 M83031,20.0,22.0,23.0,27.0,23.0,34.0,25.0,31.0,27.0,30.0,30.0,30.0,39.0,27.0,37.0,30.0,36.0,33.0,29.0,34.0,27.0,27.0,17.0,24.0,25.0,29.0,31.0,35.0,16.0,31.0,25.0,24.0,25.0,33.0,33.0,32.0,36.0,25.0,42.0,30.0,38.0,49.0,34.0,36.0,41.0,29.0,35.0,23.0,33.0,39.0,48.0,39.0,35.0,54.0,37.0,49.0,44.0,44.0,54.0,45.0,45.0,46.0,57.0,48.0,43.0,42.0,45.0,43.0,30.0,35.0,36.0,41.0,39.0,32.0,36.0,45.0,47.0,39.0,34.0,27.0,29.0,34.0,29.0,27.0,21.0,22.0,22.0,19.0,11.0,14.0,14.0,8.0,10.0,6.0,2.0,5.0 M83032,53.0,58.0,67.0,64.0,79.0,71.0,66.0,78.0,80.0,78.0,80.0,86.0,75.0,84.0,71.0,94.0,79.0,81.0,71.0,81.0,95.0,86.0,78.0,84.0,92.0,105.0,91.0,82.0,90.0,99.0,94.0,104.0,106.0,99.0,109.0,99.0,97.0,109.0,84.0,99.0,81.0,87.0,80.0,77.0,90.0,85.0,96.0,68.0,65.0,86.0,88.0,104.0,90.0,123.0,105.0,105.0,104.0,104.0,114.0,104.0,97.0,87.0,96.0,94.0,92.0,69.0,81.0,67.0,77.0,76.0,78.0,68.0,70.0,63.0,52.0,67.0,61.0,60.0,75.0,44.0,51.0,38.0,35.0,37.0,26.0,30.0,29.0,22.0,20.0,13.0,8.0,7.0,3.0,2.0,1.0,8.0 M83033,38.0,41.0,52.0,33.0,34.0,33.0,35.0,38.0,44.0,35.0,48.0,37.0,30.0,36.0,49.0,36.0,45.0,39.0,34.0,35.0,25.0,27.0,32.0,33.0,34.0,35.0,48.0,46.0,42.0,53.0,47.0,64.0,58.0,69.0,56.0,81.0,52.0,65.0,57.0,49.0,51.0,58.0,47.0,46.0,39.0,49.0,43.0,33.0,42.0,39.0,57.0,45.0,53.0,60.0,59.0,53.0,54.0,57.0,50.0,57.0,36.0,43.0,48.0,32.0,32.0,35.0,45.0,39.0,32.0,29.0,37.0,36.0,23.0,26.0,40.0,26.0,27.0,27.0,26.0,28.0,27.0,18.0,12.0,15.0,15.0,12.0,2.0,10.0,7.0,9.0,3.0,4.0,,2.0,2.0,11.0 M83034,53.0,37.0,57.0,47.0,60.0,48.0,57.0,75.0,51.0,63.0,70.0,69.0,85.0,60.0,64.0,65.0,80.0,73.0,68.0,70.0,78.0,68.0,65.0,64.0,55.0,74.0,73.0,61.0,78.0,69.0,76.0,80.0,67.0,88.0,92.0,82.0,77.0,86.0,93.0,88.0,91.0,80.0,82.0,66.0,72.0,63.0,71.0,65.0,61.0,69.0,81.0,70.0,69.0,79.0,86.0,87.0,101.0,76.0,73.0,81.0,84.0,78.0,69.0,83.0,72.0,63.0,73.0,70.0,60.0,61.0,63.0,59.0,51.0,52.0,70.0,44.0,42.0,54.0,54.0,41.0,43.0,48.0,38.0,35.0,17.0,24.0,32.0,22.0,21.0,18.0,9.0,12.0,11.0,6.0,3.0,9.0 M83035,32.0,47.0,37.0,48.0,47.0,37.0,44.0,41.0,44.0,34.0,39.0,43.0,42.0,43.0,55.0,33.0,47.0,41.0,46.0,31.0,26.0,31.0,24.0,34.0,33.0,42.0,33.0,36.0,40.0,36.0,47.0,34.0,37.0,44.0,52.0,59.0,50.0,49.0,41.0,36.0,40.0,33.0,38.0,30.0,45.0,49.0,43.0,27.0,45.0,49.0,47.0,55.0,36.0,51.0,41.0,57.0,40.0,50.0,61.0,51.0,58.0,74.0,56.0,78.0,48.0,36.0,49.0,44.0,53.0,39.0,45.0,48.0,42.0,27.0,46.0,43.0,46.0,43.0,42.0,22.0,39.0,26.0,26.0,22.0,14.0,12.0,12.0,18.0,9.0,10.0,5.0,6.0,3.0,4.0,1.0,4.0 M83036,41.0,44.0,57.0,49.0,49.0,51.0,57.0,47.0,50.0,52.0,66.0,55.0,69.0,65.0,55.0,67.0,48.0,56.0,49.0,44.0,47.0,46.0,39.0,49.0,49.0,36.0,50.0,54.0,62.0,57.0,51.0,58.0,51.0,72.0,73.0,73.0,54.0,69.0,65.0,62.0,57.0,57.0,73.0,46.0,62.0,36.0,40.0,55.0,45.0,47.0,58.0,51.0,50.0,71.0,76.0,70.0,65.0,50.0,55.0,68.0,72.0,58.0,52.0,58.0,51.0,52.0,48.0,51.0,53.0,49.0,46.0,28.0,33.0,34.0,33.0,36.0,32.0,38.0,35.0,33.0,37.0,29.0,35.0,18.0,20.0,21.0,17.0,12.0,13.0,8.0,13.0,10.0,2.0,4.0,2.0,8.0 M83037,30.0,31.0,33.0,36.0,33.0,28.0,39.0,38.0,53.0,45.0,58.0,52.0,51.0,47.0,49.0,54.0,46.0,56.0,51.0,54.0,43.0,36.0,51.0,33.0,37.0,40.0,32.0,51.0,32.0,42.0,45.0,31.0,47.0,42.0,62.0,46.0,51.0,49.0,45.0,53.0,61.0,50.0,42.0,44.0,42.0,56.0,55.0,58.0,39.0,54.0,55.0,59.0,59.0,63.0,65.0,66.0,67.0,74.0,80.0,72.0,62.0,57.0,49.0,70.0,78.0,59.0,48.0,46.0,45.0,45.0,61.0,41.0,44.0,51.0,45.0,37.0,35.0,51.0,46.0,34.0,34.0,38.0,23.0,25.0,20.0,23.0,17.0,19.0,14.0,8.0,6.0,4.0,10.0,5.0,2.0,3.0 M83038,29.0,46.0,50.0,51.0,41.0,53.0,45.0,48.0,54.0,62.0,60.0,49.0,64.0,78.0,62.0,72.0,51.0,72.0,53.0,50.0,48.0,48.0,44.0,32.0,55.0,47.0,47.0,55.0,54.0,54.0,63.0,54.0,53.0,68.0,67.0,76.0,62.0,64.0,60.0,70.0,58.0,59.0,60.0,59.0,74.0,56.0,54.0,40.0,45.0,58.0,65.0,58.0,53.0,70.0,65.0,66.0,89.0,83.0,77.0,78.0,78.0,82.0,70.0,65.0,78.0,65.0,80.0,73.0,65.0,66.0,53.0,59.0,56.0,53.0,58.0,62.0,52.0,46.0,65.0,26.0,44.0,41.0,32.0,31.0,37.0,29.0,16.0,25.0,22.0,14.0,12.0,11.0,11.0,4.0,4.0,10.0 M83042,34.0,37.0,41.0,41.0,37.0,48.0,40.0,50.0,43.0,51.0,54.0,42.0,53.0,56.0,36.0,56.0,46.0,58.0,40.0,49.0,40.0,45.0,38.0,44.0,46.0,44.0,62.0,57.0,45.0,57.0,64.0,47.0,69.0,70.0,75.0,71.0,60.0,66.0,55.0,67.0,57.0,53.0,53.0,65.0,61.0,58.0,67.0,50.0,47.0,42.0,60.0,50.0,53.0,52.0,59.0,67.0,71.0,72.0,78.0,96.0,74.0,87.0,84.0,81.0,73.0,70.0,80.0,65.0,70.0,77.0,61.0,51.0,54.0,52.0,59.0,44.0,63.0,59.0,49.0,32.0,38.0,61.0,34.0,18.0,28.0,32.0,16.0,20.0,24.0,10.0,12.0,6.0,5.0,6.0,5.0,6.0 M83044,75.0,82.0,77.0,82.0,82.0,77.0,86.0,85.0,88.0,76.0,86.0,82.0,84.0,71.0,87.0,67.0,71.0,72.0,63.0,74.0,56.0,71.0,66.0,47.0,69.0,72.0,70.0,94.0,105.0,103.0,97.0,117.0,109.0,120.0,136.0,137.0,125.0,109.0,115.0,107.0,127.0,122.0,95.0,104.0,98.0,87.0,72.0,78.0,74.0,72.0,74.0,70.0,67.0,92.0,97.0,72.0,87.0,76.0,87.0,72.0,77.0,74.0,79.0,83.0,74.0,66.0,74.0,67.0,59.0,65.0,57.0,55.0,49.0,55.0,48.0,43.0,44.0,48.0,41.0,43.0,34.0,30.0,32.0,27.0,27.0,23.0,26.0,18.0,16.0,15.0,7.0,6.0,10.0,4.0,4.0,9.0 M83045,38.0,42.0,53.0,47.0,56.0,53.0,52.0,58.0,66.0,67.0,53.0,51.0,56.0,68.0,56.0,57.0,58.0,51.0,56.0,38.0,47.0,54.0,44.0,51.0,48.0,56.0,42.0,52.0,60.0,38.0,58.0,62.0,55.0,52.0,71.0,53.0,61.0,50.0,66.0,51.0,55.0,62.0,46.0,53.0,53.0,48.0,61.0,44.0,51.0,53.0,66.0,70.0,75.0,87.0,74.0,89.0,85.0,77.0,66.0,79.0,75.0,66.0,71.0,67.0,76.0,78.0,55.0,79.0,53.0,57.0,65.0,68.0,60.0,69.0,65.0,57.0,76.0,80.0,62.0,53.0,62.0,57.0,49.0,37.0,27.0,33.0,24.0,25.0,23.0,16.0,17.0,10.0,8.0,,, M83046,31.0,34.0,30.0,35.0,35.0,41.0,42.0,50.0,54.0,51.0,35.0,40.0,59.0,44.0,65.0,51.0,54.0,63.0,50.0,40.0,56.0,36.0,29.0,46.0,45.0,40.0,59.0,55.0,39.0,54.0,47.0,48.0,56.0,52.0,62.0,54.0,50.0,60.0,57.0,57.0,42.0,52.0,41.0,49.0,58.0,53.0,54.0,48.0,46.0,49.0,64.0,64.0,76.0,72.0,85.0,80.0,58.0,95.0,81.0,77.0,67.0,70.0,76.0,78.0,78.0,71.0,56.0,53.0,59.0,54.0,58.0,59.0,52.0,56.0,48.0,77.0,65.0,67.0,67.0,53.0,46.0,45.0,39.0,38.0,24.0,19.0,19.0,25.0,20.0,11.0,14.0,6.0,9.0,2.0,3.0,6.0 M83047,32.0,32.0,33.0,46.0,50.0,33.0,33.0,45.0,44.0,45.0,42.0,45.0,39.0,49.0,33.0,39.0,42.0,39.0,31.0,45.0,42.0,29.0,40.0,24.0,30.0,45.0,33.0,34.0,48.0,31.0,50.0,46.0,57.0,36.0,51.0,57.0,55.0,46.0,45.0,49.0,41.0,51.0,40.0,51.0,35.0,40.0,35.0,31.0,39.0,37.0,42.0,48.0,45.0,52.0,58.0,55.0,49.0,57.0,50.0,48.0,55.0,52.0,44.0,46.0,37.0,46.0,36.0,58.0,34.0,40.0,34.0,31.0,28.0,39.0,33.0,31.0,41.0,32.0,33.0,24.0,33.0,35.0,18.0,19.0,18.0,21.0,14.0,14.0,4.0,7.0,9.0,4.0,1.0,3.0,1.0,2.0 M83048,45.0,44.0,37.0,63.0,46.0,54.0,55.0,61.0,65.0,62.0,69.0,55.0,63.0,60.0,62.0,54.0,63.0,50.0,45.0,48.0,39.0,50.0,57.0,46.0,53.0,43.0,50.0,50.0,58.0,55.0,61.0,52.0,58.0,58.0,58.0,65.0,65.0,63.0,62.0,68.0,56.0,62.0,53.0,80.0,66.0,63.0,61.0,63.0,62.0,75.0,57.0,73.0,67.0,80.0,84.0,70.0,84.0,67.0,76.0,68.0,81.0,73.0,68.0,72.0,61.0,48.0,45.0,53.0,64.0,50.0,54.0,59.0,44.0,48.0,49.0,46.0,55.0,63.0,47.0,48.0,39.0,34.0,20.0,24.0,15.0,21.0,15.0,12.0,14.0,9.0,4.0,4.0,6.0,3.0,1.0,3.0 M83049,35.0,31.0,33.0,48.0,45.0,47.0,51.0,45.0,53.0,40.0,58.0,58.0,65.0,62.0,42.0,62.0,52.0,58.0,59.0,46.0,44.0,46.0,43.0,39.0,48.0,67.0,47.0,53.0,46.0,59.0,46.0,73.0,63.0,52.0,61.0,58.0,64.0,73.0,71.0,67.0,65.0,64.0,66.0,74.0,73.0,63.0,65.0,62.0,55.0,52.0,52.0,49.0,52.0,77.0,81.0,81.0,72.0,80.0,76.0,75.0,70.0,62.0,63.0,61.0,62.0,51.0,58.0,51.0,50.0,56.0,45.0,48.0,46.0,47.0,45.0,53.0,54.0,41.0,51.0,34.0,36.0,33.0,26.0,35.0,19.0,28.0,24.0,18.0,8.0,12.0,14.0,8.0,7.0,4.0,,9.0 M83050,48.0,35.0,43.0,51.0,49.0,40.0,56.0,45.0,56.0,44.0,49.0,50.0,74.0,62.0,56.0,61.0,52.0,62.0,48.0,46.0,52.0,57.0,51.0,42.0,51.0,56.0,65.0,54.0,83.0,58.0,81.0,80.0,72.0,80.0,90.0,95.0,90.0,84.0,87.0,76.0,87.0,101.0,73.0,83.0,79.0,79.0,73.0,65.0,65.0,51.0,69.0,81.0,76.0,79.0,65.0,70.0,80.0,66.0,63.0,75.0,85.0,70.0,86.0,71.0,42.0,58.0,56.0,48.0,41.0,45.0,52.0,49.0,42.0,38.0,55.0,32.0,39.0,46.0,47.0,32.0,46.0,38.0,37.0,27.0,23.0,27.0,23.0,26.0,13.0,13.0,7.0,9.0,5.0,3.0,5.0,7.0 M83051,65.0,60.0,59.0,62.0,75.0,72.0,83.0,78.0,89.0,62.0,58.0,68.0,86.0,73.0,71.0,59.0,65.0,61.0,53.0,61.0,59.0,63.0,65.0,62.0,80.0,77.0,81.0,83.0,86.0,106.0,84.0,89.0,102.0,102.0,118.0,119.0,107.0,126.0,102.0,105.0,89.0,90.0,92.0,89.0,96.0,86.0,79.0,61.0,75.0,41.0,75.0,76.0,99.0,64.0,81.0,103.0,91.0,93.0,81.0,91.0,88.0,78.0,89.0,92.0,79.0,64.0,69.0,68.0,59.0,62.0,55.0,64.0,55.0,48.0,46.0,55.0,43.0,53.0,52.0,34.0,34.0,35.0,27.0,31.0,11.0,22.0,21.0,16.0,8.0,8.0,8.0,6.0,5.0,3.0,6.0,5.0 M83052,95.0,94.0,110.0,111.0,110.0,134.0,130.0,127.0,142.0,136.0,136.0,144.0,153.0,174.0,141.0,140.0,146.0,145.0,128.0,114.0,97.0,107.0,85.0,96.0,79.0,93.0,93.0,100.0,105.0,125.0,118.0,148.0,112.0,139.0,164.0,182.0,152.0,184.0,184.0,205.0,194.0,242.0,205.0,203.0,182.0,202.0,183.0,177.0,154.0,142.0,163.0,138.0,152.0,137.0,162.0,165.0,149.0,149.0,125.0,138.0,133.0,165.0,128.0,110.0,109.0,117.0,105.0,115.0,87.0,88.0,86.0,85.0,90.0,83.0,98.0,95.0,105.0,93.0,86.0,97.0,74.0,83.0,53.0,46.0,43.0,34.0,42.0,37.0,23.0,19.0,18.0,18.0,11.0,9.0,5.0,14.0 M83054,39.0,28.0,45.0,49.0,47.0,41.0,39.0,47.0,59.0,48.0,53.0,57.0,63.0,55.0,58.0,58.0,60.0,46.0,59.0,55.0,62.0,56.0,47.0,47.0,55.0,70.0,53.0,58.0,66.0,55.0,63.0,70.0,60.0,47.0,65.0,53.0,70.0,71.0,81.0,68.0,60.0,64.0,58.0,71.0,75.0,71.0,40.0,63.0,59.0,64.0,50.0,72.0,75.0,84.0,71.0,74.0,84.0,70.0,96.0,85.0,67.0,82.0,73.0,82.0,86.0,55.0,63.0,71.0,58.0,52.0,51.0,59.0,53.0,55.0,59.0,54.0,58.0,50.0,53.0,40.0,39.0,39.0,24.0,17.0,24.0,20.0,14.0,16.0,13.0,11.0,12.0,3.0,4.0,5.0,5.0,9.0 M83056,36.0,49.0,52.0,43.0,51.0,50.0,48.0,62.0,65.0,54.0,52.0,59.0,48.0,54.0,46.0,56.0,80.0,57.0,54.0,58.0,58.0,70.0,48.0,55.0,52.0,70.0,57.0,61.0,73.0,58.0,58.0,73.0,67.0,74.0,66.0,71.0,77.0,75.0,70.0,76.0,82.0,75.0,86.0,64.0,81.0,85.0,63.0,76.0,56.0,65.0,65.0,83.0,83.0,75.0,82.0,80.0,77.0,75.0,76.0,81.0,78.0,76.0,82.0,81.0,70.0,64.0,63.0,62.0,53.0,61.0,60.0,78.0,52.0,48.0,52.0,57.0,55.0,51.0,59.0,36.0,45.0,43.0,39.0,27.0,32.0,23.0,15.0,14.0,18.0,14.0,13.0,9.0,6.0,4.0,5.0,6.0 M83057,46.0,55.0,44.0,55.0,45.0,62.0,56.0,36.0,46.0,55.0,51.0,66.0,65.0,63.0,58.0,58.0,54.0,64.0,65.0,58.0,48.0,52.0,52.0,46.0,50.0,55.0,59.0,61.0,62.0,61.0,63.0,72.0,64.0,67.0,80.0,86.0,79.0,79.0,69.0,66.0,95.0,91.0,69.0,69.0,85.0,66.0,70.0,67.0,72.0,65.0,91.0,72.0,73.0,69.0,76.0,78.0,74.0,77.0,85.0,59.0,76.0,77.0,56.0,74.0,59.0,57.0,62.0,47.0,61.0,53.0,41.0,45.0,38.0,32.0,49.0,37.0,42.0,46.0,46.0,32.0,24.0,39.0,33.0,36.0,22.0,16.0,14.0,11.0,14.0,12.0,12.0,5.0,5.0,3.0,2.0,6.0 M83059,6.0,6.0,13.0,12.0,10.0,14.0,20.0,17.0,18.0,14.0,19.0,16.0,17.0,23.0,15.0,28.0,16.0,17.0,18.0,21.0,25.0,14.0,11.0,15.0,23.0,10.0,16.0,17.0,17.0,17.0,15.0,13.0,13.0,21.0,11.0,17.0,18.0,22.0,22.0,12.0,16.0,31.0,16.0,14.0,13.0,20.0,24.0,15.0,20.0,16.0,19.0,27.0,36.0,35.0,34.0,25.0,47.0,45.0,31.0,28.0,35.0,21.0,28.0,37.0,28.0,36.0,32.0,31.0,39.0,31.0,21.0,35.0,26.0,20.0,29.0,25.0,18.0,27.0,27.0,26.0,20.0,22.0,19.0,17.0,11.0,12.0,16.0,10.0,8.0,6.0,3.0,4.0,2.0,1.0,,3.0 M83061,36.0,33.0,37.0,45.0,33.0,40.0,36.0,41.0,34.0,39.0,44.0,45.0,46.0,38.0,51.0,40.0,58.0,50.0,39.0,47.0,48.0,43.0,33.0,36.0,31.0,27.0,51.0,47.0,49.0,38.0,44.0,40.0,41.0,54.0,50.0,55.0,55.0,57.0,50.0,51.0,48.0,39.0,44.0,47.0,51.0,50.0,46.0,60.0,43.0,55.0,34.0,53.0,54.0,65.0,57.0,59.0,61.0,69.0,58.0,58.0,48.0,70.0,57.0,55.0,56.0,43.0,44.0,43.0,49.0,42.0,41.0,45.0,41.0,34.0,37.0,49.0,51.0,49.0,48.0,37.0,44.0,37.0,41.0,31.0,15.0,23.0,21.0,10.0,18.0,11.0,9.0,7.0,3.0,4.0,1.0,5.0 M83062,49.0,62.0,58.0,62.0,53.0,75.0,55.0,98.0,58.0,65.0,63.0,66.0,68.0,77.0,76.0,80.0,70.0,85.0,64.0,69.0,58.0,70.0,65.0,71.0,65.0,85.0,87.0,81.0,70.0,91.0,98.0,80.0,82.0,72.0,99.0,126.0,83.0,94.0,89.0,93.0,95.0,82.0,65.0,77.0,76.0,70.0,58.0,61.0,66.0,60.0,74.0,77.0,78.0,92.0,116.0,99.0,98.0,77.0,87.0,87.0,108.0,80.0,94.0,88.0,76.0,66.0,63.0,77.0,71.0,48.0,63.0,64.0,53.0,68.0,55.0,58.0,71.0,71.0,81.0,52.0,47.0,52.0,49.0,33.0,27.0,27.0,28.0,22.0,28.0,15.0,8.0,10.0,8.0,3.0,1.0,9.0 M83063,23.0,25.0,19.0,26.0,23.0,24.0,17.0,20.0,29.0,21.0,15.0,26.0,26.0,16.0,28.0,29.0,21.0,19.0,35.0,22.0,24.0,26.0,17.0,14.0,15.0,24.0,24.0,21.0,20.0,32.0,17.0,28.0,20.0,24.0,42.0,20.0,28.0,21.0,28.0,24.0,30.0,26.0,31.0,30.0,17.0,25.0,22.0,23.0,22.0,16.0,20.0,26.0,32.0,28.0,29.0,32.0,35.0,33.0,21.0,14.0,30.0,29.0,25.0,17.0,26.0,21.0,17.0,14.0,22.0,18.0,27.0,22.0,17.0,11.0,20.0,13.0,10.0,11.0,13.0,11.0,9.0,7.0,5.0,11.0,7.0,9.0,7.0,4.0,3.0,2.0,,,3.0,1.0,1.0, M83065,22.0,17.0,27.0,26.0,23.0,36.0,43.0,41.0,40.0,41.0,46.0,45.0,53.0,48.0,56.0,46.0,50.0,58.0,37.0,33.0,29.0,28.0,28.0,33.0,33.0,25.0,32.0,30.0,34.0,33.0,27.0,21.0,27.0,36.0,27.0,34.0,30.0,28.0,24.0,43.0,33.0,38.0,42.0,43.0,47.0,59.0,40.0,43.0,41.0,48.0,57.0,40.0,65.0,65.0,71.0,58.0,58.0,61.0,47.0,64.0,77.0,54.0,56.0,66.0,49.0,52.0,45.0,49.0,47.0,48.0,32.0,42.0,41.0,42.0,38.0,49.0,42.0,42.0,40.0,33.0,37.0,32.0,30.0,25.0,19.0,20.0,17.0,10.0,9.0,8.0,12.0,5.0,4.0,5.0,2.0,5.0 M83066,45.0,31.0,46.0,47.0,52.0,53.0,47.0,52.0,58.0,56.0,37.0,53.0,46.0,57.0,49.0,40.0,43.0,38.0,46.0,46.0,42.0,27.0,35.0,34.0,25.0,41.0,51.0,55.0,68.0,49.0,59.0,62.0,70.0,69.0,76.0,77.0,67.0,72.0,73.0,84.0,58.0,54.0,49.0,49.0,49.0,61.0,51.0,56.0,51.0,53.0,47.0,31.0,56.0,51.0,50.0,49.0,55.0,45.0,48.0,48.0,54.0,49.0,57.0,40.0,50.0,43.0,30.0,40.0,41.0,27.0,27.0,33.0,26.0,27.0,15.0,31.0,32.0,30.0,28.0,20.0,26.0,20.0,19.0,18.0,7.0,15.0,11.0,10.0,9.0,8.0,4.0,4.0,,2.0,1.0,4.0 M83067,26.0,32.0,40.0,44.0,27.0,26.0,36.0,38.0,36.0,37.0,56.0,43.0,52.0,58.0,44.0,43.0,51.0,45.0,48.0,50.0,49.0,57.0,33.0,57.0,53.0,63.0,48.0,62.0,68.0,67.0,68.0,67.0,72.0,62.0,70.0,61.0,73.0,71.0,75.0,75.0,68.0,48.0,51.0,64.0,75.0,53.0,55.0,44.0,55.0,46.0,47.0,51.0,56.0,60.0,52.0,55.0,57.0,64.0,53.0,56.0,53.0,52.0,48.0,47.0,55.0,35.0,41.0,38.0,34.0,45.0,31.0,37.0,37.0,28.0,19.0,44.0,26.0,24.0,20.0,14.0,22.0,20.0,15.0,17.0,17.0,11.0,12.0,16.0,7.0,7.0,3.0,4.0,2.0,4.0,2.0,3.0 M83068,82.0,85.0,81.0,81.0,85.0,101.0,84.0,94.0,112.0,123.0,91.0,110.0,118.0,91.0,108.0,92.0,119.0,116.0,104.0,121.0,75.0,107.0,92.0,89.0,78.0,108.0,92.0,92.0,101.0,101.0,94.0,86.0,101.0,114.0,90.0,111.0,99.0,120.0,101.0,101.0,102.0,105.0,87.0,83.0,97.0,92.0,103.0,82.0,84.0,88.0,85.0,79.0,92.0,112.0,96.0,94.0,117.0,98.0,110.0,84.0,89.0,83.0,82.0,109.0,75.0,72.0,73.0,78.0,86.0,76.0,53.0,58.0,58.0,70.0,55.0,55.0,46.0,49.0,69.0,49.0,35.0,43.0,28.0,32.0,18.0,22.0,19.0,16.0,11.0,14.0,9.0,6.0,6.0,6.0,3.0,4.0 M83069,54.0,73.0,75.0,77.0,85.0,78.0,76.0,72.0,96.0,83.0,92.0,82.0,101.0,92.0,83.0,81.0,98.0,98.0,80.0,74.0,70.0,73.0,60.0,63.0,71.0,64.0,85.0,65.0,89.0,73.0,86.0,89.0,93.0,103.0,104.0,107.0,92.0,124.0,73.0,113.0,117.0,90.0,91.0,93.0,91.0,104.0,81.0,78.0,78.0,80.0,101.0,110.0,109.0,132.0,100.0,101.0,125.0,108.0,121.0,115.0,142.0,85.0,116.0,98.0,115.0,116.0,102.0,96.0,83.0,85.0,92.0,89.0,91.0,87.0,88.0,75.0,91.0,90.0,94.0,58.0,73.0,56.0,75.0,42.0,38.0,20.0,42.0,24.0,29.0,22.0,14.0,12.0,12.0,6.0,12.0,13.0 M83070,17.0,18.0,26.0,28.0,28.0,40.0,39.0,27.0,32.0,34.0,36.0,42.0,46.0,40.0,45.0,45.0,30.0,38.0,33.0,29.0,27.0,31.0,39.0,31.0,34.0,49.0,63.0,54.0,65.0,58.0,68.0,52.0,70.0,57.0,82.0,78.0,60.0,69.0,55.0,65.0,65.0,50.0,46.0,46.0,56.0,48.0,53.0,57.0,49.0,67.0,50.0,51.0,60.0,57.0,55.0,66.0,81.0,68.0,82.0,74.0,64.0,64.0,70.0,66.0,79.0,62.0,60.0,59.0,49.0,49.0,46.0,51.0,54.0,38.0,48.0,65.0,47.0,50.0,55.0,48.0,44.0,40.0,29.0,22.0,32.0,19.0,22.0,20.0,6.0,16.0,5.0,8.0,6.0,8.0,,7.0 M83071,28.0,45.0,34.0,55.0,50.0,55.0,53.0,57.0,61.0,50.0,75.0,63.0,52.0,59.0,65.0,75.0,76.0,64.0,64.0,60.0,69.0,53.0,60.0,58.0,51.0,54.0,62.0,64.0,67.0,65.0,67.0,50.0,62.0,61.0,65.0,61.0,68.0,71.0,67.0,69.0,85.0,71.0,64.0,74.0,64.0,74.0,58.0,62.0,73.0,60.0,77.0,74.0,86.0,79.0,90.0,87.0,86.0,92.0,104.0,92.0,85.0,110.0,87.0,71.0,75.0,72.0,79.0,90.0,81.0,83.0,66.0,84.0,85.0,77.0,60.0,66.0,92.0,72.0,80.0,49.0,51.0,55.0,44.0,26.0,26.0,24.0,30.0,22.0,21.0,15.0,14.0,6.0,8.0,11.0,4.0,6.0 M83072,37.0,44.0,53.0,45.0,46.0,67.0,55.0,59.0,65.0,44.0,58.0,57.0,63.0,53.0,64.0,72.0,77.0,73.0,54.0,69.0,71.0,46.0,64.0,55.0,56.0,57.0,61.0,77.0,72.0,63.0,69.0,77.0,71.0,62.0,60.0,60.0,71.0,71.0,61.0,81.0,82.0,50.0,61.0,53.0,78.0,72.0,57.0,56.0,62.0,75.0,68.0,68.0,66.0,84.0,81.0,84.0,86.0,90.0,88.0,93.0,85.0,85.0,71.0,77.0,105.0,71.0,55.0,78.0,77.0,65.0,47.0,76.0,84.0,83.0,62.0,70.0,74.0,86.0,77.0,54.0,77.0,76.0,56.0,61.0,46.0,33.0,36.0,16.0,24.0,21.0,24.0,5.0,7.0,6.0,5.0,10.0 M83073,31.0,48.0,39.0,51.0,45.0,49.0,46.0,51.0,56.0,68.0,40.0,51.0,64.0,66.0,55.0,59.0,56.0,65.0,50.0,37.0,44.0,45.0,48.0,38.0,53.0,57.0,52.0,41.0,45.0,46.0,56.0,74.0,56.0,60.0,79.0,69.0,61.0,85.0,61.0,51.0,77.0,68.0,62.0,76.0,70.0,73.0,50.0,46.0,48.0,46.0,61.0,61.0,61.0,61.0,72.0,66.0,70.0,72.0,69.0,68.0,75.0,70.0,59.0,58.0,62.0,72.0,49.0,55.0,50.0,42.0,64.0,47.0,45.0,38.0,50.0,46.0,38.0,40.0,48.0,28.0,36.0,39.0,27.0,20.0,20.0,13.0,20.0,11.0,13.0,9.0,10.0,8.0,3.0,6.0,2.0,3.0 M83074,44.0,54.0,52.0,59.0,80.0,67.0,74.0,81.0,78.0,75.0,81.0,67.0,79.0,72.0,103.0,76.0,87.0,93.0,84.0,96.0,89.0,85.0,72.0,86.0,78.0,67.0,72.0,99.0,79.0,81.0,92.0,99.0,97.0,116.0,96.0,97.0,100.0,109.0,90.0,77.0,88.0,101.0,82.0,80.0,97.0,88.0,77.0,78.0,70.0,79.0,79.0,103.0,85.0,116.0,117.0,107.0,115.0,104.0,120.0,109.0,120.0,104.0,115.0,109.0,115.0,98.0,92.0,87.0,93.0,70.0,75.0,67.0,66.0,63.0,74.0,61.0,73.0,59.0,79.0,51.0,49.0,59.0,42.0,51.0,31.0,29.0,22.0,22.0,13.0,19.0,11.0,11.0,8.0,3.0,3.0,4.0 M83075,144.0,154.0,139.0,138.0,134.0,139.0,146.0,128.0,162.0,133.0,145.0,153.0,122.0,145.0,130.0,116.0,139.0,127.0,139.0,195.0,192.0,167.0,180.0,212.0,248.0,225.0,267.0,280.0,269.0,239.0,253.0,274.0,255.0,250.0,268.0,258.0,235.0,219.0,220.0,200.0,194.0,164.0,184.0,168.0,162.0,171.0,149.0,130.0,152.0,140.0,122.0,105.0,130.0,88.0,119.0,95.0,91.0,113.0,75.0,92.0,73.0,66.0,58.0,65.0,79.0,73.0,58.0,56.0,47.0,53.0,52.0,42.0,40.0,35.0,36.0,37.0,28.0,27.0,39.0,25.0,20.0,27.0,26.0,15.0,23.0,18.0,14.0,12.0,6.0,10.0,3.0,3.0,6.0,1.0,2.0,4.0 M83076,45.0,40.0,30.0,35.0,37.0,31.0,43.0,23.0,32.0,39.0,29.0,33.0,31.0,28.0,32.0,32.0,39.0,37.0,53.0,100.0,120.0,124.0,134.0,136.0,124.0,137.0,142.0,155.0,140.0,127.0,141.0,149.0,136.0,135.0,156.0,171.0,116.0,114.0,94.0,93.0,71.0,91.0,66.0,67.0,73.0,43.0,67.0,43.0,54.0,55.0,35.0,49.0,52.0,51.0,42.0,41.0,38.0,53.0,37.0,40.0,35.0,52.0,48.0,50.0,32.0,43.0,36.0,38.0,35.0,30.0,21.0,24.0,24.0,28.0,21.0,22.0,18.0,26.0,25.0,18.0,19.0,8.0,14.0,16.0,11.0,8.0,9.0,6.0,4.0,,6.0,6.0,2.0,1.0,1.0,3.0 M83079,40.0,49.0,34.0,49.0,50.0,55.0,36.0,57.0,49.0,54.0,53.0,51.0,50.0,65.0,50.0,47.0,66.0,47.0,39.0,50.0,45.0,35.0,34.0,46.0,40.0,33.0,55.0,56.0,44.0,54.0,47.0,47.0,62.0,61.0,51.0,61.0,57.0,56.0,58.0,47.0,47.0,52.0,50.0,60.0,62.0,42.0,41.0,57.0,44.0,59.0,64.0,67.0,58.0,67.0,68.0,78.0,78.0,79.0,75.0,61.0,76.0,80.0,76.0,64.0,70.0,60.0,66.0,63.0,46.0,59.0,49.0,53.0,45.0,54.0,47.0,55.0,47.0,70.0,53.0,42.0,38.0,38.0,36.0,30.0,24.0,24.0,19.0,19.0,12.0,13.0,8.0,2.0,4.0,4.0,4.0,2.0 M83084,22.0,31.0,25.0,37.0,35.0,33.0,38.0,28.0,32.0,26.0,28.0,34.0,38.0,36.0,31.0,44.0,38.0,43.0,37.0,31.0,49.0,35.0,32.0,26.0,39.0,35.0,26.0,35.0,46.0,37.0,33.0,36.0,29.0,41.0,42.0,38.0,40.0,40.0,38.0,35.0,40.0,37.0,34.0,27.0,35.0,47.0,35.0,33.0,30.0,29.0,47.0,35.0,43.0,48.0,56.0,46.0,57.0,35.0,40.0,55.0,54.0,49.0,44.0,37.0,45.0,36.0,40.0,48.0,39.0,38.0,38.0,35.0,34.0,31.0,35.0,32.0,41.0,55.0,31.0,30.0,41.0,29.0,29.0,18.0,15.0,17.0,14.0,9.0,11.0,4.0,5.0,2.0,4.0,3.0,,5.0 M83088,62.0,68.0,71.0,78.0,80.0,79.0,74.0,69.0,100.0,64.0,85.0,86.0,78.0,84.0,71.0,77.0,87.0,76.0,78.0,73.0,77.0,77.0,74.0,82.0,88.0,91.0,84.0,80.0,87.0,92.0,110.0,96.0,98.0,131.0,125.0,139.0,109.0,120.0,115.0,113.0,104.0,121.0,93.0,102.0,134.0,87.0,95.0,94.0,76.0,99.0,99.0,116.0,92.0,97.0,111.0,124.0,124.0,117.0,110.0,106.0,108.0,107.0,113.0,80.0,91.0,101.0,81.0,84.0,89.0,88.0,88.0,63.0,78.0,86.0,78.0,61.0,91.0,81.0,78.0,60.0,70.0,59.0,48.0,54.0,35.0,32.0,31.0,24.0,19.0,18.0,13.0,9.0,6.0,9.0,3.0,11.0 M83089,31.0,32.0,52.0,55.0,41.0,42.0,46.0,48.0,59.0,72.0,78.0,62.0,58.0,67.0,64.0,64.0,64.0,57.0,61.0,50.0,56.0,45.0,64.0,49.0,52.0,60.0,42.0,52.0,59.0,56.0,58.0,61.0,55.0,51.0,63.0,63.0,66.0,68.0,53.0,77.0,53.0,55.0,61.0,64.0,51.0,58.0,62.0,62.0,62.0,58.0,54.0,66.0,76.0,94.0,97.0,81.0,81.0,83.0,75.0,91.0,68.0,98.0,88.0,83.0,55.0,72.0,78.0,73.0,60.0,66.0,54.0,76.0,53.0,59.0,54.0,64.0,58.0,84.0,71.0,49.0,64.0,44.0,45.0,34.0,35.0,22.0,27.0,22.0,20.0,9.0,8.0,7.0,6.0,5.0,1.0,7.0 M83090,25.0,25.0,19.0,27.0,30.0,28.0,22.0,29.0,25.0,27.0,20.0,26.0,30.0,30.0,25.0,30.0,26.0,31.0,20.0,18.0,24.0,31.0,31.0,29.0,22.0,26.0,38.0,39.0,49.0,45.0,49.0,37.0,34.0,37.0,47.0,40.0,42.0,35.0,29.0,47.0,32.0,27.0,44.0,34.0,43.0,35.0,32.0,27.0,23.0,40.0,23.0,39.0,39.0,35.0,42.0,46.0,41.0,42.0,46.0,37.0,38.0,36.0,40.0,44.0,42.0,34.0,34.0,19.0,30.0,43.0,35.0,29.0,32.0,35.0,32.0,41.0,34.0,45.0,35.0,25.0,25.0,22.0,30.0,13.0,13.0,12.0,8.0,8.0,13.0,4.0,4.0,3.0,,2.0,,4.0 M83092,30.0,29.0,30.0,44.0,29.0,48.0,35.0,40.0,37.0,44.0,33.0,51.0,44.0,39.0,37.0,31.0,40.0,31.0,40.0,42.0,28.0,37.0,33.0,27.0,25.0,36.0,36.0,39.0,28.0,31.0,32.0,50.0,36.0,42.0,45.0,50.0,40.0,47.0,53.0,45.0,52.0,37.0,58.0,36.0,50.0,49.0,58.0,46.0,38.0,34.0,57.0,54.0,68.0,62.0,72.0,67.0,67.0,78.0,68.0,80.0,71.0,83.0,70.0,79.0,74.0,54.0,64.0,59.0,66.0,66.0,59.0,62.0,58.0,71.0,52.0,55.0,60.0,50.0,64.0,44.0,53.0,40.0,38.0,33.0,34.0,31.0,29.0,25.0,14.0,13.0,11.0,6.0,5.0,7.0,3.0,6.0 M83093,29.0,37.0,24.0,35.0,35.0,23.0,35.0,37.0,37.0,34.0,36.0,48.0,30.0,35.0,31.0,28.0,31.0,34.0,29.0,26.0,34.0,29.0,30.0,31.0,30.0,38.0,39.0,44.0,31.0,26.0,36.0,48.0,41.0,33.0,38.0,34.0,39.0,34.0,34.0,37.0,36.0,31.0,37.0,35.0,42.0,28.0,30.0,30.0,34.0,26.0,36.0,34.0,31.0,38.0,49.0,50.0,46.0,40.0,51.0,57.0,53.0,48.0,56.0,52.0,47.0,43.0,42.0,34.0,45.0,39.0,41.0,39.0,32.0,25.0,31.0,36.0,26.0,43.0,33.0,28.0,22.0,25.0,26.0,20.0,17.0,19.0,31.0,22.0,13.0,19.0,13.0,4.0,7.0,2.0,6.0,5.0 M83094,44.0,85.0,63.0,62.0,82.0,82.0,95.0,86.0,84.0,98.0,97.0,109.0,100.0,102.0,99.0,114.0,112.0,93.0,97.0,108.0,79.0,73.0,70.0,69.0,66.0,77.0,79.0,103.0,73.0,75.0,110.0,105.0,86.0,109.0,116.0,108.0,89.0,93.0,107.0,91.0,92.0,104.0,121.0,95.0,82.0,105.0,81.0,87.0,75.0,77.0,88.0,84.0,86.0,98.0,96.0,101.0,105.0,95.0,100.0,98.0,98.0,100.0,103.0,80.0,81.0,80.0,87.0,77.0,66.0,80.0,68.0,75.0,62.0,58.0,59.0,66.0,44.0,61.0,61.0,50.0,53.0,39.0,33.0,30.0,21.0,23.0,31.0,22.0,16.0,15.0,14.0,10.0,5.0,2.0,2.0,6.0 M83096,23.0,12.0,16.0,19.0,21.0,23.0,26.0,24.0,32.0,25.0,28.0,28.0,30.0,31.0,29.0,21.0,40.0,27.0,25.0,21.0,25.0,25.0,40.0,27.0,24.0,35.0,33.0,25.0,33.0,32.0,26.0,25.0,34.0,29.0,35.0,27.0,31.0,18.0,27.0,33.0,36.0,35.0,36.0,31.0,32.0,31.0,22.0,32.0,35.0,31.0,31.0,37.0,35.0,39.0,34.0,47.0,51.0,35.0,53.0,47.0,48.0,52.0,42.0,44.0,41.0,33.0,38.0,35.0,33.0,35.0,28.0,31.0,23.0,47.0,34.0,46.0,37.0,30.0,37.0,26.0,28.0,21.0,20.0,19.0,16.0,11.0,19.0,10.0,12.0,7.0,5.0,3.0,4.0,1.0,2.0,4.0 M83097,37.0,36.0,52.0,44.0,43.0,46.0,48.0,49.0,61.0,57.0,54.0,49.0,50.0,54.0,54.0,73.0,54.0,54.0,50.0,42.0,52.0,46.0,40.0,38.0,40.0,40.0,38.0,59.0,39.0,56.0,50.0,56.0,58.0,61.0,54.0,68.0,62.0,55.0,47.0,45.0,62.0,52.0,59.0,49.0,46.0,66.0,37.0,31.0,65.0,53.0,50.0,62.0,56.0,48.0,62.0,54.0,76.0,57.0,72.0,68.0,62.0,54.0,55.0,56.0,56.0,52.0,65.0,48.0,53.0,37.0,38.0,50.0,43.0,48.0,37.0,38.0,46.0,38.0,48.0,31.0,29.0,33.0,35.0,27.0,26.0,18.0,20.0,17.0,7.0,13.0,6.0,9.0,7.0,6.0,2.0,5.0 M83100,8.0,13.0,27.0,20.0,18.0,28.0,12.0,22.0,28.0,31.0,22.0,28.0,21.0,33.0,18.0,34.0,28.0,32.0,16.0,21.0,19.0,22.0,16.0,18.0,19.0,32.0,22.0,26.0,22.0,24.0,32.0,22.0,19.0,26.0,28.0,23.0,28.0,21.0,26.0,29.0,13.0,21.0,28.0,29.0,28.0,22.0,23.0,26.0,18.0,34.0,30.0,17.0,19.0,19.0,31.0,22.0,34.0,33.0,34.0,37.0,35.0,22.0,22.0,29.0,24.0,27.0,25.0,21.0,23.0,19.0,25.0,23.0,23.0,19.0,11.0,23.0,19.0,26.0,20.0,17.0,15.0,18.0,16.0,11.0,15.0,10.0,11.0,15.0,8.0,3.0,9.0,6.0,,4.0,1.0,1.0 M83102,38.0,39.0,55.0,49.0,46.0,50.0,44.0,50.0,50.0,76.0,52.0,55.0,56.0,51.0,45.0,66.0,49.0,57.0,38.0,46.0,46.0,40.0,47.0,30.0,40.0,25.0,32.0,41.0,44.0,51.0,42.0,50.0,43.0,57.0,52.0,54.0,55.0,62.0,54.0,66.0,48.0,70.0,48.0,40.0,48.0,33.0,43.0,37.0,44.0,28.0,36.0,39.0,45.0,42.0,37.0,52.0,55.0,40.0,39.0,35.0,46.0,44.0,47.0,47.0,34.0,39.0,37.0,36.0,40.0,36.0,29.0,21.0,25.0,25.0,14.0,17.0,20.0,29.0,9.0,20.0,20.0,10.0,8.0,10.0,11.0,10.0,6.0,9.0,10.0,3.0,4.0,,1.0,2.0,3.0,1.0 M83103,20.0,21.0,27.0,21.0,21.0,25.0,28.0,37.0,23.0,17.0,25.0,19.0,23.0,28.0,24.0,22.0,28.0,30.0,17.0,16.0,21.0,25.0,20.0,23.0,21.0,25.0,22.0,29.0,18.0,26.0,34.0,24.0,22.0,23.0,32.0,25.0,29.0,23.0,15.0,30.0,24.0,23.0,23.0,26.0,32.0,24.0,22.0,23.0,24.0,19.0,28.0,31.0,39.0,32.0,34.0,37.0,30.0,46.0,39.0,38.0,33.0,38.0,38.0,32.0,42.0,20.0,30.0,33.0,23.0,27.0,29.0,30.0,24.0,31.0,29.0,25.0,34.0,25.0,34.0,31.0,31.0,24.0,17.0,22.0,9.0,11.0,10.0,10.0,8.0,9.0,4.0,4.0,2.0,3.0,2.0,5.0 M83107,35.0,29.0,48.0,35.0,29.0,42.0,38.0,42.0,45.0,41.0,41.0,40.0,32.0,44.0,35.0,39.0,42.0,35.0,39.0,33.0,41.0,39.0,39.0,47.0,34.0,29.0,35.0,45.0,51.0,49.0,52.0,39.0,47.0,53.0,33.0,57.0,43.0,49.0,41.0,58.0,43.0,44.0,44.0,31.0,45.0,35.0,38.0,24.0,35.0,50.0,36.0,35.0,50.0,44.0,40.0,50.0,58.0,55.0,49.0,61.0,62.0,50.0,37.0,46.0,37.0,54.0,41.0,35.0,33.0,36.0,38.0,32.0,39.0,22.0,34.0,29.0,29.0,33.0,21.0,23.0,21.0,18.0,17.0,16.0,10.0,11.0,13.0,9.0,6.0,7.0,9.0,4.0,3.0,1.0,3.0,1.0 M83108,34.0,35.0,42.0,44.0,42.0,31.0,36.0,22.0,49.0,51.0,41.0,54.0,47.0,39.0,44.0,56.0,43.0,42.0,37.0,40.0,33.0,41.0,31.0,38.0,26.0,29.0,46.0,52.0,43.0,49.0,37.0,46.0,37.0,45.0,45.0,58.0,42.0,40.0,29.0,50.0,45.0,44.0,46.0,39.0,43.0,45.0,40.0,32.0,36.0,41.0,52.0,48.0,53.0,61.0,52.0,63.0,47.0,70.0,55.0,50.0,60.0,62.0,41.0,47.0,51.0,60.0,48.0,42.0,47.0,46.0,43.0,27.0,52.0,33.0,23.0,50.0,53.0,48.0,37.0,30.0,42.0,30.0,29.0,29.0,20.0,13.0,18.0,14.0,15.0,12.0,13.0,5.0,3.0,7.0,,2.0 M83109,22.0,19.0,26.0,22.0,28.0,25.0,20.0,21.0,24.0,22.0,23.0,16.0,18.0,16.0,14.0,16.0,18.0,22.0,18.0,13.0,15.0,21.0,16.0,17.0,17.0,20.0,22.0,24.0,16.0,30.0,31.0,32.0,30.0,31.0,44.0,21.0,31.0,25.0,27.0,22.0,32.0,30.0,24.0,22.0,30.0,20.0,27.0,11.0,21.0,23.0,20.0,23.0,29.0,32.0,21.0,34.0,26.0,18.0,35.0,20.0,34.0,18.0,26.0,27.0,13.0,17.0,22.0,21.0,18.0,22.0,23.0,17.0,19.0,17.0,11.0,20.0,26.0,17.0,16.0,19.0,6.0,15.0,9.0,8.0,8.0,8.0,3.0,2.0,3.0,6.0,3.0,4.0,1.0,3.0,,1.0 M83110,77.0,106.0,86.0,77.0,104.0,120.0,104.0,105.0,91.0,110.0,90.0,89.0,92.0,104.0,115.0,109.0,91.0,100.0,89.0,88.0,83.0,91.0,79.0,76.0,63.0,86.0,93.0,110.0,124.0,97.0,126.0,139.0,144.0,120.0,134.0,128.0,147.0,137.0,135.0,124.0,140.0,121.0,120.0,121.0,119.0,136.0,111.0,105.0,73.0,93.0,100.0,97.0,104.0,121.0,113.0,110.0,108.0,90.0,100.0,99.0,85.0,95.0,78.0,90.0,81.0,84.0,77.0,90.0,76.0,64.0,66.0,78.0,72.0,64.0,65.0,77.0,70.0,70.0,79.0,48.0,52.0,41.0,32.0,25.0,21.0,18.0,17.0,10.0,15.0,9.0,4.0,2.0,5.0,3.0,3.0,6.0 M83111,16.0,9.0,9.0,14.0,16.0,13.0,11.0,13.0,10.0,11.0,5.0,7.0,15.0,10.0,10.0,21.0,10.0,5.0,7.0,9.0,5.0,12.0,8.0,8.0,14.0,20.0,17.0,15.0,17.0,31.0,13.0,21.0,27.0,26.0,23.0,16.0,30.0,22.0,21.0,21.0,21.0,25.0,24.0,15.0,18.0,22.0,12.0,17.0,12.0,10.0,16.0,20.0,19.0,17.0,19.0,21.0,14.0,22.0,26.0,15.0,14.0,12.0,13.0,13.0,18.0,13.0,11.0,12.0,13.0,18.0,11.0,11.0,16.0,8.0,8.0,15.0,18.0,13.0,12.0,6.0,12.0,12.0,5.0,4.0,7.0,2.0,3.0,5.0,2.0,,1.0,,,1.0,1.0,1.0 M83113,8.0,8.0,10.0,22.0,18.0,11.0,14.0,11.0,25.0,15.0,20.0,13.0,16.0,23.0,20.0,26.0,14.0,16.0,20.0,13.0,25.0,9.0,14.0,15.0,16.0,13.0,11.0,15.0,15.0,15.0,18.0,19.0,20.0,25.0,15.0,30.0,17.0,20.0,22.0,13.0,21.0,13.0,15.0,16.0,18.0,20.0,13.0,17.0,17.0,13.0,17.0,18.0,16.0,20.0,18.0,14.0,27.0,22.0,8.0,14.0,15.0,13.0,11.0,14.0,10.0,13.0,14.0,13.0,7.0,15.0,17.0,15.0,9.0,11.0,6.0,10.0,7.0,6.0,6.0,5.0,2.0,4.0,4.0,2.0,1.0,5.0,3.0,3.0,2.0,1.0,,1.0,,,,1.0 M83117,31.0,37.0,32.0,51.0,49.0,49.0,43.0,46.0,65.0,51.0,52.0,45.0,75.0,60.0,53.0,62.0,75.0,61.0,37.0,60.0,55.0,57.0,37.0,50.0,45.0,57.0,40.0,56.0,34.0,44.0,37.0,45.0,66.0,52.0,51.0,67.0,76.0,74.0,65.0,67.0,68.0,69.0,56.0,61.0,57.0,55.0,58.0,37.0,53.0,41.0,49.0,55.0,47.0,60.0,67.0,72.0,71.0,66.0,56.0,49.0,52.0,41.0,49.0,47.0,53.0,51.0,39.0,54.0,45.0,48.0,43.0,59.0,56.0,50.0,52.0,40.0,45.0,34.0,28.0,20.0,18.0,22.0,19.0,6.0,8.0,10.0,11.0,9.0,8.0,3.0,4.0,5.0,2.0,,,2.0 M83121,17.0,25.0,21.0,17.0,18.0,27.0,23.0,30.0,27.0,30.0,27.0,25.0,30.0,34.0,26.0,33.0,24.0,34.0,29.0,34.0,23.0,26.0,31.0,30.0,27.0,26.0,24.0,33.0,18.0,29.0,28.0,24.0,28.0,32.0,36.0,22.0,35.0,32.0,24.0,28.0,34.0,32.0,37.0,30.0,38.0,28.0,37.0,39.0,33.0,33.0,36.0,29.0,33.0,39.0,44.0,45.0,51.0,44.0,39.0,51.0,44.0,56.0,57.0,36.0,38.0,52.0,43.0,39.0,52.0,37.0,38.0,48.0,28.0,41.0,32.0,51.0,56.0,54.0,43.0,36.0,32.0,34.0,25.0,19.0,29.0,16.0,16.0,16.0,14.0,4.0,5.0,8.0,1.0,1.0,2.0,5.0 M83122,8.0,7.0,7.0,12.0,19.0,14.0,19.0,13.0,7.0,15.0,21.0,19.0,18.0,26.0,18.0,14.0,22.0,19.0,20.0,18.0,16.0,17.0,13.0,13.0,16.0,13.0,20.0,11.0,11.0,11.0,9.0,11.0,16.0,13.0,16.0,15.0,13.0,13.0,24.0,20.0,16.0,9.0,11.0,17.0,18.0,9.0,18.0,11.0,14.0,23.0,13.0,24.0,29.0,21.0,30.0,22.0,34.0,30.0,32.0,28.0,29.0,24.0,33.0,35.0,25.0,37.0,26.0,26.0,20.0,25.0,23.0,25.0,17.0,13.0,15.0,14.0,14.0,24.0,18.0,13.0,12.0,13.0,15.0,9.0,9.0,10.0,3.0,4.0,8.0,3.0,6.0,1.0,,,,1.0 M83123,62.0,76.0,64.0,59.0,53.0,66.0,64.0,53.0,67.0,54.0,67.0,57.0,82.0,80.0,67.0,67.0,70.0,64.0,64.0,51.0,41.0,56.0,45.0,58.0,60.0,68.0,68.0,69.0,77.0,78.0,88.0,86.0,77.0,90.0,104.0,83.0,72.0,95.0,74.0,69.0,86.0,74.0,72.0,73.0,55.0,63.0,59.0,51.0,45.0,43.0,48.0,58.0,60.0,70.0,69.0,54.0,72.0,52.0,54.0,74.0,57.0,65.0,59.0,55.0,59.0,61.0,62.0,56.0,44.0,47.0,39.0,44.0,39.0,39.0,30.0,28.0,41.0,26.0,30.0,22.0,21.0,20.0,13.0,19.0,13.0,8.0,10.0,7.0,6.0,2.0,3.0,1.0,1.0,1.0,1.0,3.0 M83125,11.0,11.0,8.0,7.0,11.0,8.0,15.0,10.0,8.0,9.0,10.0,21.0,15.0,21.0,23.0,10.0,17.0,14.0,19.0,18.0,24.0,15.0,13.0,18.0,17.0,19.0,15.0,17.0,16.0,17.0,14.0,15.0,18.0,24.0,16.0,21.0,22.0,13.0,18.0,10.0,14.0,13.0,9.0,12.0,25.0,15.0,12.0,12.0,19.0,20.0,24.0,24.0,36.0,32.0,28.0,17.0,32.0,41.0,36.0,44.0,43.0,31.0,33.0,45.0,31.0,20.0,33.0,32.0,22.0,22.0,26.0,26.0,21.0,26.0,13.0,22.0,21.0,26.0,23.0,18.0,18.0,24.0,15.0,11.0,11.0,7.0,8.0,9.0,9.0,3.0,5.0,1.0,3.0,2.0,1.0,3.0 M83126,47.0,45.0,44.0,37.0,47.0,44.0,46.0,47.0,46.0,64.0,49.0,51.0,64.0,54.0,55.0,52.0,55.0,39.0,41.0,48.0,40.0,44.0,35.0,34.0,45.0,56.0,57.0,69.0,54.0,57.0,50.0,67.0,68.0,60.0,72.0,67.0,76.0,61.0,58.0,55.0,62.0,56.0,49.0,55.0,67.0,43.0,52.0,49.0,47.0,37.0,53.0,59.0,52.0,69.0,59.0,51.0,59.0,60.0,51.0,49.0,49.0,46.0,51.0,51.0,58.0,50.0,52.0,49.0,38.0,51.0,38.0,30.0,38.0,32.0,33.0,29.0,35.0,47.0,26.0,36.0,33.0,27.0,18.0,17.0,12.0,16.0,16.0,12.0,4.0,8.0,7.0,4.0,2.0,3.0,1.0,4.0 M83127,68.0,47.0,49.0,61.0,47.0,56.0,70.0,64.0,59.0,51.0,60.0,52.0,55.0,58.0,42.0,56.0,44.0,56.0,51.0,45.0,39.0,40.0,55.0,36.0,47.0,53.0,55.0,42.0,65.0,55.0,50.0,57.0,70.0,67.0,62.0,74.0,85.0,60.0,69.0,72.0,74.0,67.0,68.0,62.0,43.0,50.0,38.0,46.0,53.0,46.0,48.0,55.0,37.0,48.0,50.0,29.0,31.0,38.0,27.0,29.0,31.0,32.0,26.0,18.0,30.0,14.0,22.0,16.0,12.0,21.0,15.0,22.0,16.0,11.0,15.0,11.0,12.0,9.0,10.0,8.0,8.0,6.0,11.0,2.0,11.0,3.0,8.0,3.0,4.0,3.0,1.0,1.0,,1.0,1.0, M83129,34.0,49.0,62.0,68.0,58.0,57.0,67.0,73.0,55.0,64.0,76.0,63.0,69.0,60.0,61.0,70.0,70.0,65.0,63.0,55.0,52.0,46.0,46.0,49.0,44.0,54.0,52.0,50.0,65.0,70.0,51.0,66.0,61.0,83.0,95.0,73.0,68.0,81.0,68.0,77.0,76.0,65.0,76.0,71.0,72.0,66.0,61.0,67.0,58.0,64.0,63.0,55.0,68.0,82.0,73.0,99.0,81.0,77.0,81.0,93.0,84.0,81.0,69.0,71.0,70.0,67.0,82.0,62.0,62.0,55.0,54.0,51.0,50.0,38.0,42.0,50.0,49.0,41.0,49.0,37.0,36.0,33.0,24.0,15.0,20.0,26.0,22.0,17.0,15.0,10.0,11.0,10.0,7.0,2.0,1.0,8.0 M83130,20.0,23.0,21.0,20.0,18.0,22.0,23.0,16.0,17.0,18.0,21.0,26.0,21.0,21.0,21.0,23.0,21.0,15.0,24.0,16.0,19.0,20.0,19.0,27.0,22.0,21.0,33.0,23.0,28.0,32.0,26.0,24.0,33.0,32.0,31.0,34.0,28.0,27.0,29.0,20.0,24.0,21.0,34.0,19.0,29.0,26.0,22.0,15.0,18.0,22.0,17.0,19.0,29.0,32.0,31.0,38.0,38.0,29.0,47.0,29.0,32.0,41.0,32.0,26.0,31.0,29.0,29.0,24.0,18.0,21.0,14.0,15.0,18.0,20.0,15.0,21.0,14.0,17.0,24.0,12.0,16.0,10.0,17.0,22.0,7.0,7.0,8.0,9.0,8.0,5.0,2.0,1.0,1.0,,1.0,2.0 M83132,27.0,23.0,21.0,32.0,34.0,21.0,21.0,24.0,25.0,33.0,35.0,35.0,29.0,32.0,29.0,38.0,29.0,30.0,27.0,24.0,21.0,30.0,33.0,17.0,32.0,26.0,26.0,24.0,35.0,32.0,38.0,36.0,33.0,43.0,41.0,41.0,31.0,48.0,52.0,36.0,38.0,32.0,41.0,43.0,28.0,41.0,39.0,30.0,33.0,38.0,28.0,36.0,32.0,29.0,42.0,33.0,28.0,29.0,43.0,42.0,38.0,28.0,41.0,37.0,43.0,43.0,39.0,28.0,56.0,44.0,40.0,37.0,36.0,39.0,41.0,43.0,28.0,35.0,26.0,26.0,18.0,16.0,14.0,16.0,10.0,11.0,3.0,8.0,4.0,1.0,2.0,5.0,3.0,1.0,1.0,5.0 M83138,22.0,30.0,26.0,31.0,28.0,29.0,32.0,37.0,44.0,46.0,39.0,56.0,34.0,43.0,47.0,39.0,40.0,62.0,53.0,26.0,39.0,30.0,27.0,38.0,36.0,39.0,27.0,29.0,39.0,26.0,36.0,31.0,36.0,42.0,49.0,39.0,45.0,51.0,45.0,50.0,55.0,48.0,51.0,46.0,49.0,54.0,36.0,40.0,54.0,45.0,42.0,41.0,41.0,33.0,53.0,39.0,50.0,45.0,47.0,39.0,40.0,49.0,53.0,54.0,42.0,38.0,62.0,43.0,32.0,51.0,37.0,47.0,47.0,42.0,39.0,46.0,44.0,31.0,30.0,22.0,24.0,28.0,23.0,10.0,13.0,12.0,11.0,7.0,11.0,3.0,4.0,4.0,,5.0,2.0,7.0 M83139,35.0,26.0,22.0,19.0,22.0,29.0,22.0,26.0,26.0,18.0,23.0,22.0,35.0,24.0,35.0,21.0,20.0,22.0,39.0,23.0,26.0,32.0,26.0,25.0,34.0,36.0,28.0,26.0,44.0,27.0,42.0,42.0,37.0,33.0,31.0,30.0,36.0,43.0,29.0,28.0,39.0,26.0,29.0,29.0,26.0,28.0,29.0,31.0,25.0,29.0,26.0,22.0,33.0,47.0,27.0,47.0,32.0,37.0,48.0,35.0,44.0,43.0,38.0,30.0,34.0,35.0,40.0,28.0,32.0,24.0,27.0,29.0,20.0,22.0,19.0,16.0,28.0,16.0,26.0,16.0,24.0,15.0,13.0,12.0,10.0,8.0,3.0,7.0,3.0,4.0,2.0,2.0,,1.0,,1.0 M83140,25.0,33.0,18.0,28.0,27.0,20.0,19.0,34.0,33.0,30.0,25.0,30.0,27.0,48.0,24.0,30.0,36.0,31.0,27.0,25.0,23.0,34.0,20.0,20.0,28.0,28.0,27.0,38.0,21.0,24.0,31.0,27.0,24.0,41.0,34.0,43.0,36.0,35.0,38.0,34.0,26.0,29.0,33.0,22.0,26.0,27.0,38.0,32.0,28.0,21.0,30.0,24.0,22.0,34.0,29.0,30.0,35.0,24.0,26.0,30.0,32.0,26.0,35.0,35.0,27.0,37.0,30.0,23.0,31.0,19.0,24.0,20.0,22.0,24.0,23.0,16.0,24.0,21.0,17.0,18.0,13.0,16.0,6.0,11.0,10.0,8.0,10.0,9.0,7.0,5.0,11.0,5.0,1.0,1.0,1.0,1.0 M83141,33.0,33.0,40.0,42.0,47.0,49.0,47.0,49.0,41.0,57.0,52.0,46.0,58.0,62.0,61.0,69.0,54.0,69.0,56.0,46.0,62.0,41.0,41.0,36.0,45.0,53.0,40.0,45.0,49.0,40.0,48.0,40.0,49.0,53.0,57.0,56.0,56.0,55.0,57.0,63.0,64.0,67.0,42.0,72.0,66.0,66.0,44.0,57.0,53.0,68.0,57.0,44.0,54.0,45.0,90.0,66.0,50.0,66.0,60.0,52.0,59.0,73.0,48.0,57.0,69.0,42.0,54.0,60.0,50.0,35.0,49.0,49.0,46.0,54.0,37.0,35.0,60.0,53.0,44.0,36.0,45.0,35.0,33.0,25.0,27.0,21.0,17.0,15.0,12.0,8.0,7.0,6.0,7.0,5.0,3.0,3.0 M83143,36.0,28.0,24.0,27.0,35.0,39.0,39.0,39.0,42.0,34.0,34.0,36.0,35.0,50.0,44.0,45.0,34.0,49.0,31.0,24.0,29.0,23.0,32.0,27.0,35.0,30.0,39.0,38.0,31.0,39.0,33.0,34.0,36.0,40.0,39.0,46.0,36.0,39.0,56.0,41.0,51.0,38.0,46.0,44.0,46.0,37.0,29.0,43.0,26.0,26.0,32.0,29.0,35.0,30.0,32.0,30.0,38.0,27.0,40.0,26.0,30.0,28.0,39.0,35.0,32.0,25.0,26.0,23.0,27.0,20.0,23.0,26.0,20.0,12.0,17.0,22.0,24.0,14.0,11.0,15.0,14.0,11.0,9.0,7.0,12.0,5.0,6.0,5.0,4.0,3.0,,1.0,2.0,2.0,1.0,2.0 M83146,67.0,68.0,92.0,75.0,90.0,86.0,92.0,82.0,107.0,92.0,102.0,112.0,95.0,96.0,100.0,110.0,115.0,105.0,98.0,75.0,78.0,80.0,77.0,72.0,84.0,67.0,79.0,83.0,83.0,74.0,80.0,83.0,118.0,98.0,101.0,127.0,97.0,100.0,83.0,102.0,111.0,121.0,122.0,122.0,103.0,93.0,87.0,83.0,81.0,86.0,75.0,77.0,74.0,69.0,89.0,92.0,93.0,88.0,76.0,85.0,63.0,69.0,76.0,70.0,84.0,80.0,59.0,64.0,64.0,37.0,48.0,47.0,46.0,40.0,28.0,43.0,33.0,53.0,46.0,23.0,36.0,29.0,28.0,20.0,17.0,24.0,10.0,15.0,11.0,8.0,5.0,6.0,4.0,3.0,2.0,5.0 M83148,46.0,65.0,79.0,79.0,83.0,75.0,80.0,68.0,97.0,101.0,76.0,110.0,89.0,76.0,102.0,86.0,104.0,108.0,83.0,85.0,78.0,85.0,77.0,69.0,80.0,70.0,99.0,92.0,83.0,96.0,96.0,78.0,119.0,101.0,134.0,101.0,106.0,120.0,103.0,107.0,94.0,99.0,105.0,97.0,117.0,95.0,85.0,77.0,92.0,102.0,83.0,76.0,95.0,102.0,137.0,97.0,128.0,110.0,91.0,105.0,92.0,81.0,82.0,81.0,78.0,63.0,56.0,65.0,57.0,76.0,46.0,62.0,48.0,45.0,52.0,62.0,53.0,55.0,35.0,43.0,46.0,50.0,20.0,26.0,26.0,18.0,10.0,26.0,15.0,6.0,15.0,8.0,6.0,1.0,5.0,6.0 M83601,17.0,19.0,25.0,30.0,27.0,28.0,25.0,34.0,24.0,28.0,20.0,30.0,36.0,31.0,27.0,33.0,33.0,30.0,29.0,25.0,21.0,20.0,33.0,21.0,21.0,18.0,20.0,20.0,21.0,19.0,23.0,29.0,38.0,28.0,32.0,32.0,27.0,22.0,29.0,35.0,26.0,30.0,34.0,36.0,40.0,34.0,22.0,34.0,36.0,44.0,40.0,27.0,43.0,35.0,52.0,50.0,34.0,40.0,34.0,39.0,54.0,41.0,47.0,39.0,34.0,40.0,47.0,42.0,39.0,34.0,34.0,34.0,27.0,42.0,32.0,51.0,38.0,51.0,50.0,40.0,35.0,28.0,28.0,34.0,34.0,21.0,24.0,21.0,18.0,24.0,12.0,9.0,3.0,6.0,2.0,7.0 M83608,15.0,32.0,23.0,23.0,35.0,27.0,21.0,24.0,32.0,23.0,22.0,29.0,38.0,28.0,28.0,24.0,36.0,25.0,25.0,30.0,27.0,14.0,39.0,32.0,25.0,39.0,35.0,45.0,29.0,43.0,44.0,34.0,30.0,38.0,32.0,38.0,32.0,28.0,29.0,23.0,24.0,35.0,21.0,24.0,33.0,26.0,28.0,20.0,35.0,27.0,29.0,37.0,36.0,40.0,30.0,51.0,42.0,58.0,32.0,50.0,38.0,40.0,45.0,39.0,24.0,36.0,38.0,25.0,35.0,26.0,17.0,16.0,23.0,22.0,21.0,29.0,23.0,29.0,30.0,21.0,37.0,25.0,25.0,22.0,12.0,19.0,14.0,7.0,8.0,5.0,5.0,7.0,1.0,,,3.0 M83616,17.0,19.0,27.0,20.0,25.0,33.0,32.0,24.0,30.0,25.0,16.0,27.0,24.0,28.0,34.0,36.0,33.0,25.0,20.0,30.0,32.0,35.0,27.0,30.0,34.0,37.0,33.0,53.0,49.0,51.0,36.0,33.0,58.0,47.0,28.0,52.0,33.0,41.0,33.0,47.0,41.0,41.0,32.0,32.0,36.0,28.0,28.0,24.0,24.0,25.0,28.0,32.0,39.0,35.0,31.0,47.0,36.0,43.0,51.0,47.0,41.0,50.0,40.0,38.0,25.0,33.0,34.0,26.0,27.0,14.0,22.0,20.0,26.0,17.0,19.0,18.0,11.0,13.0,23.0,11.0,15.0,15.0,11.0,13.0,8.0,15.0,6.0,4.0,2.0,5.0,4.0,,5.0,4.0,1.0,3.0 M83617,99.0,126.0,116.0,130.0,124.0,140.0,116.0,134.0,137.0,134.0,122.0,144.0,145.0,150.0,126.0,158.0,140.0,152.0,137.0,133.0,120.0,112.0,94.0,118.0,101.0,107.0,140.0,135.0,141.0,134.0,139.0,141.0,151.0,167.0,160.0,173.0,156.0,142.0,139.0,129.0,143.0,153.0,115.0,140.0,138.0,149.0,150.0,122.0,98.0,135.0,141.0,145.0,161.0,191.0,202.0,163.0,176.0,181.0,186.0,188.0,196.0,169.0,146.0,155.0,148.0,115.0,119.0,129.0,106.0,112.0,85.0,112.0,92.0,77.0,102.0,118.0,95.0,132.0,128.0,89.0,122.0,100.0,88.0,61.0,78.0,47.0,41.0,37.0,26.0,26.0,19.0,21.0,13.0,5.0,4.0,9.0 M83619,15.0,14.0,15.0,17.0,16.0,25.0,21.0,19.0,18.0,19.0,19.0,19.0,11.0,17.0,16.0,19.0,14.0,14.0,14.0,14.0,24.0,18.0,27.0,21.0,14.0,34.0,28.0,25.0,35.0,29.0,23.0,35.0,33.0,40.0,27.0,33.0,34.0,32.0,24.0,28.0,35.0,31.0,29.0,29.0,35.0,23.0,33.0,23.0,23.0,26.0,32.0,30.0,27.0,19.0,17.0,24.0,23.0,25.0,30.0,31.0,25.0,21.0,31.0,21.0,23.0,22.0,16.0,22.0,19.0,15.0,12.0,10.0,17.0,20.0,15.0,14.0,12.0,18.0,13.0,5.0,7.0,5.0,9.0,7.0,4.0,9.0,5.0,4.0,4.0,5.0,2.0,1.0,1.0,2.0,, M83624,20.0,19.0,33.0,22.0,23.0,26.0,28.0,19.0,18.0,31.0,30.0,25.0,20.0,24.0,24.0,32.0,19.0,32.0,19.0,28.0,22.0,20.0,14.0,24.0,19.0,17.0,21.0,16.0,29.0,27.0,19.0,14.0,22.0,21.0,22.0,23.0,27.0,31.0,33.0,24.0,27.0,24.0,16.0,24.0,23.0,24.0,46.0,19.0,27.0,26.0,41.0,24.0,24.0,25.0,22.0,22.0,32.0,20.0,32.0,28.0,24.0,27.0,24.0,27.0,18.0,28.0,20.0,19.0,24.0,17.0,15.0,21.0,21.0,19.0,18.0,18.0,18.0,15.0,18.0,7.0,13.0,7.0,15.0,7.0,6.0,3.0,3.0,2.0,3.0,1.0,3.0,3.0,1.0,1.0,,2.0 M83625,56.0,57.0,54.0,71.0,72.0,63.0,70.0,70.0,66.0,79.0,64.0,79.0,66.0,74.0,68.0,63.0,58.0,70.0,50.0,69.0,58.0,65.0,59.0,63.0,82.0,72.0,73.0,83.0,87.0,100.0,104.0,111.0,97.0,114.0,106.0,113.0,118.0,128.0,113.0,117.0,105.0,95.0,108.0,98.0,91.0,83.0,79.0,63.0,66.0,78.0,72.0,64.0,75.0,77.0,71.0,83.0,82.0,60.0,76.0,47.0,81.0,53.0,65.0,57.0,71.0,66.0,67.0,61.0,56.0,48.0,46.0,56.0,47.0,37.0,42.0,37.0,35.0,39.0,40.0,26.0,22.0,31.0,19.0,19.0,11.0,15.0,11.0,9.0,14.0,10.0,5.0,4.0,6.0,3.0,,4.0 M83627,50.0,65.0,59.0,62.0,84.0,70.0,75.0,53.0,74.0,66.0,83.0,62.0,71.0,65.0,61.0,53.0,74.0,75.0,61.0,53.0,49.0,58.0,56.0,52.0,60.0,56.0,73.0,62.0,59.0,56.0,84.0,89.0,95.0,98.0,70.0,75.0,81.0,81.0,76.0,86.0,95.0,87.0,92.0,77.0,78.0,76.0,67.0,66.0,60.0,58.0,68.0,55.0,63.0,56.0,53.0,51.0,63.0,48.0,46.0,43.0,35.0,38.0,47.0,32.0,23.0,25.0,23.0,27.0,21.0,20.0,25.0,18.0,21.0,23.0,16.0,15.0,19.0,13.0,17.0,17.0,19.0,10.0,19.0,7.0,12.0,9.0,7.0,8.0,6.0,1.0,5.0,6.0,4.0,3.0,3.0,3.0 M83632,19.0,30.0,29.0,18.0,18.0,25.0,33.0,32.0,30.0,26.0,37.0,26.0,34.0,28.0,36.0,29.0,26.0,25.0,29.0,30.0,30.0,25.0,31.0,17.0,21.0,32.0,15.0,26.0,24.0,29.0,32.0,35.0,24.0,29.0,34.0,32.0,34.0,36.0,37.0,42.0,43.0,30.0,36.0,31.0,35.0,39.0,27.0,25.0,33.0,29.0,20.0,30.0,45.0,44.0,40.0,52.0,43.0,25.0,39.0,36.0,34.0,34.0,36.0,33.0,30.0,31.0,37.0,28.0,29.0,22.0,27.0,32.0,31.0,31.0,23.0,24.0,29.0,26.0,30.0,21.0,16.0,20.0,9.0,18.0,6.0,11.0,10.0,7.0,4.0,8.0,9.0,5.0,1.0,3.0,1.0,4.0 M83637,19.0,17.0,30.0,29.0,27.0,29.0,22.0,31.0,32.0,36.0,41.0,39.0,46.0,31.0,31.0,32.0,38.0,36.0,37.0,27.0,19.0,29.0,26.0,28.0,30.0,27.0,44.0,30.0,31.0,35.0,41.0,31.0,36.0,37.0,52.0,43.0,40.0,31.0,30.0,33.0,34.0,38.0,31.0,28.0,33.0,38.0,40.0,25.0,30.0,30.0,42.0,23.0,30.0,28.0,41.0,40.0,39.0,36.0,35.0,37.0,30.0,27.0,26.0,30.0,41.0,28.0,19.0,23.0,17.0,13.0,20.0,20.0,15.0,20.0,11.0,16.0,24.0,18.0,9.0,17.0,11.0,8.0,8.0,10.0,7.0,7.0,5.0,2.0,4.0,6.0,1.0,1.0,1.0,1.0,1.0,2.0 M83638,51.0,61.0,57.0,66.0,82.0,79.0,87.0,74.0,73.0,74.0,75.0,84.0,96.0,90.0,84.0,77.0,78.0,90.0,93.0,79.0,76.0,82.0,70.0,65.0,83.0,80.0,77.0,71.0,87.0,97.0,82.0,86.0,94.0,101.0,102.0,98.0,101.0,92.0,101.0,71.0,94.0,101.0,83.0,98.0,86.0,87.0,79.0,77.0,67.0,72.0,79.0,84.0,99.0,105.0,108.0,108.0,112.0,114.0,95.0,105.0,98.0,106.0,103.0,93.0,86.0,66.0,99.0,62.0,81.0,65.0,68.0,71.0,52.0,49.0,56.0,52.0,52.0,67.0,53.0,51.0,51.0,32.0,32.0,30.0,17.0,35.0,17.0,21.0,12.0,8.0,7.0,4.0,2.0,1.0,4.0,4.0 M83640,5.0,7.0,10.0,7.0,11.0,12.0,7.0,6.0,11.0,12.0,15.0,16.0,12.0,14.0,18.0,16.0,13.0,25.0,13.0,13.0,17.0,14.0,8.0,8.0,7.0,5.0,11.0,10.0,14.0,11.0,13.0,7.0,7.0,9.0,17.0,10.0,9.0,12.0,13.0,13.0,14.0,6.0,11.0,18.0,13.0,11.0,14.0,18.0,13.0,18.0,20.0,17.0,23.0,22.0,19.0,25.0,18.0,25.0,30.0,29.0,29.0,20.0,27.0,30.0,23.0,27.0,16.0,15.0,28.0,21.0,13.0,23.0,16.0,22.0,25.0,11.0,23.0,24.0,14.0,10.0,20.0,22.0,5.0,16.0,12.0,7.0,7.0,10.0,4.0,2.0,3.0,3.0,,,,1.0 M83641,10.0,7.0,7.0,14.0,5.0,13.0,10.0,6.0,12.0,13.0,8.0,17.0,9.0,8.0,19.0,15.0,12.0,18.0,20.0,15.0,17.0,14.0,19.0,13.0,4.0,9.0,6.0,9.0,15.0,14.0,14.0,13.0,12.0,13.0,9.0,12.0,12.0,17.0,11.0,13.0,13.0,11.0,14.0,14.0,10.0,14.0,8.0,12.0,13.0,13.0,7.0,13.0,15.0,19.0,20.0,17.0,19.0,18.0,13.0,14.0,19.0,13.0,11.0,11.0,14.0,13.0,16.0,9.0,10.0,6.0,9.0,9.0,21.0,15.0,5.0,14.0,11.0,10.0,12.0,8.0,11.0,10.0,6.0,2.0,5.0,2.0,7.0,5.0,9.0,3.0,1.0,,2.0,3.0,1.0,2.0 M83650,97.0,100.0,118.0,100.0,97.0,108.0,96.0,97.0,111.0,108.0,100.0,116.0,129.0,104.0,92.0,108.0,90.0,101.0,95.0,87.0,83.0,80.0,84.0,86.0,84.0,102.0,88.0,88.0,88.0,93.0,105.0,99.0,100.0,105.0,130.0,125.0,118.0,139.0,121.0,119.0,110.0,110.0,96.0,107.0,104.0,102.0,82.0,85.0,77.0,80.0,66.0,74.0,72.0,91.0,73.0,90.0,93.0,69.0,60.0,81.0,66.0,66.0,78.0,69.0,54.0,62.0,44.0,48.0,39.0,49.0,38.0,42.0,43.0,41.0,48.0,37.0,51.0,41.0,33.0,25.0,26.0,19.0,27.0,17.0,10.0,10.0,12.0,9.0,5.0,7.0,4.0,6.0,4.0,4.0,4.0,5.0 M83661,45.0,42.0,36.0,47.0,37.0,54.0,60.0,38.0,36.0,37.0,57.0,43.0,58.0,41.0,46.0,55.0,47.0,42.0,34.0,34.0,43.0,32.0,44.0,46.0,31.0,50.0,45.0,51.0,52.0,63.0,61.0,56.0,59.0,44.0,79.0,69.0,59.0,58.0,49.0,46.0,47.0,59.0,42.0,42.0,50.0,49.0,45.0,32.0,45.0,44.0,34.0,38.0,44.0,44.0,47.0,45.0,51.0,41.0,35.0,41.0,49.0,44.0,43.0,36.0,34.0,36.0,26.0,32.0,39.0,20.0,30.0,30.0,24.0,18.0,26.0,21.0,20.0,26.0,28.0,22.0,12.0,13.0,11.0,5.0,9.0,8.0,6.0,4.0,4.0,3.0,,1.0,5.0,2.0,,1.0 M83668,31.0,31.0,23.0,36.0,23.0,31.0,19.0,26.0,41.0,26.0,38.0,32.0,42.0,30.0,34.0,32.0,25.0,29.0,32.0,24.0,23.0,15.0,16.0,19.0,28.0,18.0,24.0,34.0,20.0,30.0,39.0,30.0,32.0,26.0,35.0,28.0,49.0,40.0,44.0,40.0,30.0,36.0,47.0,27.0,30.0,33.0,21.0,21.0,24.0,37.0,23.0,31.0,22.0,26.0,33.0,30.0,39.0,47.0,35.0,31.0,21.0,37.0,48.0,44.0,39.0,42.0,24.0,31.0,30.0,31.0,29.0,35.0,27.0,24.0,30.0,14.0,28.0,28.0,17.0,15.0,19.0,6.0,9.0,12.0,10.0,6.0,8.0,13.0,9.0,4.0,7.0,3.0,2.0,2.0,1.0,1.0 M83670,10.0,11.0,11.0,19.0,20.0,14.0,18.0,14.0,25.0,14.0,20.0,19.0,10.0,10.0,10.0,10.0,13.0,18.0,93.0,264.0,321.0,273.0,255.0,178.0,168.0,141.0,102.0,80.0,81.0,65.0,56.0,47.0,40.0,43.0,30.0,27.0,26.0,27.0,26.0,23.0,21.0,25.0,19.0,23.0,22.0,12.0,19.0,14.0,17.0,17.0,23.0,10.0,14.0,17.0,17.0,10.0,18.0,15.0,23.0,20.0,13.0,12.0,15.0,21.0,9.0,10.0,13.0,7.0,12.0,9.0,14.0,10.0,5.0,8.0,11.0,8.0,7.0,8.0,10.0,4.0,9.0,4.0,3.0,2.0,7.0,4.0,2.0,4.0,6.0,2.0,2.0,1.0,1.0,,2.0, M83680,38.0,36.0,43.0,30.0,36.0,52.0,30.0,36.0,29.0,45.0,49.0,32.0,40.0,42.0,40.0,34.0,43.0,38.0,30.0,36.0,43.0,38.0,37.0,37.0,44.0,32.0,49.0,57.0,48.0,43.0,52.0,48.0,48.0,54.0,80.0,41.0,42.0,52.0,36.0,42.0,39.0,50.0,47.0,44.0,40.0,46.0,42.0,28.0,32.0,38.0,35.0,37.0,45.0,43.0,43.0,51.0,41.0,48.0,49.0,44.0,31.0,51.0,44.0,36.0,56.0,48.0,40.0,38.0,55.0,29.0,30.0,34.0,35.0,32.0,39.0,33.0,30.0,24.0,18.0,15.0,21.0,32.0,15.0,10.0,13.0,13.0,7.0,9.0,8.0,7.0,6.0,2.0,4.0,2.0,1.0,6.0 M83681,54.0,55.0,61.0,58.0,77.0,67.0,82.0,65.0,72.0,81.0,66.0,81.0,92.0,78.0,77.0,74.0,90.0,65.0,65.0,68.0,72.0,63.0,67.0,65.0,61.0,76.0,80.0,65.0,73.0,89.0,100.0,89.0,98.0,113.0,126.0,128.0,128.0,128.0,132.0,122.0,129.0,111.0,129.0,110.0,119.0,103.0,95.0,87.0,109.0,97.0,79.0,98.0,71.0,82.0,79.0,70.0,62.0,60.0,44.0,55.0,48.0,46.0,48.0,39.0,47.0,40.0,24.0,33.0,36.0,35.0,25.0,19.0,31.0,29.0,27.0,17.0,15.0,17.0,16.0,14.0,17.0,15.0,7.0,12.0,7.0,6.0,7.0,8.0,4.0,5.0,2.0,9.0,6.0,5.0,5.0,14.0 M83682,28.0,28.0,33.0,28.0,33.0,42.0,33.0,31.0,42.0,49.0,39.0,42.0,42.0,45.0,51.0,27.0,37.0,36.0,48.0,42.0,39.0,29.0,38.0,31.0,25.0,25.0,22.0,46.0,47.0,37.0,33.0,51.0,41.0,49.0,52.0,50.0,52.0,62.0,53.0,40.0,36.0,43.0,56.0,50.0,50.0,48.0,41.0,33.0,32.0,40.0,35.0,46.0,43.0,46.0,51.0,45.0,43.0,47.0,46.0,37.0,48.0,53.0,43.0,43.0,36.0,36.0,37.0,34.0,27.0,27.0,24.0,23.0,24.0,23.0,21.0,23.0,13.0,19.0,14.0,18.0,21.0,14.0,18.0,10.0,6.0,11.0,7.0,9.0,5.0,3.0,1.0,,1.0,,2.0,2.0 M83691,5.0,6.0,9.0,5.0,10.0,6.0,1.0,7.0,11.0,12.0,11.0,9.0,5.0,8.0,11.0,8.0,7.0,8.0,7.0,12.0,6.0,8.0,10.0,9.0,12.0,1.0,3.0,12.0,7.0,11.0,7.0,7.0,11.0,11.0,11.0,11.0,5.0,10.0,4.0,10.0,14.0,7.0,11.0,7.0,10.0,12.0,14.0,10.0,10.0,11.0,11.0,13.0,15.0,11.0,14.0,11.0,15.0,19.0,20.0,13.0,19.0,24.0,24.0,28.0,18.0,11.0,9.0,14.0,11.0,10.0,11.0,17.0,17.0,11.0,9.0,17.0,13.0,18.0,13.0,9.0,13.0,13.0,11.0,7.0,6.0,1.0,6.0,10.0,6.0,6.0,1.0,5.0,3.0,2.0,,2.0 M83693,31.0,46.0,53.0,47.0,50.0,54.0,43.0,56.0,58.0,61.0,46.0,47.0,58.0,55.0,40.0,53.0,51.0,42.0,43.0,52.0,41.0,34.0,36.0,30.0,31.0,31.0,41.0,50.0,52.0,53.0,52.0,59.0,60.0,53.0,66.0,57.0,59.0,54.0,53.0,44.0,47.0,59.0,60.0,45.0,42.0,66.0,54.0,45.0,44.0,46.0,36.0,32.0,41.0,61.0,50.0,50.0,53.0,41.0,49.0,51.0,44.0,46.0,43.0,40.0,37.0,40.0,20.0,27.0,36.0,31.0,24.0,31.0,22.0,19.0,27.0,16.0,24.0,23.0,18.0,14.0,15.0,13.0,10.0,5.0,3.0,2.0,5.0,1.0,2.0,4.0,1.0,1.0,,1.0,1.0,1.0 M83697,16.0,29.0,18.0,28.0,26.0,21.0,24.0,24.0,24.0,27.0,20.0,23.0,20.0,33.0,13.0,19.0,24.0,27.0,17.0,24.0,24.0,20.0,21.0,10.0,18.0,19.0,14.0,25.0,26.0,28.0,38.0,27.0,33.0,26.0,30.0,34.0,43.0,27.0,30.0,29.0,32.0,27.0,26.0,28.0,25.0,23.0,26.0,30.0,21.0,17.0,17.0,21.0,24.0,20.0,21.0,23.0,18.0,11.0,15.0,23.0,20.0,27.0,16.0,18.0,15.0,19.0,14.0,11.0,12.0,10.0,8.0,8.0,10.0,7.0,15.0,15.0,10.0,8.0,10.0,13.0,4.0,4.0,4.0,3.0,8.0,6.0,4.0,2.0,5.0,5.0,2.0,1.0,4.0,,1.0,2.0 M83698,10.0,8.0,8.0,12.0,15.0,19.0,11.0,18.0,13.0,25.0,23.0,20.0,20.0,15.0,14.0,18.0,12.0,17.0,21.0,13.0,19.0,15.0,14.0,8.0,13.0,17.0,16.0,12.0,26.0,22.0,28.0,26.0,24.0,21.0,31.0,23.0,27.0,24.0,14.0,21.0,16.0,18.0,23.0,22.0,11.0,15.0,15.0,14.0,16.0,19.0,19.0,27.0,18.0,28.0,18.0,25.0,27.0,33.0,23.0,23.0,33.0,19.0,21.0,22.0,22.0,20.0,14.0,16.0,8.0,12.0,10.0,16.0,12.0,9.0,23.0,10.0,21.0,20.0,21.0,13.0,17.0,12.0,18.0,17.0,13.0,8.0,8.0,9.0,5.0,5.0,2.0,1.0,1.0,4.0,,1.0 M83701,19.0,30.0,22.0,25.0,21.0,35.0,24.0,20.0,26.0,26.0,30.0,25.0,21.0,20.0,25.0,32.0,22.0,31.0,15.0,14.0,23.0,25.0,20.0,15.0,22.0,24.0,24.0,29.0,22.0,33.0,35.0,35.0,32.0,36.0,34.0,33.0,44.0,33.0,34.0,30.0,23.0,29.0,31.0,27.0,25.0,31.0,30.0,23.0,16.0,21.0,35.0,37.0,24.0,27.0,34.0,33.0,33.0,30.0,33.0,33.0,35.0,32.0,27.0,19.0,23.0,20.0,31.0,32.0,18.0,29.0,22.0,25.0,21.0,24.0,21.0,18.0,23.0,23.0,30.0,10.0,16.0,16.0,21.0,18.0,8.0,10.0,2.0,8.0,8.0,4.0,3.0,4.0,4.0,4.0,, M83703,27.0,24.0,28.0,43.0,25.0,31.0,31.0,36.0,32.0,34.0,32.0,26.0,34.0,38.0,31.0,39.0,28.0,23.0,36.0,31.0,27.0,34.0,20.0,34.0,26.0,39.0,38.0,39.0,30.0,34.0,30.0,38.0,31.0,28.0,34.0,37.0,35.0,35.0,34.0,37.0,37.0,37.0,28.0,34.0,37.0,43.0,23.0,27.0,39.0,29.0,29.0,28.0,46.0,40.0,38.0,44.0,45.0,52.0,48.0,40.0,39.0,41.0,47.0,47.0,23.0,26.0,32.0,28.0,36.0,33.0,25.0,25.0,20.0,17.0,19.0,25.0,25.0,25.0,29.0,26.0,19.0,14.0,22.0,17.0,10.0,10.0,8.0,6.0,9.0,12.0,3.0,3.0,2.0,,1.0,2.0 M83709,32.0,26.0,22.0,20.0,32.0,32.0,28.0,40.0,28.0,25.0,50.0,37.0,38.0,42.0,36.0,34.0,26.0,43.0,27.0,36.0,25.0,39.0,36.0,30.0,26.0,27.0,24.0,37.0,32.0,32.0,27.0,26.0,39.0,30.0,38.0,36.0,37.0,48.0,51.0,33.0,36.0,41.0,41.0,35.0,35.0,44.0,29.0,31.0,32.0,26.0,43.0,39.0,49.0,41.0,49.0,54.0,45.0,42.0,39.0,36.0,49.0,32.0,49.0,61.0,38.0,39.0,51.0,38.0,39.0,32.0,29.0,21.0,30.0,28.0,17.0,27.0,29.0,32.0,26.0,16.0,23.0,23.0,12.0,13.0,8.0,10.0,11.0,11.0,8.0,4.0,6.0,,1.0,3.0,7.0,2.0 M83711,34.0,16.0,21.0,19.0,22.0,31.0,12.0,15.0,18.0,19.0,15.0,22.0,23.0,22.0,22.0,23.0,22.0,20.0,20.0,13.0,19.0,12.0,14.0,11.0,18.0,22.0,15.0,11.0,15.0,29.0,13.0,24.0,29.0,16.0,31.0,32.0,23.0,23.0,28.0,25.0,33.0,37.0,23.0,24.0,28.0,28.0,25.0,19.0,37.0,19.0,29.0,28.0,31.0,34.0,31.0,24.0,30.0,24.0,24.0,29.0,22.0,19.0,28.0,36.0,21.0,32.0,24.0,18.0,22.0,24.0,25.0,25.0,24.0,19.0,13.0,22.0,27.0,29.0,23.0,17.0,15.0,21.0,9.0,12.0,6.0,10.0,12.0,9.0,6.0,9.0,6.0,3.0,2.0,3.0,,5.0 M83713,24.0,28.0,20.0,30.0,34.0,33.0,25.0,26.0,28.0,30.0,37.0,28.0,30.0,44.0,31.0,20.0,33.0,39.0,35.0,30.0,38.0,32.0,24.0,32.0,30.0,34.0,24.0,22.0,54.0,40.0,25.0,36.0,40.0,26.0,39.0,40.0,40.0,33.0,35.0,48.0,32.0,37.0,41.0,30.0,32.0,38.0,34.0,27.0,41.0,21.0,29.0,26.0,22.0,36.0,39.0,29.0,36.0,34.0,32.0,26.0,30.0,33.0,29.0,40.0,23.0,18.0,30.0,30.0,36.0,31.0,28.0,31.0,28.0,22.0,24.0,19.0,23.0,23.0,26.0,18.0,14.0,13.0,15.0,16.0,12.0,7.0,11.0,12.0,6.0,3.0,5.0,8.0,1.0,3.0,2.0,3.0 M83715,16.0,22.0,25.0,29.0,30.0,30.0,28.0,32.0,36.0,32.0,20.0,32.0,37.0,33.0,37.0,32.0,26.0,25.0,25.0,29.0,30.0,20.0,19.0,24.0,19.0,23.0,23.0,27.0,38.0,36.0,25.0,28.0,23.0,45.0,46.0,34.0,32.0,44.0,34.0,34.0,29.0,30.0,36.0,35.0,31.0,28.0,24.0,29.0,25.0,13.0,30.0,22.0,35.0,27.0,34.0,38.0,31.0,42.0,41.0,36.0,37.0,34.0,39.0,48.0,20.0,27.0,44.0,25.0,26.0,35.0,32.0,25.0,22.0,14.0,20.0,23.0,22.0,14.0,16.0,17.0,12.0,13.0,9.0,12.0,10.0,12.0,9.0,4.0,4.0,4.0,1.0,2.0,,,,1.0 M83717,22.0,29.0,17.0,26.0,23.0,26.0,32.0,25.0,25.0,19.0,17.0,15.0,18.0,25.0,15.0,19.0,28.0,23.0,20.0,20.0,14.0,32.0,17.0,15.0,16.0,17.0,25.0,31.0,28.0,27.0,25.0,26.0,33.0,30.0,35.0,26.0,34.0,33.0,27.0,31.0,21.0,28.0,25.0,25.0,24.0,20.0,20.0,18.0,20.0,13.0,21.0,15.0,19.0,17.0,43.0,17.0,26.0,25.0,21.0,28.0,30.0,33.0,23.0,24.0,23.0,17.0,14.0,16.0,16.0,13.0,20.0,9.0,14.0,6.0,11.0,12.0,22.0,18.0,15.0,14.0,15.0,11.0,12.0,7.0,8.0,1.0,4.0,3.0,1.0,2.0,3.0,,,1.0,, M83718,18.0,20.0,26.0,24.0,24.0,28.0,24.0,27.0,24.0,24.0,20.0,22.0,29.0,21.0,18.0,23.0,14.0,14.0,15.0,18.0,18.0,18.0,12.0,17.0,22.0,34.0,21.0,37.0,38.0,34.0,37.0,39.0,60.0,38.0,56.0,34.0,52.0,47.0,47.0,42.0,45.0,36.0,41.0,45.0,37.0,32.0,33.0,25.0,15.0,19.0,18.0,27.0,25.0,19.0,25.0,23.0,23.0,27.0,29.0,18.0,29.0,19.0,17.0,20.0,22.0,16.0,17.0,21.0,16.0,14.0,13.0,19.0,15.0,12.0,18.0,18.0,12.0,16.0,4.0,9.0,7.0,11.0,2.0,2.0,2.0,5.0,4.0,7.0,3.0,3.0,2.0,,1.0,,,7.0 M83719,14.0,19.0,13.0,18.0,18.0,26.0,26.0,23.0,23.0,33.0,20.0,35.0,42.0,17.0,32.0,36.0,16.0,26.0,20.0,29.0,22.0,15.0,21.0,20.0,24.0,27.0,33.0,19.0,27.0,29.0,35.0,26.0,30.0,36.0,32.0,30.0,30.0,33.0,27.0,34.0,33.0,20.0,29.0,27.0,30.0,29.0,32.0,30.0,21.0,22.0,27.0,31.0,34.0,22.0,35.0,29.0,41.0,37.0,38.0,41.0,36.0,31.0,35.0,24.0,33.0,25.0,32.0,30.0,23.0,27.0,18.0,26.0,17.0,19.0,23.0,20.0,23.0,24.0,18.0,13.0,18.0,16.0,5.0,7.0,2.0,4.0,3.0,2.0,4.0,3.0,4.0,3.0,1.0,2.0,2.0, M83723,107.0,115.0,119.0,140.0,123.0,133.0,129.0,172.0,164.0,153.0,143.0,174.0,146.0,160.0,170.0,164.0,167.0,167.0,171.0,143.0,149.0,146.0,115.0,134.0,138.0,136.0,168.0,153.0,163.0,153.0,161.0,156.0,158.0,195.0,183.0,192.0,178.0,168.0,184.0,189.0,175.0,165.0,165.0,154.0,161.0,182.0,165.0,139.0,140.0,141.0,129.0,150.0,147.0,163.0,169.0,172.0,122.0,145.0,157.0,152.0,145.0,145.0,124.0,139.0,135.0,116.0,128.0,121.0,130.0,104.0,110.0,90.0,100.0,87.0,79.0,101.0,85.0,91.0,97.0,66.0,60.0,55.0,55.0,49.0,30.0,37.0,27.0,32.0,19.0,25.0,17.0,7.0,11.0,11.0,10.0,7.0 M83725,19.0,23.0,34.0,32.0,23.0,19.0,28.0,32.0,33.0,41.0,23.0,35.0,38.0,28.0,25.0,44.0,31.0,37.0,18.0,30.0,34.0,21.0,36.0,19.0,27.0,27.0,20.0,28.0,22.0,28.0,38.0,31.0,41.0,35.0,31.0,27.0,33.0,33.0,44.0,37.0,22.0,30.0,26.0,33.0,34.0,29.0,29.0,25.0,18.0,22.0,16.0,26.0,20.0,27.0,23.0,27.0,20.0,22.0,25.0,15.0,24.0,18.0,20.0,22.0,16.0,12.0,25.0,15.0,13.0,15.0,13.0,15.0,9.0,17.0,9.0,11.0,16.0,12.0,15.0,13.0,5.0,7.0,5.0,3.0,4.0,1.0,1.0,1.0,3.0,2.0,,1.0,,,1.0, M83727,25.0,17.0,23.0,20.0,21.0,17.0,20.0,18.0,23.0,24.0,25.0,23.0,25.0,22.0,20.0,20.0,20.0,22.0,18.0,19.0,18.0,21.0,18.0,23.0,20.0,26.0,21.0,20.0,19.0,19.0,17.0,31.0,28.0,37.0,18.0,25.0,41.0,27.0,25.0,37.0,26.0,23.0,24.0,18.0,25.0,21.0,17.0,19.0,17.0,26.0,34.0,16.0,27.0,35.0,38.0,28.0,39.0,34.0,32.0,27.0,28.0,28.0,35.0,25.0,27.0,31.0,35.0,32.0,21.0,28.0,27.0,32.0,26.0,30.0,19.0,22.0,27.0,29.0,24.0,9.0,21.0,14.0,9.0,9.0,9.0,7.0,8.0,7.0,5.0,,9.0,2.0,2.0,3.0,1.0,1.0 M83738,34.0,25.0,35.0,30.0,45.0,35.0,33.0,38.0,38.0,43.0,34.0,25.0,40.0,35.0,34.0,34.0,37.0,22.0,45.0,32.0,38.0,38.0,33.0,31.0,30.0,37.0,42.0,46.0,40.0,34.0,53.0,54.0,39.0,63.0,52.0,51.0,47.0,54.0,35.0,46.0,39.0,43.0,37.0,38.0,36.0,41.0,42.0,28.0,25.0,35.0,36.0,43.0,42.0,48.0,49.0,48.0,59.0,51.0,42.0,56.0,56.0,60.0,40.0,52.0,60.0,43.0,46.0,43.0,29.0,30.0,33.0,38.0,28.0,33.0,39.0,36.0,26.0,29.0,48.0,22.0,29.0,26.0,30.0,17.0,18.0,12.0,17.0,8.0,11.0,9.0,9.0,6.0,,4.0,5.0,1.0 Y00078,24.0,32.0,36.0,33.0,41.0,30.0,37.0,54.0,28.0,49.0,36.0,40.0,43.0,50.0,38.0,46.0,38.0,34.0,40.0,35.0,25.0,33.0,30.0,29.0,30.0,30.0,36.0,32.0,43.0,41.0,36.0,36.0,34.0,42.0,35.0,48.0,38.0,47.0,29.0,34.0,49.0,51.0,49.0,40.0,37.0,37.0,35.0,40.0,27.0,26.0,29.0,34.0,40.0,43.0,44.0,22.0,41.0,29.0,31.0,24.0,38.0,29.0,25.0,26.0,24.0,21.0,20.0,28.0,30.0,19.0,16.0,13.0,18.0,21.0,18.0,19.0,18.0,9.0,14.0,18.0,12.0,17.0,6.0,12.0,12.0,7.0,5.0,5.0,2.0,2.0,1.0,1.0,1.0,3.0,3.0,3.0 Y02354,39.0,34.0,33.0,47.0,48.0,43.0,65.0,64.0,57.0,48.0,54.0,68.0,49.0,74.0,65.0,63.0,61.0,70.0,51.0,49.0,51.0,48.0,41.0,43.0,55.0,42.0,50.0,63.0,55.0,63.0,47.0,57.0,53.0,57.0,63.0,67.0,83.0,62.0,70.0,64.0,68.0,67.0,65.0,67.0,67.0,54.0,57.0,33.0,48.0,50.0,58.0,70.0,63.0,60.0,58.0,74.0,74.0,63.0,61.0,73.0,69.0,73.0,81.0,68.0,59.0,50.0,49.0,48.0,29.0,34.0,42.0,58.0,39.0,44.0,38.0,43.0,31.0,49.0,46.0,43.0,33.0,27.0,39.0,16.0,23.0,18.0,16.0,15.0,12.0,18.0,10.0,10.0,2.0,4.0,5.0,3.0 Y02521,68.0,48.0,68.0,54.0,60.0,68.0,80.0,90.0,86.0,90.0,109.0,82.0,108.0,100.0,103.0,84.0,84.0,89.0,82.0,68.0,74.0,65.0,61.0,51.0,50.0,59.0,69.0,73.0,60.0,70.0,81.0,81.0,64.0,77.0,76.0,82.0,88.0,74.0,95.0,93.0,75.0,85.0,85.0,78.0,81.0,63.0,82.0,62.0,47.0,55.0,63.0,55.0,59.0,60.0,56.0,58.0,65.0,59.0,52.0,59.0,49.0,38.0,53.0,45.0,34.0,48.0,49.0,32.0,41.0,34.0,35.0,37.0,41.0,18.0,23.0,20.0,25.0,15.0,16.0,17.0,10.0,12.0,10.0,5.0,9.0,7.0,7.0,8.0,14.0,4.0,3.0,5.0,,3.0,1.0,2.0 Y02594,15.0,18.0,19.0,24.0,27.0,24.0,19.0,22.0,31.0,17.0,24.0,24.0,16.0,19.0,20.0,21.0,15.0,18.0,12.0,19.0,19.0,11.0,8.0,12.0,11.0,13.0,13.0,14.0,15.0,12.0,14.0,15.0,17.0,17.0,22.0,20.0,20.0,15.0,22.0,17.0,15.0,18.0,10.0,20.0,13.0,25.0,13.0,18.0,15.0,17.0,13.0,9.0,24.0,13.0,15.0,28.0,16.0,13.0,13.0,18.0,18.0,12.0,14.0,13.0,32.0,17.0,14.0,20.0,14.0,11.0,14.0,11.0,13.0,11.0,12.0,11.0,9.0,5.0,12.0,11.0,7.0,6.0,6.0,8.0,9.0,5.0,1.0,4.0,8.0,3.0,3.0,2.0,1.0,,1.0,2.0 Y02867,29.0,26.0,50.0,31.0,39.0,21.0,30.0,28.0,32.0,38.0,50.0,39.0,27.0,32.0,29.0,33.0,38.0,21.0,25.0,35.0,29.0,28.0,27.0,29.0,32.0,42.0,43.0,37.0,40.0,39.0,42.0,43.0,52.0,50.0,51.0,49.0,55.0,61.0,57.0,53.0,48.0,56.0,47.0,40.0,42.0,42.0,43.0,36.0,30.0,40.0,35.0,29.0,31.0,24.0,32.0,29.0,19.0,22.0,21.0,18.0,22.0,25.0,24.0,23.0,18.0,22.0,14.0,15.0,16.0,17.0,7.0,9.0,10.0,9.0,13.0,11.0,11.0,13.0,11.0,2.0,12.0,3.0,6.0,7.0,5.0,6.0,1.0,6.0,5.0,7.0,,,2.0,2.0,1.0,2.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 H81013,134.0,157.0,149.0,162.0,172.0,148.0,172.0,168.0,144.0,178.0,172.0,165.0,171.0,201.0,173.0,170.0,170.0,166.0,142.0,151.0,142.0,124.0,122.0,133.0,127.0,152.0,168.0,152.0,155.0,164.0,163.0,127.0,164.0,205.0,186.0,209.0,195.0,209.0,196.0,202.0,200.0,211.0,189.0,182.0,178.0,194.0,202.0,198.0,183.0,218.0,172.0,196.0,179.0,190.0,226.0,186.0,192.0,204.0,215.0,186.0,207.0,177.0,162.0,175.0,161.0,157.0,126.0,143.0,126.0,139.0,137.0,126.0,129.0,117.0,111.0,112.0,113.0,137.0,142.0,96.0,102.0,95.0,69.0,81.0,46.0,56.0,50.0,46.0,35.0,33.0,25.0,19.0,10.0,19.0,9.0,16.0 H81027,60.0,61.0,61.0,82.0,90.0,83.0,93.0,116.0,91.0,93.0,105.0,104.0,106.0,96.0,93.0,105.0,103.0,104.0,104.0,108.0,75.0,83.0,84.0,99.0,82.0,101.0,93.0,110.0,90.0,90.0,90.0,104.0,81.0,91.0,96.0,93.0,86.0,102.0,87.0,104.0,114.0,104.0,104.0,110.0,125.0,124.0,102.0,105.0,101.0,107.0,97.0,123.0,113.0,114.0,141.0,125.0,110.0,105.0,130.0,126.0,109.0,112.0,121.0,96.0,104.0,95.0,79.0,78.0,79.0,65.0,62.0,67.0,70.0,57.0,66.0,73.0,82.0,88.0,78.0,50.0,77.0,69.0,53.0,35.0,35.0,28.0,36.0,27.0,24.0,19.0,16.0,18.0,18.0,12.0,11.0,14.0 H81039,24.0,28.0,35.0,27.0,46.0,34.0,40.0,38.0,44.0,38.0,52.0,39.0,43.0,38.0,39.0,37.0,36.0,47.0,31.0,26.0,29.0,42.0,35.0,31.0,33.0,34.0,39.0,32.0,35.0,34.0,38.0,47.0,36.0,39.0,43.0,45.0,38.0,50.0,44.0,55.0,47.0,55.0,58.0,63.0,62.0,42.0,49.0,47.0,51.0,42.0,42.0,37.0,32.0,40.0,61.0,46.0,41.0,46.0,44.0,59.0,36.0,50.0,41.0,49.0,36.0,32.0,41.0,32.0,41.0,21.0,19.0,34.0,28.0,27.0,34.0,22.0,34.0,37.0,34.0,24.0,26.0,18.0,23.0,11.0,17.0,10.0,16.0,12.0,12.0,9.0,10.0,5.0,1.0,2.0,4.0,2.0 H81040,38.0,44.0,31.0,44.0,49.0,45.0,45.0,45.0,45.0,51.0,48.0,53.0,68.0,58.0,49.0,63.0,52.0,55.0,53.0,51.0,51.0,46.0,36.0,48.0,39.0,56.0,58.0,38.0,69.0,57.0,63.0,63.0,83.0,74.0,78.0,72.0,69.0,72.0,86.0,54.0,66.0,72.0,84.0,74.0,57.0,65.0,63.0,61.0,60.0,62.0,56.0,76.0,70.0,52.0,72.0,63.0,57.0,62.0,45.0,50.0,48.0,65.0,52.0,49.0,46.0,35.0,48.0,45.0,32.0,33.0,43.0,31.0,30.0,24.0,24.0,36.0,35.0,39.0,39.0,22.0,31.0,25.0,25.0,24.0,13.0,17.0,17.0,12.0,19.0,11.0,6.0,1.0,8.0,6.0,3.0,6.0 H81047,32.0,38.0,42.0,31.0,46.0,31.0,67.0,42.0,56.0,68.0,66.0,63.0,97.0,88.0,83.0,84.0,93.0,67.0,93.0,94.0,79.0,77.0,81.0,75.0,78.0,93.0,83.0,78.0,60.0,75.0,61.0,68.0,74.0,84.0,73.0,70.0,80.0,75.0,79.0,78.0,73.0,71.0,82.0,75.0,78.0,103.0,81.0,83.0,80.0,84.0,92.0,86.0,90.0,99.0,87.0,92.0,90.0,94.0,90.0,93.0,89.0,90.0,84.0,87.0,71.0,69.0,60.0,72.0,47.0,65.0,54.0,47.0,55.0,55.0,60.0,36.0,52.0,60.0,60.0,60.0,46.0,32.0,29.0,30.0,30.0,27.0,28.0,19.0,18.0,16.0,13.0,15.0,7.0,11.0,10.0,11.0 H81069,86.0,98.0,99.0,122.0,97.0,100.0,115.0,143.0,135.0,148.0,166.0,141.0,157.0,136.0,167.0,147.0,136.0,141.0,124.0,130.0,122.0,120.0,120.0,125.0,134.0,133.0,125.0,143.0,143.0,152.0,133.0,113.0,151.0,140.0,122.0,151.0,148.0,146.0,160.0,160.0,187.0,157.0,165.0,133.0,194.0,182.0,173.0,142.0,171.0,148.0,174.0,158.0,171.0,157.0,179.0,163.0,151.0,173.0,149.0,155.0,164.0,141.0,154.0,137.0,126.0,118.0,92.0,96.0,88.0,85.0,84.0,79.0,81.0,83.0,70.0,90.0,81.0,106.0,99.0,69.0,68.0,88.0,75.0,48.0,39.0,43.0,38.0,33.0,24.0,32.0,19.0,21.0,14.0,15.0,6.0,22.0 H81075,42.0,42.0,48.0,44.0,43.0,53.0,56.0,57.0,44.0,66.0,75.0,67.0,64.0,75.0,82.0,66.0,82.0,81.0,63.0,61.0,59.0,67.0,48.0,53.0,73.0,69.0,71.0,66.0,68.0,71.0,67.0,72.0,95.0,98.0,81.0,84.0,93.0,96.0,80.0,86.0,66.0,86.0,82.0,84.0,92.0,94.0,84.0,86.0,82.0,72.0,71.0,75.0,78.0,96.0,91.0,103.0,94.0,66.0,69.0,86.0,76.0,72.0,90.0,79.0,73.0,65.0,49.0,61.0,59.0,55.0,49.0,60.0,55.0,33.0,36.0,32.0,34.0,39.0,41.0,34.0,25.0,48.0,34.0,17.0,27.0,25.0,23.0,17.0,14.0,10.0,13.0,16.0,12.0,6.0,5.0,5.0 H81082,47.0,39.0,51.0,48.0,58.0,47.0,50.0,56.0,48.0,50.0,40.0,55.0,53.0,55.0,57.0,60.0,59.0,54.0,44.0,41.0,51.0,41.0,47.0,63.0,55.0,60.0,74.0,62.0,78.0,77.0,74.0,74.0,83.0,87.0,71.0,82.0,91.0,90.0,82.0,75.0,68.0,70.0,72.0,74.0,87.0,71.0,58.0,63.0,82.0,53.0,79.0,64.0,65.0,73.0,66.0,63.0,58.0,54.0,77.0,67.0,79.0,53.0,56.0,73.0,90.0,44.0,42.0,44.0,48.0,50.0,47.0,40.0,39.0,43.0,27.0,28.0,29.0,37.0,37.0,21.0,26.0,30.0,25.0,21.0,17.0,14.0,7.0,9.0,12.0,3.0,9.0,14.0,6.0,4.0,5.0,6.0 H81088,46.0,61.0,44.0,68.0,62.0,72.0,61.0,66.0,83.0,82.0,87.0,87.0,107.0,65.0,65.0,74.0,83.0,82.0,101.0,106.0,128.0,108.0,86.0,97.0,114.0,93.0,89.0,77.0,88.0,78.0,60.0,76.0,91.0,82.0,85.0,100.0,91.0,76.0,82.0,105.0,93.0,102.0,104.0,95.0,90.0,90.0,91.0,100.0,105.0,88.0,96.0,92.0,93.0,115.0,107.0,116.0,107.0,88.0,83.0,99.0,83.0,88.0,83.0,87.0,72.0,60.0,72.0,70.0,64.0,59.0,62.0,65.0,59.0,60.0,60.0,53.0,67.0,66.0,79.0,57.0,51.0,44.0,40.0,25.0,39.0,27.0,29.0,30.0,13.0,11.0,24.0,13.0,7.0,8.0,4.0,8.0 H81110,22.0,23.0,22.0,43.0,37.0,29.0,32.0,34.0,36.0,36.0,45.0,40.0,51.0,41.0,46.0,46.0,53.0,59.0,44.0,36.0,38.0,19.0,24.0,46.0,31.0,34.0,25.0,31.0,34.0,24.0,26.0,25.0,29.0,25.0,25.0,32.0,23.0,42.0,29.0,22.0,35.0,41.0,33.0,34.0,34.0,42.0,56.0,28.0,37.0,55.0,44.0,49.0,53.0,57.0,63.0,44.0,50.0,50.0,56.0,52.0,56.0,43.0,50.0,34.0,53.0,40.0,40.0,35.0,27.0,37.0,30.0,31.0,22.0,38.0,23.0,33.0,21.0,29.0,35.0,29.0,20.0,27.0,25.0,8.0,16.0,20.0,15.0,16.0,7.0,12.0,5.0,6.0,3.0,4.0,2.0,7.0 H81130,60.0,86.0,84.0,81.0,74.0,86.0,84.0,84.0,90.0,109.0,89.0,99.0,92.0,101.0,96.0,86.0,101.0,69.0,90.0,73.0,69.0,70.0,70.0,90.0,64.0,77.0,65.0,74.0,67.0,71.0,71.0,67.0,73.0,70.0,83.0,101.0,96.0,86.0,82.0,78.0,84.0,105.0,93.0,115.0,85.0,120.0,86.0,101.0,106.0,104.0,110.0,123.0,89.0,120.0,120.0,99.0,133.0,110.0,130.0,113.0,109.0,119.0,119.0,110.0,100.0,90.0,117.0,113.0,95.0,84.0,65.0,58.0,78.0,82.0,58.0,61.0,64.0,85.0,65.0,54.0,50.0,55.0,51.0,43.0,31.0,31.0,30.0,31.0,22.0,25.0,16.0,10.0,11.0,7.0,9.0,10.0 H81615,52.0,84.0,71.0,78.0,80.0,95.0,100.0,89.0,110.0,114.0,115.0,115.0,142.0,130.0,130.0,104.0,131.0,119.0,130.0,114.0,81.0,84.0,81.0,81.0,70.0,70.0,68.0,70.0,71.0,70.0,52.0,55.0,65.0,64.0,74.0,64.0,77.0,71.0,82.0,82.0,93.0,85.0,104.0,108.0,113.0,115.0,95.0,103.0,99.0,123.0,84.0,123.0,109.0,93.0,95.0,113.0,105.0,99.0,97.0,86.0,106.0,77.0,64.0,79.0,89.0,63.0,55.0,44.0,57.0,54.0,51.0,63.0,47.0,40.0,51.0,51.0,63.0,42.0,56.0,46.0,38.0,35.0,29.0,27.0,22.0,25.0,14.0,16.0,14.0,11.0,15.0,6.0,6.0,8.0,1.0,7.0 J82015,46.0,61.0,63.0,46.0,57.0,64.0,68.0,49.0,44.0,72.0,58.0,62.0,74.0,61.0,61.0,48.0,41.0,59.0,65.0,52.0,56.0,54.0,38.0,39.0,52.0,51.0,47.0,49.0,49.0,58.0,71.0,77.0,61.0,76.0,73.0,65.0,86.0,97.0,85.0,99.0,65.0,85.0,71.0,80.0,54.0,81.0,55.0,53.0,63.0,65.0,58.0,62.0,52.0,56.0,66.0,65.0,63.0,59.0,68.0,57.0,66.0,54.0,54.0,70.0,52.0,55.0,49.0,39.0,43.0,43.0,32.0,43.0,32.0,20.0,34.0,26.0,36.0,39.0,36.0,18.0,31.0,40.0,24.0,22.0,21.0,18.0,16.0,9.0,7.0,10.0,7.0,2.0,,3.0,,5.0 J82049,129.0,130.0,159.0,147.0,168.0,169.0,162.0,153.0,149.0,170.0,153.0,158.0,177.0,169.0,163.0,179.0,177.0,175.0,131.0,165.0,164.0,143.0,141.0,159.0,168.0,158.0,174.0,154.0,162.0,170.0,174.0,182.0,163.0,182.0,200.0,184.0,193.0,190.0,191.0,180.0,178.0,198.0,229.0,208.0,219.0,193.0,203.0,182.0,173.0,194.0,192.0,187.0,209.0,200.0,222.0,182.0,212.0,199.0,223.0,198.0,199.0,214.0,218.0,189.0,178.0,182.0,167.0,140.0,169.0,142.0,149.0,147.0,145.0,147.0,143.0,153.0,154.0,170.0,157.0,127.0,106.0,104.0,90.0,86.0,61.0,69.0,59.0,50.0,52.0,40.0,31.0,21.0,16.0,6.0,5.0,20.0 J82066,123.0,142.0,118.0,149.0,133.0,133.0,154.0,155.0,149.0,157.0,133.0,142.0,122.0,142.0,119.0,138.0,121.0,129.0,119.0,117.0,102.0,124.0,115.0,135.0,148.0,145.0,144.0,142.0,151.0,160.0,149.0,169.0,161.0,192.0,176.0,185.0,192.0,167.0,164.0,146.0,159.0,154.0,145.0,175.0,176.0,155.0,159.0,141.0,143.0,140.0,151.0,133.0,139.0,142.0,159.0,121.0,108.0,155.0,147.0,160.0,145.0,134.0,155.0,146.0,155.0,96.0,110.0,97.0,104.0,80.0,79.0,73.0,74.0,76.0,60.0,76.0,66.0,83.0,98.0,54.0,55.0,62.0,46.0,39.0,41.0,27.0,31.0,22.0,21.0,14.0,6.0,15.0,8.0,3.0,6.0,7.0 J82067,103.0,110.0,127.0,123.0,122.0,132.0,103.0,117.0,110.0,119.0,134.0,105.0,99.0,112.0,123.0,112.0,100.0,109.0,119.0,93.0,90.0,91.0,91.0,96.0,115.0,94.0,123.0,112.0,116.0,106.0,132.0,118.0,160.0,130.0,173.0,170.0,144.0,163.0,170.0,168.0,155.0,167.0,166.0,153.0,153.0,155.0,137.0,139.0,128.0,117.0,129.0,148.0,151.0,143.0,122.0,149.0,148.0,140.0,145.0,164.0,161.0,124.0,134.0,130.0,122.0,109.0,85.0,104.0,88.0,88.0,79.0,58.0,60.0,67.0,63.0,52.0,80.0,74.0,78.0,53.0,47.0,46.0,39.0,31.0,34.0,19.0,27.0,22.0,20.0,17.0,17.0,9.0,5.0,5.0,1.0,5.0 J82099,60.0,62.0,70.0,71.0,79.0,79.0,121.0,79.0,111.0,122.0,108.0,124.0,105.0,125.0,146.0,111.0,88.0,126.0,99.0,79.0,83.0,73.0,69.0,91.0,70.0,62.0,74.0,67.0,59.0,71.0,59.0,72.0,68.0,72.0,79.0,83.0,81.0,100.0,134.0,98.0,82.0,110.0,92.0,112.0,117.0,130.0,96.0,103.0,120.0,108.0,125.0,109.0,147.0,118.0,118.0,106.0,95.0,126.0,109.0,128.0,93.0,103.0,102.0,71.0,77.0,77.0,64.0,59.0,74.0,55.0,61.0,44.0,45.0,47.0,45.0,45.0,61.0,63.0,61.0,45.0,53.0,38.0,45.0,36.0,35.0,24.0,38.0,32.0,26.0,10.0,21.0,13.0,15.0,8.0,6.0,15.0 J82110,93.0,107.0,99.0,132.0,112.0,146.0,148.0,138.0,169.0,171.0,181.0,185.0,193.0,193.0,189.0,192.0,194.0,188.0,157.0,158.0,111.0,119.0,157.0,141.0,174.0,137.0,159.0,171.0,157.0,157.0,148.0,158.0,140.0,157.0,164.0,169.0,186.0,177.0,176.0,187.0,169.0,189.0,178.0,198.0,199.0,195.0,216.0,218.0,220.0,228.0,219.0,261.0,233.0,222.0,239.0,194.0,227.0,206.0,191.0,214.0,204.0,175.0,199.0,181.0,175.0,135.0,140.0,146.0,107.0,123.0,113.0,101.0,110.0,109.0,106.0,116.0,102.0,129.0,125.0,88.0,99.0,89.0,83.0,66.0,68.0,71.0,51.0,43.0,40.0,41.0,35.0,29.0,16.0,21.0,15.0,24.0 J82120,38.0,44.0,53.0,45.0,50.0,54.0,59.0,66.0,56.0,55.0,54.0,61.0,56.0,59.0,71.0,42.0,58.0,62.0,45.0,49.0,48.0,51.0,53.0,55.0,48.0,64.0,60.0,79.0,62.0,60.0,60.0,65.0,76.0,74.0,67.0,70.0,83.0,74.0,72.0,72.0,72.0,68.0,67.0,78.0,66.0,68.0,67.0,65.0,59.0,84.0,60.0,50.0,78.0,73.0,84.0,67.0,81.0,71.0,57.0,59.0,51.0,67.0,53.0,47.0,40.0,47.0,51.0,42.0,56.0,41.0,39.0,44.0,39.0,34.0,39.0,38.0,43.0,54.0,48.0,38.0,23.0,32.0,24.0,19.0,34.0,18.0,18.0,11.0,12.0,8.0,9.0,5.0,9.0,4.0,3.0,5.0 J82125,30.0,26.0,30.0,31.0,37.0,43.0,32.0,43.0,44.0,57.0,47.0,48.0,54.0,59.0,44.0,37.0,40.0,50.0,40.0,44.0,48.0,43.0,46.0,38.0,39.0,47.0,49.0,50.0,49.0,52.0,46.0,51.0,55.0,62.0,75.0,64.0,55.0,74.0,44.0,69.0,50.0,64.0,70.0,43.0,44.0,58.0,48.0,48.0,47.0,44.0,63.0,55.0,54.0,57.0,55.0,57.0,57.0,48.0,66.0,72.0,63.0,57.0,53.0,64.0,40.0,65.0,46.0,61.0,48.0,40.0,33.0,34.0,35.0,26.0,25.0,34.0,31.0,28.0,44.0,23.0,28.0,27.0,20.0,22.0,14.0,20.0,18.0,9.0,17.0,11.0,4.0,2.0,3.0,6.0,,1.0 J82142,74.0,83.0,84.0,83.0,71.0,78.0,103.0,84.0,70.0,68.0,72.0,71.0,79.0,58.0,67.0,74.0,63.0,64.0,64.0,53.0,53.0,45.0,43.0,46.0,62.0,62.0,87.0,61.0,76.0,83.0,86.0,86.0,93.0,104.0,97.0,106.0,103.0,120.0,98.0,93.0,102.0,89.0,108.0,93.0,113.0,87.0,80.0,93.0,72.0,81.0,68.0,80.0,88.0,96.0,63.0,78.0,83.0,71.0,75.0,75.0,70.0,74.0,59.0,62.0,71.0,62.0,59.0,54.0,45.0,55.0,46.0,50.0,32.0,47.0,40.0,35.0,48.0,45.0,40.0,30.0,21.0,31.0,24.0,12.0,16.0,14.0,15.0,15.0,5.0,9.0,2.0,6.0,,1.0,4.0,2.0 J82178,72.0,71.0,60.0,78.0,98.0,69.0,81.0,78.0,72.0,68.0,82.0,60.0,80.0,72.0,54.0,78.0,63.0,57.0,49.0,62.0,71.0,73.0,79.0,93.0,86.0,91.0,109.0,94.0,89.0,117.0,109.0,101.0,115.0,141.0,116.0,105.0,120.0,128.0,155.0,131.0,121.0,114.0,112.0,112.0,95.0,83.0,98.0,90.0,78.0,66.0,83.0,86.0,68.0,78.0,58.0,61.0,63.0,57.0,48.0,54.0,47.0,63.0,61.0,64.0,44.0,38.0,39.0,44.0,29.0,28.0,24.0,29.0,25.0,35.0,24.0,28.0,35.0,35.0,47.0,34.0,35.0,43.0,26.0,27.0,20.0,21.0,13.0,13.0,13.0,10.0,6.0,1.0,4.0,6.0,3.0,5.0 J82181,38.0,35.0,47.0,41.0,44.0,50.0,62.0,63.0,49.0,47.0,69.0,54.0,54.0,57.0,64.0,63.0,59.0,63.0,56.0,50.0,60.0,47.0,47.0,40.0,59.0,58.0,43.0,63.0,53.0,80.0,79.0,65.0,49.0,76.0,96.0,91.0,90.0,96.0,79.0,73.0,70.0,77.0,72.0,68.0,70.0,65.0,69.0,60.0,56.0,69.0,47.0,47.0,56.0,49.0,62.0,62.0,51.0,65.0,53.0,73.0,49.0,54.0,49.0,66.0,79.0,33.0,36.0,33.0,30.0,35.0,25.0,30.0,17.0,29.0,28.0,31.0,35.0,38.0,42.0,26.0,31.0,26.0,22.0,19.0,13.0,11.0,10.0,10.0,4.0,7.0,4.0,3.0,2.0,1.0,1.0,6.0 J82198,59.0,63.0,37.0,45.0,76.0,46.0,47.0,37.0,34.0,51.0,45.0,42.0,37.0,37.0,41.0,35.0,36.0,25.0,34.0,32.0,24.0,26.0,24.0,37.0,36.0,44.0,56.0,52.0,34.0,43.0,54.0,62.0,45.0,58.0,75.0,65.0,49.0,56.0,38.0,51.0,55.0,35.0,36.0,42.0,49.0,30.0,37.0,32.0,16.0,34.0,33.0,25.0,34.0,30.0,38.0,38.0,25.0,33.0,31.0,38.0,33.0,24.0,29.0,24.0,26.0,13.0,18.0,17.0,25.0,11.0,17.0,10.0,7.0,21.0,9.0,16.0,12.0,20.0,17.0,18.0,22.0,16.0,15.0,9.0,10.0,9.0,8.0,4.0,5.0,5.0,3.0,4.0,1.0,2.0,4.0,1.0 J82628,30.0,24.0,27.0,36.0,37.0,40.0,44.0,34.0,41.0,53.0,49.0,36.0,43.0,48.0,54.0,42.0,43.0,31.0,30.0,27.0,25.0,28.0,29.0,28.0,24.0,17.0,19.0,27.0,23.0,20.0,24.0,29.0,27.0,31.0,29.0,29.0,38.0,38.0,35.0,39.0,43.0,40.0,37.0,37.0,43.0,49.0,36.0,36.0,38.0,37.0,53.0,51.0,50.0,47.0,33.0,39.0,31.0,35.0,34.0,35.0,45.0,42.0,49.0,31.0,32.0,35.0,31.0,23.0,33.0,22.0,22.0,31.0,27.0,18.0,16.0,21.0,24.0,24.0,24.0,19.0,20.0,17.0,11.0,13.0,18.0,11.0,13.0,13.0,13.0,5.0,5.0,8.0,7.0,4.0,2.0,11.0 J82630,52.0,48.0,51.0,52.0,47.0,61.0,46.0,43.0,40.0,49.0,49.0,39.0,46.0,43.0,35.0,39.0,46.0,31.0,32.0,35.0,36.0,26.0,25.0,37.0,39.0,35.0,42.0,38.0,44.0,53.0,47.0,45.0,49.0,60.0,64.0,62.0,54.0,51.0,55.0,66.0,53.0,54.0,58.0,47.0,54.0,64.0,48.0,58.0,48.0,42.0,57.0,53.0,33.0,43.0,36.0,41.0,30.0,43.0,39.0,39.0,34.0,34.0,43.0,33.0,26.0,20.0,22.0,17.0,14.0,13.0,16.0,16.0,15.0,13.0,15.0,9.0,12.0,10.0,11.0,10.0,11.0,7.0,12.0,2.0,5.0,3.0,8.0,6.0,2.0,3.0,2.0,1.0,2.0,,, K81001,83.0,83.0,84.0,121.0,106.0,110.0,90.0,83.0,95.0,97.0,63.0,97.0,108.0,118.0,92.0,89.0,95.0,89.0,82.0,88.0,78.0,71.0,76.0,74.0,69.0,69.0,81.0,93.0,94.0,92.0,102.0,104.0,126.0,120.0,143.0,163.0,144.0,132.0,120.0,117.0,128.0,117.0,114.0,126.0,126.0,114.0,116.0,98.0,104.0,109.0,112.0,101.0,115.0,91.0,103.0,93.0,95.0,90.0,116.0,101.0,103.0,107.0,94.0,81.0,99.0,67.0,63.0,80.0,66.0,72.0,43.0,58.0,51.0,46.0,36.0,32.0,52.0,41.0,34.0,31.0,31.0,21.0,23.0,18.0,18.0,23.0,21.0,16.0,17.0,12.0,18.0,17.0,9.0,8.0,4.0,9.0 K81010,16.0,20.0,6.0,20.0,28.0,17.0,24.0,37.0,37.0,45.0,41.0,50.0,70.0,60.0,55.0,57.0,41.0,43.0,44.0,49.0,34.0,55.0,43.0,54.0,49.0,53.0,54.0,35.0,30.0,37.0,36.0,32.0,30.0,26.0,24.0,29.0,26.0,37.0,35.0,31.0,28.0,38.0,36.0,49.0,38.0,43.0,36.0,41.0,54.0,49.0,71.0,60.0,60.0,68.0,48.0,61.0,59.0,67.0,76.0,57.0,58.0,73.0,42.0,58.0,52.0,39.0,45.0,43.0,42.0,35.0,28.0,39.0,24.0,29.0,23.0,33.0,35.0,31.0,37.0,26.0,31.0,33.0,16.0,9.0,12.0,12.0,14.0,12.0,14.0,10.0,6.0,9.0,2.0,4.0,5.0,5.0 K81015,14.0,15.0,24.0,20.0,22.0,20.0,32.0,25.0,34.0,21.0,22.0,32.0,15.0,29.0,29.0,22.0,24.0,26.0,18.0,14.0,8.0,13.0,15.0,11.0,24.0,10.0,16.0,16.0,13.0,12.0,21.0,13.0,18.0,17.0,17.0,24.0,36.0,24.0,30.0,33.0,23.0,23.0,37.0,37.0,22.0,30.0,23.0,21.0,26.0,19.0,31.0,15.0,29.0,24.0,23.0,24.0,22.0,22.0,15.0,20.0,30.0,15.0,20.0,28.0,19.0,21.0,19.0,20.0,21.0,11.0,24.0,23.0,19.0,23.0,19.0,17.0,19.0,23.0,11.0,10.0,9.0,5.0,9.0,6.0,3.0,7.0,1.0,2.0,4.0,,3.0,1.0,1.0,1.0,,1.0 K81018,26.0,47.0,37.0,40.0,49.0,53.0,69.0,57.0,57.0,58.0,57.0,56.0,74.0,58.0,85.0,77.0,71.0,77.0,65.0,60.0,51.0,46.0,64.0,40.0,48.0,70.0,57.0,50.0,46.0,53.0,54.0,50.0,49.0,52.0,64.0,73.0,64.0,64.0,75.0,58.0,62.0,66.0,84.0,76.0,73.0,75.0,81.0,74.0,76.0,79.0,86.0,67.0,67.0,79.0,74.0,59.0,85.0,74.0,74.0,61.0,68.0,55.0,49.0,70.0,59.0,54.0,59.0,61.0,48.0,39.0,52.0,52.0,42.0,40.0,41.0,47.0,45.0,58.0,55.0,39.0,39.0,37.0,27.0,20.0,19.0,29.0,24.0,18.0,10.0,14.0,10.0,8.0,5.0,5.0,5.0,9.0 K81019,45.0,42.0,37.0,47.0,35.0,30.0,49.0,39.0,29.0,39.0,35.0,32.0,36.0,36.0,36.0,38.0,33.0,32.0,26.0,31.0,33.0,35.0,54.0,53.0,49.0,43.0,56.0,46.0,47.0,46.0,56.0,55.0,47.0,73.0,84.0,54.0,68.0,70.0,65.0,65.0,48.0,50.0,53.0,56.0,58.0,51.0,48.0,57.0,48.0,41.0,39.0,40.0,34.0,40.0,36.0,26.0,31.0,22.0,24.0,27.0,28.0,21.0,20.0,19.0,14.0,10.0,20.0,21.0,8.0,12.0,11.0,19.0,14.0,10.0,15.0,9.0,9.0,12.0,14.0,7.0,7.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,3.0,2.0,2.0,1.0,,1.0,2.0, K81020,68.0,84.0,82.0,97.0,91.0,108.0,103.0,107.0,107.0,131.0,117.0,110.0,139.0,136.0,146.0,131.0,145.0,133.0,119.0,102.0,96.0,76.0,83.0,90.0,102.0,97.0,95.0,97.0,109.0,107.0,108.0,129.0,136.0,131.0,142.0,138.0,172.0,149.0,180.0,174.0,170.0,166.0,143.0,171.0,187.0,162.0,162.0,140.0,157.0,157.0,130.0,139.0,160.0,134.0,147.0,118.0,110.0,125.0,131.0,97.0,113.0,100.0,103.0,88.0,109.0,94.0,97.0,84.0,68.0,78.0,86.0,64.0,59.0,79.0,82.0,63.0,66.0,86.0,82.0,54.0,80.0,60.0,56.0,53.0,41.0,37.0,32.0,37.0,26.0,20.0,19.0,8.0,15.0,12.0,9.0,13.0 K81021,45.0,42.0,44.0,53.0,48.0,45.0,58.0,49.0,62.0,44.0,56.0,69.0,54.0,66.0,60.0,58.0,67.0,71.0,48.0,61.0,55.0,41.0,48.0,45.0,55.0,47.0,59.0,68.0,55.0,66.0,58.0,56.0,59.0,64.0,66.0,64.0,71.0,63.0,63.0,71.0,61.0,73.0,63.0,81.0,87.0,75.0,78.0,72.0,62.0,85.0,70.0,81.0,71.0,80.0,64.0,85.0,68.0,76.0,79.0,79.0,72.0,78.0,72.0,71.0,61.0,56.0,65.0,71.0,56.0,54.0,46.0,34.0,45.0,47.0,38.0,45.0,50.0,63.0,39.0,26.0,38.0,35.0,21.0,16.0,17.0,27.0,16.0,18.0,7.0,12.0,11.0,2.0,2.0,4.0,4.0,6.0 K81024,135.0,124.0,149.0,153.0,121.0,153.0,150.0,178.0,188.0,195.0,177.0,189.0,199.0,203.0,178.0,188.0,192.0,164.0,168.0,177.0,171.0,185.0,200.0,167.0,209.0,196.0,199.0,182.0,176.0,193.0,179.0,170.0,179.0,186.0,173.0,206.0,191.0,179.0,178.0,193.0,196.0,202.0,212.0,226.0,243.0,224.0,215.0,197.0,196.0,192.0,181.0,184.0,156.0,140.0,130.0,119.0,140.0,140.0,131.0,132.0,125.0,97.0,124.0,91.0,95.0,78.0,85.0,74.0,87.0,68.0,64.0,69.0,61.0,54.0,44.0,60.0,46.0,56.0,37.0,30.0,35.0,31.0,27.0,26.0,26.0,29.0,22.0,12.0,13.0,11.0,13.0,3.0,6.0,3.0,4.0,7.0 K81028,20.0,26.0,28.0,23.0,24.0,29.0,31.0,36.0,44.0,42.0,48.0,74.0,108.0,96.0,75.0,74.0,80.0,95.0,77.0,57.0,71.0,48.0,56.0,47.0,56.0,54.0,39.0,47.0,49.0,58.0,46.0,41.0,44.0,45.0,36.0,43.0,38.0,31.0,43.0,40.0,44.0,40.0,45.0,44.0,58.0,50.0,51.0,63.0,56.0,54.0,67.0,66.0,77.0,55.0,69.0,70.0,63.0,69.0,56.0,68.0,62.0,65.0,76.0,74.0,56.0,59.0,68.0,51.0,57.0,48.0,44.0,43.0,46.0,41.0,37.0,42.0,42.0,47.0,40.0,34.0,36.0,38.0,27.0,18.0,25.0,17.0,17.0,15.0,20.0,12.0,8.0,5.0,8.0,6.0,8.0,10.0 K81030,145.0,181.0,185.0,199.0,185.0,206.0,187.0,234.0,243.0,247.0,233.0,244.0,251.0,262.0,245.0,279.0,264.0,279.0,227.0,248.0,214.0,232.0,213.0,196.0,207.0,223.0,221.0,209.0,218.0,228.0,244.0,247.0,251.0,252.0,261.0,263.0,275.0,296.0,270.0,256.0,274.0,292.0,293.0,326.0,320.0,306.0,292.0,265.0,261.0,265.0,286.0,291.0,292.0,302.0,294.0,281.0,271.0,268.0,286.0,267.0,267.0,257.0,273.0,237.0,271.0,203.0,212.0,220.0,188.0,219.0,182.0,193.0,190.0,183.0,207.0,181.0,161.0,170.0,203.0,138.0,142.0,119.0,100.0,78.0,61.0,76.0,62.0,58.0,39.0,38.0,32.0,20.0,19.0,9.0,12.0,14.0 K81034,80.0,68.0,62.0,78.0,92.0,67.0,83.0,68.0,84.0,84.0,88.0,75.0,80.0,83.0,88.0,89.0,75.0,71.0,76.0,69.0,85.0,94.0,116.0,99.0,109.0,116.0,118.0,111.0,117.0,107.0,118.0,140.0,130.0,118.0,146.0,144.0,139.0,144.0,157.0,155.0,122.0,143.0,143.0,141.0,132.0,142.0,108.0,87.0,115.0,117.0,102.0,82.0,72.0,68.0,73.0,67.0,66.0,63.0,68.0,47.0,61.0,45.0,46.0,51.0,36.0,54.0,35.0,40.0,38.0,36.0,29.0,23.0,27.0,25.0,18.0,21.0,23.0,17.0,23.0,10.0,11.0,11.0,10.0,16.0,10.0,5.0,11.0,10.0,3.0,4.0,7.0,2.0,4.0,1.0,2.0,7.0 K81036,64.0,50.0,53.0,61.0,70.0,63.0,68.0,57.0,75.0,54.0,74.0,73.0,75.0,74.0,59.0,70.0,72.0,74.0,66.0,50.0,55.0,53.0,44.0,64.0,57.0,77.0,72.0,102.0,76.0,76.0,89.0,103.0,106.0,108.0,112.0,110.0,98.0,112.0,142.0,110.0,121.0,109.0,105.0,115.0,104.0,101.0,101.0,94.0,88.0,83.0,88.0,81.0,88.0,65.0,83.0,74.0,74.0,87.0,61.0,73.0,56.0,65.0,63.0,64.0,53.0,50.0,52.0,43.0,48.0,35.0,47.0,47.0,42.0,47.0,36.0,25.0,32.0,31.0,29.0,25.0,40.0,24.0,30.0,20.0,10.0,21.0,21.0,22.0,13.0,8.0,11.0,5.0,9.0,4.0,2.0,8.0 K81042,21.0,32.0,43.0,43.0,34.0,35.0,47.0,57.0,44.0,50.0,51.0,53.0,46.0,40.0,60.0,63.0,45.0,53.0,44.0,29.0,42.0,38.0,28.0,34.0,29.0,32.0,30.0,49.0,41.0,24.0,35.0,32.0,36.0,40.0,38.0,54.0,38.0,46.0,41.0,49.0,40.0,48.0,47.0,50.0,53.0,42.0,67.0,60.0,56.0,41.0,59.0,56.0,63.0,68.0,50.0,58.0,56.0,63.0,58.0,71.0,79.0,59.0,54.0,46.0,53.0,56.0,58.0,47.0,52.0,53.0,40.0,31.0,36.0,33.0,39.0,40.0,32.0,40.0,34.0,36.0,37.0,37.0,25.0,16.0,26.0,14.0,18.0,9.0,17.0,8.0,9.0,9.0,5.0,3.0,4.0,7.0 K81043,104.0,125.0,108.0,120.0,139.0,123.0,131.0,114.0,133.0,123.0,137.0,115.0,109.0,119.0,109.0,126.0,120.0,115.0,108.0,95.0,91.0,97.0,103.0,115.0,119.0,132.0,154.0,151.0,125.0,164.0,160.0,200.0,154.0,166.0,159.0,206.0,188.0,206.0,203.0,159.0,157.0,154.0,162.0,170.0,168.0,171.0,162.0,139.0,131.0,129.0,123.0,117.0,106.0,102.0,108.0,102.0,114.0,91.0,83.0,92.0,79.0,81.0,69.0,63.0,68.0,62.0,63.0,55.0,61.0,44.0,37.0,36.0,44.0,36.0,44.0,35.0,26.0,22.0,32.0,18.0,18.0,20.0,21.0,17.0,20.0,12.0,15.0,15.0,10.0,7.0,6.0,5.0,1.0,7.0,3.0,3.0 K81046,34.0,49.0,47.0,45.0,44.0,44.0,48.0,29.0,36.0,41.0,41.0,53.0,46.0,45.0,45.0,42.0,35.0,60.0,48.0,32.0,32.0,43.0,31.0,43.0,42.0,34.0,41.0,45.0,63.0,69.0,56.0,68.0,66.0,58.0,66.0,64.0,69.0,61.0,63.0,65.0,79.0,66.0,73.0,66.0,67.0,63.0,67.0,59.0,62.0,78.0,64.0,52.0,61.0,73.0,82.0,56.0,56.0,56.0,62.0,54.0,61.0,62.0,50.0,61.0,47.0,39.0,32.0,39.0,37.0,33.0,36.0,28.0,30.0,25.0,27.0,29.0,23.0,31.0,28.0,17.0,28.0,20.0,14.0,11.0,9.0,17.0,14.0,5.0,7.0,9.0,8.0,3.0,6.0,,,7.0 K81060,62.0,62.0,71.0,72.0,87.0,73.0,91.0,85.0,85.0,91.0,95.0,83.0,90.0,94.0,91.0,81.0,68.0,78.0,61.0,59.0,47.0,57.0,40.0,57.0,49.0,76.0,60.0,55.0,57.0,89.0,74.0,86.0,93.0,83.0,76.0,83.0,107.0,100.0,117.0,106.0,115.0,102.0,110.0,124.0,103.0,93.0,104.0,95.0,95.0,98.0,83.0,97.0,89.0,103.0,94.0,99.0,72.0,74.0,82.0,86.0,81.0,74.0,78.0,99.0,66.0,66.0,63.0,68.0,60.0,58.0,55.0,48.0,40.0,52.0,44.0,39.0,30.0,37.0,45.0,32.0,31.0,24.0,25.0,17.0,15.0,18.0,16.0,16.0,8.0,8.0,11.0,4.0,4.0,1.0,2.0,6.0 K81066,50.0,64.0,49.0,50.0,53.0,65.0,56.0,56.0,54.0,66.0,65.0,73.0,64.0,75.0,64.0,84.0,73.0,83.0,61.0,42.0,57.0,45.0,72.0,40.0,61.0,65.0,66.0,45.0,53.0,62.0,69.0,76.0,85.0,74.0,76.0,81.0,92.0,86.0,72.0,79.0,91.0,81.0,93.0,83.0,101.0,91.0,89.0,75.0,81.0,86.0,101.0,95.0,104.0,93.0,105.0,94.0,95.0,106.0,78.0,82.0,79.0,70.0,84.0,85.0,86.0,53.0,50.0,58.0,62.0,49.0,50.0,40.0,44.0,43.0,49.0,31.0,43.0,35.0,39.0,29.0,19.0,22.0,25.0,21.0,24.0,13.0,25.0,16.0,14.0,13.0,9.0,10.0,7.0,7.0,2.0,11.0 K81068,21.0,18.0,28.0,57.0,35.0,43.0,37.0,54.0,43.0,63.0,41.0,42.0,54.0,53.0,52.0,45.0,43.0,30.0,50.0,41.0,36.0,47.0,30.0,43.0,44.0,49.0,44.0,43.0,43.0,42.0,52.0,50.0,53.0,42.0,59.0,49.0,57.0,68.0,64.0,53.0,74.0,54.0,56.0,73.0,73.0,82.0,70.0,63.0,75.0,77.0,80.0,61.0,80.0,82.0,70.0,71.0,85.0,73.0,86.0,91.0,78.0,72.0,75.0,67.0,69.0,71.0,58.0,45.0,47.0,49.0,48.0,41.0,43.0,40.0,32.0,26.0,44.0,37.0,36.0,33.0,27.0,26.0,29.0,14.0,14.0,18.0,19.0,15.0,9.0,14.0,7.0,11.0,7.0,1.0,2.0,5.0 K81074,46.0,44.0,50.0,38.0,57.0,54.0,50.0,58.0,65.0,43.0,70.0,59.0,74.0,78.0,74.0,79.0,77.0,58.0,142.0,260.0,326.0,321.0,286.0,256.0,222.0,229.0,212.0,202.0,209.0,170.0,150.0,136.0,125.0,130.0,113.0,118.0,109.0,88.0,77.0,93.0,84.0,94.0,76.0,89.0,84.0,109.0,92.0,89.0,80.0,89.0,88.0,103.0,96.0,101.0,95.0,100.0,93.0,70.0,108.0,78.0,76.0,66.0,80.0,64.0,51.0,48.0,36.0,49.0,40.0,36.0,31.0,39.0,33.0,30.0,34.0,35.0,30.0,30.0,41.0,21.0,30.0,24.0,23.0,20.0,9.0,15.0,13.0,16.0,10.0,6.0,13.0,5.0,7.0,1.0,1.0,2.0 K81075,187.0,191.0,197.0,190.0,220.0,253.0,241.0,277.0,266.0,314.0,305.0,310.0,300.0,326.0,371.0,290.0,278.0,326.0,319.0,291.0,253.0,274.0,238.0,233.0,279.0,292.0,276.0,300.0,259.0,310.0,317.0,290.0,271.0,252.0,274.0,329.0,285.0,294.0,351.0,353.0,330.0,345.0,310.0,331.0,373.0,301.0,306.0,312.0,313.0,269.0,271.0,275.0,282.0,228.0,251.0,226.0,246.0,234.0,197.0,236.0,224.0,160.0,190.0,166.0,182.0,170.0,152.0,131.0,132.0,101.0,113.0,92.0,107.0,93.0,88.0,72.0,77.0,68.0,73.0,40.0,38.0,44.0,39.0,30.0,35.0,32.0,20.0,19.0,27.0,13.0,18.0,13.0,12.0,6.0,3.0,10.0 K81076,20.0,15.0,22.0,25.0,30.0,32.0,36.0,42.0,49.0,38.0,48.0,50.0,61.0,60.0,57.0,58.0,66.0,62.0,62.0,48.0,32.0,47.0,38.0,46.0,52.0,54.0,51.0,48.0,44.0,37.0,27.0,26.0,36.0,38.0,41.0,42.0,37.0,40.0,35.0,34.0,33.0,50.0,39.0,54.0,50.0,64.0,61.0,57.0,54.0,70.0,66.0,60.0,65.0,71.0,78.0,66.0,86.0,63.0,89.0,84.0,72.0,86.0,81.0,64.0,89.0,70.0,62.0,50.0,50.0,43.0,57.0,60.0,58.0,52.0,43.0,44.0,48.0,66.0,56.0,39.0,41.0,46.0,38.0,33.0,22.0,20.0,13.0,23.0,17.0,17.0,15.0,11.0,6.0,9.0,5.0,7.0 K81082,52.0,54.0,54.0,55.0,54.0,58.0,68.0,70.0,73.0,83.0,88.0,90.0,100.0,98.0,119.0,106.0,90.0,98.0,88.0,74.0,72.0,91.0,64.0,65.0,67.0,57.0,65.0,66.0,71.0,60.0,86.0,53.0,65.0,63.0,65.0,55.0,76.0,82.0,95.0,98.0,105.0,94.0,113.0,104.0,105.0,105.0,118.0,97.0,107.0,85.0,96.0,102.0,80.0,87.0,80.0,81.0,82.0,77.0,74.0,69.0,70.0,60.0,53.0,54.0,59.0,34.0,42.0,32.0,28.0,33.0,40.0,26.0,21.0,19.0,21.0,26.0,23.0,28.0,14.0,15.0,9.0,9.0,8.0,11.0,14.0,8.0,11.0,3.0,5.0,5.0,2.0,1.0,5.0,2.0,,2.0 K81083,122.0,124.0,128.0,113.0,113.0,129.0,126.0,127.0,144.0,141.0,135.0,159.0,135.0,126.0,127.0,142.0,136.0,165.0,128.0,109.0,122.0,107.0,129.0,130.0,130.0,130.0,134.0,124.0,134.0,139.0,171.0,146.0,153.0,152.0,159.0,164.0,175.0,170.0,169.0,175.0,181.0,160.0,189.0,187.0,160.0,179.0,163.0,130.0,165.0,137.0,131.0,105.0,146.0,107.0,107.0,117.0,102.0,107.0,73.0,78.0,84.0,63.0,75.0,84.0,71.0,66.0,52.0,56.0,63.0,61.0,61.0,58.0,49.0,49.0,41.0,42.0,24.0,28.0,20.0,20.0,20.0,22.0,13.0,17.0,15.0,21.0,9.0,19.0,15.0,8.0,16.0,5.0,5.0,4.0,4.0,4.0 K81084,41.0,50.0,34.0,54.0,46.0,55.0,45.0,50.0,48.0,51.0,37.0,38.0,37.0,49.0,27.0,23.0,35.0,32.0,23.0,26.0,9.0,17.0,28.0,27.0,31.0,48.0,31.0,39.0,34.0,54.0,43.0,49.0,53.0,43.0,66.0,48.0,50.0,55.0,61.0,63.0,61.0,72.0,71.0,54.0,73.0,77.0,71.0,56.0,52.0,52.0,54.0,50.0,61.0,53.0,52.0,49.0,44.0,50.0,58.0,46.0,54.0,53.0,46.0,44.0,46.0,37.0,35.0,44.0,43.0,37.0,33.0,33.0,33.0,30.0,34.0,16.0,26.0,18.0,35.0,27.0,20.0,16.0,14.0,15.0,20.0,8.0,11.0,9.0,9.0,7.0,13.0,13.0,2.0,4.0,1.0,6.0 K81085,82.0,71.0,61.0,73.0,54.0,71.0,75.0,58.0,58.0,63.0,52.0,63.0,49.0,63.0,65.0,50.0,49.0,60.0,66.0,50.0,66.0,74.0,80.0,110.0,98.0,90.0,92.0,96.0,108.0,108.0,117.0,93.0,113.0,103.0,93.0,118.0,108.0,88.0,104.0,105.0,117.0,104.0,94.0,70.0,80.0,85.0,76.0,69.0,57.0,52.0,44.0,55.0,56.0,55.0,51.0,46.0,41.0,52.0,50.0,33.0,44.0,31.0,37.0,25.0,50.0,43.0,48.0,51.0,40.0,34.0,40.0,28.0,34.0,26.0,29.0,21.0,21.0,16.0,12.0,13.0,11.0,7.0,6.0,5.0,10.0,7.0,8.0,11.0,5.0,2.0,3.0,3.0,6.0,3.0,1.0,2.0 K81086,54.0,73.0,79.0,61.0,79.0,65.0,72.0,83.0,86.0,79.0,66.0,90.0,95.0,81.0,72.0,71.0,90.0,88.0,81.0,82.0,85.0,90.0,94.0,91.0,99.0,88.0,105.0,96.0,129.0,109.0,106.0,92.0,87.0,80.0,95.0,97.0,91.0,103.0,116.0,96.0,107.0,82.0,112.0,97.0,99.0,92.0,88.0,63.0,82.0,62.0,85.0,68.0,64.0,64.0,74.0,57.0,70.0,51.0,56.0,51.0,43.0,48.0,52.0,49.0,47.0,42.0,46.0,55.0,38.0,48.0,60.0,39.0,46.0,44.0,40.0,27.0,26.0,15.0,15.0,11.0,12.0,15.0,14.0,13.0,18.0,13.0,12.0,6.0,7.0,8.0,9.0,9.0,4.0,4.0,,4.0 K81087,39.0,52.0,43.0,39.0,48.0,40.0,47.0,36.0,45.0,48.0,41.0,62.0,63.0,51.0,45.0,51.0,45.0,46.0,50.0,44.0,48.0,31.0,34.0,40.0,34.0,35.0,42.0,50.0,40.0,57.0,35.0,46.0,53.0,73.0,51.0,61.0,56.0,68.0,61.0,60.0,57.0,68.0,55.0,59.0,65.0,66.0,54.0,48.0,62.0,43.0,42.0,55.0,57.0,41.0,53.0,33.0,46.0,58.0,45.0,38.0,38.0,40.0,30.0,41.0,32.0,26.0,27.0,27.0,29.0,28.0,20.0,15.0,21.0,13.0,14.0,12.0,15.0,17.0,13.0,9.0,10.0,11.0,3.0,5.0,6.0,4.0,7.0,2.0,6.0,4.0,3.0,2.0,3.0,2.0,1.0,3.0 K81094,17.0,23.0,29.0,30.0,25.0,28.0,32.0,38.0,29.0,37.0,42.0,31.0,51.0,28.0,35.0,34.0,26.0,32.0,39.0,32.0,23.0,24.0,22.0,27.0,24.0,30.0,38.0,35.0,31.0,24.0,33.0,40.0,43.0,41.0,46.0,31.0,54.0,54.0,44.0,40.0,36.0,48.0,40.0,43.0,47.0,50.0,30.0,42.0,34.0,32.0,29.0,39.0,36.0,44.0,32.0,42.0,24.0,30.0,30.0,29.0,24.0,31.0,24.0,26.0,20.0,18.0,16.0,24.0,10.0,15.0,19.0,14.0,8.0,12.0,5.0,2.0,8.0,19.0,10.0,11.0,7.0,11.0,4.0,7.0,4.0,8.0,1.0,2.0,5.0,,4.0,2.0,3.0,1.0,,2.0 K81097,20.0,18.0,30.0,38.0,31.0,34.0,48.0,27.0,56.0,44.0,39.0,37.0,46.0,45.0,39.0,49.0,38.0,45.0,41.0,40.0,37.0,32.0,37.0,31.0,37.0,38.0,31.0,30.0,24.0,30.0,18.0,25.0,31.0,26.0,32.0,32.0,26.0,37.0,30.0,45.0,41.0,36.0,49.0,34.0,66.0,61.0,51.0,38.0,48.0,49.0,52.0,34.0,43.0,50.0,47.0,38.0,50.0,44.0,47.0,49.0,40.0,39.0,36.0,35.0,35.0,26.0,30.0,24.0,29.0,26.0,17.0,25.0,14.0,20.0,22.0,26.0,20.0,23.0,35.0,10.0,15.0,16.0,17.0,13.0,15.0,10.0,11.0,5.0,8.0,5.0,9.0,5.0,4.0,1.0,1.0,9.0 K81607,13.0,27.0,19.0,14.0,16.0,25.0,23.0,22.0,26.0,30.0,28.0,29.0,31.0,29.0,30.0,30.0,30.0,44.0,18.0,29.0,20.0,24.0,23.0,30.0,30.0,33.0,31.0,29.0,28.0,29.0,26.0,26.0,22.0,31.0,45.0,29.0,26.0,28.0,34.0,31.0,36.0,31.0,40.0,31.0,38.0,36.0,29.0,27.0,27.0,26.0,21.0,23.0,19.0,18.0,16.0,16.0,16.0,19.0,14.0,16.0,6.0,7.0,11.0,14.0,11.0,13.0,8.0,11.0,14.0,8.0,8.0,11.0,10.0,9.0,6.0,7.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,3.0,4.0,5.0,4.0,5.0,3.0,2.0,,,,,2.0 K81608,27.0,26.0,31.0,29.0,28.0,41.0,28.0,45.0,50.0,39.0,50.0,35.0,42.0,37.0,44.0,48.0,54.0,51.0,44.0,52.0,38.0,35.0,34.0,35.0,45.0,37.0,38.0,41.0,34.0,32.0,31.0,45.0,41.0,38.0,38.0,48.0,55.0,55.0,55.0,59.0,65.0,57.0,53.0,55.0,48.0,58.0,49.0,54.0,50.0,38.0,57.0,40.0,49.0,35.0,37.0,34.0,29.0,17.0,23.0,23.0,25.0,16.0,17.0,18.0,13.0,18.0,14.0,18.0,18.0,14.0,17.0,18.0,15.0,11.0,10.0,8.0,8.0,5.0,1.0,2.0,6.0,6.0,3.0,1.0,7.0,2.0,1.0,2.0,5.0,1.0,4.0,2.0,1.0,,,2.0 K81610,174.0,159.0,159.0,170.0,144.0,188.0,175.0,180.0,184.0,176.0,176.0,206.0,198.0,204.0,191.0,217.0,211.0,187.0,210.0,168.0,159.0,144.0,139.0,152.0,151.0,206.0,161.0,189.0,202.0,203.0,212.0,214.0,209.0,231.0,253.0,224.0,256.0,236.0,254.0,278.0,221.0,237.0,231.0,251.0,238.0,252.0,218.0,199.0,225.0,237.0,239.0,236.0,228.0,243.0,230.0,243.0,225.0,215.0,249.0,213.0,212.0,214.0,179.0,164.0,164.0,157.0,166.0,150.0,146.0,137.0,125.0,114.0,125.0,88.0,93.0,106.0,76.0,101.0,80.0,60.0,59.0,55.0,45.0,44.0,42.0,50.0,30.0,30.0,28.0,21.0,19.0,14.0,10.0,3.0,2.0,13.0 K81616,36.0,33.0,42.0,24.0,34.0,27.0,32.0,39.0,40.0,33.0,45.0,34.0,48.0,37.0,40.0,45.0,44.0,48.0,44.0,36.0,40.0,40.0,49.0,46.0,35.0,55.0,54.0,62.0,53.0,52.0,41.0,46.0,58.0,43.0,48.0,43.0,42.0,50.0,54.0,46.0,47.0,49.0,54.0,39.0,54.0,54.0,48.0,51.0,43.0,45.0,43.0,29.0,45.0,27.0,41.0,31.0,33.0,37.0,21.0,19.0,22.0,28.0,14.0,35.0,21.0,29.0,26.0,24.0,27.0,18.0,27.0,17.0,14.0,10.0,16.0,16.0,18.0,10.0,5.0,7.0,7.0,9.0,9.0,6.0,5.0,5.0,8.0,6.0,6.0,3.0,4.0,2.0,1.0,4.0,2.0,11.0 K81630,63.0,65.0,53.0,64.0,71.0,85.0,96.0,64.0,90.0,81.0,88.0,81.0,95.0,183.0,346.0,369.0,344.0,325.0,260.0,75.0,77.0,52.0,63.0,52.0,46.0,69.0,54.0,50.0,68.0,88.0,81.0,63.0,88.0,100.0,82.0,88.0,91.0,94.0,86.0,95.0,100.0,79.0,101.0,102.0,106.0,105.0,94.0,122.0,88.0,66.0,97.0,89.0,84.0,88.0,92.0,81.0,72.0,67.0,96.0,88.0,71.0,92.0,65.0,83.0,69.0,69.0,55.0,55.0,57.0,49.0,60.0,50.0,42.0,49.0,43.0,50.0,44.0,46.0,49.0,33.0,32.0,38.0,32.0,18.0,22.0,29.0,14.0,20.0,14.0,9.0,11.0,3.0,12.0,3.0,4.0,9.0 K81645,64.0,60.0,60.0,53.0,58.0,51.0,61.0,64.0,64.0,60.0,62.0,60.0,59.0,61.0,57.0,57.0,51.0,46.0,54.0,48.0,46.0,53.0,49.0,69.0,89.0,65.0,69.0,67.0,69.0,62.0,76.0,74.0,84.0,76.0,96.0,82.0,78.0,83.0,87.0,75.0,78.0,67.0,73.0,61.0,49.0,46.0,62.0,51.0,52.0,49.0,51.0,37.0,45.0,47.0,32.0,32.0,35.0,26.0,33.0,23.0,19.0,24.0,25.0,27.0,21.0,24.0,18.0,21.0,17.0,26.0,20.0,15.0,14.0,7.0,7.0,6.0,11.0,5.0,8.0,6.0,5.0,11.0,6.0,4.0,5.0,2.0,4.0,3.0,3.0,2.0,1.0,1.0,1.0,1.0,,1.0 K81655,37.0,42.0,46.0,46.0,41.0,45.0,34.0,39.0,38.0,42.0,49.0,56.0,68.0,42.0,49.0,43.0,43.0,36.0,29.0,30.0,31.0,26.0,31.0,26.0,21.0,27.0,29.0,41.0,32.0,34.0,31.0,47.0,37.0,31.0,51.0,50.0,60.0,42.0,48.0,60.0,53.0,44.0,48.0,52.0,52.0,70.0,60.0,55.0,54.0,42.0,58.0,59.0,53.0,53.0,47.0,50.0,62.0,41.0,50.0,43.0,54.0,45.0,36.0,31.0,33.0,31.0,39.0,19.0,41.0,32.0,23.0,20.0,26.0,15.0,21.0,18.0,26.0,21.0,25.0,16.0,7.0,18.0,8.0,12.0,11.0,7.0,4.0,7.0,7.0,11.0,4.0,8.0,3.0,5.0,2.0,6.0 K81656,40.0,40.0,42.0,57.0,48.0,37.0,47.0,46.0,42.0,55.0,46.0,51.0,42.0,46.0,48.0,55.0,37.0,42.0,39.0,33.0,41.0,35.0,27.0,31.0,25.0,32.0,41.0,41.0,42.0,42.0,51.0,53.0,53.0,58.0,54.0,79.0,69.0,62.0,71.0,55.0,67.0,66.0,58.0,53.0,60.0,62.0,61.0,74.0,48.0,62.0,48.0,51.0,46.0,50.0,42.0,24.0,47.0,46.0,41.0,39.0,38.0,34.0,36.0,34.0,36.0,40.0,39.0,30.0,26.0,27.0,15.0,29.0,18.0,19.0,18.0,15.0,12.0,18.0,9.0,6.0,13.0,12.0,9.0,7.0,5.0,3.0,7.0,7.0,2.0,3.0,1.0,3.0,2.0,1.0,1.0, K81657,18.0,32.0,33.0,46.0,32.0,36.0,36.0,52.0,38.0,47.0,32.0,47.0,50.0,44.0,35.0,37.0,34.0,37.0,35.0,31.0,27.0,21.0,31.0,20.0,31.0,35.0,55.0,44.0,50.0,55.0,54.0,53.0,61.0,55.0,70.0,68.0,66.0,68.0,78.0,75.0,77.0,62.0,70.0,67.0,75.0,74.0,54.0,49.0,42.0,46.0,43.0,43.0,39.0,32.0,32.0,33.0,33.0,30.0,34.0,23.0,22.0,36.0,34.0,29.0,25.0,24.0,18.0,24.0,10.0,20.0,12.0,11.0,14.0,1.0,8.0,10.0,5.0,11.0,5.0,7.0,4.0,,1.0,2.0,4.0,4.0,2.0,2.0,,2.0,2.0,1.0,,1.0,1.0,2.0 Y00265,153.0,147.0,151.0,138.0,132.0,122.0,122.0,110.0,131.0,125.0,113.0,135.0,117.0,106.0,121.0,100.0,107.0,84.0,73.0,71.0,76.0,85.0,87.0,104.0,125.0,154.0,156.0,181.0,177.0,165.0,169.0,193.0,176.0,192.0,212.0,220.0,225.0,229.0,227.0,225.0,207.0,168.0,203.0,212.0,185.0,157.0,119.0,133.0,121.0,110.0,102.0,89.0,92.0,76.0,72.0,56.0,52.0,62.0,54.0,59.0,50.0,46.0,37.0,39.0,36.0,26.0,31.0,22.0,21.0,16.0,21.0,16.0,10.0,16.0,11.0,11.0,8.0,9.0,5.0,3.0,2.0,5.0,6.0,2.0,5.0,4.0,2.0,3.0,,1.0,,,1.0,,, Y00437,38.0,46.0,65.0,62.0,61.0,72.0,76.0,76.0,90.0,82.0,89.0,117.0,103.0,90.0,106.0,94.0,82.0,81.0,73.0,80.0,49.0,63.0,67.0,63.0,54.0,75.0,63.0,71.0,67.0,85.0,66.0,69.0,62.0,70.0,63.0,72.0,71.0,90.0,72.0,69.0,85.0,76.0,99.0,114.0,116.0,95.0,112.0,95.0,88.0,103.0,83.0,82.0,76.0,67.0,79.0,82.0,70.0,73.0,54.0,47.0,51.0,52.0,43.0,36.0,39.0,40.0,28.0,32.0,31.0,28.0,27.0,27.0,23.0,30.0,24.0,18.0,12.0,21.0,17.0,9.0,11.0,10.0,6.0,4.0,3.0,11.0,6.0,5.0,4.0,4.0,4.0,2.0,3.0,1.0,,2.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 G81001,34.0,33.0,40.0,59.0,44.0,44.0,64.0,46.0,55.0,62.0,55.0,56.0,69.0,62.0,51.0,62.0,62.0,60.0,56.0,58.0,52.0,45.0,50.0,55.0,56.0,50.0,45.0,49.0,55.0,55.0,68.0,51.0,58.0,69.0,63.0,53.0,51.0,68.0,55.0,76.0,60.0,55.0,66.0,69.0,63.0,68.0,81.0,56.0,50.0,50.0,55.0,78.0,79.0,65.0,60.0,52.0,65.0,64.0,78.0,61.0,56.0,72.0,52.0,47.0,71.0,51.0,54.0,52.0,31.0,43.0,33.0,35.0,34.0,31.0,25.0,41.0,38.0,47.0,44.0,23.0,32.0,23.0,14.0,24.0,16.0,21.0,14.0,12.0,14.0,10.0,8.0,8.0,6.0,10.0,5.0,12.0 G81002,20.0,23.0,18.0,26.0,24.0,25.0,25.0,26.0,27.0,22.0,23.0,40.0,29.0,34.0,26.0,34.0,21.0,25.0,39.0,36.0,30.0,22.0,32.0,28.0,43.0,45.0,32.0,42.0,53.0,55.0,50.0,41.0,32.0,51.0,39.0,50.0,43.0,39.0,45.0,38.0,45.0,39.0,45.0,52.0,53.0,45.0,48.0,50.0,48.0,64.0,41.0,56.0,41.0,51.0,44.0,33.0,39.0,52.0,53.0,51.0,45.0,67.0,40.0,41.0,45.0,42.0,45.0,31.0,36.0,33.0,37.0,42.0,29.0,19.0,16.0,29.0,29.0,31.0,37.0,26.0,21.0,19.0,21.0,10.0,19.0,9.0,18.0,6.0,11.0,8.0,6.0,5.0,8.0,6.0,4.0,11.0 G81003,67.0,71.0,78.0,78.0,67.0,89.0,75.0,112.0,84.0,96.0,112.0,96.0,92.0,128.0,134.0,135.0,138.0,140.0,132.0,83.0,105.0,97.0,89.0,104.0,82.0,93.0,79.0,91.0,113.0,106.0,124.0,115.0,121.0,126.0,131.0,121.0,125.0,141.0,121.0,132.0,110.0,107.0,105.0,115.0,127.0,106.0,94.0,78.0,96.0,97.0,110.0,92.0,105.0,111.0,116.0,99.0,123.0,105.0,102.0,116.0,110.0,115.0,121.0,116.0,115.0,101.0,86.0,96.0,88.0,99.0,88.0,95.0,105.0,94.0,96.0,69.0,88.0,110.0,97.0,71.0,74.0,61.0,63.0,56.0,48.0,41.0,49.0,46.0,43.0,27.0,21.0,15.0,11.0,9.0,9.0,26.0 G81004,31.0,31.0,33.0,39.0,36.0,53.0,37.0,54.0,44.0,45.0,54.0,42.0,63.0,65.0,54.0,62.0,57.0,40.0,39.0,53.0,36.0,44.0,34.0,25.0,31.0,43.0,44.0,38.0,41.0,49.0,32.0,43.0,50.0,48.0,53.0,45.0,55.0,44.0,62.0,61.0,50.0,59.0,62.0,63.0,54.0,41.0,53.0,41.0,50.0,43.0,56.0,62.0,61.0,78.0,61.0,67.0,72.0,61.0,72.0,80.0,84.0,73.0,75.0,73.0,55.0,76.0,62.0,63.0,69.0,70.0,75.0,75.0,58.0,54.0,67.0,60.0,72.0,84.0,77.0,63.0,58.0,47.0,55.0,41.0,35.0,28.0,34.0,35.0,31.0,32.0,17.0,14.0,18.0,14.0,10.0,15.0 G81006,19.0,15.0,22.0,15.0,23.0,18.0,19.0,20.0,21.0,23.0,30.0,26.0,24.0,23.0,21.0,26.0,27.0,30.0,17.0,28.0,33.0,39.0,26.0,37.0,39.0,54.0,62.0,53.0,65.0,65.0,68.0,89.0,93.0,88.0,90.0,85.0,64.0,78.0,75.0,78.0,76.0,66.0,61.0,66.0,57.0,43.0,48.0,52.0,42.0,33.0,43.0,46.0,60.0,55.0,68.0,47.0,62.0,54.0,61.0,52.0,47.0,52.0,44.0,39.0,36.0,27.0,43.0,38.0,28.0,32.0,18.0,30.0,23.0,22.0,19.0,32.0,20.0,28.0,23.0,15.0,10.0,16.0,19.0,4.0,5.0,2.0,9.0,3.0,2.0,2.0,5.0,2.0,1.0,2.0,,3.0 G81008,56.0,83.0,64.0,73.0,65.0,75.0,82.0,103.0,78.0,84.0,92.0,88.0,76.0,82.0,76.0,85.0,80.0,98.0,79.0,82.0,59.0,68.0,65.0,57.0,67.0,61.0,70.0,73.0,63.0,76.0,81.0,73.0,74.0,85.0,97.0,93.0,83.0,87.0,75.0,83.0,83.0,78.0,92.0,92.0,91.0,80.0,87.0,75.0,60.0,79.0,78.0,72.0,99.0,94.0,120.0,92.0,111.0,103.0,123.0,102.0,105.0,103.0,87.0,88.0,100.0,99.0,107.0,92.0,96.0,79.0,72.0,70.0,67.0,64.0,90.0,86.0,85.0,93.0,95.0,56.0,76.0,49.0,57.0,45.0,39.0,45.0,39.0,19.0,22.0,28.0,10.0,8.0,18.0,10.0,3.0,11.0 G81011,56.0,65.0,53.0,50.0,59.0,57.0,67.0,96.0,66.0,69.0,75.0,77.0,83.0,90.0,85.0,70.0,80.0,120.0,82.0,111.0,135.0,158.0,147.0,155.0,177.0,171.0,169.0,142.0,151.0,144.0,178.0,171.0,179.0,147.0,160.0,178.0,154.0,195.0,166.0,162.0,158.0,162.0,153.0,180.0,157.0,147.0,167.0,149.0,129.0,137.0,144.0,124.0,157.0,147.0,161.0,146.0,142.0,150.0,118.0,158.0,142.0,114.0,141.0,115.0,106.0,114.0,88.0,93.0,96.0,74.0,88.0,79.0,75.0,69.0,59.0,48.0,57.0,56.0,48.0,39.0,32.0,25.0,24.0,17.0,24.0,22.0,14.0,23.0,16.0,9.0,9.0,6.0,5.0,1.0,5.0,11.0 G81012,15.0,24.0,37.0,35.0,27.0,36.0,47.0,49.0,43.0,39.0,39.0,41.0,60.0,49.0,46.0,45.0,44.0,33.0,42.0,31.0,35.0,31.0,29.0,24.0,27.0,28.0,29.0,36.0,37.0,33.0,34.0,37.0,41.0,49.0,54.0,27.0,56.0,44.0,43.0,51.0,34.0,27.0,39.0,41.0,43.0,47.0,35.0,28.0,27.0,31.0,35.0,35.0,38.0,47.0,40.0,38.0,39.0,40.0,41.0,37.0,29.0,42.0,42.0,34.0,32.0,31.0,34.0,41.0,31.0,23.0,32.0,37.0,36.0,33.0,23.0,36.0,38.0,48.0,34.0,30.0,36.0,28.0,32.0,24.0,17.0,16.0,15.0,11.0,8.0,8.0,9.0,5.0,6.0,4.0,2.0,5.0 G81014,35.0,49.0,36.0,43.0,46.0,30.0,43.0,53.0,48.0,43.0,40.0,55.0,55.0,49.0,56.0,53.0,57.0,49.0,83.0,87.0,86.0,82.0,71.0,69.0,67.0,62.0,76.0,43.0,58.0,62.0,52.0,61.0,51.0,61.0,70.0,66.0,63.0,45.0,61.0,67.0,54.0,67.0,69.0,56.0,50.0,63.0,63.0,53.0,45.0,42.0,48.0,54.0,72.0,47.0,64.0,60.0,60.0,50.0,54.0,61.0,68.0,45.0,47.0,46.0,40.0,35.0,44.0,27.0,39.0,34.0,26.0,39.0,23.0,24.0,31.0,26.0,30.0,31.0,29.0,21.0,16.0,22.0,22.0,15.0,12.0,11.0,11.0,8.0,10.0,2.0,7.0,5.0,7.0,,3.0,4.0 G81016,67.0,80.0,79.0,61.0,62.0,71.0,63.0,73.0,67.0,69.0,58.0,81.0,88.0,105.0,82.0,86.0,80.0,79.0,68.0,66.0,69.0,55.0,50.0,53.0,52.0,56.0,71.0,84.0,66.0,59.0,74.0,76.0,75.0,75.0,85.0,89.0,100.0,83.0,78.0,89.0,89.0,73.0,88.0,91.0,92.0,70.0,79.0,63.0,68.0,66.0,81.0,56.0,80.0,72.0,62.0,56.0,81.0,62.0,80.0,82.0,77.0,77.0,68.0,75.0,69.0,56.0,57.0,54.0,67.0,50.0,59.0,52.0,50.0,49.0,55.0,55.0,50.0,53.0,48.0,34.0,36.0,38.0,31.0,30.0,18.0,32.0,16.0,15.0,15.0,3.0,6.0,5.0,4.0,9.0,4.0,3.0 G81017,48.0,50.0,49.0,54.0,42.0,55.0,67.0,49.0,63.0,59.0,50.0,59.0,56.0,59.0,65.0,66.0,89.0,82.0,95.0,81.0,78.0,66.0,76.0,66.0,61.0,77.0,92.0,122.0,98.0,95.0,92.0,90.0,94.0,87.0,114.0,92.0,88.0,102.0,81.0,82.0,98.0,83.0,61.0,74.0,102.0,76.0,72.0,69.0,67.0,74.0,79.0,86.0,68.0,77.0,73.0,88.0,84.0,84.0,84.0,71.0,71.0,92.0,71.0,74.0,78.0,76.0,60.0,59.0,68.0,45.0,41.0,42.0,41.0,47.0,39.0,50.0,51.0,49.0,57.0,28.0,40.0,26.0,25.0,20.0,23.0,15.0,12.0,22.0,15.0,8.0,11.0,8.0,4.0,4.0,2.0,6.0 G81018,50.0,50.0,42.0,60.0,48.0,51.0,46.0,52.0,54.0,64.0,69.0,65.0,70.0,71.0,103.0,77.0,83.0,80.0,70.0,72.0,85.0,75.0,95.0,81.0,69.0,90.0,102.0,92.0,102.0,96.0,90.0,91.0,95.0,92.0,106.0,110.0,88.0,105.0,110.0,94.0,117.0,90.0,110.0,100.0,99.0,116.0,92.0,87.0,92.0,119.0,103.0,120.0,110.0,117.0,137.0,113.0,104.0,104.0,87.0,92.0,93.0,93.0,72.0,72.0,54.0,63.0,49.0,51.0,38.0,34.0,38.0,39.0,39.0,32.0,31.0,37.0,30.0,37.0,22.0,19.0,24.0,14.0,13.0,12.0,9.0,15.0,10.0,6.0,12.0,3.0,10.0,5.0,5.0,4.0,2.0,6.0 G81019,45.0,43.0,61.0,48.0,45.0,41.0,48.0,62.0,59.0,71.0,76.0,68.0,63.0,74.0,64.0,57.0,69.0,80.0,64.0,43.0,47.0,55.0,51.0,65.0,55.0,71.0,47.0,54.0,52.0,45.0,45.0,63.0,60.0,60.0,66.0,58.0,74.0,54.0,63.0,59.0,66.0,68.0,64.0,73.0,72.0,71.0,68.0,47.0,50.0,70.0,66.0,72.0,79.0,86.0,83.0,75.0,70.0,83.0,93.0,85.0,73.0,83.0,78.0,75.0,76.0,67.0,74.0,78.0,76.0,81.0,49.0,65.0,62.0,69.0,51.0,70.0,66.0,75.0,81.0,57.0,59.0,52.0,42.0,33.0,27.0,29.0,29.0,17.0,11.0,17.0,11.0,12.0,4.0,12.0,7.0,12.0 G81021,78.0,94.0,90.0,107.0,127.0,116.0,126.0,120.0,149.0,141.0,145.0,157.0,185.0,203.0,180.0,192.0,199.0,199.0,224.0,160.0,135.0,159.0,128.0,127.0,137.0,133.0,144.0,147.0,119.0,119.0,143.0,133.0,148.0,153.0,147.0,160.0,139.0,151.0,135.0,139.0,152.0,150.0,162.0,178.0,177.0,165.0,164.0,168.0,182.0,176.0,189.0,188.0,211.0,207.0,192.0,213.0,212.0,221.0,233.0,238.0,233.0,235.0,202.0,225.0,198.0,203.0,185.0,174.0,145.0,162.0,164.0,136.0,144.0,132.0,132.0,161.0,139.0,167.0,159.0,116.0,115.0,101.0,78.0,75.0,60.0,65.0,71.0,51.0,50.0,38.0,36.0,25.0,19.0,13.0,21.0,25.0 G81022,46.0,51.0,48.0,57.0,57.0,63.0,83.0,75.0,73.0,59.0,84.0,68.0,77.0,83.0,98.0,92.0,81.0,85.0,76.0,71.0,73.0,64.0,58.0,74.0,73.0,78.0,88.0,77.0,64.0,67.0,70.0,76.0,79.0,82.0,74.0,74.0,73.0,83.0,83.0,90.0,71.0,96.0,83.0,78.0,80.0,83.0,91.0,61.0,62.0,59.0,75.0,69.0,89.0,86.0,88.0,88.0,95.0,98.0,95.0,110.0,87.0,90.0,99.0,81.0,82.0,77.0,84.0,98.0,85.0,80.0,69.0,83.0,63.0,82.0,67.0,86.0,95.0,101.0,99.0,75.0,70.0,59.0,47.0,39.0,44.0,26.0,24.0,27.0,28.0,17.0,10.0,11.0,10.0,14.0,5.0,11.0 G81023,15.0,26.0,21.0,32.0,34.0,30.0,34.0,42.0,47.0,45.0,41.0,44.0,60.0,58.0,53.0,51.0,55.0,61.0,62.0,45.0,40.0,39.0,35.0,42.0,42.0,41.0,44.0,36.0,38.0,45.0,34.0,34.0,38.0,39.0,38.0,38.0,26.0,50.0,34.0,38.0,53.0,46.0,40.0,45.0,43.0,55.0,36.0,37.0,46.0,42.0,39.0,60.0,57.0,49.0,39.0,40.0,56.0,65.0,49.0,68.0,66.0,74.0,54.0,58.0,70.0,70.0,60.0,53.0,50.0,43.0,57.0,55.0,44.0,52.0,50.0,65.0,46.0,58.0,70.0,52.0,56.0,37.0,29.0,30.0,24.0,20.0,17.0,25.0,22.0,8.0,8.0,7.0,7.0,5.0,,10.0 G81024,28.0,28.0,28.0,31.0,40.0,46.0,43.0,51.0,51.0,52.0,57.0,72.0,62.0,75.0,62.0,70.0,52.0,67.0,72.0,82.0,54.0,57.0,55.0,49.0,39.0,49.0,51.0,39.0,43.0,40.0,46.0,48.0,41.0,47.0,49.0,52.0,46.0,44.0,53.0,53.0,68.0,44.0,56.0,66.0,69.0,58.0,66.0,58.0,61.0,67.0,64.0,83.0,74.0,85.0,69.0,81.0,73.0,81.0,74.0,73.0,90.0,96.0,79.0,73.0,78.0,69.0,79.0,75.0,63.0,80.0,68.0,63.0,65.0,67.0,60.0,57.0,48.0,67.0,42.0,53.0,58.0,46.0,48.0,21.0,20.0,17.0,23.0,23.0,18.0,15.0,14.0,10.0,4.0,6.0,5.0,10.0 G81028,53.0,44.0,42.0,53.0,57.0,55.0,57.0,47.0,58.0,61.0,62.0,56.0,58.0,73.0,61.0,73.0,64.0,79.0,81.0,80.0,94.0,154.0,124.0,115.0,110.0,136.0,108.0,107.0,91.0,105.0,111.0,126.0,111.0,133.0,125.0,119.0,119.0,116.0,127.0,106.0,85.0,81.0,94.0,112.0,86.0,98.0,97.0,85.0,76.0,98.0,98.0,94.0,92.0,101.0,91.0,92.0,83.0,96.0,97.0,93.0,87.0,73.0,55.0,56.0,66.0,57.0,47.0,56.0,55.0,44.0,36.0,32.0,22.0,37.0,31.0,41.0,22.0,26.0,24.0,13.0,10.0,17.0,17.0,8.0,9.0,8.0,8.0,10.0,10.0,6.0,8.0,3.0,4.0,4.0,1.0,3.0 G81029,49.0,57.0,47.0,57.0,83.0,72.0,86.0,91.0,75.0,105.0,85.0,100.0,98.0,86.0,99.0,83.0,85.0,75.0,93.0,63.0,73.0,68.0,55.0,75.0,79.0,70.0,56.0,66.0,83.0,69.0,85.0,77.0,86.0,78.0,85.0,90.0,90.0,79.0,93.0,99.0,94.0,101.0,100.0,86.0,81.0,111.0,88.0,82.0,86.0,89.0,72.0,90.0,106.0,112.0,115.0,118.0,123.0,127.0,136.0,108.0,129.0,117.0,141.0,132.0,134.0,142.0,128.0,133.0,115.0,132.0,109.0,133.0,121.0,121.0,138.0,127.0,133.0,151.0,160.0,107.0,111.0,114.0,80.0,57.0,74.0,80.0,65.0,36.0,42.0,40.0,30.0,23.0,25.0,16.0,13.0,33.0 G81030,24.0,29.0,21.0,32.0,31.0,38.0,35.0,49.0,32.0,46.0,45.0,49.0,38.0,50.0,55.0,59.0,60.0,58.0,46.0,44.0,39.0,48.0,33.0,49.0,39.0,37.0,35.0,30.0,24.0,33.0,35.0,30.0,37.0,33.0,39.0,34.0,34.0,38.0,46.0,50.0,40.0,39.0,33.0,30.0,45.0,42.0,50.0,47.0,43.0,40.0,46.0,70.0,54.0,46.0,56.0,66.0,72.0,53.0,58.0,59.0,66.0,68.0,59.0,63.0,73.0,51.0,56.0,44.0,47.0,56.0,47.0,44.0,52.0,45.0,35.0,42.0,26.0,43.0,37.0,42.0,32.0,45.0,30.0,18.0,20.0,16.0,29.0,17.0,8.0,16.0,13.0,14.0,8.0,6.0,4.0,8.0 G81031,47.0,64.0,63.0,87.0,91.0,90.0,91.0,95.0,96.0,95.0,137.0,110.0,108.0,139.0,152.0,122.0,186.0,170.0,132.0,139.0,105.0,84.0,97.0,95.0,82.0,86.0,101.0,88.0,94.0,95.0,90.0,106.0,74.0,108.0,113.0,100.0,118.0,116.0,128.0,107.0,113.0,115.0,106.0,106.0,104.0,118.0,107.0,97.0,94.0,88.0,127.0,99.0,131.0,145.0,133.0,144.0,126.0,139.0,148.0,148.0,144.0,145.0,151.0,136.0,140.0,139.0,112.0,129.0,118.0,121.0,121.0,117.0,104.0,116.0,112.0,102.0,127.0,130.0,117.0,73.0,106.0,91.0,70.0,57.0,55.0,53.0,32.0,41.0,27.0,27.0,23.0,24.0,8.0,13.0,4.0,15.0 G81032,103.0,96.0,111.0,111.0,137.0,128.0,137.0,137.0,133.0,136.0,128.0,136.0,148.0,173.0,147.0,153.0,189.0,150.0,172.0,138.0,134.0,126.0,146.0,159.0,151.0,154.0,187.0,179.0,181.0,172.0,246.0,221.0,206.0,224.0,212.0,200.0,219.0,241.0,229.0,194.0,206.0,179.0,214.0,203.0,213.0,212.0,168.0,177.0,174.0,181.0,173.0,182.0,172.0,181.0,172.0,188.0,196.0,201.0,188.0,190.0,195.0,196.0,189.0,192.0,182.0,181.0,157.0,158.0,134.0,132.0,126.0,135.0,133.0,121.0,143.0,147.0,133.0,132.0,138.0,108.0,85.0,93.0,85.0,79.0,53.0,45.0,58.0,45.0,46.0,33.0,31.0,27.0,27.0,15.0,9.0,24.0 G81034,118.0,116.0,114.0,124.0,135.0,118.0,132.0,127.0,119.0,159.0,161.0,148.0,146.0,154.0,182.0,173.0,182.0,204.0,169.0,143.0,155.0,178.0,171.0,183.0,189.0,192.0,198.0,191.0,220.0,236.0,231.0,268.0,251.0,282.0,267.0,253.0,276.0,255.0,280.0,260.0,266.0,244.0,244.0,259.0,280.0,254.0,259.0,254.0,266.0,258.0,274.0,260.0,262.0,285.0,252.0,241.0,252.0,252.0,255.0,242.0,222.0,215.0,163.0,170.0,165.0,142.0,147.0,137.0,100.0,122.0,98.0,98.0,94.0,85.0,63.0,90.0,81.0,81.0,68.0,76.0,55.0,54.0,46.0,22.0,28.0,34.0,28.0,21.0,22.0,20.0,13.0,14.0,11.0,8.0,8.0,18.0 G81036,43.0,25.0,26.0,38.0,31.0,30.0,56.0,55.0,73.0,59.0,60.0,51.0,60.0,74.0,65.0,64.0,50.0,79.0,67.0,75.0,60.0,51.0,50.0,52.0,60.0,59.0,57.0,59.0,49.0,53.0,48.0,42.0,43.0,53.0,51.0,49.0,46.0,55.0,55.0,59.0,56.0,69.0,55.0,63.0,50.0,60.0,55.0,65.0,56.0,54.0,51.0,65.0,71.0,74.0,66.0,79.0,70.0,75.0,70.0,70.0,63.0,72.0,62.0,64.0,64.0,40.0,46.0,52.0,48.0,48.0,52.0,30.0,40.0,28.0,43.0,43.0,44.0,44.0,58.0,36.0,28.0,19.0,23.0,23.0,11.0,24.0,25.0,19.0,21.0,9.0,8.0,9.0,9.0,4.0,2.0,8.0 G81037,29.0,48.0,48.0,55.0,50.0,61.0,51.0,51.0,58.0,58.0,59.0,57.0,39.0,46.0,50.0,55.0,71.0,52.0,64.0,39.0,35.0,36.0,48.0,46.0,49.0,48.0,43.0,52.0,43.0,55.0,48.0,41.0,54.0,63.0,74.0,71.0,66.0,74.0,65.0,44.0,64.0,52.0,78.0,86.0,71.0,77.0,60.0,58.0,68.0,45.0,54.0,71.0,57.0,77.0,70.0,59.0,74.0,68.0,63.0,59.0,56.0,65.0,57.0,62.0,59.0,56.0,61.0,63.0,48.0,65.0,39.0,56.0,58.0,46.0,58.0,39.0,58.0,43.0,67.0,36.0,41.0,33.0,41.0,20.0,17.0,18.0,8.0,14.0,8.0,8.0,9.0,7.0,2.0,5.0,2.0,10.0 G81038,38.0,60.0,66.0,62.0,73.0,76.0,61.0,66.0,79.0,83.0,91.0,76.0,86.0,76.0,87.0,69.0,93.0,88.0,120.0,196.0,223.0,218.0,190.0,196.0,199.0,235.0,208.0,251.0,200.0,230.0,189.0,170.0,183.0,171.0,186.0,197.0,194.0,203.0,155.0,149.0,147.0,125.0,136.0,124.0,142.0,137.0,137.0,99.0,102.0,123.0,104.0,106.0,122.0,139.0,107.0,111.0,104.0,118.0,114.0,102.0,102.0,94.0,89.0,84.0,76.0,60.0,73.0,72.0,55.0,55.0,59.0,58.0,45.0,54.0,53.0,42.0,40.0,57.0,35.0,29.0,30.0,28.0,16.0,19.0,23.0,20.0,11.0,13.0,13.0,14.0,7.0,10.0,3.0,1.0,6.0,5.0 G81039,53.0,64.0,43.0,80.0,64.0,63.0,71.0,82.0,75.0,74.0,73.0,73.0,83.0,75.0,73.0,77.0,77.0,84.0,73.0,67.0,61.0,57.0,73.0,56.0,68.0,60.0,66.0,90.0,90.0,80.0,81.0,84.0,86.0,95.0,67.0,87.0,85.0,100.0,83.0,72.0,86.0,81.0,78.0,88.0,75.0,80.0,74.0,59.0,76.0,67.0,77.0,101.0,109.0,110.0,109.0,93.0,110.0,108.0,138.0,124.0,124.0,137.0,148.0,136.0,141.0,129.0,116.0,136.0,172.0,124.0,122.0,150.0,124.0,131.0,147.0,173.0,156.0,172.0,199.0,134.0,125.0,136.0,112.0,90.0,70.0,80.0,82.0,83.0,55.0,49.0,48.0,38.0,24.0,18.0,18.0,43.0 G81040,12.0,8.0,8.0,17.0,15.0,17.0,24.0,14.0,11.0,25.0,13.0,19.0,20.0,15.0,19.0,24.0,21.0,27.0,24.0,19.0,15.0,10.0,11.0,17.0,12.0,10.0,13.0,14.0,12.0,15.0,7.0,11.0,19.0,12.0,20.0,14.0,10.0,13.0,14.0,16.0,15.0,17.0,17.0,21.0,23.0,26.0,22.0,14.0,9.0,18.0,14.0,35.0,27.0,25.0,29.0,29.0,23.0,35.0,26.0,39.0,33.0,24.0,36.0,35.0,32.0,26.0,33.0,22.0,24.0,33.0,16.0,34.0,29.0,9.0,21.0,23.0,16.0,20.0,21.0,11.0,21.0,16.0,20.0,11.0,12.0,11.0,13.0,7.0,10.0,3.0,5.0,2.0,4.0,2.0,,3.0 G81041,48.0,53.0,64.0,65.0,58.0,61.0,59.0,55.0,76.0,73.0,72.0,79.0,69.0,89.0,86.0,77.0,93.0,80.0,91.0,57.0,79.0,61.0,51.0,74.0,59.0,61.0,79.0,90.0,97.0,83.0,72.0,87.0,84.0,80.0,81.0,79.0,61.0,76.0,76.0,77.0,86.0,62.0,72.0,68.0,71.0,81.0,62.0,57.0,61.0,62.0,57.0,67.0,80.0,87.0,87.0,80.0,89.0,78.0,90.0,101.0,101.0,116.0,109.0,83.0,79.0,92.0,85.0,70.0,81.0,70.0,78.0,81.0,88.0,73.0,70.0,71.0,88.0,88.0,90.0,75.0,67.0,61.0,52.0,48.0,50.0,41.0,39.0,32.0,22.0,29.0,22.0,11.0,14.0,10.0,7.0,19.0 G81042,47.0,48.0,37.0,46.0,53.0,64.0,68.0,85.0,73.0,72.0,76.0,91.0,65.0,75.0,84.0,79.0,79.0,86.0,68.0,80.0,70.0,67.0,77.0,81.0,96.0,61.0,81.0,84.0,98.0,124.0,88.0,101.0,81.0,97.0,101.0,95.0,104.0,102.0,97.0,92.0,101.0,82.0,86.0,95.0,108.0,90.0,97.0,95.0,107.0,92.0,111.0,107.0,122.0,116.0,115.0,98.0,113.0,116.0,120.0,113.0,100.0,110.0,102.0,93.0,78.0,90.0,81.0,66.0,64.0,64.0,53.0,59.0,51.0,37.0,47.0,46.0,55.0,50.0,57.0,31.0,44.0,25.0,30.0,21.0,17.0,20.0,10.0,19.0,14.0,11.0,10.0,9.0,7.0,3.0,5.0,9.0 G81043,26.0,21.0,43.0,38.0,47.0,22.0,34.0,34.0,35.0,56.0,41.0,41.0,49.0,45.0,46.0,51.0,51.0,48.0,42.0,35.0,34.0,41.0,34.0,37.0,38.0,29.0,38.0,40.0,31.0,47.0,29.0,47.0,40.0,43.0,38.0,54.0,41.0,52.0,38.0,37.0,55.0,46.0,44.0,34.0,41.0,57.0,39.0,44.0,46.0,41.0,40.0,50.0,65.0,56.0,52.0,65.0,50.0,45.0,52.0,47.0,64.0,67.0,56.0,68.0,54.0,46.0,46.0,59.0,52.0,33.0,44.0,35.0,44.0,34.0,36.0,49.0,36.0,41.0,46.0,23.0,27.0,20.0,24.0,17.0,26.0,17.0,13.0,13.0,5.0,10.0,4.0,8.0,2.0,3.0,2.0,5.0 G81044,11.0,19.0,13.0,22.0,10.0,11.0,19.0,11.0,20.0,22.0,17.0,13.0,17.0,27.0,23.0,13.0,28.0,29.0,26.0,26.0,29.0,34.0,35.0,39.0,73.0,46.0,59.0,74.0,73.0,85.0,74.0,84.0,77.0,99.0,73.0,81.0,91.0,83.0,77.0,68.0,71.0,69.0,73.0,61.0,80.0,52.0,65.0,47.0,57.0,63.0,58.0,52.0,62.0,65.0,64.0,39.0,48.0,63.0,60.0,52.0,46.0,58.0,42.0,42.0,40.0,32.0,38.0,31.0,25.0,29.0,24.0,22.0,25.0,26.0,18.0,15.0,19.0,21.0,11.0,7.0,11.0,8.0,9.0,7.0,4.0,5.0,6.0,3.0,3.0,5.0,2.0,3.0,1.0,,3.0, G81046,35.0,37.0,50.0,45.0,49.0,48.0,68.0,59.0,49.0,69.0,64.0,77.0,69.0,77.0,76.0,63.0,65.0,64.0,66.0,69.0,49.0,69.0,63.0,56.0,68.0,74.0,62.0,78.0,71.0,79.0,86.0,62.0,67.0,82.0,78.0,79.0,81.0,74.0,73.0,67.0,61.0,84.0,74.0,85.0,67.0,81.0,85.0,72.0,76.0,74.0,83.0,83.0,70.0,101.0,86.0,79.0,90.0,76.0,75.0,76.0,96.0,85.0,99.0,75.0,82.0,75.0,70.0,56.0,48.0,51.0,51.0,43.0,47.0,33.0,40.0,46.0,37.0,50.0,30.0,27.0,37.0,24.0,27.0,19.0,19.0,17.0,19.0,19.0,11.0,6.0,8.0,4.0,3.0,5.0,5.0, G81047,18.0,10.0,22.0,11.0,20.0,15.0,23.0,27.0,28.0,23.0,25.0,24.0,24.0,22.0,23.0,24.0,32.0,18.0,23.0,24.0,27.0,33.0,30.0,30.0,42.0,53.0,47.0,51.0,60.0,78.0,64.0,75.0,93.0,80.0,96.0,86.0,79.0,91.0,82.0,78.0,82.0,91.0,77.0,83.0,74.0,90.0,82.0,70.0,83.0,74.0,60.0,80.0,78.0,79.0,80.0,63.0,64.0,65.0,54.0,82.0,72.0,60.0,50.0,51.0,50.0,38.0,49.0,35.0,28.0,31.0,37.0,33.0,33.0,26.0,26.0,17.0,16.0,25.0,21.0,11.0,16.0,20.0,8.0,8.0,8.0,5.0,4.0,3.0,3.0,3.0,2.0,1.0,5.0,3.0,1.0,2.0 G81048,21.0,24.0,35.0,36.0,22.0,27.0,34.0,27.0,30.0,42.0,39.0,39.0,50.0,48.0,40.0,33.0,48.0,51.0,55.0,53.0,42.0,37.0,40.0,30.0,23.0,38.0,43.0,36.0,43.0,39.0,38.0,43.0,49.0,55.0,44.0,57.0,59.0,47.0,61.0,56.0,55.0,48.0,56.0,60.0,63.0,38.0,50.0,55.0,59.0,61.0,66.0,53.0,57.0,73.0,71.0,68.0,64.0,67.0,66.0,69.0,72.0,67.0,68.0,72.0,69.0,66.0,59.0,72.0,55.0,60.0,56.0,49.0,64.0,52.0,50.0,48.0,44.0,54.0,37.0,19.0,32.0,32.0,21.0,18.0,24.0,15.0,18.0,11.0,12.0,12.0,9.0,6.0,6.0,3.0,2.0,3.0 G81049,29.0,26.0,32.0,31.0,49.0,37.0,36.0,34.0,45.0,35.0,46.0,49.0,49.0,51.0,47.0,40.0,34.0,28.0,37.0,35.0,33.0,39.0,30.0,27.0,31.0,37.0,34.0,34.0,37.0,34.0,39.0,31.0,30.0,38.0,37.0,38.0,52.0,49.0,47.0,45.0,39.0,42.0,35.0,34.0,32.0,40.0,35.0,36.0,43.0,40.0,48.0,40.0,55.0,51.0,41.0,59.0,51.0,55.0,53.0,41.0,55.0,48.0,42.0,45.0,45.0,45.0,49.0,35.0,54.0,33.0,31.0,34.0,33.0,32.0,36.0,27.0,37.0,41.0,34.0,19.0,19.0,23.0,27.0,25.0,16.0,16.0,16.0,9.0,18.0,8.0,6.0,6.0,4.0,8.0,4.0,1.0 G81050,30.0,36.0,35.0,38.0,40.0,32.0,56.0,35.0,45.0,57.0,44.0,54.0,66.0,59.0,63.0,64.0,66.0,58.0,57.0,36.0,49.0,51.0,47.0,50.0,47.0,64.0,64.0,71.0,59.0,46.0,68.0,62.0,52.0,75.0,70.0,61.0,71.0,55.0,56.0,62.0,63.0,66.0,57.0,55.0,68.0,74.0,74.0,52.0,52.0,66.0,68.0,63.0,69.0,79.0,96.0,73.0,86.0,80.0,84.0,67.0,87.0,78.0,91.0,74.0,91.0,62.0,103.0,67.0,69.0,77.0,51.0,65.0,69.0,73.0,74.0,64.0,68.0,103.0,74.0,68.0,70.0,64.0,46.0,50.0,37.0,33.0,27.0,37.0,25.0,27.0,15.0,14.0,14.0,10.0,8.0,17.0 G81051,15.0,21.0,18.0,29.0,21.0,27.0,29.0,19.0,36.0,26.0,37.0,36.0,42.0,34.0,39.0,25.0,33.0,36.0,28.0,29.0,20.0,32.0,32.0,28.0,18.0,29.0,29.0,28.0,19.0,30.0,38.0,25.0,25.0,33.0,35.0,37.0,37.0,27.0,30.0,31.0,41.0,34.0,43.0,43.0,43.0,29.0,32.0,36.0,34.0,35.0,39.0,39.0,50.0,44.0,50.0,49.0,54.0,48.0,45.0,64.0,60.0,73.0,62.0,63.0,60.0,69.0,73.0,69.0,55.0,49.0,69.0,62.0,47.0,49.0,62.0,40.0,61.0,72.0,73.0,61.0,50.0,51.0,41.0,30.0,19.0,24.0,13.0,14.0,18.0,10.0,8.0,7.0,4.0,2.0,1.0,6.0 G81052,12.0,18.0,10.0,9.0,17.0,17.0,18.0,17.0,11.0,17.0,26.0,11.0,28.0,18.0,37.0,22.0,26.0,22.0,27.0,22.0,16.0,25.0,23.0,13.0,15.0,17.0,20.0,12.0,18.0,16.0,17.0,12.0,19.0,18.0,16.0,23.0,19.0,20.0,21.0,21.0,20.0,17.0,18.0,17.0,26.0,21.0,23.0,29.0,20.0,23.0,22.0,24.0,28.0,36.0,24.0,39.0,32.0,36.0,29.0,38.0,34.0,50.0,37.0,43.0,35.0,43.0,33.0,33.0,41.0,26.0,29.0,19.0,32.0,21.0,23.0,32.0,27.0,37.0,47.0,25.0,21.0,23.0,11.0,8.0,17.0,13.0,8.0,12.0,12.0,6.0,5.0,2.0,3.0,4.0,7.0,3.0 G81054,37.0,28.0,30.0,34.0,31.0,24.0,29.0,27.0,37.0,30.0,24.0,31.0,36.0,28.0,23.0,30.0,33.0,38.0,38.0,32.0,25.0,40.0,69.0,43.0,57.0,57.0,78.0,86.0,78.0,96.0,79.0,91.0,100.0,98.0,111.0,120.0,92.0,132.0,78.0,103.0,93.0,92.0,99.0,89.0,99.0,110.0,108.0,108.0,89.0,87.0,111.0,107.0,115.0,122.0,104.0,122.0,101.0,105.0,100.0,82.0,93.0,77.0,87.0,73.0,64.0,61.0,53.0,59.0,61.0,69.0,44.0,51.0,34.0,39.0,43.0,42.0,41.0,44.0,34.0,27.0,19.0,25.0,17.0,18.0,13.0,16.0,10.0,9.0,11.0,7.0,4.0,5.0,2.0,1.0,3.0,6.0 G81055,29.0,44.0,43.0,47.0,47.0,53.0,58.0,43.0,43.0,43.0,55.0,39.0,50.0,47.0,57.0,47.0,49.0,64.0,46.0,41.0,36.0,37.0,52.0,42.0,43.0,43.0,51.0,47.0,45.0,43.0,50.0,54.0,44.0,56.0,49.0,51.0,61.0,62.0,55.0,57.0,58.0,51.0,43.0,46.0,52.0,70.0,49.0,52.0,42.0,44.0,76.0,64.0,79.0,72.0,67.0,57.0,77.0,55.0,69.0,73.0,73.0,79.0,55.0,68.0,57.0,59.0,66.0,53.0,78.0,53.0,60.0,52.0,57.0,69.0,44.0,73.0,64.0,70.0,84.0,50.0,57.0,41.0,42.0,26.0,19.0,40.0,17.0,17.0,33.0,14.0,10.0,13.0,7.0,10.0,5.0,6.0 G81057,11.0,19.0,20.0,20.0,26.0,31.0,34.0,29.0,33.0,21.0,32.0,26.0,37.0,29.0,35.0,39.0,33.0,32.0,35.0,26.0,37.0,26.0,21.0,29.0,28.0,32.0,28.0,27.0,32.0,23.0,31.0,23.0,25.0,19.0,39.0,23.0,36.0,27.0,26.0,22.0,40.0,27.0,24.0,27.0,33.0,32.0,36.0,22.0,29.0,36.0,22.0,33.0,30.0,45.0,45.0,45.0,56.0,49.0,49.0,51.0,53.0,50.0,49.0,55.0,61.0,57.0,56.0,54.0,39.0,36.0,55.0,53.0,55.0,53.0,34.0,46.0,48.0,62.0,61.0,36.0,35.0,36.0,30.0,25.0,16.0,19.0,12.0,13.0,14.0,10.0,7.0,6.0,5.0,5.0,2.0,4.0 G81059,51.0,65.0,55.0,71.0,68.0,68.0,64.0,57.0,56.0,68.0,63.0,78.0,66.0,65.0,66.0,59.0,63.0,47.0,58.0,64.0,67.0,59.0,55.0,41.0,74.0,72.0,55.0,71.0,61.0,63.0,72.0,72.0,77.0,92.0,76.0,68.0,88.0,100.0,87.0,70.0,69.0,61.0,70.0,70.0,61.0,58.0,58.0,47.0,50.0,61.0,54.0,60.0,76.0,77.0,70.0,74.0,64.0,71.0,68.0,82.0,75.0,77.0,66.0,85.0,74.0,79.0,63.0,58.0,69.0,55.0,54.0,62.0,53.0,46.0,58.0,47.0,52.0,62.0,76.0,37.0,43.0,49.0,44.0,39.0,25.0,26.0,27.0,31.0,18.0,18.0,15.0,8.0,10.0,6.0,6.0,10.0 G81061,18.0,24.0,22.0,19.0,32.0,27.0,39.0,44.0,37.0,29.0,35.0,35.0,23.0,51.0,29.0,32.0,35.0,44.0,34.0,32.0,32.0,19.0,33.0,26.0,29.0,35.0,22.0,29.0,30.0,34.0,32.0,18.0,29.0,44.0,34.0,21.0,37.0,31.0,32.0,43.0,39.0,49.0,41.0,23.0,31.0,34.0,26.0,28.0,28.0,28.0,26.0,23.0,34.0,37.0,34.0,48.0,49.0,42.0,49.0,43.0,47.0,45.0,46.0,35.0,37.0,41.0,33.0,41.0,32.0,36.0,29.0,16.0,33.0,31.0,32.0,31.0,18.0,22.0,18.0,17.0,19.0,9.0,21.0,14.0,8.0,8.0,8.0,3.0,5.0,7.0,5.0,3.0,1.0,3.0,,2.0 G81065,19.0,28.0,35.0,42.0,39.0,37.0,50.0,42.0,69.0,46.0,64.0,59.0,49.0,49.0,58.0,69.0,66.0,59.0,48.0,37.0,49.0,44.0,42.0,52.0,48.0,47.0,55.0,34.0,41.0,43.0,42.0,39.0,38.0,44.0,48.0,53.0,39.0,50.0,61.0,51.0,42.0,62.0,52.0,61.0,59.0,63.0,63.0,55.0,48.0,65.0,63.0,60.0,46.0,63.0,68.0,56.0,62.0,58.0,78.0,66.0,68.0,68.0,49.0,74.0,48.0,44.0,38.0,31.0,44.0,40.0,55.0,34.0,58.0,36.0,44.0,27.0,43.0,51.0,47.0,33.0,36.0,31.0,19.0,27.0,18.0,28.0,20.0,9.0,11.0,15.0,17.0,9.0,9.0,3.0,3.0,12.0 G81070,91.0,85.0,87.0,94.0,91.0,92.0,94.0,115.0,91.0,98.0,104.0,137.0,128.0,131.0,127.0,144.0,134.0,143.0,146.0,239.0,250.0,122.0,103.0,101.0,146.0,145.0,175.0,176.0,188.0,218.0,227.0,233.0,218.0,232.0,228.0,229.0,241.0,207.0,217.0,193.0,221.0,202.0,222.0,239.0,242.0,193.0,211.0,217.0,191.0,188.0,217.0,215.0,196.0,199.0,201.0,195.0,192.0,157.0,200.0,195.0,175.0,154.0,138.0,131.0,110.0,141.0,110.0,110.0,86.0,74.0,74.0,92.0,76.0,70.0,72.0,61.0,64.0,71.0,71.0,49.0,59.0,46.0,44.0,30.0,22.0,29.0,22.0,15.0,20.0,17.0,14.0,17.0,7.0,9.0,6.0,12.0 G81071,2.0,5.0,9.0,7.0,4.0,4.0,5.0,10.0,7.0,9.0,10.0,2.0,7.0,21.0,8.0,6.0,11.0,11.0,139.0,497.0,680.0,711.0,668.0,589.0,671.0,577.0,509.0,504.0,512.0,469.0,447.0,310.0,318.0,75.0,83.0,300.0,294.0,268.0,237.0,191.0,158.0,66.0,24.0,15.0,21.0,27.0,21.0,10.0,19.0,17.0,20.0,9.0,15.0,11.0,19.0,17.0,18.0,16.0,8.0,15.0,11.0,15.0,9.0,7.0,8.0,7.0,9.0,5.0,6.0,7.0,7.0,4.0,5.0,3.0,2.0,,4.0,2.0,3.0,4.0,2.0,2.0,,,1.0,1.0,3.0,,,1.0,,,,,, G81073,35.0,38.0,35.0,50.0,41.0,53.0,60.0,60.0,46.0,55.0,60.0,63.0,55.0,56.0,56.0,67.0,63.0,77.0,55.0,48.0,42.0,53.0,45.0,41.0,49.0,50.0,40.0,39.0,43.0,32.0,57.0,59.0,60.0,44.0,68.0,62.0,69.0,68.0,52.0,45.0,51.0,70.0,59.0,55.0,65.0,77.0,66.0,63.0,62.0,51.0,50.0,67.0,63.0,70.0,60.0,49.0,52.0,57.0,54.0,49.0,48.0,53.0,54.0,62.0,39.0,38.0,45.0,30.0,29.0,29.0,34.0,29.0,31.0,23.0,30.0,22.0,30.0,29.0,28.0,21.0,24.0,17.0,20.0,20.0,9.0,20.0,14.0,10.0,10.0,10.0,8.0,4.0,4.0,1.0,4.0,3.0 G81074,61.0,108.0,80.0,79.0,97.0,110.0,112.0,112.0,109.0,116.0,118.0,132.0,128.0,97.0,137.0,117.0,120.0,127.0,115.0,117.0,98.0,98.0,99.0,94.0,111.0,91.0,117.0,107.0,108.0,97.0,115.0,95.0,108.0,100.0,111.0,112.0,123.0,129.0,112.0,135.0,120.0,124.0,115.0,137.0,142.0,116.0,108.0,105.0,98.0,127.0,118.0,100.0,138.0,115.0,149.0,135.0,138.0,127.0,135.0,143.0,140.0,139.0,126.0,120.0,100.0,122.0,92.0,97.0,99.0,94.0,87.0,90.0,100.0,82.0,88.0,86.0,88.0,88.0,98.0,61.0,87.0,64.0,46.0,33.0,35.0,37.0,28.0,34.0,24.0,16.0,13.0,10.0,8.0,11.0,5.0,12.0 G81075,21.0,16.0,18.0,25.0,27.0,26.0,38.0,33.0,42.0,36.0,48.0,44.0,47.0,35.0,46.0,48.0,43.0,37.0,56.0,71.0,101.0,73.0,55.0,69.0,55.0,43.0,47.0,51.0,42.0,57.0,54.0,41.0,56.0,51.0,45.0,64.0,57.0,50.0,37.0,53.0,46.0,53.0,45.0,47.0,35.0,50.0,38.0,37.0,35.0,37.0,29.0,39.0,33.0,31.0,31.0,39.0,44.0,38.0,40.0,32.0,30.0,34.0,35.0,35.0,28.0,40.0,20.0,25.0,22.0,14.0,21.0,20.0,17.0,14.0,14.0,12.0,13.0,13.0,12.0,5.0,13.0,8.0,11.0,8.0,5.0,3.0,4.0,5.0,4.0,2.0,2.0,2.0,1.0,3.0,1.0, G81076,31.0,42.0,36.0,43.0,37.0,53.0,48.0,51.0,73.0,48.0,67.0,60.0,58.0,70.0,63.0,81.0,74.0,58.0,54.0,53.0,45.0,59.0,56.0,44.0,59.0,62.0,53.0,47.0,54.0,64.0,49.0,41.0,46.0,48.0,57.0,65.0,64.0,59.0,67.0,61.0,83.0,76.0,80.0,76.0,87.0,71.0,95.0,88.0,68.0,70.0,78.0,102.0,82.0,107.0,112.0,109.0,104.0,119.0,130.0,106.0,119.0,110.0,108.0,106.0,107.0,84.0,89.0,73.0,80.0,101.0,80.0,71.0,78.0,78.0,92.0,68.0,78.0,84.0,76.0,63.0,71.0,66.0,56.0,40.0,42.0,27.0,33.0,26.0,34.0,24.0,15.0,12.0,14.0,2.0,7.0,18.0 G81077,51.0,71.0,72.0,60.0,72.0,82.0,103.0,86.0,73.0,86.0,82.0,90.0,94.0,89.0,87.0,85.0,89.0,80.0,75.0,70.0,71.0,68.0,75.0,63.0,70.0,83.0,73.0,80.0,78.0,115.0,90.0,97.0,104.0,122.0,100.0,99.0,111.0,117.0,100.0,100.0,95.0,103.0,86.0,90.0,93.0,101.0,94.0,74.0,89.0,88.0,89.0,116.0,108.0,96.0,96.0,108.0,136.0,102.0,125.0,142.0,144.0,140.0,124.0,117.0,129.0,119.0,115.0,109.0,106.0,109.0,106.0,118.0,108.0,110.0,104.0,127.0,118.0,148.0,129.0,101.0,94.0,79.0,67.0,59.0,36.0,62.0,41.0,36.0,28.0,28.0,22.0,14.0,12.0,14.0,9.0,24.0 G81082,34.0,37.0,23.0,32.0,33.0,39.0,29.0,36.0,49.0,32.0,55.0,47.0,55.0,54.0,50.0,51.0,68.0,64.0,56.0,64.0,33.0,38.0,34.0,35.0,29.0,19.0,25.0,26.0,23.0,40.0,31.0,44.0,24.0,25.0,26.0,33.0,25.0,32.0,37.0,21.0,34.0,52.0,26.0,32.0,36.0,30.0,29.0,34.0,38.0,33.0,40.0,41.0,39.0,30.0,42.0,46.0,41.0,37.0,66.0,50.0,38.0,48.0,49.0,42.0,43.0,39.0,44.0,38.0,32.0,27.0,37.0,25.0,37.0,21.0,37.0,29.0,22.0,34.0,26.0,28.0,29.0,24.0,18.0,10.0,13.0,14.0,9.0,3.0,9.0,11.0,3.0,3.0,,3.0,1.0,4.0 G81083,24.0,38.0,35.0,36.0,39.0,38.0,45.0,51.0,50.0,48.0,43.0,49.0,52.0,51.0,57.0,52.0,50.0,58.0,52.0,43.0,25.0,28.0,36.0,35.0,52.0,28.0,36.0,30.0,43.0,46.0,44.0,43.0,45.0,55.0,53.0,50.0,54.0,54.0,54.0,40.0,53.0,61.0,51.0,74.0,61.0,73.0,60.0,55.0,50.0,54.0,74.0,72.0,82.0,61.0,74.0,50.0,62.0,60.0,59.0,57.0,52.0,44.0,51.0,45.0,33.0,46.0,29.0,20.0,29.0,36.0,24.0,29.0,21.0,25.0,21.0,22.0,18.0,30.0,24.0,19.0,18.0,8.0,13.0,9.0,11.0,8.0,13.0,8.0,11.0,8.0,6.0,6.0,4.0,2.0,3.0,12.0 G81085,9.0,16.0,23.0,17.0,23.0,29.0,13.0,21.0,15.0,11.0,12.0,17.0,24.0,26.0,29.0,26.0,17.0,21.0,22.0,13.0,19.0,15.0,21.0,18.0,14.0,16.0,17.0,28.0,19.0,27.0,14.0,25.0,17.0,17.0,20.0,19.0,27.0,19.0,25.0,21.0,28.0,19.0,15.0,26.0,26.0,17.0,32.0,19.0,18.0,32.0,34.0,33.0,19.0,24.0,34.0,32.0,31.0,18.0,45.0,28.0,35.0,28.0,29.0,41.0,32.0,25.0,28.0,26.0,27.0,21.0,19.0,26.0,30.0,21.0,30.0,19.0,20.0,27.0,28.0,19.0,14.0,19.0,16.0,16.0,11.0,9.0,13.0,10.0,6.0,3.0,2.0,4.0,4.0,3.0,,3.0 G81086,28.0,36.0,27.0,25.0,40.0,29.0,31.0,40.0,35.0,43.0,57.0,47.0,46.0,57.0,55.0,55.0,59.0,47.0,41.0,45.0,30.0,25.0,39.0,52.0,32.0,48.0,28.0,46.0,38.0,34.0,55.0,44.0,42.0,41.0,53.0,34.0,45.0,39.0,48.0,42.0,52.0,40.0,50.0,50.0,47.0,44.0,51.0,39.0,37.0,36.0,49.0,51.0,59.0,63.0,65.0,58.0,61.0,62.0,70.0,60.0,77.0,57.0,71.0,54.0,51.0,61.0,49.0,41.0,49.0,38.0,39.0,45.0,35.0,43.0,39.0,26.0,35.0,38.0,31.0,27.0,33.0,25.0,25.0,15.0,11.0,9.0,8.0,11.0,12.0,8.0,3.0,5.0,4.0,1.0,2.0,3.0 G81087,20.0,11.0,23.0,19.0,26.0,24.0,30.0,33.0,30.0,32.0,32.0,27.0,26.0,29.0,32.0,30.0,23.0,34.0,30.0,27.0,26.0,35.0,28.0,27.0,29.0,29.0,31.0,30.0,25.0,27.0,34.0,33.0,34.0,24.0,30.0,29.0,32.0,27.0,29.0,26.0,31.0,26.0,21.0,21.0,26.0,32.0,33.0,34.0,22.0,23.0,42.0,35.0,41.0,39.0,45.0,54.0,47.0,58.0,62.0,68.0,68.0,66.0,58.0,60.0,52.0,61.0,58.0,57.0,61.0,58.0,55.0,50.0,51.0,55.0,49.0,62.0,45.0,53.0,74.0,43.0,45.0,42.0,38.0,29.0,35.0,21.0,14.0,18.0,11.0,13.0,10.0,5.0,8.0,3.0,1.0,7.0 G81088,70.0,80.0,80.0,92.0,113.0,91.0,101.0,119.0,155.0,134.0,130.0,106.0,127.0,137.0,143.0,119.0,125.0,123.0,127.0,115.0,107.0,122.0,94.0,107.0,104.0,92.0,94.0,89.0,82.0,99.0,84.0,102.0,102.0,85.0,98.0,95.0,100.0,121.0,125.0,114.0,102.0,93.0,121.0,92.0,101.0,119.0,121.0,96.0,108.0,111.0,143.0,143.0,181.0,178.0,164.0,178.0,177.0,149.0,171.0,162.0,183.0,160.0,158.0,161.0,180.0,171.0,169.0,143.0,140.0,118.0,123.0,135.0,129.0,136.0,112.0,124.0,121.0,158.0,146.0,119.0,107.0,101.0,90.0,78.0,43.0,65.0,67.0,61.0,42.0,38.0,38.0,34.0,23.0,14.0,9.0,17.0 G81089,15.0,15.0,16.0,22.0,22.0,24.0,18.0,14.0,14.0,21.0,18.0,23.0,30.0,21.0,29.0,27.0,25.0,27.0,17.0,24.0,24.0,10.0,16.0,13.0,17.0,20.0,20.0,26.0,29.0,27.0,34.0,16.0,21.0,21.0,29.0,27.0,33.0,32.0,29.0,31.0,23.0,27.0,26.0,17.0,20.0,26.0,23.0,22.0,25.0,17.0,24.0,26.0,23.0,20.0,25.0,28.0,26.0,20.0,28.0,27.0,28.0,23.0,23.0,20.0,29.0,15.0,16.0,21.0,17.0,16.0,17.0,21.0,8.0,12.0,7.0,11.0,12.0,18.0,15.0,8.0,8.0,3.0,8.0,6.0,3.0,3.0,4.0,4.0,,1.0,1.0,2.0,3.0,3.0,,2.0 G81095,120.0,131.0,123.0,130.0,130.0,117.0,138.0,146.0,156.0,121.0,125.0,124.0,142.0,141.0,140.0,134.0,144.0,121.0,151.0,122.0,120.0,116.0,111.0,118.0,147.0,148.0,156.0,154.0,179.0,167.0,191.0,193.0,180.0,184.0,213.0,189.0,181.0,214.0,210.0,197.0,187.0,205.0,196.0,188.0,179.0,157.0,156.0,168.0,157.0,166.0,160.0,154.0,167.0,183.0,201.0,168.0,174.0,243.0,203.0,218.0,224.0,220.0,223.0,188.0,152.0,196.0,151.0,163.0,146.0,125.0,130.0,136.0,130.0,109.0,131.0,122.0,108.0,116.0,118.0,72.0,98.0,73.0,55.0,53.0,28.0,36.0,32.0,34.0,21.0,17.0,8.0,24.0,10.0,5.0,5.0,10.0 G81096,12.0,15.0,6.0,15.0,11.0,12.0,9.0,10.0,21.0,8.0,13.0,16.0,11.0,16.0,17.0,19.0,9.0,21.0,12.0,6.0,17.0,15.0,20.0,18.0,11.0,14.0,11.0,22.0,20.0,15.0,15.0,23.0,15.0,14.0,21.0,12.0,13.0,21.0,18.0,17.0,15.0,17.0,24.0,16.0,19.0,27.0,15.0,13.0,22.0,22.0,21.0,18.0,26.0,19.0,22.0,14.0,27.0,26.0,23.0,27.0,22.0,29.0,27.0,24.0,24.0,21.0,23.0,13.0,17.0,14.0,17.0,17.0,13.0,20.0,11.0,8.0,15.0,18.0,8.0,18.0,9.0,7.0,7.0,7.0,6.0,2.0,6.0,6.0,2.0,3.0,3.0,,2.0,1.0,1.0, G81098,58.0,72.0,75.0,75.0,82.0,58.0,81.0,70.0,63.0,77.0,53.0,71.0,65.0,79.0,94.0,100.0,96.0,124.0,117.0,119.0,144.0,137.0,89.0,79.0,53.0,49.0,63.0,55.0,73.0,62.0,65.0,58.0,82.0,79.0,80.0,92.0,58.0,91.0,75.0,77.0,75.0,50.0,66.0,63.0,42.0,57.0,66.0,53.0,58.0,45.0,67.0,66.0,63.0,74.0,68.0,69.0,81.0,77.0,79.0,72.0,73.0,103.0,69.0,82.0,76.0,74.0,84.0,77.0,73.0,61.0,54.0,59.0,63.0,50.0,78.0,66.0,77.0,58.0,67.0,47.0,52.0,39.0,47.0,43.0,35.0,27.0,29.0,25.0,26.0,23.0,17.0,16.0,11.0,10.0,5.0,11.0 G81099,26.0,21.0,23.0,17.0,31.0,27.0,33.0,44.0,41.0,43.0,28.0,44.0,38.0,45.0,45.0,51.0,48.0,46.0,56.0,37.0,40.0,39.0,37.0,41.0,37.0,46.0,28.0,24.0,39.0,29.0,30.0,32.0,35.0,36.0,41.0,33.0,43.0,46.0,43.0,41.0,42.0,45.0,49.0,33.0,52.0,51.0,49.0,42.0,54.0,41.0,52.0,52.0,57.0,70.0,52.0,64.0,77.0,61.0,81.0,89.0,73.0,81.0,91.0,74.0,77.0,79.0,67.0,74.0,65.0,55.0,57.0,79.0,68.0,70.0,75.0,65.0,77.0,91.0,80.0,54.0,62.0,53.0,60.0,29.0,38.0,34.0,31.0,27.0,20.0,20.0,12.0,10.0,12.0,6.0,6.0,7.0 G81100,66.0,70.0,77.0,88.0,100.0,99.0,106.0,102.0,109.0,115.0,114.0,94.0,112.0,103.0,111.0,105.0,120.0,99.0,95.0,93.0,89.0,93.0,99.0,96.0,84.0,117.0,100.0,94.0,96.0,97.0,105.0,110.0,134.0,124.0,105.0,100.0,118.0,125.0,130.0,97.0,130.0,141.0,116.0,133.0,133.0,130.0,121.0,117.0,117.0,134.0,104.0,106.0,114.0,128.0,125.0,119.0,119.0,144.0,139.0,142.0,154.0,138.0,124.0,134.0,110.0,105.0,136.0,121.0,113.0,102.0,92.0,104.0,99.0,105.0,85.0,97.0,110.0,103.0,107.0,73.0,71.0,72.0,68.0,52.0,49.0,52.0,40.0,36.0,28.0,18.0,25.0,17.0,17.0,10.0,8.0,13.0 G81102,59.0,72.0,62.0,91.0,64.0,61.0,78.0,74.0,96.0,86.0,88.0,91.0,77.0,74.0,106.0,87.0,96.0,89.0,88.0,64.0,71.0,80.0,69.0,69.0,69.0,75.0,64.0,63.0,69.0,65.0,77.0,82.0,85.0,93.0,91.0,73.0,84.0,113.0,95.0,70.0,85.0,73.0,88.0,77.0,85.0,71.0,76.0,75.0,72.0,83.0,98.0,82.0,94.0,129.0,94.0,120.0,125.0,139.0,130.0,121.0,133.0,157.0,121.0,122.0,102.0,127.0,111.0,110.0,86.0,102.0,115.0,94.0,97.0,93.0,84.0,87.0,93.0,95.0,113.0,83.0,77.0,67.0,61.0,53.0,42.0,40.0,24.0,34.0,20.0,23.0,13.0,17.0,9.0,21.0,7.0,16.0 G81104,39.0,61.0,59.0,82.0,63.0,72.0,71.0,88.0,85.0,75.0,78.0,81.0,98.0,95.0,101.0,95.0,98.0,106.0,94.0,68.0,61.0,75.0,65.0,63.0,70.0,69.0,70.0,78.0,67.0,78.0,72.0,75.0,80.0,81.0,100.0,78.0,75.0,96.0,75.0,95.0,92.0,97.0,86.0,89.0,78.0,82.0,65.0,77.0,71.0,69.0,69.0,76.0,70.0,70.0,89.0,74.0,78.0,88.0,80.0,85.0,97.0,66.0,89.0,85.0,72.0,70.0,68.0,63.0,62.0,55.0,64.0,54.0,50.0,53.0,55.0,64.0,60.0,61.0,72.0,53.0,44.0,38.0,36.0,42.0,33.0,20.0,24.0,23.0,19.0,22.0,15.0,10.0,13.0,10.0,3.0,7.0 G81613,17.0,14.0,21.0,15.0,19.0,27.0,18.0,26.0,30.0,27.0,29.0,24.0,35.0,30.0,18.0,31.0,24.0,28.0,40.0,47.0,39.0,65.0,47.0,49.0,45.0,53.0,43.0,40.0,34.0,42.0,39.0,43.0,51.0,46.0,39.0,43.0,45.0,37.0,52.0,41.0,44.0,47.0,48.0,49.0,43.0,46.0,43.0,41.0,38.0,25.0,50.0,35.0,47.0,46.0,34.0,31.0,28.0,37.0,27.0,43.0,36.0,41.0,34.0,29.0,31.0,25.0,20.0,24.0,30.0,16.0,17.0,24.0,11.0,24.0,15.0,15.0,10.0,15.0,24.0,13.0,13.0,10.0,7.0,9.0,6.0,6.0,5.0,5.0,2.0,2.0,1.0,3.0,,1.0,,3.0 G81614,12.0,18.0,13.0,18.0,29.0,23.0,25.0,23.0,32.0,28.0,34.0,36.0,31.0,32.0,33.0,29.0,38.0,34.0,38.0,20.0,23.0,28.0,39.0,24.0,14.0,27.0,28.0,24.0,21.0,25.0,21.0,24.0,22.0,15.0,21.0,18.0,20.0,20.0,29.0,33.0,32.0,22.0,26.0,25.0,32.0,39.0,36.0,32.0,31.0,32.0,40.0,45.0,42.0,48.0,38.0,40.0,44.0,35.0,58.0,52.0,57.0,46.0,52.0,51.0,39.0,48.0,42.0,40.0,29.0,30.0,34.0,41.0,29.0,25.0,28.0,26.0,32.0,29.0,42.0,20.0,27.0,17.0,17.0,13.0,13.0,11.0,7.0,8.0,9.0,4.0,7.0,5.0,4.0,7.0,1.0,2.0 G81634,34.0,33.0,25.0,26.0,24.0,26.0,27.0,27.0,32.0,31.0,33.0,28.0,30.0,27.0,27.0,36.0,29.0,32.0,32.0,46.0,31.0,17.0,28.0,22.0,28.0,22.0,35.0,25.0,38.0,28.0,35.0,36.0,46.0,29.0,20.0,44.0,30.0,32.0,37.0,19.0,29.0,31.0,27.0,24.0,44.0,31.0,16.0,23.0,27.0,29.0,34.0,28.0,32.0,40.0,24.0,41.0,43.0,35.0,45.0,44.0,35.0,31.0,55.0,47.0,37.0,46.0,38.0,50.0,38.0,39.0,30.0,43.0,32.0,30.0,30.0,30.0,23.0,48.0,37.0,22.0,33.0,24.0,21.0,15.0,15.0,12.0,16.0,9.0,13.0,4.0,3.0,4.0,3.0,3.0,2.0,2.0 G81638,67.0,72.0,63.0,84.0,74.0,90.0,85.0,96.0,97.0,96.0,115.0,105.0,104.0,118.0,109.0,129.0,128.0,106.0,92.0,129.0,149.0,178.0,183.0,192.0,195.0,234.0,268.0,241.0,259.0,251.0,258.0,248.0,283.0,300.0,280.0,309.0,263.0,266.0,254.0,252.0,218.0,250.0,225.0,211.0,225.0,187.0,199.0,190.0,195.0,203.0,184.0,187.0,194.0,195.0,174.0,149.0,146.0,154.0,149.0,132.0,143.0,132.0,119.0,101.0,102.0,86.0,77.0,71.0,60.0,72.0,65.0,54.0,58.0,61.0,42.0,35.0,45.0,52.0,28.0,30.0,28.0,17.0,16.0,19.0,28.0,16.0,10.0,9.0,15.0,6.0,2.0,5.0,8.0,4.0,5.0,5.0 G81641,25.0,18.0,27.0,26.0,20.0,31.0,18.0,25.0,25.0,24.0,21.0,24.0,16.0,27.0,27.0,22.0,20.0,23.0,34.0,13.0,28.0,7.0,18.0,29.0,20.0,29.0,18.0,21.0,17.0,28.0,20.0,24.0,38.0,28.0,29.0,31.0,23.0,26.0,24.0,24.0,23.0,28.0,34.0,28.0,25.0,26.0,27.0,23.0,27.0,17.0,24.0,19.0,17.0,27.0,27.0,25.0,31.0,32.0,34.0,26.0,35.0,19.0,24.0,30.0,22.0,33.0,26.0,22.0,15.0,18.0,15.0,22.0,20.0,19.0,12.0,17.0,9.0,14.0,10.0,16.0,8.0,7.0,6.0,5.0,5.0,10.0,2.0,5.0,3.0,,3.0,,1.0,,, G81646,8.0,9.0,15.0,9.0,13.0,14.0,19.0,18.0,9.0,26.0,20.0,19.0,19.0,15.0,13.0,22.0,23.0,26.0,19.0,10.0,9.0,7.0,15.0,14.0,21.0,13.0,16.0,20.0,27.0,24.0,15.0,21.0,11.0,18.0,20.0,18.0,25.0,25.0,19.0,17.0,23.0,30.0,28.0,18.0,16.0,31.0,30.0,23.0,21.0,20.0,19.0,28.0,22.0,23.0,26.0,23.0,18.0,28.0,23.0,23.0,19.0,16.0,14.0,15.0,14.0,13.0,11.0,16.0,19.0,13.0,11.0,15.0,15.0,10.0,8.0,7.0,13.0,5.0,11.0,7.0,4.0,2.0,,3.0,4.0,1.0,,,,,2.0,1.0,,,, G81656,17.0,15.0,13.0,19.0,22.0,16.0,18.0,14.0,17.0,12.0,18.0,16.0,18.0,26.0,53.0,43.0,53.0,77.0,57.0,43.0,41.0,43.0,28.0,44.0,58.0,54.0,53.0,42.0,49.0,64.0,54.0,48.0,60.0,61.0,64.0,61.0,59.0,62.0,59.0,64.0,58.0,44.0,49.0,44.0,53.0,37.0,45.0,38.0,36.0,39.0,46.0,31.0,41.0,48.0,41.0,42.0,40.0,44.0,54.0,60.0,44.0,37.0,41.0,38.0,43.0,42.0,31.0,30.0,32.0,24.0,23.0,20.0,20.0,14.0,15.0,25.0,28.0,18.0,13.0,12.0,9.0,11.0,9.0,8.0,6.0,6.0,2.0,3.0,3.0,5.0,2.0,1.0,,2.0,1.0,3.0 G81658,70.0,97.0,97.0,98.0,96.0,120.0,121.0,112.0,110.0,121.0,122.0,114.0,117.0,122.0,96.0,125.0,115.0,119.0,108.0,88.0,102.0,93.0,85.0,77.0,101.0,104.0,105.0,136.0,136.0,129.0,133.0,130.0,173.0,167.0,164.0,152.0,146.0,178.0,141.0,168.0,128.0,147.0,118.0,143.0,156.0,139.0,125.0,90.0,106.0,120.0,121.0,113.0,118.0,123.0,133.0,114.0,138.0,105.0,131.0,110.0,131.0,133.0,119.0,103.0,110.0,95.0,86.0,75.0,79.0,63.0,69.0,87.0,57.0,59.0,61.0,63.0,61.0,54.0,66.0,49.0,41.0,32.0,30.0,24.0,24.0,18.0,13.0,18.0,20.0,13.0,5.0,10.0,6.0,1.0,3.0,7.0 G81663,14.0,21.0,12.0,16.0,28.0,19.0,22.0,21.0,18.0,16.0,31.0,19.0,26.0,32.0,42.0,32.0,25.0,34.0,29.0,26.0,16.0,27.0,29.0,34.0,26.0,28.0,22.0,31.0,22.0,39.0,35.0,40.0,33.0,40.0,37.0,32.0,30.0,42.0,38.0,34.0,44.0,36.0,34.0,37.0,32.0,37.0,30.0,36.0,37.0,32.0,31.0,35.0,48.0,36.0,41.0,36.0,40.0,37.0,42.0,45.0,41.0,47.0,34.0,35.0,35.0,27.0,26.0,34.0,28.0,28.0,32.0,30.0,17.0,22.0,26.0,18.0,16.0,20.0,30.0,7.0,8.0,16.0,10.0,11.0,15.0,6.0,4.0,7.0,2.0,1.0,7.0,2.0,,4.0,3.0,2.0 G81669,6.0,11.0,7.0,7.0,7.0,8.0,13.0,10.0,11.0,12.0,18.0,13.0,14.0,14.0,18.0,20.0,17.0,22.0,29.0,19.0,11.0,13.0,14.0,15.0,10.0,7.0,7.0,6.0,5.0,11.0,14.0,13.0,19.0,10.0,19.0,22.0,11.0,24.0,11.0,20.0,22.0,14.0,16.0,20.0,23.0,24.0,14.0,10.0,9.0,8.0,14.0,15.0,12.0,13.0,18.0,17.0,15.0,21.0,11.0,18.0,21.0,22.0,16.0,12.0,9.0,15.0,17.0,12.0,8.0,19.0,8.0,6.0,7.0,9.0,8.0,14.0,7.0,9.0,9.0,6.0,1.0,4.0,8.0,,4.0,2.0,2.0,3.0,1.0,,2.0,2.0,1.0,,1.0,1.0 G81689,,2.0,1.0,2.0,1.0,1.0,1.0,,4.0,1.0,,1.0,1.0,1.0,1.0,1.0,3.0,1.0,3.0,7.0,9.0,6.0,12.0,23.0,18.0,24.0,21.0,23.0,17.0,26.0,28.0,29.0,22.0,30.0,29.0,38.0,34.0,28.0,45.0,32.0,30.0,32.0,29.0,34.0,33.0,38.0,36.0,21.0,24.0,33.0,27.0,24.0,22.0,21.0,23.0,24.0,33.0,23.0,23.0,15.0,24.0,16.0,6.0,11.0,7.0,5.0,11.0,8.0,4.0,3.0,1.0,5.0,4.0,,,1.0,1.0,,,,,,,1.0,,,,,,,,,,,, G81694,6.0,2.0,5.0,5.0,4.0,6.0,5.0,8.0,6.0,5.0,4.0,9.0,10.0,5.0,5.0,10.0,8.0,6.0,9.0,13.0,17.0,13.0,19.0,19.0,28.0,26.0,19.0,42.0,32.0,37.0,44.0,39.0,37.0,49.0,44.0,57.0,59.0,59.0,45.0,42.0,54.0,48.0,40.0,37.0,39.0,18.0,26.0,39.0,22.0,33.0,27.0,30.0,32.0,26.0,26.0,22.0,22.0,22.0,18.0,23.0,24.0,22.0,14.0,20.0,13.0,12.0,12.0,10.0,10.0,7.0,7.0,2.0,5.0,9.0,3.0,3.0,9.0,3.0,6.0,7.0,3.0,5.0,3.0,4.0,3.0,3.0,2.0,1.0,1.0,2.0,1.0,1.0,1.0,,1.0, H82003,47.0,57.0,50.0,54.0,57.0,57.0,48.0,50.0,53.0,50.0,49.0,57.0,55.0,56.0,59.0,62.0,47.0,48.0,60.0,51.0,59.0,57.0,61.0,60.0,63.0,59.0,76.0,65.0,77.0,75.0,88.0,81.0,86.0,89.0,91.0,73.0,52.0,93.0,70.0,70.0,67.0,68.0,53.0,77.0,75.0,61.0,63.0,53.0,59.0,70.0,54.0,66.0,64.0,74.0,73.0,70.0,53.0,87.0,61.0,86.0,71.0,69.0,60.0,56.0,42.0,64.0,51.0,65.0,48.0,56.0,69.0,45.0,44.0,46.0,43.0,35.0,37.0,37.0,60.0,40.0,26.0,23.0,30.0,17.0,18.0,20.0,13.0,13.0,14.0,13.0,8.0,6.0,7.0,3.0,3.0,2.0 H82004,14.0,24.0,13.0,21.0,20.0,17.0,25.0,25.0,35.0,29.0,32.0,29.0,22.0,32.0,28.0,24.0,25.0,31.0,32.0,27.0,27.0,18.0,18.0,23.0,27.0,21.0,17.0,17.0,21.0,22.0,29.0,23.0,30.0,34.0,25.0,27.0,31.0,26.0,36.0,30.0,26.0,26.0,37.0,31.0,26.0,39.0,24.0,24.0,26.0,33.0,45.0,43.0,44.0,31.0,34.0,43.0,30.0,59.0,38.0,51.0,43.0,52.0,49.0,37.0,32.0,38.0,34.0,42.0,40.0,31.0,29.0,29.0,28.0,30.0,30.0,36.0,25.0,33.0,23.0,20.0,15.0,19.0,17.0,12.0,10.0,14.0,9.0,11.0,5.0,2.0,7.0,2.0,4.0,1.0,3.0,1.0 H82005,68.0,79.0,73.0,99.0,93.0,84.0,81.0,77.0,78.0,101.0,83.0,76.0,86.0,99.0,95.0,111.0,117.0,118.0,98.0,62.0,63.0,47.0,51.0,43.0,48.0,55.0,75.0,61.0,57.0,67.0,71.0,72.0,75.0,74.0,87.0,82.0,95.0,107.0,87.0,105.0,91.0,107.0,89.0,79.0,99.0,93.0,103.0,86.0,98.0,95.0,94.0,82.0,91.0,77.0,92.0,63.0,86.0,91.0,71.0,71.0,92.0,68.0,79.0,58.0,61.0,54.0,53.0,59.0,52.0,51.0,52.0,47.0,39.0,39.0,39.0,39.0,52.0,42.0,46.0,31.0,39.0,27.0,23.0,18.0,16.0,10.0,20.0,16.0,15.0,17.0,8.0,7.0,4.0,3.0,2.0,3.0 H82006,28.0,19.0,22.0,30.0,25.0,22.0,16.0,23.0,31.0,31.0,31.0,40.0,39.0,33.0,40.0,32.0,35.0,34.0,40.0,32.0,24.0,26.0,15.0,21.0,29.0,18.0,31.0,31.0,25.0,30.0,29.0,28.0,23.0,25.0,33.0,40.0,29.0,29.0,32.0,40.0,29.0,32.0,30.0,29.0,21.0,32.0,33.0,28.0,29.0,27.0,28.0,38.0,41.0,38.0,43.0,41.0,45.0,40.0,51.0,46.0,48.0,49.0,56.0,38.0,46.0,53.0,48.0,59.0,49.0,39.0,38.0,38.0,47.0,35.0,43.0,27.0,38.0,41.0,53.0,38.0,22.0,21.0,27.0,27.0,22.0,22.0,15.0,13.0,12.0,11.0,8.0,9.0,9.0,1.0,3.0,9.0 H82007,35.0,36.0,41.0,40.0,54.0,49.0,58.0,57.0,71.0,70.0,69.0,59.0,60.0,79.0,62.0,69.0,70.0,58.0,55.0,71.0,61.0,43.0,56.0,57.0,59.0,37.0,51.0,49.0,49.0,49.0,67.0,50.0,68.0,83.0,54.0,69.0,58.0,73.0,72.0,69.0,72.0,67.0,83.0,78.0,76.0,63.0,58.0,77.0,69.0,48.0,70.0,63.0,82.0,85.0,90.0,89.0,74.0,67.0,95.0,97.0,104.0,87.0,84.0,92.0,97.0,94.0,69.0,86.0,94.0,69.0,77.0,100.0,73.0,70.0,93.0,79.0,96.0,132.0,102.0,57.0,85.0,69.0,73.0,49.0,36.0,38.0,40.0,28.0,30.0,20.0,27.0,17.0,10.0,9.0,8.0,14.0 H82009,67.0,77.0,64.0,82.0,93.0,83.0,69.0,96.0,107.0,85.0,111.0,83.0,110.0,107.0,97.0,107.0,110.0,95.0,107.0,93.0,80.0,73.0,64.0,84.0,79.0,69.0,77.0,76.0,80.0,92.0,84.0,62.0,92.0,90.0,105.0,95.0,126.0,119.0,98.0,97.0,105.0,114.0,111.0,115.0,100.0,106.0,104.0,121.0,105.0,104.0,91.0,120.0,110.0,120.0,106.0,114.0,120.0,141.0,117.0,121.0,121.0,123.0,107.0,99.0,99.0,110.0,83.0,78.0,78.0,77.0,92.0,75.0,69.0,59.0,74.0,63.0,86.0,74.0,89.0,66.0,55.0,49.0,57.0,35.0,39.0,29.0,27.0,20.0,13.0,22.0,23.0,13.0,10.0,5.0,8.0,8.0 H82011,63.0,63.0,62.0,81.0,72.0,104.0,77.0,89.0,101.0,89.0,76.0,108.0,91.0,120.0,93.0,99.0,99.0,73.0,73.0,90.0,85.0,86.0,83.0,81.0,84.0,82.0,88.0,88.0,96.0,101.0,121.0,119.0,109.0,123.0,121.0,113.0,121.0,119.0,99.0,103.0,103.0,92.0,121.0,100.0,109.0,102.0,95.0,106.0,100.0,102.0,88.0,104.0,85.0,100.0,97.0,96.0,132.0,97.0,113.0,93.0,117.0,92.0,107.0,88.0,87.0,95.0,88.0,83.0,97.0,82.0,76.0,75.0,68.0,73.0,70.0,57.0,68.0,95.0,81.0,68.0,60.0,45.0,42.0,21.0,30.0,30.0,23.0,20.0,17.0,18.0,15.0,15.0,13.0,5.0,8.0,12.0 H82012,80.0,91.0,91.0,100.0,122.0,113.0,114.0,100.0,107.0,121.0,109.0,108.0,76.0,115.0,97.0,103.0,93.0,97.0,103.0,96.0,89.0,103.0,97.0,110.0,116.0,133.0,146.0,162.0,150.0,129.0,134.0,137.0,140.0,172.0,162.0,152.0,167.0,143.0,141.0,166.0,135.0,162.0,146.0,132.0,132.0,104.0,114.0,106.0,102.0,107.0,98.0,84.0,101.0,82.0,98.0,66.0,92.0,63.0,61.0,65.0,74.0,55.0,81.0,54.0,67.0,52.0,59.0,54.0,41.0,58.0,45.0,40.0,38.0,30.0,29.0,36.0,34.0,33.0,27.0,22.0,12.0,21.0,18.0,7.0,16.0,17.0,17.0,10.0,3.0,9.0,3.0,8.0,3.0,2.0,,5.0 H82013,42.0,45.0,49.0,50.0,45.0,59.0,58.0,53.0,60.0,62.0,61.0,70.0,70.0,77.0,75.0,72.0,46.0,63.0,54.0,50.0,51.0,45.0,54.0,33.0,52.0,51.0,52.0,57.0,66.0,59.0,71.0,77.0,78.0,85.0,66.0,89.0,96.0,89.0,90.0,91.0,90.0,91.0,89.0,91.0,61.0,85.0,78.0,78.0,94.0,70.0,81.0,83.0,67.0,70.0,73.0,90.0,78.0,93.0,92.0,100.0,89.0,91.0,106.0,115.0,82.0,85.0,107.0,102.0,78.0,81.0,93.0,73.0,89.0,51.0,69.0,62.0,82.0,71.0,77.0,66.0,57.0,50.0,69.0,52.0,28.0,30.0,29.0,35.0,25.0,30.0,22.0,19.0,8.0,8.0,8.0,20.0 H82014,63.0,50.0,66.0,68.0,41.0,71.0,65.0,62.0,71.0,83.0,77.0,63.0,73.0,83.0,71.0,90.0,79.0,68.0,71.0,56.0,59.0,50.0,55.0,60.0,54.0,62.0,70.0,47.0,67.0,54.0,75.0,51.0,65.0,82.0,88.0,82.0,80.0,72.0,79.0,89.0,68.0,72.0,62.0,76.0,75.0,79.0,68.0,69.0,68.0,69.0,65.0,88.0,83.0,107.0,105.0,100.0,84.0,106.0,97.0,96.0,97.0,93.0,76.0,69.0,75.0,82.0,96.0,84.0,64.0,68.0,68.0,81.0,93.0,69.0,83.0,76.0,80.0,110.0,100.0,76.0,74.0,71.0,51.0,48.0,54.0,49.0,46.0,37.0,33.0,22.0,20.0,19.0,12.0,9.0,4.0,21.0 H82016,51.0,51.0,53.0,69.0,72.0,77.0,85.0,72.0,58.0,60.0,69.0,68.0,82.0,83.0,75.0,93.0,69.0,81.0,84.0,55.0,64.0,60.0,44.0,62.0,54.0,77.0,81.0,67.0,89.0,92.0,90.0,107.0,120.0,98.0,96.0,131.0,124.0,133.0,129.0,128.0,127.0,129.0,119.0,112.0,87.0,100.0,94.0,75.0,75.0,71.0,88.0,62.0,73.0,72.0,91.0,83.0,87.0,90.0,83.0,87.0,73.0,91.0,100.0,84.0,75.0,90.0,67.0,71.0,79.0,60.0,82.0,63.0,51.0,77.0,45.0,61.0,72.0,58.0,61.0,32.0,42.0,40.0,35.0,35.0,26.0,22.0,20.0,16.0,21.0,14.0,15.0,6.0,9.0,6.0,4.0,9.0 H82017,49.0,85.0,85.0,100.0,102.0,72.0,117.0,111.0,116.0,102.0,107.0,121.0,117.0,127.0,130.0,138.0,128.0,137.0,96.0,98.0,102.0,88.0,82.0,76.0,85.0,97.0,114.0,84.0,99.0,97.0,98.0,100.0,106.0,135.0,130.0,122.0,135.0,139.0,144.0,134.0,159.0,148.0,136.0,142.0,151.0,160.0,153.0,147.0,138.0,138.0,128.0,154.0,148.0,158.0,154.0,143.0,149.0,157.0,161.0,145.0,159.0,136.0,136.0,128.0,132.0,105.0,112.0,93.0,103.0,102.0,78.0,80.0,99.0,73.0,77.0,83.0,92.0,90.0,94.0,80.0,61.0,59.0,70.0,51.0,48.0,46.0,45.0,38.0,36.0,36.0,34.0,30.0,16.0,21.0,17.0,32.0 H82020,38.0,41.0,25.0,34.0,41.0,34.0,36.0,59.0,45.0,36.0,50.0,37.0,44.0,47.0,39.0,40.0,41.0,41.0,35.0,46.0,44.0,59.0,42.0,54.0,58.0,65.0,61.0,57.0,83.0,72.0,72.0,99.0,99.0,111.0,106.0,116.0,119.0,95.0,97.0,113.0,117.0,105.0,114.0,78.0,92.0,84.0,89.0,75.0,86.0,73.0,75.0,91.0,72.0,75.0,83.0,84.0,103.0,63.0,76.0,63.0,69.0,59.0,56.0,69.0,68.0,51.0,42.0,48.0,49.0,46.0,47.0,34.0,38.0,35.0,29.0,33.0,34.0,42.0,31.0,26.0,21.0,21.0,28.0,10.0,13.0,16.0,13.0,12.0,8.0,9.0,7.0,4.0,5.0,6.0,4.0,3.0 H82021,29.0,28.0,23.0,32.0,23.0,23.0,27.0,23.0,26.0,35.0,24.0,28.0,26.0,31.0,29.0,26.0,39.0,29.0,26.0,30.0,21.0,36.0,28.0,24.0,27.0,22.0,28.0,15.0,24.0,21.0,26.0,45.0,35.0,25.0,36.0,24.0,31.0,42.0,29.0,30.0,24.0,30.0,32.0,29.0,31.0,27.0,42.0,20.0,35.0,31.0,34.0,30.0,37.0,29.0,51.0,46.0,41.0,46.0,59.0,48.0,59.0,57.0,53.0,58.0,57.0,49.0,45.0,68.0,55.0,66.0,48.0,33.0,49.0,49.0,47.0,47.0,46.0,49.0,48.0,38.0,45.0,42.0,39.0,32.0,22.0,23.0,16.0,15.0,15.0,10.0,7.0,8.0,7.0,5.0,2.0,7.0 H82022,29.0,31.0,38.0,40.0,25.0,49.0,40.0,52.0,50.0,59.0,69.0,75.0,79.0,82.0,85.0,87.0,74.0,80.0,70.0,59.0,49.0,57.0,46.0,39.0,54.0,48.0,51.0,57.0,50.0,49.0,54.0,56.0,46.0,43.0,43.0,45.0,56.0,50.0,62.0,69.0,53.0,56.0,59.0,72.0,66.0,70.0,67.0,58.0,50.0,66.0,80.0,78.0,75.0,81.0,83.0,80.0,82.0,105.0,99.0,93.0,90.0,97.0,94.0,88.0,92.0,75.0,64.0,81.0,68.0,65.0,77.0,73.0,82.0,79.0,60.0,68.0,75.0,78.0,81.0,58.0,56.0,68.0,48.0,27.0,47.0,35.0,33.0,37.0,20.0,24.0,21.0,11.0,8.0,8.0,8.0,10.0 H82023,130.0,115.0,145.0,160.0,168.0,196.0,192.0,198.0,205.0,256.0,211.0,233.0,247.0,266.0,253.0,256.0,250.0,261.0,216.0,177.0,166.0,134.0,168.0,142.0,130.0,154.0,187.0,167.0,176.0,181.0,181.0,169.0,186.0,187.0,229.0,220.0,195.0,232.0,241.0,223.0,241.0,218.0,223.0,269.0,253.0,274.0,250.0,245.0,249.0,252.0,260.0,251.0,287.0,297.0,260.0,252.0,256.0,213.0,261.0,260.0,263.0,240.0,234.0,209.0,240.0,185.0,193.0,181.0,183.0,196.0,172.0,160.0,177.0,162.0,166.0,163.0,176.0,190.0,185.0,136.0,132.0,126.0,120.0,92.0,85.0,82.0,69.0,55.0,62.0,36.0,43.0,28.0,25.0,25.0,8.0,24.0 H82025,100.0,97.0,93.0,131.0,91.0,105.0,114.0,117.0,106.0,118.0,133.0,104.0,119.0,113.0,141.0,91.0,116.0,111.0,126.0,112.0,99.0,90.0,81.0,97.0,87.0,91.0,106.0,113.0,91.0,138.0,106.0,130.0,135.0,132.0,142.0,132.0,148.0,129.0,119.0,139.0,131.0,125.0,99.0,130.0,121.0,133.0,132.0,118.0,119.0,119.0,120.0,111.0,116.0,106.0,106.0,100.0,110.0,124.0,121.0,103.0,115.0,131.0,102.0,101.0,94.0,86.0,92.0,90.0,77.0,79.0,60.0,71.0,54.0,56.0,53.0,62.0,58.0,39.0,48.0,26.0,25.0,31.0,28.0,19.0,27.0,13.0,21.0,12.0,10.0,10.0,14.0,8.0,13.0,6.0,4.0,15.0 H82026,110.0,145.0,116.0,103.0,128.0,150.0,127.0,138.0,125.0,149.0,164.0,159.0,146.0,129.0,154.0,153.0,125.0,123.0,110.0,119.0,106.0,90.0,107.0,108.0,81.0,105.0,124.0,113.0,107.0,112.0,125.0,162.0,139.0,174.0,175.0,168.0,180.0,168.0,174.0,186.0,152.0,193.0,207.0,197.0,182.0,174.0,166.0,151.0,155.0,134.0,155.0,144.0,136.0,157.0,151.0,144.0,134.0,125.0,114.0,130.0,140.0,100.0,98.0,93.0,79.0,79.0,72.0,68.0,55.0,57.0,48.0,50.0,44.0,39.0,50.0,49.0,33.0,35.0,44.0,23.0,29.0,27.0,18.0,13.0,14.0,11.0,12.0,8.0,8.0,3.0,7.0,6.0,1.0,2.0,2.0,7.0 H82027,16.0,10.0,12.0,22.0,11.0,20.0,12.0,21.0,24.0,17.0,27.0,23.0,24.0,29.0,36.0,32.0,49.0,52.0,45.0,38.0,30.0,13.0,16.0,21.0,12.0,23.0,15.0,14.0,18.0,22.0,14.0,14.0,16.0,19.0,18.0,18.0,23.0,19.0,26.0,20.0,18.0,20.0,19.0,23.0,20.0,25.0,21.0,24.0,19.0,21.0,20.0,21.0,30.0,27.0,28.0,28.0,31.0,27.0,31.0,26.0,29.0,33.0,30.0,30.0,32.0,30.0,27.0,31.0,22.0,25.0,18.0,23.0,17.0,21.0,23.0,19.0,22.0,24.0,17.0,18.0,16.0,25.0,11.0,11.0,5.0,8.0,13.0,9.0,5.0,4.0,3.0,3.0,1.0,,2.0,1.0 H82028,99.0,110.0,105.0,108.0,93.0,111.0,103.0,96.0,119.0,121.0,89.0,111.0,158.0,126.0,141.0,135.0,161.0,138.0,130.0,95.0,82.0,64.0,62.0,63.0,67.0,79.0,73.0,98.0,91.0,101.0,111.0,100.0,117.0,153.0,134.0,147.0,143.0,134.0,136.0,154.0,132.0,126.0,143.0,132.0,136.0,127.0,103.0,114.0,112.0,93.0,106.0,99.0,79.0,105.0,95.0,99.0,70.0,82.0,64.0,80.0,86.0,66.0,65.0,87.0,75.0,54.0,70.0,68.0,60.0,58.0,49.0,65.0,56.0,55.0,55.0,62.0,53.0,44.0,57.0,35.0,35.0,27.0,32.0,22.0,23.0,12.0,15.0,11.0,15.0,10.0,11.0,8.0,8.0,4.0,4.0,7.0 H82030,35.0,45.0,48.0,64.0,45.0,58.0,56.0,63.0,51.0,79.0,79.0,65.0,72.0,57.0,64.0,78.0,63.0,69.0,59.0,55.0,53.0,57.0,63.0,47.0,56.0,52.0,44.0,54.0,59.0,57.0,49.0,75.0,53.0,61.0,62.0,65.0,62.0,56.0,73.0,67.0,72.0,60.0,80.0,77.0,74.0,70.0,62.0,60.0,72.0,57.0,61.0,68.0,80.0,96.0,89.0,89.0,94.0,74.0,105.0,98.0,116.0,105.0,125.0,117.0,101.0,102.0,111.0,98.0,104.0,87.0,91.0,103.0,85.0,101.0,89.0,109.0,105.0,91.0,128.0,69.0,67.0,77.0,65.0,56.0,51.0,46.0,32.0,33.0,33.0,17.0,18.0,13.0,9.0,5.0,15.0,21.0 H82031,32.0,36.0,33.0,26.0,32.0,41.0,31.0,41.0,34.0,38.0,43.0,29.0,44.0,32.0,34.0,34.0,42.0,41.0,51.0,27.0,38.0,49.0,37.0,41.0,29.0,35.0,35.0,33.0,29.0,31.0,41.0,36.0,29.0,49.0,25.0,23.0,28.0,43.0,34.0,34.0,41.0,29.0,46.0,33.0,40.0,38.0,30.0,48.0,38.0,40.0,38.0,44.0,41.0,52.0,53.0,50.0,47.0,60.0,54.0,54.0,50.0,55.0,55.0,58.0,67.0,45.0,45.0,39.0,48.0,56.0,54.0,41.0,29.0,31.0,33.0,36.0,38.0,50.0,35.0,38.0,24.0,42.0,38.0,17.0,17.0,21.0,18.0,15.0,10.0,12.0,8.0,5.0,6.0,2.0,,3.0 H82032,38.0,45.0,46.0,44.0,52.0,58.0,62.0,46.0,55.0,79.0,65.0,68.0,77.0,55.0,68.0,61.0,70.0,66.0,64.0,79.0,56.0,44.0,56.0,50.0,48.0,50.0,48.0,64.0,64.0,65.0,62.0,72.0,58.0,83.0,84.0,84.0,65.0,90.0,75.0,75.0,67.0,65.0,83.0,59.0,70.0,77.0,70.0,63.0,63.0,72.0,77.0,73.0,101.0,88.0,94.0,88.0,99.0,102.0,102.0,111.0,103.0,122.0,117.0,103.0,73.0,121.0,96.0,98.0,87.0,89.0,81.0,84.0,89.0,65.0,65.0,89.0,88.0,87.0,73.0,71.0,68.0,62.0,53.0,44.0,35.0,47.0,33.0,30.0,24.0,15.0,19.0,8.0,10.0,11.0,4.0,7.0 H82033,27.0,33.0,41.0,33.0,57.0,39.0,44.0,37.0,45.0,49.0,54.0,61.0,55.0,52.0,40.0,55.0,61.0,42.0,51.0,38.0,43.0,42.0,47.0,47.0,37.0,34.0,41.0,38.0,61.0,48.0,45.0,66.0,64.0,64.0,48.0,63.0,49.0,51.0,63.0,56.0,48.0,56.0,62.0,62.0,63.0,68.0,51.0,59.0,60.0,51.0,44.0,27.0,46.0,55.0,40.0,51.0,36.0,52.0,49.0,53.0,39.0,40.0,45.0,45.0,43.0,41.0,38.0,42.0,23.0,32.0,26.0,27.0,35.0,20.0,14.0,21.0,11.0,21.0,20.0,18.0,19.0,15.0,12.0,9.0,9.0,15.0,4.0,9.0,12.0,8.0,4.0,3.0,1.0,2.0,,5.0 H82034,102.0,101.0,89.0,105.0,116.0,113.0,134.0,136.0,117.0,132.0,153.0,139.0,165.0,153.0,169.0,160.0,170.0,142.0,158.0,129.0,147.0,125.0,121.0,140.0,131.0,110.0,134.0,131.0,143.0,124.0,136.0,131.0,167.0,150.0,136.0,144.0,158.0,173.0,158.0,138.0,168.0,152.0,146.0,157.0,160.0,166.0,153.0,141.0,168.0,172.0,166.0,177.0,186.0,185.0,201.0,174.0,195.0,199.0,223.0,221.0,190.0,198.0,169.0,187.0,213.0,149.0,177.0,171.0,165.0,155.0,165.0,159.0,183.0,159.0,163.0,166.0,171.0,210.0,195.0,146.0,144.0,125.0,129.0,94.0,81.0,84.0,86.0,75.0,43.0,45.0,46.0,27.0,28.0,19.0,11.0,24.0 H82035,39.0,45.0,44.0,56.0,46.0,60.0,62.0,60.0,71.0,64.0,66.0,62.0,60.0,65.0,86.0,72.0,77.0,58.0,65.0,53.0,45.0,42.0,35.0,46.0,55.0,52.0,33.0,38.0,32.0,50.0,36.0,50.0,35.0,41.0,44.0,60.0,56.0,61.0,55.0,57.0,46.0,57.0,70.0,64.0,68.0,68.0,49.0,72.0,72.0,67.0,68.0,97.0,73.0,75.0,88.0,86.0,60.0,76.0,76.0,72.0,75.0,77.0,69.0,79.0,75.0,82.0,59.0,56.0,43.0,61.0,70.0,58.0,48.0,62.0,48.0,63.0,55.0,69.0,70.0,51.0,62.0,60.0,53.0,37.0,38.0,34.0,26.0,24.0,21.0,17.0,13.0,14.0,11.0,5.0,7.0,12.0 H82036,22.0,31.0,27.0,42.0,36.0,34.0,37.0,30.0,47.0,39.0,50.0,44.0,45.0,46.0,40.0,55.0,37.0,44.0,50.0,48.0,43.0,29.0,36.0,48.0,55.0,46.0,38.0,35.0,34.0,39.0,47.0,35.0,37.0,53.0,35.0,44.0,44.0,58.0,52.0,54.0,53.0,52.0,66.0,53.0,62.0,59.0,69.0,47.0,56.0,53.0,69.0,49.0,66.0,59.0,68.0,66.0,75.0,85.0,70.0,58.0,64.0,65.0,62.0,53.0,59.0,48.0,48.0,55.0,52.0,46.0,53.0,53.0,56.0,52.0,56.0,48.0,56.0,51.0,54.0,44.0,56.0,43.0,30.0,31.0,30.0,25.0,28.0,27.0,21.0,13.0,14.0,9.0,12.0,8.0,8.0,14.0 H82037,42.0,25.0,40.0,49.0,28.0,40.0,50.0,41.0,56.0,49.0,53.0,56.0,61.0,60.0,56.0,66.0,53.0,60.0,56.0,57.0,57.0,56.0,50.0,48.0,53.0,59.0,55.0,63.0,57.0,68.0,49.0,56.0,69.0,71.0,70.0,77.0,88.0,53.0,65.0,65.0,75.0,61.0,60.0,61.0,75.0,65.0,51.0,52.0,56.0,57.0,60.0,86.0,60.0,80.0,84.0,90.0,84.0,91.0,81.0,98.0,106.0,112.0,112.0,92.0,94.0,113.0,95.0,113.0,108.0,81.0,98.0,107.0,90.0,88.0,87.0,72.0,88.0,108.0,120.0,87.0,90.0,73.0,50.0,51.0,35.0,47.0,42.0,35.0,28.0,24.0,25.0,10.0,15.0,9.0,6.0,17.0 H82038,37.0,37.0,51.0,34.0,41.0,47.0,46.0,60.0,62.0,61.0,70.0,72.0,67.0,69.0,88.0,72.0,88.0,67.0,73.0,76.0,72.0,68.0,58.0,52.0,63.0,53.0,57.0,62.0,78.0,62.0,54.0,74.0,65.0,63.0,75.0,61.0,62.0,70.0,69.0,63.0,61.0,57.0,70.0,57.0,87.0,78.0,65.0,47.0,58.0,58.0,57.0,60.0,81.0,88.0,95.0,83.0,88.0,89.0,98.0,87.0,106.0,100.0,105.0,91.0,83.0,95.0,83.0,69.0,90.0,85.0,71.0,75.0,90.0,76.0,90.0,77.0,86.0,96.0,121.0,80.0,87.0,70.0,56.0,51.0,49.0,45.0,32.0,47.0,22.0,12.0,19.0,13.0,13.0,8.0,12.0,14.0 H82039,46.0,38.0,66.0,65.0,56.0,58.0,59.0,63.0,60.0,70.0,77.0,54.0,65.0,64.0,71.0,82.0,58.0,72.0,61.0,54.0,48.0,53.0,51.0,54.0,61.0,43.0,51.0,55.0,58.0,60.0,60.0,50.0,61.0,92.0,71.0,104.0,85.0,74.0,64.0,71.0,70.0,80.0,80.0,68.0,71.0,75.0,49.0,47.0,49.0,67.0,69.0,65.0,57.0,64.0,82.0,74.0,59.0,68.0,70.0,83.0,67.0,74.0,66.0,68.0,64.0,62.0,61.0,64.0,48.0,65.0,52.0,58.0,52.0,59.0,63.0,59.0,48.0,64.0,57.0,54.0,42.0,38.0,41.0,33.0,31.0,28.0,31.0,29.0,15.0,17.0,17.0,8.0,5.0,6.0,3.0,7.0 H82040,73.0,112.0,123.0,128.0,148.0,124.0,156.0,152.0,166.0,190.0,205.0,179.0,188.0,208.0,199.0,204.0,226.0,178.0,191.0,151.0,130.0,135.0,146.0,111.0,148.0,134.0,137.0,126.0,117.0,124.0,150.0,147.0,133.0,161.0,141.0,159.0,175.0,180.0,173.0,178.0,164.0,167.0,199.0,204.0,192.0,230.0,205.0,209.0,181.0,186.0,197.0,198.0,204.0,208.0,225.0,208.0,211.0,234.0,221.0,226.0,235.0,206.0,178.0,228.0,206.0,169.0,193.0,179.0,171.0,145.0,171.0,172.0,156.0,163.0,140.0,140.0,152.0,196.0,165.0,126.0,118.0,119.0,104.0,84.0,55.0,57.0,48.0,55.0,37.0,51.0,33.0,25.0,14.0,17.0,20.0,22.0 H82041,70.0,57.0,65.0,61.0,82.0,89.0,80.0,64.0,59.0,79.0,95.0,73.0,81.0,92.0,74.0,79.0,60.0,84.0,65.0,63.0,66.0,67.0,56.0,63.0,79.0,79.0,68.0,89.0,83.0,68.0,85.0,117.0,100.0,103.0,120.0,110.0,116.0,104.0,88.0,112.0,113.0,110.0,101.0,97.0,109.0,92.0,85.0,78.0,86.0,91.0,89.0,91.0,93.0,95.0,90.0,94.0,87.0,101.0,99.0,94.0,117.0,93.0,92.0,82.0,78.0,80.0,72.0,92.0,56.0,56.0,57.0,57.0,55.0,41.0,62.0,55.0,52.0,44.0,69.0,38.0,45.0,36.0,37.0,25.0,21.0,27.0,11.0,21.0,18.0,16.0,13.0,10.0,11.0,2.0,7.0,16.0 H82042,60.0,55.0,53.0,59.0,59.0,46.0,61.0,80.0,69.0,65.0,56.0,86.0,76.0,82.0,78.0,73.0,91.0,77.0,77.0,81.0,93.0,93.0,92.0,80.0,89.0,102.0,117.0,93.0,117.0,90.0,122.0,95.0,106.0,93.0,110.0,103.0,117.0,85.0,91.0,99.0,70.0,97.0,90.0,91.0,106.0,91.0,82.0,91.0,74.0,91.0,75.0,81.0,86.0,93.0,76.0,89.0,107.0,73.0,85.0,93.0,87.0,109.0,110.0,76.0,72.0,77.0,73.0,53.0,74.0,76.0,77.0,62.0,72.0,53.0,58.0,55.0,59.0,54.0,67.0,52.0,46.0,51.0,38.0,32.0,31.0,27.0,15.0,30.0,17.0,12.0,17.0,20.0,10.0,5.0,6.0,12.0 H82043,25.0,33.0,33.0,35.0,37.0,34.0,32.0,44.0,40.0,44.0,45.0,48.0,46.0,34.0,42.0,47.0,49.0,36.0,45.0,39.0,45.0,32.0,35.0,49.0,28.0,43.0,43.0,41.0,45.0,45.0,46.0,54.0,45.0,50.0,44.0,59.0,40.0,54.0,46.0,49.0,54.0,36.0,59.0,49.0,47.0,56.0,53.0,51.0,54.0,59.0,52.0,57.0,54.0,57.0,63.0,72.0,88.0,68.0,72.0,61.0,99.0,93.0,81.0,78.0,91.0,85.0,94.0,92.0,86.0,81.0,63.0,83.0,72.0,103.0,94.0,119.0,111.0,108.0,116.0,84.0,89.0,89.0,78.0,62.0,60.0,54.0,59.0,44.0,32.0,34.0,21.0,16.0,9.0,10.0,10.0,14.0 H82044,23.0,40.0,35.0,60.0,36.0,46.0,62.0,71.0,57.0,70.0,83.0,77.0,66.0,73.0,84.0,68.0,71.0,84.0,81.0,43.0,63.0,65.0,46.0,45.0,50.0,48.0,47.0,50.0,54.0,42.0,48.0,52.0,54.0,39.0,45.0,67.0,60.0,78.0,61.0,59.0,64.0,85.0,78.0,75.0,67.0,88.0,67.0,93.0,105.0,79.0,82.0,75.0,102.0,70.0,91.0,76.0,83.0,101.0,79.0,92.0,94.0,75.0,73.0,71.0,74.0,69.0,69.0,60.0,58.0,46.0,56.0,42.0,48.0,46.0,42.0,46.0,43.0,58.0,62.0,37.0,39.0,30.0,33.0,24.0,25.0,23.0,20.0,24.0,17.0,12.0,14.0,10.0,12.0,6.0,4.0,12.0 H82045,76.0,84.0,81.0,84.0,100.0,105.0,86.0,110.0,99.0,98.0,103.0,110.0,97.0,103.0,120.0,122.0,99.0,112.0,101.0,85.0,83.0,114.0,86.0,85.0,90.0,102.0,105.0,116.0,134.0,163.0,172.0,138.0,160.0,172.0,176.0,184.0,163.0,178.0,174.0,174.0,170.0,182.0,158.0,154.0,169.0,159.0,146.0,146.0,122.0,142.0,149.0,147.0,145.0,163.0,137.0,162.0,142.0,139.0,142.0,128.0,154.0,137.0,138.0,122.0,113.0,133.0,135.0,96.0,84.0,102.0,93.0,85.0,74.0,93.0,68.0,82.0,86.0,95.0,93.0,70.0,72.0,63.0,56.0,56.0,37.0,50.0,38.0,42.0,42.0,33.0,22.0,20.0,12.0,12.0,13.0,34.0 H82046,40.0,58.0,42.0,53.0,59.0,49.0,62.0,62.0,72.0,75.0,63.0,66.0,70.0,78.0,89.0,94.0,64.0,95.0,91.0,79.0,73.0,55.0,59.0,60.0,65.0,52.0,59.0,55.0,58.0,61.0,60.0,61.0,64.0,70.0,82.0,77.0,78.0,74.0,86.0,84.0,98.0,88.0,92.0,83.0,88.0,90.0,71.0,81.0,85.0,87.0,91.0,79.0,93.0,89.0,93.0,77.0,87.0,94.0,85.0,78.0,100.0,84.0,63.0,69.0,75.0,76.0,61.0,60.0,66.0,48.0,54.0,53.0,41.0,46.0,51.0,54.0,50.0,48.0,57.0,38.0,37.0,25.0,28.0,8.0,27.0,29.0,19.0,19.0,16.0,10.0,4.0,3.0,5.0,4.0,8.0,5.0 H82047,67.0,68.0,68.0,96.0,81.0,75.0,86.0,70.0,97.0,83.0,75.0,80.0,85.0,87.0,89.0,86.0,72.0,69.0,51.0,55.0,60.0,63.0,39.0,54.0,66.0,80.0,68.0,74.0,86.0,104.0,80.0,97.0,84.0,119.0,121.0,118.0,119.0,115.0,123.0,101.0,118.0,107.0,115.0,106.0,91.0,109.0,105.0,85.0,84.0,86.0,83.0,85.0,76.0,74.0,72.0,82.0,61.0,69.0,76.0,64.0,68.0,68.0,58.0,60.0,48.0,48.0,64.0,36.0,48.0,46.0,45.0,48.0,43.0,33.0,52.0,36.0,38.0,33.0,43.0,22.0,33.0,26.0,24.0,21.0,13.0,11.0,10.0,10.0,15.0,10.0,5.0,8.0,4.0,3.0,,6.0 H82048,49.0,54.0,57.0,55.0,56.0,56.0,56.0,55.0,59.0,57.0,51.0,53.0,67.0,53.0,47.0,49.0,59.0,57.0,47.0,45.0,56.0,44.0,33.0,37.0,42.0,41.0,40.0,52.0,72.0,50.0,65.0,59.0,67.0,59.0,70.0,67.0,75.0,58.0,68.0,58.0,50.0,50.0,69.0,72.0,72.0,60.0,61.0,51.0,47.0,57.0,54.0,60.0,65.0,66.0,86.0,66.0,96.0,93.0,81.0,80.0,106.0,80.0,92.0,96.0,94.0,87.0,117.0,97.0,115.0,92.0,80.0,100.0,94.0,79.0,91.0,83.0,92.0,85.0,85.0,63.0,68.0,57.0,47.0,54.0,36.0,28.0,33.0,36.0,23.0,22.0,17.0,23.0,9.0,7.0,7.0,9.0 H82049,48.0,46.0,46.0,57.0,69.0,61.0,53.0,59.0,54.0,53.0,65.0,48.0,69.0,63.0,61.0,53.0,63.0,59.0,49.0,54.0,63.0,67.0,52.0,56.0,77.0,59.0,69.0,78.0,73.0,66.0,65.0,73.0,63.0,74.0,77.0,89.0,74.0,105.0,77.0,64.0,66.0,79.0,52.0,55.0,69.0,62.0,61.0,60.0,64.0,71.0,72.0,51.0,54.0,53.0,49.0,63.0,57.0,72.0,74.0,66.0,65.0,66.0,58.0,56.0,58.0,55.0,57.0,52.0,48.0,45.0,62.0,61.0,59.0,47.0,49.0,50.0,59.0,50.0,51.0,33.0,47.0,44.0,39.0,26.0,29.0,29.0,25.0,19.0,26.0,16.0,15.0,8.0,6.0,7.0,6.0,9.0 H82050,51.0,55.0,61.0,73.0,73.0,79.0,69.0,71.0,65.0,72.0,79.0,91.0,73.0,71.0,90.0,69.0,64.0,78.0,66.0,72.0,64.0,54.0,52.0,59.0,67.0,72.0,73.0,78.0,73.0,80.0,114.0,77.0,95.0,88.0,107.0,111.0,115.0,83.0,79.0,100.0,86.0,103.0,91.0,103.0,97.0,106.0,74.0,76.0,80.0,60.0,65.0,76.0,53.0,74.0,75.0,75.0,63.0,72.0,74.0,62.0,54.0,54.0,61.0,50.0,52.0,56.0,47.0,36.0,29.0,25.0,45.0,38.0,32.0,41.0,40.0,24.0,29.0,28.0,37.0,19.0,21.0,17.0,13.0,16.0,15.0,7.0,3.0,4.0,7.0,9.0,7.0,7.0,3.0,,1.0,1.0 H82051,43.0,49.0,60.0,62.0,55.0,59.0,51.0,63.0,61.0,57.0,70.0,69.0,70.0,67.0,74.0,71.0,67.0,68.0,62.0,73.0,90.0,82.0,92.0,75.0,66.0,64.0,77.0,71.0,59.0,72.0,64.0,75.0,75.0,77.0,86.0,64.0,80.0,79.0,58.0,54.0,76.0,69.0,74.0,70.0,80.0,66.0,69.0,62.0,57.0,70.0,62.0,83.0,72.0,82.0,53.0,82.0,74.0,76.0,84.0,84.0,75.0,83.0,84.0,84.0,79.0,71.0,86.0,75.0,80.0,71.0,67.0,59.0,64.0,53.0,62.0,70.0,59.0,74.0,84.0,51.0,59.0,61.0,43.0,43.0,31.0,33.0,32.0,26.0,17.0,14.0,13.0,13.0,8.0,8.0,8.0,15.0 H82052,88.0,91.0,86.0,95.0,110.0,100.0,111.0,105.0,95.0,111.0,100.0,114.0,126.0,112.0,112.0,110.0,112.0,112.0,91.0,98.0,94.0,76.0,79.0,86.0,84.0,105.0,94.0,101.0,92.0,91.0,100.0,88.0,130.0,119.0,117.0,138.0,92.0,128.0,134.0,119.0,121.0,144.0,131.0,138.0,132.0,112.0,126.0,125.0,114.0,115.0,110.0,122.0,114.0,121.0,101.0,103.0,110.0,104.0,111.0,115.0,127.0,106.0,96.0,92.0,106.0,99.0,107.0,90.0,74.0,90.0,80.0,79.0,63.0,62.0,69.0,71.0,64.0,81.0,86.0,57.0,62.0,45.0,39.0,28.0,38.0,26.0,26.0,22.0,15.0,19.0,14.0,13.0,7.0,5.0,8.0,13.0 H82053,39.0,40.0,32.0,31.0,33.0,43.0,32.0,43.0,44.0,36.0,47.0,34.0,49.0,36.0,54.0,42.0,36.0,38.0,31.0,32.0,36.0,36.0,33.0,36.0,26.0,56.0,47.0,47.0,58.0,65.0,67.0,56.0,72.0,48.0,56.0,53.0,68.0,68.0,70.0,54.0,61.0,60.0,55.0,54.0,64.0,50.0,54.0,37.0,48.0,34.0,36.0,44.0,35.0,42.0,46.0,48.0,42.0,34.0,50.0,43.0,46.0,49.0,44.0,49.0,55.0,47.0,39.0,43.0,47.0,44.0,44.0,40.0,26.0,26.0,21.0,22.0,31.0,28.0,41.0,27.0,22.0,26.0,18.0,15.0,13.0,13.0,8.0,9.0,9.0,7.0,5.0,4.0,5.0,8.0,7.0,6.0 H82055,62.0,64.0,70.0,80.0,78.0,95.0,84.0,74.0,87.0,75.0,80.0,93.0,104.0,84.0,99.0,88.0,86.0,81.0,102.0,83.0,68.0,88.0,65.0,79.0,73.0,86.0,78.0,72.0,77.0,72.0,79.0,64.0,74.0,80.0,87.0,73.0,82.0,91.0,80.0,75.0,94.0,63.0,81.0,89.0,93.0,88.0,78.0,64.0,83.0,78.0,96.0,106.0,108.0,107.0,92.0,97.0,115.0,105.0,105.0,130.0,102.0,103.0,104.0,80.0,98.0,79.0,82.0,90.0,69.0,84.0,57.0,54.0,65.0,51.0,71.0,52.0,71.0,66.0,69.0,45.0,53.0,33.0,40.0,28.0,42.0,23.0,26.0,20.0,23.0,20.0,13.0,11.0,8.0,11.0,4.0,11.0 H82056,81.0,70.0,77.0,76.0,62.0,73.0,78.0,76.0,95.0,92.0,92.0,81.0,87.0,102.0,94.0,124.0,95.0,104.0,101.0,57.0,54.0,68.0,56.0,74.0,56.0,68.0,59.0,79.0,84.0,94.0,78.0,86.0,79.0,86.0,118.0,110.0,107.0,100.0,119.0,126.0,95.0,108.0,94.0,123.0,106.0,105.0,120.0,110.0,101.0,104.0,111.0,100.0,93.0,112.0,105.0,87.0,77.0,74.0,71.0,68.0,100.0,76.0,74.0,77.0,63.0,54.0,61.0,50.0,58.0,53.0,40.0,47.0,52.0,56.0,47.0,51.0,55.0,63.0,64.0,40.0,53.0,49.0,46.0,39.0,20.0,25.0,32.0,21.0,20.0,13.0,16.0,14.0,10.0,12.0,8.0,7.0 H82057,63.0,73.0,88.0,107.0,90.0,131.0,119.0,127.0,138.0,120.0,145.0,164.0,184.0,169.0,160.0,149.0,169.0,139.0,141.0,112.0,110.0,106.0,81.0,98.0,106.0,103.0,95.0,81.0,86.0,95.0,98.0,70.0,81.0,108.0,111.0,106.0,107.0,122.0,146.0,122.0,124.0,137.0,126.0,117.0,149.0,173.0,151.0,132.0,156.0,154.0,165.0,164.0,185.0,174.0,161.0,160.0,158.0,139.0,167.0,144.0,167.0,158.0,157.0,130.0,120.0,107.0,124.0,107.0,118.0,112.0,113.0,85.0,98.0,101.0,95.0,100.0,101.0,126.0,105.0,80.0,73.0,95.0,66.0,56.0,46.0,49.0,47.0,35.0,37.0,33.0,29.0,28.0,19.0,14.0,4.0,25.0 H82058,60.0,73.0,76.0,92.0,70.0,75.0,85.0,96.0,94.0,97.0,93.0,98.0,115.0,118.0,105.0,98.0,101.0,121.0,93.0,87.0,130.0,114.0,97.0,83.0,99.0,119.0,114.0,108.0,119.0,136.0,129.0,117.0,131.0,137.0,145.0,143.0,140.0,153.0,144.0,128.0,138.0,127.0,125.0,120.0,109.0,112.0,123.0,99.0,104.0,101.0,101.0,100.0,104.0,99.0,95.0,125.0,137.0,123.0,144.0,114.0,128.0,110.0,108.0,104.0,133.0,113.0,85.0,89.0,88.0,76.0,76.0,81.0,56.0,74.0,60.0,72.0,80.0,86.0,73.0,60.0,64.0,53.0,52.0,39.0,44.0,40.0,26.0,27.0,24.0,19.0,21.0,19.0,13.0,3.0,5.0,6.0 H82059,39.0,32.0,36.0,33.0,39.0,38.0,47.0,48.0,41.0,42.0,51.0,52.0,55.0,55.0,48.0,46.0,50.0,59.0,47.0,48.0,39.0,37.0,41.0,50.0,52.0,38.0,50.0,48.0,36.0,55.0,56.0,45.0,47.0,57.0,63.0,56.0,60.0,69.0,58.0,37.0,52.0,55.0,51.0,50.0,59.0,55.0,57.0,50.0,42.0,53.0,59.0,51.0,62.0,63.0,86.0,64.0,69.0,74.0,83.0,84.0,80.0,85.0,73.0,81.0,83.0,59.0,80.0,73.0,77.0,74.0,79.0,72.0,69.0,88.0,78.0,90.0,79.0,104.0,104.0,92.0,68.0,69.0,62.0,41.0,44.0,41.0,35.0,28.0,28.0,32.0,23.0,15.0,10.0,7.0,9.0,16.0 H82060,25.0,35.0,41.0,52.0,37.0,50.0,49.0,50.0,56.0,51.0,51.0,53.0,64.0,61.0,64.0,58.0,54.0,58.0,43.0,51.0,50.0,33.0,45.0,35.0,57.0,42.0,51.0,39.0,52.0,46.0,45.0,48.0,53.0,60.0,40.0,61.0,38.0,55.0,47.0,59.0,42.0,43.0,42.0,60.0,56.0,50.0,45.0,49.0,44.0,50.0,52.0,69.0,65.0,69.0,68.0,67.0,92.0,69.0,74.0,102.0,81.0,84.0,77.0,75.0,79.0,72.0,65.0,77.0,64.0,64.0,63.0,65.0,62.0,64.0,67.0,66.0,58.0,61.0,67.0,56.0,58.0,53.0,41.0,30.0,31.0,23.0,36.0,22.0,25.0,15.0,10.0,9.0,8.0,12.0,10.0,9.0 H82061,28.0,42.0,39.0,24.0,39.0,47.0,37.0,45.0,46.0,36.0,45.0,50.0,40.0,56.0,49.0,48.0,52.0,59.0,55.0,42.0,44.0,38.0,51.0,40.0,53.0,51.0,68.0,69.0,44.0,69.0,61.0,61.0,65.0,63.0,72.0,82.0,77.0,74.0,59.0,72.0,70.0,75.0,82.0,71.0,68.0,72.0,78.0,68.0,67.0,70.0,69.0,76.0,72.0,87.0,69.0,59.0,80.0,70.0,74.0,66.0,64.0,72.0,62.0,58.0,49.0,42.0,47.0,44.0,33.0,45.0,41.0,37.0,33.0,33.0,35.0,37.0,34.0,50.0,42.0,29.0,25.0,17.0,20.0,16.0,22.0,14.0,11.0,9.0,8.0,9.0,9.0,10.0,5.0,4.0,5.0,9.0 H82063,84.0,101.0,73.0,99.0,86.0,91.0,104.0,94.0,97.0,101.0,105.0,121.0,112.0,101.0,116.0,92.0,104.0,121.0,89.0,89.0,66.0,76.0,80.0,82.0,64.0,76.0,90.0,73.0,97.0,74.0,101.0,90.0,105.0,105.0,107.0,110.0,109.0,129.0,117.0,105.0,100.0,104.0,106.0,118.0,127.0,125.0,141.0,97.0,90.0,103.0,93.0,120.0,113.0,122.0,105.0,110.0,113.0,116.0,124.0,117.0,114.0,115.0,93.0,98.0,96.0,78.0,89.0,71.0,94.0,83.0,79.0,77.0,65.0,64.0,77.0,63.0,80.0,79.0,77.0,68.0,80.0,54.0,65.0,44.0,38.0,35.0,38.0,24.0,14.0,8.0,16.0,10.0,10.0,8.0,5.0,9.0 H82064,51.0,81.0,74.0,83.0,80.0,60.0,82.0,83.0,70.0,89.0,89.0,86.0,89.0,72.0,89.0,80.0,72.0,63.0,66.0,68.0,85.0,79.0,60.0,83.0,74.0,79.0,90.0,82.0,95.0,95.0,88.0,103.0,105.0,109.0,123.0,105.0,119.0,99.0,119.0,114.0,103.0,113.0,102.0,104.0,101.0,107.0,88.0,99.0,74.0,88.0,85.0,90.0,85.0,71.0,77.0,77.0,74.0,74.0,65.0,51.0,68.0,48.0,51.0,46.0,52.0,39.0,55.0,50.0,42.0,37.0,30.0,23.0,21.0,27.0,24.0,24.0,22.0,17.0,32.0,9.0,15.0,8.0,11.0,11.0,8.0,6.0,7.0,11.0,2.0,8.0,9.0,8.0,3.0,2.0,2.0,4.0 H82065,56.0,65.0,63.0,69.0,57.0,53.0,68.0,81.0,85.0,77.0,106.0,85.0,95.0,86.0,92.0,103.0,77.0,86.0,77.0,87.0,50.0,69.0,64.0,58.0,62.0,71.0,77.0,62.0,85.0,79.0,78.0,82.0,89.0,76.0,72.0,98.0,82.0,93.0,101.0,107.0,98.0,90.0,107.0,107.0,90.0,90.0,95.0,85.0,73.0,67.0,64.0,96.0,96.0,122.0,103.0,110.0,99.0,101.0,110.0,118.0,106.0,105.0,107.0,82.0,92.0,75.0,87.0,85.0,77.0,69.0,91.0,77.0,65.0,61.0,71.0,73.0,82.0,92.0,84.0,62.0,93.0,67.0,62.0,37.0,52.0,37.0,35.0,37.0,27.0,21.0,23.0,10.0,13.0,7.0,6.0,11.0 H82066,61.0,84.0,75.0,81.0,84.0,80.0,92.0,89.0,99.0,89.0,107.0,112.0,107.0,109.0,98.0,112.0,104.0,90.0,85.0,94.0,71.0,70.0,69.0,61.0,82.0,101.0,95.0,98.0,88.0,102.0,96.0,97.0,123.0,112.0,142.0,141.0,140.0,128.0,122.0,130.0,130.0,115.0,117.0,108.0,107.0,120.0,115.0,99.0,96.0,91.0,96.0,80.0,108.0,113.0,123.0,104.0,103.0,109.0,121.0,122.0,126.0,123.0,100.0,97.0,110.0,97.0,90.0,78.0,85.0,78.0,74.0,76.0,84.0,68.0,72.0,74.0,98.0,70.0,67.0,64.0,59.0,48.0,42.0,41.0,31.0,30.0,31.0,28.0,23.0,21.0,13.0,17.0,9.0,9.0,5.0,8.0 H82067,51.0,61.0,65.0,51.0,62.0,50.0,82.0,54.0,56.0,53.0,50.0,45.0,59.0,64.0,51.0,38.0,50.0,42.0,48.0,36.0,40.0,38.0,47.0,40.0,32.0,43.0,52.0,43.0,56.0,41.0,67.0,46.0,63.0,77.0,78.0,64.0,56.0,68.0,51.0,66.0,72.0,64.0,53.0,62.0,54.0,70.0,45.0,52.0,46.0,36.0,46.0,53.0,50.0,50.0,54.0,42.0,52.0,51.0,43.0,54.0,41.0,47.0,49.0,46.0,41.0,34.0,48.0,47.0,34.0,25.0,34.0,29.0,34.0,35.0,34.0,30.0,27.0,36.0,35.0,14.0,24.0,17.0,18.0,16.0,9.0,13.0,6.0,7.0,7.0,9.0,4.0,4.0,3.0,1.0,2.0, H82070,38.0,44.0,39.0,52.0,54.0,49.0,56.0,71.0,59.0,61.0,62.0,61.0,81.0,58.0,82.0,78.0,91.0,68.0,78.0,55.0,72.0,52.0,50.0,58.0,55.0,69.0,45.0,49.0,69.0,51.0,49.0,50.0,49.0,65.0,69.0,48.0,69.0,66.0,56.0,58.0,53.0,62.0,64.0,75.0,67.0,58.0,74.0,74.0,64.0,74.0,72.0,64.0,86.0,74.0,99.0,89.0,88.0,99.0,101.0,119.0,111.0,101.0,106.0,116.0,128.0,89.0,97.0,99.0,102.0,84.0,92.0,93.0,79.0,74.0,100.0,96.0,91.0,107.0,114.0,86.0,75.0,76.0,54.0,60.0,55.0,51.0,30.0,46.0,24.0,22.0,17.0,12.0,11.0,12.0,6.0,16.0 H82072,84.0,82.0,78.0,92.0,88.0,69.0,88.0,89.0,92.0,79.0,83.0,92.0,71.0,66.0,68.0,77.0,60.0,56.0,67.0,57.0,57.0,56.0,66.0,62.0,56.0,62.0,80.0,73.0,79.0,73.0,76.0,101.0,76.0,89.0,113.0,99.0,101.0,97.0,99.0,103.0,97.0,121.0,102.0,96.0,91.0,85.0,71.0,82.0,88.0,60.0,81.0,106.0,97.0,98.0,96.0,84.0,100.0,105.0,98.0,88.0,87.0,82.0,78.0,83.0,79.0,69.0,73.0,79.0,64.0,58.0,69.0,52.0,63.0,58.0,48.0,50.0,48.0,65.0,55.0,44.0,51.0,46.0,46.0,24.0,24.0,22.0,25.0,23.0,19.0,15.0,16.0,13.0,10.0,6.0,6.0,6.0 H82076,18.0,18.0,15.0,15.0,14.0,15.0,17.0,19.0,15.0,14.0,15.0,15.0,21.0,10.0,15.0,23.0,20.0,25.0,20.0,22.0,20.0,23.0,16.0,17.0,17.0,17.0,13.0,15.0,24.0,12.0,25.0,10.0,23.0,29.0,17.0,17.0,13.0,25.0,28.0,29.0,15.0,22.0,19.0,27.0,17.0,25.0,22.0,19.0,24.0,20.0,25.0,18.0,27.0,28.0,26.0,28.0,28.0,30.0,42.0,29.0,24.0,29.0,26.0,21.0,29.0,28.0,37.0,24.0,33.0,25.0,21.0,18.0,24.0,18.0,22.0,23.0,27.0,15.0,33.0,23.0,19.0,27.0,15.0,16.0,14.0,12.0,8.0,10.0,10.0,11.0,4.0,3.0,3.0,3.0,1.0,3.0 H82077,50.0,79.0,79.0,81.0,60.0,70.0,59.0,69.0,92.0,74.0,66.0,85.0,84.0,84.0,99.0,71.0,90.0,79.0,60.0,81.0,72.0,59.0,70.0,70.0,68.0,74.0,79.0,54.0,71.0,76.0,65.0,80.0,87.0,98.0,88.0,95.0,82.0,80.0,79.0,85.0,66.0,70.0,71.0,76.0,72.0,63.0,80.0,54.0,71.0,66.0,62.0,87.0,90.0,83.0,72.0,85.0,90.0,101.0,99.0,95.0,118.0,102.0,103.0,110.0,74.0,82.0,83.0,67.0,61.0,77.0,79.0,77.0,72.0,66.0,58.0,66.0,64.0,70.0,67.0,36.0,62.0,43.0,29.0,27.0,31.0,24.0,29.0,21.0,22.0,23.0,11.0,6.0,8.0,9.0,6.0,8.0 H82078,45.0,33.0,48.0,50.0,62.0,59.0,65.0,54.0,64.0,60.0,68.0,66.0,83.0,63.0,65.0,64.0,65.0,71.0,48.0,52.0,43.0,50.0,34.0,30.0,45.0,43.0,42.0,46.0,46.0,54.0,47.0,56.0,50.0,65.0,49.0,50.0,50.0,43.0,47.0,69.0,62.0,57.0,58.0,53.0,55.0,49.0,67.0,34.0,56.0,46.0,52.0,54.0,57.0,60.0,51.0,66.0,76.0,69.0,62.0,73.0,74.0,74.0,72.0,72.0,78.0,67.0,71.0,78.0,68.0,70.0,79.0,71.0,56.0,68.0,56.0,45.0,51.0,63.0,60.0,54.0,50.0,39.0,37.0,35.0,23.0,24.0,30.0,22.0,21.0,20.0,12.0,9.0,5.0,6.0,7.0,6.0 H82084,30.0,29.0,34.0,48.0,31.0,36.0,40.0,41.0,49.0,46.0,32.0,42.0,41.0,35.0,44.0,46.0,37.0,47.0,32.0,33.0,41.0,29.0,34.0,41.0,46.0,52.0,49.0,51.0,50.0,53.0,59.0,59.0,55.0,56.0,58.0,79.0,84.0,67.0,61.0,72.0,67.0,80.0,61.0,46.0,54.0,59.0,37.0,47.0,41.0,43.0,41.0,41.0,45.0,43.0,43.0,52.0,36.0,47.0,43.0,42.0,50.0,39.0,38.0,36.0,46.0,35.0,32.0,28.0,34.0,25.0,31.0,18.0,24.0,21.0,26.0,32.0,28.0,28.0,30.0,31.0,28.0,18.0,21.0,20.0,15.0,17.0,16.0,13.0,10.0,18.0,13.0,9.0,10.0,7.0,4.0,13.0 H82087,3.0,6.0,10.0,5.0,9.0,11.0,10.0,9.0,13.0,10.0,16.0,7.0,8.0,7.0,3.0,7.0,8.0,14.0,14.0,16.0,11.0,14.0,8.0,13.0,12.0,16.0,7.0,10.0,7.0,11.0,10.0,8.0,6.0,8.0,15.0,6.0,10.0,13.0,11.0,9.0,17.0,13.0,5.0,14.0,11.0,8.0,12.0,10.0,10.0,5.0,22.0,10.0,16.0,20.0,13.0,25.0,36.0,25.0,23.0,23.0,32.0,39.0,28.0,32.0,29.0,20.0,49.0,38.0,38.0,33.0,35.0,37.0,30.0,42.0,53.0,37.0,44.0,45.0,52.0,31.0,49.0,48.0,33.0,30.0,23.0,24.0,23.0,17.0,10.0,13.0,12.0,5.0,4.0,8.0,5.0,8.0 H82088,25.0,29.0,39.0,35.0,29.0,43.0,51.0,53.0,44.0,49.0,55.0,61.0,40.0,55.0,44.0,70.0,48.0,51.0,51.0,48.0,37.0,47.0,38.0,40.0,36.0,33.0,44.0,34.0,36.0,44.0,47.0,41.0,54.0,50.0,70.0,56.0,65.0,68.0,52.0,75.0,53.0,58.0,67.0,61.0,79.0,57.0,67.0,56.0,50.0,62.0,50.0,32.0,39.0,38.0,42.0,52.0,46.0,37.0,36.0,37.0,32.0,29.0,46.0,36.0,36.0,44.0,42.0,31.0,36.0,28.0,23.0,19.0,14.0,13.0,16.0,10.0,15.0,11.0,9.0,9.0,5.0,2.0,3.0,5.0,2.0,,2.0,1.0,2.0,,,1.0,,,1.0,1.0 H82089,66.0,93.0,65.0,78.0,61.0,54.0,71.0,71.0,63.0,65.0,59.0,62.0,69.0,66.0,54.0,58.0,70.0,71.0,58.0,40.0,41.0,52.0,48.0,55.0,58.0,70.0,81.0,84.0,59.0,79.0,99.0,110.0,99.0,100.0,113.0,99.0,113.0,93.0,91.0,74.0,70.0,94.0,84.0,79.0,73.0,69.0,93.0,77.0,70.0,60.0,59.0,63.0,87.0,94.0,82.0,56.0,65.0,62.0,63.0,67.0,61.0,79.0,68.0,63.0,63.0,64.0,63.0,46.0,44.0,65.0,46.0,44.0,44.0,27.0,33.0,39.0,54.0,37.0,26.0,35.0,27.0,33.0,22.0,18.0,12.0,12.0,6.0,13.0,4.0,2.0,2.0,2.0,13.0,4.0,,6.0 H82091,30.0,36.0,64.0,47.0,42.0,53.0,53.0,38.0,42.0,54.0,29.0,48.0,52.0,48.0,43.0,51.0,44.0,54.0,39.0,30.0,44.0,35.0,40.0,44.0,36.0,38.0,40.0,53.0,53.0,42.0,52.0,45.0,60.0,66.0,64.0,58.0,64.0,85.0,53.0,52.0,55.0,49.0,66.0,48.0,67.0,56.0,54.0,40.0,50.0,60.0,51.0,52.0,52.0,56.0,61.0,61.0,85.0,65.0,54.0,53.0,68.0,64.0,56.0,58.0,54.0,54.0,45.0,54.0,50.0,40.0,32.0,40.0,44.0,39.0,37.0,38.0,33.0,45.0,49.0,30.0,33.0,30.0,29.0,20.0,15.0,22.0,21.0,20.0,17.0,13.0,8.0,7.0,5.0,7.0,2.0,6.0 H82092,52.0,55.0,54.0,61.0,65.0,77.0,78.0,80.0,85.0,80.0,64.0,67.0,72.0,85.0,72.0,84.0,73.0,65.0,68.0,51.0,51.0,52.0,60.0,45.0,62.0,45.0,56.0,57.0,56.0,73.0,74.0,63.0,73.0,71.0,78.0,73.0,73.0,80.0,83.0,68.0,80.0,86.0,67.0,73.0,69.0,81.0,68.0,61.0,70.0,60.0,74.0,67.0,69.0,90.0,87.0,68.0,82.0,86.0,82.0,94.0,77.0,74.0,76.0,80.0,89.0,78.0,75.0,50.0,65.0,48.0,41.0,42.0,50.0,57.0,41.0,40.0,34.0,43.0,43.0,34.0,28.0,28.0,25.0,21.0,20.0,18.0,12.0,17.0,7.0,9.0,6.0,5.0,2.0,2.0,4.0,7.0 H82095,34.0,37.0,37.0,47.0,46.0,34.0,49.0,45.0,46.0,49.0,57.0,47.0,67.0,63.0,50.0,53.0,53.0,46.0,53.0,45.0,36.0,51.0,33.0,46.0,40.0,40.0,38.0,48.0,34.0,40.0,38.0,43.0,37.0,46.0,47.0,49.0,51.0,44.0,46.0,51.0,36.0,46.0,43.0,43.0,56.0,56.0,49.0,61.0,44.0,45.0,58.0,47.0,70.0,60.0,59.0,65.0,58.0,74.0,82.0,81.0,78.0,90.0,83.0,78.0,90.0,89.0,80.0,74.0,79.0,76.0,69.0,87.0,89.0,64.0,63.0,75.0,73.0,71.0,91.0,59.0,67.0,60.0,61.0,47.0,40.0,49.0,28.0,30.0,28.0,21.0,18.0,10.0,5.0,6.0,8.0,15.0 H82096,17.0,18.0,31.0,19.0,25.0,25.0,27.0,25.0,26.0,29.0,28.0,41.0,33.0,46.0,36.0,31.0,37.0,41.0,35.0,22.0,24.0,36.0,31.0,17.0,35.0,23.0,30.0,36.0,28.0,30.0,25.0,38.0,41.0,33.0,46.0,44.0,41.0,46.0,32.0,27.0,34.0,39.0,32.0,34.0,44.0,37.0,42.0,50.0,47.0,37.0,47.0,35.0,37.0,39.0,37.0,45.0,44.0,34.0,35.0,44.0,38.0,41.0,37.0,41.0,31.0,41.0,33.0,43.0,25.0,29.0,28.0,38.0,42.0,26.0,27.0,25.0,31.0,38.0,18.0,27.0,28.0,29.0,20.0,12.0,6.0,11.0,12.0,10.0,13.0,8.0,6.0,5.0,3.0,1.0,2.0,8.0 H82098,56.0,67.0,68.0,58.0,65.0,67.0,75.0,59.0,76.0,61.0,63.0,65.0,66.0,71.0,71.0,64.0,94.0,70.0,66.0,47.0,48.0,58.0,59.0,84.0,66.0,68.0,67.0,74.0,78.0,80.0,79.0,76.0,94.0,105.0,101.0,105.0,117.0,101.0,112.0,126.0,98.0,100.0,97.0,93.0,94.0,87.0,96.0,81.0,63.0,71.0,71.0,80.0,67.0,61.0,61.0,61.0,70.0,74.0,65.0,35.0,63.0,66.0,53.0,55.0,58.0,46.0,38.0,55.0,30.0,32.0,25.0,29.0,23.0,26.0,31.0,24.0,22.0,22.0,22.0,13.0,17.0,14.0,8.0,10.0,6.0,6.0,3.0,4.0,4.0,2.0,2.0,3.0,,1.0,2.0,1.0 H82099,26.0,31.0,19.0,33.0,26.0,30.0,30.0,46.0,38.0,36.0,27.0,29.0,33.0,33.0,40.0,42.0,51.0,46.0,50.0,35.0,29.0,39.0,40.0,30.0,29.0,37.0,46.0,48.0,45.0,41.0,43.0,51.0,45.0,27.0,59.0,51.0,42.0,37.0,34.0,47.0,36.0,52.0,47.0,45.0,60.0,45.0,46.0,46.0,43.0,56.0,45.0,42.0,47.0,60.0,68.0,48.0,68.0,45.0,55.0,65.0,70.0,67.0,54.0,56.0,49.0,51.0,68.0,44.0,45.0,57.0,57.0,56.0,39.0,49.0,45.0,50.0,57.0,61.0,69.0,44.0,38.0,40.0,51.0,37.0,36.0,17.0,27.0,17.0,19.0,16.0,8.0,12.0,9.0,9.0,5.0,6.0 H82100,54.0,64.0,64.0,55.0,57.0,63.0,68.0,68.0,61.0,60.0,58.0,58.0,66.0,51.0,66.0,52.0,68.0,39.0,55.0,46.0,38.0,33.0,29.0,24.0,45.0,26.0,38.0,52.0,53.0,38.0,52.0,55.0,64.0,63.0,63.0,64.0,74.0,90.0,82.0,84.0,54.0,67.0,66.0,80.0,60.0,84.0,57.0,67.0,62.0,58.0,75.0,60.0,58.0,57.0,48.0,56.0,65.0,54.0,41.0,47.0,43.0,37.0,37.0,30.0,35.0,34.0,25.0,41.0,38.0,39.0,38.0,32.0,40.0,25.0,25.0,33.0,30.0,32.0,38.0,25.0,27.0,24.0,26.0,17.0,14.0,12.0,6.0,18.0,9.0,7.0,11.0,10.0,5.0,1.0,3.0,6.0 H82615,62.0,57.0,54.0,65.0,64.0,74.0,63.0,73.0,64.0,66.0,70.0,67.0,94.0,87.0,68.0,72.0,66.0,45.0,55.0,50.0,39.0,38.0,41.0,30.0,46.0,39.0,47.0,44.0,41.0,62.0,66.0,65.0,58.0,60.0,75.0,73.0,68.0,74.0,68.0,68.0,63.0,79.0,63.0,81.0,62.0,69.0,78.0,75.0,54.0,66.0,58.0,78.0,65.0,54.0,65.0,64.0,63.0,63.0,71.0,82.0,61.0,61.0,73.0,50.0,52.0,43.0,52.0,47.0,40.0,43.0,45.0,34.0,32.0,38.0,36.0,33.0,28.0,33.0,33.0,28.0,26.0,21.0,21.0,23.0,12.0,17.0,12.0,16.0,11.0,3.0,6.0,7.0,5.0,4.0,2.0,4.0 H82640,41.0,66.0,82.0,86.0,99.0,67.0,97.0,78.0,100.0,97.0,94.0,107.0,108.0,95.0,96.0,119.0,120.0,105.0,87.0,95.0,92.0,96.0,91.0,82.0,74.0,113.0,75.0,75.0,82.0,79.0,82.0,76.0,98.0,80.0,89.0,98.0,85.0,109.0,95.0,99.0,95.0,90.0,89.0,127.0,96.0,115.0,120.0,111.0,109.0,108.0,110.0,114.0,106.0,110.0,113.0,120.0,139.0,131.0,124.0,148.0,142.0,159.0,120.0,143.0,116.0,136.0,105.0,98.0,93.0,82.0,66.0,70.0,76.0,51.0,64.0,54.0,72.0,68.0,87.0,55.0,49.0,32.0,40.0,40.0,23.0,26.0,25.0,22.0,16.0,12.0,13.0,8.0,11.0,3.0,5.0,4.0 Y00080,20.0,26.0,23.0,30.0,31.0,28.0,28.0,36.0,37.0,39.0,33.0,37.0,46.0,49.0,40.0,42.0,46.0,45.0,36.0,26.0,25.0,40.0,37.0,23.0,29.0,33.0,39.0,29.0,29.0,36.0,25.0,37.0,29.0,29.0,31.0,46.0,47.0,51.0,37.0,35.0,40.0,38.0,40.0,39.0,39.0,51.0,47.0,35.0,33.0,45.0,46.0,50.0,57.0,43.0,57.0,56.0,49.0,60.0,48.0,51.0,46.0,49.0,56.0,50.0,50.0,58.0,57.0,52.0,45.0,45.0,43.0,46.0,42.0,45.0,58.0,40.0,43.0,48.0,61.0,36.0,28.0,19.0,22.0,27.0,14.0,27.0,18.0,8.0,14.0,3.0,7.0,3.0,8.0,,1.0,4.0 Y00351,55.0,67.0,52.0,76.0,61.0,90.0,72.0,72.0,60.0,73.0,81.0,78.0,85.0,84.0,81.0,74.0,88.0,73.0,71.0,66.0,69.0,69.0,77.0,99.0,76.0,80.0,83.0,104.0,111.0,101.0,105.0,106.0,104.0,97.0,106.0,103.0,114.0,113.0,117.0,100.0,116.0,104.0,102.0,100.0,81.0,120.0,89.0,90.0,80.0,76.0,91.0,83.0,66.0,83.0,101.0,81.0,84.0,80.0,70.0,76.0,75.0,75.0,84.0,78.0,56.0,61.0,54.0,50.0,50.0,49.0,44.0,52.0,42.0,40.0,44.0,37.0,35.0,37.0,26.0,24.0,21.0,20.0,25.0,17.0,10.0,10.0,12.0,4.0,13.0,11.0,10.0,6.0,5.0,4.0,4.0,6.0 Y02676,25.0,14.0,26.0,22.0,15.0,18.0,17.0,27.0,27.0,17.0,23.0,18.0,28.0,11.0,19.0,18.0,14.0,15.0,21.0,48.0,67.0,83.0,99.0,113.0,133.0,177.0,158.0,171.0,175.0,183.0,184.0,188.0,184.0,185.0,187.0,183.0,175.0,172.0,157.0,146.0,141.0,122.0,120.0,126.0,78.0,74.0,68.0,58.0,60.0,51.0,59.0,48.0,50.0,43.0,46.0,44.0,40.0,32.0,34.0,42.0,33.0,24.0,19.0,21.0,19.0,17.0,6.0,20.0,11.0,13.0,9.0,6.0,8.0,5.0,10.0,4.0,7.0,5.0,6.0,1.0,4.0,,2.0,1.0,2.0,3.0,1.0,1.0,,1.0,,1.0,1.0,,, Y06007,42.0,36.0,47.0,45.0,42.0,53.0,61.0,48.0,49.0,45.0,62.0,55.0,60.0,69.0,57.0,69.0,53.0,53.0,57.0,52.0,49.0,52.0,57.0,61.0,64.0,58.0,67.0,72.0,75.0,72.0,78.0,69.0,88.0,71.0,76.0,66.0,65.0,81.0,72.0,76.0,52.0,69.0,53.0,60.0,42.0,58.0,67.0,61.0,44.0,51.0,48.0,50.0,59.0,55.0,57.0,49.0,51.0,49.0,42.0,50.0,65.0,64.0,47.0,47.0,46.0,43.0,35.0,31.0,31.0,23.0,31.0,35.0,21.0,18.0,17.0,18.0,26.0,35.0,25.0,21.0,14.0,15.0,11.0,12.0,10.0,11.0,6.0,6.0,5.0,1.0,6.0,3.0,,2.0,,4.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 M82002,33.0,44.0,49.0,35.0,48.0,59.0,62.0,63.0,71.0,63.0,67.0,45.0,59.0,53.0,50.0,68.0,75.0,58.0,49.0,63.0,45.0,53.0,56.0,58.0,34.0,51.0,37.0,45.0,65.0,68.0,46.0,71.0,74.0,57.0,54.0,72.0,66.0,58.0,62.0,81.0,45.0,58.0,66.0,58.0,55.0,58.0,62.0,70.0,52.0,61.0,67.0,65.0,78.0,59.0,57.0,62.0,81.0,67.0,72.0,64.0,74.0,86.0,70.0,60.0,60.0,68.0,72.0,56.0,50.0,45.0,49.0,51.0,38.0,39.0,43.0,43.0,43.0,62.0,43.0,37.0,39.0,41.0,27.0,21.0,21.0,23.0,17.0,20.0,13.0,18.0,10.0,9.0,7.0,3.0,2.0,7.0 M82003,89.0,100.0,117.0,143.0,137.0,137.0,162.0,157.0,174.0,195.0,188.0,166.0,202.0,219.0,199.0,196.0,168.0,181.0,171.0,162.0,154.0,116.0,148.0,125.0,144.0,159.0,166.0,185.0,152.0,153.0,146.0,178.0,184.0,197.0,172.0,207.0,194.0,201.0,191.0,185.0,197.0,183.0,178.0,164.0,170.0,175.0,172.0,143.0,147.0,173.0,154.0,169.0,166.0,160.0,171.0,173.0,192.0,156.0,148.0,154.0,160.0,147.0,111.0,138.0,127.0,104.0,118.0,110.0,108.0,101.0,101.0,101.0,102.0,97.0,97.0,106.0,81.0,97.0,72.0,67.0,70.0,66.0,63.0,55.0,38.0,29.0,29.0,18.0,19.0,22.0,7.0,12.0,3.0,7.0,6.0,8.0 M82004,66.0,61.0,69.0,72.0,78.0,91.0,68.0,92.0,91.0,111.0,106.0,117.0,94.0,96.0,86.0,96.0,104.0,101.0,85.0,91.0,75.0,71.0,79.0,72.0,92.0,114.0,76.0,92.0,85.0,84.0,109.0,99.0,85.0,84.0,99.0,107.0,87.0,103.0,100.0,78.0,120.0,95.0,106.0,101.0,93.0,95.0,105.0,103.0,94.0,112.0,118.0,128.0,132.0,154.0,142.0,166.0,147.0,180.0,173.0,152.0,144.0,134.0,158.0,158.0,153.0,132.0,134.0,142.0,131.0,126.0,140.0,158.0,101.0,133.0,132.0,130.0,135.0,119.0,131.0,119.0,102.0,103.0,93.0,74.0,66.0,77.0,61.0,51.0,38.0,38.0,25.0,13.0,20.0,14.0,12.0,14.0 M82005,22.0,36.0,38.0,32.0,43.0,40.0,43.0,56.0,38.0,50.0,54.0,51.0,45.0,51.0,55.0,49.0,52.0,55.0,50.0,41.0,48.0,50.0,45.0,41.0,35.0,48.0,63.0,50.0,65.0,55.0,51.0,54.0,46.0,74.0,68.0,65.0,56.0,64.0,60.0,60.0,53.0,59.0,54.0,41.0,50.0,50.0,53.0,45.0,61.0,56.0,58.0,55.0,50.0,75.0,69.0,61.0,71.0,70.0,70.0,71.0,76.0,72.0,63.0,67.0,65.0,73.0,54.0,57.0,50.0,53.0,60.0,61.0,67.0,58.0,53.0,50.0,45.0,44.0,60.0,43.0,46.0,49.0,36.0,35.0,22.0,30.0,25.0,17.0,17.0,19.0,11.0,7.0,7.0,5.0,7.0,5.0 M82006,30.0,36.0,50.0,74.0,45.0,56.0,59.0,55.0,60.0,73.0,56.0,52.0,60.0,51.0,46.0,52.0,57.0,50.0,45.0,45.0,46.0,53.0,50.0,52.0,65.0,76.0,69.0,81.0,99.0,89.0,95.0,101.0,104.0,113.0,87.0,117.0,104.0,103.0,106.0,88.0,91.0,87.0,85.0,77.0,84.0,68.0,78.0,67.0,74.0,67.0,65.0,80.0,78.0,79.0,85.0,61.0,75.0,94.0,77.0,80.0,86.0,76.0,88.0,78.0,66.0,44.0,69.0,73.0,75.0,64.0,65.0,53.0,38.0,46.0,52.0,43.0,63.0,68.0,52.0,41.0,43.0,28.0,34.0,27.0,22.0,24.0,21.0,25.0,15.0,17.0,10.0,7.0,11.0,2.0,3.0,9.0 M82007,64.0,69.0,79.0,76.0,90.0,83.0,73.0,81.0,111.0,105.0,91.0,119.0,92.0,100.0,95.0,92.0,92.0,97.0,88.0,79.0,79.0,64.0,62.0,67.0,56.0,76.0,72.0,79.0,88.0,107.0,78.0,96.0,105.0,114.0,105.0,100.0,113.0,99.0,106.0,111.0,104.0,103.0,101.0,111.0,93.0,110.0,78.0,93.0,104.0,90.0,109.0,97.0,99.0,109.0,123.0,117.0,101.0,115.0,94.0,101.0,106.0,92.0,98.0,110.0,84.0,88.0,86.0,68.0,64.0,78.0,87.0,70.0,75.0,70.0,55.0,62.0,70.0,69.0,61.0,42.0,57.0,48.0,31.0,34.0,30.0,28.0,32.0,33.0,15.0,10.0,14.0,10.0,7.0,5.0,4.0,8.0 M82008,14.0,20.0,22.0,15.0,23.0,23.0,18.0,21.0,13.0,33.0,10.0,39.0,29.0,24.0,40.0,24.0,30.0,38.0,30.0,31.0,29.0,30.0,29.0,20.0,23.0,28.0,31.0,40.0,34.0,25.0,22.0,15.0,17.0,32.0,24.0,36.0,28.0,28.0,28.0,17.0,26.0,23.0,22.0,23.0,35.0,26.0,32.0,24.0,27.0,29.0,27.0,31.0,44.0,47.0,41.0,51.0,39.0,74.0,60.0,52.0,66.0,82.0,64.0,63.0,60.0,68.0,55.0,76.0,73.0,65.0,66.0,55.0,64.0,56.0,63.0,70.0,67.0,60.0,71.0,45.0,57.0,51.0,40.0,38.0,35.0,37.0,34.0,20.0,19.0,11.0,14.0,13.0,12.0,7.0,4.0,20.0 M82009,51.0,57.0,48.0,73.0,54.0,66.0,74.0,53.0,71.0,55.0,53.0,64.0,70.0,68.0,68.0,67.0,63.0,59.0,63.0,54.0,55.0,70.0,53.0,45.0,50.0,67.0,68.0,70.0,86.0,81.0,85.0,73.0,96.0,88.0,92.0,85.0,71.0,77.0,91.0,76.0,66.0,76.0,75.0,85.0,59.0,62.0,77.0,76.0,64.0,65.0,65.0,72.0,64.0,76.0,57.0,82.0,64.0,75.0,72.0,62.0,70.0,83.0,66.0,76.0,69.0,68.0,48.0,56.0,67.0,51.0,64.0,49.0,64.0,39.0,56.0,55.0,40.0,58.0,39.0,30.0,37.0,40.0,31.0,15.0,24.0,17.0,12.0,19.0,14.0,12.0,6.0,6.0,2.0,4.0,2.0,3.0 M82010,64.0,72.0,92.0,82.0,84.0,88.0,90.0,73.0,97.0,95.0,103.0,111.0,102.0,112.0,109.0,122.0,116.0,94.0,86.0,75.0,88.0,76.0,84.0,77.0,73.0,91.0,101.0,107.0,102.0,94.0,97.0,103.0,89.0,119.0,92.0,99.0,113.0,98.0,103.0,105.0,101.0,103.0,94.0,115.0,107.0,85.0,76.0,97.0,91.0,82.0,103.0,97.0,115.0,131.0,140.0,122.0,143.0,139.0,148.0,115.0,154.0,144.0,124.0,119.0,116.0,97.0,123.0,118.0,108.0,95.0,104.0,81.0,80.0,103.0,93.0,104.0,97.0,99.0,95.0,86.0,87.0,87.0,66.0,51.0,43.0,61.0,43.0,45.0,30.0,24.0,20.0,17.0,9.0,8.0,7.0,9.0 M82011,14.0,28.0,28.0,29.0,20.0,24.0,23.0,27.0,36.0,24.0,28.0,22.0,26.0,20.0,23.0,18.0,25.0,20.0,23.0,17.0,18.0,19.0,22.0,16.0,19.0,24.0,15.0,27.0,16.0,29.0,22.0,14.0,19.0,21.0,26.0,33.0,31.0,32.0,27.0,26.0,22.0,13.0,22.0,27.0,25.0,27.0,26.0,30.0,21.0,21.0,21.0,29.0,26.0,27.0,24.0,37.0,37.0,32.0,37.0,33.0,34.0,35.0,41.0,36.0,39.0,27.0,34.0,31.0,27.0,34.0,17.0,27.0,33.0,32.0,26.0,19.0,24.0,29.0,24.0,20.0,26.0,14.0,13.0,13.0,9.0,11.0,10.0,10.0,6.0,11.0,2.0,4.0,1.0,6.0,2.0,2.0 M82012,64.0,74.0,90.0,85.0,109.0,95.0,85.0,83.0,104.0,97.0,116.0,114.0,113.0,99.0,113.0,115.0,108.0,106.0,87.0,87.0,77.0,72.0,77.0,66.0,86.0,70.0,85.0,75.0,99.0,88.0,84.0,87.0,96.0,103.0,129.0,108.0,128.0,97.0,107.0,106.0,107.0,91.0,104.0,100.0,96.0,90.0,85.0,91.0,81.0,93.0,89.0,82.0,92.0,111.0,98.0,110.0,121.0,78.0,87.0,105.0,85.0,97.0,71.0,71.0,70.0,63.0,69.0,55.0,57.0,51.0,50.0,56.0,49.0,54.0,40.0,46.0,45.0,51.0,57.0,33.0,34.0,28.0,35.0,26.0,18.0,21.0,17.0,11.0,16.0,9.0,11.0,6.0,5.0,3.0,1.0,1.0 M82013,10.0,7.0,11.0,6.0,11.0,12.0,9.0,16.0,10.0,10.0,9.0,9.0,13.0,13.0,15.0,9.0,17.0,8.0,12.0,11.0,7.0,16.0,14.0,16.0,12.0,9.0,16.0,14.0,10.0,13.0,17.0,16.0,14.0,16.0,17.0,15.0,17.0,11.0,10.0,14.0,13.0,20.0,15.0,17.0,16.0,13.0,12.0,14.0,8.0,21.0,7.0,16.0,18.0,20.0,18.0,22.0,28.0,21.0,23.0,37.0,25.0,23.0,28.0,23.0,30.0,27.0,28.0,19.0,20.0,24.0,19.0,23.0,18.0,22.0,17.0,20.0,24.0,25.0,20.0,15.0,12.0,21.0,18.0,4.0,7.0,12.0,3.0,7.0,4.0,5.0,7.0,5.0,2.0,1.0,5.0,1.0 M82014,32.0,26.0,35.0,36.0,48.0,35.0,37.0,42.0,54.0,42.0,49.0,48.0,46.0,45.0,48.0,44.0,37.0,38.0,47.0,46.0,51.0,33.0,39.0,49.0,49.0,35.0,49.0,48.0,38.0,54.0,39.0,49.0,46.0,53.0,51.0,52.0,49.0,50.0,57.0,50.0,53.0,40.0,52.0,49.0,44.0,43.0,49.0,39.0,48.0,44.0,45.0,54.0,52.0,65.0,62.0,55.0,55.0,75.0,68.0,70.0,63.0,75.0,74.0,80.0,80.0,57.0,73.0,51.0,54.0,64.0,59.0,77.0,69.0,57.0,61.0,62.0,56.0,76.0,65.0,40.0,56.0,45.0,43.0,40.0,33.0,22.0,41.0,18.0,19.0,13.0,14.0,11.0,9.0,8.0,6.0,15.0 M82016,37.0,39.0,43.0,37.0,40.0,55.0,47.0,59.0,68.0,50.0,50.0,55.0,60.0,63.0,109.0,115.0,122.0,143.0,123.0,50.0,46.0,44.0,36.0,33.0,34.0,41.0,37.0,49.0,36.0,44.0,36.0,32.0,43.0,70.0,66.0,75.0,62.0,63.0,63.0,63.0,53.0,68.0,65.0,59.0,62.0,60.0,47.0,49.0,55.0,62.0,63.0,52.0,55.0,73.0,67.0,68.0,54.0,73.0,74.0,68.0,78.0,76.0,75.0,71.0,75.0,61.0,71.0,69.0,67.0,69.0,67.0,62.0,68.0,69.0,64.0,51.0,53.0,69.0,78.0,49.0,50.0,45.0,54.0,34.0,39.0,33.0,24.0,25.0,15.0,21.0,16.0,16.0,12.0,10.0,5.0,13.0 M82017,9.0,17.0,12.0,15.0,25.0,14.0,14.0,26.0,16.0,28.0,30.0,27.0,26.0,24.0,22.0,30.0,23.0,15.0,15.0,19.0,18.0,25.0,14.0,17.0,19.0,15.0,25.0,22.0,20.0,21.0,23.0,17.0,18.0,25.0,14.0,25.0,28.0,26.0,21.0,21.0,21.0,22.0,26.0,25.0,15.0,36.0,23.0,25.0,16.0,26.0,25.0,21.0,33.0,33.0,29.0,32.0,32.0,38.0,42.0,45.0,44.0,37.0,55.0,33.0,34.0,42.0,33.0,36.0,46.0,39.0,29.0,20.0,39.0,34.0,37.0,28.0,27.0,36.0,29.0,24.0,31.0,17.0,26.0,18.0,17.0,16.0,11.0,10.0,11.0,7.0,5.0,2.0,6.0,2.0,1.0,1.0 M82018,29.0,25.0,27.0,30.0,29.0,50.0,39.0,47.0,48.0,44.0,51.0,52.0,47.0,44.0,42.0,35.0,38.0,39.0,28.0,38.0,32.0,30.0,29.0,30.0,34.0,31.0,22.0,36.0,33.0,32.0,40.0,41.0,40.0,36.0,50.0,48.0,43.0,43.0,41.0,34.0,44.0,50.0,52.0,50.0,33.0,41.0,42.0,42.0,42.0,29.0,33.0,47.0,48.0,55.0,47.0,29.0,60.0,56.0,41.0,47.0,44.0,42.0,43.0,55.0,49.0,51.0,39.0,47.0,44.0,37.0,39.0,45.0,35.0,48.0,35.0,38.0,36.0,47.0,46.0,40.0,45.0,34.0,34.0,23.0,26.0,17.0,22.0,14.0,13.0,11.0,9.0,9.0,7.0,6.0,2.0,4.0 M82019,16.0,18.0,15.0,26.0,32.0,22.0,22.0,32.0,22.0,40.0,28.0,40.0,48.0,47.0,71.0,67.0,90.0,114.0,98.0,73.0,80.0,66.0,48.0,27.0,26.0,36.0,26.0,35.0,22.0,26.0,24.0,21.0,24.0,29.0,29.0,36.0,39.0,42.0,33.0,35.0,32.0,35.0,29.0,36.0,37.0,49.0,38.0,40.0,46.0,52.0,41.0,48.0,61.0,48.0,68.0,48.0,82.0,59.0,64.0,71.0,68.0,64.0,71.0,62.0,60.0,66.0,61.0,68.0,58.0,56.0,65.0,53.0,59.0,47.0,65.0,63.0,71.0,73.0,58.0,63.0,43.0,52.0,37.0,26.0,18.0,23.0,23.0,10.0,17.0,8.0,12.0,6.0,2.0,3.0,8.0,7.0 M82020,11.0,19.0,15.0,18.0,11.0,10.0,19.0,16.0,17.0,22.0,17.0,13.0,20.0,18.0,18.0,23.0,25.0,30.0,16.0,25.0,11.0,17.0,17.0,18.0,20.0,10.0,17.0,17.0,15.0,22.0,17.0,19.0,24.0,26.0,30.0,30.0,22.0,21.0,23.0,15.0,14.0,18.0,20.0,17.0,25.0,19.0,17.0,16.0,22.0,24.0,31.0,26.0,31.0,32.0,37.0,30.0,24.0,34.0,41.0,41.0,50.0,40.0,36.0,34.0,39.0,42.0,35.0,31.0,27.0,38.0,26.0,36.0,23.0,30.0,25.0,25.0,30.0,37.0,35.0,25.0,17.0,16.0,19.0,8.0,10.0,16.0,12.0,6.0,6.0,6.0,4.0,2.0,,2.0,2.0,4.0 M82021,29.0,40.0,29.0,35.0,38.0,34.0,38.0,35.0,40.0,36.0,39.0,36.0,60.0,30.0,38.0,45.0,39.0,26.0,37.0,32.0,29.0,35.0,33.0,23.0,40.0,22.0,28.0,33.0,33.0,32.0,40.0,52.0,38.0,30.0,27.0,27.0,49.0,39.0,51.0,35.0,53.0,42.0,31.0,33.0,39.0,45.0,37.0,28.0,44.0,43.0,35.0,49.0,42.0,53.0,50.0,52.0,61.0,63.0,71.0,72.0,67.0,75.0,73.0,73.0,72.0,75.0,69.0,55.0,53.0,52.0,63.0,59.0,59.0,51.0,65.0,61.0,53.0,59.0,56.0,59.0,44.0,51.0,50.0,38.0,31.0,41.0,25.0,32.0,16.0,16.0,17.0,7.0,13.0,10.0,7.0,17.0 M82022,47.0,44.0,80.0,74.0,67.0,64.0,75.0,68.0,80.0,80.0,92.0,80.0,88.0,79.0,67.0,74.0,70.0,67.0,75.0,54.0,83.0,60.0,72.0,62.0,63.0,60.0,63.0,48.0,90.0,75.0,74.0,79.0,86.0,98.0,95.0,80.0,104.0,90.0,94.0,96.0,94.0,84.0,84.0,93.0,84.0,82.0,71.0,80.0,72.0,82.0,93.0,100.0,111.0,99.0,119.0,106.0,101.0,98.0,94.0,119.0,94.0,95.0,106.0,90.0,103.0,96.0,93.0,71.0,81.0,74.0,78.0,77.0,62.0,83.0,64.0,82.0,79.0,83.0,65.0,52.0,66.0,35.0,42.0,34.0,28.0,22.0,20.0,22.0,18.0,19.0,11.0,3.0,13.0,6.0,2.0,6.0 M82023,26.0,40.0,40.0,34.0,29.0,37.0,32.0,40.0,30.0,43.0,38.0,42.0,49.0,63.0,57.0,49.0,59.0,42.0,48.0,49.0,49.0,34.0,35.0,31.0,36.0,47.0,36.0,29.0,35.0,34.0,38.0,42.0,32.0,36.0,36.0,38.0,41.0,57.0,34.0,41.0,47.0,39.0,42.0,31.0,40.0,26.0,38.0,38.0,34.0,37.0,38.0,41.0,52.0,65.0,58.0,74.0,56.0,49.0,64.0,63.0,66.0,58.0,57.0,59.0,57.0,51.0,47.0,46.0,36.0,65.0,45.0,35.0,31.0,37.0,61.0,43.0,58.0,48.0,42.0,21.0,21.0,29.0,19.0,18.0,19.0,11.0,18.0,13.0,12.0,6.0,5.0,6.0,2.0,2.0,2.0,3.0 M82024,13.0,7.0,8.0,11.0,12.0,15.0,16.0,14.0,19.0,25.0,18.0,14.0,27.0,17.0,20.0,22.0,19.0,21.0,21.0,13.0,16.0,19.0,10.0,20.0,17.0,23.0,18.0,9.0,17.0,17.0,16.0,15.0,13.0,17.0,14.0,18.0,18.0,14.0,18.0,15.0,17.0,16.0,21.0,16.0,15.0,15.0,17.0,18.0,16.0,15.0,23.0,19.0,31.0,35.0,35.0,28.0,35.0,32.0,43.0,31.0,29.0,47.0,29.0,42.0,45.0,37.0,33.0,43.0,35.0,31.0,26.0,29.0,26.0,26.0,21.0,22.0,34.0,32.0,26.0,22.0,32.0,23.0,13.0,9.0,14.0,16.0,9.0,6.0,5.0,5.0,4.0,4.0,1.0,3.0,,4.0 M82025,63.0,83.0,91.0,108.0,84.0,81.0,104.0,93.0,121.0,99.0,100.0,120.0,136.0,79.0,120.0,140.0,140.0,141.0,151.0,124.0,111.0,113.0,107.0,87.0,86.0,86.0,92.0,102.0,107.0,110.0,122.0,132.0,124.0,117.0,110.0,125.0,109.0,121.0,127.0,102.0,97.0,107.0,119.0,101.0,117.0,114.0,110.0,96.0,109.0,112.0,113.0,118.0,137.0,158.0,155.0,156.0,154.0,167.0,163.0,153.0,164.0,149.0,177.0,168.0,167.0,167.0,150.0,150.0,137.0,155.0,123.0,115.0,126.0,124.0,106.0,128.0,138.0,129.0,138.0,113.0,94.0,99.0,79.0,61.0,55.0,55.0,50.0,32.0,34.0,30.0,27.0,15.0,10.0,12.0,12.0,20.0 M82026,46.0,48.0,52.0,41.0,49.0,66.0,57.0,64.0,84.0,52.0,76.0,68.0,95.0,68.0,85.0,88.0,102.0,119.0,96.0,91.0,89.0,61.0,72.0,66.0,59.0,65.0,73.0,62.0,61.0,72.0,91.0,86.0,83.0,81.0,68.0,91.0,66.0,82.0,84.0,97.0,67.0,91.0,76.0,76.0,72.0,72.0,96.0,60.0,65.0,75.0,88.0,84.0,87.0,100.0,96.0,108.0,109.0,110.0,95.0,96.0,109.0,104.0,85.0,112.0,75.0,98.0,90.0,75.0,88.0,76.0,71.0,76.0,78.0,64.0,67.0,75.0,58.0,74.0,68.0,47.0,48.0,42.0,47.0,40.0,38.0,28.0,35.0,28.0,24.0,18.0,17.0,12.0,7.0,11.0,3.0,10.0 M82028,36.0,57.0,49.0,57.0,61.0,60.0,48.0,81.0,79.0,69.0,65.0,90.0,90.0,108.0,95.0,126.0,121.0,104.0,103.0,81.0,68.0,77.0,72.0,76.0,70.0,63.0,71.0,63.0,60.0,66.0,71.0,73.0,87.0,80.0,83.0,88.0,62.0,69.0,81.0,90.0,92.0,61.0,81.0,79.0,82.0,73.0,100.0,87.0,77.0,78.0,91.0,112.0,126.0,125.0,103.0,104.0,131.0,148.0,115.0,121.0,117.0,115.0,134.0,121.0,110.0,115.0,87.0,94.0,83.0,74.0,85.0,84.0,89.0,76.0,74.0,99.0,87.0,92.0,104.0,81.0,103.0,63.0,52.0,59.0,41.0,35.0,41.0,35.0,27.0,15.0,23.0,11.0,13.0,13.0,9.0,16.0 M82030,32.0,33.0,40.0,47.0,47.0,52.0,44.0,48.0,54.0,57.0,53.0,58.0,46.0,57.0,50.0,73.0,57.0,69.0,58.0,36.0,40.0,45.0,53.0,52.0,39.0,46.0,51.0,47.0,53.0,53.0,61.0,59.0,57.0,54.0,59.0,60.0,61.0,63.0,52.0,62.0,57.0,55.0,50.0,52.0,51.0,41.0,62.0,58.0,45.0,57.0,53.0,59.0,56.0,68.0,71.0,72.0,75.0,76.0,93.0,83.0,98.0,91.0,80.0,98.0,82.0,92.0,76.0,80.0,73.0,63.0,72.0,74.0,68.0,50.0,74.0,54.0,69.0,74.0,58.0,60.0,51.0,52.0,40.0,38.0,30.0,31.0,26.0,23.0,20.0,17.0,19.0,14.0,5.0,2.0,4.0,6.0 M82032,66.0,80.0,99.0,84.0,89.0,113.0,86.0,91.0,113.0,108.0,110.0,131.0,109.0,116.0,109.0,128.0,104.0,128.0,106.0,98.0,89.0,95.0,100.0,84.0,108.0,99.0,84.0,97.0,121.0,130.0,133.0,125.0,119.0,131.0,135.0,145.0,137.0,155.0,144.0,150.0,139.0,131.0,123.0,128.0,125.0,136.0,102.0,96.0,95.0,85.0,111.0,103.0,122.0,107.0,117.0,99.0,102.0,86.0,109.0,126.0,108.0,117.0,89.0,107.0,111.0,105.0,91.0,77.0,74.0,78.0,71.0,78.0,73.0,72.0,71.0,64.0,59.0,56.0,43.0,42.0,54.0,26.0,29.0,26.0,24.0,25.0,23.0,16.0,22.0,14.0,8.0,10.0,4.0,8.0,3.0,10.0 M82033,17.0,21.0,18.0,12.0,33.0,18.0,24.0,21.0,20.0,16.0,26.0,27.0,28.0,35.0,27.0,17.0,29.0,27.0,28.0,23.0,28.0,32.0,31.0,19.0,24.0,22.0,26.0,28.0,31.0,13.0,27.0,29.0,27.0,22.0,32.0,29.0,33.0,25.0,23.0,31.0,27.0,32.0,23.0,22.0,27.0,26.0,29.0,27.0,27.0,29.0,18.0,31.0,30.0,46.0,40.0,49.0,38.0,58.0,56.0,44.0,48.0,54.0,60.0,55.0,34.0,65.0,62.0,41.0,38.0,37.0,39.0,39.0,48.0,35.0,37.0,45.0,44.0,40.0,43.0,42.0,32.0,33.0,22.0,19.0,20.0,11.0,17.0,7.0,9.0,12.0,10.0,6.0,2.0,2.0,4.0,7.0 M82034,25.0,17.0,35.0,18.0,28.0,37.0,40.0,30.0,29.0,32.0,32.0,46.0,37.0,34.0,31.0,42.0,29.0,36.0,33.0,38.0,36.0,40.0,35.0,24.0,31.0,36.0,50.0,51.0,57.0,43.0,44.0,46.0,63.0,49.0,59.0,63.0,64.0,50.0,54.0,47.0,38.0,49.0,51.0,41.0,45.0,52.0,45.0,44.0,48.0,45.0,47.0,46.0,59.0,69.0,57.0,61.0,57.0,54.0,67.0,56.0,49.0,65.0,59.0,49.0,78.0,56.0,48.0,45.0,63.0,54.0,47.0,66.0,37.0,36.0,50.0,34.0,48.0,50.0,49.0,42.0,33.0,40.0,27.0,24.0,28.0,16.0,12.0,15.0,11.0,4.0,8.0,6.0,5.0,5.0,3.0,6.0 M82035,37.0,44.0,45.0,45.0,64.0,58.0,37.0,56.0,67.0,50.0,63.0,53.0,61.0,62.0,76.0,59.0,78.0,85.0,79.0,63.0,84.0,58.0,68.0,68.0,62.0,71.0,64.0,72.0,79.0,67.0,76.0,66.0,77.0,66.0,67.0,72.0,64.0,69.0,56.0,55.0,64.0,70.0,84.0,59.0,53.0,73.0,65.0,51.0,58.0,59.0,69.0,65.0,82.0,86.0,122.0,109.0,85.0,86.0,118.0,92.0,114.0,97.0,95.0,112.0,86.0,88.0,95.0,84.0,91.0,80.0,76.0,61.0,77.0,80.0,70.0,77.0,77.0,75.0,56.0,55.0,59.0,62.0,43.0,26.0,30.0,29.0,26.0,20.0,21.0,13.0,21.0,7.0,2.0,6.0,5.0,6.0 M82038,89.0,78.0,102.0,92.0,67.0,90.0,99.0,70.0,94.0,85.0,91.0,79.0,84.0,64.0,79.0,80.0,71.0,90.0,59.0,70.0,74.0,67.0,64.0,65.0,70.0,74.0,64.0,64.0,82.0,85.0,92.0,88.0,86.0,80.0,98.0,99.0,93.0,95.0,99.0,98.0,87.0,87.0,85.0,76.0,72.0,93.0,83.0,100.0,79.0,69.0,80.0,106.0,73.0,100.0,92.0,92.0,97.0,103.0,98.0,94.0,89.0,97.0,81.0,85.0,96.0,56.0,62.0,65.0,53.0,62.0,67.0,62.0,53.0,64.0,49.0,69.0,49.0,64.0,48.0,41.0,47.0,37.0,31.0,25.0,35.0,16.0,25.0,19.0,15.0,16.0,7.0,8.0,11.0,3.0,1.0,9.0 M82039,72.0,54.0,62.0,60.0,73.0,87.0,89.0,87.0,83.0,77.0,92.0,116.0,84.0,92.0,94.0,101.0,91.0,74.0,83.0,115.0,86.0,104.0,102.0,127.0,124.0,136.0,127.0,116.0,140.0,124.0,134.0,142.0,125.0,124.0,135.0,125.0,144.0,130.0,127.0,134.0,118.0,143.0,126.0,114.0,95.0,99.0,109.0,88.0,100.0,104.0,107.0,92.0,113.0,118.0,109.0,101.0,107.0,86.0,112.0,114.0,71.0,99.0,95.0,83.0,83.0,74.0,95.0,65.0,65.0,78.0,67.0,76.0,61.0,55.0,66.0,75.0,63.0,72.0,61.0,45.0,58.0,50.0,35.0,34.0,30.0,24.0,26.0,25.0,12.0,17.0,21.0,15.0,7.0,4.0,2.0,11.0 M82040,19.0,30.0,26.0,34.0,29.0,23.0,34.0,29.0,33.0,38.0,30.0,37.0,41.0,30.0,37.0,40.0,45.0,31.0,39.0,40.0,24.0,36.0,37.0,30.0,44.0,34.0,38.0,36.0,49.0,33.0,48.0,34.0,41.0,38.0,51.0,43.0,28.0,40.0,47.0,46.0,35.0,26.0,48.0,49.0,31.0,46.0,32.0,41.0,29.0,41.0,42.0,45.0,51.0,60.0,58.0,55.0,61.0,51.0,58.0,57.0,34.0,45.0,54.0,51.0,35.0,42.0,30.0,45.0,28.0,32.0,21.0,30.0,36.0,26.0,23.0,25.0,25.0,31.0,24.0,12.0,20.0,17.0,19.0,12.0,10.0,14.0,9.0,9.0,9.0,10.0,5.0,3.0,5.0,2.0,2.0,3.0 M82041,18.0,21.0,12.0,28.0,29.0,31.0,20.0,44.0,51.0,40.0,31.0,39.0,32.0,38.0,40.0,37.0,32.0,37.0,40.0,44.0,22.0,28.0,25.0,34.0,26.0,43.0,41.0,40.0,42.0,27.0,36.0,32.0,35.0,34.0,24.0,30.0,23.0,29.0,29.0,36.0,29.0,34.0,30.0,34.0,36.0,27.0,31.0,16.0,19.0,52.0,43.0,37.0,51.0,47.0,60.0,49.0,51.0,77.0,58.0,75.0,65.0,59.0,74.0,76.0,62.0,54.0,61.0,48.0,61.0,63.0,42.0,59.0,49.0,49.0,34.0,45.0,58.0,56.0,53.0,41.0,42.0,33.0,42.0,25.0,20.0,21.0,15.0,20.0,17.0,11.0,9.0,6.0,2.0,4.0,4.0,3.0 M82042,43.0,43.0,46.0,36.0,47.0,38.0,47.0,47.0,46.0,50.0,45.0,56.0,44.0,76.0,45.0,55.0,55.0,60.0,45.0,42.0,50.0,55.0,31.0,38.0,40.0,43.0,52.0,45.0,40.0,48.0,52.0,45.0,39.0,42.0,53.0,44.0,47.0,50.0,59.0,55.0,57.0,56.0,44.0,48.0,47.0,37.0,34.0,33.0,33.0,38.0,46.0,43.0,35.0,42.0,42.0,43.0,39.0,38.0,38.0,28.0,45.0,38.0,24.0,39.0,25.0,31.0,23.0,30.0,27.0,18.0,15.0,24.0,17.0,22.0,18.0,24.0,31.0,20.0,12.0,16.0,9.0,18.0,11.0,13.0,9.0,6.0,,9.0,1.0,9.0,3.0,2.0,2.0,,,3.0 M82043,14.0,27.0,27.0,30.0,32.0,27.0,36.0,33.0,29.0,37.0,33.0,42.0,40.0,40.0,45.0,33.0,34.0,40.0,44.0,38.0,38.0,45.0,26.0,39.0,26.0,41.0,50.0,52.0,41.0,38.0,42.0,33.0,32.0,42.0,50.0,40.0,43.0,45.0,34.0,39.0,32.0,35.0,35.0,32.0,46.0,42.0,45.0,45.0,32.0,36.0,33.0,28.0,56.0,50.0,53.0,40.0,51.0,39.0,52.0,59.0,72.0,52.0,68.0,69.0,55.0,66.0,52.0,56.0,59.0,59.0,49.0,69.0,49.0,50.0,48.0,53.0,43.0,46.0,55.0,46.0,44.0,46.0,31.0,23.0,32.0,25.0,22.0,26.0,16.0,16.0,13.0,5.0,9.0,7.0,8.0,6.0 M82046,11.0,16.0,21.0,15.0,23.0,18.0,22.0,12.0,28.0,21.0,27.0,23.0,21.0,25.0,17.0,21.0,22.0,26.0,14.0,11.0,17.0,15.0,18.0,21.0,16.0,22.0,14.0,25.0,23.0,19.0,18.0,21.0,21.0,21.0,32.0,15.0,40.0,14.0,20.0,25.0,19.0,14.0,27.0,21.0,23.0,15.0,18.0,18.0,24.0,25.0,22.0,24.0,26.0,28.0,21.0,23.0,30.0,31.0,31.0,32.0,29.0,33.0,30.0,36.0,42.0,17.0,37.0,29.0,30.0,25.0,35.0,35.0,37.0,30.0,18.0,24.0,25.0,31.0,28.0,24.0,16.0,24.0,14.0,11.0,13.0,10.0,6.0,9.0,8.0,7.0,4.0,9.0,3.0,1.0,3.0,4.0 M82047,59.0,55.0,58.0,63.0,63.0,60.0,78.0,58.0,60.0,60.0,57.0,80.0,54.0,56.0,65.0,58.0,63.0,59.0,58.0,49.0,46.0,45.0,42.0,49.0,47.0,64.0,50.0,60.0,54.0,55.0,65.0,75.0,81.0,81.0,82.0,61.0,63.0,68.0,72.0,83.0,63.0,73.0,57.0,63.0,73.0,64.0,76.0,43.0,61.0,58.0,67.0,66.0,66.0,76.0,72.0,65.0,69.0,68.0,65.0,59.0,69.0,81.0,72.0,81.0,71.0,67.0,72.0,66.0,58.0,69.0,60.0,47.0,51.0,47.0,45.0,41.0,50.0,54.0,43.0,43.0,39.0,35.0,29.0,29.0,29.0,32.0,23.0,17.0,18.0,14.0,8.0,4.0,12.0,9.0,10.0,14.0 M82048,27.0,30.0,35.0,34.0,35.0,33.0,36.0,38.0,38.0,45.0,34.0,36.0,44.0,38.0,44.0,46.0,50.0,40.0,39.0,30.0,36.0,37.0,30.0,34.0,25.0,34.0,27.0,46.0,42.0,38.0,40.0,44.0,41.0,45.0,42.0,42.0,50.0,47.0,43.0,45.0,47.0,46.0,48.0,49.0,43.0,34.0,45.0,34.0,44.0,37.0,28.0,45.0,37.0,40.0,51.0,42.0,34.0,43.0,33.0,47.0,39.0,54.0,55.0,46.0,48.0,39.0,47.0,42.0,26.0,37.0,42.0,36.0,37.0,30.0,30.0,34.0,32.0,36.0,27.0,20.0,36.0,28.0,18.0,22.0,11.0,14.0,12.0,6.0,13.0,10.0,7.0,6.0,2.0,3.0,2.0,2.0 M82051,15.0,11.0,20.0,20.0,17.0,29.0,26.0,28.0,24.0,35.0,26.0,16.0,25.0,29.0,42.0,25.0,22.0,25.0,31.0,18.0,19.0,16.0,12.0,14.0,14.0,13.0,18.0,19.0,13.0,19.0,21.0,20.0,22.0,27.0,22.0,23.0,29.0,19.0,19.0,22.0,18.0,32.0,33.0,22.0,26.0,21.0,17.0,23.0,19.0,30.0,26.0,31.0,25.0,37.0,35.0,38.0,45.0,38.0,38.0,37.0,41.0,40.0,47.0,37.0,46.0,34.0,41.0,30.0,33.0,32.0,28.0,36.0,38.0,32.0,33.0,41.0,31.0,30.0,36.0,26.0,14.0,22.0,16.0,18.0,11.0,13.0,5.0,8.0,10.0,3.0,3.0,5.0,2.0,4.0,1.0,1.0 M82056,45.0,63.0,58.0,47.0,74.0,64.0,60.0,74.0,77.0,81.0,84.0,81.0,81.0,102.0,92.0,79.0,84.0,98.0,106.0,167.0,174.0,147.0,134.0,129.0,120.0,102.0,92.0,101.0,115.0,106.0,92.0,108.0,68.0,98.0,96.0,92.0,84.0,91.0,92.0,81.0,105.0,85.0,79.0,80.0,87.0,90.0,84.0,107.0,71.0,71.0,95.0,95.0,87.0,97.0,104.0,106.0,119.0,105.0,109.0,113.0,101.0,107.0,106.0,89.0,85.0,71.0,85.0,86.0,78.0,76.0,77.0,78.0,65.0,85.0,67.0,85.0,72.0,56.0,79.0,62.0,55.0,48.0,46.0,42.0,27.0,24.0,26.0,18.0,18.0,11.0,10.0,10.0,2.0,4.0,1.0,4.0 M82057,32.0,32.0,41.0,46.0,34.0,33.0,42.0,43.0,35.0,68.0,43.0,49.0,61.0,56.0,49.0,56.0,57.0,41.0,37.0,50.0,40.0,35.0,46.0,25.0,39.0,49.0,51.0,43.0,36.0,50.0,55.0,66.0,68.0,89.0,81.0,74.0,74.0,77.0,62.0,71.0,76.0,71.0,78.0,70.0,83.0,91.0,61.0,71.0,54.0,66.0,58.0,56.0,59.0,60.0,65.0,54.0,46.0,49.0,40.0,57.0,42.0,36.0,35.0,34.0,38.0,41.0,35.0,35.0,46.0,34.0,34.0,30.0,20.0,43.0,20.0,27.0,26.0,16.0,22.0,12.0,7.0,10.0,11.0,7.0,6.0,10.0,6.0,7.0,3.0,2.0,6.0,1.0,1.0,,,2.0 M82058,20.0,10.0,17.0,15.0,17.0,16.0,14.0,12.0,10.0,13.0,13.0,18.0,14.0,15.0,19.0,23.0,17.0,21.0,18.0,23.0,16.0,23.0,23.0,30.0,22.0,33.0,18.0,17.0,23.0,20.0,16.0,16.0,18.0,16.0,21.0,25.0,19.0,24.0,20.0,19.0,18.0,29.0,14.0,16.0,25.0,22.0,20.0,14.0,21.0,28.0,18.0,24.0,32.0,39.0,25.0,38.0,31.0,32.0,36.0,37.0,28.0,40.0,34.0,40.0,38.0,46.0,30.0,23.0,28.0,30.0,34.0,32.0,24.0,20.0,27.0,26.0,24.0,32.0,28.0,20.0,19.0,28.0,14.0,8.0,12.0,12.0,11.0,6.0,4.0,4.0,7.0,3.0,2.0,2.0,2.0,7.0 M82059,66.0,85.0,83.0,89.0,73.0,91.0,83.0,80.0,85.0,92.0,83.0,87.0,92.0,85.0,88.0,98.0,112.0,96.0,87.0,76.0,75.0,81.0,69.0,86.0,92.0,97.0,90.0,95.0,87.0,103.0,113.0,119.0,87.0,103.0,107.0,124.0,85.0,102.0,94.0,115.0,79.0,83.0,73.0,100.0,69.0,76.0,103.0,71.0,76.0,83.0,104.0,95.0,110.0,112.0,131.0,110.0,128.0,136.0,161.0,129.0,129.0,148.0,129.0,114.0,113.0,107.0,115.0,96.0,73.0,94.0,72.0,83.0,77.0,83.0,64.0,81.0,75.0,85.0,54.0,53.0,60.0,59.0,52.0,32.0,36.0,30.0,31.0,16.0,19.0,13.0,11.0,9.0,8.0,5.0,8.0,6.0 M82060,41.0,48.0,33.0,40.0,43.0,44.0,46.0,43.0,42.0,49.0,41.0,39.0,53.0,49.0,49.0,52.0,51.0,39.0,54.0,49.0,47.0,37.0,40.0,45.0,40.0,55.0,34.0,47.0,37.0,41.0,57.0,65.0,61.0,50.0,62.0,53.0,59.0,53.0,69.0,63.0,52.0,48.0,51.0,62.0,67.0,57.0,36.0,49.0,51.0,55.0,44.0,52.0,49.0,59.0,63.0,62.0,66.0,75.0,67.0,71.0,62.0,63.0,54.0,67.0,59.0,52.0,51.0,52.0,52.0,45.0,47.0,30.0,44.0,39.0,33.0,35.0,53.0,43.0,36.0,33.0,35.0,36.0,33.0,26.0,17.0,16.0,26.0,15.0,14.0,10.0,5.0,6.0,8.0,6.0,6.0,5.0 M82601,6.0,11.0,5.0,14.0,6.0,6.0,4.0,16.0,10.0,9.0,13.0,9.0,11.0,18.0,7.0,16.0,7.0,15.0,10.0,11.0,15.0,13.0,10.0,10.0,11.0,10.0,9.0,8.0,8.0,3.0,9.0,8.0,10.0,8.0,11.0,6.0,12.0,12.0,6.0,6.0,8.0,9.0,6.0,11.0,12.0,8.0,9.0,9.0,6.0,14.0,16.0,19.0,18.0,21.0,16.0,20.0,16.0,18.0,21.0,25.0,18.0,30.0,23.0,15.0,22.0,13.0,17.0,15.0,14.0,16.0,18.0,17.0,12.0,18.0,16.0,18.0,23.0,25.0,15.0,22.0,22.0,15.0,12.0,13.0,10.0,14.0,6.0,8.0,2.0,3.0,3.0,6.0,1.0,1.0,2.0,3.0 M82606,30.0,20.0,30.0,18.0,22.0,39.0,26.0,33.0,25.0,27.0,22.0,33.0,35.0,27.0,34.0,27.0,36.0,35.0,35.0,28.0,16.0,27.0,22.0,28.0,23.0,25.0,16.0,40.0,29.0,34.0,42.0,28.0,27.0,38.0,40.0,31.0,32.0,42.0,39.0,30.0,34.0,43.0,40.0,30.0,29.0,40.0,27.0,31.0,25.0,35.0,30.0,34.0,44.0,44.0,67.0,55.0,53.0,53.0,53.0,49.0,58.0,63.0,50.0,41.0,44.0,40.0,38.0,40.0,28.0,24.0,37.0,26.0,26.0,27.0,28.0,28.0,26.0,19.0,24.0,13.0,11.0,17.0,10.0,4.0,7.0,6.0,4.0,6.0,2.0,2.0,3.0,1.0,1.0,,,1.0 M82616,33.0,50.0,41.0,46.0,39.0,50.0,38.0,47.0,48.0,48.0,44.0,44.0,47.0,51.0,52.0,52.0,51.0,56.0,55.0,41.0,50.0,40.0,47.0,42.0,31.0,54.0,40.0,55.0,48.0,56.0,53.0,66.0,51.0,52.0,72.0,56.0,44.0,51.0,55.0,56.0,45.0,60.0,48.0,47.0,41.0,41.0,50.0,43.0,39.0,41.0,58.0,53.0,56.0,58.0,64.0,57.0,52.0,56.0,63.0,64.0,56.0,61.0,50.0,51.0,45.0,36.0,42.0,38.0,35.0,36.0,47.0,46.0,29.0,26.0,35.0,33.0,29.0,34.0,23.0,26.0,18.0,18.0,16.0,16.0,8.0,13.0,6.0,8.0,7.0,4.0,3.0,4.0,1.0,,2.0,2.0 M82620,5.0,10.0,6.0,7.0,10.0,6.0,5.0,9.0,4.0,15.0,12.0,11.0,18.0,10.0,13.0,8.0,14.0,9.0,9.0,11.0,12.0,15.0,11.0,9.0,15.0,7.0,11.0,11.0,9.0,10.0,13.0,15.0,10.0,8.0,15.0,11.0,8.0,14.0,9.0,12.0,12.0,12.0,12.0,12.0,13.0,11.0,13.0,9.0,6.0,10.0,19.0,15.0,12.0,17.0,21.0,32.0,25.0,24.0,29.0,31.0,23.0,24.0,32.0,35.0,28.0,31.0,37.0,27.0,27.0,23.0,35.0,29.0,26.0,36.0,29.0,30.0,26.0,26.0,39.0,13.0,25.0,17.0,23.0,15.0,11.0,11.0,8.0,6.0,7.0,5.0,4.0,4.0,3.0,5.0,1.0,2.0 Y01929,254.0,306.0,319.0,390.0,346.0,356.0,366.0,400.0,391.0,382.0,401.0,410.0,411.0,395.0,347.0,391.0,397.0,347.0,354.0,288.0,298.0,308.0,285.0,270.0,293.0,323.0,334.0,335.0,328.0,381.0,400.0,408.0,427.0,448.0,428.0,429.0,457.0,434.0,434.0,452.0,443.0,432.0,414.0,449.0,431.0,399.0,381.0,339.0,364.0,346.0,356.0,329.0,316.0,326.0,365.0,337.0,306.0,320.0,318.0,333.0,285.0,285.0,280.0,292.0,260.0,212.0,231.0,188.0,195.0,177.0,184.0,168.0,187.0,186.0,145.0,154.0,140.0,134.0,110.0,78.0,85.0,95.0,77.0,69.0,48.0,53.0,56.0,47.0,31.0,22.0,19.0,17.0,6.0,7.0,10.0,14.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 P82001,33.0,37.0,47.0,42.0,41.0,56.0,70.0,65.0,67.0,76.0,71.0,67.0,82.0,79.0,87.0,72.0,67.0,74.0,69.0,50.0,54.0,69.0,53.0,40.0,69.0,50.0,45.0,55.0,57.0,51.0,61.0,55.0,50.0,51.0,75.0,74.0,64.0,61.0,72.0,81.0,59.0,79.0,94.0,54.0,62.0,48.0,63.0,61.0,53.0,51.0,56.0,45.0,63.0,83.0,84.0,64.0,70.0,64.0,57.0,71.0,67.0,75.0,81.0,66.0,59.0,53.0,44.0,54.0,43.0,42.0,49.0,40.0,50.0,50.0,41.0,53.0,42.0,56.0,40.0,40.0,42.0,27.0,18.0,19.0,24.0,20.0,23.0,12.0,12.0,8.0,3.0,3.0,2.0,4.0,1.0,1.0 P82002,30.0,27.0,26.0,41.0,35.0,41.0,35.0,41.0,46.0,43.0,39.0,50.0,64.0,60.0,46.0,58.0,64.0,51.0,54.0,52.0,49.0,55.0,66.0,48.0,53.0,46.0,55.0,44.0,41.0,34.0,39.0,45.0,42.0,36.0,59.0,47.0,38.0,47.0,43.0,46.0,64.0,63.0,57.0,60.0,66.0,73.0,54.0,51.0,46.0,46.0,50.0,64.0,48.0,59.0,51.0,51.0,41.0,55.0,47.0,51.0,46.0,40.0,52.0,46.0,48.0,33.0,47.0,34.0,32.0,36.0,38.0,39.0,39.0,31.0,27.0,32.0,28.0,21.0,23.0,18.0,17.0,16.0,13.0,21.0,13.0,16.0,15.0,5.0,6.0,7.0,12.0,6.0,2.0,7.0,4.0,2.0 P82003,53.0,57.0,60.0,73.0,68.0,76.0,74.0,72.0,80.0,74.0,96.0,88.0,105.0,118.0,102.0,92.0,102.0,79.0,83.0,90.0,77.0,97.0,72.0,78.0,100.0,92.0,78.0,88.0,92.0,88.0,91.0,92.0,109.0,106.0,121.0,127.0,116.0,119.0,121.0,119.0,111.0,116.0,106.0,123.0,105.0,128.0,107.0,96.0,92.0,97.0,94.0,111.0,111.0,96.0,117.0,95.0,120.0,102.0,99.0,98.0,111.0,88.0,94.0,101.0,113.0,88.0,75.0,83.0,68.0,61.0,65.0,62.0,74.0,78.0,61.0,61.0,68.0,79.0,57.0,70.0,44.0,43.0,39.0,28.0,22.0,31.0,28.0,10.0,10.0,13.0,10.0,10.0,5.0,6.0,3.0,6.0 P82004,60.0,54.0,64.0,74.0,57.0,74.0,75.0,75.0,77.0,68.0,74.0,85.0,88.0,79.0,89.0,68.0,75.0,95.0,80.0,78.0,76.0,75.0,70.0,79.0,86.0,95.0,62.0,83.0,87.0,70.0,70.0,88.0,57.0,75.0,78.0,73.0,74.0,65.0,86.0,74.0,64.0,76.0,64.0,67.0,75.0,72.0,82.0,49.0,62.0,54.0,68.0,54.0,59.0,60.0,47.0,62.0,58.0,42.0,49.0,43.0,49.0,30.0,32.0,45.0,43.0,32.0,37.0,47.0,30.0,27.0,31.0,24.0,25.0,34.0,30.0,22.0,20.0,21.0,17.0,23.0,18.0,8.0,10.0,13.0,12.0,12.0,8.0,9.0,7.0,4.0,5.0,3.0,,1.0,1.0,4.0 P82005,32.0,42.0,32.0,30.0,34.0,36.0,32.0,41.0,52.0,37.0,44.0,41.0,45.0,34.0,47.0,34.0,37.0,32.0,41.0,41.0,29.0,31.0,33.0,35.0,38.0,34.0,36.0,34.0,46.0,39.0,40.0,48.0,50.0,61.0,52.0,50.0,60.0,46.0,53.0,45.0,55.0,41.0,40.0,38.0,42.0,49.0,30.0,41.0,39.0,35.0,49.0,40.0,47.0,56.0,42.0,40.0,41.0,53.0,42.0,55.0,53.0,46.0,51.0,53.0,51.0,57.0,41.0,46.0,41.0,47.0,41.0,34.0,34.0,39.0,33.0,38.0,36.0,33.0,37.0,23.0,25.0,31.0,28.0,17.0,14.0,13.0,12.0,11.0,13.0,5.0,3.0,2.0,5.0,3.0,1.0, P82006,51.0,47.0,56.0,51.0,57.0,52.0,46.0,35.0,61.0,65.0,58.0,64.0,67.0,56.0,51.0,65.0,59.0,53.0,57.0,52.0,51.0,47.0,50.0,45.0,56.0,61.0,73.0,67.0,58.0,64.0,51.0,90.0,81.0,84.0,76.0,64.0,75.0,74.0,70.0,64.0,75.0,80.0,65.0,71.0,59.0,43.0,49.0,51.0,61.0,65.0,53.0,67.0,64.0,62.0,79.0,65.0,82.0,80.0,82.0,90.0,66.0,74.0,58.0,60.0,63.0,54.0,61.0,58.0,44.0,47.0,38.0,51.0,40.0,45.0,37.0,35.0,36.0,50.0,38.0,25.0,32.0,25.0,29.0,20.0,22.0,16.0,17.0,13.0,9.0,6.0,5.0,3.0,9.0,3.0,1.0,2.0 P82007,58.0,62.0,76.0,66.0,99.0,83.0,73.0,77.0,88.0,91.0,103.0,93.0,97.0,70.0,92.0,78.0,99.0,71.0,84.0,85.0,60.0,76.0,78.0,66.0,81.0,76.0,62.0,71.0,90.0,80.0,80.0,91.0,94.0,94.0,99.0,77.0,109.0,96.0,76.0,108.0,86.0,88.0,85.0,78.0,73.0,87.0,74.0,66.0,83.0,82.0,65.0,76.0,98.0,95.0,92.0,97.0,108.0,103.0,90.0,94.0,98.0,100.0,96.0,73.0,83.0,73.0,72.0,70.0,55.0,60.0,53.0,53.0,53.0,57.0,50.0,64.0,58.0,58.0,62.0,32.0,52.0,38.0,34.0,21.0,23.0,20.0,21.0,12.0,10.0,11.0,7.0,9.0,7.0,1.0,1.0, P82008,84.0,74.0,93.0,92.0,87.0,91.0,94.0,106.0,85.0,115.0,119.0,114.0,123.0,118.0,121.0,117.0,128.0,129.0,122.0,110.0,108.0,101.0,80.0,97.0,92.0,88.0,97.0,104.0,92.0,102.0,90.0,98.0,112.0,98.0,119.0,126.0,116.0,94.0,108.0,113.0,103.0,90.0,110.0,96.0,102.0,80.0,75.0,74.0,87.0,111.0,99.0,81.0,100.0,89.0,110.0,103.0,90.0,91.0,73.0,94.0,80.0,71.0,73.0,81.0,71.0,52.0,77.0,58.0,43.0,54.0,50.0,48.0,53.0,47.0,51.0,41.0,46.0,63.0,50.0,26.0,26.0,32.0,21.0,21.0,18.0,19.0,17.0,11.0,10.0,5.0,7.0,5.0,6.0,3.0,3.0,4.0 P82009,43.0,59.0,40.0,61.0,56.0,53.0,54.0,51.0,55.0,46.0,62.0,70.0,57.0,65.0,57.0,45.0,60.0,56.0,34.0,39.0,48.0,33.0,39.0,45.0,52.0,46.0,43.0,49.0,55.0,52.0,50.0,43.0,56.0,41.0,54.0,46.0,42.0,50.0,53.0,57.0,54.0,45.0,50.0,48.0,50.0,64.0,49.0,37.0,38.0,46.0,41.0,51.0,49.0,38.0,49.0,37.0,43.0,42.0,65.0,34.0,37.0,41.0,46.0,42.0,48.0,21.0,36.0,34.0,29.0,30.0,43.0,27.0,37.0,34.0,21.0,29.0,38.0,36.0,31.0,15.0,28.0,22.0,23.0,13.0,11.0,12.0,15.0,8.0,8.0,6.0,8.0,2.0,4.0,2.0,3.0,4.0 P82010,58.0,38.0,60.0,50.0,56.0,65.0,70.0,64.0,62.0,62.0,68.0,82.0,58.0,61.0,63.0,56.0,56.0,49.0,63.0,56.0,46.0,45.0,60.0,46.0,45.0,48.0,59.0,48.0,43.0,52.0,64.0,72.0,61.0,62.0,64.0,69.0,61.0,64.0,56.0,81.0,48.0,68.0,70.0,55.0,52.0,53.0,56.0,41.0,49.0,43.0,54.0,51.0,46.0,63.0,42.0,61.0,45.0,31.0,61.0,39.0,35.0,42.0,48.0,39.0,41.0,41.0,29.0,36.0,46.0,26.0,17.0,30.0,30.0,25.0,26.0,28.0,18.0,38.0,34.0,15.0,15.0,23.0,11.0,21.0,13.0,11.0,7.0,6.0,4.0,6.0,6.0,6.0,1.0,2.0,1.0,4.0 P82011,32.0,46.0,40.0,45.0,46.0,42.0,41.0,40.0,38.0,40.0,35.0,37.0,50.0,35.0,36.0,46.0,53.0,39.0,47.0,40.0,29.0,26.0,30.0,35.0,34.0,36.0,35.0,38.0,34.0,50.0,48.0,54.0,52.0,41.0,59.0,46.0,57.0,48.0,57.0,47.0,65.0,49.0,34.0,45.0,52.0,50.0,39.0,27.0,38.0,42.0,40.0,32.0,41.0,41.0,37.0,44.0,52.0,58.0,59.0,45.0,49.0,42.0,36.0,43.0,35.0,47.0,35.0,39.0,44.0,34.0,35.0,36.0,43.0,35.0,36.0,40.0,37.0,28.0,29.0,20.0,21.0,19.0,21.0,20.0,9.0,18.0,11.0,9.0,9.0,5.0,5.0,7.0,7.0,1.0,,2.0 P82012,29.0,29.0,25.0,38.0,22.0,25.0,32.0,25.0,28.0,20.0,28.0,27.0,28.0,33.0,28.0,22.0,25.0,28.0,31.0,30.0,30.0,39.0,32.0,49.0,47.0,50.0,57.0,72.0,60.0,55.0,58.0,62.0,59.0,59.0,73.0,82.0,66.0,71.0,51.0,49.0,53.0,49.0,51.0,47.0,45.0,58.0,52.0,40.0,36.0,52.0,42.0,47.0,49.0,59.0,44.0,54.0,61.0,39.0,30.0,56.0,46.0,40.0,42.0,31.0,22.0,28.0,22.0,28.0,25.0,23.0,32.0,24.0,30.0,31.0,20.0,26.0,19.0,22.0,20.0,15.0,19.0,16.0,18.0,12.0,14.0,6.0,8.0,5.0,3.0,4.0,1.0,2.0,1.0,2.0,,1.0 P82013,32.0,22.0,36.0,26.0,29.0,22.0,21.0,30.0,30.0,24.0,24.0,33.0,24.0,30.0,27.0,26.0,32.0,33.0,29.0,24.0,19.0,19.0,31.0,21.0,30.0,28.0,29.0,32.0,34.0,30.0,27.0,24.0,33.0,35.0,29.0,31.0,36.0,26.0,26.0,33.0,35.0,36.0,34.0,26.0,24.0,26.0,24.0,19.0,29.0,27.0,30.0,19.0,24.0,21.0,21.0,32.0,35.0,17.0,30.0,35.0,35.0,15.0,14.0,25.0,17.0,15.0,10.0,18.0,11.0,17.0,15.0,17.0,15.0,5.0,13.0,14.0,11.0,5.0,12.0,4.0,3.0,7.0,5.0,9.0,6.0,4.0,5.0,1.0,,3.0,,,1.0,,1.0,3.0 P82014,22.0,23.0,26.0,19.0,31.0,30.0,25.0,40.0,35.0,38.0,47.0,34.0,37.0,43.0,41.0,38.0,48.0,37.0,38.0,35.0,32.0,35.0,34.0,29.0,32.0,32.0,29.0,36.0,33.0,35.0,34.0,48.0,29.0,29.0,38.0,39.0,36.0,56.0,44.0,53.0,27.0,44.0,41.0,50.0,38.0,42.0,43.0,25.0,45.0,41.0,39.0,42.0,51.0,36.0,54.0,41.0,65.0,48.0,51.0,62.0,48.0,54.0,47.0,41.0,44.0,53.0,41.0,36.0,31.0,38.0,39.0,38.0,42.0,32.0,34.0,24.0,30.0,35.0,45.0,25.0,41.0,39.0,30.0,14.0,24.0,16.0,6.0,14.0,9.0,12.0,6.0,6.0,4.0,6.0,3.0,4.0 P82015,85.0,96.0,92.0,102.0,97.0,106.0,100.0,115.0,115.0,102.0,110.0,121.0,130.0,130.0,115.0,128.0,112.0,138.0,124.0,113.0,97.0,97.0,82.0,86.0,103.0,101.0,104.0,116.0,127.0,122.0,88.0,117.0,113.0,129.0,131.0,114.0,137.0,141.0,121.0,148.0,139.0,126.0,113.0,109.0,118.0,140.0,113.0,108.0,114.0,122.0,133.0,131.0,118.0,154.0,182.0,151.0,144.0,137.0,178.0,149.0,151.0,156.0,143.0,143.0,131.0,142.0,114.0,125.0,119.0,117.0,96.0,104.0,125.0,103.0,104.0,82.0,110.0,120.0,105.0,80.0,69.0,72.0,72.0,44.0,31.0,39.0,25.0,29.0,23.0,21.0,14.0,14.0,6.0,6.0,6.0,9.0 P82016,55.0,69.0,47.0,70.0,57.0,61.0,59.0,43.0,71.0,57.0,63.0,79.0,68.0,75.0,75.0,63.0,77.0,78.0,83.0,72.0,64.0,56.0,59.0,58.0,61.0,65.0,53.0,69.0,62.0,71.0,85.0,70.0,71.0,69.0,78.0,68.0,92.0,91.0,74.0,94.0,64.0,90.0,73.0,64.0,90.0,84.0,72.0,64.0,66.0,64.0,77.0,80.0,77.0,99.0,81.0,84.0,83.0,94.0,99.0,91.0,76.0,72.0,84.0,75.0,64.0,73.0,66.0,80.0,61.0,70.0,58.0,67.0,49.0,58.0,58.0,69.0,56.0,67.0,60.0,43.0,53.0,43.0,41.0,41.0,35.0,32.0,15.0,31.0,24.0,17.0,16.0,11.0,9.0,2.0,4.0,7.0 P82018,32.0,37.0,46.0,51.0,44.0,35.0,47.0,62.0,57.0,56.0,66.0,45.0,65.0,67.0,65.0,66.0,55.0,61.0,52.0,63.0,53.0,48.0,48.0,45.0,28.0,36.0,38.0,46.0,45.0,44.0,44.0,49.0,53.0,53.0,54.0,51.0,52.0,38.0,50.0,56.0,58.0,42.0,55.0,48.0,55.0,62.0,49.0,42.0,29.0,33.0,43.0,54.0,52.0,46.0,51.0,43.0,50.0,43.0,49.0,45.0,46.0,39.0,42.0,35.0,28.0,24.0,30.0,37.0,31.0,24.0,23.0,34.0,20.0,26.0,18.0,22.0,27.0,20.0,30.0,13.0,13.0,12.0,16.0,8.0,11.0,7.0,2.0,6.0,4.0,4.0,2.0,1.0,,,,2.0 P82020,22.0,26.0,36.0,32.0,32.0,39.0,26.0,30.0,45.0,30.0,29.0,48.0,40.0,30.0,34.0,42.0,37.0,33.0,33.0,38.0,22.0,33.0,27.0,34.0,25.0,28.0,48.0,38.0,41.0,27.0,40.0,34.0,36.0,37.0,41.0,30.0,36.0,21.0,26.0,29.0,30.0,43.0,39.0,36.0,32.0,41.0,20.0,42.0,37.0,37.0,29.0,27.0,33.0,34.0,26.0,33.0,37.0,28.0,37.0,25.0,35.0,20.0,12.0,25.0,16.0,17.0,18.0,22.0,18.0,25.0,19.0,21.0,17.0,23.0,22.0,14.0,21.0,22.0,25.0,9.0,9.0,14.0,11.0,5.0,3.0,3.0,3.0,6.0,3.0,3.0,3.0,1.0,1.0,1.0,1.0,2.0 P82021,31.0,33.0,35.0,38.0,30.0,49.0,38.0,54.0,57.0,46.0,70.0,52.0,54.0,52.0,54.0,50.0,56.0,41.0,49.0,44.0,43.0,37.0,34.0,45.0,39.0,40.0,41.0,33.0,59.0,43.0,35.0,36.0,42.0,39.0,39.0,33.0,49.0,41.0,50.0,47.0,45.0,39.0,43.0,35.0,34.0,44.0,41.0,43.0,45.0,38.0,38.0,31.0,44.0,44.0,42.0,43.0,47.0,53.0,48.0,50.0,38.0,53.0,42.0,33.0,32.0,29.0,30.0,36.0,31.0,25.0,33.0,31.0,27.0,29.0,21.0,29.0,25.0,38.0,28.0,18.0,15.0,18.0,22.0,12.0,16.0,9.0,9.0,12.0,14.0,9.0,7.0,7.0,6.0,1.0,2.0,3.0 P82022,44.0,32.0,43.0,34.0,25.0,41.0,46.0,41.0,45.0,41.0,45.0,36.0,36.0,38.0,44.0,42.0,41.0,46.0,40.0,39.0,43.0,53.0,45.0,31.0,39.0,49.0,45.0,48.0,38.0,41.0,26.0,43.0,39.0,34.0,34.0,29.0,30.0,39.0,50.0,37.0,41.0,35.0,39.0,44.0,42.0,35.0,31.0,31.0,44.0,36.0,29.0,44.0,32.0,34.0,32.0,30.0,35.0,35.0,39.0,22.0,22.0,34.0,20.0,26.0,22.0,14.0,25.0,18.0,25.0,15.0,15.0,19.0,15.0,9.0,13.0,14.0,15.0,10.0,27.0,8.0,10.0,13.0,6.0,3.0,5.0,8.0,7.0,2.0,6.0,3.0,2.0,,,2.0,1.0,1.0 P82023,32.0,40.0,43.0,31.0,42.0,44.0,38.0,47.0,38.0,39.0,34.0,51.0,50.0,51.0,38.0,59.0,55.0,61.0,55.0,49.0,50.0,51.0,45.0,48.0,49.0,49.0,49.0,44.0,43.0,51.0,51.0,50.0,49.0,45.0,53.0,49.0,45.0,47.0,53.0,57.0,51.0,49.0,44.0,39.0,44.0,52.0,53.0,43.0,34.0,63.0,47.0,38.0,46.0,72.0,60.0,81.0,68.0,69.0,81.0,63.0,73.0,68.0,83.0,68.0,64.0,57.0,46.0,61.0,58.0,52.0,36.0,42.0,41.0,42.0,53.0,52.0,46.0,57.0,46.0,27.0,37.0,39.0,40.0,18.0,23.0,16.0,24.0,19.0,11.0,8.0,8.0,4.0,4.0,4.0,1.0,5.0 P82025,15.0,20.0,19.0,16.0,37.0,29.0,27.0,31.0,43.0,22.0,28.0,32.0,24.0,38.0,33.0,39.0,27.0,39.0,32.0,36.0,27.0,29.0,27.0,34.0,21.0,39.0,28.0,27.0,18.0,24.0,32.0,36.0,31.0,27.0,22.0,23.0,29.0,33.0,33.0,35.0,23.0,28.0,35.0,39.0,30.0,37.0,29.0,30.0,25.0,22.0,36.0,37.0,37.0,33.0,38.0,32.0,32.0,23.0,28.0,29.0,23.0,23.0,31.0,26.0,32.0,29.0,21.0,22.0,17.0,17.0,18.0,16.0,12.0,20.0,17.0,16.0,18.0,14.0,23.0,14.0,14.0,16.0,12.0,6.0,6.0,10.0,6.0,8.0,6.0,,6.0,3.0,,,2.0,1.0 P82029,15.0,19.0,18.0,18.0,17.0,17.0,18.0,17.0,22.0,27.0,22.0,30.0,22.0,25.0,27.0,24.0,31.0,21.0,41.0,31.0,28.0,20.0,32.0,23.0,33.0,32.0,27.0,34.0,21.0,29.0,23.0,29.0,30.0,24.0,29.0,28.0,28.0,30.0,15.0,26.0,19.0,21.0,28.0,32.0,19.0,23.0,22.0,29.0,19.0,24.0,25.0,28.0,29.0,26.0,25.0,30.0,18.0,25.0,34.0,24.0,22.0,17.0,19.0,18.0,23.0,15.0,22.0,11.0,14.0,19.0,16.0,13.0,18.0,18.0,10.0,12.0,8.0,11.0,12.0,12.0,10.0,8.0,6.0,8.0,7.0,4.0,6.0,7.0,3.0,,4.0,,,2.0,,2.0 P82030,22.0,26.0,22.0,25.0,29.0,27.0,26.0,21.0,29.0,30.0,33.0,36.0,25.0,37.0,33.0,39.0,24.0,32.0,29.0,32.0,25.0,33.0,24.0,30.0,29.0,44.0,30.0,28.0,36.0,47.0,36.0,29.0,40.0,36.0,40.0,45.0,46.0,34.0,53.0,36.0,30.0,45.0,45.0,44.0,36.0,41.0,43.0,44.0,29.0,31.0,31.0,27.0,28.0,19.0,29.0,30.0,19.0,23.0,16.0,20.0,20.0,18.0,24.0,17.0,8.0,17.0,22.0,24.0,14.0,8.0,21.0,12.0,6.0,8.0,7.0,12.0,8.0,7.0,4.0,1.0,6.0,2.0,2.0,3.0,6.0,1.0,7.0,5.0,3.0,1.0,2.0,3.0,2.0,,, P82031,40.0,49.0,50.0,69.0,67.0,80.0,72.0,63.0,70.0,59.0,74.0,77.0,53.0,73.0,68.0,84.0,74.0,73.0,63.0,79.0,70.0,68.0,43.0,63.0,58.0,68.0,51.0,70.0,55.0,59.0,48.0,59.0,59.0,52.0,61.0,61.0,62.0,64.0,63.0,65.0,62.0,69.0,67.0,68.0,81.0,65.0,69.0,80.0,63.0,61.0,71.0,67.0,76.0,80.0,63.0,89.0,75.0,74.0,74.0,79.0,82.0,75.0,54.0,78.0,75.0,62.0,61.0,68.0,49.0,48.0,47.0,42.0,45.0,44.0,42.0,36.0,37.0,37.0,37.0,35.0,35.0,31.0,26.0,20.0,20.0,23.0,16.0,19.0,12.0,5.0,14.0,6.0,5.0,5.0,4.0,4.0 P82033,15.0,11.0,10.0,18.0,17.0,3.0,13.0,8.0,14.0,8.0,6.0,8.0,6.0,11.0,12.0,10.0,17.0,14.0,10.0,14.0,11.0,15.0,12.0,17.0,25.0,16.0,19.0,18.0,31.0,26.0,27.0,23.0,22.0,27.0,27.0,23.0,27.0,25.0,20.0,26.0,28.0,23.0,24.0,14.0,21.0,16.0,15.0,10.0,17.0,20.0,18.0,18.0,12.0,22.0,12.0,21.0,17.0,10.0,10.0,16.0,14.0,14.0,14.0,9.0,10.0,7.0,11.0,8.0,8.0,12.0,7.0,8.0,3.0,4.0,5.0,12.0,9.0,7.0,4.0,7.0,7.0,6.0,7.0,1.0,4.0,2.0,2.0,5.0,3.0,1.0,,1.0,,,, P82034,11.0,18.0,25.0,25.0,17.0,26.0,19.0,22.0,14.0,19.0,15.0,14.0,23.0,25.0,20.0,15.0,13.0,32.0,7.0,9.0,12.0,15.0,14.0,18.0,10.0,15.0,24.0,8.0,12.0,12.0,14.0,19.0,27.0,27.0,27.0,24.0,20.0,28.0,24.0,29.0,34.0,28.0,20.0,29.0,22.0,28.0,25.0,32.0,28.0,16.0,22.0,26.0,32.0,24.0,42.0,24.0,29.0,41.0,32.0,40.0,33.0,40.0,39.0,26.0,26.0,25.0,29.0,32.0,30.0,21.0,19.0,25.0,19.0,26.0,23.0,29.0,16.0,21.0,19.0,20.0,26.0,19.0,10.0,7.0,11.0,6.0,10.0,9.0,8.0,3.0,1.0,3.0,3.0,1.0,1.0, P82036,6.0,10.0,11.0,15.0,9.0,23.0,11.0,9.0,16.0,20.0,14.0,19.0,15.0,24.0,17.0,18.0,21.0,17.0,16.0,29.0,22.0,13.0,15.0,24.0,13.0,24.0,17.0,31.0,22.0,17.0,20.0,16.0,15.0,25.0,18.0,16.0,17.0,24.0,9.0,23.0,18.0,18.0,18.0,21.0,14.0,21.0,17.0,19.0,23.0,17.0,26.0,23.0,27.0,32.0,25.0,20.0,23.0,24.0,18.0,17.0,14.0,14.0,16.0,14.0,20.0,21.0,8.0,16.0,17.0,7.0,12.0,14.0,16.0,15.0,19.0,24.0,24.0,26.0,20.0,15.0,20.0,12.0,10.0,6.0,5.0,8.0,5.0,2.0,,1.0,1.0,1.0,1.0,,1.0, P82037,24.0,12.0,30.0,16.0,23.0,16.0,36.0,20.0,31.0,27.0,28.0,33.0,26.0,38.0,41.0,40.0,42.0,38.0,23.0,19.0,28.0,27.0,27.0,32.0,24.0,24.0,31.0,28.0,39.0,25.0,28.0,30.0,28.0,33.0,37.0,25.0,44.0,29.0,32.0,32.0,32.0,28.0,26.0,38.0,30.0,30.0,24.0,35.0,22.0,32.0,28.0,37.0,43.0,33.0,47.0,31.0,29.0,35.0,46.0,42.0,28.0,35.0,34.0,37.0,38.0,28.0,27.0,18.0,15.0,13.0,15.0,17.0,22.0,23.0,11.0,11.0,27.0,18.0,18.0,9.0,9.0,4.0,13.0,10.0,5.0,3.0,4.0,2.0,3.0,4.0,3.0,2.0,2.0,1.0,1.0, P82607,29.0,32.0,45.0,40.0,40.0,40.0,37.0,37.0,39.0,39.0,30.0,41.0,34.0,49.0,55.0,44.0,37.0,45.0,42.0,49.0,36.0,39.0,30.0,35.0,29.0,33.0,26.0,35.0,43.0,44.0,35.0,46.0,53.0,57.0,48.0,43.0,48.0,42.0,45.0,37.0,45.0,39.0,41.0,35.0,34.0,32.0,30.0,35.0,26.0,34.0,30.0,29.0,31.0,44.0,44.0,29.0,34.0,32.0,35.0,41.0,30.0,36.0,25.0,31.0,35.0,30.0,26.0,19.0,17.0,15.0,18.0,15.0,31.0,13.0,19.0,36.0,27.0,29.0,25.0,30.0,14.0,16.0,7.0,10.0,12.0,12.0,7.0,11.0,3.0,2.0,4.0,1.0,3.0,3.0,1.0,2.0 P82609,52.0,48.0,50.0,44.0,59.0,54.0,47.0,62.0,59.0,76.0,74.0,68.0,52.0,55.0,49.0,58.0,48.0,55.0,48.0,40.0,38.0,50.0,62.0,56.0,49.0,76.0,75.0,45.0,63.0,56.0,41.0,50.0,42.0,40.0,56.0,57.0,56.0,65.0,58.0,65.0,57.0,59.0,44.0,45.0,60.0,53.0,44.0,51.0,40.0,44.0,45.0,47.0,47.0,35.0,43.0,29.0,24.0,25.0,23.0,29.0,19.0,18.0,22.0,20.0,21.0,21.0,18.0,13.0,15.0,18.0,15.0,9.0,12.0,8.0,8.0,9.0,4.0,3.0,5.0,6.0,1.0,1.0,2.0,2.0,3.0,,1.0,1.0,1.0,1.0,,2.0,1.0,,,1.0 P82613,21.0,23.0,30.0,32.0,23.0,20.0,28.0,31.0,23.0,32.0,34.0,30.0,31.0,51.0,30.0,35.0,33.0,35.0,19.0,33.0,28.0,34.0,26.0,35.0,24.0,29.0,31.0,27.0,27.0,28.0,39.0,42.0,32.0,38.0,37.0,57.0,35.0,30.0,38.0,31.0,38.0,35.0,32.0,27.0,22.0,29.0,39.0,29.0,33.0,31.0,27.0,25.0,33.0,37.0,49.0,39.0,38.0,31.0,39.0,37.0,21.0,36.0,24.0,32.0,27.0,27.0,12.0,25.0,30.0,22.0,22.0,21.0,24.0,21.0,21.0,24.0,19.0,20.0,24.0,25.0,25.0,16.0,18.0,11.0,9.0,3.0,12.0,5.0,5.0,1.0,2.0,1.0,,,1.0, P82616,28.0,23.0,37.0,35.0,29.0,35.0,30.0,20.0,36.0,35.0,41.0,38.0,44.0,40.0,41.0,45.0,42.0,38.0,32.0,28.0,28.0,37.0,45.0,28.0,46.0,34.0,32.0,33.0,42.0,29.0,32.0,27.0,34.0,22.0,36.0,34.0,36.0,22.0,36.0,35.0,35.0,20.0,33.0,36.0,34.0,29.0,23.0,38.0,29.0,30.0,30.0,21.0,35.0,16.0,20.0,22.0,16.0,20.0,26.0,16.0,18.0,12.0,18.0,10.0,13.0,12.0,16.0,11.0,13.0,5.0,5.0,17.0,7.0,7.0,5.0,7.0,2.0,6.0,8.0,5.0,6.0,2.0,2.0,5.0,1.0,1.0,1.0,2.0,1.0,,,1.0,,1.0,,1.0 P82624,23.0,27.0,27.0,30.0,25.0,30.0,35.0,29.0,33.0,23.0,28.0,50.0,21.0,32.0,39.0,42.0,37.0,27.0,41.0,30.0,31.0,39.0,28.0,39.0,40.0,28.0,36.0,32.0,30.0,29.0,20.0,21.0,10.0,17.0,21.0,36.0,25.0,28.0,20.0,23.0,21.0,18.0,21.0,19.0,23.0,19.0,22.0,18.0,26.0,28.0,28.0,34.0,20.0,21.0,21.0,27.0,33.0,16.0,25.0,17.0,22.0,18.0,19.0,13.0,15.0,9.0,11.0,20.0,15.0,3.0,14.0,7.0,11.0,11.0,3.0,6.0,14.0,6.0,6.0,4.0,7.0,4.0,6.0,1.0,3.0,3.0,5.0,3.0,4.0,2.0,1.0,1.0,1.0,,,1.0 P82625,28.0,13.0,22.0,18.0,12.0,15.0,24.0,20.0,19.0,31.0,30.0,22.0,22.0,19.0,24.0,19.0,24.0,11.0,18.0,15.0,20.0,17.0,18.0,14.0,18.0,24.0,20.0,16.0,18.0,23.0,21.0,19.0,17.0,18.0,19.0,24.0,25.0,22.0,24.0,23.0,26.0,24.0,21.0,20.0,20.0,19.0,11.0,20.0,22.0,15.0,15.0,13.0,14.0,23.0,17.0,11.0,14.0,18.0,12.0,10.0,8.0,8.0,9.0,3.0,10.0,6.0,10.0,5.0,11.0,6.0,5.0,7.0,7.0,5.0,3.0,1.0,6.0,2.0,2.0,2.0,3.0,1.0,1.0,2.0,2.0,1.0,,1.0,1.0,,,1.0,,,, P82626,26.0,41.0,34.0,31.0,31.0,35.0,34.0,33.0,55.0,40.0,53.0,43.0,40.0,48.0,51.0,40.0,52.0,43.0,35.0,40.0,35.0,26.0,43.0,39.0,33.0,56.0,46.0,31.0,43.0,53.0,38.0,48.0,27.0,28.0,43.0,45.0,35.0,35.0,39.0,30.0,42.0,36.0,50.0,31.0,29.0,39.0,38.0,29.0,39.0,29.0,30.0,48.0,35.0,40.0,29.0,33.0,34.0,28.0,20.0,27.0,21.0,35.0,26.0,25.0,33.0,15.0,21.0,20.0,20.0,15.0,15.0,22.0,13.0,8.0,17.0,6.0,4.0,14.0,8.0,5.0,7.0,9.0,8.0,8.0,6.0,3.0,5.0,4.0,4.0,2.0,3.0,1.0,,,2.0,2.0 P82627,20.0,17.0,29.0,21.0,26.0,22.0,31.0,17.0,38.0,33.0,30.0,17.0,40.0,31.0,32.0,36.0,26.0,30.0,22.0,31.0,25.0,23.0,19.0,20.0,26.0,24.0,35.0,20.0,32.0,28.0,27.0,22.0,29.0,35.0,35.0,33.0,39.0,34.0,38.0,42.0,37.0,25.0,33.0,36.0,37.0,22.0,25.0,29.0,20.0,14.0,22.0,27.0,21.0,27.0,27.0,29.0,32.0,29.0,26.0,17.0,33.0,28.0,30.0,23.0,27.0,24.0,24.0,29.0,23.0,20.0,19.0,14.0,17.0,16.0,13.0,13.0,20.0,7.0,17.0,10.0,9.0,5.0,3.0,6.0,6.0,3.0,1.0,2.0,1.0,2.0,4.0,1.0,,1.0,,1.0 P82629,11.0,14.0,14.0,15.0,11.0,7.0,16.0,14.0,12.0,8.0,13.0,16.0,16.0,14.0,20.0,16.0,15.0,18.0,12.0,20.0,20.0,12.0,17.0,14.0,15.0,12.0,17.0,26.0,12.0,13.0,16.0,17.0,19.0,15.0,17.0,18.0,13.0,16.0,15.0,12.0,12.0,16.0,9.0,15.0,11.0,12.0,14.0,16.0,7.0,15.0,21.0,20.0,11.0,18.0,10.0,15.0,17.0,17.0,16.0,15.0,11.0,13.0,13.0,9.0,14.0,12.0,10.0,13.0,6.0,13.0,10.0,6.0,6.0,6.0,5.0,3.0,5.0,3.0,9.0,8.0,1.0,2.0,4.0,4.0,3.0,3.0,,5.0,,2.0,,1.0,,,, P82633,14.0,13.0,17.0,21.0,15.0,20.0,16.0,22.0,17.0,16.0,30.0,20.0,18.0,18.0,32.0,16.0,18.0,17.0,20.0,14.0,15.0,18.0,10.0,21.0,11.0,19.0,16.0,20.0,19.0,10.0,17.0,12.0,15.0,23.0,26.0,27.0,26.0,22.0,18.0,17.0,21.0,17.0,23.0,19.0,16.0,19.0,22.0,18.0,13.0,15.0,14.0,17.0,8.0,21.0,13.0,19.0,17.0,8.0,12.0,8.0,10.0,13.0,13.0,10.0,15.0,11.0,8.0,11.0,11.0,12.0,5.0,6.0,13.0,8.0,8.0,4.0,3.0,7.0,11.0,2.0,6.0,7.0,3.0,8.0,4.0,1.0,,4.0,,1.0,,,1.0,,, P82634,21.0,25.0,30.0,24.0,31.0,31.0,37.0,19.0,29.0,36.0,29.0,28.0,35.0,32.0,31.0,34.0,25.0,30.0,23.0,24.0,29.0,33.0,24.0,26.0,36.0,30.0,30.0,36.0,36.0,33.0,30.0,31.0,31.0,32.0,39.0,33.0,29.0,37.0,29.0,27.0,27.0,25.0,31.0,34.0,33.0,26.0,26.0,26.0,29.0,36.0,23.0,25.0,38.0,33.0,29.0,26.0,25.0,27.0,28.0,24.0,24.0,27.0,29.0,16.0,18.0,23.0,18.0,17.0,24.0,19.0,12.0,25.0,15.0,11.0,14.0,13.0,17.0,13.0,10.0,7.0,9.0,5.0,8.0,5.0,4.0,7.0,5.0,5.0,2.0,2.0,2.0,2.0,3.0,,,1.0 P82640,34.0,31.0,36.0,31.0,44.0,32.0,33.0,43.0,56.0,41.0,45.0,46.0,39.0,54.0,40.0,55.0,57.0,36.0,49.0,51.0,41.0,44.0,40.0,57.0,37.0,40.0,49.0,43.0,48.0,44.0,45.0,47.0,39.0,36.0,40.0,46.0,36.0,43.0,39.0,40.0,47.0,43.0,52.0,41.0,37.0,37.0,48.0,48.0,49.0,39.0,34.0,36.0,22.0,23.0,32.0,35.0,24.0,23.0,22.0,26.0,27.0,18.0,10.0,23.0,23.0,24.0,15.0,16.0,16.0,27.0,11.0,15.0,12.0,10.0,9.0,8.0,11.0,11.0,8.0,8.0,5.0,4.0,3.0,,4.0,1.0,5.0,3.0,1.0,1.0,1.0,4.0,,,,1.0 P82643,34.0,33.0,39.0,39.0,36.0,41.0,34.0,43.0,42.0,42.0,46.0,54.0,56.0,61.0,46.0,56.0,48.0,62.0,45.0,26.0,43.0,39.0,34.0,35.0,40.0,42.0,29.0,45.0,31.0,33.0,39.0,35.0,41.0,43.0,43.0,46.0,47.0,50.0,48.0,64.0,54.0,54.0,48.0,41.0,59.0,46.0,38.0,47.0,55.0,44.0,49.0,51.0,55.0,59.0,51.0,56.0,59.0,51.0,51.0,60.0,42.0,54.0,39.0,46.0,44.0,47.0,37.0,41.0,36.0,46.0,28.0,32.0,28.0,25.0,22.0,37.0,38.0,29.0,27.0,21.0,24.0,27.0,16.0,7.0,14.0,13.0,10.0,5.0,8.0,6.0,2.0,3.0,3.0,1.0,,4.0 P82652,25.0,22.0,26.0,28.0,36.0,28.0,31.0,30.0,49.0,23.0,31.0,36.0,21.0,31.0,29.0,28.0,32.0,40.0,23.0,23.0,31.0,19.0,22.0,24.0,21.0,28.0,27.0,47.0,23.0,37.0,39.0,25.0,43.0,39.0,31.0,40.0,45.0,37.0,34.0,32.0,41.0,27.0,36.0,26.0,36.0,28.0,23.0,16.0,15.0,29.0,20.0,18.0,22.0,28.0,35.0,28.0,19.0,25.0,23.0,26.0,30.0,26.0,31.0,28.0,23.0,19.0,13.0,17.0,13.0,16.0,14.0,21.0,16.0,13.0,13.0,21.0,13.0,11.0,14.0,12.0,8.0,9.0,5.0,9.0,10.0,5.0,3.0,5.0,2.0,2.0,1.0,3.0,,,, P82660,25.0,26.0,18.0,28.0,27.0,28.0,20.0,26.0,29.0,28.0,25.0,28.0,35.0,22.0,29.0,33.0,39.0,22.0,31.0,25.0,28.0,29.0,26.0,32.0,22.0,31.0,31.0,26.0,30.0,18.0,23.0,24.0,21.0,28.0,36.0,32.0,31.0,35.0,27.0,35.0,27.0,25.0,35.0,30.0,25.0,41.0,23.0,23.0,25.0,27.0,33.0,32.0,18.0,27.0,24.0,22.0,26.0,19.0,23.0,17.0,23.0,24.0,14.0,16.0,15.0,12.0,14.0,13.0,9.0,11.0,16.0,14.0,11.0,10.0,11.0,7.0,4.0,8.0,7.0,2.0,4.0,5.0,4.0,1.0,5.0,4.0,3.0,2.0,1.0,,1.0,1.0,,,1.0,1.0 P83001,91.0,75.0,107.0,86.0,96.0,120.0,88.0,92.0,84.0,92.0,79.0,89.0,104.0,71.0,96.0,93.0,74.0,83.0,65.0,59.0,72.0,65.0,63.0,60.0,56.0,78.0,71.0,95.0,88.0,83.0,88.0,114.0,126.0,119.0,124.0,147.0,134.0,129.0,139.0,152.0,120.0,128.0,114.0,121.0,123.0,115.0,100.0,74.0,70.0,76.0,79.0,84.0,75.0,77.0,80.0,77.0,75.0,76.0,79.0,64.0,82.0,92.0,65.0,60.0,69.0,69.0,70.0,67.0,58.0,47.0,54.0,53.0,54.0,44.0,40.0,56.0,43.0,44.0,40.0,25.0,34.0,29.0,25.0,17.0,10.0,17.0,16.0,15.0,12.0,13.0,9.0,8.0,6.0,4.0,3.0,6.0 P83004,24.0,33.0,34.0,33.0,34.0,46.0,49.0,49.0,49.0,57.0,53.0,65.0,49.0,62.0,53.0,43.0,61.0,57.0,56.0,46.0,49.0,48.0,50.0,55.0,52.0,51.0,50.0,44.0,50.0,51.0,49.0,48.0,67.0,61.0,45.0,54.0,62.0,64.0,70.0,55.0,66.0,65.0,64.0,58.0,62.0,57.0,53.0,54.0,39.0,42.0,52.0,63.0,62.0,60.0,54.0,58.0,57.0,66.0,66.0,51.0,62.0,58.0,47.0,39.0,39.0,42.0,37.0,40.0,40.0,31.0,23.0,24.0,29.0,17.0,23.0,27.0,29.0,27.0,20.0,20.0,19.0,12.0,12.0,10.0,8.0,12.0,9.0,7.0,7.0,6.0,2.0,4.0,2.0,2.0,1.0,7.0 P83005,14.0,24.0,23.0,13.0,22.0,12.0,25.0,22.0,18.0,21.0,32.0,23.0,23.0,26.0,17.0,25.0,16.0,31.0,26.0,32.0,27.0,17.0,22.0,24.0,16.0,23.0,22.0,33.0,29.0,27.0,32.0,32.0,30.0,32.0,32.0,31.0,34.0,36.0,29.0,22.0,32.0,20.0,35.0,33.0,29.0,35.0,40.0,32.0,25.0,35.0,29.0,34.0,33.0,34.0,28.0,27.0,33.0,25.0,29.0,38.0,34.0,32.0,38.0,44.0,33.0,28.0,32.0,24.0,21.0,28.0,22.0,21.0,27.0,19.0,21.0,21.0,32.0,32.0,30.0,12.0,21.0,17.0,15.0,13.0,13.0,9.0,12.0,5.0,1.0,5.0,5.0,1.0,7.0,2.0,1.0,4.0 P83006,33.0,37.0,28.0,48.0,34.0,36.0,45.0,33.0,29.0,50.0,43.0,35.0,64.0,52.0,54.0,55.0,54.0,55.0,54.0,38.0,42.0,58.0,40.0,44.0,44.0,45.0,35.0,38.0,47.0,37.0,50.0,52.0,49.0,63.0,56.0,47.0,50.0,43.0,49.0,49.0,46.0,71.0,46.0,61.0,44.0,49.0,63.0,43.0,54.0,78.0,64.0,53.0,62.0,67.0,82.0,78.0,72.0,63.0,66.0,77.0,61.0,63.0,66.0,53.0,61.0,47.0,32.0,50.0,39.0,28.0,40.0,45.0,40.0,24.0,31.0,32.0,40.0,36.0,30.0,23.0,20.0,17.0,19.0,11.0,14.0,19.0,13.0,13.0,7.0,8.0,5.0,4.0,5.0,4.0,2.0,4.0 P83007,62.0,68.0,70.0,70.0,70.0,68.0,66.0,64.0,76.0,54.0,72.0,72.0,77.0,75.0,75.0,65.0,63.0,72.0,60.0,60.0,63.0,55.0,43.0,47.0,65.0,67.0,84.0,74.0,61.0,99.0,83.0,76.0,101.0,89.0,102.0,103.0,84.0,82.0,84.0,90.0,96.0,81.0,80.0,83.0,74.0,79.0,70.0,62.0,74.0,56.0,75.0,58.0,64.0,76.0,63.0,67.0,76.0,60.0,52.0,90.0,67.0,71.0,63.0,58.0,58.0,49.0,56.0,35.0,36.0,35.0,40.0,38.0,37.0,52.0,35.0,41.0,31.0,46.0,38.0,35.0,22.0,22.0,14.0,21.0,17.0,9.0,18.0,6.0,4.0,3.0,6.0,2.0,3.0,1.0,,1.0 P83009,29.0,30.0,40.0,30.0,37.0,39.0,37.0,48.0,35.0,53.0,49.0,38.0,42.0,46.0,40.0,39.0,35.0,48.0,46.0,41.0,37.0,31.0,37.0,36.0,33.0,30.0,23.0,45.0,36.0,42.0,31.0,41.0,44.0,49.0,46.0,48.0,45.0,44.0,42.0,44.0,50.0,41.0,65.0,58.0,43.0,58.0,51.0,44.0,50.0,39.0,46.0,50.0,55.0,69.0,50.0,58.0,60.0,50.0,59.0,45.0,62.0,48.0,63.0,54.0,42.0,49.0,47.0,51.0,40.0,46.0,45.0,36.0,43.0,44.0,48.0,43.0,41.0,37.0,56.0,36.0,37.0,36.0,25.0,21.0,18.0,21.0,17.0,16.0,11.0,13.0,6.0,10.0,8.0,4.0,3.0,5.0 P83010,11.0,24.0,18.0,16.0,16.0,23.0,22.0,24.0,35.0,22.0,24.0,23.0,39.0,24.0,27.0,24.0,32.0,24.0,29.0,28.0,32.0,24.0,17.0,21.0,23.0,24.0,22.0,27.0,33.0,23.0,22.0,29.0,30.0,34.0,34.0,39.0,29.0,33.0,25.0,31.0,27.0,36.0,19.0,27.0,28.0,21.0,19.0,18.0,24.0,16.0,35.0,25.0,23.0,23.0,25.0,21.0,20.0,25.0,15.0,22.0,21.0,18.0,31.0,27.0,22.0,30.0,20.0,26.0,16.0,12.0,20.0,30.0,15.0,13.0,13.0,15.0,12.0,14.0,12.0,7.0,3.0,7.0,6.0,5.0,6.0,4.0,7.0,5.0,2.0,2.0,,1.0,,,,4.0 P83011,25.0,31.0,23.0,40.0,33.0,39.0,43.0,30.0,40.0,42.0,41.0,49.0,41.0,46.0,52.0,52.0,56.0,49.0,39.0,42.0,30.0,38.0,32.0,38.0,37.0,39.0,33.0,52.0,36.0,40.0,33.0,36.0,42.0,34.0,44.0,37.0,54.0,45.0,59.0,56.0,40.0,55.0,45.0,55.0,42.0,31.0,53.0,45.0,33.0,42.0,34.0,45.0,54.0,43.0,48.0,45.0,43.0,59.0,53.0,47.0,72.0,70.0,51.0,49.0,39.0,50.0,49.0,36.0,31.0,42.0,27.0,27.0,37.0,45.0,37.0,32.0,44.0,39.0,30.0,23.0,20.0,21.0,16.0,21.0,19.0,22.0,13.0,13.0,12.0,9.0,4.0,3.0,4.0,3.0,2.0,2.0 P83012,204.0,218.0,202.0,238.0,232.0,247.0,283.0,255.0,309.0,294.0,287.0,287.0,342.0,334.0,327.0,316.0,338.0,290.0,290.0,298.0,259.0,263.0,293.0,292.0,267.0,270.0,262.0,265.0,292.0,259.0,268.0,290.0,324.0,275.0,290.0,286.0,310.0,292.0,315.0,333.0,301.0,299.0,311.0,343.0,306.0,336.0,303.0,265.0,283.0,278.0,309.0,292.0,327.0,323.0,365.0,318.0,344.0,331.0,352.0,354.0,390.0,356.0,336.0,308.0,302.0,311.0,280.0,259.0,260.0,214.0,207.0,214.0,195.0,188.0,212.0,198.0,215.0,224.0,235.0,169.0,154.0,146.0,115.0,103.0,76.0,96.0,81.0,53.0,49.0,34.0,23.0,27.0,25.0,11.0,9.0,25.0 P83015,27.0,35.0,26.0,33.0,28.0,42.0,41.0,48.0,35.0,31.0,37.0,37.0,39.0,38.0,52.0,38.0,45.0,45.0,34.0,37.0,57.0,31.0,45.0,39.0,35.0,41.0,31.0,43.0,37.0,50.0,43.0,51.0,41.0,53.0,46.0,63.0,64.0,50.0,49.0,49.0,53.0,52.0,39.0,45.0,62.0,44.0,54.0,33.0,63.0,46.0,54.0,54.0,63.0,46.0,56.0,55.0,58.0,45.0,62.0,51.0,64.0,50.0,50.0,66.0,41.0,39.0,42.0,27.0,43.0,35.0,31.0,34.0,31.0,30.0,34.0,31.0,34.0,51.0,45.0,30.0,29.0,34.0,24.0,21.0,15.0,18.0,11.0,12.0,10.0,6.0,4.0,7.0,5.0,2.0,2.0,4.0 P83017,44.0,37.0,39.0,45.0,40.0,43.0,30.0,36.0,40.0,39.0,46.0,43.0,38.0,44.0,47.0,42.0,42.0,45.0,40.0,37.0,42.0,38.0,34.0,35.0,49.0,39.0,52.0,44.0,53.0,45.0,55.0,62.0,53.0,59.0,69.0,63.0,50.0,57.0,57.0,43.0,50.0,54.0,43.0,52.0,48.0,38.0,37.0,49.0,39.0,27.0,46.0,38.0,45.0,46.0,40.0,44.0,44.0,50.0,46.0,34.0,54.0,40.0,49.0,40.0,30.0,45.0,35.0,34.0,32.0,22.0,25.0,44.0,32.0,21.0,32.0,35.0,20.0,31.0,29.0,23.0,26.0,14.0,14.0,7.0,11.0,11.0,12.0,9.0,1.0,4.0,3.0,2.0,2.0,1.0,,3.0 P83021,47.0,55.0,54.0,57.0,58.0,60.0,61.0,62.0,59.0,70.0,70.0,55.0,65.0,75.0,62.0,76.0,76.0,72.0,65.0,86.0,57.0,66.0,60.0,56.0,58.0,62.0,74.0,74.0,72.0,68.0,75.0,76.0,88.0,88.0,86.0,72.0,65.0,80.0,83.0,62.0,80.0,68.0,69.0,85.0,75.0,72.0,56.0,67.0,54.0,53.0,55.0,52.0,67.0,62.0,85.0,77.0,67.0,56.0,74.0,69.0,67.0,66.0,63.0,69.0,54.0,53.0,50.0,61.0,50.0,46.0,40.0,44.0,31.0,32.0,26.0,35.0,38.0,28.0,39.0,33.0,15.0,11.0,24.0,14.0,9.0,9.0,9.0,11.0,8.0,9.0,8.0,5.0,3.0,,1.0,2.0 P83024,24.0,30.0,27.0,26.0,32.0,19.0,32.0,21.0,30.0,24.0,33.0,26.0,29.0,32.0,28.0,40.0,34.0,33.0,29.0,25.0,36.0,25.0,28.0,42.0,33.0,31.0,34.0,34.0,32.0,28.0,37.0,27.0,44.0,38.0,30.0,41.0,43.0,34.0,37.0,32.0,33.0,29.0,34.0,42.0,32.0,28.0,32.0,23.0,30.0,29.0,27.0,21.0,34.0,31.0,37.0,38.0,32.0,29.0,25.0,22.0,30.0,27.0,30.0,29.0,30.0,25.0,21.0,12.0,16.0,19.0,15.0,17.0,18.0,18.0,14.0,18.0,17.0,10.0,17.0,12.0,16.0,17.0,21.0,5.0,7.0,11.0,4.0,5.0,5.0,6.0,8.0,1.0,2.0,,1.0,4.0 P83025,83.0,92.0,67.0,93.0,91.0,88.0,82.0,96.0,92.0,100.0,107.0,107.0,78.0,87.0,95.0,85.0,86.0,72.0,52.0,62.0,73.0,46.0,49.0,68.0,54.0,63.0,75.0,57.0,65.0,69.0,71.0,68.0,68.0,65.0,68.0,76.0,71.0,69.0,75.0,75.0,55.0,69.0,62.0,58.0,62.0,52.0,45.0,43.0,37.0,25.0,46.0,35.0,40.0,39.0,32.0,33.0,43.0,27.0,53.0,33.0,40.0,39.0,31.0,42.0,38.0,38.0,40.0,46.0,29.0,35.0,30.0,30.0,31.0,20.0,30.0,30.0,29.0,18.0,17.0,15.0,14.0,10.0,4.0,7.0,7.0,6.0,10.0,9.0,5.0,6.0,3.0,4.0,4.0,3.0,,6.0 P83027,3.0,3.0,5.0,3.0,6.0,9.0,3.0,13.0,9.0,10.0,8.0,4.0,13.0,9.0,10.0,8.0,11.0,12.0,3.0,8.0,8.0,7.0,7.0,9.0,10.0,11.0,6.0,8.0,10.0,14.0,11.0,16.0,14.0,10.0,23.0,20.0,19.0,21.0,18.0,18.0,14.0,9.0,15.0,10.0,16.0,18.0,11.0,10.0,7.0,12.0,14.0,14.0,19.0,16.0,8.0,6.0,11.0,12.0,20.0,15.0,15.0,21.0,18.0,14.0,11.0,14.0,12.0,14.0,16.0,15.0,11.0,9.0,11.0,10.0,7.0,9.0,11.0,11.0,12.0,6.0,11.0,7.0,4.0,2.0,2.0,4.0,2.0,4.0,2.0,3.0,,1.0,,2.0,1.0,3.0 P83603,22.0,36.0,35.0,37.0,33.0,51.0,48.0,44.0,40.0,48.0,47.0,63.0,53.0,51.0,50.0,54.0,71.0,60.0,50.0,52.0,48.0,50.0,57.0,50.0,50.0,58.0,45.0,52.0,54.0,50.0,49.0,56.0,57.0,59.0,62.0,71.0,42.0,57.0,59.0,61.0,61.0,49.0,54.0,62.0,61.0,76.0,58.0,42.0,53.0,58.0,68.0,51.0,65.0,57.0,59.0,55.0,59.0,68.0,65.0,65.0,62.0,66.0,75.0,68.0,70.0,56.0,55.0,54.0,53.0,41.0,54.0,48.0,47.0,48.0,54.0,49.0,46.0,65.0,53.0,40.0,44.0,39.0,30.0,20.0,25.0,23.0,18.0,17.0,16.0,9.0,6.0,2.0,6.0,,4.0,1.0 P83605,37.0,45.0,44.0,39.0,40.0,58.0,62.0,47.0,46.0,58.0,47.0,42.0,54.0,56.0,50.0,47.0,49.0,60.0,53.0,39.0,45.0,41.0,45.0,36.0,33.0,34.0,47.0,46.0,42.0,58.0,73.0,65.0,67.0,78.0,58.0,61.0,66.0,54.0,45.0,59.0,61.0,66.0,62.0,56.0,51.0,50.0,43.0,62.0,41.0,54.0,43.0,41.0,52.0,35.0,47.0,43.0,53.0,46.0,39.0,50.0,46.0,48.0,41.0,44.0,43.0,26.0,35.0,33.0,34.0,25.0,28.0,24.0,30.0,24.0,26.0,31.0,25.0,26.0,28.0,22.0,19.0,15.0,14.0,16.0,7.0,10.0,10.0,6.0,6.0,3.0,6.0,2.0,3.0,,2.0,2.0 P83608,34.0,27.0,21.0,25.0,25.0,35.0,35.0,30.0,26.0,35.0,39.0,38.0,44.0,40.0,38.0,36.0,44.0,30.0,45.0,39.0,45.0,37.0,25.0,33.0,50.0,33.0,39.0,37.0,42.0,40.0,41.0,58.0,59.0,57.0,44.0,59.0,52.0,55.0,49.0,49.0,41.0,40.0,45.0,50.0,47.0,41.0,37.0,36.0,42.0,41.0,35.0,44.0,38.0,44.0,38.0,42.0,48.0,37.0,41.0,44.0,49.0,42.0,37.0,39.0,32.0,46.0,31.0,43.0,30.0,13.0,25.0,30.0,21.0,21.0,23.0,21.0,22.0,28.0,18.0,18.0,22.0,20.0,13.0,12.0,9.0,13.0,10.0,15.0,9.0,6.0,7.0,3.0,,2.0,1.0,4.0 P83609,15.0,13.0,13.0,21.0,15.0,24.0,21.0,25.0,22.0,26.0,23.0,23.0,24.0,26.0,26.0,31.0,26.0,34.0,22.0,24.0,37.0,24.0,28.0,25.0,11.0,22.0,37.0,27.0,22.0,20.0,21.0,29.0,26.0,26.0,31.0,33.0,27.0,39.0,25.0,21.0,26.0,21.0,22.0,40.0,19.0,23.0,23.0,28.0,22.0,26.0,28.0,28.0,27.0,35.0,23.0,29.0,25.0,33.0,26.0,32.0,26.0,22.0,32.0,23.0,27.0,29.0,18.0,14.0,19.0,15.0,14.0,15.0,10.0,14.0,15.0,19.0,14.0,18.0,13.0,12.0,8.0,7.0,7.0,2.0,3.0,5.0,3.0,2.0,2.0,1.0,1.0,,2.0,,, P83611,35.0,30.0,51.0,51.0,35.0,46.0,43.0,30.0,35.0,54.0,39.0,43.0,54.0,30.0,38.0,42.0,36.0,39.0,35.0,31.0,36.0,38.0,41.0,38.0,44.0,42.0,37.0,33.0,39.0,42.0,46.0,39.0,39.0,44.0,31.0,39.0,51.0,40.0,35.0,50.0,34.0,35.0,30.0,43.0,35.0,40.0,40.0,27.0,32.0,43.0,34.0,42.0,35.0,27.0,41.0,25.0,28.0,25.0,29.0,23.0,21.0,17.0,19.0,14.0,22.0,15.0,21.0,17.0,17.0,9.0,17.0,12.0,8.0,13.0,16.0,7.0,5.0,11.0,5.0,1.0,4.0,4.0,4.0,2.0,1.0,,1.0,1.0,1.0,2.0,1.0,,,1.0,,5.0 P83612,21.0,8.0,23.0,25.0,32.0,20.0,32.0,30.0,39.0,28.0,38.0,33.0,34.0,34.0,35.0,38.0,29.0,28.0,23.0,24.0,23.0,30.0,33.0,36.0,24.0,20.0,22.0,27.0,32.0,21.0,29.0,37.0,36.0,37.0,26.0,26.0,30.0,41.0,30.0,35.0,36.0,27.0,27.0,37.0,35.0,27.0,41.0,19.0,27.0,38.0,33.0,40.0,29.0,33.0,40.0,35.0,36.0,43.0,38.0,36.0,47.0,36.0,38.0,25.0,33.0,31.0,27.0,34.0,30.0,28.0,28.0,24.0,22.0,32.0,27.0,22.0,33.0,28.0,32.0,22.0,29.0,20.0,23.0,11.0,12.0,11.0,14.0,12.0,7.0,8.0,4.0,1.0,4.0,2.0,2.0,2.0 P83620,31.0,24.0,20.0,20.0,17.0,25.0,20.0,18.0,17.0,20.0,27.0,21.0,21.0,34.0,24.0,36.0,33.0,30.0,25.0,31.0,30.0,25.0,25.0,21.0,21.0,24.0,25.0,20.0,23.0,29.0,38.0,23.0,30.0,33.0,36.0,26.0,25.0,33.0,32.0,18.0,34.0,36.0,30.0,26.0,30.0,43.0,29.0,19.0,28.0,26.0,38.0,33.0,36.0,50.0,37.0,28.0,36.0,31.0,49.0,39.0,33.0,36.0,33.0,41.0,25.0,40.0,26.0,39.0,31.0,28.0,26.0,32.0,32.0,19.0,46.0,27.0,36.0,32.0,32.0,27.0,19.0,32.0,21.0,15.0,22.0,11.0,13.0,7.0,12.0,3.0,10.0,4.0,6.0,2.0,,1.0 P83621,11.0,18.0,11.0,19.0,19.0,22.0,21.0,25.0,15.0,21.0,21.0,23.0,21.0,25.0,28.0,18.0,31.0,24.0,20.0,19.0,28.0,18.0,15.0,25.0,17.0,26.0,18.0,22.0,20.0,21.0,21.0,25.0,21.0,25.0,26.0,24.0,32.0,28.0,34.0,26.0,24.0,18.0,26.0,15.0,21.0,30.0,20.0,23.0,19.0,24.0,22.0,21.0,23.0,27.0,10.0,14.0,25.0,20.0,19.0,20.0,14.0,25.0,13.0,20.0,17.0,18.0,17.0,23.0,9.0,14.0,18.0,5.0,11.0,18.0,9.0,10.0,8.0,11.0,17.0,2.0,7.0,5.0,8.0,6.0,3.0,6.0,6.0,4.0,4.0,1.0,3.0,3.0,1.0,1.0,, P83623,22.0,15.0,21.0,21.0,21.0,30.0,20.0,29.0,28.0,34.0,23.0,38.0,34.0,40.0,31.0,37.0,51.0,53.0,30.0,42.0,33.0,28.0,34.0,23.0,28.0,24.0,30.0,27.0,29.0,35.0,29.0,35.0,27.0,42.0,32.0,40.0,34.0,23.0,28.0,20.0,38.0,41.0,31.0,41.0,38.0,26.0,45.0,38.0,41.0,29.0,27.0,33.0,32.0,43.0,38.0,42.0,37.0,33.0,43.0,36.0,30.0,27.0,43.0,35.0,21.0,41.0,34.0,30.0,20.0,17.0,19.0,16.0,13.0,11.0,21.0,19.0,20.0,17.0,13.0,19.0,9.0,16.0,13.0,12.0,11.0,11.0,9.0,6.0,4.0,9.0,4.0,2.0,2.0,4.0,2.0,2.0 P84004,25.0,33.0,42.0,56.0,44.0,46.0,53.0,73.0,72.0,70.0,63.0,82.0,58.0,60.0,96.0,57.0,77.0,77.0,60.0,57.0,72.0,46.0,57.0,48.0,58.0,59.0,39.0,41.0,70.0,61.0,61.0,70.0,65.0,57.0,79.0,79.0,57.0,64.0,61.0,83.0,77.0,76.0,53.0,77.0,76.0,86.0,64.0,70.0,54.0,79.0,62.0,51.0,64.0,71.0,72.0,57.0,56.0,57.0,61.0,59.0,44.0,56.0,60.0,57.0,49.0,34.0,35.0,53.0,28.0,33.0,34.0,27.0,24.0,22.0,28.0,24.0,19.0,26.0,28.0,14.0,14.0,6.0,6.0,13.0,4.0,9.0,10.0,7.0,6.0,5.0,3.0,4.0,1.0,,2.0,1.0 P84005,18.0,27.0,15.0,21.0,17.0,13.0,21.0,22.0,17.0,22.0,23.0,17.0,16.0,19.0,24.0,25.0,22.0,36.0,102.0,188.0,285.0,342.0,405.0,454.0,461.0,541.0,533.0,458.0,432.0,382.0,433.0,337.0,236.0,167.0,129.0,108.0,94.0,82.0,63.0,64.0,44.0,41.0,60.0,47.0,49.0,39.0,23.0,16.0,19.0,19.0,21.0,21.0,17.0,17.0,22.0,17.0,22.0,20.0,25.0,12.0,26.0,22.0,25.0,16.0,12.0,12.0,11.0,15.0,12.0,16.0,15.0,9.0,4.0,7.0,7.0,4.0,3.0,2.0,,4.0,2.0,7.0,2.0,6.0,3.0,4.0,3.0,4.0,2.0,2.0,1.0,1.0,,2.0,,3.0 P84009,61.0,54.0,53.0,67.0,57.0,61.0,53.0,64.0,82.0,66.0,79.0,71.0,64.0,73.0,70.0,66.0,61.0,71.0,78.0,93.0,117.0,108.0,118.0,131.0,139.0,163.0,155.0,176.0,169.0,158.0,146.0,124.0,132.0,124.0,116.0,126.0,116.0,111.0,106.0,115.0,113.0,107.0,113.0,88.0,94.0,111.0,109.0,86.0,89.0,76.0,97.0,75.0,70.0,85.0,75.0,68.0,71.0,71.0,66.0,61.0,47.0,59.0,44.0,59.0,47.0,48.0,34.0,29.0,32.0,24.0,29.0,20.0,22.0,31.0,15.0,17.0,13.0,12.0,9.0,8.0,9.0,5.0,4.0,8.0,10.0,6.0,3.0,8.0,4.0,2.0,3.0,,1.0,,1.0,3.0 P84010,21.0,41.0,42.0,55.0,56.0,41.0,55.0,39.0,55.0,77.0,69.0,67.0,75.0,64.0,63.0,64.0,65.0,71.0,61.0,46.0,50.0,69.0,67.0,71.0,71.0,86.0,104.0,122.0,123.0,101.0,96.0,98.0,104.0,118.0,99.0,116.0,119.0,109.0,99.0,105.0,100.0,87.0,104.0,98.0,101.0,85.0,84.0,75.0,87.0,81.0,87.0,70.0,76.0,67.0,64.0,77.0,62.0,55.0,56.0,71.0,54.0,68.0,58.0,53.0,40.0,45.0,52.0,45.0,36.0,21.0,29.0,29.0,29.0,20.0,25.0,22.0,15.0,27.0,19.0,9.0,13.0,16.0,9.0,6.0,12.0,8.0,7.0,6.0,2.0,3.0,5.0,3.0,6.0,2.0,,9.0 P84012,27.0,39.0,38.0,45.0,31.0,43.0,37.0,36.0,44.0,46.0,44.0,39.0,55.0,44.0,53.0,58.0,63.0,47.0,44.0,35.0,42.0,51.0,50.0,42.0,47.0,44.0,48.0,47.0,55.0,60.0,51.0,57.0,53.0,73.0,74.0,66.0,71.0,72.0,74.0,61.0,68.0,62.0,61.0,76.0,59.0,65.0,58.0,56.0,60.0,61.0,53.0,55.0,76.0,66.0,53.0,62.0,68.0,69.0,76.0,57.0,66.0,56.0,53.0,51.0,59.0,55.0,71.0,51.0,55.0,48.0,47.0,46.0,51.0,46.0,40.0,46.0,34.0,44.0,40.0,26.0,30.0,16.0,22.0,14.0,11.0,13.0,11.0,13.0,8.0,5.0,7.0,4.0,7.0,6.0,4.0,6.0 P84014,24.0,25.0,41.0,29.0,41.0,48.0,45.0,56.0,47.0,47.0,41.0,48.0,39.0,43.0,36.0,40.0,31.0,39.0,45.0,33.0,47.0,27.0,31.0,23.0,28.0,22.0,32.0,35.0,43.0,30.0,29.0,32.0,32.0,30.0,45.0,46.0,54.0,45.0,36.0,52.0,56.0,42.0,38.0,33.0,36.0,26.0,18.0,28.0,31.0,36.0,28.0,41.0,31.0,26.0,33.0,38.0,28.0,27.0,27.0,26.0,23.0,24.0,32.0,34.0,24.0,27.0,14.0,34.0,35.0,17.0,17.0,19.0,18.0,15.0,17.0,14.0,16.0,22.0,12.0,10.0,7.0,12.0,11.0,5.0,5.0,6.0,5.0,7.0,2.0,2.0,1.0,2.0,5.0,2.0,,3.0 P84016,59.0,73.0,75.0,65.0,54.0,72.0,58.0,54.0,64.0,62.0,64.0,58.0,76.0,74.0,70.0,72.0,71.0,87.0,68.0,69.0,72.0,43.0,65.0,80.0,96.0,84.0,88.0,112.0,90.0,126.0,124.0,82.0,100.0,88.0,93.0,82.0,91.0,77.0,72.0,90.0,76.0,81.0,72.0,97.0,73.0,79.0,73.0,73.0,57.0,72.0,50.0,67.0,58.0,57.0,47.0,46.0,56.0,48.0,50.0,29.0,48.0,32.0,34.0,37.0,28.0,24.0,29.0,20.0,27.0,26.0,23.0,22.0,24.0,13.0,23.0,21.0,15.0,15.0,11.0,11.0,9.0,10.0,14.0,15.0,9.0,5.0,4.0,2.0,3.0,2.0,1.0,4.0,1.0,1.0,1.0,4.0 P84017,51.0,52.0,74.0,62.0,80.0,79.0,72.0,65.0,96.0,100.0,104.0,76.0,105.0,99.0,106.0,102.0,98.0,87.0,91.0,98.0,100.0,92.0,104.0,99.0,100.0,112.0,116.0,111.0,112.0,106.0,124.0,102.0,89.0,108.0,112.0,127.0,96.0,130.0,97.0,116.0,109.0,115.0,97.0,108.0,97.0,102.0,99.0,91.0,84.0,84.0,78.0,71.0,78.0,73.0,74.0,61.0,81.0,55.0,58.0,64.0,57.0,54.0,60.0,61.0,52.0,55.0,42.0,49.0,37.0,32.0,30.0,31.0,35.0,26.0,30.0,25.0,31.0,20.0,20.0,11.0,22.0,20.0,17.0,14.0,16.0,8.0,8.0,7.0,5.0,7.0,3.0,4.0,4.0,1.0,,3.0 P84018,8.0,9.0,5.0,13.0,11.0,9.0,15.0,11.0,13.0,10.0,7.0,12.0,16.0,12.0,11.0,9.0,15.0,9.0,26.0,64.0,131.0,187.0,107.0,90.0,120.0,96.0,89.0,66.0,88.0,69.0,63.0,53.0,43.0,31.0,34.0,33.0,30.0,35.0,24.0,23.0,34.0,31.0,27.0,21.0,28.0,14.0,26.0,16.0,21.0,21.0,18.0,20.0,18.0,19.0,21.0,11.0,13.0,9.0,14.0,19.0,9.0,13.0,15.0,14.0,7.0,10.0,13.0,7.0,10.0,10.0,5.0,11.0,9.0,8.0,12.0,8.0,10.0,7.0,4.0,3.0,6.0,7.0,5.0,5.0,3.0,1.0,3.0,4.0,2.0,3.0,2.0,,1.0,,1.0, P84019,40.0,43.0,47.0,54.0,52.0,66.0,62.0,70.0,93.0,80.0,68.0,85.0,108.0,72.0,100.0,93.0,95.0,74.0,76.0,77.0,73.0,61.0,50.0,56.0,62.0,80.0,68.0,65.0,59.0,61.0,64.0,81.0,70.0,57.0,68.0,58.0,71.0,74.0,82.0,83.0,69.0,63.0,88.0,76.0,72.0,74.0,72.0,69.0,62.0,82.0,83.0,76.0,67.0,68.0,71.0,68.0,69.0,73.0,77.0,71.0,76.0,64.0,61.0,57.0,47.0,59.0,52.0,58.0,51.0,48.0,38.0,50.0,34.0,36.0,46.0,19.0,30.0,43.0,28.0,30.0,31.0,15.0,10.0,21.0,9.0,10.0,13.0,12.0,8.0,9.0,5.0,8.0,3.0,1.0,2.0,4.0 P84020,50.0,61.0,55.0,73.0,58.0,65.0,70.0,78.0,84.0,72.0,88.0,91.0,70.0,60.0,72.0,67.0,52.0,67.0,73.0,70.0,58.0,46.0,43.0,56.0,54.0,61.0,58.0,64.0,63.0,76.0,73.0,69.0,81.0,82.0,93.0,94.0,93.0,102.0,85.0,108.0,103.0,91.0,96.0,83.0,70.0,85.0,74.0,78.0,74.0,69.0,71.0,52.0,53.0,57.0,66.0,64.0,56.0,58.0,53.0,54.0,47.0,43.0,55.0,40.0,44.0,34.0,56.0,36.0,33.0,33.0,30.0,33.0,34.0,29.0,28.0,31.0,27.0,14.0,18.0,13.0,16.0,12.0,10.0,11.0,5.0,7.0,10.0,2.0,4.0,3.0,2.0,2.0,,4.0,,1.0 P84021,44.0,51.0,56.0,50.0,67.0,70.0,60.0,66.0,73.0,64.0,68.0,79.0,97.0,89.0,87.0,83.0,72.0,82.0,68.0,58.0,60.0,55.0,52.0,45.0,53.0,49.0,42.0,67.0,63.0,61.0,54.0,66.0,64.0,77.0,80.0,79.0,75.0,83.0,64.0,65.0,73.0,85.0,79.0,71.0,68.0,59.0,78.0,55.0,46.0,64.0,65.0,46.0,45.0,60.0,55.0,50.0,53.0,52.0,40.0,46.0,42.0,37.0,59.0,33.0,39.0,30.0,44.0,34.0,28.0,26.0,36.0,35.0,30.0,25.0,22.0,29.0,26.0,26.0,15.0,16.0,22.0,12.0,8.0,8.0,5.0,3.0,8.0,9.0,6.0,6.0,2.0,2.0,1.0,1.0,,1.0 P84022,28.0,25.0,26.0,33.0,25.0,40.0,46.0,48.0,40.0,57.0,40.0,51.0,41.0,43.0,40.0,47.0,51.0,34.0,37.0,33.0,30.0,31.0,34.0,45.0,35.0,53.0,40.0,49.0,55.0,45.0,62.0,50.0,49.0,66.0,58.0,50.0,53.0,45.0,52.0,55.0,55.0,41.0,37.0,48.0,51.0,52.0,33.0,34.0,33.0,28.0,39.0,28.0,42.0,35.0,38.0,33.0,24.0,39.0,34.0,37.0,36.0,34.0,34.0,39.0,34.0,35.0,21.0,25.0,23.0,24.0,15.0,25.0,24.0,28.0,19.0,16.0,15.0,23.0,14.0,14.0,11.0,12.0,8.0,9.0,13.0,8.0,6.0,4.0,4.0,4.0,4.0,2.0,1.0,2.0,2.0,5.0 P84023,22.0,18.0,22.0,24.0,14.0,24.0,23.0,26.0,29.0,19.0,23.0,23.0,18.0,25.0,23.0,24.0,25.0,39.0,113.0,221.0,211.0,214.0,206.0,222.0,207.0,203.0,180.0,171.0,161.0,172.0,152.0,132.0,117.0,135.0,102.0,117.0,111.0,91.0,89.0,92.0,89.0,77.0,81.0,69.0,74.0,64.0,71.0,68.0,59.0,51.0,53.0,43.0,50.0,44.0,29.0,34.0,28.0,30.0,37.0,34.0,31.0,21.0,32.0,25.0,28.0,32.0,24.0,19.0,28.0,13.0,22.0,16.0,12.0,16.0,13.0,14.0,13.0,13.0,8.0,9.0,10.0,2.0,3.0,3.0,6.0,3.0,6.0,2.0,4.0,,,3.0,1.0,1.0,,1.0 P84024,26.0,52.0,46.0,38.0,50.0,43.0,51.0,57.0,36.0,54.0,75.0,60.0,45.0,62.0,58.0,66.0,69.0,62.0,57.0,46.0,51.0,48.0,46.0,38.0,50.0,42.0,44.0,38.0,38.0,51.0,59.0,75.0,71.0,84.0,68.0,73.0,79.0,84.0,76.0,70.0,63.0,66.0,82.0,57.0,69.0,48.0,55.0,46.0,47.0,60.0,37.0,49.0,45.0,57.0,53.0,47.0,50.0,46.0,58.0,47.0,52.0,53.0,41.0,53.0,44.0,37.0,47.0,42.0,42.0,39.0,36.0,28.0,27.0,20.0,21.0,27.0,21.0,27.0,24.0,17.0,12.0,17.0,15.0,17.0,12.0,6.0,5.0,2.0,2.0,5.0,,2.0,5.0,2.0,,2.0 P84025,35.0,32.0,48.0,42.0,44.0,59.0,68.0,66.0,67.0,71.0,69.0,70.0,62.0,68.0,61.0,52.0,63.0,69.0,64.0,66.0,46.0,58.0,42.0,41.0,44.0,35.0,44.0,42.0,39.0,45.0,55.0,52.0,59.0,55.0,52.0,55.0,58.0,69.0,62.0,67.0,58.0,77.0,61.0,56.0,55.0,70.0,61.0,51.0,44.0,42.0,58.0,42.0,51.0,50.0,52.0,47.0,42.0,50.0,53.0,30.0,40.0,39.0,39.0,33.0,35.0,29.0,28.0,24.0,28.0,28.0,18.0,24.0,25.0,22.0,24.0,21.0,10.0,26.0,23.0,14.0,11.0,13.0,9.0,6.0,4.0,4.0,9.0,4.0,4.0,3.0,3.0,,2.0,1.0,1.0,1.0 P84026,63.0,54.0,49.0,84.0,73.0,64.0,56.0,57.0,64.0,62.0,74.0,83.0,68.0,83.0,71.0,70.0,77.0,84.0,84.0,68.0,101.0,98.0,95.0,73.0,104.0,134.0,113.0,120.0,110.0,94.0,97.0,70.0,86.0,111.0,114.0,114.0,86.0,97.0,102.0,82.0,97.0,88.0,88.0,93.0,113.0,83.0,84.0,100.0,86.0,102.0,80.0,81.0,72.0,70.0,80.0,83.0,74.0,70.0,67.0,65.0,63.0,54.0,58.0,45.0,42.0,42.0,39.0,41.0,23.0,24.0,24.0,14.0,17.0,17.0,12.0,10.0,6.0,17.0,10.0,5.0,11.0,9.0,8.0,3.0,6.0,7.0,1.0,3.0,3.0,1.0,3.0,1.0,,,2.0,2.0 P84027,41.0,46.0,40.0,50.0,53.0,53.0,37.0,46.0,62.0,52.0,63.0,65.0,49.0,62.0,65.0,65.0,64.0,72.0,74.0,61.0,59.0,73.0,70.0,55.0,71.0,78.0,85.0,79.0,88.0,62.0,72.0,79.0,71.0,77.0,75.0,67.0,64.0,72.0,68.0,68.0,67.0,52.0,82.0,75.0,54.0,64.0,55.0,61.0,61.0,54.0,61.0,50.0,57.0,54.0,39.0,55.0,44.0,51.0,44.0,42.0,53.0,43.0,40.0,35.0,30.0,39.0,29.0,18.0,31.0,25.0,27.0,19.0,14.0,18.0,16.0,16.0,20.0,21.0,10.0,8.0,10.0,6.0,8.0,8.0,8.0,5.0,4.0,8.0,2.0,5.0,3.0,3.0,,3.0,1.0, P84028,68.0,49.0,75.0,79.0,79.0,85.0,86.0,99.0,85.0,72.0,80.0,86.0,90.0,77.0,69.0,86.0,84.0,79.0,73.0,73.0,67.0,76.0,58.0,63.0,56.0,61.0,60.0,79.0,78.0,81.0,75.0,80.0,78.0,74.0,80.0,89.0,75.0,96.0,86.0,91.0,90.0,95.0,74.0,84.0,80.0,72.0,91.0,79.0,68.0,79.0,70.0,63.0,58.0,58.0,68.0,58.0,54.0,67.0,56.0,63.0,65.0,49.0,48.0,49.0,52.0,40.0,48.0,36.0,21.0,36.0,26.0,27.0,33.0,22.0,19.0,31.0,23.0,18.0,23.0,15.0,20.0,8.0,12.0,16.0,6.0,3.0,9.0,10.0,4.0,2.0,4.0,2.0,3.0,2.0,1.0,3.0 P84029,58.0,47.0,54.0,59.0,75.0,92.0,79.0,100.0,88.0,71.0,96.0,70.0,81.0,84.0,76.0,76.0,84.0,77.0,72.0,71.0,60.0,79.0,56.0,59.0,78.0,73.0,63.0,66.0,65.0,78.0,81.0,73.0,90.0,86.0,116.0,94.0,80.0,88.0,98.0,87.0,80.0,91.0,84.0,72.0,89.0,84.0,68.0,49.0,67.0,59.0,55.0,58.0,51.0,64.0,60.0,73.0,59.0,45.0,60.0,60.0,56.0,51.0,52.0,44.0,50.0,40.0,56.0,43.0,50.0,36.0,40.0,32.0,20.0,25.0,23.0,25.0,35.0,33.0,22.0,15.0,20.0,19.0,15.0,6.0,3.0,11.0,5.0,2.0,8.0,2.0,2.0,4.0,2.0,,,2.0 P84030,60.0,75.0,99.0,84.0,86.0,95.0,99.0,97.0,101.0,102.0,109.0,100.0,103.0,142.0,125.0,112.0,112.0,124.0,111.0,103.0,111.0,91.0,101.0,115.0,121.0,117.0,133.0,143.0,122.0,113.0,117.0,121.0,98.0,116.0,119.0,123.0,125.0,132.0,132.0,122.0,116.0,125.0,119.0,106.0,124.0,121.0,103.0,105.0,93.0,99.0,103.0,71.0,84.0,70.0,62.0,67.0,73.0,71.0,82.0,58.0,56.0,48.0,56.0,40.0,32.0,52.0,41.0,50.0,32.0,31.0,25.0,24.0,23.0,30.0,25.0,18.0,17.0,27.0,17.0,15.0,11.0,12.0,9.0,11.0,9.0,12.0,10.0,8.0,8.0,8.0,3.0,2.0,4.0,3.0,3.0,2.0 P84032,31.0,28.0,34.0,45.0,35.0,34.0,51.0,31.0,42.0,49.0,46.0,52.0,49.0,45.0,70.0,56.0,46.0,60.0,42.0,47.0,43.0,38.0,36.0,31.0,33.0,40.0,42.0,34.0,41.0,45.0,39.0,44.0,48.0,41.0,48.0,48.0,49.0,50.0,42.0,44.0,50.0,56.0,49.0,36.0,41.0,52.0,51.0,33.0,44.0,43.0,39.0,49.0,32.0,45.0,26.0,48.0,32.0,40.0,29.0,54.0,47.0,41.0,45.0,34.0,42.0,21.0,17.0,21.0,17.0,24.0,23.0,25.0,20.0,16.0,14.0,13.0,18.0,18.0,23.0,13.0,12.0,6.0,10.0,6.0,5.0,3.0,5.0,5.0,4.0,4.0,,,,,1.0,1.0 P84033,19.0,21.0,22.0,28.0,34.0,29.0,39.0,21.0,33.0,23.0,34.0,26.0,30.0,33.0,34.0,29.0,32.0,29.0,32.0,23.0,25.0,29.0,36.0,23.0,34.0,40.0,30.0,30.0,49.0,24.0,37.0,27.0,24.0,42.0,43.0,35.0,29.0,37.0,37.0,36.0,36.0,33.0,48.0,34.0,32.0,39.0,30.0,28.0,27.0,27.0,22.0,21.0,35.0,23.0,29.0,32.0,31.0,31.0,40.0,26.0,22.0,22.0,22.0,30.0,23.0,16.0,17.0,20.0,23.0,16.0,19.0,20.0,17.0,11.0,17.0,21.0,9.0,20.0,14.0,5.0,11.0,7.0,5.0,5.0,3.0,3.0,4.0,2.0,2.0,2.0,,2.0,1.0,,1.0, P84034,73.0,74.0,81.0,68.0,83.0,65.0,72.0,86.0,96.0,95.0,85.0,91.0,91.0,87.0,74.0,98.0,99.0,69.0,98.0,77.0,50.0,64.0,58.0,75.0,80.0,99.0,105.0,141.0,126.0,135.0,146.0,135.0,157.0,134.0,154.0,158.0,155.0,160.0,144.0,155.0,144.0,151.0,162.0,172.0,139.0,170.0,172.0,144.0,146.0,111.0,121.0,126.0,128.0,112.0,118.0,107.0,109.0,102.0,109.0,97.0,98.0,90.0,81.0,85.0,95.0,85.0,63.0,65.0,72.0,53.0,69.0,62.0,68.0,53.0,61.0,58.0,47.0,57.0,52.0,32.0,42.0,32.0,25.0,17.0,22.0,24.0,15.0,20.0,16.0,13.0,9.0,4.0,5.0,4.0,4.0,5.0 P84035,42.0,37.0,43.0,37.0,42.0,50.0,55.0,61.0,63.0,41.0,52.0,64.0,70.0,60.0,65.0,55.0,35.0,56.0,167.0,305.0,355.0,336.0,338.0,323.0,247.0,206.0,164.0,193.0,181.0,202.0,190.0,160.0,166.0,154.0,147.0,143.0,134.0,127.0,129.0,143.0,129.0,132.0,129.0,124.0,142.0,127.0,128.0,107.0,111.0,111.0,91.0,102.0,101.0,84.0,82.0,70.0,84.0,75.0,56.0,50.0,70.0,61.0,59.0,61.0,60.0,55.0,44.0,62.0,59.0,53.0,52.0,43.0,39.0,40.0,39.0,38.0,35.0,30.0,35.0,25.0,19.0,19.0,19.0,19.0,23.0,17.0,13.0,7.0,6.0,13.0,5.0,5.0,5.0,2.0,2.0,9.0 P84037,22.0,24.0,23.0,22.0,29.0,27.0,27.0,34.0,35.0,32.0,38.0,50.0,46.0,63.0,46.0,49.0,50.0,52.0,49.0,44.0,41.0,55.0,43.0,62.0,51.0,56.0,79.0,58.0,82.0,77.0,70.0,74.0,79.0,69.0,69.0,64.0,58.0,62.0,70.0,54.0,57.0,51.0,52.0,56.0,53.0,59.0,62.0,57.0,54.0,67.0,74.0,56.0,47.0,54.0,53.0,52.0,37.0,46.0,37.0,41.0,30.0,34.0,22.0,22.0,28.0,21.0,15.0,16.0,13.0,14.0,14.0,11.0,11.0,13.0,6.0,10.0,6.0,13.0,10.0,5.0,8.0,4.0,3.0,5.0,3.0,2.0,2.0,4.0,2.0,3.0,3.0,2.0,4.0,3.0,,8.0 P84038,80.0,73.0,86.0,63.0,72.0,86.0,87.0,81.0,84.0,90.0,80.0,85.0,86.0,95.0,65.0,90.0,72.0,73.0,73.0,58.0,85.0,67.0,78.0,90.0,84.0,112.0,102.0,130.0,146.0,125.0,129.0,143.0,143.0,150.0,157.0,145.0,147.0,126.0,145.0,143.0,141.0,98.0,141.0,146.0,124.0,120.0,101.0,110.0,86.0,88.0,80.0,79.0,83.0,84.0,70.0,61.0,73.0,71.0,62.0,82.0,64.0,66.0,56.0,40.0,49.0,39.0,43.0,51.0,33.0,43.0,39.0,35.0,26.0,31.0,28.0,18.0,28.0,19.0,19.0,15.0,19.0,7.0,9.0,10.0,7.0,8.0,6.0,11.0,2.0,4.0,2.0,3.0,3.0,5.0,1.0,2.0 P84039,53.0,70.0,55.0,60.0,62.0,58.0,58.0,48.0,44.0,50.0,40.0,52.0,54.0,51.0,50.0,55.0,73.0,82.0,95.0,117.0,123.0,111.0,160.0,172.0,199.0,233.0,237.0,200.0,205.0,177.0,162.0,162.0,136.0,132.0,160.0,141.0,101.0,119.0,106.0,125.0,116.0,94.0,96.0,100.0,85.0,98.0,99.0,76.0,69.0,88.0,81.0,69.0,64.0,68.0,77.0,71.0,66.0,89.0,55.0,63.0,83.0,64.0,58.0,46.0,43.0,43.0,43.0,32.0,34.0,30.0,31.0,23.0,23.0,13.0,14.0,15.0,17.0,10.0,10.0,10.0,14.0,1.0,7.0,11.0,7.0,12.0,5.0,5.0,7.0,5.0,6.0,1.0,,,2.0,4.0 P84040,46.0,49.0,53.0,57.0,74.0,60.0,56.0,75.0,69.0,70.0,60.0,91.0,75.0,65.0,63.0,60.0,77.0,80.0,57.0,64.0,58.0,43.0,46.0,42.0,50.0,42.0,48.0,53.0,44.0,49.0,46.0,52.0,52.0,47.0,62.0,58.0,54.0,52.0,53.0,68.0,50.0,74.0,61.0,55.0,57.0,67.0,45.0,44.0,40.0,60.0,55.0,49.0,51.0,51.0,61.0,51.0,51.0,48.0,54.0,32.0,51.0,44.0,32.0,35.0,27.0,31.0,28.0,25.0,11.0,22.0,15.0,19.0,16.0,17.0,19.0,17.0,16.0,14.0,19.0,9.0,9.0,12.0,9.0,2.0,8.0,5.0,5.0,4.0,3.0,2.0,3.0,3.0,,3.0,2.0,4.0 P84041,46.0,38.0,48.0,39.0,59.0,53.0,59.0,52.0,61.0,71.0,68.0,70.0,74.0,66.0,67.0,55.0,58.0,67.0,53.0,53.0,60.0,39.0,46.0,46.0,42.0,63.0,48.0,49.0,60.0,62.0,79.0,67.0,66.0,61.0,74.0,73.0,60.0,70.0,76.0,77.0,60.0,62.0,84.0,60.0,62.0,69.0,66.0,45.0,52.0,44.0,50.0,32.0,52.0,49.0,47.0,58.0,54.0,48.0,38.0,48.0,50.0,35.0,29.0,40.0,36.0,30.0,36.0,41.0,30.0,30.0,26.0,22.0,17.0,22.0,23.0,17.0,23.0,23.0,20.0,7.0,16.0,13.0,6.0,9.0,15.0,8.0,6.0,8.0,2.0,4.0,3.0,1.0,2.0,1.0,,1.0 P84042,72.0,64.0,77.0,74.0,74.0,85.0,101.0,99.0,91.0,90.0,91.0,93.0,92.0,76.0,94.0,108.0,82.0,87.0,97.0,81.0,81.0,87.0,71.0,69.0,59.0,97.0,76.0,72.0,73.0,75.0,67.0,93.0,85.0,92.0,79.0,85.0,95.0,111.0,96.0,94.0,84.0,68.0,89.0,91.0,93.0,100.0,78.0,72.0,60.0,82.0,59.0,60.0,53.0,50.0,68.0,60.0,59.0,46.0,61.0,50.0,54.0,46.0,44.0,50.0,38.0,39.0,44.0,46.0,42.0,31.0,33.0,32.0,30.0,31.0,32.0,14.0,20.0,19.0,19.0,13.0,16.0,13.0,16.0,10.0,10.0,6.0,5.0,8.0,10.0,2.0,8.0,,1.0,1.0,2.0,2.0 P84043,41.0,59.0,40.0,46.0,64.0,59.0,61.0,73.0,78.0,74.0,90.0,90.0,71.0,104.0,90.0,69.0,75.0,79.0,87.0,91.0,66.0,65.0,61.0,59.0,64.0,47.0,51.0,48.0,53.0,53.0,70.0,72.0,77.0,76.0,86.0,79.0,86.0,74.0,87.0,92.0,97.0,104.0,103.0,87.0,92.0,82.0,72.0,56.0,55.0,66.0,75.0,63.0,58.0,54.0,63.0,58.0,70.0,44.0,62.0,54.0,50.0,46.0,38.0,37.0,44.0,30.0,34.0,33.0,28.0,29.0,24.0,33.0,24.0,34.0,18.0,22.0,21.0,18.0,18.0,13.0,14.0,12.0,11.0,5.0,4.0,7.0,5.0,5.0,,6.0,4.0,2.0,1.0,1.0,2.0,4.0 P84045,24.0,28.0,21.0,34.0,23.0,30.0,37.0,31.0,46.0,38.0,41.0,39.0,30.0,45.0,44.0,37.0,45.0,40.0,32.0,39.0,21.0,27.0,29.0,28.0,37.0,35.0,29.0,44.0,39.0,32.0,36.0,40.0,37.0,62.0,36.0,58.0,39.0,48.0,47.0,40.0,46.0,51.0,34.0,44.0,28.0,43.0,40.0,44.0,26.0,36.0,28.0,39.0,27.0,23.0,41.0,38.0,34.0,51.0,45.0,42.0,30.0,44.0,23.0,17.0,33.0,28.0,25.0,26.0,21.0,25.0,11.0,22.0,19.0,20.0,21.0,16.0,16.0,13.0,13.0,13.0,10.0,11.0,11.0,9.0,5.0,6.0,2.0,6.0,1.0,3.0,4.0,4.0,,1.0,,2.0 P84046,129.0,127.0,113.0,121.0,117.0,139.0,134.0,147.0,169.0,167.0,142.0,162.0,135.0,163.0,141.0,168.0,170.0,184.0,141.0,142.0,173.0,162.0,180.0,208.0,216.0,243.0,242.0,237.0,219.0,227.0,218.0,197.0,225.0,179.0,199.0,231.0,226.0,212.0,216.0,208.0,191.0,200.0,185.0,198.0,197.0,176.0,164.0,184.0,167.0,147.0,175.0,154.0,137.0,140.0,140.0,134.0,107.0,109.0,105.0,101.0,115.0,79.0,85.0,79.0,96.0,71.0,74.0,72.0,70.0,52.0,57.0,32.0,42.0,38.0,37.0,19.0,21.0,31.0,20.0,19.0,19.0,14.0,14.0,8.0,10.0,6.0,10.0,6.0,6.0,5.0,3.0,2.0,3.0,1.0,,2.0 P84047,15.0,25.0,26.0,33.0,33.0,40.0,29.0,36.0,45.0,46.0,46.0,34.0,47.0,52.0,41.0,50.0,33.0,43.0,42.0,47.0,45.0,36.0,25.0,37.0,31.0,30.0,33.0,31.0,25.0,31.0,36.0,36.0,50.0,32.0,46.0,43.0,49.0,39.0,30.0,38.0,40.0,43.0,40.0,30.0,46.0,32.0,38.0,33.0,23.0,36.0,38.0,43.0,29.0,42.0,37.0,45.0,45.0,38.0,39.0,34.0,35.0,31.0,43.0,41.0,35.0,37.0,22.0,34.0,31.0,23.0,30.0,20.0,21.0,23.0,21.0,22.0,20.0,18.0,19.0,12.0,14.0,14.0,14.0,6.0,7.0,1.0,3.0,6.0,2.0,1.0,1.0,2.0,2.0,2.0,,1.0 P84048,23.0,29.0,41.0,28.0,30.0,30.0,49.0,39.0,43.0,40.0,41.0,46.0,42.0,35.0,61.0,51.0,53.0,56.0,44.0,33.0,39.0,40.0,39.0,39.0,41.0,39.0,42.0,46.0,57.0,46.0,45.0,48.0,49.0,72.0,57.0,66.0,72.0,51.0,56.0,46.0,47.0,47.0,56.0,49.0,57.0,47.0,40.0,40.0,41.0,41.0,39.0,40.0,32.0,31.0,42.0,39.0,41.0,54.0,60.0,43.0,38.0,44.0,42.0,42.0,36.0,34.0,30.0,41.0,37.0,34.0,34.0,26.0,28.0,33.0,39.0,21.0,28.0,20.0,23.0,13.0,16.0,9.0,8.0,10.0,10.0,7.0,6.0,6.0,4.0,,3.0,2.0,2.0,1.0,,1.0 P84049,64.0,54.0,56.0,70.0,67.0,71.0,78.0,73.0,73.0,102.0,85.0,101.0,77.0,105.0,89.0,95.0,89.0,77.0,81.0,63.0,73.0,66.0,50.0,59.0,67.0,68.0,78.0,63.0,58.0,73.0,75.0,86.0,57.0,71.0,106.0,86.0,73.0,77.0,89.0,77.0,82.0,81.0,98.0,65.0,72.0,69.0,69.0,59.0,58.0,62.0,71.0,66.0,76.0,73.0,77.0,55.0,67.0,61.0,60.0,62.0,67.0,64.0,58.0,56.0,49.0,45.0,53.0,40.0,48.0,42.0,34.0,45.0,44.0,30.0,33.0,43.0,43.0,35.0,35.0,23.0,20.0,24.0,16.0,20.0,15.0,12.0,10.0,4.0,9.0,7.0,6.0,7.0,4.0,3.0,2.0,5.0 P84050,48.0,48.0,48.0,54.0,53.0,59.0,49.0,56.0,56.0,76.0,70.0,75.0,57.0,73.0,80.0,69.0,77.0,62.0,73.0,73.0,58.0,51.0,82.0,62.0,79.0,66.0,77.0,63.0,84.0,74.0,67.0,52.0,49.0,59.0,59.0,58.0,64.0,49.0,69.0,65.0,74.0,66.0,54.0,47.0,48.0,48.0,46.0,54.0,56.0,37.0,39.0,51.0,49.0,43.0,49.0,51.0,36.0,35.0,37.0,42.0,39.0,41.0,39.0,26.0,25.0,32.0,24.0,25.0,22.0,26.0,22.0,18.0,14.0,10.0,16.0,15.0,9.0,9.0,12.0,5.0,10.0,8.0,7.0,2.0,4.0,,3.0,3.0,2.0,1.0,3.0,1.0,1.0,,, P84051,33.0,22.0,44.0,36.0,34.0,37.0,39.0,45.0,33.0,43.0,46.0,46.0,37.0,57.0,47.0,57.0,41.0,47.0,56.0,36.0,39.0,34.0,38.0,32.0,37.0,42.0,38.0,45.0,45.0,42.0,47.0,46.0,59.0,45.0,38.0,42.0,49.0,45.0,36.0,38.0,44.0,44.0,51.0,38.0,34.0,41.0,36.0,31.0,43.0,39.0,40.0,32.0,34.0,36.0,41.0,42.0,33.0,33.0,40.0,35.0,43.0,37.0,36.0,27.0,29.0,20.0,32.0,28.0,29.0,18.0,14.0,21.0,14.0,28.0,15.0,17.0,12.0,13.0,20.0,9.0,14.0,7.0,8.0,7.0,5.0,9.0,3.0,7.0,2.0,1.0,2.0,1.0,1.0,1.0,,1.0 P84052,39.0,44.0,49.0,53.0,50.0,46.0,42.0,69.0,63.0,58.0,54.0,64.0,50.0,66.0,54.0,59.0,52.0,55.0,57.0,49.0,55.0,53.0,38.0,48.0,47.0,56.0,38.0,50.0,57.0,67.0,46.0,46.0,69.0,53.0,57.0,82.0,46.0,62.0,63.0,54.0,52.0,66.0,51.0,55.0,73.0,58.0,45.0,48.0,40.0,56.0,47.0,47.0,54.0,59.0,46.0,52.0,45.0,56.0,45.0,50.0,63.0,44.0,53.0,37.0,36.0,32.0,31.0,33.0,31.0,21.0,18.0,20.0,14.0,16.0,16.0,13.0,9.0,14.0,11.0,9.0,10.0,10.0,7.0,10.0,9.0,11.0,3.0,17.0,1.0,3.0,,2.0,,2.0,2.0,1.0 P84053,31.0,47.0,59.0,51.0,49.0,50.0,51.0,46.0,55.0,47.0,53.0,56.0,47.0,53.0,40.0,55.0,64.0,54.0,62.0,53.0,45.0,47.0,55.0,59.0,66.0,60.0,71.0,73.0,84.0,65.0,69.0,65.0,73.0,86.0,85.0,74.0,92.0,74.0,77.0,67.0,93.0,78.0,77.0,71.0,78.0,100.0,91.0,97.0,92.0,64.0,51.0,54.0,70.0,66.0,58.0,50.0,52.0,52.0,52.0,47.0,50.0,36.0,41.0,26.0,35.0,22.0,25.0,25.0,32.0,22.0,27.0,21.0,22.0,13.0,16.0,19.0,19.0,17.0,9.0,11.0,10.0,3.0,5.0,10.0,5.0,6.0,5.0,5.0,4.0,3.0,3.0,,,1.0,,1.0 P84054,20.0,33.0,29.0,41.0,30.0,31.0,33.0,30.0,32.0,47.0,41.0,39.0,47.0,47.0,46.0,48.0,50.0,60.0,41.0,32.0,39.0,38.0,52.0,39.0,44.0,41.0,42.0,56.0,49.0,42.0,44.0,52.0,42.0,44.0,43.0,47.0,61.0,44.0,47.0,47.0,43.0,40.0,70.0,41.0,50.0,47.0,39.0,43.0,45.0,45.0,37.0,30.0,45.0,52.0,48.0,44.0,56.0,48.0,52.0,44.0,50.0,34.0,45.0,29.0,49.0,37.0,36.0,38.0,31.0,38.0,25.0,23.0,29.0,15.0,28.0,17.0,14.0,21.0,19.0,9.0,11.0,14.0,3.0,7.0,4.0,5.0,7.0,5.0,5.0,3.0,7.0,3.0,1.0,2.0,1.0,1.0 P84056,27.0,16.0,28.0,26.0,30.0,26.0,27.0,21.0,24.0,27.0,33.0,37.0,39.0,31.0,34.0,39.0,28.0,29.0,35.0,27.0,31.0,35.0,29.0,37.0,23.0,28.0,29.0,49.0,42.0,42.0,40.0,50.0,42.0,41.0,50.0,46.0,40.0,33.0,36.0,36.0,36.0,32.0,48.0,42.0,34.0,45.0,28.0,26.0,29.0,26.0,28.0,25.0,31.0,31.0,30.0,19.0,16.0,27.0,23.0,21.0,11.0,27.0,22.0,29.0,20.0,23.0,19.0,12.0,20.0,8.0,12.0,16.0,10.0,10.0,7.0,7.0,10.0,6.0,9.0,3.0,3.0,1.0,5.0,2.0,2.0,1.0,3.0,2.0,2.0,3.0,1.0,1.0,2.0,2.0,2.0,1.0 P84059,55.0,46.0,70.0,51.0,58.0,60.0,70.0,62.0,60.0,69.0,84.0,62.0,80.0,78.0,60.0,64.0,75.0,82.0,74.0,78.0,77.0,59.0,69.0,57.0,67.0,66.0,60.0,63.0,74.0,77.0,83.0,77.0,75.0,68.0,71.0,91.0,71.0,86.0,76.0,80.0,75.0,69.0,70.0,62.0,70.0,58.0,65.0,50.0,56.0,54.0,56.0,69.0,52.0,61.0,49.0,52.0,46.0,49.0,47.0,42.0,29.0,45.0,36.0,43.0,39.0,26.0,34.0,32.0,32.0,23.0,25.0,19.0,23.0,23.0,19.0,14.0,17.0,26.0,11.0,5.0,14.0,15.0,12.0,10.0,5.0,4.0,8.0,5.0,3.0,1.0,2.0,2.0,2.0,2.0,,4.0 P84061,24.0,25.0,32.0,28.0,34.0,37.0,41.0,32.0,37.0,45.0,30.0,41.0,41.0,50.0,36.0,43.0,47.0,33.0,44.0,35.0,27.0,27.0,20.0,33.0,27.0,36.0,41.0,22.0,39.0,38.0,36.0,31.0,53.0,43.0,55.0,44.0,43.0,60.0,41.0,35.0,48.0,44.0,39.0,47.0,57.0,41.0,47.0,34.0,40.0,61.0,27.0,44.0,38.0,30.0,47.0,37.0,42.0,41.0,37.0,36.0,35.0,41.0,41.0,30.0,36.0,23.0,30.0,40.0,34.0,35.0,31.0,35.0,24.0,17.0,14.0,23.0,25.0,20.0,18.0,14.0,18.0,10.0,9.0,5.0,7.0,4.0,4.0,5.0,5.0,5.0,2.0,2.0,,4.0,1.0,1.0 P84064,41.0,31.0,33.0,27.0,32.0,34.0,23.0,44.0,34.0,17.0,23.0,22.0,27.0,21.0,16.0,41.0,25.0,28.0,24.0,32.0,51.0,61.0,78.0,150.0,203.0,272.0,355.0,318.0,327.0,315.0,274.0,280.0,244.0,237.0,189.0,195.0,147.0,151.0,167.0,122.0,102.0,97.0,97.0,77.0,75.0,64.0,58.0,57.0,36.0,37.0,48.0,34.0,39.0,42.0,25.0,33.0,34.0,43.0,29.0,29.0,27.0,39.0,26.0,30.0,35.0,28.0,26.0,30.0,18.0,18.0,18.0,12.0,17.0,10.0,12.0,10.0,11.0,6.0,10.0,4.0,8.0,2.0,4.0,3.0,4.0,4.0,2.0,1.0,3.0,3.0,1.0,,1.0,,, P84065,27.0,25.0,30.0,17.0,25.0,36.0,38.0,42.0,47.0,49.0,38.0,44.0,44.0,36.0,47.0,38.0,34.0,41.0,46.0,36.0,21.0,24.0,18.0,28.0,28.0,33.0,32.0,28.0,28.0,30.0,23.0,40.0,27.0,30.0,36.0,36.0,44.0,28.0,27.0,36.0,44.0,26.0,22.0,34.0,38.0,43.0,24.0,35.0,29.0,32.0,32.0,26.0,36.0,23.0,23.0,22.0,31.0,19.0,28.0,34.0,23.0,18.0,15.0,28.0,22.0,24.0,16.0,23.0,8.0,17.0,17.0,5.0,9.0,9.0,11.0,10.0,10.0,4.0,12.0,1.0,4.0,3.0,3.0,2.0,4.0,3.0,4.0,2.0,,2.0,1.0,1.0,1.0,,1.0,1.0 P84066,33.0,40.0,27.0,34.0,27.0,39.0,41.0,29.0,47.0,54.0,54.0,42.0,52.0,61.0,53.0,50.0,64.0,45.0,53.0,52.0,46.0,47.0,51.0,45.0,49.0,62.0,58.0,72.0,64.0,59.0,60.0,72.0,61.0,65.0,67.0,82.0,68.0,72.0,63.0,52.0,74.0,80.0,57.0,53.0,60.0,59.0,64.0,48.0,63.0,42.0,49.0,59.0,57.0,57.0,42.0,48.0,54.0,50.0,44.0,51.0,42.0,54.0,37.0,38.0,36.0,30.0,30.0,37.0,35.0,35.0,26.0,20.0,15.0,21.0,23.0,14.0,21.0,18.0,11.0,19.0,15.0,12.0,10.0,11.0,8.0,4.0,5.0,8.0,4.0,7.0,6.0,2.0,2.0,3.0,3.0,8.0 P84067,55.0,48.0,43.0,44.0,45.0,42.0,52.0,42.0,41.0,56.0,67.0,50.0,63.0,51.0,66.0,52.0,70.0,61.0,56.0,53.0,51.0,53.0,47.0,53.0,39.0,51.0,54.0,64.0,61.0,43.0,72.0,57.0,62.0,76.0,64.0,51.0,64.0,61.0,55.0,64.0,58.0,61.0,55.0,42.0,58.0,47.0,54.0,49.0,41.0,51.0,40.0,46.0,46.0,57.0,49.0,54.0,50.0,70.0,59.0,52.0,65.0,59.0,56.0,52.0,45.0,44.0,42.0,39.0,47.0,28.0,47.0,34.0,35.0,35.0,33.0,25.0,29.0,43.0,27.0,18.0,22.0,31.0,16.0,13.0,15.0,18.0,9.0,15.0,15.0,8.0,4.0,7.0,8.0,9.0,1.0,2.0 P84068,108.0,104.0,107.0,109.0,119.0,121.0,112.0,115.0,132.0,131.0,120.0,124.0,122.0,113.0,116.0,125.0,125.0,140.0,113.0,107.0,101.0,89.0,105.0,124.0,113.0,154.0,142.0,167.0,194.0,197.0,191.0,195.0,224.0,206.0,195.0,187.0,218.0,228.0,219.0,220.0,218.0,202.0,187.0,220.0,222.0,182.0,199.0,186.0,176.0,188.0,180.0,173.0,170.0,161.0,170.0,145.0,185.0,158.0,147.0,128.0,142.0,141.0,130.0,105.0,125.0,93.0,73.0,101.0,97.0,80.0,67.0,72.0,68.0,74.0,55.0,45.0,69.0,53.0,55.0,34.0,25.0,33.0,22.0,19.0,19.0,19.0,15.0,19.0,12.0,10.0,12.0,6.0,7.0,6.0,3.0,5.0 P84070,41.0,52.0,57.0,61.0,66.0,67.0,71.0,57.0,79.0,78.0,71.0,67.0,65.0,57.0,65.0,62.0,61.0,68.0,44.0,62.0,47.0,33.0,35.0,52.0,54.0,51.0,46.0,70.0,63.0,72.0,59.0,72.0,69.0,63.0,74.0,75.0,83.0,66.0,69.0,76.0,63.0,66.0,58.0,63.0,67.0,61.0,57.0,58.0,57.0,61.0,44.0,45.0,37.0,45.0,67.0,51.0,48.0,50.0,48.0,58.0,44.0,47.0,47.0,39.0,20.0,35.0,32.0,28.0,33.0,20.0,28.0,24.0,22.0,29.0,13.0,17.0,18.0,23.0,15.0,11.0,20.0,18.0,10.0,8.0,6.0,6.0,11.0,2.0,1.0,1.0,3.0,1.0,1.0,,,1.0 P84071,16.0,15.0,19.0,25.0,20.0,17.0,24.0,28.0,14.0,21.0,22.0,26.0,20.0,21.0,14.0,30.0,20.0,20.0,21.0,28.0,24.0,12.0,17.0,21.0,28.0,38.0,38.0,37.0,52.0,40.0,45.0,44.0,43.0,45.0,42.0,38.0,42.0,35.0,35.0,33.0,36.0,46.0,40.0,42.0,33.0,35.0,41.0,30.0,35.0,38.0,22.0,33.0,28.0,32.0,42.0,34.0,33.0,36.0,32.0,43.0,37.0,30.0,28.0,27.0,23.0,23.0,25.0,16.0,19.0,13.0,15.0,20.0,13.0,24.0,14.0,18.0,13.0,13.0,9.0,8.0,9.0,6.0,4.0,6.0,5.0,2.0,7.0,7.0,5.0,1.0,4.0,,,1.0,1.0,4.0 P84072,93.0,102.0,116.0,111.0,108.0,139.0,122.0,122.0,138.0,147.0,130.0,147.0,139.0,142.0,119.0,143.0,128.0,136.0,310.0,616.0,922.0,866.0,811.0,709.0,749.0,741.0,678.0,647.0,629.0,521.0,503.0,407.0,353.0,363.0,317.0,328.0,285.0,302.0,306.0,246.0,228.0,233.0,212.0,194.0,215.0,212.0,197.0,172.0,145.0,132.0,104.0,99.0,123.0,112.0,83.0,86.0,75.0,69.0,50.0,64.0,52.0,53.0,42.0,41.0,51.0,45.0,41.0,30.0,48.0,33.0,26.0,19.0,32.0,22.0,29.0,19.0,19.0,13.0,10.0,13.0,9.0,13.0,9.0,4.0,5.0,3.0,7.0,4.0,8.0,6.0,,4.0,2.0,1.0,, P84074,48.0,65.0,76.0,58.0,65.0,78.0,77.0,70.0,93.0,87.0,81.0,103.0,96.0,83.0,104.0,89.0,100.0,88.0,101.0,78.0,114.0,83.0,74.0,93.0,83.0,104.0,103.0,93.0,92.0,110.0,93.0,100.0,106.0,91.0,99.0,114.0,88.0,101.0,107.0,109.0,96.0,123.0,105.0,112.0,127.0,116.0,112.0,106.0,111.0,115.0,112.0,103.0,86.0,93.0,75.0,64.0,63.0,65.0,48.0,55.0,45.0,52.0,46.0,35.0,47.0,36.0,31.0,26.0,24.0,35.0,34.0,19.0,23.0,17.0,17.0,22.0,15.0,11.0,10.0,7.0,10.0,15.0,7.0,6.0,4.0,6.0,9.0,2.0,6.0,3.0,2.0,,3.0,,1.0,1.0 P84605,8.0,8.0,8.0,19.0,12.0,18.0,13.0,19.0,14.0,11.0,18.0,11.0,24.0,22.0,22.0,16.0,19.0,16.0,15.0,17.0,13.0,14.0,7.0,14.0,11.0,16.0,11.0,8.0,13.0,18.0,15.0,15.0,8.0,17.0,11.0,25.0,14.0,20.0,14.0,17.0,20.0,14.0,15.0,19.0,21.0,25.0,16.0,19.0,15.0,24.0,20.0,27.0,20.0,16.0,24.0,18.0,16.0,16.0,12.0,13.0,16.0,6.0,8.0,7.0,12.0,10.0,10.0,10.0,11.0,1.0,7.0,3.0,7.0,4.0,4.0,3.0,2.0,3.0,4.0,1.0,3.0,2.0,3.0,1.0,3.0,1.0,,1.0,,,,,,2.0,, P84611,24.0,22.0,35.0,25.0,34.0,30.0,27.0,27.0,29.0,30.0,29.0,45.0,33.0,37.0,38.0,28.0,44.0,42.0,48.0,48.0,57.0,60.0,100.0,106.0,127.0,169.0,148.0,145.0,118.0,103.0,115.0,110.0,103.0,83.0,79.0,87.0,75.0,71.0,56.0,58.0,59.0,60.0,45.0,65.0,52.0,65.0,53.0,44.0,40.0,42.0,36.0,68.0,38.0,38.0,32.0,29.0,47.0,39.0,45.0,36.0,39.0,35.0,40.0,31.0,25.0,30.0,37.0,29.0,29.0,17.0,22.0,20.0,20.0,15.0,9.0,17.0,11.0,11.0,8.0,6.0,8.0,9.0,12.0,6.0,4.0,7.0,1.0,5.0,7.0,,1.0,1.0,,1.0,1.0,2.0 P84626,23.0,25.0,11.0,17.0,22.0,20.0,18.0,22.0,37.0,27.0,25.0,23.0,30.0,37.0,26.0,28.0,33.0,26.0,28.0,53.0,60.0,78.0,81.0,88.0,105.0,117.0,133.0,140.0,128.0,120.0,87.0,96.0,76.0,96.0,67.0,84.0,64.0,79.0,62.0,64.0,67.0,54.0,57.0,49.0,45.0,53.0,32.0,36.0,40.0,34.0,29.0,40.0,22.0,31.0,24.0,25.0,29.0,33.0,23.0,16.0,19.0,22.0,14.0,16.0,13.0,10.0,8.0,15.0,18.0,14.0,9.0,9.0,7.0,9.0,6.0,8.0,2.0,6.0,2.0,10.0,3.0,4.0,3.0,4.0,5.0,5.0,1.0,4.0,1.0,2.0,2.0,,,,, P84630,48.0,49.0,46.0,34.0,46.0,58.0,68.0,55.0,70.0,68.0,69.0,72.0,75.0,65.0,73.0,68.0,73.0,92.0,283.0,536.0,647.0,422.0,371.0,439.0,578.0,570.0,573.0,544.0,494.0,412.0,359.0,298.0,294.0,257.0,258.0,210.0,203.0,182.0,184.0,165.0,155.0,142.0,147.0,151.0,151.0,140.0,98.0,124.0,88.0,101.0,97.0,96.0,84.0,72.0,86.0,89.0,64.0,67.0,80.0,79.0,61.0,71.0,68.0,49.0,50.0,48.0,41.0,25.0,33.0,19.0,26.0,23.0,13.0,17.0,10.0,10.0,22.0,15.0,13.0,4.0,11.0,8.0,4.0,7.0,4.0,7.0,2.0,4.0,4.0,,1.0,1.0,,3.0,,1.0 P84635,33.0,38.0,26.0,39.0,34.0,49.0,43.0,37.0,47.0,45.0,47.0,36.0,46.0,52.0,45.0,39.0,46.0,34.0,40.0,34.0,35.0,35.0,37.0,38.0,45.0,50.0,53.0,66.0,57.0,55.0,65.0,53.0,41.0,48.0,50.0,50.0,47.0,59.0,65.0,52.0,65.0,42.0,47.0,40.0,52.0,42.0,37.0,41.0,34.0,26.0,23.0,30.0,18.0,25.0,29.0,32.0,33.0,23.0,13.0,21.0,17.0,20.0,14.0,14.0,16.0,16.0,19.0,12.0,9.0,14.0,11.0,11.0,6.0,5.0,9.0,8.0,4.0,3.0,5.0,2.0,5.0,3.0,4.0,5.0,4.0,,2.0,3.0,2.0,2.0,,,1.0,,1.0, P84637,16.0,18.0,14.0,14.0,21.0,20.0,28.0,21.0,23.0,21.0,22.0,24.0,21.0,28.0,29.0,24.0,24.0,23.0,22.0,21.0,11.0,29.0,11.0,22.0,20.0,28.0,18.0,26.0,19.0,11.0,17.0,25.0,24.0,21.0,21.0,20.0,16.0,20.0,35.0,25.0,25.0,15.0,16.0,23.0,24.0,23.0,17.0,13.0,22.0,13.0,12.0,16.0,19.0,23.0,18.0,27.0,22.0,19.0,20.0,11.0,16.0,17.0,18.0,11.0,15.0,20.0,16.0,18.0,17.0,8.0,11.0,7.0,3.0,9.0,5.0,4.0,4.0,8.0,12.0,6.0,13.0,3.0,5.0,4.0,1.0,2.0,2.0,1.0,1.0,,1.0,2.0,1.0,,4.0,1.0 P84639,22.0,14.0,19.0,12.0,14.0,10.0,18.0,13.0,14.0,18.0,19.0,12.0,15.0,8.0,14.0,20.0,25.0,17.0,29.0,33.0,59.0,87.0,99.0,86.0,68.0,81.0,63.0,64.0,54.0,59.0,52.0,44.0,39.0,43.0,27.0,26.0,47.0,50.0,38.0,29.0,26.0,24.0,19.0,30.0,23.0,20.0,23.0,22.0,21.0,30.0,22.0,17.0,16.0,17.0,13.0,17.0,24.0,14.0,11.0,12.0,17.0,14.0,16.0,13.0,8.0,12.0,13.0,14.0,9.0,6.0,14.0,9.0,9.0,7.0,7.0,7.0,3.0,7.0,4.0,5.0,5.0,3.0,6.0,4.0,,2.0,2.0,3.0,,2.0,,1.0,1.0,,, P84644,42.0,64.0,47.0,59.0,59.0,55.0,44.0,55.0,45.0,77.0,65.0,61.0,64.0,72.0,68.0,74.0,64.0,76.0,75.0,70.0,80.0,79.0,75.0,85.0,68.0,75.0,64.0,76.0,71.0,57.0,67.0,63.0,65.0,58.0,64.0,58.0,51.0,62.0,47.0,53.0,59.0,52.0,67.0,48.0,57.0,54.0,64.0,56.0,57.0,69.0,60.0,46.0,51.0,42.0,45.0,62.0,44.0,39.0,45.0,35.0,24.0,31.0,20.0,24.0,25.0,20.0,23.0,19.0,16.0,19.0,17.0,8.0,14.0,8.0,6.0,13.0,5.0,7.0,10.0,5.0,2.0,6.0,9.0,5.0,3.0,2.0,3.0,1.0,,1.0,1.0,2.0,1.0,1.0,1.0,2.0 P84645,36.0,34.0,39.0,35.0,36.0,27.0,37.0,35.0,45.0,42.0,45.0,52.0,45.0,44.0,56.0,41.0,55.0,54.0,41.0,43.0,59.0,48.0,55.0,35.0,47.0,59.0,58.0,51.0,53.0,56.0,56.0,45.0,54.0,57.0,48.0,52.0,55.0,68.0,45.0,50.0,56.0,53.0,46.0,65.0,56.0,45.0,42.0,36.0,55.0,36.0,32.0,49.0,42.0,41.0,48.0,48.0,45.0,33.0,40.0,35.0,37.0,35.0,34.0,25.0,34.0,26.0,27.0,30.0,27.0,26.0,18.0,16.0,16.0,18.0,17.0,8.0,18.0,15.0,14.0,7.0,4.0,8.0,8.0,2.0,4.0,2.0,7.0,3.0,3.0,5.0,2.0,1.0,1.0,1.0,,2.0 P84650,34.0,33.0,27.0,34.0,33.0,35.0,28.0,39.0,33.0,26.0,22.0,34.0,39.0,45.0,32.0,47.0,26.0,57.0,36.0,34.0,45.0,35.0,24.0,33.0,42.0,50.0,42.0,58.0,68.0,63.0,63.0,65.0,59.0,54.0,47.0,55.0,63.0,74.0,60.0,59.0,56.0,38.0,41.0,50.0,56.0,45.0,47.0,30.0,43.0,37.0,41.0,47.0,30.0,44.0,41.0,45.0,36.0,45.0,40.0,34.0,38.0,24.0,35.0,32.0,25.0,30.0,23.0,24.0,21.0,23.0,19.0,17.0,23.0,12.0,15.0,12.0,9.0,14.0,9.0,7.0,10.0,7.0,7.0,4.0,1.0,8.0,8.0,3.0,5.0,4.0,4.0,3.0,4.0,,2.0,2.0 P84651,34.0,39.0,45.0,34.0,35.0,43.0,53.0,43.0,47.0,52.0,50.0,44.0,55.0,26.0,51.0,28.0,37.0,37.0,26.0,32.0,22.0,28.0,29.0,24.0,33.0,30.0,25.0,23.0,39.0,36.0,42.0,55.0,47.0,50.0,62.0,55.0,58.0,57.0,70.0,60.0,55.0,56.0,52.0,41.0,52.0,66.0,23.0,31.0,35.0,33.0,28.0,35.0,36.0,23.0,20.0,23.0,26.0,28.0,30.0,33.0,26.0,27.0,33.0,23.0,23.0,25.0,16.0,19.0,5.0,15.0,20.0,17.0,17.0,18.0,15.0,15.0,11.0,8.0,12.0,8.0,3.0,3.0,4.0,2.0,6.0,3.0,3.0,1.0,2.0,,,2.0,,1.0,,2.0 P84663,42.0,27.0,31.0,36.0,45.0,31.0,47.0,39.0,40.0,35.0,46.0,45.0,40.0,43.0,40.0,39.0,41.0,38.0,38.0,25.0,32.0,39.0,44.0,41.0,38.0,35.0,33.0,43.0,39.0,59.0,43.0,49.0,65.0,65.0,51.0,49.0,56.0,54.0,54.0,49.0,48.0,60.0,65.0,39.0,57.0,43.0,40.0,49.0,34.0,35.0,43.0,28.0,34.0,40.0,39.0,35.0,22.0,35.0,30.0,32.0,30.0,31.0,33.0,30.0,34.0,35.0,24.0,31.0,19.0,13.0,9.0,18.0,9.0,9.0,8.0,9.0,12.0,13.0,10.0,7.0,2.0,3.0,3.0,7.0,4.0,2.0,1.0,4.0,1.0,2.0,1.0,3.0,1.0,,1.0, P84665,18.0,14.0,15.0,12.0,15.0,21.0,23.0,19.0,19.0,14.0,16.0,20.0,20.0,17.0,29.0,22.0,25.0,22.0,27.0,39.0,69.0,83.0,91.0,72.0,99.0,72.0,66.0,61.0,72.0,69.0,57.0,64.0,50.0,46.0,48.0,47.0,48.0,38.0,42.0,42.0,42.0,37.0,46.0,38.0,50.0,33.0,21.0,30.0,34.0,21.0,19.0,33.0,33.0,22.0,31.0,32.0,25.0,28.0,26.0,24.0,32.0,27.0,22.0,20.0,22.0,16.0,24.0,22.0,10.0,17.0,11.0,15.0,11.0,12.0,5.0,5.0,8.0,10.0,5.0,3.0,3.0,,2.0,2.0,3.0,1.0,4.0,1.0,3.0,1.0,1.0,1.0,,3.0,,2.0 P84669,64.0,75.0,60.0,55.0,60.0,67.0,63.0,63.0,53.0,69.0,66.0,63.0,66.0,71.0,64.0,63.0,57.0,80.0,162.0,242.0,231.0,222.0,241.0,236.0,241.0,300.0,328.0,354.0,310.0,342.0,290.0,309.0,263.0,246.0,268.0,224.0,226.0,220.0,200.0,210.0,172.0,174.0,163.0,130.0,147.0,134.0,114.0,96.0,93.0,100.0,79.0,81.0,73.0,63.0,71.0,74.0,82.0,45.0,57.0,51.0,53.0,44.0,56.0,36.0,29.0,32.0,34.0,29.0,21.0,30.0,28.0,22.0,21.0,10.0,13.0,13.0,11.0,5.0,7.0,4.0,5.0,9.0,5.0,3.0,5.0,1.0,3.0,,5.0,3.0,3.0,4.0,,1.0,,2.0 P84672,19.0,20.0,24.0,18.0,19.0,19.0,34.0,18.0,24.0,24.0,28.0,28.0,27.0,34.0,25.0,31.0,25.0,23.0,24.0,17.0,14.0,20.0,19.0,19.0,14.0,19.0,14.0,25.0,14.0,24.0,22.0,16.0,17.0,32.0,21.0,20.0,20.0,28.0,34.0,42.0,31.0,29.0,15.0,30.0,38.0,39.0,35.0,36.0,32.0,34.0,36.0,26.0,20.0,37.0,18.0,27.0,28.0,16.0,24.0,24.0,27.0,13.0,24.0,21.0,18.0,14.0,16.0,13.0,17.0,11.0,25.0,16.0,16.0,14.0,13.0,11.0,14.0,17.0,10.0,7.0,5.0,6.0,9.0,9.0,10.0,,2.0,4.0,2.0,2.0,1.0,2.0,1.0,1.0,, P84673,40.0,43.0,33.0,40.0,30.0,32.0,25.0,31.0,23.0,36.0,32.0,29.0,36.0,39.0,32.0,41.0,28.0,31.0,42.0,38.0,37.0,49.0,78.0,109.0,179.0,180.0,235.0,287.0,338.0,314.0,312.0,299.0,295.0,285.0,275.0,232.0,217.0,226.0,202.0,197.0,194.0,160.0,156.0,142.0,146.0,106.0,96.0,101.0,85.0,94.0,70.0,71.0,71.0,65.0,58.0,43.0,56.0,59.0,63.0,45.0,57.0,47.0,51.0,40.0,30.0,36.0,30.0,28.0,30.0,25.0,32.0,22.0,20.0,18.0,18.0,19.0,15.0,12.0,14.0,5.0,7.0,7.0,9.0,6.0,5.0,10.0,7.0,6.0,1.0,2.0,,1.0,,,,2.0 P84678,55.0,72.0,77.0,65.0,65.0,55.0,73.0,83.0,73.0,60.0,69.0,62.0,81.0,85.0,79.0,85.0,75.0,64.0,52.0,55.0,57.0,79.0,80.0,96.0,125.0,187.0,203.0,200.0,253.0,243.0,224.0,221.0,175.0,200.0,182.0,186.0,151.0,153.0,152.0,156.0,151.0,141.0,176.0,181.0,158.0,136.0,111.0,143.0,103.0,124.0,121.0,102.0,111.0,107.0,130.0,83.0,106.0,90.0,88.0,63.0,75.0,80.0,58.0,64.0,68.0,41.0,58.0,48.0,39.0,39.0,43.0,43.0,30.0,31.0,36.0,23.0,26.0,32.0,22.0,26.0,18.0,12.0,16.0,12.0,14.0,10.0,13.0,5.0,13.0,5.0,4.0,6.0,5.0,4.0,1.0,2.0 P84679,12.0,11.0,23.0,11.0,14.0,10.0,21.0,19.0,18.0,17.0,18.0,18.0,23.0,18.0,23.0,20.0,17.0,20.0,19.0,19.0,18.0,17.0,12.0,12.0,15.0,12.0,24.0,15.0,12.0,13.0,22.0,19.0,17.0,16.0,21.0,30.0,21.0,20.0,19.0,18.0,16.0,22.0,16.0,10.0,21.0,19.0,8.0,18.0,22.0,6.0,16.0,10.0,18.0,12.0,13.0,14.0,24.0,9.0,18.0,13.0,11.0,10.0,12.0,8.0,8.0,5.0,15.0,8.0,7.0,7.0,4.0,6.0,5.0,2.0,5.0,6.0,4.0,4.0,5.0,5.0,4.0,3.0,3.0,2.0,2.0,,,,1.0,,,,,,, P84683,20.0,3.0,12.0,5.0,9.0,7.0,7.0,3.0,7.0,7.0,9.0,8.0,7.0,6.0,3.0,6.0,1.0,6.0,44.0,102.0,96.0,102.0,231.0,290.0,298.0,352.0,379.0,342.0,323.0,311.0,304.0,273.0,249.0,226.0,218.0,209.0,182.0,178.0,164.0,149.0,121.0,149.0,125.0,138.0,124.0,130.0,99.0,113.0,95.0,84.0,84.0,75.0,76.0,77.0,79.0,81.0,54.0,68.0,68.0,68.0,64.0,54.0,52.0,36.0,34.0,26.0,26.0,33.0,22.0,22.0,13.0,9.0,14.0,14.0,15.0,13.0,13.0,11.0,6.0,10.0,4.0,4.0,3.0,4.0,,1.0,3.0,4.0,,2.0,3.0,1.0,,,,1.0 P84684,39.0,32.0,39.0,36.0,30.0,42.0,38.0,45.0,35.0,37.0,53.0,64.0,50.0,51.0,45.0,51.0,52.0,47.0,49.0,59.0,48.0,42.0,52.0,61.0,58.0,55.0,75.0,60.0,58.0,56.0,77.0,48.0,65.0,63.0,71.0,58.0,62.0,50.0,69.0,60.0,53.0,61.0,52.0,46.0,54.0,57.0,49.0,38.0,44.0,39.0,33.0,46.0,39.0,42.0,27.0,39.0,37.0,51.0,37.0,24.0,22.0,18.0,27.0,22.0,30.0,16.0,26.0,24.0,17.0,14.0,18.0,23.0,20.0,10.0,18.0,10.0,11.0,12.0,3.0,7.0,7.0,3.0,7.0,4.0,1.0,4.0,4.0,2.0,5.0,2.0,1.0,,2.0,,, P84689,69.0,63.0,71.0,83.0,62.0,68.0,95.0,76.0,102.0,104.0,88.0,108.0,116.0,112.0,124.0,104.0,120.0,107.0,160.0,166.0,133.0,144.0,161.0,166.0,152.0,169.0,169.0,177.0,169.0,151.0,146.0,175.0,156.0,130.0,137.0,157.0,127.0,147.0,123.0,161.0,154.0,109.0,111.0,128.0,124.0,104.0,104.0,98.0,89.0,97.0,89.0,77.0,79.0,84.0,61.0,70.0,81.0,56.0,77.0,59.0,65.0,51.0,52.0,40.0,46.0,31.0,36.0,36.0,34.0,37.0,26.0,26.0,33.0,10.0,13.0,15.0,18.0,9.0,16.0,13.0,7.0,11.0,6.0,15.0,3.0,6.0,4.0,6.0,5.0,6.0,3.0,2.0,,1.0,,3.0 P84690,8.0,15.0,13.0,20.0,17.0,21.0,18.0,24.0,25.0,20.0,25.0,21.0,30.0,25.0,25.0,25.0,23.0,20.0,23.0,11.0,18.0,13.0,20.0,25.0,33.0,16.0,24.0,22.0,24.0,17.0,27.0,13.0,20.0,27.0,22.0,22.0,31.0,14.0,21.0,35.0,26.0,19.0,26.0,23.0,21.0,26.0,25.0,23.0,17.0,21.0,21.0,24.0,19.0,24.0,27.0,17.0,8.0,25.0,9.0,21.0,19.0,15.0,20.0,9.0,11.0,17.0,12.0,10.0,13.0,8.0,7.0,8.0,7.0,8.0,6.0,8.0,9.0,4.0,5.0,5.0,4.0,5.0,1.0,4.0,4.0,2.0,,,,2.0,,2.0,,,,1.0 P85002,34.0,49.0,39.0,41.0,48.0,42.0,55.0,40.0,53.0,40.0,44.0,56.0,46.0,32.0,50.0,39.0,36.0,52.0,41.0,32.0,49.0,44.0,40.0,28.0,41.0,42.0,44.0,49.0,44.0,54.0,57.0,53.0,54.0,53.0,54.0,63.0,60.0,60.0,40.0,65.0,67.0,44.0,47.0,50.0,49.0,55.0,35.0,42.0,38.0,32.0,42.0,37.0,30.0,44.0,40.0,40.0,48.0,38.0,42.0,50.0,41.0,44.0,44.0,47.0,49.0,35.0,42.0,25.0,39.0,25.0,27.0,17.0,25.0,28.0,27.0,26.0,19.0,23.0,21.0,10.0,10.0,19.0,19.0,5.0,6.0,6.0,5.0,6.0,9.0,8.0,2.0,2.0,,2.0,,4.0 P85003,40.0,43.0,35.0,41.0,31.0,41.0,48.0,53.0,54.0,60.0,42.0,39.0,81.0,57.0,68.0,73.0,65.0,70.0,57.0,64.0,71.0,67.0,60.0,72.0,65.0,48.0,58.0,66.0,42.0,46.0,66.0,42.0,35.0,52.0,37.0,30.0,30.0,36.0,50.0,37.0,33.0,51.0,40.0,54.0,51.0,64.0,56.0,51.0,56.0,41.0,28.0,52.0,40.0,42.0,54.0,42.0,39.0,24.0,27.0,10.0,19.0,18.0,19.0,19.0,17.0,16.0,20.0,11.0,13.0,12.0,5.0,11.0,8.0,7.0,8.0,5.0,1.0,1.0,4.0,5.0,3.0,1.0,6.0,4.0,4.0,3.0,2.0,5.0,2.0,,,,,,1.0, P85004,46.0,35.0,40.0,30.0,35.0,33.0,39.0,46.0,50.0,44.0,44.0,45.0,35.0,45.0,48.0,44.0,42.0,42.0,49.0,54.0,47.0,51.0,47.0,48.0,50.0,57.0,59.0,43.0,40.0,42.0,64.0,48.0,43.0,43.0,41.0,45.0,42.0,40.0,41.0,35.0,41.0,40.0,36.0,45.0,39.0,42.0,38.0,45.0,21.0,41.0,37.0,56.0,33.0,37.0,38.0,39.0,36.0,33.0,39.0,26.0,26.0,35.0,32.0,30.0,23.0,36.0,17.0,31.0,23.0,22.0,21.0,22.0,15.0,15.0,25.0,16.0,19.0,18.0,22.0,18.0,13.0,11.0,11.0,6.0,7.0,5.0,7.0,5.0,4.0,2.0,1.0,2.0,3.0,1.0,1.0,1.0 P85005,43.0,35.0,60.0,51.0,50.0,48.0,42.0,49.0,43.0,55.0,50.0,38.0,50.0,49.0,55.0,55.0,44.0,53.0,54.0,44.0,57.0,41.0,50.0,47.0,45.0,49.0,44.0,40.0,36.0,36.0,46.0,50.0,59.0,60.0,60.0,54.0,51.0,66.0,51.0,64.0,50.0,50.0,51.0,55.0,39.0,48.0,47.0,47.0,52.0,56.0,48.0,49.0,62.0,66.0,61.0,67.0,62.0,70.0,76.0,67.0,72.0,64.0,64.0,65.0,64.0,62.0,65.0,59.0,47.0,53.0,50.0,46.0,47.0,53.0,42.0,45.0,40.0,64.0,57.0,46.0,41.0,39.0,23.0,25.0,20.0,19.0,13.0,13.0,18.0,13.0,13.0,9.0,7.0,6.0,4.0,6.0 P85007,30.0,24.0,20.0,32.0,32.0,19.0,19.0,34.0,37.0,31.0,35.0,29.0,33.0,25.0,25.0,37.0,29.0,29.0,28.0,27.0,21.0,29.0,15.0,24.0,23.0,26.0,25.0,31.0,29.0,31.0,27.0,37.0,35.0,41.0,33.0,28.0,34.0,36.0,28.0,35.0,30.0,31.0,26.0,32.0,24.0,39.0,30.0,23.0,30.0,16.0,27.0,29.0,18.0,20.0,21.0,32.0,27.0,33.0,18.0,21.0,17.0,22.0,11.0,21.0,15.0,13.0,9.0,18.0,15.0,18.0,16.0,18.0,16.0,22.0,8.0,11.0,9.0,11.0,12.0,7.0,10.0,10.0,2.0,6.0,3.0,4.0,7.0,6.0,2.0,2.0,4.0,3.0,,,2.0,1.0 P85010,83.0,47.0,69.0,77.0,69.0,69.0,86.0,80.0,89.0,97.0,80.0,79.0,101.0,91.0,96.0,75.0,83.0,96.0,96.0,74.0,78.0,88.0,92.0,90.0,73.0,70.0,87.0,71.0,80.0,65.0,79.0,81.0,94.0,76.0,100.0,77.0,97.0,95.0,96.0,82.0,92.0,117.0,121.0,107.0,102.0,99.0,81.0,81.0,75.0,88.0,84.0,84.0,93.0,93.0,88.0,77.0,93.0,107.0,86.0,86.0,83.0,92.0,85.0,91.0,101.0,58.0,89.0,60.0,72.0,66.0,63.0,77.0,59.0,48.0,37.0,74.0,77.0,69.0,66.0,41.0,56.0,50.0,35.0,23.0,20.0,22.0,22.0,19.0,13.0,12.0,8.0,11.0,10.0,3.0,1.0,3.0 P85011,86.0,74.0,89.0,82.0,70.0,68.0,81.0,86.0,75.0,84.0,84.0,76.0,107.0,95.0,82.0,89.0,93.0,89.0,94.0,79.0,71.0,81.0,84.0,88.0,81.0,95.0,86.0,88.0,99.0,81.0,92.0,88.0,94.0,99.0,96.0,85.0,108.0,98.0,96.0,84.0,103.0,76.0,77.0,98.0,80.0,76.0,69.0,75.0,61.0,57.0,64.0,73.0,75.0,87.0,81.0,71.0,70.0,74.0,85.0,74.0,85.0,69.0,75.0,50.0,63.0,65.0,60.0,46.0,47.0,51.0,48.0,58.0,40.0,36.0,50.0,46.0,45.0,49.0,33.0,32.0,25.0,22.0,34.0,18.0,11.0,18.0,20.0,12.0,17.0,10.0,4.0,2.0,2.0,4.0,6.0,3.0 P85012,44.0,41.0,39.0,52.0,54.0,46.0,48.0,56.0,60.0,51.0,48.0,48.0,59.0,63.0,51.0,44.0,60.0,50.0,55.0,32.0,35.0,48.0,52.0,54.0,48.0,40.0,45.0,38.0,37.0,47.0,54.0,38.0,45.0,40.0,47.0,57.0,47.0,45.0,53.0,42.0,34.0,45.0,36.0,50.0,47.0,46.0,33.0,46.0,36.0,39.0,40.0,19.0,34.0,35.0,30.0,32.0,37.0,20.0,28.0,28.0,30.0,35.0,30.0,22.0,23.0,15.0,22.0,29.0,22.0,22.0,22.0,9.0,18.0,13.0,8.0,12.0,12.0,8.0,9.0,4.0,7.0,12.0,6.0,5.0,3.0,7.0,5.0,4.0,,2.0,2.0,2.0,1.0,,,2.0 P85013,82.0,100.0,95.0,109.0,94.0,107.0,102.0,100.0,134.0,131.0,131.0,118.0,136.0,120.0,131.0,150.0,116.0,131.0,117.0,121.0,107.0,110.0,117.0,106.0,116.0,118.0,107.0,110.0,121.0,108.0,117.0,121.0,125.0,121.0,148.0,144.0,136.0,137.0,130.0,136.0,131.0,133.0,130.0,130.0,123.0,133.0,135.0,108.0,125.0,136.0,132.0,146.0,132.0,136.0,181.0,172.0,183.0,132.0,176.0,141.0,143.0,176.0,135.0,153.0,143.0,134.0,154.0,132.0,102.0,99.0,90.0,134.0,82.0,104.0,105.0,107.0,133.0,131.0,134.0,90.0,89.0,81.0,66.0,58.0,40.0,53.0,36.0,38.0,20.0,14.0,27.0,10.0,4.0,5.0,11.0,15.0 P85014,39.0,45.0,53.0,33.0,36.0,38.0,53.0,58.0,39.0,49.0,34.0,39.0,43.0,51.0,47.0,47.0,46.0,55.0,51.0,54.0,53.0,39.0,45.0,49.0,40.0,50.0,52.0,51.0,58.0,48.0,62.0,51.0,56.0,63.0,52.0,55.0,50.0,49.0,54.0,70.0,38.0,55.0,47.0,47.0,46.0,43.0,34.0,35.0,41.0,38.0,35.0,33.0,36.0,29.0,42.0,42.0,54.0,33.0,33.0,36.0,33.0,40.0,32.0,35.0,29.0,29.0,28.0,15.0,17.0,27.0,18.0,21.0,23.0,25.0,12.0,19.0,14.0,13.0,10.0,8.0,10.0,4.0,9.0,,2.0,6.0,5.0,1.0,7.0,2.0,2.0,1.0,1.0,3.0,, P85015,45.0,53.0,68.0,54.0,55.0,57.0,48.0,41.0,52.0,61.0,61.0,52.0,62.0,65.0,53.0,75.0,71.0,52.0,50.0,52.0,50.0,59.0,58.0,60.0,64.0,69.0,63.0,50.0,51.0,69.0,55.0,61.0,54.0,57.0,55.0,49.0,61.0,57.0,48.0,48.0,71.0,50.0,48.0,47.0,63.0,47.0,50.0,43.0,41.0,36.0,45.0,40.0,32.0,38.0,48.0,50.0,42.0,46.0,33.0,40.0,39.0,35.0,29.0,33.0,31.0,23.0,25.0,30.0,19.0,26.0,29.0,17.0,19.0,22.0,12.0,16.0,15.0,21.0,13.0,4.0,16.0,12.0,7.0,7.0,6.0,14.0,9.0,10.0,7.0,4.0,6.0,3.0,1.0,3.0,2.0,5.0 P85016,42.0,46.0,55.0,60.0,57.0,53.0,60.0,67.0,78.0,65.0,75.0,65.0,64.0,81.0,76.0,82.0,79.0,90.0,81.0,78.0,74.0,78.0,72.0,66.0,59.0,68.0,72.0,62.0,70.0,66.0,54.0,54.0,57.0,67.0,67.0,56.0,65.0,68.0,82.0,80.0,67.0,84.0,80.0,79.0,75.0,69.0,73.0,74.0,86.0,88.0,86.0,96.0,109.0,105.0,122.0,98.0,124.0,125.0,130.0,119.0,109.0,129.0,120.0,98.0,102.0,101.0,83.0,90.0,85.0,88.0,78.0,82.0,97.0,88.0,70.0,98.0,77.0,93.0,96.0,55.0,71.0,57.0,43.0,43.0,39.0,40.0,22.0,34.0,21.0,20.0,13.0,13.0,6.0,9.0,5.0,9.0 P85017,22.0,28.0,34.0,37.0,41.0,37.0,30.0,49.0,48.0,41.0,48.0,42.0,52.0,59.0,48.0,60.0,56.0,55.0,52.0,45.0,49.0,53.0,39.0,40.0,35.0,50.0,45.0,41.0,46.0,42.0,49.0,35.0,50.0,50.0,59.0,49.0,53.0,62.0,51.0,52.0,52.0,61.0,50.0,52.0,44.0,54.0,38.0,71.0,49.0,44.0,54.0,58.0,69.0,78.0,67.0,79.0,63.0,56.0,73.0,72.0,71.0,73.0,72.0,74.0,56.0,43.0,65.0,65.0,51.0,51.0,47.0,66.0,51.0,42.0,44.0,53.0,66.0,78.0,74.0,41.0,36.0,40.0,39.0,24.0,27.0,29.0,28.0,18.0,18.0,9.0,11.0,2.0,7.0,3.0,7.0,6.0 P85018,14.0,16.0,27.0,29.0,28.0,20.0,30.0,24.0,33.0,42.0,28.0,30.0,39.0,28.0,36.0,28.0,36.0,35.0,37.0,36.0,29.0,34.0,23.0,33.0,31.0,35.0,35.0,39.0,44.0,26.0,39.0,30.0,36.0,34.0,44.0,39.0,29.0,32.0,23.0,34.0,34.0,26.0,40.0,30.0,38.0,38.0,21.0,42.0,25.0,43.0,33.0,39.0,32.0,32.0,43.0,34.0,37.0,29.0,31.0,27.0,27.0,28.0,26.0,21.0,25.0,24.0,20.0,28.0,10.0,20.0,24.0,21.0,20.0,15.0,14.0,16.0,16.0,19.0,12.0,7.0,1.0,18.0,15.0,11.0,6.0,5.0,3.0,2.0,5.0,3.0,1.0,1.0,3.0,,1.0,3.0 P85019,48.0,48.0,45.0,46.0,33.0,48.0,48.0,36.0,37.0,43.0,49.0,44.0,40.0,35.0,38.0,41.0,40.0,39.0,35.0,42.0,28.0,34.0,37.0,33.0,31.0,37.0,48.0,48.0,37.0,55.0,53.0,54.0,62.0,54.0,56.0,66.0,61.0,57.0,51.0,58.0,44.0,60.0,36.0,51.0,48.0,55.0,36.0,31.0,43.0,36.0,48.0,33.0,42.0,30.0,54.0,40.0,39.0,57.0,46.0,54.0,41.0,48.0,40.0,34.0,42.0,40.0,36.0,27.0,25.0,27.0,27.0,24.0,25.0,18.0,24.0,17.0,31.0,18.0,22.0,15.0,21.0,11.0,9.0,9.0,13.0,11.0,1.0,11.0,4.0,1.0,2.0,2.0,3.0,2.0,1.0,4.0 P85020,37.0,45.0,53.0,44.0,58.0,51.0,42.0,61.0,42.0,59.0,52.0,50.0,58.0,48.0,50.0,45.0,48.0,40.0,44.0,40.0,47.0,43.0,45.0,46.0,42.0,46.0,65.0,50.0,64.0,43.0,41.0,50.0,66.0,49.0,49.0,68.0,55.0,43.0,50.0,43.0,55.0,46.0,48.0,45.0,53.0,57.0,49.0,25.0,43.0,38.0,40.0,45.0,59.0,44.0,58.0,47.0,61.0,55.0,52.0,56.0,63.0,61.0,58.0,53.0,57.0,43.0,46.0,37.0,38.0,35.0,34.0,20.0,20.0,29.0,23.0,26.0,30.0,29.0,29.0,22.0,11.0,18.0,21.0,27.0,15.0,16.0,14.0,8.0,2.0,3.0,5.0,5.0,2.0,,,3.0 P85021,74.0,58.0,60.0,69.0,66.0,84.0,65.0,86.0,81.0,76.0,88.0,73.0,80.0,89.0,87.0,94.0,82.0,91.0,75.0,78.0,75.0,77.0,86.0,84.0,90.0,71.0,72.0,71.0,90.0,83.0,93.0,62.0,64.0,78.0,76.0,81.0,72.0,79.0,83.0,79.0,78.0,84.0,72.0,68.0,93.0,76.0,55.0,70.0,70.0,64.0,58.0,63.0,52.0,67.0,61.0,69.0,53.0,57.0,62.0,60.0,46.0,46.0,43.0,40.0,33.0,36.0,32.0,28.0,26.0,28.0,41.0,30.0,34.0,28.0,28.0,31.0,21.0,21.0,22.0,16.0,8.0,21.0,3.0,6.0,11.0,6.0,6.0,5.0,5.0,7.0,5.0,2.0,3.0,,,3.0 P85022,39.0,32.0,24.0,41.0,31.0,32.0,33.0,27.0,40.0,27.0,51.0,35.0,29.0,32.0,28.0,42.0,28.0,29.0,28.0,39.0,33.0,31.0,29.0,29.0,29.0,37.0,42.0,26.0,31.0,30.0,36.0,44.0,45.0,38.0,44.0,52.0,39.0,45.0,35.0,50.0,42.0,47.0,43.0,32.0,30.0,43.0,29.0,28.0,22.0,29.0,29.0,29.0,32.0,32.0,25.0,37.0,29.0,37.0,38.0,33.0,33.0,34.0,24.0,34.0,37.0,33.0,12.0,27.0,24.0,16.0,25.0,16.0,20.0,15.0,19.0,12.0,16.0,19.0,15.0,10.0,5.0,11.0,8.0,9.0,7.0,6.0,5.0,4.0,4.0,1.0,3.0,3.0,1.0,,,4.0 P85026,71.0,90.0,102.0,76.0,87.0,96.0,108.0,89.0,98.0,91.0,93.0,95.0,102.0,99.0,93.0,105.0,103.0,84.0,96.0,84.0,82.0,88.0,81.0,80.0,81.0,79.0,97.0,98.0,101.0,95.0,96.0,92.0,126.0,97.0,102.0,114.0,116.0,105.0,89.0,80.0,90.0,103.0,83.0,98.0,93.0,89.0,95.0,87.0,87.0,102.0,70.0,78.0,111.0,101.0,98.0,116.0,124.0,114.0,132.0,120.0,149.0,114.0,130.0,106.0,103.0,109.0,97.0,75.0,80.0,64.0,61.0,73.0,73.0,67.0,76.0,42.0,62.0,69.0,67.0,39.0,47.0,54.0,36.0,36.0,32.0,30.0,23.0,24.0,15.0,20.0,8.0,6.0,5.0,6.0,6.0,2.0 P85601,22.0,15.0,21.0,26.0,19.0,18.0,18.0,24.0,30.0,19.0,23.0,18.0,22.0,28.0,27.0,21.0,25.0,24.0,25.0,19.0,36.0,26.0,20.0,26.0,25.0,22.0,40.0,26.0,22.0,18.0,26.0,17.0,25.0,24.0,21.0,15.0,27.0,27.0,14.0,24.0,21.0,27.0,23.0,14.0,12.0,19.0,21.0,22.0,16.0,30.0,25.0,25.0,36.0,22.0,20.0,21.0,14.0,16.0,26.0,17.0,15.0,13.0,15.0,16.0,15.0,23.0,11.0,12.0,7.0,12.0,8.0,5.0,6.0,9.0,3.0,3.0,9.0,9.0,5.0,5.0,4.0,6.0,7.0,1.0,3.0,6.0,3.0,,1.0,1.0,1.0,2.0,1.0,,3.0, P85605,51.0,52.0,64.0,64.0,51.0,50.0,58.0,53.0,53.0,73.0,65.0,58.0,73.0,58.0,66.0,56.0,81.0,61.0,70.0,69.0,63.0,56.0,53.0,61.0,56.0,65.0,52.0,57.0,55.0,53.0,51.0,57.0,53.0,61.0,48.0,72.0,68.0,78.0,51.0,60.0,66.0,56.0,56.0,65.0,47.0,50.0,63.0,62.0,49.0,50.0,52.0,46.0,34.0,45.0,39.0,40.0,37.0,29.0,41.0,42.0,35.0,34.0,23.0,38.0,21.0,29.0,29.0,24.0,29.0,19.0,21.0,20.0,16.0,21.0,14.0,15.0,6.0,12.0,9.0,18.0,12.0,7.0,11.0,11.0,4.0,2.0,8.0,6.0,4.0,1.0,3.0,,,3.0,,2.0 P85606,31.0,33.0,39.0,52.0,48.0,54.0,62.0,52.0,72.0,54.0,55.0,61.0,47.0,43.0,42.0,59.0,53.0,50.0,37.0,38.0,31.0,44.0,36.0,37.0,37.0,36.0,38.0,40.0,37.0,55.0,34.0,51.0,62.0,60.0,58.0,52.0,48.0,45.0,51.0,58.0,41.0,41.0,46.0,47.0,52.0,40.0,43.0,39.0,34.0,42.0,51.0,35.0,42.0,54.0,55.0,47.0,35.0,49.0,49.0,43.0,40.0,41.0,32.0,35.0,29.0,30.0,21.0,28.0,32.0,23.0,17.0,21.0,23.0,21.0,20.0,26.0,33.0,18.0,18.0,12.0,10.0,16.0,9.0,10.0,4.0,3.0,11.0,4.0,,3.0,1.0,,1.0,1.0,,1.0 P85608,9.0,8.0,11.0,9.0,6.0,18.0,11.0,14.0,11.0,12.0,18.0,14.0,21.0,23.0,16.0,15.0,21.0,28.0,14.0,18.0,18.0,21.0,15.0,15.0,17.0,14.0,14.0,16.0,11.0,17.0,14.0,18.0,17.0,18.0,14.0,15.0,18.0,9.0,16.0,13.0,20.0,18.0,23.0,18.0,19.0,21.0,12.0,12.0,13.0,21.0,29.0,14.0,19.0,15.0,14.0,21.0,18.0,13.0,17.0,21.0,15.0,14.0,14.0,21.0,13.0,7.0,14.0,9.0,12.0,10.0,18.0,11.0,11.0,7.0,4.0,12.0,7.0,13.0,9.0,5.0,3.0,7.0,2.0,1.0,1.0,2.0,2.0,,3.0,1.0,,,1.0,,, P85610,40.0,45.0,39.0,38.0,40.0,30.0,43.0,42.0,40.0,45.0,45.0,55.0,37.0,44.0,38.0,45.0,45.0,41.0,50.0,56.0,66.0,64.0,77.0,82.0,112.0,115.0,99.0,88.0,87.0,117.0,84.0,94.0,81.0,96.0,83.0,64.0,98.0,82.0,84.0,72.0,57.0,65.0,50.0,49.0,51.0,59.0,46.0,45.0,41.0,51.0,44.0,50.0,37.0,53.0,44.0,48.0,56.0,58.0,59.0,53.0,49.0,47.0,33.0,40.0,46.0,39.0,23.0,30.0,30.0,27.0,28.0,25.0,20.0,20.0,23.0,14.0,18.0,18.0,11.0,8.0,10.0,7.0,14.0,9.0,3.0,12.0,8.0,15.0,10.0,5.0,5.0,5.0,3.0,2.0,,1.0 P85612,31.0,19.0,26.0,15.0,30.0,30.0,36.0,31.0,30.0,35.0,54.0,23.0,42.0,46.0,38.0,40.0,30.0,28.0,41.0,46.0,42.0,43.0,35.0,34.0,37.0,54.0,40.0,41.0,42.0,42.0,39.0,38.0,48.0,38.0,36.0,38.0,34.0,39.0,39.0,37.0,35.0,36.0,43.0,38.0,30.0,34.0,41.0,28.0,39.0,25.0,23.0,32.0,21.0,22.0,20.0,16.0,26.0,22.0,19.0,7.0,11.0,7.0,6.0,9.0,15.0,12.0,5.0,7.0,9.0,10.0,8.0,9.0,15.0,9.0,5.0,6.0,,4.0,4.0,4.0,4.0,2.0,1.0,3.0,1.0,2.0,1.0,3.0,1.0,4.0,,,,,, P85614,26.0,27.0,29.0,31.0,33.0,33.0,24.0,30.0,34.0,40.0,36.0,32.0,24.0,33.0,41.0,34.0,28.0,24.0,18.0,32.0,27.0,12.0,21.0,24.0,23.0,31.0,25.0,35.0,25.0,37.0,33.0,33.0,37.0,22.0,37.0,43.0,39.0,36.0,42.0,34.0,43.0,41.0,35.0,31.0,35.0,31.0,20.0,31.0,35.0,27.0,23.0,26.0,31.0,25.0,24.0,20.0,37.0,25.0,33.0,29.0,28.0,20.0,34.0,22.0,28.0,24.0,23.0,27.0,12.0,17.0,21.0,14.0,24.0,16.0,20.0,24.0,17.0,9.0,20.0,5.0,10.0,9.0,11.0,10.0,5.0,8.0,9.0,5.0,1.0,2.0,1.0,1.0,2.0,1.0,, P85615,91.0,88.0,90.0,95.0,91.0,89.0,97.0,123.0,97.0,121.0,113.0,105.0,117.0,99.0,109.0,103.0,119.0,118.0,101.0,94.0,107.0,103.0,117.0,111.0,107.0,95.0,114.0,97.0,113.0,92.0,93.0,79.0,82.0,100.0,90.0,82.0,95.0,110.0,92.0,96.0,76.0,86.0,88.0,78.0,98.0,79.0,76.0,82.0,78.0,74.0,73.0,76.0,77.0,47.0,56.0,57.0,52.0,47.0,46.0,42.0,37.0,30.0,31.0,46.0,26.0,34.0,29.0,34.0,25.0,33.0,23.0,35.0,28.0,23.0,15.0,10.0,15.0,8.0,9.0,11.0,9.0,8.0,5.0,2.0,12.0,15.0,6.0,8.0,5.0,1.0,2.0,,4.0,2.0,1.0,1.0 P85622,117.0,102.0,105.0,101.0,79.0,88.0,108.0,97.0,118.0,101.0,97.0,94.0,96.0,91.0,112.0,107.0,117.0,107.0,107.0,97.0,98.0,81.0,109.0,91.0,82.0,90.0,82.0,108.0,91.0,83.0,83.0,86.0,92.0,93.0,90.0,98.0,90.0,82.0,86.0,81.0,86.0,87.0,82.0,77.0,76.0,80.0,86.0,69.0,66.0,76.0,74.0,75.0,71.0,71.0,47.0,47.0,54.0,39.0,37.0,36.0,35.0,38.0,36.0,33.0,35.0,33.0,37.0,35.0,27.0,23.0,15.0,26.0,27.0,20.0,16.0,15.0,13.0,14.0,7.0,5.0,7.0,5.0,5.0,8.0,2.0,6.0,2.0,4.0,3.0,4.0,1.0,2.0,1.0,1.0,1.0,3.0 P86001,52.0,39.0,43.0,46.0,42.0,31.0,43.0,49.0,57.0,38.0,36.0,52.0,45.0,46.0,55.0,40.0,47.0,52.0,49.0,37.0,37.0,39.0,46.0,36.0,43.0,41.0,49.0,56.0,54.0,42.0,54.0,73.0,50.0,56.0,58.0,64.0,70.0,48.0,49.0,53.0,40.0,55.0,54.0,49.0,53.0,58.0,50.0,52.0,45.0,63.0,47.0,62.0,52.0,79.0,66.0,63.0,48.0,59.0,57.0,60.0,47.0,46.0,51.0,41.0,39.0,45.0,32.0,46.0,38.0,34.0,29.0,46.0,41.0,40.0,36.0,40.0,41.0,26.0,38.0,23.0,27.0,24.0,20.0,9.0,15.0,13.0,15.0,7.0,6.0,7.0,2.0,,,5.0,,4.0 P86002,7.0,7.0,18.0,6.0,5.0,7.0,14.0,12.0,14.0,9.0,15.0,8.0,15.0,13.0,9.0,12.0,13.0,9.0,11.0,12.0,13.0,7.0,13.0,8.0,14.0,16.0,11.0,16.0,11.0,15.0,18.0,11.0,15.0,18.0,12.0,9.0,11.0,12.0,19.0,10.0,15.0,13.0,19.0,15.0,15.0,8.0,11.0,13.0,15.0,12.0,17.0,15.0,11.0,15.0,8.0,14.0,18.0,21.0,12.0,12.0,10.0,17.0,20.0,15.0,11.0,12.0,11.0,8.0,5.0,4.0,5.0,7.0,10.0,12.0,2.0,4.0,4.0,11.0,6.0,2.0,3.0,3.0,6.0,1.0,3.0,3.0,2.0,,3.0,2.0,1.0,,,,1.0,2.0 P86003,49.0,33.0,45.0,55.0,51.0,48.0,53.0,58.0,62.0,68.0,67.0,68.0,46.0,65.0,61.0,72.0,63.0,87.0,60.0,58.0,56.0,73.0,41.0,55.0,64.0,61.0,61.0,62.0,57.0,46.0,75.0,55.0,58.0,56.0,68.0,65.0,75.0,56.0,64.0,65.0,51.0,59.0,51.0,64.0,58.0,67.0,60.0,53.0,58.0,64.0,63.0,73.0,68.0,70.0,80.0,92.0,91.0,70.0,74.0,96.0,89.0,68.0,73.0,74.0,89.0,91.0,50.0,68.0,65.0,68.0,50.0,51.0,60.0,53.0,58.0,53.0,70.0,65.0,63.0,32.0,43.0,40.0,33.0,25.0,27.0,31.0,21.0,17.0,18.0,11.0,7.0,10.0,9.0,3.0,5.0,6.0 P86004,35.0,32.0,65.0,53.0,53.0,54.0,64.0,60.0,43.0,56.0,44.0,57.0,54.0,55.0,70.0,64.0,61.0,43.0,58.0,45.0,47.0,51.0,36.0,37.0,39.0,42.0,54.0,40.0,68.0,57.0,45.0,57.0,59.0,58.0,86.0,68.0,56.0,58.0,67.0,71.0,67.0,61.0,81.0,60.0,68.0,67.0,50.0,57.0,38.0,61.0,43.0,51.0,53.0,51.0,57.0,55.0,57.0,61.0,63.0,61.0,61.0,62.0,58.0,44.0,54.0,58.0,50.0,47.0,61.0,45.0,44.0,39.0,42.0,39.0,34.0,45.0,24.0,38.0,28.0,25.0,35.0,20.0,20.0,18.0,14.0,16.0,6.0,10.0,10.0,4.0,5.0,6.0,4.0,1.0,1.0,2.0 P86005,32.0,31.0,45.0,34.0,39.0,37.0,36.0,46.0,36.0,33.0,40.0,39.0,41.0,43.0,44.0,45.0,46.0,44.0,41.0,36.0,47.0,38.0,32.0,33.0,35.0,44.0,39.0,36.0,34.0,46.0,38.0,53.0,37.0,55.0,38.0,52.0,49.0,55.0,46.0,40.0,59.0,35.0,49.0,28.0,47.0,51.0,33.0,39.0,41.0,48.0,47.0,48.0,41.0,47.0,42.0,32.0,42.0,44.0,45.0,43.0,38.0,35.0,39.0,40.0,39.0,29.0,33.0,47.0,45.0,35.0,38.0,34.0,21.0,24.0,25.0,32.0,21.0,24.0,15.0,11.0,15.0,10.0,9.0,5.0,5.0,11.0,11.0,3.0,3.0,3.0,3.0,1.0,2.0,1.0,1.0,2.0 P86006,98.0,131.0,105.0,118.0,97.0,116.0,132.0,123.0,115.0,135.0,119.0,118.0,111.0,114.0,116.0,106.0,107.0,139.0,140.0,109.0,106.0,82.0,112.0,103.0,117.0,110.0,122.0,110.0,109.0,107.0,121.0,103.0,110.0,122.0,132.0,134.0,134.0,117.0,126.0,138.0,118.0,121.0,128.0,122.0,114.0,137.0,116.0,105.0,108.0,101.0,107.0,103.0,118.0,102.0,108.0,107.0,110.0,127.0,100.0,101.0,94.0,98.0,100.0,93.0,70.0,65.0,59.0,86.0,67.0,57.0,52.0,64.0,68.0,66.0,65.0,48.0,58.0,57.0,57.0,41.0,35.0,33.0,43.0,19.0,26.0,20.0,21.0,17.0,14.0,13.0,9.0,7.0,4.0,4.0,,11.0 P86007,84.0,74.0,78.0,96.0,84.0,103.0,98.0,93.0,102.0,95.0,93.0,106.0,93.0,86.0,99.0,98.0,95.0,85.0,79.0,84.0,91.0,83.0,76.0,78.0,94.0,90.0,84.0,102.0,123.0,100.0,105.0,119.0,112.0,101.0,120.0,112.0,113.0,125.0,99.0,113.0,121.0,113.0,106.0,99.0,82.0,74.0,82.0,66.0,85.0,85.0,78.0,92.0,77.0,91.0,107.0,83.0,88.0,84.0,97.0,82.0,76.0,85.0,86.0,86.0,72.0,65.0,69.0,64.0,65.0,57.0,48.0,53.0,43.0,34.0,32.0,45.0,52.0,64.0,42.0,29.0,26.0,31.0,20.0,18.0,16.0,16.0,13.0,11.0,15.0,5.0,9.0,5.0,3.0,2.0,3.0,3.0 P86008,66.0,64.0,73.0,74.0,69.0,73.0,62.0,81.0,88.0,83.0,83.0,66.0,92.0,92.0,78.0,65.0,76.0,71.0,67.0,88.0,64.0,53.0,82.0,63.0,69.0,70.0,70.0,54.0,79.0,52.0,82.0,70.0,64.0,85.0,80.0,74.0,79.0,80.0,66.0,80.0,78.0,60.0,68.0,65.0,56.0,68.0,67.0,57.0,51.0,58.0,61.0,61.0,46.0,57.0,45.0,53.0,60.0,65.0,61.0,44.0,53.0,53.0,50.0,52.0,43.0,52.0,53.0,34.0,37.0,55.0,51.0,33.0,55.0,40.0,33.0,28.0,39.0,23.0,23.0,22.0,13.0,26.0,17.0,11.0,11.0,12.0,19.0,10.0,10.0,5.0,5.0,3.0,2.0,2.0,,9.0 P86009,42.0,56.0,57.0,48.0,58.0,63.0,64.0,59.0,77.0,63.0,77.0,77.0,87.0,74.0,61.0,75.0,74.0,71.0,60.0,62.0,59.0,53.0,51.0,66.0,49.0,67.0,64.0,49.0,65.0,49.0,70.0,55.0,86.0,85.0,73.0,83.0,80.0,74.0,66.0,50.0,60.0,70.0,70.0,59.0,65.0,67.0,49.0,64.0,58.0,63.0,61.0,51.0,81.0,72.0,60.0,50.0,53.0,63.0,63.0,60.0,72.0,70.0,70.0,67.0,49.0,52.0,73.0,48.0,42.0,41.0,46.0,52.0,52.0,50.0,57.0,49.0,50.0,36.0,48.0,33.0,35.0,25.0,34.0,33.0,13.0,11.0,19.0,9.0,9.0,8.0,8.0,5.0,7.0,3.0,6.0,6.0 P86010,32.0,47.0,54.0,43.0,41.0,45.0,46.0,54.0,71.0,69.0,60.0,56.0,59.0,83.0,66.0,65.0,62.0,59.0,59.0,53.0,36.0,44.0,41.0,50.0,56.0,40.0,30.0,50.0,42.0,39.0,48.0,54.0,55.0,48.0,47.0,54.0,74.0,55.0,64.0,70.0,61.0,51.0,52.0,68.0,68.0,69.0,47.0,52.0,61.0,54.0,39.0,52.0,58.0,51.0,50.0,47.0,68.0,43.0,50.0,63.0,69.0,51.0,50.0,49.0,56.0,52.0,56.0,51.0,40.0,36.0,44.0,36.0,39.0,33.0,41.0,30.0,34.0,38.0,29.0,17.0,27.0,17.0,9.0,14.0,12.0,8.0,13.0,13.0,7.0,5.0,1.0,7.0,9.0,1.0,1.0,3.0 P86011,32.0,63.0,45.0,46.0,43.0,57.0,60.0,44.0,53.0,62.0,53.0,47.0,67.0,48.0,56.0,56.0,57.0,52.0,50.0,48.0,36.0,40.0,41.0,41.0,45.0,47.0,48.0,37.0,47.0,50.0,58.0,45.0,54.0,51.0,66.0,69.0,74.0,74.0,71.0,48.0,57.0,42.0,55.0,66.0,57.0,52.0,49.0,49.0,54.0,47.0,56.0,46.0,50.0,59.0,59.0,48.0,45.0,48.0,66.0,62.0,55.0,70.0,67.0,56.0,70.0,65.0,48.0,44.0,59.0,40.0,47.0,57.0,52.0,46.0,46.0,47.0,35.0,46.0,47.0,36.0,25.0,17.0,21.0,17.0,13.0,17.0,15.0,13.0,5.0,7.0,7.0,2.0,1.0,1.0,2.0,1.0 P86012,50.0,47.0,67.0,71.0,45.0,62.0,74.0,66.0,89.0,65.0,70.0,81.0,84.0,74.0,85.0,68.0,71.0,60.0,70.0,63.0,53.0,54.0,41.0,42.0,33.0,39.0,42.0,47.0,56.0,57.0,62.0,45.0,60.0,66.0,82.0,75.0,60.0,81.0,62.0,47.0,75.0,75.0,75.0,76.0,67.0,68.0,75.0,66.0,69.0,45.0,50.0,51.0,67.0,54.0,56.0,48.0,58.0,53.0,67.0,61.0,47.0,48.0,49.0,57.0,42.0,36.0,45.0,54.0,41.0,43.0,39.0,39.0,28.0,31.0,29.0,32.0,19.0,22.0,22.0,11.0,18.0,11.0,15.0,9.0,6.0,9.0,4.0,6.0,4.0,6.0,1.0,4.0,1.0,,2.0,4.0 P86013,22.0,12.0,29.0,30.0,35.0,32.0,27.0,43.0,41.0,42.0,35.0,46.0,39.0,36.0,41.0,38.0,51.0,68.0,50.0,57.0,42.0,40.0,41.0,37.0,36.0,37.0,44.0,41.0,41.0,33.0,48.0,39.0,33.0,40.0,40.0,34.0,38.0,49.0,40.0,56.0,36.0,47.0,31.0,63.0,42.0,52.0,46.0,39.0,48.0,35.0,48.0,39.0,47.0,46.0,43.0,37.0,48.0,53.0,39.0,59.0,35.0,44.0,38.0,33.0,40.0,32.0,41.0,41.0,31.0,25.0,27.0,32.0,28.0,22.0,21.0,21.0,20.0,32.0,29.0,18.0,18.0,14.0,17.0,7.0,10.0,8.0,6.0,6.0,4.0,3.0,2.0,4.0,,1.0,1.0,1.0 P86014,53.0,39.0,59.0,50.0,67.0,55.0,54.0,71.0,68.0,57.0,73.0,68.0,80.0,72.0,83.0,54.0,94.0,66.0,82.0,77.0,83.0,66.0,59.0,63.0,73.0,68.0,74.0,59.0,58.0,58.0,68.0,61.0,59.0,63.0,81.0,68.0,67.0,68.0,72.0,75.0,80.0,72.0,66.0,81.0,65.0,69.0,55.0,66.0,70.0,56.0,59.0,48.0,56.0,67.0,70.0,38.0,40.0,32.0,39.0,36.0,51.0,36.0,28.0,25.0,26.0,17.0,31.0,28.0,18.0,22.0,20.0,28.0,23.0,17.0,12.0,12.0,5.0,7.0,5.0,5.0,6.0,9.0,12.0,10.0,3.0,5.0,1.0,6.0,4.0,4.0,2.0,1.0,5.0,,,1.0 P86015,43.0,38.0,38.0,29.0,39.0,39.0,35.0,36.0,43.0,23.0,38.0,42.0,39.0,29.0,30.0,44.0,26.0,27.0,38.0,32.0,42.0,30.0,27.0,28.0,43.0,37.0,31.0,45.0,31.0,39.0,36.0,53.0,60.0,61.0,58.0,67.0,41.0,65.0,65.0,64.0,54.0,48.0,47.0,52.0,39.0,44.0,35.0,49.0,32.0,31.0,37.0,41.0,34.0,39.0,39.0,19.0,38.0,45.0,38.0,30.0,38.0,24.0,34.0,31.0,32.0,34.0,30.0,33.0,24.0,32.0,26.0,16.0,23.0,21.0,12.0,14.0,24.0,14.0,23.0,20.0,8.0,16.0,8.0,10.0,4.0,8.0,3.0,11.0,5.0,3.0,4.0,3.0,2.0,3.0,,4.0 P86016,34.0,53.0,49.0,47.0,54.0,45.0,58.0,57.0,72.0,60.0,69.0,67.0,58.0,77.0,66.0,65.0,62.0,53.0,50.0,57.0,61.0,47.0,50.0,42.0,45.0,57.0,65.0,48.0,43.0,49.0,45.0,58.0,74.0,65.0,73.0,67.0,82.0,84.0,75.0,80.0,67.0,54.0,60.0,66.0,57.0,76.0,64.0,46.0,55.0,52.0,53.0,73.0,59.0,64.0,66.0,53.0,63.0,47.0,65.0,56.0,54.0,54.0,60.0,51.0,61.0,54.0,44.0,52.0,43.0,37.0,38.0,48.0,35.0,27.0,25.0,32.0,23.0,34.0,45.0,19.0,18.0,18.0,18.0,14.0,7.0,7.0,8.0,5.0,6.0,6.0,4.0,4.0,4.0,3.0,1.0,2.0 P86017,23.0,32.0,42.0,41.0,40.0,43.0,43.0,23.0,34.0,40.0,46.0,34.0,42.0,44.0,43.0,34.0,44.0,40.0,47.0,57.0,43.0,47.0,49.0,52.0,41.0,56.0,37.0,31.0,43.0,44.0,34.0,43.0,38.0,36.0,37.0,45.0,34.0,34.0,39.0,46.0,45.0,34.0,44.0,36.0,39.0,35.0,38.0,48.0,38.0,35.0,29.0,39.0,29.0,25.0,26.0,27.0,27.0,19.0,16.0,16.0,19.0,12.0,11.0,12.0,16.0,6.0,9.0,13.0,10.0,12.0,17.0,15.0,11.0,11.0,8.0,7.0,4.0,1.0,,5.0,1.0,2.0,6.0,,1.0,4.0,6.0,,2.0,2.0,1.0,,1.0,2.0,1.0, P86018,30.0,29.0,37.0,31.0,29.0,37.0,40.0,50.0,59.0,55.0,50.0,70.0,62.0,47.0,54.0,54.0,53.0,52.0,58.0,31.0,56.0,60.0,44.0,31.0,40.0,54.0,36.0,53.0,42.0,54.0,49.0,43.0,53.0,54.0,50.0,46.0,52.0,51.0,60.0,44.0,61.0,52.0,58.0,58.0,58.0,82.0,44.0,40.0,45.0,55.0,44.0,50.0,59.0,56.0,73.0,80.0,53.0,53.0,60.0,57.0,86.0,61.0,55.0,49.0,41.0,57.0,60.0,37.0,32.0,48.0,48.0,50.0,35.0,52.0,36.0,46.0,39.0,48.0,44.0,42.0,38.0,18.0,27.0,25.0,15.0,13.0,11.0,11.0,12.0,3.0,4.0,5.0,2.0,1.0,2.0,2.0 P86019,46.0,70.0,54.0,46.0,61.0,43.0,56.0,52.0,57.0,57.0,57.0,54.0,69.0,66.0,71.0,59.0,59.0,76.0,47.0,52.0,41.0,48.0,47.0,56.0,65.0,53.0,62.0,49.0,62.0,49.0,58.0,81.0,65.0,68.0,72.0,65.0,58.0,77.0,57.0,70.0,73.0,65.0,66.0,82.0,74.0,61.0,54.0,56.0,51.0,55.0,56.0,65.0,76.0,65.0,60.0,59.0,73.0,62.0,89.0,72.0,61.0,71.0,71.0,69.0,56.0,58.0,58.0,58.0,70.0,49.0,43.0,67.0,54.0,42.0,43.0,40.0,45.0,53.0,52.0,34.0,24.0,23.0,23.0,18.0,12.0,10.0,12.0,5.0,9.0,8.0,10.0,5.0,8.0,1.0,2.0,2.0 P86021,22.0,16.0,16.0,14.0,20.0,12.0,18.0,19.0,26.0,15.0,19.0,21.0,31.0,24.0,18.0,24.0,18.0,25.0,16.0,21.0,21.0,24.0,14.0,19.0,20.0,24.0,16.0,13.0,16.0,18.0,24.0,24.0,22.0,25.0,24.0,24.0,29.0,28.0,19.0,23.0,27.0,28.0,24.0,20.0,36.0,33.0,25.0,21.0,22.0,26.0,27.0,23.0,30.0,25.0,22.0,28.0,28.0,32.0,35.0,15.0,33.0,20.0,20.0,25.0,21.0,17.0,18.0,14.0,19.0,16.0,16.0,17.0,24.0,12.0,21.0,13.0,26.0,23.0,31.0,15.0,9.0,22.0,15.0,10.0,8.0,9.0,5.0,3.0,2.0,2.0,2.0,3.0,2.0,1.0,1.0,1.0 P86022,28.0,30.0,36.0,48.0,33.0,44.0,48.0,57.0,47.0,49.0,40.0,50.0,44.0,51.0,60.0,60.0,56.0,69.0,34.0,47.0,49.0,40.0,54.0,43.0,49.0,46.0,45.0,58.0,45.0,59.0,61.0,66.0,61.0,73.0,74.0,69.0,57.0,70.0,54.0,63.0,57.0,54.0,60.0,50.0,48.0,52.0,36.0,40.0,36.0,43.0,53.0,49.0,58.0,54.0,52.0,66.0,58.0,74.0,86.0,76.0,73.0,61.0,62.0,66.0,56.0,59.0,60.0,56.0,54.0,39.0,40.0,40.0,31.0,46.0,41.0,47.0,49.0,39.0,35.0,22.0,27.0,27.0,22.0,20.0,12.0,15.0,16.0,11.0,8.0,8.0,4.0,3.0,3.0,,,2.0 P86023,61.0,53.0,67.0,76.0,65.0,59.0,65.0,68.0,58.0,57.0,72.0,63.0,78.0,61.0,56.0,58.0,60.0,56.0,62.0,44.0,51.0,55.0,53.0,42.0,61.0,50.0,47.0,60.0,60.0,54.0,73.0,67.0,61.0,69.0,60.0,83.0,76.0,63.0,66.0,75.0,64.0,66.0,64.0,64.0,71.0,62.0,63.0,57.0,58.0,58.0,56.0,63.0,65.0,62.0,65.0,56.0,56.0,61.0,60.0,48.0,46.0,67.0,55.0,53.0,32.0,49.0,44.0,35.0,40.0,32.0,30.0,36.0,37.0,38.0,34.0,36.0,37.0,33.0,39.0,17.0,31.0,28.0,19.0,12.0,18.0,12.0,13.0,7.0,5.0,1.0,8.0,,2.0,,,4.0 P86026,28.0,42.0,43.0,47.0,28.0,51.0,46.0,53.0,64.0,43.0,57.0,55.0,41.0,57.0,56.0,44.0,58.0,60.0,50.0,54.0,50.0,47.0,43.0,41.0,57.0,41.0,51.0,50.0,36.0,41.0,46.0,50.0,52.0,43.0,62.0,53.0,51.0,51.0,58.0,58.0,53.0,48.0,59.0,46.0,51.0,46.0,43.0,51.0,48.0,49.0,57.0,50.0,50.0,52.0,49.0,68.0,52.0,47.0,44.0,47.0,45.0,38.0,44.0,42.0,34.0,35.0,26.0,25.0,28.0,26.0,28.0,34.0,28.0,30.0,32.0,26.0,20.0,26.0,30.0,21.0,16.0,17.0,19.0,14.0,13.0,14.0,10.0,7.0,8.0,2.0,5.0,1.0,1.0,2.0,1.0,1.0 P86602,20.0,18.0,18.0,20.0,17.0,18.0,29.0,19.0,23.0,21.0,24.0,25.0,15.0,20.0,19.0,21.0,24.0,26.0,22.0,31.0,21.0,16.0,17.0,19.0,12.0,22.0,21.0,21.0,18.0,22.0,24.0,20.0,18.0,22.0,27.0,17.0,22.0,29.0,27.0,24.0,39.0,17.0,21.0,23.0,24.0,21.0,17.0,16.0,18.0,21.0,20.0,19.0,23.0,27.0,23.0,26.0,30.0,35.0,36.0,26.0,28.0,30.0,25.0,22.0,13.0,23.0,17.0,16.0,22.0,14.0,15.0,18.0,13.0,15.0,7.0,17.0,13.0,15.0,9.0,7.0,6.0,,4.0,4.0,6.0,3.0,4.0,1.0,2.0,2.0,,,1.0,,1.0,3.0 P86606,15.0,28.0,28.0,31.0,33.0,38.0,30.0,43.0,35.0,37.0,41.0,38.0,30.0,33.0,36.0,32.0,33.0,36.0,40.0,26.0,30.0,37.0,27.0,19.0,22.0,18.0,32.0,32.0,17.0,32.0,34.0,31.0,26.0,23.0,28.0,41.0,30.0,30.0,29.0,30.0,31.0,35.0,38.0,23.0,29.0,29.0,21.0,24.0,20.0,22.0,30.0,31.0,23.0,22.0,32.0,30.0,30.0,26.0,29.0,26.0,30.0,24.0,29.0,18.0,27.0,22.0,24.0,16.0,18.0,22.0,20.0,9.0,16.0,16.0,11.0,9.0,10.0,14.0,15.0,6.0,6.0,8.0,8.0,5.0,7.0,4.0,3.0,1.0,3.0,2.0,,,1.0,1.0,, P86608,17.0,18.0,21.0,27.0,20.0,29.0,22.0,23.0,22.0,21.0,30.0,34.0,26.0,24.0,24.0,33.0,27.0,29.0,20.0,29.0,13.0,20.0,17.0,21.0,12.0,24.0,25.0,20.0,31.0,26.0,23.0,31.0,44.0,43.0,31.0,34.0,34.0,62.0,28.0,28.0,31.0,29.0,40.0,24.0,22.0,32.0,32.0,28.0,18.0,21.0,23.0,25.0,28.0,27.0,28.0,33.0,22.0,33.0,33.0,37.0,39.0,36.0,40.0,41.0,37.0,23.0,34.0,25.0,13.0,27.0,22.0,21.0,21.0,25.0,22.0,19.0,14.0,16.0,22.0,14.0,7.0,12.0,10.0,8.0,5.0,3.0,7.0,1.0,5.0,1.0,1.0,2.0,1.0,,, P86609,18.0,10.0,14.0,17.0,15.0,10.0,18.0,14.0,21.0,15.0,17.0,21.0,21.0,28.0,19.0,23.0,18.0,26.0,22.0,19.0,20.0,21.0,24.0,22.0,13.0,20.0,16.0,21.0,24.0,12.0,16.0,18.0,17.0,23.0,22.0,20.0,19.0,16.0,20.0,15.0,22.0,19.0,24.0,29.0,16.0,21.0,21.0,22.0,21.0,17.0,20.0,17.0,12.0,19.0,16.0,9.0,12.0,14.0,13.0,11.0,14.0,10.0,11.0,8.0,10.0,10.0,11.0,6.0,8.0,6.0,7.0,9.0,6.0,10.0,4.0,3.0,2.0,4.0,3.0,1.0,6.0,3.0,3.0,3.0,2.0,4.0,3.0,2.0,,1.0,,2.0,1.0,,,2.0 P86614,25.0,22.0,35.0,20.0,30.0,27.0,30.0,34.0,36.0,35.0,36.0,41.0,45.0,42.0,41.0,69.0,49.0,47.0,28.0,42.0,48.0,30.0,54.0,42.0,43.0,46.0,44.0,39.0,32.0,38.0,34.0,53.0,45.0,36.0,40.0,46.0,42.0,43.0,49.0,47.0,34.0,40.0,35.0,41.0,43.0,42.0,38.0,48.0,39.0,32.0,37.0,40.0,38.0,26.0,32.0,39.0,35.0,24.0,17.0,22.0,16.0,16.0,10.0,14.0,9.0,13.0,11.0,18.0,13.0,18.0,13.0,6.0,11.0,7.0,3.0,5.0,4.0,5.0,2.0,2.0,3.0,3.0,4.0,2.0,2.0,2.0,3.0,1.0,,2.0,3.0,,2.0,,1.0,2.0 P86619,33.0,41.0,50.0,43.0,41.0,39.0,48.0,46.0,67.0,66.0,66.0,54.0,64.0,68.0,82.0,59.0,67.0,72.0,70.0,59.0,60.0,51.0,59.0,54.0,52.0,54.0,42.0,53.0,51.0,55.0,65.0,50.0,57.0,57.0,50.0,45.0,49.0,57.0,43.0,52.0,52.0,49.0,42.0,64.0,44.0,42.0,55.0,49.0,49.0,56.0,51.0,51.0,38.0,36.0,47.0,37.0,42.0,33.0,32.0,27.0,18.0,29.0,27.0,33.0,26.0,18.0,25.0,17.0,19.0,23.0,12.0,14.0,18.0,16.0,10.0,11.0,7.0,7.0,4.0,3.0,4.0,4.0,2.0,7.0,5.0,3.0,3.0,2.0,4.0,3.0,1.0,3.0,,2.0,,1.0 P86620,13.0,18.0,18.0,20.0,21.0,20.0,21.0,19.0,25.0,29.0,16.0,19.0,25.0,26.0,20.0,22.0,27.0,25.0,13.0,22.0,16.0,19.0,11.0,11.0,17.0,15.0,14.0,15.0,19.0,20.0,24.0,25.0,21.0,24.0,23.0,30.0,29.0,30.0,25.0,28.0,24.0,24.0,20.0,21.0,23.0,18.0,15.0,22.0,15.0,15.0,15.0,15.0,19.0,18.0,23.0,12.0,16.0,15.0,16.0,12.0,23.0,9.0,16.0,15.0,10.0,13.0,7.0,13.0,11.0,10.0,4.0,15.0,7.0,5.0,10.0,2.0,2.0,6.0,2.0,5.0,1.0,5.0,2.0,1.0,1.0,,4.0,2.0,,,,,,,, P86624,18.0,21.0,16.0,21.0,11.0,19.0,18.0,16.0,26.0,26.0,20.0,23.0,18.0,23.0,28.0,29.0,19.0,21.0,47.0,29.0,23.0,22.0,27.0,26.0,27.0,21.0,22.0,25.0,23.0,21.0,19.0,24.0,22.0,24.0,18.0,27.0,28.0,17.0,25.0,22.0,27.0,27.0,28.0,29.0,32.0,30.0,27.0,27.0,20.0,25.0,27.0,34.0,31.0,42.0,36.0,35.0,34.0,36.0,37.0,38.0,36.0,26.0,37.0,34.0,30.0,19.0,24.0,18.0,23.0,21.0,25.0,16.0,25.0,21.0,18.0,25.0,22.0,31.0,24.0,15.0,15.0,17.0,7.0,8.0,9.0,6.0,6.0,7.0,5.0,,4.0,2.0,1.0,2.0,,1.0 P87002,39.0,47.0,46.0,55.0,52.0,66.0,75.0,67.0,72.0,67.0,56.0,80.0,70.0,66.0,86.0,85.0,83.0,81.0,88.0,75.0,76.0,59.0,55.0,68.0,56.0,60.0,66.0,88.0,52.0,64.0,65.0,80.0,83.0,83.0,75.0,88.0,85.0,89.0,83.0,102.0,78.0,87.0,77.0,67.0,83.0,98.0,77.0,77.0,77.0,68.0,75.0,70.0,69.0,84.0,87.0,75.0,93.0,79.0,67.0,89.0,67.0,86.0,62.0,84.0,78.0,61.0,58.0,71.0,58.0,43.0,57.0,46.0,48.0,39.0,52.0,45.0,44.0,46.0,50.0,33.0,30.0,29.0,24.0,20.0,23.0,26.0,19.0,15.0,12.0,10.0,11.0,7.0,1.0,4.0,4.0,8.0 P87004,66.0,83.0,55.0,75.0,67.0,27.0,56.0,36.0,41.0,33.0,37.0,49.0,51.0,41.0,47.0,32.0,34.0,38.0,40.0,56.0,57.0,111.0,118.0,174.0,266.0,326.0,342.0,363.0,369.0,337.0,285.0,280.0,251.0,203.0,199.0,235.0,160.0,162.0,140.0,130.0,110.0,96.0,88.0,85.0,58.0,48.0,72.0,58.0,52.0,46.0,43.0,38.0,46.0,46.0,38.0,49.0,35.0,35.0,34.0,35.0,37.0,35.0,33.0,26.0,25.0,32.0,24.0,18.0,23.0,21.0,14.0,16.0,15.0,14.0,15.0,14.0,22.0,11.0,11.0,11.0,5.0,6.0,8.0,13.0,5.0,2.0,3.0,5.0,2.0,3.0,1.0,1.0,,,,1.0 P87008,43.0,53.0,58.0,50.0,54.0,45.0,53.0,48.0,51.0,47.0,45.0,52.0,36.0,45.0,48.0,55.0,56.0,45.0,35.0,47.0,48.0,35.0,45.0,35.0,47.0,55.0,41.0,67.0,66.0,62.0,80.0,72.0,84.0,74.0,95.0,94.0,79.0,84.0,86.0,71.0,65.0,78.0,69.0,56.0,54.0,58.0,46.0,40.0,52.0,48.0,47.0,49.0,38.0,55.0,54.0,60.0,57.0,46.0,55.0,56.0,46.0,46.0,65.0,41.0,56.0,36.0,40.0,41.0,37.0,38.0,26.0,33.0,37.0,26.0,28.0,40.0,28.0,48.0,39.0,35.0,22.0,24.0,23.0,12.0,14.0,10.0,10.0,11.0,10.0,9.0,9.0,3.0,1.0,4.0,5.0,6.0 P87015,46.0,51.0,48.0,42.0,36.0,43.0,38.0,39.0,37.0,28.0,37.0,26.0,35.0,28.0,24.0,30.0,27.0,31.0,33.0,53.0,60.0,75.0,100.0,78.0,115.0,112.0,134.0,122.0,130.0,127.0,96.0,113.0,103.0,90.0,93.0,102.0,79.0,83.0,67.0,64.0,68.0,46.0,57.0,39.0,47.0,45.0,50.0,45.0,36.0,32.0,30.0,35.0,44.0,37.0,37.0,41.0,31.0,32.0,27.0,37.0,31.0,32.0,33.0,29.0,21.0,20.0,20.0,28.0,19.0,19.0,17.0,17.0,16.0,15.0,17.0,17.0,16.0,23.0,10.0,9.0,11.0,10.0,11.0,12.0,4.0,1.0,2.0,3.0,2.0,3.0,2.0,1.0,,,, P87016,60.0,57.0,65.0,73.0,86.0,89.0,80.0,68.0,86.0,91.0,75.0,66.0,87.0,94.0,96.0,84.0,67.0,88.0,82.0,66.0,58.0,60.0,69.0,57.0,63.0,64.0,58.0,46.0,79.0,63.0,67.0,68.0,106.0,76.0,87.0,78.0,97.0,99.0,94.0,116.0,96.0,89.0,95.0,97.0,93.0,101.0,104.0,92.0,82.0,91.0,79.0,85.0,87.0,98.0,89.0,99.0,106.0,107.0,85.0,95.0,89.0,91.0,81.0,92.0,72.0,76.0,81.0,76.0,68.0,56.0,53.0,65.0,60.0,48.0,72.0,52.0,70.0,83.0,81.0,43.0,53.0,47.0,44.0,34.0,28.0,30.0,34.0,30.0,22.0,20.0,18.0,8.0,12.0,6.0,7.0,9.0 P87017,17.0,17.0,18.0,24.0,21.0,23.0,23.0,31.0,18.0,22.0,21.0,25.0,26.0,24.0,40.0,31.0,33.0,37.0,32.0,22.0,44.0,30.0,24.0,29.0,27.0,26.0,33.0,21.0,15.0,27.0,30.0,30.0,28.0,34.0,38.0,29.0,32.0,36.0,27.0,36.0,26.0,28.0,21.0,31.0,30.0,41.0,24.0,23.0,28.0,29.0,33.0,29.0,38.0,36.0,37.0,34.0,21.0,38.0,40.0,35.0,46.0,46.0,39.0,21.0,27.0,33.0,24.0,25.0,27.0,25.0,27.0,24.0,20.0,16.0,24.0,29.0,20.0,18.0,28.0,25.0,17.0,12.0,9.0,9.0,7.0,6.0,6.0,12.0,3.0,6.0,3.0,2.0,1.0,1.0,1.0,1.0 P87019,55.0,69.0,66.0,88.0,69.0,82.0,75.0,79.0,72.0,73.0,73.0,68.0,83.0,87.0,94.0,79.0,80.0,82.0,78.0,51.0,81.0,53.0,58.0,65.0,56.0,64.0,83.0,99.0,97.0,85.0,88.0,99.0,105.0,122.0,109.0,105.0,96.0,105.0,101.0,109.0,114.0,101.0,105.0,95.0,95.0,95.0,90.0,80.0,64.0,75.0,67.0,74.0,82.0,81.0,93.0,86.0,89.0,72.0,79.0,69.0,64.0,73.0,96.0,78.0,83.0,62.0,68.0,70.0,62.0,54.0,53.0,48.0,48.0,42.0,52.0,46.0,57.0,70.0,63.0,44.0,39.0,26.0,26.0,31.0,22.0,21.0,19.0,19.0,15.0,19.0,8.0,5.0,8.0,3.0,1.0,3.0 P87020,75.0,77.0,89.0,93.0,104.0,92.0,89.0,85.0,100.0,99.0,90.0,115.0,79.0,88.0,98.0,91.0,102.0,86.0,81.0,88.0,64.0,78.0,72.0,73.0,104.0,105.0,99.0,140.0,123.0,126.0,145.0,158.0,168.0,162.0,161.0,160.0,159.0,152.0,134.0,142.0,152.0,113.0,132.0,111.0,118.0,114.0,108.0,86.0,85.0,90.0,110.0,100.0,84.0,108.0,99.0,103.0,93.0,114.0,97.0,110.0,95.0,111.0,107.0,97.0,98.0,84.0,83.0,78.0,64.0,67.0,61.0,63.0,64.0,44.0,55.0,62.0,45.0,43.0,52.0,48.0,37.0,28.0,27.0,17.0,15.0,28.0,12.0,13.0,10.0,10.0,10.0,2.0,5.0,3.0,2.0,7.0 P87022,6.0,8.0,6.0,,5.0,6.0,7.0,15.0,6.0,15.0,10.0,13.0,14.0,13.0,10.0,12.0,16.0,13.0,14.0,13.0,11.0,7.0,8.0,16.0,13.0,17.0,26.0,22.0,22.0,23.0,20.0,18.0,14.0,17.0,22.0,16.0,17.0,11.0,11.0,12.0,17.0,15.0,16.0,26.0,19.0,17.0,24.0,23.0,21.0,15.0,18.0,9.0,17.0,15.0,19.0,21.0,22.0,16.0,19.0,19.0,18.0,15.0,13.0,17.0,21.0,19.0,17.0,9.0,18.0,15.0,14.0,12.0,6.0,8.0,6.0,11.0,6.0,9.0,6.0,5.0,8.0,6.0,2.0,1.0,5.0,,3.0,3.0,,2.0,1.0,1.0,1.0,,, P87024,59.0,72.0,74.0,72.0,83.0,68.0,74.0,87.0,72.0,85.0,64.0,75.0,85.0,65.0,71.0,76.0,57.0,64.0,66.0,76.0,69.0,65.0,56.0,56.0,73.0,82.0,97.0,93.0,127.0,115.0,108.0,101.0,126.0,127.0,119.0,123.0,113.0,117.0,111.0,109.0,99.0,99.0,93.0,86.0,92.0,75.0,85.0,66.0,65.0,62.0,72.0,69.0,54.0,76.0,70.0,65.0,62.0,70.0,56.0,58.0,73.0,64.0,59.0,70.0,56.0,45.0,47.0,52.0,51.0,43.0,46.0,47.0,33.0,33.0,26.0,31.0,30.0,23.0,15.0,22.0,18.0,19.0,17.0,8.0,8.0,12.0,15.0,7.0,7.0,4.0,2.0,3.0,4.0,,2.0,1.0 P87025,53.0,51.0,44.0,63.0,52.0,53.0,54.0,74.0,71.0,76.0,74.0,71.0,67.0,72.0,75.0,66.0,63.0,57.0,65.0,46.0,54.0,46.0,46.0,67.0,51.0,67.0,62.0,71.0,64.0,73.0,68.0,86.0,77.0,96.0,102.0,96.0,90.0,94.0,96.0,83.0,91.0,90.0,82.0,75.0,68.0,75.0,67.0,59.0,64.0,60.0,64.0,56.0,60.0,58.0,70.0,51.0,63.0,47.0,54.0,54.0,69.0,46.0,57.0,57.0,53.0,61.0,47.0,34.0,47.0,35.0,48.0,37.0,34.0,31.0,31.0,35.0,33.0,22.0,28.0,26.0,29.0,18.0,20.0,7.0,10.0,11.0,10.0,5.0,10.0,5.0,8.0,3.0,5.0,2.0,2.0,3.0 P87026,84.0,117.0,105.0,105.0,97.0,97.0,101.0,87.0,105.0,104.0,116.0,94.0,100.0,73.0,115.0,103.0,104.0,85.0,100.0,86.0,82.0,78.0,88.0,85.0,90.0,92.0,108.0,107.0,112.0,130.0,109.0,124.0,111.0,134.0,134.0,137.0,124.0,130.0,100.0,125.0,111.0,124.0,142.0,138.0,128.0,110.0,102.0,96.0,91.0,101.0,101.0,87.0,76.0,80.0,62.0,76.0,66.0,76.0,65.0,85.0,72.0,61.0,70.0,43.0,49.0,46.0,53.0,55.0,54.0,44.0,44.0,29.0,42.0,42.0,42.0,32.0,29.0,31.0,27.0,26.0,22.0,12.0,10.0,16.0,15.0,6.0,5.0,10.0,6.0,4.0,7.0,4.0,4.0,3.0,2.0,5.0 P87027,36.0,55.0,52.0,60.0,55.0,55.0,72.0,46.0,72.0,46.0,54.0,50.0,66.0,66.0,68.0,56.0,66.0,55.0,155.0,277.0,341.0,327.0,300.0,304.0,315.0,333.0,312.0,348.0,311.0,300.0,328.0,291.0,290.0,277.0,273.0,224.0,261.0,220.0,259.0,244.0,190.0,193.0,182.0,153.0,148.0,147.0,150.0,101.0,102.0,112.0,108.0,89.0,70.0,77.0,88.0,81.0,79.0,64.0,82.0,70.0,56.0,59.0,60.0,66.0,44.0,46.0,63.0,38.0,42.0,36.0,37.0,36.0,29.0,24.0,34.0,27.0,24.0,29.0,26.0,17.0,13.0,15.0,12.0,17.0,5.0,11.0,7.0,8.0,12.0,4.0,3.0,2.0,4.0,,, P87028,63.0,64.0,63.0,75.0,77.0,73.0,70.0,59.0,80.0,62.0,74.0,67.0,71.0,75.0,72.0,55.0,54.0,55.0,49.0,50.0,40.0,34.0,38.0,37.0,48.0,39.0,55.0,38.0,57.0,63.0,58.0,71.0,73.0,74.0,81.0,92.0,97.0,82.0,76.0,82.0,71.0,78.0,83.0,73.0,87.0,58.0,62.0,64.0,58.0,58.0,57.0,48.0,57.0,73.0,45.0,54.0,61.0,59.0,50.0,51.0,70.0,71.0,58.0,55.0,40.0,41.0,37.0,38.0,33.0,39.0,30.0,22.0,39.0,37.0,32.0,33.0,28.0,35.0,32.0,16.0,33.0,24.0,14.0,21.0,14.0,19.0,11.0,12.0,8.0,8.0,3.0,2.0,2.0,4.0,1.0,6.0 P87032,38.0,37.0,31.0,35.0,29.0,36.0,42.0,43.0,34.0,25.0,31.0,38.0,45.0,38.0,43.0,38.0,46.0,36.0,26.0,28.0,24.0,30.0,30.0,30.0,33.0,34.0,39.0,44.0,56.0,50.0,56.0,52.0,52.0,65.0,75.0,60.0,58.0,60.0,51.0,50.0,62.0,53.0,67.0,48.0,35.0,34.0,39.0,34.0,39.0,35.0,29.0,33.0,30.0,36.0,30.0,37.0,37.0,36.0,43.0,42.0,44.0,50.0,42.0,51.0,33.0,38.0,35.0,33.0,30.0,23.0,29.0,34.0,17.0,26.0,15.0,23.0,19.0,18.0,14.0,9.0,10.0,13.0,15.0,11.0,8.0,12.0,8.0,5.0,3.0,5.0,2.0,2.0,2.0,2.0,1.0,2.0 P87035,48.0,41.0,52.0,55.0,39.0,37.0,39.0,51.0,43.0,51.0,39.0,45.0,55.0,49.0,62.0,31.0,41.0,43.0,41.0,51.0,56.0,63.0,99.0,165.0,188.0,222.0,203.0,228.0,208.0,213.0,212.0,211.0,203.0,205.0,165.0,172.0,172.0,137.0,141.0,115.0,128.0,102.0,89.0,104.0,109.0,81.0,69.0,66.0,56.0,53.0,55.0,48.0,48.0,62.0,37.0,49.0,54.0,48.0,49.0,34.0,38.0,42.0,42.0,32.0,30.0,29.0,40.0,30.0,19.0,27.0,17.0,13.0,21.0,18.0,19.0,23.0,25.0,21.0,19.0,14.0,10.0,7.0,8.0,9.0,3.0,9.0,2.0,1.0,5.0,4.0,,1.0,1.0,,3.0,2.0 P87040,31.0,34.0,43.0,53.0,39.0,54.0,43.0,30.0,56.0,46.0,45.0,50.0,49.0,43.0,59.0,64.0,52.0,46.0,53.0,52.0,48.0,60.0,57.0,47.0,49.0,55.0,72.0,41.0,61.0,55.0,57.0,70.0,60.0,70.0,70.0,74.0,79.0,86.0,69.0,80.0,68.0,42.0,51.0,46.0,67.0,54.0,61.0,49.0,56.0,48.0,54.0,43.0,55.0,71.0,62.0,66.0,66.0,63.0,59.0,70.0,82.0,79.0,75.0,68.0,58.0,56.0,48.0,56.0,58.0,43.0,34.0,42.0,44.0,29.0,40.0,32.0,23.0,36.0,21.0,28.0,20.0,19.0,16.0,13.0,10.0,10.0,8.0,9.0,9.0,6.0,6.0,1.0,3.0,4.0,2.0,4.0 P87610,54.0,71.0,59.0,65.0,62.0,75.0,66.0,82.0,87.0,82.0,79.0,75.0,92.0,96.0,79.0,95.0,97.0,74.0,91.0,80.0,76.0,60.0,73.0,63.0,72.0,63.0,91.0,56.0,93.0,71.0,77.0,84.0,82.0,89.0,104.0,89.0,79.0,98.0,67.0,88.0,95.0,96.0,89.0,96.0,83.0,77.0,71.0,84.0,72.0,70.0,76.0,67.0,84.0,90.0,91.0,76.0,91.0,95.0,82.0,106.0,95.0,87.0,98.0,71.0,85.0,67.0,72.0,63.0,63.0,51.0,56.0,49.0,43.0,31.0,30.0,41.0,50.0,39.0,55.0,31.0,35.0,36.0,35.0,21.0,23.0,15.0,19.0,13.0,20.0,8.0,5.0,6.0,1.0,,,3.0 P87613,28.0,33.0,29.0,41.0,32.0,40.0,43.0,47.0,49.0,51.0,41.0,46.0,49.0,42.0,30.0,41.0,31.0,38.0,29.0,23.0,30.0,34.0,14.0,25.0,19.0,24.0,22.0,25.0,24.0,28.0,26.0,27.0,37.0,39.0,39.0,46.0,43.0,27.0,34.0,29.0,50.0,48.0,51.0,37.0,36.0,33.0,28.0,25.0,25.0,33.0,25.0,18.0,24.0,23.0,30.0,18.0,19.0,20.0,26.0,26.0,21.0,16.0,22.0,21.0,25.0,20.0,22.0,23.0,18.0,14.0,9.0,13.0,6.0,13.0,17.0,20.0,12.0,14.0,7.0,6.0,10.0,8.0,2.0,4.0,5.0,3.0,2.0,7.0,3.0,1.0,,,,,, P87620,55.0,58.0,49.0,57.0,49.0,46.0,61.0,53.0,56.0,63.0,52.0,75.0,58.0,54.0,57.0,61.0,66.0,66.0,59.0,45.0,53.0,44.0,34.0,38.0,45.0,35.0,55.0,57.0,63.0,72.0,72.0,74.0,98.0,98.0,88.0,72.0,89.0,78.0,88.0,96.0,77.0,79.0,85.0,71.0,71.0,80.0,73.0,61.0,71.0,62.0,64.0,70.0,64.0,92.0,65.0,57.0,72.0,51.0,64.0,66.0,79.0,60.0,53.0,43.0,55.0,54.0,39.0,39.0,42.0,33.0,35.0,33.0,28.0,30.0,27.0,26.0,25.0,30.0,32.0,20.0,19.0,13.0,20.0,14.0,11.0,10.0,15.0,10.0,3.0,5.0,6.0,5.0,3.0,3.0,3.0,4.0 P87624,30.0,22.0,26.0,40.0,35.0,35.0,32.0,50.0,29.0,37.0,31.0,24.0,28.0,24.0,25.0,30.0,44.0,29.0,31.0,25.0,20.0,28.0,17.0,22.0,21.0,19.0,19.0,19.0,23.0,28.0,28.0,19.0,34.0,26.0,37.0,36.0,27.0,35.0,54.0,52.0,38.0,43.0,42.0,47.0,32.0,36.0,33.0,26.0,25.0,26.0,32.0,21.0,29.0,30.0,27.0,35.0,30.0,28.0,25.0,27.0,20.0,28.0,31.0,35.0,38.0,33.0,22.0,26.0,29.0,24.0,31.0,28.0,26.0,21.0,15.0,12.0,24.0,20.0,33.0,15.0,19.0,17.0,10.0,10.0,8.0,8.0,5.0,10.0,9.0,2.0,3.0,2.0,1.0,2.0,1.0, P87625,15.0,17.0,17.0,21.0,22.0,15.0,18.0,27.0,20.0,21.0,17.0,25.0,24.0,28.0,16.0,24.0,26.0,22.0,23.0,19.0,18.0,21.0,21.0,14.0,19.0,13.0,10.0,17.0,18.0,18.0,23.0,24.0,17.0,28.0,23.0,34.0,24.0,17.0,33.0,26.0,20.0,22.0,26.0,13.0,20.0,14.0,16.0,8.0,16.0,20.0,18.0,15.0,14.0,15.0,16.0,15.0,22.0,22.0,22.0,22.0,11.0,13.0,16.0,15.0,11.0,13.0,9.0,12.0,10.0,12.0,9.0,5.0,8.0,11.0,11.0,5.0,6.0,5.0,3.0,1.0,2.0,8.0,3.0,4.0,2.0,2.0,,2.0,,1.0,,1.0,,,, P87627,20.0,16.0,25.0,25.0,30.0,18.0,24.0,14.0,16.0,22.0,19.0,23.0,21.0,29.0,18.0,17.0,29.0,18.0,20.0,17.0,11.0,26.0,13.0,15.0,13.0,17.0,15.0,18.0,22.0,15.0,18.0,25.0,32.0,23.0,31.0,31.0,19.0,28.0,35.0,33.0,27.0,22.0,28.0,25.0,23.0,22.0,17.0,15.0,25.0,21.0,24.0,17.0,19.0,35.0,24.0,25.0,16.0,31.0,17.0,23.0,18.0,20.0,22.0,25.0,23.0,15.0,16.0,19.0,17.0,6.0,20.0,15.0,14.0,15.0,11.0,11.0,13.0,10.0,13.0,10.0,10.0,11.0,7.0,7.0,4.0,4.0,4.0,3.0,2.0,2.0,1.0,4.0,,,,2.0 P87630,10.0,22.0,25.0,30.0,26.0,28.0,27.0,38.0,22.0,31.0,22.0,26.0,20.0,18.0,28.0,23.0,21.0,30.0,18.0,18.0,22.0,18.0,21.0,17.0,23.0,14.0,23.0,15.0,20.0,23.0,21.0,24.0,29.0,29.0,24.0,28.0,28.0,25.0,26.0,29.0,24.0,23.0,31.0,20.0,19.0,14.0,13.0,15.0,15.0,13.0,13.0,13.0,21.0,22.0,24.0,14.0,19.0,16.0,13.0,19.0,14.0,30.0,12.0,16.0,16.0,16.0,13.0,9.0,15.0,16.0,6.0,4.0,13.0,6.0,11.0,6.0,8.0,9.0,6.0,3.0,5.0,,5.0,2.0,,2.0,4.0,2.0,2.0,1.0,1.0,1.0,,,,1.0 P87634,45.0,48.0,43.0,52.0,53.0,53.0,60.0,50.0,60.0,69.0,56.0,52.0,48.0,52.0,64.0,58.0,51.0,62.0,49.0,54.0,60.0,67.0,70.0,90.0,95.0,129.0,130.0,120.0,154.0,133.0,133.0,117.0,145.0,145.0,146.0,139.0,118.0,131.0,140.0,104.0,108.0,104.0,125.0,104.0,99.0,108.0,87.0,69.0,61.0,64.0,61.0,53.0,62.0,61.0,63.0,49.0,65.0,68.0,75.0,59.0,53.0,55.0,62.0,49.0,42.0,45.0,46.0,32.0,28.0,14.0,25.0,27.0,26.0,25.0,23.0,22.0,17.0,26.0,16.0,22.0,10.0,6.0,13.0,8.0,9.0,7.0,7.0,7.0,4.0,7.0,2.0,1.0,3.0,1.0,1.0,1.0 P87639,22.0,13.0,17.0,16.0,30.0,28.0,21.0,30.0,23.0,28.0,32.0,28.0,16.0,23.0,24.0,21.0,22.0,21.0,28.0,14.0,11.0,25.0,28.0,33.0,36.0,56.0,69.0,67.0,80.0,76.0,73.0,72.0,69.0,70.0,80.0,67.0,65.0,58.0,41.0,39.0,47.0,41.0,50.0,50.0,45.0,39.0,40.0,28.0,20.0,15.0,19.0,23.0,21.0,12.0,12.0,13.0,15.0,17.0,17.0,18.0,11.0,19.0,14.0,16.0,20.0,15.0,10.0,16.0,11.0,3.0,11.0,7.0,9.0,5.0,11.0,10.0,5.0,6.0,5.0,5.0,4.0,5.0,1.0,1.0,5.0,3.0,1.0,2.0,,1.0,,,,,, P87648,93.0,88.0,102.0,96.0,100.0,99.0,115.0,107.0,117.0,99.0,88.0,108.0,100.0,81.0,91.0,79.0,72.0,76.0,67.0,66.0,58.0,62.0,45.0,43.0,42.0,44.0,46.0,38.0,50.0,50.0,48.0,36.0,36.0,51.0,47.0,39.0,37.0,37.0,31.0,39.0,33.0,41.0,41.0,34.0,33.0,23.0,31.0,20.0,21.0,15.0,26.0,15.0,20.0,15.0,22.0,18.0,15.0,13.0,18.0,11.0,7.0,12.0,10.0,17.0,7.0,8.0,16.0,14.0,6.0,10.0,6.0,14.0,8.0,10.0,7.0,5.0,7.0,5.0,8.0,8.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,1.0,4.0,1.0,,1.0,,1.0,, P87649,37.0,24.0,38.0,34.0,40.0,37.0,30.0,36.0,39.0,44.0,36.0,47.0,38.0,45.0,37.0,33.0,35.0,42.0,29.0,31.0,31.0,29.0,22.0,37.0,39.0,25.0,39.0,46.0,55.0,37.0,44.0,43.0,72.0,45.0,54.0,53.0,50.0,55.0,49.0,47.0,54.0,43.0,45.0,45.0,44.0,52.0,41.0,26.0,39.0,27.0,40.0,29.0,38.0,44.0,44.0,49.0,55.0,40.0,51.0,45.0,34.0,45.0,42.0,41.0,38.0,34.0,25.0,35.0,31.0,31.0,27.0,21.0,23.0,24.0,33.0,21.0,28.0,20.0,30.0,17.0,30.0,18.0,20.0,14.0,12.0,18.0,5.0,11.0,4.0,2.0,6.0,4.0,3.0,4.0,1.0,2.0 P87651,52.0,68.0,55.0,80.0,62.0,64.0,67.0,69.0,80.0,75.0,83.0,78.0,72.0,84.0,74.0,89.0,62.0,55.0,51.0,57.0,52.0,50.0,62.0,47.0,28.0,38.0,36.0,33.0,61.0,49.0,26.0,42.0,33.0,44.0,29.0,31.0,26.0,32.0,30.0,30.0,29.0,34.0,27.0,32.0,25.0,33.0,26.0,26.0,17.0,11.0,17.0,16.0,15.0,18.0,15.0,11.0,17.0,18.0,8.0,13.0,13.0,8.0,6.0,5.0,8.0,4.0,8.0,7.0,2.0,8.0,2.0,12.0,6.0,5.0,8.0,6.0,5.0,5.0,8.0,4.0,2.0,3.0,3.0,,,2.0,1.0,1.0,2.0,,,1.0,,1.0,2.0, P87654,62.0,73.0,75.0,66.0,70.0,74.0,68.0,66.0,68.0,72.0,68.0,73.0,91.0,68.0,85.0,68.0,64.0,78.0,67.0,89.0,67.0,73.0,89.0,83.0,100.0,106.0,98.0,112.0,121.0,120.0,106.0,109.0,123.0,136.0,105.0,115.0,127.0,110.0,117.0,106.0,111.0,111.0,103.0,101.0,104.0,95.0,109.0,77.0,77.0,65.0,69.0,69.0,63.0,88.0,91.0,72.0,71.0,67.0,62.0,69.0,75.0,74.0,64.0,64.0,55.0,40.0,56.0,46.0,40.0,44.0,33.0,35.0,26.0,30.0,31.0,29.0,23.0,26.0,29.0,14.0,14.0,13.0,9.0,6.0,10.0,13.0,9.0,4.0,5.0,3.0,2.0,2.0,,,,1.0 P87657,23.0,33.0,17.0,23.0,21.0,21.0,24.0,16.0,28.0,33.0,27.0,32.0,29.0,28.0,36.0,27.0,25.0,32.0,30.0,18.0,25.0,21.0,19.0,23.0,22.0,19.0,30.0,24.0,27.0,23.0,30.0,40.0,34.0,34.0,27.0,33.0,27.0,30.0,35.0,31.0,31.0,33.0,33.0,16.0,29.0,26.0,16.0,18.0,24.0,34.0,31.0,25.0,23.0,27.0,26.0,19.0,34.0,34.0,26.0,34.0,30.0,24.0,26.0,20.0,23.0,29.0,18.0,18.0,10.0,9.0,19.0,15.0,15.0,6.0,14.0,17.0,11.0,14.0,21.0,18.0,11.0,9.0,10.0,10.0,7.0,10.0,4.0,4.0,5.0,1.0,1.0,,1.0,1.0,,1.0 P87658,16.0,17.0,20.0,27.0,16.0,25.0,17.0,24.0,24.0,15.0,24.0,25.0,22.0,28.0,18.0,29.0,15.0,17.0,19.0,19.0,22.0,17.0,25.0,27.0,36.0,40.0,25.0,38.0,49.0,55.0,39.0,47.0,48.0,56.0,51.0,53.0,49.0,48.0,41.0,41.0,37.0,40.0,40.0,27.0,32.0,24.0,29.0,24.0,13.0,30.0,17.0,18.0,20.0,12.0,18.0,16.0,21.0,22.0,15.0,17.0,16.0,9.0,14.0,20.0,13.0,12.0,17.0,14.0,11.0,11.0,12.0,10.0,9.0,3.0,5.0,6.0,15.0,12.0,7.0,4.0,7.0,7.0,5.0,2.0,4.0,5.0,3.0,1.0,2.0,,1.0,,,1.0,,1.0 P87661,13.0,13.0,16.0,21.0,16.0,16.0,19.0,14.0,25.0,23.0,22.0,13.0,24.0,25.0,19.0,25.0,25.0,16.0,12.0,23.0,25.0,17.0,13.0,15.0,20.0,11.0,18.0,19.0,8.0,32.0,13.0,18.0,21.0,18.0,21.0,16.0,12.0,19.0,20.0,19.0,17.0,21.0,14.0,16.0,24.0,17.0,12.0,13.0,10.0,15.0,13.0,12.0,13.0,14.0,19.0,15.0,10.0,13.0,27.0,15.0,15.0,7.0,13.0,15.0,9.0,7.0,10.0,16.0,8.0,5.0,7.0,3.0,5.0,4.0,5.0,6.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,1.0,1.0,,3.0,3.0,1.0,1.0,,,1.0,,, P88002,21.0,29.0,23.0,23.0,19.0,29.0,32.0,28.0,35.0,38.0,29.0,38.0,38.0,37.0,27.0,31.0,31.0,35.0,45.0,29.0,26.0,23.0,28.0,31.0,32.0,18.0,25.0,25.0,29.0,29.0,29.0,30.0,30.0,25.0,30.0,29.0,33.0,36.0,48.0,32.0,31.0,44.0,44.0,31.0,36.0,43.0,41.0,38.0,38.0,36.0,41.0,37.0,31.0,51.0,40.0,48.0,36.0,50.0,42.0,29.0,59.0,37.0,60.0,42.0,37.0,43.0,46.0,48.0,44.0,44.0,40.0,40.0,36.0,34.0,30.0,46.0,44.0,52.0,49.0,28.0,34.0,30.0,20.0,19.0,18.0,22.0,17.0,22.0,14.0,6.0,4.0,7.0,6.0,3.0,1.0,3.0 P88003,47.0,53.0,52.0,50.0,42.0,60.0,36.0,50.0,54.0,56.0,52.0,51.0,48.0,45.0,59.0,45.0,41.0,42.0,44.0,57.0,43.0,43.0,36.0,52.0,57.0,57.0,72.0,70.0,94.0,79.0,79.0,94.0,83.0,95.0,97.0,88.0,90.0,93.0,85.0,70.0,61.0,66.0,81.0,56.0,78.0,57.0,44.0,45.0,65.0,58.0,73.0,70.0,54.0,57.0,68.0,55.0,60.0,66.0,53.0,62.0,75.0,60.0,55.0,59.0,68.0,49.0,45.0,58.0,53.0,51.0,38.0,58.0,38.0,49.0,41.0,37.0,37.0,36.0,43.0,32.0,25.0,26.0,21.0,18.0,12.0,17.0,11.0,15.0,11.0,7.0,8.0,1.0,4.0,2.0,1.0,2.0 P88005,55.0,71.0,32.0,65.0,40.0,63.0,60.0,61.0,69.0,80.0,63.0,74.0,73.0,70.0,73.0,66.0,69.0,66.0,75.0,63.0,74.0,53.0,68.0,55.0,59.0,72.0,70.0,78.0,84.0,97.0,90.0,84.0,93.0,91.0,76.0,79.0,108.0,78.0,100.0,110.0,78.0,82.0,85.0,75.0,81.0,74.0,81.0,60.0,70.0,72.0,66.0,75.0,72.0,64.0,81.0,69.0,79.0,84.0,94.0,83.0,79.0,74.0,66.0,76.0,80.0,57.0,63.0,64.0,48.0,51.0,44.0,47.0,39.0,29.0,47.0,52.0,47.0,49.0,24.0,26.0,24.0,25.0,23.0,25.0,13.0,19.0,11.0,14.0,8.0,7.0,4.0,8.0,4.0,3.0,5.0,5.0 P88006,55.0,55.0,54.0,64.0,65.0,60.0,68.0,65.0,67.0,62.0,78.0,66.0,63.0,71.0,54.0,77.0,65.0,73.0,59.0,39.0,49.0,53.0,44.0,58.0,40.0,54.0,49.0,52.0,53.0,53.0,58.0,66.0,59.0,67.0,88.0,74.0,66.0,77.0,67.0,88.0,73.0,85.0,77.0,79.0,83.0,81.0,72.0,84.0,80.0,80.0,59.0,64.0,68.0,79.0,70.0,73.0,66.0,67.0,81.0,73.0,84.0,75.0,87.0,62.0,60.0,63.0,64.0,68.0,59.0,61.0,48.0,61.0,50.0,47.0,60.0,61.0,68.0,77.0,70.0,45.0,47.0,43.0,30.0,26.0,27.0,21.0,16.0,23.0,14.0,19.0,8.0,5.0,12.0,9.0,4.0,8.0 P88007,60.0,53.0,62.0,63.0,83.0,83.0,89.0,102.0,109.0,109.0,110.0,103.0,104.0,93.0,98.0,111.0,87.0,86.0,97.0,63.0,79.0,51.0,66.0,52.0,69.0,73.0,77.0,65.0,59.0,64.0,66.0,80.0,63.0,80.0,78.0,89.0,73.0,102.0,92.0,91.0,103.0,95.0,110.0,118.0,128.0,124.0,121.0,111.0,113.0,83.0,87.0,100.0,106.0,95.0,113.0,95.0,99.0,88.0,95.0,86.0,83.0,94.0,81.0,103.0,93.0,78.0,69.0,77.0,86.0,83.0,48.0,83.0,59.0,59.0,64.0,71.0,73.0,71.0,69.0,53.0,49.0,45.0,52.0,34.0,28.0,33.0,26.0,25.0,26.0,19.0,28.0,9.0,7.0,7.0,8.0,14.0 P88008,39.0,33.0,42.0,41.0,44.0,35.0,52.0,45.0,52.0,48.0,50.0,58.0,69.0,47.0,58.0,50.0,55.0,48.0,49.0,41.0,51.0,41.0,31.0,43.0,45.0,39.0,44.0,54.0,50.0,43.0,67.0,48.0,52.0,59.0,56.0,64.0,52.0,63.0,74.0,71.0,56.0,63.0,69.0,54.0,51.0,72.0,48.0,47.0,62.0,54.0,50.0,50.0,49.0,69.0,54.0,59.0,55.0,57.0,49.0,45.0,57.0,55.0,54.0,35.0,48.0,56.0,32.0,39.0,53.0,41.0,47.0,50.0,35.0,38.0,38.0,36.0,41.0,33.0,47.0,25.0,26.0,25.0,22.0,16.0,23.0,8.0,15.0,11.0,7.0,8.0,8.0,4.0,3.0,3.0,,5.0 P88009,18.0,14.0,14.0,13.0,12.0,12.0,12.0,13.0,11.0,19.0,21.0,12.0,18.0,14.0,22.0,28.0,23.0,18.0,25.0,18.0,19.0,19.0,18.0,18.0,23.0,30.0,17.0,25.0,22.0,27.0,20.0,23.0,28.0,29.0,35.0,27.0,24.0,34.0,20.0,33.0,16.0,25.0,21.0,29.0,22.0,19.0,21.0,17.0,22.0,15.0,24.0,30.0,20.0,28.0,26.0,25.0,21.0,22.0,21.0,25.0,24.0,24.0,20.0,21.0,25.0,17.0,27.0,18.0,17.0,24.0,13.0,17.0,15.0,17.0,19.0,15.0,18.0,14.0,12.0,13.0,12.0,7.0,6.0,9.0,8.0,3.0,7.0,6.0,4.0,4.0,5.0,,1.0,3.0,1.0, P88011,44.0,49.0,32.0,62.0,52.0,72.0,54.0,58.0,72.0,51.0,53.0,76.0,69.0,64.0,66.0,72.0,40.0,70.0,68.0,51.0,51.0,50.0,47.0,49.0,75.0,66.0,62.0,67.0,87.0,72.0,73.0,80.0,75.0,101.0,86.0,86.0,86.0,102.0,93.0,96.0,115.0,86.0,75.0,79.0,66.0,81.0,75.0,61.0,71.0,60.0,56.0,59.0,81.0,91.0,68.0,72.0,78.0,81.0,81.0,63.0,75.0,74.0,86.0,68.0,64.0,82.0,64.0,68.0,58.0,49.0,47.0,44.0,41.0,48.0,37.0,47.0,44.0,37.0,44.0,18.0,22.0,31.0,26.0,18.0,12.0,11.0,18.0,10.0,6.0,10.0,9.0,5.0,2.0,3.0,3.0,3.0 P88012,38.0,30.0,38.0,35.0,36.0,37.0,43.0,50.0,43.0,28.0,46.0,36.0,53.0,49.0,34.0,47.0,43.0,36.0,45.0,53.0,30.0,45.0,29.0,35.0,37.0,32.0,38.0,46.0,42.0,43.0,59.0,54.0,48.0,55.0,54.0,62.0,50.0,58.0,47.0,49.0,51.0,36.0,45.0,49.0,42.0,47.0,40.0,42.0,28.0,43.0,46.0,60.0,62.0,54.0,57.0,53.0,50.0,51.0,53.0,66.0,58.0,57.0,56.0,44.0,49.0,52.0,52.0,50.0,51.0,44.0,30.0,43.0,36.0,31.0,44.0,41.0,47.0,50.0,52.0,38.0,33.0,19.0,32.0,29.0,29.0,22.0,22.0,23.0,10.0,11.0,5.0,12.0,3.0,3.0,4.0,14.0 P88013,44.0,58.0,51.0,74.0,62.0,64.0,59.0,62.0,60.0,54.0,65.0,82.0,68.0,83.0,85.0,86.0,77.0,104.0,72.0,78.0,76.0,53.0,72.0,59.0,64.0,54.0,72.0,75.0,73.0,61.0,66.0,71.0,81.0,81.0,110.0,100.0,84.0,95.0,86.0,91.0,96.0,84.0,87.0,79.0,79.0,83.0,91.0,73.0,69.0,88.0,78.0,90.0,77.0,108.0,83.0,85.0,93.0,84.0,94.0,93.0,91.0,96.0,72.0,91.0,97.0,81.0,87.0,72.0,76.0,61.0,71.0,55.0,76.0,53.0,57.0,42.0,53.0,53.0,55.0,37.0,39.0,25.0,27.0,29.0,20.0,20.0,18.0,17.0,17.0,9.0,7.0,6.0,8.0,6.0,7.0,8.0 P88014,21.0,17.0,20.0,32.0,28.0,26.0,34.0,27.0,29.0,36.0,25.0,29.0,26.0,35.0,24.0,25.0,30.0,24.0,33.0,22.0,28.0,26.0,25.0,21.0,21.0,27.0,26.0,23.0,24.0,31.0,45.0,31.0,41.0,27.0,32.0,20.0,43.0,37.0,42.0,41.0,34.0,35.0,33.0,39.0,33.0,32.0,42.0,34.0,25.0,30.0,27.0,36.0,35.0,31.0,29.0,39.0,30.0,28.0,23.0,36.0,31.0,30.0,38.0,30.0,40.0,25.0,33.0,26.0,20.0,20.0,19.0,22.0,23.0,21.0,21.0,20.0,21.0,20.0,24.0,13.0,14.0,13.0,14.0,9.0,9.0,8.0,6.0,8.0,6.0,4.0,2.0,2.0,2.0,,,2.0 P88015,39.0,31.0,41.0,44.0,39.0,54.0,42.0,53.0,61.0,82.0,63.0,59.0,67.0,73.0,72.0,60.0,64.0,59.0,68.0,58.0,74.0,61.0,53.0,61.0,52.0,51.0,46.0,57.0,70.0,61.0,40.0,67.0,70.0,67.0,61.0,60.0,70.0,57.0,60.0,64.0,67.0,82.0,83.0,77.0,75.0,99.0,93.0,77.0,56.0,71.0,95.0,87.0,89.0,107.0,103.0,77.0,86.0,88.0,86.0,70.0,86.0,74.0,81.0,68.0,68.0,74.0,66.0,74.0,62.0,64.0,69.0,66.0,58.0,64.0,57.0,66.0,59.0,80.0,91.0,65.0,60.0,56.0,49.0,32.0,37.0,48.0,26.0,29.0,30.0,29.0,16.0,24.0,13.0,8.0,14.0,22.0 P88016,43.0,66.0,58.0,76.0,79.0,89.0,71.0,89.0,76.0,77.0,88.0,92.0,89.0,74.0,95.0,94.0,99.0,107.0,101.0,84.0,75.0,77.0,79.0,68.0,71.0,64.0,73.0,82.0,85.0,66.0,68.0,71.0,89.0,112.0,90.0,94.0,79.0,100.0,99.0,99.0,99.0,87.0,102.0,95.0,122.0,103.0,91.0,87.0,101.0,90.0,96.0,81.0,100.0,107.0,92.0,90.0,103.0,102.0,90.0,111.0,83.0,78.0,91.0,89.0,67.0,72.0,76.0,71.0,70.0,60.0,75.0,50.0,72.0,45.0,61.0,53.0,49.0,60.0,55.0,32.0,59.0,40.0,29.0,27.0,16.0,22.0,15.0,13.0,12.0,18.0,14.0,11.0,13.0,7.0,3.0,9.0 P88017,19.0,26.0,28.0,25.0,40.0,29.0,32.0,29.0,35.0,39.0,37.0,32.0,38.0,29.0,37.0,37.0,40.0,45.0,24.0,26.0,35.0,34.0,41.0,29.0,23.0,29.0,33.0,24.0,39.0,38.0,32.0,27.0,33.0,35.0,45.0,34.0,30.0,52.0,39.0,32.0,48.0,45.0,47.0,42.0,51.0,44.0,38.0,46.0,30.0,33.0,46.0,45.0,49.0,29.0,48.0,44.0,42.0,50.0,51.0,52.0,38.0,55.0,52.0,44.0,36.0,36.0,51.0,47.0,41.0,49.0,44.0,37.0,34.0,38.0,34.0,47.0,30.0,51.0,43.0,32.0,22.0,23.0,31.0,19.0,19.0,24.0,11.0,11.0,14.0,9.0,12.0,11.0,7.0,6.0,8.0,4.0 P88018,53.0,62.0,56.0,55.0,63.0,53.0,76.0,58.0,84.0,64.0,59.0,76.0,71.0,73.0,66.0,67.0,62.0,63.0,58.0,53.0,45.0,69.0,56.0,59.0,70.0,77.0,78.0,66.0,84.0,79.0,92.0,80.0,82.0,84.0,85.0,82.0,88.0,87.0,91.0,73.0,76.0,77.0,93.0,64.0,77.0,70.0,64.0,72.0,63.0,60.0,61.0,49.0,59.0,60.0,65.0,59.0,59.0,53.0,63.0,65.0,57.0,55.0,60.0,58.0,41.0,38.0,52.0,44.0,37.0,44.0,30.0,39.0,37.0,33.0,36.0,29.0,29.0,39.0,27.0,16.0,21.0,22.0,23.0,21.0,19.0,9.0,12.0,10.0,9.0,3.0,5.0,3.0,3.0,2.0,2.0,1.0 P88019,22.0,30.0,32.0,32.0,29.0,44.0,23.0,38.0,41.0,41.0,40.0,43.0,34.0,34.0,38.0,41.0,33.0,27.0,29.0,23.0,31.0,25.0,35.0,18.0,21.0,27.0,26.0,24.0,41.0,24.0,32.0,27.0,38.0,34.0,31.0,29.0,41.0,50.0,35.0,43.0,33.0,50.0,39.0,38.0,46.0,35.0,35.0,32.0,29.0,45.0,30.0,41.0,52.0,45.0,44.0,37.0,32.0,34.0,35.0,37.0,35.0,29.0,26.0,17.0,22.0,22.0,21.0,26.0,16.0,26.0,22.0,26.0,26.0,17.0,21.0,21.0,24.0,23.0,22.0,14.0,18.0,12.0,19.0,5.0,8.0,13.0,12.0,9.0,7.0,6.0,4.0,3.0,3.0,2.0,1.0,1.0 P88020,51.0,53.0,55.0,64.0,52.0,56.0,70.0,63.0,64.0,74.0,76.0,79.0,79.0,72.0,77.0,69.0,70.0,67.0,85.0,66.0,57.0,51.0,53.0,61.0,42.0,62.0,72.0,64.0,78.0,69.0,76.0,79.0,92.0,87.0,70.0,82.0,87.0,72.0,96.0,83.0,79.0,93.0,92.0,82.0,72.0,96.0,76.0,80.0,78.0,81.0,93.0,79.0,66.0,67.0,103.0,80.0,79.0,84.0,61.0,66.0,68.0,53.0,76.0,61.0,50.0,54.0,75.0,48.0,64.0,50.0,41.0,68.0,44.0,53.0,47.0,42.0,47.0,48.0,48.0,39.0,35.0,26.0,26.0,29.0,27.0,18.0,22.0,22.0,9.0,10.0,10.0,7.0,7.0,5.0,5.0,5.0 P88021,26.0,22.0,24.0,34.0,27.0,28.0,32.0,33.0,51.0,41.0,45.0,33.0,39.0,38.0,48.0,34.0,44.0,41.0,31.0,27.0,47.0,23.0,25.0,22.0,22.0,34.0,24.0,32.0,38.0,48.0,23.0,26.0,45.0,40.0,46.0,45.0,47.0,54.0,52.0,45.0,45.0,51.0,57.0,44.0,54.0,46.0,48.0,44.0,39.0,49.0,30.0,37.0,47.0,45.0,37.0,42.0,46.0,45.0,38.0,47.0,51.0,49.0,51.0,53.0,64.0,31.0,36.0,46.0,29.0,38.0,41.0,37.0,40.0,37.0,42.0,30.0,47.0,54.0,44.0,32.0,35.0,27.0,23.0,25.0,16.0,25.0,21.0,24.0,12.0,9.0,9.0,9.0,6.0,4.0,2.0,5.0 P88023,35.0,43.0,41.0,59.0,52.0,50.0,40.0,50.0,47.0,52.0,49.0,73.0,63.0,47.0,49.0,53.0,51.0,48.0,48.0,56.0,39.0,32.0,44.0,33.0,42.0,39.0,38.0,44.0,35.0,37.0,38.0,36.0,44.0,49.0,61.0,54.0,57.0,60.0,54.0,52.0,59.0,61.0,59.0,55.0,58.0,76.0,55.0,59.0,55.0,37.0,50.0,46.0,42.0,52.0,52.0,45.0,43.0,31.0,39.0,34.0,48.0,42.0,31.0,37.0,36.0,48.0,38.0,30.0,22.0,36.0,34.0,31.0,20.0,29.0,36.0,19.0,35.0,30.0,26.0,25.0,27.0,21.0,17.0,18.0,13.0,15.0,9.0,10.0,8.0,13.0,11.0,7.0,1.0,4.0,2.0,7.0 P88024,47.0,64.0,55.0,59.0,68.0,72.0,78.0,69.0,76.0,63.0,61.0,73.0,69.0,67.0,72.0,60.0,80.0,54.0,53.0,54.0,47.0,48.0,52.0,45.0,49.0,50.0,47.0,35.0,53.0,47.0,65.0,48.0,54.0,80.0,69.0,63.0,63.0,77.0,67.0,61.0,76.0,67.0,67.0,78.0,92.0,87.0,81.0,73.0,74.0,77.0,60.0,74.0,69.0,68.0,62.0,73.0,63.0,65.0,58.0,63.0,73.0,54.0,46.0,46.0,52.0,60.0,56.0,46.0,46.0,52.0,38.0,44.0,43.0,48.0,40.0,42.0,53.0,56.0,43.0,30.0,35.0,26.0,28.0,23.0,15.0,20.0,16.0,13.0,17.0,14.0,10.0,7.0,10.0,4.0,9.0,3.0 P88025,20.0,28.0,32.0,49.0,43.0,44.0,46.0,48.0,84.0,63.0,75.0,70.0,76.0,77.0,77.0,70.0,78.0,77.0,67.0,66.0,55.0,50.0,62.0,55.0,53.0,52.0,49.0,48.0,47.0,51.0,67.0,41.0,47.0,66.0,54.0,60.0,66.0,60.0,55.0,53.0,80.0,76.0,71.0,87.0,71.0,83.0,102.0,77.0,79.0,72.0,76.0,75.0,67.0,65.0,84.0,78.0,63.0,66.0,74.0,78.0,69.0,75.0,67.0,64.0,74.0,52.0,58.0,55.0,55.0,59.0,61.0,58.0,57.0,50.0,71.0,49.0,44.0,50.0,44.0,49.0,33.0,37.0,31.0,22.0,19.0,27.0,25.0,16.0,17.0,13.0,10.0,9.0,7.0,11.0,3.0,7.0 P88026,257.0,308.0,296.0,321.0,314.0,329.0,361.0,354.0,336.0,371.0,331.0,346.0,363.0,354.0,371.0,354.0,317.0,325.0,326.0,264.0,252.0,253.0,246.0,238.0,277.0,310.0,297.0,334.0,338.0,310.0,359.0,381.0,403.0,416.0,430.0,473.0,485.0,472.0,463.0,470.0,419.0,424.0,460.0,442.0,457.0,438.0,418.0,381.0,357.0,370.0,354.0,355.0,362.0,391.0,375.0,357.0,360.0,350.0,374.0,401.0,362.0,369.0,329.0,301.0,293.0,294.0,232.0,259.0,253.0,223.0,200.0,228.0,200.0,193.0,168.0,174.0,185.0,189.0,171.0,107.0,120.0,117.0,114.0,72.0,63.0,72.0,60.0,60.0,48.0,42.0,43.0,22.0,14.0,12.0,18.0,18.0 P88031,31.0,38.0,36.0,27.0,26.0,37.0,37.0,24.0,41.0,38.0,26.0,31.0,48.0,35.0,27.0,42.0,35.0,27.0,43.0,35.0,34.0,24.0,34.0,20.0,29.0,36.0,20.0,51.0,35.0,37.0,40.0,37.0,40.0,43.0,43.0,45.0,35.0,53.0,39.0,51.0,48.0,56.0,47.0,47.0,32.0,48.0,48.0,33.0,38.0,38.0,39.0,23.0,39.0,27.0,55.0,39.0,43.0,30.0,43.0,48.0,45.0,31.0,35.0,38.0,23.0,23.0,36.0,26.0,28.0,23.0,20.0,17.0,22.0,17.0,24.0,23.0,12.0,29.0,16.0,11.0,14.0,13.0,15.0,11.0,11.0,7.0,4.0,8.0,4.0,4.0,4.0,2.0,,,2.0,1.0 P88041,52.0,52.0,44.0,46.0,64.0,45.0,54.0,63.0,70.0,54.0,59.0,60.0,47.0,50.0,54.0,64.0,58.0,53.0,59.0,47.0,32.0,31.0,33.0,22.0,25.0,41.0,31.0,31.0,34.0,43.0,37.0,40.0,44.0,39.0,57.0,41.0,77.0,55.0,57.0,66.0,67.0,59.0,61.0,76.0,61.0,61.0,65.0,56.0,41.0,52.0,60.0,49.0,58.0,56.0,55.0,48.0,61.0,41.0,44.0,62.0,66.0,61.0,40.0,53.0,44.0,43.0,34.0,51.0,52.0,43.0,49.0,32.0,33.0,36.0,30.0,30.0,26.0,38.0,42.0,26.0,23.0,21.0,23.0,12.0,14.0,16.0,16.0,18.0,13.0,13.0,1.0,4.0,4.0,5.0,5.0,3.0 P88042,34.0,33.0,39.0,43.0,44.0,35.0,49.0,56.0,45.0,46.0,41.0,54.0,42.0,39.0,49.0,44.0,47.0,49.0,47.0,39.0,38.0,34.0,22.0,30.0,31.0,36.0,35.0,50.0,36.0,43.0,36.0,49.0,45.0,42.0,49.0,36.0,47.0,56.0,58.0,53.0,44.0,43.0,48.0,48.0,52.0,51.0,48.0,33.0,43.0,38.0,40.0,41.0,39.0,47.0,43.0,40.0,32.0,34.0,47.0,42.0,43.0,42.0,38.0,39.0,30.0,35.0,33.0,32.0,26.0,34.0,34.0,25.0,26.0,28.0,33.0,23.0,29.0,34.0,27.0,18.0,21.0,23.0,22.0,18.0,17.0,11.0,21.0,11.0,11.0,13.0,13.0,7.0,5.0,3.0,1.0,5.0 P88043,54.0,56.0,59.0,70.0,61.0,68.0,74.0,72.0,67.0,92.0,70.0,92.0,69.0,57.0,59.0,84.0,73.0,68.0,63.0,67.0,64.0,51.0,48.0,44.0,60.0,42.0,51.0,54.0,52.0,73.0,82.0,70.0,73.0,97.0,88.0,77.0,85.0,82.0,71.0,81.0,79.0,81.0,69.0,65.0,63.0,53.0,50.0,59.0,51.0,41.0,55.0,46.0,45.0,66.0,77.0,60.0,57.0,53.0,58.0,50.0,48.0,54.0,60.0,49.0,43.0,48.0,36.0,42.0,33.0,35.0,24.0,30.0,41.0,21.0,25.0,21.0,24.0,24.0,20.0,13.0,15.0,10.0,9.0,13.0,7.0,12.0,6.0,4.0,7.0,4.0,5.0,5.0,3.0,2.0,,8.0 P88044,31.0,29.0,17.0,34.0,30.0,33.0,31.0,33.0,32.0,20.0,23.0,28.0,29.0,27.0,28.0,38.0,23.0,21.0,22.0,20.0,22.0,25.0,27.0,34.0,26.0,33.0,36.0,32.0,43.0,38.0,49.0,47.0,61.0,52.0,59.0,47.0,38.0,42.0,48.0,37.0,41.0,30.0,37.0,32.0,46.0,33.0,32.0,37.0,36.0,23.0,33.0,29.0,33.0,43.0,36.0,44.0,37.0,35.0,41.0,34.0,40.0,36.0,37.0,34.0,28.0,27.0,26.0,29.0,21.0,16.0,15.0,19.0,20.0,26.0,16.0,25.0,25.0,22.0,24.0,22.0,19.0,15.0,11.0,8.0,8.0,14.0,6.0,10.0,10.0,4.0,4.0,,1.0,,1.0,4.0 P88606,31.0,40.0,33.0,31.0,22.0,39.0,31.0,37.0,36.0,54.0,45.0,33.0,34.0,30.0,22.0,37.0,32.0,33.0,37.0,34.0,37.0,26.0,24.0,23.0,23.0,25.0,32.0,33.0,26.0,39.0,35.0,34.0,47.0,48.0,57.0,51.0,55.0,50.0,47.0,49.0,57.0,42.0,35.0,32.0,29.0,35.0,42.0,31.0,34.0,30.0,39.0,42.0,32.0,28.0,37.0,27.0,33.0,41.0,34.0,26.0,23.0,32.0,32.0,28.0,31.0,30.0,22.0,21.0,19.0,25.0,20.0,22.0,12.0,19.0,13.0,17.0,23.0,33.0,22.0,17.0,23.0,23.0,18.0,16.0,9.0,12.0,4.0,6.0,10.0,8.0,6.0,5.0,3.0,3.0,1.0,5.0 P88615,17.0,20.0,21.0,21.0,22.0,15.0,17.0,16.0,12.0,19.0,16.0,25.0,17.0,15.0,28.0,21.0,18.0,16.0,25.0,24.0,15.0,17.0,20.0,17.0,26.0,19.0,16.0,32.0,25.0,21.0,30.0,37.0,26.0,31.0,35.0,33.0,28.0,25.0,35.0,31.0,32.0,29.0,27.0,31.0,28.0,32.0,31.0,33.0,22.0,28.0,27.0,30.0,32.0,30.0,27.0,38.0,32.0,28.0,28.0,28.0,28.0,28.0,25.0,19.0,24.0,15.0,35.0,14.0,15.0,20.0,17.0,16.0,17.0,14.0,10.0,10.0,9.0,16.0,12.0,7.0,10.0,6.0,7.0,3.0,3.0,2.0,8.0,1.0,1.0,1.0,,1.0,2.0,2.0,1.0,1.0 P88623,23.0,31.0,28.0,29.0,26.0,32.0,26.0,37.0,30.0,26.0,32.0,35.0,41.0,38.0,33.0,40.0,39.0,37.0,37.0,30.0,33.0,27.0,48.0,28.0,47.0,35.0,40.0,31.0,38.0,40.0,34.0,50.0,39.0,41.0,46.0,43.0,30.0,47.0,45.0,32.0,41.0,38.0,41.0,36.0,43.0,34.0,36.0,37.0,42.0,52.0,43.0,31.0,53.0,58.0,53.0,59.0,65.0,70.0,65.0,59.0,67.0,52.0,63.0,68.0,52.0,57.0,57.0,47.0,40.0,42.0,43.0,47.0,38.0,33.0,48.0,46.0,52.0,42.0,43.0,37.0,39.0,43.0,32.0,26.0,23.0,25.0,21.0,14.0,11.0,10.0,8.0,7.0,5.0,5.0,3.0,1.0 P88625,26.0,23.0,31.0,40.0,32.0,38.0,35.0,40.0,50.0,46.0,49.0,39.0,37.0,39.0,52.0,32.0,50.0,58.0,57.0,41.0,39.0,36.0,44.0,34.0,42.0,46.0,30.0,39.0,47.0,43.0,39.0,56.0,49.0,57.0,58.0,44.0,40.0,39.0,47.0,57.0,57.0,53.0,45.0,40.0,51.0,52.0,53.0,42.0,31.0,44.0,57.0,36.0,45.0,50.0,63.0,65.0,63.0,54.0,53.0,62.0,71.0,57.0,69.0,46.0,66.0,37.0,55.0,44.0,38.0,57.0,37.0,29.0,30.0,39.0,40.0,36.0,39.0,35.0,47.0,36.0,22.0,28.0,28.0,24.0,20.0,12.0,19.0,12.0,18.0,14.0,12.0,4.0,4.0,7.0,2.0,5.0 P88632,77.0,108.0,113.0,125.0,101.0,101.0,128.0,141.0,89.0,146.0,99.0,153.0,130.0,133.0,138.0,101.0,101.0,118.0,98.0,97.0,99.0,78.0,75.0,78.0,90.0,97.0,111.0,124.0,144.0,173.0,169.0,169.0,152.0,192.0,184.0,180.0,183.0,205.0,168.0,168.0,174.0,151.0,130.0,180.0,171.0,135.0,119.0,121.0,129.0,119.0,112.0,113.0,113.0,126.0,106.0,127.0,121.0,116.0,101.0,92.0,111.0,95.0,99.0,86.0,82.0,54.0,72.0,56.0,63.0,63.0,58.0,58.0,63.0,47.0,37.0,42.0,35.0,44.0,42.0,29.0,26.0,21.0,20.0,15.0,19.0,14.0,6.0,9.0,8.0,12.0,8.0,6.0,6.0,1.0,2.0,8.0 P89002,182.0,143.0,140.0,123.0,122.0,118.0,122.0,120.0,103.0,110.0,103.0,104.0,126.0,115.0,125.0,112.0,104.0,110.0,110.0,106.0,105.0,124.0,105.0,113.0,135.0,135.0,143.0,135.0,175.0,179.0,191.0,192.0,195.0,214.0,174.0,193.0,152.0,165.0,166.0,135.0,130.0,158.0,139.0,134.0,137.0,135.0,128.0,106.0,118.0,107.0,104.0,110.0,133.0,115.0,149.0,113.0,135.0,136.0,114.0,109.0,125.0,107.0,117.0,99.0,96.0,93.0,82.0,82.0,85.0,64.0,60.0,64.0,63.0,70.0,31.0,44.0,54.0,65.0,59.0,46.0,35.0,28.0,27.0,18.0,19.0,15.0,15.0,13.0,8.0,11.0,10.0,1.0,10.0,4.0,4.0,1.0 P89003,36.0,47.0,46.0,50.0,43.0,60.0,66.0,54.0,54.0,54.0,60.0,73.0,69.0,71.0,65.0,54.0,57.0,57.0,59.0,67.0,48.0,38.0,51.0,39.0,51.0,55.0,69.0,81.0,66.0,73.0,75.0,74.0,85.0,81.0,73.0,72.0,75.0,60.0,61.0,72.0,92.0,67.0,71.0,55.0,63.0,59.0,57.0,49.0,58.0,52.0,55.0,65.0,51.0,68.0,64.0,64.0,58.0,64.0,63.0,75.0,72.0,75.0,59.0,76.0,62.0,63.0,63.0,59.0,59.0,57.0,56.0,49.0,45.0,53.0,41.0,45.0,33.0,55.0,35.0,35.0,31.0,31.0,26.0,14.0,17.0,11.0,14.0,11.0,11.0,9.0,5.0,3.0,3.0,3.0,3.0,3.0 P89004,11.0,17.0,19.0,17.0,23.0,25.0,35.0,26.0,47.0,28.0,42.0,30.0,26.0,35.0,36.0,42.0,30.0,37.0,37.0,33.0,29.0,27.0,21.0,32.0,27.0,35.0,37.0,32.0,36.0,38.0,33.0,37.0,35.0,41.0,37.0,37.0,37.0,43.0,40.0,43.0,31.0,36.0,37.0,39.0,40.0,30.0,37.0,24.0,21.0,37.0,26.0,40.0,41.0,40.0,57.0,52.0,45.0,51.0,61.0,44.0,63.0,60.0,63.0,54.0,59.0,50.0,45.0,47.0,39.0,37.0,47.0,35.0,44.0,44.0,37.0,45.0,36.0,46.0,35.0,26.0,29.0,18.0,13.0,13.0,13.0,10.0,12.0,8.0,9.0,7.0,6.0,6.0,1.0,3.0,4.0,4.0 P89005,43.0,45.0,45.0,43.0,39.0,59.0,48.0,49.0,58.0,43.0,58.0,60.0,57.0,56.0,64.0,67.0,66.0,67.0,59.0,44.0,51.0,56.0,40.0,56.0,48.0,42.0,54.0,44.0,56.0,54.0,49.0,46.0,53.0,53.0,53.0,55.0,59.0,50.0,63.0,61.0,52.0,38.0,58.0,48.0,61.0,42.0,53.0,47.0,54.0,58.0,52.0,51.0,57.0,53.0,69.0,70.0,68.0,43.0,51.0,61.0,60.0,55.0,56.0,50.0,49.0,50.0,33.0,46.0,32.0,32.0,26.0,26.0,39.0,33.0,32.0,41.0,33.0,29.0,28.0,26.0,21.0,16.0,18.0,12.0,11.0,14.0,9.0,4.0,4.0,9.0,3.0,7.0,5.0,2.0,2.0,2.0 P89006,33.0,42.0,37.0,52.0,47.0,48.0,64.0,51.0,76.0,58.0,66.0,65.0,76.0,76.0,65.0,61.0,61.0,78.0,54.0,62.0,54.0,58.0,45.0,50.0,52.0,62.0,60.0,48.0,33.0,60.0,67.0,55.0,58.0,77.0,73.0,77.0,61.0,76.0,84.0,82.0,76.0,85.0,69.0,62.0,79.0,73.0,79.0,71.0,77.0,88.0,93.0,97.0,75.0,104.0,97.0,88.0,115.0,73.0,81.0,104.0,94.0,76.0,74.0,83.0,66.0,84.0,71.0,52.0,62.0,66.0,65.0,57.0,51.0,48.0,61.0,53.0,58.0,68.0,75.0,34.0,47.0,40.0,26.0,21.0,22.0,18.0,18.0,17.0,13.0,10.0,3.0,7.0,5.0,1.0,1.0, P89007,41.0,45.0,34.0,41.0,46.0,50.0,41.0,56.0,49.0,43.0,42.0,47.0,38.0,35.0,50.0,46.0,52.0,50.0,30.0,30.0,33.0,31.0,38.0,41.0,36.0,41.0,44.0,55.0,50.0,64.0,50.0,74.0,51.0,77.0,53.0,52.0,66.0,57.0,62.0,67.0,55.0,61.0,58.0,46.0,44.0,47.0,41.0,41.0,43.0,48.0,47.0,52.0,50.0,58.0,61.0,42.0,55.0,76.0,55.0,53.0,47.0,49.0,48.0,35.0,46.0,43.0,45.0,41.0,31.0,30.0,32.0,30.0,34.0,33.0,38.0,45.0,36.0,36.0,44.0,20.0,24.0,22.0,14.0,14.0,13.0,14.0,15.0,6.0,3.0,6.0,5.0,4.0,2.0,3.0,1.0,3.0 P89008,53.0,75.0,69.0,72.0,89.0,76.0,93.0,68.0,112.0,99.0,98.0,99.0,108.0,118.0,110.0,139.0,98.0,140.0,116.0,103.0,105.0,94.0,102.0,103.0,86.0,139.0,118.0,113.0,119.0,129.0,119.0,153.0,116.0,108.0,140.0,113.0,115.0,113.0,126.0,132.0,131.0,120.0,120.0,134.0,109.0,98.0,111.0,86.0,86.0,109.0,111.0,115.0,104.0,120.0,108.0,137.0,111.0,109.0,148.0,120.0,153.0,123.0,114.0,102.0,110.0,109.0,100.0,90.0,87.0,67.0,60.0,75.0,72.0,72.0,64.0,70.0,66.0,92.0,85.0,56.0,50.0,59.0,41.0,29.0,30.0,23.0,23.0,16.0,8.0,11.0,13.0,7.0,9.0,6.0,6.0,4.0 P89010,28.0,33.0,33.0,47.0,33.0,24.0,36.0,30.0,45.0,38.0,38.0,36.0,39.0,29.0,32.0,42.0,52.0,36.0,45.0,46.0,31.0,38.0,42.0,32.0,31.0,48.0,34.0,49.0,39.0,54.0,54.0,39.0,54.0,62.0,51.0,53.0,55.0,44.0,51.0,51.0,43.0,37.0,40.0,35.0,37.0,46.0,36.0,34.0,45.0,53.0,39.0,48.0,54.0,58.0,71.0,59.0,53.0,54.0,62.0,60.0,64.0,59.0,86.0,63.0,68.0,58.0,54.0,57.0,47.0,50.0,28.0,39.0,33.0,37.0,34.0,35.0,41.0,39.0,27.0,27.0,31.0,26.0,16.0,17.0,13.0,15.0,12.0,17.0,8.0,7.0,3.0,6.0,5.0,7.0,1.0,4.0 P89011,43.0,33.0,27.0,29.0,39.0,36.0,41.0,39.0,41.0,55.0,37.0,35.0,34.0,45.0,31.0,35.0,36.0,38.0,34.0,40.0,29.0,27.0,27.0,38.0,36.0,40.0,38.0,36.0,49.0,35.0,42.0,47.0,53.0,40.0,47.0,50.0,52.0,42.0,38.0,37.0,41.0,39.0,46.0,31.0,35.0,35.0,33.0,41.0,35.0,37.0,20.0,25.0,37.0,30.0,35.0,33.0,32.0,28.0,38.0,27.0,27.0,19.0,30.0,28.0,24.0,25.0,29.0,19.0,22.0,19.0,11.0,11.0,15.0,13.0,14.0,13.0,8.0,13.0,18.0,12.0,8.0,10.0,9.0,5.0,5.0,6.0,4.0,4.0,4.0,2.0,,,,2.0,,1.0 P89012,21.0,18.0,38.0,36.0,36.0,42.0,42.0,37.0,50.0,34.0,42.0,35.0,39.0,46.0,29.0,51.0,50.0,45.0,40.0,43.0,40.0,41.0,37.0,38.0,37.0,35.0,44.0,28.0,43.0,27.0,36.0,32.0,41.0,56.0,43.0,51.0,48.0,69.0,43.0,48.0,45.0,46.0,45.0,37.0,47.0,35.0,41.0,47.0,49.0,47.0,46.0,42.0,45.0,50.0,55.0,45.0,57.0,50.0,52.0,48.0,56.0,45.0,45.0,59.0,46.0,36.0,38.0,36.0,35.0,35.0,27.0,33.0,29.0,21.0,27.0,40.0,32.0,29.0,40.0,35.0,23.0,13.0,21.0,9.0,17.0,9.0,12.0,8.0,2.0,11.0,3.0,2.0,4.0,1.0,1.0,2.0 P89013,26.0,25.0,34.0,38.0,33.0,39.0,46.0,39.0,37.0,42.0,43.0,42.0,40.0,32.0,47.0,36.0,32.0,42.0,39.0,27.0,39.0,36.0,33.0,29.0,22.0,21.0,30.0,20.0,38.0,33.0,33.0,36.0,32.0,45.0,30.0,51.0,35.0,38.0,44.0,41.0,34.0,39.0,37.0,29.0,34.0,37.0,32.0,31.0,28.0,23.0,27.0,25.0,32.0,37.0,44.0,23.0,34.0,35.0,43.0,38.0,40.0,38.0,32.0,34.0,26.0,26.0,27.0,18.0,19.0,22.0,16.0,21.0,17.0,11.0,10.0,15.0,23.0,15.0,13.0,7.0,5.0,3.0,1.0,11.0,5.0,4.0,8.0,3.0,2.0,2.0,,5.0,3.0,,, P89014,60.0,64.0,62.0,70.0,78.0,91.0,85.0,75.0,94.0,71.0,81.0,70.0,92.0,107.0,87.0,85.0,101.0,101.0,93.0,72.0,66.0,71.0,69.0,67.0,83.0,56.0,91.0,80.0,85.0,81.0,91.0,77.0,93.0,86.0,121.0,99.0,92.0,92.0,99.0,105.0,105.0,90.0,81.0,86.0,87.0,75.0,80.0,74.0,85.0,73.0,82.0,67.0,93.0,78.0,84.0,77.0,102.0,90.0,79.0,73.0,81.0,86.0,72.0,83.0,66.0,70.0,65.0,57.0,48.0,49.0,41.0,51.0,51.0,53.0,35.0,53.0,47.0,55.0,46.0,24.0,24.0,21.0,23.0,16.0,17.0,14.0,18.0,18.0,13.0,12.0,9.0,2.0,5.0,2.0,5.0,7.0 P89015,85.0,88.0,101.0,94.0,92.0,116.0,101.0,107.0,116.0,115.0,118.0,110.0,110.0,127.0,120.0,134.0,128.0,124.0,124.0,113.0,110.0,99.0,99.0,93.0,116.0,107.0,117.0,109.0,148.0,131.0,159.0,134.0,146.0,162.0,141.0,137.0,143.0,150.0,155.0,134.0,126.0,143.0,135.0,149.0,124.0,139.0,132.0,112.0,121.0,123.0,124.0,123.0,117.0,137.0,161.0,131.0,168.0,153.0,150.0,167.0,151.0,158.0,146.0,120.0,158.0,129.0,121.0,118.0,120.0,125.0,80.0,91.0,82.0,93.0,87.0,100.0,92.0,91.0,98.0,50.0,67.0,70.0,64.0,40.0,35.0,40.0,27.0,33.0,31.0,26.0,17.0,10.0,3.0,5.0,10.0,6.0 P89016,23.0,45.0,21.0,41.0,25.0,41.0,36.0,54.0,57.0,62.0,47.0,41.0,46.0,57.0,50.0,58.0,52.0,62.0,52.0,57.0,38.0,45.0,44.0,35.0,45.0,38.0,52.0,47.0,45.0,33.0,36.0,55.0,48.0,51.0,53.0,53.0,58.0,48.0,54.0,44.0,44.0,45.0,51.0,47.0,48.0,55.0,64.0,56.0,56.0,48.0,65.0,62.0,47.0,61.0,57.0,53.0,64.0,73.0,81.0,50.0,67.0,65.0,49.0,56.0,56.0,47.0,44.0,44.0,38.0,42.0,30.0,41.0,38.0,38.0,38.0,40.0,37.0,36.0,33.0,33.0,27.0,26.0,22.0,20.0,17.0,17.0,20.0,6.0,9.0,10.0,5.0,2.0,2.0,2.0,3.0,7.0 P89018,45.0,48.0,49.0,59.0,44.0,46.0,56.0,57.0,55.0,63.0,55.0,66.0,64.0,57.0,48.0,51.0,58.0,34.0,53.0,47.0,41.0,38.0,39.0,48.0,28.0,47.0,51.0,54.0,41.0,76.0,75.0,76.0,61.0,64.0,71.0,63.0,72.0,76.0,79.0,67.0,82.0,71.0,71.0,72.0,51.0,58.0,51.0,48.0,51.0,51.0,43.0,60.0,51.0,54.0,55.0,65.0,55.0,66.0,54.0,67.0,48.0,61.0,59.0,48.0,53.0,42.0,44.0,50.0,30.0,27.0,23.0,37.0,27.0,35.0,33.0,31.0,26.0,25.0,34.0,23.0,26.0,14.0,21.0,14.0,10.0,21.0,14.0,9.0,9.0,12.0,6.0,6.0,2.0,2.0,1.0,2.0 P89020,39.0,44.0,43.0,40.0,55.0,42.0,44.0,57.0,58.0,58.0,59.0,45.0,65.0,69.0,65.0,56.0,54.0,50.0,50.0,38.0,48.0,41.0,49.0,46.0,49.0,45.0,47.0,37.0,48.0,56.0,46.0,39.0,47.0,45.0,55.0,62.0,63.0,74.0,70.0,73.0,61.0,57.0,59.0,56.0,52.0,54.0,65.0,39.0,53.0,42.0,46.0,46.0,41.0,55.0,72.0,50.0,56.0,54.0,41.0,84.0,52.0,53.0,41.0,37.0,57.0,42.0,46.0,36.0,49.0,50.0,28.0,35.0,35.0,33.0,32.0,41.0,39.0,42.0,35.0,22.0,19.0,17.0,10.0,17.0,7.0,8.0,5.0,5.0,7.0,4.0,3.0,1.0,4.0,4.0,,2.0 P89021,41.0,50.0,63.0,47.0,58.0,72.0,57.0,62.0,56.0,62.0,88.0,74.0,82.0,90.0,75.0,85.0,80.0,86.0,60.0,58.0,56.0,64.0,62.0,57.0,34.0,54.0,56.0,68.0,68.0,60.0,76.0,63.0,57.0,76.0,60.0,76.0,77.0,96.0,81.0,85.0,72.0,65.0,76.0,82.0,75.0,75.0,73.0,69.0,53.0,65.0,52.0,50.0,71.0,83.0,67.0,92.0,60.0,75.0,74.0,66.0,80.0,66.0,76.0,64.0,61.0,53.0,47.0,63.0,58.0,48.0,36.0,47.0,47.0,52.0,46.0,56.0,46.0,59.0,51.0,36.0,35.0,25.0,29.0,17.0,15.0,20.0,14.0,15.0,17.0,13.0,6.0,5.0,5.0,1.0,,4.0 P89022,13.0,14.0,14.0,13.0,14.0,16.0,15.0,20.0,21.0,29.0,25.0,23.0,22.0,22.0,28.0,20.0,26.0,26.0,18.0,13.0,15.0,21.0,27.0,20.0,26.0,22.0,22.0,29.0,22.0,25.0,19.0,31.0,24.0,34.0,27.0,27.0,25.0,33.0,22.0,17.0,43.0,24.0,33.0,23.0,23.0,17.0,22.0,22.0,19.0,17.0,24.0,28.0,21.0,23.0,35.0,28.0,29.0,30.0,27.0,20.0,29.0,16.0,27.0,21.0,16.0,21.0,22.0,15.0,17.0,18.0,15.0,14.0,12.0,16.0,15.0,8.0,12.0,17.0,11.0,10.0,8.0,7.0,10.0,6.0,4.0,6.0,3.0,1.0,6.0,4.0,1.0,,1.0,,,1.0 P89023,30.0,22.0,23.0,26.0,28.0,33.0,33.0,32.0,35.0,31.0,26.0,35.0,32.0,35.0,36.0,29.0,33.0,40.0,38.0,24.0,30.0,29.0,32.0,37.0,34.0,36.0,43.0,33.0,30.0,41.0,40.0,41.0,42.0,36.0,41.0,36.0,45.0,47.0,50.0,45.0,38.0,33.0,44.0,41.0,44.0,36.0,37.0,32.0,30.0,38.0,31.0,42.0,44.0,38.0,50.0,34.0,50.0,46.0,61.0,40.0,47.0,38.0,42.0,39.0,44.0,32.0,32.0,34.0,33.0,42.0,31.0,35.0,27.0,34.0,24.0,35.0,23.0,24.0,35.0,14.0,9.0,17.0,15.0,15.0,9.0,13.0,10.0,9.0,5.0,2.0,3.0,3.0,4.0,1.0,2.0,1.0 P89025,7.0,12.0,12.0,17.0,19.0,20.0,19.0,15.0,21.0,17.0,11.0,16.0,17.0,7.0,28.0,26.0,11.0,16.0,14.0,14.0,18.0,13.0,21.0,18.0,19.0,19.0,18.0,28.0,20.0,18.0,18.0,21.0,19.0,30.0,24.0,31.0,20.0,13.0,21.0,17.0,27.0,15.0,16.0,16.0,24.0,23.0,17.0,20.0,21.0,12.0,15.0,14.0,21.0,18.0,24.0,27.0,33.0,19.0,23.0,33.0,27.0,19.0,25.0,18.0,22.0,19.0,11.0,16.0,16.0,10.0,17.0,17.0,15.0,11.0,11.0,11.0,14.0,12.0,10.0,7.0,10.0,6.0,3.0,2.0,5.0,8.0,,5.0,1.0,2.0,3.0,,,,,1.0 P89026,31.0,29.0,28.0,35.0,28.0,24.0,34.0,43.0,33.0,33.0,36.0,43.0,38.0,38.0,42.0,31.0,32.0,38.0,43.0,39.0,27.0,33.0,31.0,31.0,40.0,33.0,45.0,51.0,37.0,41.0,41.0,57.0,36.0,58.0,63.0,49.0,51.0,41.0,54.0,48.0,42.0,63.0,35.0,48.0,37.0,41.0,29.0,29.0,30.0,51.0,33.0,40.0,31.0,45.0,44.0,53.0,45.0,44.0,47.0,43.0,54.0,50.0,35.0,44.0,37.0,41.0,29.0,35.0,39.0,25.0,27.0,39.0,26.0,28.0,23.0,25.0,23.0,33.0,25.0,21.0,28.0,13.0,22.0,9.0,14.0,10.0,9.0,7.0,9.0,5.0,3.0,,,4.0,,2.0 P89029,43.0,27.0,46.0,43.0,34.0,49.0,29.0,36.0,49.0,44.0,41.0,54.0,35.0,42.0,38.0,39.0,47.0,49.0,34.0,51.0,38.0,31.0,34.0,51.0,38.0,51.0,49.0,47.0,56.0,61.0,71.0,82.0,67.0,73.0,69.0,69.0,66.0,63.0,62.0,68.0,41.0,47.0,49.0,50.0,54.0,54.0,49.0,52.0,51.0,40.0,41.0,45.0,41.0,59.0,48.0,49.0,49.0,39.0,42.0,42.0,39.0,39.0,54.0,34.0,49.0,38.0,35.0,38.0,37.0,37.0,31.0,28.0,25.0,31.0,14.0,20.0,25.0,23.0,33.0,13.0,22.0,10.0,22.0,12.0,9.0,7.0,8.0,5.0,2.0,6.0,1.0,2.0,1.0,2.0,,1.0 P89030,17.0,16.0,12.0,21.0,15.0,14.0,10.0,22.0,18.0,22.0,21.0,28.0,35.0,24.0,29.0,22.0,28.0,33.0,31.0,34.0,12.0,17.0,24.0,22.0,20.0,22.0,22.0,24.0,36.0,22.0,24.0,26.0,20.0,23.0,26.0,26.0,27.0,32.0,33.0,28.0,20.0,36.0,34.0,29.0,46.0,35.0,22.0,31.0,36.0,33.0,26.0,37.0,36.0,39.0,32.0,33.0,34.0,37.0,28.0,36.0,35.0,20.0,41.0,29.0,31.0,23.0,27.0,29.0,23.0,26.0,16.0,26.0,22.0,17.0,21.0,22.0,26.0,15.0,20.0,7.0,17.0,8.0,18.0,3.0,10.0,6.0,4.0,2.0,2.0,3.0,,1.0,3.0,2.0,,1.0 P89602,10.0,17.0,19.0,23.0,14.0,18.0,19.0,19.0,20.0,21.0,21.0,27.0,25.0,13.0,23.0,29.0,29.0,29.0,30.0,27.0,12.0,20.0,21.0,17.0,15.0,16.0,27.0,17.0,30.0,24.0,16.0,22.0,20.0,34.0,35.0,18.0,29.0,26.0,20.0,28.0,28.0,24.0,26.0,20.0,25.0,19.0,20.0,15.0,16.0,17.0,27.0,20.0,33.0,33.0,29.0,36.0,22.0,26.0,37.0,19.0,39.0,35.0,40.0,30.0,19.0,24.0,31.0,27.0,25.0,17.0,14.0,20.0,25.0,20.0,19.0,24.0,14.0,13.0,24.0,16.0,6.0,15.0,8.0,10.0,9.0,7.0,6.0,8.0,4.0,5.0,7.0,1.0,1.0,,,1.0 P89609,31.0,25.0,36.0,26.0,28.0,45.0,44.0,38.0,35.0,41.0,41.0,38.0,39.0,39.0,40.0,28.0,36.0,35.0,35.0,36.0,36.0,23.0,35.0,31.0,32.0,19.0,30.0,24.0,28.0,26.0,24.0,32.0,33.0,44.0,38.0,43.0,48.0,41.0,39.0,41.0,39.0,36.0,34.0,30.0,39.0,37.0,37.0,34.0,28.0,43.0,32.0,31.0,26.0,30.0,21.0,27.0,29.0,34.0,32.0,31.0,34.0,35.0,33.0,26.0,27.0,24.0,22.0,24.0,26.0,22.0,20.0,13.0,17.0,18.0,7.0,7.0,19.0,15.0,16.0,13.0,13.0,12.0,11.0,3.0,3.0,4.0,1.0,7.0,6.0,3.0,,1.0,,1.0,, P89612,4.0,11.0,10.0,11.0,11.0,11.0,7.0,12.0,10.0,11.0,12.0,18.0,14.0,12.0,12.0,21.0,16.0,11.0,13.0,13.0,20.0,15.0,8.0,7.0,9.0,24.0,8.0,13.0,11.0,14.0,13.0,16.0,17.0,25.0,18.0,15.0,18.0,25.0,14.0,20.0,16.0,9.0,19.0,10.0,23.0,18.0,16.0,11.0,14.0,20.0,18.0,13.0,15.0,22.0,20.0,16.0,19.0,17.0,14.0,13.0,14.0,13.0,11.0,20.0,17.0,10.0,9.0,11.0,8.0,13.0,15.0,9.0,8.0,4.0,9.0,11.0,7.0,7.0,11.0,5.0,8.0,7.0,4.0,1.0,2.0,2.0,1.0,3.0,2.0,1.0,,1.0,,,, P89613,12.0,22.0,25.0,29.0,20.0,30.0,15.0,33.0,25.0,37.0,36.0,30.0,30.0,24.0,33.0,25.0,31.0,23.0,27.0,24.0,23.0,27.0,10.0,18.0,25.0,25.0,24.0,30.0,18.0,27.0,25.0,26.0,26.0,18.0,30.0,28.0,32.0,35.0,19.0,29.0,20.0,25.0,19.0,33.0,29.0,17.0,19.0,22.0,27.0,13.0,20.0,19.0,21.0,16.0,20.0,21.0,16.0,11.0,23.0,19.0,26.0,23.0,18.0,24.0,23.0,17.0,17.0,15.0,14.0,8.0,17.0,9.0,13.0,11.0,10.0,11.0,11.0,15.0,8.0,7.0,7.0,7.0,7.0,7.0,3.0,6.0,2.0,2.0,,1.0,2.0,,,2.0,,2.0 P89618,14.0,16.0,22.0,18.0,29.0,14.0,20.0,21.0,21.0,23.0,21.0,19.0,24.0,18.0,23.0,21.0,14.0,16.0,21.0,17.0,14.0,21.0,11.0,14.0,9.0,17.0,12.0,15.0,19.0,33.0,33.0,19.0,29.0,21.0,24.0,22.0,19.0,24.0,28.0,29.0,23.0,21.0,21.0,22.0,21.0,15.0,17.0,16.0,18.0,15.0,20.0,14.0,25.0,29.0,23.0,19.0,22.0,22.0,25.0,17.0,21.0,20.0,28.0,17.0,15.0,14.0,17.0,27.0,13.0,15.0,11.0,10.0,16.0,13.0,8.0,8.0,11.0,11.0,10.0,5.0,7.0,1.0,3.0,6.0,2.0,4.0,3.0,1.0,2.0,3.0,1.0,1.0,,,1.0, P91003,26.0,36.0,26.0,29.0,38.0,31.0,49.0,48.0,49.0,54.0,62.0,55.0,53.0,78.0,74.0,60.0,73.0,59.0,55.0,59.0,53.0,43.0,41.0,35.0,38.0,40.0,45.0,29.0,45.0,33.0,37.0,35.0,33.0,34.0,47.0,41.0,37.0,48.0,47.0,57.0,51.0,45.0,55.0,64.0,62.0,66.0,61.0,64.0,46.0,68.0,63.0,58.0,71.0,76.0,56.0,65.0,58.0,59.0,51.0,63.0,54.0,53.0,42.0,49.0,35.0,42.0,33.0,35.0,39.0,36.0,30.0,30.0,27.0,35.0,25.0,35.0,27.0,34.0,30.0,25.0,22.0,17.0,15.0,23.0,16.0,17.0,17.0,14.0,6.0,11.0,7.0,3.0,5.0,,5.0,3.0 P91004,31.0,54.0,45.0,41.0,48.0,49.0,51.0,60.0,62.0,67.0,65.0,66.0,69.0,62.0,66.0,59.0,54.0,47.0,49.0,48.0,33.0,40.0,34.0,29.0,38.0,50.0,49.0,51.0,57.0,68.0,48.0,62.0,73.0,52.0,64.0,56.0,81.0,83.0,62.0,77.0,89.0,62.0,73.0,78.0,81.0,74.0,84.0,63.0,66.0,83.0,67.0,54.0,56.0,56.0,56.0,55.0,70.0,48.0,42.0,42.0,40.0,38.0,41.0,32.0,25.0,35.0,30.0,38.0,28.0,30.0,34.0,25.0,32.0,27.0,18.0,20.0,25.0,33.0,21.0,19.0,18.0,17.0,13.0,6.0,6.0,12.0,9.0,17.0,1.0,8.0,9.0,1.0,1.0,2.0,1.0,2.0 P91006,56.0,69.0,59.0,86.0,74.0,73.0,85.0,80.0,75.0,72.0,77.0,80.0,80.0,87.0,85.0,84.0,91.0,83.0,77.0,75.0,75.0,69.0,79.0,63.0,55.0,67.0,71.0,59.0,68.0,60.0,59.0,79.0,73.0,87.0,98.0,89.0,83.0,100.0,83.0,108.0,99.0,106.0,71.0,98.0,78.0,90.0,80.0,86.0,70.0,78.0,92.0,81.0,73.0,109.0,97.0,82.0,89.0,86.0,87.0,101.0,95.0,81.0,82.0,71.0,83.0,78.0,84.0,66.0,64.0,60.0,60.0,55.0,58.0,64.0,64.0,59.0,57.0,72.0,62.0,40.0,44.0,38.0,29.0,32.0,28.0,28.0,23.0,27.0,9.0,12.0,8.0,4.0,9.0,1.0,8.0,6.0 P91007,21.0,27.0,26.0,26.0,23.0,40.0,30.0,34.0,39.0,43.0,58.0,53.0,48.0,53.0,49.0,42.0,44.0,44.0,41.0,28.0,26.0,27.0,32.0,19.0,35.0,37.0,34.0,27.0,26.0,28.0,21.0,26.0,34.0,32.0,23.0,40.0,37.0,33.0,44.0,54.0,46.0,48.0,48.0,58.0,63.0,48.0,41.0,43.0,39.0,52.0,49.0,61.0,61.0,55.0,50.0,46.0,59.0,35.0,46.0,40.0,52.0,43.0,45.0,34.0,55.0,30.0,40.0,25.0,19.0,30.0,28.0,24.0,31.0,24.0,23.0,19.0,21.0,31.0,24.0,30.0,17.0,19.0,18.0,20.0,12.0,15.0,13.0,8.0,8.0,3.0,4.0,2.0,5.0,1.0,2.0,2.0 P91008,24.0,24.0,31.0,29.0,35.0,29.0,37.0,29.0,33.0,48.0,34.0,39.0,32.0,47.0,36.0,36.0,38.0,44.0,38.0,35.0,40.0,28.0,29.0,43.0,48.0,23.0,35.0,34.0,31.0,33.0,30.0,39.0,23.0,39.0,32.0,26.0,28.0,41.0,31.0,39.0,36.0,44.0,38.0,37.0,44.0,39.0,35.0,33.0,27.0,33.0,35.0,43.0,36.0,32.0,35.0,54.0,38.0,46.0,27.0,40.0,50.0,52.0,46.0,43.0,42.0,54.0,41.0,35.0,54.0,36.0,45.0,38.0,31.0,23.0,16.0,31.0,29.0,30.0,26.0,24.0,17.0,25.0,21.0,20.0,11.0,11.0,10.0,10.0,16.0,5.0,11.0,5.0,6.0,5.0,3.0,7.0 P91009,25.0,39.0,46.0,55.0,48.0,43.0,47.0,53.0,58.0,57.0,67.0,66.0,59.0,61.0,68.0,76.0,81.0,59.0,57.0,64.0,63.0,77.0,46.0,39.0,44.0,52.0,58.0,50.0,53.0,51.0,45.0,71.0,67.0,65.0,66.0,77.0,66.0,84.0,56.0,73.0,73.0,58.0,76.0,63.0,67.0,74.0,69.0,54.0,60.0,64.0,72.0,63.0,68.0,77.0,73.0,77.0,81.0,78.0,77.0,72.0,82.0,83.0,78.0,83.0,73.0,64.0,73.0,65.0,64.0,75.0,58.0,47.0,54.0,53.0,51.0,55.0,64.0,59.0,61.0,37.0,43.0,37.0,48.0,33.0,18.0,37.0,26.0,19.0,22.0,21.0,16.0,8.0,6.0,6.0,1.0,7.0 P91011,22.0,18.0,30.0,21.0,25.0,29.0,26.0,20.0,32.0,43.0,30.0,37.0,48.0,47.0,40.0,35.0,52.0,54.0,41.0,33.0,31.0,30.0,30.0,31.0,21.0,34.0,37.0,21.0,30.0,22.0,30.0,26.0,18.0,19.0,25.0,30.0,29.0,33.0,32.0,29.0,25.0,33.0,32.0,45.0,34.0,38.0,44.0,38.0,41.0,44.0,48.0,29.0,47.0,35.0,40.0,37.0,48.0,40.0,35.0,38.0,45.0,41.0,32.0,41.0,27.0,39.0,45.0,34.0,25.0,36.0,29.0,24.0,25.0,22.0,18.0,23.0,31.0,32.0,25.0,21.0,17.0,17.0,20.0,18.0,13.0,18.0,14.0,9.0,9.0,11.0,6.0,5.0,4.0,2.0,5.0,8.0 P91012,33.0,45.0,38.0,32.0,34.0,41.0,50.0,43.0,42.0,49.0,37.0,41.0,46.0,43.0,33.0,42.0,40.0,33.0,39.0,32.0,28.0,37.0,35.0,31.0,41.0,35.0,36.0,44.0,35.0,44.0,50.0,36.0,40.0,50.0,59.0,53.0,34.0,53.0,48.0,46.0,55.0,48.0,55.0,54.0,60.0,47.0,40.0,48.0,45.0,55.0,25.0,54.0,51.0,46.0,44.0,39.0,38.0,55.0,52.0,56.0,59.0,63.0,56.0,57.0,50.0,50.0,44.0,53.0,32.0,45.0,33.0,34.0,28.0,33.0,31.0,32.0,33.0,40.0,32.0,26.0,33.0,21.0,27.0,11.0,6.0,15.0,10.0,12.0,12.0,6.0,11.0,5.0,5.0,1.0,3.0,4.0 P91013,52.0,50.0,45.0,54.0,60.0,62.0,64.0,73.0,72.0,72.0,98.0,86.0,72.0,93.0,75.0,80.0,83.0,90.0,84.0,62.0,61.0,62.0,42.0,55.0,54.0,52.0,76.0,60.0,63.0,72.0,58.0,78.0,64.0,70.0,87.0,71.0,75.0,100.0,78.0,93.0,101.0,98.0,115.0,89.0,111.0,94.0,105.0,80.0,63.0,91.0,79.0,86.0,64.0,70.0,73.0,73.0,64.0,67.0,57.0,70.0,59.0,71.0,71.0,46.0,53.0,56.0,52.0,44.0,34.0,44.0,56.0,31.0,42.0,52.0,50.0,38.0,40.0,58.0,47.0,28.0,24.0,26.0,19.0,13.0,17.0,14.0,9.0,13.0,8.0,12.0,9.0,8.0,7.0,3.0,2.0,12.0 P91014,48.0,56.0,74.0,82.0,84.0,94.0,107.0,112.0,110.0,113.0,130.0,128.0,102.0,120.0,110.0,121.0,99.0,103.0,93.0,75.0,72.0,52.0,55.0,69.0,60.0,62.0,68.0,81.0,81.0,89.0,87.0,87.0,101.0,100.0,119.0,94.0,118.0,134.0,131.0,139.0,130.0,165.0,147.0,165.0,132.0,197.0,114.0,121.0,110.0,123.0,147.0,133.0,128.0,148.0,120.0,113.0,108.0,83.0,97.0,105.0,105.0,104.0,91.0,106.0,100.0,77.0,70.0,90.0,64.0,78.0,57.0,54.0,63.0,54.0,71.0,61.0,55.0,51.0,61.0,44.0,44.0,36.0,41.0,27.0,22.0,30.0,23.0,18.0,26.0,15.0,13.0,9.0,10.0,4.0,7.0,7.0 P91016,33.0,27.0,38.0,51.0,42.0,83.0,58.0,74.0,95.0,94.0,88.0,104.0,88.0,93.0,70.0,70.0,73.0,68.0,65.0,55.0,38.0,44.0,29.0,44.0,45.0,40.0,42.0,40.0,44.0,35.0,42.0,48.0,52.0,53.0,61.0,46.0,59.0,71.0,67.0,82.0,72.0,103.0,78.0,97.0,93.0,92.0,82.0,74.0,71.0,64.0,90.0,73.0,75.0,58.0,79.0,52.0,55.0,46.0,52.0,41.0,50.0,45.0,43.0,33.0,47.0,38.0,33.0,27.0,28.0,34.0,40.0,29.0,32.0,39.0,26.0,31.0,32.0,29.0,40.0,27.0,19.0,17.0,21.0,11.0,12.0,15.0,8.0,7.0,10.0,7.0,4.0,7.0,3.0,2.0,1.0,3.0 P91017,26.0,41.0,40.0,54.0,44.0,58.0,71.0,71.0,64.0,67.0,65.0,79.0,75.0,75.0,64.0,81.0,62.0,60.0,61.0,38.0,46.0,39.0,48.0,41.0,32.0,41.0,27.0,41.0,32.0,32.0,42.0,35.0,56.0,48.0,39.0,51.0,65.0,53.0,64.0,74.0,61.0,73.0,87.0,76.0,64.0,76.0,83.0,73.0,63.0,55.0,75.0,53.0,64.0,49.0,43.0,67.0,61.0,48.0,56.0,60.0,73.0,51.0,54.0,45.0,36.0,59.0,44.0,52.0,46.0,35.0,42.0,43.0,22.0,40.0,39.0,31.0,31.0,43.0,27.0,19.0,32.0,35.0,19.0,16.0,20.0,13.0,13.0,16.0,10.0,9.0,4.0,7.0,3.0,1.0,3.0,6.0 P91018,71.0,78.0,68.0,75.0,69.0,75.0,84.0,87.0,88.0,110.0,116.0,110.0,104.0,108.0,112.0,114.0,88.0,96.0,83.0,87.0,77.0,85.0,60.0,75.0,89.0,95.0,88.0,100.0,102.0,79.0,102.0,107.0,102.0,139.0,134.0,131.0,120.0,131.0,136.0,114.0,142.0,139.0,150.0,132.0,139.0,119.0,124.0,114.0,91.0,106.0,101.0,90.0,84.0,102.0,90.0,95.0,97.0,84.0,91.0,87.0,97.0,89.0,82.0,95.0,85.0,82.0,74.0,74.0,78.0,58.0,47.0,49.0,50.0,41.0,39.0,39.0,39.0,43.0,36.0,26.0,28.0,28.0,18.0,19.0,18.0,10.0,16.0,9.0,16.0,11.0,7.0,4.0,7.0,1.0,4.0,4.0 P91019,14.0,13.0,28.0,23.0,16.0,20.0,22.0,41.0,32.0,35.0,24.0,24.0,24.0,30.0,34.0,30.0,37.0,25.0,26.0,23.0,25.0,26.0,19.0,23.0,16.0,17.0,16.0,21.0,19.0,31.0,16.0,30.0,18.0,26.0,28.0,23.0,33.0,38.0,31.0,21.0,40.0,20.0,29.0,17.0,26.0,15.0,32.0,19.0,20.0,23.0,22.0,17.0,13.0,28.0,20.0,32.0,24.0,27.0,20.0,30.0,25.0,22.0,29.0,17.0,19.0,25.0,20.0,25.0,14.0,15.0,15.0,12.0,10.0,14.0,15.0,12.0,9.0,14.0,7.0,8.0,9.0,7.0,4.0,2.0,4.0,5.0,3.0,4.0,,,,,4.0,3.0,,1.0 P91020,54.0,57.0,39.0,59.0,66.0,38.0,66.0,50.0,62.0,56.0,65.0,63.0,61.0,71.0,75.0,74.0,73.0,77.0,72.0,89.0,57.0,72.0,82.0,85.0,73.0,98.0,125.0,92.0,90.0,91.0,93.0,76.0,94.0,99.0,83.0,73.0,75.0,104.0,96.0,93.0,78.0,85.0,84.0,83.0,83.0,69.0,80.0,76.0,83.0,63.0,67.0,68.0,63.0,71.0,64.0,57.0,57.0,57.0,50.0,65.0,54.0,66.0,50.0,50.0,51.0,40.0,33.0,46.0,36.0,32.0,32.0,23.0,25.0,13.0,25.0,9.0,17.0,12.0,13.0,9.0,5.0,6.0,14.0,12.0,8.0,10.0,5.0,12.0,6.0,9.0,8.0,2.0,4.0,5.0,4.0,2.0 P91021,47.0,52.0,51.0,57.0,64.0,76.0,69.0,96.0,90.0,108.0,91.0,95.0,119.0,106.0,119.0,124.0,105.0,130.0,93.0,76.0,75.0,106.0,93.0,84.0,77.0,95.0,88.0,88.0,89.0,82.0,91.0,92.0,86.0,80.0,73.0,82.0,100.0,97.0,90.0,99.0,94.0,106.0,115.0,98.0,114.0,105.0,89.0,105.0,120.0,99.0,92.0,116.0,122.0,121.0,116.0,125.0,95.0,118.0,120.0,101.0,114.0,108.0,118.0,93.0,94.0,88.0,77.0,81.0,74.0,67.0,59.0,76.0,65.0,65.0,64.0,79.0,57.0,63.0,50.0,50.0,37.0,38.0,39.0,29.0,25.0,20.0,35.0,29.0,28.0,14.0,15.0,16.0,10.0,5.0,7.0,8.0 P91026,44.0,45.0,41.0,53.0,43.0,29.0,48.0,49.0,50.0,52.0,59.0,41.0,58.0,52.0,51.0,58.0,67.0,41.0,41.0,44.0,47.0,36.0,37.0,41.0,34.0,36.0,45.0,44.0,36.0,38.0,44.0,51.0,48.0,46.0,55.0,56.0,48.0,51.0,49.0,50.0,47.0,41.0,35.0,54.0,35.0,41.0,30.0,42.0,40.0,35.0,20.0,26.0,23.0,31.0,28.0,42.0,33.0,28.0,37.0,36.0,41.0,32.0,26.0,38.0,35.0,31.0,43.0,28.0,34.0,24.0,18.0,21.0,21.0,18.0,17.0,18.0,20.0,17.0,20.0,8.0,7.0,10.0,5.0,10.0,9.0,6.0,7.0,5.0,5.0,2.0,4.0,3.0,2.0,,,2.0 P91029,52.0,59.0,63.0,64.0,75.0,71.0,62.0,79.0,70.0,87.0,61.0,54.0,65.0,68.0,64.0,68.0,65.0,55.0,66.0,68.0,61.0,65.0,75.0,58.0,57.0,62.0,58.0,41.0,60.0,56.0,66.0,79.0,89.0,78.0,79.0,81.0,95.0,85.0,76.0,111.0,97.0,111.0,108.0,96.0,84.0,115.0,63.0,78.0,76.0,81.0,77.0,105.0,78.0,79.0,89.0,87.0,77.0,78.0,76.0,95.0,98.0,92.0,89.0,68.0,61.0,55.0,62.0,63.0,70.0,61.0,51.0,44.0,46.0,32.0,52.0,40.0,43.0,47.0,40.0,36.0,30.0,35.0,33.0,16.0,23.0,18.0,19.0,12.0,13.0,13.0,8.0,2.0,6.0,4.0,6.0,5.0 P91035,67.0,52.0,80.0,83.0,79.0,99.0,104.0,105.0,130.0,121.0,111.0,112.0,100.0,88.0,95.0,76.0,94.0,81.0,60.0,53.0,49.0,53.0,57.0,43.0,54.0,59.0,58.0,63.0,60.0,74.0,88.0,70.0,111.0,88.0,101.0,102.0,119.0,136.0,115.0,113.0,118.0,112.0,127.0,135.0,127.0,110.0,112.0,106.0,97.0,92.0,82.0,99.0,96.0,83.0,84.0,81.0,54.0,79.0,73.0,71.0,72.0,68.0,72.0,60.0,58.0,58.0,53.0,64.0,55.0,47.0,47.0,54.0,67.0,59.0,54.0,57.0,37.0,51.0,51.0,34.0,26.0,28.0,21.0,24.0,9.0,16.0,21.0,19.0,14.0,13.0,11.0,6.0,10.0,4.0,,6.0 P91603,27.0,35.0,32.0,25.0,35.0,32.0,37.0,45.0,45.0,51.0,63.0,57.0,62.0,70.0,50.0,63.0,66.0,50.0,53.0,45.0,34.0,30.0,30.0,40.0,43.0,44.0,40.0,34.0,46.0,44.0,44.0,46.0,52.0,50.0,35.0,42.0,62.0,61.0,40.0,50.0,73.0,73.0,64.0,65.0,60.0,64.0,67.0,77.0,69.0,52.0,63.0,71.0,57.0,77.0,52.0,56.0,58.0,48.0,40.0,43.0,46.0,53.0,56.0,37.0,35.0,25.0,34.0,30.0,23.0,25.0,24.0,28.0,21.0,30.0,30.0,20.0,26.0,22.0,26.0,19.0,26.0,24.0,12.0,12.0,12.0,9.0,17.0,11.0,5.0,10.0,7.0,6.0,3.0,1.0,1.0,1.0 P91604,56.0,69.0,58.0,67.0,86.0,80.0,85.0,82.0,96.0,126.0,115.0,110.0,112.0,124.0,129.0,109.0,123.0,145.0,112.0,99.0,76.0,87.0,90.0,63.0,78.0,80.0,71.0,61.0,54.0,63.0,61.0,79.0,93.0,103.0,80.0,93.0,78.0,87.0,93.0,110.0,103.0,112.0,105.0,112.0,115.0,139.0,108.0,135.0,124.0,120.0,122.0,130.0,120.0,126.0,140.0,112.0,138.0,139.0,133.0,121.0,111.0,103.0,115.0,103.0,90.0,94.0,90.0,90.0,70.0,88.0,78.0,72.0,77.0,68.0,78.0,58.0,85.0,75.0,69.0,48.0,54.0,65.0,58.0,42.0,41.0,35.0,38.0,32.0,21.0,20.0,22.0,16.0,18.0,6.0,7.0,14.0 P91617,9.0,11.0,5.0,15.0,10.0,10.0,18.0,22.0,17.0,21.0,18.0,29.0,19.0,17.0,17.0,18.0,19.0,9.0,11.0,6.0,8.0,7.0,6.0,10.0,6.0,15.0,12.0,17.0,16.0,14.0,12.0,27.0,19.0,21.0,21.0,13.0,18.0,22.0,27.0,25.0,25.0,35.0,17.0,25.0,27.0,28.0,32.0,22.0,17.0,14.0,20.0,19.0,10.0,17.0,12.0,18.0,14.0,17.0,20.0,14.0,10.0,24.0,17.0,16.0,12.0,13.0,8.0,20.0,8.0,9.0,9.0,12.0,10.0,5.0,8.0,6.0,9.0,7.0,5.0,5.0,1.0,3.0,5.0,5.0,4.0,1.0,5.0,1.0,3.0,5.0,1.0,,,,,2.0 P91623,27.0,25.0,32.0,36.0,46.0,49.0,55.0,47.0,48.0,43.0,51.0,63.0,58.0,66.0,54.0,45.0,50.0,54.0,50.0,31.0,45.0,33.0,31.0,23.0,35.0,40.0,29.0,30.0,34.0,35.0,50.0,28.0,35.0,42.0,45.0,41.0,58.0,45.0,55.0,46.0,47.0,59.0,54.0,46.0,41.0,60.0,64.0,43.0,49.0,46.0,54.0,47.0,50.0,56.0,53.0,43.0,42.0,52.0,39.0,39.0,41.0,47.0,55.0,51.0,42.0,62.0,29.0,37.0,57.0,38.0,27.0,33.0,24.0,47.0,40.0,39.0,30.0,33.0,36.0,22.0,25.0,24.0,17.0,14.0,12.0,14.0,15.0,17.0,9.0,6.0,7.0,2.0,6.0,6.0,1.0,1.0 P91627,42.0,44.0,49.0,51.0,54.0,47.0,55.0,56.0,56.0,66.0,62.0,76.0,77.0,66.0,55.0,74.0,56.0,55.0,59.0,70.0,41.0,40.0,47.0,41.0,49.0,46.0,45.0,57.0,48.0,42.0,52.0,52.0,47.0,57.0,48.0,51.0,49.0,58.0,62.0,71.0,71.0,80.0,77.0,71.0,62.0,58.0,71.0,66.0,67.0,50.0,49.0,54.0,61.0,69.0,58.0,66.0,53.0,44.0,66.0,53.0,62.0,53.0,41.0,50.0,47.0,42.0,34.0,34.0,34.0,32.0,27.0,34.0,26.0,29.0,24.0,26.0,25.0,31.0,33.0,14.0,15.0,19.0,20.0,11.0,7.0,8.0,16.0,5.0,3.0,9.0,4.0,6.0,3.0,3.0,2.0,3.0 P91629,68.0,76.0,75.0,81.0,99.0,70.0,70.0,100.0,86.0,104.0,89.0,103.0,95.0,116.0,105.0,117.0,128.0,97.0,129.0,102.0,103.0,112.0,119.0,127.0,127.0,138.0,140.0,131.0,131.0,143.0,118.0,131.0,155.0,155.0,135.0,147.0,121.0,155.0,140.0,152.0,138.0,115.0,135.0,135.0,124.0,140.0,115.0,90.0,111.0,105.0,106.0,102.0,93.0,113.0,111.0,108.0,106.0,76.0,83.0,100.0,76.0,77.0,74.0,67.0,64.0,65.0,61.0,65.0,67.0,48.0,34.0,50.0,39.0,41.0,37.0,33.0,39.0,24.0,17.0,23.0,24.0,10.0,12.0,9.0,12.0,12.0,8.0,13.0,13.0,7.0,6.0,5.0,4.0,3.0,5.0,3.0 P91631,11.0,11.0,17.0,20.0,17.0,27.0,19.0,29.0,35.0,26.0,46.0,35.0,38.0,27.0,37.0,27.0,30.0,18.0,23.0,17.0,20.0,16.0,8.0,15.0,7.0,14.0,11.0,17.0,19.0,14.0,15.0,16.0,17.0,13.0,16.0,21.0,25.0,29.0,16.0,27.0,34.0,33.0,30.0,34.0,45.0,39.0,36.0,29.0,30.0,25.0,26.0,25.0,31.0,26.0,20.0,19.0,16.0,29.0,29.0,20.0,15.0,20.0,18.0,24.0,13.0,17.0,19.0,13.0,6.0,15.0,12.0,15.0,8.0,12.0,16.0,13.0,16.0,19.0,8.0,15.0,11.0,14.0,6.0,9.0,6.0,6.0,4.0,4.0,3.0,3.0,,5.0,,4.0,4.0,4.0 P92001,18.0,31.0,24.0,23.0,29.0,20.0,25.0,24.0,35.0,31.0,26.0,28.0,28.0,32.0,21.0,29.0,34.0,48.0,25.0,44.0,28.0,34.0,33.0,28.0,28.0,28.0,24.0,31.0,28.0,55.0,34.0,39.0,36.0,52.0,39.0,35.0,24.0,33.0,37.0,36.0,26.0,23.0,29.0,33.0,33.0,35.0,43.0,32.0,39.0,31.0,34.0,34.0,40.0,41.0,48.0,52.0,40.0,59.0,41.0,38.0,48.0,33.0,42.0,39.0,35.0,28.0,26.0,31.0,30.0,24.0,27.0,28.0,35.0,26.0,26.0,27.0,33.0,28.0,35.0,25.0,17.0,26.0,30.0,23.0,8.0,17.0,10.0,6.0,3.0,8.0,2.0,4.0,,,,3.0 P92002,27.0,18.0,27.0,22.0,31.0,32.0,24.0,19.0,29.0,19.0,19.0,29.0,26.0,24.0,23.0,32.0,26.0,33.0,28.0,30.0,20.0,27.0,32.0,21.0,19.0,28.0,25.0,26.0,22.0,25.0,36.0,34.0,22.0,33.0,45.0,41.0,37.0,33.0,36.0,35.0,39.0,40.0,41.0,37.0,34.0,40.0,35.0,22.0,30.0,39.0,30.0,34.0,44.0,44.0,39.0,31.0,34.0,31.0,43.0,30.0,38.0,30.0,29.0,35.0,34.0,27.0,36.0,30.0,20.0,25.0,26.0,34.0,26.0,36.0,41.0,37.0,23.0,30.0,27.0,31.0,23.0,15.0,20.0,11.0,12.0,14.0,11.0,9.0,7.0,4.0,2.0,,2.0,3.0,2.0,1.0 P92003,43.0,51.0,59.0,55.0,46.0,52.0,64.0,58.0,62.0,63.0,48.0,55.0,56.0,66.0,52.0,55.0,55.0,53.0,53.0,35.0,45.0,39.0,50.0,52.0,61.0,49.0,55.0,54.0,65.0,65.0,62.0,71.0,77.0,65.0,81.0,92.0,68.0,90.0,79.0,86.0,72.0,81.0,83.0,71.0,78.0,67.0,64.0,51.0,64.0,50.0,68.0,56.0,47.0,75.0,80.0,72.0,60.0,74.0,79.0,60.0,67.0,64.0,60.0,63.0,68.0,50.0,63.0,56.0,68.0,38.0,38.0,39.0,30.0,41.0,41.0,42.0,37.0,43.0,27.0,27.0,28.0,27.0,33.0,19.0,20.0,12.0,11.0,8.0,8.0,6.0,5.0,3.0,3.0,2.0,2.0,2.0 P92004,22.0,38.0,33.0,44.0,42.0,38.0,38.0,40.0,40.0,51.0,35.0,52.0,40.0,36.0,36.0,47.0,41.0,41.0,32.0,42.0,36.0,39.0,48.0,45.0,42.0,42.0,47.0,37.0,62.0,51.0,52.0,55.0,56.0,61.0,56.0,53.0,49.0,48.0,55.0,57.0,36.0,38.0,52.0,46.0,48.0,44.0,37.0,36.0,35.0,43.0,41.0,33.0,44.0,59.0,44.0,57.0,57.0,54.0,74.0,70.0,60.0,47.0,57.0,39.0,54.0,41.0,47.0,37.0,49.0,41.0,37.0,36.0,27.0,28.0,41.0,31.0,34.0,47.0,34.0,33.0,29.0,34.0,22.0,29.0,28.0,14.0,20.0,14.0,6.0,3.0,5.0,4.0,1.0,3.0,1.0,3.0 P92005,6.0,15.0,13.0,18.0,17.0,28.0,17.0,28.0,25.0,23.0,27.0,23.0,28.0,22.0,29.0,31.0,31.0,23.0,33.0,23.0,19.0,25.0,23.0,16.0,29.0,18.0,26.0,16.0,27.0,25.0,25.0,17.0,25.0,17.0,23.0,20.0,29.0,33.0,28.0,19.0,33.0,33.0,30.0,27.0,28.0,36.0,25.0,31.0,15.0,26.0,23.0,28.0,32.0,36.0,38.0,33.0,38.0,27.0,25.0,29.0,45.0,29.0,23.0,23.0,19.0,21.0,19.0,20.0,21.0,19.0,18.0,25.0,21.0,19.0,23.0,21.0,30.0,28.0,29.0,26.0,15.0,17.0,23.0,6.0,7.0,8.0,8.0,9.0,4.0,6.0,3.0,2.0,,,,2.0 P92006,30.0,35.0,26.0,38.0,35.0,25.0,43.0,26.0,38.0,32.0,32.0,43.0,34.0,35.0,42.0,43.0,42.0,29.0,33.0,34.0,31.0,35.0,29.0,24.0,36.0,36.0,40.0,35.0,41.0,41.0,43.0,33.0,52.0,38.0,43.0,49.0,35.0,43.0,32.0,45.0,36.0,41.0,46.0,46.0,37.0,47.0,43.0,25.0,22.0,39.0,41.0,36.0,43.0,50.0,46.0,54.0,42.0,50.0,40.0,44.0,44.0,48.0,50.0,42.0,39.0,37.0,35.0,31.0,29.0,31.0,19.0,31.0,31.0,24.0,33.0,31.0,33.0,33.0,40.0,23.0,24.0,22.0,7.0,15.0,9.0,15.0,7.0,9.0,6.0,3.0,4.0,4.0,1.0,,1.0,1.0 P92007,30.0,31.0,27.0,33.0,33.0,25.0,34.0,33.0,38.0,33.0,36.0,41.0,36.0,39.0,27.0,39.0,48.0,36.0,41.0,42.0,36.0,39.0,35.0,31.0,41.0,35.0,46.0,35.0,45.0,53.0,46.0,35.0,44.0,62.0,52.0,46.0,39.0,44.0,55.0,29.0,51.0,37.0,56.0,31.0,37.0,36.0,37.0,33.0,33.0,31.0,39.0,37.0,56.0,37.0,48.0,35.0,50.0,48.0,56.0,48.0,36.0,43.0,43.0,39.0,42.0,40.0,40.0,44.0,38.0,36.0,27.0,33.0,23.0,26.0,35.0,20.0,29.0,34.0,23.0,20.0,15.0,20.0,22.0,7.0,10.0,16.0,9.0,7.0,8.0,2.0,3.0,1.0,1.0,1.0,1.0,3.0 P92008,26.0,37.0,42.0,49.0,33.0,58.0,47.0,39.0,59.0,58.0,61.0,43.0,49.0,52.0,47.0,57.0,59.0,61.0,45.0,53.0,37.0,47.0,45.0,56.0,58.0,68.0,42.0,50.0,52.0,46.0,54.0,48.0,51.0,44.0,51.0,63.0,67.0,41.0,52.0,48.0,41.0,57.0,54.0,57.0,41.0,42.0,48.0,59.0,57.0,56.0,57.0,50.0,62.0,75.0,61.0,65.0,73.0,58.0,58.0,84.0,71.0,60.0,66.0,42.0,59.0,42.0,52.0,53.0,45.0,48.0,58.0,39.0,36.0,40.0,37.0,43.0,41.0,42.0,51.0,32.0,40.0,34.0,29.0,23.0,18.0,27.0,18.0,6.0,19.0,9.0,9.0,7.0,6.0,4.0,2.0,6.0 P92010,37.0,51.0,45.0,57.0,51.0,57.0,55.0,64.0,75.0,69.0,58.0,77.0,63.0,77.0,84.0,62.0,73.0,87.0,74.0,77.0,60.0,60.0,54.0,59.0,57.0,61.0,66.0,56.0,74.0,53.0,79.0,64.0,61.0,74.0,67.0,70.0,80.0,91.0,72.0,81.0,85.0,82.0,70.0,69.0,75.0,78.0,65.0,51.0,74.0,67.0,70.0,84.0,72.0,88.0,92.0,77.0,80.0,82.0,104.0,86.0,73.0,74.0,78.0,94.0,85.0,66.0,85.0,75.0,66.0,59.0,61.0,62.0,59.0,50.0,50.0,61.0,55.0,65.0,64.0,41.0,33.0,37.0,36.0,36.0,23.0,24.0,21.0,13.0,15.0,11.0,10.0,9.0,4.0,2.0,5.0,6.0 P92011,30.0,33.0,35.0,47.0,26.0,53.0,30.0,41.0,44.0,47.0,50.0,39.0,43.0,46.0,44.0,44.0,55.0,47.0,43.0,40.0,51.0,42.0,48.0,30.0,40.0,56.0,54.0,59.0,54.0,51.0,65.0,76.0,55.0,62.0,65.0,64.0,66.0,52.0,64.0,55.0,55.0,44.0,57.0,61.0,47.0,33.0,56.0,42.0,49.0,47.0,50.0,59.0,76.0,49.0,64.0,52.0,63.0,66.0,60.0,68.0,61.0,71.0,60.0,64.0,57.0,48.0,46.0,43.0,38.0,39.0,45.0,38.0,33.0,33.0,25.0,27.0,33.0,32.0,34.0,23.0,30.0,28.0,19.0,27.0,13.0,13.0,14.0,17.0,9.0,5.0,3.0,5.0,3.0,2.0,1.0,1.0 P92012,22.0,22.0,24.0,29.0,20.0,14.0,18.0,31.0,24.0,26.0,21.0,35.0,29.0,21.0,40.0,40.0,30.0,32.0,29.0,26.0,27.0,30.0,32.0,20.0,29.0,34.0,30.0,25.0,30.0,17.0,36.0,23.0,31.0,32.0,37.0,30.0,42.0,29.0,27.0,34.0,29.0,22.0,11.0,25.0,26.0,18.0,23.0,22.0,27.0,22.0,24.0,27.0,32.0,34.0,38.0,36.0,31.0,40.0,39.0,25.0,32.0,39.0,30.0,28.0,31.0,23.0,23.0,27.0,25.0,20.0,20.0,19.0,27.0,21.0,18.0,26.0,27.0,21.0,19.0,19.0,24.0,17.0,11.0,12.0,15.0,14.0,3.0,10.0,5.0,9.0,3.0,4.0,1.0,,,2.0 P92014,66.0,78.0,76.0,76.0,65.0,80.0,77.0,75.0,62.0,68.0,64.0,86.0,69.0,67.0,78.0,78.0,76.0,59.0,66.0,51.0,61.0,59.0,49.0,65.0,73.0,71.0,91.0,60.0,87.0,82.0,74.0,91.0,68.0,101.0,102.0,96.0,91.0,94.0,88.0,88.0,89.0,81.0,87.0,99.0,71.0,93.0,93.0,63.0,85.0,68.0,84.0,79.0,87.0,100.0,102.0,93.0,95.0,78.0,109.0,101.0,128.0,84.0,93.0,82.0,91.0,83.0,85.0,71.0,65.0,65.0,64.0,58.0,65.0,55.0,51.0,55.0,61.0,74.0,84.0,46.0,53.0,43.0,41.0,27.0,33.0,30.0,24.0,23.0,15.0,16.0,16.0,4.0,7.0,5.0,7.0,3.0 P92015,24.0,28.0,24.0,26.0,35.0,35.0,25.0,25.0,25.0,33.0,29.0,32.0,29.0,28.0,25.0,39.0,24.0,28.0,26.0,41.0,22.0,35.0,29.0,22.0,23.0,28.0,34.0,30.0,39.0,30.0,35.0,41.0,36.0,54.0,40.0,31.0,31.0,38.0,36.0,33.0,57.0,42.0,35.0,39.0,41.0,30.0,30.0,27.0,32.0,39.0,30.0,32.0,38.0,60.0,46.0,38.0,46.0,47.0,43.0,57.0,44.0,49.0,55.0,59.0,45.0,48.0,40.0,46.0,35.0,27.0,24.0,37.0,30.0,32.0,29.0,26.0,32.0,39.0,36.0,30.0,29.0,31.0,17.0,16.0,15.0,15.0,16.0,14.0,10.0,6.0,7.0,4.0,6.0,2.0,,1.0 P92016,98.0,96.0,97.0,83.0,98.0,86.0,93.0,110.0,100.0,108.0,103.0,98.0,109.0,111.0,117.0,123.0,115.0,121.0,86.0,118.0,98.0,114.0,98.0,118.0,104.0,118.0,107.0,122.0,113.0,109.0,124.0,137.0,140.0,145.0,157.0,144.0,132.0,136.0,118.0,118.0,132.0,118.0,127.0,128.0,127.0,110.0,119.0,121.0,125.0,115.0,135.0,123.0,131.0,129.0,147.0,171.0,148.0,123.0,166.0,145.0,139.0,142.0,101.0,126.0,127.0,101.0,94.0,83.0,83.0,89.0,78.0,84.0,81.0,73.0,94.0,102.0,81.0,79.0,102.0,78.0,64.0,66.0,43.0,31.0,25.0,31.0,32.0,20.0,19.0,19.0,10.0,5.0,1.0,2.0,7.0,5.0 P92017,62.0,77.0,61.0,76.0,66.0,67.0,63.0,74.0,67.0,54.0,76.0,62.0,55.0,81.0,80.0,62.0,69.0,72.0,81.0,69.0,61.0,66.0,70.0,51.0,63.0,62.0,69.0,62.0,56.0,59.0,77.0,70.0,75.0,76.0,78.0,84.0,89.0,85.0,75.0,71.0,63.0,77.0,62.0,94.0,62.0,73.0,71.0,66.0,68.0,77.0,80.0,101.0,102.0,102.0,94.0,89.0,86.0,118.0,115.0,87.0,119.0,101.0,97.0,87.0,89.0,77.0,85.0,73.0,74.0,77.0,65.0,67.0,63.0,77.0,74.0,81.0,81.0,89.0,70.0,61.0,64.0,55.0,52.0,45.0,33.0,34.0,28.0,22.0,24.0,18.0,13.0,7.0,5.0,4.0,5.0,7.0 P92019,60.0,62.0,56.0,54.0,62.0,69.0,72.0,75.0,72.0,81.0,78.0,69.0,64.0,88.0,90.0,72.0,62.0,71.0,81.0,70.0,62.0,63.0,45.0,50.0,47.0,54.0,55.0,65.0,81.0,63.0,65.0,84.0,94.0,79.0,91.0,76.0,83.0,72.0,92.0,74.0,97.0,79.0,83.0,72.0,77.0,94.0,86.0,58.0,64.0,68.0,76.0,65.0,79.0,76.0,70.0,76.0,68.0,79.0,70.0,53.0,55.0,55.0,50.0,37.0,50.0,40.0,52.0,41.0,31.0,34.0,40.0,40.0,41.0,55.0,35.0,32.0,39.0,36.0,37.0,29.0,23.0,25.0,32.0,27.0,8.0,21.0,15.0,9.0,11.0,9.0,6.0,5.0,1.0,3.0,3.0,2.0 P92020,22.0,22.0,19.0,21.0,34.0,33.0,37.0,24.0,31.0,33.0,50.0,30.0,26.0,31.0,44.0,33.0,31.0,38.0,23.0,27.0,23.0,18.0,15.0,23.0,20.0,21.0,21.0,23.0,29.0,23.0,21.0,23.0,37.0,25.0,30.0,33.0,22.0,42.0,38.0,29.0,35.0,35.0,41.0,43.0,43.0,41.0,41.0,38.0,27.0,30.0,38.0,33.0,35.0,28.0,46.0,38.0,36.0,18.0,44.0,48.0,35.0,34.0,25.0,36.0,35.0,38.0,37.0,24.0,24.0,27.0,26.0,32.0,19.0,25.0,30.0,30.0,20.0,32.0,28.0,18.0,13.0,14.0,16.0,15.0,9.0,10.0,13.0,4.0,4.0,4.0,3.0,3.0,2.0,,,1.0 P92021,21.0,22.0,28.0,33.0,37.0,30.0,51.0,36.0,41.0,42.0,43.0,31.0,41.0,33.0,40.0,44.0,33.0,33.0,35.0,31.0,34.0,39.0,29.0,30.0,31.0,31.0,34.0,42.0,29.0,38.0,33.0,35.0,37.0,36.0,47.0,35.0,37.0,43.0,38.0,45.0,41.0,36.0,37.0,30.0,41.0,36.0,36.0,31.0,36.0,34.0,28.0,40.0,38.0,42.0,34.0,31.0,41.0,46.0,49.0,41.0,39.0,37.0,30.0,42.0,29.0,40.0,35.0,39.0,35.0,28.0,22.0,31.0,27.0,22.0,35.0,33.0,34.0,43.0,42.0,27.0,30.0,22.0,24.0,15.0,19.0,4.0,13.0,6.0,10.0,5.0,2.0,3.0,3.0,,,1.0 P92023,34.0,42.0,48.0,35.0,49.0,31.0,44.0,52.0,41.0,51.0,64.0,39.0,38.0,40.0,42.0,54.0,48.0,45.0,46.0,42.0,44.0,42.0,37.0,34.0,41.0,36.0,48.0,51.0,54.0,53.0,54.0,39.0,51.0,71.0,66.0,68.0,61.0,68.0,84.0,60.0,72.0,66.0,55.0,51.0,51.0,58.0,48.0,50.0,50.0,48.0,58.0,53.0,50.0,71.0,67.0,68.0,78.0,86.0,79.0,70.0,74.0,70.0,61.0,82.0,46.0,49.0,54.0,49.0,53.0,41.0,33.0,35.0,40.0,37.0,44.0,30.0,43.0,73.0,38.0,30.0,27.0,29.0,42.0,21.0,21.0,17.0,13.0,8.0,11.0,6.0,10.0,2.0,,3.0,2.0,5.0 P92024,18.0,21.0,31.0,29.0,35.0,23.0,27.0,38.0,29.0,24.0,15.0,33.0,37.0,25.0,34.0,30.0,34.0,32.0,27.0,24.0,35.0,23.0,27.0,38.0,21.0,35.0,34.0,30.0,46.0,37.0,32.0,43.0,35.0,36.0,36.0,34.0,37.0,48.0,30.0,50.0,37.0,47.0,31.0,37.0,28.0,34.0,26.0,36.0,34.0,39.0,52.0,31.0,32.0,29.0,38.0,41.0,43.0,44.0,29.0,31.0,36.0,36.0,30.0,28.0,28.0,34.0,32.0,27.0,29.0,30.0,18.0,27.0,24.0,29.0,18.0,24.0,23.0,22.0,18.0,11.0,11.0,12.0,18.0,5.0,7.0,8.0,1.0,8.0,1.0,1.0,5.0,1.0,1.0,1.0,1.0,2.0 P92026,23.0,25.0,34.0,44.0,33.0,39.0,43.0,53.0,39.0,38.0,43.0,58.0,36.0,39.0,51.0,55.0,40.0,48.0,33.0,45.0,40.0,40.0,36.0,38.0,53.0,53.0,50.0,41.0,46.0,57.0,61.0,52.0,60.0,68.0,59.0,64.0,59.0,48.0,54.0,55.0,54.0,44.0,54.0,53.0,51.0,47.0,38.0,39.0,31.0,33.0,54.0,51.0,58.0,60.0,50.0,67.0,51.0,54.0,46.0,47.0,77.0,52.0,55.0,55.0,47.0,52.0,41.0,46.0,39.0,36.0,43.0,45.0,30.0,34.0,32.0,26.0,29.0,23.0,25.0,19.0,23.0,17.0,17.0,16.0,23.0,8.0,14.0,9.0,6.0,7.0,1.0,3.0,3.0,,1.0,1.0 P92028,17.0,14.0,25.0,30.0,35.0,32.0,33.0,38.0,21.0,35.0,24.0,27.0,24.0,41.0,29.0,30.0,35.0,25.0,17.0,27.0,30.0,21.0,24.0,27.0,22.0,22.0,24.0,26.0,25.0,27.0,34.0,38.0,34.0,31.0,37.0,51.0,38.0,32.0,32.0,34.0,35.0,42.0,41.0,29.0,33.0,31.0,28.0,25.0,26.0,24.0,30.0,35.0,26.0,34.0,33.0,30.0,36.0,28.0,27.0,25.0,35.0,32.0,27.0,29.0,24.0,26.0,22.0,18.0,23.0,23.0,16.0,18.0,28.0,17.0,15.0,22.0,24.0,22.0,19.0,17.0,16.0,16.0,15.0,10.0,12.0,5.0,7.0,9.0,2.0,6.0,5.0,2.0,1.0,1.0,2.0,2.0 P92029,14.0,18.0,26.0,18.0,23.0,17.0,24.0,32.0,20.0,34.0,43.0,27.0,34.0,39.0,33.0,42.0,35.0,40.0,37.0,28.0,25.0,19.0,28.0,26.0,29.0,32.0,35.0,29.0,28.0,27.0,28.0,39.0,29.0,30.0,42.0,34.0,46.0,28.0,34.0,30.0,37.0,37.0,40.0,33.0,37.0,31.0,30.0,20.0,31.0,31.0,27.0,31.0,27.0,37.0,31.0,29.0,30.0,39.0,28.0,32.0,25.0,29.0,17.0,13.0,16.0,23.0,27.0,24.0,30.0,16.0,14.0,17.0,13.0,25.0,20.0,21.0,16.0,12.0,10.0,12.0,14.0,12.0,9.0,9.0,3.0,3.0,4.0,2.0,3.0,5.0,1.0,1.0,1.0,1.0,,1.0 P92030,20.0,22.0,19.0,21.0,14.0,19.0,18.0,24.0,24.0,21.0,21.0,31.0,24.0,24.0,18.0,30.0,29.0,32.0,24.0,18.0,29.0,24.0,14.0,17.0,22.0,21.0,20.0,20.0,27.0,26.0,24.0,31.0,35.0,26.0,40.0,53.0,44.0,49.0,33.0,37.0,42.0,49.0,44.0,35.0,43.0,46.0,35.0,37.0,37.0,23.0,47.0,24.0,42.0,40.0,43.0,45.0,25.0,33.0,38.0,31.0,42.0,35.0,34.0,28.0,39.0,20.0,22.0,31.0,20.0,16.0,24.0,16.0,17.0,23.0,25.0,18.0,16.0,21.0,17.0,11.0,14.0,8.0,11.0,4.0,9.0,8.0,4.0,1.0,7.0,7.0,1.0,1.0,4.0,3.0,,2.0 P92031,29.0,31.0,26.0,31.0,38.0,26.0,31.0,34.0,33.0,23.0,40.0,22.0,25.0,18.0,21.0,39.0,18.0,27.0,25.0,17.0,25.0,27.0,23.0,25.0,35.0,26.0,18.0,29.0,31.0,35.0,26.0,29.0,39.0,32.0,38.0,43.0,43.0,43.0,51.0,28.0,31.0,48.0,31.0,28.0,30.0,26.0,40.0,21.0,24.0,30.0,27.0,32.0,25.0,22.0,33.0,25.0,36.0,35.0,21.0,29.0,30.0,21.0,18.0,19.0,22.0,21.0,21.0,6.0,20.0,22.0,22.0,20.0,17.0,26.0,21.0,13.0,25.0,26.0,21.0,12.0,10.0,13.0,10.0,15.0,11.0,6.0,3.0,2.0,,2.0,3.0,,,,,3.0 P92033,11.0,23.0,21.0,24.0,24.0,20.0,22.0,25.0,36.0,28.0,21.0,25.0,35.0,26.0,34.0,27.0,21.0,29.0,39.0,25.0,14.0,31.0,20.0,22.0,26.0,20.0,28.0,31.0,29.0,30.0,13.0,42.0,32.0,41.0,38.0,39.0,37.0,35.0,35.0,43.0,30.0,36.0,38.0,52.0,47.0,37.0,25.0,30.0,26.0,34.0,30.0,36.0,26.0,38.0,48.0,44.0,41.0,34.0,39.0,32.0,37.0,36.0,26.0,34.0,31.0,32.0,33.0,31.0,36.0,33.0,26.0,27.0,32.0,26.0,14.0,22.0,20.0,27.0,22.0,21.0,10.0,9.0,14.0,10.0,3.0,9.0,4.0,2.0,3.0,3.0,1.0,4.0,3.0,1.0,,1.0 P92034,19.0,20.0,15.0,13.0,14.0,16.0,28.0,24.0,32.0,30.0,31.0,28.0,35.0,43.0,36.0,34.0,39.0,43.0,32.0,32.0,25.0,29.0,32.0,25.0,27.0,34.0,39.0,39.0,40.0,39.0,38.0,21.0,37.0,36.0,22.0,20.0,45.0,28.0,29.0,42.0,26.0,29.0,37.0,24.0,35.0,29.0,31.0,26.0,33.0,28.0,24.0,33.0,31.0,40.0,47.0,44.0,43.0,49.0,42.0,46.0,53.0,62.0,40.0,43.0,35.0,29.0,39.0,32.0,37.0,36.0,28.0,30.0,44.0,19.0,24.0,30.0,28.0,25.0,32.0,23.0,28.0,18.0,22.0,19.0,16.0,16.0,14.0,12.0,2.0,8.0,2.0,2.0,3.0,,2.0,2.0 P92038,10.0,16.0,14.0,17.0,20.0,17.0,23.0,19.0,16.0,38.0,24.0,14.0,25.0,20.0,19.0,25.0,25.0,13.0,21.0,17.0,22.0,21.0,9.0,22.0,19.0,16.0,19.0,16.0,8.0,16.0,16.0,19.0,18.0,18.0,22.0,21.0,15.0,23.0,18.0,34.0,27.0,20.0,22.0,24.0,31.0,35.0,19.0,15.0,19.0,21.0,27.0,24.0,36.0,26.0,30.0,19.0,23.0,23.0,18.0,23.0,15.0,24.0,21.0,16.0,13.0,20.0,17.0,14.0,11.0,16.0,14.0,13.0,20.0,14.0,14.0,19.0,15.0,18.0,10.0,6.0,15.0,10.0,7.0,4.0,4.0,2.0,7.0,3.0,3.0,,1.0,,,2.0,1.0,1.0 P92041,36.0,49.0,47.0,45.0,34.0,41.0,44.0,55.0,59.0,54.0,48.0,56.0,39.0,57.0,49.0,52.0,58.0,38.0,49.0,38.0,49.0,46.0,45.0,53.0,44.0,63.0,68.0,47.0,56.0,43.0,53.0,51.0,66.0,60.0,65.0,65.0,58.0,54.0,67.0,55.0,57.0,55.0,59.0,67.0,50.0,71.0,48.0,51.0,53.0,59.0,58.0,58.0,67.0,62.0,61.0,62.0,79.0,56.0,66.0,68.0,61.0,48.0,65.0,53.0,54.0,47.0,49.0,40.0,44.0,40.0,44.0,37.0,35.0,30.0,32.0,54.0,32.0,35.0,37.0,31.0,31.0,29.0,22.0,28.0,13.0,14.0,21.0,9.0,9.0,7.0,4.0,5.0,1.0,5.0,5.0,2.0 P92042,37.0,32.0,44.0,41.0,46.0,45.0,39.0,47.0,43.0,58.0,59.0,51.0,45.0,56.0,68.0,59.0,54.0,54.0,49.0,53.0,39.0,45.0,40.0,39.0,56.0,59.0,46.0,44.0,59.0,46.0,59.0,49.0,59.0,58.0,73.0,55.0,55.0,38.0,64.0,54.0,57.0,48.0,49.0,66.0,59.0,52.0,66.0,45.0,64.0,51.0,70.0,49.0,70.0,55.0,66.0,61.0,74.0,84.0,77.0,71.0,68.0,86.0,58.0,65.0,56.0,67.0,74.0,48.0,42.0,53.0,48.0,46.0,44.0,40.0,40.0,46.0,41.0,49.0,51.0,33.0,34.0,29.0,26.0,24.0,28.0,19.0,17.0,10.0,12.0,6.0,8.0,8.0,3.0,3.0,3.0,3.0 P92602,14.0,14.0,10.0,17.0,12.0,11.0,13.0,15.0,13.0,10.0,20.0,15.0,15.0,25.0,12.0,11.0,14.0,18.0,11.0,20.0,11.0,16.0,15.0,19.0,14.0,8.0,15.0,12.0,16.0,20.0,12.0,23.0,19.0,24.0,15.0,23.0,14.0,16.0,21.0,27.0,16.0,27.0,23.0,20.0,19.0,17.0,10.0,8.0,10.0,22.0,18.0,8.0,15.0,24.0,24.0,14.0,23.0,14.0,20.0,19.0,15.0,19.0,19.0,14.0,11.0,12.0,12.0,9.0,19.0,12.0,9.0,10.0,11.0,10.0,8.0,11.0,11.0,13.0,14.0,13.0,10.0,11.0,12.0,8.0,3.0,2.0,2.0,5.0,2.0,2.0,1.0,1.0,3.0,1.0,2.0,1.0 P92605,56.0,63.0,61.0,44.0,60.0,47.0,43.0,42.0,45.0,49.0,56.0,39.0,38.0,46.0,42.0,47.0,51.0,56.0,47.0,35.0,45.0,41.0,42.0,31.0,41.0,36.0,41.0,46.0,43.0,33.0,47.0,76.0,66.0,73.0,79.0,70.0,79.0,77.0,59.0,68.0,51.0,61.0,60.0,62.0,63.0,55.0,53.0,41.0,41.0,50.0,56.0,49.0,54.0,65.0,69.0,41.0,48.0,56.0,48.0,44.0,52.0,47.0,51.0,58.0,48.0,38.0,44.0,32.0,32.0,26.0,26.0,28.0,24.0,25.0,14.0,25.0,22.0,38.0,36.0,16.0,18.0,23.0,14.0,8.0,16.0,12.0,13.0,6.0,5.0,2.0,3.0,2.0,3.0,1.0,2.0,1.0 P92607,27.0,36.0,44.0,34.0,47.0,42.0,46.0,43.0,50.0,35.0,39.0,47.0,43.0,47.0,54.0,45.0,51.0,52.0,42.0,54.0,48.0,32.0,41.0,18.0,40.0,38.0,45.0,47.0,38.0,47.0,42.0,34.0,49.0,58.0,61.0,58.0,48.0,56.0,60.0,52.0,40.0,43.0,54.0,68.0,33.0,55.0,41.0,40.0,33.0,38.0,50.0,49.0,50.0,59.0,70.0,50.0,54.0,67.0,57.0,55.0,58.0,62.0,71.0,67.0,52.0,44.0,38.0,48.0,40.0,38.0,25.0,38.0,36.0,30.0,37.0,42.0,46.0,41.0,34.0,35.0,33.0,33.0,26.0,26.0,24.0,11.0,11.0,11.0,14.0,8.0,4.0,2.0,1.0,3.0,3.0,5.0 P92615,19.0,15.0,18.0,26.0,27.0,21.0,35.0,22.0,22.0,26.0,23.0,36.0,25.0,36.0,32.0,33.0,31.0,27.0,27.0,26.0,18.0,20.0,25.0,24.0,28.0,34.0,28.0,27.0,20.0,26.0,29.0,24.0,31.0,36.0,32.0,30.0,27.0,33.0,30.0,39.0,50.0,35.0,30.0,31.0,42.0,32.0,24.0,33.0,28.0,32.0,27.0,32.0,27.0,32.0,38.0,28.0,29.0,31.0,28.0,29.0,43.0,39.0,42.0,33.0,24.0,33.0,24.0,27.0,23.0,19.0,23.0,20.0,25.0,22.0,22.0,20.0,22.0,22.0,20.0,14.0,12.0,18.0,16.0,14.0,10.0,11.0,5.0,4.0,6.0,2.0,1.0,3.0,2.0,2.0,1.0,2.0 P92620,43.0,40.0,54.0,40.0,64.0,51.0,54.0,54.0,57.0,51.0,64.0,60.0,61.0,62.0,66.0,70.0,69.0,56.0,55.0,61.0,59.0,56.0,44.0,44.0,47.0,48.0,54.0,45.0,61.0,53.0,61.0,63.0,61.0,62.0,66.0,74.0,81.0,69.0,64.0,75.0,71.0,56.0,59.0,56.0,57.0,69.0,60.0,48.0,41.0,49.0,58.0,45.0,40.0,59.0,63.0,58.0,39.0,44.0,60.0,52.0,54.0,41.0,40.0,40.0,46.0,30.0,26.0,34.0,31.0,30.0,32.0,29.0,23.0,20.0,15.0,24.0,23.0,27.0,16.0,17.0,13.0,11.0,6.0,12.0,5.0,15.0,6.0,3.0,2.0,3.0,1.0,3.0,,4.0,1.0,2.0 P92621,12.0,24.0,15.0,18.0,16.0,23.0,24.0,29.0,28.0,31.0,21.0,20.0,28.0,20.0,30.0,30.0,32.0,31.0,26.0,24.0,18.0,20.0,26.0,26.0,19.0,31.0,30.0,38.0,31.0,35.0,19.0,33.0,24.0,28.0,33.0,44.0,44.0,28.0,36.0,28.0,38.0,31.0,35.0,33.0,33.0,30.0,27.0,26.0,23.0,38.0,29.0,35.0,29.0,38.0,28.0,29.0,42.0,51.0,41.0,34.0,38.0,28.0,22.0,23.0,19.0,12.0,30.0,29.0,19.0,27.0,19.0,25.0,23.0,22.0,13.0,20.0,14.0,15.0,20.0,12.0,10.0,12.0,12.0,16.0,7.0,8.0,7.0,1.0,4.0,,,,1.0,1.0,,1.0 P92626,37.0,43.0,27.0,49.0,46.0,39.0,25.0,40.0,38.0,37.0,33.0,34.0,41.0,37.0,50.0,42.0,26.0,46.0,29.0,34.0,39.0,20.0,31.0,24.0,30.0,38.0,38.0,52.0,25.0,36.0,39.0,40.0,50.0,49.0,56.0,53.0,56.0,43.0,50.0,49.0,54.0,38.0,36.0,48.0,41.0,38.0,43.0,22.0,39.0,33.0,20.0,35.0,38.0,44.0,32.0,40.0,53.0,38.0,40.0,41.0,35.0,23.0,28.0,38.0,37.0,30.0,31.0,30.0,25.0,24.0,31.0,38.0,22.0,22.0,29.0,30.0,23.0,22.0,32.0,21.0,16.0,17.0,22.0,26.0,10.0,9.0,16.0,6.0,6.0,9.0,6.0,4.0,2.0,1.0,1.0,4.0 P92630,8.0,10.0,9.0,11.0,19.0,16.0,17.0,13.0,26.0,10.0,15.0,23.0,17.0,23.0,14.0,12.0,11.0,20.0,12.0,11.0,19.0,22.0,12.0,12.0,19.0,23.0,19.0,19.0,19.0,19.0,19.0,22.0,23.0,25.0,29.0,29.0,23.0,19.0,25.0,26.0,34.0,24.0,17.0,31.0,28.0,18.0,28.0,17.0,20.0,10.0,19.0,16.0,19.0,30.0,30.0,25.0,15.0,24.0,18.0,23.0,18.0,20.0,24.0,21.0,23.0,13.0,19.0,17.0,13.0,14.0,7.0,19.0,9.0,16.0,17.0,11.0,18.0,11.0,11.0,8.0,5.0,8.0,8.0,6.0,6.0,9.0,3.0,1.0,2.0,2.0,3.0,,,,, P92633,28.0,31.0,21.0,26.0,23.0,19.0,16.0,17.0,19.0,19.0,22.0,17.0,14.0,25.0,9.0,24.0,19.0,14.0,18.0,11.0,10.0,14.0,21.0,19.0,15.0,21.0,22.0,27.0,23.0,23.0,27.0,40.0,41.0,61.0,28.0,32.0,33.0,32.0,30.0,35.0,30.0,13.0,34.0,26.0,22.0,16.0,14.0,27.0,19.0,13.0,14.0,19.0,20.0,23.0,22.0,26.0,18.0,18.0,22.0,17.0,25.0,28.0,17.0,25.0,20.0,18.0,15.0,11.0,15.0,11.0,7.0,10.0,16.0,10.0,13.0,11.0,16.0,15.0,10.0,10.0,8.0,7.0,6.0,8.0,9.0,1.0,2.0,2.0,3.0,3.0,2.0,3.0,1.0,,,1.0 P92634,28.0,19.0,23.0,27.0,21.0,28.0,18.0,21.0,20.0,28.0,29.0,28.0,27.0,21.0,15.0,28.0,16.0,27.0,29.0,25.0,20.0,21.0,28.0,21.0,31.0,32.0,29.0,28.0,35.0,41.0,55.0,43.0,39.0,55.0,43.0,44.0,52.0,45.0,33.0,52.0,45.0,37.0,29.0,40.0,51.0,34.0,45.0,32.0,32.0,39.0,32.0,32.0,33.0,37.0,30.0,40.0,48.0,29.0,42.0,29.0,41.0,43.0,25.0,45.0,39.0,40.0,41.0,27.0,28.0,24.0,25.0,12.0,24.0,26.0,16.0,20.0,25.0,25.0,14.0,14.0,20.0,10.0,15.0,5.0,8.0,7.0,5.0,10.0,5.0,8.0,6.0,2.0,5.0,,1.0,4.0 P92635,4.0,4.0,5.0,10.0,8.0,12.0,11.0,7.0,6.0,6.0,15.0,10.0,7.0,10.0,11.0,12.0,7.0,12.0,11.0,14.0,10.0,6.0,14.0,11.0,11.0,16.0,11.0,9.0,16.0,10.0,14.0,25.0,23.0,7.0,21.0,16.0,15.0,18.0,17.0,15.0,20.0,18.0,16.0,10.0,15.0,17.0,14.0,13.0,6.0,8.0,15.0,18.0,15.0,10.0,21.0,16.0,22.0,11.0,17.0,25.0,12.0,23.0,16.0,21.0,14.0,12.0,10.0,14.0,14.0,13.0,7.0,12.0,7.0,11.0,11.0,13.0,14.0,17.0,14.0,6.0,5.0,15.0,8.0,3.0,7.0,2.0,3.0,1.0,1.0,3.0,,,,2.0,1.0, P92637,29.0,27.0,28.0,37.0,20.0,36.0,23.0,28.0,30.0,29.0,27.0,26.0,28.0,27.0,21.0,23.0,21.0,16.0,26.0,22.0,22.0,29.0,21.0,17.0,21.0,24.0,20.0,22.0,22.0,22.0,32.0,32.0,40.0,48.0,31.0,38.0,30.0,44.0,34.0,37.0,28.0,35.0,26.0,36.0,25.0,30.0,29.0,17.0,22.0,27.0,21.0,15.0,24.0,31.0,33.0,23.0,30.0,25.0,25.0,32.0,28.0,27.0,19.0,30.0,19.0,25.0,16.0,23.0,15.0,21.0,15.0,9.0,14.0,5.0,13.0,7.0,16.0,10.0,8.0,8.0,9.0,4.0,2.0,3.0,4.0,6.0,5.0,4.0,2.0,3.0,3.0,,1.0,,1.0,1.0 P92639,12.0,8.0,20.0,11.0,19.0,21.0,20.0,20.0,26.0,22.0,25.0,18.0,18.0,28.0,26.0,17.0,21.0,25.0,19.0,27.0,18.0,13.0,13.0,9.0,16.0,21.0,12.0,19.0,16.0,18.0,18.0,16.0,22.0,17.0,14.0,16.0,24.0,24.0,22.0,21.0,16.0,15.0,24.0,36.0,27.0,29.0,24.0,24.0,17.0,19.0,31.0,25.0,17.0,22.0,21.0,27.0,16.0,25.0,21.0,29.0,21.0,22.0,21.0,18.0,23.0,19.0,13.0,16.0,8.0,9.0,9.0,11.0,12.0,13.0,12.0,15.0,11.0,9.0,13.0,11.0,14.0,11.0,8.0,7.0,3.0,8.0,3.0,7.0,5.0,2.0,,1.0,,,,2.0 P92642,16.0,19.0,28.0,31.0,23.0,30.0,20.0,29.0,35.0,37.0,27.0,26.0,22.0,37.0,44.0,36.0,25.0,24.0,28.0,21.0,29.0,34.0,25.0,23.0,29.0,38.0,30.0,39.0,32.0,33.0,36.0,33.0,40.0,37.0,53.0,42.0,37.0,34.0,37.0,33.0,52.0,29.0,44.0,34.0,29.0,30.0,24.0,25.0,26.0,33.0,35.0,39.0,28.0,31.0,41.0,35.0,44.0,51.0,41.0,30.0,45.0,40.0,22.0,23.0,35.0,23.0,29.0,25.0,16.0,24.0,25.0,33.0,25.0,28.0,20.0,26.0,30.0,30.0,23.0,14.0,22.0,13.0,7.0,6.0,9.0,8.0,10.0,8.0,3.0,3.0,1.0,3.0,2.0,3.0,2.0, P92646,22.0,20.0,18.0,17.0,25.0,16.0,25.0,23.0,28.0,23.0,17.0,24.0,24.0,18.0,28.0,20.0,26.0,23.0,26.0,20.0,16.0,18.0,13.0,11.0,17.0,10.0,15.0,17.0,18.0,18.0,21.0,19.0,16.0,17.0,19.0,27.0,18.0,26.0,35.0,30.0,20.0,33.0,20.0,26.0,27.0,26.0,22.0,21.0,19.0,20.0,18.0,19.0,25.0,33.0,34.0,25.0,28.0,17.0,36.0,27.0,17.0,17.0,17.0,15.0,16.0,22.0,21.0,22.0,19.0,24.0,10.0,24.0,23.0,17.0,16.0,14.0,19.0,20.0,16.0,15.0,5.0,15.0,16.0,9.0,6.0,7.0,4.0,3.0,4.0,3.0,1.0,1.0,,1.0,, P92647,21.0,24.0,27.0,24.0,28.0,41.0,32.0,27.0,42.0,39.0,34.0,40.0,41.0,42.0,35.0,39.0,35.0,46.0,33.0,27.0,33.0,30.0,36.0,23.0,32.0,40.0,32.0,36.0,33.0,38.0,46.0,46.0,38.0,36.0,47.0,37.0,35.0,51.0,47.0,42.0,37.0,45.0,51.0,45.0,47.0,27.0,41.0,28.0,42.0,35.0,26.0,42.0,39.0,51.0,58.0,66.0,64.0,43.0,48.0,50.0,44.0,46.0,42.0,44.0,50.0,40.0,31.0,31.0,34.0,31.0,30.0,31.0,33.0,22.0,36.0,32.0,31.0,35.0,42.0,30.0,25.0,18.0,17.0,15.0,6.0,10.0,11.0,8.0,6.0,3.0,3.0,4.0,1.0,3.0,1.0,4.0 P92648,35.0,43.0,55.0,45.0,27.0,39.0,30.0,32.0,30.0,41.0,29.0,34.0,26.0,40.0,33.0,29.0,19.0,28.0,31.0,19.0,28.0,23.0,18.0,24.0,22.0,27.0,23.0,36.0,32.0,34.0,29.0,44.0,52.0,49.0,53.0,48.0,30.0,45.0,46.0,40.0,41.0,46.0,37.0,46.0,38.0,30.0,37.0,42.0,33.0,39.0,37.0,36.0,26.0,38.0,34.0,43.0,40.0,35.0,46.0,32.0,41.0,46.0,35.0,36.0,36.0,31.0,25.0,25.0,20.0,27.0,27.0,24.0,13.0,19.0,30.0,21.0,18.0,26.0,33.0,23.0,17.0,15.0,18.0,18.0,6.0,9.0,7.0,4.0,7.0,4.0,3.0,2.0,3.0,1.0,, P92651,36.0,45.0,35.0,34.0,36.0,24.0,45.0,27.0,23.0,41.0,29.0,39.0,29.0,37.0,38.0,47.0,36.0,38.0,19.0,34.0,29.0,20.0,36.0,42.0,23.0,26.0,44.0,40.0,36.0,38.0,39.0,50.0,55.0,40.0,50.0,46.0,50.0,43.0,44.0,45.0,39.0,33.0,52.0,36.0,27.0,28.0,34.0,33.0,34.0,29.0,49.0,31.0,23.0,35.0,38.0,56.0,39.0,28.0,50.0,45.0,35.0,29.0,44.0,48.0,38.0,30.0,26.0,31.0,25.0,26.0,23.0,24.0,21.0,30.0,25.0,11.0,21.0,31.0,16.0,15.0,14.0,13.0,14.0,6.0,5.0,8.0,10.0,6.0,9.0,3.0,7.0,3.0,2.0,,1.0,3.0 Y00050,31.0,42.0,43.0,55.0,46.0,61.0,35.0,57.0,46.0,42.0,45.0,46.0,54.0,53.0,52.0,39.0,42.0,53.0,34.0,36.0,35.0,47.0,39.0,50.0,48.0,40.0,55.0,48.0,43.0,55.0,57.0,55.0,63.0,59.0,66.0,67.0,56.0,69.0,51.0,61.0,49.0,46.0,46.0,49.0,53.0,43.0,52.0,48.0,29.0,32.0,56.0,42.0,41.0,83.0,53.0,49.0,48.0,52.0,59.0,42.0,32.0,44.0,42.0,32.0,33.0,24.0,29.0,21.0,35.0,28.0,32.0,24.0,28.0,23.0,21.0,24.0,14.0,21.0,33.0,23.0,16.0,24.0,17.0,13.0,13.0,8.0,6.0,6.0,2.0,6.0,,3.0,,1.0,, Y00186,11.0,11.0,16.0,10.0,18.0,19.0,10.0,13.0,15.0,13.0,13.0,20.0,18.0,18.0,14.0,16.0,19.0,21.0,16.0,18.0,26.0,19.0,23.0,20.0,19.0,20.0,20.0,23.0,14.0,22.0,18.0,23.0,22.0,22.0,26.0,24.0,27.0,11.0,18.0,13.0,16.0,14.0,12.0,11.0,10.0,11.0,10.0,10.0,9.0,11.0,10.0,11.0,15.0,9.0,6.0,10.0,4.0,6.0,7.0,6.0,9.0,3.0,6.0,3.0,5.0,2.0,5.0,4.0,8.0,7.0,1.0,4.0,3.0,,1.0,3.0,2.0,1.0,1.0,,1.0,1.0,,1.0,1.0,1.0,1.0,,,,,,,,, Y00445,101.0,93.0,128.0,92.0,147.0,151.0,137.0,155.0,165.0,136.0,173.0,161.0,172.0,159.0,146.0,160.0,147.0,141.0,155.0,128.0,114.0,106.0,112.0,116.0,141.0,134.0,162.0,174.0,161.0,193.0,201.0,205.0,236.0,210.0,222.0,237.0,221.0,225.0,203.0,202.0,206.0,174.0,167.0,140.0,166.0,169.0,141.0,130.0,118.0,133.0,128.0,107.0,122.0,126.0,127.0,93.0,120.0,120.0,107.0,109.0,103.0,88.0,93.0,79.0,80.0,68.0,60.0,67.0,64.0,52.0,44.0,54.0,43.0,38.0,37.0,48.0,31.0,37.0,31.0,30.0,13.0,20.0,16.0,8.0,14.0,15.0,13.0,5.0,3.0,7.0,5.0,4.0,2.0,5.0,2.0,2.0 Y00726,34.0,38.0,26.0,43.0,46.0,58.0,33.0,40.0,44.0,37.0,49.0,42.0,46.0,45.0,34.0,45.0,37.0,33.0,29.0,32.0,28.0,21.0,23.0,31.0,20.0,34.0,25.0,40.0,27.0,23.0,26.0,37.0,59.0,36.0,54.0,37.0,52.0,48.0,35.0,41.0,61.0,35.0,49.0,48.0,41.0,42.0,37.0,31.0,37.0,30.0,23.0,33.0,32.0,31.0,32.0,36.0,39.0,36.0,41.0,29.0,35.0,36.0,30.0,25.0,22.0,21.0,30.0,26.0,27.0,19.0,32.0,15.0,19.0,22.0,16.0,19.0,15.0,13.0,14.0,8.0,16.0,15.0,4.0,6.0,12.0,8.0,3.0,5.0,6.0,1.0,2.0,1.0,4.0,,1.0,1.0 Y01695,17.0,21.0,26.0,28.0,28.0,30.0,26.0,31.0,25.0,29.0,18.0,19.0,32.0,27.0,28.0,22.0,39.0,23.0,19.0,23.0,20.0,31.0,27.0,33.0,41.0,42.0,40.0,43.0,64.0,56.0,57.0,44.0,58.0,39.0,48.0,41.0,47.0,55.0,30.0,50.0,41.0,41.0,24.0,26.0,38.0,39.0,24.0,29.0,37.0,27.0,23.0,32.0,19.0,20.0,20.0,21.0,31.0,27.0,14.0,22.0,21.0,21.0,30.0,20.0,19.0,11.0,12.0,11.0,13.0,6.0,8.0,7.0,8.0,9.0,8.0,5.0,5.0,7.0,6.0,4.0,1.0,2.0,2.0,2.0,3.0,,1.0,,1.0,,,,,,1.0,1.0 Y02274,18.0,25.0,18.0,24.0,22.0,22.0,27.0,27.0,26.0,33.0,39.0,40.0,33.0,52.0,41.0,40.0,41.0,37.0,39.0,26.0,31.0,18.0,19.0,26.0,28.0,16.0,16.0,27.0,26.0,23.0,32.0,20.0,30.0,32.0,25.0,35.0,45.0,35.0,49.0,36.0,34.0,39.0,29.0,24.0,34.0,43.0,35.0,28.0,16.0,19.0,23.0,20.0,33.0,24.0,18.0,17.0,30.0,30.0,24.0,16.0,20.0,14.0,20.0,18.0,13.0,13.0,16.0,12.0,14.0,11.0,10.0,8.0,8.0,,8.0,2.0,4.0,4.0,2.0,4.0,2.0,5.0,1.0,3.0,1.0,1.0,,1.0,2.0,,,,,,, Y02319,64.0,70.0,71.0,58.0,48.0,57.0,45.0,62.0,73.0,72.0,70.0,49.0,69.0,65.0,63.0,56.0,52.0,53.0,66.0,56.0,56.0,57.0,66.0,87.0,77.0,84.0,82.0,112.0,111.0,123.0,135.0,120.0,100.0,105.0,109.0,104.0,69.0,105.0,97.0,91.0,82.0,72.0,63.0,63.0,62.0,63.0,55.0,48.0,28.0,47.0,52.0,47.0,41.0,34.0,24.0,27.0,33.0,27.0,27.0,23.0,20.0,17.0,13.0,19.0,17.0,10.0,7.0,14.0,9.0,11.0,12.0,11.0,6.0,4.0,1.0,5.0,2.0,4.0,4.0,1.0,,1.0,3.0,,,,,,,,1.0,,,,, Y02321,38.0,48.0,44.0,33.0,46.0,32.0,42.0,52.0,53.0,41.0,48.0,51.0,58.0,38.0,51.0,39.0,42.0,30.0,35.0,36.0,29.0,23.0,23.0,25.0,26.0,28.0,30.0,22.0,36.0,45.0,34.0,42.0,48.0,47.0,52.0,42.0,43.0,50.0,45.0,49.0,62.0,43.0,37.0,44.0,30.0,46.0,37.0,36.0,38.0,39.0,30.0,29.0,41.0,47.0,38.0,29.0,43.0,35.0,27.0,33.0,30.0,33.0,30.0,31.0,23.0,25.0,31.0,18.0,19.0,9.0,16.0,19.0,11.0,21.0,15.0,21.0,17.0,19.0,22.0,15.0,15.0,7.0,9.0,2.0,13.0,8.0,4.0,2.0,1.0,2.0,2.0,2.0,,1.0,, Y02322,72.0,64.0,81.0,70.0,52.0,82.0,76.0,69.0,69.0,72.0,80.0,67.0,58.0,70.0,70.0,64.0,58.0,53.0,47.0,49.0,54.0,50.0,49.0,56.0,61.0,65.0,60.0,71.0,70.0,72.0,81.0,79.0,80.0,85.0,92.0,83.0,86.0,86.0,101.0,84.0,78.0,104.0,77.0,89.0,64.0,60.0,58.0,50.0,52.0,51.0,46.0,46.0,43.0,73.0,51.0,67.0,66.0,64.0,49.0,51.0,60.0,52.0,49.0,44.0,48.0,29.0,32.0,44.0,34.0,24.0,21.0,34.0,30.0,19.0,28.0,26.0,25.0,32.0,18.0,19.0,15.0,15.0,22.0,16.0,10.0,5.0,6.0,5.0,6.0,5.0,7.0,1.0,4.0,1.0,1.0,2.0 Y02325,26.0,28.0,42.0,37.0,30.0,42.0,50.0,46.0,50.0,58.0,62.0,59.0,48.0,57.0,65.0,47.0,67.0,50.0,37.0,41.0,37.0,42.0,35.0,31.0,25.0,33.0,36.0,26.0,45.0,31.0,30.0,38.0,40.0,43.0,38.0,45.0,38.0,46.0,38.0,46.0,54.0,54.0,51.0,42.0,59.0,43.0,53.0,37.0,27.0,40.0,44.0,38.0,34.0,34.0,33.0,29.0,30.0,25.0,35.0,28.0,33.0,25.0,21.0,13.0,15.0,14.0,12.0,10.0,10.0,5.0,12.0,7.0,12.0,3.0,10.0,7.0,6.0,4.0,6.0,4.0,4.0,4.0,3.0,3.0,1.0,3.0,1.0,2.0,1.0,,,,,,1.0, Y02378,26.0,26.0,28.0,24.0,21.0,33.0,25.0,32.0,33.0,48.0,49.0,47.0,45.0,45.0,45.0,44.0,38.0,46.0,37.0,42.0,30.0,39.0,28.0,39.0,42.0,29.0,41.0,40.0,39.0,41.0,32.0,41.0,38.0,47.0,50.0,41.0,36.0,45.0,38.0,40.0,31.0,43.0,54.0,42.0,50.0,49.0,40.0,29.0,35.0,46.0,35.0,44.0,40.0,51.0,45.0,50.0,55.0,50.0,39.0,36.0,54.0,44.0,43.0,42.0,39.0,38.0,42.0,32.0,27.0,34.0,37.0,32.0,18.0,34.0,28.0,23.0,29.0,26.0,25.0,21.0,14.0,17.0,23.0,19.0,12.0,9.0,6.0,4.0,5.0,7.0,5.0,2.0,1.0,,,1.0 Y02520,22.0,37.0,45.0,44.0,30.0,45.0,49.0,44.0,53.0,43.0,60.0,63.0,63.0,62.0,61.0,69.0,67.0,40.0,55.0,47.0,40.0,37.0,40.0,39.0,36.0,34.0,28.0,25.0,29.0,35.0,36.0,33.0,40.0,38.0,30.0,43.0,48.0,36.0,37.0,43.0,26.0,47.0,43.0,43.0,48.0,35.0,42.0,39.0,41.0,38.0,40.0,29.0,28.0,25.0,33.0,24.0,26.0,22.0,35.0,39.0,25.0,17.0,19.0,16.0,18.0,14.0,8.0,14.0,9.0,16.0,6.0,7.0,10.0,1.0,3.0,4.0,1.0,8.0,8.0,1.0,3.0,2.0,1.0,3.0,3.0,5.0,,3.0,2.0,2.0,1.0,,1.0,,, Y02586,40.0,50.0,42.0,52.0,40.0,56.0,47.0,42.0,59.0,48.0,57.0,46.0,45.0,48.0,41.0,38.0,44.0,45.0,43.0,33.0,21.0,32.0,34.0,35.0,50.0,40.0,40.0,56.0,47.0,36.0,49.0,50.0,54.0,66.0,71.0,47.0,52.0,54.0,50.0,46.0,33.0,49.0,50.0,27.0,49.0,40.0,49.0,34.0,31.0,37.0,31.0,23.0,37.0,26.0,32.0,22.0,23.0,37.0,30.0,25.0,19.0,14.0,19.0,14.0,20.0,15.0,12.0,14.0,10.0,7.0,8.0,8.0,9.0,5.0,5.0,5.0,3.0,7.0,6.0,3.0,,1.0,4.0,1.0,,1.0,1.0,3.0,,1.0,1.0,,,1.0,,2.0 Y02622,42.0,28.0,51.0,36.0,34.0,34.0,31.0,30.0,25.0,37.0,24.0,24.0,30.0,17.0,22.0,12.0,9.0,15.0,24.0,37.0,30.0,68.0,138.0,199.0,261.0,367.0,391.0,454.0,429.0,448.0,428.0,408.0,392.0,335.0,367.0,291.0,279.0,259.0,217.0,229.0,194.0,171.0,165.0,158.0,123.0,101.0,89.0,68.0,62.0,59.0,56.0,41.0,49.0,46.0,43.0,33.0,36.0,27.0,32.0,24.0,30.0,19.0,19.0,26.0,13.0,9.0,12.0,17.0,8.0,15.0,10.0,8.0,5.0,5.0,4.0,10.0,5.0,5.0,2.0,,,,1.0,,,1.0,,,,1.0,,,,,, Y02625,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,,,,,,1.0,,1.0,,,,2.0,2.0,1.0,,1.0,2.0,,2.0,,,2.0,4.0,4.0,3.0,4.0,2.0,3.0,2.0,,5.0,7.0,8.0,12.0,5.0,4.0,17.0,7.0,8.0,10.0,16.0,8.0,3.0,12.0,17.0,15.0,21.0,27.0,18.0,22.0,21.0,14.0,17.0,14.0,20.0,17.0,19.0,25.0,19.0,11.0,9.0,8.0,10.0,7.0,10.0 Y02663,28.0,21.0,26.0,28.0,27.0,24.0,34.0,38.0,37.0,37.0,36.0,36.0,38.0,41.0,43.0,40.0,35.0,34.0,34.0,21.0,25.0,18.0,16.0,24.0,22.0,22.0,24.0,22.0,32.0,34.0,29.0,32.0,41.0,37.0,31.0,42.0,31.0,38.0,34.0,45.0,31.0,40.0,50.0,29.0,34.0,37.0,29.0,25.0,16.0,26.0,19.0,21.0,15.0,20.0,18.0,22.0,21.0,20.0,20.0,25.0,24.0,20.0,13.0,21.0,13.0,22.0,15.0,21.0,9.0,17.0,9.0,12.0,13.0,10.0,9.0,13.0,6.0,11.0,7.0,2.0,13.0,6.0,5.0,5.0,1.0,5.0,4.0,3.0,,2.0,1.0,,2.0,,, Y02713,26.0,27.0,32.0,34.0,40.0,41.0,39.0,38.0,37.0,34.0,32.0,38.0,37.0,44.0,37.0,36.0,35.0,30.0,27.0,25.0,25.0,26.0,17.0,30.0,24.0,25.0,35.0,25.0,27.0,34.0,33.0,33.0,44.0,33.0,46.0,43.0,43.0,46.0,36.0,62.0,43.0,42.0,43.0,37.0,34.0,32.0,45.0,26.0,43.0,28.0,25.0,29.0,32.0,38.0,29.0,32.0,22.0,29.0,15.0,24.0,24.0,18.0,15.0,15.0,32.0,15.0,25.0,13.0,18.0,8.0,10.0,22.0,15.0,15.0,12.0,9.0,7.0,8.0,7.0,7.0,6.0,7.0,5.0,6.0,5.0,2.0,,2.0,1.0,1.0,1.0,4.0,2.0,1.0,1.0,1.0 Y02718,38.0,29.0,32.0,35.0,31.0,37.0,44.0,31.0,31.0,33.0,37.0,28.0,48.0,34.0,25.0,29.0,22.0,29.0,27.0,19.0,25.0,28.0,22.0,23.0,32.0,15.0,30.0,17.0,32.0,19.0,33.0,30.0,36.0,44.0,33.0,34.0,37.0,38.0,29.0,30.0,34.0,24.0,32.0,37.0,35.0,26.0,20.0,26.0,30.0,24.0,22.0,14.0,32.0,23.0,26.0,24.0,26.0,19.0,20.0,27.0,27.0,32.0,17.0,18.0,16.0,20.0,21.0,14.0,19.0,14.0,13.0,10.0,10.0,22.0,16.0,12.0,9.0,13.0,16.0,10.0,7.0,9.0,6.0,4.0,9.0,5.0,5.0,2.0,2.0,3.0,2.0,2.0,,,,1.0 Y02720,43.0,54.0,21.0,36.0,41.0,30.0,43.0,38.0,38.0,48.0,21.0,34.0,36.0,38.0,43.0,30.0,44.0,35.0,41.0,35.0,32.0,24.0,29.0,33.0,44.0,34.0,26.0,25.0,38.0,41.0,46.0,45.0,31.0,55.0,37.0,47.0,34.0,38.0,23.0,27.0,38.0,26.0,32.0,31.0,31.0,33.0,39.0,32.0,21.0,26.0,24.0,31.0,24.0,30.0,20.0,30.0,24.0,20.0,18.0,20.0,23.0,19.0,9.0,14.0,10.0,13.0,14.0,10.0,6.0,9.0,6.0,14.0,7.0,9.0,1.0,6.0,5.0,4.0,3.0,3.0,2.0,3.0,3.0,2.0,,3.0,3.0,1.0,2.0,1.0,,,,,,2.0 Y02721,45.0,39.0,49.0,44.0,50.0,48.0,48.0,46.0,50.0,56.0,48.0,38.0,43.0,50.0,45.0,43.0,36.0,43.0,32.0,29.0,28.0,27.0,32.0,24.0,23.0,22.0,26.0,35.0,29.0,40.0,35.0,32.0,38.0,35.0,42.0,39.0,41.0,40.0,50.0,39.0,34.0,44.0,36.0,39.0,44.0,37.0,40.0,30.0,29.0,22.0,24.0,21.0,37.0,26.0,33.0,25.0,24.0,22.0,27.0,29.0,19.0,18.0,13.0,12.0,16.0,15.0,11.0,9.0,10.0,6.0,6.0,9.0,6.0,5.0,10.0,11.0,5.0,10.0,5.0,3.0,3.0,1.0,2.0,,2.0,2.0,1.0,1.0,3.0,2.0,,1.0,,,,1.0 Y02753,34.0,48.0,50.0,38.0,45.0,42.0,63.0,49.0,61.0,59.0,52.0,56.0,57.0,64.0,58.0,65.0,49.0,56.0,50.0,36.0,41.0,35.0,41.0,38.0,44.0,36.0,36.0,38.0,32.0,31.0,44.0,52.0,36.0,49.0,41.0,46.0,59.0,44.0,49.0,45.0,47.0,42.0,46.0,53.0,42.0,33.0,25.0,24.0,23.0,21.0,29.0,34.0,26.0,28.0,30.0,33.0,28.0,33.0,25.0,26.0,20.0,28.0,30.0,17.0,24.0,32.0,17.0,20.0,12.0,18.0,13.0,14.0,11.0,9.0,9.0,15.0,8.0,8.0,13.0,4.0,3.0,4.0,4.0,2.0,6.0,4.0,2.0,2.0,4.0,,,6.0,,,,1.0 Y02755,72.0,55.0,86.0,85.0,78.0,91.0,115.0,69.0,95.0,102.0,96.0,86.0,92.0,87.0,76.0,75.0,68.0,69.0,60.0,51.0,50.0,63.0,56.0,39.0,56.0,53.0,58.0,61.0,73.0,64.0,103.0,87.0,100.0,111.0,118.0,95.0,107.0,112.0,130.0,111.0,127.0,122.0,93.0,105.0,95.0,67.0,73.0,77.0,65.0,63.0,73.0,64.0,58.0,71.0,62.0,51.0,49.0,66.0,54.0,53.0,32.0,54.0,39.0,29.0,29.0,25.0,21.0,21.0,26.0,25.0,22.0,17.0,17.0,17.0,13.0,9.0,11.0,12.0,11.0,6.0,7.0,4.0,4.0,6.0,2.0,7.0,5.0,2.0,1.0,1.0,,1.0,,,, Y02767,50.0,47.0,55.0,46.0,46.0,53.0,45.0,47.0,58.0,53.0,53.0,41.0,40.0,44.0,42.0,46.0,31.0,35.0,36.0,30.0,30.0,28.0,35.0,29.0,37.0,42.0,56.0,48.0,70.0,55.0,64.0,70.0,70.0,80.0,84.0,82.0,73.0,85.0,73.0,67.0,67.0,67.0,65.0,55.0,53.0,54.0,52.0,38.0,44.0,32.0,40.0,38.0,30.0,51.0,33.0,36.0,38.0,32.0,31.0,24.0,25.0,18.0,20.0,24.0,18.0,12.0,22.0,19.0,14.0,14.0,12.0,8.0,13.0,13.0,12.0,8.0,12.0,7.0,11.0,9.0,4.0,7.0,1.0,8.0,6.0,3.0,3.0,2.0,1.0,2.0,4.0,1.0,1.0,1.0,,1.0 Y02790,56.0,54.0,61.0,64.0,79.0,67.0,76.0,62.0,76.0,81.0,82.0,67.0,74.0,74.0,65.0,80.0,73.0,71.0,59.0,57.0,55.0,61.0,52.0,62.0,68.0,64.0,67.0,77.0,82.0,71.0,71.0,76.0,96.0,81.0,71.0,60.0,63.0,69.0,79.0,59.0,60.0,66.0,45.0,44.0,54.0,49.0,31.0,41.0,39.0,38.0,40.0,49.0,31.0,43.0,38.0,27.0,27.0,27.0,23.0,22.0,23.0,30.0,19.0,26.0,22.0,20.0,24.0,18.0,25.0,15.0,15.0,18.0,8.0,12.0,8.0,4.0,8.0,12.0,7.0,6.0,3.0,2.0,1.0,1.0,5.0,4.0,5.0,2.0,,4.0,2.0,,1.0,2.0,3.0, Y02795,31.0,39.0,40.0,38.0,39.0,36.0,40.0,39.0,37.0,47.0,33.0,29.0,35.0,42.0,44.0,41.0,30.0,25.0,29.0,33.0,23.0,19.0,17.0,31.0,30.0,24.0,39.0,30.0,29.0,40.0,35.0,44.0,48.0,56.0,53.0,52.0,55.0,49.0,45.0,48.0,55.0,44.0,47.0,53.0,54.0,44.0,41.0,33.0,25.0,34.0,37.0,35.0,37.0,26.0,26.0,32.0,26.0,44.0,25.0,20.0,29.0,22.0,16.0,21.0,16.0,12.0,12.0,22.0,17.0,12.0,14.0,13.0,8.0,7.0,8.0,5.0,6.0,8.0,4.0,9.0,6.0,5.0,1.0,3.0,1.0,2.0,,2.0,1.0,1.0,1.0,,1.0,,,2.0 Y02827,40.0,48.0,45.0,44.0,41.0,34.0,37.0,34.0,36.0,37.0,41.0,44.0,36.0,36.0,44.0,48.0,42.0,50.0,36.0,42.0,52.0,43.0,51.0,54.0,65.0,60.0,53.0,62.0,67.0,52.0,47.0,50.0,61.0,54.0,45.0,49.0,46.0,45.0,43.0,53.0,44.0,40.0,28.0,38.0,37.0,38.0,38.0,36.0,37.0,31.0,29.0,28.0,24.0,20.0,26.0,26.0,27.0,13.0,19.0,18.0,21.0,17.0,13.0,17.0,10.0,10.0,11.0,11.0,10.0,7.0,3.0,7.0,6.0,3.0,9.0,1.0,5.0,5.0,2.0,2.0,2.0,5.0,3.0,2.0,2.0,2.0,,1.0,,2.0,,,,,, Y02849,42.0,32.0,36.0,33.0,17.0,30.0,23.0,37.0,31.0,28.0,36.0,24.0,22.0,21.0,19.0,16.0,28.0,33.0,80.0,115.0,134.0,133.0,195.0,244.0,329.0,383.0,416.0,410.0,423.0,399.0,410.0,389.0,411.0,345.0,327.0,336.0,314.0,303.0,266.0,206.0,210.0,178.0,178.0,144.0,148.0,115.0,90.0,73.0,61.0,78.0,53.0,52.0,42.0,45.0,26.0,44.0,26.0,16.0,23.0,29.0,19.0,15.0,18.0,10.0,15.0,21.0,9.0,12.0,13.0,11.0,9.0,8.0,7.0,3.0,7.0,3.0,3.0,5.0,4.0,2.0,3.0,,1.0,1.0,1.0,,1.0,2.0,1.0,1.0,,,,,, Y02875,39.0,38.0,33.0,33.0,41.0,43.0,27.0,38.0,42.0,46.0,41.0,54.0,48.0,47.0,40.0,42.0,48.0,31.0,41.0,42.0,37.0,32.0,43.0,35.0,38.0,45.0,48.0,36.0,36.0,37.0,35.0,35.0,55.0,42.0,51.0,60.0,54.0,51.0,50.0,46.0,51.0,36.0,43.0,45.0,45.0,47.0,41.0,38.0,43.0,31.0,21.0,31.0,28.0,32.0,33.0,29.0,34.0,26.0,17.0,16.0,21.0,17.0,16.0,15.0,7.0,15.0,11.0,14.0,14.0,7.0,11.0,11.0,4.0,8.0,8.0,4.0,4.0,10.0,8.0,5.0,2.0,,2.0,3.0,,,4.0,,,,2.0,1.0,,,1.0, Y02885,30.0,33.0,23.0,35.0,28.0,26.0,30.0,44.0,38.0,36.0,41.0,51.0,34.0,36.0,41.0,34.0,28.0,28.0,26.0,29.0,28.0,29.0,30.0,30.0,25.0,30.0,35.0,34.0,31.0,31.0,25.0,41.0,31.0,26.0,41.0,44.0,49.0,39.0,53.0,37.0,42.0,37.0,35.0,28.0,29.0,38.0,17.0,26.0,15.0,29.0,23.0,21.0,17.0,28.0,14.0,14.0,21.0,19.0,19.0,20.0,23.0,18.0,21.0,14.0,11.0,13.0,2.0,6.0,10.0,8.0,6.0,5.0,6.0,6.0,6.0,4.0,9.0,1.0,7.0,7.0,4.0,1.0,4.0,,1.0,1.0,1.0,,1.0,1.0,,,1.0,,, Y02886,22.0,25.0,17.0,23.0,32.0,20.0,36.0,28.0,40.0,44.0,39.0,37.0,41.0,30.0,31.0,23.0,31.0,30.0,20.0,22.0,23.0,16.0,17.0,28.0,21.0,21.0,29.0,35.0,29.0,40.0,31.0,29.0,34.0,45.0,31.0,39.0,42.0,40.0,41.0,41.0,39.0,45.0,38.0,37.0,38.0,33.0,34.0,26.0,36.0,40.0,37.0,28.0,37.0,38.0,36.0,31.0,33.0,34.0,27.0,32.0,31.0,24.0,23.0,15.0,21.0,21.0,13.0,12.0,19.0,10.0,12.0,12.0,13.0,11.0,13.0,15.0,17.0,10.0,10.0,15.0,7.0,4.0,5.0,6.0,6.0,2.0,3.0,1.0,,1.0,2.0,1.0,1.0,2.0,,1.0 Y02890,38.0,41.0,40.0,43.0,29.0,43.0,46.0,37.0,43.0,49.0,44.0,32.0,44.0,37.0,40.0,48.0,43.0,33.0,54.0,91.0,117.0,115.0,107.0,116.0,102.0,115.0,117.0,119.0,82.0,104.0,87.0,85.0,69.0,70.0,86.0,84.0,66.0,77.0,75.0,92.0,73.0,76.0,60.0,46.0,51.0,42.0,49.0,52.0,48.0,42.0,32.0,41.0,27.0,29.0,32.0,16.0,23.0,23.0,17.0,16.0,26.0,17.0,16.0,16.0,11.0,16.0,15.0,8.0,8.0,20.0,9.0,3.0,6.0,4.0,4.0,8.0,8.0,2.0,8.0,5.0,2.0,1.0,2.0,2.0,1.0,3.0,2.0,2.0,1.0,,,2.0,,,, Y02933,57.0,67.0,60.0,76.0,71.0,86.0,64.0,86.0,82.0,74.0,64.0,57.0,71.0,76.0,80.0,64.0,62.0,82.0,58.0,64.0,65.0,51.0,52.0,44.0,49.0,49.0,65.0,60.0,63.0,57.0,68.0,72.0,68.0,67.0,77.0,67.0,72.0,76.0,58.0,74.0,62.0,47.0,52.0,67.0,55.0,67.0,55.0,43.0,43.0,41.0,43.0,50.0,52.0,42.0,50.0,49.0,45.0,46.0,37.0,41.0,41.0,34.0,38.0,25.0,33.0,27.0,26.0,24.0,21.0,24.0,18.0,28.0,17.0,19.0,26.0,21.0,12.0,22.0,16.0,14.0,10.0,5.0,8.0,8.0,4.0,6.0,8.0,7.0,1.0,,4.0,3.0,,1.0,,1.0 Y02936,19.0,26.0,21.0,23.0,23.0,30.0,35.0,34.0,34.0,39.0,29.0,33.0,30.0,33.0,38.0,28.0,17.0,21.0,29.0,19.0,22.0,14.0,22.0,13.0,13.0,12.0,16.0,21.0,23.0,24.0,22.0,24.0,25.0,22.0,27.0,30.0,23.0,24.0,20.0,41.0,30.0,27.0,29.0,32.0,29.0,46.0,26.0,26.0,17.0,27.0,18.0,26.0,27.0,25.0,26.0,26.0,34.0,18.0,34.0,19.0,12.0,19.0,26.0,14.0,13.0,14.0,12.0,11.0,12.0,13.0,9.0,5.0,8.0,8.0,5.0,12.0,6.0,12.0,8.0,4.0,5.0,2.0,1.0,3.0,1.0,2.0,,2.0,3.0,2.0,1.0,,1.0,,, Y02960,48.0,54.0,43.0,51.0,46.0,43.0,50.0,50.0,50.0,42.0,55.0,45.0,38.0,50.0,49.0,49.0,42.0,52.0,52.0,45.0,53.0,50.0,54.0,56.0,56.0,62.0,74.0,85.0,77.0,94.0,89.0,99.0,90.0,94.0,84.0,83.0,95.0,89.0,92.0,92.0,79.0,75.0,63.0,65.0,64.0,58.0,61.0,50.0,46.0,47.0,45.0,43.0,32.0,31.0,36.0,31.0,36.0,37.0,17.0,22.0,15.0,12.0,26.0,22.0,9.0,12.0,12.0,11.0,15.0,9.0,6.0,12.0,9.0,3.0,7.0,7.0,2.0,5.0,6.0,2.0,3.0,2.0,,1.0,1.0,3.0,2.0,2.0,,1.0,1.0,,,,, Y03079,88.0,97.0,115.0,107.0,81.0,108.0,102.0,106.0,112.0,104.0,113.0,118.0,106.0,95.0,102.0,123.0,106.0,108.0,85.0,96.0,83.0,97.0,82.0,95.0,96.0,103.0,111.0,102.0,98.0,110.0,101.0,126.0,133.0,125.0,134.0,122.0,124.0,130.0,129.0,129.0,133.0,121.0,102.0,86.0,110.0,121.0,96.0,104.0,101.0,79.0,84.0,108.0,85.0,116.0,102.0,99.0,104.0,90.0,83.0,92.0,94.0,90.0,83.0,89.0,91.0,74.0,75.0,68.0,72.0,53.0,60.0,55.0,64.0,66.0,50.0,64.0,45.0,71.0,61.0,42.0,42.0,40.0,30.0,32.0,12.0,25.0,26.0,14.0,12.0,8.0,9.0,7.0,4.0,3.0,1.0,4.0 Y03366,38.0,47.0,59.0,49.0,36.0,40.0,40.0,48.0,51.0,62.0,52.0,59.0,62.0,48.0,44.0,49.0,56.0,46.0,46.0,56.0,55.0,44.0,39.0,39.0,43.0,57.0,52.0,58.0,54.0,43.0,45.0,46.0,46.0,42.0,44.0,43.0,56.0,53.0,38.0,51.0,48.0,53.0,46.0,44.0,48.0,46.0,41.0,44.0,47.0,37.0,37.0,27.0,27.0,24.0,32.0,21.0,24.0,25.0,25.0,24.0,27.0,20.0,21.0,16.0,19.0,14.0,12.0,19.0,8.0,11.0,12.0,9.0,12.0,8.0,10.0,13.0,3.0,8.0,4.0,7.0,1.0,3.0,6.0,3.0,5.0,,,5.0,2.0,,1.0,1.0,2.0,,,1.0 Y07697,,,,,,,,,,,,,,,,,,,1.0,,1.0,,,,,,,1.0,2.0,1.0,2.0,2.0,2.0,2.0,,2.0,1.0,1.0,5.0,2.0,1.0,1.0,1.0,,4.0,1.0,1.0,4.0,2.0,2.0,1.0,1.0,,4.0,1.0,1.0,,1.0,1.0,,2.0,,1.0,,,1.0,,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 B81003,42.0,46.0,55.0,44.0,53.0,67.0,64.0,68.0,69.0,68.0,77.0,75.0,78.0,69.0,91.0,75.0,82.0,85.0,66.0,64.0,55.0,61.0,59.0,59.0,56.0,76.0,66.0,64.0,83.0,67.0,79.0,59.0,84.0,73.0,81.0,72.0,91.0,65.0,71.0,73.0,78.0,67.0,82.0,65.0,58.0,66.0,65.0,64.0,66.0,71.0,79.0,72.0,79.0,79.0,87.0,94.0,69.0,88.0,78.0,74.0,103.0,108.0,107.0,101.0,95.0,77.0,85.0,77.0,73.0,73.0,70.0,75.0,77.0,70.0,83.0,61.0,80.0,85.0,78.0,58.0,57.0,45.0,47.0,37.0,39.0,32.0,34.0,31.0,26.0,16.0,15.0,18.0,11.0,4.0,2.0,11.0 B81004,26.0,32.0,28.0,51.0,34.0,43.0,49.0,62.0,54.0,59.0,55.0,71.0,50.0,73.0,59.0,45.0,73.0,65.0,66.0,56.0,52.0,63.0,56.0,67.0,56.0,48.0,40.0,51.0,48.0,44.0,59.0,57.0,49.0,51.0,38.0,48.0,57.0,48.0,68.0,65.0,66.0,55.0,48.0,52.0,55.0,50.0,59.0,53.0,71.0,60.0,65.0,58.0,76.0,83.0,91.0,89.0,85.0,84.0,99.0,85.0,106.0,95.0,121.0,109.0,120.0,119.0,103.0,101.0,103.0,99.0,105.0,111.0,97.0,98.0,98.0,103.0,106.0,122.0,132.0,91.0,61.0,66.0,51.0,41.0,45.0,49.0,39.0,22.0,24.0,18.0,9.0,18.0,8.0,7.0,8.0,6.0 B81005,53.0,69.0,71.0,70.0,77.0,85.0,55.0,72.0,92.0,77.0,88.0,83.0,100.0,92.0,95.0,93.0,130.0,92.0,96.0,80.0,87.0,79.0,74.0,65.0,102.0,99.0,70.0,71.0,96.0,91.0,85.0,79.0,101.0,100.0,108.0,107.0,99.0,95.0,102.0,91.0,96.0,101.0,106.0,81.0,102.0,100.0,94.0,110.0,85.0,99.0,99.0,98.0,99.0,127.0,153.0,138.0,151.0,134.0,125.0,143.0,145.0,134.0,147.0,142.0,122.0,122.0,113.0,108.0,111.0,107.0,95.0,115.0,90.0,87.0,88.0,95.0,97.0,100.0,106.0,75.0,78.0,79.0,56.0,49.0,38.0,34.0,26.0,32.0,34.0,23.0,21.0,13.0,11.0,5.0,4.0,6.0 B81006,36.0,35.0,51.0,40.0,35.0,47.0,54.0,60.0,64.0,71.0,59.0,69.0,68.0,62.0,77.0,77.0,67.0,68.0,58.0,66.0,59.0,63.0,61.0,53.0,60.0,40.0,64.0,58.0,58.0,55.0,65.0,48.0,82.0,72.0,57.0,65.0,55.0,65.0,67.0,66.0,56.0,57.0,53.0,57.0,63.0,60.0,55.0,55.0,63.0,54.0,64.0,63.0,72.0,78.0,82.0,73.0,84.0,99.0,89.0,102.0,96.0,114.0,104.0,94.0,106.0,97.0,98.0,96.0,95.0,102.0,87.0,97.0,79.0,91.0,82.0,94.0,84.0,114.0,101.0,84.0,89.0,70.0,72.0,50.0,45.0,39.0,30.0,37.0,32.0,26.0,15.0,21.0,11.0,9.0,2.0,17.0 B81007,28.0,30.0,38.0,32.0,25.0,35.0,37.0,40.0,44.0,40.0,54.0,45.0,50.0,46.0,52.0,59.0,60.0,60.0,47.0,52.0,53.0,55.0,47.0,48.0,47.0,48.0,42.0,59.0,44.0,42.0,50.0,52.0,70.0,58.0,54.0,58.0,57.0,54.0,45.0,51.0,60.0,63.0,65.0,44.0,57.0,38.0,40.0,45.0,50.0,46.0,55.0,54.0,60.0,58.0,73.0,73.0,85.0,82.0,82.0,90.0,91.0,71.0,93.0,84.0,84.0,83.0,77.0,66.0,66.0,65.0,52.0,68.0,61.0,51.0,55.0,64.0,58.0,78.0,75.0,50.0,56.0,38.0,34.0,29.0,30.0,30.0,22.0,21.0,13.0,10.0,11.0,8.0,9.0,3.0,2.0,4.0 B81008,167.0,237.0,219.0,215.0,247.0,208.0,251.0,247.0,273.0,246.0,250.0,250.0,297.0,221.0,230.0,233.0,238.0,246.0,222.0,199.0,195.0,219.0,198.0,241.0,217.0,233.0,228.0,243.0,261.0,220.0,263.0,273.0,264.0,294.0,297.0,295.0,310.0,291.0,334.0,312.0,266.0,285.0,265.0,273.0,256.0,222.0,217.0,227.0,212.0,255.0,237.0,236.0,227.0,279.0,252.0,255.0,260.0,260.0,251.0,232.0,242.0,225.0,251.0,231.0,241.0,212.0,245.0,225.0,214.0,183.0,192.0,152.0,184.0,165.0,140.0,143.0,159.0,162.0,147.0,90.0,107.0,74.0,67.0,53.0,40.0,46.0,46.0,41.0,30.0,28.0,11.0,17.0,9.0,10.0,11.0,10.0 B81009,31.0,39.0,39.0,39.0,61.0,43.0,55.0,50.0,52.0,40.0,53.0,35.0,61.0,41.0,68.0,53.0,52.0,59.0,55.0,54.0,27.0,55.0,33.0,55.0,37.0,46.0,42.0,43.0,41.0,51.0,45.0,50.0,66.0,55.0,61.0,63.0,59.0,57.0,62.0,50.0,50.0,60.0,50.0,49.0,57.0,53.0,53.0,58.0,58.0,54.0,41.0,56.0,66.0,84.0,49.0,59.0,73.0,61.0,65.0,68.0,65.0,52.0,67.0,70.0,64.0,56.0,59.0,56.0,51.0,55.0,44.0,48.0,33.0,35.0,60.0,50.0,57.0,80.0,65.0,43.0,26.0,23.0,23.0,28.0,12.0,18.0,27.0,14.0,15.0,9.0,11.0,8.0,4.0,3.0,3.0,8.0 B81011,45.0,47.0,51.0,55.0,50.0,63.0,66.0,63.0,72.0,57.0,66.0,84.0,68.0,70.0,70.0,64.0,62.0,55.0,49.0,60.0,48.0,56.0,44.0,53.0,58.0,59.0,71.0,68.0,82.0,67.0,60.0,85.0,81.0,76.0,77.0,78.0,83.0,91.0,79.0,80.0,70.0,68.0,69.0,60.0,70.0,59.0,66.0,47.0,59.0,62.0,60.0,64.0,74.0,79.0,68.0,75.0,69.0,49.0,91.0,67.0,64.0,69.0,77.0,86.0,59.0,72.0,63.0,61.0,46.0,62.0,49.0,41.0,31.0,38.0,34.0,44.0,37.0,44.0,46.0,32.0,28.0,25.0,18.0,20.0,18.0,17.0,8.0,14.0,11.0,6.0,6.0,5.0,6.0,3.0,3.0,5.0 B81012,16.0,15.0,13.0,10.0,11.0,20.0,16.0,12.0,14.0,21.0,22.0,24.0,15.0,21.0,22.0,26.0,18.0,18.0,17.0,18.0,15.0,9.0,22.0,21.0,16.0,23.0,20.0,18.0,27.0,19.0,26.0,29.0,24.0,28.0,33.0,37.0,28.0,30.0,27.0,18.0,24.0,22.0,13.0,25.0,24.0,15.0,20.0,16.0,13.0,18.0,20.0,22.0,26.0,21.0,19.0,25.0,35.0,34.0,28.0,25.0,25.0,29.0,27.0,39.0,23.0,18.0,26.0,17.0,24.0,16.0,20.0,23.0,23.0,12.0,18.0,14.0,12.0,10.0,14.0,12.0,8.0,7.0,6.0,10.0,8.0,6.0,6.0,6.0,1.0,3.0,1.0,3.0,3.0,3.0,,3.0 B81013,34.0,43.0,38.0,33.0,39.0,56.0,50.0,50.0,44.0,47.0,56.0,60.0,60.0,69.0,70.0,62.0,61.0,54.0,58.0,52.0,49.0,51.0,40.0,55.0,65.0,70.0,46.0,60.0,65.0,66.0,69.0,79.0,85.0,64.0,76.0,93.0,74.0,87.0,84.0,84.0,82.0,73.0,71.0,82.0,77.0,68.0,60.0,53.0,55.0,68.0,65.0,54.0,55.0,72.0,56.0,61.0,54.0,57.0,54.0,67.0,46.0,70.0,61.0,51.0,39.0,58.0,47.0,47.0,25.0,30.0,32.0,27.0,35.0,28.0,25.0,29.0,27.0,36.0,29.0,31.0,25.0,29.0,14.0,14.0,17.0,10.0,5.0,9.0,8.0,6.0,6.0,4.0,9.0,8.0,1.0,8.0 B81015,59.0,71.0,69.0,82.0,76.0,91.0,77.0,101.0,79.0,88.0,113.0,80.0,97.0,124.0,102.0,105.0,109.0,89.0,122.0,95.0,91.0,85.0,92.0,100.0,100.0,95.0,93.0,100.0,87.0,118.0,109.0,112.0,116.0,148.0,145.0,119.0,135.0,116.0,136.0,110.0,104.0,109.0,108.0,87.0,132.0,113.0,109.0,93.0,94.0,99.0,96.0,122.0,107.0,117.0,113.0,134.0,121.0,117.0,125.0,130.0,125.0,127.0,120.0,119.0,108.0,102.0,112.0,105.0,88.0,78.0,96.0,90.0,81.0,84.0,74.0,86.0,81.0,87.0,89.0,50.0,47.0,51.0,45.0,37.0,31.0,31.0,31.0,26.0,16.0,12.0,16.0,15.0,7.0,8.0,7.0,6.0 B81016,38.0,53.0,56.0,48.0,66.0,56.0,71.0,71.0,73.0,62.0,64.0,65.0,66.0,64.0,72.0,72.0,62.0,55.0,72.0,66.0,59.0,65.0,66.0,64.0,61.0,57.0,65.0,72.0,71.0,71.0,67.0,66.0,76.0,71.0,70.0,84.0,92.0,81.0,77.0,78.0,78.0,58.0,68.0,68.0,63.0,67.0,59.0,48.0,55.0,67.0,71.0,65.0,50.0,61.0,77.0,68.0,55.0,79.0,69.0,56.0,55.0,69.0,53.0,54.0,53.0,51.0,49.0,53.0,53.0,36.0,41.0,40.0,38.0,39.0,42.0,42.0,45.0,43.0,31.0,16.0,31.0,14.0,19.0,9.0,12.0,8.0,10.0,3.0,8.0,9.0,6.0,6.0,7.0,3.0,3.0,4.0 B81017,85.0,107.0,100.0,106.0,80.0,97.0,97.0,85.0,106.0,100.0,105.0,82.0,105.0,80.0,78.0,103.0,75.0,89.0,105.0,95.0,134.0,102.0,134.0,190.0,182.0,222.0,222.0,244.0,250.0,262.0,251.0,232.0,245.0,245.0,243.0,227.0,247.0,235.0,209.0,228.0,258.0,239.0,196.0,196.0,207.0,177.0,162.0,173.0,176.0,177.0,148.0,115.0,135.0,147.0,117.0,115.0,122.0,95.0,105.0,87.0,103.0,91.0,80.0,86.0,77.0,73.0,59.0,57.0,55.0,50.0,44.0,39.0,35.0,35.0,39.0,38.0,29.0,27.0,30.0,29.0,10.0,18.0,15.0,8.0,8.0,8.0,15.0,9.0,5.0,5.0,4.0,4.0,1.0,1.0,1.0,3.0 B81018,46.0,38.0,49.0,47.0,71.0,64.0,62.0,64.0,75.0,70.0,61.0,78.0,74.0,64.0,77.0,80.0,79.0,75.0,62.0,67.0,56.0,63.0,55.0,64.0,61.0,50.0,67.0,53.0,49.0,66.0,63.0,82.0,76.0,67.0,63.0,66.0,69.0,75.0,60.0,83.0,66.0,79.0,48.0,57.0,67.0,39.0,53.0,60.0,53.0,56.0,52.0,58.0,47.0,52.0,57.0,49.0,61.0,52.0,56.0,52.0,50.0,68.0,57.0,70.0,49.0,56.0,45.0,42.0,41.0,38.0,23.0,46.0,41.0,27.0,37.0,25.0,18.0,31.0,38.0,17.0,21.0,17.0,15.0,7.0,10.0,13.0,12.0,10.0,7.0,9.0,5.0,3.0,,,, B81020,29.0,33.0,46.0,35.0,42.0,37.0,34.0,40.0,36.0,54.0,43.0,52.0,56.0,57.0,47.0,50.0,73.0,55.0,49.0,39.0,43.0,37.0,37.0,35.0,45.0,44.0,56.0,35.0,36.0,60.0,39.0,49.0,46.0,52.0,46.0,47.0,49.0,52.0,47.0,49.0,52.0,56.0,44.0,49.0,43.0,52.0,50.0,29.0,30.0,47.0,61.0,42.0,48.0,54.0,81.0,72.0,57.0,57.0,58.0,66.0,67.0,40.0,53.0,62.0,60.0,47.0,50.0,53.0,49.0,34.0,45.0,44.0,25.0,52.0,46.0,47.0,40.0,40.0,46.0,29.0,32.0,19.0,20.0,18.0,16.0,17.0,9.0,9.0,7.0,6.0,10.0,5.0,8.0,5.0,4.0,3.0 B81022,33.0,43.0,42.0,52.0,64.0,59.0,54.0,44.0,55.0,55.0,56.0,78.0,90.0,86.0,75.0,82.0,74.0,74.0,72.0,72.0,66.0,69.0,63.0,51.0,72.0,59.0,67.0,65.0,68.0,71.0,73.0,77.0,66.0,72.0,67.0,84.0,65.0,79.0,72.0,68.0,75.0,63.0,81.0,79.0,64.0,64.0,78.0,66.0,67.0,72.0,69.0,68.0,78.0,69.0,90.0,101.0,98.0,100.0,90.0,97.0,98.0,101.0,106.0,83.0,97.0,94.0,86.0,97.0,81.0,89.0,63.0,66.0,72.0,88.0,59.0,72.0,71.0,73.0,69.0,58.0,58.0,45.0,46.0,36.0,26.0,35.0,38.0,28.0,24.0,16.0,16.0,11.0,15.0,8.0,4.0,15.0 B81024,38.0,47.0,51.0,48.0,43.0,55.0,49.0,39.0,51.0,51.0,52.0,68.0,64.0,53.0,81.0,67.0,58.0,58.0,63.0,47.0,55.0,41.0,47.0,40.0,45.0,48.0,42.0,57.0,51.0,52.0,42.0,58.0,54.0,62.0,66.0,44.0,52.0,45.0,59.0,48.0,56.0,63.0,66.0,56.0,45.0,50.0,62.0,64.0,71.0,65.0,61.0,58.0,72.0,78.0,81.0,60.0,66.0,70.0,93.0,71.0,82.0,80.0,88.0,67.0,75.0,63.0,82.0,67.0,65.0,63.0,68.0,80.0,74.0,74.0,61.0,73.0,70.0,67.0,82.0,48.0,60.0,45.0,37.0,35.0,33.0,39.0,34.0,26.0,28.0,28.0,13.0,17.0,15.0,10.0,2.0,13.0 B81025,103.0,112.0,111.0,114.0,134.0,137.0,167.0,155.0,166.0,166.0,176.0,195.0,220.0,186.0,194.0,200.0,171.0,173.0,172.0,171.0,155.0,150.0,140.0,143.0,130.0,159.0,184.0,141.0,146.0,172.0,161.0,160.0,164.0,189.0,178.0,169.0,167.0,179.0,179.0,177.0,167.0,191.0,174.0,187.0,167.0,199.0,169.0,185.0,181.0,173.0,211.0,220.0,217.0,220.0,252.0,228.0,243.0,256.0,239.0,276.0,264.0,303.0,260.0,263.0,270.0,276.0,261.0,298.0,247.0,286.0,224.0,239.0,224.0,235.0,267.0,251.0,239.0,247.0,256.0,167.0,148.0,146.0,136.0,106.0,89.0,99.0,80.0,70.0,69.0,43.0,30.0,31.0,28.0,20.0,15.0,22.0 B81026,84.0,114.0,104.0,130.0,118.0,121.0,109.0,108.0,121.0,118.0,110.0,126.0,136.0,138.0,122.0,138.0,134.0,136.0,142.0,146.0,127.0,110.0,124.0,103.0,118.0,133.0,126.0,136.0,129.0,158.0,161.0,151.0,171.0,173.0,175.0,183.0,190.0,177.0,180.0,183.0,221.0,177.0,147.0,149.0,181.0,165.0,144.0,124.0,126.0,131.0,139.0,125.0,136.0,112.0,150.0,152.0,130.0,132.0,135.0,146.0,123.0,129.0,132.0,108.0,113.0,102.0,118.0,113.0,86.0,72.0,92.0,88.0,84.0,79.0,74.0,74.0,77.0,65.0,73.0,44.0,54.0,52.0,33.0,30.0,29.0,31.0,14.0,21.0,16.0,12.0,16.0,11.0,7.0,2.0,2.0,5.0 B81027,35.0,39.0,28.0,33.0,39.0,52.0,42.0,42.0,55.0,54.0,49.0,56.0,46.0,54.0,48.0,63.0,64.0,69.0,49.0,47.0,46.0,52.0,42.0,48.0,34.0,38.0,46.0,45.0,72.0,64.0,60.0,59.0,61.0,69.0,67.0,65.0,72.0,56.0,73.0,66.0,64.0,59.0,60.0,57.0,51.0,55.0,55.0,52.0,43.0,56.0,42.0,53.0,48.0,61.0,49.0,48.0,49.0,51.0,68.0,58.0,56.0,61.0,54.0,67.0,53.0,56.0,45.0,44.0,47.0,33.0,27.0,39.0,34.0,34.0,24.0,23.0,27.0,35.0,23.0,17.0,16.0,16.0,19.0,11.0,9.0,5.0,13.0,11.0,8.0,8.0,10.0,6.0,3.0,1.0,1.0,4.0 B81029,42.0,40.0,66.0,62.0,58.0,63.0,53.0,58.0,63.0,66.0,62.0,59.0,56.0,63.0,70.0,76.0,63.0,71.0,65.0,75.0,62.0,54.0,62.0,68.0,50.0,53.0,58.0,56.0,52.0,57.0,62.0,70.0,64.0,76.0,67.0,65.0,74.0,66.0,67.0,58.0,77.0,81.0,58.0,67.0,81.0,68.0,60.0,68.0,68.0,66.0,75.0,79.0,82.0,81.0,104.0,104.0,100.0,97.0,116.0,98.0,105.0,86.0,88.0,82.0,80.0,79.0,71.0,69.0,74.0,80.0,60.0,68.0,68.0,65.0,71.0,64.0,67.0,62.0,71.0,48.0,44.0,38.0,31.0,26.0,23.0,20.0,22.0,22.0,14.0,11.0,7.0,10.0,5.0,1.0,2.0, B81030,84.0,105.0,105.0,97.0,105.0,109.0,110.0,132.0,143.0,123.0,124.0,150.0,155.0,157.0,141.0,139.0,123.0,127.0,151.0,129.0,147.0,106.0,109.0,99.0,97.0,119.0,123.0,94.0,137.0,105.0,122.0,124.0,153.0,139.0,165.0,156.0,163.0,133.0,145.0,145.0,143.0,141.0,138.0,147.0,126.0,123.0,116.0,113.0,129.0,140.0,134.0,149.0,167.0,185.0,161.0,163.0,173.0,154.0,186.0,193.0,187.0,163.0,183.0,226.0,176.0,170.0,147.0,157.0,152.0,149.0,138.0,138.0,118.0,130.0,131.0,129.0,133.0,148.0,168.0,105.0,97.0,101.0,96.0,92.0,68.0,58.0,60.0,63.0,46.0,43.0,39.0,28.0,19.0,17.0,12.0,16.0 B81031,74.0,66.0,94.0,85.0,86.0,107.0,101.0,120.0,138.0,139.0,138.0,117.0,128.0,138.0,132.0,136.0,122.0,154.0,138.0,133.0,109.0,125.0,122.0,82.0,103.0,114.0,129.0,117.0,115.0,115.0,104.0,117.0,123.0,149.0,128.0,139.0,143.0,154.0,146.0,141.0,163.0,126.0,125.0,156.0,132.0,129.0,116.0,102.0,87.0,116.0,129.0,125.0,126.0,155.0,148.0,144.0,149.0,148.0,167.0,168.0,157.0,162.0,159.0,154.0,154.0,164.0,142.0,130.0,145.0,101.0,117.0,112.0,115.0,98.0,105.0,93.0,90.0,89.0,108.0,78.0,76.0,49.0,55.0,36.0,45.0,34.0,32.0,32.0,24.0,23.0,27.0,19.0,11.0,6.0,3.0,6.0 B81032,35.0,38.0,35.0,36.0,24.0,31.0,33.0,22.0,19.0,27.0,20.0,20.0,19.0,21.0,24.0,22.0,16.0,23.0,25.0,22.0,28.0,34.0,27.0,46.0,35.0,57.0,71.0,70.0,63.0,88.0,72.0,102.0,87.0,71.0,65.0,78.0,68.0,61.0,55.0,66.0,55.0,49.0,42.0,50.0,44.0,58.0,60.0,46.0,52.0,51.0,50.0,55.0,40.0,41.0,49.0,42.0,26.0,27.0,32.0,42.0,37.0,30.0,18.0,22.0,31.0,25.0,19.0,20.0,15.0,18.0,20.0,18.0,5.0,13.0,7.0,9.0,10.0,5.0,13.0,9.0,5.0,3.0,1.0,1.0,4.0,4.0,2.0,2.0,1.0,1.0,1.0,,1.0,,,1.0 B81034,48.0,41.0,36.0,47.0,39.0,48.0,52.0,44.0,57.0,51.0,61.0,62.0,67.0,56.0,50.0,54.0,51.0,61.0,74.0,50.0,48.0,48.0,55.0,33.0,45.0,42.0,43.0,41.0,54.0,59.0,52.0,56.0,50.0,49.0,51.0,49.0,61.0,52.0,67.0,64.0,48.0,41.0,43.0,54.0,53.0,58.0,54.0,50.0,50.0,55.0,65.0,56.0,91.0,85.0,78.0,83.0,82.0,112.0,89.0,84.0,116.0,78.0,103.0,111.0,117.0,103.0,115.0,79.0,101.0,81.0,95.0,102.0,91.0,79.0,99.0,74.0,81.0,91.0,103.0,84.0,80.0,54.0,55.0,44.0,28.0,40.0,31.0,25.0,22.0,15.0,14.0,11.0,15.0,5.0,4.0,5.0 B81035,42.0,32.0,25.0,43.0,43.0,34.0,45.0,24.0,55.0,29.0,32.0,28.0,52.0,34.0,37.0,39.0,39.0,33.0,38.0,37.0,46.0,35.0,28.0,22.0,40.0,52.0,37.0,45.0,45.0,47.0,57.0,60.0,65.0,65.0,75.0,66.0,63.0,65.0,56.0,54.0,51.0,49.0,32.0,59.0,55.0,40.0,46.0,37.0,34.0,39.0,48.0,44.0,43.0,51.0,57.0,53.0,50.0,45.0,51.0,49.0,51.0,48.0,47.0,41.0,41.0,35.0,43.0,46.0,39.0,38.0,37.0,31.0,35.0,28.0,36.0,30.0,33.0,33.0,31.0,19.0,18.0,15.0,16.0,11.0,6.0,9.0,13.0,11.0,9.0,12.0,5.0,,5.0,4.0,5.0,2.0 B81036,84.0,81.0,81.0,96.0,81.0,101.0,92.0,97.0,83.0,78.0,95.0,96.0,99.0,84.0,110.0,119.0,113.0,101.0,110.0,90.0,87.0,72.0,57.0,80.0,89.0,98.0,99.0,99.0,98.0,101.0,124.0,133.0,113.0,114.0,123.0,120.0,104.0,140.0,124.0,114.0,117.0,109.0,105.0,101.0,107.0,119.0,95.0,82.0,82.0,107.0,106.0,128.0,99.0,120.0,117.0,130.0,136.0,151.0,130.0,143.0,131.0,158.0,136.0,153.0,118.0,128.0,110.0,116.0,105.0,99.0,124.0,116.0,104.0,106.0,117.0,95.0,115.0,109.0,132.0,70.0,74.0,77.0,80.0,67.0,36.0,32.0,42.0,29.0,31.0,22.0,10.0,15.0,7.0,11.0,9.0,12.0 B81037,36.0,54.0,58.0,76.0,58.0,74.0,74.0,73.0,65.0,66.0,73.0,66.0,70.0,74.0,70.0,84.0,76.0,88.0,72.0,68.0,62.0,69.0,63.0,61.0,51.0,61.0,68.0,58.0,57.0,62.0,77.0,75.0,74.0,73.0,74.0,69.0,59.0,75.0,70.0,72.0,67.0,71.0,84.0,84.0,69.0,74.0,69.0,66.0,62.0,79.0,84.0,71.0,85.0,99.0,107.0,119.0,97.0,125.0,134.0,96.0,122.0,130.0,145.0,125.0,117.0,129.0,85.0,91.0,94.0,87.0,106.0,110.0,98.0,100.0,95.0,101.0,116.0,94.0,105.0,75.0,86.0,83.0,57.0,50.0,44.0,36.0,38.0,35.0,32.0,20.0,19.0,10.0,9.0,6.0,6.0,7.0 B81038,33.0,50.0,47.0,46.0,34.0,40.0,44.0,55.0,39.0,48.0,60.0,42.0,56.0,60.0,42.0,58.0,52.0,55.0,35.0,53.0,40.0,41.0,37.0,40.0,45.0,46.0,36.0,52.0,63.0,51.0,54.0,49.0,52.0,66.0,51.0,64.0,49.0,54.0,48.0,58.0,54.0,47.0,47.0,55.0,48.0,50.0,51.0,40.0,48.0,50.0,43.0,45.0,50.0,53.0,51.0,48.0,50.0,51.0,39.0,46.0,59.0,61.0,50.0,63.0,53.0,52.0,54.0,40.0,47.0,41.0,40.0,47.0,40.0,41.0,30.0,36.0,31.0,55.0,39.0,33.0,22.0,24.0,22.0,14.0,13.0,23.0,11.0,14.0,8.0,10.0,12.0,6.0,6.0,1.0,4.0,1.0 B81039,162.0,187.0,172.0,193.0,180.0,219.0,187.0,188.0,211.0,215.0,207.0,221.0,203.0,246.0,229.0,225.0,239.0,209.0,186.0,190.0,187.0,174.0,165.0,150.0,183.0,197.0,195.0,190.0,219.0,200.0,237.0,261.0,218.0,237.0,239.0,250.0,272.0,266.0,246.0,260.0,236.0,221.0,227.0,231.0,240.0,214.0,206.0,212.0,180.0,225.0,202.0,203.0,215.0,254.0,235.0,253.0,242.0,246.0,264.0,216.0,262.0,239.0,257.0,225.0,258.0,225.0,189.0,208.0,191.0,204.0,173.0,165.0,168.0,166.0,145.0,171.0,140.0,149.0,160.0,110.0,113.0,106.0,92.0,84.0,64.0,64.0,53.0,46.0,48.0,32.0,23.0,28.0,19.0,7.0,12.0,26.0 B81040,90.0,97.0,108.0,103.0,111.0,92.0,99.0,105.0,126.0,113.0,120.0,119.0,124.0,120.0,108.0,102.0,100.0,121.0,117.0,90.0,84.0,91.0,77.0,85.0,72.0,77.0,91.0,94.0,111.0,101.0,116.0,117.0,120.0,137.0,138.0,130.0,136.0,123.0,126.0,122.0,113.0,105.0,108.0,100.0,98.0,96.0,89.0,95.0,80.0,105.0,62.0,87.0,94.0,91.0,100.0,92.0,97.0,102.0,93.0,114.0,107.0,95.0,103.0,93.0,88.0,84.0,88.0,95.0,74.0,66.0,83.0,62.0,50.0,57.0,63.0,43.0,63.0,51.0,55.0,35.0,39.0,30.0,20.0,21.0,22.0,17.0,20.0,11.0,6.0,8.0,4.0,9.0,3.0,6.0,1.0,2.0 B81041,20.0,18.0,28.0,17.0,27.0,17.0,36.0,26.0,22.0,42.0,32.0,32.0,28.0,38.0,41.0,24.0,38.0,35.0,37.0,27.0,30.0,35.0,25.0,31.0,41.0,24.0,26.0,33.0,45.0,35.0,22.0,37.0,47.0,28.0,34.0,35.0,29.0,40.0,31.0,46.0,42.0,35.0,27.0,35.0,40.0,28.0,29.0,24.0,27.0,30.0,48.0,43.0,32.0,49.0,55.0,53.0,53.0,36.0,45.0,59.0,49.0,46.0,53.0,39.0,46.0,47.0,50.0,40.0,42.0,38.0,40.0,42.0,39.0,46.0,34.0,48.0,38.0,40.0,47.0,25.0,25.0,30.0,22.0,17.0,18.0,13.0,11.0,6.0,12.0,14.0,4.0,4.0,2.0,,1.0,4.0 B81042,74.0,59.0,55.0,53.0,68.0,72.0,59.0,64.0,75.0,76.0,74.0,62.0,62.0,59.0,58.0,67.0,74.0,64.0,70.0,69.0,67.0,46.0,56.0,70.0,53.0,56.0,57.0,67.0,62.0,57.0,69.0,75.0,60.0,87.0,71.0,84.0,73.0,86.0,65.0,72.0,67.0,73.0,75.0,69.0,79.0,75.0,71.0,67.0,72.0,72.0,73.0,71.0,81.0,88.0,107.0,104.0,100.0,95.0,82.0,107.0,104.0,94.0,100.0,99.0,109.0,95.0,99.0,88.0,79.0,88.0,99.0,91.0,89.0,72.0,77.0,82.0,78.0,81.0,116.0,66.0,65.0,56.0,42.0,39.0,40.0,37.0,29.0,30.0,23.0,24.0,13.0,13.0,7.0,8.0,10.0,11.0 B81043,38.0,53.0,54.0,54.0,59.0,58.0,77.0,67.0,79.0,69.0,82.0,72.0,76.0,99.0,83.0,84.0,97.0,81.0,80.0,73.0,76.0,60.0,63.0,65.0,65.0,68.0,72.0,67.0,62.0,77.0,68.0,67.0,73.0,83.0,75.0,71.0,76.0,76.0,68.0,69.0,64.0,76.0,75.0,74.0,84.0,85.0,70.0,63.0,79.0,82.0,87.0,84.0,119.0,100.0,109.0,121.0,117.0,100.0,122.0,123.0,174.0,133.0,134.0,130.0,122.0,104.0,134.0,106.0,123.0,100.0,102.0,86.0,89.0,114.0,97.0,107.0,102.0,100.0,108.0,69.0,79.0,74.0,59.0,50.0,48.0,32.0,24.0,30.0,19.0,20.0,21.0,14.0,10.0,8.0,2.0,13.0 B81045,57.0,51.0,48.0,61.0,54.0,56.0,45.0,63.0,73.0,76.0,75.0,90.0,63.0,79.0,76.0,94.0,86.0,80.0,92.0,73.0,80.0,71.0,83.0,69.0,55.0,55.0,69.0,75.0,74.0,87.0,82.0,59.0,85.0,88.0,76.0,82.0,77.0,87.0,87.0,76.0,80.0,70.0,82.0,82.0,84.0,67.0,72.0,54.0,71.0,60.0,81.0,74.0,87.0,85.0,91.0,82.0,87.0,107.0,85.0,74.0,98.0,82.0,89.0,87.0,88.0,81.0,75.0,65.0,66.0,70.0,72.0,54.0,56.0,67.0,55.0,72.0,65.0,65.0,63.0,41.0,45.0,34.0,31.0,39.0,26.0,18.0,21.0,12.0,11.0,6.0,9.0,3.0,6.0,7.0,3.0,8.0 B81046,37.0,49.0,49.0,58.0,37.0,46.0,47.0,68.0,69.0,68.0,74.0,69.0,66.0,76.0,77.0,64.0,72.0,63.0,65.0,55.0,65.0,41.0,60.0,54.0,48.0,46.0,65.0,51.0,57.0,54.0,64.0,56.0,55.0,65.0,65.0,64.0,72.0,68.0,58.0,65.0,73.0,88.0,40.0,62.0,61.0,50.0,61.0,40.0,50.0,52.0,57.0,41.0,51.0,46.0,51.0,51.0,56.0,64.0,61.0,69.0,68.0,57.0,56.0,56.0,44.0,56.0,52.0,46.0,58.0,40.0,46.0,42.0,28.0,29.0,34.0,27.0,25.0,30.0,38.0,11.0,14.0,17.0,10.0,10.0,7.0,12.0,16.0,8.0,5.0,7.0,6.0,3.0,3.0,2.0,,1.0 B81047,41.0,32.0,40.0,49.0,48.0,43.0,42.0,43.0,38.0,44.0,42.0,41.0,45.0,44.0,32.0,43.0,45.0,47.0,46.0,29.0,30.0,39.0,34.0,35.0,45.0,57.0,55.0,63.0,65.0,76.0,74.0,70.0,74.0,75.0,67.0,58.0,71.0,66.0,64.0,73.0,78.0,60.0,64.0,78.0,58.0,59.0,62.0,73.0,86.0,61.0,56.0,72.0,66.0,60.0,74.0,61.0,62.0,59.0,56.0,65.0,49.0,50.0,53.0,60.0,49.0,47.0,41.0,54.0,30.0,37.0,36.0,32.0,23.0,31.0,26.0,25.0,29.0,29.0,26.0,10.0,19.0,14.0,8.0,10.0,16.0,10.0,15.0,3.0,7.0,5.0,2.0,1.0,1.0,1.0,3.0,3.0 B81048,246.0,223.0,266.0,270.0,262.0,303.0,320.0,333.0,363.0,375.0,348.0,319.0,382.0,433.0,359.0,355.0,379.0,354.0,376.0,298.0,384.0,354.0,336.0,341.0,356.0,413.0,409.0,426.0,425.0,472.0,458.0,444.0,481.0,468.0,461.0,484.0,492.0,498.0,454.0,461.0,400.0,421.0,408.0,447.0,361.0,362.0,367.0,353.0,343.0,376.0,336.0,339.0,368.0,377.0,356.0,369.0,345.0,374.0,370.0,359.0,354.0,318.0,336.0,342.0,325.0,309.0,322.0,242.0,278.0,240.0,229.0,248.0,210.0,181.0,217.0,200.0,189.0,222.0,204.0,120.0,146.0,112.0,111.0,96.0,78.0,79.0,89.0,57.0,50.0,40.0,40.0,27.0,20.0,18.0,14.0,19.0 B81051,29.0,24.0,39.0,33.0,23.0,37.0,32.0,37.0,46.0,40.0,47.0,45.0,51.0,58.0,50.0,50.0,44.0,51.0,54.0,54.0,47.0,45.0,39.0,38.0,35.0,40.0,44.0,40.0,61.0,49.0,48.0,57.0,42.0,50.0,62.0,56.0,48.0,47.0,49.0,54.0,50.0,42.0,45.0,45.0,54.0,59.0,48.0,47.0,54.0,46.0,64.0,64.0,80.0,76.0,73.0,77.0,75.0,79.0,67.0,76.0,95.0,95.0,81.0,93.0,93.0,89.0,102.0,91.0,90.0,83.0,81.0,75.0,72.0,71.0,81.0,66.0,74.0,74.0,82.0,53.0,72.0,56.0,54.0,39.0,36.0,36.0,28.0,24.0,18.0,20.0,16.0,13.0,9.0,7.0,7.0,10.0 B81052,28.0,47.0,39.0,52.0,32.0,38.0,39.0,35.0,56.0,50.0,50.0,55.0,45.0,43.0,47.0,41.0,50.0,34.0,51.0,55.0,58.0,43.0,42.0,42.0,55.0,70.0,68.0,79.0,79.0,65.0,75.0,81.0,83.0,93.0,101.0,94.0,85.0,95.0,77.0,79.0,77.0,103.0,96.0,72.0,84.0,69.0,88.0,51.0,69.0,71.0,68.0,77.0,57.0,67.0,52.0,61.0,50.0,52.0,59.0,51.0,70.0,56.0,47.0,43.0,31.0,40.0,37.0,30.0,21.0,33.0,23.0,21.0,15.0,30.0,20.0,18.0,15.0,14.0,13.0,11.0,12.0,9.0,9.0,5.0,3.0,8.0,11.0,1.0,7.0,2.0,4.0,2.0,1.0,2.0,,1.0 B81054,22.0,31.0,31.0,30.0,27.0,30.0,33.0,32.0,37.0,24.0,42.0,31.0,44.0,41.0,35.0,40.0,41.0,47.0,34.0,43.0,44.0,51.0,36.0,48.0,52.0,50.0,56.0,73.0,58.0,59.0,61.0,72.0,48.0,64.0,66.0,63.0,73.0,63.0,55.0,64.0,48.0,63.0,61.0,54.0,54.0,53.0,70.0,53.0,65.0,58.0,64.0,60.0,66.0,63.0,68.0,68.0,66.0,65.0,81.0,56.0,63.0,51.0,73.0,58.0,53.0,57.0,46.0,59.0,50.0,48.0,31.0,48.0,38.0,37.0,42.0,32.0,40.0,39.0,46.0,27.0,34.0,19.0,26.0,17.0,11.0,10.0,16.0,17.0,11.0,3.0,9.0,2.0,2.0,,1.0,2.0 B81061,200.0,211.0,211.0,246.0,242.0,260.0,244.0,247.0,280.0,268.0,296.0,276.0,308.0,301.0,278.0,277.0,284.0,310.0,273.0,229.0,239.0,238.0,198.0,208.0,238.0,208.0,233.0,226.0,216.0,232.0,225.0,260.0,242.0,260.0,287.0,274.0,256.0,293.0,288.0,304.0,269.0,294.0,278.0,270.0,279.0,287.0,265.0,264.0,282.0,291.0,270.0,316.0,347.0,351.0,362.0,323.0,347.0,328.0,342.0,361.0,331.0,384.0,356.0,334.0,310.0,335.0,318.0,303.0,317.0,235.0,243.0,259.0,237.0,227.0,258.0,222.0,242.0,232.0,249.0,187.0,183.0,174.0,144.0,113.0,126.0,86.0,85.0,90.0,65.0,62.0,50.0,41.0,34.0,17.0,20.0,31.0 B81063,21.0,25.0,25.0,23.0,26.0,31.0,25.0,21.0,33.0,34.0,30.0,40.0,23.0,41.0,33.0,30.0,38.0,39.0,34.0,35.0,39.0,35.0,29.0,39.0,34.0,38.0,26.0,29.0,28.0,35.0,38.0,30.0,49.0,37.0,36.0,34.0,46.0,35.0,38.0,54.0,31.0,31.0,37.0,33.0,27.0,32.0,25.0,38.0,32.0,31.0,50.0,41.0,55.0,51.0,47.0,57.0,68.0,80.0,66.0,68.0,65.0,76.0,72.0,52.0,57.0,63.0,66.0,66.0,46.0,49.0,44.0,46.0,55.0,48.0,43.0,40.0,57.0,52.0,51.0,35.0,36.0,31.0,28.0,23.0,17.0,17.0,10.0,12.0,14.0,7.0,12.0,5.0,3.0,2.0,8.0,9.0 B81064,59.0,57.0,58.0,51.0,57.0,58.0,45.0,87.0,48.0,75.0,67.0,60.0,59.0,72.0,60.0,73.0,59.0,85.0,67.0,54.0,43.0,50.0,40.0,61.0,51.0,45.0,67.0,61.0,72.0,72.0,69.0,67.0,92.0,78.0,84.0,84.0,84.0,77.0,73.0,88.0,86.0,93.0,82.0,73.0,83.0,72.0,62.0,67.0,72.0,61.0,57.0,59.0,65.0,68.0,56.0,64.0,66.0,47.0,57.0,53.0,68.0,66.0,64.0,61.0,55.0,57.0,51.0,59.0,56.0,40.0,41.0,47.0,43.0,41.0,43.0,44.0,40.0,43.0,45.0,25.0,30.0,31.0,31.0,26.0,13.0,16.0,24.0,11.0,13.0,10.0,9.0,3.0,5.0,3.0,7.0,8.0 B81065,29.0,51.0,38.0,46.0,36.0,55.0,36.0,54.0,54.0,60.0,67.0,60.0,71.0,65.0,50.0,63.0,64.0,80.0,61.0,55.0,52.0,51.0,49.0,61.0,48.0,57.0,53.0,46.0,59.0,62.0,67.0,72.0,60.0,70.0,61.0,59.0,72.0,54.0,59.0,63.0,60.0,73.0,74.0,59.0,61.0,64.0,54.0,62.0,46.0,66.0,71.0,72.0,75.0,98.0,87.0,72.0,92.0,100.0,93.0,102.0,92.0,102.0,86.0,92.0,97.0,89.0,92.0,72.0,65.0,65.0,65.0,70.0,64.0,68.0,52.0,53.0,57.0,76.0,47.0,51.0,49.0,50.0,47.0,19.0,24.0,29.0,19.0,15.0,18.0,19.0,11.0,6.0,5.0,3.0,6.0,7.0 B81068,69.0,83.0,79.0,77.0,73.0,96.0,99.0,100.0,114.0,125.0,120.0,117.0,109.0,122.0,112.0,121.0,109.0,95.0,110.0,95.0,87.0,73.0,95.0,78.0,62.0,81.0,83.0,109.0,109.0,115.0,113.0,141.0,131.0,142.0,134.0,155.0,124.0,158.0,130.0,121.0,119.0,128.0,158.0,124.0,129.0,105.0,105.0,96.0,88.0,104.0,129.0,98.0,102.0,130.0,132.0,121.0,107.0,115.0,129.0,135.0,119.0,130.0,108.0,117.0,108.0,93.0,100.0,124.0,108.0,77.0,92.0,72.0,92.0,78.0,72.0,87.0,82.0,80.0,87.0,72.0,48.0,46.0,51.0,32.0,28.0,44.0,35.0,34.0,15.0,24.0,15.0,15.0,7.0,7.0,7.0,8.0 B81069,108.0,104.0,114.0,113.0,119.0,116.0,138.0,151.0,144.0,148.0,172.0,174.0,149.0,163.0,165.0,146.0,155.0,151.0,136.0,165.0,134.0,119.0,120.0,125.0,132.0,125.0,134.0,132.0,133.0,162.0,151.0,163.0,175.0,164.0,165.0,146.0,171.0,151.0,147.0,164.0,136.0,147.0,151.0,148.0,142.0,160.0,123.0,108.0,134.0,143.0,161.0,153.0,142.0,200.0,215.0,188.0,208.0,228.0,240.0,227.0,221.0,239.0,233.0,223.0,238.0,199.0,214.0,221.0,221.0,211.0,217.0,219.0,225.0,229.0,214.0,212.0,190.0,232.0,232.0,176.0,163.0,122.0,126.0,96.0,84.0,72.0,65.0,61.0,50.0,37.0,21.0,18.0,16.0,14.0,18.0,17.0 B81074,34.0,49.0,59.0,52.0,56.0,49.0,57.0,68.0,51.0,53.0,68.0,67.0,66.0,79.0,85.0,79.0,89.0,78.0,84.0,74.0,82.0,77.0,77.0,70.0,70.0,73.0,53.0,71.0,73.0,64.0,76.0,66.0,69.0,80.0,67.0,74.0,70.0,77.0,99.0,94.0,82.0,75.0,71.0,81.0,98.0,79.0,68.0,71.0,61.0,75.0,74.0,87.0,90.0,83.0,101.0,91.0,96.0,90.0,90.0,89.0,77.0,99.0,95.0,92.0,77.0,64.0,69.0,69.0,85.0,76.0,65.0,71.0,57.0,54.0,67.0,52.0,58.0,76.0,75.0,38.0,38.0,30.0,34.0,31.0,23.0,25.0,27.0,23.0,21.0,11.0,11.0,6.0,7.0,5.0,2.0,2.0 B81075,18.0,14.0,16.0,14.0,21.0,12.0,15.0,18.0,19.0,14.0,15.0,15.0,20.0,24.0,10.0,19.0,19.0,10.0,21.0,12.0,9.0,17.0,12.0,14.0,18.0,17.0,16.0,23.0,25.0,29.0,26.0,31.0,31.0,24.0,27.0,25.0,23.0,24.0,27.0,23.0,24.0,15.0,28.0,31.0,21.0,26.0,21.0,15.0,27.0,19.0,28.0,25.0,17.0,22.0,29.0,25.0,23.0,34.0,30.0,27.0,31.0,16.0,28.0,26.0,22.0,26.0,41.0,16.0,30.0,25.0,25.0,20.0,23.0,21.0,19.0,18.0,21.0,19.0,24.0,15.0,15.0,18.0,9.0,12.0,11.0,6.0,7.0,5.0,11.0,6.0,1.0,5.0,2.0,1.0,3.0,1.0 B81082,24.0,22.0,31.0,25.0,29.0,30.0,37.0,37.0,47.0,30.0,30.0,45.0,30.0,40.0,41.0,23.0,36.0,35.0,33.0,29.0,27.0,33.0,32.0,23.0,29.0,30.0,27.0,20.0,28.0,20.0,23.0,32.0,28.0,28.0,25.0,36.0,37.0,29.0,40.0,32.0,40.0,35.0,29.0,40.0,39.0,45.0,32.0,37.0,41.0,38.0,39.0,33.0,57.0,44.0,62.0,48.0,44.0,51.0,58.0,55.0,61.0,57.0,51.0,59.0,51.0,64.0,40.0,52.0,41.0,43.0,42.0,37.0,20.0,26.0,30.0,36.0,39.0,31.0,40.0,26.0,34.0,23.0,21.0,22.0,9.0,11.0,10.0,13.0,11.0,8.0,9.0,16.0,4.0,2.0,1.0,5.0 B81085,25.0,21.0,24.0,29.0,28.0,19.0,23.0,23.0,29.0,18.0,29.0,29.0,23.0,44.0,33.0,27.0,21.0,33.0,35.0,21.0,28.0,20.0,34.0,34.0,27.0,27.0,29.0,39.0,39.0,30.0,32.0,33.0,43.0,41.0,42.0,40.0,50.0,25.0,39.0,39.0,40.0,33.0,36.0,44.0,35.0,32.0,27.0,20.0,37.0,29.0,29.0,37.0,35.0,43.0,35.0,35.0,32.0,37.0,36.0,40.0,43.0,47.0,53.0,45.0,35.0,38.0,37.0,42.0,24.0,20.0,25.0,37.0,28.0,26.0,25.0,22.0,22.0,22.0,29.0,17.0,18.0,13.0,10.0,13.0,12.0,15.0,8.0,3.0,9.0,7.0,8.0,1.0,2.0,2.0,,3.0 B81087,28.0,19.0,30.0,24.0,31.0,37.0,34.0,49.0,50.0,54.0,43.0,39.0,56.0,52.0,54.0,65.0,68.0,66.0,60.0,60.0,50.0,42.0,29.0,44.0,32.0,32.0,35.0,48.0,31.0,29.0,31.0,28.0,55.0,54.0,39.0,44.0,48.0,60.0,62.0,58.0,53.0,45.0,47.0,48.0,47.0,46.0,52.0,39.0,42.0,42.0,55.0,45.0,66.0,55.0,60.0,73.0,60.0,51.0,53.0,67.0,59.0,50.0,54.0,67.0,44.0,56.0,44.0,48.0,33.0,46.0,48.0,54.0,42.0,37.0,37.0,36.0,39.0,51.0,45.0,23.0,28.0,27.0,19.0,20.0,16.0,14.0,13.0,17.0,10.0,13.0,3.0,4.0,5.0,7.0,2.0,7.0 B81088,26.0,34.0,35.0,33.0,32.0,26.0,36.0,46.0,38.0,33.0,36.0,37.0,38.0,41.0,33.0,48.0,49.0,38.0,38.0,39.0,45.0,43.0,39.0,44.0,38.0,45.0,56.0,42.0,47.0,56.0,53.0,37.0,43.0,46.0,38.0,54.0,55.0,71.0,49.0,43.0,35.0,47.0,35.0,48.0,52.0,45.0,42.0,41.0,41.0,53.0,48.0,53.0,56.0,62.0,63.0,69.0,79.0,56.0,65.0,85.0,68.0,71.0,67.0,71.0,75.0,60.0,68.0,67.0,50.0,53.0,49.0,50.0,55.0,48.0,45.0,36.0,47.0,41.0,41.0,42.0,34.0,18.0,17.0,22.0,22.0,16.0,10.0,14.0,15.0,8.0,5.0,5.0,5.0,5.0,7.0,6.0 B81090,22.0,19.0,30.0,26.0,23.0,25.0,25.0,25.0,21.0,20.0,28.0,31.0,29.0,25.0,31.0,31.0,23.0,33.0,34.0,33.0,26.0,31.0,27.0,26.0,33.0,31.0,30.0,36.0,37.0,42.0,38.0,37.0,40.0,44.0,35.0,50.0,41.0,34.0,27.0,44.0,34.0,26.0,35.0,28.0,41.0,39.0,29.0,28.0,32.0,29.0,34.0,31.0,29.0,24.0,16.0,29.0,32.0,29.0,40.0,28.0,36.0,30.0,17.0,36.0,41.0,26.0,19.0,24.0,21.0,21.0,15.0,26.0,15.0,22.0,18.0,10.0,13.0,6.0,11.0,13.0,12.0,11.0,7.0,7.0,9.0,6.0,6.0,5.0,5.0,5.0,6.0,4.0,4.0,1.0,1.0, B81091,14.0,24.0,23.0,26.0,27.0,22.0,18.0,30.0,34.0,20.0,31.0,27.0,26.0,35.0,23.0,30.0,35.0,37.0,30.0,29.0,23.0,20.0,12.0,18.0,23.0,35.0,27.0,32.0,31.0,31.0,33.0,25.0,31.0,31.0,31.0,34.0,45.0,44.0,31.0,33.0,33.0,33.0,28.0,36.0,49.0,38.0,30.0,23.0,35.0,29.0,30.0,34.0,33.0,44.0,49.0,41.0,26.0,42.0,41.0,52.0,46.0,47.0,46.0,50.0,37.0,39.0,35.0,34.0,43.0,33.0,27.0,25.0,21.0,24.0,25.0,18.0,26.0,37.0,37.0,19.0,26.0,10.0,16.0,5.0,10.0,16.0,8.0,1.0,10.0,6.0,5.0,6.0,,4.0,2.0,4.0 B81092,33.0,57.0,53.0,48.0,38.0,55.0,53.0,68.0,72.0,70.0,55.0,67.0,64.0,91.0,69.0,61.0,75.0,65.0,67.0,52.0,54.0,48.0,39.0,49.0,40.0,58.0,45.0,60.0,64.0,67.0,59.0,53.0,70.0,78.0,83.0,66.0,58.0,91.0,72.0,71.0,57.0,66.0,68.0,74.0,65.0,61.0,76.0,59.0,52.0,69.0,66.0,72.0,78.0,70.0,87.0,85.0,84.0,82.0,89.0,97.0,95.0,111.0,112.0,111.0,98.0,95.0,93.0,82.0,89.0,99.0,81.0,78.0,91.0,69.0,84.0,68.0,84.0,84.0,79.0,57.0,60.0,41.0,44.0,35.0,33.0,24.0,41.0,25.0,15.0,16.0,13.0,3.0,7.0,5.0,4.0,17.0 B81097,10.0,8.0,15.0,11.0,13.0,14.0,16.0,11.0,12.0,22.0,21.0,16.0,18.0,21.0,25.0,13.0,10.0,13.0,14.0,16.0,12.0,14.0,11.0,8.0,15.0,11.0,9.0,18.0,19.0,20.0,26.0,27.0,27.0,22.0,31.0,19.0,22.0,26.0,21.0,17.0,30.0,27.0,20.0,18.0,14.0,22.0,18.0,21.0,23.0,19.0,17.0,25.0,13.0,23.0,20.0,20.0,17.0,12.0,28.0,17.0,10.0,19.0,9.0,18.0,12.0,12.0,18.0,15.0,8.0,16.0,12.0,14.0,10.0,17.0,13.0,8.0,9.0,12.0,10.0,7.0,10.0,14.0,6.0,7.0,6.0,2.0,3.0,6.0,2.0,2.0,1.0,1.0,,,1.0,1.0 B81099,29.0,33.0,38.0,46.0,47.0,41.0,53.0,62.0,60.0,58.0,46.0,70.0,79.0,60.0,60.0,59.0,62.0,73.0,64.0,53.0,46.0,46.0,48.0,44.0,47.0,46.0,56.0,50.0,33.0,46.0,39.0,46.0,61.0,55.0,47.0,53.0,64.0,41.0,47.0,50.0,59.0,62.0,65.0,62.0,67.0,62.0,61.0,50.0,56.0,48.0,60.0,64.0,70.0,89.0,92.0,85.0,83.0,83.0,81.0,105.0,84.0,79.0,100.0,92.0,75.0,87.0,75.0,78.0,72.0,67.0,70.0,68.0,47.0,64.0,64.0,75.0,56.0,61.0,69.0,43.0,40.0,51.0,45.0,30.0,29.0,30.0,26.0,19.0,20.0,14.0,14.0,9.0,8.0,6.0,4.0,3.0 B81100,12.0,14.0,23.0,20.0,24.0,30.0,20.0,22.0,25.0,17.0,27.0,20.0,26.0,29.0,16.0,23.0,19.0,21.0,17.0,24.0,7.0,12.0,14.0,16.0,16.0,14.0,13.0,19.0,12.0,16.0,15.0,23.0,18.0,25.0,22.0,29.0,19.0,27.0,34.0,29.0,29.0,25.0,31.0,21.0,22.0,24.0,16.0,24.0,24.0,19.0,18.0,24.0,26.0,21.0,26.0,23.0,21.0,25.0,31.0,26.0,23.0,25.0,26.0,25.0,28.0,21.0,22.0,20.0,24.0,39.0,13.0,25.0,25.0,26.0,22.0,22.0,32.0,39.0,38.0,23.0,16.0,20.0,23.0,16.0,13.0,13.0,26.0,14.0,17.0,8.0,8.0,10.0,4.0,4.0,2.0,7.0 B81101,94.0,100.0,106.0,100.0,136.0,100.0,125.0,116.0,113.0,129.0,108.0,117.0,131.0,138.0,127.0,115.0,122.0,133.0,131.0,96.0,104.0,124.0,113.0,118.0,109.0,101.0,119.0,140.0,128.0,133.0,147.0,155.0,154.0,153.0,133.0,153.0,154.0,138.0,135.0,134.0,131.0,127.0,128.0,117.0,139.0,141.0,130.0,126.0,141.0,114.0,146.0,138.0,163.0,166.0,165.0,176.0,170.0,204.0,182.0,189.0,182.0,187.0,203.0,163.0,154.0,152.0,163.0,148.0,134.0,152.0,150.0,132.0,115.0,108.0,133.0,130.0,98.0,124.0,140.0,82.0,79.0,74.0,66.0,52.0,52.0,56.0,40.0,41.0,43.0,37.0,27.0,23.0,15.0,15.0,7.0,15.0 B81104,20.0,18.0,11.0,27.0,18.0,22.0,14.0,17.0,26.0,15.0,23.0,21.0,19.0,18.0,17.0,18.0,21.0,21.0,42.0,133.0,187.0,211.0,209.0,194.0,201.0,190.0,179.0,157.0,144.0,151.0,139.0,132.0,109.0,101.0,89.0,80.0,67.0,52.0,56.0,55.0,55.0,30.0,50.0,44.0,39.0,34.0,22.0,30.0,24.0,27.0,30.0,20.0,27.0,27.0,22.0,20.0,25.0,18.0,8.0,19.0,18.0,25.0,19.0,16.0,19.0,17.0,12.0,10.0,10.0,17.0,12.0,12.0,11.0,10.0,5.0,10.0,12.0,3.0,5.0,5.0,5.0,2.0,1.0,6.0,1.0,3.0,7.0,3.0,2.0,1.0,1.0,2.0,1.0,,1.0, B81108,16.0,16.0,23.0,30.0,25.0,26.0,16.0,17.0,20.0,25.0,26.0,26.0,29.0,26.0,30.0,25.0,23.0,29.0,23.0,20.0,21.0,19.0,21.0,20.0,22.0,23.0,28.0,22.0,32.0,19.0,31.0,20.0,21.0,34.0,30.0,34.0,38.0,26.0,29.0,30.0,27.0,30.0,20.0,25.0,16.0,35.0,35.0,28.0,27.0,27.0,35.0,27.0,32.0,42.0,41.0,37.0,33.0,46.0,40.0,33.0,26.0,30.0,40.0,30.0,23.0,24.0,31.0,18.0,31.0,34.0,25.0,24.0,22.0,28.0,20.0,22.0,20.0,14.0,20.0,8.0,13.0,20.0,8.0,8.0,9.0,4.0,7.0,7.0,6.0,2.0,9.0,4.0,4.0,,1.0,1.0 B81109,35.0,27.0,30.0,43.0,46.0,38.0,63.0,53.0,56.0,74.0,43.0,67.0,67.0,70.0,66.0,71.0,65.0,68.0,64.0,57.0,56.0,58.0,64.0,50.0,62.0,57.0,57.0,56.0,58.0,69.0,65.0,58.0,62.0,77.0,80.0,72.0,69.0,84.0,81.0,77.0,75.0,75.0,66.0,65.0,58.0,72.0,73.0,53.0,70.0,61.0,76.0,80.0,68.0,88.0,79.0,77.0,92.0,103.0,106.0,99.0,114.0,94.0,110.0,82.0,92.0,73.0,74.0,86.0,77.0,84.0,68.0,73.0,78.0,71.0,65.0,77.0,76.0,96.0,85.0,55.0,45.0,53.0,48.0,41.0,24.0,22.0,23.0,23.0,7.0,14.0,16.0,9.0,7.0,4.0,7.0,7.0 B81112,64.0,77.0,86.0,76.0,68.0,89.0,66.0,103.0,110.0,111.0,92.0,105.0,123.0,101.0,92.0,88.0,81.0,97.0,82.0,87.0,87.0,72.0,63.0,66.0,76.0,68.0,87.0,82.0,87.0,115.0,87.0,106.0,111.0,116.0,105.0,101.0,121.0,84.0,104.0,110.0,84.0,79.0,93.0,77.0,82.0,85.0,76.0,73.0,73.0,83.0,80.0,71.0,81.0,88.0,83.0,76.0,83.0,73.0,69.0,79.0,85.0,89.0,63.0,73.0,68.0,50.0,49.0,54.0,53.0,40.0,47.0,52.0,49.0,41.0,47.0,40.0,55.0,52.0,43.0,26.0,26.0,24.0,16.0,13.0,18.0,18.0,16.0,13.0,8.0,4.0,5.0,2.0,3.0,,3.0,4.0 B81113,47.0,56.0,62.0,62.0,47.0,60.0,63.0,76.0,71.0,66.0,63.0,59.0,71.0,59.0,64.0,65.0,51.0,52.0,60.0,57.0,43.0,49.0,42.0,42.0,43.0,62.0,58.0,70.0,67.0,67.0,67.0,74.0,76.0,69.0,74.0,69.0,69.0,73.0,81.0,88.0,75.0,73.0,69.0,54.0,60.0,58.0,47.0,54.0,60.0,52.0,62.0,57.0,54.0,64.0,74.0,62.0,60.0,73.0,72.0,86.0,75.0,75.0,43.0,72.0,69.0,66.0,67.0,63.0,53.0,47.0,45.0,33.0,39.0,41.0,40.0,31.0,54.0,49.0,38.0,24.0,26.0,23.0,21.0,12.0,17.0,19.0,15.0,20.0,12.0,12.0,6.0,4.0,2.0,1.0,4.0,4.0 B81118,30.0,44.0,43.0,49.0,46.0,50.0,49.0,59.0,57.0,49.0,59.0,52.0,60.0,48.0,44.0,63.0,44.0,59.0,53.0,51.0,46.0,35.0,47.0,41.0,37.0,41.0,41.0,51.0,51.0,58.0,50.0,45.0,61.0,58.0,63.0,63.0,58.0,61.0,53.0,59.0,41.0,52.0,42.0,32.0,46.0,57.0,48.0,39.0,33.0,31.0,44.0,46.0,52.0,51.0,58.0,63.0,49.0,41.0,47.0,46.0,56.0,44.0,65.0,45.0,50.0,56.0,39.0,37.0,35.0,41.0,28.0,32.0,37.0,31.0,36.0,36.0,30.0,41.0,30.0,20.0,25.0,20.0,18.0,15.0,7.0,13.0,8.0,18.0,11.0,11.0,4.0,4.0,5.0,1.0,3.0,3.0 B81119,31.0,35.0,35.0,31.0,41.0,35.0,43.0,46.0,42.0,37.0,42.0,55.0,38.0,46.0,51.0,52.0,40.0,46.0,47.0,41.0,49.0,42.0,27.0,41.0,37.0,28.0,27.0,48.0,44.0,42.0,39.0,49.0,55.0,43.0,56.0,44.0,50.0,52.0,46.0,51.0,37.0,46.0,46.0,39.0,48.0,35.0,37.0,30.0,36.0,38.0,27.0,40.0,43.0,36.0,33.0,44.0,41.0,42.0,56.0,61.0,56.0,50.0,43.0,44.0,37.0,32.0,30.0,30.0,28.0,20.0,18.0,27.0,24.0,22.0,20.0,16.0,18.0,13.0,20.0,16.0,18.0,9.0,13.0,8.0,9.0,4.0,4.0,4.0,3.0,4.0,3.0,2.0,1.0,,2.0,1.0 B81606,18.0,25.0,28.0,25.0,33.0,29.0,34.0,28.0,35.0,35.0,24.0,30.0,30.0,29.0,27.0,27.0,25.0,23.0,28.0,39.0,29.0,28.0,33.0,26.0,19.0,25.0,32.0,25.0,28.0,40.0,37.0,40.0,41.0,39.0,42.0,30.0,36.0,42.0,38.0,30.0,27.0,36.0,26.0,29.0,32.0,25.0,36.0,22.0,23.0,27.0,18.0,31.0,24.0,31.0,30.0,23.0,25.0,32.0,21.0,24.0,34.0,25.0,40.0,34.0,27.0,25.0,32.0,21.0,20.0,26.0,19.0,16.0,13.0,13.0,9.0,12.0,12.0,17.0,19.0,14.0,10.0,7.0,9.0,5.0,10.0,8.0,9.0,3.0,2.0,5.0,1.0,2.0,1.0,,2.0,1.0 B81616,7.0,20.0,14.0,21.0,15.0,25.0,10.0,18.0,20.0,18.0,22.0,21.0,24.0,16.0,17.0,23.0,25.0,18.0,23.0,12.0,22.0,8.0,15.0,8.0,13.0,9.0,18.0,17.0,21.0,23.0,20.0,21.0,28.0,27.0,21.0,20.0,20.0,27.0,15.0,17.0,21.0,14.0,10.0,24.0,12.0,12.0,15.0,10.0,16.0,9.0,17.0,12.0,22.0,27.0,21.0,26.0,26.0,28.0,21.0,28.0,32.0,27.0,16.0,23.0,19.0,23.0,11.0,15.0,10.0,17.0,12.0,12.0,10.0,14.0,9.0,6.0,17.0,18.0,11.0,9.0,9.0,9.0,7.0,7.0,3.0,7.0,8.0,8.0,4.0,3.0,2.0,2.0,1.0,2.0,1.0,1.0 B81617,61.0,60.0,54.0,62.0,61.0,79.0,68.0,69.0,62.0,76.0,70.0,69.0,68.0,84.0,83.0,65.0,77.0,59.0,75.0,65.0,73.0,63.0,60.0,57.0,57.0,49.0,65.0,82.0,76.0,86.0,86.0,88.0,101.0,77.0,109.0,96.0,73.0,96.0,97.0,91.0,103.0,94.0,87.0,95.0,79.0,79.0,75.0,65.0,64.0,63.0,60.0,64.0,57.0,63.0,66.0,55.0,70.0,60.0,57.0,58.0,47.0,36.0,45.0,46.0,45.0,23.0,30.0,22.0,38.0,27.0,20.0,32.0,25.0,26.0,22.0,22.0,25.0,22.0,23.0,14.0,15.0,6.0,14.0,13.0,12.0,8.0,12.0,5.0,7.0,3.0,4.0,3.0,2.0,1.0,1.0,5.0 B81619,9.0,15.0,5.0,12.0,14.0,22.0,17.0,19.0,15.0,15.0,12.0,11.0,16.0,16.0,19.0,23.0,13.0,13.0,18.0,14.0,18.0,13.0,10.0,15.0,16.0,11.0,20.0,10.0,10.0,17.0,21.0,15.0,17.0,14.0,15.0,23.0,18.0,20.0,22.0,16.0,15.0,16.0,17.0,13.0,15.0,19.0,24.0,18.0,18.0,14.0,18.0,16.0,22.0,23.0,14.0,19.0,13.0,19.0,18.0,15.0,21.0,24.0,20.0,19.0,20.0,20.0,21.0,19.0,19.0,22.0,13.0,8.0,16.0,7.0,14.0,12.0,14.0,15.0,16.0,8.0,7.0,8.0,7.0,6.0,3.0,7.0,5.0,8.0,4.0,9.0,7.0,,4.0,1.0,1.0,4.0 B81628,3.0,13.0,10.0,15.0,6.0,9.0,15.0,14.0,17.0,19.0,13.0,17.0,8.0,19.0,18.0,19.0,13.0,13.0,16.0,11.0,12.0,12.0,3.0,9.0,11.0,8.0,9.0,10.0,15.0,10.0,16.0,10.0,20.0,19.0,7.0,11.0,20.0,18.0,14.0,13.0,30.0,10.0,20.0,17.0,15.0,18.0,14.0,13.0,16.0,11.0,15.0,12.0,16.0,25.0,14.0,21.0,29.0,24.0,27.0,13.0,25.0,34.0,26.0,24.0,18.0,24.0,27.0,22.0,28.0,29.0,16.0,21.0,16.0,27.0,15.0,21.0,11.0,22.0,22.0,8.0,10.0,15.0,11.0,11.0,8.0,5.0,9.0,4.0,3.0,5.0,2.0,2.0,1.0,1.0,,4.0 B81631,15.0,26.0,30.0,20.0,25.0,30.0,28.0,23.0,33.0,34.0,25.0,33.0,30.0,45.0,40.0,42.0,38.0,33.0,31.0,23.0,22.0,17.0,32.0,28.0,23.0,25.0,34.0,35.0,33.0,28.0,33.0,29.0,35.0,28.0,35.0,42.0,39.0,41.0,28.0,40.0,26.0,41.0,34.0,39.0,41.0,36.0,29.0,24.0,37.0,22.0,39.0,28.0,41.0,33.0,25.0,36.0,39.0,32.0,36.0,27.0,32.0,24.0,30.0,16.0,22.0,22.0,26.0,28.0,25.0,25.0,31.0,17.0,18.0,28.0,24.0,22.0,18.0,16.0,18.0,11.0,13.0,8.0,5.0,6.0,4.0,4.0,5.0,3.0,3.0,2.0,2.0,,,2.0,,2.0 B81635,6.0,14.0,13.0,13.0,18.0,12.0,15.0,12.0,16.0,17.0,24.0,20.0,20.0,20.0,28.0,16.0,21.0,20.0,25.0,13.0,16.0,16.0,13.0,20.0,10.0,20.0,12.0,11.0,11.0,16.0,17.0,20.0,22.0,21.0,19.0,21.0,18.0,21.0,23.0,26.0,26.0,19.0,29.0,14.0,24.0,19.0,23.0,18.0,22.0,16.0,26.0,24.0,22.0,28.0,20.0,23.0,33.0,22.0,25.0,28.0,37.0,22.0,35.0,27.0,31.0,23.0,19.0,36.0,31.0,27.0,31.0,33.0,21.0,24.0,27.0,32.0,20.0,26.0,29.0,13.0,16.0,11.0,12.0,11.0,17.0,7.0,10.0,5.0,2.0,4.0,5.0,4.0,,1.0,,1.0 B81642,16.0,14.0,15.0,22.0,18.0,17.0,26.0,23.0,11.0,19.0,29.0,28.0,17.0,16.0,18.0,21.0,19.0,16.0,15.0,19.0,21.0,20.0,17.0,15.0,17.0,20.0,17.0,21.0,20.0,16.0,19.0,18.0,13.0,21.0,22.0,28.0,30.0,31.0,31.0,27.0,24.0,34.0,21.0,16.0,22.0,30.0,16.0,29.0,26.0,31.0,24.0,28.0,25.0,33.0,28.0,42.0,33.0,40.0,37.0,34.0,36.0,32.0,22.0,27.0,29.0,23.0,29.0,32.0,42.0,35.0,27.0,31.0,24.0,33.0,22.0,26.0,22.0,26.0,34.0,18.0,20.0,28.0,18.0,12.0,12.0,11.0,4.0,7.0,11.0,5.0,1.0,3.0,7.0,5.0,1.0,3.0 B81645,,2.0,7.0,17.0,23.0,14.0,13.0,14.0,16.0,18.0,12.0,14.0,16.0,16.0,24.0,14.0,19.0,12.0,14.0,13.0,11.0,15.0,12.0,15.0,7.0,13.0,8.0,11.0,14.0,21.0,19.0,19.0,17.0,23.0,28.0,27.0,29.0,33.0,29.0,22.0,28.0,24.0,33.0,21.0,22.0,18.0,18.0,15.0,6.0,14.0,18.0,10.0,14.0,17.0,18.0,12.0,13.0,15.0,12.0,12.0,16.0,27.0,21.0,19.0,9.0,14.0,12.0,14.0,12.0,12.0,13.0,11.0,9.0,10.0,6.0,4.0,6.0,10.0,7.0,6.0,6.0,2.0,4.0,2.0,2.0,2.0,,3.0,1.0,2.0,,,,,,1.0 B81647,14.0,15.0,14.0,8.0,20.0,21.0,10.0,21.0,14.0,17.0,15.0,21.0,13.0,20.0,15.0,13.0,16.0,14.0,16.0,16.0,16.0,13.0,5.0,8.0,9.0,16.0,8.0,13.0,8.0,15.0,9.0,16.0,12.0,21.0,16.0,17.0,12.0,18.0,13.0,21.0,26.0,16.0,19.0,23.0,25.0,19.0,14.0,14.0,15.0,15.0,23.0,22.0,21.0,25.0,24.0,34.0,24.0,27.0,18.0,19.0,32.0,25.0,33.0,20.0,19.0,20.0,20.0,33.0,27.0,22.0,21.0,24.0,17.0,18.0,21.0,23.0,11.0,14.0,16.0,13.0,11.0,13.0,10.0,7.0,6.0,5.0,9.0,3.0,3.0,5.0,1.0,,,1.0,, B81648,4.0,5.0,6.0,7.0,9.0,4.0,5.0,6.0,7.0,9.0,8.0,7.0,10.0,7.0,8.0,10.0,10.0,5.0,5.0,10.0,7.0,11.0,9.0,14.0,4.0,4.0,13.0,8.0,5.0,17.0,15.0,13.0,10.0,14.0,20.0,10.0,10.0,12.0,17.0,16.0,7.0,8.0,3.0,10.0,14.0,12.0,9.0,12.0,7.0,9.0,12.0,9.0,6.0,18.0,11.0,9.0,16.0,13.0,19.0,16.0,16.0,15.0,12.0,16.0,20.0,12.0,20.0,15.0,14.0,13.0,15.0,10.0,5.0,11.0,7.0,4.0,8.0,5.0,10.0,9.0,9.0,4.0,1.0,3.0,3.0,1.0,1.0,5.0,,,1.0,,,1.0,,1.0 B81653,25.0,30.0,23.0,35.0,23.0,42.0,40.0,43.0,30.0,37.0,38.0,44.0,36.0,33.0,51.0,44.0,40.0,45.0,40.0,28.0,23.0,33.0,33.0,23.0,32.0,35.0,43.0,35.0,38.0,43.0,46.0,39.0,45.0,42.0,48.0,41.0,46.0,48.0,47.0,44.0,53.0,51.0,53.0,51.0,38.0,55.0,42.0,54.0,38.0,48.0,50.0,42.0,39.0,47.0,68.0,49.0,61.0,55.0,60.0,57.0,52.0,47.0,67.0,53.0,41.0,55.0,58.0,38.0,43.0,33.0,44.0,34.0,37.0,38.0,47.0,39.0,39.0,42.0,55.0,32.0,31.0,30.0,29.0,19.0,28.0,30.0,25.0,17.0,27.0,15.0,6.0,15.0,10.0,6.0,3.0,10.0 B81655,13.0,11.0,18.0,16.0,21.0,18.0,18.0,27.0,26.0,25.0,20.0,25.0,20.0,27.0,22.0,26.0,27.0,19.0,21.0,18.0,23.0,14.0,10.0,15.0,11.0,16.0,19.0,19.0,16.0,24.0,21.0,16.0,23.0,23.0,25.0,26.0,24.0,21.0,30.0,25.0,26.0,18.0,19.0,27.0,22.0,19.0,11.0,18.0,16.0,15.0,20.0,27.0,18.0,20.0,25.0,17.0,21.0,25.0,19.0,20.0,22.0,30.0,23.0,23.0,25.0,18.0,14.0,16.0,14.0,15.0,9.0,5.0,9.0,9.0,15.0,12.0,8.0,11.0,17.0,7.0,14.0,7.0,8.0,9.0,6.0,5.0,4.0,5.0,2.0,3.0,1.0,2.0,2.0,2.0,, B81656,38.0,37.0,51.0,44.0,55.0,46.0,46.0,58.0,61.0,55.0,62.0,59.0,51.0,52.0,70.0,55.0,58.0,57.0,58.0,60.0,49.0,35.0,39.0,35.0,45.0,40.0,42.0,45.0,44.0,45.0,55.0,47.0,61.0,58.0,61.0,47.0,42.0,64.0,49.0,46.0,63.0,41.0,46.0,55.0,36.0,50.0,31.0,23.0,33.0,33.0,32.0,40.0,28.0,44.0,43.0,39.0,30.0,33.0,46.0,39.0,43.0,32.0,37.0,44.0,25.0,34.0,26.0,32.0,30.0,16.0,27.0,26.0,20.0,13.0,27.0,25.0,26.0,25.0,11.0,16.0,5.0,9.0,5.0,5.0,9.0,11.0,3.0,2.0,2.0,1.0,3.0,,4.0,2.0,2.0,3.0 B81663,19.0,13.0,20.0,16.0,13.0,21.0,25.0,20.0,20.0,24.0,27.0,25.0,22.0,22.0,21.0,14.0,22.0,13.0,14.0,7.0,10.0,12.0,13.0,14.0,17.0,18.0,17.0,11.0,26.0,24.0,20.0,17.0,25.0,15.0,24.0,22.0,31.0,22.0,35.0,40.0,23.0,22.0,25.0,28.0,16.0,22.0,26.0,21.0,21.0,21.0,15.0,8.0,15.0,14.0,18.0,13.0,18.0,25.0,15.0,19.0,22.0,18.0,21.0,17.0,22.0,16.0,16.0,14.0,18.0,20.0,23.0,21.0,11.0,11.0,8.0,15.0,20.0,23.0,10.0,12.0,6.0,5.0,5.0,6.0,1.0,2.0,2.0,4.0,,3.0,3.0,1.0,,3.0,1.0, B81665,10.0,8.0,6.0,21.0,13.0,11.0,14.0,16.0,12.0,8.0,15.0,14.0,8.0,19.0,17.0,13.0,20.0,10.0,11.0,12.0,14.0,12.0,15.0,8.0,8.0,13.0,11.0,10.0,9.0,14.0,17.0,13.0,16.0,20.0,23.0,14.0,18.0,17.0,16.0,20.0,22.0,16.0,18.0,17.0,15.0,15.0,18.0,14.0,15.0,17.0,11.0,25.0,20.0,22.0,22.0,22.0,18.0,21.0,22.0,19.0,12.0,25.0,17.0,24.0,20.0,12.0,12.0,21.0,14.0,19.0,14.0,10.0,17.0,7.0,12.0,14.0,8.0,8.0,3.0,10.0,4.0,1.0,5.0,6.0,4.0,3.0,2.0,2.0,,3.0,3.0,2.0,,1.0,,1.0 B81666,8.0,12.0,7.0,12.0,12.0,10.0,6.0,10.0,6.0,9.0,12.0,7.0,13.0,11.0,20.0,12.0,13.0,16.0,10.0,14.0,13.0,6.0,10.0,17.0,11.0,16.0,12.0,16.0,10.0,14.0,10.0,20.0,10.0,18.0,23.0,10.0,13.0,18.0,14.0,8.0,14.0,12.0,15.0,9.0,11.0,14.0,15.0,8.0,19.0,13.0,14.0,7.0,19.0,23.0,21.0,25.0,21.0,17.0,23.0,21.0,20.0,30.0,26.0,13.0,15.0,22.0,15.0,14.0,14.0,17.0,12.0,16.0,9.0,15.0,21.0,17.0,14.0,18.0,17.0,19.0,10.0,8.0,6.0,9.0,5.0,9.0,11.0,6.0,4.0,4.0,3.0,6.0,2.0,3.0,,4.0 B81675,87.0,89.0,96.0,97.0,87.0,88.0,83.0,98.0,85.0,126.0,88.0,102.0,109.0,120.0,101.0,89.0,93.0,90.0,87.0,73.0,83.0,72.0,76.0,67.0,85.0,103.0,85.0,112.0,115.0,120.0,121.0,146.0,167.0,160.0,171.0,148.0,160.0,149.0,157.0,132.0,143.0,128.0,122.0,130.0,111.0,96.0,100.0,81.0,100.0,111.0,95.0,79.0,98.0,99.0,96.0,81.0,92.0,91.0,66.0,89.0,68.0,72.0,62.0,72.0,59.0,53.0,45.0,38.0,44.0,34.0,35.0,37.0,41.0,33.0,34.0,24.0,32.0,28.0,28.0,23.0,12.0,14.0,21.0,7.0,12.0,5.0,5.0,3.0,6.0,10.0,6.0,2.0,2.0,7.0,2.0,1.0 B81697,14.0,9.0,14.0,16.0,17.0,19.0,19.0,18.0,23.0,16.0,27.0,23.0,23.0,21.0,22.0,22.0,18.0,22.0,20.0,15.0,17.0,27.0,10.0,6.0,15.0,15.0,13.0,15.0,10.0,18.0,14.0,19.0,16.0,22.0,22.0,26.0,20.0,32.0,14.0,22.0,19.0,10.0,15.0,15.0,15.0,19.0,18.0,13.0,10.0,15.0,18.0,22.0,20.0,28.0,22.0,24.0,19.0,28.0,20.0,18.0,16.0,25.0,19.0,15.0,20.0,26.0,17.0,18.0,21.0,12.0,9.0,9.0,12.0,7.0,12.0,11.0,13.0,10.0,13.0,9.0,8.0,11.0,8.0,5.0,5.0,8.0,2.0,3.0,5.0,1.0,7.0,,3.0,1.0,,1.0 B82002,31.0,32.0,40.0,34.0,29.0,44.0,32.0,34.0,52.0,51.0,33.0,45.0,47.0,48.0,28.0,35.0,43.0,36.0,33.0,39.0,41.0,39.0,43.0,36.0,37.0,37.0,39.0,29.0,39.0,32.0,34.0,35.0,39.0,46.0,50.0,43.0,57.0,42.0,39.0,37.0,42.0,28.0,38.0,41.0,50.0,39.0,29.0,36.0,37.0,36.0,35.0,46.0,38.0,67.0,46.0,43.0,51.0,59.0,59.0,86.0,69.0,61.0,57.0,53.0,70.0,60.0,58.0,57.0,56.0,57.0,52.0,55.0,52.0,54.0,54.0,46.0,42.0,52.0,46.0,40.0,33.0,28.0,30.0,28.0,23.0,28.0,13.0,27.0,17.0,10.0,6.0,11.0,6.0,8.0,3.0,1.0 B82004,37.0,23.0,45.0,43.0,47.0,45.0,50.0,58.0,58.0,57.0,60.0,66.0,48.0,54.0,73.0,45.0,55.0,54.0,66.0,62.0,58.0,53.0,50.0,57.0,48.0,47.0,49.0,52.0,45.0,47.0,37.0,41.0,56.0,52.0,50.0,64.0,48.0,53.0,60.0,50.0,33.0,70.0,58.0,61.0,63.0,47.0,63.0,47.0,53.0,65.0,50.0,69.0,69.0,80.0,93.0,100.0,98.0,85.0,93.0,89.0,106.0,93.0,91.0,111.0,106.0,101.0,80.0,100.0,76.0,72.0,78.0,72.0,48.0,75.0,59.0,57.0,77.0,71.0,81.0,65.0,54.0,49.0,39.0,35.0,29.0,39.0,30.0,26.0,17.0,25.0,12.0,9.0,5.0,13.0,6.0,5.0 B82005,210.0,248.0,257.0,283.0,311.0,321.0,322.0,331.0,317.0,377.0,374.0,376.0,367.0,411.0,421.0,386.0,462.0,464.0,418.0,412.0,400.0,402.0,384.0,403.0,414.0,416.0,430.0,421.0,382.0,395.0,412.0,427.0,429.0,455.0,494.0,510.0,438.0,448.0,423.0,415.0,463.0,456.0,446.0,441.0,440.0,416.0,411.0,360.0,401.0,345.0,364.0,354.0,398.0,406.0,344.0,380.0,363.0,384.0,364.0,384.0,334.0,364.0,346.0,320.0,291.0,277.0,282.0,269.0,232.0,192.0,195.0,193.0,176.0,181.0,207.0,188.0,208.0,195.0,169.0,137.0,137.0,105.0,104.0,88.0,97.0,75.0,77.0,66.0,61.0,51.0,31.0,24.0,36.0,16.0,14.0,25.0 B82008,19.0,26.0,24.0,33.0,39.0,20.0,32.0,26.0,44.0,37.0,51.0,44.0,47.0,57.0,48.0,60.0,52.0,55.0,52.0,44.0,44.0,42.0,46.0,39.0,38.0,46.0,36.0,39.0,45.0,33.0,36.0,44.0,41.0,40.0,28.0,47.0,30.0,42.0,50.0,43.0,51.0,57.0,34.0,49.0,58.0,61.0,51.0,44.0,47.0,53.0,46.0,58.0,67.0,65.0,82.0,66.0,80.0,69.0,82.0,59.0,60.0,72.0,71.0,59.0,72.0,68.0,64.0,57.0,70.0,42.0,42.0,41.0,69.0,59.0,51.0,64.0,57.0,58.0,70.0,56.0,48.0,62.0,32.0,25.0,36.0,28.0,37.0,28.0,20.0,15.0,5.0,14.0,7.0,9.0,5.0,7.0 B82010,25.0,26.0,29.0,40.0,37.0,30.0,39.0,33.0,37.0,44.0,45.0,56.0,42.0,56.0,59.0,56.0,48.0,45.0,45.0,58.0,44.0,35.0,47.0,34.0,37.0,36.0,49.0,38.0,40.0,31.0,47.0,44.0,38.0,46.0,44.0,45.0,40.0,48.0,53.0,46.0,53.0,41.0,43.0,56.0,56.0,67.0,63.0,47.0,42.0,49.0,47.0,40.0,50.0,50.0,54.0,58.0,42.0,57.0,49.0,52.0,57.0,62.0,61.0,50.0,50.0,55.0,52.0,44.0,35.0,45.0,47.0,47.0,37.0,35.0,36.0,29.0,34.0,42.0,49.0,33.0,26.0,28.0,19.0,21.0,15.0,15.0,22.0,20.0,13.0,15.0,9.0,3.0,5.0,7.0,4.0,6.0 B82011,20.0,16.0,16.0,24.0,26.0,30.0,19.0,22.0,41.0,33.0,30.0,22.0,29.0,34.0,27.0,39.0,35.0,31.0,27.0,21.0,24.0,25.0,23.0,25.0,20.0,26.0,25.0,30.0,32.0,26.0,26.0,32.0,23.0,29.0,34.0,30.0,27.0,37.0,35.0,30.0,31.0,25.0,36.0,33.0,31.0,31.0,23.0,23.0,20.0,29.0,40.0,29.0,46.0,35.0,46.0,38.0,39.0,51.0,42.0,48.0,51.0,63.0,51.0,45.0,43.0,52.0,43.0,43.0,45.0,41.0,52.0,39.0,44.0,34.0,40.0,28.0,35.0,34.0,25.0,21.0,25.0,29.0,19.0,13.0,10.0,13.0,12.0,9.0,5.0,5.0,6.0,2.0,4.0,1.0,2.0,2.0 B82012,61.0,83.0,69.0,86.0,79.0,61.0,97.0,81.0,88.0,101.0,86.0,88.0,99.0,90.0,114.0,97.0,118.0,108.0,91.0,83.0,80.0,68.0,71.0,62.0,66.0,66.0,66.0,75.0,68.0,59.0,61.0,69.0,61.0,83.0,75.0,82.0,67.0,83.0,73.0,97.0,91.0,92.0,100.0,107.0,119.0,102.0,99.0,103.0,88.0,110.0,103.0,92.0,112.0,118.0,125.0,116.0,112.0,115.0,95.0,115.0,132.0,121.0,115.0,102.0,102.0,85.0,97.0,92.0,84.0,78.0,81.0,81.0,79.0,68.0,85.0,70.0,74.0,92.0,91.0,49.0,62.0,69.0,62.0,33.0,34.0,34.0,39.0,29.0,42.0,24.0,22.0,17.0,11.0,7.0,2.0,7.0 B82013,77.0,75.0,89.0,79.0,69.0,101.0,109.0,102.0,105.0,105.0,94.0,104.0,107.0,103.0,110.0,124.0,125.0,122.0,113.0,99.0,95.0,96.0,93.0,95.0,105.0,124.0,104.0,139.0,147.0,114.0,132.0,155.0,147.0,159.0,142.0,150.0,154.0,153.0,146.0,137.0,163.0,153.0,177.0,155.0,193.0,171.0,169.0,153.0,136.0,131.0,132.0,131.0,152.0,150.0,153.0,144.0,145.0,150.0,151.0,147.0,159.0,178.0,151.0,129.0,126.0,126.0,142.0,105.0,112.0,111.0,114.0,94.0,90.0,72.0,72.0,76.0,88.0,89.0,85.0,54.0,47.0,60.0,49.0,37.0,41.0,36.0,32.0,25.0,31.0,14.0,18.0,10.0,7.0,9.0,9.0,12.0 B82014,16.0,21.0,32.0,31.0,38.0,36.0,38.0,32.0,34.0,43.0,38.0,35.0,40.0,33.0,42.0,39.0,40.0,45.0,37.0,40.0,37.0,36.0,20.0,28.0,28.0,34.0,29.0,41.0,38.0,45.0,48.0,34.0,50.0,48.0,44.0,49.0,48.0,51.0,46.0,57.0,44.0,46.0,50.0,59.0,68.0,72.0,48.0,61.0,50.0,50.0,44.0,57.0,49.0,48.0,55.0,43.0,56.0,63.0,57.0,45.0,46.0,48.0,48.0,39.0,34.0,38.0,34.0,39.0,30.0,35.0,25.0,27.0,27.0,32.0,32.0,42.0,35.0,28.0,34.0,21.0,31.0,21.0,26.0,13.0,16.0,13.0,17.0,11.0,10.0,11.0,7.0,8.0,4.0,6.0,2.0,9.0 B82016,30.0,34.0,29.0,32.0,34.0,46.0,40.0,44.0,46.0,68.0,53.0,50.0,54.0,45.0,48.0,53.0,53.0,46.0,47.0,40.0,33.0,45.0,41.0,38.0,39.0,59.0,40.0,37.0,65.0,48.0,51.0,58.0,62.0,44.0,58.0,71.0,59.0,69.0,61.0,59.0,63.0,53.0,63.0,58.0,59.0,68.0,57.0,56.0,44.0,68.0,55.0,55.0,58.0,67.0,71.0,66.0,64.0,58.0,62.0,57.0,52.0,63.0,67.0,44.0,51.0,62.0,45.0,34.0,48.0,40.0,31.0,35.0,26.0,23.0,25.0,28.0,26.0,32.0,30.0,28.0,34.0,18.0,22.0,18.0,16.0,11.0,9.0,11.0,7.0,6.0,7.0,5.0,3.0,2.0,5.0,4.0 B82017,41.0,42.0,47.0,48.0,60.0,47.0,57.0,50.0,53.0,54.0,57.0,66.0,63.0,67.0,59.0,80.0,61.0,62.0,66.0,59.0,55.0,62.0,61.0,71.0,67.0,70.0,54.0,75.0,63.0,67.0,63.0,86.0,73.0,73.0,92.0,74.0,68.0,86.0,66.0,64.0,90.0,69.0,73.0,74.0,80.0,71.0,69.0,68.0,68.0,65.0,83.0,87.0,82.0,93.0,95.0,94.0,91.0,101.0,98.0,124.0,113.0,99.0,123.0,91.0,129.0,136.0,116.0,115.0,101.0,100.0,106.0,103.0,100.0,76.0,113.0,95.0,89.0,105.0,89.0,77.0,78.0,55.0,43.0,37.0,44.0,27.0,28.0,22.0,23.0,20.0,14.0,14.0,6.0,6.0,6.0,8.0 B82018,20.0,24.0,21.0,30.0,33.0,38.0,42.0,31.0,30.0,32.0,28.0,30.0,36.0,37.0,36.0,31.0,41.0,34.0,39.0,37.0,23.0,35.0,27.0,30.0,28.0,32.0,27.0,26.0,31.0,26.0,23.0,29.0,33.0,29.0,31.0,30.0,34.0,35.0,34.0,36.0,32.0,26.0,47.0,43.0,31.0,29.0,33.0,32.0,36.0,46.0,32.0,40.0,49.0,41.0,58.0,57.0,49.0,51.0,51.0,59.0,71.0,65.0,55.0,52.0,60.0,52.0,55.0,54.0,45.0,59.0,47.0,46.0,51.0,28.0,44.0,47.0,51.0,37.0,43.0,41.0,31.0,21.0,29.0,18.0,25.0,14.0,13.0,17.0,9.0,7.0,5.0,2.0,5.0,7.0,,5.0 B82019,21.0,28.0,19.0,21.0,23.0,17.0,33.0,33.0,24.0,26.0,27.0,30.0,33.0,29.0,26.0,42.0,22.0,21.0,17.0,17.0,13.0,15.0,16.0,22.0,20.0,28.0,14.0,18.0,17.0,25.0,16.0,21.0,26.0,19.0,25.0,24.0,20.0,23.0,27.0,23.0,19.0,22.0,26.0,18.0,24.0,29.0,23.0,13.0,18.0,28.0,35.0,29.0,24.0,26.0,28.0,30.0,27.0,29.0,38.0,33.0,45.0,38.0,33.0,35.0,34.0,23.0,24.0,27.0,20.0,29.0,17.0,30.0,27.0,19.0,20.0,26.0,24.0,21.0,15.0,14.0,16.0,17.0,11.0,11.0,8.0,9.0,6.0,3.0,,3.0,3.0,1.0,,,,1.0 B82021,32.0,45.0,46.0,30.0,51.0,41.0,49.0,35.0,50.0,41.0,34.0,51.0,50.0,48.0,49.0,40.0,53.0,53.0,46.0,27.0,34.0,35.0,37.0,43.0,48.0,57.0,44.0,63.0,40.0,63.0,64.0,69.0,74.0,70.0,78.0,85.0,83.0,91.0,68.0,72.0,81.0,63.0,75.0,93.0,76.0,75.0,74.0,72.0,56.0,62.0,64.0,56.0,59.0,81.0,68.0,72.0,75.0,55.0,66.0,60.0,76.0,65.0,70.0,60.0,49.0,62.0,50.0,61.0,40.0,52.0,52.0,57.0,57.0,41.0,48.0,49.0,32.0,44.0,46.0,27.0,34.0,38.0,28.0,24.0,16.0,19.0,16.0,10.0,14.0,12.0,7.0,5.0,2.0,3.0,3.0,5.0 B82022,18.0,14.0,22.0,19.0,17.0,14.0,29.0,24.0,23.0,24.0,24.0,28.0,35.0,27.0,25.0,30.0,30.0,25.0,23.0,31.0,33.0,20.0,28.0,23.0,21.0,13.0,18.0,20.0,35.0,20.0,25.0,24.0,26.0,21.0,25.0,23.0,25.0,32.0,27.0,17.0,30.0,26.0,26.0,26.0,40.0,20.0,25.0,22.0,24.0,19.0,28.0,39.0,51.0,33.0,36.0,46.0,47.0,43.0,38.0,50.0,44.0,55.0,39.0,37.0,54.0,41.0,54.0,36.0,40.0,29.0,34.0,45.0,42.0,33.0,47.0,37.0,51.0,36.0,44.0,38.0,38.0,37.0,36.0,20.0,9.0,18.0,22.0,18.0,13.0,19.0,11.0,9.0,7.0,6.0,5.0,3.0 B82023,27.0,28.0,36.0,33.0,32.0,26.0,37.0,19.0,37.0,53.0,42.0,43.0,41.0,45.0,53.0,48.0,36.0,34.0,39.0,37.0,27.0,30.0,39.0,30.0,28.0,31.0,26.0,34.0,38.0,25.0,36.0,44.0,40.0,33.0,29.0,37.0,26.0,33.0,31.0,27.0,42.0,32.0,28.0,31.0,44.0,38.0,29.0,32.0,30.0,33.0,35.0,32.0,40.0,47.0,46.0,42.0,41.0,46.0,44.0,57.0,53.0,51.0,40.0,41.0,43.0,40.0,34.0,38.0,32.0,38.0,36.0,25.0,43.0,29.0,25.0,25.0,29.0,45.0,30.0,17.0,15.0,26.0,22.0,12.0,13.0,13.0,13.0,9.0,13.0,8.0,6.0,4.0,3.0,,2.0,4.0 B82024,34.0,48.0,46.0,52.0,58.0,57.0,48.0,54.0,73.0,60.0,81.0,54.0,55.0,64.0,67.0,63.0,59.0,61.0,48.0,51.0,51.0,35.0,53.0,59.0,32.0,54.0,38.0,40.0,49.0,63.0,37.0,69.0,65.0,44.0,56.0,57.0,43.0,57.0,66.0,63.0,67.0,44.0,45.0,33.0,45.0,55.0,48.0,36.0,43.0,42.0,55.0,54.0,49.0,55.0,51.0,48.0,62.0,54.0,72.0,72.0,63.0,66.0,59.0,66.0,49.0,61.0,55.0,48.0,49.0,56.0,43.0,61.0,42.0,44.0,42.0,47.0,43.0,53.0,56.0,30.0,38.0,33.0,25.0,24.0,10.0,23.0,14.0,7.0,16.0,10.0,5.0,8.0,4.0,5.0,2.0,4.0 B82025,85.0,83.0,81.0,90.0,92.0,90.0,101.0,90.0,99.0,138.0,112.0,111.0,136.0,130.0,126.0,135.0,107.0,125.0,122.0,90.0,98.0,92.0,88.0,94.0,82.0,110.0,146.0,126.0,120.0,129.0,120.0,140.0,130.0,132.0,166.0,149.0,148.0,136.0,140.0,150.0,154.0,151.0,141.0,144.0,147.0,143.0,118.0,137.0,105.0,132.0,135.0,138.0,135.0,130.0,161.0,146.0,163.0,154.0,170.0,169.0,171.0,155.0,162.0,162.0,174.0,130.0,129.0,137.0,117.0,110.0,124.0,130.0,110.0,106.0,103.0,119.0,109.0,114.0,99.0,81.0,89.0,76.0,73.0,55.0,43.0,44.0,38.0,40.0,24.0,22.0,25.0,16.0,11.0,8.0,5.0,14.0 B82026,102.0,91.0,116.0,136.0,140.0,115.0,177.0,131.0,166.0,165.0,173.0,174.0,197.0,195.0,192.0,189.0,163.0,187.0,190.0,142.0,188.0,135.0,131.0,135.0,127.0,140.0,121.0,144.0,153.0,133.0,161.0,156.0,177.0,169.0,190.0,190.0,192.0,178.0,206.0,210.0,199.0,173.0,183.0,213.0,188.0,207.0,206.0,206.0,187.0,163.0,198.0,192.0,183.0,228.0,238.0,204.0,210.0,225.0,218.0,206.0,212.0,206.0,219.0,226.0,213.0,204.0,200.0,212.0,185.0,200.0,190.0,194.0,186.0,178.0,205.0,201.0,176.0,184.0,229.0,174.0,159.0,123.0,120.0,88.0,83.0,94.0,91.0,78.0,68.0,57.0,48.0,41.0,29.0,26.0,26.0,41.0 B82027,42.0,56.0,51.0,60.0,44.0,58.0,59.0,66.0,67.0,81.0,73.0,69.0,70.0,77.0,89.0,91.0,72.0,92.0,72.0,71.0,64.0,66.0,58.0,56.0,61.0,52.0,60.0,59.0,77.0,68.0,66.0,81.0,81.0,90.0,109.0,88.0,91.0,94.0,97.0,91.0,99.0,138.0,101.0,100.0,100.0,97.0,109.0,99.0,94.0,91.0,110.0,97.0,94.0,118.0,126.0,97.0,117.0,108.0,104.0,111.0,92.0,99.0,97.0,107.0,83.0,90.0,80.0,70.0,67.0,78.0,79.0,60.0,57.0,58.0,49.0,65.0,62.0,80.0,71.0,45.0,55.0,52.0,35.0,25.0,33.0,31.0,19.0,29.0,18.0,20.0,6.0,15.0,8.0,9.0,10.0,15.0 B82029,6.0,2.0,11.0,7.0,8.0,11.0,10.0,11.0,12.0,11.0,15.0,18.0,11.0,14.0,9.0,14.0,8.0,18.0,20.0,17.0,15.0,20.0,20.0,17.0,6.0,7.0,12.0,20.0,11.0,10.0,12.0,13.0,13.0,14.0,14.0,27.0,11.0,10.0,12.0,9.0,17.0,13.0,24.0,13.0,15.0,15.0,11.0,21.0,23.0,12.0,21.0,27.0,23.0,20.0,19.0,25.0,22.0,35.0,28.0,26.0,27.0,28.0,28.0,29.0,39.0,30.0,31.0,30.0,27.0,37.0,34.0,34.0,22.0,24.0,32.0,26.0,18.0,28.0,24.0,16.0,15.0,20.0,16.0,9.0,12.0,7.0,9.0,9.0,5.0,3.0,2.0,2.0,2.0,2.0,1.0,1.0 B82030,5.0,21.0,20.0,27.0,21.0,22.0,33.0,18.0,35.0,26.0,27.0,35.0,34.0,29.0,32.0,27.0,30.0,29.0,27.0,27.0,21.0,21.0,26.0,20.0,18.0,21.0,21.0,21.0,14.0,12.0,20.0,30.0,23.0,38.0,33.0,23.0,31.0,25.0,20.0,27.0,17.0,24.0,29.0,33.0,21.0,29.0,35.0,25.0,30.0,36.0,40.0,37.0,43.0,28.0,35.0,50.0,52.0,44.0,54.0,61.0,54.0,49.0,54.0,59.0,60.0,45.0,49.0,46.0,54.0,43.0,50.0,26.0,42.0,49.0,38.0,55.0,36.0,51.0,49.0,33.0,32.0,29.0,33.0,24.0,14.0,16.0,20.0,15.0,12.0,11.0,8.0,5.0,3.0,5.0,2.0,6.0 B82031,66.0,71.0,71.0,70.0,81.0,71.0,70.0,89.0,75.0,76.0,71.0,82.0,63.0,60.0,67.0,64.0,60.0,46.0,64.0,52.0,45.0,48.0,48.0,34.0,41.0,54.0,61.0,53.0,61.0,73.0,68.0,78.0,68.0,86.0,92.0,100.0,88.0,96.0,96.0,93.0,79.0,75.0,59.0,63.0,57.0,70.0,59.0,54.0,60.0,69.0,69.0,65.0,78.0,65.0,68.0,68.0,70.0,71.0,97.0,77.0,75.0,77.0,79.0,75.0,80.0,62.0,70.0,45.0,49.0,50.0,43.0,46.0,32.0,42.0,47.0,47.0,47.0,34.0,42.0,35.0,26.0,22.0,29.0,21.0,23.0,15.0,15.0,17.0,19.0,12.0,9.0,6.0,6.0,2.0,6.0,4.0 B82032,53.0,60.0,60.0,75.0,59.0,80.0,69.0,65.0,72.0,68.0,43.0,49.0,49.0,76.0,73.0,70.0,53.0,61.0,60.0,53.0,47.0,52.0,59.0,49.0,66.0,57.0,54.0,44.0,49.0,48.0,57.0,49.0,61.0,68.0,82.0,73.0,73.0,70.0,79.0,59.0,63.0,47.0,70.0,73.0,68.0,66.0,58.0,54.0,68.0,65.0,86.0,95.0,69.0,67.0,76.0,81.0,103.0,96.0,87.0,118.0,117.0,97.0,87.0,97.0,106.0,102.0,82.0,80.0,93.0,83.0,78.0,71.0,67.0,74.0,63.0,75.0,56.0,94.0,73.0,48.0,60.0,48.0,37.0,31.0,34.0,32.0,23.0,24.0,20.0,15.0,10.0,14.0,9.0,7.0,2.0,7.0 B82033,36.0,33.0,31.0,37.0,40.0,45.0,48.0,28.0,35.0,39.0,41.0,45.0,45.0,54.0,46.0,57.0,42.0,45.0,52.0,47.0,45.0,43.0,46.0,38.0,44.0,46.0,45.0,45.0,49.0,45.0,56.0,39.0,48.0,50.0,56.0,48.0,55.0,49.0,58.0,44.0,50.0,54.0,52.0,58.0,46.0,63.0,50.0,52.0,43.0,45.0,57.0,66.0,63.0,79.0,82.0,67.0,64.0,85.0,84.0,90.0,93.0,106.0,85.0,82.0,82.0,72.0,93.0,93.0,107.0,95.0,96.0,78.0,58.0,86.0,102.0,88.0,94.0,87.0,91.0,81.0,60.0,59.0,66.0,36.0,33.0,43.0,36.0,26.0,26.0,23.0,11.0,17.0,11.0,7.0,11.0,10.0 B82034,17.0,18.0,15.0,17.0,12.0,13.0,25.0,45.0,24.0,21.0,30.0,26.0,26.0,18.0,37.0,33.0,42.0,39.0,40.0,34.0,20.0,27.0,26.0,28.0,28.0,26.0,34.0,29.0,27.0,23.0,17.0,15.0,17.0,28.0,21.0,26.0,27.0,31.0,22.0,26.0,28.0,26.0,28.0,27.0,24.0,28.0,35.0,33.0,30.0,16.0,35.0,32.0,45.0,47.0,66.0,48.0,59.0,57.0,49.0,58.0,65.0,70.0,60.0,53.0,56.0,54.0,58.0,49.0,61.0,46.0,54.0,55.0,43.0,50.0,49.0,33.0,37.0,43.0,45.0,32.0,37.0,29.0,22.0,23.0,25.0,18.0,24.0,12.0,16.0,9.0,4.0,8.0,6.0,2.0,7.0,4.0 B82035,8.0,15.0,5.0,19.0,14.0,12.0,19.0,19.0,15.0,14.0,17.0,13.0,17.0,20.0,21.0,29.0,27.0,25.0,16.0,25.0,17.0,13.0,10.0,11.0,19.0,21.0,18.0,17.0,10.0,13.0,14.0,26.0,14.0,13.0,17.0,16.0,15.0,10.0,21.0,16.0,21.0,19.0,22.0,12.0,19.0,19.0,18.0,12.0,30.0,20.0,18.0,24.0,24.0,24.0,30.0,33.0,29.0,33.0,33.0,27.0,31.0,31.0,42.0,38.0,31.0,18.0,25.0,29.0,29.0,16.0,21.0,27.0,21.0,21.0,12.0,26.0,26.0,34.0,26.0,24.0,25.0,14.0,17.0,9.0,12.0,13.0,9.0,6.0,8.0,1.0,7.0,6.0,2.0,5.0,2.0,2.0 B82036,25.0,27.0,27.0,41.0,34.0,28.0,38.0,41.0,41.0,35.0,56.0,35.0,49.0,46.0,44.0,48.0,54.0,53.0,48.0,44.0,40.0,42.0,45.0,39.0,46.0,34.0,42.0,26.0,44.0,30.0,32.0,37.0,33.0,47.0,45.0,39.0,30.0,43.0,31.0,42.0,37.0,54.0,33.0,55.0,40.0,49.0,43.0,46.0,45.0,42.0,53.0,47.0,36.0,64.0,58.0,61.0,56.0,61.0,61.0,53.0,62.0,54.0,51.0,51.0,52.0,49.0,55.0,42.0,36.0,45.0,44.0,37.0,36.0,31.0,37.0,49.0,42.0,55.0,48.0,27.0,36.0,35.0,24.0,23.0,23.0,18.0,11.0,15.0,16.0,10.0,10.0,6.0,8.0,3.0,5.0,9.0 B82037,25.0,16.0,37.0,26.0,25.0,34.0,30.0,31.0,38.0,40.0,41.0,37.0,39.0,38.0,35.0,45.0,36.0,34.0,42.0,29.0,45.0,36.0,41.0,33.0,27.0,35.0,33.0,24.0,29.0,34.0,36.0,43.0,40.0,51.0,60.0,39.0,40.0,45.0,39.0,44.0,29.0,32.0,51.0,49.0,38.0,33.0,31.0,27.0,34.0,35.0,38.0,33.0,54.0,56.0,49.0,53.0,56.0,63.0,80.0,65.0,66.0,84.0,74.0,78.0,86.0,83.0,76.0,84.0,76.0,66.0,78.0,81.0,54.0,81.0,73.0,72.0,77.0,85.0,80.0,57.0,69.0,57.0,62.0,27.0,39.0,30.0,25.0,28.0,25.0,17.0,19.0,13.0,6.0,4.0,8.0,11.0 B82038,88.0,85.0,117.0,100.0,119.0,126.0,108.0,136.0,134.0,141.0,143.0,136.0,138.0,135.0,169.0,147.0,177.0,189.0,174.0,152.0,147.0,131.0,100.0,135.0,117.0,128.0,143.0,139.0,149.0,158.0,147.0,179.0,195.0,178.0,172.0,204.0,171.0,156.0,197.0,202.0,158.0,169.0,176.0,167.0,172.0,155.0,146.0,150.0,139.0,153.0,155.0,160.0,169.0,157.0,176.0,202.0,216.0,172.0,204.0,158.0,176.0,187.0,187.0,198.0,155.0,163.0,148.0,167.0,136.0,130.0,125.0,133.0,133.0,96.0,108.0,126.0,122.0,132.0,131.0,73.0,86.0,96.0,76.0,60.0,42.0,63.0,45.0,31.0,20.0,33.0,31.0,18.0,8.0,15.0,6.0,9.0 B82041,64.0,79.0,80.0,77.0,79.0,87.0,88.0,81.0,104.0,99.0,87.0,84.0,99.0,89.0,95.0,84.0,105.0,100.0,84.0,73.0,70.0,80.0,69.0,80.0,69.0,70.0,71.0,76.0,81.0,71.0,81.0,93.0,76.0,108.0,101.0,99.0,105.0,101.0,103.0,97.0,100.0,113.0,106.0,90.0,113.0,103.0,93.0,82.0,84.0,83.0,109.0,103.0,116.0,119.0,93.0,99.0,104.0,137.0,121.0,116.0,136.0,110.0,112.0,100.0,113.0,123.0,107.0,101.0,106.0,90.0,94.0,92.0,78.0,94.0,88.0,75.0,72.0,83.0,104.0,56.0,67.0,42.0,57.0,43.0,36.0,34.0,23.0,28.0,24.0,24.0,20.0,12.0,8.0,8.0,3.0,10.0 B82042,25.0,31.0,39.0,35.0,33.0,33.0,31.0,39.0,48.0,52.0,35.0,37.0,60.0,36.0,54.0,49.0,41.0,38.0,32.0,45.0,26.0,39.0,26.0,32.0,44.0,51.0,42.0,42.0,52.0,35.0,47.0,41.0,30.0,49.0,50.0,46.0,45.0,46.0,47.0,51.0,48.0,36.0,41.0,58.0,47.0,50.0,53.0,56.0,38.0,63.0,47.0,35.0,41.0,58.0,59.0,59.0,77.0,67.0,64.0,71.0,80.0,77.0,78.0,74.0,60.0,65.0,59.0,69.0,50.0,66.0,49.0,57.0,51.0,40.0,61.0,53.0,44.0,76.0,48.0,42.0,39.0,32.0,24.0,17.0,17.0,27.0,22.0,23.0,11.0,8.0,9.0,10.0,10.0,6.0,6.0,8.0 B82044,30.0,39.0,33.0,35.0,44.0,47.0,31.0,47.0,49.0,34.0,45.0,36.0,43.0,35.0,44.0,47.0,36.0,51.0,45.0,41.0,40.0,51.0,54.0,50.0,44.0,36.0,44.0,41.0,42.0,52.0,39.0,39.0,46.0,24.0,36.0,35.0,41.0,52.0,38.0,52.0,28.0,44.0,41.0,39.0,48.0,38.0,44.0,44.0,33.0,44.0,52.0,49.0,59.0,51.0,66.0,66.0,65.0,67.0,74.0,97.0,86.0,89.0,93.0,79.0,87.0,68.0,63.0,78.0,90.0,66.0,58.0,72.0,60.0,62.0,53.0,56.0,82.0,64.0,72.0,50.0,68.0,62.0,49.0,39.0,36.0,28.0,31.0,37.0,24.0,19.0,14.0,12.0,8.0,10.0,4.0,3.0 B82045,8.0,9.0,11.0,11.0,17.0,11.0,16.0,13.0,9.0,15.0,24.0,25.0,16.0,17.0,17.0,15.0,18.0,11.0,19.0,19.0,14.0,9.0,8.0,12.0,24.0,9.0,14.0,17.0,13.0,21.0,14.0,22.0,17.0,21.0,13.0,23.0,21.0,23.0,25.0,27.0,23.0,17.0,18.0,16.0,26.0,20.0,15.0,26.0,24.0,20.0,25.0,27.0,27.0,41.0,29.0,33.0,33.0,22.0,34.0,39.0,44.0,65.0,45.0,45.0,48.0,51.0,36.0,47.0,39.0,44.0,42.0,35.0,38.0,30.0,19.0,27.0,32.0,32.0,37.0,33.0,24.0,26.0,20.0,14.0,15.0,9.0,13.0,6.0,9.0,8.0,4.0,4.0,3.0,2.0,,2.0 B82046,14.0,11.0,8.0,16.0,10.0,14.0,20.0,19.0,12.0,16.0,15.0,13.0,23.0,10.0,23.0,16.0,13.0,15.0,11.0,14.0,22.0,14.0,16.0,8.0,14.0,21.0,13.0,15.0,14.0,20.0,22.0,17.0,14.0,13.0,12.0,15.0,16.0,18.0,14.0,15.0,18.0,11.0,18.0,14.0,16.0,12.0,13.0,13.0,19.0,24.0,10.0,25.0,24.0,22.0,25.0,26.0,28.0,37.0,24.0,26.0,23.0,22.0,27.0,27.0,33.0,28.0,20.0,33.0,17.0,27.0,23.0,18.0,35.0,23.0,26.0,25.0,18.0,31.0,17.0,11.0,10.0,7.0,19.0,4.0,3.0,6.0,11.0,7.0,6.0,2.0,6.0,6.0,1.0,1.0,3.0,1.0 B82047,18.0,20.0,23.0,20.0,25.0,22.0,34.0,33.0,27.0,35.0,39.0,34.0,35.0,37.0,28.0,28.0,31.0,28.0,236.0,568.0,632.0,592.0,496.0,400.0,426.0,453.0,457.0,397.0,290.0,259.0,221.0,195.0,173.0,138.0,119.0,112.0,116.0,109.0,67.0,74.0,68.0,81.0,77.0,78.0,58.0,50.0,48.0,41.0,51.0,30.0,35.0,37.0,46.0,47.0,47.0,27.0,45.0,39.0,33.0,39.0,32.0,35.0,37.0,44.0,29.0,26.0,33.0,32.0,31.0,30.0,31.0,24.0,23.0,20.0,23.0,29.0,20.0,30.0,27.0,18.0,20.0,18.0,18.0,16.0,14.0,9.0,19.0,16.0,7.0,9.0,4.0,6.0,6.0,1.0,3.0,8.0 B82049,43.0,37.0,29.0,28.0,29.0,32.0,42.0,33.0,39.0,37.0,41.0,38.0,33.0,45.0,44.0,44.0,34.0,51.0,30.0,31.0,33.0,31.0,32.0,38.0,32.0,24.0,46.0,39.0,48.0,46.0,43.0,54.0,44.0,47.0,61.0,42.0,49.0,61.0,48.0,63.0,53.0,55.0,40.0,52.0,46.0,46.0,50.0,32.0,41.0,42.0,33.0,45.0,46.0,58.0,57.0,56.0,53.0,63.0,52.0,58.0,72.0,52.0,47.0,54.0,64.0,64.0,64.0,50.0,52.0,47.0,58.0,41.0,37.0,46.0,44.0,47.0,40.0,52.0,62.0,39.0,47.0,35.0,23.0,32.0,14.0,24.0,16.0,18.0,13.0,9.0,8.0,4.0,3.0,2.0,2.0,6.0 B82050,74.0,77.0,98.0,86.0,79.0,90.0,109.0,92.0,129.0,100.0,126.0,109.0,115.0,124.0,109.0,124.0,110.0,124.0,100.0,95.0,96.0,83.0,73.0,80.0,88.0,106.0,81.0,93.0,109.0,111.0,84.0,96.0,121.0,134.0,112.0,133.0,125.0,107.0,120.0,114.0,117.0,89.0,124.0,117.0,128.0,133.0,100.0,96.0,118.0,111.0,123.0,119.0,125.0,147.0,142.0,144.0,151.0,147.0,192.0,156.0,165.0,183.0,180.0,156.0,165.0,179.0,153.0,144.0,148.0,143.0,119.0,138.0,142.0,131.0,131.0,148.0,165.0,134.0,147.0,114.0,108.0,114.0,81.0,65.0,55.0,59.0,42.0,47.0,34.0,33.0,27.0,19.0,18.0,9.0,9.0,18.0 B82054,51.0,62.0,49.0,64.0,53.0,63.0,60.0,79.0,67.0,79.0,82.0,78.0,79.0,73.0,81.0,78.0,85.0,66.0,83.0,76.0,66.0,58.0,59.0,64.0,55.0,66.0,67.0,76.0,52.0,81.0,57.0,75.0,59.0,90.0,81.0,81.0,84.0,88.0,78.0,69.0,79.0,80.0,66.0,75.0,87.0,102.0,79.0,66.0,68.0,94.0,95.0,100.0,91.0,112.0,108.0,96.0,113.0,116.0,134.0,107.0,139.0,144.0,118.0,122.0,136.0,124.0,135.0,124.0,120.0,120.0,126.0,128.0,107.0,108.0,112.0,108.0,89.0,136.0,136.0,86.0,83.0,91.0,73.0,52.0,41.0,60.0,55.0,32.0,37.0,22.0,25.0,17.0,10.0,10.0,8.0,24.0 B82057,35.0,37.0,38.0,49.0,30.0,34.0,60.0,43.0,53.0,55.0,34.0,43.0,38.0,49.0,48.0,36.0,29.0,40.0,29.0,39.0,32.0,26.0,31.0,45.0,32.0,34.0,43.0,34.0,46.0,40.0,44.0,40.0,41.0,42.0,38.0,47.0,38.0,47.0,40.0,49.0,49.0,60.0,48.0,47.0,47.0,42.0,39.0,45.0,50.0,48.0,50.0,54.0,49.0,47.0,45.0,61.0,64.0,42.0,59.0,56.0,61.0,63.0,49.0,58.0,57.0,57.0,59.0,43.0,53.0,53.0,36.0,31.0,39.0,35.0,39.0,28.0,34.0,44.0,34.0,32.0,24.0,27.0,18.0,21.0,14.0,14.0,17.0,9.0,4.0,10.0,2.0,2.0,3.0,3.0,2.0,3.0 B82059,41.0,39.0,39.0,44.0,49.0,48.0,43.0,51.0,67.0,51.0,49.0,56.0,65.0,66.0,70.0,64.0,55.0,54.0,60.0,39.0,44.0,52.0,44.0,53.0,55.0,50.0,50.0,70.0,55.0,56.0,69.0,79.0,76.0,80.0,92.0,78.0,73.0,86.0,83.0,89.0,59.0,67.0,82.0,82.0,91.0,64.0,78.0,70.0,76.0,64.0,65.0,77.0,95.0,88.0,64.0,87.0,89.0,88.0,89.0,92.0,77.0,97.0,102.0,83.0,65.0,68.0,82.0,67.0,73.0,63.0,77.0,65.0,45.0,48.0,43.0,58.0,61.0,74.0,64.0,41.0,49.0,43.0,39.0,25.0,24.0,24.0,24.0,23.0,16.0,12.0,20.0,13.0,9.0,8.0,7.0,12.0 B82060,48.0,60.0,58.0,65.0,79.0,50.0,76.0,61.0,73.0,65.0,73.0,72.0,70.0,72.0,77.0,82.0,80.0,73.0,82.0,78.0,58.0,44.0,44.0,55.0,44.0,55.0,60.0,73.0,60.0,77.0,88.0,82.0,85.0,78.0,89.0,88.0,86.0,94.0,86.0,84.0,92.0,95.0,72.0,71.0,91.0,77.0,80.0,74.0,78.0,76.0,74.0,92.0,80.0,70.0,83.0,84.0,92.0,91.0,95.0,75.0,85.0,98.0,87.0,99.0,83.0,77.0,78.0,59.0,69.0,66.0,75.0,73.0,74.0,61.0,59.0,62.0,72.0,73.0,72.0,51.0,46.0,37.0,44.0,37.0,26.0,23.0,28.0,22.0,23.0,26.0,12.0,12.0,10.0,4.0,4.0,8.0 B82063,25.0,26.0,34.0,29.0,35.0,41.0,34.0,33.0,49.0,33.0,38.0,47.0,48.0,43.0,40.0,38.0,57.0,48.0,48.0,39.0,43.0,55.0,39.0,39.0,37.0,36.0,33.0,33.0,39.0,34.0,38.0,41.0,40.0,44.0,40.0,41.0,44.0,47.0,48.0,37.0,38.0,46.0,37.0,54.0,43.0,42.0,54.0,32.0,35.0,43.0,53.0,56.0,63.0,56.0,77.0,54.0,55.0,74.0,67.0,81.0,79.0,76.0,75.0,78.0,78.0,77.0,71.0,76.0,74.0,71.0,88.0,90.0,76.0,71.0,76.0,88.0,63.0,95.0,86.0,56.0,66.0,41.0,53.0,35.0,32.0,28.0,24.0,22.0,15.0,16.0,18.0,2.0,7.0,3.0,7.0,10.0 B82064,14.0,13.0,21.0,9.0,19.0,16.0,11.0,14.0,12.0,15.0,19.0,14.0,14.0,14.0,28.0,19.0,25.0,21.0,21.0,22.0,16.0,16.0,20.0,27.0,20.0,24.0,12.0,18.0,13.0,23.0,17.0,15.0,15.0,13.0,20.0,9.0,20.0,17.0,16.0,13.0,20.0,24.0,23.0,12.0,18.0,13.0,19.0,19.0,21.0,11.0,20.0,28.0,32.0,26.0,36.0,33.0,30.0,29.0,32.0,29.0,28.0,41.0,28.0,25.0,37.0,36.0,36.0,23.0,22.0,15.0,18.0,24.0,29.0,24.0,16.0,25.0,24.0,23.0,21.0,16.0,19.0,17.0,7.0,14.0,7.0,4.0,2.0,4.0,5.0,6.0,6.0,2.0,2.0,1.0,1.0, B82066,27.0,32.0,35.0,42.0,29.0,46.0,49.0,58.0,45.0,64.0,41.0,45.0,69.0,57.0,56.0,50.0,53.0,52.0,34.0,61.0,38.0,37.0,35.0,39.0,48.0,50.0,44.0,50.0,50.0,42.0,47.0,61.0,53.0,54.0,48.0,57.0,53.0,55.0,50.0,72.0,40.0,59.0,40.0,56.0,50.0,55.0,48.0,50.0,55.0,61.0,50.0,53.0,28.0,54.0,72.0,76.0,76.0,100.0,82.0,73.0,93.0,102.0,88.0,99.0,87.0,71.0,76.0,83.0,58.0,72.0,58.0,76.0,57.0,67.0,72.0,74.0,73.0,71.0,70.0,39.0,46.0,43.0,33.0,42.0,23.0,21.0,37.0,18.0,13.0,19.0,11.0,11.0,13.0,6.0,7.0,9.0 B82067,35.0,39.0,40.0,50.0,44.0,39.0,36.0,49.0,43.0,62.0,37.0,47.0,45.0,49.0,44.0,42.0,53.0,59.0,45.0,39.0,53.0,34.0,36.0,35.0,49.0,34.0,43.0,40.0,33.0,43.0,33.0,43.0,47.0,55.0,40.0,45.0,49.0,52.0,66.0,53.0,57.0,51.0,50.0,66.0,54.0,54.0,37.0,50.0,43.0,48.0,44.0,49.0,52.0,56.0,66.0,48.0,68.0,57.0,73.0,58.0,63.0,56.0,55.0,47.0,65.0,55.0,54.0,65.0,50.0,49.0,51.0,44.0,45.0,28.0,50.0,42.0,62.0,49.0,54.0,30.0,26.0,24.0,28.0,24.0,17.0,19.0,11.0,14.0,17.0,5.0,8.0,5.0,5.0,5.0,2.0,6.0 B82068,16.0,17.0,10.0,15.0,11.0,16.0,13.0,19.0,19.0,22.0,28.0,12.0,14.0,16.0,21.0,14.0,16.0,16.0,14.0,16.0,15.0,17.0,10.0,12.0,8.0,15.0,17.0,19.0,12.0,17.0,19.0,13.0,18.0,28.0,19.0,18.0,23.0,26.0,25.0,21.0,19.0,28.0,27.0,19.0,21.0,18.0,23.0,27.0,20.0,22.0,22.0,11.0,16.0,25.0,36.0,24.0,32.0,15.0,34.0,34.0,26.0,38.0,26.0,25.0,28.0,38.0,26.0,23.0,26.0,22.0,29.0,27.0,32.0,23.0,31.0,16.0,29.0,22.0,30.0,26.0,18.0,23.0,8.0,12.0,12.0,10.0,12.0,10.0,5.0,10.0,3.0,7.0,5.0,3.0,1.0,3.0 B82069,33.0,25.0,30.0,31.0,36.0,33.0,36.0,39.0,28.0,31.0,32.0,33.0,27.0,43.0,34.0,30.0,59.0,45.0,36.0,52.0,25.0,38.0,37.0,41.0,34.0,42.0,30.0,41.0,39.0,33.0,35.0,32.0,37.0,38.0,52.0,32.0,53.0,53.0,50.0,48.0,33.0,26.0,40.0,44.0,36.0,41.0,38.0,43.0,44.0,39.0,52.0,50.0,47.0,56.0,57.0,57.0,48.0,54.0,52.0,67.0,55.0,65.0,67.0,61.0,58.0,60.0,59.0,57.0,52.0,52.0,46.0,47.0,45.0,33.0,45.0,43.0,36.0,51.0,53.0,39.0,31.0,33.0,26.0,29.0,22.0,18.0,21.0,17.0,18.0,14.0,7.0,7.0,8.0,5.0,2.0,8.0 B82071,23.0,20.0,23.0,23.0,26.0,36.0,35.0,29.0,36.0,44.0,55.0,54.0,51.0,50.0,51.0,51.0,52.0,48.0,48.0,42.0,34.0,44.0,23.0,40.0,17.0,23.0,29.0,28.0,31.0,21.0,29.0,20.0,28.0,28.0,32.0,27.0,32.0,36.0,37.0,27.0,36.0,50.0,30.0,50.0,47.0,38.0,53.0,59.0,55.0,46.0,48.0,42.0,49.0,57.0,41.0,55.0,45.0,56.0,53.0,74.0,45.0,71.0,50.0,49.0,49.0,54.0,57.0,57.0,55.0,42.0,48.0,38.0,50.0,57.0,43.0,36.0,54.0,60.0,52.0,44.0,48.0,48.0,30.0,21.0,27.0,22.0,16.0,18.0,13.0,17.0,11.0,9.0,4.0,3.0,2.0,7.0 B82072,8.0,16.0,12.0,18.0,12.0,10.0,27.0,12.0,23.0,29.0,23.0,22.0,29.0,28.0,32.0,29.0,23.0,25.0,27.0,25.0,29.0,23.0,15.0,25.0,24.0,27.0,18.0,16.0,17.0,14.0,15.0,21.0,22.0,26.0,18.0,23.0,27.0,21.0,38.0,23.0,23.0,19.0,33.0,33.0,28.0,38.0,26.0,30.0,20.0,32.0,22.0,40.0,31.0,42.0,40.0,42.0,34.0,36.0,47.0,38.0,42.0,42.0,45.0,45.0,48.0,39.0,43.0,37.0,40.0,43.0,28.0,36.0,41.0,41.0,48.0,45.0,33.0,38.0,39.0,25.0,29.0,21.0,22.0,12.0,22.0,7.0,20.0,13.0,15.0,2.0,1.0,3.0,4.0,4.0,1.0,4.0 B82073,60.0,64.0,77.0,51.0,44.0,61.0,64.0,68.0,55.0,67.0,46.0,64.0,69.0,64.0,58.0,59.0,57.0,55.0,49.0,59.0,39.0,42.0,43.0,44.0,43.0,35.0,48.0,59.0,66.0,65.0,68.0,57.0,83.0,76.0,82.0,72.0,69.0,86.0,81.0,88.0,82.0,71.0,73.0,61.0,78.0,93.0,69.0,60.0,54.0,66.0,64.0,77.0,71.0,84.0,77.0,64.0,75.0,75.0,74.0,85.0,68.0,85.0,62.0,84.0,82.0,69.0,70.0,51.0,64.0,47.0,50.0,62.0,67.0,49.0,63.0,41.0,44.0,71.0,44.0,36.0,46.0,37.0,36.0,19.0,18.0,25.0,17.0,8.0,10.0,10.0,5.0,15.0,,3.0,7.0,6.0 B82074,85.0,95.0,68.0,95.0,95.0,96.0,95.0,99.0,114.0,113.0,94.0,117.0,97.0,127.0,114.0,102.0,109.0,118.0,112.0,94.0,96.0,93.0,84.0,91.0,78.0,115.0,100.0,113.0,104.0,123.0,139.0,132.0,144.0,131.0,158.0,130.0,142.0,117.0,139.0,132.0,118.0,117.0,108.0,124.0,116.0,125.0,126.0,114.0,105.0,92.0,116.0,100.0,136.0,128.0,128.0,132.0,137.0,122.0,123.0,130.0,133.0,124.0,106.0,119.0,123.0,94.0,111.0,119.0,104.0,84.0,83.0,90.0,80.0,87.0,91.0,92.0,77.0,95.0,109.0,71.0,64.0,56.0,44.0,46.0,37.0,36.0,27.0,31.0,15.0,18.0,19.0,11.0,5.0,6.0,2.0,6.0 B82075,27.0,30.0,36.0,35.0,39.0,35.0,47.0,41.0,51.0,57.0,53.0,46.0,58.0,47.0,57.0,42.0,53.0,63.0,40.0,42.0,56.0,57.0,40.0,40.0,49.0,55.0,31.0,41.0,41.0,54.0,46.0,50.0,52.0,44.0,47.0,57.0,53.0,70.0,46.0,57.0,41.0,43.0,50.0,54.0,68.0,56.0,42.0,38.0,45.0,40.0,42.0,51.0,66.0,59.0,63.0,66.0,61.0,80.0,73.0,99.0,78.0,71.0,77.0,84.0,72.0,67.0,78.0,72.0,72.0,64.0,74.0,55.0,63.0,67.0,74.0,59.0,50.0,74.0,57.0,43.0,53.0,37.0,32.0,19.0,24.0,19.0,15.0,23.0,23.0,7.0,12.0,9.0,8.0,3.0,1.0,11.0 B82077,24.0,22.0,31.0,15.0,22.0,19.0,28.0,32.0,26.0,30.0,30.0,27.0,24.0,37.0,32.0,29.0,33.0,37.0,25.0,24.0,27.0,28.0,20.0,8.0,29.0,21.0,30.0,22.0,27.0,33.0,25.0,33.0,23.0,37.0,31.0,37.0,24.0,33.0,21.0,27.0,17.0,23.0,23.0,33.0,23.0,32.0,30.0,23.0,32.0,27.0,30.0,39.0,31.0,36.0,48.0,48.0,41.0,50.0,61.0,56.0,52.0,66.0,54.0,67.0,46.0,63.0,49.0,52.0,42.0,44.0,38.0,37.0,53.0,35.0,51.0,37.0,51.0,57.0,40.0,33.0,36.0,30.0,29.0,23.0,23.0,11.0,16.0,14.0,6.0,17.0,8.0,7.0,7.0,3.0,2.0,9.0 B82078,18.0,18.0,16.0,23.0,18.0,15.0,33.0,23.0,27.0,19.0,19.0,28.0,13.0,22.0,24.0,28.0,23.0,23.0,23.0,11.0,30.0,18.0,28.0,30.0,29.0,33.0,25.0,42.0,25.0,30.0,20.0,21.0,22.0,31.0,26.0,29.0,33.0,30.0,24.0,24.0,33.0,32.0,27.0,27.0,30.0,39.0,22.0,25.0,32.0,25.0,30.0,30.0,38.0,35.0,44.0,38.0,52.0,37.0,54.0,62.0,50.0,47.0,56.0,49.0,80.0,57.0,49.0,58.0,66.0,53.0,51.0,53.0,45.0,63.0,52.0,42.0,40.0,47.0,57.0,38.0,35.0,33.0,36.0,18.0,29.0,24.0,21.0,14.0,10.0,7.0,5.0,8.0,6.0,6.0,1.0,4.0 B82079,7.0,8.0,13.0,16.0,8.0,18.0,13.0,17.0,22.0,11.0,18.0,18.0,15.0,15.0,15.0,18.0,24.0,18.0,21.0,18.0,18.0,17.0,13.0,15.0,22.0,11.0,10.0,22.0,13.0,13.0,16.0,13.0,15.0,16.0,10.0,13.0,14.0,15.0,15.0,15.0,18.0,10.0,15.0,21.0,15.0,21.0,25.0,19.0,25.0,15.0,19.0,26.0,16.0,28.0,18.0,23.0,27.0,28.0,30.0,31.0,36.0,38.0,27.0,42.0,39.0,28.0,33.0,27.0,24.0,31.0,24.0,22.0,27.0,31.0,25.0,21.0,25.0,29.0,29.0,18.0,26.0,16.0,25.0,15.0,5.0,17.0,15.0,13.0,12.0,7.0,6.0,6.0,3.0,2.0,1.0,3.0 B82080,55.0,61.0,69.0,69.0,81.0,73.0,97.0,91.0,79.0,123.0,127.0,93.0,115.0,114.0,120.0,122.0,115.0,119.0,107.0,84.0,93.0,71.0,79.0,72.0,80.0,68.0,98.0,86.0,66.0,80.0,82.0,96.0,101.0,87.0,97.0,99.0,101.0,95.0,95.0,94.0,117.0,103.0,96.0,120.0,134.0,99.0,132.0,108.0,94.0,111.0,119.0,104.0,148.0,156.0,141.0,147.0,149.0,127.0,156.0,151.0,143.0,130.0,127.0,153.0,133.0,122.0,121.0,134.0,118.0,101.0,97.0,101.0,103.0,101.0,111.0,105.0,128.0,127.0,132.0,72.0,103.0,81.0,77.0,53.0,46.0,52.0,51.0,34.0,28.0,27.0,13.0,16.0,10.0,10.0,4.0,15.0 B82081,18.0,20.0,16.0,31.0,17.0,30.0,36.0,29.0,32.0,35.0,44.0,45.0,41.0,48.0,42.0,42.0,50.0,51.0,34.0,39.0,37.0,34.0,28.0,43.0,43.0,22.0,33.0,35.0,27.0,29.0,30.0,24.0,29.0,37.0,17.0,26.0,35.0,44.0,38.0,30.0,46.0,30.0,33.0,34.0,47.0,43.0,33.0,43.0,44.0,42.0,57.0,49.0,55.0,56.0,54.0,61.0,63.0,69.0,56.0,51.0,57.0,75.0,50.0,61.0,57.0,53.0,51.0,51.0,42.0,49.0,41.0,48.0,42.0,39.0,37.0,31.0,40.0,48.0,52.0,32.0,31.0,26.0,21.0,17.0,22.0,17.0,17.0,13.0,13.0,7.0,9.0,2.0,3.0,5.0,3.0,7.0 B82083,166.0,154.0,141.0,171.0,169.0,193.0,194.0,192.0,214.0,214.0,209.0,203.0,231.0,193.0,217.0,221.0,221.0,227.0,247.0,318.0,393.0,395.0,373.0,385.0,399.0,403.0,414.0,405.0,401.0,373.0,403.0,433.0,357.0,386.0,385.0,337.0,359.0,331.0,337.0,327.0,355.0,353.0,332.0,309.0,311.0,297.0,311.0,267.0,268.0,267.0,259.0,281.0,258.0,294.0,305.0,286.0,306.0,253.0,280.0,260.0,253.0,287.0,257.0,238.0,244.0,197.0,221.0,192.0,181.0,176.0,166.0,176.0,154.0,160.0,161.0,144.0,128.0,159.0,164.0,107.0,98.0,111.0,79.0,62.0,74.0,58.0,53.0,49.0,45.0,39.0,33.0,25.0,21.0,15.0,14.0,20.0 B82086,23.0,13.0,22.0,19.0,24.0,19.0,20.0,16.0,28.0,21.0,16.0,28.0,24.0,19.0,18.0,20.0,27.0,31.0,17.0,13.0,29.0,20.0,21.0,33.0,25.0,24.0,18.0,27.0,25.0,24.0,16.0,33.0,26.0,24.0,28.0,31.0,27.0,17.0,31.0,26.0,18.0,25.0,24.0,24.0,23.0,30.0,21.0,30.0,18.0,31.0,17.0,18.0,34.0,30.0,35.0,30.0,45.0,51.0,43.0,60.0,47.0,67.0,50.0,40.0,47.0,48.0,44.0,51.0,34.0,43.0,36.0,42.0,39.0,33.0,30.0,46.0,32.0,50.0,37.0,24.0,23.0,26.0,13.0,19.0,15.0,10.0,18.0,9.0,7.0,4.0,8.0,4.0,5.0,2.0,,4.0 B82088,38.0,49.0,46.0,48.0,48.0,36.0,44.0,54.0,54.0,64.0,55.0,48.0,47.0,54.0,55.0,62.0,73.0,56.0,50.0,56.0,58.0,41.0,58.0,69.0,64.0,63.0,72.0,79.0,81.0,72.0,83.0,72.0,84.0,81.0,92.0,99.0,87.0,90.0,91.0,89.0,89.0,70.0,87.0,77.0,62.0,84.0,57.0,54.0,40.0,59.0,53.0,51.0,55.0,62.0,70.0,78.0,77.0,83.0,84.0,84.0,98.0,70.0,76.0,77.0,89.0,62.0,68.0,58.0,51.0,52.0,44.0,43.0,42.0,51.0,50.0,47.0,49.0,50.0,51.0,38.0,38.0,31.0,22.0,22.0,20.0,29.0,24.0,23.0,20.0,9.0,7.0,6.0,6.0,2.0,4.0,6.0 B82091,28.0,28.0,34.0,40.0,48.0,46.0,40.0,41.0,35.0,43.0,27.0,31.0,40.0,41.0,42.0,40.0,37.0,35.0,36.0,27.0,29.0,27.0,22.0,29.0,39.0,35.0,39.0,45.0,52.0,32.0,52.0,67.0,56.0,66.0,62.0,64.0,56.0,58.0,52.0,59.0,68.0,53.0,58.0,45.0,60.0,52.0,46.0,42.0,45.0,43.0,44.0,38.0,41.0,57.0,53.0,56.0,43.0,48.0,47.0,48.0,38.0,56.0,55.0,41.0,46.0,50.0,34.0,41.0,39.0,43.0,23.0,40.0,37.0,31.0,30.0,29.0,29.0,36.0,36.0,21.0,25.0,26.0,20.0,22.0,18.0,12.0,12.0,10.0,18.0,7.0,9.0,7.0,7.0,6.0,2.0,6.0 B82097,58.0,50.0,74.0,59.0,80.0,59.0,62.0,70.0,73.0,70.0,72.0,69.0,89.0,77.0,76.0,58.0,72.0,72.0,64.0,56.0,51.0,44.0,61.0,52.0,50.0,76.0,67.0,77.0,71.0,84.0,77.0,82.0,82.0,103.0,101.0,114.0,103.0,108.0,85.0,92.0,93.0,90.0,82.0,85.0,73.0,103.0,75.0,55.0,69.0,67.0,60.0,65.0,73.0,63.0,78.0,67.0,75.0,77.0,61.0,79.0,71.0,77.0,76.0,79.0,75.0,68.0,80.0,56.0,66.0,55.0,63.0,48.0,43.0,64.0,51.0,52.0,38.0,47.0,37.0,25.0,22.0,30.0,12.0,18.0,6.0,14.0,7.0,14.0,6.0,10.0,5.0,4.0,2.0,3.0,3.0,1.0 B82098,75.0,93.0,90.0,102.0,99.0,86.0,85.0,111.0,99.0,115.0,111.0,105.0,128.0,120.0,124.0,131.0,133.0,102.0,106.0,118.0,150.0,171.0,190.0,206.0,240.0,246.0,241.0,220.0,227.0,206.0,217.0,242.0,222.0,222.0,249.0,208.0,237.0,208.0,211.0,207.0,192.0,231.0,213.0,254.0,223.0,223.0,192.0,191.0,195.0,183.0,196.0,186.0,185.0,173.0,192.0,157.0,179.0,186.0,160.0,166.0,170.0,167.0,156.0,138.0,159.0,126.0,133.0,141.0,126.0,113.0,88.0,95.0,85.0,94.0,99.0,101.0,108.0,94.0,112.0,87.0,60.0,59.0,45.0,46.0,52.0,35.0,38.0,44.0,25.0,18.0,13.0,13.0,7.0,4.0,6.0,9.0 B82100,35.0,33.0,35.0,34.0,39.0,39.0,24.0,33.0,33.0,35.0,37.0,29.0,44.0,34.0,55.0,53.0,43.0,39.0,54.0,38.0,45.0,34.0,42.0,40.0,41.0,41.0,47.0,41.0,39.0,38.0,51.0,45.0,54.0,50.0,56.0,55.0,59.0,59.0,54.0,57.0,58.0,51.0,62.0,57.0,45.0,57.0,59.0,42.0,50.0,54.0,43.0,61.0,56.0,52.0,67.0,48.0,42.0,53.0,62.0,57.0,66.0,50.0,63.0,61.0,58.0,64.0,51.0,52.0,66.0,40.0,54.0,51.0,45.0,36.0,46.0,43.0,50.0,49.0,56.0,35.0,34.0,21.0,23.0,19.0,12.0,11.0,22.0,12.0,10.0,12.0,4.0,5.0,8.0,3.0,8.0,5.0 B82101,13.0,19.0,15.0,28.0,22.0,18.0,14.0,18.0,23.0,25.0,26.0,23.0,26.0,23.0,26.0,23.0,24.0,29.0,26.0,33.0,20.0,17.0,20.0,14.0,27.0,17.0,17.0,25.0,20.0,22.0,23.0,17.0,19.0,17.0,28.0,26.0,35.0,27.0,28.0,32.0,24.0,25.0,26.0,28.0,29.0,22.0,15.0,18.0,23.0,27.0,34.0,37.0,24.0,34.0,27.0,29.0,40.0,43.0,35.0,45.0,66.0,49.0,55.0,46.0,39.0,43.0,58.0,41.0,41.0,38.0,40.0,33.0,46.0,41.0,38.0,24.0,47.0,38.0,38.0,32.0,39.0,24.0,23.0,16.0,14.0,20.0,20.0,13.0,13.0,10.0,4.0,2.0,1.0,5.0,2.0,4.0 B82104,60.0,82.0,63.0,78.0,73.0,79.0,80.0,89.0,67.0,83.0,83.0,84.0,84.0,87.0,80.0,82.0,58.0,70.0,61.0,62.0,49.0,45.0,39.0,46.0,37.0,42.0,40.0,35.0,47.0,38.0,64.0,48.0,49.0,45.0,38.0,38.0,46.0,38.0,38.0,53.0,39.0,43.0,42.0,48.0,33.0,46.0,38.0,35.0,28.0,44.0,33.0,42.0,45.0,47.0,47.0,58.0,39.0,52.0,53.0,42.0,54.0,41.0,32.0,48.0,34.0,34.0,28.0,28.0,14.0,22.0,16.0,18.0,21.0,15.0,8.0,13.0,15.0,19.0,11.0,12.0,10.0,17.0,14.0,6.0,11.0,6.0,5.0,3.0,2.0,4.0,2.0,3.0,,1.0,, B82105,38.0,50.0,52.0,37.0,45.0,43.0,51.0,40.0,64.0,54.0,44.0,55.0,54.0,54.0,51.0,63.0,67.0,48.0,55.0,44.0,50.0,42.0,41.0,48.0,35.0,46.0,39.0,52.0,52.0,44.0,40.0,55.0,41.0,48.0,63.0,68.0,45.0,46.0,53.0,58.0,48.0,60.0,54.0,55.0,46.0,68.0,63.0,52.0,44.0,48.0,71.0,64.0,51.0,68.0,71.0,68.0,76.0,70.0,62.0,71.0,78.0,93.0,77.0,66.0,71.0,67.0,71.0,63.0,50.0,59.0,61.0,53.0,40.0,39.0,55.0,52.0,36.0,49.0,46.0,39.0,43.0,30.0,37.0,24.0,13.0,20.0,12.0,18.0,11.0,8.0,8.0,7.0,9.0,3.0,4.0,4.0 B82106,19.0,13.0,21.0,24.0,24.0,24.0,20.0,18.0,24.0,22.0,27.0,23.0,22.0,25.0,20.0,24.0,32.0,18.0,23.0,16.0,20.0,28.0,17.0,18.0,18.0,14.0,16.0,20.0,14.0,18.0,15.0,15.0,24.0,37.0,26.0,29.0,33.0,31.0,27.0,26.0,23.0,33.0,19.0,27.0,29.0,20.0,20.0,7.0,20.0,21.0,24.0,21.0,22.0,21.0,26.0,31.0,28.0,29.0,32.0,32.0,31.0,34.0,37.0,36.0,46.0,33.0,45.0,36.0,38.0,29.0,27.0,27.0,32.0,31.0,39.0,31.0,36.0,35.0,33.0,27.0,21.0,23.0,14.0,17.0,8.0,16.0,9.0,10.0,5.0,7.0,8.0,3.0,7.0,3.0,2.0,4.0 B82609,13.0,16.0,11.0,9.0,17.0,13.0,13.0,13.0,17.0,17.0,16.0,28.0,16.0,24.0,36.0,42.0,50.0,47.0,49.0,32.0,29.0,26.0,19.0,13.0,18.0,13.0,22.0,12.0,16.0,11.0,16.0,13.0,23.0,16.0,16.0,11.0,10.0,26.0,11.0,25.0,13.0,13.0,15.0,24.0,16.0,24.0,22.0,9.0,17.0,27.0,23.0,20.0,25.0,21.0,31.0,24.0,21.0,20.0,29.0,42.0,37.0,42.0,34.0,36.0,38.0,36.0,38.0,41.0,29.0,30.0,30.0,21.0,31.0,24.0,24.0,25.0,31.0,22.0,22.0,24.0,14.0,19.0,12.0,15.0,7.0,11.0,11.0,3.0,8.0,4.0,2.0,2.0,3.0,3.0,2.0,2.0 B82619,6.0,4.0,6.0,14.0,12.0,11.0,7.0,13.0,12.0,9.0,17.0,9.0,12.0,6.0,12.0,11.0,8.0,5.0,4.0,3.0,9.0,6.0,9.0,5.0,5.0,4.0,5.0,6.0,5.0,9.0,8.0,8.0,8.0,6.0,10.0,9.0,5.0,8.0,8.0,9.0,16.0,6.0,8.0,7.0,12.0,8.0,10.0,3.0,10.0,5.0,9.0,12.0,10.0,8.0,8.0,8.0,9.0,18.0,13.0,18.0,16.0,14.0,24.0,25.0,16.0,16.0,17.0,13.0,16.0,13.0,18.0,12.0,8.0,10.0,12.0,15.0,8.0,20.0,10.0,7.0,6.0,11.0,5.0,5.0,5.0,7.0,3.0,4.0,4.0,1.0,3.0,2.0,1.0,,2.0, B82622,6.0,4.0,5.0,3.0,10.0,2.0,4.0,4.0,5.0,6.0,4.0,4.0,3.0,5.0,6.0,6.0,3.0,5.0,5.0,2.0,9.0,6.0,6.0,6.0,7.0,10.0,4.0,8.0,3.0,5.0,4.0,3.0,6.0,4.0,4.0,5.0,4.0,8.0,7.0,6.0,6.0,2.0,3.0,6.0,6.0,3.0,4.0,7.0,4.0,5.0,12.0,10.0,8.0,16.0,11.0,17.0,12.0,15.0,18.0,15.0,23.0,20.0,24.0,20.0,12.0,13.0,11.0,19.0,18.0,13.0,16.0,16.0,14.0,10.0,11.0,14.0,21.0,16.0,17.0,7.0,11.0,12.0,5.0,12.0,4.0,6.0,2.0,3.0,2.0,4.0,3.0,1.0,,1.0,, B82628,12.0,11.0,11.0,11.0,14.0,17.0,12.0,12.0,21.0,14.0,33.0,13.0,25.0,21.0,14.0,17.0,17.0,14.0,16.0,20.0,14.0,22.0,13.0,7.0,20.0,13.0,14.0,15.0,26.0,23.0,17.0,26.0,21.0,21.0,20.0,20.0,20.0,17.0,19.0,22.0,10.0,19.0,11.0,18.0,16.0,17.0,18.0,12.0,15.0,17.0,16.0,24.0,20.0,28.0,32.0,31.0,29.0,21.0,41.0,40.0,49.0,36.0,47.0,32.0,47.0,42.0,45.0,40.0,37.0,37.0,46.0,29.0,34.0,47.0,29.0,27.0,40.0,36.0,32.0,24.0,28.0,32.0,22.0,17.0,17.0,13.0,14.0,10.0,8.0,8.0,9.0,4.0,2.0,2.0,2.0,3.0 Y01948,12.0,16.0,9.0,10.0,17.0,12.0,16.0,12.0,16.0,11.0,18.0,10.0,12.0,9.0,11.0,7.0,14.0,14.0,18.0,27.0,19.0,18.0,15.0,25.0,32.0,26.0,37.0,43.0,35.0,34.0,34.0,44.0,49.0,43.0,32.0,43.0,39.0,40.0,46.0,40.0,35.0,33.0,34.0,27.0,31.0,26.0,26.0,22.0,28.0,31.0,25.0,18.0,14.0,17.0,14.0,20.0,21.0,16.0,7.0,12.0,12.0,14.0,13.0,10.0,8.0,5.0,13.0,3.0,6.0,4.0,5.0,2.0,3.0,5.0,3.0,3.0,,,4.0,3.0,2.0,,1.0,,,1.0,1.0,,,,,,,1.0,, Y02669,24.0,35.0,28.0,25.0,33.0,29.0,30.0,29.0,32.0,24.0,37.0,34.0,23.0,22.0,25.0,35.0,26.0,19.0,20.0,31.0,18.0,28.0,30.0,33.0,29.0,42.0,58.0,38.0,51.0,53.0,69.0,64.0,68.0,57.0,60.0,74.0,60.0,49.0,51.0,56.0,46.0,37.0,48.0,43.0,39.0,28.0,48.0,34.0,35.0,26.0,32.0,40.0,39.0,40.0,41.0,38.0,28.0,38.0,28.0,26.0,28.0,38.0,15.0,27.0,27.0,19.0,23.0,19.0,19.0,22.0,21.0,16.0,17.0,18.0,11.0,9.0,15.0,8.0,10.0,5.0,4.0,6.0,2.0,4.0,3.0,3.0,1.0,1.0,2.0,,2.0,2.0,,,, Y02684,20.0,17.0,17.0,32.0,21.0,32.0,32.0,28.0,27.0,23.0,26.0,29.0,24.0,30.0,21.0,22.0,23.0,21.0,24.0,20.0,14.0,24.0,15.0,19.0,25.0,21.0,33.0,22.0,29.0,33.0,34.0,25.0,42.0,45.0,45.0,43.0,44.0,47.0,37.0,46.0,36.0,45.0,38.0,28.0,36.0,28.0,23.0,31.0,33.0,32.0,28.0,27.0,31.0,26.0,37.0,34.0,35.0,26.0,21.0,35.0,16.0,34.0,20.0,18.0,21.0,14.0,11.0,19.0,12.0,14.0,15.0,8.0,6.0,15.0,5.0,5.0,2.0,4.0,9.0,2.0,2.0,6.0,4.0,3.0,,1.0,1.0,2.0,,2.0,,,,,,1.0 Y02747,160.0,162.0,144.0,151.0,156.0,160.0,171.0,164.0,160.0,184.0,154.0,170.0,161.0,163.0,151.0,143.0,123.0,125.0,107.0,105.0,75.0,84.0,86.0,94.0,84.0,110.0,114.0,130.0,143.0,154.0,161.0,160.0,168.0,206.0,193.0,165.0,173.0,176.0,206.0,176.0,173.0,170.0,138.0,158.0,127.0,129.0,131.0,101.0,115.0,97.0,105.0,115.0,112.0,96.0,110.0,82.0,105.0,88.0,69.0,64.0,79.0,70.0,72.0,67.0,78.0,43.0,56.0,60.0,45.0,47.0,38.0,34.0,49.0,33.0,29.0,31.0,20.0,18.0,25.0,17.0,23.0,15.0,10.0,13.0,12.0,7.0,7.0,9.0,5.0,8.0,2.0,4.0,2.0,1.0,,1.0 Y02787,35.0,52.0,51.0,58.0,56.0,59.0,50.0,61.0,67.0,59.0,51.0,51.0,61.0,56.0,47.0,52.0,46.0,47.0,30.0,39.0,41.0,31.0,39.0,45.0,48.0,72.0,51.0,71.0,64.0,67.0,84.0,91.0,98.0,95.0,115.0,107.0,96.0,95.0,109.0,87.0,87.0,89.0,89.0,73.0,72.0,73.0,60.0,68.0,52.0,55.0,50.0,40.0,32.0,49.0,37.0,39.0,29.0,45.0,40.0,20.0,28.0,27.0,22.0,26.0,26.0,24.0,19.0,15.0,12.0,8.0,12.0,12.0,16.0,4.0,9.0,12.0,10.0,5.0,6.0,3.0,3.0,3.0,3.0,2.0,,2.0,2.0,1.0,,,1.0,,,,,1.0 Y07377,,,,,,,,,,,,,,,,,,1.0,3.0,8.0,8.0,6.0,14.0,15.0,10.0,13.0,10.0,15.0,7.0,6.0,1.0,5.0,5.0,2.0,5.0,7.0,2.0,3.0,1.0,3.0,2.0,2.0,1.0,,1.0,2.0,,,,2.0,,2.0,,,,1.0,,,,,2.0,,,,,,,,,,,1.0,,,,,,,,,,,,,,,,,,,,,,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 J81083,10.0,13.0,10.0,14.0,10.0,16.0,17.0,17.0,15.0,19.0,22.0,34.0,30.0,33.0,30.0,17.0,22.0,20.0,15.0,16.0,16.0,14.0,9.0,16.0,11.0,17.0,16.0,12.0,12.0,18.0,8.0,14.0,12.0,18.0,20.0,15.0,15.0,15.0,19.0,11.0,18.0,17.0,20.0,12.0,19.0,23.0,21.0,20.0,12.0,22.0,21.0,20.0,31.0,20.0,32.0,27.0,27.0,26.0,33.0,44.0,29.0,36.0,43.0,35.0,39.0,29.0,40.0,37.0,34.0,30.0,30.0,32.0,20.0,24.0,31.0,37.0,35.0,31.0,31.0,22.0,25.0,19.0,21.0,19.0,12.0,9.0,9.0,5.0,11.0,9.0,4.0,6.0,2.0,2.0,2.0,7.0 J83001,47.0,55.0,58.0,60.0,78.0,63.0,50.0,76.0,75.0,73.0,81.0,61.0,70.0,58.0,58.0,67.0,84.0,69.0,64.0,73.0,62.0,67.0,53.0,69.0,64.0,67.0,91.0,70.0,63.0,60.0,63.0,77.0,85.0,87.0,95.0,77.0,99.0,91.0,83.0,84.0,73.0,86.0,89.0,96.0,80.0,67.0,72.0,76.0,66.0,72.0,84.0,85.0,80.0,97.0,93.0,93.0,100.0,91.0,117.0,92.0,106.0,128.0,125.0,96.0,107.0,81.0,88.0,75.0,79.0,71.0,74.0,71.0,64.0,83.0,57.0,70.0,77.0,74.0,73.0,59.0,49.0,44.0,51.0,45.0,35.0,41.0,37.0,37.0,22.0,19.0,17.0,13.0,15.0,7.0,13.0,14.0 J83002,248.0,249.0,235.0,297.0,271.0,307.0,318.0,328.0,325.0,348.0,392.0,361.0,391.0,373.0,374.0,356.0,347.0,363.0,300.0,270.0,222.0,240.0,225.0,233.0,249.0,302.0,267.0,298.0,303.0,316.0,363.0,295.0,352.0,356.0,379.0,342.0,361.0,347.0,367.0,394.0,364.0,399.0,376.0,374.0,397.0,386.0,393.0,380.0,339.0,333.0,312.0,304.0,337.0,346.0,353.0,337.0,312.0,307.0,341.0,298.0,291.0,279.0,269.0,258.0,260.0,215.0,224.0,196.0,190.0,168.0,186.0,186.0,142.0,174.0,161.0,169.0,174.0,170.0,179.0,112.0,128.0,95.0,100.0,84.0,57.0,61.0,57.0,48.0,45.0,31.0,35.0,19.0,16.0,14.0,12.0,24.0 J83003,50.0,48.0,54.0,52.0,54.0,52.0,65.0,67.0,71.0,76.0,68.0,82.0,85.0,78.0,80.0,78.0,63.0,61.0,80.0,51.0,51.0,51.0,50.0,46.0,41.0,69.0,67.0,59.0,55.0,65.0,60.0,63.0,75.0,75.0,63.0,65.0,75.0,81.0,67.0,88.0,73.0,78.0,68.0,61.0,69.0,98.0,83.0,80.0,54.0,61.0,77.0,75.0,81.0,101.0,85.0,88.0,80.0,80.0,84.0,98.0,82.0,87.0,93.0,79.0,80.0,78.0,87.0,72.0,58.0,71.0,67.0,81.0,79.0,74.0,65.0,82.0,77.0,83.0,78.0,57.0,70.0,59.0,46.0,38.0,36.0,45.0,51.0,33.0,25.0,23.0,20.0,15.0,11.0,8.0,8.0,17.0 J83004,21.0,33.0,17.0,26.0,30.0,17.0,26.0,33.0,40.0,50.0,33.0,53.0,55.0,38.0,41.0,41.0,39.0,46.0,36.0,27.0,39.0,30.0,31.0,27.0,35.0,45.0,27.0,26.0,26.0,34.0,28.0,21.0,22.0,36.0,37.0,38.0,31.0,35.0,32.0,32.0,30.0,39.0,37.0,43.0,36.0,45.0,37.0,46.0,40.0,40.0,49.0,47.0,58.0,56.0,56.0,56.0,70.0,68.0,50.0,57.0,60.0,65.0,77.0,57.0,70.0,68.0,57.0,47.0,59.0,62.0,47.0,58.0,53.0,43.0,63.0,49.0,57.0,52.0,59.0,28.0,40.0,40.0,28.0,29.0,24.0,22.0,28.0,18.0,18.0,9.0,7.0,10.0,6.0,7.0,2.0,8.0 J83005,49.0,50.0,71.0,57.0,56.0,53.0,62.0,66.0,55.0,71.0,74.0,74.0,73.0,82.0,74.0,86.0,73.0,64.0,74.0,65.0,59.0,52.0,40.0,53.0,53.0,58.0,73.0,79.0,58.0,63.0,54.0,66.0,62.0,77.0,77.0,79.0,65.0,57.0,57.0,44.0,64.0,73.0,80.0,62.0,63.0,57.0,71.0,44.0,72.0,72.0,60.0,64.0,68.0,62.0,81.0,74.0,79.0,60.0,74.0,69.0,72.0,70.0,58.0,79.0,72.0,59.0,76.0,65.0,58.0,59.0,61.0,50.0,54.0,42.0,41.0,48.0,47.0,31.0,45.0,46.0,27.0,24.0,29.0,21.0,15.0,19.0,22.0,10.0,18.0,9.0,11.0,8.0,4.0,5.0,1.0,14.0 J83006,28.0,33.0,59.0,38.0,55.0,50.0,55.0,65.0,63.0,66.0,67.0,57.0,66.0,71.0,66.0,73.0,78.0,58.0,60.0,49.0,57.0,55.0,36.0,57.0,54.0,55.0,61.0,48.0,50.0,50.0,50.0,46.0,44.0,68.0,53.0,65.0,75.0,62.0,53.0,57.0,75.0,71.0,70.0,57.0,70.0,69.0,74.0,61.0,64.0,51.0,61.0,73.0,66.0,90.0,84.0,80.0,78.0,90.0,92.0,81.0,85.0,90.0,80.0,79.0,83.0,69.0,74.0,78.0,64.0,57.0,63.0,64.0,56.0,56.0,40.0,68.0,68.0,59.0,66.0,47.0,48.0,43.0,36.0,21.0,19.0,17.0,29.0,29.0,21.0,17.0,16.0,9.0,8.0,3.0,2.0,2.0 J83007,58.0,54.0,63.0,78.0,52.0,86.0,85.0,86.0,88.0,83.0,85.0,91.0,102.0,103.0,111.0,105.0,93.0,98.0,91.0,89.0,97.0,100.0,92.0,81.0,88.0,92.0,94.0,132.0,119.0,116.0,112.0,109.0,115.0,108.0,122.0,117.0,115.0,118.0,116.0,95.0,91.0,90.0,114.0,102.0,95.0,127.0,117.0,106.0,104.0,79.0,98.0,112.0,123.0,134.0,112.0,112.0,123.0,124.0,117.0,119.0,114.0,98.0,99.0,103.0,91.0,81.0,80.0,79.0,70.0,73.0,68.0,64.0,43.0,67.0,50.0,48.0,53.0,66.0,62.0,40.0,41.0,47.0,28.0,29.0,26.0,29.0,16.0,18.0,19.0,12.0,16.0,11.0,9.0,9.0,4.0,5.0 J83008,79.0,81.0,82.0,108.0,86.0,122.0,121.0,105.0,128.0,124.0,118.0,121.0,124.0,139.0,124.0,130.0,117.0,117.0,107.0,80.0,87.0,118.0,97.0,109.0,99.0,104.0,117.0,120.0,102.0,110.0,119.0,142.0,114.0,147.0,132.0,145.0,136.0,127.0,153.0,137.0,135.0,128.0,146.0,142.0,113.0,121.0,135.0,100.0,98.0,109.0,89.0,127.0,127.0,128.0,147.0,120.0,135.0,130.0,136.0,133.0,127.0,116.0,100.0,119.0,101.0,110.0,95.0,82.0,94.0,97.0,90.0,81.0,81.0,78.0,87.0,81.0,92.0,100.0,93.0,75.0,88.0,65.0,51.0,43.0,52.0,30.0,26.0,26.0,31.0,21.0,15.0,16.0,11.0,6.0,4.0,10.0 J83009,52.0,60.0,64.0,82.0,68.0,84.0,88.0,79.0,89.0,85.0,91.0,79.0,89.0,106.0,100.0,76.0,100.0,102.0,80.0,88.0,55.0,68.0,67.0,63.0,66.0,72.0,60.0,68.0,70.0,58.0,81.0,87.0,63.0,87.0,94.0,85.0,93.0,81.0,85.0,95.0,94.0,93.0,91.0,103.0,100.0,85.0,82.0,95.0,100.0,96.0,100.0,102.0,109.0,112.0,87.0,99.0,88.0,106.0,107.0,110.0,106.0,108.0,97.0,89.0,96.0,107.0,79.0,82.0,86.0,86.0,81.0,67.0,68.0,79.0,59.0,70.0,63.0,69.0,74.0,56.0,82.0,47.0,52.0,44.0,36.0,35.0,41.0,22.0,30.0,24.0,23.0,20.0,13.0,9.0,12.0,12.0 J83010,45.0,49.0,69.0,72.0,51.0,68.0,62.0,77.0,73.0,66.0,76.0,63.0,81.0,76.0,77.0,63.0,67.0,76.0,66.0,48.0,59.0,46.0,50.0,47.0,61.0,57.0,62.0,59.0,38.0,57.0,49.0,58.0,57.0,60.0,61.0,70.0,77.0,75.0,75.0,70.0,86.0,82.0,85.0,58.0,73.0,73.0,63.0,70.0,75.0,67.0,63.0,95.0,80.0,69.0,78.0,89.0,78.0,74.0,71.0,72.0,82.0,64.0,75.0,88.0,70.0,70.0,76.0,57.0,57.0,53.0,54.0,63.0,67.0,57.0,51.0,64.0,41.0,71.0,76.0,56.0,52.0,42.0,42.0,35.0,30.0,28.0,20.0,19.0,25.0,13.0,16.0,13.0,4.0,5.0,7.0,9.0 J83011,45.0,80.0,57.0,66.0,69.0,81.0,87.0,71.0,79.0,64.0,83.0,70.0,79.0,85.0,74.0,67.0,90.0,72.0,75.0,66.0,64.0,69.0,54.0,62.0,73.0,89.0,85.0,84.0,87.0,93.0,99.0,107.0,85.0,115.0,95.0,91.0,94.0,100.0,81.0,73.0,76.0,87.0,75.0,84.0,72.0,76.0,86.0,71.0,55.0,71.0,77.0,84.0,90.0,96.0,92.0,107.0,110.0,119.0,107.0,88.0,126.0,118.0,91.0,103.0,102.0,116.0,96.0,83.0,83.0,66.0,91.0,87.0,73.0,77.0,77.0,67.0,85.0,100.0,96.0,63.0,66.0,56.0,67.0,55.0,37.0,44.0,38.0,26.0,23.0,31.0,21.0,11.0,8.0,10.0,6.0,12.0 J83013,21.0,28.0,38.0,41.0,41.0,59.0,45.0,42.0,36.0,39.0,57.0,36.0,35.0,52.0,66.0,43.0,46.0,27.0,35.0,34.0,32.0,33.0,24.0,25.0,26.0,28.0,31.0,20.0,30.0,43.0,31.0,42.0,37.0,40.0,46.0,40.0,34.0,37.0,40.0,40.0,33.0,41.0,34.0,29.0,53.0,51.0,50.0,43.0,47.0,34.0,47.0,35.0,56.0,63.0,63.0,57.0,62.0,53.0,60.0,59.0,65.0,57.0,53.0,60.0,56.0,51.0,44.0,42.0,41.0,46.0,41.0,47.0,52.0,34.0,33.0,35.0,43.0,59.0,44.0,41.0,38.0,36.0,25.0,33.0,17.0,23.0,21.0,13.0,15.0,19.0,15.0,4.0,7.0,8.0,4.0,8.0 J83014,92.0,119.0,116.0,122.0,96.0,124.0,127.0,117.0,113.0,131.0,124.0,138.0,122.0,111.0,109.0,116.0,116.0,95.0,89.0,92.0,94.0,76.0,83.0,76.0,66.0,85.0,85.0,104.0,102.0,90.0,84.0,94.0,100.0,103.0,87.0,106.0,95.0,103.0,105.0,97.0,83.0,80.0,90.0,88.0,101.0,92.0,103.0,82.0,86.0,79.0,96.0,82.0,100.0,91.0,103.0,100.0,101.0,94.0,101.0,107.0,87.0,109.0,90.0,94.0,98.0,69.0,81.0,76.0,76.0,59.0,81.0,60.0,59.0,54.0,62.0,67.0,71.0,68.0,51.0,48.0,36.0,24.0,28.0,21.0,22.0,24.0,14.0,12.0,24.0,16.0,7.0,6.0,8.0,5.0,4.0,5.0 J83016,116.0,124.0,146.0,147.0,133.0,165.0,159.0,185.0,189.0,203.0,191.0,186.0,219.0,207.0,211.0,168.0,210.0,170.0,174.0,191.0,157.0,177.0,169.0,149.0,168.0,187.0,181.0,203.0,208.0,208.0,228.0,232.0,231.0,237.0,241.0,229.0,240.0,227.0,234.0,225.0,243.0,222.0,214.0,224.0,204.0,205.0,216.0,179.0,162.0,208.0,200.0,220.0,221.0,230.0,236.0,257.0,232.0,218.0,227.0,239.0,203.0,223.0,203.0,211.0,194.0,188.0,181.0,167.0,157.0,153.0,148.0,148.0,130.0,135.0,160.0,127.0,121.0,149.0,132.0,105.0,108.0,87.0,73.0,68.0,71.0,49.0,49.0,46.0,37.0,29.0,30.0,21.0,21.0,9.0,7.0,17.0 J83018,76.0,68.0,86.0,93.0,74.0,92.0,83.0,85.0,81.0,85.0,108.0,80.0,98.0,105.0,94.0,105.0,118.0,121.0,86.0,70.0,72.0,94.0,72.0,92.0,83.0,83.0,103.0,79.0,101.0,93.0,104.0,89.0,97.0,91.0,97.0,101.0,88.0,100.0,96.0,106.0,103.0,97.0,100.0,105.0,93.0,85.0,96.0,74.0,81.0,104.0,107.0,97.0,101.0,129.0,122.0,118.0,134.0,120.0,120.0,138.0,150.0,127.0,146.0,128.0,121.0,134.0,112.0,112.0,102.0,112.0,105.0,101.0,98.0,100.0,84.0,102.0,98.0,131.0,105.0,98.0,93.0,74.0,69.0,56.0,52.0,45.0,49.0,36.0,34.0,26.0,28.0,17.0,13.0,7.0,9.0,18.0 J83019,27.0,37.0,42.0,41.0,46.0,51.0,56.0,60.0,56.0,70.0,53.0,58.0,62.0,68.0,52.0,61.0,61.0,59.0,62.0,46.0,61.0,48.0,46.0,46.0,48.0,47.0,36.0,56.0,30.0,41.0,48.0,59.0,53.0,46.0,55.0,51.0,59.0,51.0,38.0,76.0,59.0,58.0,63.0,71.0,72.0,53.0,85.0,59.0,61.0,56.0,67.0,64.0,82.0,86.0,103.0,73.0,103.0,91.0,106.0,111.0,128.0,110.0,113.0,106.0,88.0,102.0,113.0,98.0,95.0,79.0,90.0,83.0,76.0,80.0,80.0,89.0,80.0,96.0,103.0,65.0,52.0,63.0,51.0,42.0,45.0,42.0,36.0,24.0,17.0,25.0,18.0,13.0,9.0,9.0,8.0,20.0 J83021,95.0,111.0,104.0,136.0,150.0,138.0,154.0,174.0,162.0,158.0,178.0,150.0,185.0,166.0,168.0,151.0,165.0,162.0,113.0,119.0,113.0,105.0,104.0,107.0,124.0,117.0,143.0,133.0,143.0,157.0,150.0,166.0,138.0,144.0,197.0,159.0,185.0,173.0,164.0,199.0,164.0,155.0,191.0,173.0,186.0,164.0,145.0,162.0,151.0,167.0,149.0,131.0,145.0,154.0,143.0,156.0,150.0,177.0,184.0,143.0,150.0,190.0,153.0,147.0,137.0,126.0,130.0,104.0,140.0,101.0,116.0,98.0,94.0,75.0,92.0,83.0,104.0,102.0,107.0,70.0,84.0,68.0,58.0,42.0,50.0,31.0,42.0,31.0,26.0,17.0,19.0,14.0,16.0,16.0,5.0,27.0 J83022,32.0,50.0,47.0,44.0,43.0,43.0,47.0,51.0,37.0,50.0,58.0,59.0,56.0,62.0,58.0,59.0,61.0,61.0,47.0,50.0,37.0,41.0,46.0,40.0,49.0,57.0,48.0,58.0,70.0,76.0,70.0,68.0,77.0,70.0,99.0,82.0,87.0,95.0,73.0,77.0,90.0,73.0,80.0,89.0,81.0,81.0,70.0,68.0,64.0,74.0,61.0,79.0,74.0,66.0,79.0,79.0,67.0,70.0,58.0,75.0,67.0,59.0,63.0,60.0,46.0,56.0,51.0,41.0,24.0,37.0,44.0,31.0,36.0,38.0,37.0,29.0,22.0,35.0,29.0,19.0,19.0,12.0,19.0,11.0,14.0,8.0,8.0,9.0,10.0,5.0,3.0,3.0,1.0,2.0,3.0,4.0 J83023,36.0,39.0,42.0,48.0,37.0,48.0,66.0,68.0,58.0,48.0,71.0,58.0,57.0,69.0,53.0,46.0,52.0,62.0,37.0,38.0,33.0,43.0,32.0,39.0,31.0,40.0,39.0,40.0,28.0,28.0,48.0,38.0,46.0,32.0,32.0,47.0,37.0,40.0,40.0,42.0,49.0,36.0,48.0,40.0,45.0,47.0,42.0,54.0,34.0,58.0,46.0,52.0,52.0,60.0,47.0,65.0,56.0,66.0,77.0,64.0,59.0,62.0,65.0,56.0,73.0,64.0,60.0,64.0,44.0,56.0,44.0,55.0,56.0,47.0,44.0,36.0,45.0,58.0,41.0,27.0,28.0,27.0,22.0,23.0,23.0,20.0,15.0,6.0,9.0,9.0,3.0,3.0,5.0,6.0,3.0,5.0 J83024,38.0,37.0,35.0,40.0,53.0,50.0,58.0,61.0,42.0,57.0,69.0,52.0,69.0,66.0,66.0,48.0,60.0,62.0,63.0,55.0,65.0,47.0,59.0,48.0,47.0,46.0,48.0,55.0,53.0,56.0,47.0,53.0,61.0,70.0,77.0,67.0,76.0,62.0,67.0,48.0,50.0,59.0,58.0,66.0,55.0,54.0,47.0,45.0,43.0,56.0,54.0,42.0,52.0,46.0,56.0,44.0,52.0,43.0,48.0,59.0,54.0,51.0,67.0,58.0,64.0,43.0,45.0,36.0,37.0,35.0,34.0,37.0,37.0,27.0,32.0,41.0,36.0,31.0,50.0,19.0,26.0,18.0,27.0,21.0,8.0,9.0,17.0,14.0,7.0,7.0,9.0,7.0,5.0,1.0,3.0,13.0 J83026,94.0,77.0,90.0,108.0,110.0,119.0,103.0,112.0,96.0,139.0,141.0,137.0,139.0,140.0,118.0,138.0,129.0,129.0,140.0,117.0,102.0,113.0,113.0,89.0,125.0,110.0,141.0,113.0,154.0,132.0,139.0,145.0,130.0,132.0,140.0,133.0,156.0,137.0,152.0,164.0,135.0,160.0,135.0,147.0,137.0,140.0,137.0,129.0,128.0,142.0,131.0,129.0,151.0,175.0,156.0,171.0,145.0,165.0,199.0,180.0,182.0,197.0,179.0,165.0,176.0,159.0,158.0,171.0,128.0,148.0,136.0,135.0,139.0,143.0,108.0,135.0,118.0,147.0,144.0,72.0,115.0,84.0,72.0,80.0,53.0,66.0,48.0,48.0,36.0,33.0,29.0,23.0,21.0,14.0,7.0,29.0 J83027,41.0,59.0,61.0,75.0,64.0,62.0,72.0,90.0,82.0,101.0,82.0,70.0,77.0,96.0,92.0,83.0,49.0,78.0,62.0,67.0,78.0,66.0,62.0,64.0,61.0,76.0,80.0,71.0,72.0,88.0,78.0,72.0,96.0,95.0,83.0,92.0,108.0,92.0,99.0,73.0,76.0,88.0,81.0,89.0,85.0,90.0,82.0,69.0,72.0,80.0,96.0,88.0,88.0,78.0,88.0,91.0,75.0,84.0,93.0,105.0,90.0,91.0,69.0,83.0,79.0,62.0,65.0,64.0,75.0,69.0,66.0,56.0,49.0,50.0,50.0,30.0,41.0,65.0,65.0,33.0,38.0,35.0,22.0,35.0,23.0,19.0,27.0,16.0,18.0,9.0,11.0,4.0,4.0,5.0,1.0,6.0 J83029,44.0,45.0,51.0,30.0,30.0,57.0,38.0,41.0,50.0,51.0,43.0,42.0,66.0,56.0,54.0,55.0,58.0,53.0,37.0,45.0,42.0,40.0,42.0,36.0,33.0,39.0,51.0,37.0,41.0,43.0,53.0,43.0,53.0,50.0,36.0,35.0,46.0,46.0,41.0,49.0,42.0,41.0,50.0,42.0,58.0,41.0,52.0,41.0,52.0,45.0,46.0,44.0,61.0,55.0,50.0,55.0,71.0,60.0,63.0,58.0,89.0,71.0,63.0,73.0,70.0,78.0,63.0,50.0,57.0,47.0,54.0,46.0,48.0,48.0,40.0,46.0,45.0,54.0,60.0,29.0,45.0,43.0,36.0,30.0,32.0,20.0,24.0,15.0,18.0,12.0,11.0,14.0,8.0,2.0,1.0,7.0 J83030,47.0,67.0,57.0,96.0,80.0,60.0,84.0,100.0,95.0,97.0,99.0,120.0,123.0,141.0,149.0,145.0,129.0,149.0,124.0,95.0,77.0,82.0,76.0,83.0,89.0,56.0,75.0,72.0,68.0,83.0,84.0,91.0,77.0,93.0,95.0,97.0,101.0,102.0,97.0,111.0,96.0,121.0,103.0,109.0,128.0,123.0,131.0,115.0,113.0,125.0,126.0,129.0,142.0,130.0,138.0,124.0,135.0,137.0,155.0,147.0,138.0,127.0,123.0,109.0,124.0,134.0,111.0,114.0,117.0,104.0,108.0,102.0,104.0,110.0,128.0,129.0,124.0,112.0,103.0,95.0,87.0,70.0,78.0,77.0,50.0,63.0,60.0,41.0,35.0,34.0,20.0,22.0,16.0,14.0,8.0,14.0 J83033,95.0,102.0,114.0,127.0,105.0,133.0,133.0,130.0,137.0,134.0,132.0,145.0,156.0,146.0,143.0,139.0,117.0,139.0,138.0,125.0,93.0,111.0,107.0,115.0,115.0,140.0,150.0,147.0,160.0,185.0,201.0,172.0,173.0,197.0,199.0,236.0,227.0,230.0,224.0,219.0,208.0,203.0,196.0,175.0,193.0,186.0,164.0,159.0,115.0,155.0,157.0,152.0,171.0,152.0,152.0,145.0,127.0,143.0,118.0,148.0,144.0,145.0,137.0,136.0,114.0,102.0,101.0,88.0,84.0,76.0,65.0,81.0,55.0,48.0,66.0,61.0,35.0,54.0,36.0,47.0,27.0,32.0,36.0,23.0,26.0,24.0,20.0,20.0,13.0,10.0,7.0,8.0,12.0,7.0,4.0,7.0 J83034,10.0,25.0,29.0,27.0,21.0,27.0,33.0,19.0,22.0,34.0,24.0,26.0,32.0,37.0,51.0,49.0,55.0,52.0,56.0,35.0,38.0,24.0,33.0,38.0,38.0,37.0,49.0,34.0,40.0,27.0,25.0,39.0,39.0,32.0,30.0,32.0,23.0,31.0,33.0,32.0,28.0,30.0,25.0,28.0,32.0,45.0,31.0,44.0,27.0,42.0,33.0,45.0,39.0,29.0,33.0,52.0,54.0,53.0,53.0,56.0,52.0,51.0,41.0,48.0,58.0,53.0,55.0,45.0,49.0,47.0,47.0,56.0,38.0,46.0,36.0,44.0,42.0,51.0,54.0,28.0,43.0,33.0,33.0,24.0,25.0,14.0,16.0,15.0,12.0,16.0,7.0,7.0,2.0,1.0,8.0,8.0 J83035,58.0,64.0,81.0,91.0,97.0,93.0,91.0,104.0,98.0,103.0,126.0,124.0,127.0,133.0,117.0,136.0,89.0,119.0,113.0,99.0,88.0,93.0,86.0,102.0,104.0,82.0,84.0,73.0,97.0,90.0,90.0,76.0,73.0,95.0,94.0,107.0,88.0,98.0,102.0,92.0,94.0,89.0,85.0,81.0,105.0,118.0,98.0,97.0,86.0,91.0,113.0,107.0,136.0,117.0,125.0,111.0,100.0,116.0,100.0,110.0,93.0,100.0,106.0,75.0,67.0,56.0,77.0,68.0,49.0,55.0,39.0,46.0,47.0,37.0,25.0,42.0,36.0,42.0,37.0,20.0,22.0,22.0,22.0,13.0,20.0,16.0,15.0,12.0,9.0,7.0,3.0,9.0,1.0,1.0,3.0,1.0 J83036,38.0,41.0,51.0,54.0,46.0,48.0,48.0,62.0,67.0,53.0,48.0,64.0,72.0,74.0,72.0,73.0,69.0,69.0,38.0,62.0,56.0,55.0,39.0,48.0,51.0,49.0,55.0,48.0,57.0,73.0,66.0,68.0,85.0,89.0,70.0,90.0,72.0,75.0,76.0,68.0,74.0,71.0,82.0,96.0,72.0,72.0,71.0,73.0,55.0,42.0,61.0,71.0,68.0,60.0,54.0,65.0,67.0,72.0,82.0,61.0,75.0,69.0,58.0,84.0,59.0,77.0,91.0,68.0,52.0,57.0,68.0,49.0,41.0,56.0,37.0,49.0,50.0,48.0,50.0,29.0,27.0,19.0,15.0,10.0,7.0,19.0,11.0,2.0,4.0,8.0,6.0,5.0,1.0,2.0,4.0,2.0 J83037,53.0,38.0,60.0,53.0,58.0,65.0,59.0,73.0,91.0,87.0,99.0,92.0,85.0,128.0,186.0,189.0,200.0,223.0,166.0,95.0,93.0,89.0,71.0,96.0,74.0,83.0,86.0,77.0,61.0,75.0,69.0,87.0,78.0,82.0,87.0,86.0,72.0,71.0,72.0,66.0,64.0,108.0,92.0,74.0,90.0,79.0,95.0,80.0,76.0,97.0,89.0,118.0,117.0,135.0,119.0,122.0,142.0,118.0,132.0,127.0,146.0,123.0,125.0,132.0,124.0,122.0,98.0,109.0,120.0,99.0,82.0,111.0,93.0,85.0,105.0,97.0,90.0,94.0,97.0,58.0,88.0,77.0,71.0,44.0,52.0,41.0,43.0,30.0,37.0,25.0,23.0,22.0,18.0,11.0,12.0,18.0 J83038,139.0,170.0,158.0,154.0,186.0,185.0,185.0,210.0,221.0,245.0,213.0,196.0,221.0,209.0,199.0,216.0,180.0,191.0,199.0,180.0,158.0,159.0,163.0,179.0,155.0,154.0,183.0,234.0,205.0,202.0,231.0,252.0,247.0,292.0,316.0,331.0,310.0,294.0,289.0,310.0,300.0,304.0,330.0,328.0,293.0,294.0,231.0,230.0,216.0,196.0,213.0,206.0,200.0,223.0,182.0,187.0,186.0,162.0,167.0,174.0,184.0,166.0,141.0,150.0,147.0,145.0,106.0,108.0,96.0,89.0,63.0,91.0,73.0,52.0,58.0,54.0,41.0,32.0,44.0,21.0,41.0,34.0,29.0,24.0,21.0,17.0,14.0,10.0,10.0,13.0,8.0,9.0,4.0,5.0,5.0,7.0 J83039,60.0,79.0,67.0,84.0,76.0,67.0,63.0,77.0,88.0,91.0,102.0,73.0,95.0,88.0,90.0,94.0,75.0,79.0,70.0,68.0,56.0,56.0,56.0,53.0,64.0,75.0,66.0,69.0,88.0,84.0,85.0,84.0,88.0,79.0,92.0,116.0,99.0,109.0,84.0,69.0,84.0,66.0,87.0,69.0,94.0,74.0,65.0,68.0,83.0,70.0,84.0,99.0,87.0,87.0,95.0,89.0,92.0,83.0,102.0,109.0,91.0,95.0,104.0,101.0,92.0,99.0,80.0,78.0,76.0,73.0,78.0,75.0,72.0,63.0,68.0,67.0,61.0,77.0,73.0,48.0,59.0,49.0,58.0,42.0,26.0,24.0,19.0,26.0,14.0,16.0,12.0,12.0,7.0,5.0,6.0,8.0 J83040,108.0,115.0,111.0,118.0,113.0,140.0,132.0,138.0,128.0,141.0,145.0,156.0,145.0,157.0,156.0,159.0,168.0,146.0,136.0,113.0,111.0,121.0,139.0,124.0,114.0,136.0,142.0,135.0,138.0,144.0,171.0,168.0,161.0,174.0,131.0,157.0,171.0,164.0,174.0,133.0,153.0,145.0,147.0,152.0,148.0,137.0,132.0,111.0,146.0,128.0,154.0,150.0,187.0,180.0,192.0,170.0,185.0,204.0,193.0,176.0,173.0,163.0,164.0,174.0,155.0,158.0,137.0,127.0,124.0,133.0,105.0,103.0,129.0,123.0,94.0,104.0,90.0,113.0,141.0,76.0,105.0,80.0,79.0,62.0,46.0,59.0,54.0,42.0,38.0,28.0,31.0,23.0,8.0,8.0,9.0,7.0 J83041,48.0,60.0,57.0,67.0,60.0,80.0,71.0,70.0,103.0,107.0,92.0,107.0,118.0,102.0,111.0,105.0,112.0,108.0,97.0,108.0,84.0,70.0,93.0,70.0,76.0,90.0,65.0,73.0,67.0,70.0,62.0,72.0,96.0,103.0,78.0,94.0,82.0,84.0,70.0,102.0,92.0,81.0,104.0,96.0,97.0,105.0,78.0,81.0,109.0,101.0,114.0,108.0,115.0,137.0,121.0,105.0,103.0,124.0,127.0,131.0,136.0,117.0,134.0,124.0,125.0,125.0,114.0,110.0,97.0,91.0,91.0,88.0,112.0,94.0,104.0,94.0,94.0,83.0,105.0,79.0,77.0,61.0,80.0,71.0,39.0,39.0,29.0,30.0,27.0,27.0,9.0,14.0,20.0,9.0,3.0,12.0 J83042,112.0,107.0,102.0,98.0,104.0,102.0,101.0,109.0,97.0,97.0,110.0,92.0,103.0,107.0,106.0,85.0,120.0,99.0,94.0,92.0,101.0,89.0,82.0,91.0,118.0,123.0,109.0,133.0,142.0,141.0,151.0,165.0,175.0,151.0,192.0,148.0,133.0,119.0,127.0,126.0,153.0,122.0,126.0,102.0,124.0,115.0,113.0,102.0,85.0,93.0,122.0,107.0,119.0,156.0,126.0,138.0,143.0,139.0,118.0,151.0,160.0,132.0,115.0,149.0,118.0,135.0,109.0,100.0,94.0,102.0,98.0,99.0,85.0,82.0,67.0,89.0,96.0,96.0,95.0,66.0,62.0,63.0,61.0,46.0,36.0,42.0,37.0,29.0,29.0,31.0,24.0,19.0,11.0,11.0,6.0,15.0 J83043,14.0,11.0,16.0,23.0,21.0,23.0,33.0,30.0,25.0,37.0,44.0,39.0,34.0,41.0,41.0,40.0,38.0,38.0,35.0,32.0,26.0,33.0,32.0,29.0,43.0,24.0,24.0,25.0,28.0,35.0,18.0,19.0,28.0,26.0,23.0,37.0,27.0,39.0,36.0,41.0,34.0,35.0,28.0,35.0,44.0,37.0,43.0,39.0,38.0,24.0,27.0,43.0,42.0,41.0,50.0,46.0,49.0,58.0,63.0,60.0,54.0,59.0,49.0,57.0,55.0,59.0,47.0,47.0,47.0,46.0,40.0,48.0,36.0,40.0,49.0,39.0,39.0,48.0,53.0,33.0,37.0,39.0,33.0,34.0,17.0,26.0,22.0,10.0,18.0,21.0,13.0,6.0,3.0,5.0,6.0,10.0 J83045,35.0,43.0,46.0,28.0,55.0,37.0,48.0,53.0,74.0,46.0,58.0,62.0,62.0,73.0,65.0,65.0,54.0,47.0,56.0,50.0,48.0,43.0,51.0,57.0,56.0,46.0,43.0,57.0,47.0,58.0,46.0,50.0,51.0,50.0,53.0,43.0,67.0,50.0,47.0,57.0,43.0,55.0,56.0,54.0,64.0,59.0,47.0,35.0,53.0,76.0,58.0,75.0,76.0,80.0,71.0,82.0,78.0,76.0,93.0,83.0,81.0,83.0,70.0,72.0,77.0,67.0,63.0,64.0,63.0,65.0,61.0,70.0,55.0,58.0,47.0,56.0,57.0,60.0,68.0,49.0,53.0,50.0,44.0,26.0,22.0,22.0,20.0,15.0,16.0,12.0,6.0,6.0,8.0,8.0,1.0,8.0 J83046,64.0,73.0,99.0,73.0,76.0,87.0,84.0,89.0,66.0,97.0,104.0,88.0,93.0,110.0,102.0,87.0,104.0,79.0,81.0,80.0,80.0,68.0,82.0,68.0,78.0,80.0,71.0,84.0,87.0,87.0,90.0,69.0,79.0,116.0,102.0,94.0,87.0,92.0,92.0,94.0,84.0,89.0,85.0,63.0,88.0,78.0,78.0,61.0,67.0,90.0,107.0,83.0,94.0,97.0,113.0,114.0,122.0,123.0,123.0,108.0,112.0,109.0,109.0,90.0,98.0,110.0,91.0,89.0,71.0,69.0,74.0,74.0,93.0,77.0,79.0,58.0,60.0,75.0,67.0,62.0,58.0,60.0,46.0,42.0,28.0,26.0,27.0,29.0,19.0,21.0,17.0,5.0,9.0,7.0,1.0,12.0 J83047,41.0,40.0,39.0,55.0,56.0,65.0,51.0,49.0,50.0,56.0,44.0,54.0,71.0,53.0,66.0,46.0,44.0,60.0,48.0,44.0,47.0,39.0,46.0,44.0,40.0,38.0,53.0,45.0,38.0,59.0,64.0,56.0,52.0,55.0,57.0,62.0,51.0,58.0,67.0,60.0,75.0,51.0,53.0,68.0,65.0,60.0,52.0,53.0,51.0,58.0,59.0,63.0,63.0,53.0,52.0,52.0,56.0,45.0,50.0,48.0,64.0,54.0,72.0,55.0,45.0,48.0,49.0,48.0,31.0,38.0,36.0,39.0,37.0,45.0,26.0,42.0,31.0,28.0,32.0,22.0,26.0,28.0,19.0,16.0,12.0,17.0,16.0,14.0,6.0,5.0,1.0,3.0,3.0,5.0,3.0,4.0 J83048,33.0,31.0,34.0,33.0,37.0,43.0,35.0,34.0,43.0,45.0,42.0,43.0,45.0,43.0,49.0,48.0,37.0,38.0,41.0,37.0,27.0,21.0,35.0,38.0,39.0,30.0,41.0,45.0,37.0,48.0,38.0,41.0,39.0,39.0,36.0,44.0,40.0,46.0,42.0,46.0,42.0,34.0,46.0,58.0,46.0,43.0,40.0,35.0,27.0,41.0,42.0,51.0,50.0,36.0,42.0,42.0,33.0,46.0,46.0,46.0,50.0,58.0,47.0,51.0,46.0,38.0,42.0,54.0,32.0,31.0,29.0,34.0,23.0,40.0,22.0,31.0,25.0,29.0,30.0,16.0,22.0,20.0,20.0,14.0,13.0,15.0,13.0,11.0,12.0,6.0,9.0,2.0,2.0,7.0,3.0,4.0 J83049,50.0,50.0,47.0,57.0,40.0,64.0,53.0,55.0,65.0,70.0,74.0,62.0,65.0,80.0,82.0,87.0,60.0,76.0,77.0,72.0,58.0,50.0,54.0,60.0,57.0,48.0,70.0,57.0,75.0,66.0,72.0,47.0,77.0,47.0,70.0,77.0,56.0,79.0,66.0,73.0,76.0,74.0,57.0,57.0,47.0,74.0,70.0,50.0,83.0,55.0,75.0,77.0,98.0,77.0,81.0,86.0,88.0,88.0,89.0,111.0,95.0,106.0,95.0,99.0,95.0,73.0,95.0,76.0,80.0,60.0,66.0,56.0,65.0,59.0,60.0,51.0,55.0,64.0,69.0,43.0,45.0,48.0,40.0,32.0,31.0,27.0,32.0,22.0,23.0,13.0,14.0,9.0,6.0,7.0,6.0,6.0 J83050,49.0,53.0,56.0,73.0,51.0,65.0,83.0,81.0,92.0,100.0,92.0,90.0,99.0,92.0,100.0,97.0,104.0,69.0,98.0,92.0,96.0,92.0,85.0,70.0,72.0,64.0,83.0,70.0,68.0,87.0,75.0,74.0,68.0,80.0,81.0,72.0,87.0,89.0,98.0,83.0,82.0,78.0,62.0,82.0,64.0,85.0,85.0,78.0,74.0,94.0,100.0,108.0,95.0,132.0,126.0,128.0,113.0,132.0,121.0,132.0,128.0,140.0,127.0,112.0,108.0,76.0,109.0,95.0,88.0,71.0,95.0,60.0,77.0,53.0,71.0,66.0,54.0,70.0,80.0,51.0,48.0,58.0,33.0,28.0,36.0,29.0,15.0,22.0,20.0,18.0,11.0,6.0,5.0,4.0,2.0,4.0 J83052,57.0,98.0,90.0,79.0,73.0,98.0,100.0,87.0,102.0,111.0,85.0,115.0,98.0,105.0,82.0,80.0,104.0,86.0,78.0,63.0,71.0,45.0,65.0,58.0,61.0,62.0,67.0,65.0,76.0,90.0,80.0,76.0,88.0,94.0,90.0,100.0,98.0,106.0,83.0,100.0,83.0,86.0,76.0,90.0,83.0,85.0,75.0,57.0,65.0,80.0,96.0,72.0,76.0,75.0,74.0,79.0,84.0,80.0,71.0,78.0,78.0,71.0,74.0,72.0,56.0,52.0,70.0,50.0,62.0,44.0,57.0,52.0,41.0,31.0,37.0,40.0,33.0,45.0,36.0,20.0,28.0,18.0,19.0,21.0,12.0,11.0,12.0,6.0,5.0,7.0,6.0,8.0,2.0,9.0,2.0,4.0 J83053,30.0,25.0,19.0,36.0,25.0,32.0,36.0,30.0,37.0,31.0,52.0,38.0,38.0,51.0,41.0,42.0,45.0,27.0,33.0,33.0,33.0,20.0,33.0,36.0,38.0,33.0,45.0,36.0,52.0,24.0,39.0,41.0,36.0,43.0,46.0,34.0,33.0,45.0,52.0,45.0,35.0,44.0,36.0,52.0,48.0,40.0,31.0,40.0,43.0,34.0,36.0,37.0,59.0,56.0,57.0,54.0,50.0,63.0,54.0,67.0,67.0,62.0,49.0,59.0,59.0,50.0,42.0,53.0,64.0,45.0,37.0,47.0,37.0,50.0,34.0,39.0,48.0,48.0,36.0,36.0,37.0,22.0,19.0,20.0,15.0,27.0,15.0,7.0,14.0,4.0,10.0,5.0,4.0,6.0,3.0,6.0 J83055,24.0,42.0,28.0,42.0,34.0,47.0,48.0,53.0,57.0,67.0,66.0,69.0,76.0,63.0,64.0,76.0,63.0,57.0,53.0,54.0,42.0,45.0,44.0,43.0,57.0,45.0,37.0,43.0,54.0,47.0,51.0,52.0,56.0,50.0,44.0,45.0,53.0,68.0,67.0,55.0,62.0,59.0,67.0,63.0,56.0,62.0,79.0,66.0,38.0,56.0,67.0,59.0,70.0,82.0,61.0,80.0,67.0,61.0,76.0,92.0,73.0,72.0,59.0,75.0,72.0,64.0,61.0,56.0,57.0,57.0,52.0,58.0,63.0,44.0,40.0,56.0,52.0,66.0,49.0,37.0,45.0,23.0,38.0,32.0,23.0,23.0,19.0,17.0,19.0,5.0,12.0,6.0,6.0,4.0,4.0,6.0 J83056,13.0,17.0,20.0,24.0,21.0,20.0,23.0,32.0,26.0,29.0,28.0,23.0,25.0,36.0,29.0,21.0,34.0,27.0,29.0,21.0,34.0,24.0,23.0,26.0,20.0,27.0,20.0,32.0,20.0,25.0,24.0,21.0,32.0,20.0,30.0,20.0,31.0,23.0,27.0,23.0,27.0,28.0,22.0,36.0,30.0,26.0,29.0,29.0,34.0,35.0,39.0,38.0,34.0,26.0,45.0,43.0,47.0,45.0,57.0,54.0,51.0,45.0,45.0,42.0,57.0,48.0,49.0,49.0,46.0,43.0,39.0,40.0,26.0,35.0,43.0,31.0,28.0,38.0,36.0,20.0,18.0,22.0,30.0,16.0,14.0,14.0,14.0,7.0,3.0,2.0,5.0,7.0,4.0,4.0,5.0,6.0 J83057,82.0,99.0,72.0,113.0,102.0,111.0,104.0,120.0,121.0,157.0,132.0,133.0,139.0,139.0,120.0,119.0,134.0,118.0,116.0,105.0,96.0,106.0,92.0,74.0,106.0,102.0,104.0,123.0,109.0,111.0,91.0,126.0,135.0,149.0,134.0,141.0,116.0,133.0,147.0,131.0,126.0,155.0,140.0,143.0,163.0,137.0,139.0,113.0,107.0,130.0,148.0,146.0,123.0,156.0,143.0,136.0,115.0,125.0,124.0,141.0,139.0,132.0,129.0,134.0,111.0,105.0,104.0,102.0,103.0,64.0,80.0,75.0,77.0,57.0,78.0,80.0,64.0,64.0,88.0,65.0,55.0,53.0,49.0,43.0,43.0,43.0,28.0,32.0,30.0,17.0,18.0,14.0,14.0,7.0,4.0,12.0 J83058,14.0,17.0,16.0,12.0,12.0,15.0,22.0,24.0,21.0,22.0,27.0,22.0,24.0,21.0,23.0,14.0,18.0,18.0,11.0,11.0,16.0,22.0,16.0,13.0,26.0,19.0,20.0,19.0,13.0,10.0,20.0,20.0,15.0,20.0,16.0,20.0,19.0,24.0,18.0,15.0,17.0,33.0,20.0,16.0,24.0,20.0,16.0,24.0,21.0,23.0,21.0,21.0,21.0,28.0,29.0,30.0,29.0,27.0,22.0,32.0,45.0,40.0,32.0,38.0,41.0,37.0,35.0,33.0,41.0,37.0,35.0,27.0,27.0,33.0,23.0,33.0,31.0,21.0,31.0,20.0,24.0,14.0,21.0,17.0,21.0,12.0,11.0,11.0,9.0,15.0,5.0,7.0,4.0,4.0,1.0,4.0 J83059,48.0,54.0,43.0,57.0,56.0,56.0,63.0,51.0,68.0,62.0,71.0,62.0,48.0,66.0,69.0,49.0,63.0,55.0,43.0,50.0,41.0,30.0,40.0,38.0,37.0,49.0,47.0,46.0,52.0,41.0,61.0,58.0,50.0,49.0,52.0,75.0,72.0,62.0,68.0,88.0,59.0,68.0,74.0,57.0,70.0,56.0,64.0,54.0,66.0,58.0,54.0,58.0,57.0,58.0,51.0,60.0,58.0,59.0,62.0,80.0,75.0,60.0,65.0,59.0,56.0,55.0,55.0,39.0,46.0,44.0,39.0,40.0,33.0,37.0,35.0,35.0,31.0,38.0,39.0,26.0,24.0,30.0,25.0,14.0,18.0,18.0,11.0,19.0,24.0,18.0,8.0,11.0,5.0,4.0,7.0,6.0 J83060,16.0,22.0,23.0,19.0,17.0,24.0,27.0,26.0,17.0,19.0,22.0,28.0,26.0,23.0,26.0,31.0,19.0,24.0,25.0,19.0,17.0,19.0,31.0,18.0,25.0,25.0,18.0,27.0,20.0,24.0,22.0,19.0,26.0,25.0,18.0,22.0,18.0,24.0,17.0,20.0,18.0,16.0,23.0,27.0,25.0,22.0,25.0,20.0,29.0,22.0,18.0,24.0,26.0,33.0,22.0,37.0,24.0,35.0,39.0,42.0,41.0,43.0,37.0,49.0,39.0,43.0,42.0,22.0,54.0,38.0,26.0,43.0,40.0,33.0,41.0,37.0,37.0,41.0,43.0,31.0,37.0,39.0,29.0,20.0,19.0,24.0,14.0,20.0,12.0,8.0,3.0,3.0,1.0,6.0,5.0,10.0 J83064,58.0,78.0,65.0,54.0,77.0,76.0,70.0,84.0,75.0,94.0,61.0,85.0,88.0,82.0,78.0,85.0,90.0,76.0,88.0,86.0,76.0,67.0,63.0,62.0,54.0,55.0,68.0,67.0,79.0,60.0,83.0,76.0,82.0,101.0,95.0,87.0,106.0,105.0,108.0,98.0,100.0,99.0,87.0,98.0,106.0,98.0,81.0,72.0,74.0,65.0,76.0,67.0,73.0,86.0,85.0,85.0,69.0,69.0,71.0,60.0,67.0,75.0,78.0,72.0,80.0,76.0,67.0,70.0,66.0,59.0,58.0,49.0,41.0,44.0,38.0,30.0,35.0,36.0,26.0,28.0,18.0,21.0,14.0,15.0,13.0,14.0,8.0,10.0,7.0,4.0,4.0,3.0,2.0,4.0,3.0,1.0 J83601,17.0,9.0,16.0,11.0,20.0,12.0,15.0,24.0,21.0,19.0,19.0,25.0,22.0,25.0,30.0,24.0,26.0,20.0,27.0,16.0,17.0,17.0,24.0,24.0,16.0,14.0,26.0,12.0,21.0,13.0,18.0,22.0,17.0,12.0,17.0,15.0,26.0,22.0,20.0,17.0,20.0,19.0,12.0,26.0,20.0,17.0,21.0,20.0,26.0,24.0,28.0,27.0,31.0,33.0,27.0,29.0,29.0,40.0,34.0,36.0,47.0,54.0,35.0,29.0,40.0,32.0,30.0,23.0,30.0,28.0,31.0,32.0,31.0,24.0,20.0,31.0,24.0,28.0,27.0,21.0,27.0,8.0,12.0,9.0,13.0,9.0,9.0,8.0,15.0,7.0,2.0,2.0,1.0,2.0,5.0,3.0 J83603,10.0,11.0,20.0,23.0,17.0,15.0,21.0,18.0,31.0,26.0,19.0,35.0,31.0,25.0,24.0,31.0,26.0,28.0,23.0,26.0,19.0,23.0,22.0,16.0,22.0,24.0,24.0,20.0,15.0,9.0,26.0,22.0,26.0,17.0,16.0,22.0,29.0,29.0,26.0,27.0,21.0,20.0,18.0,34.0,27.0,22.0,25.0,32.0,25.0,18.0,26.0,34.0,42.0,38.0,47.0,39.0,47.0,51.0,30.0,42.0,40.0,44.0,36.0,38.0,50.0,48.0,45.0,31.0,45.0,33.0,42.0,21.0,35.0,21.0,27.0,25.0,29.0,35.0,33.0,23.0,26.0,24.0,16.0,13.0,11.0,12.0,10.0,6.0,6.0,5.0,10.0,5.0,4.0,1.0,1.0,2.0 J83609,17.0,12.0,17.0,15.0,21.0,14.0,18.0,25.0,14.0,22.0,23.0,15.0,20.0,26.0,18.0,18.0,19.0,16.0,13.0,7.0,13.0,21.0,10.0,8.0,11.0,13.0,15.0,12.0,9.0,19.0,22.0,17.0,14.0,14.0,19.0,12.0,24.0,14.0,23.0,17.0,23.0,16.0,22.0,17.0,23.0,23.0,15.0,17.0,23.0,36.0,28.0,21.0,34.0,34.0,23.0,15.0,19.0,20.0,39.0,25.0,39.0,24.0,29.0,25.0,24.0,22.0,20.0,22.0,19.0,18.0,18.0,24.0,23.0,25.0,25.0,21.0,19.0,28.0,22.0,19.0,11.0,15.0,16.0,6.0,10.0,6.0,5.0,2.0,2.0,2.0,2.0,3.0,2.0,2.0,1.0,1.0 J83615,10.0,8.0,18.0,10.0,11.0,14.0,22.0,11.0,15.0,22.0,21.0,23.0,21.0,21.0,25.0,16.0,21.0,17.0,17.0,22.0,26.0,18.0,17.0,11.0,19.0,9.0,26.0,14.0,21.0,14.0,9.0,10.0,14.0,11.0,6.0,11.0,12.0,16.0,19.0,22.0,12.0,19.0,19.0,17.0,16.0,19.0,19.0,29.0,22.0,25.0,23.0,29.0,27.0,34.0,25.0,27.0,35.0,25.0,37.0,31.0,33.0,38.0,26.0,30.0,27.0,18.0,33.0,28.0,23.0,20.0,20.0,29.0,22.0,28.0,27.0,16.0,18.0,18.0,21.0,11.0,19.0,10.0,13.0,11.0,13.0,15.0,4.0,13.0,6.0,1.0,5.0,7.0,1.0,4.0,2.0,2.0 J83618,11.0,15.0,12.0,21.0,14.0,17.0,14.0,17.0,18.0,13.0,17.0,24.0,27.0,25.0,23.0,22.0,10.0,30.0,20.0,19.0,10.0,19.0,19.0,7.0,17.0,11.0,10.0,15.0,11.0,11.0,13.0,13.0,21.0,13.0,14.0,15.0,15.0,14.0,16.0,16.0,10.0,13.0,14.0,29.0,21.0,18.0,17.0,23.0,13.0,24.0,28.0,28.0,31.0,24.0,30.0,30.0,24.0,29.0,32.0,34.0,26.0,26.0,39.0,37.0,33.0,37.0,25.0,18.0,14.0,20.0,18.0,10.0,18.0,13.0,22.0,16.0,19.0,28.0,30.0,9.0,26.0,20.0,18.0,9.0,7.0,11.0,6.0,5.0,2.0,6.0,5.0,1.0,,1.0,1.0,4.0 J83619,5.0,2.0,9.0,17.0,7.0,12.0,13.0,18.0,21.0,17.0,15.0,13.0,22.0,16.0,15.0,15.0,20.0,19.0,17.0,13.0,9.0,14.0,14.0,16.0,18.0,12.0,9.0,17.0,8.0,16.0,13.0,13.0,14.0,14.0,8.0,15.0,15.0,18.0,21.0,18.0,15.0,15.0,14.0,18.0,17.0,17.0,21.0,16.0,21.0,26.0,25.0,22.0,26.0,21.0,20.0,36.0,18.0,23.0,20.0,44.0,43.0,27.0,27.0,27.0,33.0,35.0,32.0,25.0,14.0,13.0,14.0,21.0,19.0,16.0,22.0,22.0,26.0,28.0,26.0,24.0,15.0,29.0,10.0,9.0,10.0,8.0,4.0,8.0,6.0,5.0,3.0,2.0,1.0,2.0,,1.0 J83625,30.0,28.0,31.0,49.0,39.0,33.0,46.0,33.0,45.0,40.0,39.0,51.0,53.0,54.0,52.0,68.0,49.0,51.0,46.0,55.0,47.0,49.0,32.0,62.0,52.0,53.0,56.0,65.0,64.0,53.0,63.0,54.0,67.0,61.0,53.0,45.0,61.0,47.0,53.0,67.0,48.0,49.0,39.0,34.0,42.0,52.0,51.0,33.0,38.0,57.0,55.0,53.0,57.0,65.0,58.0,67.0,76.0,60.0,73.0,69.0,64.0,78.0,68.0,68.0,61.0,66.0,62.0,57.0,54.0,45.0,25.0,42.0,31.0,38.0,27.0,27.0,31.0,26.0,25.0,16.0,15.0,17.0,19.0,12.0,8.0,5.0,9.0,8.0,3.0,6.0,1.0,1.0,9.0,1.0,2.0,4.0 J83629,7.0,9.0,3.0,7.0,3.0,8.0,12.0,14.0,7.0,11.0,2.0,9.0,12.0,10.0,11.0,9.0,17.0,8.0,11.0,9.0,9.0,7.0,6.0,5.0,15.0,5.0,7.0,6.0,4.0,8.0,5.0,15.0,7.0,9.0,13.0,9.0,6.0,9.0,9.0,8.0,9.0,10.0,15.0,15.0,8.0,12.0,6.0,8.0,9.0,9.0,14.0,21.0,13.0,23.0,22.0,20.0,17.0,10.0,16.0,15.0,24.0,17.0,20.0,19.0,23.0,26.0,26.0,16.0,21.0,18.0,18.0,19.0,23.0,23.0,19.0,16.0,19.0,19.0,25.0,11.0,15.0,20.0,9.0,12.0,10.0,8.0,10.0,5.0,4.0,3.0,4.0,2.0,5.0,1.0,1.0,3.0 J83630,8.0,8.0,9.0,5.0,7.0,6.0,8.0,10.0,11.0,13.0,13.0,14.0,16.0,22.0,8.0,17.0,13.0,8.0,17.0,13.0,8.0,7.0,12.0,12.0,11.0,8.0,7.0,12.0,7.0,11.0,9.0,7.0,17.0,6.0,15.0,6.0,10.0,19.0,7.0,9.0,7.0,8.0,16.0,5.0,13.0,10.0,14.0,13.0,16.0,12.0,18.0,20.0,18.0,8.0,15.0,18.0,12.0,31.0,20.0,14.0,25.0,25.0,18.0,15.0,16.0,18.0,22.0,19.0,25.0,24.0,23.0,12.0,24.0,19.0,25.0,16.0,22.0,26.0,20.0,11.0,14.0,19.0,14.0,9.0,7.0,10.0,9.0,13.0,5.0,1.0,7.0,2.0,4.0,1.0,1.0,3.0 J83633,41.0,45.0,46.0,43.0,45.0,69.0,55.0,65.0,52.0,54.0,44.0,74.0,57.0,47.0,74.0,51.0,57.0,53.0,42.0,38.0,38.0,50.0,58.0,49.0,45.0,58.0,64.0,81.0,100.0,89.0,102.0,103.0,104.0,112.0,105.0,93.0,128.0,98.0,119.0,83.0,99.0,92.0,75.0,91.0,54.0,75.0,84.0,66.0,73.0,43.0,89.0,68.0,74.0,63.0,85.0,63.0,78.0,72.0,65.0,62.0,69.0,62.0,60.0,72.0,56.0,65.0,55.0,57.0,45.0,50.0,46.0,44.0,41.0,42.0,50.0,34.0,41.0,38.0,34.0,37.0,23.0,25.0,21.0,14.0,12.0,17.0,14.0,11.0,11.0,11.0,6.0,5.0,4.0,4.0,1.0,4.0 J83645,7.0,18.0,25.0,20.0,23.0,16.0,19.0,25.0,24.0,24.0,20.0,33.0,27.0,35.0,19.0,28.0,27.0,31.0,29.0,22.0,16.0,21.0,21.0,27.0,22.0,17.0,26.0,31.0,31.0,32.0,34.0,34.0,40.0,27.0,37.0,37.0,25.0,29.0,35.0,28.0,32.0,30.0,26.0,23.0,24.0,29.0,33.0,33.0,34.0,32.0,28.0,38.0,28.0,33.0,34.0,36.0,37.0,28.0,52.0,35.0,30.0,18.0,39.0,30.0,22.0,44.0,24.0,23.0,20.0,22.0,11.0,17.0,16.0,17.0,16.0,17.0,18.0,21.0,12.0,7.0,13.0,7.0,6.0,7.0,3.0,2.0,1.0,5.0,4.0,5.0,1.0,3.0,,1.0,1.0,2.0 J83646,42.0,30.0,41.0,40.0,45.0,39.0,45.0,49.0,44.0,47.0,50.0,51.0,44.0,57.0,46.0,45.0,40.0,47.0,33.0,37.0,39.0,43.0,35.0,40.0,51.0,61.0,49.0,61.0,77.0,68.0,63.0,82.0,94.0,87.0,88.0,91.0,89.0,92.0,95.0,93.0,85.0,66.0,91.0,69.0,78.0,75.0,80.0,61.0,63.0,55.0,59.0,53.0,57.0,51.0,54.0,59.0,60.0,48.0,60.0,45.0,39.0,41.0,44.0,38.0,34.0,33.0,31.0,27.0,25.0,19.0,31.0,17.0,30.0,24.0,17.0,18.0,20.0,12.0,20.0,14.0,11.0,8.0,8.0,6.0,5.0,4.0,12.0,4.0,5.0,4.0,5.0,4.0,3.0,1.0,,5.0 K84012,55.0,62.0,55.0,58.0,54.0,84.0,55.0,68.0,73.0,78.0,72.0,75.0,83.0,73.0,67.0,67.0,44.0,55.0,62.0,45.0,44.0,41.0,37.0,37.0,45.0,26.0,28.0,32.0,39.0,37.0,46.0,34.0,49.0,46.0,56.0,39.0,55.0,46.0,43.0,51.0,47.0,40.0,45.0,41.0,38.0,39.0,42.0,36.0,40.0,46.0,48.0,48.0,56.0,52.0,48.0,56.0,69.0,62.0,55.0,52.0,62.0,66.0,60.0,57.0,55.0,49.0,42.0,45.0,49.0,42.0,29.0,29.0,31.0,52.0,37.0,37.0,30.0,43.0,33.0,23.0,34.0,26.0,28.0,17.0,19.0,16.0,7.0,16.0,8.0,6.0,5.0,3.0,2.0,,2.0,2.0 L81010,39.0,44.0,60.0,53.0,42.0,43.0,47.0,54.0,55.0,40.0,49.0,43.0,44.0,63.0,43.0,47.0,50.0,44.0,47.0,39.0,39.0,38.0,51.0,43.0,60.0,46.0,48.0,47.0,61.0,54.0,54.0,72.0,53.0,64.0,70.0,60.0,58.0,82.0,62.0,68.0,48.0,61.0,51.0,54.0,57.0,49.0,46.0,53.0,35.0,45.0,50.0,33.0,46.0,43.0,47.0,44.0,53.0,65.0,54.0,50.0,68.0,57.0,49.0,47.0,58.0,44.0,36.0,43.0,37.0,33.0,51.0,37.0,45.0,28.0,30.0,26.0,28.0,30.0,31.0,19.0,16.0,15.0,21.0,16.0,13.0,10.0,10.0,10.0,7.0,7.0,6.0,2.0,1.0,2.0,3.0,2.0 L81020,36.0,29.0,34.0,29.0,32.0,40.0,31.0,43.0,38.0,42.0,41.0,37.0,42.0,46.0,53.0,43.0,49.0,56.0,55.0,56.0,34.0,56.0,66.0,77.0,76.0,91.0,81.0,96.0,83.0,86.0,91.0,65.0,66.0,81.0,68.0,68.0,71.0,73.0,65.0,62.0,63.0,61.0,59.0,56.0,69.0,57.0,59.0,57.0,44.0,52.0,73.0,70.0,77.0,61.0,61.0,64.0,62.0,53.0,62.0,68.0,58.0,59.0,53.0,57.0,58.0,44.0,53.0,56.0,51.0,42.0,42.0,56.0,40.0,36.0,45.0,31.0,42.0,35.0,40.0,27.0,23.0,16.0,17.0,15.0,12.0,7.0,7.0,12.0,12.0,5.0,8.0,3.0,2.0,2.0,2.0,8.0 L81025,60.0,68.0,62.0,83.0,103.0,89.0,96.0,90.0,114.0,127.0,101.0,137.0,130.0,123.0,134.0,118.0,111.0,129.0,108.0,100.0,88.0,89.0,84.0,92.0,88.0,105.0,110.0,112.0,109.0,107.0,101.0,98.0,111.0,118.0,110.0,140.0,117.0,106.0,90.0,111.0,96.0,98.0,115.0,116.0,108.0,102.0,117.0,113.0,101.0,106.0,110.0,112.0,136.0,117.0,131.0,143.0,127.0,140.0,108.0,143.0,164.0,161.0,121.0,130.0,111.0,111.0,119.0,122.0,112.0,96.0,90.0,94.0,95.0,106.0,88.0,100.0,97.0,112.0,105.0,76.0,97.0,56.0,65.0,68.0,55.0,55.0,54.0,40.0,38.0,22.0,24.0,17.0,15.0,14.0,9.0,17.0 L81027,28.0,34.0,38.0,30.0,30.0,37.0,36.0,45.0,38.0,59.0,50.0,60.0,65.0,50.0,58.0,55.0,53.0,53.0,43.0,39.0,40.0,31.0,46.0,35.0,36.0,29.0,42.0,35.0,37.0,39.0,38.0,49.0,33.0,40.0,50.0,38.0,51.0,55.0,40.0,58.0,42.0,49.0,49.0,48.0,49.0,67.0,59.0,50.0,49.0,56.0,64.0,53.0,57.0,65.0,76.0,76.0,67.0,64.0,67.0,59.0,74.0,63.0,63.0,66.0,62.0,56.0,54.0,53.0,44.0,48.0,35.0,36.0,49.0,42.0,37.0,53.0,49.0,45.0,39.0,41.0,47.0,29.0,29.0,33.0,23.0,25.0,20.0,23.0,12.0,18.0,4.0,13.0,1.0,7.0,2.0,7.0 L81030,27.0,24.0,22.0,24.0,40.0,38.0,38.0,38.0,35.0,45.0,32.0,33.0,42.0,48.0,46.0,32.0,39.0,51.0,35.0,41.0,38.0,36.0,30.0,39.0,34.0,31.0,26.0,41.0,41.0,37.0,26.0,40.0,41.0,36.0,34.0,32.0,47.0,42.0,42.0,46.0,37.0,36.0,47.0,35.0,49.0,45.0,39.0,39.0,41.0,50.0,47.0,42.0,50.0,43.0,60.0,42.0,57.0,53.0,59.0,56.0,48.0,58.0,48.0,52.0,51.0,43.0,55.0,46.0,35.0,42.0,36.0,41.0,44.0,41.0,20.0,43.0,42.0,47.0,31.0,18.0,24.0,29.0,22.0,12.0,19.0,16.0,15.0,11.0,4.0,7.0,5.0,2.0,5.0,5.0,1.0,2.0 L81039,69.0,100.0,76.0,107.0,100.0,118.0,113.0,110.0,89.0,112.0,120.0,139.0,125.0,106.0,130.0,134.0,106.0,127.0,143.0,135.0,157.0,167.0,197.0,179.0,195.0,184.0,197.0,225.0,214.0,214.0,219.0,213.0,180.0,194.0,182.0,199.0,219.0,183.0,189.0,189.0,198.0,173.0,182.0,176.0,175.0,172.0,184.0,142.0,158.0,134.0,185.0,191.0,178.0,186.0,175.0,198.0,186.0,173.0,210.0,192.0,194.0,166.0,182.0,173.0,176.0,141.0,142.0,130.0,144.0,130.0,128.0,96.0,114.0,102.0,95.0,98.0,120.0,114.0,130.0,78.0,104.0,66.0,57.0,64.0,53.0,42.0,40.0,42.0,31.0,31.0,25.0,14.0,15.0,10.0,14.0,22.0 L81045,69.0,90.0,110.0,102.0,132.0,109.0,110.0,120.0,140.0,113.0,101.0,119.0,122.0,102.0,116.0,109.0,109.0,104.0,98.0,88.0,74.0,70.0,69.0,76.0,90.0,95.0,89.0,100.0,98.0,109.0,96.0,116.0,115.0,132.0,146.0,122.0,169.0,144.0,135.0,137.0,123.0,143.0,96.0,116.0,120.0,120.0,152.0,102.0,106.0,116.0,114.0,122.0,130.0,125.0,123.0,132.0,116.0,106.0,115.0,112.0,120.0,123.0,112.0,112.0,103.0,106.0,111.0,120.0,99.0,104.0,96.0,93.0,93.0,83.0,104.0,120.0,100.0,115.0,131.0,104.0,92.0,83.0,90.0,63.0,47.0,48.0,43.0,44.0,28.0,36.0,29.0,20.0,18.0,13.0,5.0,21.0 L81059,40.0,42.0,47.0,55.0,47.0,56.0,56.0,61.0,55.0,67.0,50.0,65.0,62.0,62.0,63.0,56.0,45.0,46.0,52.0,38.0,32.0,52.0,43.0,37.0,38.0,37.0,35.0,40.0,48.0,39.0,49.0,51.0,47.0,72.0,56.0,59.0,76.0,71.0,63.0,77.0,58.0,51.0,66.0,50.0,72.0,53.0,54.0,47.0,41.0,52.0,52.0,62.0,67.0,54.0,55.0,48.0,72.0,62.0,69.0,66.0,67.0,49.0,59.0,48.0,61.0,64.0,51.0,49.0,40.0,48.0,40.0,42.0,35.0,48.0,48.0,36.0,57.0,42.0,59.0,35.0,33.0,25.0,28.0,25.0,17.0,17.0,22.0,22.0,11.0,10.0,8.0,3.0,2.0,6.0,,10.0 L81065,61.0,66.0,75.0,68.0,79.0,76.0,104.0,87.0,78.0,91.0,108.0,98.0,92.0,91.0,124.0,164.0,143.0,134.0,144.0,99.0,76.0,93.0,84.0,70.0,92.0,87.0,80.0,81.0,83.0,64.0,72.0,74.0,65.0,70.0,82.0,89.0,88.0,85.0,80.0,86.0,89.0,81.0,71.0,80.0,85.0,96.0,75.0,82.0,81.0,81.0,69.0,71.0,79.0,91.0,95.0,86.0,78.0,77.0,92.0,84.0,86.0,73.0,77.0,67.0,56.0,64.0,74.0,73.0,54.0,61.0,53.0,60.0,56.0,54.0,55.0,40.0,56.0,53.0,60.0,49.0,43.0,41.0,28.0,20.0,22.0,30.0,31.0,19.0,20.0,15.0,14.0,8.0,13.0,4.0,4.0,13.0 L81068,35.0,33.0,27.0,29.0,35.0,36.0,41.0,54.0,49.0,43.0,43.0,45.0,53.0,64.0,81.0,76.0,70.0,68.0,57.0,63.0,65.0,58.0,84.0,75.0,112.0,112.0,111.0,107.0,112.0,106.0,105.0,122.0,101.0,106.0,95.0,84.0,107.0,114.0,91.0,106.0,76.0,76.0,88.0,97.0,105.0,76.0,74.0,85.0,94.0,66.0,74.0,94.0,115.0,91.0,92.0,95.0,83.0,93.0,106.0,107.0,111.0,83.0,81.0,77.0,81.0,89.0,94.0,76.0,76.0,68.0,62.0,70.0,53.0,54.0,51.0,57.0,68.0,61.0,63.0,39.0,55.0,41.0,33.0,34.0,24.0,23.0,23.0,19.0,21.0,11.0,10.0,6.0,4.0,4.0,10.0,8.0 L81069,28.0,47.0,38.0,44.0,63.0,43.0,57.0,44.0,64.0,60.0,56.0,49.0,58.0,71.0,45.0,52.0,45.0,40.0,48.0,46.0,71.0,65.0,62.0,62.0,54.0,50.0,70.0,55.0,55.0,46.0,78.0,52.0,72.0,76.0,70.0,54.0,58.0,62.0,61.0,83.0,67.0,61.0,68.0,56.0,63.0,41.0,54.0,39.0,44.0,49.0,46.0,48.0,56.0,46.0,58.0,49.0,60.0,39.0,51.0,56.0,40.0,55.0,38.0,47.0,42.0,39.0,38.0,33.0,27.0,35.0,28.0,30.0,21.0,20.0,24.0,25.0,28.0,25.0,36.0,23.0,23.0,14.0,14.0,11.0,11.0,9.0,3.0,7.0,7.0,6.0,6.0,3.0,3.0,3.0,1.0,3.0 L81070,30.0,43.0,31.0,42.0,41.0,41.0,38.0,48.0,50.0,45.0,45.0,49.0,50.0,43.0,52.0,44.0,48.0,51.0,58.0,53.0,42.0,39.0,46.0,56.0,42.0,61.0,47.0,42.0,53.0,60.0,50.0,43.0,77.0,65.0,68.0,67.0,71.0,50.0,53.0,65.0,54.0,56.0,49.0,62.0,45.0,61.0,61.0,54.0,46.0,58.0,55.0,60.0,53.0,63.0,61.0,61.0,59.0,55.0,90.0,63.0,50.0,61.0,53.0,65.0,53.0,44.0,56.0,46.0,38.0,34.0,39.0,41.0,42.0,37.0,36.0,48.0,44.0,39.0,40.0,32.0,28.0,26.0,30.0,23.0,19.0,9.0,20.0,15.0,20.0,10.0,10.0,8.0,4.0,6.0,4.0,8.0 L81071,54.0,31.0,41.0,42.0,45.0,39.0,49.0,50.0,40.0,62.0,51.0,56.0,57.0,67.0,69.0,64.0,62.0,67.0,98.0,175.0,192.0,181.0,153.0,124.0,140.0,138.0,140.0,154.0,130.0,129.0,118.0,111.0,97.0,99.0,84.0,88.0,89.0,81.0,89.0,72.0,88.0,79.0,57.0,72.0,77.0,72.0,83.0,81.0,75.0,70.0,71.0,89.0,73.0,81.0,85.0,82.0,98.0,85.0,71.0,96.0,96.0,87.0,84.0,101.0,73.0,59.0,66.0,58.0,49.0,50.0,61.0,51.0,59.0,42.0,37.0,37.0,54.0,61.0,50.0,23.0,28.0,28.0,26.0,18.0,19.0,19.0,12.0,12.0,16.0,17.0,8.0,10.0,5.0,5.0,1.0,13.0 L81072,22.0,45.0,54.0,47.0,52.0,62.0,64.0,54.0,48.0,67.0,76.0,67.0,67.0,61.0,73.0,60.0,73.0,59.0,62.0,60.0,30.0,47.0,47.0,48.0,56.0,47.0,51.0,40.0,48.0,49.0,46.0,58.0,42.0,59.0,51.0,58.0,40.0,52.0,50.0,54.0,64.0,64.0,65.0,63.0,67.0,55.0,72.0,54.0,61.0,69.0,70.0,78.0,63.0,75.0,83.0,75.0,71.0,65.0,61.0,99.0,72.0,110.0,82.0,88.0,69.0,56.0,62.0,65.0,57.0,60.0,66.0,41.0,56.0,54.0,51.0,55.0,56.0,67.0,74.0,53.0,66.0,50.0,41.0,31.0,39.0,25.0,24.0,18.0,18.0,9.0,15.0,9.0,6.0,3.0,4.0,7.0 L81073,37.0,37.0,47.0,37.0,43.0,42.0,40.0,44.0,45.0,33.0,42.0,51.0,50.0,52.0,40.0,56.0,48.0,53.0,53.0,42.0,34.0,39.0,44.0,41.0,52.0,48.0,44.0,48.0,51.0,41.0,64.0,60.0,61.0,50.0,61.0,49.0,74.0,60.0,48.0,54.0,54.0,66.0,57.0,50.0,58.0,42.0,47.0,41.0,44.0,45.0,42.0,48.0,37.0,54.0,39.0,47.0,54.0,63.0,48.0,42.0,55.0,45.0,55.0,49.0,43.0,53.0,36.0,47.0,42.0,50.0,48.0,39.0,24.0,26.0,39.0,33.0,40.0,41.0,35.0,27.0,19.0,25.0,25.0,18.0,15.0,22.0,18.0,16.0,10.0,7.0,6.0,9.0,9.0,5.0,7.0,3.0 L81122,22.0,20.0,35.0,26.0,28.0,40.0,26.0,36.0,35.0,42.0,28.0,35.0,25.0,36.0,38.0,29.0,29.0,32.0,32.0,15.0,27.0,25.0,26.0,25.0,27.0,23.0,24.0,20.0,26.0,14.0,29.0,24.0,30.0,29.0,29.0,32.0,30.0,41.0,34.0,32.0,36.0,31.0,27.0,34.0,31.0,38.0,32.0,29.0,26.0,39.0,35.0,27.0,39.0,33.0,44.0,29.0,36.0,58.0,34.0,36.0,47.0,44.0,34.0,37.0,34.0,41.0,43.0,39.0,45.0,32.0,33.0,34.0,39.0,30.0,45.0,44.0,34.0,37.0,26.0,28.0,30.0,20.0,25.0,20.0,15.0,15.0,21.0,10.0,11.0,8.0,6.0,5.0,5.0,4.0,,4.0 L81123,16.0,23.0,17.0,29.0,23.0,17.0,30.0,23.0,31.0,43.0,31.0,44.0,24.0,35.0,35.0,44.0,35.0,30.0,40.0,31.0,30.0,42.0,35.0,33.0,30.0,41.0,39.0,30.0,30.0,32.0,38.0,37.0,36.0,36.0,38.0,35.0,37.0,39.0,42.0,30.0,30.0,35.0,31.0,36.0,36.0,29.0,29.0,40.0,24.0,45.0,42.0,48.0,41.0,59.0,43.0,59.0,44.0,40.0,45.0,41.0,40.0,47.0,41.0,35.0,33.0,41.0,43.0,38.0,35.0,34.0,28.0,30.0,32.0,33.0,29.0,24.0,27.0,27.0,38.0,19.0,22.0,22.0,11.0,19.0,14.0,13.0,9.0,9.0,7.0,5.0,6.0,1.0,2.0,1.0,3.0,7.0 L81132,24.0,34.0,29.0,37.0,36.0,45.0,24.0,39.0,33.0,32.0,35.0,47.0,41.0,38.0,45.0,43.0,35.0,38.0,32.0,31.0,35.0,24.0,30.0,31.0,31.0,33.0,30.0,34.0,20.0,23.0,33.0,39.0,46.0,32.0,50.0,44.0,42.0,38.0,45.0,35.0,33.0,32.0,30.0,24.0,39.0,31.0,25.0,21.0,36.0,23.0,29.0,35.0,41.0,37.0,29.0,29.0,27.0,35.0,37.0,33.0,34.0,31.0,37.0,29.0,36.0,23.0,29.0,31.0,19.0,22.0,16.0,18.0,20.0,17.0,24.0,21.0,25.0,17.0,19.0,14.0,17.0,12.0,5.0,4.0,6.0,3.0,4.0,4.0,4.0,4.0,1.0,1.0,1.0,2.0,,2.0 L81617,4.0,3.0,2.0,3.0,6.0,4.0,3.0,2.0,8.0,8.0,6.0,5.0,2.0,5.0,1.0,4.0,4.0,6.0,412.0,1028.0,1108.0,866.0,813.0,585.0,512.0,365.0,281.0,232.0,187.0,124.0,107.0,76.0,67.0,43.0,45.0,34.0,32.0,36.0,26.0,37.0,20.0,13.0,7.0,10.0,15.0,7.0,12.0,11.0,7.0,7.0,10.0,4.0,10.0,7.0,11.0,4.0,6.0,4.0,8.0,5.0,9.0,9.0,10.0,5.0,7.0,2.0,6.0,4.0,3.0,1.0,5.0,5.0,4.0,4.0,5.0,2.0,4.0,5.0,2.0,1.0,,2.0,2.0,1.0,,1.0,,,,,,,1.0,,, L81644,43.0,44.0,48.0,52.0,61.0,47.0,50.0,68.0,68.0,56.0,59.0,50.0,72.0,67.0,58.0,81.0,66.0,65.0,47.0,55.0,48.0,43.0,48.0,37.0,49.0,37.0,59.0,57.0,61.0,57.0,56.0,61.0,73.0,71.0,66.0,89.0,77.0,81.0,73.0,56.0,67.0,66.0,64.0,76.0,47.0,76.0,75.0,65.0,69.0,62.0,48.0,55.0,75.0,73.0,64.0,46.0,56.0,46.0,58.0,53.0,37.0,49.0,36.0,37.0,50.0,54.0,40.0,27.0,35.0,34.0,24.0,17.0,22.0,28.0,34.0,16.0,22.0,22.0,15.0,12.0,20.0,15.0,20.0,19.0,12.0,10.0,21.0,13.0,8.0,7.0,11.0,4.0,4.0,5.0,5.0,11.0 Y01845,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,2.0,1.0,1.0,1.0,,2.0,2.0,,1.0,,2.0,2.0,2.0,,,,1.0,,,1.0,,2.0,1.0,,,3.0,1.0,,2.0,3.0,1.0,,2.0,,1.0,,,,,,,,,,,1.0,,,,1.0,,1.0,,,,,,,,,,,,,,, Y03671,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, Y04543,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,1.0,,1.0,,1.0,2.0,2.0,,1.0,,,2.0,1.0,,1.0,2.0,3.0,1.0,1.0,,1.0,3.0,,,3.0,,2.0,,,,,2.0,,,2.0,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 K83002,172.0,217.0,227.0,266.0,268.0,284.0,248.0,235.0,296.0,345.0,314.0,333.0,294.0,322.0,341.0,339.0,324.0,328.0,299.0,249.0,245.0,242.0,245.0,212.0,243.0,265.0,290.0,270.0,314.0,297.0,311.0,307.0,377.0,429.0,412.0,398.0,430.0,409.0,419.0,399.0,448.0,448.0,405.0,431.0,429.0,381.0,333.0,323.0,303.0,322.0,293.0,272.0,309.0,315.0,317.0,317.0,303.0,294.0,292.0,317.0,311.0,301.0,312.0,296.0,283.0,251.0,232.0,236.0,207.0,194.0,184.0,193.0,156.0,158.0,126.0,151.0,132.0,153.0,134.0,103.0,112.0,82.0,88.0,78.0,69.0,47.0,49.0,55.0,23.0,30.0,26.0,17.0,12.0,11.0,3.0,15.0 K83003,45.0,37.0,49.0,47.0,53.0,53.0,62.0,51.0,71.0,61.0,50.0,50.0,69.0,57.0,64.0,60.0,53.0,65.0,45.0,55.0,50.0,48.0,40.0,54.0,49.0,57.0,71.0,70.0,68.0,50.0,90.0,60.0,84.0,77.0,67.0,80.0,78.0,86.0,81.0,85.0,87.0,84.0,89.0,67.0,69.0,71.0,73.0,73.0,55.0,67.0,66.0,52.0,57.0,59.0,73.0,67.0,70.0,58.0,61.0,73.0,60.0,77.0,65.0,53.0,47.0,63.0,50.0,50.0,41.0,37.0,47.0,34.0,38.0,40.0,26.0,32.0,28.0,41.0,37.0,29.0,26.0,24.0,24.0,26.0,20.0,19.0,14.0,10.0,14.0,4.0,13.0,6.0,6.0,,3.0,1.0 K83005,69.0,71.0,86.0,96.0,79.0,92.0,93.0,110.0,107.0,112.0,107.0,112.0,119.0,111.0,111.0,108.0,103.0,99.0,97.0,88.0,75.0,76.0,75.0,84.0,79.0,96.0,93.0,97.0,91.0,99.0,109.0,118.0,95.0,126.0,131.0,129.0,133.0,126.0,118.0,128.0,117.0,98.0,112.0,107.0,106.0,91.0,88.0,80.0,90.0,103.0,85.0,85.0,95.0,85.0,94.0,96.0,94.0,88.0,103.0,84.0,78.0,73.0,80.0,60.0,72.0,70.0,65.0,56.0,56.0,60.0,53.0,52.0,56.0,36.0,44.0,41.0,51.0,43.0,42.0,31.0,39.0,32.0,35.0,25.0,15.0,13.0,9.0,14.0,8.0,5.0,9.0,7.0,8.0,9.0,1.0,8.0 K83006,42.0,44.0,39.0,34.0,49.0,59.0,56.0,47.0,57.0,49.0,70.0,63.0,67.0,66.0,57.0,92.0,69.0,74.0,55.0,68.0,47.0,63.0,67.0,50.0,67.0,56.0,52.0,53.0,50.0,52.0,62.0,62.0,61.0,49.0,89.0,57.0,72.0,69.0,65.0,62.0,53.0,76.0,79.0,72.0,63.0,72.0,80.0,61.0,78.0,67.0,61.0,72.0,82.0,63.0,81.0,76.0,82.0,69.0,63.0,71.0,67.0,50.0,55.0,60.0,39.0,53.0,45.0,34.0,54.0,45.0,52.0,45.0,42.0,37.0,39.0,41.0,39.0,43.0,38.0,29.0,30.0,23.0,21.0,9.0,14.0,12.0,6.0,6.0,12.0,13.0,7.0,4.0,6.0,3.0,4.0,6.0 K83007,70.0,68.0,90.0,64.0,74.0,82.0,75.0,105.0,92.0,89.0,88.0,85.0,93.0,96.0,106.0,94.0,81.0,80.0,73.0,73.0,80.0,67.0,63.0,43.0,82.0,68.0,68.0,62.0,82.0,78.0,85.0,96.0,82.0,99.0,77.0,93.0,117.0,92.0,86.0,84.0,89.0,87.0,88.0,96.0,105.0,87.0,85.0,100.0,89.0,82.0,92.0,91.0,80.0,109.0,85.0,105.0,89.0,93.0,92.0,106.0,93.0,79.0,84.0,79.0,66.0,72.0,54.0,67.0,72.0,49.0,56.0,62.0,53.0,55.0,60.0,60.0,73.0,73.0,71.0,51.0,44.0,45.0,35.0,25.0,23.0,19.0,18.0,26.0,8.0,12.0,11.0,6.0,6.0,7.0,4.0,5.0 K83008,54.0,65.0,51.0,60.0,69.0,75.0,57.0,64.0,76.0,71.0,76.0,74.0,63.0,57.0,68.0,64.0,67.0,74.0,64.0,58.0,55.0,48.0,29.0,45.0,48.0,56.0,44.0,67.0,56.0,59.0,52.0,76.0,75.0,76.0,72.0,84.0,82.0,89.0,88.0,73.0,92.0,86.0,70.0,67.0,73.0,67.0,74.0,52.0,70.0,65.0,61.0,60.0,49.0,56.0,59.0,60.0,64.0,53.0,57.0,62.0,65.0,76.0,57.0,56.0,49.0,49.0,53.0,49.0,61.0,60.0,42.0,36.0,31.0,46.0,42.0,62.0,52.0,60.0,51.0,37.0,43.0,31.0,28.0,21.0,25.0,14.0,27.0,17.0,13.0,9.0,9.0,11.0,7.0,,4.0,5.0 K83009,51.0,62.0,73.0,64.0,62.0,57.0,72.0,62.0,63.0,49.0,64.0,64.0,66.0,60.0,59.0,72.0,64.0,54.0,73.0,119.0,152.0,153.0,161.0,148.0,166.0,189.0,176.0,167.0,197.0,177.0,176.0,157.0,132.0,102.0,96.0,95.0,69.0,98.0,80.0,94.0,79.0,71.0,74.0,74.0,75.0,69.0,73.0,65.0,55.0,51.0,57.0,59.0,58.0,73.0,74.0,73.0,79.0,65.0,66.0,97.0,66.0,79.0,63.0,70.0,43.0,51.0,61.0,60.0,58.0,61.0,62.0,60.0,61.0,45.0,47.0,53.0,56.0,62.0,50.0,38.0,27.0,40.0,27.0,15.0,27.0,15.0,20.0,18.0,13.0,10.0,12.0,5.0,6.0,2.0,4.0,2.0 K83010,100.0,114.0,132.0,135.0,145.0,126.0,122.0,121.0,151.0,152.0,146.0,166.0,122.0,153.0,141.0,150.0,129.0,132.0,106.0,105.0,116.0,90.0,88.0,103.0,112.0,117.0,115.0,135.0,138.0,115.0,131.0,141.0,135.0,158.0,157.0,161.0,164.0,185.0,170.0,177.0,158.0,140.0,152.0,168.0,166.0,145.0,150.0,125.0,121.0,130.0,127.0,119.0,114.0,96.0,119.0,118.0,111.0,103.0,95.0,121.0,125.0,103.0,90.0,91.0,80.0,93.0,85.0,64.0,79.0,75.0,54.0,69.0,54.0,56.0,50.0,61.0,57.0,59.0,62.0,45.0,41.0,33.0,29.0,29.0,19.0,20.0,31.0,20.0,13.0,6.0,4.0,8.0,8.0,4.0,2.0,11.0 K83011,56.0,49.0,59.0,66.0,71.0,59.0,64.0,64.0,64.0,80.0,81.0,81.0,72.0,77.0,78.0,83.0,66.0,81.0,72.0,73.0,60.0,61.0,63.0,64.0,57.0,66.0,71.0,81.0,72.0,65.0,92.0,81.0,70.0,80.0,94.0,85.0,82.0,89.0,92.0,80.0,93.0,89.0,71.0,80.0,75.0,85.0,83.0,86.0,94.0,69.0,76.0,76.0,88.0,82.0,96.0,77.0,109.0,86.0,91.0,93.0,93.0,74.0,69.0,76.0,72.0,57.0,51.0,60.0,56.0,58.0,57.0,61.0,52.0,65.0,68.0,56.0,49.0,51.0,61.0,44.0,42.0,44.0,40.0,35.0,29.0,24.0,19.0,17.0,16.0,17.0,12.0,5.0,3.0,7.0,3.0,8.0 K83012,34.0,45.0,41.0,57.0,57.0,63.0,61.0,55.0,76.0,80.0,61.0,72.0,100.0,70.0,78.0,72.0,76.0,91.0,80.0,61.0,54.0,57.0,60.0,52.0,74.0,68.0,72.0,69.0,72.0,82.0,69.0,76.0,75.0,87.0,101.0,91.0,81.0,92.0,99.0,88.0,109.0,111.0,109.0,89.0,117.0,86.0,83.0,99.0,95.0,76.0,96.0,96.0,96.0,74.0,105.0,104.0,88.0,87.0,82.0,77.0,86.0,82.0,80.0,64.0,65.0,56.0,59.0,53.0,42.0,40.0,38.0,38.0,38.0,44.0,33.0,32.0,45.0,50.0,44.0,28.0,28.0,27.0,29.0,23.0,21.0,16.0,17.0,14.0,17.0,7.0,11.0,4.0,12.0,8.0,12.0,17.0 K83013,79.0,79.0,84.0,86.0,74.0,88.0,113.0,98.0,73.0,97.0,90.0,90.0,88.0,99.0,104.0,108.0,110.0,89.0,71.0,73.0,85.0,69.0,75.0,97.0,84.0,88.0,81.0,95.0,100.0,111.0,98.0,114.0,130.0,111.0,115.0,142.0,139.0,140.0,120.0,142.0,135.0,131.0,130.0,124.0,110.0,122.0,111.0,84.0,97.0,89.0,115.0,105.0,104.0,106.0,115.0,100.0,111.0,102.0,98.0,83.0,96.0,86.0,78.0,68.0,71.0,75.0,62.0,58.0,48.0,58.0,51.0,59.0,50.0,46.0,43.0,53.0,39.0,54.0,63.0,38.0,40.0,38.0,24.0,22.0,26.0,18.0,16.0,20.0,8.0,10.0,6.0,7.0,4.0,2.0,4.0,4.0 K83014,79.0,97.0,91.0,84.0,98.0,101.0,97.0,108.0,105.0,96.0,141.0,102.0,112.0,112.0,104.0,130.0,150.0,113.0,124.0,107.0,84.0,76.0,106.0,111.0,112.0,117.0,143.0,135.0,135.0,142.0,152.0,177.0,171.0,184.0,177.0,198.0,201.0,179.0,191.0,162.0,189.0,172.0,191.0,151.0,173.0,159.0,121.0,142.0,128.0,109.0,140.0,132.0,126.0,131.0,103.0,129.0,144.0,128.0,88.0,120.0,116.0,106.0,109.0,97.0,88.0,71.0,81.0,78.0,66.0,54.0,48.0,50.0,60.0,49.0,60.0,42.0,54.0,55.0,67.0,38.0,40.0,40.0,38.0,19.0,23.0,21.0,22.0,22.0,13.0,15.0,9.0,7.0,7.0,4.0,5.0,13.0 K83015,54.0,51.0,67.0,76.0,48.0,59.0,64.0,68.0,76.0,81.0,68.0,82.0,81.0,68.0,75.0,61.0,73.0,64.0,73.0,63.0,66.0,58.0,56.0,59.0,69.0,70.0,76.0,71.0,67.0,83.0,97.0,79.0,91.0,95.0,89.0,83.0,88.0,104.0,93.0,94.0,85.0,90.0,81.0,77.0,106.0,84.0,93.0,87.0,75.0,63.0,83.0,82.0,78.0,80.0,94.0,97.0,105.0,86.0,86.0,103.0,91.0,88.0,78.0,71.0,56.0,73.0,72.0,64.0,54.0,51.0,56.0,61.0,59.0,49.0,53.0,59.0,59.0,65.0,76.0,72.0,56.0,44.0,37.0,26.0,34.0,29.0,20.0,25.0,14.0,16.0,10.0,8.0,3.0,7.0,2.0,8.0 K83018,41.0,49.0,52.0,77.0,64.0,66.0,85.0,75.0,68.0,77.0,82.0,82.0,65.0,83.0,139.0,122.0,144.0,127.0,105.0,63.0,61.0,50.0,63.0,40.0,69.0,66.0,78.0,65.0,68.0,63.0,69.0,69.0,90.0,78.0,91.0,82.0,74.0,90.0,87.0,80.0,77.0,71.0,75.0,76.0,80.0,86.0,81.0,67.0,77.0,69.0,76.0,82.0,86.0,94.0,92.0,100.0,85.0,102.0,107.0,98.0,84.0,83.0,86.0,72.0,65.0,77.0,80.0,60.0,67.0,60.0,57.0,46.0,53.0,57.0,26.0,55.0,49.0,62.0,62.0,43.0,44.0,31.0,38.0,28.0,24.0,23.0,26.0,20.0,7.0,14.0,9.0,7.0,4.0,1.0,5.0,6.0 K83019,23.0,24.0,27.0,28.0,22.0,22.0,28.0,22.0,34.0,41.0,37.0,31.0,35.0,48.0,38.0,42.0,42.0,38.0,24.0,28.0,19.0,31.0,25.0,33.0,27.0,34.0,29.0,23.0,28.0,24.0,33.0,29.0,40.0,36.0,39.0,36.0,41.0,38.0,39.0,38.0,44.0,26.0,51.0,43.0,37.0,37.0,30.0,42.0,44.0,37.0,36.0,55.0,44.0,58.0,48.0,60.0,46.0,53.0,50.0,38.0,44.0,65.0,52.0,63.0,43.0,40.0,57.0,36.0,53.0,40.0,46.0,37.0,37.0,28.0,39.0,39.0,23.0,50.0,41.0,30.0,35.0,26.0,20.0,11.0,14.0,9.0,17.0,18.0,8.0,9.0,5.0,6.0,3.0,3.0,1.0,3.0 K83020,23.0,25.0,18.0,29.0,20.0,31.0,28.0,32.0,35.0,23.0,27.0,27.0,27.0,30.0,35.0,30.0,43.0,36.0,28.0,29.0,21.0,33.0,22.0,30.0,31.0,32.0,24.0,23.0,41.0,26.0,30.0,35.0,33.0,44.0,40.0,31.0,36.0,36.0,40.0,24.0,36.0,36.0,36.0,36.0,29.0,41.0,35.0,30.0,27.0,29.0,24.0,23.0,30.0,31.0,29.0,22.0,33.0,15.0,24.0,24.0,22.0,15.0,20.0,23.0,22.0,17.0,16.0,17.0,12.0,9.0,9.0,12.0,12.0,15.0,11.0,12.0,6.0,10.0,7.0,3.0,5.0,3.0,6.0,5.0,1.0,,,2.0,1.0,2.0,1.0,,,,,1.0 K83021,82.0,103.0,107.0,98.0,105.0,112.0,136.0,118.0,111.0,140.0,133.0,145.0,135.0,107.0,153.0,134.0,135.0,135.0,128.0,102.0,118.0,105.0,110.0,100.0,122.0,118.0,100.0,116.0,137.0,115.0,137.0,138.0,147.0,166.0,149.0,141.0,126.0,126.0,136.0,147.0,124.0,129.0,156.0,130.0,135.0,149.0,128.0,126.0,118.0,147.0,122.0,149.0,141.0,154.0,147.0,132.0,145.0,136.0,147.0,145.0,158.0,157.0,132.0,122.0,126.0,113.0,120.0,129.0,114.0,119.0,105.0,99.0,121.0,94.0,104.0,112.0,112.0,95.0,127.0,79.0,96.0,71.0,61.0,37.0,39.0,39.0,29.0,35.0,24.0,16.0,12.0,4.0,10.0,5.0,4.0,12.0 K83022,60.0,68.0,78.0,72.0,69.0,55.0,73.0,60.0,50.0,66.0,72.0,74.0,47.0,68.0,65.0,62.0,51.0,62.0,45.0,38.0,51.0,60.0,41.0,58.0,73.0,66.0,67.0,84.0,71.0,81.0,79.0,80.0,104.0,80.0,93.0,99.0,99.0,84.0,90.0,72.0,77.0,89.0,73.0,87.0,83.0,76.0,65.0,67.0,65.0,57.0,67.0,89.0,69.0,88.0,74.0,80.0,66.0,69.0,82.0,87.0,78.0,73.0,54.0,75.0,72.0,63.0,78.0,63.0,56.0,48.0,49.0,46.0,47.0,46.0,37.0,42.0,34.0,54.0,47.0,26.0,26.0,32.0,23.0,18.0,16.0,12.0,7.0,11.0,16.0,6.0,11.0,2.0,6.0,3.0,6.0,6.0 K83023,14.0,19.0,39.0,40.0,44.0,41.0,38.0,61.0,55.0,49.0,48.0,54.0,56.0,109.0,156.0,151.0,152.0,159.0,133.0,58.0,52.0,52.0,47.0,40.0,44.0,40.0,39.0,37.0,38.0,30.0,35.0,24.0,46.0,35.0,34.0,49.0,40.0,36.0,54.0,45.0,36.0,51.0,52.0,44.0,56.0,44.0,50.0,43.0,52.0,53.0,50.0,73.0,75.0,73.0,79.0,72.0,76.0,78.0,81.0,97.0,88.0,71.0,71.0,75.0,95.0,72.0,70.0,76.0,69.0,65.0,54.0,45.0,54.0,56.0,65.0,68.0,71.0,65.0,58.0,48.0,55.0,45.0,41.0,32.0,28.0,37.0,25.0,31.0,18.0,25.0,11.0,9.0,7.0,4.0,3.0,7.0 K83024,32.0,35.0,54.0,42.0,59.0,51.0,47.0,49.0,57.0,54.0,68.0,60.0,72.0,62.0,70.0,69.0,88.0,68.0,67.0,63.0,71.0,62.0,47.0,54.0,40.0,65.0,54.0,56.0,61.0,45.0,65.0,69.0,68.0,83.0,65.0,54.0,74.0,69.0,69.0,57.0,59.0,50.0,63.0,71.0,68.0,64.0,90.0,48.0,72.0,57.0,55.0,53.0,81.0,75.0,79.0,74.0,78.0,85.0,74.0,73.0,65.0,74.0,56.0,52.0,44.0,46.0,46.0,51.0,56.0,41.0,54.0,55.0,35.0,38.0,39.0,37.0,45.0,39.0,41.0,34.0,30.0,25.0,19.0,17.0,16.0,17.0,7.0,9.0,9.0,7.0,5.0,6.0,5.0,3.0,3.0,4.0 K83025,97.0,75.0,92.0,93.0,89.0,84.0,110.0,100.0,108.0,112.0,110.0,115.0,117.0,116.0,111.0,102.0,108.0,117.0,120.0,127.0,138.0,109.0,114.0,141.0,155.0,165.0,175.0,183.0,187.0,203.0,160.0,175.0,167.0,194.0,223.0,221.0,220.0,195.0,178.0,212.0,204.0,190.0,175.0,166.0,171.0,161.0,147.0,137.0,112.0,116.0,120.0,108.0,105.0,83.0,98.0,124.0,99.0,92.0,85.0,90.0,93.0,91.0,90.0,83.0,67.0,59.0,64.0,39.0,44.0,49.0,40.0,49.0,39.0,36.0,40.0,31.0,21.0,34.0,38.0,25.0,20.0,13.0,23.0,20.0,12.0,10.0,15.0,14.0,8.0,10.0,5.0,3.0,2.0,8.0,2.0,3.0 K83026,107.0,109.0,110.0,103.0,123.0,113.0,111.0,133.0,134.0,132.0,126.0,162.0,137.0,175.0,137.0,151.0,126.0,126.0,117.0,103.0,110.0,125.0,97.0,139.0,124.0,128.0,129.0,167.0,165.0,156.0,156.0,197.0,194.0,200.0,210.0,211.0,216.0,206.0,211.0,219.0,193.0,190.0,184.0,183.0,197.0,184.0,134.0,152.0,135.0,147.0,129.0,138.0,125.0,145.0,129.0,119.0,143.0,135.0,119.0,109.0,118.0,92.0,96.0,85.0,101.0,85.0,76.0,62.0,89.0,64.0,67.0,62.0,52.0,66.0,57.0,54.0,77.0,55.0,60.0,48.0,39.0,36.0,33.0,29.0,30.0,23.0,23.0,13.0,16.0,10.0,11.0,7.0,8.0,6.0,6.0,7.0 K83027,50.0,49.0,47.0,55.0,50.0,57.0,50.0,51.0,59.0,58.0,68.0,62.0,66.0,63.0,57.0,67.0,64.0,53.0,57.0,54.0,40.0,46.0,61.0,72.0,60.0,72.0,85.0,95.0,83.0,97.0,119.0,112.0,103.0,95.0,105.0,109.0,93.0,118.0,117.0,107.0,118.0,98.0,117.0,90.0,100.0,96.0,80.0,82.0,70.0,81.0,84.0,57.0,61.0,70.0,68.0,69.0,75.0,62.0,61.0,63.0,66.0,57.0,59.0,36.0,49.0,38.0,32.0,37.0,28.0,32.0,34.0,34.0,30.0,24.0,27.0,26.0,27.0,25.0,26.0,23.0,22.0,21.0,14.0,16.0,13.0,10.0,8.0,9.0,4.0,6.0,7.0,4.0,5.0,3.0,2.0,4.0 K83028,47.0,60.0,43.0,75.0,61.0,58.0,67.0,66.0,72.0,66.0,43.0,69.0,63.0,74.0,70.0,55.0,81.0,68.0,64.0,58.0,62.0,69.0,61.0,47.0,69.0,60.0,58.0,68.0,69.0,63.0,67.0,87.0,76.0,73.0,84.0,79.0,88.0,84.0,62.0,75.0,75.0,62.0,83.0,68.0,69.0,68.0,60.0,61.0,67.0,79.0,57.0,66.0,65.0,93.0,75.0,63.0,84.0,70.0,90.0,86.0,74.0,105.0,78.0,74.0,67.0,74.0,58.0,65.0,63.0,55.0,53.0,55.0,57.0,59.0,56.0,49.0,54.0,67.0,46.0,49.0,40.0,36.0,28.0,18.0,21.0,21.0,27.0,25.0,9.0,9.0,7.0,6.0,7.0,3.0,4.0,4.0 K83029,44.0,76.0,65.0,57.0,59.0,77.0,67.0,59.0,92.0,83.0,89.0,77.0,77.0,89.0,84.0,97.0,88.0,80.0,72.0,72.0,75.0,92.0,78.0,71.0,79.0,59.0,73.0,90.0,72.0,99.0,88.0,88.0,100.0,90.0,84.0,93.0,88.0,107.0,86.0,108.0,114.0,97.0,107.0,110.0,103.0,107.0,108.0,93.0,97.0,86.0,97.0,111.0,108.0,112.0,91.0,89.0,74.0,98.0,84.0,70.0,89.0,83.0,76.0,68.0,62.0,80.0,59.0,61.0,60.0,40.0,56.0,54.0,51.0,60.0,44.0,62.0,50.0,40.0,41.0,40.0,38.0,41.0,35.0,19.0,25.0,16.0,26.0,15.0,11.0,13.0,11.0,11.0,4.0,8.0,6.0,7.0 K83030,42.0,49.0,47.0,36.0,45.0,68.0,66.0,54.0,60.0,48.0,56.0,57.0,62.0,68.0,57.0,59.0,61.0,65.0,55.0,49.0,42.0,53.0,41.0,35.0,42.0,51.0,44.0,42.0,45.0,47.0,56.0,55.0,48.0,62.0,67.0,64.0,48.0,71.0,52.0,69.0,57.0,53.0,60.0,52.0,64.0,74.0,59.0,48.0,50.0,55.0,64.0,65.0,55.0,56.0,76.0,66.0,70.0,80.0,79.0,71.0,71.0,60.0,57.0,66.0,51.0,56.0,49.0,61.0,47.0,41.0,64.0,47.0,50.0,49.0,50.0,40.0,56.0,68.0,56.0,41.0,40.0,30.0,27.0,21.0,23.0,24.0,15.0,12.0,9.0,12.0,4.0,1.0,3.0,6.0,4.0,7.0 K83031,28.0,44.0,37.0,35.0,36.0,44.0,41.0,53.0,51.0,47.0,52.0,43.0,43.0,41.0,53.0,54.0,42.0,41.0,40.0,47.0,35.0,30.0,45.0,44.0,35.0,35.0,41.0,34.0,31.0,43.0,43.0,35.0,39.0,45.0,56.0,48.0,54.0,61.0,53.0,54.0,43.0,48.0,55.0,52.0,55.0,48.0,52.0,47.0,50.0,48.0,52.0,64.0,65.0,56.0,55.0,57.0,56.0,62.0,76.0,63.0,90.0,89.0,67.0,77.0,60.0,49.0,63.0,60.0,58.0,50.0,35.0,44.0,50.0,44.0,40.0,38.0,43.0,50.0,46.0,32.0,39.0,32.0,28.0,18.0,13.0,16.0,19.0,9.0,14.0,7.0,4.0,3.0,5.0,3.0,1.0,5.0 K83032,101.0,111.0,113.0,145.0,136.0,128.0,140.0,138.0,129.0,130.0,118.0,147.0,147.0,139.0,139.0,134.0,134.0,113.0,121.0,120.0,112.0,97.0,111.0,104.0,120.0,139.0,151.0,138.0,136.0,155.0,171.0,165.0,179.0,193.0,189.0,174.0,183.0,218.0,201.0,188.0,170.0,191.0,159.0,159.0,178.0,169.0,158.0,130.0,125.0,150.0,139.0,135.0,158.0,166.0,133.0,177.0,160.0,171.0,181.0,156.0,129.0,151.0,124.0,138.0,125.0,126.0,115.0,106.0,103.0,79.0,82.0,92.0,84.0,91.0,75.0,93.0,87.0,93.0,99.0,41.0,75.0,69.0,54.0,42.0,41.0,35.0,32.0,26.0,28.0,19.0,13.0,10.0,8.0,7.0,5.0,4.0 K83035,40.0,58.0,46.0,32.0,43.0,37.0,47.0,43.0,48.0,51.0,46.0,42.0,41.0,38.0,49.0,40.0,38.0,32.0,43.0,42.0,39.0,29.0,29.0,30.0,43.0,42.0,43.0,47.0,51.0,43.0,73.0,55.0,66.0,63.0,74.0,68.0,58.0,66.0,74.0,61.0,49.0,54.0,61.0,52.0,54.0,64.0,58.0,56.0,52.0,44.0,39.0,59.0,38.0,47.0,48.0,41.0,42.0,45.0,29.0,44.0,32.0,44.0,32.0,44.0,25.0,41.0,26.0,36.0,28.0,18.0,27.0,36.0,23.0,21.0,31.0,24.0,21.0,27.0,21.0,25.0,17.0,12.0,14.0,11.0,7.0,10.0,4.0,7.0,8.0,4.0,7.0,4.0,3.0,6.0,2.0,1.0 K83036,71.0,77.0,92.0,113.0,102.0,108.0,110.0,110.0,112.0,113.0,109.0,101.0,120.0,118.0,113.0,124.0,111.0,109.0,99.0,108.0,78.0,83.0,90.0,78.0,112.0,96.0,72.0,90.0,113.0,104.0,119.0,109.0,131.0,132.0,124.0,142.0,133.0,128.0,132.0,127.0,126.0,113.0,120.0,111.0,116.0,121.0,140.0,118.0,91.0,99.0,117.0,120.0,120.0,129.0,128.0,135.0,109.0,112.0,101.0,114.0,105.0,87.0,104.0,91.0,96.0,71.0,82.0,76.0,72.0,75.0,59.0,61.0,54.0,67.0,45.0,56.0,63.0,74.0,63.0,54.0,50.0,46.0,43.0,47.0,24.0,22.0,21.0,14.0,15.0,9.0,8.0,4.0,8.0,5.0,4.0,10.0 K83037,61.0,68.0,74.0,79.0,66.0,89.0,80.0,83.0,96.0,91.0,90.0,96.0,122.0,110.0,82.0,92.0,90.0,116.0,88.0,68.0,61.0,79.0,74.0,70.0,70.0,72.0,75.0,69.0,65.0,67.0,94.0,89.0,86.0,107.0,106.0,90.0,79.0,102.0,94.0,82.0,82.0,80.0,85.0,87.0,82.0,105.0,95.0,103.0,92.0,82.0,94.0,88.0,105.0,89.0,101.0,103.0,104.0,97.0,103.0,114.0,90.0,106.0,99.0,86.0,60.0,76.0,70.0,69.0,56.0,55.0,50.0,56.0,64.0,58.0,52.0,57.0,65.0,73.0,67.0,50.0,56.0,36.0,40.0,47.0,28.0,34.0,19.0,17.0,16.0,11.0,12.0,11.0,4.0,6.0,1.0,1.0 K83039,50.0,47.0,58.0,54.0,49.0,70.0,66.0,55.0,66.0,68.0,66.0,57.0,65.0,59.0,70.0,68.0,83.0,69.0,65.0,66.0,61.0,60.0,46.0,59.0,73.0,68.0,68.0,70.0,79.0,79.0,77.0,70.0,95.0,80.0,79.0,91.0,89.0,72.0,93.0,73.0,94.0,73.0,82.0,78.0,89.0,90.0,57.0,84.0,63.0,66.0,93.0,93.0,75.0,91.0,112.0,101.0,107.0,87.0,92.0,74.0,111.0,87.0,73.0,92.0,77.0,80.0,69.0,58.0,56.0,46.0,51.0,53.0,49.0,42.0,63.0,42.0,50.0,61.0,52.0,32.0,51.0,37.0,50.0,40.0,25.0,31.0,30.0,22.0,19.0,20.0,17.0,9.0,14.0,6.0,7.0,11.0 K83040,56.0,50.0,54.0,45.0,60.0,78.0,62.0,89.0,69.0,84.0,90.0,92.0,87.0,93.0,105.0,81.0,73.0,94.0,90.0,72.0,69.0,59.0,52.0,73.0,54.0,54.0,69.0,60.0,73.0,60.0,70.0,79.0,72.0,86.0,85.0,93.0,92.0,88.0,93.0,89.0,76.0,91.0,86.0,88.0,82.0,84.0,82.0,68.0,69.0,59.0,70.0,78.0,77.0,65.0,86.0,54.0,66.0,65.0,58.0,62.0,66.0,40.0,58.0,56.0,47.0,41.0,53.0,38.0,32.0,36.0,44.0,38.0,37.0,32.0,51.0,48.0,28.0,35.0,51.0,29.0,22.0,32.0,20.0,14.0,12.0,15.0,10.0,11.0,10.0,3.0,3.0,2.0,3.0,3.0,1.0,1.0 K83041,109.0,134.0,119.0,122.0,126.0,152.0,156.0,163.0,150.0,169.0,159.0,153.0,185.0,169.0,176.0,165.0,173.0,170.0,150.0,130.0,107.0,99.0,113.0,93.0,121.0,113.0,142.0,119.0,157.0,129.0,159.0,145.0,167.0,201.0,185.0,184.0,169.0,173.0,168.0,193.0,176.0,199.0,193.0,183.0,195.0,197.0,173.0,167.0,145.0,169.0,159.0,163.0,143.0,152.0,146.0,144.0,150.0,128.0,128.0,124.0,124.0,133.0,116.0,127.0,98.0,110.0,97.0,110.0,88.0,96.0,79.0,72.0,67.0,72.0,65.0,89.0,80.0,91.0,94.0,51.0,60.0,62.0,58.0,50.0,42.0,35.0,40.0,25.0,27.0,26.0,16.0,10.0,15.0,9.0,10.0,13.0 K83042,83.0,88.0,93.0,85.0,107.0,89.0,100.0,107.0,92.0,123.0,98.0,132.0,118.0,118.0,119.0,105.0,101.0,90.0,127.0,86.0,105.0,75.0,86.0,83.0,86.0,98.0,102.0,74.0,118.0,98.0,115.0,125.0,120.0,113.0,134.0,115.0,137.0,117.0,131.0,121.0,107.0,137.0,119.0,113.0,141.0,119.0,101.0,120.0,99.0,98.0,109.0,112.0,107.0,90.0,109.0,112.0,93.0,97.0,80.0,80.0,91.0,72.0,75.0,76.0,75.0,58.0,47.0,58.0,54.0,41.0,54.0,47.0,45.0,47.0,52.0,48.0,42.0,52.0,55.0,38.0,37.0,25.0,29.0,25.0,23.0,21.0,26.0,17.0,11.0,7.0,5.0,3.0,3.0,4.0,3.0,7.0 K83043,51.0,49.0,77.0,66.0,69.0,89.0,74.0,88.0,92.0,94.0,102.0,98.0,98.0,126.0,101.0,111.0,111.0,116.0,95.0,88.0,86.0,87.0,80.0,75.0,86.0,95.0,89.0,104.0,83.0,101.0,106.0,113.0,104.0,117.0,117.0,122.0,105.0,123.0,123.0,114.0,113.0,109.0,129.0,112.0,110.0,124.0,120.0,99.0,82.0,93.0,81.0,98.0,102.0,98.0,107.0,105.0,100.0,92.0,92.0,97.0,78.0,94.0,97.0,78.0,85.0,64.0,64.0,80.0,62.0,57.0,67.0,46.0,40.0,39.0,57.0,48.0,47.0,53.0,48.0,32.0,31.0,27.0,22.0,24.0,27.0,23.0,20.0,19.0,17.0,10.0,15.0,13.0,9.0,8.0,3.0,6.0 K83044,48.0,69.0,48.0,71.0,75.0,79.0,68.0,59.0,78.0,77.0,80.0,82.0,70.0,104.0,69.0,80.0,72.0,74.0,75.0,88.0,63.0,62.0,52.0,70.0,64.0,79.0,73.0,77.0,75.0,60.0,72.0,88.0,91.0,96.0,88.0,78.0,112.0,110.0,81.0,107.0,76.0,85.0,66.0,67.0,70.0,80.0,58.0,79.0,59.0,74.0,85.0,70.0,103.0,85.0,112.0,99.0,119.0,117.0,94.0,106.0,113.0,94.0,99.0,81.0,77.0,74.0,69.0,78.0,70.0,60.0,62.0,74.0,52.0,74.0,56.0,66.0,61.0,70.0,65.0,55.0,55.0,46.0,41.0,42.0,34.0,25.0,25.0,15.0,16.0,18.0,14.0,12.0,10.0,5.0,1.0,14.0 K83047,154.0,150.0,151.0,192.0,156.0,176.0,144.0,153.0,178.0,160.0,179.0,155.0,182.0,162.0,176.0,181.0,189.0,166.0,152.0,134.0,132.0,136.0,130.0,149.0,154.0,140.0,160.0,169.0,183.0,181.0,209.0,198.0,228.0,213.0,200.0,207.0,233.0,210.0,218.0,232.0,225.0,227.0,198.0,194.0,214.0,220.0,204.0,175.0,193.0,163.0,153.0,146.0,165.0,172.0,188.0,157.0,187.0,162.0,181.0,172.0,156.0,163.0,139.0,156.0,138.0,121.0,126.0,107.0,109.0,108.0,102.0,121.0,106.0,99.0,99.0,85.0,79.0,85.0,103.0,74.0,59.0,65.0,51.0,47.0,47.0,45.0,37.0,25.0,24.0,27.0,19.0,14.0,11.0,9.0,6.0,10.0 K83048,27.0,18.0,22.0,18.0,24.0,26.0,26.0,41.0,44.0,35.0,43.0,56.0,51.0,44.0,44.0,59.0,63.0,48.0,47.0,30.0,25.0,36.0,29.0,35.0,32.0,38.0,34.0,35.0,29.0,38.0,42.0,31.0,33.0,45.0,39.0,50.0,33.0,46.0,47.0,44.0,51.0,44.0,46.0,39.0,39.0,40.0,30.0,44.0,43.0,44.0,38.0,33.0,50.0,38.0,38.0,44.0,30.0,52.0,39.0,36.0,33.0,47.0,41.0,38.0,23.0,42.0,31.0,27.0,41.0,26.0,30.0,32.0,27.0,21.0,35.0,30.0,27.0,21.0,21.0,19.0,16.0,14.0,3.0,15.0,9.0,9.0,7.0,8.0,9.0,3.0,1.0,3.0,6.0,3.0,,1.0 K83049,68.0,64.0,89.0,79.0,92.0,81.0,70.0,88.0,97.0,88.0,85.0,67.0,98.0,104.0,85.0,111.0,99.0,92.0,92.0,65.0,58.0,79.0,67.0,73.0,92.0,83.0,88.0,103.0,99.0,111.0,111.0,129.0,107.0,142.0,111.0,116.0,112.0,135.0,121.0,112.0,106.0,106.0,122.0,85.0,97.0,83.0,92.0,71.0,85.0,86.0,102.0,108.0,107.0,134.0,116.0,118.0,135.0,129.0,129.0,128.0,134.0,149.0,135.0,136.0,121.0,90.0,100.0,94.0,89.0,84.0,71.0,64.0,63.0,79.0,59.0,78.0,71.0,79.0,71.0,63.0,43.0,50.0,51.0,29.0,22.0,32.0,15.0,13.0,24.0,12.0,11.0,11.0,7.0,6.0,5.0,14.0 K83050,44.0,43.0,46.0,55.0,27.0,35.0,41.0,43.0,23.0,41.0,32.0,23.0,39.0,32.0,30.0,40.0,43.0,24.0,35.0,25.0,32.0,30.0,32.0,26.0,58.0,63.0,66.0,85.0,70.0,99.0,89.0,103.0,103.0,90.0,94.0,92.0,79.0,80.0,79.0,73.0,83.0,74.0,66.0,77.0,67.0,60.0,72.0,59.0,47.0,50.0,46.0,46.0,31.0,40.0,45.0,41.0,36.0,47.0,40.0,34.0,34.0,29.0,32.0,31.0,31.0,38.0,27.0,17.0,22.0,13.0,19.0,14.0,12.0,11.0,12.0,12.0,19.0,14.0,19.0,10.0,11.0,10.0,11.0,10.0,7.0,11.0,8.0,5.0,3.0,6.0,5.0,3.0,2.0,7.0,,3.0 K83051,172.0,167.0,157.0,175.0,165.0,177.0,207.0,183.0,180.0,186.0,203.0,173.0,220.0,203.0,180.0,175.0,200.0,205.0,168.0,161.0,128.0,155.0,133.0,142.0,159.0,165.0,147.0,159.0,199.0,210.0,212.0,197.0,241.0,262.0,227.0,248.0,241.0,246.0,222.0,272.0,217.0,232.0,246.0,191.0,195.0,192.0,224.0,186.0,197.0,202.0,211.0,216.0,180.0,204.0,200.0,225.0,186.0,184.0,175.0,190.0,177.0,181.0,171.0,154.0,143.0,136.0,138.0,136.0,105.0,88.0,107.0,116.0,107.0,106.0,106.0,87.0,93.0,106.0,81.0,73.0,81.0,77.0,53.0,45.0,35.0,28.0,39.0,14.0,16.0,21.0,16.0,8.0,11.0,10.0,9.0,5.0 K83052,97.0,94.0,115.0,130.0,127.0,129.0,130.0,142.0,150.0,119.0,172.0,170.0,144.0,150.0,163.0,145.0,135.0,173.0,164.0,122.0,126.0,104.0,103.0,113.0,112.0,94.0,109.0,120.0,94.0,113.0,111.0,111.0,116.0,122.0,148.0,145.0,149.0,138.0,137.0,148.0,140.0,177.0,163.0,161.0,184.0,176.0,160.0,147.0,149.0,179.0,180.0,195.0,187.0,164.0,188.0,177.0,143.0,146.0,145.0,132.0,191.0,133.0,148.0,114.0,125.0,118.0,118.0,124.0,103.0,87.0,95.0,89.0,81.0,101.0,87.0,92.0,94.0,94.0,104.0,69.0,86.0,68.0,63.0,48.0,42.0,30.0,36.0,27.0,26.0,19.0,8.0,14.0,8.0,11.0,5.0,13.0 K83053,16.0,19.0,24.0,34.0,32.0,29.0,38.0,46.0,39.0,35.0,33.0,32.0,39.0,37.0,36.0,28.0,41.0,39.0,31.0,42.0,38.0,29.0,39.0,33.0,45.0,39.0,32.0,43.0,40.0,39.0,36.0,37.0,35.0,33.0,34.0,40.0,33.0,44.0,41.0,28.0,31.0,46.0,45.0,35.0,38.0,36.0,35.0,32.0,36.0,45.0,31.0,37.0,42.0,45.0,59.0,48.0,57.0,46.0,38.0,62.0,52.0,57.0,61.0,51.0,48.0,40.0,49.0,40.0,31.0,38.0,37.0,42.0,39.0,28.0,30.0,40.0,38.0,39.0,38.0,25.0,29.0,18.0,21.0,18.0,13.0,15.0,9.0,7.0,8.0,7.0,5.0,4.0,2.0,4.0,2.0, K83055,29.0,30.0,34.0,38.0,32.0,41.0,56.0,56.0,53.0,61.0,57.0,63.0,47.0,59.0,57.0,57.0,57.0,71.0,61.0,62.0,48.0,53.0,53.0,51.0,45.0,48.0,36.0,37.0,47.0,36.0,39.0,30.0,46.0,51.0,54.0,48.0,50.0,47.0,40.0,46.0,52.0,47.0,37.0,56.0,67.0,57.0,50.0,46.0,52.0,49.0,52.0,47.0,66.0,55.0,60.0,62.0,67.0,49.0,63.0,44.0,49.0,60.0,53.0,40.0,52.0,39.0,30.0,28.0,28.0,22.0,22.0,25.0,34.0,26.0,30.0,28.0,26.0,33.0,25.0,17.0,29.0,18.0,12.0,11.0,11.0,6.0,5.0,11.0,13.0,3.0,4.0,7.0,1.0,2.0,,5.0 K83056,20.0,17.0,32.0,20.0,15.0,16.0,25.0,28.0,24.0,19.0,28.0,28.0,20.0,21.0,22.0,26.0,25.0,24.0,21.0,21.0,19.0,23.0,23.0,29.0,36.0,39.0,30.0,50.0,40.0,31.0,39.0,45.0,40.0,40.0,36.0,53.0,34.0,58.0,53.0,41.0,43.0,54.0,33.0,49.0,45.0,30.0,33.0,33.0,26.0,36.0,38.0,37.0,35.0,42.0,30.0,35.0,25.0,32.0,36.0,36.0,32.0,31.0,30.0,33.0,23.0,29.0,22.0,17.0,25.0,16.0,16.0,15.0,18.0,19.0,21.0,22.0,23.0,12.0,9.0,12.0,6.0,9.0,8.0,6.0,6.0,3.0,3.0,2.0,2.0,2.0,4.0,,4.0,1.0,,1.0 K83059,118.0,139.0,148.0,124.0,126.0,129.0,147.0,120.0,172.0,151.0,169.0,157.0,149.0,155.0,152.0,165.0,140.0,150.0,150.0,115.0,127.0,111.0,108.0,113.0,124.0,118.0,143.0,133.0,148.0,151.0,198.0,169.0,176.0,197.0,182.0,205.0,201.0,218.0,173.0,186.0,152.0,202.0,213.0,164.0,196.0,170.0,128.0,147.0,139.0,133.0,149.0,142.0,131.0,132.0,145.0,145.0,151.0,170.0,147.0,137.0,147.0,125.0,117.0,113.0,108.0,107.0,103.0,89.0,70.0,72.0,67.0,66.0,68.0,58.0,57.0,70.0,54.0,54.0,57.0,52.0,43.0,33.0,38.0,25.0,27.0,24.0,29.0,15.0,20.0,21.0,6.0,8.0,4.0,9.0,2.0,6.0 K83064,51.0,65.0,66.0,74.0,62.0,73.0,87.0,86.0,91.0,97.0,99.0,88.0,84.0,98.0,102.0,116.0,119.0,105.0,118.0,72.0,90.0,86.0,105.0,80.0,99.0,83.0,87.0,76.0,86.0,87.0,60.0,84.0,84.0,79.0,93.0,108.0,80.0,89.0,86.0,89.0,84.0,87.0,82.0,95.0,102.0,93.0,85.0,78.0,94.0,104.0,107.0,115.0,134.0,119.0,124.0,122.0,129.0,133.0,136.0,134.0,147.0,145.0,129.0,132.0,116.0,111.0,103.0,95.0,92.0,110.0,91.0,90.0,90.0,79.0,70.0,86.0,68.0,111.0,92.0,79.0,44.0,62.0,51.0,49.0,40.0,32.0,22.0,17.0,14.0,16.0,8.0,9.0,7.0,4.0,5.0,12.0 K83065,28.0,28.0,41.0,40.0,26.0,37.0,43.0,45.0,44.0,39.0,47.0,45.0,43.0,47.0,42.0,31.0,53.0,46.0,34.0,37.0,38.0,37.0,36.0,27.0,45.0,31.0,36.0,33.0,25.0,49.0,43.0,35.0,45.0,31.0,40.0,36.0,47.0,35.0,35.0,33.0,38.0,41.0,48.0,46.0,41.0,48.0,42.0,35.0,37.0,34.0,40.0,41.0,54.0,56.0,70.0,50.0,61.0,47.0,57.0,54.0,60.0,65.0,53.0,48.0,42.0,56.0,43.0,50.0,38.0,33.0,33.0,40.0,40.0,35.0,36.0,32.0,40.0,32.0,47.0,30.0,29.0,22.0,16.0,21.0,16.0,14.0,11.0,6.0,12.0,10.0,10.0,6.0,2.0,1.0,1.0,5.0 K83066,48.0,63.0,61.0,69.0,67.0,65.0,67.0,70.0,69.0,79.0,80.0,78.0,96.0,85.0,85.0,77.0,86.0,79.0,75.0,60.0,81.0,75.0,77.0,70.0,64.0,69.0,72.0,60.0,77.0,66.0,66.0,68.0,72.0,89.0,86.0,73.0,84.0,88.0,81.0,85.0,70.0,81.0,94.0,84.0,80.0,74.0,80.0,88.0,78.0,92.0,87.0,110.0,108.0,93.0,126.0,96.0,92.0,116.0,143.0,122.0,122.0,115.0,104.0,138.0,109.0,111.0,84.0,112.0,85.0,94.0,97.0,90.0,90.0,80.0,82.0,69.0,83.0,105.0,104.0,91.0,64.0,66.0,51.0,52.0,39.0,38.0,30.0,33.0,25.0,18.0,13.0,11.0,12.0,10.0,6.0,11.0 K83068,14.0,22.0,25.0,27.0,24.0,17.0,34.0,28.0,25.0,30.0,35.0,40.0,43.0,45.0,26.0,32.0,41.0,52.0,45.0,29.0,23.0,25.0,27.0,32.0,34.0,19.0,27.0,21.0,29.0,20.0,21.0,24.0,20.0,37.0,23.0,35.0,31.0,27.0,25.0,30.0,32.0,38.0,27.0,29.0,42.0,44.0,35.0,39.0,42.0,40.0,45.0,49.0,50.0,46.0,53.0,48.0,57.0,54.0,53.0,55.0,68.0,50.0,47.0,53.0,55.0,54.0,43.0,53.0,53.0,41.0,35.0,56.0,36.0,29.0,39.0,36.0,31.0,34.0,44.0,29.0,26.0,25.0,24.0,20.0,15.0,12.0,14.0,11.0,6.0,7.0,3.0,2.0,5.0,5.0,,2.0 K83069,13.0,11.0,16.0,29.0,17.0,20.0,21.0,20.0,20.0,26.0,23.0,10.0,25.0,11.0,17.0,14.0,25.0,12.0,16.0,8.0,10.0,15.0,11.0,7.0,14.0,14.0,15.0,15.0,19.0,13.0,17.0,17.0,15.0,26.0,18.0,26.0,31.0,25.0,21.0,34.0,16.0,21.0,27.0,20.0,20.0,30.0,14.0,17.0,22.0,16.0,9.0,12.0,23.0,20.0,18.0,21.0,22.0,19.0,26.0,21.0,19.0,18.0,22.0,24.0,15.0,25.0,10.0,18.0,13.0,21.0,14.0,22.0,15.0,14.0,16.0,18.0,14.0,20.0,18.0,10.0,11.0,12.0,11.0,9.0,5.0,11.0,4.0,4.0,3.0,2.0,3.0,1.0,,1.0,2.0,2.0 K83070,34.0,49.0,51.0,46.0,51.0,58.0,74.0,57.0,65.0,62.0,74.0,60.0,75.0,74.0,70.0,79.0,89.0,59.0,71.0,70.0,64.0,70.0,65.0,56.0,40.0,68.0,55.0,62.0,63.0,44.0,70.0,49.0,69.0,64.0,79.0,63.0,67.0,83.0,74.0,81.0,62.0,63.0,58.0,74.0,58.0,88.0,71.0,89.0,87.0,78.0,88.0,70.0,88.0,75.0,84.0,79.0,75.0,75.0,77.0,84.0,82.0,89.0,74.0,64.0,59.0,61.0,66.0,51.0,45.0,51.0,61.0,57.0,50.0,39.0,40.0,46.0,50.0,57.0,39.0,37.0,33.0,31.0,35.0,24.0,27.0,17.0,16.0,14.0,12.0,11.0,7.0,6.0,4.0,6.0,3.0,10.0 K83076,41.0,55.0,55.0,43.0,48.0,74.0,54.0,67.0,56.0,63.0,56.0,52.0,83.0,56.0,63.0,68.0,54.0,65.0,55.0,55.0,42.0,54.0,48.0,48.0,61.0,62.0,67.0,55.0,74.0,55.0,68.0,80.0,71.0,76.0,89.0,79.0,93.0,73.0,90.0,92.0,83.0,90.0,85.0,90.0,63.0,79.0,70.0,61.0,74.0,72.0,64.0,69.0,54.0,62.0,58.0,57.0,51.0,46.0,48.0,48.0,41.0,41.0,42.0,40.0,34.0,47.0,31.0,26.0,28.0,37.0,37.0,29.0,25.0,31.0,37.0,29.0,29.0,22.0,26.0,16.0,18.0,9.0,3.0,10.0,11.0,10.0,4.0,7.0,3.0,4.0,2.0,3.0,3.0,3.0,,1.0 K83077,40.0,53.0,47.0,54.0,65.0,52.0,45.0,54.0,50.0,45.0,47.0,52.0,55.0,56.0,58.0,52.0,61.0,54.0,46.0,44.0,58.0,48.0,48.0,48.0,51.0,55.0,58.0,65.0,69.0,64.0,49.0,68.0,70.0,83.0,75.0,80.0,79.0,76.0,70.0,68.0,62.0,69.0,86.0,63.0,65.0,51.0,66.0,74.0,65.0,52.0,56.0,60.0,55.0,50.0,70.0,66.0,62.0,59.0,57.0,70.0,69.0,75.0,50.0,52.0,63.0,55.0,41.0,42.0,40.0,37.0,45.0,44.0,31.0,39.0,25.0,27.0,29.0,35.0,38.0,26.0,25.0,20.0,20.0,12.0,23.0,12.0,19.0,12.0,12.0,10.0,4.0,11.0,8.0,5.0,4.0,4.0 K83080,15.0,21.0,23.0,15.0,31.0,30.0,27.0,30.0,36.0,42.0,37.0,43.0,46.0,39.0,36.0,36.0,42.0,40.0,32.0,33.0,31.0,30.0,37.0,31.0,22.0,35.0,34.0,23.0,34.0,30.0,22.0,26.0,31.0,33.0,39.0,38.0,39.0,28.0,40.0,41.0,39.0,43.0,38.0,36.0,41.0,36.0,31.0,43.0,34.0,49.0,44.0,54.0,49.0,60.0,42.0,34.0,47.0,39.0,35.0,43.0,30.0,27.0,37.0,29.0,30.0,29.0,24.0,31.0,30.0,20.0,18.0,19.0,25.0,23.0,25.0,20.0,26.0,27.0,23.0,18.0,16.0,18.0,13.0,16.0,11.0,7.0,8.0,11.0,3.0,8.0,3.0,2.0,4.0,3.0,1.0,2.0 K83081,11.0,15.0,11.0,12.0,14.0,15.0,10.0,7.0,17.0,17.0,10.0,11.0,10.0,6.0,10.0,11.0,9.0,8.0,11.0,5.0,10.0,8.0,10.0,7.0,10.0,10.0,12.0,10.0,9.0,15.0,7.0,15.0,21.0,12.0,8.0,18.0,23.0,9.0,9.0,14.0,14.0,13.0,11.0,11.0,17.0,18.0,13.0,9.0,14.0,12.0,8.0,11.0,12.0,19.0,15.0,16.0,18.0,16.0,15.0,19.0,12.0,10.0,8.0,13.0,10.0,8.0,10.0,9.0,13.0,10.0,13.0,5.0,8.0,11.0,11.0,9.0,5.0,6.0,4.0,7.0,2.0,1.0,5.0,2.0,3.0,1.0,2.0,2.0,,1.0,3.0,3.0,1.0,,, K83601,26.0,45.0,42.0,41.0,47.0,42.0,45.0,48.0,41.0,42.0,44.0,46.0,48.0,61.0,65.0,47.0,50.0,59.0,57.0,43.0,29.0,49.0,56.0,41.0,37.0,49.0,43.0,41.0,45.0,54.0,48.0,46.0,64.0,60.0,62.0,60.0,51.0,53.0,46.0,64.0,51.0,50.0,60.0,53.0,68.0,66.0,67.0,53.0,64.0,59.0,70.0,64.0,59.0,73.0,82.0,78.0,65.0,67.0,68.0,84.0,54.0,72.0,52.0,47.0,54.0,53.0,43.0,53.0,35.0,54.0,43.0,41.0,37.0,48.0,39.0,45.0,30.0,37.0,39.0,27.0,35.0,34.0,27.0,24.0,18.0,15.0,9.0,8.0,6.0,10.0,3.0,4.0,2.0,3.0,1.0,4.0 K83610,59.0,67.0,49.0,61.0,76.0,85.0,50.0,60.0,75.0,82.0,82.0,70.0,77.0,88.0,71.0,83.0,74.0,67.0,68.0,52.0,35.0,42.0,49.0,44.0,57.0,54.0,63.0,61.0,58.0,78.0,59.0,80.0,96.0,65.0,95.0,78.0,92.0,92.0,75.0,86.0,95.0,84.0,113.0,76.0,78.0,88.0,90.0,78.0,58.0,73.0,66.0,57.0,73.0,76.0,76.0,66.0,70.0,68.0,57.0,58.0,51.0,48.0,60.0,55.0,60.0,40.0,39.0,59.0,42.0,43.0,39.0,44.0,36.0,31.0,32.0,35.0,31.0,44.0,31.0,18.0,21.0,18.0,14.0,16.0,17.0,6.0,6.0,2.0,6.0,4.0,3.0,5.0,3.0,3.0,1.0,3.0 K83614,37.0,33.0,45.0,41.0,40.0,58.0,64.0,60.0,61.0,56.0,59.0,57.0,54.0,65.0,67.0,64.0,56.0,43.0,43.0,43.0,43.0,56.0,31.0,35.0,39.0,33.0,50.0,42.0,43.0,59.0,50.0,51.0,61.0,55.0,56.0,54.0,57.0,67.0,56.0,66.0,55.0,52.0,54.0,67.0,59.0,67.0,64.0,49.0,51.0,52.0,46.0,45.0,58.0,52.0,40.0,46.0,63.0,61.0,93.0,56.0,62.0,63.0,76.0,47.0,72.0,53.0,62.0,42.0,43.0,42.0,32.0,34.0,32.0,30.0,36.0,26.0,30.0,27.0,28.0,25.0,21.0,17.0,17.0,7.0,6.0,10.0,13.0,10.0,6.0,5.0,2.0,4.0,5.0,2.0,2.0,2.0 K83616,26.0,43.0,34.0,29.0,41.0,37.0,24.0,36.0,33.0,36.0,38.0,45.0,35.0,39.0,51.0,46.0,36.0,29.0,40.0,34.0,33.0,23.0,35.0,24.0,37.0,27.0,35.0,44.0,33.0,46.0,47.0,42.0,39.0,41.0,50.0,44.0,46.0,51.0,40.0,37.0,35.0,32.0,42.0,38.0,32.0,53.0,29.0,34.0,26.0,34.0,49.0,42.0,39.0,51.0,51.0,45.0,55.0,49.0,44.0,55.0,52.0,39.0,41.0,36.0,41.0,34.0,28.0,36.0,23.0,18.0,29.0,33.0,23.0,31.0,23.0,25.0,30.0,24.0,19.0,23.0,19.0,12.0,15.0,6.0,13.0,3.0,7.0,8.0,4.0,4.0,1.0,3.0,1.0,,1.0,4.0 K83618,51.0,72.0,72.0,101.0,66.0,96.0,104.0,89.0,108.0,110.0,104.0,105.0,85.0,96.0,112.0,100.0,101.0,101.0,73.0,74.0,64.0,67.0,63.0,66.0,76.0,69.0,78.0,86.0,69.0,86.0,87.0,96.0,111.0,120.0,109.0,115.0,128.0,148.0,131.0,123.0,108.0,100.0,104.0,117.0,109.0,119.0,131.0,84.0,98.0,93.0,83.0,92.0,70.0,69.0,69.0,83.0,94.0,75.0,47.0,74.0,62.0,59.0,59.0,52.0,54.0,31.0,49.0,45.0,44.0,40.0,28.0,37.0,27.0,30.0,24.0,26.0,28.0,23.0,29.0,23.0,19.0,12.0,9.0,8.0,3.0,7.0,6.0,7.0,7.0,1.0,6.0,3.0,,1.0,3.0,2.0 K83620,26.0,42.0,41.0,48.0,38.0,47.0,47.0,55.0,43.0,62.0,51.0,45.0,55.0,58.0,68.0,58.0,60.0,66.0,43.0,47.0,48.0,41.0,48.0,48.0,36.0,45.0,52.0,62.0,51.0,34.0,47.0,52.0,59.0,67.0,54.0,59.0,58.0,70.0,69.0,69.0,46.0,53.0,52.0,63.0,54.0,59.0,52.0,70.0,64.0,65.0,79.0,60.0,63.0,83.0,84.0,59.0,65.0,63.0,56.0,79.0,70.0,54.0,56.0,66.0,57.0,60.0,45.0,52.0,53.0,53.0,46.0,51.0,49.0,44.0,39.0,40.0,49.0,49.0,62.0,41.0,33.0,37.0,37.0,19.0,11.0,14.0,7.0,13.0,10.0,7.0,9.0,8.0,2.0,5.0,1.0,3.0 K83621,113.0,109.0,122.0,104.0,111.0,101.0,96.0,97.0,96.0,99.0,80.0,61.0,64.0,66.0,69.0,71.0,80.0,78.0,90.0,87.0,103.0,72.0,94.0,99.0,132.0,125.0,153.0,162.0,198.0,209.0,228.0,220.0,229.0,232.0,255.0,265.0,215.0,241.0,218.0,213.0,209.0,172.0,171.0,199.0,141.0,137.0,149.0,125.0,122.0,100.0,123.0,102.0,104.0,92.0,99.0,83.0,80.0,53.0,52.0,44.0,50.0,45.0,45.0,39.0,23.0,29.0,23.0,31.0,16.0,13.0,12.0,13.0,15.0,12.0,5.0,10.0,9.0,5.0,4.0,7.0,3.0,3.0,3.0,3.0,3.0,4.0,,2.0,2.0,2.0,2.0,3.0,,3.0,, K83622,54.0,77.0,89.0,88.0,106.0,101.0,117.0,113.0,126.0,123.0,128.0,133.0,123.0,122.0,121.0,118.0,123.0,122.0,120.0,99.0,77.0,77.0,76.0,82.0,74.0,77.0,68.0,75.0,54.0,102.0,82.0,101.0,94.0,103.0,128.0,122.0,119.0,107.0,140.0,131.0,135.0,134.0,137.0,132.0,138.0,138.0,136.0,116.0,116.0,134.0,104.0,90.0,105.0,113.0,101.0,79.0,100.0,96.0,93.0,89.0,81.0,80.0,90.0,74.0,93.0,65.0,63.0,69.0,60.0,65.0,55.0,35.0,40.0,48.0,45.0,46.0,39.0,48.0,32.0,22.0,23.0,10.0,19.0,11.0,19.0,9.0,9.0,11.0,6.0,10.0,1.0,1.0,3.0,3.0,1.0, Y00399,10.0,15.0,16.0,16.0,16.0,20.0,19.0,12.0,19.0,21.0,20.0,27.0,20.0,42.0,27.0,25.0,33.0,20.0,31.0,17.0,15.0,23.0,18.0,23.0,28.0,18.0,20.0,23.0,17.0,21.0,14.0,31.0,32.0,27.0,26.0,39.0,26.0,27.0,17.0,28.0,25.0,20.0,32.0,21.0,34.0,31.0,25.0,21.0,23.0,31.0,41.0,34.0,37.0,37.0,23.0,33.0,34.0,35.0,24.0,29.0,34.0,29.0,28.0,30.0,27.0,28.0,24.0,22.0,18.0,22.0,19.0,20.0,23.0,27.0,14.0,23.0,19.0,26.0,22.0,18.0,19.0,18.0,15.0,11.0,6.0,4.0,9.0,9.0,8.0,5.0,5.0,1.0,2.0,,,2.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 L84003,47.0,56.0,47.0,40.0,51.0,58.0,58.0,50.0,64.0,54.0,51.0,53.0,46.0,57.0,48.0,47.0,56.0,50.0,69.0,86.0,106.0,141.0,121.0,101.0,149.0,159.0,162.0,167.0,185.0,163.0,154.0,111.0,110.0,141.0,106.0,122.0,75.0,83.0,68.0,80.0,90.0,84.0,90.0,84.0,80.0,69.0,87.0,73.0,48.0,70.0,55.0,40.0,65.0,42.0,46.0,52.0,54.0,42.0,46.0,54.0,50.0,65.0,59.0,48.0,43.0,51.0,29.0,40.0,38.0,24.0,25.0,27.0,31.0,38.0,34.0,33.0,37.0,38.0,31.0,27.0,26.0,13.0,24.0,17.0,17.0,14.0,12.0,9.0,9.0,14.0,14.0,6.0,9.0,5.0,1.0,7.0 L84004,20.0,24.0,31.0,23.0,36.0,45.0,29.0,48.0,50.0,46.0,42.0,44.0,42.0,44.0,50.0,40.0,33.0,36.0,36.0,20.0,38.0,36.0,28.0,35.0,28.0,24.0,32.0,39.0,19.0,27.0,29.0,31.0,50.0,43.0,30.0,32.0,36.0,27.0,37.0,35.0,47.0,43.0,48.0,59.0,45.0,45.0,40.0,42.0,42.0,40.0,42.0,45.0,41.0,50.0,46.0,49.0,59.0,50.0,69.0,61.0,52.0,62.0,57.0,79.0,52.0,52.0,54.0,57.0,55.0,55.0,48.0,60.0,53.0,46.0,49.0,55.0,71.0,73.0,67.0,36.0,39.0,48.0,31.0,31.0,20.0,25.0,30.0,20.0,16.0,11.0,12.0,7.0,7.0,9.0,4.0,6.0 L84005,16.0,31.0,27.0,33.0,31.0,24.0,32.0,42.0,42.0,40.0,43.0,45.0,44.0,55.0,59.0,39.0,59.0,43.0,43.0,40.0,32.0,37.0,24.0,27.0,32.0,34.0,20.0,28.0,30.0,33.0,28.0,25.0,26.0,30.0,34.0,35.0,35.0,34.0,30.0,37.0,30.0,25.0,41.0,41.0,42.0,43.0,44.0,46.0,50.0,41.0,57.0,56.0,66.0,58.0,44.0,40.0,59.0,61.0,65.0,65.0,71.0,67.0,61.0,69.0,62.0,66.0,53.0,47.0,41.0,62.0,57.0,52.0,43.0,64.0,46.0,52.0,68.0,65.0,60.0,47.0,48.0,48.0,37.0,36.0,20.0,21.0,26.0,25.0,24.0,21.0,14.0,15.0,7.0,8.0,6.0,5.0 L84006,13.0,29.0,26.0,29.0,33.0,20.0,31.0,27.0,32.0,23.0,27.0,29.0,32.0,31.0,22.0,21.0,67.0,117.0,97.0,86.0,79.0,59.0,49.0,55.0,45.0,36.0,39.0,40.0,28.0,25.0,33.0,27.0,40.0,32.0,35.0,30.0,27.0,35.0,32.0,30.0,38.0,22.0,28.0,28.0,27.0,23.0,37.0,33.0,31.0,33.0,34.0,27.0,38.0,36.0,55.0,34.0,43.0,35.0,57.0,57.0,44.0,66.0,58.0,61.0,65.0,48.0,43.0,34.0,45.0,42.0,47.0,40.0,25.0,39.0,31.0,31.0,38.0,44.0,34.0,32.0,30.0,23.0,28.0,24.0,15.0,21.0,13.0,12.0,14.0,7.0,10.0,4.0,2.0,4.0,3.0,1.0 L84007,46.0,40.0,38.0,55.0,62.0,61.0,60.0,60.0,59.0,70.0,65.0,65.0,79.0,101.0,89.0,77.0,78.0,80.0,71.0,68.0,54.0,55.0,62.0,64.0,64.0,66.0,69.0,63.0,56.0,61.0,74.0,72.0,70.0,68.0,72.0,76.0,70.0,66.0,74.0,77.0,73.0,71.0,74.0,84.0,84.0,81.0,88.0,65.0,63.0,78.0,79.0,86.0,83.0,111.0,94.0,89.0,107.0,92.0,90.0,85.0,98.0,97.0,94.0,68.0,84.0,75.0,71.0,70.0,56.0,64.0,55.0,72.0,50.0,61.0,65.0,64.0,65.0,47.0,54.0,42.0,32.0,35.0,43.0,26.0,25.0,31.0,26.0,16.0,12.0,4.0,9.0,4.0,9.0,2.0,4.0,4.0 L84008,53.0,59.0,55.0,65.0,56.0,53.0,61.0,76.0,56.0,61.0,80.0,73.0,72.0,69.0,67.0,81.0,67.0,64.0,60.0,48.0,46.0,53.0,63.0,61.0,86.0,102.0,102.0,95.0,88.0,112.0,110.0,98.0,125.0,95.0,95.0,102.0,103.0,92.0,105.0,97.0,93.0,99.0,93.0,104.0,91.0,100.0,86.0,67.0,72.0,70.0,66.0,79.0,72.0,73.0,66.0,69.0,90.0,79.0,66.0,59.0,94.0,76.0,53.0,66.0,66.0,70.0,63.0,54.0,54.0,49.0,47.0,45.0,50.0,57.0,36.0,54.0,53.0,40.0,45.0,40.0,36.0,32.0,33.0,31.0,22.0,12.0,20.0,16.0,20.0,13.0,12.0,7.0,3.0,4.0,3.0,6.0 L84009,97.0,96.0,96.0,111.0,101.0,105.0,115.0,134.0,92.0,131.0,125.0,136.0,137.0,131.0,123.0,117.0,107.0,116.0,113.0,102.0,98.0,99.0,91.0,80.0,85.0,95.0,105.0,110.0,111.0,103.0,112.0,121.0,124.0,127.0,145.0,144.0,141.0,132.0,149.0,155.0,141.0,138.0,131.0,131.0,148.0,138.0,103.0,135.0,106.0,96.0,109.0,132.0,104.0,117.0,121.0,122.0,125.0,134.0,129.0,131.0,109.0,139.0,109.0,141.0,123.0,111.0,107.0,115.0,84.0,91.0,86.0,87.0,88.0,78.0,75.0,89.0,74.0,73.0,66.0,60.0,62.0,37.0,36.0,46.0,28.0,13.0,25.0,21.0,24.0,24.0,19.0,9.0,9.0,6.0,2.0,4.0 L84010,22.0,24.0,37.0,44.0,32.0,44.0,42.0,57.0,52.0,50.0,64.0,63.0,63.0,65.0,66.0,70.0,55.0,56.0,66.0,57.0,45.0,58.0,52.0,50.0,56.0,61.0,54.0,54.0,52.0,39.0,54.0,59.0,44.0,50.0,40.0,39.0,61.0,45.0,52.0,47.0,50.0,57.0,58.0,73.0,60.0,55.0,59.0,68.0,65.0,60.0,75.0,69.0,73.0,78.0,84.0,98.0,89.0,93.0,99.0,83.0,92.0,101.0,98.0,103.0,94.0,91.0,90.0,76.0,74.0,78.0,80.0,66.0,77.0,76.0,71.0,65.0,79.0,67.0,73.0,49.0,57.0,42.0,59.0,30.0,35.0,26.0,48.0,23.0,21.0,16.0,17.0,7.0,11.0,8.0,4.0,15.0 L84011,43.0,53.0,42.0,52.0,26.0,49.0,61.0,36.0,48.0,32.0,39.0,46.0,44.0,38.0,38.0,32.0,38.0,55.0,42.0,49.0,28.0,26.0,41.0,44.0,42.0,49.0,46.0,46.0,47.0,46.0,61.0,57.0,52.0,56.0,82.0,55.0,58.0,61.0,53.0,55.0,36.0,40.0,40.0,39.0,46.0,43.0,43.0,30.0,35.0,30.0,36.0,34.0,37.0,56.0,49.0,50.0,57.0,61.0,60.0,59.0,58.0,55.0,58.0,61.0,57.0,56.0,60.0,55.0,37.0,54.0,41.0,49.0,41.0,33.0,54.0,47.0,62.0,36.0,31.0,30.0,30.0,44.0,29.0,24.0,14.0,22.0,11.0,17.0,10.0,9.0,11.0,8.0,,8.0,4.0,2.0 L84012,113.0,105.0,112.0,131.0,102.0,125.0,120.0,135.0,122.0,141.0,123.0,133.0,117.0,163.0,139.0,120.0,131.0,117.0,131.0,138.0,113.0,119.0,134.0,126.0,119.0,123.0,129.0,122.0,159.0,122.0,141.0,152.0,167.0,143.0,158.0,150.0,147.0,133.0,147.0,148.0,163.0,138.0,158.0,139.0,133.0,135.0,129.0,127.0,138.0,118.0,143.0,153.0,165.0,153.0,169.0,159.0,170.0,163.0,173.0,201.0,171.0,179.0,169.0,167.0,120.0,156.0,160.0,175.0,127.0,135.0,140.0,139.0,146.0,109.0,118.0,124.0,154.0,123.0,135.0,95.0,98.0,98.0,78.0,68.0,58.0,70.0,56.0,45.0,45.0,38.0,19.0,28.0,10.0,10.0,2.0,19.0 L84014,24.0,24.0,33.0,33.0,36.0,32.0,34.0,59.0,42.0,55.0,45.0,48.0,37.0,52.0,57.0,56.0,58.0,55.0,39.0,56.0,40.0,45.0,42.0,47.0,46.0,41.0,46.0,43.0,46.0,46.0,52.0,39.0,47.0,42.0,37.0,50.0,50.0,47.0,44.0,32.0,64.0,52.0,50.0,51.0,57.0,48.0,47.0,43.0,49.0,52.0,53.0,63.0,51.0,62.0,61.0,52.0,65.0,77.0,73.0,73.0,70.0,69.0,68.0,51.0,68.0,61.0,46.0,56.0,54.0,55.0,42.0,43.0,41.0,50.0,43.0,46.0,58.0,51.0,68.0,41.0,57.0,41.0,52.0,39.0,30.0,28.0,33.0,34.0,23.0,22.0,13.0,8.0,10.0,5.0,4.0,6.0 L84015,22.0,34.0,51.0,22.0,42.0,51.0,57.0,63.0,80.0,73.0,68.0,76.0,78.0,83.0,87.0,88.0,87.0,85.0,85.0,56.0,46.0,61.0,55.0,50.0,50.0,44.0,41.0,51.0,52.0,29.0,50.0,46.0,39.0,56.0,58.0,45.0,41.0,50.0,46.0,63.0,57.0,61.0,82.0,85.0,77.0,73.0,61.0,61.0,65.0,78.0,88.0,75.0,59.0,86.0,94.0,89.0,80.0,84.0,88.0,76.0,99.0,83.0,66.0,68.0,90.0,63.0,58.0,53.0,61.0,43.0,49.0,60.0,39.0,52.0,52.0,51.0,57.0,58.0,57.0,48.0,49.0,32.0,34.0,30.0,37.0,33.0,25.0,20.0,26.0,17.0,15.0,9.0,11.0,3.0,6.0,12.0 L84016,15.0,14.0,28.0,23.0,25.0,25.0,40.0,39.0,37.0,32.0,33.0,28.0,40.0,56.0,51.0,56.0,45.0,47.0,45.0,31.0,40.0,35.0,26.0,24.0,39.0,29.0,37.0,34.0,20.0,20.0,23.0,20.0,28.0,37.0,34.0,36.0,28.0,27.0,23.0,32.0,42.0,24.0,35.0,38.0,51.0,45.0,52.0,33.0,54.0,32.0,49.0,63.0,58.0,46.0,55.0,47.0,51.0,55.0,54.0,67.0,66.0,60.0,54.0,60.0,70.0,56.0,42.0,34.0,38.0,42.0,44.0,37.0,37.0,34.0,28.0,37.0,31.0,48.0,49.0,31.0,31.0,25.0,24.0,23.0,21.0,18.0,15.0,10.0,14.0,13.0,8.0,6.0,5.0,,1.0,4.0 L84018,46.0,49.0,45.0,50.0,55.0,51.0,60.0,56.0,66.0,61.0,81.0,62.0,58.0,66.0,64.0,72.0,57.0,55.0,69.0,56.0,44.0,52.0,71.0,57.0,61.0,60.0,76.0,84.0,76.0,82.0,89.0,78.0,97.0,82.0,103.0,105.0,97.0,68.0,93.0,80.0,84.0,78.0,84.0,79.0,91.0,94.0,70.0,60.0,90.0,77.0,74.0,78.0,87.0,90.0,89.0,94.0,112.0,88.0,98.0,92.0,90.0,92.0,73.0,93.0,97.0,85.0,71.0,75.0,63.0,76.0,65.0,81.0,57.0,67.0,63.0,68.0,80.0,79.0,87.0,61.0,45.0,48.0,48.0,32.0,33.0,18.0,26.0,23.0,22.0,21.0,18.0,9.0,14.0,13.0,11.0,17.0 L84021,38.0,31.0,43.0,35.0,31.0,41.0,40.0,46.0,35.0,51.0,61.0,44.0,48.0,54.0,74.0,43.0,48.0,45.0,45.0,42.0,47.0,44.0,40.0,30.0,34.0,41.0,43.0,36.0,44.0,44.0,56.0,41.0,51.0,47.0,47.0,49.0,36.0,45.0,60.0,59.0,46.0,50.0,32.0,64.0,37.0,39.0,53.0,34.0,32.0,43.0,58.0,55.0,61.0,76.0,62.0,70.0,80.0,74.0,75.0,81.0,81.0,67.0,86.0,68.0,66.0,54.0,53.0,59.0,71.0,62.0,50.0,59.0,50.0,64.0,56.0,47.0,55.0,57.0,54.0,37.0,31.0,45.0,36.0,27.0,14.0,18.0,12.0,16.0,9.0,5.0,11.0,8.0,3.0,1.0,,3.0 L84022,26.0,24.0,31.0,32.0,28.0,31.0,44.0,37.0,48.0,42.0,58.0,52.0,43.0,53.0,53.0,39.0,40.0,47.0,34.0,37.0,32.0,56.0,37.0,41.0,40.0,42.0,48.0,50.0,56.0,73.0,52.0,63.0,54.0,51.0,64.0,60.0,47.0,58.0,49.0,60.0,45.0,55.0,80.0,48.0,62.0,46.0,67.0,58.0,58.0,56.0,41.0,52.0,60.0,49.0,59.0,50.0,62.0,61.0,74.0,61.0,86.0,64.0,49.0,57.0,61.0,55.0,53.0,52.0,39.0,46.0,38.0,42.0,44.0,38.0,32.0,40.0,33.0,45.0,35.0,21.0,27.0,19.0,21.0,16.0,10.0,16.0,19.0,17.0,15.0,8.0,6.0,6.0,7.0,3.0,2.0,7.0 L84023,52.0,58.0,56.0,51.0,60.0,54.0,71.0,79.0,69.0,85.0,64.0,70.0,72.0,71.0,77.0,74.0,74.0,66.0,72.0,58.0,44.0,67.0,61.0,58.0,76.0,67.0,84.0,79.0,83.0,85.0,96.0,70.0,74.0,101.0,85.0,79.0,86.0,96.0,75.0,73.0,84.0,70.0,73.0,77.0,85.0,81.0,69.0,80.0,77.0,87.0,66.0,69.0,78.0,87.0,97.0,81.0,87.0,121.0,106.0,101.0,96.0,105.0,90.0,88.0,89.0,81.0,91.0,71.0,74.0,86.0,81.0,77.0,81.0,81.0,71.0,73.0,70.0,76.0,76.0,55.0,50.0,56.0,53.0,40.0,34.0,31.0,22.0,32.0,17.0,15.0,11.0,11.0,11.0,3.0,3.0,10.0 L84024,10.0,20.0,16.0,18.0,18.0,19.0,15.0,17.0,24.0,21.0,20.0,15.0,21.0,26.0,16.0,11.0,22.0,19.0,18.0,19.0,21.0,20.0,12.0,13.0,19.0,16.0,20.0,17.0,17.0,17.0,18.0,26.0,19.0,23.0,15.0,25.0,18.0,25.0,24.0,16.0,20.0,18.0,12.0,25.0,20.0,15.0,10.0,14.0,16.0,26.0,19.0,30.0,36.0,25.0,37.0,29.0,25.0,31.0,38.0,43.0,43.0,25.0,40.0,24.0,32.0,32.0,35.0,21.0,24.0,21.0,27.0,26.0,29.0,18.0,25.0,20.0,16.0,17.0,22.0,18.0,18.0,19.0,15.0,18.0,10.0,3.0,10.0,8.0,5.0,5.0,2.0,3.0,3.0,5.0,2.0,3.0 L84025,9.0,11.0,17.0,18.0,21.0,19.0,20.0,25.0,17.0,20.0,22.0,22.0,27.0,26.0,31.0,24.0,21.0,21.0,25.0,19.0,27.0,14.0,17.0,19.0,21.0,10.0,19.0,12.0,13.0,16.0,21.0,10.0,14.0,24.0,16.0,14.0,19.0,18.0,22.0,16.0,17.0,25.0,15.0,34.0,23.0,15.0,29.0,22.0,19.0,31.0,31.0,20.0,36.0,33.0,29.0,30.0,23.0,38.0,36.0,32.0,36.0,30.0,37.0,33.0,45.0,35.0,30.0,43.0,38.0,47.0,46.0,33.0,35.0,31.0,43.0,33.0,36.0,33.0,30.0,31.0,30.0,26.0,27.0,24.0,22.0,17.0,21.0,15.0,9.0,6.0,13.0,13.0,3.0,3.0,3.0,8.0 L84026,127.0,173.0,164.0,159.0,144.0,171.0,180.0,191.0,220.0,193.0,194.0,216.0,205.0,210.0,196.0,203.0,201.0,240.0,181.0,181.0,180.0,214.0,189.0,211.0,198.0,204.0,211.0,210.0,207.0,255.0,238.0,270.0,288.0,239.0,250.0,258.0,260.0,276.0,244.0,242.0,252.0,224.0,233.0,219.0,221.0,203.0,191.0,184.0,147.0,206.0,184.0,212.0,193.0,189.0,181.0,206.0,198.0,239.0,193.0,203.0,184.0,191.0,213.0,203.0,188.0,156.0,170.0,164.0,166.0,158.0,146.0,123.0,102.0,115.0,118.0,130.0,131.0,127.0,123.0,90.0,98.0,98.0,93.0,67.0,57.0,55.0,54.0,40.0,32.0,34.0,32.0,18.0,22.0,8.0,5.0,14.0 L84027,70.0,64.0,75.0,95.0,89.0,83.0,102.0,84.0,105.0,118.0,89.0,91.0,118.0,93.0,116.0,112.0,94.0,112.0,85.0,84.0,60.0,96.0,71.0,79.0,90.0,67.0,79.0,82.0,88.0,95.0,107.0,104.0,102.0,99.0,89.0,106.0,113.0,101.0,97.0,105.0,99.0,97.0,95.0,105.0,112.0,114.0,112.0,89.0,100.0,128.0,105.0,128.0,103.0,144.0,154.0,131.0,141.0,140.0,150.0,123.0,148.0,139.0,128.0,140.0,147.0,131.0,134.0,127.0,111.0,105.0,103.0,115.0,109.0,103.0,92.0,95.0,109.0,113.0,108.0,86.0,82.0,75.0,67.0,47.0,57.0,45.0,26.0,33.0,17.0,17.0,16.0,16.0,9.0,6.0,6.0,9.0 L84028,44.0,40.0,53.0,63.0,42.0,51.0,56.0,58.0,71.0,63.0,46.0,86.0,58.0,69.0,77.0,68.0,74.0,59.0,64.0,56.0,66.0,55.0,61.0,72.0,59.0,73.0,58.0,67.0,77.0,73.0,73.0,80.0,74.0,65.0,67.0,88.0,84.0,94.0,86.0,68.0,82.0,76.0,58.0,73.0,60.0,59.0,72.0,43.0,57.0,61.0,65.0,70.0,93.0,83.0,81.0,82.0,83.0,97.0,98.0,101.0,81.0,89.0,83.0,91.0,72.0,65.0,69.0,77.0,69.0,65.0,57.0,70.0,70.0,70.0,66.0,78.0,74.0,68.0,58.0,48.0,57.0,47.0,49.0,26.0,27.0,23.0,24.0,22.0,18.0,13.0,11.0,10.0,1.0,3.0,4.0,5.0 L84029,13.0,18.0,8.0,13.0,19.0,9.0,14.0,15.0,10.0,17.0,10.0,21.0,27.0,10.0,16.0,15.0,16.0,10.0,11.0,17.0,18.0,10.0,15.0,17.0,17.0,10.0,21.0,21.0,19.0,13.0,14.0,23.0,18.0,19.0,22.0,27.0,13.0,14.0,15.0,22.0,23.0,14.0,16.0,18.0,22.0,19.0,18.0,18.0,20.0,23.0,23.0,22.0,28.0,28.0,23.0,30.0,27.0,33.0,33.0,37.0,35.0,26.0,31.0,24.0,32.0,27.0,26.0,19.0,31.0,23.0,12.0,23.0,17.0,21.0,25.0,15.0,20.0,22.0,14.0,19.0,13.0,16.0,12.0,9.0,13.0,8.0,4.0,7.0,2.0,2.0,4.0,2.0,4.0,3.0,2.0,2.0 L84030,77.0,83.0,84.0,83.0,90.0,93.0,107.0,94.0,86.0,96.0,86.0,92.0,109.0,101.0,153.0,137.0,153.0,146.0,146.0,118.0,83.0,101.0,93.0,77.0,91.0,106.0,112.0,125.0,120.0,138.0,173.0,131.0,164.0,147.0,164.0,170.0,178.0,150.0,130.0,163.0,157.0,126.0,130.0,148.0,140.0,152.0,134.0,135.0,134.0,96.0,115.0,118.0,111.0,103.0,103.0,111.0,110.0,124.0,102.0,109.0,98.0,118.0,100.0,95.0,92.0,96.0,81.0,97.0,75.0,79.0,60.0,69.0,60.0,65.0,66.0,65.0,71.0,58.0,60.0,50.0,38.0,27.0,33.0,30.0,20.0,18.0,29.0,23.0,26.0,17.0,8.0,8.0,4.0,3.0,5.0,10.0 L84031,13.0,12.0,27.0,33.0,20.0,22.0,19.0,28.0,23.0,18.0,25.0,22.0,22.0,22.0,34.0,31.0,26.0,27.0,25.0,22.0,20.0,20.0,23.0,23.0,20.0,27.0,15.0,24.0,27.0,19.0,24.0,27.0,39.0,25.0,28.0,24.0,28.0,34.0,32.0,21.0,28.0,34.0,31.0,24.0,29.0,37.0,42.0,24.0,23.0,33.0,29.0,47.0,24.0,41.0,33.0,45.0,41.0,35.0,43.0,46.0,56.0,47.0,41.0,45.0,38.0,46.0,47.0,35.0,49.0,31.0,33.0,39.0,43.0,35.0,41.0,34.0,34.0,39.0,38.0,29.0,39.0,31.0,36.0,21.0,25.0,20.0,19.0,11.0,15.0,9.0,6.0,6.0,4.0,6.0,4.0,6.0 L84033,62.0,75.0,65.0,80.0,68.0,75.0,104.0,96.0,120.0,109.0,130.0,125.0,148.0,126.0,149.0,142.0,141.0,98.0,119.0,93.0,109.0,100.0,103.0,117.0,95.0,91.0,120.0,88.0,116.0,109.0,117.0,117.0,101.0,150.0,105.0,118.0,124.0,122.0,145.0,151.0,132.0,135.0,127.0,140.0,151.0,132.0,143.0,130.0,117.0,148.0,109.0,140.0,116.0,127.0,113.0,145.0,127.0,149.0,147.0,155.0,138.0,121.0,143.0,128.0,145.0,130.0,126.0,92.0,102.0,101.0,93.0,85.0,77.0,87.0,64.0,92.0,87.0,77.0,92.0,49.0,56.0,70.0,53.0,46.0,50.0,42.0,40.0,38.0,40.0,30.0,28.0,20.0,6.0,15.0,4.0,18.0 L84034,45.0,65.0,36.0,61.0,52.0,43.0,76.0,70.0,78.0,81.0,79.0,72.0,86.0,100.0,76.0,76.0,88.0,87.0,93.0,73.0,71.0,73.0,69.0,69.0,85.0,94.0,67.0,91.0,81.0,89.0,86.0,87.0,79.0,85.0,73.0,80.0,103.0,81.0,92.0,79.0,88.0,85.0,81.0,88.0,94.0,97.0,75.0,59.0,88.0,79.0,67.0,71.0,83.0,79.0,81.0,93.0,97.0,96.0,83.0,85.0,72.0,89.0,78.0,87.0,60.0,62.0,71.0,48.0,57.0,62.0,54.0,54.0,54.0,42.0,49.0,47.0,48.0,46.0,53.0,24.0,21.0,29.0,23.0,24.0,20.0,16.0,14.0,10.0,13.0,11.0,7.0,6.0,5.0,2.0,3.0,4.0 L84036,59.0,67.0,53.0,59.0,64.0,73.0,71.0,71.0,67.0,79.0,70.0,74.0,70.0,80.0,77.0,60.0,78.0,70.0,74.0,51.0,47.0,53.0,46.0,50.0,51.0,50.0,61.0,53.0,42.0,70.0,72.0,80.0,68.0,77.0,89.0,83.0,82.0,69.0,71.0,87.0,69.0,89.0,79.0,77.0,73.0,76.0,72.0,55.0,61.0,62.0,72.0,75.0,78.0,63.0,61.0,71.0,83.0,75.0,75.0,80.0,74.0,79.0,70.0,66.0,66.0,52.0,66.0,52.0,46.0,59.0,45.0,38.0,46.0,42.0,47.0,50.0,43.0,53.0,51.0,41.0,46.0,38.0,35.0,33.0,30.0,32.0,21.0,23.0,11.0,12.0,12.0,6.0,7.0,5.0,4.0,13.0 L84037,57.0,61.0,52.0,53.0,53.0,60.0,60.0,45.0,72.0,59.0,59.0,57.0,67.0,68.0,63.0,71.0,67.0,56.0,51.0,54.0,44.0,44.0,48.0,36.0,61.0,53.0,58.0,82.0,80.0,65.0,65.0,65.0,68.0,63.0,73.0,75.0,77.0,75.0,78.0,68.0,68.0,65.0,62.0,65.0,61.0,54.0,62.0,52.0,59.0,70.0,74.0,55.0,68.0,74.0,73.0,83.0,83.0,93.0,86.0,93.0,88.0,91.0,104.0,78.0,89.0,81.0,84.0,79.0,82.0,73.0,72.0,63.0,79.0,93.0,70.0,62.0,65.0,94.0,97.0,60.0,59.0,57.0,51.0,43.0,26.0,37.0,35.0,20.0,20.0,15.0,18.0,12.0,5.0,5.0,4.0,11.0 L84038,32.0,38.0,41.0,51.0,62.0,54.0,50.0,53.0,66.0,54.0,59.0,67.0,64.0,68.0,65.0,73.0,67.0,85.0,68.0,47.0,60.0,50.0,48.0,48.0,45.0,49.0,53.0,46.0,40.0,51.0,47.0,48.0,43.0,52.0,51.0,54.0,62.0,65.0,64.0,54.0,56.0,67.0,68.0,64.0,65.0,73.0,71.0,53.0,71.0,69.0,65.0,69.0,76.0,79.0,82.0,85.0,85.0,83.0,92.0,105.0,100.0,99.0,76.0,90.0,67.0,82.0,74.0,79.0,66.0,68.0,73.0,72.0,73.0,64.0,64.0,61.0,63.0,73.0,66.0,37.0,65.0,51.0,59.0,43.0,38.0,36.0,24.0,25.0,29.0,14.0,14.0,16.0,7.0,4.0,5.0,9.0 L84039,28.0,28.0,38.0,44.0,37.0,40.0,37.0,46.0,43.0,45.0,42.0,58.0,47.0,60.0,54.0,60.0,56.0,60.0,55.0,43.0,53.0,47.0,45.0,43.0,54.0,41.0,48.0,34.0,50.0,45.0,62.0,50.0,54.0,53.0,61.0,49.0,61.0,43.0,66.0,53.0,58.0,62.0,50.0,63.0,45.0,48.0,52.0,55.0,45.0,65.0,66.0,66.0,54.0,72.0,68.0,62.0,80.0,70.0,67.0,77.0,64.0,69.0,67.0,62.0,71.0,47.0,44.0,55.0,45.0,47.0,54.0,64.0,35.0,49.0,46.0,51.0,35.0,42.0,50.0,27.0,30.0,26.0,22.0,18.0,17.0,17.0,11.0,12.0,13.0,4.0,10.0,6.0,4.0,2.0,3.0,4.0 L84040,43.0,57.0,51.0,58.0,68.0,73.0,79.0,83.0,67.0,96.0,69.0,86.0,74.0,70.0,73.0,83.0,68.0,37.0,64.0,43.0,53.0,41.0,45.0,54.0,53.0,50.0,59.0,54.0,46.0,53.0,61.0,56.0,56.0,65.0,68.0,58.0,69.0,65.0,65.0,75.0,75.0,82.0,110.0,76.0,69.0,86.0,82.0,81.0,71.0,74.0,75.0,99.0,63.0,79.0,87.0,98.0,84.0,93.0,95.0,100.0,92.0,108.0,84.0,92.0,89.0,94.0,70.0,73.0,72.0,84.0,68.0,78.0,91.0,69.0,69.0,79.0,68.0,81.0,81.0,51.0,51.0,46.0,58.0,39.0,42.0,41.0,31.0,24.0,34.0,20.0,25.0,12.0,14.0,7.0,6.0,11.0 L84041,46.0,41.0,51.0,62.0,52.0,63.0,57.0,51.0,55.0,53.0,69.0,62.0,72.0,79.0,77.0,93.0,86.0,84.0,67.0,55.0,38.0,48.0,49.0,65.0,53.0,57.0,61.0,68.0,72.0,60.0,69.0,74.0,75.0,96.0,98.0,80.0,78.0,69.0,82.0,77.0,84.0,71.0,74.0,95.0,83.0,87.0,68.0,62.0,74.0,71.0,89.0,78.0,87.0,83.0,65.0,95.0,99.0,94.0,98.0,106.0,90.0,85.0,97.0,79.0,90.0,80.0,81.0,76.0,71.0,51.0,50.0,53.0,44.0,36.0,42.0,58.0,45.0,53.0,45.0,47.0,35.0,32.0,28.0,24.0,19.0,25.0,28.0,18.0,15.0,8.0,7.0,7.0,9.0,8.0,6.0,10.0 L84043,17.0,11.0,11.0,16.0,17.0,15.0,20.0,25.0,19.0,23.0,25.0,20.0,23.0,20.0,30.0,34.0,32.0,32.0,27.0,17.0,16.0,22.0,24.0,19.0,18.0,22.0,22.0,18.0,21.0,15.0,25.0,18.0,15.0,23.0,21.0,22.0,18.0,15.0,24.0,18.0,22.0,25.0,17.0,28.0,19.0,23.0,21.0,20.0,25.0,18.0,28.0,24.0,34.0,42.0,38.0,35.0,37.0,41.0,38.0,46.0,45.0,39.0,30.0,46.0,38.0,44.0,47.0,32.0,30.0,30.0,34.0,42.0,30.0,37.0,39.0,40.0,33.0,31.0,38.0,28.0,33.0,24.0,24.0,30.0,17.0,13.0,18.0,11.0,17.0,11.0,10.0,4.0,4.0,3.0,2.0,5.0 L84045,18.0,28.0,35.0,26.0,31.0,35.0,33.0,28.0,27.0,39.0,40.0,24.0,45.0,46.0,36.0,44.0,52.0,31.0,39.0,38.0,34.0,25.0,30.0,39.0,22.0,36.0,25.0,23.0,31.0,28.0,39.0,32.0,30.0,33.0,33.0,42.0,32.0,41.0,51.0,37.0,29.0,41.0,45.0,38.0,36.0,35.0,46.0,46.0,33.0,38.0,32.0,46.0,48.0,58.0,58.0,65.0,53.0,57.0,61.0,52.0,54.0,58.0,52.0,53.0,49.0,65.0,51.0,50.0,54.0,38.0,50.0,54.0,56.0,50.0,36.0,51.0,43.0,49.0,45.0,28.0,36.0,31.0,32.0,18.0,20.0,23.0,20.0,15.0,16.0,7.0,11.0,9.0,4.0,4.0,,11.0 L84046,30.0,25.0,34.0,40.0,34.0,32.0,32.0,32.0,38.0,33.0,36.0,31.0,28.0,37.0,37.0,37.0,24.0,41.0,26.0,27.0,28.0,32.0,30.0,25.0,39.0,37.0,35.0,34.0,31.0,38.0,29.0,49.0,48.0,45.0,34.0,39.0,54.0,46.0,42.0,44.0,41.0,36.0,37.0,41.0,33.0,39.0,36.0,37.0,27.0,29.0,31.0,30.0,41.0,38.0,45.0,36.0,43.0,43.0,49.0,44.0,51.0,49.0,51.0,56.0,43.0,37.0,27.0,42.0,49.0,48.0,32.0,43.0,30.0,33.0,27.0,31.0,32.0,37.0,42.0,24.0,16.0,23.0,25.0,12.0,16.0,14.0,13.0,9.0,15.0,2.0,9.0,2.0,8.0,5.0,3.0,6.0 L84047,91.0,86.0,97.0,82.0,93.0,81.0,97.0,84.0,108.0,92.0,112.0,128.0,123.0,106.0,94.0,82.0,104.0,97.0,83.0,86.0,64.0,64.0,59.0,74.0,61.0,76.0,72.0,83.0,94.0,100.0,118.0,103.0,96.0,96.0,114.0,102.0,92.0,98.0,93.0,93.0,85.0,107.0,102.0,112.0,112.0,111.0,86.0,63.0,82.0,108.0,79.0,92.0,88.0,96.0,101.0,100.0,112.0,86.0,104.0,101.0,86.0,114.0,110.0,104.0,84.0,88.0,85.0,88.0,74.0,68.0,72.0,77.0,73.0,63.0,55.0,85.0,70.0,80.0,65.0,53.0,63.0,56.0,49.0,39.0,34.0,40.0,32.0,30.0,27.0,18.0,13.0,14.0,8.0,9.0,4.0,12.0 L84048,40.0,43.0,39.0,55.0,42.0,58.0,59.0,59.0,70.0,62.0,77.0,61.0,71.0,68.0,69.0,58.0,63.0,60.0,55.0,51.0,58.0,48.0,42.0,48.0,49.0,38.0,45.0,54.0,43.0,45.0,45.0,42.0,47.0,49.0,66.0,57.0,69.0,58.0,54.0,66.0,60.0,57.0,62.0,62.0,65.0,62.0,57.0,58.0,65.0,52.0,49.0,52.0,68.0,61.0,53.0,63.0,74.0,67.0,68.0,76.0,62.0,69.0,61.0,71.0,44.0,70.0,43.0,55.0,72.0,58.0,54.0,55.0,48.0,63.0,62.0,65.0,60.0,50.0,73.0,47.0,51.0,48.0,41.0,44.0,20.0,31.0,32.0,35.0,17.0,11.0,15.0,15.0,12.0,4.0,4.0,10.0 L84049,23.0,46.0,25.0,30.0,33.0,43.0,52.0,35.0,46.0,42.0,37.0,50.0,55.0,48.0,50.0,43.0,49.0,33.0,45.0,51.0,40.0,58.0,46.0,59.0,65.0,72.0,62.0,93.0,76.0,84.0,84.0,78.0,74.0,80.0,80.0,74.0,74.0,73.0,65.0,48.0,69.0,71.0,57.0,76.0,68.0,67.0,52.0,50.0,60.0,37.0,57.0,55.0,66.0,59.0,49.0,45.0,50.0,43.0,52.0,53.0,44.0,51.0,52.0,34.0,38.0,39.0,43.0,31.0,32.0,35.0,25.0,31.0,32.0,24.0,25.0,23.0,30.0,20.0,42.0,28.0,26.0,25.0,18.0,14.0,14.0,8.0,6.0,9.0,9.0,7.0,4.0,5.0,6.0,1.0,7.0,5.0 L84050,226.0,242.0,242.0,267.0,248.0,280.0,258.0,274.0,305.0,294.0,305.0,302.0,351.0,317.0,308.0,278.0,298.0,329.0,305.0,238.0,235.0,209.0,242.0,225.0,255.0,244.0,281.0,276.0,295.0,309.0,315.0,324.0,311.0,326.0,292.0,354.0,312.0,341.0,325.0,335.0,332.0,328.0,316.0,313.0,334.0,287.0,276.0,250.0,238.0,232.0,228.0,231.0,236.0,255.0,260.0,240.0,255.0,238.0,209.0,235.0,231.0,226.0,228.0,203.0,221.0,198.0,176.0,158.0,144.0,112.0,127.0,117.0,108.0,96.0,90.0,107.0,99.0,109.0,92.0,61.0,57.0,54.0,67.0,54.0,37.0,51.0,34.0,25.0,20.0,19.0,14.0,17.0,20.0,6.0,4.0,11.0 L84051,48.0,40.0,33.0,53.0,47.0,53.0,49.0,49.0,49.0,64.0,45.0,50.0,67.0,70.0,53.0,57.0,69.0,63.0,60.0,47.0,32.0,54.0,55.0,49.0,49.0,55.0,51.0,57.0,49.0,45.0,62.0,61.0,65.0,61.0,69.0,72.0,51.0,65.0,59.0,54.0,55.0,62.0,61.0,46.0,59.0,64.0,65.0,63.0,60.0,58.0,51.0,72.0,59.0,72.0,62.0,70.0,89.0,75.0,76.0,70.0,76.0,67.0,75.0,69.0,65.0,66.0,66.0,50.0,65.0,56.0,62.0,46.0,55.0,48.0,49.0,59.0,53.0,51.0,49.0,45.0,33.0,32.0,21.0,16.0,22.0,8.0,11.0,23.0,10.0,2.0,4.0,2.0,6.0,2.0,3.0,8.0 L84052,61.0,60.0,56.0,54.0,47.0,43.0,44.0,47.0,64.0,51.0,59.0,36.0,53.0,58.0,51.0,46.0,48.0,78.0,47.0,59.0,61.0,65.0,80.0,74.0,82.0,91.0,85.0,85.0,84.0,92.0,80.0,82.0,86.0,97.0,92.0,85.0,77.0,90.0,91.0,64.0,85.0,84.0,85.0,72.0,79.0,71.0,68.0,59.0,50.0,60.0,49.0,68.0,55.0,62.0,61.0,63.0,68.0,67.0,52.0,60.0,67.0,57.0,61.0,49.0,56.0,61.0,45.0,31.0,40.0,42.0,37.0,28.0,41.0,19.0,34.0,28.0,31.0,27.0,36.0,19.0,20.0,20.0,18.0,21.0,12.0,13.0,13.0,10.0,7.0,15.0,3.0,3.0,5.0,6.0,4.0,7.0 L84053,25.0,30.0,35.0,33.0,34.0,40.0,34.0,43.0,37.0,55.0,47.0,41.0,61.0,45.0,45.0,56.0,49.0,35.0,35.0,37.0,30.0,35.0,27.0,36.0,29.0,30.0,43.0,32.0,30.0,29.0,40.0,35.0,37.0,27.0,36.0,42.0,31.0,29.0,40.0,32.0,42.0,32.0,56.0,41.0,40.0,56.0,38.0,57.0,33.0,52.0,50.0,46.0,50.0,64.0,61.0,57.0,56.0,56.0,73.0,59.0,58.0,71.0,63.0,58.0,60.0,54.0,58.0,57.0,44.0,52.0,44.0,69.0,42.0,37.0,55.0,50.0,54.0,61.0,52.0,36.0,38.0,39.0,28.0,26.0,18.0,18.0,24.0,10.0,24.0,6.0,7.0,6.0,2.0,8.0,2.0,5.0 L84054,60.0,70.0,68.0,70.0,68.0,76.0,69.0,69.0,69.0,89.0,73.0,87.0,89.0,93.0,103.0,81.0,94.0,79.0,80.0,75.0,66.0,73.0,58.0,59.0,45.0,74.0,69.0,81.0,66.0,62.0,70.0,84.0,86.0,80.0,92.0,100.0,79.0,108.0,100.0,92.0,91.0,70.0,97.0,85.0,86.0,91.0,92.0,84.0,91.0,90.0,78.0,107.0,94.0,85.0,98.0,101.0,112.0,112.0,102.0,103.0,112.0,100.0,97.0,108.0,56.0,90.0,87.0,74.0,67.0,82.0,78.0,69.0,72.0,63.0,79.0,63.0,50.0,73.0,93.0,53.0,67.0,46.0,43.0,27.0,38.0,24.0,25.0,20.0,27.0,9.0,14.0,10.0,10.0,5.0,1.0,5.0 L84058,36.0,39.0,48.0,48.0,46.0,38.0,56.0,54.0,51.0,59.0,56.0,48.0,55.0,51.0,42.0,57.0,42.0,55.0,51.0,53.0,53.0,73.0,67.0,69.0,63.0,79.0,77.0,83.0,59.0,64.0,79.0,85.0,86.0,78.0,97.0,88.0,78.0,74.0,99.0,62.0,86.0,79.0,71.0,73.0,57.0,63.0,71.0,67.0,61.0,48.0,53.0,55.0,59.0,58.0,48.0,34.0,72.0,53.0,61.0,61.0,64.0,60.0,55.0,55.0,42.0,49.0,55.0,50.0,38.0,41.0,39.0,30.0,41.0,36.0,29.0,53.0,42.0,35.0,39.0,28.0,40.0,22.0,18.0,16.0,19.0,14.0,26.0,13.0,8.0,7.0,5.0,9.0,3.0,3.0,3.0,10.0 L84059,44.0,36.0,43.0,43.0,41.0,40.0,37.0,44.0,46.0,41.0,35.0,42.0,40.0,32.0,30.0,34.0,35.0,30.0,36.0,31.0,32.0,22.0,37.0,33.0,40.0,46.0,47.0,69.0,65.0,63.0,61.0,75.0,67.0,74.0,89.0,87.0,94.0,64.0,67.0,67.0,73.0,72.0,67.0,65.0,60.0,46.0,58.0,50.0,49.0,53.0,57.0,51.0,44.0,48.0,44.0,54.0,49.0,52.0,40.0,48.0,58.0,50.0,66.0,53.0,48.0,39.0,41.0,47.0,41.0,29.0,43.0,29.0,41.0,40.0,27.0,36.0,39.0,35.0,38.0,26.0,27.0,26.0,16.0,21.0,16.0,21.0,16.0,14.0,19.0,11.0,5.0,3.0,4.0,3.0,1.0,4.0 L84060,50.0,61.0,54.0,58.0,40.0,63.0,55.0,61.0,58.0,59.0,59.0,54.0,50.0,55.0,67.0,56.0,55.0,49.0,58.0,62.0,40.0,53.0,46.0,49.0,49.0,48.0,58.0,59.0,66.0,55.0,77.0,76.0,64.0,66.0,78.0,60.0,60.0,69.0,57.0,67.0,64.0,80.0,77.0,58.0,61.0,57.0,67.0,66.0,58.0,54.0,63.0,52.0,61.0,65.0,76.0,77.0,84.0,79.0,82.0,86.0,84.0,85.0,91.0,86.0,83.0,95.0,73.0,67.0,79.0,73.0,68.0,66.0,56.0,60.0,51.0,68.0,53.0,79.0,64.0,40.0,41.0,59.0,36.0,40.0,32.0,25.0,25.0,20.0,13.0,15.0,15.0,9.0,12.0,6.0,9.0,8.0 L84063,19.0,22.0,19.0,13.0,20.0,19.0,24.0,23.0,30.0,21.0,17.0,17.0,23.0,35.0,32.0,30.0,21.0,27.0,38.0,19.0,22.0,18.0,26.0,32.0,26.0,18.0,26.0,11.0,23.0,25.0,22.0,22.0,17.0,25.0,19.0,26.0,27.0,31.0,21.0,24.0,36.0,30.0,22.0,36.0,27.0,35.0,21.0,27.0,19.0,25.0,28.0,26.0,33.0,33.0,40.0,32.0,34.0,51.0,38.0,38.0,44.0,42.0,50.0,33.0,49.0,43.0,37.0,35.0,41.0,28.0,36.0,27.0,25.0,32.0,37.0,33.0,37.0,20.0,22.0,19.0,16.0,20.0,9.0,10.0,11.0,9.0,6.0,4.0,10.0,11.0,5.0,4.0,2.0,2.0,1.0,3.0 L84065,32.0,38.0,40.0,39.0,47.0,54.0,42.0,43.0,50.0,53.0,42.0,60.0,47.0,65.0,57.0,43.0,37.0,60.0,62.0,46.0,43.0,38.0,31.0,53.0,46.0,40.0,31.0,44.0,33.0,47.0,67.0,51.0,35.0,48.0,56.0,52.0,37.0,72.0,60.0,48.0,58.0,46.0,52.0,62.0,53.0,62.0,57.0,44.0,51.0,56.0,55.0,65.0,62.0,56.0,71.0,72.0,59.0,70.0,65.0,73.0,61.0,63.0,61.0,71.0,80.0,56.0,55.0,79.0,44.0,60.0,69.0,57.0,50.0,61.0,50.0,52.0,40.0,63.0,50.0,44.0,32.0,28.0,34.0,28.0,20.0,21.0,20.0,20.0,14.0,7.0,9.0,7.0,6.0,4.0,3.0,9.0 L84067,44.0,49.0,57.0,69.0,66.0,68.0,68.0,71.0,71.0,73.0,68.0,80.0,83.0,72.0,67.0,60.0,66.0,61.0,54.0,48.0,51.0,41.0,38.0,45.0,32.0,43.0,58.0,43.0,64.0,66.0,82.0,52.0,92.0,59.0,76.0,64.0,86.0,68.0,73.0,63.0,65.0,71.0,67.0,68.0,66.0,60.0,62.0,66.0,48.0,62.0,51.0,56.0,56.0,53.0,61.0,64.0,87.0,62.0,64.0,54.0,69.0,71.0,52.0,58.0,64.0,57.0,45.0,61.0,55.0,44.0,53.0,48.0,39.0,47.0,44.0,42.0,45.0,41.0,34.0,27.0,36.0,35.0,30.0,20.0,8.0,13.0,12.0,12.0,8.0,5.0,8.0,6.0,4.0,5.0,4.0,5.0 L84068,34.0,30.0,20.0,27.0,36.0,24.0,24.0,29.0,26.0,28.0,26.0,30.0,27.0,25.0,30.0,24.0,25.0,27.0,17.0,12.0,23.0,24.0,22.0,21.0,20.0,27.0,18.0,20.0,16.0,25.0,30.0,30.0,24.0,33.0,31.0,31.0,33.0,39.0,39.0,37.0,18.0,27.0,21.0,24.0,24.0,37.0,30.0,38.0,24.0,36.0,27.0,36.0,24.0,48.0,36.0,32.0,42.0,49.0,36.0,51.0,45.0,37.0,32.0,33.0,47.0,41.0,36.0,36.0,33.0,45.0,30.0,31.0,31.0,31.0,33.0,31.0,29.0,37.0,51.0,31.0,31.0,29.0,19.0,23.0,24.0,9.0,18.0,11.0,10.0,11.0,4.0,6.0,8.0,2.0,1.0,6.0 L84069,45.0,61.0,45.0,64.0,44.0,69.0,63.0,63.0,73.0,61.0,66.0,53.0,65.0,75.0,81.0,81.0,66.0,65.0,78.0,58.0,56.0,77.0,58.0,64.0,52.0,65.0,59.0,57.0,65.0,70.0,67.0,90.0,60.0,74.0,83.0,82.0,82.0,79.0,64.0,72.0,63.0,66.0,79.0,66.0,69.0,61.0,63.0,62.0,60.0,66.0,85.0,78.0,75.0,84.0,103.0,104.0,93.0,106.0,121.0,113.0,120.0,109.0,117.0,116.0,123.0,118.0,96.0,90.0,88.0,95.0,82.0,93.0,95.0,80.0,76.0,103.0,105.0,79.0,86.0,65.0,75.0,64.0,48.0,52.0,36.0,48.0,31.0,26.0,25.0,19.0,14.0,15.0,13.0,5.0,4.0,8.0 L84072,12.0,21.0,17.0,26.0,25.0,18.0,30.0,21.0,26.0,25.0,17.0,20.0,21.0,19.0,31.0,18.0,24.0,31.0,20.0,23.0,13.0,20.0,15.0,16.0,20.0,22.0,40.0,28.0,26.0,28.0,32.0,26.0,26.0,30.0,30.0,34.0,35.0,43.0,40.0,29.0,35.0,22.0,31.0,24.0,20.0,30.0,31.0,21.0,29.0,29.0,40.0,24.0,43.0,38.0,35.0,41.0,32.0,27.0,33.0,46.0,49.0,51.0,57.0,43.0,37.0,46.0,43.0,28.0,27.0,39.0,23.0,37.0,20.0,31.0,33.0,31.0,28.0,33.0,26.0,26.0,25.0,24.0,24.0,22.0,19.0,16.0,12.0,8.0,8.0,6.0,8.0,4.0,8.0,1.0,3.0,9.0 L84075,34.0,46.0,41.0,46.0,44.0,49.0,52.0,50.0,52.0,62.0,55.0,61.0,51.0,62.0,65.0,58.0,54.0,57.0,64.0,32.0,37.0,44.0,60.0,41.0,43.0,50.0,57.0,45.0,53.0,54.0,45.0,51.0,63.0,66.0,57.0,69.0,57.0,48.0,56.0,72.0,71.0,57.0,65.0,63.0,61.0,52.0,64.0,50.0,48.0,54.0,67.0,53.0,64.0,74.0,80.0,71.0,70.0,71.0,68.0,66.0,62.0,52.0,72.0,59.0,64.0,54.0,71.0,52.0,68.0,36.0,52.0,47.0,25.0,39.0,40.0,48.0,41.0,54.0,57.0,33.0,37.0,30.0,31.0,25.0,18.0,23.0,20.0,26.0,12.0,6.0,14.0,10.0,5.0,5.0,1.0,3.0 L84077,49.0,43.0,58.0,71.0,72.0,65.0,81.0,79.0,62.0,62.0,64.0,81.0,70.0,96.0,97.0,89.0,117.0,116.0,108.0,77.0,64.0,66.0,58.0,74.0,57.0,80.0,78.0,77.0,85.0,72.0,74.0,93.0,99.0,93.0,110.0,112.0,89.0,101.0,86.0,87.0,71.0,84.0,86.0,113.0,86.0,78.0,95.0,81.0,81.0,71.0,101.0,108.0,117.0,102.0,108.0,115.0,102.0,111.0,130.0,111.0,125.0,122.0,112.0,98.0,88.0,101.0,100.0,87.0,88.0,87.0,87.0,74.0,88.0,76.0,82.0,64.0,80.0,68.0,73.0,46.0,54.0,55.0,53.0,40.0,28.0,32.0,34.0,20.0,20.0,15.0,17.0,15.0,13.0,9.0,3.0,4.0 L84080,66.0,61.0,57.0,62.0,55.0,77.0,66.0,61.0,72.0,65.0,62.0,57.0,86.0,57.0,66.0,73.0,68.0,79.0,72.0,84.0,54.0,59.0,51.0,56.0,57.0,59.0,61.0,68.0,56.0,88.0,75.0,79.0,77.0,85.0,88.0,75.0,96.0,81.0,85.0,78.0,84.0,77.0,68.0,70.0,70.0,87.0,75.0,72.0,55.0,74.0,77.0,64.0,78.0,80.0,93.0,76.0,69.0,84.0,84.0,76.0,69.0,74.0,73.0,68.0,81.0,66.0,75.0,71.0,71.0,60.0,56.0,53.0,59.0,64.0,67.0,48.0,66.0,52.0,38.0,45.0,36.0,26.0,34.0,28.0,27.0,27.0,17.0,18.0,17.0,6.0,8.0,6.0,3.0,7.0,3.0,1.0 L84081,15.0,24.0,24.0,23.0,26.0,21.0,19.0,27.0,28.0,25.0,30.0,26.0,28.0,35.0,20.0,32.0,27.0,25.0,30.0,30.0,24.0,23.0,22.0,37.0,29.0,35.0,30.0,27.0,40.0,34.0,33.0,36.0,41.0,39.0,40.0,36.0,43.0,32.0,37.0,36.0,45.0,40.0,32.0,33.0,29.0,33.0,37.0,29.0,28.0,35.0,31.0,24.0,27.0,33.0,34.0,27.0,36.0,21.0,29.0,31.0,30.0,21.0,29.0,27.0,29.0,31.0,28.0,22.0,16.0,21.0,20.0,18.0,13.0,11.0,10.0,14.0,13.0,12.0,11.0,11.0,14.0,8.0,8.0,12.0,13.0,9.0,5.0,5.0,3.0,4.0,2.0,,4.0,,3.0,4.0 L84084,63.0,77.0,66.0,92.0,84.0,69.0,92.0,85.0,78.0,92.0,77.0,91.0,95.0,75.0,69.0,80.0,82.0,79.0,48.0,66.0,45.0,43.0,51.0,51.0,64.0,57.0,59.0,64.0,72.0,60.0,66.0,84.0,83.0,77.0,74.0,100.0,83.0,99.0,90.0,79.0,85.0,103.0,95.0,80.0,80.0,80.0,68.0,68.0,58.0,70.0,64.0,66.0,58.0,71.0,56.0,67.0,70.0,56.0,54.0,71.0,67.0,74.0,61.0,57.0,58.0,55.0,54.0,52.0,55.0,50.0,43.0,45.0,49.0,36.0,47.0,36.0,43.0,37.0,40.0,26.0,36.0,25.0,23.0,24.0,16.0,19.0,13.0,8.0,12.0,9.0,9.0,6.0,4.0,2.0,5.0,7.0 L84085,23.0,14.0,8.0,24.0,15.0,23.0,17.0,17.0,37.0,19.0,21.0,22.0,26.0,25.0,19.0,19.0,18.0,27.0,13.0,16.0,18.0,14.0,14.0,18.0,24.0,16.0,20.0,23.0,13.0,23.0,24.0,17.0,29.0,20.0,30.0,25.0,27.0,28.0,23.0,18.0,25.0,23.0,30.0,29.0,16.0,30.0,33.0,21.0,23.0,22.0,26.0,22.0,34.0,30.0,22.0,36.0,23.0,24.0,27.0,30.0,35.0,29.0,32.0,22.0,17.0,28.0,26.0,23.0,20.0,25.0,25.0,29.0,14.0,21.0,20.0,22.0,22.0,28.0,28.0,21.0,20.0,16.0,13.0,21.0,7.0,13.0,12.0,7.0,9.0,6.0,5.0,5.0,3.0,4.0,, L84606,47.0,50.0,38.0,56.0,54.0,54.0,49.0,53.0,64.0,67.0,58.0,64.0,51.0,62.0,72.0,56.0,50.0,50.0,76.0,92.0,69.0,66.0,61.0,44.0,82.0,76.0,73.0,78.0,78.0,74.0,60.0,74.0,76.0,66.0,62.0,77.0,73.0,85.0,72.0,54.0,68.0,60.0,63.0,57.0,76.0,62.0,61.0,59.0,63.0,53.0,59.0,59.0,65.0,92.0,74.0,77.0,84.0,83.0,82.0,109.0,98.0,85.0,87.0,72.0,91.0,71.0,76.0,85.0,72.0,77.0,65.0,79.0,65.0,78.0,54.0,62.0,65.0,84.0,73.0,55.0,53.0,50.0,47.0,29.0,37.0,32.0,32.0,26.0,19.0,13.0,15.0,13.0,8.0,7.0,5.0,12.0 L84613,9.0,11.0,18.0,15.0,17.0,17.0,12.0,23.0,18.0,21.0,20.0,21.0,21.0,28.0,18.0,23.0,16.0,16.0,25.0,13.0,12.0,23.0,13.0,18.0,17.0,18.0,23.0,21.0,15.0,19.0,20.0,24.0,23.0,22.0,16.0,26.0,25.0,18.0,24.0,24.0,28.0,23.0,18.0,19.0,25.0,21.0,16.0,14.0,16.0,17.0,15.0,29.0,14.0,27.0,26.0,33.0,23.0,24.0,33.0,25.0,29.0,26.0,27.0,26.0,16.0,19.0,24.0,26.0,22.0,11.0,15.0,19.0,19.0,23.0,12.0,20.0,10.0,14.0,15.0,12.0,15.0,15.0,13.0,9.0,12.0,13.0,7.0,8.0,8.0,2.0,4.0,1.0,1.0,,2.0,5.0 L84617,42.0,48.0,35.0,38.0,38.0,51.0,48.0,51.0,52.0,64.0,42.0,43.0,42.0,53.0,48.0,31.0,43.0,31.0,36.0,43.0,35.0,29.0,31.0,33.0,33.0,35.0,37.0,45.0,44.0,49.0,57.0,53.0,54.0,61.0,66.0,62.0,68.0,55.0,45.0,56.0,62.0,74.0,48.0,67.0,54.0,46.0,53.0,52.0,37.0,46.0,41.0,48.0,46.0,48.0,59.0,44.0,46.0,42.0,52.0,49.0,39.0,40.0,43.0,48.0,32.0,38.0,31.0,31.0,28.0,35.0,26.0,31.0,21.0,23.0,15.0,16.0,19.0,18.0,16.0,14.0,8.0,7.0,9.0,11.0,4.0,5.0,6.0,9.0,4.0,,4.0,3.0,2.0,,, Y00054,,,,,,,,,,,,,,,,,,,,1.0,,,2.0,,,1.0,,3.0,2.0,5.0,2.0,2.0,3.0,2.0,3.0,2.0,2.0,6.0,2.0,3.0,3.0,2.0,5.0,3.0,2.0,3.0,3.0,2.0,4.0,3.0,1.0,2.0,3.0,3.0,1.0,1.0,3.0,1.0,,1.0,,1.0,,,,,1.0,1.0,1.0,,,,,,,,,1.0,,,,,,,,,,,,,,,,,, Y02519,64.0,82.0,62.0,80.0,72.0,85.0,74.0,69.0,76.0,80.0,75.0,75.0,91.0,63.0,65.0,51.0,57.0,52.0,45.0,44.0,37.0,47.0,54.0,48.0,70.0,75.0,73.0,76.0,88.0,84.0,94.0,132.0,112.0,149.0,153.0,119.0,133.0,120.0,135.0,126.0,103.0,100.0,104.0,118.0,115.0,82.0,86.0,76.0,74.0,70.0,60.0,68.0,62.0,61.0,50.0,60.0,59.0,39.0,54.0,41.0,27.0,32.0,34.0,24.0,44.0,32.0,32.0,26.0,17.0,18.0,17.0,11.0,10.0,18.0,14.0,12.0,8.0,11.0,17.0,11.0,7.0,6.0,3.0,8.0,1.0,3.0,5.0,3.0,1.0,2.0,,,1.0,,,1.0 Y05212,44.0,43.0,39.0,46.0,57.0,48.0,49.0,50.0,52.0,49.0,44.0,44.0,41.0,45.0,46.0,47.0,42.0,26.0,39.0,35.0,37.0,36.0,44.0,32.0,43.0,47.0,41.0,58.0,51.0,56.0,63.0,50.0,64.0,78.0,65.0,57.0,61.0,66.0,59.0,63.0,62.0,63.0,52.0,51.0,53.0,50.0,39.0,33.0,43.0,39.0,39.0,28.0,32.0,26.0,22.0,31.0,31.0,25.0,24.0,27.0,25.0,19.0,18.0,24.0,21.0,16.0,18.0,20.0,15.0,10.0,12.0,15.0,13.0,13.0,10.0,7.0,13.0,12.0,9.0,7.0,7.0,5.0,4.0,3.0,8.0,3.0,2.0,3.0,,2.0,2.0,2.0,1.0,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 J82001,46.0,48.0,38.0,41.0,48.0,48.0,63.0,55.0,67.0,54.0,56.0,76.0,63.0,84.0,67.0,87.0,77.0,74.0,86.0,87.0,71.0,92.0,98.0,99.0,90.0,116.0,102.0,120.0,113.0,106.0,89.0,96.0,116.0,107.0,115.0,95.0,91.0,83.0,112.0,92.0,98.0,107.0,96.0,90.0,72.0,78.0,82.0,84.0,107.0,74.0,59.0,61.0,62.0,59.0,58.0,60.0,58.0,53.0,56.0,52.0,52.0,48.0,47.0,51.0,29.0,36.0,53.0,42.0,33.0,30.0,17.0,30.0,26.0,25.0,16.0,24.0,26.0,13.0,24.0,19.0,20.0,14.0,17.0,4.0,9.0,12.0,2.0,6.0,1.0,6.0,1.0,,2.0,6.0,3.0, J82002,65.0,86.0,96.0,80.0,83.0,94.0,95.0,97.0,82.0,78.0,93.0,96.0,101.0,100.0,101.0,93.0,86.0,82.0,72.0,68.0,77.0,62.0,69.0,72.0,76.0,85.0,71.0,88.0,92.0,82.0,117.0,102.0,119.0,105.0,112.0,116.0,115.0,120.0,113.0,113.0,121.0,111.0,99.0,113.0,120.0,110.0,112.0,96.0,83.0,94.0,75.0,91.0,85.0,99.0,88.0,78.0,75.0,71.0,83.0,85.0,83.0,68.0,61.0,74.0,76.0,71.0,71.0,72.0,60.0,69.0,58.0,71.0,69.0,66.0,67.0,60.0,54.0,45.0,59.0,51.0,53.0,32.0,17.0,26.0,24.0,21.0,17.0,13.0,8.0,5.0,4.0,7.0,3.0,2.0,1.0,5.0 J82005,16.0,20.0,12.0,12.0,15.0,21.0,17.0,18.0,16.0,30.0,20.0,24.0,26.0,22.0,29.0,21.0,26.0,13.0,18.0,21.0,17.0,26.0,17.0,17.0,20.0,16.0,14.0,21.0,15.0,11.0,14.0,19.0,25.0,15.0,24.0,15.0,29.0,20.0,24.0,23.0,29.0,17.0,11.0,32.0,19.0,36.0,23.0,17.0,25.0,28.0,15.0,24.0,28.0,30.0,31.0,38.0,36.0,41.0,37.0,42.0,40.0,33.0,45.0,39.0,33.0,45.0,42.0,39.0,28.0,40.0,30.0,29.0,29.0,40.0,28.0,26.0,29.0,28.0,28.0,24.0,31.0,21.0,25.0,17.0,14.0,20.0,12.0,14.0,7.0,8.0,4.0,5.0,4.0,1.0,,5.0 J82007,74.0,72.0,94.0,90.0,83.0,93.0,121.0,143.0,143.0,144.0,142.0,127.0,177.0,144.0,145.0,159.0,167.0,147.0,157.0,148.0,129.0,132.0,135.0,130.0,162.0,135.0,153.0,145.0,162.0,146.0,143.0,140.0,140.0,156.0,164.0,159.0,161.0,171.0,149.0,141.0,168.0,154.0,157.0,140.0,180.0,156.0,162.0,163.0,157.0,154.0,158.0,196.0,182.0,201.0,195.0,250.0,248.0,216.0,236.0,243.0,253.0,269.0,271.0,268.0,272.0,220.0,278.0,250.0,236.0,212.0,252.0,247.0,241.0,209.0,212.0,236.0,249.0,277.0,307.0,220.0,263.0,219.0,183.0,176.0,137.0,129.0,112.0,100.0,109.0,77.0,61.0,55.0,35.0,36.0,33.0,53.0 J82009,57.0,65.0,59.0,74.0,90.0,79.0,71.0,72.0,77.0,76.0,92.0,67.0,74.0,90.0,66.0,66.0,73.0,79.0,68.0,68.0,51.0,63.0,67.0,60.0,52.0,59.0,75.0,72.0,74.0,74.0,67.0,73.0,70.0,59.0,72.0,65.0,68.0,66.0,90.0,67.0,94.0,81.0,61.0,72.0,71.0,65.0,79.0,68.0,69.0,82.0,94.0,92.0,88.0,81.0,108.0,93.0,107.0,103.0,126.0,95.0,107.0,104.0,109.0,130.0,130.0,115.0,108.0,110.0,105.0,93.0,115.0,88.0,105.0,89.0,77.0,95.0,109.0,102.0,96.0,61.0,85.0,71.0,82.0,65.0,53.0,49.0,44.0,39.0,42.0,30.0,28.0,20.0,18.0,12.0,13.0,24.0 J82010,86.0,81.0,109.0,91.0,99.0,97.0,112.0,99.0,138.0,136.0,127.0,113.0,135.0,133.0,134.0,113.0,129.0,105.0,103.0,101.0,85.0,94.0,85.0,86.0,87.0,102.0,104.0,85.0,104.0,104.0,114.0,116.0,126.0,144.0,107.0,132.0,110.0,151.0,136.0,132.0,118.0,116.0,140.0,130.0,136.0,119.0,112.0,101.0,101.0,106.0,98.0,98.0,116.0,110.0,120.0,109.0,152.0,127.0,131.0,154.0,143.0,145.0,120.0,138.0,116.0,103.0,113.0,111.0,120.0,104.0,107.0,104.0,96.0,80.0,82.0,70.0,75.0,91.0,102.0,54.0,68.0,60.0,49.0,28.0,38.0,44.0,25.0,29.0,20.0,17.0,13.0,17.0,10.0,10.0,8.0,18.0 J82012,64.0,34.0,52.0,46.0,59.0,42.0,50.0,53.0,68.0,62.0,58.0,58.0,66.0,57.0,57.0,52.0,57.0,57.0,61.0,50.0,46.0,48.0,43.0,52.0,48.0,54.0,64.0,55.0,55.0,60.0,61.0,52.0,60.0,69.0,81.0,81.0,67.0,75.0,79.0,70.0,63.0,65.0,67.0,60.0,72.0,71.0,73.0,61.0,62.0,59.0,60.0,87.0,75.0,78.0,72.0,91.0,78.0,85.0,94.0,67.0,82.0,83.0,87.0,69.0,66.0,73.0,68.0,76.0,85.0,62.0,71.0,55.0,52.0,46.0,44.0,65.0,82.0,82.0,74.0,41.0,57.0,50.0,39.0,35.0,31.0,22.0,20.0,29.0,16.0,15.0,7.0,16.0,4.0,8.0,3.0,6.0 J82016,39.0,39.0,55.0,42.0,45.0,48.0,48.0,50.0,54.0,48.0,60.0,54.0,45.0,52.0,44.0,51.0,37.0,39.0,24.0,45.0,35.0,41.0,41.0,39.0,38.0,31.0,28.0,28.0,30.0,34.0,33.0,37.0,25.0,30.0,39.0,34.0,44.0,40.0,39.0,32.0,40.0,44.0,42.0,52.0,48.0,46.0,40.0,42.0,32.0,49.0,37.0,60.0,63.0,59.0,55.0,60.0,63.0,75.0,96.0,81.0,81.0,86.0,71.0,77.0,63.0,70.0,76.0,76.0,76.0,59.0,62.0,59.0,64.0,47.0,42.0,61.0,64.0,60.0,61.0,49.0,54.0,42.0,31.0,36.0,24.0,20.0,26.0,28.0,10.0,19.0,11.0,9.0,4.0,1.0,5.0,7.0 J82017,60.0,50.0,62.0,66.0,57.0,66.0,61.0,77.0,78.0,85.0,88.0,74.0,101.0,94.0,80.0,78.0,91.0,80.0,73.0,75.0,71.0,63.0,69.0,70.0,63.0,88.0,59.0,71.0,87.0,73.0,91.0,65.0,72.0,91.0,103.0,101.0,104.0,102.0,81.0,84.0,95.0,103.0,92.0,99.0,93.0,83.0,70.0,87.0,65.0,88.0,87.0,89.0,89.0,87.0,108.0,90.0,97.0,115.0,84.0,106.0,113.0,101.0,107.0,93.0,75.0,70.0,93.0,82.0,76.0,74.0,57.0,57.0,49.0,62.0,70.0,48.0,66.0,67.0,69.0,47.0,50.0,37.0,36.0,38.0,27.0,33.0,27.0,26.0,25.0,21.0,10.0,15.0,4.0,10.0,5.0,9.0 J82018,75.0,88.0,100.0,119.0,93.0,84.0,104.0,103.0,116.0,83.0,102.0,101.0,89.0,112.0,103.0,116.0,115.0,113.0,124.0,99.0,102.0,97.0,69.0,79.0,103.0,91.0,109.0,92.0,92.0,127.0,105.0,123.0,110.0,114.0,149.0,134.0,145.0,123.0,135.0,112.0,126.0,126.0,125.0,124.0,115.0,129.0,113.0,110.0,99.0,94.0,110.0,113.0,116.0,127.0,118.0,135.0,129.0,123.0,108.0,121.0,133.0,143.0,105.0,128.0,98.0,118.0,121.0,119.0,98.0,101.0,102.0,78.0,81.0,85.0,88.0,98.0,85.0,98.0,80.0,72.0,72.0,51.0,59.0,44.0,35.0,51.0,32.0,41.0,23.0,18.0,21.0,17.0,18.0,10.0,8.0,19.0 J82019,55.0,58.0,63.0,69.0,70.0,77.0,68.0,84.0,94.0,94.0,82.0,123.0,118.0,120.0,101.0,125.0,81.0,114.0,78.0,83.0,71.0,63.0,69.0,61.0,70.0,57.0,68.0,73.0,61.0,63.0,67.0,87.0,72.0,72.0,75.0,85.0,89.0,74.0,77.0,108.0,87.0,101.0,88.0,110.0,109.0,112.0,123.0,89.0,104.0,106.0,116.0,108.0,105.0,114.0,112.0,99.0,94.0,109.0,90.0,81.0,80.0,102.0,77.0,81.0,84.0,81.0,90.0,72.0,71.0,71.0,68.0,87.0,70.0,77.0,79.0,65.0,91.0,104.0,101.0,65.0,74.0,67.0,52.0,39.0,41.0,50.0,40.0,28.0,28.0,20.0,28.0,19.0,10.0,8.0,5.0,11.0 J82020,53.0,71.0,50.0,79.0,70.0,77.0,82.0,93.0,95.0,86.0,82.0,105.0,87.0,86.0,95.0,107.0,102.0,101.0,84.0,93.0,77.0,72.0,58.0,82.0,71.0,86.0,92.0,103.0,89.0,98.0,93.0,92.0,98.0,110.0,116.0,117.0,137.0,115.0,109.0,119.0,119.0,115.0,118.0,119.0,117.0,122.0,110.0,100.0,93.0,118.0,92.0,110.0,83.0,95.0,116.0,97.0,96.0,92.0,115.0,95.0,99.0,105.0,88.0,92.0,81.0,82.0,94.0,74.0,68.0,58.0,72.0,61.0,69.0,51.0,51.0,51.0,66.0,54.0,59.0,39.0,43.0,38.0,29.0,20.0,21.0,23.0,20.0,24.0,10.0,16.0,8.0,6.0,6.0,9.0,4.0,9.0 J82021,27.0,27.0,27.0,18.0,27.0,29.0,23.0,41.0,35.0,32.0,35.0,32.0,46.0,32.0,51.0,41.0,49.0,33.0,39.0,32.0,34.0,38.0,31.0,28.0,28.0,31.0,28.0,34.0,41.0,34.0,30.0,35.0,40.0,38.0,37.0,48.0,37.0,44.0,32.0,35.0,30.0,27.0,43.0,26.0,53.0,35.0,39.0,36.0,36.0,44.0,44.0,43.0,58.0,60.0,72.0,52.0,70.0,50.0,82.0,74.0,77.0,83.0,60.0,69.0,81.0,64.0,88.0,61.0,66.0,68.0,65.0,63.0,68.0,66.0,61.0,64.0,72.0,77.0,93.0,55.0,59.0,59.0,51.0,36.0,33.0,32.0,23.0,29.0,27.0,21.0,16.0,15.0,11.0,7.0,9.0,7.0 J82022,45.0,44.0,59.0,51.0,47.0,48.0,59.0,76.0,67.0,72.0,68.0,64.0,73.0,75.0,58.0,58.0,85.0,62.0,54.0,58.0,58.0,55.0,48.0,41.0,59.0,70.0,52.0,74.0,79.0,72.0,97.0,76.0,108.0,100.0,101.0,107.0,117.0,104.0,108.0,93.0,122.0,93.0,90.0,85.0,105.0,81.0,80.0,87.0,84.0,63.0,84.0,73.0,70.0,82.0,76.0,76.0,77.0,69.0,77.0,61.0,84.0,75.0,64.0,56.0,56.0,53.0,49.0,63.0,53.0,51.0,60.0,46.0,54.0,37.0,47.0,47.0,40.0,40.0,46.0,36.0,32.0,36.0,31.0,28.0,17.0,25.0,10.0,11.0,13.0,13.0,7.0,5.0,5.0,6.0,4.0,6.0 J82024,129.0,138.0,129.0,130.0,157.0,151.0,181.0,146.0,161.0,155.0,151.0,142.0,132.0,129.0,147.0,126.0,122.0,128.0,115.0,127.0,155.0,130.0,162.0,217.0,246.0,275.0,303.0,323.0,319.0,297.0,359.0,302.0,312.0,274.0,286.0,327.0,311.0,311.0,294.0,264.0,257.0,239.0,251.0,235.0,200.0,208.0,192.0,156.0,176.0,167.0,159.0,130.0,151.0,132.0,139.0,106.0,110.0,113.0,95.0,94.0,94.0,82.0,79.0,89.0,63.0,62.0,60.0,61.0,53.0,52.0,49.0,43.0,28.0,42.0,40.0,32.0,24.0,26.0,23.0,22.0,18.0,19.0,11.0,11.0,20.0,9.0,12.0,15.0,11.0,9.0,7.0,,3.0,1.0,1.0,3.0 J82025,95.0,91.0,90.0,87.0,98.0,91.0,108.0,103.0,95.0,112.0,98.0,84.0,86.0,79.0,73.0,87.0,83.0,80.0,65.0,84.0,78.0,66.0,70.0,81.0,73.0,64.0,92.0,114.0,126.0,107.0,90.0,104.0,118.0,122.0,117.0,105.0,127.0,128.0,111.0,96.0,113.0,83.0,101.0,110.0,111.0,83.0,100.0,82.0,73.0,96.0,84.0,85.0,120.0,99.0,104.0,114.0,108.0,105.0,98.0,146.0,117.0,106.0,98.0,104.0,79.0,83.0,80.0,85.0,75.0,63.0,59.0,59.0,62.0,52.0,54.0,52.0,59.0,75.0,63.0,48.0,43.0,36.0,43.0,31.0,39.0,34.0,18.0,19.0,5.0,13.0,11.0,8.0,11.0,4.0,4.0,6.0 J82026,45.0,64.0,58.0,85.0,51.0,66.0,61.0,82.0,89.0,90.0,88.0,86.0,90.0,83.0,78.0,75.0,90.0,80.0,70.0,75.0,66.0,71.0,80.0,86.0,109.0,81.0,78.0,89.0,91.0,98.0,95.0,108.0,93.0,115.0,116.0,111.0,121.0,118.0,107.0,110.0,104.0,108.0,109.0,109.0,120.0,100.0,102.0,99.0,87.0,107.0,89.0,110.0,107.0,101.0,110.0,106.0,112.0,110.0,106.0,119.0,125.0,94.0,118.0,128.0,110.0,100.0,120.0,90.0,97.0,94.0,75.0,87.0,75.0,52.0,68.0,74.0,89.0,98.0,106.0,71.0,80.0,78.0,60.0,48.0,44.0,50.0,50.0,33.0,36.0,31.0,22.0,21.0,18.0,16.0,7.0,19.0 J82028,111.0,119.0,122.0,133.0,123.0,128.0,133.0,131.0,147.0,140.0,123.0,132.0,136.0,132.0,126.0,131.0,139.0,123.0,141.0,140.0,151.0,152.0,176.0,169.0,174.0,198.0,179.0,229.0,230.0,224.0,257.0,244.0,231.0,272.0,232.0,240.0,248.0,275.0,241.0,260.0,257.0,241.0,258.0,252.0,244.0,247.0,228.0,201.0,195.0,198.0,194.0,181.0,186.0,209.0,179.0,185.0,208.0,185.0,185.0,188.0,207.0,188.0,181.0,176.0,153.0,144.0,150.0,129.0,130.0,89.0,104.0,93.0,100.0,93.0,97.0,83.0,98.0,107.0,117.0,63.0,72.0,53.0,52.0,29.0,40.0,40.0,26.0,35.0,23.0,23.0,23.0,15.0,13.0,12.0,6.0,10.0 J82033,29.0,46.0,54.0,45.0,52.0,53.0,47.0,60.0,55.0,56.0,55.0,45.0,47.0,60.0,56.0,49.0,59.0,50.0,43.0,34.0,45.0,49.0,38.0,44.0,47.0,47.0,47.0,57.0,41.0,36.0,43.0,47.0,58.0,61.0,57.0,48.0,58.0,60.0,70.0,58.0,85.0,60.0,53.0,58.0,56.0,54.0,43.0,44.0,49.0,49.0,57.0,58.0,60.0,57.0,78.0,86.0,49.0,70.0,68.0,67.0,72.0,74.0,67.0,78.0,52.0,59.0,57.0,53.0,66.0,65.0,38.0,38.0,48.0,54.0,62.0,41.0,41.0,46.0,51.0,38.0,45.0,36.0,30.0,26.0,25.0,13.0,15.0,23.0,15.0,10.0,13.0,4.0,6.0,2.0,2.0,3.0 J82034,56.0,58.0,70.0,77.0,78.0,88.0,64.0,78.0,79.0,80.0,77.0,87.0,92.0,71.0,87.0,72.0,85.0,75.0,80.0,62.0,68.0,67.0,57.0,65.0,65.0,74.0,58.0,59.0,69.0,64.0,58.0,66.0,75.0,72.0,72.0,69.0,65.0,76.0,86.0,90.0,99.0,89.0,91.0,88.0,85.0,92.0,65.0,68.0,94.0,76.0,74.0,88.0,109.0,86.0,95.0,93.0,109.0,107.0,119.0,108.0,103.0,99.0,112.0,112.0,120.0,99.0,96.0,104.0,92.0,78.0,103.0,95.0,77.0,81.0,75.0,53.0,59.0,68.0,94.0,65.0,63.0,54.0,48.0,35.0,33.0,38.0,31.0,22.0,19.0,25.0,9.0,9.0,7.0,8.0,5.0,10.0 J82035,43.0,59.0,58.0,54.0,51.0,56.0,48.0,67.0,56.0,62.0,85.0,94.0,96.0,89.0,78.0,72.0,87.0,91.0,103.0,118.0,172.0,152.0,136.0,149.0,143.0,158.0,171.0,139.0,123.0,108.0,119.0,113.0,92.0,105.0,128.0,120.0,109.0,97.0,102.0,115.0,88.0,91.0,116.0,87.0,96.0,102.0,91.0,93.0,71.0,91.0,107.0,112.0,91.0,109.0,106.0,110.0,94.0,97.0,93.0,94.0,92.0,104.0,96.0,92.0,85.0,77.0,81.0,69.0,81.0,66.0,79.0,62.0,71.0,56.0,68.0,81.0,73.0,60.0,83.0,70.0,47.0,49.0,46.0,45.0,32.0,46.0,27.0,26.0,28.0,24.0,19.0,18.0,8.0,10.0,2.0,21.0 J82036,7.0,8.0,10.0,12.0,12.0,16.0,10.0,18.0,9.0,17.0,17.0,13.0,15.0,13.0,22.0,10.0,14.0,14.0,19.0,12.0,5.0,17.0,12.0,6.0,13.0,11.0,15.0,8.0,8.0,12.0,11.0,10.0,7.0,12.0,7.0,9.0,6.0,19.0,6.0,14.0,16.0,20.0,17.0,8.0,16.0,11.0,15.0,20.0,16.0,19.0,18.0,9.0,18.0,17.0,31.0,24.0,20.0,27.0,21.0,26.0,23.0,20.0,24.0,28.0,29.0,27.0,31.0,31.0,18.0,19.0,15.0,25.0,15.0,20.0,19.0,19.0,22.0,13.0,18.0,12.0,15.0,11.0,7.0,4.0,5.0,10.0,6.0,3.0,1.0,1.0,6.0,3.0,5.0,,1.0,2.0 J82039,38.0,46.0,47.0,37.0,39.0,53.0,42.0,56.0,49.0,62.0,54.0,45.0,66.0,57.0,55.0,59.0,58.0,47.0,60.0,43.0,49.0,55.0,40.0,60.0,55.0,43.0,55.0,63.0,58.0,52.0,56.0,62.0,47.0,68.0,61.0,57.0,58.0,71.0,55.0,53.0,68.0,39.0,60.0,68.0,60.0,68.0,77.0,65.0,61.0,66.0,51.0,53.0,72.0,65.0,84.0,69.0,73.0,68.0,73.0,95.0,87.0,89.0,95.0,71.0,79.0,61.0,92.0,69.0,54.0,59.0,66.0,59.0,65.0,72.0,60.0,70.0,72.0,76.0,82.0,56.0,69.0,51.0,50.0,42.0,43.0,30.0,35.0,27.0,31.0,23.0,13.0,14.0,13.0,12.0,5.0,15.0 J82040,76.0,99.0,95.0,114.0,122.0,116.0,140.0,122.0,106.0,130.0,142.0,135.0,121.0,165.0,128.0,127.0,141.0,127.0,104.0,112.0,76.0,93.0,75.0,67.0,88.0,92.0,90.0,95.0,116.0,102.0,109.0,119.0,134.0,143.0,132.0,144.0,135.0,137.0,143.0,135.0,154.0,162.0,140.0,141.0,146.0,143.0,109.0,88.0,96.0,111.0,107.0,114.0,113.0,104.0,88.0,98.0,108.0,88.0,84.0,109.0,92.0,101.0,122.0,83.0,93.0,82.0,77.0,76.0,65.0,70.0,60.0,73.0,61.0,62.0,48.0,51.0,52.0,57.0,53.0,47.0,43.0,43.0,32.0,18.0,25.0,18.0,21.0,16.0,16.0,10.0,13.0,9.0,4.0,6.0,2.0,7.0 J82042,97.0,118.0,97.0,109.0,105.0,118.0,108.0,104.0,107.0,98.0,115.0,101.0,121.0,122.0,112.0,93.0,87.0,101.0,85.0,72.0,84.0,72.0,74.0,65.0,64.0,72.0,78.0,83.0,108.0,110.0,87.0,143.0,115.0,99.0,115.0,122.0,133.0,139.0,137.0,120.0,122.0,118.0,119.0,121.0,106.0,126.0,122.0,100.0,97.0,81.0,116.0,94.0,103.0,117.0,105.0,107.0,125.0,105.0,115.0,100.0,113.0,113.0,131.0,120.0,110.0,93.0,103.0,94.0,94.0,89.0,79.0,74.0,68.0,73.0,51.0,64.0,69.0,74.0,67.0,40.0,42.0,54.0,52.0,34.0,31.0,23.0,21.0,15.0,17.0,15.0,11.0,7.0,10.0,6.0,3.0,7.0 J82050,92.0,86.0,111.0,111.0,120.0,121.0,119.0,128.0,149.0,123.0,142.0,145.0,142.0,187.0,267.0,280.0,246.0,280.0,271.0,253.0,248.0,222.0,207.0,178.0,206.0,180.0,176.0,148.0,146.0,129.0,149.0,162.0,137.0,163.0,149.0,158.0,154.0,164.0,156.0,168.0,180.0,172.0,148.0,178.0,158.0,176.0,159.0,163.0,162.0,141.0,153.0,153.0,138.0,166.0,137.0,130.0,150.0,142.0,105.0,134.0,117.0,109.0,124.0,132.0,108.0,92.0,93.0,88.0,98.0,85.0,60.0,75.0,72.0,70.0,64.0,72.0,59.0,72.0,61.0,49.0,65.0,39.0,41.0,30.0,28.0,26.0,31.0,18.0,17.0,17.0,15.0,12.0,9.0,12.0,4.0,17.0 J82051,69.0,89.0,80.0,107.0,84.0,86.0,124.0,103.0,101.0,107.0,119.0,117.0,112.0,113.0,122.0,117.0,115.0,100.0,82.0,89.0,74.0,79.0,76.0,82.0,102.0,87.0,101.0,94.0,122.0,118.0,95.0,149.0,116.0,136.0,143.0,129.0,117.0,129.0,113.0,120.0,146.0,137.0,118.0,120.0,140.0,128.0,123.0,125.0,113.0,111.0,110.0,125.0,135.0,114.0,116.0,148.0,125.0,133.0,120.0,139.0,137.0,152.0,130.0,117.0,110.0,90.0,107.0,108.0,105.0,98.0,69.0,94.0,87.0,78.0,77.0,76.0,68.0,94.0,90.0,58.0,69.0,49.0,47.0,35.0,33.0,33.0,30.0,26.0,22.0,23.0,13.0,14.0,9.0,3.0,6.0,11.0 J82053,48.0,60.0,64.0,71.0,61.0,57.0,52.0,57.0,65.0,59.0,61.0,66.0,69.0,80.0,76.0,59.0,54.0,65.0,54.0,58.0,58.0,40.0,48.0,52.0,53.0,58.0,70.0,72.0,67.0,82.0,86.0,82.0,98.0,88.0,107.0,101.0,93.0,99.0,86.0,83.0,81.0,85.0,64.0,73.0,76.0,75.0,75.0,68.0,62.0,77.0,73.0,69.0,62.0,77.0,82.0,73.0,70.0,71.0,92.0,84.0,74.0,74.0,73.0,66.0,49.0,61.0,58.0,44.0,50.0,51.0,49.0,44.0,40.0,30.0,41.0,37.0,43.0,48.0,54.0,39.0,32.0,37.0,28.0,22.0,8.0,15.0,13.0,12.0,6.0,13.0,11.0,6.0,5.0,3.0,2.0,5.0 J82055,37.0,42.0,35.0,54.0,60.0,55.0,50.0,54.0,52.0,59.0,53.0,46.0,46.0,47.0,47.0,55.0,49.0,43.0,58.0,32.0,56.0,50.0,60.0,60.0,57.0,71.0,77.0,77.0,76.0,91.0,93.0,91.0,89.0,98.0,101.0,89.0,120.0,103.0,102.0,95.0,100.0,83.0,96.0,90.0,87.0,96.0,80.0,84.0,72.0,52.0,62.0,61.0,91.0,89.0,94.0,90.0,84.0,77.0,91.0,87.0,88.0,82.0,83.0,71.0,88.0,81.0,87.0,57.0,55.0,46.0,52.0,48.0,46.0,42.0,41.0,42.0,40.0,49.0,46.0,37.0,36.0,25.0,34.0,20.0,18.0,27.0,14.0,18.0,16.0,18.0,13.0,10.0,5.0,10.0,3.0,12.0 J82056,63.0,89.0,84.0,100.0,95.0,98.0,105.0,100.0,129.0,124.0,126.0,114.0,150.0,106.0,135.0,122.0,114.0,136.0,127.0,112.0,112.0,109.0,97.0,111.0,115.0,100.0,117.0,122.0,117.0,122.0,118.0,123.0,125.0,137.0,147.0,128.0,137.0,149.0,133.0,110.0,117.0,123.0,110.0,133.0,130.0,130.0,117.0,96.0,122.0,105.0,132.0,114.0,130.0,147.0,144.0,152.0,157.0,143.0,169.0,172.0,182.0,200.0,148.0,152.0,152.0,171.0,181.0,142.0,155.0,137.0,142.0,131.0,133.0,131.0,130.0,149.0,129.0,149.0,132.0,86.0,107.0,99.0,82.0,63.0,67.0,53.0,41.0,39.0,45.0,41.0,25.0,27.0,15.0,13.0,13.0,20.0 J82058,112.0,113.0,127.0,134.0,126.0,136.0,131.0,131.0,143.0,145.0,148.0,131.0,138.0,140.0,127.0,132.0,116.0,109.0,110.0,108.0,87.0,76.0,81.0,87.0,103.0,128.0,127.0,118.0,130.0,158.0,153.0,138.0,166.0,152.0,167.0,200.0,200.0,196.0,175.0,178.0,170.0,184.0,184.0,188.0,169.0,170.0,122.0,152.0,134.0,132.0,129.0,128.0,151.0,131.0,137.0,140.0,137.0,110.0,128.0,112.0,111.0,111.0,97.0,120.0,98.0,85.0,80.0,53.0,85.0,67.0,47.0,55.0,51.0,55.0,51.0,50.0,54.0,48.0,54.0,27.0,38.0,39.0,35.0,26.0,37.0,25.0,20.0,25.0,26.0,16.0,9.0,7.0,6.0,5.0,2.0,5.0 J82059,15.0,25.0,22.0,33.0,31.0,23.0,30.0,29.0,33.0,27.0,28.0,49.0,33.0,38.0,24.0,31.0,41.0,28.0,35.0,35.0,41.0,31.0,38.0,27.0,22.0,37.0,38.0,40.0,22.0,19.0,25.0,31.0,26.0,20.0,30.0,26.0,31.0,23.0,32.0,30.0,33.0,31.0,21.0,33.0,47.0,29.0,41.0,30.0,39.0,40.0,37.0,47.0,62.0,50.0,60.0,47.0,59.0,58.0,58.0,62.0,61.0,59.0,44.0,63.0,56.0,77.0,45.0,56.0,38.0,55.0,45.0,52.0,54.0,38.0,46.0,55.0,57.0,56.0,55.0,23.0,45.0,31.0,35.0,17.0,29.0,18.0,26.0,9.0,15.0,10.0,9.0,7.0,7.0,4.0,3.0,4.0 J82060,39.0,57.0,61.0,60.0,71.0,65.0,77.0,92.0,63.0,82.0,80.0,84.0,91.0,63.0,95.0,83.0,76.0,79.0,77.0,86.0,88.0,102.0,97.0,101.0,106.0,123.0,116.0,130.0,119.0,112.0,110.0,126.0,120.0,109.0,111.0,109.0,98.0,112.0,95.0,123.0,119.0,103.0,126.0,103.0,96.0,115.0,69.0,84.0,100.0,93.0,69.0,105.0,78.0,92.0,76.0,92.0,80.0,87.0,84.0,93.0,78.0,75.0,87.0,83.0,74.0,67.0,62.0,65.0,63.0,46.0,48.0,49.0,32.0,52.0,38.0,35.0,39.0,44.0,47.0,24.0,41.0,25.0,21.0,19.0,21.0,21.0,13.0,11.0,10.0,3.0,10.0,10.0,4.0,3.0,7.0,8.0 J82061,64.0,74.0,68.0,58.0,70.0,70.0,87.0,71.0,104.0,71.0,84.0,66.0,77.0,88.0,78.0,78.0,84.0,94.0,78.0,63.0,64.0,74.0,67.0,63.0,66.0,75.0,71.0,66.0,58.0,56.0,58.0,54.0,57.0,79.0,63.0,69.0,70.0,65.0,71.0,68.0,82.0,73.0,70.0,79.0,75.0,83.0,68.0,60.0,85.0,80.0,81.0,89.0,72.0,104.0,109.0,85.0,75.0,99.0,103.0,97.0,94.0,85.0,81.0,87.0,104.0,77.0,84.0,75.0,86.0,65.0,54.0,67.0,70.0,62.0,63.0,65.0,58.0,73.0,62.0,57.0,39.0,43.0,47.0,30.0,41.0,39.0,29.0,15.0,18.0,14.0,10.0,8.0,9.0,8.0,5.0,11.0 J82062,59.0,74.0,84.0,83.0,74.0,83.0,100.0,93.0,89.0,111.0,120.0,114.0,115.0,144.0,121.0,123.0,96.0,113.0,86.0,114.0,87.0,82.0,89.0,81.0,78.0,86.0,106.0,113.0,120.0,101.0,110.0,105.0,120.0,114.0,123.0,118.0,139.0,111.0,123.0,133.0,128.0,140.0,122.0,115.0,122.0,125.0,112.0,123.0,110.0,119.0,108.0,120.0,113.0,119.0,110.0,103.0,98.0,90.0,108.0,86.0,94.0,81.0,81.0,94.0,81.0,74.0,70.0,63.0,65.0,70.0,61.0,79.0,55.0,47.0,53.0,45.0,30.0,35.0,34.0,33.0,23.0,36.0,35.0,19.0,15.0,18.0,14.0,10.0,11.0,12.0,6.0,6.0,4.0,4.0,2.0,3.0 J82064,50.0,62.0,66.0,61.0,62.0,74.0,79.0,68.0,73.0,93.0,98.0,85.0,76.0,92.0,73.0,75.0,64.0,75.0,61.0,58.0,58.0,62.0,55.0,69.0,60.0,79.0,62.0,85.0,57.0,72.0,60.0,82.0,77.0,79.0,93.0,86.0,57.0,81.0,78.0,87.0,70.0,73.0,92.0,74.0,90.0,72.0,68.0,63.0,82.0,89.0,75.0,100.0,89.0,89.0,95.0,93.0,104.0,109.0,119.0,109.0,101.0,109.0,106.0,87.0,93.0,93.0,96.0,99.0,101.0,87.0,82.0,78.0,65.0,72.0,85.0,73.0,84.0,100.0,91.0,76.0,74.0,45.0,53.0,41.0,35.0,25.0,31.0,28.0,17.0,15.0,11.0,11.0,10.0,4.0,3.0,15.0 J82069,221.0,263.0,291.0,266.0,302.0,286.0,272.0,270.0,334.0,304.0,325.0,331.0,366.0,359.0,344.0,351.0,319.0,343.0,339.0,271.0,273.0,267.0,299.0,289.0,304.0,357.0,362.0,345.0,330.0,383.0,372.0,390.0,377.0,386.0,389.0,416.0,420.0,423.0,402.0,404.0,374.0,396.0,394.0,374.0,383.0,371.0,371.0,326.0,331.0,383.0,347.0,342.0,364.0,377.0,389.0,358.0,385.0,397.0,375.0,348.0,334.0,322.0,331.0,302.0,267.0,253.0,238.0,229.0,217.0,201.0,190.0,175.0,179.0,161.0,161.0,214.0,177.0,185.0,205.0,153.0,150.0,110.0,109.0,86.0,76.0,82.0,82.0,64.0,55.0,39.0,27.0,24.0,23.0,18.0,15.0,17.0 J82071,84.0,58.0,78.0,102.0,71.0,101.0,84.0,109.0,88.0,91.0,86.0,113.0,100.0,90.0,91.0,68.0,63.0,86.0,72.0,67.0,69.0,66.0,80.0,67.0,76.0,74.0,87.0,85.0,119.0,103.0,108.0,109.0,103.0,102.0,111.0,141.0,138.0,121.0,126.0,121.0,126.0,119.0,116.0,117.0,94.0,112.0,109.0,85.0,86.0,65.0,67.0,66.0,82.0,62.0,69.0,80.0,63.0,62.0,77.0,61.0,67.0,67.0,67.0,53.0,54.0,46.0,55.0,50.0,49.0,49.0,35.0,50.0,44.0,42.0,50.0,35.0,37.0,40.0,33.0,27.0,23.0,17.0,13.0,17.0,19.0,16.0,12.0,15.0,16.0,8.0,6.0,2.0,6.0,4.0,2.0,4.0 J82072,55.0,60.0,61.0,48.0,52.0,69.0,80.0,63.0,77.0,78.0,68.0,89.0,74.0,90.0,74.0,92.0,71.0,77.0,59.0,73.0,55.0,53.0,55.0,53.0,58.0,57.0,48.0,46.0,41.0,59.0,55.0,63.0,60.0,59.0,64.0,53.0,68.0,73.0,72.0,58.0,65.0,54.0,70.0,70.0,81.0,72.0,51.0,65.0,54.0,62.0,70.0,61.0,66.0,72.0,72.0,71.0,79.0,87.0,78.0,105.0,89.0,88.0,69.0,86.0,78.0,64.0,71.0,63.0,65.0,58.0,68.0,73.0,60.0,67.0,57.0,54.0,56.0,55.0,61.0,44.0,43.0,48.0,24.0,29.0,14.0,20.0,23.0,23.0,15.0,22.0,17.0,6.0,14.0,7.0,9.0,6.0 J82073,48.0,46.0,32.0,49.0,39.0,61.0,47.0,54.0,67.0,65.0,58.0,61.0,58.0,55.0,59.0,55.0,60.0,68.0,56.0,42.0,38.0,43.0,54.0,60.0,53.0,66.0,58.0,67.0,63.0,74.0,90.0,60.0,64.0,82.0,80.0,80.0,84.0,68.0,86.0,76.0,67.0,65.0,74.0,62.0,53.0,61.0,61.0,68.0,54.0,51.0,57.0,49.0,65.0,60.0,86.0,74.0,60.0,80.0,68.0,70.0,64.0,69.0,61.0,68.0,81.0,62.0,48.0,46.0,44.0,48.0,29.0,26.0,28.0,35.0,39.0,25.0,45.0,35.0,39.0,24.0,23.0,28.0,33.0,12.0,17.0,15.0,6.0,13.0,5.0,5.0,9.0,5.0,5.0,4.0,4.0,3.0 J82074,60.0,61.0,68.0,63.0,68.0,85.0,78.0,88.0,86.0,84.0,104.0,81.0,94.0,86.0,85.0,75.0,81.0,80.0,85.0,66.0,55.0,71.0,58.0,67.0,64.0,48.0,54.0,71.0,71.0,78.0,74.0,74.0,99.0,83.0,87.0,96.0,102.0,102.0,93.0,75.0,77.0,94.0,78.0,95.0,94.0,100.0,108.0,87.0,92.0,93.0,118.0,106.0,98.0,107.0,115.0,105.0,113.0,124.0,101.0,105.0,97.0,114.0,111.0,96.0,110.0,98.0,90.0,104.0,93.0,66.0,82.0,93.0,57.0,89.0,84.0,81.0,75.0,103.0,97.0,88.0,101.0,58.0,82.0,57.0,44.0,60.0,49.0,48.0,38.0,31.0,35.0,16.0,14.0,18.0,10.0,23.0 J82075,22.0,18.0,19.0,20.0,27.0,25.0,40.0,29.0,29.0,34.0,39.0,42.0,48.0,26.0,41.0,39.0,36.0,25.0,34.0,33.0,35.0,34.0,34.0,27.0,35.0,15.0,35.0,28.0,34.0,30.0,29.0,30.0,21.0,41.0,34.0,31.0,24.0,23.0,31.0,43.0,30.0,35.0,33.0,25.0,50.0,35.0,43.0,37.0,29.0,45.0,31.0,38.0,56.0,44.0,46.0,48.0,45.0,52.0,55.0,54.0,54.0,47.0,57.0,58.0,51.0,49.0,46.0,48.0,45.0,47.0,39.0,54.0,60.0,36.0,60.0,45.0,48.0,48.0,59.0,41.0,54.0,38.0,32.0,28.0,32.0,23.0,25.0,16.0,12.0,14.0,15.0,9.0,5.0,8.0,5.0,16.0 J82076,115.0,118.0,106.0,129.0,121.0,135.0,103.0,151.0,130.0,136.0,141.0,145.0,138.0,145.0,113.0,108.0,127.0,108.0,125.0,111.0,94.0,96.0,106.0,92.0,124.0,131.0,111.0,132.0,109.0,133.0,151.0,151.0,165.0,173.0,160.0,174.0,191.0,171.0,166.0,185.0,174.0,156.0,174.0,156.0,165.0,144.0,137.0,133.0,123.0,113.0,120.0,125.0,131.0,142.0,138.0,126.0,144.0,138.0,149.0,146.0,176.0,167.0,157.0,137.0,143.0,140.0,128.0,114.0,102.0,104.0,101.0,100.0,89.0,75.0,81.0,84.0,105.0,92.0,83.0,87.0,57.0,68.0,53.0,40.0,51.0,34.0,30.0,25.0,27.0,16.0,11.0,10.0,7.0,7.0,9.0,10.0 J82079,39.0,55.0,51.0,56.0,56.0,56.0,48.0,44.0,50.0,41.0,48.0,48.0,52.0,48.0,46.0,52.0,51.0,55.0,43.0,36.0,37.0,33.0,28.0,37.0,35.0,38.0,25.0,36.0,27.0,38.0,46.0,45.0,43.0,49.0,57.0,54.0,56.0,64.0,45.0,52.0,47.0,40.0,44.0,56.0,56.0,47.0,47.0,61.0,58.0,40.0,44.0,57.0,63.0,59.0,77.0,50.0,66.0,62.0,62.0,62.0,64.0,57.0,47.0,58.0,43.0,42.0,54.0,41.0,44.0,20.0,49.0,33.0,31.0,33.0,29.0,35.0,36.0,28.0,33.0,22.0,21.0,26.0,20.0,7.0,22.0,15.0,12.0,11.0,5.0,10.0,2.0,3.0,5.0,7.0,4.0,4.0 J82080,52.0,45.0,43.0,41.0,46.0,53.0,49.0,36.0,53.0,49.0,60.0,60.0,50.0,65.0,57.0,54.0,50.0,52.0,449.0,1042.0,1173.0,1115.0,1106.0,1234.0,1438.0,1465.0,1317.0,1023.0,791.0,650.0,584.0,495.0,431.0,384.0,335.0,292.0,274.0,280.0,209.0,208.0,179.0,177.0,190.0,201.0,174.0,130.0,130.0,115.0,90.0,91.0,87.0,85.0,82.0,56.0,59.0,53.0,40.0,53.0,46.0,50.0,49.0,48.0,31.0,29.0,35.0,32.0,32.0,29.0,29.0,39.0,24.0,30.0,28.0,22.0,33.0,24.0,23.0,20.0,28.0,21.0,13.0,17.0,11.0,9.0,8.0,7.0,6.0,7.0,8.0,3.0,3.0,2.0,5.0,3.0,,4.0 J82081,83.0,101.0,118.0,107.0,125.0,105.0,133.0,125.0,123.0,120.0,134.0,123.0,137.0,117.0,106.0,124.0,122.0,103.0,158.0,225.0,285.0,273.0,274.0,248.0,340.0,354.0,331.0,355.0,346.0,381.0,379.0,353.0,352.0,396.0,343.0,335.0,364.0,362.0,345.0,315.0,309.0,287.0,278.0,246.0,254.0,269.0,224.0,253.0,201.0,201.0,192.0,193.0,186.0,143.0,163.0,159.0,131.0,141.0,134.0,130.0,127.0,132.0,112.0,118.0,102.0,90.0,124.0,90.0,81.0,84.0,74.0,52.0,73.0,71.0,56.0,40.0,56.0,54.0,62.0,52.0,48.0,42.0,28.0,27.0,25.0,19.0,23.0,18.0,9.0,13.0,10.0,5.0,6.0,6.0,1.0,9.0 J82082,70.0,86.0,90.0,92.0,95.0,111.0,116.0,94.0,121.0,97.0,108.0,108.0,113.0,95.0,102.0,91.0,93.0,104.0,81.0,76.0,78.0,73.0,57.0,54.0,55.0,74.0,81.0,75.0,111.0,94.0,79.0,92.0,108.0,103.0,97.0,107.0,138.0,118.0,116.0,95.0,132.0,97.0,115.0,101.0,98.0,106.0,95.0,95.0,83.0,76.0,85.0,84.0,80.0,84.0,94.0,98.0,74.0,75.0,92.0,77.0,63.0,52.0,58.0,66.0,51.0,50.0,40.0,40.0,51.0,37.0,25.0,30.0,29.0,23.0,21.0,32.0,34.0,29.0,43.0,22.0,24.0,31.0,19.0,18.0,15.0,10.0,12.0,13.0,7.0,5.0,7.0,1.0,,4.0,1.0,2.0 J82083,200.0,209.0,244.0,206.0,229.0,271.0,269.0,261.0,270.0,280.0,295.0,278.0,321.0,329.0,314.0,343.0,305.0,295.0,281.0,243.0,255.0,232.0,207.0,224.0,245.0,237.0,294.0,261.0,268.0,304.0,275.0,317.0,300.0,311.0,308.0,337.0,320.0,321.0,317.0,308.0,341.0,292.0,328.0,298.0,281.0,276.0,284.0,257.0,248.0,263.0,234.0,284.0,311.0,321.0,333.0,330.0,338.0,360.0,357.0,362.0,401.0,362.0,373.0,351.0,348.0,343.0,284.0,302.0,279.0,261.0,251.0,262.0,217.0,222.0,222.0,205.0,249.0,238.0,225.0,198.0,176.0,141.0,136.0,96.0,91.0,99.0,92.0,72.0,59.0,50.0,33.0,35.0,28.0,18.0,18.0,26.0 J82084,19.0,27.0,28.0,25.0,30.0,23.0,23.0,16.0,34.0,26.0,30.0,27.0,28.0,30.0,29.0,25.0,24.0,28.0,33.0,22.0,23.0,16.0,22.0,36.0,21.0,35.0,24.0,27.0,33.0,28.0,25.0,26.0,31.0,34.0,30.0,29.0,41.0,31.0,33.0,28.0,26.0,30.0,23.0,25.0,24.0,29.0,32.0,22.0,29.0,33.0,22.0,33.0,37.0,39.0,49.0,35.0,39.0,42.0,52.0,58.0,51.0,51.0,51.0,43.0,46.0,53.0,36.0,44.0,35.0,38.0,35.0,41.0,32.0,34.0,29.0,35.0,38.0,41.0,30.0,41.0,30.0,21.0,21.0,18.0,13.0,20.0,19.0,8.0,10.0,6.0,9.0,1.0,3.0,2.0,3.0,3.0 J82085,195.0,196.0,225.0,199.0,242.0,207.0,225.0,249.0,267.0,242.0,235.0,261.0,272.0,225.0,257.0,254.0,225.0,241.0,238.0,258.0,209.0,208.0,215.0,246.0,243.0,239.0,292.0,263.0,301.0,292.0,319.0,318.0,325.0,342.0,335.0,305.0,322.0,357.0,342.0,308.0,335.0,307.0,317.0,278.0,275.0,251.0,255.0,233.0,239.0,253.0,256.0,212.0,227.0,211.0,253.0,255.0,241.0,218.0,193.0,207.0,198.0,222.0,208.0,192.0,196.0,165.0,175.0,160.0,154.0,152.0,136.0,125.0,106.0,124.0,109.0,101.0,108.0,93.0,106.0,107.0,69.0,65.0,65.0,45.0,35.0,42.0,32.0,23.0,19.0,21.0,17.0,18.0,9.0,9.0,6.0,14.0 J82087,32.0,19.0,30.0,35.0,43.0,29.0,35.0,32.0,39.0,49.0,29.0,46.0,40.0,45.0,49.0,45.0,59.0,46.0,51.0,51.0,44.0,48.0,45.0,46.0,35.0,49.0,49.0,60.0,62.0,52.0,67.0,46.0,61.0,65.0,66.0,62.0,49.0,60.0,59.0,57.0,57.0,52.0,42.0,60.0,58.0,57.0,49.0,43.0,52.0,34.0,49.0,32.0,43.0,49.0,54.0,49.0,44.0,51.0,45.0,59.0,52.0,53.0,48.0,48.0,43.0,43.0,56.0,33.0,35.0,49.0,41.0,40.0,36.0,29.0,24.0,32.0,42.0,34.0,18.0,25.0,22.0,19.0,17.0,15.0,9.0,9.0,15.0,16.0,6.0,8.0,7.0,7.0,2.0,2.0,3.0,6.0 J82088,45.0,43.0,65.0,54.0,72.0,78.0,65.0,82.0,77.0,86.0,96.0,80.0,90.0,98.0,96.0,84.0,94.0,105.0,97.0,61.0,76.0,78.0,75.0,69.0,69.0,80.0,91.0,91.0,77.0,77.0,110.0,98.0,99.0,114.0,114.0,100.0,123.0,124.0,101.0,134.0,130.0,103.0,130.0,127.0,132.0,125.0,115.0,86.0,104.0,114.0,105.0,106.0,87.0,93.0,90.0,88.0,85.0,96.0,93.0,85.0,90.0,86.0,86.0,81.0,73.0,69.0,70.0,68.0,61.0,64.0,42.0,62.0,66.0,51.0,50.0,48.0,53.0,48.0,32.0,36.0,34.0,34.0,23.0,18.0,13.0,16.0,21.0,13.0,14.0,9.0,2.0,9.0,10.0,1.0,5.0,5.0 J82089,84.0,76.0,121.0,130.0,115.0,127.0,129.0,140.0,124.0,149.0,138.0,129.0,135.0,131.0,133.0,114.0,105.0,89.0,85.0,78.0,92.0,72.0,83.0,86.0,91.0,85.0,96.0,107.0,117.0,102.0,132.0,128.0,143.0,135.0,138.0,154.0,158.0,151.0,131.0,147.0,142.0,124.0,156.0,121.0,143.0,150.0,111.0,121.0,114.0,121.0,105.0,103.0,127.0,127.0,117.0,114.0,114.0,112.0,117.0,112.0,102.0,112.0,100.0,109.0,104.0,97.0,94.0,87.0,90.0,87.0,74.0,77.0,77.0,77.0,62.0,80.0,69.0,84.0,81.0,64.0,67.0,52.0,53.0,48.0,39.0,39.0,30.0,15.0,25.0,21.0,22.0,19.0,10.0,13.0,11.0,9.0 J82092,30.0,46.0,41.0,53.0,50.0,47.0,43.0,57.0,57.0,67.0,53.0,57.0,48.0,57.0,77.0,69.0,59.0,65.0,56.0,50.0,51.0,43.0,40.0,36.0,35.0,48.0,47.0,39.0,47.0,62.0,47.0,60.0,63.0,78.0,75.0,68.0,74.0,61.0,73.0,67.0,60.0,62.0,68.0,60.0,70.0,73.0,61.0,69.0,68.0,63.0,63.0,60.0,56.0,48.0,59.0,52.0,41.0,55.0,51.0,37.0,46.0,54.0,44.0,38.0,44.0,35.0,38.0,38.0,31.0,32.0,33.0,26.0,32.0,32.0,38.0,35.0,36.0,34.0,44.0,26.0,23.0,17.0,19.0,18.0,11.0,12.0,6.0,10.0,8.0,6.0,5.0,5.0,4.0,4.0,1.0,7.0 J82094,73.0,104.0,74.0,99.0,81.0,99.0,102.0,90.0,111.0,112.0,108.0,114.0,110.0,109.0,126.0,90.0,117.0,112.0,112.0,98.0,86.0,103.0,89.0,85.0,102.0,107.0,125.0,98.0,100.0,121.0,112.0,110.0,121.0,122.0,127.0,115.0,134.0,113.0,130.0,119.0,131.0,114.0,120.0,102.0,120.0,105.0,119.0,97.0,91.0,121.0,134.0,135.0,127.0,123.0,154.0,160.0,163.0,137.0,170.0,158.0,152.0,145.0,144.0,167.0,154.0,137.0,121.0,107.0,132.0,121.0,118.0,109.0,101.0,99.0,109.0,101.0,98.0,125.0,131.0,84.0,71.0,82.0,74.0,38.0,46.0,47.0,36.0,35.0,29.0,22.0,23.0,10.0,14.0,7.0,6.0,14.0 J82098,126.0,144.0,135.0,146.0,156.0,195.0,171.0,211.0,208.0,212.0,217.0,185.0,245.0,240.0,258.0,245.0,246.0,252.0,230.0,192.0,167.0,161.0,187.0,160.0,187.0,179.0,157.0,162.0,197.0,187.0,172.0,177.0,195.0,209.0,224.0,208.0,203.0,222.0,191.0,228.0,230.0,215.0,228.0,214.0,224.0,229.0,220.0,226.0,226.0,211.0,234.0,246.0,287.0,293.0,269.0,292.0,266.0,270.0,251.0,268.0,271.0,249.0,268.0,285.0,231.0,234.0,229.0,211.0,199.0,219.0,214.0,194.0,207.0,199.0,168.0,170.0,187.0,182.0,226.0,173.0,157.0,138.0,137.0,105.0,95.0,104.0,73.0,81.0,63.0,54.0,40.0,40.0,32.0,23.0,22.0,34.0 J82101,69.0,89.0,72.0,79.0,92.0,94.0,97.0,100.0,104.0,117.0,99.0,111.0,109.0,125.0,119.0,141.0,130.0,151.0,112.0,117.0,115.0,111.0,122.0,115.0,105.0,128.0,118.0,130.0,117.0,121.0,145.0,118.0,161.0,141.0,154.0,177.0,144.0,142.0,113.0,146.0,139.0,143.0,128.0,128.0,128.0,139.0,107.0,129.0,120.0,115.0,120.0,136.0,132.0,110.0,139.0,112.0,133.0,141.0,156.0,158.0,148.0,147.0,156.0,143.0,101.0,131.0,116.0,122.0,108.0,125.0,76.0,98.0,89.0,69.0,86.0,85.0,85.0,81.0,76.0,57.0,70.0,57.0,48.0,49.0,35.0,27.0,29.0,20.0,23.0,13.0,18.0,13.0,13.0,9.0,5.0,8.0 J82102,102.0,120.0,111.0,122.0,140.0,120.0,120.0,139.0,125.0,156.0,147.0,167.0,157.0,141.0,144.0,167.0,146.0,161.0,145.0,137.0,123.0,120.0,137.0,118.0,125.0,142.0,130.0,119.0,105.0,129.0,147.0,154.0,165.0,146.0,160.0,165.0,159.0,181.0,179.0,155.0,172.0,169.0,145.0,152.0,152.0,144.0,137.0,145.0,131.0,124.0,142.0,149.0,157.0,163.0,165.0,137.0,169.0,165.0,192.0,153.0,169.0,152.0,146.0,130.0,135.0,116.0,135.0,128.0,135.0,116.0,109.0,112.0,103.0,104.0,85.0,103.0,109.0,124.0,92.0,85.0,67.0,71.0,75.0,56.0,43.0,48.0,34.0,42.0,38.0,30.0,24.0,11.0,12.0,7.0,10.0,10.0 J82103,56.0,60.0,60.0,74.0,55.0,63.0,79.0,77.0,84.0,80.0,79.0,78.0,79.0,84.0,76.0,71.0,82.0,89.0,66.0,62.0,58.0,51.0,45.0,62.0,55.0,65.0,64.0,80.0,70.0,73.0,64.0,92.0,85.0,85.0,81.0,90.0,94.0,90.0,69.0,99.0,94.0,82.0,81.0,73.0,86.0,87.0,91.0,77.0,85.0,84.0,99.0,78.0,82.0,94.0,89.0,89.0,86.0,100.0,98.0,90.0,88.0,76.0,94.0,90.0,86.0,73.0,70.0,67.0,70.0,60.0,43.0,51.0,39.0,55.0,52.0,55.0,54.0,50.0,61.0,48.0,47.0,45.0,34.0,28.0,26.0,17.0,27.0,20.0,23.0,22.0,18.0,7.0,6.0,6.0,3.0,6.0 J82104,45.0,41.0,45.0,46.0,43.0,47.0,55.0,40.0,59.0,60.0,67.0,57.0,55.0,63.0,78.0,65.0,60.0,63.0,68.0,54.0,50.0,54.0,50.0,49.0,46.0,42.0,46.0,42.0,54.0,47.0,45.0,52.0,51.0,47.0,62.0,56.0,72.0,50.0,47.0,40.0,58.0,61.0,41.0,49.0,46.0,64.0,54.0,59.0,57.0,59.0,64.0,47.0,81.0,72.0,84.0,78.0,82.0,97.0,92.0,71.0,100.0,116.0,88.0,94.0,106.0,94.0,102.0,91.0,97.0,101.0,98.0,80.0,77.0,80.0,78.0,85.0,88.0,97.0,125.0,103.0,72.0,70.0,65.0,52.0,55.0,41.0,40.0,38.0,35.0,26.0,24.0,24.0,10.0,13.0,12.0,12.0 J82106,33.0,34.0,38.0,34.0,33.0,37.0,53.0,46.0,49.0,50.0,46.0,47.0,60.0,41.0,44.0,47.0,42.0,38.0,42.0,40.0,32.0,36.0,25.0,34.0,31.0,33.0,28.0,25.0,25.0,26.0,42.0,28.0,21.0,31.0,32.0,33.0,32.0,36.0,44.0,41.0,33.0,31.0,45.0,28.0,40.0,42.0,46.0,41.0,38.0,60.0,38.0,49.0,48.0,60.0,51.0,51.0,47.0,52.0,56.0,28.0,55.0,58.0,37.0,46.0,44.0,51.0,52.0,42.0,48.0,47.0,46.0,38.0,34.0,30.0,34.0,30.0,36.0,51.0,48.0,28.0,26.0,29.0,23.0,23.0,20.0,19.0,15.0,18.0,13.0,7.0,13.0,8.0,3.0,4.0,9.0,5.0 J82112,85.0,101.0,102.0,101.0,131.0,101.0,111.0,108.0,125.0,128.0,142.0,134.0,131.0,146.0,144.0,126.0,131.0,143.0,126.0,119.0,128.0,126.0,100.0,104.0,108.0,114.0,144.0,123.0,123.0,135.0,134.0,119.0,132.0,150.0,141.0,149.0,133.0,142.0,148.0,119.0,141.0,148.0,149.0,163.0,143.0,157.0,139.0,151.0,148.0,139.0,152.0,152.0,169.0,164.0,178.0,155.0,183.0,177.0,169.0,168.0,186.0,202.0,160.0,176.0,180.0,156.0,175.0,148.0,141.0,143.0,120.0,135.0,115.0,124.0,124.0,122.0,99.0,129.0,138.0,93.0,99.0,84.0,72.0,50.0,73.0,61.0,37.0,52.0,37.0,36.0,29.0,17.0,16.0,17.0,6.0,17.0 J82115,31.0,31.0,33.0,36.0,26.0,31.0,28.0,39.0,32.0,37.0,41.0,38.0,38.0,26.0,26.0,29.0,29.0,33.0,23.0,28.0,21.0,18.0,26.0,25.0,24.0,40.0,44.0,57.0,54.0,56.0,65.0,73.0,90.0,67.0,73.0,83.0,72.0,91.0,71.0,58.0,60.0,74.0,57.0,69.0,71.0,57.0,58.0,45.0,39.0,46.0,47.0,37.0,35.0,37.0,36.0,29.0,33.0,33.0,39.0,18.0,34.0,26.0,26.0,21.0,22.0,25.0,18.0,12.0,13.0,13.0,11.0,11.0,16.0,19.0,16.0,14.0,7.0,10.0,8.0,8.0,9.0,8.0,7.0,5.0,3.0,8.0,2.0,5.0,4.0,3.0,2.0,3.0,1.0,1.0,1.0, J82116,24.0,51.0,27.0,35.0,46.0,50.0,54.0,47.0,66.0,58.0,69.0,67.0,68.0,71.0,60.0,69.0,56.0,70.0,66.0,61.0,46.0,49.0,57.0,46.0,50.0,54.0,37.0,50.0,41.0,42.0,44.0,48.0,41.0,41.0,53.0,60.0,42.0,46.0,57.0,41.0,68.0,56.0,68.0,57.0,75.0,79.0,60.0,62.0,63.0,70.0,76.0,71.0,78.0,65.0,69.0,84.0,68.0,69.0,76.0,76.0,72.0,63.0,91.0,74.0,63.0,64.0,62.0,67.0,62.0,42.0,50.0,56.0,40.0,53.0,55.0,46.0,55.0,57.0,61.0,38.0,37.0,41.0,35.0,25.0,32.0,16.0,28.0,24.0,13.0,15.0,8.0,12.0,9.0,6.0,5.0,9.0 J82119,37.0,36.0,49.0,57.0,50.0,39.0,41.0,51.0,51.0,47.0,51.0,64.0,53.0,64.0,41.0,53.0,45.0,59.0,45.0,47.0,46.0,48.0,41.0,43.0,47.0,43.0,47.0,51.0,49.0,52.0,47.0,58.0,49.0,41.0,56.0,59.0,45.0,63.0,57.0,48.0,45.0,55.0,65.0,59.0,50.0,60.0,53.0,51.0,50.0,59.0,67.0,65.0,74.0,62.0,57.0,64.0,69.0,79.0,84.0,93.0,97.0,91.0,84.0,76.0,79.0,77.0,75.0,73.0,82.0,71.0,64.0,68.0,68.0,70.0,51.0,52.0,67.0,57.0,68.0,52.0,52.0,48.0,48.0,26.0,31.0,37.0,28.0,17.0,13.0,16.0,18.0,13.0,10.0,7.0,3.0,10.0 J82121,38.0,50.0,39.0,41.0,50.0,49.0,46.0,53.0,51.0,62.0,57.0,60.0,66.0,53.0,55.0,56.0,66.0,61.0,69.0,57.0,42.0,40.0,47.0,35.0,50.0,46.0,36.0,42.0,45.0,46.0,48.0,57.0,59.0,60.0,56.0,76.0,62.0,62.0,50.0,77.0,53.0,61.0,63.0,50.0,72.0,69.0,63.0,56.0,58.0,62.0,70.0,68.0,79.0,57.0,69.0,66.0,57.0,61.0,69.0,75.0,55.0,59.0,69.0,69.0,59.0,62.0,63.0,59.0,57.0,53.0,59.0,40.0,36.0,46.0,50.0,52.0,46.0,39.0,54.0,41.0,45.0,38.0,46.0,23.0,25.0,20.0,18.0,10.0,13.0,10.0,15.0,5.0,3.0,3.0,2.0,6.0 J82122,37.0,56.0,47.0,37.0,49.0,51.0,51.0,46.0,47.0,44.0,47.0,58.0,73.0,56.0,50.0,63.0,60.0,71.0,78.0,69.0,85.0,88.0,80.0,117.0,138.0,130.0,131.0,120.0,144.0,156.0,130.0,111.0,146.0,157.0,122.0,133.0,118.0,121.0,109.0,101.0,110.0,123.0,122.0,121.0,108.0,113.0,102.0,79.0,101.0,91.0,80.0,82.0,63.0,77.0,63.0,56.0,69.0,53.0,66.0,80.0,80.0,46.0,50.0,44.0,58.0,53.0,49.0,38.0,23.0,28.0,32.0,26.0,22.0,23.0,19.0,27.0,28.0,22.0,36.0,31.0,19.0,17.0,16.0,14.0,13.0,5.0,6.0,9.0,9.0,7.0,8.0,3.0,5.0,1.0,2.0,3.0 J82124,37.0,28.0,40.0,41.0,35.0,37.0,33.0,34.0,57.0,52.0,41.0,64.0,55.0,55.0,67.0,67.0,77.0,70.0,47.0,46.0,44.0,43.0,46.0,47.0,39.0,44.0,39.0,55.0,53.0,32.0,47.0,35.0,46.0,35.0,43.0,36.0,51.0,45.0,36.0,43.0,47.0,44.0,46.0,43.0,57.0,56.0,56.0,62.0,69.0,60.0,63.0,67.0,75.0,80.0,77.0,65.0,86.0,87.0,78.0,84.0,75.0,79.0,77.0,81.0,81.0,75.0,61.0,71.0,45.0,68.0,51.0,63.0,59.0,50.0,47.0,59.0,49.0,71.0,81.0,62.0,48.0,49.0,43.0,39.0,35.0,28.0,33.0,28.0,25.0,25.0,18.0,9.0,12.0,9.0,7.0,8.0 J82126,25.0,16.0,19.0,25.0,22.0,21.0,28.0,16.0,24.0,31.0,23.0,26.0,22.0,25.0,33.0,26.0,29.0,38.0,19.0,21.0,17.0,25.0,12.0,16.0,18.0,20.0,26.0,38.0,26.0,37.0,31.0,37.0,30.0,34.0,36.0,36.0,43.0,33.0,44.0,41.0,39.0,38.0,45.0,56.0,40.0,41.0,43.0,43.0,41.0,37.0,29.0,45.0,24.0,34.0,30.0,31.0,33.0,24.0,17.0,32.0,20.0,26.0,27.0,30.0,20.0,28.0,15.0,25.0,23.0,26.0,19.0,22.0,17.0,24.0,22.0,29.0,15.0,26.0,17.0,15.0,13.0,14.0,10.0,15.0,9.0,14.0,10.0,4.0,10.0,7.0,6.0,4.0,8.0,4.0,3.0,11.0 J82128,24.0,41.0,33.0,55.0,32.0,53.0,44.0,51.0,47.0,62.0,53.0,52.0,48.0,51.0,60.0,31.0,65.0,54.0,53.0,42.0,46.0,48.0,55.0,41.0,39.0,45.0,57.0,49.0,39.0,51.0,64.0,54.0,56.0,66.0,69.0,61.0,67.0,55.0,55.0,80.0,66.0,56.0,52.0,66.0,67.0,66.0,70.0,56.0,47.0,40.0,59.0,70.0,69.0,61.0,51.0,50.0,60.0,67.0,56.0,60.0,58.0,60.0,55.0,53.0,60.0,69.0,46.0,42.0,33.0,41.0,39.0,38.0,27.0,25.0,45.0,35.0,34.0,32.0,39.0,30.0,21.0,29.0,16.0,14.0,19.0,10.0,9.0,11.0,11.0,8.0,2.0,6.0,4.0,4.0,2.0,6.0 J82129,16.0,18.0,15.0,23.0,13.0,28.0,17.0,30.0,40.0,36.0,38.0,30.0,49.0,47.0,45.0,36.0,58.0,38.0,35.0,26.0,30.0,28.0,28.0,30.0,32.0,41.0,36.0,32.0,23.0,28.0,22.0,29.0,26.0,34.0,26.0,28.0,31.0,31.0,30.0,32.0,38.0,34.0,47.0,35.0,43.0,35.0,45.0,36.0,44.0,37.0,42.0,41.0,53.0,45.0,68.0,45.0,50.0,54.0,57.0,59.0,64.0,78.0,46.0,70.0,68.0,58.0,68.0,64.0,51.0,60.0,47.0,62.0,54.0,54.0,56.0,52.0,44.0,61.0,63.0,46.0,53.0,45.0,41.0,28.0,33.0,27.0,26.0,20.0,27.0,15.0,12.0,12.0,12.0,4.0,9.0,11.0 J82130,91.0,105.0,110.0,134.0,128.0,150.0,121.0,158.0,166.0,148.0,148.0,162.0,155.0,196.0,176.0,172.0,171.0,169.0,186.0,120.0,134.0,131.0,122.0,124.0,129.0,136.0,123.0,150.0,132.0,133.0,151.0,146.0,149.0,161.0,153.0,157.0,154.0,153.0,142.0,161.0,138.0,147.0,138.0,176.0,173.0,182.0,170.0,159.0,174.0,177.0,191.0,156.0,172.0,197.0,202.0,150.0,145.0,169.0,170.0,155.0,162.0,143.0,152.0,155.0,138.0,126.0,137.0,136.0,114.0,103.0,120.0,97.0,95.0,95.0,79.0,98.0,91.0,95.0,106.0,80.0,97.0,83.0,52.0,44.0,48.0,53.0,46.0,41.0,39.0,39.0,20.0,12.0,11.0,19.0,10.0,25.0 J82131,36.0,29.0,42.0,51.0,43.0,42.0,55.0,44.0,44.0,63.0,66.0,54.0,78.0,59.0,87.0,59.0,65.0,54.0,67.0,41.0,57.0,49.0,57.0,47.0,47.0,59.0,52.0,52.0,56.0,56.0,50.0,54.0,51.0,59.0,61.0,58.0,48.0,58.0,59.0,44.0,75.0,60.0,58.0,69.0,55.0,77.0,53.0,54.0,66.0,60.0,78.0,70.0,77.0,70.0,86.0,95.0,100.0,80.0,94.0,90.0,102.0,79.0,118.0,106.0,110.0,103.0,97.0,90.0,84.0,91.0,89.0,93.0,96.0,89.0,83.0,88.0,76.0,102.0,98.0,74.0,62.0,61.0,56.0,47.0,26.0,43.0,30.0,35.0,22.0,20.0,20.0,16.0,14.0,6.0,9.0,13.0 J82132,55.0,76.0,68.0,67.0,59.0,57.0,54.0,67.0,69.0,71.0,77.0,80.0,72.0,88.0,85.0,82.0,85.0,86.0,96.0,69.0,56.0,73.0,58.0,59.0,62.0,67.0,79.0,73.0,76.0,89.0,77.0,88.0,116.0,97.0,109.0,77.0,88.0,82.0,109.0,91.0,74.0,87.0,70.0,85.0,83.0,90.0,86.0,75.0,76.0,64.0,72.0,87.0,87.0,90.0,93.0,112.0,90.0,94.0,119.0,104.0,111.0,99.0,99.0,111.0,82.0,81.0,67.0,79.0,75.0,63.0,90.0,59.0,68.0,68.0,63.0,53.0,82.0,75.0,65.0,50.0,52.0,37.0,40.0,34.0,33.0,20.0,30.0,21.0,27.0,21.0,13.0,10.0,12.0,6.0,3.0,11.0 J82134,110.0,116.0,126.0,133.0,142.0,129.0,149.0,140.0,143.0,138.0,141.0,168.0,163.0,168.0,155.0,148.0,143.0,147.0,146.0,144.0,139.0,150.0,122.0,154.0,128.0,125.0,152.0,135.0,153.0,132.0,164.0,165.0,175.0,182.0,200.0,219.0,170.0,199.0,167.0,174.0,147.0,168.0,141.0,161.0,151.0,149.0,155.0,152.0,120.0,150.0,141.0,159.0,167.0,164.0,144.0,173.0,182.0,171.0,143.0,173.0,181.0,172.0,184.0,163.0,161.0,142.0,153.0,154.0,140.0,124.0,132.0,109.0,123.0,123.0,142.0,117.0,122.0,136.0,103.0,98.0,96.0,83.0,64.0,75.0,52.0,50.0,58.0,41.0,34.0,32.0,36.0,26.0,25.0,21.0,17.0,19.0 J82136,36.0,40.0,43.0,47.0,55.0,45.0,62.0,50.0,42.0,55.0,34.0,56.0,73.0,56.0,78.0,61.0,66.0,75.0,69.0,72.0,42.0,62.0,47.0,54.0,61.0,47.0,56.0,53.0,55.0,50.0,65.0,73.0,57.0,54.0,72.0,57.0,57.0,61.0,64.0,71.0,58.0,75.0,65.0,60.0,75.0,67.0,60.0,53.0,77.0,61.0,73.0,74.0,87.0,92.0,90.0,100.0,62.0,85.0,82.0,88.0,77.0,94.0,86.0,77.0,77.0,80.0,82.0,76.0,77.0,56.0,67.0,61.0,68.0,71.0,50.0,58.0,58.0,62.0,68.0,57.0,54.0,41.0,38.0,27.0,19.0,25.0,24.0,20.0,13.0,10.0,10.0,11.0,4.0,4.0,7.0,12.0 J82138,69.0,76.0,67.0,96.0,90.0,94.0,102.0,91.0,94.0,121.0,156.0,95.0,111.0,125.0,119.0,116.0,109.0,97.0,113.0,88.0,101.0,70.0,71.0,81.0,87.0,71.0,89.0,85.0,74.0,81.0,91.0,88.0,92.0,84.0,110.0,92.0,114.0,108.0,88.0,117.0,108.0,91.0,117.0,117.0,117.0,127.0,108.0,98.0,85.0,107.0,131.0,119.0,137.0,158.0,157.0,112.0,125.0,122.0,133.0,121.0,123.0,128.0,121.0,138.0,145.0,98.0,93.0,102.0,96.0,90.0,85.0,93.0,79.0,74.0,79.0,100.0,69.0,105.0,106.0,64.0,63.0,59.0,61.0,45.0,35.0,48.0,35.0,34.0,18.0,22.0,14.0,20.0,8.0,7.0,7.0,19.0 J82139,23.0,40.0,41.0,48.0,45.0,56.0,55.0,52.0,68.0,67.0,75.0,67.0,66.0,92.0,81.0,69.0,73.0,92.0,69.0,64.0,61.0,53.0,49.0,59.0,60.0,56.0,59.0,66.0,51.0,55.0,61.0,51.0,56.0,77.0,65.0,51.0,61.0,72.0,83.0,65.0,54.0,76.0,80.0,59.0,77.0,65.0,68.0,78.0,67.0,82.0,70.0,85.0,84.0,108.0,86.0,94.0,93.0,105.0,119.0,127.0,132.0,108.0,119.0,119.0,130.0,111.0,117.0,130.0,114.0,110.0,111.0,119.0,121.0,111.0,133.0,121.0,140.0,150.0,141.0,116.0,103.0,120.0,90.0,84.0,67.0,64.0,59.0,57.0,49.0,31.0,30.0,32.0,26.0,19.0,17.0,30.0 J82143,55.0,54.0,63.0,67.0,67.0,73.0,80.0,85.0,82.0,102.0,106.0,92.0,122.0,124.0,112.0,125.0,120.0,108.0,116.0,98.0,84.0,88.0,82.0,102.0,93.0,78.0,75.0,76.0,84.0,57.0,71.0,62.0,85.0,87.0,84.0,79.0,94.0,97.0,74.0,95.0,97.0,111.0,115.0,104.0,101.0,112.0,112.0,103.0,102.0,131.0,127.0,115.0,120.0,119.0,132.0,123.0,118.0,120.0,114.0,121.0,133.0,124.0,96.0,123.0,124.0,124.0,92.0,90.0,97.0,79.0,93.0,86.0,68.0,77.0,66.0,83.0,81.0,81.0,99.0,69.0,65.0,61.0,52.0,49.0,44.0,29.0,48.0,26.0,28.0,24.0,29.0,14.0,9.0,8.0,3.0,12.0 J82144,108.0,135.0,145.0,178.0,154.0,154.0,175.0,146.0,161.0,174.0,156.0,139.0,166.0,162.0,151.0,123.0,131.0,119.0,124.0,114.0,110.0,113.0,134.0,136.0,151.0,205.0,196.0,205.0,240.0,231.0,245.0,242.0,272.0,279.0,307.0,294.0,321.0,323.0,279.0,270.0,291.0,285.0,257.0,262.0,263.0,227.0,226.0,174.0,197.0,165.0,194.0,170.0,167.0,152.0,164.0,151.0,158.0,177.0,163.0,164.0,179.0,173.0,151.0,154.0,144.0,147.0,118.0,141.0,106.0,103.0,93.0,95.0,118.0,93.0,93.0,92.0,77.0,87.0,76.0,63.0,76.0,65.0,49.0,38.0,35.0,28.0,26.0,25.0,24.0,20.0,22.0,17.0,12.0,9.0,8.0,24.0 J82145,50.0,50.0,79.0,81.0,74.0,74.0,73.0,89.0,93.0,92.0,83.0,98.0,103.0,108.0,108.0,106.0,110.0,97.0,82.0,73.0,72.0,83.0,56.0,87.0,72.0,69.0,83.0,83.0,89.0,81.0,85.0,84.0,99.0,91.0,115.0,99.0,92.0,94.0,93.0,85.0,99.0,91.0,100.0,98.0,96.0,98.0,103.0,100.0,116.0,98.0,136.0,106.0,108.0,114.0,118.0,100.0,105.0,114.0,124.0,132.0,125.0,135.0,121.0,135.0,125.0,119.0,127.0,120.0,114.0,95.0,124.0,112.0,99.0,82.0,113.0,102.0,119.0,116.0,113.0,63.0,91.0,89.0,59.0,50.0,39.0,46.0,53.0,32.0,37.0,22.0,23.0,21.0,15.0,7.0,4.0,15.0 J82146,13.0,11.0,17.0,13.0,20.0,21.0,15.0,21.0,18.0,26.0,25.0,21.0,34.0,43.0,20.0,27.0,19.0,33.0,26.0,14.0,24.0,33.0,23.0,16.0,28.0,20.0,27.0,18.0,29.0,23.0,23.0,24.0,29.0,27.0,20.0,24.0,30.0,14.0,35.0,17.0,23.0,38.0,30.0,38.0,32.0,31.0,32.0,25.0,32.0,36.0,33.0,42.0,36.0,43.0,51.0,44.0,52.0,54.0,43.0,66.0,57.0,43.0,52.0,51.0,52.0,37.0,38.0,47.0,32.0,30.0,35.0,47.0,43.0,42.0,45.0,34.0,43.0,45.0,40.0,34.0,31.0,28.0,23.0,18.0,18.0,21.0,10.0,13.0,11.0,11.0,12.0,10.0,5.0,6.0,2.0,11.0 J82147,20.0,22.0,42.0,33.0,33.0,37.0,40.0,53.0,38.0,43.0,52.0,56.0,58.0,57.0,52.0,48.0,42.0,39.0,51.0,30.0,39.0,52.0,28.0,36.0,35.0,35.0,40.0,40.0,50.0,30.0,50.0,46.0,38.0,37.0,49.0,39.0,44.0,55.0,52.0,43.0,38.0,44.0,57.0,54.0,48.0,52.0,42.0,46.0,42.0,55.0,44.0,44.0,54.0,50.0,54.0,52.0,70.0,39.0,60.0,55.0,75.0,50.0,69.0,57.0,71.0,63.0,57.0,55.0,59.0,52.0,56.0,44.0,42.0,51.0,31.0,36.0,40.0,52.0,53.0,25.0,30.0,21.0,28.0,20.0,24.0,21.0,15.0,15.0,9.0,7.0,6.0,10.0,7.0,3.0,2.0,4.0 J82149,70.0,89.0,78.0,94.0,96.0,98.0,113.0,102.0,111.0,125.0,101.0,104.0,108.0,121.0,119.0,98.0,108.0,88.0,98.0,93.0,85.0,75.0,92.0,105.0,87.0,115.0,102.0,115.0,128.0,139.0,115.0,138.0,131.0,137.0,161.0,143.0,143.0,132.0,134.0,154.0,128.0,146.0,124.0,147.0,153.0,116.0,138.0,113.0,107.0,118.0,105.0,116.0,106.0,117.0,109.0,103.0,112.0,97.0,109.0,105.0,107.0,116.0,87.0,117.0,102.0,75.0,67.0,70.0,77.0,61.0,64.0,53.0,60.0,61.0,40.0,53.0,45.0,48.0,56.0,36.0,49.0,23.0,31.0,14.0,19.0,20.0,13.0,14.0,10.0,4.0,9.0,5.0,3.0,2.0,2.0,4.0 J82150,41.0,40.0,41.0,40.0,43.0,64.0,45.0,62.0,62.0,60.0,64.0,55.0,58.0,67.0,65.0,77.0,76.0,59.0,67.0,71.0,46.0,58.0,55.0,59.0,50.0,51.0,44.0,45.0,39.0,50.0,49.0,48.0,47.0,33.0,60.0,71.0,62.0,57.0,51.0,64.0,43.0,49.0,51.0,64.0,71.0,59.0,43.0,69.0,56.0,81.0,66.0,89.0,70.0,80.0,89.0,79.0,86.0,89.0,83.0,75.0,81.0,107.0,91.0,91.0,99.0,89.0,90.0,79.0,69.0,77.0,82.0,79.0,68.0,78.0,72.0,80.0,98.0,111.0,106.0,68.0,70.0,63.0,74.0,55.0,44.0,43.0,33.0,32.0,29.0,18.0,15.0,14.0,16.0,13.0,3.0,12.0 J82151,10.0,9.0,18.0,20.0,27.0,28.0,23.0,19.0,26.0,29.0,26.0,24.0,34.0,28.0,28.0,34.0,38.0,29.0,34.0,21.0,20.0,27.0,17.0,21.0,19.0,24.0,22.0,17.0,19.0,12.0,16.0,15.0,18.0,22.0,21.0,23.0,30.0,16.0,30.0,24.0,16.0,30.0,26.0,27.0,29.0,37.0,25.0,28.0,23.0,24.0,34.0,31.0,27.0,37.0,29.0,37.0,30.0,57.0,46.0,47.0,37.0,39.0,50.0,49.0,46.0,41.0,40.0,36.0,46.0,48.0,28.0,40.0,38.0,37.0,48.0,39.0,48.0,55.0,42.0,33.0,33.0,22.0,29.0,16.0,13.0,16.0,10.0,20.0,7.0,11.0,8.0,6.0,8.0,1.0,1.0,6.0 J82152,25.0,33.0,43.0,40.0,37.0,52.0,42.0,43.0,37.0,43.0,57.0,44.0,59.0,66.0,40.0,54.0,49.0,58.0,55.0,44.0,31.0,43.0,49.0,50.0,33.0,53.0,50.0,47.0,57.0,43.0,50.0,48.0,51.0,59.0,63.0,60.0,63.0,68.0,44.0,64.0,62.0,61.0,62.0,53.0,52.0,54.0,51.0,48.0,48.0,50.0,52.0,56.0,51.0,61.0,71.0,46.0,59.0,46.0,52.0,51.0,64.0,59.0,62.0,63.0,53.0,53.0,68.0,51.0,42.0,56.0,38.0,38.0,38.0,43.0,34.0,35.0,37.0,57.0,43.0,23.0,39.0,28.0,17.0,24.0,22.0,19.0,13.0,11.0,14.0,4.0,4.0,2.0,8.0,2.0,2.0,7.0 J82154,157.0,157.0,167.0,192.0,205.0,202.0,241.0,228.0,223.0,225.0,237.0,243.0,250.0,226.0,235.0,219.0,211.0,214.0,218.0,200.0,175.0,183.0,173.0,168.0,202.0,174.0,193.0,200.0,199.0,198.0,224.0,226.0,220.0,248.0,232.0,241.0,249.0,251.0,224.0,264.0,267.0,241.0,250.0,241.0,236.0,244.0,219.0,220.0,206.0,192.0,234.0,222.0,237.0,240.0,259.0,260.0,273.0,250.0,270.0,281.0,258.0,257.0,287.0,258.0,227.0,235.0,218.0,221.0,181.0,212.0,147.0,156.0,154.0,155.0,126.0,144.0,156.0,160.0,166.0,121.0,105.0,101.0,101.0,87.0,62.0,80.0,62.0,54.0,64.0,44.0,30.0,29.0,27.0,17.0,6.0,38.0 J82155,310.0,330.0,346.0,342.0,344.0,376.0,374.0,359.0,365.0,412.0,430.0,452.0,399.0,443.0,416.0,408.0,409.0,407.0,415.0,403.0,425.0,422.0,433.0,447.0,448.0,483.0,472.0,444.0,462.0,498.0,528.0,485.0,547.0,514.0,591.0,549.0,505.0,512.0,491.0,515.0,524.0,504.0,461.0,500.0,465.0,434.0,405.0,416.0,406.0,359.0,390.0,395.0,378.0,389.0,435.0,370.0,375.0,413.0,408.0,344.0,372.0,365.0,376.0,337.0,317.0,308.0,288.0,293.0,247.0,228.0,238.0,230.0,212.0,178.0,184.0,209.0,187.0,179.0,203.0,156.0,115.0,128.0,99.0,85.0,70.0,68.0,75.0,58.0,41.0,42.0,38.0,31.0,21.0,18.0,6.0,28.0 J82156,27.0,26.0,32.0,34.0,29.0,33.0,32.0,38.0,32.0,41.0,29.0,39.0,41.0,37.0,34.0,39.0,34.0,37.0,36.0,33.0,41.0,42.0,43.0,40.0,27.0,39.0,49.0,43.0,41.0,47.0,33.0,57.0,42.0,52.0,46.0,62.0,64.0,50.0,45.0,45.0,41.0,52.0,51.0,40.0,43.0,42.0,44.0,30.0,29.0,37.0,41.0,40.0,43.0,48.0,53.0,50.0,50.0,48.0,49.0,65.0,52.0,55.0,46.0,54.0,62.0,52.0,55.0,61.0,57.0,44.0,46.0,53.0,40.0,51.0,38.0,56.0,48.0,55.0,62.0,48.0,52.0,34.0,21.0,34.0,22.0,32.0,21.0,21.0,12.0,18.0,11.0,15.0,13.0,5.0,2.0,5.0 J82157,63.0,78.0,71.0,84.0,98.0,86.0,82.0,97.0,100.0,81.0,103.0,102.0,90.0,115.0,106.0,108.0,107.0,108.0,98.0,87.0,64.0,95.0,75.0,89.0,87.0,77.0,84.0,90.0,91.0,90.0,104.0,106.0,115.0,102.0,128.0,120.0,115.0,103.0,127.0,100.0,117.0,100.0,96.0,96.0,105.0,114.0,105.0,94.0,101.0,105.0,117.0,127.0,135.0,93.0,145.0,116.0,133.0,101.0,115.0,110.0,131.0,104.0,106.0,106.0,108.0,91.0,95.0,85.0,95.0,93.0,72.0,68.0,71.0,80.0,70.0,79.0,80.0,91.0,111.0,61.0,70.0,61.0,58.0,46.0,38.0,38.0,42.0,40.0,32.0,30.0,20.0,16.0,16.0,8.0,9.0,20.0 J82161,38.0,42.0,50.0,43.0,43.0,45.0,49.0,55.0,52.0,48.0,65.0,62.0,70.0,60.0,59.0,56.0,65.0,50.0,50.0,50.0,53.0,55.0,39.0,54.0,42.0,54.0,47.0,48.0,56.0,50.0,45.0,61.0,71.0,46.0,69.0,57.0,66.0,75.0,74.0,64.0,62.0,76.0,63.0,68.0,51.0,59.0,55.0,64.0,64.0,65.0,62.0,62.0,78.0,61.0,70.0,78.0,68.0,76.0,76.0,78.0,74.0,98.0,73.0,63.0,73.0,75.0,66.0,64.0,69.0,71.0,65.0,54.0,51.0,45.0,66.0,51.0,56.0,76.0,62.0,64.0,56.0,56.0,40.0,23.0,19.0,30.0,26.0,22.0,14.0,12.0,9.0,13.0,14.0,8.0,2.0,10.0 J82163,64.0,90.0,98.0,90.0,87.0,93.0,101.0,94.0,101.0,106.0,85.0,108.0,104.0,94.0,95.0,95.0,93.0,78.0,84.0,81.0,64.0,62.0,75.0,68.0,69.0,68.0,82.0,88.0,90.0,102.0,89.0,76.0,106.0,99.0,107.0,104.0,111.0,113.0,94.0,111.0,118.0,102.0,118.0,107.0,107.0,110.0,93.0,65.0,85.0,84.0,70.0,79.0,116.0,93.0,114.0,124.0,100.0,106.0,130.0,111.0,102.0,104.0,109.0,126.0,106.0,116.0,106.0,108.0,106.0,90.0,104.0,102.0,83.0,88.0,72.0,91.0,95.0,91.0,103.0,83.0,77.0,54.0,60.0,49.0,43.0,33.0,35.0,28.0,27.0,31.0,20.0,17.0,15.0,6.0,7.0,5.0 J82169,42.0,38.0,66.0,50.0,58.0,72.0,69.0,52.0,45.0,62.0,75.0,62.0,47.0,53.0,57.0,64.0,61.0,50.0,45.0,60.0,44.0,34.0,34.0,37.0,35.0,41.0,44.0,54.0,59.0,44.0,45.0,49.0,68.0,66.0,69.0,71.0,81.0,77.0,73.0,93.0,68.0,69.0,71.0,81.0,62.0,62.0,63.0,50.0,57.0,62.0,65.0,35.0,68.0,55.0,58.0,65.0,61.0,49.0,51.0,47.0,39.0,45.0,58.0,49.0,35.0,43.0,39.0,42.0,40.0,44.0,41.0,34.0,37.0,26.0,30.0,26.0,21.0,31.0,32.0,20.0,19.0,13.0,23.0,13.0,8.0,9.0,7.0,6.0,4.0,6.0,3.0,7.0,2.0,2.0,2.0,3.0 J82174,32.0,52.0,65.0,49.0,49.0,62.0,60.0,61.0,75.0,70.0,61.0,77.0,74.0,100.0,77.0,61.0,89.0,72.0,58.0,65.0,63.0,79.0,63.0,64.0,72.0,72.0,52.0,73.0,70.0,75.0,63.0,67.0,60.0,68.0,80.0,74.0,64.0,83.0,82.0,71.0,82.0,73.0,81.0,73.0,96.0,82.0,72.0,71.0,81.0,77.0,75.0,83.0,99.0,93.0,96.0,108.0,100.0,124.0,107.0,112.0,124.0,115.0,121.0,119.0,110.0,107.0,114.0,104.0,99.0,74.0,74.0,67.0,93.0,73.0,70.0,80.0,76.0,97.0,83.0,55.0,50.0,45.0,41.0,39.0,29.0,27.0,23.0,20.0,16.0,12.0,11.0,6.0,10.0,6.0,2.0,11.0 J82184,35.0,30.0,21.0,27.0,33.0,27.0,31.0,32.0,20.0,26.0,29.0,28.0,37.0,28.0,24.0,15.0,14.0,31.0,22.0,24.0,21.0,19.0,18.0,32.0,31.0,25.0,35.0,32.0,48.0,34.0,35.0,48.0,42.0,43.0,54.0,40.0,34.0,27.0,35.0,44.0,29.0,33.0,35.0,34.0,31.0,26.0,42.0,24.0,26.0,16.0,27.0,24.0,32.0,27.0,25.0,37.0,27.0,29.0,24.0,27.0,28.0,36.0,26.0,17.0,28.0,20.0,16.0,24.0,24.0,24.0,14.0,14.0,10.0,18.0,17.0,10.0,10.0,9.0,17.0,7.0,9.0,5.0,9.0,7.0,2.0,6.0,3.0,1.0,1.0,1.0,6.0,2.0,1.0,1.0,,1.0 J82194,59.0,73.0,43.0,73.0,55.0,60.0,79.0,60.0,68.0,70.0,79.0,84.0,85.0,75.0,77.0,84.0,100.0,76.0,93.0,83.0,80.0,75.0,59.0,68.0,74.0,76.0,88.0,74.0,85.0,78.0,73.0,115.0,99.0,94.0,88.0,84.0,106.0,107.0,98.0,92.0,108.0,104.0,107.0,119.0,92.0,112.0,89.0,106.0,107.0,85.0,106.0,95.0,86.0,120.0,94.0,99.0,100.0,90.0,97.0,120.0,106.0,104.0,105.0,97.0,87.0,82.0,95.0,67.0,81.0,66.0,46.0,57.0,54.0,52.0,47.0,45.0,55.0,54.0,61.0,42.0,39.0,43.0,25.0,12.0,18.0,21.0,17.0,19.0,16.0,6.0,8.0,6.0,5.0,7.0,6.0,10.0 J82196,63.0,88.0,77.0,88.0,81.0,82.0,91.0,93.0,90.0,107.0,88.0,94.0,88.0,94.0,105.0,108.0,115.0,105.0,92.0,100.0,98.0,80.0,87.0,84.0,96.0,96.0,99.0,108.0,104.0,105.0,104.0,114.0,118.0,109.0,122.0,123.0,113.0,105.0,117.0,116.0,105.0,105.0,118.0,100.0,115.0,87.0,86.0,79.0,78.0,78.0,85.0,78.0,76.0,107.0,108.0,92.0,86.0,95.0,128.0,85.0,105.0,104.0,94.0,108.0,96.0,88.0,77.0,79.0,85.0,59.0,77.0,74.0,52.0,63.0,63.0,50.0,63.0,59.0,69.0,46.0,48.0,38.0,28.0,22.0,20.0,23.0,20.0,20.0,11.0,19.0,14.0,11.0,4.0,9.0,3.0,8.0 J82199,87.0,49.0,40.0,39.0,40.0,49.0,41.0,46.0,42.0,51.0,47.0,37.0,32.0,32.0,43.0,26.0,23.0,39.0,100.0,262.0,417.0,378.0,399.0,449.0,578.0,570.0,620.0,659.0,735.0,629.0,549.0,482.0,471.0,372.0,321.0,224.0,262.0,205.0,171.0,186.0,122.0,129.0,82.0,92.0,72.0,61.0,62.0,47.0,47.0,39.0,29.0,36.0,28.0,18.0,30.0,31.0,32.0,29.0,24.0,18.0,22.0,34.0,19.0,32.0,30.0,14.0,19.0,25.0,12.0,18.0,13.0,12.0,15.0,12.0,23.0,22.0,11.0,15.0,9.0,12.0,9.0,4.0,3.0,6.0,6.0,9.0,1.0,6.0,3.0,1.0,,2.0,,,, J82201,17.0,31.0,29.0,34.0,42.0,38.0,33.0,45.0,43.0,44.0,37.0,58.0,54.0,72.0,70.0,64.0,62.0,46.0,52.0,38.0,46.0,30.0,31.0,39.0,32.0,43.0,35.0,36.0,38.0,27.0,31.0,38.0,31.0,28.0,26.0,40.0,37.0,45.0,42.0,37.0,46.0,35.0,44.0,48.0,45.0,43.0,53.0,47.0,59.0,59.0,53.0,56.0,65.0,76.0,46.0,66.0,52.0,50.0,64.0,66.0,62.0,61.0,61.0,55.0,58.0,60.0,42.0,50.0,35.0,31.0,44.0,38.0,40.0,38.0,37.0,31.0,44.0,33.0,45.0,33.0,29.0,30.0,19.0,22.0,16.0,20.0,8.0,9.0,5.0,18.0,5.0,9.0,5.0,7.0,1.0,3.0 J82207,55.0,50.0,40.0,48.0,48.0,49.0,48.0,41.0,51.0,55.0,38.0,53.0,46.0,42.0,46.0,47.0,41.0,55.0,66.0,92.0,71.0,75.0,62.0,118.0,115.0,107.0,123.0,135.0,123.0,140.0,124.0,144.0,130.0,131.0,148.0,126.0,115.0,114.0,130.0,111.0,105.0,114.0,124.0,128.0,104.0,86.0,89.0,106.0,92.0,89.0,93.0,70.0,69.0,67.0,53.0,57.0,46.0,56.0,51.0,56.0,55.0,64.0,47.0,47.0,50.0,45.0,39.0,51.0,50.0,33.0,45.0,50.0,27.0,35.0,34.0,33.0,22.0,31.0,26.0,27.0,18.0,19.0,17.0,15.0,14.0,8.0,13.0,7.0,9.0,6.0,3.0,6.0,4.0,3.0,1.0,4.0 J82208,27.0,39.0,41.0,48.0,39.0,39.0,44.0,50.0,39.0,43.0,48.0,40.0,50.0,45.0,53.0,40.0,30.0,30.0,38.0,43.0,35.0,39.0,31.0,33.0,38.0,42.0,49.0,54.0,45.0,69.0,66.0,68.0,80.0,67.0,69.0,77.0,61.0,72.0,67.0,50.0,65.0,59.0,58.0,53.0,65.0,55.0,62.0,45.0,43.0,41.0,41.0,35.0,47.0,46.0,51.0,45.0,48.0,35.0,45.0,39.0,33.0,37.0,21.0,47.0,28.0,26.0,25.0,34.0,36.0,34.0,28.0,22.0,20.0,17.0,23.0,27.0,18.0,19.0,18.0,11.0,20.0,16.0,14.0,16.0,11.0,8.0,12.0,4.0,3.0,4.0,2.0,6.0,2.0,1.0,,4.0 J82210,26.0,26.0,35.0,27.0,28.0,45.0,24.0,41.0,55.0,39.0,43.0,27.0,30.0,40.0,38.0,38.0,39.0,38.0,49.0,48.0,31.0,36.0,34.0,31.0,41.0,43.0,32.0,39.0,43.0,40.0,43.0,39.0,39.0,40.0,43.0,55.0,48.0,36.0,45.0,49.0,45.0,38.0,38.0,48.0,40.0,43.0,50.0,51.0,42.0,47.0,45.0,43.0,57.0,74.0,68.0,74.0,82.0,68.0,60.0,77.0,85.0,88.0,93.0,81.0,91.0,87.0,73.0,80.0,76.0,79.0,54.0,69.0,66.0,64.0,59.0,63.0,71.0,79.0,84.0,63.0,63.0,58.0,63.0,50.0,30.0,31.0,34.0,25.0,19.0,21.0,14.0,17.0,10.0,6.0,3.0,10.0 J82213,37.0,40.0,43.0,31.0,42.0,37.0,30.0,50.0,36.0,43.0,52.0,51.0,40.0,46.0,49.0,50.0,41.0,47.0,47.0,41.0,39.0,27.0,35.0,31.0,39.0,36.0,32.0,37.0,33.0,47.0,42.0,63.0,54.0,56.0,44.0,64.0,59.0,59.0,54.0,39.0,63.0,48.0,48.0,66.0,57.0,47.0,43.0,43.0,37.0,49.0,48.0,40.0,50.0,53.0,44.0,40.0,38.0,40.0,29.0,38.0,39.0,35.0,22.0,32.0,24.0,15.0,28.0,35.0,28.0,31.0,29.0,17.0,15.0,15.0,21.0,15.0,9.0,18.0,14.0,9.0,4.0,11.0,10.0,7.0,2.0,11.0,3.0,4.0,4.0,4.0,1.0,2.0,1.0,1.0,, J82214,35.0,51.0,43.0,62.0,58.0,54.0,59.0,68.0,64.0,57.0,54.0,70.0,62.0,60.0,65.0,47.0,44.0,54.0,56.0,40.0,39.0,30.0,48.0,42.0,34.0,56.0,49.0,54.0,48.0,57.0,48.0,43.0,62.0,46.0,59.0,68.0,68.0,57.0,71.0,82.0,66.0,61.0,79.0,75.0,62.0,75.0,83.0,67.0,65.0,68.0,70.0,68.0,67.0,63.0,96.0,69.0,72.0,83.0,74.0,75.0,61.0,67.0,67.0,62.0,73.0,58.0,51.0,58.0,42.0,59.0,49.0,68.0,43.0,46.0,54.0,34.0,37.0,51.0,57.0,27.0,31.0,32.0,34.0,23.0,19.0,12.0,18.0,21.0,11.0,8.0,12.0,5.0,11.0,7.0,1.0,10.0 J82215,51.0,49.0,44.0,58.0,45.0,54.0,52.0,59.0,58.0,67.0,73.0,78.0,78.0,73.0,64.0,80.0,86.0,85.0,87.0,83.0,69.0,74.0,61.0,50.0,68.0,49.0,66.0,64.0,56.0,53.0,67.0,45.0,58.0,59.0,59.0,58.0,53.0,60.0,56.0,68.0,67.0,56.0,75.0,69.0,57.0,62.0,70.0,68.0,74.0,63.0,97.0,65.0,80.0,100.0,88.0,83.0,95.0,77.0,89.0,88.0,99.0,97.0,98.0,86.0,95.0,86.0,89.0,84.0,85.0,74.0,85.0,82.0,77.0,87.0,72.0,73.0,99.0,96.0,108.0,76.0,65.0,58.0,54.0,35.0,43.0,44.0,28.0,33.0,19.0,22.0,8.0,9.0,11.0,4.0,15.0,12.0 J82216,41.0,50.0,47.0,64.0,68.0,67.0,68.0,74.0,82.0,91.0,80.0,84.0,65.0,76.0,77.0,94.0,77.0,85.0,73.0,60.0,66.0,55.0,55.0,51.0,64.0,60.0,77.0,58.0,48.0,66.0,48.0,67.0,68.0,66.0,67.0,66.0,81.0,60.0,66.0,83.0,75.0,68.0,70.0,77.0,87.0,78.0,71.0,69.0,69.0,79.0,68.0,88.0,83.0,106.0,95.0,76.0,94.0,92.0,94.0,97.0,97.0,104.0,88.0,91.0,105.0,81.0,92.0,75.0,79.0,69.0,67.0,59.0,67.0,74.0,70.0,69.0,75.0,79.0,78.0,72.0,75.0,55.0,42.0,37.0,26.0,45.0,39.0,34.0,28.0,28.0,27.0,12.0,13.0,10.0,12.0,12.0 J82217,,,,,,,,,,,,,,,,,,,,,2.0,1.0,2.0,6.0,5.0,4.0,7.0,12.0,8.0,10.0,9.0,9.0,12.0,11.0,18.0,13.0,12.0,15.0,14.0,13.0,10.0,8.0,13.0,19.0,19.0,10.0,11.0,7.0,9.0,11.0,11.0,9.0,10.0,20.0,10.0,11.0,5.0,7.0,1.0,7.0,4.0,4.0,4.0,2.0,5.0,,3.0,1.0,3.0,,,,,,,,,,,,,,,,,,,,,,,,,,, J82218,112.0,126.0,114.0,135.0,130.0,149.0,136.0,115.0,127.0,132.0,122.0,117.0,134.0,132.0,114.0,112.0,85.0,114.0,83.0,72.0,65.0,62.0,61.0,62.0,94.0,79.0,98.0,99.0,121.0,132.0,145.0,141.0,141.0,139.0,161.0,172.0,161.0,152.0,179.0,178.0,164.0,151.0,131.0,154.0,154.0,157.0,132.0,133.0,126.0,122.0,126.0,109.0,119.0,129.0,124.0,113.0,101.0,96.0,117.0,83.0,108.0,87.0,89.0,95.0,76.0,65.0,55.0,82.0,74.0,64.0,55.0,54.0,54.0,55.0,33.0,43.0,45.0,51.0,37.0,43.0,31.0,24.0,23.0,15.0,16.0,11.0,11.0,12.0,11.0,9.0,8.0,3.0,6.0,2.0,1.0,6.0 J82605,13.0,18.0,18.0,13.0,22.0,11.0,17.0,18.0,21.0,14.0,18.0,18.0,11.0,16.0,15.0,7.0,11.0,17.0,23.0,39.0,40.0,28.0,50.0,61.0,60.0,75.0,92.0,121.0,97.0,100.0,90.0,93.0,87.0,95.0,87.0,76.0,66.0,71.0,53.0,57.0,44.0,46.0,55.0,41.0,36.0,37.0,36.0,21.0,43.0,32.0,30.0,25.0,23.0,22.0,17.0,15.0,10.0,9.0,13.0,19.0,17.0,13.0,16.0,17.0,12.0,10.0,11.0,6.0,7.0,9.0,7.0,15.0,12.0,5.0,3.0,9.0,5.0,3.0,10.0,5.0,6.0,4.0,6.0,,2.0,2.0,3.0,3.0,,1.0,1.0,2.0,1.0,,, J82622,221.0,257.0,262.0,266.0,230.0,262.0,273.0,289.0,303.0,315.0,324.0,324.0,353.0,339.0,349.0,304.0,308.0,300.0,282.0,249.0,242.0,228.0,218.0,239.0,254.0,275.0,272.0,281.0,294.0,310.0,296.0,304.0,300.0,320.0,330.0,364.0,334.0,395.0,345.0,325.0,345.0,340.0,341.0,328.0,364.0,350.0,316.0,301.0,310.0,337.0,295.0,346.0,292.0,308.0,333.0,292.0,302.0,318.0,293.0,316.0,302.0,310.0,300.0,261.0,261.0,271.0,239.0,251.0,211.0,197.0,214.0,179.0,210.0,158.0,148.0,151.0,159.0,138.0,149.0,128.0,122.0,102.0,95.0,84.0,73.0,75.0,64.0,46.0,46.0,35.0,32.0,17.0,15.0,18.0,9.0,39.0 J82625,19.0,12.0,27.0,21.0,23.0,25.0,15.0,23.0,25.0,27.0,22.0,20.0,30.0,35.0,28.0,14.0,18.0,28.0,20.0,19.0,29.0,20.0,18.0,21.0,18.0,17.0,28.0,22.0,20.0,20.0,15.0,16.0,27.0,29.0,18.0,29.0,21.0,27.0,35.0,25.0,22.0,26.0,21.0,29.0,35.0,36.0,26.0,31.0,31.0,14.0,30.0,29.0,25.0,29.0,44.0,29.0,35.0,36.0,37.0,32.0,40.0,35.0,49.0,29.0,41.0,46.0,29.0,24.0,35.0,28.0,25.0,31.0,33.0,21.0,31.0,30.0,31.0,31.0,34.0,25.0,26.0,23.0,14.0,17.0,12.0,10.0,8.0,7.0,9.0,4.0,8.0,4.0,2.0,2.0,2.0,4.0 J82639,91.0,85.0,100.0,84.0,90.0,99.0,90.0,89.0,112.0,91.0,89.0,111.0,109.0,141.0,99.0,109.0,102.0,111.0,102.0,83.0,94.0,88.0,87.0,90.0,71.0,87.0,89.0,97.0,70.0,88.0,81.0,96.0,97.0,104.0,113.0,115.0,119.0,97.0,99.0,117.0,90.0,108.0,104.0,105.0,105.0,107.0,133.0,126.0,128.0,128.0,111.0,126.0,126.0,142.0,142.0,152.0,127.0,123.0,140.0,137.0,146.0,163.0,126.0,138.0,116.0,125.0,123.0,121.0,103.0,129.0,126.0,111.0,91.0,102.0,117.0,123.0,114.0,124.0,119.0,88.0,87.0,90.0,73.0,48.0,48.0,62.0,35.0,35.0,25.0,28.0,13.0,16.0,10.0,9.0,10.0,21.0 J82640,27.0,34.0,31.0,49.0,39.0,47.0,53.0,37.0,42.0,41.0,44.0,47.0,50.0,44.0,27.0,52.0,42.0,37.0,41.0,36.0,35.0,41.0,22.0,30.0,33.0,30.0,25.0,42.0,34.0,34.0,46.0,32.0,57.0,40.0,50.0,45.0,45.0,53.0,45.0,47.0,39.0,35.0,39.0,42.0,45.0,33.0,36.0,36.0,34.0,43.0,43.0,47.0,55.0,34.0,70.0,43.0,46.0,39.0,54.0,51.0,51.0,60.0,44.0,44.0,55.0,49.0,40.0,48.0,45.0,35.0,46.0,38.0,29.0,36.0,44.0,29.0,31.0,33.0,42.0,26.0,22.0,20.0,15.0,14.0,15.0,8.0,8.0,12.0,8.0,6.0,3.0,4.0,4.0,,2.0,3.0 J82646,85.0,77.0,85.0,107.0,79.0,100.0,108.0,117.0,142.0,135.0,122.0,133.0,155.0,123.0,142.0,143.0,145.0,113.0,105.0,109.0,104.0,98.0,89.0,76.0,83.0,83.0,105.0,101.0,88.0,93.0,82.0,106.0,114.0,121.0,109.0,126.0,124.0,121.0,117.0,115.0,126.0,120.0,102.0,107.0,107.0,100.0,98.0,101.0,83.0,88.0,89.0,89.0,110.0,90.0,108.0,102.0,121.0,101.0,116.0,106.0,123.0,117.0,98.0,111.0,97.0,108.0,109.0,99.0,74.0,71.0,62.0,70.0,62.0,47.0,58.0,58.0,47.0,50.0,56.0,36.0,33.0,31.0,31.0,22.0,31.0,11.0,23.0,21.0,11.0,10.0,10.0,3.0,7.0,5.0,2.0,4.0 J82669,50.0,61.0,45.0,61.0,62.0,74.0,55.0,83.0,78.0,61.0,61.0,73.0,79.0,73.0,77.0,77.0,71.0,59.0,70.0,58.0,70.0,57.0,53.0,52.0,49.0,44.0,65.0,58.0,63.0,57.0,73.0,54.0,63.0,58.0,67.0,50.0,63.0,51.0,49.0,59.0,61.0,63.0,60.0,53.0,62.0,53.0,48.0,54.0,58.0,46.0,46.0,60.0,44.0,49.0,55.0,47.0,54.0,50.0,54.0,48.0,40.0,57.0,50.0,32.0,53.0,62.0,46.0,46.0,39.0,51.0,35.0,27.0,18.0,31.0,33.0,44.0,16.0,24.0,29.0,29.0,22.0,17.0,11.0,8.0,9.0,12.0,10.0,11.0,11.0,5.0,3.0,6.0,1.0,,1.0,4.0 J84003,19.0,11.0,23.0,18.0,19.0,25.0,31.0,21.0,32.0,41.0,41.0,40.0,43.0,54.0,40.0,38.0,34.0,37.0,39.0,36.0,39.0,35.0,42.0,30.0,42.0,32.0,31.0,41.0,43.0,32.0,27.0,40.0,44.0,46.0,46.0,31.0,35.0,46.0,36.0,41.0,45.0,33.0,41.0,39.0,44.0,42.0,44.0,46.0,40.0,38.0,42.0,36.0,43.0,59.0,59.0,66.0,60.0,77.0,68.0,88.0,77.0,80.0,83.0,59.0,67.0,84.0,71.0,60.0,73.0,56.0,55.0,58.0,60.0,65.0,50.0,68.0,85.0,65.0,86.0,54.0,47.0,53.0,47.0,28.0,29.0,22.0,15.0,22.0,9.0,15.0,12.0,11.0,8.0,6.0,,8.0 J84004,27.0,46.0,41.0,42.0,42.0,43.0,44.0,50.0,43.0,45.0,53.0,55.0,41.0,61.0,52.0,48.0,68.0,55.0,47.0,41.0,32.0,48.0,42.0,35.0,35.0,40.0,50.0,45.0,41.0,45.0,45.0,47.0,53.0,54.0,48.0,44.0,52.0,66.0,48.0,47.0,46.0,55.0,48.0,49.0,52.0,45.0,50.0,29.0,48.0,40.0,54.0,47.0,54.0,49.0,63.0,65.0,54.0,57.0,73.0,59.0,70.0,76.0,56.0,76.0,60.0,47.0,55.0,51.0,54.0,50.0,57.0,43.0,44.0,43.0,47.0,66.0,48.0,52.0,61.0,56.0,60.0,42.0,25.0,36.0,20.0,22.0,15.0,15.0,8.0,4.0,9.0,7.0,3.0,4.0,3.0,2.0 J84005,27.0,21.0,23.0,23.0,28.0,35.0,32.0,31.0,36.0,27.0,39.0,34.0,39.0,33.0,43.0,47.0,51.0,47.0,46.0,36.0,39.0,50.0,33.0,43.0,39.0,42.0,38.0,35.0,39.0,35.0,46.0,55.0,39.0,37.0,61.0,53.0,48.0,41.0,44.0,46.0,37.0,38.0,38.0,55.0,47.0,70.0,38.0,52.0,47.0,52.0,53.0,73.0,57.0,60.0,70.0,55.0,72.0,71.0,81.0,75.0,79.0,74.0,66.0,67.0,69.0,68.0,70.0,60.0,63.0,46.0,66.0,62.0,47.0,58.0,48.0,48.0,55.0,68.0,65.0,59.0,51.0,46.0,31.0,32.0,24.0,27.0,25.0,23.0,10.0,10.0,12.0,9.0,3.0,5.0,8.0,8.0 J84007,8.0,11.0,11.0,10.0,16.0,18.0,21.0,26.0,25.0,28.0,33.0,19.0,37.0,25.0,29.0,34.0,26.0,31.0,37.0,23.0,24.0,21.0,23.0,25.0,18.0,24.0,21.0,25.0,26.0,18.0,25.0,21.0,19.0,21.0,25.0,18.0,18.0,18.0,27.0,24.0,29.0,33.0,33.0,35.0,31.0,19.0,34.0,33.0,26.0,24.0,39.0,34.0,35.0,51.0,35.0,35.0,38.0,45.0,42.0,51.0,55.0,52.0,46.0,50.0,53.0,49.0,50.0,58.0,51.0,60.0,48.0,64.0,52.0,56.0,59.0,65.0,68.0,53.0,85.0,51.0,54.0,61.0,44.0,32.0,29.0,39.0,28.0,21.0,24.0,18.0,14.0,14.0,8.0,6.0,6.0,11.0 J84008,18.0,13.0,15.0,20.0,28.0,22.0,25.0,29.0,19.0,28.0,32.0,32.0,40.0,38.0,30.0,36.0,28.0,36.0,38.0,34.0,33.0,33.0,28.0,27.0,31.0,25.0,23.0,15.0,25.0,26.0,18.0,26.0,28.0,33.0,27.0,30.0,31.0,27.0,30.0,39.0,31.0,32.0,34.0,30.0,25.0,42.0,28.0,36.0,28.0,30.0,27.0,34.0,32.0,30.0,39.0,31.0,35.0,37.0,42.0,55.0,40.0,34.0,49.0,30.0,46.0,35.0,34.0,37.0,32.0,40.0,40.0,35.0,27.0,38.0,25.0,35.0,29.0,31.0,38.0,25.0,20.0,25.0,27.0,14.0,17.0,18.0,7.0,6.0,12.0,4.0,6.0,4.0,,5.0,1.0,4.0 J84011,97.0,117.0,122.0,139.0,136.0,110.0,125.0,134.0,133.0,170.0,156.0,165.0,146.0,134.0,143.0,134.0,158.0,158.0,160.0,164.0,129.0,108.0,104.0,103.0,136.0,139.0,126.0,143.0,140.0,155.0,151.0,162.0,189.0,163.0,174.0,156.0,178.0,164.0,164.0,164.0,154.0,176.0,140.0,134.0,159.0,148.0,154.0,145.0,123.0,134.0,143.0,146.0,137.0,122.0,177.0,184.0,146.0,176.0,195.0,188.0,161.0,166.0,152.0,171.0,149.0,135.0,137.0,132.0,112.0,125.0,132.0,121.0,103.0,118.0,103.0,115.0,122.0,139.0,119.0,95.0,98.0,74.0,82.0,62.0,45.0,65.0,46.0,40.0,32.0,19.0,22.0,21.0,11.0,11.0,9.0,16.0 J84012,42.0,68.0,68.0,84.0,63.0,64.0,80.0,81.0,85.0,73.0,81.0,114.0,98.0,79.0,86.0,92.0,82.0,90.0,89.0,81.0,77.0,88.0,64.0,74.0,81.0,50.0,73.0,79.0,95.0,78.0,92.0,83.0,88.0,78.0,119.0,77.0,84.0,93.0,86.0,105.0,96.0,78.0,77.0,84.0,84.0,84.0,89.0,74.0,87.0,78.0,74.0,86.0,83.0,99.0,96.0,106.0,91.0,109.0,124.0,102.0,113.0,102.0,111.0,98.0,108.0,95.0,98.0,92.0,75.0,83.0,84.0,97.0,87.0,82.0,92.0,71.0,90.0,104.0,91.0,58.0,48.0,50.0,44.0,37.0,28.0,24.0,22.0,22.0,14.0,14.0,14.0,10.0,8.0,5.0,6.0,6.0 J84013,76.0,85.0,79.0,85.0,85.0,91.0,134.0,113.0,127.0,128.0,133.0,122.0,117.0,158.0,134.0,134.0,128.0,134.0,138.0,98.0,107.0,91.0,103.0,107.0,132.0,125.0,130.0,119.0,155.0,139.0,111.0,148.0,151.0,125.0,155.0,137.0,155.0,160.0,150.0,147.0,157.0,142.0,133.0,136.0,164.0,139.0,127.0,128.0,108.0,136.0,147.0,127.0,171.0,164.0,170.0,180.0,193.0,197.0,194.0,223.0,223.0,232.0,252.0,240.0,231.0,208.0,242.0,217.0,201.0,201.0,221.0,232.0,181.0,187.0,175.0,165.0,206.0,208.0,225.0,149.0,159.0,137.0,125.0,104.0,83.0,68.0,57.0,61.0,46.0,38.0,38.0,28.0,24.0,18.0,19.0,15.0 J84015,50.0,50.0,60.0,66.0,56.0,53.0,64.0,76.0,74.0,86.0,83.0,106.0,94.0,90.0,110.0,83.0,87.0,105.0,85.0,74.0,64.0,70.0,76.0,60.0,77.0,61.0,72.0,78.0,67.0,91.0,76.0,66.0,83.0,85.0,79.0,95.0,116.0,106.0,95.0,104.0,88.0,103.0,76.0,83.0,98.0,97.0,94.0,91.0,64.0,92.0,106.0,100.0,108.0,95.0,124.0,123.0,127.0,104.0,121.0,132.0,114.0,117.0,109.0,115.0,106.0,94.0,102.0,97.0,110.0,72.0,96.0,83.0,78.0,87.0,79.0,90.0,80.0,94.0,101.0,77.0,72.0,64.0,58.0,42.0,36.0,41.0,28.0,32.0,25.0,16.0,21.0,18.0,9.0,7.0,6.0,14.0 J84016,16.0,15.0,17.0,21.0,20.0,19.0,19.0,34.0,21.0,27.0,20.0,25.0,40.0,31.0,26.0,20.0,28.0,22.0,26.0,23.0,21.0,14.0,23.0,21.0,32.0,13.0,21.0,19.0,21.0,19.0,22.0,22.0,24.0,13.0,21.0,22.0,27.0,21.0,28.0,31.0,35.0,23.0,29.0,22.0,25.0,19.0,26.0,28.0,28.0,22.0,40.0,30.0,32.0,41.0,46.0,41.0,53.0,46.0,53.0,60.0,64.0,74.0,59.0,52.0,57.0,62.0,70.0,68.0,50.0,69.0,67.0,80.0,42.0,45.0,65.0,60.0,50.0,72.0,63.0,60.0,40.0,42.0,40.0,31.0,17.0,26.0,14.0,11.0,12.0,10.0,12.0,5.0,11.0,7.0,1.0,6.0 J84017,21.0,30.0,29.0,35.0,22.0,36.0,27.0,25.0,35.0,48.0,52.0,47.0,40.0,48.0,49.0,40.0,47.0,53.0,36.0,45.0,40.0,26.0,37.0,39.0,36.0,41.0,37.0,30.0,45.0,41.0,51.0,39.0,46.0,46.0,52.0,46.0,53.0,62.0,56.0,50.0,38.0,56.0,45.0,53.0,41.0,44.0,54.0,37.0,43.0,53.0,52.0,51.0,52.0,48.0,51.0,59.0,59.0,51.0,74.0,62.0,72.0,65.0,70.0,76.0,53.0,64.0,66.0,59.0,52.0,56.0,51.0,56.0,56.0,61.0,51.0,58.0,60.0,52.0,54.0,48.0,42.0,51.0,42.0,33.0,27.0,29.0,30.0,28.0,18.0,12.0,8.0,9.0,4.0,5.0,5.0,8.0 J84019,28.0,37.0,29.0,32.0,26.0,36.0,32.0,27.0,36.0,47.0,43.0,44.0,35.0,43.0,39.0,35.0,47.0,41.0,43.0,37.0,44.0,38.0,38.0,43.0,39.0,48.0,44.0,50.0,36.0,49.0,51.0,40.0,45.0,35.0,51.0,51.0,46.0,49.0,53.0,35.0,46.0,41.0,56.0,29.0,48.0,46.0,36.0,42.0,55.0,52.0,46.0,45.0,58.0,62.0,69.0,62.0,84.0,85.0,77.0,82.0,73.0,84.0,94.0,97.0,98.0,111.0,94.0,100.0,99.0,80.0,111.0,99.0,99.0,101.0,84.0,112.0,99.0,110.0,117.0,84.0,100.0,69.0,68.0,66.0,42.0,57.0,40.0,37.0,31.0,39.0,16.0,13.0,6.0,8.0,10.0,21.0 Y01281,16.0,17.0,16.0,22.0,17.0,23.0,31.0,17.0,12.0,19.0,24.0,21.0,15.0,22.0,29.0,22.0,32.0,23.0,17.0,18.0,20.0,23.0,14.0,21.0,22.0,18.0,19.0,19.0,16.0,21.0,20.0,22.0,31.0,18.0,31.0,22.0,28.0,23.0,25.0,21.0,19.0,21.0,32.0,34.0,19.0,23.0,21.0,20.0,28.0,32.0,25.0,30.0,29.0,28.0,28.0,25.0,34.0,34.0,40.0,41.0,46.0,45.0,44.0,39.0,28.0,28.0,29.0,34.0,22.0,31.0,34.0,25.0,36.0,29.0,26.0,35.0,30.0,32.0,29.0,24.0,26.0,27.0,20.0,16.0,18.0,22.0,18.0,17.0,15.0,17.0,7.0,5.0,5.0,4.0,4.0,8.0 Y02526,,,,,,,,,1.0,,,,,,,,,,,,,,,1.0,2.0,,1.0,,,2.0,,3.0,1.0,,3.0,5.0,2.0,2.0,1.0,3.0,1.0,1.0,2.0,3.0,2.0,1.0,1.0,,2.0,,3.0,,2.0,2.0,,1.0,1.0,,3.0,,1.0,1.0,,2.0,,,,,2.0,,1.0,3.0,,,,,,,,,,,,,,,1.0,,,,,,,,, Y07014,58.0,77.0,90.0,83.0,83.0,90.0,95.0,95.0,104.0,92.0,113.0,83.0,116.0,96.0,106.0,101.0,99.0,94.0,100.0,87.0,99.0,64.0,78.0,70.0,79.0,89.0,87.0,91.0,86.0,90.0,131.0,114.0,104.0,108.0,116.0,140.0,120.0,129.0,115.0,122.0,129.0,138.0,128.0,115.0,125.0,138.0,110.0,93.0,103.0,111.0,110.0,97.0,99.0,92.0,88.0,100.0,109.0,101.0,92.0,77.0,87.0,80.0,73.0,78.0,74.0,58.0,43.0,47.0,31.0,45.0,40.0,34.0,37.0,39.0,33.0,36.0,46.0,44.0,36.0,33.0,31.0,28.0,30.0,26.0,20.0,16.0,16.0,14.0,10.0,9.0,7.0,6.0,3.0,4.0,2.0,6.0 Y07819,,,,,,,,,,,,,,,,,,,,,,1.0,,,,1.0,,,,1.0,1.0,,1.0,2.0,,,,1.0,,1.0,,2.0,,3.0,3.0,,1.0,3.0,,4.0,2.0,,,1.0,,2.0,1.0,1.0,,,,,,,2.0,,,1.0,,,,,,,1.0,,,,,,,,,,,,,,,,,,,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 E84002,23,28,34,35,34,27,37,38,40,30,33,44,55,46,46,48,57,52,48,45,47,37,57,69,60,56,50,69,65,57,67,55,40,49,62,56,71,54,64,61,69,64,48,55,64,69,59,51,49,57,55,51,52,40,34,48,44,42,48,46,56,57,52,42,28,35,46,20,35,29,32,25,19,23,20,22,26,20,22,14,15,17,9,12,3,12,10,14,3,6,5,3,2,2,5,4 E84003,91,80,76,72,99,88,85,73,72,67,60,48,75,53,54,49,50,50,65,83,120,136,177,187,213,244,235,294,212,206,215,208,163,182,164,171,159,160,173,124,149,114,125,101,87,106,95,91,82,74,82,75,58,72,65,46,50,43,60,50,52,38,43,35,41,42,42,39,38,44,28,20,32,28,24,23,22,22,18,10,11,12,10,12,6,7,10,3,1,10,2,3,4,6,,3 E84004,26,34,40,48,29,44,39,42,37,33,49,41,46,45,45,50,41,43,50,29,41,56,47,58,59,53,69,52,45,48,52,63,56,50,54,66,61,58,61,65,49,48,54,52,45,49,47,43,53,43,50,52,44,41,45,43,64,48,53,52,45,45,49,37,56,49,40,33,44,50,36,36,35,32,20,27,25,22,29,23,13,22,18,15,14,14,11,11,12,5,8,7,5,5,3,6 E84005,30,35,33,28,42,37,43,41,46,39,42,43,37,47,53,47,55,40,40,48,38,46,44,51,67,61,72,90,76,77,52,72,61,70,76,59,44,62,55,65,56,65,57,55,61,59,51,47,52,55,60,42,51,52,57,51,56,53,50,45,50,41,52,49,42,39,35,25,34,34,31,26,18,22,21,17,27,16,28,21,16,23,25,11,14,17,10,8,9,3,9,6,2,4,2,6 E84006,68,53,65,59,82,53,82,85,81,94,88,71,94,105,83,115,98,99,105,105,112,90,82,90,115,103,102,119,116,117,129,121,124,142,135,105,124,150,129,131,129,128,149,153,147,134,123,151,129,130,136,139,115,124,145,150,151,147,101,143,126,135,117,105,107,91,101,73,95,75,66,62,50,58,37,50,38,39,30,34,35,31,31,26,30,25,33,26,17,15,16,11,8,12,5,12 E84007,31,24,35,38,30,32,33,28,45,29,30,33,33,39,28,36,44,34,26,31,26,20,49,51,39,45,41,40,39,46,40,48,32,46,41,53,49,49,52,42,47,41,60,45,41,35,36,34,37,35,31,38,29,30,36,32,31,40,27,28,37,34,29,18,39,32,20,33,17,27,23,28,37,21,29,31,19,33,26,16,17,10,17,19,14,13,16,12,5,5,9,6,6,1,2,8 E84008,41,45,48,39,54,56,54,55,54,59,45,56,78,53,58,58,82,77,71,51,52,55,72,61,61,68,78,80,65,90,90,87,72,75,89,79,82,101,90,77,98,83,65,88,74,74,61,71,69,69,73,43,65,56,59,69,56,49,47,56,63,46,80,63,58,61,63,60,52,60,50,40,58,44,45,36,27,43,44,21,28,26,19,20,23,14,16,18,10,6,9,3,6,2,1,4 E84009,54,53,65,71,75,74,67,47,73,66,63,72,88,77,81,79,77,88,76,67,74,78,77,88,81,92,98,91,113,80,97,99,76,84,88,84,101,104,85,90,90,84,89,81,88,69,84,81,86,79,100,71,79,67,66,72,68,72,69,63,71,64,79,71,81,64,60,64,58,49,36,44,48,50,58,49,43,39,38,26,28,40,27,21,22,14,21,17,21,18,8,12,8,4,3,9 E84011,1,3,2,5,6,4,3,4,6,7,6,10,8,8,7,10,8,11,12,5,10,11,12,6,11,14,11,16,15,11,8,8,16,9,10,15,23,20,27,17,28,20,24,20,33,28,21,20,11,15,13,23,14,15,10,14,19,20,14,17,15,15,9,14,11,9,11,7,11,7,5,8,10,4,4,12,7,8,5,5,3,3,5,2,7,2,2,3,1,1,3,,,1,1,1 E84012,22,27,29,26,29,31,31,42,38,40,43,31,44,30,37,51,36,43,33,28,35,32,47,42,46,57,68,53,68,71,66,71,85,83,79,78,85,65,85,76,69,94,86,87,94,68,69,80,77,84,78,63,57,59,67,71,51,67,54,55,50,71,66,55,43,49,39,29,37,46,36,25,31,27,28,26,30,21,20,13,16,20,17,12,6,13,14,8,6,4,3,1,4,5,2,1 E84013,28,43,43,45,44,42,52,46,56,54,56,64,69,70,68,60,65,71,78,53,61,64,51,65,59,71,58,75,65,62,61,74,63,63,74,71,65,72,67,59,69,71,56,63,52,56,67,58,37,53,62,42,53,65,56,64,58,55,52,55,56,49,51,33,30,37,33,35,32,18,19,24,23,20,23,18,14,11,13,7,6,9,9,7,10,11,9,4,4,4,5,4,1,4,2,1 E84014,57,42,65,53,68,61,66,69,53,48,55,47,57,44,66,58,62,50,58,43,56,61,66,71,78,63,91,82,86,76,90,90,109,99,88,96,101,83,84,74,87,66,88,80,72,66,84,66,74,68,70,56,64,55,42,57,65,59,51,49,57,46,49,39,62,39,42,48,45,41,42,39,47,29,26,40,29,26,36,20,15,22,19,16,11,15,20,16,10,12,8,11,4,3,6,5 E84015,50,72,67,72,77,76,86,94,92,87,88,79,69,77,106,88,95,111,104,90,113,78,92,92,103,100,116,136,112,110,116,115,125,118,139,143,140,145,130,121,127,132,130,117,147,102,125,110,101,96,100,105,102,90,107,117,91,94,85,99,86,91,88,85,81,87,92,73,73,76,57,59,49,52,36,44,51,46,48,37,32,20,24,18,25,18,25,14,9,7,6,6,8,5,4,7 E84017,25,30,26,29,32,42,29,46,41,37,42,43,44,42,34,33,40,41,46,45,39,43,54,50,67,57,43,68,64,49,69,60,45,67,73,58,77,90,81,78,78,76,75,82,72,57,53,71,65,57,61,58,56,59,56,61,50,51,56,52,56,64,44,34,40,44,29,32,41,44,39,32,27,26,27,29,34,18,14,18,21,10,14,16,11,10,10,10,14,6,8,5,2,4,5,5 E84018,38,29,33,41,32,36,42,46,43,47,36,36,46,38,45,43,41,50,40,34,43,33,35,37,47,60,46,58,54,63,58,70,52,50,60,69,65,51,60,70,70,67,60,62,59,64,43,50,50,46,44,52,41,45,41,42,49,44,42,42,44,44,45,29,59,52,36,42,38,40,45,39,40,38,42,31,35,37,18,19,27,18,19,15,17,15,13,14,18,5,5,4,8,6,1,8 E84020,37,22,33,36,42,35,33,29,36,35,35,35,26,34,34,28,44,25,32,37,24,33,35,30,43,42,47,58,50,57,49,49,63,61,68,53,76,59,64,69,58,60,56,61,57,49,57,55,52,53,56,48,44,43,39,47,47,54,38,41,26,40,39,25,41,31,32,36,24,33,27,40,39,21,19,18,22,23,15,15,10,11,12,10,11,6,9,6,8,3,3,3,1,4,2,3 E84021,89,91,81,78,88,82,92,91,96,80,95,79,66,76,86,64,82,75,71,92,70,102,104,129,142,159,153,165,182,172,178,185,187,182,194,172,178,179,185,203,132,176,135,155,155,133,121,129,126,117,111,116,89,108,104,95,86,93,92,79,75,59,75,54,58,34,69,57,47,41,41,43,40,36,33,31,25,21,21,14,15,15,14,11,11,9,14,7,6,8,3,6,5,4,3,7 E84022,28,39,27,39,37,33,41,29,36,47,35,43,44,39,44,44,48,43,46,57,36,48,41,62,63,64,70,66,69,66,66,67,71,60,63,66,73,58,73,64,52,75,67,60,49,54,54,61,51,46,58,46,44,43,53,35,37,41,35,33,35,48,32,48,38,42,37,28,29,33,31,27,19,25,23,12,16,19,15,14,11,9,9,12,8,10,13,8,5,4,8,7,2,,4,4 E84024,95,78,101,104,113,95,123,135,112,141,135,100,171,146,156,149,147,123,111,92,96,96,91,106,107,92,105,97,95,91,112,106,99,111,101,125,133,125,113,145,150,158,165,166,158,168,164,178,164,131,166,135,132,144,164,146,120,117,130,120,129,112,94,114,115,89,109,106,102,92,101,81,105,93,96,78,78,82,97,83,79,57,35,44,39,44,36,36,28,29,19,16,14,15,13,21 E84025,84,85,84,85,77,102,95,117,109,117,93,97,94,98,109,112,109,109,104,99,89,88,88,94,101,104,121,145,118,137,154,148,153,135,170,166,144,162,142,159,139,157,151,169,164,182,139,140,152,173,154,141,155,155,163,148,148,157,129,142,128,110,104,96,98,73,81,79,67,54,60,47,50,39,40,53,54,44,39,23,35,29,27,26,14,17,12,13,13,8,10,7,3,5,7,8 E84028,27,36,35,24,25,39,30,36,31,34,34,22,44,42,41,37,40,47,43,38,45,45,46,41,42,42,54,48,52,59,53,54,57,57,50,47,58,52,56,75,63,49,39,38,58,54,35,36,40,49,36,32,35,49,56,40,48,52,54,64,52,45,43,46,40,38,18,34,30,27,27,21,12,17,12,16,6,13,8,4,10,9,6,8,8,3,8,10,9,5,10,2,1,1,, E84030,25,25,34,28,31,28,34,41,31,31,40,23,27,35,36,19,28,26,34,20,23,34,25,33,39,48,43,38,44,38,44,44,38,38,35,50,49,45,56,26,49,49,31,40,43,44,33,32,34,28,23,30,30,18,20,24,29,23,30,26,13,28,18,23,24,22,21,15,17,12,12,9,13,13,21,15,14,8,3,7,7,7,5,5,5,2,8,6,3,1,2,,2,,1,2 E84031,56,54,44,48,50,44,60,52,49,53,64,68,68,68,59,62,69,66,71,84,82,81,75,79,77,78,82,95,93,81,87,82,74,76,71,78,82,77,67,73,74,61,76,57,78,66,62,62,59,63,53,54,65,52,55,74,78,49,63,70,77,68,62,45,49,41,43,32,23,31,26,22,18,16,17,15,16,19,14,13,11,5,9,10,14,10,11,3,11,5,7,3,2,3,1,1 E84032,24,23,29,28,28,29,31,48,53,52,40,54,35,54,48,48,42,51,43,50,52,61,65,55,64,56,67,56,69,68,73,68,51,70,91,62,72,58,86,77,77,77,67,51,58,81,69,61,37,44,39,48,41,32,38,39,48,34,41,37,53,40,41,30,30,31,21,30,21,17,22,28,12,9,12,18,9,10,10,8,7,10,8,13,6,12,3,3,6,5,6,5,2,1,,4 E84033,29,36,51,46,32,44,43,54,46,58,46,68,63,59,48,53,58,60,51,50,43,49,58,56,75,55,59,65,65,76,60,52,55,58,59,73,75,71,75,73,73,60,54,56,64,50,44,41,59,57,49,41,47,26,34,34,40,30,39,29,31,23,30,26,23,18,27,17,23,17,13,12,11,16,8,6,6,12,15,8,7,12,5,8,3,7,6,4,3,4,3,1,,1,3,2 E84036,51,52,59,49,40,58,44,48,52,69,73,65,76,52,70,71,72,61,79,73,62,60,48,79,77,84,59,76,72,88,69,71,85,77,70,84,77,82,84,76,87,80,74,83,80,71,102,89,80,80,94,77,74,70,87,74,76,64,53,51,73,51,49,42,46,41,51,28,41,38,25,30,16,12,23,17,19,8,10,8,8,13,9,8,10,11,8,5,7,1,3,2,5,1,3,2 E84039,116,96,98,89,116,90,80,100,118,103,117,125,122,167,274,278,266,284,249,181,184,159,146,123,129,135,148,168,160,180,152,161,150,149,146,173,179,170,151,140,142,134,145,138,123,127,132,107,126,115,113,78,114,102,76,94,82,88,67,81,87,74,109,72,65,64,69,73,73,77,78,44,66,51,54,43,39,38,46,36,34,29,24,17,17,33,16,10,14,8,4,7,4,3,6,11 E84040,23,25,16,34,20,18,26,25,21,30,24,10,21,27,37,21,26,22,25,29,23,21,37,48,41,52,50,55,56,52,48,43,53,45,48,49,37,50,49,60,54,42,40,48,47,46,50,33,27,35,29,27,29,26,33,22,25,25,20,26,28,18,26,22,23,13,20,22,16,18,10,16,19,10,12,15,16,13,16,7,13,9,7,7,4,6,6,6,3,1,1,3,1,1,2,4 E84042,13,23,28,19,25,27,28,26,30,32,28,35,37,36,48,47,48,35,49,43,46,45,41,42,52,51,58,48,51,63,72,62,63,65,77,77,71,72,64,82,69,63,68,50,65,67,80,70,53,60,68,61,72,63,59,60,64,54,55,62,64,42,43,30,36,35,35,28,19,30,23,16,16,15,11,14,15,10,10,10,8,18,3,7,5,8,4,6,4,2,1,1,3,3,4,5 E84044,51,55,63,62,67,63,59,78,59,67,71,59,67,57,78,62,64,58,73,60,81,65,64,87,76,97,74,89,77,96,105,102,112,111,136,119,122,125,116,121,116,123,97,112,105,92,83,82,97,83,67,72,67,80,57,64,46,67,62,54,50,56,43,42,46,46,47,49,44,32,39,34,38,29,29,25,28,30,32,20,15,16,23,26,14,13,16,14,10,9,6,8,2,1,1,6 E84048,25,34,30,29,25,30,29,34,39,30,36,34,49,33,46,48,49,49,38,45,45,54,55,50,67,64,81,70,73,67,90,64,64,64,65,94,73,78,80,81,77,73,67,68,74,53,59,58,58,61,66,36,50,50,48,51,46,50,34,40,53,37,41,43,36,56,32,53,39,26,47,44,25,34,22,39,25,18,17,20,14,20,8,10,7,8,14,3,7,11,6,6,3,2,3,2 E84049,61,51,46,55,53,53,56,64,53,40,49,55,59,51,64,56,53,72,73,41,57,63,52,71,77,80,77,88,94,93,77,62,87,62,79,72,65,67,67,74,52,54,51,55,67,47,51,48,53,41,57,45,37,45,45,45,47,32,27,27,32,29,29,26,30,24,27,27,14,23,18,14,16,20,14,18,6,11,10,15,14,11,6,4,8,5,2,7,4,2,3,2,1,2,,2 E84051,35,40,34,27,34,34,37,37,37,29,36,28,42,36,33,34,34,45,38,34,33,57,35,44,43,55,55,63,67,61,66,64,72,73,70,79,72,75,62,60,75,51,53,67,61,42,45,43,46,43,43,39,44,30,46,31,37,26,33,32,35,26,35,29,45,23,27,23,28,18,24,23,20,15,20,16,11,13,11,7,7,8,5,10,4,7,12,6,5,1,2,1,2,3,2, E84053,10,12,4,14,10,10,10,13,11,26,23,21,21,13,19,34,25,19,19,16,15,18,12,12,21,15,19,20,21,18,13,14,16,26,13,29,15,16,21,28,14,20,24,33,26,28,25,21,21,24,23,24,28,20,28,23,16,26,19,28,24,23,32,27,19,21,23,25,21,14,21,12,15,23,28,19,15,20,28,17,10,20,14,7,6,8,14,7,11,2,6,3,1,1,1,2 E84057,50,57,60,54,71,69,66,58,71,82,84,84,78,85,106,84,77,87,81,83,69,71,79,112,124,83,112,92,109,70,113,94,79,96,67,71,70,80,80,76,89,75,93,92,100,107,76,91,83,81,94,87,97,86,67,86,96,66,75,74,67,61,80,67,65,70,64,52,58,45,54,35,42,34,48,51,49,44,35,51,33,31,27,21,28,23,21,23,21,12,20,12,10,5,4,15 E84058,147,166,156,210,172,191,187,191,175,170,192,182,180,196,175,179,186,202,173,147,163,154,182,142,200,203,200,220,226,243,235,231,229,266,265,303,292,301,282,276,262,258,243,275,222,249,227,189,188,204,200,167,173,164,144,147,133,130,126,119,107,102,111,105,113,100,73,63,72,66,75,59,60,44,46,58,59,42,41,36,33,35,29,18,24,20,18,21,17,18,8,8,8,6,1,4 E84059,28,23,23,25,17,19,18,23,20,35,23,27,23,25,24,31,26,30,30,27,30,28,22,29,28,27,27,37,41,35,47,65,47,40,41,39,49,46,55,52,38,44,50,50,34,51,46,41,50,33,43,38,33,31,34,30,36,26,30,33,27,25,25,31,23,17,26,16,26,11,17,19,11,17,20,20,10,14,10,12,13,9,9,5,4,7,14,5,4,5,8,1,2,3,,4 E84061,47,49,50,49,48,53,65,54,67,62,68,69,57,67,72,60,67,61,70,53,48,56,43,47,76,54,74,68,51,61,65,60,74,61,68,76,56,65,81,57,87,83,86,83,80,85,94,68,84,62,51,69,66,72,67,71,63,64,56,64,70,78,80,71,73,82,69,79,46,57,64,66,63,45,48,44,43,50,52,29,44,44,45,25,26,32,29,20,16,24,10,17,10,6,4,5 E84062,28,20,17,25,32,35,28,45,30,32,31,26,33,31,39,25,40,39,26,34,36,23,36,37,52,40,50,54,45,40,51,46,46,46,60,53,61,56,43,58,42,48,41,46,57,58,49,41,36,33,36,35,40,34,31,27,35,37,39,29,30,40,26,32,25,25,22,17,22,16,16,7,15,18,8,9,1,4,11,7,7,6,6,10,6,6,3,5,5,1,2,4,2,1,1,4 E84063,22,22,35,35,30,34,39,37,32,49,41,53,47,35,54,44,59,33,50,42,74,56,81,80,106,95,101,93,114,124,80,112,87,118,140,131,174,208,210,220,193,170,171,151,159,115,113,103,100,99,74,65,59,48,56,44,41,37,50,34,33,28,24,41,28,30,26,14,17,15,10,18,22,10,15,10,8,11,2,8,9,8,6,3,4,5,5,3,3,1,,,,2,1,1 E84066,126,135,161,146,155,169,167,145,121,150,127,119,139,146,134,133,143,172,245,514,954,1387,1795,2389,2948,3341,3269,3285,2863,2595,2248,1926,1811,1576,1416,1313,1166,1095,936,835,768,676,677,577,530,480,451,408,398,324,355,298,272,265,264,224,196,188,152,152,129,142,135,99,105,93,89,85,67,60,64,58,45,38,44,21,33,26,20,23,30,14,16,10,10,17,11,10,14,6,7,5,9,5,1,4 E84067,52,45,47,43,60,71,56,66,62,53,64,53,65,82,76,76,66,82,77,78,92,75,67,83,73,96,91,88,94,85,88,86,84,78,76,102,86,82,71,84,94,91,92,84,102,110,107,95,93,99,111,116,94,95,85,83,84,86,73,62,58,58,49,70,47,55,44,34,34,36,21,21,20,21,19,18,12,12,11,6,5,12,4,4,2,6,3,3,6,2,1,1,2,,2,2 E84068,57,65,53,63,58,78,87,97,96,94,109,97,117,132,125,96,104,89,83,72,54,80,71,75,101,112,96,92,100,99,105,98,93,121,85,110,124,109,105,129,146,134,118,172,121,152,129,142,126,99,113,85,103,95,77,97,79,82,65,98,86,88,82,67,67,61,58,70,71,76,68,70,51,51,61,64,56,56,42,35,30,32,31,37,29,31,22,24,12,20,6,16,6,7,3,9 E84069,108,91,87,125,114,128,136,147,127,117,123,119,116,125,121,123,121,135,140,117,93,116,112,104,116,136,147,155,159,164,159,150,160,162,147,164,172,174,175,164,167,160,178,152,158,148,144,137,131,134,116,130,134,104,111,118,112,96,93,88,91,98,91,73,91,75,84,82,81,70,73,66,62,58,57,47,76,49,47,34,32,45,36,29,28,28,25,12,23,18,17,4,6,8,3,15 E84070,49,40,44,31,27,40,42,39,44,38,30,41,36,36,30,35,34,33,29,23,19,24,33,21,27,27,34,41,52,41,36,44,48,42,55,46,65,54,60,51,53,51,61,55,60,51,54,53,37,42,32,35,32,26,31,24,19,24,20,32,33,34,29,31,22,31,18,21,29,27,19,29,20,29,15,15,8,18,21,9,13,11,10,11,6,11,10,5,6,5,1,2,,2,1, E84074,58,69,75,59,76,68,63,48,62,62,58,66,82,81,64,90,72,94,100,80,66,74,86,82,90,112,134,143,130,122,100,115,122,114,117,130,111,131,135,126,110,105,116,121,100,96,95,103,108,124,96,82,84,88,92,97,82,101,91,85,87,81,83,62,77,50,42,43,44,43,35,25,25,34,17,14,20,12,21,7,14,7,5,11,12,10,6,5,9,10,4,2,,3,1,6 E84075,82,92,109,96,82,96,95,72,78,66,67,65,59,58,69,57,54,53,45,62,59,78,88,126,135,175,183,197,179,194,196,158,162,157,144,152,160,166,156,121,126,125,111,122,107,93,107,80,74,77,66,74,60,48,51,45,50,40,43,51,39,35,37,34,35,24,41,21,22,30,29,29,23,20,15,13,18,11,12,12,16,12,9,7,3,5,4,5,7,4,3,1,2,1,, E84076,21,26,36,34,34,43,34,29,46,31,42,42,37,41,41,40,41,48,44,36,37,38,50,48,49,64,54,37,57,50,55,49,51,64,60,65,54,63,50,53,44,55,50,41,54,48,43,42,39,55,47,45,48,43,46,43,44,48,38,42,45,44,47,25,31,32,24,35,21,20,26,23,26,21,23,20,13,13,17,18,17,18,11,17,8,8,8,2,4,5,10,3,2,1,,1 E84078,17,20,11,26,18,17,20,18,22,27,26,27,27,15,22,26,22,20,31,22,18,39,24,39,47,38,42,42,59,59,52,56,45,49,38,56,41,42,45,54,48,41,52,50,41,39,36,33,37,28,29,35,28,29,37,20,26,22,30,27,26,41,34,32,33,24,34,22,28,29,27,19,23,19,20,24,17,17,13,14,4,13,5,5,5,7,12,5,10,2,5,2,,2,,3 E84080,27,37,24,42,32,46,38,54,41,41,44,50,54,68,55,50,59,46,51,43,39,56,48,59,50,48,46,46,44,49,55,64,57,62,65,79,57,77,60,91,88,82,97,78,88,87,70,81,95,78,68,74,43,65,70,77,48,51,54,63,44,43,35,44,40,29,32,35,33,31,26,35,12,31,25,24,19,24,15,15,14,14,15,9,8,10,13,7,2,10,3,4,2,3,2,5 E84083,17,21,19,23,30,31,20,33,39,34,27,27,29,30,26,34,41,31,38,25,27,41,39,45,31,41,44,41,40,50,47,44,45,58,51,68,56,70,62,73,40,49,73,55,59,59,59,47,48,54,39,42,35,28,47,30,41,42,34,34,37,28,30,39,28,28,41,35,25,24,29,25,29,26,18,26,22,16,15,19,6,15,10,13,11,9,4,4,6,5,7,5,1,1,3,3 E84086,15,26,17,29,24,27,25,37,30,32,42,32,27,35,42,40,40,45,43,34,38,36,23,41,36,49,44,49,56,57,60,70,75,84,67,66,68,59,56,100,56,67,58,78,60,77,75,65,78,65,70,59,60,62,74,49,57,47,57,46,46,41,33,28,43,29,29,36,30,22,21,24,20,18,21,18,18,23,10,9,8,6,18,3,4,8,5,7,3,5,6,3,2,1,1,3 E84601,46,45,52,52,41,58,57,57,47,46,46,50,32,44,51,35,34,39,43,28,37,49,42,39,53,65,56,61,64,72,76,78,72,81,89,103,116,115,119,96,107,91,89,76,83,65,59,64,65,56,46,44,58,45,45,36,41,41,40,31,33,45,40,33,21,34,35,19,33,33,26,23,22,21,14,15,18,12,26,22,12,13,9,12,13,9,11,4,5,3,10,2,4,1,2,11 E84617,43,39,43,47,38,54,53,45,44,35,41,39,44,36,44,44,43,40,32,33,46,57,35,61,61,83,87,87,85,70,95,70,96,87,81,97,106,95,81,82,80,78,61,71,64,68,62,58,54,66,51,39,55,34,42,46,34,48,32,33,34,29,25,28,28,23,18,17,13,15,23,14,15,10,10,17,9,7,7,5,11,6,5,6,4,4,6,7,1,3,2,,3,,,1 E84620,22,39,34,49,34,31,35,47,46,42,49,35,49,47,29,39,32,46,53,44,57,42,57,44,48,58,50,52,66,65,50,55,53,56,59,72,61,69,70,62,57,58,72,67,42,53,54,47,60,74,43,53,46,61,43,52,34,42,34,45,38,30,38,37,39,23,30,31,24,28,18,15,11,21,13,13,18,14,11,5,7,4,7,5,3,3,4,5,1,2,1,2,4,2,1,2 E84626,29,24,19,26,24,25,30,24,28,25,25,27,32,23,33,32,25,25,26,23,35,41,40,53,54,59,58,59,69,61,45,64,52,49,46,41,45,45,49,40,38,49,31,42,47,32,39,28,27,31,36,34,39,30,22,27,34,27,25,25,19,30,26,26,35,18,19,14,9,13,18,16,10,11,9,9,11,6,13,7,8,6,3,4,8,3,3,5,4,6,,1,1,1,,4 E84635,22,26,26,18,27,36,36,44,30,29,32,29,40,37,40,40,32,36,52,46,46,44,47,54,52,62,67,53,67,55,52,61,45,62,53,51,39,53,51,49,46,46,45,62,53,59,51,39,37,47,49,40,43,43,58,45,48,32,35,42,30,31,16,36,29,26,23,14,22,19,14,20,12,9,12,5,9,9,5,5,6,4,6,2,2,2,5,4,3,3,2,1,,,,1 E84637,23,46,32,39,50,35,50,55,41,49,43,47,44,48,45,48,43,36,41,37,39,33,32,36,23,43,35,33,29,43,36,40,47,29,45,45,36,44,29,37,49,36,51,38,54,43,36,42,40,40,44,38,36,27,28,28,39,18,29,34,27,28,20,13,25,19,19,15,9,13,7,6,7,4,8,3,5,4,1,4,4,4,3,3,5,1,2,,,1,1,,1,,,1 E84638,27,35,36,35,29,28,31,27,37,44,32,39,47,39,37,33,35,50,38,57,42,51,54,68,75,68,74,65,81,61,71,51,73,58,57,68,50,64,75,54,67,50,56,44,67,43,62,49,37,40,36,36,25,36,30,33,33,29,30,29,26,27,24,38,37,33,30,27,28,31,17,18,19,13,13,13,9,10,12,15,5,7,7,5,7,4,4,4,4,4,3,6,2,,2, E84645,53,46,57,54,53,49,51,63,63,47,52,53,67,52,48,42,37,57,49,47,35,50,44,57,57,63,67,90,90,93,112,91,97,97,115,92,97,107,94,92,87,86,96,87,80,64,62,70,76,57,66,50,55,44,54,52,48,50,40,45,49,36,44,39,42,38,34,32,31,28,25,21,13,23,24,10,9,15,8,9,17,5,4,6,4,5,11,4,8,3,,1,2,2,,1 E84646,42,60,55,66,53,63,63,82,64,66,47,65,67,55,71,55,42,42,34,25,23,32,30,35,54,49,45,59,65,73,92,94,101,104,98,108,88,115,112,114,94,86,83,99,80,66,85,89,58,49,54,45,42,32,38,34,31,31,32,19,22,27,24,25,26,25,17,15,18,9,14,12,7,12,9,6,5,7,4,9,2,1,6,2,6,8,,4,4,6,,1,3,,,1 E84647,29,26,22,28,22,27,33,25,23,24,17,24,25,18,23,17,22,25,17,16,23,24,30,44,66,57,68,68,59,67,52,55,53,66,40,50,49,33,38,40,40,37,37,33,29,28,25,25,31,17,17,20,21,14,21,16,24,17,11,19,22,22,21,13,20,18,21,20,14,17,19,16,9,10,18,17,12,16,15,17,11,5,3,5,7,4,6,7,5,5,3,1,4,,2,2 E84653,41,57,44,56,38,55,47,55,54,50,48,57,42,43,43,39,44,49,31,33,42,43,40,49,58,61,60,62,76,77,86,77,72,81,84,84,91,82,103,89,71,84,74,66,80,65,70,56,44,49,51,57,43,54,42,36,54,42,41,29,40,37,30,30,25,22,20,29,26,22,19,21,19,17,24,18,16,8,10,10,8,5,12,7,4,2,7,5,11,2,3,4,4,1,2,5 E84656,38,37,48,41,48,47,30,41,37,41,32,30,42,22,34,33,39,32,26,21,35,31,34,47,31,48,51,39,42,54,53,52,60,55,41,73,55,47,58,48,55,63,50,45,46,45,39,60,43,40,48,36,51,42,31,30,35,34,29,24,24,29,29,34,26,26,31,27,19,18,18,17,17,11,9,11,13,10,7,5,6,6,3,2,2,2,3,7,3,1,2,,4,,1, E84658,30,26,23,24,30,21,25,41,34,41,29,30,36,32,29,34,36,45,38,34,38,27,35,31,35,55,40,46,48,37,41,39,48,49,27,48,48,52,50,44,40,37,29,38,42,45,32,35,39,26,36,38,30,34,40,42,23,26,36,27,31,36,28,19,25,28,18,22,30,15,26,14,17,23,15,20,17,16,10,15,16,12,7,10,8,4,8,7,6,4,6,2,2,2,2,1 E84663,39,40,48,42,38,47,65,43,49,39,47,29,45,38,35,39,33,33,29,31,35,43,53,47,79,56,78,82,88,64,78,76,86,54,83,84,111,103,111,99,95,77,74,85,70,63,60,54,53,41,48,33,35,32,38,44,34,36,20,30,27,21,25,27,27,23,15,19,21,27,30,18,18,26,16,24,19,25,14,12,18,12,8,4,12,13,4,6,5,5,4,4,1,3,,3 E84665,29,35,38,34,48,37,61,66,53,40,53,58,52,52,54,53,63,62,62,45,67,57,54,57,70,63,84,79,74,76,89,78,83,104,92,97,96,110,91,104,93,107,109,97,107,90,85,97,74,88,77,75,77,83,74,77,64,78,56,56,62,49,43,73,47,56,64,56,50,44,36,29,26,24,29,20,20,13,16,15,20,7,11,5,11,12,7,4,6,4,2,5,6,1,1,1 E84674,10,13,10,13,21,19,18,22,27,18,17,28,18,21,25,23,27,31,18,34,25,24,30,34,25,27,35,20,30,28,49,42,55,49,45,55,74,59,66,76,66,100,78,69,80,85,65,75,75,62,89,59,61,65,51,49,45,47,35,40,41,31,37,22,27,33,29,14,23,10,18,15,17,17,10,13,14,14,16,4,7,9,5,7,7,4,3,2,4,2,5,3,,2,,1 E84676,19,12,16,17,24,26,17,28,13,33,27,18,27,24,31,27,24,46,23,29,24,35,32,27,32,26,35,30,31,32,28,28,33,36,27,25,20,29,34,23,35,30,24,29,39,32,31,28,35,24,29,35,27,43,32,31,25,31,23,25,35,33,36,20,20,16,17,18,13,6,10,20,10,8,16,10,6,5,4,8,9,3,5,4,2,3,1,2,1,,,1,,2,,1 E84678,21,26,24,17,19,27,33,27,27,27,33,33,21,30,25,23,16,20,20,23,20,26,15,24,24,36,34,31,29,27,36,37,56,38,45,56,54,48,56,54,54,66,60,63,53,52,47,28,41,34,36,26,21,33,40,28,29,28,26,25,23,28,20,34,26,16,26,19,24,25,18,22,22,12,15,15,11,14,9,13,13,5,8,3,9,10,10,3,8,8,2,4,5,1,1,4 E84680,35,46,32,47,47,44,36,39,40,37,36,30,27,18,27,22,31,22,23,19,20,20,23,37,40,40,52,57,66,46,53,66,58,71,63,82,75,72,68,59,62,65,61,60,55,50,40,45,38,38,30,22,39,21,20,24,21,26,13,16,14,21,15,14,7,19,12,14,17,11,6,7,12,7,10,10,8,12,10,11,2,2,7,8,6,6,5,5,4,3,3,1,1,1,,1 E84684,21,28,27,44,43,41,29,37,38,38,19,32,31,26,25,24,29,22,34,25,26,28,31,25,45,39,36,42,50,53,49,38,51,45,46,49,46,57,49,58,51,41,39,50,39,44,36,36,32,28,35,35,26,29,36,27,36,29,24,16,19,34,13,12,22,21,24,19,13,15,13,16,13,9,13,9,5,13,9,5,8,11,6,8,7,6,3,4,2,2,4,1,2,2,1,3 E84685,21,26,34,38,32,43,47,50,50,49,48,49,57,60,58,57,67,58,50,42,45,61,37,43,44,72,65,54,59,56,63,61,52,51,78,62,69,71,69,66,69,62,70,71,61,59,64,65,49,58,45,45,65,49,45,50,49,50,55,41,49,62,48,49,40,44,31,38,24,50,38,32,27,26,23,20,25,17,19,13,17,24,13,8,8,16,14,7,10,2,5,5,3,1,5,2 E84693,62,41,51,43,43,46,68,55,57,60,75,75,63,63,49,61,66,57,50,51,38,47,51,59,84,77,65,75,81,86,74,77,92,86,87,84,101,87,74,104,71,84,101,94,82,84,106,98,79,61,68,85,62,61,69,53,61,66,54,55,48,50,47,41,32,37,38,32,35,36,35,23,26,17,18,12,12,15,14,18,10,12,7,5,3,6,4,4,4,5,4,2,3,2,1,4 E84699,12,19,19,21,13,19,26,19,20,20,22,27,23,23,33,21,22,18,22,15,18,27,24,7,26,29,31,27,47,31,41,47,33,33,48,38,46,34,51,45,45,29,54,36,44,36,31,43,41,40,21,25,24,36,29,28,19,25,24,24,14,27,20,20,26,20,21,25,22,28,16,12,19,14,8,13,14,7,13,10,8,11,9,6,8,2,5,5,4,3,4,,2,1,,5 E84701,24,16,24,31,34,26,22,26,39,37,30,21,36,31,27,28,32,27,27,32,37,30,38,46,44,60,51,51,64,75,60,66,61,56,40,44,63,55,54,43,49,54,39,50,41,49,43,41,31,31,37,27,40,29,30,28,33,24,28,23,26,28,25,25,22,27,17,17,9,18,14,18,19,13,7,16,8,6,4,8,3,2,1,1,5,,2,4,3,,1,3,1,1,2, E84702,113,100,84,82,77,83,92,70,70,60,62,76,58,73,71,58,63,56,59,70,71,70,65,84,141,134,150,172,163,160,185,164,175,159,146,164,138,124,165,123,121,123,99,98,120,108,91,91,81,71,79,70,68,62,61,66,66,58,51,57,63,42,35,51,38,41,28,40,40,36,23,32,19,16,32,18,19,10,4,13,8,7,6,6,6,3,4,5,3,5,3,4,4,1,,2 E84704,9,16,19,16,13,15,12,9,11,14,16,16,16,24,17,23,17,16,19,18,20,25,12,15,22,20,19,26,30,18,28,25,14,18,24,13,16,21,19,22,16,18,10,15,14,9,15,15,10,10,9,9,13,16,8,12,17,15,14,17,21,16,16,13,13,12,8,11,13,12,7,17,6,12,10,6,5,3,4,4,4,3,4,4,4,,2,3,2,1,3,,,,,1 E84709,110,97,89,98,83,97,96,104,96,100,72,99,86,87,82,76,78,87,108,155,196,219,263,312,358,358,321,372,347,327,318,323,317,316,302,308,280,269,268,212,210,211,191,185,179,174,160,133,144,121,101,104,88,81,85,85,81,72,65,73,68,65,62,54,50,55,56,33,44,46,36,22,41,33,30,26,18,17,16,19,19,14,14,13,18,8,8,4,3,6,8,4,2,2,4,7 E85001,42,33,46,39,43,47,55,54,51,58,52,45,51,57,55,46,53,49,50,46,39,32,50,47,55,52,61,69,54,77,84,73,69,76,69,73,87,87,80,89,66,102,103,79,83,83,86,74,70,62,61,73,60,55,64,47,49,46,65,51,40,54,53,47,55,44,34,41,38,29,23,23,26,33,21,30,25,20,19,20,25,15,14,15,13,13,10,16,6,13,9,4,7,1,3,3 E85003,44,47,47,49,67,53,72,67,72,75,69,75,84,56,74,87,68,69,69,68,74,86,88,130,128,169,172,150,179,204,205,189,245,227,222,214,267,236,226,225,235,270,259,246,212,246,220,208,186,170,154,146,163,121,113,105,101,109,115,98,89,91,108,72,71,63,63,60,52,45,47,54,44,40,40,38,35,31,33,23,19,20,19,9,13,19,4,6,2,6,5,2,6,3,2,2 E85004,31,34,39,33,34,27,41,38,39,44,42,53,47,61,55,45,52,65,48,45,46,45,51,38,40,52,56,57,60,58,59,51,63,65,60,65,79,66,72,60,72,61,80,58,61,57,58,65,58,54,45,59,57,66,48,51,49,45,46,42,37,38,27,33,32,34,22,22,28,24,25,21,24,26,17,10,20,18,21,10,8,18,5,8,9,11,7,5,4,5,1,4,2,2,2,4 E85005,18,22,18,25,21,25,19,19,21,22,23,24,28,29,29,32,36,34,34,35,27,35,36,49,44,59,72,64,69,68,61,64,60,61,71,55,74,66,69,47,43,53,50,71,41,37,36,35,34,30,41,30,33,30,30,27,21,32,36,26,24,28,30,23,28,20,15,17,27,13,13,18,16,11,17,7,9,8,8,6,9,8,1,3,4,5,2,2,2,2,1,1,2,,,1 E85006,26,24,33,33,22,38,29,31,41,18,30,32,30,35,40,42,34,30,38,47,35,44,45,49,50,52,38,48,46,51,37,39,42,49,47,35,47,45,53,41,45,31,44,36,33,39,33,34,38,42,31,37,31,30,35,26,31,24,35,36,28,23,25,33,23,20,20,17,20,16,16,14,6,10,8,4,7,3,5,2,5,3,3,1,3,3,1,3,4,,,1,3,,1, E85007,55,67,44,73,51,67,59,76,59,74,70,76,92,70,95,72,81,86,84,61,77,78,79,75,75,63,77,88,90,98,91,90,101,82,94,113,100,114,101,112,98,102,99,121,108,90,113,93,101,108,103,103,97,112,99,96,73,107,84,84,98,85,70,88,72,55,71,64,62,60,53,47,42,43,37,34,41,40,31,26,22,31,13,16,13,13,15,12,10,9,9,6,13,2,5,4 E85008,20,25,23,23,26,26,22,24,25,32,29,22,33,38,26,36,49,34,31,33,25,28,35,43,46,54,53,52,65,59,59,52,55,53,44,58,73,46,60,67,59,52,65,55,48,57,46,47,55,30,46,56,44,56,42,52,37,42,39,44,37,37,36,36,37,23,25,35,29,33,23,29,21,22,19,18,25,20,19,8,19,24,10,9,4,9,11,4,6,5,4,5,3,,,4 E85012,17,30,24,23,25,28,37,24,22,29,32,34,21,34,34,44,32,38,37,28,39,39,30,36,41,44,38,41,41,48,41,40,32,37,51,43,37,47,51,44,41,37,51,45,38,40,35,43,39,46,28,34,36,25,36,39,26,41,28,31,38,28,29,29,27,24,25,31,29,31,23,22,29,15,21,17,16,18,11,8,14,13,11,12,10,5,11,8,5,9,8,4,1,5,3,6 E85013,39,30,51,31,34,38,33,32,47,36,34,43,37,45,38,35,36,41,34,39,33,22,30,31,36,48,37,53,49,45,54,52,65,76,60,50,66,58,72,53,65,71,57,63,56,52,49,50,37,55,46,35,30,37,33,31,33,26,30,35,16,19,33,20,27,18,18,19,12,19,24,20,8,11,19,3,16,12,11,4,6,4,3,3,2,2,1,1,3,,,1,2,,1, E85014,25,31,33,23,35,45,38,51,52,70,52,51,53,56,66,71,58,60,43,39,35,27,29,32,41,50,31,48,51,62,42,62,53,54,65,77,74,71,64,64,72,87,84,86,88,89,87,84,75,89,83,71,58,70,70,73,59,60,55,73,59,62,49,45,35,43,46,38,44,34,32,37,28,33,26,25,25,36,36,17,17,13,18,12,8,8,5,8,6,9,5,5,3,2,,2 E85015,57,42,47,55,42,57,52,46,57,60,41,47,44,57,36,53,41,45,46,46,48,53,74,56,75,94,89,104,99,90,95,87,89,107,94,92,109,107,93,101,94,96,99,95,98,90,82,75,74,73,72,65,67,51,50,67,65,51,35,49,37,46,36,46,44,37,37,41,40,40,37,30,38,28,37,30,31,25,19,10,20,20,15,17,10,14,10,3,12,9,6,2,9,9,3,9 E85016,43,35,55,35,47,36,44,48,55,40,45,65,46,69,45,53,49,44,61,56,57,64,62,75,77,103,104,112,106,108,112,125,104,114,103,101,99,101,100,99,88,110,100,100,99,100,86,99,79,88,87,87,86,77,94,88,78,86,64,64,66,69,70,48,57,43,33,44,34,32,34,43,22,25,23,21,27,33,22,20,25,19,13,16,8,8,10,7,8,6,5,4,6,4,1,7 E85019,28,45,29,39,49,48,39,35,38,34,55,45,47,54,62,61,61,44,49,62,47,33,41,61,69,62,53,66,57,61,71,87,71,75,92,78,84,99,76,91,78,69,92,66,76,84,91,78,62,65,61,66,49,62,66,52,63,55,40,40,46,52,41,42,38,47,33,29,26,26,23,34,19,29,20,21,16,20,22,18,12,21,18,7,8,17,15,6,7,2,7,1,3,1,2,5 E85020,63,69,57,63,61,59,81,63,77,90,82,89,73,74,77,67,77,59,68,62,51,59,62,71,64,78,85,105,90,124,101,113,135,148,177,156,159,169,176,181,178,204,204,212,204,170,187,167,165,126,123,120,125,109,103,83,93,83,93,93,88,65,54,72,67,46,56,46,42,46,37,34,29,41,37,36,36,36,34,27,17,27,18,16,19,18,19,8,7,6,4,5,5,9,1,10 E85021,37,30,39,39,38,35,44,39,48,34,64,39,40,48,54,56,38,54,54,47,63,45,64,61,74,62,80,74,64,65,59,65,54,56,64,60,68,71,47,50,50,54,53,56,55,46,52,40,36,43,52,59,28,38,53,34,37,43,44,60,40,48,39,43,33,31,27,30,21,24,13,12,10,15,13,18,15,11,14,7,6,6,6,8,6,4,9,6,3,5,3,2,,1,1,2 E85023,16,12,15,9,14,11,10,15,16,11,17,12,18,19,14,10,20,16,16,10,17,19,19,22,30,35,28,34,21,35,30,21,28,21,25,36,33,22,21,32,25,20,34,16,29,19,27,15,19,20,18,16,26,28,21,11,16,24,17,13,20,18,21,14,16,8,14,13,11,14,11,11,9,5,8,10,8,10,5,7,9,8,8,5,5,4,4,6,3,2,1,1,2,1,,2 E85024,16,28,21,25,30,29,29,28,25,35,33,33,31,40,38,32,37,35,39,42,49,43,28,28,40,33,38,37,51,43,40,39,37,49,46,45,38,37,48,34,37,29,41,42,36,37,37,43,32,32,23,26,33,37,33,36,44,40,37,30,25,32,32,36,29,26,24,15,22,19,24,12,14,14,18,17,25,15,11,8,6,6,8,10,9,10,7,11,1,4,2,4,3,3,1,2 E85025,58,57,60,80,49,52,51,43,54,43,46,39,36,39,38,29,27,30,28,36,30,34,41,57,71,113,146,156,187,198,197,192,167,189,191,182,156,146,133,159,117,123,119,97,113,82,88,72,57,66,59,57,58,50,36,42,39,39,50,28,44,24,38,33,26,34,26,29,10,24,14,13,13,11,13,13,23,19,14,13,7,11,9,11,4,6,5,3,5,3,3,4,2,2,1,8 E85026,61,72,67,75,60,65,76,81,86,97,83,68,67,72,67,73,69,88,67,68,70,63,85,108,100,109,119,113,123,153,127,142,151,163,154,159,160,161,143,149,174,161,162,154,169,156,165,146,135,134,134,97,100,109,103,90,90,95,111,79,75,76,67,62,55,58,51,64,45,41,50,41,30,44,40,38,34,38,40,29,39,33,25,25,23,13,18,11,12,11,10,5,5,2,3,9 E85028,23,38,29,32,33,29,39,52,52,49,46,58,51,43,59,59,46,61,45,45,47,48,56,60,55,73,62,88,80,77,74,68,74,72,91,84,79,91,79,100,85,96,86,82,92,114,108,72,87,88,91,94,87,73,61,70,58,68,62,70,56,52,56,56,39,43,31,33,29,22,35,23,28,25,30,18,21,19,19,13,11,16,23,14,14,7,12,7,3,6,3,2,4,2,2,2 E85029,55,44,40,33,35,32,35,40,47,38,52,62,48,50,62,67,71,52,53,46,64,68,75,106,118,118,176,156,176,167,147,149,138,183,165,173,175,164,150,188,158,202,191,170,193,164,155,165,138,129,124,101,112,87,96,79,109,89,81,76,76,80,61,66,61,69,45,37,44,47,31,46,23,16,25,31,37,33,22,14,26,15,14,22,12,13,8,11,14,9,5,3,1,1,1,2 E85030,24,35,27,31,26,24,33,21,36,36,35,25,27,36,37,42,39,42,32,28,35,32,28,31,28,28,42,38,44,27,44,46,60,56,57,65,48,46,67,65,59,81,62,66,59,68,58,66,49,67,66,44,71,43,61,51,47,41,63,55,43,44,46,36,31,23,19,26,34,21,24,30,26,21,15,21,18,22,22,13,16,10,14,12,8,7,2,7,2,8,3,,,,1,1 E85032,12,15,13,18,15,15,12,15,21,15,13,17,29,29,32,24,14,26,30,20,20,16,28,17,23,32,29,35,41,30,39,35,43,45,45,39,31,38,44,35,46,38,52,37,47,50,49,48,42,42,34,26,43,43,43,29,39,29,35,28,33,33,34,28,20,24,23,22,19,14,15,14,17,13,24,12,17,8,15,7,13,4,17,5,6,7,6,6,3,1,3,3,3,3,1,6 E85033,36,33,29,50,37,45,37,44,50,45,35,40,37,44,38,45,51,54,46,56,58,67,65,78,110,118,135,118,151,125,134,130,132,150,138,141,141,132,139,128,129,153,149,134,120,115,82,85,67,86,78,78,64,72,53,67,68,64,66,53,73,61,58,45,49,46,39,41,44,28,26,34,25,29,25,26,21,16,22,16,16,18,6,14,7,10,7,9,6,3,3,2,2,2,4,6 E85034,13,27,18,13,23,30,27,39,25,27,23,33,29,25,29,37,27,32,27,29,29,23,28,35,26,26,40,37,46,44,38,43,64,57,57,44,46,66,71,63,71,55,49,53,57,60,64,38,37,50,49,44,33,49,38,37,35,34,35,46,33,36,34,37,26,26,22,23,27,14,20,18,21,11,19,20,12,17,18,12,10,10,16,18,8,10,7,14,6,5,5,3,3,1,,4 E85035,32,39,44,41,44,45,52,46,48,54,32,36,43,53,38,46,49,45,47,41,47,58,76,75,81,91,82,89,55,61,53,56,61,61,68,80,85,84,64,72,81,68,65,67,74,72,67,49,61,44,42,55,57,43,59,38,42,46,33,31,54,34,37,36,22,24,24,19,24,28,23,18,20,23,20,23,14,14,20,17,11,8,9,5,8,2,4,7,1,6,,2,3,1,, E85038,19,23,24,16,18,20,23,14,28,34,31,23,30,34,33,24,26,25,23,31,17,21,17,33,32,34,39,54,62,42,49,48,39,52,51,47,56,55,54,59,57,57,61,68,65,62,44,46,51,44,39,26,28,32,32,24,34,33,27,26,27,22,28,18,21,18,13,13,23,21,16,9,13,11,12,14,7,21,12,13,17,10,8,5,4,5,5,7,5,9,1,5,4,5,2,4 E85040,15,22,23,24,27,26,41,25,33,26,37,44,44,47,39,43,48,43,60,46,35,26,33,33,31,37,51,35,41,46,61,43,46,56,53,62,60,43,71,62,68,60,58,65,64,71,62,60,57,55,71,57,81,65,72,73,55,59,55,58,70,61,60,55,50,39,40,32,41,40,37,29,35,27,29,30,35,40,41,33,33,29,26,19,18,15,5,17,11,14,8,5,6,1,4,6 E85041,24,37,37,25,27,25,27,27,34,42,31,36,39,50,54,49,50,50,39,37,37,32,25,33,35,35,54,37,28,51,31,42,54,51,59,53,44,62,68,52,49,65,56,51,81,57,56,47,64,76,66,54,44,63,46,57,42,39,46,48,38,45,31,35,30,26,23,20,21,23,22,13,23,14,21,24,13,10,16,8,7,8,9,13,4,5,6,4,1,3,4,5,2,1,1,1 E85042,39,37,30,37,35,31,27,26,17,34,23,36,25,34,29,32,30,41,29,39,32,32,44,44,52,57,70,78,83,71,66,92,84,99,93,73,91,89,72,91,81,72,67,79,62,60,55,58,51,60,50,40,39,46,53,50,47,42,43,45,37,31,28,29,27,32,35,17,19,10,11,19,21,14,15,19,7,15,13,8,5,5,7,4,8,5,5,7,3,6,,,2,1,,7 E85045,5,7,8,15,14,12,13,10,19,17,20,22,17,19,26,19,23,27,19,20,21,12,23,18,20,30,20,28,27,16,24,17,28,34,18,32,23,25,21,19,27,32,20,25,42,24,30,23,20,26,26,29,18,27,28,27,25,24,19,28,26,26,23,18,24,18,23,13,19,25,9,16,16,14,17,9,14,22,20,11,8,10,11,9,4,2,8,2,4,2,7,3,3,,,4 E85046,31,29,27,23,27,31,29,45,35,53,39,35,38,44,44,55,49,51,51,46,45,26,34,37,41,46,36,54,44,34,47,57,35,46,37,50,52,61,50,46,60,58,46,52,55,62,47,44,53,43,45,40,43,35,48,33,29,36,41,30,35,28,33,38,33,29,31,31,18,23,14,13,11,14,26,16,15,11,9,10,9,12,10,7,12,7,12,5,3,6,3,1,2,2,2,1 E85048,49,49,46,40,43,50,50,50,43,35,45,47,53,40,45,51,53,44,39,37,45,33,40,44,53,51,60,80,82,76,89,103,121,114,94,111,89,89,88,75,67,70,71,60,66,45,52,38,33,38,53,39,35,37,45,46,50,47,35,27,41,31,31,32,24,17,23,14,20,18,16,17,11,16,8,12,8,6,11,10,5,10,9,4,5,4,1,2,2,1,1,,1,,,1 E85049,50,47,47,44,35,39,40,44,36,48,57,52,41,47,69,50,53,57,62,70,73,111,125,134,151,154,124,125,92,110,103,90,83,87,83,89,100,84,95,81,67,80,77,74,86,74,58,49,69,54,48,54,79,51,56,45,48,48,48,42,41,31,28,34,40,34,30,25,29,33,18,17,22,19,19,19,12,17,10,12,9,15,6,4,5,4,4,10,5,5,1,1,2,1,4,3 E85050,14,28,25,33,39,34,35,41,38,49,35,58,36,50,51,58,40,58,48,38,56,42,49,46,40,61,62,52,70,53,66,65,97,60,69,63,71,80,68,83,71,77,101,73,100,73,68,73,77,70,77,46,70,61,71,54,58,45,67,59,53,53,44,46,22,28,31,28,33,35,25,31,24,19,10,26,22,15,16,10,14,12,17,7,7,7,7,9,5,4,1,4,2,3,6,3 E85051,17,21,24,10,12,17,19,26,26,26,23,33,33,36,46,32,47,42,43,34,52,32,43,29,43,40,38,33,36,32,33,37,43,47,40,40,41,40,46,35,42,40,46,41,35,43,50,32,44,48,37,33,33,29,35,30,41,33,34,36,29,35,30,27,33,24,17,20,24,20,22,15,9,10,16,21,11,15,14,9,16,13,11,9,11,7,5,4,7,3,2,2,2,5,1,4 E85052,47,45,35,47,46,35,47,46,46,46,45,39,46,44,47,37,46,53,52,53,58,60,77,63,79,69,79,77,66,85,76,77,76,73,73,70,72,64,64,72,75,66,67,79,68,67,65,61,64,59,48,53,53,49,60,50,60,43,36,33,37,39,24,33,35,51,34,18,20,22,24,20,23,18,20,14,10,13,13,19,13,14,8,7,9,6,8,4,7,5,5,4,2,4,1, E85053,13,15,13,16,16,17,21,17,23,21,20,30,32,23,19,26,22,25,17,20,27,22,27,11,20,22,19,17,30,30,21,24,29,29,24,26,29,27,32,32,26,27,29,24,23,22,23,26,25,25,19,28,29,16,30,15,16,12,15,25,19,16,22,28,22,18,23,17,11,11,6,18,9,8,6,12,8,11,13,5,6,2,2,4,4,4,2,3,1,1,1,3,1,3,,2 E85054,42,45,55,49,48,44,57,67,60,50,76,70,59,79,89,78,73,71,68,65,66,64,64,75,79,81,85,100,90,94,107,75,95,83,106,87,97,118,104,126,115,126,105,104,138,122,109,117,108,107,82,91,79,75,83,82,86,61,76,66,59,66,65,61,60,58,54,46,31,36,45,35,34,36,32,34,31,22,30,21,18,15,11,21,14,13,17,16,9,9,10,,2,2,1,3 E85055,28,27,20,33,25,48,33,45,40,43,43,45,43,40,47,58,38,47,48,56,48,59,59,53,74,70,93,70,105,106,98,123,146,146,154,142,153,146,154,161,175,168,139,129,136,143,120,105,97,98,105,77,76,85,75,80,72,81,91,68,82,69,67,59,60,57,60,35,38,48,30,26,27,37,31,34,21,29,24,16,17,11,9,14,9,11,11,3,5,5,5,4,3,6,1, E85056,25,41,28,43,48,44,37,42,47,48,49,58,45,51,61,65,61,53,51,39,45,35,39,49,50,42,50,41,45,48,54,50,65,62,63,68,52,83,60,67,76,66,73,67,81,65,72,68,58,59,42,64,50,43,43,45,47,46,55,39,53,44,37,35,35,38,30,31,27,24,28,19,15,16,15,20,16,12,28,16,10,13,4,16,6,13,4,4,3,4,2,1,1,1,1,3 E85057,30,31,41,46,31,53,41,64,54,51,81,69,73,72,67,85,67,92,68,49,53,44,51,56,54,67,63,41,53,53,53,70,71,61,60,57,63,66,70,86,72,77,68,81,98,97,80,81,79,81,72,85,74,98,84,75,60,78,69,78,68,56,55,57,74,45,50,49,64,53,54,41,41,41,43,40,41,40,43,27,28,32,29,21,11,14,16,14,13,14,10,5,4,4,3,5 E85058,29,19,34,31,45,45,45,49,52,46,40,40,46,43,61,33,57,54,57,35,44,40,40,52,47,47,49,48,48,46,45,59,44,53,62,60,55,70,63,63,71,62,71,53,54,80,61,72,57,57,53,61,49,64,38,44,50,60,42,39,44,51,29,39,42,28,42,26,30,26,35,31,29,21,28,19,19,23,17,20,16,15,10,10,7,16,8,10,7,6,7,5,2,4,2,2 E85059,36,29,26,37,34,45,33,49,60,48,43,46,72,42,56,60,47,56,63,52,51,52,47,55,57,59,51,60,49,55,53,55,72,51,61,81,92,87,109,126,116,97,100,106,97,99,80,91,67,69,71,62,81,59,59,62,48,65,35,36,44,48,41,45,36,48,49,35,41,35,36,31,25,32,33,15,22,22,24,20,11,15,18,10,6,13,5,9,3,2,4,5,2,3,3,4 E85060,30,24,23,31,35,29,38,36,39,38,41,34,44,48,39,35,44,47,39,45,31,41,28,52,53,35,49,61,55,49,48,54,52,48,54,46,58,60,54,60,52,70,58,66,62,63,53,49,40,52,62,47,37,42,44,33,50,53,31,41,36,45,25,36,35,28,43,27,27,21,25,29,23,17,14,15,12,15,16,20,11,12,6,7,7,12,2,4,2,2,3,2,6,1,2,5 E85061,45,49,40,41,30,37,36,43,31,29,36,39,29,32,32,38,40,36,35,44,40,50,61,65,72,88,77,68,90,84,73,78,58,68,49,61,75,69,78,80,60,48,56,54,56,52,55,43,43,46,57,35,42,38,40,33,41,44,28,47,42,27,35,26,21,22,19,29,22,15,21,21,19,14,17,15,13,8,11,8,3,9,11,12,7,2,2,3,6,3,3,3,3,4,2,2 E85062,78,99,89,88,80,96,98,95,72,86,95,88,100,111,84,98,96,83,71,69,59,69,83,65,110,113,124,177,184,158,171,164,170,195,198,251,269,274,245,280,232,259,238,230,209,133,90,88,87,99,80,82,61,79,51,60,47,38,36,51,36,33,31,31,29,20,18,21,12,9,19,17,16,12,22,15,15,9,8,10,6,7,4,5,4,8,3,2,3,4,4,4,,2,,5 E85064,38,44,31,35,28,46,53,38,44,50,45,42,49,54,41,49,52,56,54,47,53,51,39,60,60,53,66,46,60,56,57,52,65,50,48,53,70,41,48,44,49,46,53,38,54,52,40,49,41,53,49,38,40,34,44,40,42,52,38,47,36,40,28,44,46,26,28,23,18,23,18,20,12,12,14,16,11,15,14,16,15,9,7,5,9,3,6,2,7,3,1,1,,,1,2 E85066,24,24,16,17,13,22,24,24,14,28,28,25,38,14,19,23,21,21,12,13,21,19,22,30,21,21,21,17,26,21,36,28,29,37,29,30,29,35,38,38,40,35,42,47,29,50,44,35,22,28,32,29,41,22,27,25,27,22,28,26,33,25,21,15,20,21,14,14,15,18,14,13,15,16,11,12,20,14,20,9,12,9,9,9,3,7,6,3,4,1,1,1,2,,, E85069,27,34,35,41,23,34,29,38,30,37,36,42,31,29,43,33,42,36,38,33,24,31,35,34,39,44,40,38,44,40,54,47,35,53,49,39,60,58,44,53,52,50,58,43,55,52,44,40,42,53,27,48,38,37,26,33,29,26,25,35,41,30,34,28,24,22,18,19,21,16,11,14,13,18,9,7,10,9,9,8,9,10,5,7,5,14,4,5,7,5,2,1,4,,,3 E85071,13,9,9,10,9,14,7,9,12,7,10,6,10,11,7,7,11,7,7,12,10,15,17,6,17,16,24,26,28,25,19,18,21,19,19,14,13,10,21,17,11,15,15,14,16,15,19,18,12,8,14,10,14,19,12,12,15,11,19,21,11,14,15,9,16,15,13,8,8,13,3,5,6,4,9,11,10,9,6,4,6,7,8,6,3,3,2,2,1,,,1,1,1,,2 E85074,31,19,16,26,14,15,11,20,16,26,25,20,15,15,23,18,20,19,19,18,19,38,28,41,55,67,62,73,88,101,71,70,81,85,98,70,82,67,68,63,55,64,58,75,61,63,60,56,43,47,48,37,34,49,43,29,26,26,35,29,38,28,20,25,23,20,19,18,19,18,13,10,9,10,12,11,7,13,12,5,6,10,4,7,4,9,4,4,,,5,1,3,2,1,3 E85075,22,26,29,23,25,22,30,19,19,22,21,28,29,31,38,27,28,30,26,19,15,13,14,16,19,14,24,24,25,28,40,24,40,34,43,45,44,39,42,57,53,49,58,49,52,59,53,53,50,47,47,47,38,36,33,25,34,29,31,23,25,22,32,21,20,11,17,15,18,11,15,18,10,10,8,12,9,8,5,8,3,5,4,5,4,1,4,4,4,3,1,,1,,,1 E85077,14,8,10,10,13,13,14,14,11,7,12,12,11,9,16,9,12,14,16,9,14,23,12,27,27,43,34,33,40,33,36,33,55,58,42,46,60,43,62,62,43,53,51,48,48,37,38,35,24,30,26,22,23,20,20,20,19,32,31,33,20,27,16,13,15,24,20,12,9,18,10,12,15,8,6,7,4,7,6,3,3,7,10,4,7,6,4,,1,7,4,,3,1,2,4 E85083,31,22,32,34,30,46,30,44,58,33,56,47,52,55,41,52,52,53,59,57,41,55,46,49,43,50,43,40,48,39,42,32,39,39,59,52,40,60,58,62,46,50,52,57,61,65,70,71,68,64,49,50,63,52,51,47,37,44,34,46,32,36,38,41,36,32,27,24,18,24,19,13,15,14,13,16,15,7,8,7,9,5,8,11,4,6,6,7,4,1,5,3,3,1,2, E85088,36,31,44,48,45,54,41,44,47,35,41,38,50,38,37,63,37,49,41,38,30,39,43,34,43,40,39,54,43,45,52,46,45,48,54,58,53,60,61,62,69,64,51,64,51,55,56,51,39,51,47,35,46,35,50,43,46,33,36,31,48,41,32,20,26,19,28,21,19,24,24,22,21,18,19,9,8,21,11,13,10,7,11,7,11,9,6,6,5,2,3,3,3,1,1,3 E85090,36,34,30,29,31,22,28,29,29,24,25,15,23,30,20,22,18,26,12,35,51,55,78,100,91,100,99,88,86,62,83,76,69,74,69,64,68,73,65,71,64,50,60,62,79,70,46,47,61,38,47,36,40,26,31,26,25,30,23,29,30,26,21,18,28,22,31,15,14,25,21,14,15,15,14,14,19,10,10,6,5,5,7,5,4,5,4,,4,4,2,1,2,,1,4 E85091,16,14,13,13,14,30,12,18,12,23,22,14,16,20,20,27,19,22,18,25,15,31,27,23,31,33,30,36,26,41,31,35,37,38,33,31,34,30,32,27,26,38,28,30,40,38,24,28,33,41,26,16,25,12,26,38,17,28,26,19,27,12,27,26,13,12,11,10,9,14,10,11,9,11,9,6,14,10,6,8,2,4,1,5,1,2,4,3,2,4,,1,1,,,1 E85096,17,18,28,15,18,31,21,22,28,27,27,34,33,49,33,23,27,50,40,33,36,38,40,41,46,68,56,52,56,56,46,47,46,71,78,77,93,134,118,124,125,100,101,80,83,75,68,76,51,56,66,44,49,42,49,46,32,27,26,21,32,35,27,25,34,28,28,33,21,20,31,17,18,11,25,17,8,7,10,6,2,8,7,8,10,8,3,3,2,2,,3,2,2,,2 E85098,40,53,42,43,42,42,56,51,54,43,43,49,43,47,35,41,45,44,41,35,41,37,39,39,36,60,49,52,70,48,54,51,62,56,54,62,66,68,56,60,64,71,65,51,59,63,56,47,45,39,44,43,41,39,34,45,36,35,32,31,37,32,23,21,27,12,14,18,19,21,17,19,15,11,12,9,8,3,11,3,7,7,5,4,5,7,5,3,1,2,,1,,1,,2 E85099,51,56,48,54,41,40,32,24,28,41,31,24,26,25,32,23,26,24,27,19,18,22,30,44,55,50,60,52,80,74,73,74,84,87,64,79,81,84,72,67,73,54,75,77,60,60,55,48,55,38,37,42,30,30,28,31,34,30,26,23,34,31,31,20,18,17,18,11,11,13,7,12,10,13,11,19,13,5,4,9,6,1,6,3,4,4,3,2,3,3,1,3,3,1,1,1 E85103,10,10,5,8,6,13,13,8,11,10,12,14,13,10,10,16,15,16,16,21,18,22,25,31,31,36,27,37,35,33,22,25,31,35,19,32,30,39,45,29,33,33,23,26,27,31,40,35,24,26,22,27,30,26,23,32,28,23,18,26,21,20,24,23,25,19,14,15,20,11,14,16,15,24,16,17,11,8,9,4,13,6,7,6,2,4,11,1,6,1,2,,3,,1,1 E85107,42,37,34,54,40,60,55,44,53,52,36,41,59,51,48,54,41,37,49,38,39,36,37,29,48,47,49,59,44,69,47,72,57,71,79,68,71,70,62,83,84,60,78,75,73,73,69,62,56,44,54,42,51,42,49,42,43,52,43,41,38,39,32,31,23,19,29,18,29,17,25,13,14,20,20,20,9,11,13,7,5,12,9,9,4,4,10,3,2,2,3,1,1,,2,2 E85108,20,25,31,21,27,26,24,21,28,31,22,35,23,35,40,34,32,26,41,23,36,35,34,35,34,34,34,34,42,45,51,40,32,26,36,40,49,38,39,45,50,48,51,36,45,51,36,45,48,41,34,24,30,26,29,26,39,32,32,35,31,29,33,28,27,26,27,21,23,20,12,18,13,13,20,15,16,10,14,8,6,10,12,6,4,5,6,3,2,5,2,,,2,,2 E85109,23,26,19,19,24,31,17,22,16,29,24,28,25,27,24,22,25,25,17,28,18,34,27,29,30,26,44,45,42,51,43,44,45,45,59,52,58,54,50,41,45,52,65,41,54,41,36,39,46,27,42,28,32,28,20,20,24,19,22,22,24,19,18,21,14,24,7,9,9,14,12,9,12,6,13,7,6,7,6,2,2,5,6,3,5,6,6,4,2,3,2,4,,2,, E85111,11,26,30,17,32,37,29,30,38,32,29,41,37,27,32,42,30,34,36,23,31,34,30,29,32,35,42,43,36,40,49,51,45,49,44,40,42,49,53,63,35,59,60,65,54,66,48,58,57,53,55,43,42,34,47,43,39,41,37,40,42,36,25,23,40,23,18,26,18,12,13,14,15,17,13,11,12,16,12,10,12,10,4,7,9,5,1,3,3,5,1,2,2,,2,6 E85112,46,49,51,40,38,59,45,36,36,36,49,30,37,45,36,49,42,45,41,33,51,39,50,71,68,73,75,95,100,83,100,100,107,105,110,113,100,102,109,111,119,88,87,96,78,72,65,53,67,62,61,50,41,49,62,55,43,36,36,40,32,39,28,31,38,29,32,28,24,19,17,18,18,23,4,18,12,25,12,8,7,9,11,6,5,7,7,3,3,4,3,1,3,,,3 E85113,34,33,28,47,42,30,50,38,54,42,61,47,48,45,46,50,36,49,40,36,35,41,36,47,50,51,53,43,48,55,43,47,36,66,62,41,59,71,80,66,57,70,64,69,58,61,76,58,57,64,47,46,54,50,47,50,39,44,49,41,42,50,40,35,35,32,40,21,33,28,33,37,27,26,24,21,28,25,24,7,13,8,5,8,11,7,6,5,3,7,3,1,,1,3,3 E85114,28,51,28,34,39,27,45,37,36,42,51,45,51,47,63,43,54,51,51,58,54,47,50,43,56,56,68,61,61,59,70,65,57,64,61,65,74,53,62,66,52,57,50,57,47,51,40,51,52,48,42,45,41,44,47,55,49,43,39,42,50,41,36,41,44,32,42,36,35,38,31,31,33,33,30,30,11,24,15,8,15,12,14,10,13,12,9,6,12,5,6,5,3,3,3,2 E85115,18,17,32,27,31,31,26,22,24,42,24,32,19,28,14,21,24,26,22,30,21,26,29,23,29,30,34,38,30,33,40,32,35,38,43,42,35,40,44,41,39,40,26,35,26,27,24,31,22,32,30,17,28,24,22,15,18,26,23,20,14,17,31,26,19,17,12,9,23,10,22,13,12,11,18,8,16,12,11,4,6,4,4,2,4,8,3,6,2,3,2,1,1,1,,1 E85116,28,26,31,34,31,25,26,41,38,32,53,41,33,42,40,27,44,36,34,34,29,26,30,28,50,39,37,34,28,46,36,37,40,42,40,46,47,50,47,56,50,64,55,37,54,36,61,52,45,43,53,44,48,37,40,34,37,44,39,33,33,28,41,23,19,26,28,22,19,14,17,18,15,5,6,14,14,18,12,15,7,6,5,3,8,6,7,5,5,4,2,3,2,2,1, E85118,25,17,20,17,15,18,27,16,32,31,32,27,36,29,34,33,29,32,36,35,33,35,33,41,53,57,69,67,65,67,77,66,65,65,61,68,76,72,58,48,64,85,68,60,61,56,64,65,63,59,47,45,34,46,32,34,43,55,36,46,53,38,41,33,36,30,29,28,26,24,21,23,19,24,14,12,21,20,12,11,15,14,12,5,6,10,1,7,7,4,1,1,3,,,2 E85119,81,80,89,69,57,62,60,65,82,84,67,70,66,79,60,87,100,74,70,97,99,128,127,117,153,183,177,164,155,142,133,137,126,134,133,126,117,140,131,120,127,113,104,125,121,118,113,99,100,117,108,116,114,104,99,82,110,74,79,79,71,60,69,58,56,66,47,47,42,34,39,46,37,39,30,27,23,16,18,11,11,8,7,13,5,6,15,10,4,5,4,7,4,2,,8 E85120,30,31,31,47,35,27,54,46,50,45,46,50,60,54,42,68,52,54,39,45,51,48,31,46,49,41,46,47,47,63,45,45,50,56,53,68,49,53,55,56,62,86,70,60,58,77,85,74,71,75,59,55,60,61,55,55,41,60,47,42,48,64,46,31,32,44,40,30,38,34,25,30,27,26,28,24,33,20,26,20,19,2,10,9,15,5,7,7,5,3,,3,3,,2,1 E85121,91,72,73,82,75,61,77,79,67,76,79,65,73,88,66,73,79,75,84,101,100,152,146,177,175,184,176,176,151,147,153,159,165,152,177,164,151,164,136,157,179,168,140,167,148,157,149,142,141,146,124,145,108,100,122,118,96,94,77,88,93,87,69,71,95,68,79,59,53,58,53,40,47,42,25,22,27,27,22,12,19,19,10,12,12,8,10,8,9,10,4,5,4,3,1,2 E85122,43,44,58,54,69,64,66,57,63,56,68,79,69,79,65,86,78,71,70,59,61,58,67,79,93,93,104,120,133,135,139,135,149,153,149,151,158,161,160,140,143,181,171,175,164,153,143,149,117,117,135,103,109,121,99,92,83,108,69,83,86,81,66,61,51,60,59,48,38,51,44,49,29,42,33,36,45,30,46,17,22,18,16,11,14,15,13,8,5,6,6,5,7,1,1,8 E85123,49,47,50,52,55,55,50,57,73,63,67,54,57,71,45,48,46,31,32,32,22,24,37,35,58,68,62,73,100,100,84,116,107,92,119,130,111,112,99,105,120,104,89,95,97,101,90,101,79,85,70,62,52,58,41,55,47,56,42,36,40,39,47,29,36,33,39,31,29,23,24,21,15,15,17,25,15,19,25,12,19,13,7,6,3,9,2,3,3,6,5,3,4,,3,1 E85124,122,122,133,125,85,59,55,62,63,55,80,60,54,53,62,33,66,74,118,207,271,309,463,660,907,1171,1413,1873,2368,2916,3072,3347,3295,3095,2968,2668,2511,2173,1877,1715,1448,1281,1118,1036,832,777,665,596,499,415,363,320,317,293,245,227,213,173,168,184,140,135,123,92,90,76,66,52,64,41,34,43,30,25,30,20,16,14,9,7,10,6,3,2,5,3,4,2,3,2,3,1,,1,1, E85125,21,23,14,21,17,12,16,17,21,24,23,30,22,28,21,24,21,30,35,28,22,32,41,37,53,58,54,49,69,60,59,83,67,47,47,64,49,50,51,38,32,39,42,38,42,40,39,47,51,37,44,32,57,48,44,40,37,21,39,42,27,50,39,34,22,26,19,22,16,10,16,10,6,14,10,10,8,9,15,5,7,7,6,4,6,1,2,3,2,1,3,1,,1,, E85126,52,54,55,58,61,54,48,72,66,64,63,52,61,67,69,70,70,56,59,68,63,73,78,95,103,110,127,158,151,113,111,106,121,130,115,138,129,150,152,131,130,124,137,111,120,117,122,96,97,87,65,80,86,74,83,48,65,60,66,61,60,42,45,39,39,49,33,42,39,30,18,30,21,29,19,21,13,15,22,12,20,13,9,7,14,14,11,7,6,6,3,4,2,,,3 E85127,24,29,35,31,36,34,47,41,51,46,57,50,63,59,65,61,60,66,60,64,55,59,56,54,46,43,61,51,65,67,67,57,68,65,68,56,63,69,75,74,86,69,87,87,100,83,70,62,74,91,80,61,67,58,78,72,46,75,52,46,68,60,42,60,59,42,38,22,40,33,34,23,29,24,28,19,29,11,23,19,14,14,12,15,6,8,5,9,5,8,4,3,4,2,,3 E85128,41,40,42,56,47,59,74,75,70,63,74,83,61,89,58,85,75,67,59,71,53,66,60,73,83,89,102,127,125,126,119,122,135,128,139,120,91,127,121,135,87,100,119,117,78,98,100,106,78,70,82,72,82,66,96,66,72,71,65,59,60,49,66,49,40,49,48,42,31,40,33,31,22,36,27,23,19,19,23,23,13,12,12,12,11,14,11,6,3,2,3,4,3,5,3,2 E85129,31,25,13,21,31,39,32,27,42,45,28,31,34,26,33,28,33,32,32,33,36,35,42,35,41,50,35,51,40,48,59,68,56,55,47,71,50,61,38,36,56,49,43,63,52,57,63,48,43,45,52,36,44,39,41,32,36,29,38,38,36,44,37,32,39,30,28,30,30,21,31,20,22,21,21,20,15,15,18,9,15,8,10,6,9,13,11,9,5,3,3,3,2,1,2,4 E85130,26,17,25,23,21,23,16,21,22,22,20,17,20,18,24,21,23,23,20,15,15,9,12,16,23,19,30,26,35,35,43,41,43,52,32,41,50,44,46,49,49,40,47,43,47,48,43,52,38,37,40,44,40,33,30,26,40,24,19,21,23,26,25,21,29,21,22,18,18,12,11,13,12,12,6,10,8,10,5,8,9,3,4,3,6,6,1,3,4,3,,2,,1,, E85600,46,35,35,37,43,34,43,25,40,56,45,50,46,44,35,46,44,36,39,34,36,36,48,46,42,51,54,82,58,53,60,57,69,67,78,58,70,57,72,74,66,70,65,74,62,62,64,62,52,45,32,40,44,54,21,34,32,35,42,44,26,21,27,26,33,23,21,15,18,14,14,12,15,11,19,14,17,13,18,11,15,8,8,5,9,3,5,5,5,3,5,1,2,1,1,1 E85605,29,37,46,40,41,48,44,43,49,36,48,66,54,46,64,61,46,51,44,41,40,40,34,33,43,46,46,51,63,52,63,57,62,59,80,71,68,68,87,108,84,87,81,85,77,80,78,76,61,73,72,52,65,68,42,68,52,49,46,59,42,42,46,40,43,44,29,37,37,35,27,25,23,34,21,34,37,15,25,13,16,13,17,13,11,7,9,6,3,5,4,3,1,3,1,5 E85617,6,5,10,10,10,8,12,10,10,10,5,9,8,10,8,15,14,10,15,13,5,19,12,17,23,31,29,30,29,32,37,53,52,50,59,42,47,38,55,60,57,42,40,44,38,41,31,24,24,26,25,29,16,19,15,20,19,21,24,16,15,18,11,21,14,15,10,11,10,6,11,12,10,7,5,10,9,8,5,7,6,1,3,8,1,1,,,3,3,1,1,,,1, E85623,13,20,20,16,20,14,18,11,21,15,21,9,9,20,19,14,10,14,8,13,18,19,19,24,30,38,25,32,40,32,36,44,38,33,30,36,40,43,36,28,36,35,29,39,37,29,32,27,29,27,15,21,19,15,24,26,19,15,11,17,18,9,14,13,12,10,11,13,11,9,14,4,4,6,7,5,6,5,8,6,3,4,2,2,1,,3,2,3,,1,3,,1,1, E85624,31,34,27,43,26,26,24,29,46,34,23,33,45,40,46,40,28,33,46,41,41,52,64,68,78,62,80,60,69,66,61,56,77,61,72,93,86,84,79,65,79,74,82,67,62,64,65,53,72,55,59,45,57,46,53,50,42,47,45,32,46,36,36,35,46,27,32,26,36,29,20,22,16,25,27,19,14,16,10,9,14,8,5,10,6,4,9,6,5,5,1,3,3,2,2,8 E85628,43,49,58,50,56,55,45,56,37,63,61,75,70,60,57,69,73,80,69,47,57,54,46,50,54,46,63,71,66,67,58,70,48,58,66,93,63,71,83,64,81,86,79,98,101,94,92,92,105,88,82,83,89,70,83,76,86,76,62,62,75,64,65,45,57,38,37,33,29,29,24,27,25,22,21,25,30,31,18,18,15,10,8,9,8,13,10,9,8,9,4,3,5,,1,4 E85633,64,51,64,41,56,36,48,44,34,51,54,49,52,43,50,51,65,52,47,71,76,98,134,152,154,177,154,147,163,114,122,118,114,123,116,151,126,114,124,105,95,98,96,61,100,93,67,70,73,70,71,56,61,48,54,63,56,45,47,51,52,53,50,33,40,39,40,37,30,39,42,31,16,23,14,17,17,7,12,13,4,5,12,6,7,4,4,2,2,5,3,2,1,,,1 E85635,25,28,25,29,30,34,26,34,33,26,45,31,42,37,35,33,38,28,31,37,25,33,29,30,40,52,39,34,46,45,44,58,57,54,72,56,62,68,66,75,71,56,36,60,53,61,48,42,48,49,43,48,38,43,35,39,27,31,30,32,35,33,31,27,12,17,28,17,23,11,14,26,16,13,11,8,9,14,11,8,6,6,5,3,8,4,5,3,4,2,1,1,1,2,2,2 E85636,84,83,65,69,73,68,66,61,73,65,65,71,75,54,61,56,74,69,67,47,65,47,73,86,90,108,138,119,124,127,127,141,142,147,148,148,129,142,145,143,132,114,119,96,117,85,103,102,91,81,92,92,92,103,89,106,84,92,80,73,79,67,67,60,69,55,35,41,34,36,34,38,31,26,40,29,18,25,23,16,21,14,11,11,12,5,9,6,4,10,3,9,3,1,1,4 E85640,11,18,9,9,10,9,8,10,15,6,11,13,17,15,15,19,9,18,11,8,20,17,15,19,25,19,31,29,31,39,34,41,47,43,48,38,69,43,41,42,51,54,41,46,41,38,34,31,43,34,35,30,26,25,40,26,23,28,20,26,21,21,15,22,15,15,12,15,12,12,7,13,10,4,10,6,5,3,7,7,1,6,1,1,5,3,3,1,5,3,2,3,4,1,2,4 E85643,24,23,27,27,29,31,31,44,34,40,48,43,64,56,59,65,57,55,64,67,49,58,45,52,48,73,45,53,61,45,55,56,41,37,43,54,37,41,54,42,71,61,62,48,58,72,62,59,79,70,69,81,69,63,64,52,58,52,49,38,50,32,33,38,38,24,25,26,16,21,18,16,12,13,14,11,16,8,9,4,5,9,7,3,5,4,1,7,3,3,3,2,1,1,,2 E85649,14,13,23,19,21,16,11,16,13,12,13,16,12,10,13,10,10,9,6,9,9,18,32,28,49,50,60,72,79,80,76,76,67,86,75,80,63,71,59,61,57,58,47,47,43,40,28,26,33,19,17,25,28,18,20,21,21,17,12,15,20,14,15,12,12,7,12,14,13,9,9,3,5,7,6,8,8,3,8,3,6,4,2,,7,1,4,5,2,1,2,1,1,1,,1 E85656,24,42,30,49,38,34,24,25,20,31,26,37,33,22,32,36,45,31,33,39,36,55,52,71,80,98,86,74,74,54,57,43,60,61,55,62,55,58,59,34,49,48,47,49,59,38,31,33,32,38,37,43,37,32,34,26,35,35,31,30,25,25,21,21,28,19,22,13,19,15,15,19,14,14,19,16,8,13,5,7,7,2,8,7,7,3,3,6,2,5,1,2,3,,1,5 E85657,52,62,57,78,55,66,56,88,62,71,72,69,54,73,82,62,63,65,45,46,56,61,56,67,82,88,95,107,91,89,103,117,130,121,133,134,128,135,140,115,154,156,145,146,142,124,110,115,113,92,90,89,85,85,69,68,68,69,51,56,52,46,50,41,43,37,42,44,36,29,26,21,29,26,20,10,25,17,22,24,15,14,11,13,7,9,9,5,5,7,5,5,1,,2, E85658,13,18,11,13,10,8,16,15,17,16,14,17,16,17,27,16,20,21,15,16,29,13,10,15,21,30,24,32,21,27,35,48,37,33,33,29,36,56,44,49,40,45,44,48,56,54,60,53,53,48,46,35,43,34,34,36,35,20,35,23,35,24,24,26,15,31,13,24,22,27,20,21,18,12,13,13,12,15,9,11,15,4,4,4,10,6,8,5,5,7,2,4,4,,1,6 E85659,10,6,6,6,12,7,7,4,5,11,14,8,12,14,11,13,13,14,18,12,17,13,14,9,13,20,18,22,23,18,25,25,18,23,30,25,23,24,34,32,21,33,22,21,14,20,14,12,9,15,23,24,21,17,20,17,11,12,16,12,15,12,10,7,11,10,14,7,10,4,6,6,8,4,1,3,8,7,2,1,5,,3,1,2,3,,3,2,,1,,,1,1,2 E85663,60,66,51,64,37,50,58,46,59,65,53,63,51,48,68,68,61,62,58,73,71,94,93,108,139,146,117,135,127,133,114,121,122,138,144,133,160,145,137,120,137,143,139,91,132,142,122,91,100,106,122,115,81,81,84,87,99,68,60,55,65,49,44,56,59,50,39,43,22,32,38,23,30,20,24,19,17,11,15,9,6,6,5,7,7,8,6,7,1,3,4,4,3,,2,5 E85677,43,25,37,39,36,39,46,33,35,36,39,36,51,47,42,25,35,37,43,49,44,58,47,61,74,82,87,83,106,93,95,115,92,105,117,86,110,103,104,108,112,82,96,83,94,78,63,73,65,62,64,49,54,59,49,39,47,51,38,40,27,28,23,29,31,25,30,23,25,10,18,17,7,16,13,11,7,18,10,6,7,3,4,5,5,2,4,4,1,,1,3,,1,3,3 E85680,38,31,49,37,46,60,49,61,58,57,47,50,46,58,45,61,51,45,128,195,130,129,120,113,113,155,198,166,163,137,142,141,118,116,130,116,110,103,88,121,94,106,110,111,110,84,88,113,80,67,77,55,55,50,45,54,40,41,42,35,26,29,21,27,26,31,12,20,21,23,19,17,21,17,12,14,12,13,12,6,14,13,8,9,11,7,8,4,7,5,4,1,,,1,2 E85681,52,52,52,49,52,48,69,57,73,67,66,72,73,74,77,65,60,70,59,72,61,68,69,69,81,87,87,86,93,81,87,90,78,75,88,83,108,87,98,95,84,83,87,79,76,90,74,73,71,69,61,68,66,76,44,64,57,44,55,45,38,32,43,31,31,30,35,27,35,31,27,18,27,27,16,24,20,19,19,15,8,16,5,9,8,10,8,5,5,3,3,3,1,2,,1 E85682,17,29,18,18,23,17,25,18,30,36,33,30,47,40,42,47,63,57,59,57,61,49,48,64,58,52,44,49,52,62,60,46,47,46,44,53,45,49,42,53,50,40,49,44,49,48,38,42,42,46,42,45,41,44,54,46,41,31,41,26,42,32,29,32,21,32,31,14,17,17,16,19,16,9,14,15,8,7,8,11,7,9,8,3,6,4,4,6,3,4,3,1,,,1,1 E85683,18,18,13,18,12,11,13,9,12,21,17,23,27,19,21,21,23,37,20,19,16,22,27,17,22,25,18,28,21,20,24,32,26,23,21,25,22,20,24,32,27,32,42,28,30,34,26,34,42,31,29,39,39,45,35,24,30,33,41,42,41,27,24,36,28,28,42,21,16,17,17,21,9,7,7,7,14,14,11,10,9,5,8,7,6,7,6,5,,2,4,4,3,1,,1 E85685,81,80,91,68,68,61,63,69,50,48,56,41,63,47,59,55,41,41,43,38,30,40,48,62,76,97,90,122,111,133,135,128,94,102,106,94,115,100,100,97,99,93,96,96,95,90,83,100,90,75,72,76,77,93,64,52,66,55,67,67,49,49,49,72,45,43,38,46,36,28,33,36,34,24,34,20,29,32,21,26,17,23,20,14,18,17,12,7,8,7,1,3,4,1,,7 E85687,48,48,27,24,26,23,32,28,19,27,23,17,14,7,17,9,20,18,12,15,24,23,22,43,41,54,49,63,81,75,86,81,75,69,90,91,88,79,64,60,51,63,62,37,43,62,42,35,34,30,25,31,24,17,30,21,18,21,16,22,18,13,11,7,6,15,13,9,7,6,9,6,10,3,7,5,5,6,4,3,3,3,2,2,1,3,2,2,1,3,4,,,,, E85693,86,104,98,107,125,108,113,105,126,123,119,115,126,131,118,130,114,115,116,93,104,90,127,93,132,130,145,151,128,151,171,166,168,177,185,170,204,222,189,175,223,223,197,218,175,193,210,168,178,180,167,157,160,168,169,166,146,150,151,129,151,149,115,96,93,111,82,80,77,73,60,68,84,74,52,68,58,71,54,44,52,38,23,30,26,19,16,14,10,15,9,6,7,5,4,7 E85694,5,14,17,17,20,23,20,22,39,33,33,26,48,48,62,53,33,35,36,29,29,26,30,28,27,38,41,35,37,32,33,45,46,53,40,40,40,50,47,44,35,43,70,48,59,69,63,61,64,59,51,38,54,39,48,46,49,43,36,25,32,30,27,27,20,23,17,23,20,11,18,14,20,11,11,19,19,20,7,6,16,4,7,8,4,3,2,5,2,2,2,3,2,2,2,1 E85696,36,50,60,46,42,50,46,44,37,47,38,40,45,46,37,49,46,35,32,47,35,46,57,61,78,83,93,70,101,91,92,88,94,120,157,153,160,161,176,156,160,114,138,147,124,133,93,74,84,79,92,82,87,83,61,53,57,39,43,38,37,36,39,34,36,18,26,35,25,20,22,14,23,27,14,14,12,12,11,6,9,6,3,4,5,3,2,4,3,,2,2,,,,3 E85697,23,29,39,28,37,38,36,32,45,43,39,36,30,46,44,52,55,63,47,49,45,41,50,49,52,35,58,59,40,54,51,49,55,48,49,54,50,48,42,55,41,54,46,65,55,41,48,49,53,40,35,55,34,51,42,39,39,42,37,29,39,41,31,42,23,34,17,17,21,25,11,33,13,16,14,12,9,8,13,7,14,10,4,5,6,8,3,5,3,2,6,1,2,1,1, E85699,28,34,41,38,35,42,44,51,46,40,46,47,52,30,45,46,54,49,41,43,44,36,32,41,43,33,48,47,56,44,60,44,52,48,47,54,57,66,48,65,59,62,60,57,69,41,59,43,38,52,41,45,31,43,37,45,36,35,43,45,38,43,28,45,30,23,26,26,22,15,25,13,18,22,11,22,13,16,13,20,9,12,13,7,14,10,6,8,6,6,1,6,4,5,1,6 E85707,35,30,29,38,39,29,32,29,35,25,28,29,32,31,38,29,27,31,48,48,64,55,67,83,104,91,96,101,99,81,81,77,75,89,85,79,65,62,82,74,57,66,67,55,66,62,62,50,49,46,52,41,42,34,36,39,37,46,43,44,39,42,33,25,47,35,35,26,37,22,30,21,19,22,22,16,11,13,14,10,6,13,6,7,7,7,4,5,5,7,5,2,3,1,1,3 E85708,43,41,36,52,52,36,38,39,49,52,54,46,58,57,66,47,44,57,39,51,40,57,52,57,61,49,65,64,68,72,75,78,75,68,74,70,60,88,82,83,72,84,85,73,90,79,81,79,47,54,64,49,49,47,37,51,38,54,36,54,47,45,50,44,44,45,41,35,27,33,12,19,20,12,20,11,18,13,20,16,5,11,5,7,7,7,7,8,4,1,5,2,4,,1,1 E85712,58,61,80,70,74,73,74,93,89,81,94,82,100,106,80,90,89,93,72,64,62,66,71,87,66,65,82,89,71,91,87,93,73,90,94,74,104,106,106,100,94,89,100,87,96,98,83,101,86,72,77,79,54,60,59,78,66,50,48,48,54,44,46,38,47,42,40,32,26,28,23,32,22,27,30,20,18,21,8,14,11,10,8,9,5,8,6,1,4,7,3,1,1,1,1,7 E85713,37,32,37,40,35,31,41,30,35,49,28,28,33,39,48,32,23,32,27,23,35,38,35,51,47,71,84,79,81,82,73,77,64,66,73,88,92,93,81,90,83,62,61,70,65,65,48,50,48,40,47,44,45,34,34,28,35,23,28,27,28,27,27,23,31,24,28,8,34,21,19,10,12,12,12,13,11,13,6,5,12,7,11,4,7,10,8,10,9,3,6,4,3,1,,3 E85715,55,51,42,48,46,76,47,58,57,46,67,66,54,61,62,54,49,59,65,52,45,41,54,49,57,44,46,69,54,48,57,73,44,59,58,64,75,54,64,80,69,51,58,59,56,80,57,64,75,56,63,48,49,41,51,43,44,45,36,43,40,35,45,39,31,29,28,20,26,24,23,12,17,13,25,11,13,14,4,9,9,13,4,6,6,4,8,10,5,2,3,4,3,1,,4 E85716,97,82,83,78,89,91,79,88,94,93,89,135,79,100,89,76,104,93,94,106,113,120,126,119,142,176,178,198,206,174,178,181,178,145,171,188,183,194,138,161,150,159,163,153,164,147,132,132,141,139,111,130,117,110,113,97,90,103,86,63,64,86,78,49,73,53,44,53,41,47,35,34,37,31,31,22,22,22,21,19,20,17,12,16,11,5,12,16,7,9,7,5,5,2,2,11 E85718,26,35,28,26,15,14,31,27,25,26,28,30,26,32,29,27,29,38,37,35,35,33,44,36,56,47,45,42,53,47,37,50,46,44,50,41,57,56,46,51,68,47,49,54,42,45,53,49,48,41,42,40,31,32,45,29,40,23,31,33,34,33,28,23,24,17,19,17,14,16,18,15,9,19,16,15,14,10,9,12,10,4,5,7,3,5,7,4,2,4,2,1,3,2,,2 E85719,40,44,56,65,45,50,46,58,58,72,74,69,63,74,69,84,67,87,72,55,71,58,59,54,65,64,94,105,107,101,88,88,87,79,88,75,102,97,94,101,112,113,91,111,111,73,96,93,97,98,110,99,87,78,88,72,51,66,65,58,53,48,51,39,27,24,32,31,21,32,19,22,18,22,21,25,22,24,25,14,11,17,8,6,5,10,9,5,8,4,2,4,2,1,,3 E85721,9,5,14,5,10,10,12,9,16,17,19,22,17,18,18,20,15,22,20,26,28,23,26,22,19,20,16,17,27,18,25,17,17,16,10,20,20,19,14,16,22,18,19,12,23,20,23,21,23,30,27,16,29,18,25,15,29,16,16,26,19,19,15,10,12,8,7,4,7,8,4,5,3,3,5,3,4,2,2,1,,,,1,1,2,,,,,,,,,,1 E85725,48,33,38,40,38,30,40,45,29,42,52,48,54,33,49,49,56,45,65,55,39,44,45,47,52,54,55,63,77,61,59,71,75,69,58,79,75,89,64,75,63,88,65,58,73,61,62,51,59,69,57,57,55,53,44,38,49,53,44,38,55,39,42,55,44,29,27,34,28,25,32,25,12,24,21,21,16,22,17,12,13,15,6,4,7,8,8,8,3,1,2,3,,2,2,1 E85726,15,13,13,8,8,17,21,15,16,14,16,16,13,13,15,19,17,15,10,17,16,10,22,14,13,27,20,24,31,40,25,40,37,32,34,36,29,36,31,40,42,34,35,30,36,31,29,21,32,31,17,24,18,24,20,9,20,17,16,16,11,18,13,24,16,10,18,25,12,14,12,7,14,10,5,12,8,12,7,4,6,6,5,5,6,2,5,1,5,2,,2,2,,,1 E85734,31,24,34,31,20,33,46,37,39,36,29,43,54,32,39,39,46,43,45,44,50,36,47,43,42,52,43,48,50,52,52,50,41,59,47,43,53,49,62,59,52,35,62,42,64,63,60,49,56,54,40,36,45,52,36,41,45,34,39,35,37,41,23,25,28,28,32,24,32,19,21,16,7,12,9,16,7,14,12,4,10,6,10,7,5,4,8,3,1,4,3,1,1,,,1 E85735,43,38,48,40,38,38,43,33,39,48,36,32,38,33,32,43,38,27,27,25,21,25,21,33,25,47,34,49,72,46,71,58,71,72,86,77,85,76,76,85,84,75,55,77,70,61,65,63,41,47,44,30,34,25,45,30,24,31,30,33,33,24,24,22,25,23,25,16,22,15,16,21,23,7,11,9,9,12,9,8,9,10,3,3,3,5,1,3,7,2,1,2,1,1,,1 E85736,41,44,42,28,31,45,50,46,48,62,52,60,61,48,77,64,50,59,60,50,54,32,43,52,38,43,59,49,46,43,40,60,37,50,51,41,48,42,49,43,56,52,48,50,64,46,40,40,36,50,48,54,47,49,31,48,50,46,34,46,37,40,38,23,44,36,21,24,21,24,22,10,12,19,24,11,16,13,18,12,10,7,12,4,8,6,4,3,4,2,3,2,1,2,4,1 E85739,50,52,59,53,66,68,70,70,75,93,41,70,75,98,80,83,82,89,77,83,69,72,68,96,78,94,88,87,105,90,76,86,88,93,83,78,85,108,85,90,81,81,79,92,87,87,79,72,111,85,65,75,65,54,87,60,60,61,49,54,48,50,43,41,57,40,43,27,38,36,36,25,37,19,19,29,16,18,18,14,16,15,19,13,8,12,13,9,6,5,3,2,3,2,2,4 E85743,16,9,12,14,12,10,21,25,18,15,16,20,30,29,20,22,31,18,30,29,35,18,24,29,24,34,27,27,30,30,33,20,18,20,21,33,24,23,14,25,24,29,25,29,23,28,23,31,24,29,33,24,27,27,24,37,25,24,23,24,27,22,17,19,13,13,11,8,20,9,10,16,9,7,6,6,7,2,5,7,2,5,3,2,2,4,2,2,,1,1,1,1,1,,2 E85744,45,46,50,54,42,55,61,81,52,66,55,57,68,68,72,88,58,59,63,60,70,71,65,67,60,68,81,81,79,70,72,68,75,77,94,95,105,88,80,113,110,109,87,115,90,126,80,85,93,97,64,87,76,61,62,66,62,65,49,52,69,56,52,58,46,37,25,30,24,25,14,17,22,19,13,17,26,15,13,14,13,7,12,4,6,8,7,9,3,5,3,4,1,2,2,3 E85745,43,48,46,48,46,28,41,50,29,34,49,43,47,53,39,58,52,43,56,61,65,69,69,79,87,85,82,87,70,81,87,83,67,70,63,68,57,62,56,60,56,59,55,68,83,71,89,74,88,90,65,64,70,65,67,60,51,47,40,56,52,48,40,39,37,38,35,35,31,33,25,23,16,22,20,30,11,15,14,12,12,14,6,7,11,6,6,6,7,5,3,3,2,,3,4 E85746,21,20,14,18,27,13,24,19,29,22,13,20,29,28,31,37,33,36,26,23,22,14,26,19,25,24,21,24,38,27,34,27,22,33,30,37,38,30,30,22,40,36,41,45,38,36,44,42,29,43,43,29,38,33,27,31,20,28,33,21,20,12,20,13,18,22,12,13,10,6,12,7,7,9,14,7,9,6,6,9,4,4,4,6,1,2,2,1,,1,2,,1,,1, E85748,11,12,25,15,20,19,24,26,36,24,28,27,36,36,48,38,36,53,39,36,42,40,37,42,45,51,38,53,38,46,56,67,69,70,81,80,80,73,82,94,94,103,97,105,93,99,64,85,73,78,70,57,54,65,55,59,45,32,42,38,43,34,27,26,21,22,17,23,16,12,9,14,9,13,7,5,6,6,5,5,3,2,4,4,4,6,2,1,1,2,,,2,1,,2 E85750,35,33,25,36,36,31,24,42,51,39,57,61,45,62,53,52,60,47,45,34,44,35,35,38,44,47,40,48,55,53,62,49,67,56,66,53,67,87,98,88,86,90,88,90,85,97,66,72,81,74,58,58,47,64,36,48,56,60,42,38,32,39,36,29,26,28,35,18,23,18,26,31,27,15,31,20,21,13,16,16,12,11,9,6,12,10,13,8,10,2,4,3,1,4,2,4 E86001,36,44,52,34,50,54,49,53,57,50,60,57,70,66,84,64,53,52,61,55,30,47,52,50,43,49,57,59,41,72,50,54,41,62,63,59,65,59,66,73,81,78,86,80,83,77,90,79,77,86,74,79,68,81,78,72,67,72,70,78,87,81,58,75,79,79,81,51,50,58,63,61,42,68,58,54,66,56,44,43,46,43,46,23,29,24,28,22,21,14,13,10,13,5,4,15 E86004,52,54,67,65,69,87,99,81,82,90,67,86,86,68,79,76,58,74,72,49,67,44,63,78,61,73,83,80,97,75,93,87,82,84,94,108,105,90,100,101,118,91,96,91,107,94,96,92,82,89,75,62,86,87,72,60,70,75,94,67,58,71,54,61,62,50,54,61,42,36,27,40,36,23,20,25,30,22,22,18,13,17,12,13,10,12,10,10,6,4,4,3,5,6,4,7 E86005,20,40,45,30,34,40,40,44,50,71,50,46,38,43,44,41,54,55,38,35,50,35,41,36,41,36,43,59,40,43,52,47,32,47,40,48,47,38,55,54,54,57,55,51,49,48,51,43,46,46,39,55,38,50,52,48,50,58,33,43,45,26,40,47,38,45,30,36,32,32,23,21,29,32,29,30,20,22,23,19,18,18,11,9,11,9,8,10,6,9,7,3,6,2,3,3 E86006,27,35,48,32,35,53,64,55,49,53,42,52,42,34,59,53,46,52,44,44,40,28,40,37,35,45,36,46,46,43,44,41,39,47,59,44,59,58,56,49,71,73,69,86,62,72,56,70,47,50,50,51,46,65,55,40,56,49,58,42,54,42,57,52,58,42,45,52,43,37,47,43,38,29,39,29,30,47,41,29,24,19,18,19,21,12,15,15,8,8,5,5,9,3,4,8 E86007,30,59,48,42,30,43,50,47,47,44,51,51,49,48,74,35,63,64,45,65,47,62,50,47,59,52,62,61,48,43,64,51,58,54,60,58,70,54,62,62,62,67,67,53,56,58,60,55,57,55,51,52,76,70,65,53,66,68,61,72,65,49,61,50,52,47,55,52,43,48,43,40,34,41,37,42,39,43,43,21,24,23,25,14,13,15,16,14,14,12,7,5,2,3,7,8 E86009,56,58,55,60,63,51,55,55,67,52,56,57,60,53,55,47,51,59,37,48,49,45,52,42,63,57,61,75,73,68,73,79,91,71,73,82,79,88,93,67,87,71,93,72,78,65,57,65,55,60,52,58,59,46,65,49,53,38,43,45,42,39,39,47,32,34,28,30,30,35,25,30,27,26,30,29,15,37,22,12,14,15,18,13,11,10,8,8,8,2,2,4,1,4,2,5 E86010,126,102,110,108,103,133,106,142,141,120,121,114,104,138,123,125,114,104,105,104,106,99,93,112,129,129,139,134,158,126,123,162,162,142,193,205,172,195,177,172,173,181,159,149,152,136,133,118,126,123,105,87,105,103,64,72,91,87,86,65,74,76,58,52,55,56,39,42,34,36,35,29,28,27,27,23,23,19,20,16,22,18,12,10,8,11,5,5,6,5,6,6,3,1,,3 E86011,33,21,41,29,40,31,45,41,37,41,38,51,40,48,34,39,45,37,48,33,28,29,31,45,29,30,34,40,27,31,36,28,39,35,38,34,46,39,42,44,44,52,51,52,56,58,37,41,48,43,46,44,45,42,36,46,31,34,51,36,45,48,35,41,37,30,33,21,27,20,16,10,15,23,23,13,14,27,26,15,17,18,14,11,11,11,11,3,11,7,8,5,3,3,1,4 E86012,46,54,50,51,56,59,58,62,67,70,66,66,62,77,60,69,63,61,51,62,53,60,49,60,51,68,67,83,69,69,59,76,73,71,81,74,84,80,79,81,94,88,92,87,85,87,80,73,66,59,76,74,76,74,63,70,89,71,84,83,83,72,85,73,93,73,63,60,56,40,60,44,52,43,35,39,48,53,51,40,47,30,27,18,28,25,18,17,19,16,15,12,3,3,3,8 E86014,63,62,59,62,55,65,55,52,46,52,65,49,36,42,56,35,38,39,49,43,24,41,30,36,35,39,41,47,46,47,53,51,52,74,68,59,82,64,53,71,68,67,74,70,73,56,46,52,50,39,47,41,37,35,55,43,35,37,29,40,34,31,24,23,32,20,23,24,27,13,15,18,16,17,14,13,14,14,16,14,12,3,9,10,9,5,9,3,7,5,5,4,2,4,1,2 E86015,104,70,76,99,82,91,107,96,111,100,108,88,106,102,107,92,101,92,99,79,79,105,87,88,103,114,120,116,114,115,94,132,113,124,144,144,130,149,170,146,169,151,170,141,139,138,137,119,115,124,134,110,106,98,108,124,101,122,104,118,91,108,100,91,69,80,75,69,81,70,69,66,65,53,59,61,52,59,47,37,47,24,26,24,19,24,19,15,10,9,8,10,3,4,4,8 E86016,34,45,38,34,37,31,34,35,31,32,44,39,45,44,35,41,33,35,58,43,60,67,57,68,61,69,76,65,53,59,66,57,53,60,60,49,57,33,44,46,54,58,54,48,48,47,37,31,37,36,45,52,41,41,35,31,44,37,38,37,36,35,36,26,33,31,27,24,27,16,23,20,26,12,18,18,17,15,8,17,7,9,11,9,6,12,11,4,5,6,4,,3,,1,2 E86017,140,157,130,135,121,99,109,115,104,97,113,102,119,106,88,97,108,106,105,121,159,247,258,332,343,383,330,311,327,290,292,261,261,254,248,277,251,222,189,199,218,161,177,177,172,170,154,131,149,122,131,133,111,121,105,102,112,90,84,75,86,80,66,62,54,71,49,36,43,44,44,37,32,28,24,27,26,32,23,15,23,18,11,9,6,17,9,10,8,7,7,9,4,4,3,4 E86018,36,41,41,44,45,38,41,41,51,61,60,57,64,64,58,60,64,70,66,61,72,62,67,73,72,63,52,80,58,44,64,57,55,54,59,56,57,62,64,54,58,57,65,64,56,77,62,52,61,64,67,58,63,64,59,58,63,57,45,54,47,55,41,46,38,32,40,28,30,22,27,32,30,17,23,26,20,28,17,15,17,13,11,11,16,15,8,11,5,6,8,9,9,4,4,8 E86019,32,22,34,32,21,34,31,32,47,42,40,56,45,41,49,59,37,57,53,48,51,58,65,45,58,64,68,55,60,61,53,55,52,50,61,45,55,54,41,50,54,42,55,52,49,48,43,33,60,50,50,39,42,49,61,58,49,44,47,51,32,42,41,30,35,33,26,28,32,23,30,24,22,24,25,21,23,21,19,14,19,13,8,11,8,8,7,8,4,5,6,4,3,2,1,1 E86020,25,31,30,30,31,29,37,39,28,29,44,47,42,43,36,37,36,46,39,46,42,35,38,51,43,54,45,51,49,54,48,46,41,43,44,52,36,47,42,46,37,39,32,36,41,36,50,51,40,35,35,38,34,30,36,30,37,32,28,28,31,38,31,22,29,23,27,17,23,15,19,16,23,13,12,9,13,11,10,12,7,6,7,7,8,7,5,2,5,1,1,3,1,2,1,5 E86022,13,21,26,17,23,28,27,33,31,32,27,33,25,50,36,30,26,38,28,34,27,29,31,38,34,21,29,27,36,37,40,41,39,25,39,33,34,38,37,32,42,44,36,48,37,50,46,43,30,57,29,37,41,36,43,56,45,35,41,41,41,49,48,37,26,35,37,38,29,31,38,33,37,20,21,21,20,25,30,23,24,22,24,14,10,12,19,20,9,8,6,11,3,4,3,9 E86024,10,19,12,9,24,28,13,17,18,18,24,22,18,25,29,35,27,32,36,33,26,28,28,20,24,33,32,43,24,25,31,29,31,23,18,34,27,26,17,22,25,24,19,22,28,25,21,31,35,42,32,36,29,39,34,30,41,22,38,46,44,28,26,40,24,34,27,23,31,27,21,22,20,16,18,22,14,24,26,21,20,17,13,9,14,7,10,11,11,7,4,2,5,2,2,3 E86026,54,45,43,61,41,53,61,55,44,58,51,53,53,60,61,59,63,76,72,64,79,81,56,64,63,85,56,76,72,68,69,71,75,69,47,78,76,65,53,67,58,68,66,66,70,58,61,53,48,58,58,56,54,47,56,62,44,36,41,42,53,47,42,43,42,43,37,45,26,25,23,26,21,18,12,15,24,18,23,11,16,8,8,5,12,9,5,11,4,8,4,,1,,1,2 E86027,32,41,28,55,38,49,40,41,54,43,52,46,59,54,52,52,40,44,42,50,27,36,44,44,44,31,43,32,41,44,64,48,33,47,61,49,56,50,69,46,61,54,55,56,64,60,69,51,48,58,47,46,55,56,50,50,46,47,43,50,38,50,45,39,24,36,23,39,29,31,20,23,29,19,17,13,22,17,23,15,19,13,14,12,12,8,5,13,6,6,7,3,3,2,3,4 E86028,27,38,44,32,35,39,48,34,57,53,62,43,56,50,52,51,58,52,53,41,42,32,35,30,42,41,36,38,42,45,36,49,50,41,58,47,47,54,47,58,59,49,55,63,83,74,77,61,83,45,64,62,55,53,68,66,51,60,48,57,62,52,59,59,37,40,26,32,31,28,40,43,39,39,33,31,26,26,32,32,26,27,22,18,15,17,16,19,19,18,10,12,12,11,5,8 E86029,38,47,55,63,56,70,78,83,69,79,85,69,73,78,92,75,98,84,98,96,100,68,92,72,98,84,87,91,74,78,101,66,65,71,82,66,51,69,69,94,61,73,82,61,77,70,73,66,67,64,65,72,64,69,63,59,66,71,71,64,61,66,59,59,59,49,34,49,29,33,31,25,30,24,28,29,10,23,25,15,19,13,16,13,9,8,16,12,8,5,7,7,3,2,3,8 E86030,37,39,32,37,31,37,21,35,39,33,23,18,27,29,22,28,24,36,85,133,181,194,233,293,378,401,413,440,410,383,327,380,334,283,246,236,199,158,146,148,119,113,110,104,75,86,71,54,55,42,40,32,36,30,28,23,30,26,25,20,18,20,17,20,14,17,13,15,5,7,11,12,2,12,5,7,6,6,6,3,2,8,3,3,5,3,1,,4,3,2,2,1,1,, E86033,23,39,30,38,29,35,32,42,44,41,45,39,33,52,35,42,40,28,31,28,27,26,35,24,37,27,36,32,25,44,44,48,48,41,45,46,36,61,49,66,53,55,67,51,59,58,46,53,47,40,39,40,36,38,53,36,34,48,37,36,39,44,36,29,35,24,28,29,32,29,35,18,36,17,21,25,29,28,15,12,21,10,15,18,6,9,9,10,7,8,7,2,9,4,3,5 E86034,9,16,15,18,17,19,16,27,19,21,20,10,19,19,8,17,19,27,21,26,25,17,10,23,13,10,19,17,21,27,24,16,15,18,14,22,27,27,18,18,27,22,22,21,29,25,20,20,23,21,16,20,15,25,13,16,16,16,15,27,15,19,12,15,20,25,20,13,22,14,13,10,12,10,9,14,6,11,7,3,4,7,5,3,1,1,,2,,1,,2,2,3,1,1 E86036,49,45,49,48,42,61,62,49,66,55,56,63,67,56,57,52,52,51,37,47,47,40,39,43,53,64,53,54,72,50,69,62,55,69,67,67,52,60,64,57,80,61,64,75,65,73,69,54,61,57,48,44,56,52,44,57,41,59,59,46,55,54,55,48,40,46,42,46,37,42,42,30,33,27,31,32,29,24,35,18,16,17,24,21,15,12,18,11,3,8,5,4,4,4,4,11 E86038,49,34,41,34,38,33,38,36,42,31,46,43,42,45,44,41,36,54,50,40,33,50,37,48,63,37,67,62,61,61,64,71,66,67,67,69,74,73,61,85,71,65,67,73,94,66,85,74,59,58,63,54,64,55,64,59,48,50,33,49,47,44,33,51,41,31,29,23,21,20,23,22,13,11,17,13,17,11,11,6,7,4,4,6,3,7,1,5,2,,4,3,,1,2,3 E86041,31,25,25,27,30,35,31,35,37,48,39,43,48,53,43,45,31,29,42,37,31,31,24,35,37,41,41,35,27,46,37,35,35,47,47,49,52,47,47,42,54,45,52,52,55,55,56,50,45,44,38,36,38,39,31,29,35,35,32,36,23,24,21,32,29,22,21,22,10,23,20,21,22,14,21,11,11,21,17,5,16,5,8,20,8,9,5,3,9,6,4,2,3,4,, E86042,37,48,44,45,43,51,57,47,49,60,47,65,48,48,56,46,54,63,51,60,53,71,67,66,76,95,100,88,89,71,70,71,90,83,88,79,94,97,78,78,63,64,62,50,54,79,69,62,51,66,31,43,50,54,56,40,38,43,42,50,28,42,34,39,32,30,24,30,20,22,27,16,20,12,17,9,14,7,12,10,6,6,5,6,5,3,3,2,2,3,,,1,,,3 E86605,16,12,17,9,18,7,14,17,14,8,15,11,15,17,15,21,17,20,16,7,8,13,12,11,15,18,17,12,15,24,20,16,18,20,30,18,21,30,19,16,16,22,25,19,23,19,15,23,18,11,20,14,18,17,22,11,20,12,16,16,13,14,16,17,19,15,14,21,12,16,14,18,15,13,13,12,4,12,13,6,3,8,4,7,4,5,2,,2,2,4,1,3,,1,2 E86609,88,70,65,58,58,58,46,55,54,45,40,55,50,51,36,44,44,49,61,71,82,100,129,167,205,210,197,186,154,182,182,131,164,172,140,137,130,141,105,116,84,81,78,94,78,81,69,65,52,64,54,55,39,40,41,54,41,25,44,40,40,27,22,26,23,25,25,19,18,17,23,12,8,9,8,13,9,6,10,2,6,5,4,5,6,2,1,2,2,,,3,,,, E86610,13,13,14,18,19,15,20,18,21,20,13,23,19,24,31,30,22,26,23,25,17,26,20,27,27,23,24,27,24,37,22,26,28,33,16,20,28,25,25,27,28,26,20,21,24,23,22,24,18,27,18,31,28,23,16,24,20,27,27,16,19,25,20,23,16,15,15,15,14,7,6,11,11,8,8,10,10,7,11,2,4,4,3,6,4,8,4,1,1,,2,1,1,,,1 E86612,46,41,21,41,38,36,37,39,41,28,37,35,29,29,39,36,32,38,34,36,38,50,66,57,66,68,75,55,63,58,59,51,61,55,73,63,65,56,44,53,56,52,57,54,43,60,36,41,38,43,38,46,22,37,34,33,32,22,22,23,22,16,17,29,28,20,19,13,14,12,15,15,12,9,11,10,7,3,3,9,4,5,7,4,4,2,2,1,1,1,,1,,1,,5 E86615,9,11,13,11,11,18,25,17,19,24,21,20,17,23,16,19,19,14,19,18,16,15,20,19,18,14,25,16,21,20,18,19,15,21,24,16,25,21,24,21,22,24,27,31,25,33,22,11,23,25,15,17,21,21,20,13,16,20,19,13,15,20,13,16,15,10,10,14,13,17,9,11,6,8,6,8,2,6,4,9,4,6,3,6,,3,4,4,1,,3,1,2,1,,1 E86618,34,33,42,38,41,51,52,49,47,41,55,59,64,61,64,55,40,48,31,32,24,44,34,38,34,37,41,39,45,56,37,55,53,56,46,77,70,58,77,81,66,65,89,63,71,81,59,57,62,46,50,44,40,47,42,49,36,38,44,36,39,38,29,31,27,33,20,32,23,35,18,34,21,23,30,28,19,20,28,23,24,15,13,8,7,14,4,14,5,5,3,3,5,,1,2 E86619,15,21,20,24,23,24,27,35,28,37,34,35,37,36,16,21,15,20,16,13,16,11,16,15,14,18,12,12,19,14,18,18,12,21,21,24,16,23,18,25,24,38,34,40,44,39,33,33,29,29,25,26,19,25,16,14,8,7,10,23,21,11,9,15,16,17,18,13,16,21,16,16,11,8,5,8,19,9,10,9,9,8,5,2,3,3,8,2,4,3,1,2,1,1,,3 E86620,29,24,29,35,27,39,35,37,52,45,46,42,53,47,46,38,49,34,35,47,24,34,29,32,36,42,36,31,30,28,38,37,43,46,41,46,41,40,45,63,64,46,60,49,59,50,48,53,36,54,34,34,28,47,39,38,35,29,27,30,28,22,19,20,26,21,17,9,18,23,13,7,12,10,15,13,15,7,10,7,10,9,3,4,5,5,2,3,4,3,3,3,1,1,1,1 E86625,7,11,23,14,12,14,17,22,26,28,20,22,23,22,19,27,26,19,20,22,23,21,27,21,22,24,29,22,20,20,20,19,23,13,21,22,26,18,19,22,20,21,25,27,30,22,26,25,21,17,26,28,25,20,14,20,18,19,11,13,20,16,16,14,19,15,14,12,12,14,10,6,9,10,5,9,9,9,5,8,4,3,2,2,4,3,6,3,1,1,1,1,,2,,3 E86626,28,29,31,30,35,20,29,36,36,39,46,36,46,46,36,41,53,41,30,48,37,30,30,30,35,29,24,27,47,43,35,34,34,35,38,50,54,44,53,45,58,39,52,63,55,61,36,37,51,42,41,48,43,48,40,43,41,53,54,45,29,45,43,40,30,46,34,24,37,31,29,23,29,21,17,14,21,23,19,10,7,10,11,6,4,6,6,2,4,1,5,5,2,,1,4 E86629,26,20,19,40,26,15,21,38,25,29,28,20,22,25,25,20,31,23,28,23,13,16,14,28,24,27,20,27,21,20,28,24,23,34,43,23,34,29,44,39,42,43,39,28,33,30,39,18,22,24,26,25,18,23,18,34,19,21,28,18,18,22,23,20,14,11,11,10,13,23,11,8,11,9,10,8,7,10,7,8,8,7,6,6,4,1,2,3,3,2,1,3,1,1,2,2 E86632,27,33,29,25,33,39,36,27,29,40,31,29,37,40,35,44,52,54,41,44,39,54,41,43,49,47,50,47,51,38,49,40,56,31,37,41,34,36,39,50,50,51,43,43,38,45,38,50,44,35,42,46,33,50,34,49,37,38,42,30,40,33,24,35,28,34,28,23,30,20,28,16,16,13,13,17,15,11,16,14,7,8,8,6,5,5,6,1,4,1,,1,,,,2 E86637,27,21,27,35,32,33,25,27,36,47,27,32,41,47,39,49,47,34,44,62,59,66,78,75,101,95,85,87,71,78,75,66,97,66,59,64,61,48,58,48,67,75,48,45,59,48,36,52,40,45,52,40,50,51,50,50,53,47,45,47,48,39,34,39,49,28,25,28,24,27,23,20,21,11,14,14,13,14,11,4,8,14,9,8,12,4,5,5,3,4,1,2,,,,2 E86640,36,40,37,51,40,53,44,38,50,48,29,39,30,36,34,39,31,27,28,18,20,19,27,27,16,23,22,29,26,30,31,18,33,31,28,46,64,42,52,43,51,41,54,59,45,38,57,52,40,28,32,45,42,32,29,26,23,33,22,46,28,23,26,28,22,29,14,16,18,22,29,25,25,18,14,18,22,24,18,16,20,16,8,8,15,7,5,3,7,2,3,2,3,3,,2 E87002,41,45,47,61,48,51,66,59,66,100,77,71,69,80,85,76,73,96,65,60,55,63,83,84,100,114,140,143,163,179,167,192,200,180,189,195,187,192,203,178,167,174,172,166,144,170,164,163,137,138,133,124,131,136,152,108,132,121,113,111,108,107,107,84,89,92,75,66,76,63,52,60,64,50,54,48,53,44,67,51,44,39,28,19,12,23,18,19,9,13,7,11,9,4,8,14 E87003,31,22,19,24,13,18,18,19,25,19,23,28,21,28,13,19,19,24,26,16,28,26,25,43,47,38,36,46,48,48,47,46,35,47,39,38,43,42,30,40,48,40,49,44,54,52,38,42,48,37,34,28,51,39,31,32,34,35,40,34,40,30,40,26,24,26,16,23,18,18,13,22,18,16,25,10,17,17,18,7,6,10,7,10,6,3,4,7,4,5,2,1,3,,1,2 E87004,24,34,28,25,24,31,46,48,39,39,41,51,49,40,29,38,36,34,46,41,34,43,55,55,51,53,74,59,59,71,58,73,69,76,72,74,70,77,79,80,94,99,104,98,94,108,105,118,102,97,92,104,85,130,121,88,100,87,105,108,78,81,71,72,87,70,60,65,45,45,49,32,35,28,41,29,29,39,39,28,30,23,21,12,15,16,6,9,7,7,3,3,4,,1,2 E87005,22,20,18,25,16,18,25,24,31,26,44,28,33,31,23,30,21,35,41,33,30,31,44,40,37,51,70,54,75,81,82,84,77,69,75,68,89,90,89,67,57,69,78,71,80,83,90,66,68,69,81,81,76,83,75,81,88,73,84,69,59,62,70,62,51,56,63,45,52,37,34,28,31,21,28,29,27,26,25,40,23,22,17,18,9,12,16,11,5,13,6,11,5,2,5,9 E87006,15,15,12,12,14,12,6,18,21,19,7,11,15,23,22,33,23,22,15,18,23,20,21,30,34,37,35,40,32,44,52,53,46,44,40,49,53,54,42,55,55,48,38,47,52,55,44,48,35,32,39,44,44,38,34,39,34,22,33,21,37,22,40,24,18,24,21,15,15,21,14,11,15,15,13,12,9,10,9,11,7,7,6,5,7,8,2,4,2,5,1,3,1,,1,4 E87008,41,47,35,36,33,27,38,45,38,51,42,49,53,51,51,55,60,57,59,92,71,88,110,146,132,110,145,129,149,172,139,134,139,140,114,107,125,140,112,123,103,95,94,108,96,82,85,64,86,71,79,79,88,78,71,76,60,57,53,56,63,47,55,52,49,37,39,42,32,26,29,26,16,25,26,24,19,19,13,12,17,12,15,10,11,13,9,7,8,6,5,7,2,,1,3 E87009,7,11,6,17,8,13,11,9,11,11,19,16,13,11,20,13,20,16,18,17,11,26,15,26,25,30,25,29,44,34,31,47,33,34,38,30,29,39,38,41,45,41,48,40,58,39,37,29,33,39,35,34,34,39,20,31,30,28,34,32,42,19,31,19,21,21,23,15,19,17,23,22,17,16,14,20,15,14,7,14,10,8,8,5,6,8,2,4,5,5,5,5,3,1,1, E87010,9,15,11,23,13,25,11,19,14,16,26,25,15,32,20,18,25,18,13,17,14,12,17,14,21,32,35,30,43,42,36,45,49,57,51,52,74,74,59,75,92,57,88,87,82,76,80,81,67,79,82,75,67,76,58,60,44,44,49,51,50,50,43,35,37,30,21,32,28,24,18,19,17,13,19,13,12,19,20,19,15,10,9,6,5,3,3,4,2,,2,2,,1,,5 E87011,20,30,23,32,31,34,33,33,29,42,41,52,36,42,45,37,46,60,41,53,47,48,69,60,86,77,81,93,80,109,78,79,75,88,72,71,79,79,74,71,61,59,58,66,81,63,63,69,69,55,57,66,45,48,63,59,49,42,51,53,41,54,42,30,42,24,44,22,32,32,18,24,18,28,16,18,19,19,11,15,19,10,7,7,14,7,9,5,2,6,2,2,4,6,4,6 E87013,50,56,68,67,79,61,74,64,63,82,73,67,73,81,75,80,67,72,75,74,66,78,81,111,116,108,131,119,143,148,122,125,122,125,120,136,146,129,121,122,138,149,145,136,134,135,142,125,124,132,154,159,115,132,139,109,96,116,103,99,110,94,102,83,96,77,69,61,50,63,47,44,47,44,52,45,44,51,37,41,39,36,43,17,28,13,20,20,12,11,7,7,7,4,9,6 E87016,46,51,47,74,50,47,63,56,57,71,73,65,76,58,68,65,75,50,59,55,56,76,68,68,79,78,80,76,85,87,77,83,102,79,84,76,121,110,87,103,88,116,86,101,105,108,90,84,103,94,90,92,123,88,92,94,73,90,73,72,62,80,88,61,64,63,49,41,51,45,46,36,47,44,30,38,34,37,40,29,38,37,24,23,25,18,16,9,13,8,6,14,7,7,4,8 E87021,28,29,16,19,23,20,15,26,14,13,12,16,21,14,15,19,21,21,15,17,19,20,21,20,43,28,36,35,46,46,36,44,35,40,55,53,53,38,44,41,41,33,43,44,45,29,36,36,29,39,34,19,37,38,36,42,30,32,28,39,26,43,28,26,24,31,34,21,23,25,24,15,26,13,16,21,13,13,21,11,19,19,11,14,7,7,2,8,4,5,3,3,3,,1,1 E87024,26,15,28,15,23,35,21,23,28,32,33,26,29,26,33,35,42,41,49,46,43,26,32,25,45,33,47,46,50,38,47,54,40,38,50,55,36,42,37,36,46,36,42,41,46,61,36,42,39,44,44,41,37,41,49,50,48,50,30,73,52,53,47,34,36,44,31,21,28,26,22,17,13,14,19,19,12,22,7,15,13,11,8,7,13,9,8,6,11,4,6,4,4,1,2,4 E87026,6,3,5,4,5,4,17,12,5,11,6,10,11,7,5,11,10,13,13,6,14,16,15,8,13,18,11,13,15,17,24,19,13,22,19,14,27,27,21,28,22,19,32,22,26,21,15,26,18,16,22,22,18,15,23,29,21,19,14,20,13,23,30,25,20,14,16,15,12,12,14,8,12,13,11,10,8,5,5,5,8,8,7,3,8,7,4,2,1,1,,,,1,1,1 E87029,32,35,36,45,38,41,40,44,55,50,45,57,67,54,49,51,47,61,47,45,50,39,39,50,56,55,54,47,63,60,66,65,62,70,60,51,62,68,65,69,75,57,85,69,71,85,70,72,71,88,80,64,69,60,61,77,56,55,60,61,56,68,62,52,35,34,42,40,39,33,29,29,18,28,21,15,23,26,27,17,16,13,17,14,11,9,13,7,8,4,9,5,1,2,2,1 E87034,37,48,51,48,47,40,38,63,66,63,55,57,54,62,69,59,52,67,64,68,83,76,99,101,93,114,146,163,162,157,165,158,174,151,167,145,128,132,143,153,136,121,117,147,121,134,125,102,99,89,96,102,82,100,110,94,92,92,110,98,88,86,74,80,78,70,63,69,54,47,53,52,53,48,31,37,36,34,38,29,27,24,20,17,17,13,16,14,7,5,7,5,5,2,3,6 E87037,24,29,28,44,34,42,47,37,33,42,35,32,47,42,47,42,43,44,51,42,53,57,58,77,100,116,123,139,141,143,163,130,158,127,174,139,139,142,115,115,127,108,111,96,126,97,105,101,86,96,93,95,99,76,76,76,77,73,83,78,73,77,40,50,45,53,35,53,48,41,26,28,23,31,33,34,27,26,26,23,22,25,21,11,11,5,11,7,12,5,9,2,6,3,2,11 E87038,17,14,16,10,23,15,14,11,23,18,17,19,28,34,24,24,25,32,32,21,35,29,27,19,37,36,47,31,46,39,42,32,36,40,39,34,55,41,27,51,40,41,37,35,45,34,38,42,45,39,27,42,19,25,28,30,37,31,35,38,28,24,36,22,22,23,21,23,13,24,25,17,18,12,15,19,19,18,7,15,6,8,5,6,4,8,3,2,3,3,1,3,2,,1,1 E87043,21,19,17,28,19,36,24,35,33,32,36,41,43,52,51,51,42,40,44,44,38,39,43,43,54,58,46,49,55,40,49,56,52,55,53,48,60,53,49,57,63,58,66,69,64,58,71,62,59,80,72,86,64,78,55,44,48,40,44,51,49,29,33,17,24,21,14,16,20,12,18,14,15,16,9,17,14,17,10,5,13,12,8,5,3,3,2,4,3,2,2,1,,4,2, E87045,3,11,7,15,11,12,6,17,7,11,10,12,4,10,13,13,17,28,24,39,36,35,56,50,49,64,48,71,57,63,51,56,66,60,62,58,68,46,68,47,43,30,51,53,49,44,42,35,37,35,42,38,27,34,42,39,42,46,44,32,42,39,37,23,33,36,25,25,17,21,21,14,10,18,17,15,12,9,5,8,9,8,5,7,6,4,7,2,2,2,2,1,1,2,4, E87046,70,83,74,75,60,65,57,55,56,64,54,47,78,51,51,48,59,49,53,41,32,40,43,65,73,116,120,154,141,139,158,165,154,156,172,154,131,131,133,144,146,95,127,144,133,115,103,104,98,79,104,90,76,96,60,76,68,66,68,54,48,38,57,49,36,48,29,37,34,29,26,16,18,29,28,24,23,18,17,18,10,12,4,7,8,6,7,7,4,4,5,2,4,,1,1 E87047,7,8,15,6,7,9,12,12,6,10,6,15,17,15,12,27,23,15,31,22,28,38,36,65,41,72,83,79,78,94,83,81,81,84,76,81,75,75,58,66,65,63,59,52,66,68,58,62,45,53,64,57,51,52,58,54,55,46,49,52,48,47,49,54,37,41,30,32,31,24,24,34,15,36,25,19,17,14,15,18,12,16,13,4,8,4,9,1,3,,1,,4,2,1,1 E87048,12,8,9,11,8,11,14,9,18,10,13,14,17,9,15,11,11,13,11,15,10,14,16,23,18,24,23,14,29,26,28,35,31,35,32,30,29,38,26,42,43,28,43,35,35,37,40,44,40,29,35,32,41,41,36,34,27,24,31,30,35,30,31,15,21,16,17,17,14,11,16,9,15,14,14,9,17,17,15,13,14,12,6,4,6,5,3,2,5,5,3,5,1,2,,2 E87052,16,6,8,9,9,15,11,20,18,11,15,14,15,17,30,14,22,13,17,24,17,16,20,28,29,23,34,37,37,26,44,31,29,29,35,35,39,41,28,37,40,24,26,32,39,39,30,29,31,31,35,33,40,28,36,22,34,22,37,29,28,25,30,24,22,26,25,24,21,13,13,12,14,15,15,9,10,10,11,6,5,2,9,6,5,1,3,3,5,6,1,3,2,1,,3 E87061,69,65,55,77,60,76,74,62,65,55,79,60,72,69,51,45,69,58,57,46,36,42,57,64,71,69,91,94,92,124,108,120,138,136,139,175,163,157,174,177,200,184,162,191,172,163,130,108,123,132,115,105,99,88,97,68,101,86,74,67,73,75,54,63,45,57,37,56,44,33,33,32,33,36,35,30,28,32,28,29,29,27,30,7,11,22,15,8,7,4,10,4,1,3,3,3 E87063,71,54,48,66,61,56,58,65,55,69,58,54,64,59,52,54,55,47,51,76,55,67,87,100,123,122,149,161,171,158,180,199,204,198,223,200,196,207,190,210,164,188,170,168,142,143,128,118,127,95,115,104,89,72,80,80,56,68,67,53,65,65,46,45,49,34,36,38,18,32,27,24,20,27,14,23,28,23,22,12,16,10,13,4,9,4,7,,2,6,4,4,4,,2,3 E87065,18,14,11,18,13,14,12,13,18,7,12,12,17,10,14,23,12,16,11,19,21,18,14,28,23,27,40,43,32,31,45,45,35,39,33,27,36,38,30,31,26,32,31,33,37,24,21,30,25,18,20,24,19,16,28,25,20,20,24,22,29,24,28,20,19,19,17,13,17,12,13,16,16,8,7,8,7,12,6,8,10,5,3,4,6,4,2,5,3,1,,,,,1,2 E87066,16,13,15,17,18,14,20,16,27,23,21,17,27,21,22,20,28,24,59,68,57,58,49,56,55,66,63,88,95,76,86,86,89,83,94,108,98,88,107,90,77,84,96,97,115,86,99,93,94,100,82,83,56,64,80,70,69,57,56,55,60,43,50,37,44,49,29,33,25,30,21,20,15,15,18,13,16,24,14,9,15,11,18,11,5,4,4,3,4,6,2,2,,2,3,3 E87067,46,47,45,42,41,47,34,52,36,50,42,41,38,45,55,45,55,41,50,45,46,51,45,61,47,74,65,65,74,85,70,80,73,77,94,102,99,103,88,107,100,89,94,109,103,115,111,86,90,90,95,80,88,110,98,83,86,77,81,85,68,90,94,77,65,64,71,64,47,49,46,39,40,36,54,35,27,27,27,21,22,23,18,14,14,10,9,7,12,4,6,2,3,1,4,2 E87069,2,2,6,1,4,1,4,7,3,4,10,7,4,5,5,4,7,8,4,9,7,7,5,12,10,9,18,23,23,28,33,37,44,43,65,53,41,48,57,41,53,56,50,45,36,37,51,38,39,32,38,37,40,35,45,31,38,36,32,30,20,28,25,20,31,20,18,14,10,11,10,12,2,4,10,2,10,6,6,1,2,7,4,,1,,,1,1,,,1,2,1,, E87070,15,13,24,14,21,17,26,26,33,24,33,20,27,31,22,32,32,24,15,32,10,26,30,37,51,50,62,74,53,57,104,108,92,105,108,98,98,80,73,73,82,73,87,66,76,86,66,77,62,68,69,61,73,74,48,56,58,48,50,46,45,52,39,43,39,26,27,19,24,30,21,20,13,23,17,19,17,16,17,10,12,13,8,6,6,1,7,7,5,3,5,1,1,1,2, E87609,94,96,86,92,91,125,110,132,142,122,109,139,129,136,138,143,111,111,109,96,97,99,91,100,113,112,125,142,143,145,163,168,169,174,199,211,228,183,191,188,199,203,193,217,193,224,177,189,199,188,179,181,160,167,133,139,136,117,114,123,119,112,103,79,96,76,87,76,55,70,55,45,54,57,51,60,56,49,56,48,54,49,31,23,25,23,27,16,18,9,12,12,14,5,9,7 E87637,80,75,74,71,80,97,88,89,86,85,94,100,109,105,99,120,108,110,100,110,114,101,111,128,160,184,195,221,210,222,213,233,206,229,240,252,195,213,225,236,211,217,206,176,211,224,205,163,142,167,165,148,159,125,161,159,130,128,133,128,142,123,94,75,95,80,67,80,58,60,51,50,45,50,34,45,31,32,27,22,21,24,24,23,12,18,12,6,8,7,8,8,5,4,4,5 E87648,14,11,9,14,12,6,14,7,9,10,8,14,8,10,11,8,12,11,12,13,14,19,28,32,28,22,31,39,45,48,51,47,64,39,52,46,50,34,30,45,47,43,35,45,34,36,38,35,39,30,24,30,36,33,29,27,34,38,31,29,33,23,26,27,28,26,25,20,24,21,20,14,15,13,17,19,9,18,11,6,4,12,10,7,8,5,8,2,7,4,3,,2,3,1,2 E87663,10,11,6,9,13,11,14,15,16,16,21,13,19,26,22,30,22,35,19,30,27,30,20,24,26,20,23,28,21,24,25,24,22,25,34,19,21,25,24,21,46,28,31,34,43,42,39,41,45,39,41,53,35,35,49,30,38,32,32,19,25,28,32,18,22,17,15,15,15,10,20,11,13,13,4,12,8,8,10,5,2,4,3,6,3,7,3,2,1,2,1,,1,,1,2 E87665,21,13,19,18,12,20,29,29,23,33,19,19,26,28,23,30,21,24,35,26,33,35,32,48,36,52,40,51,29,52,44,50,42,38,45,33,50,36,37,45,50,34,39,33,32,48,45,44,35,46,46,54,44,49,47,62,44,48,52,56,51,53,46,60,51,38,32,36,42,26,22,38,32,22,27,23,22,14,14,23,18,22,12,9,11,10,11,8,5,8,4,4,2,1,1,4 E87677,3,4,2,7,7,4,4,9,11,7,11,8,6,5,6,7,14,22,370,679,765,719,949,1128,1003,894,812,810,657,577,524,442,311,290,282,300,359,248,194,171,118,14,26,7,13,19,12,14,22,18,13,21,10,14,15,13,8,13,14,16,10,9,7,13,10,10,3,12,7,5,8,1,7,7,4,4,6,8,12,5,7,2,,4,3,1,3,3,5,6,1,2,,5,,2 E87681,48,55,44,51,62,63,66,62,64,68,68,47,45,51,43,48,47,37,35,43,42,48,60,68,88,95,112,147,140,144,184,180,189,193,185,204,235,208,210,176,186,210,163,156,165,169,148,136,136,161,128,112,108,113,95,117,96,93,87,72,83,73,77,71,52,46,50,38,44,39,40,23,29,21,32,33,21,32,31,27,38,23,21,20,8,15,10,10,11,,9,8,4,4,1,8 E87701,18,20,24,18,30,25,24,36,28,40,45,34,33,41,43,38,42,39,38,38,44,34,45,41,53,46,52,53,68,47,55,53,51,46,56,65,55,62,72,71,67,70,81,90,81,96,86,91,83,88,88,88,77,87,68,72,73,75,59,74,64,61,58,63,68,45,53,45,34,38,32,35,24,25,30,36,26,37,32,29,18,24,25,23,22,16,9,15,11,7,10,7,4,3,,8 E87702,9,11,17,9,2,9,5,10,8,8,13,5,14,12,11,9,10,6,7,9,7,8,12,16,23,22,22,20,27,23,22,34,24,25,23,39,19,37,30,27,28,22,21,32,28,37,19,18,30,25,27,31,30,27,22,19,21,24,35,15,25,24,30,24,17,17,16,9,14,16,11,10,11,13,12,16,17,16,5,5,9,7,13,2,4,5,6,5,1,4,4,3,1,3,3,1 E87706,14,22,13,14,7,12,24,18,25,21,29,19,25,26,29,23,18,26,23,27,40,24,31,31,23,28,22,37,28,38,31,40,33,23,36,31,45,32,34,37,38,31,37,39,41,43,46,30,33,34,29,35,36,35,44,30,33,42,39,38,44,40,44,36,34,30,27,26,21,20,17,19,13,17,19,17,14,16,12,4,11,12,8,5,5,9,7,3,1,2,2,1,1,,,1 E87711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,1,,1,,1,,2,5,2,4,3,10,7,7,7,9,13,10,13,13,11,16,14,7,9,15,10,11,9,5,4,8,7,5,8,13 E87714,4,11,7,9,5,3,7,8,4,7,11,5,16,10,15,9,12,12,14,25,30,25,38,69,65,69,72,85,75,77,93,94,86,81,84,98,85,81,89,87,86,82,89,90,80,87,76,69,76,76,64,57,68,79,67,73,63,57,51,38,46,56,42,35,33,18,23,36,19,24,14,17,13,7,10,14,12,5,7,2,4,4,4,7,3,2,2,,2,2,,1,,,,1 E87715,9,18,13,29,25,25,29,28,46,49,47,48,59,62,41,44,46,38,37,36,39,32,40,42,46,39,37,38,33,33,45,49,58,46,63,60,70,55,74,88,85,89,66,91,88,93,126,112,82,77,89,82,71,73,41,37,58,45,46,55,52,49,43,34,34,36,36,27,25,23,18,16,20,27,18,23,26,19,22,12,15,12,13,8,9,10,9,9,6,1,7,1,1,1,2,2 E87720,20,19,25,22,26,30,20,29,36,30,39,43,40,36,32,35,35,47,34,32,41,49,50,61,69,53,90,88,88,110,89,86,86,107,108,96,94,105,96,97,104,98,111,109,125,116,93,87,83,107,90,71,72,82,56,48,52,59,48,46,60,42,44,48,45,32,28,21,32,26,31,21,12,15,17,8,17,9,8,8,6,12,7,5,4,6,6,7,1,2,2,,,,,1 E87722,17,16,15,20,16,15,23,25,18,23,16,19,16,20,19,19,21,23,31,24,23,26,34,52,60,69,57,76,101,99,101,116,94,102,125,121,105,114,83,87,107,89,86,83,52,79,87,74,85,71,69,64,45,62,42,30,25,40,31,27,26,29,25,29,20,16,23,25,16,18,16,9,9,10,12,8,11,8,8,5,11,7,5,6,5,3,2,,3,4,2,1,,,2, E87733,18,10,18,22,14,20,15,19,23,23,27,29,25,30,33,23,23,21,21,31,37,30,24,25,31,34,29,38,43,37,42,48,42,50,53,50,54,47,34,57,46,38,40,56,45,46,43,33,32,40,36,49,33,42,38,37,38,39,34,45,22,39,29,23,28,27,29,27,26,12,14,14,17,17,12,15,11,6,11,8,8,4,8,6,6,6,6,4,2,2,1,,,1,1,3 E87737,18,19,22,18,19,17,15,21,24,16,24,23,27,25,26,23,32,31,38,39,38,48,52,70,73,85,87,112,111,103,125,116,131,136,140,140,104,118,121,93,128,104,108,107,97,91,115,84,86,91,96,87,78,84,67,61,59,67,53,66,67,58,33,43,27,27,39,33,29,40,36,23,26,27,21,19,26,21,19,17,19,16,23,8,11,11,9,9,10,8,6,5,1,3,2,6 E87738,33,42,33,42,33,36,47,45,57,55,64,52,77,54,70,71,75,78,55,57,66,75,66,76,72,99,71,94,93,110,105,124,107,109,108,138,116,121,127,130,120,140,123,131,136,140,114,129,140,141,165,159,162,151,140,115,130,117,120,115,148,140,124,82,99,94,98,66,69,79,67,56,66,41,52,54,40,43,42,44,51,37,28,27,24,23,18,24,12,22,14,6,8,3,2,8 E87739,43,34,35,23,30,24,23,29,41,43,32,31,43,42,41,32,44,35,34,37,35,56,80,91,93,116,115,136,147,117,105,113,125,111,112,113,98,106,86,80,83,76,85,91,78,65,57,59,53,59,63,76,68,60,81,65,63,79,63,49,52,47,41,46,57,38,29,27,28,23,16,13,20,23,15,23,20,24,22,17,20,11,5,13,8,8,3,4,3,6,5,3,3,4,4,2 E87740,,,,,,,,,,1,,,,,,,,,,,,7,6,7,5,10,15,28,21,28,22,31,41,41,48,53,53,49,62,51,67,51,70,60,52,72,67,51,53,50,59,51,61,51,38,34,46,47,37,29,31,38,35,27,28,15,15,12,20,8,8,10,6,5,5,4,1,1,1,2,1,1,1,1,,1,1,,1,,,1,,,, E87741,15,9,9,13,9,18,26,14,14,16,14,16,26,17,16,20,17,15,13,17,15,21,22,14,21,22,25,31,28,21,27,30,26,28,22,34,33,39,32,32,27,33,23,24,30,35,35,31,31,34,40,47,30,38,27,31,29,28,27,25,14,17,25,19,21,22,13,14,19,15,8,12,7,5,5,12,4,3,4,4,5,4,3,3,3,8,1,1,3,6,1,,,1,,2 E87742,16,15,14,20,12,13,12,12,12,11,10,17,8,20,11,14,15,17,19,19,18,29,16,20,18,30,23,33,31,40,20,29,30,35,28,25,29,30,34,21,14,26,16,36,20,16,26,28,19,34,24,17,28,18,22,23,23,21,26,19,22,24,22,16,23,23,17,14,13,7,5,9,7,8,10,10,5,6,10,7,4,5,3,3,4,3,,4,5,5,1,2,1,2,,5 E87745,41,29,33,27,35,13,26,22,20,33,26,33,29,35,34,30,39,31,30,26,25,22,32,40,55,78,76,82,76,107,100,141,128,144,121,84,114,92,98,114,99,90,92,93,97,92,84,97,71,89,81,97,80,73,56,64,67,68,44,72,58,64,56,44,49,49,23,38,22,20,25,22,27,30,26,20,15,20,17,18,17,18,18,11,7,15,4,7,7,6,2,1,1,5,2,1 E87746,23,16,13,16,14,23,21,12,8,22,22,9,15,16,18,18,23,32,19,23,16,19,29,40,60,57,47,60,47,70,49,52,48,52,66,47,47,50,50,45,39,57,48,47,35,45,47,38,49,44,50,53,47,43,40,40,32,30,39,20,29,23,29,27,26,27,24,19,17,14,17,17,5,12,11,5,6,6,8,6,7,5,5,1,2,2,1,1,1,1,,3,,2,1,1 E87750,14,11,10,19,12,13,17,16,13,19,17,19,13,11,24,13,15,12,23,21,17,23,33,33,35,38,46,30,37,40,44,41,36,33,44,35,39,41,54,46,35,38,49,34,44,41,58,50,57,66,68,62,67,50,37,36,38,43,33,29,25,30,25,23,19,20,16,11,17,16,8,13,11,9,16,13,8,13,9,7,10,6,5,3,,1,3,4,4,,5,,1,1,1,1 E87751,13,10,6,12,7,10,2,5,9,16,9,4,7,16,13,9,12,8,17,16,15,16,13,11,29,20,12,20,23,16,17,24,17,20,20,14,18,14,21,21,12,11,20,18,21,13,13,17,17,10,13,14,12,21,14,18,13,10,14,10,24,16,11,9,10,10,15,6,6,10,7,4,3,4,7,8,2,2,2,5,2,2,2,2,5,1,2,1,2,1,1,4,,,,1 E87753,29,39,44,41,44,44,50,51,58,40,55,40,60,62,41,54,41,42,39,34,42,43,42,56,70,58,74,81,87,69,97,89,99,124,121,112,113,130,114,120,106,95,102,106,126,97,89,108,95,104,87,99,88,102,83,77,76,86,69,82,73,83,75,46,60,57,51,62,55,31,31,45,30,22,28,20,30,39,18,20,17,18,16,20,8,12,7,7,4,4,4,5,2,1,1,2 E87754,17,7,15,14,16,18,23,27,34,37,29,41,36,37,43,27,36,38,22,36,26,19,33,37,47,45,49,56,59,53,69,59,70,65,55,72,78,84,78,72,79,68,84,83,80,75,59,67,60,66,69,67,59,58,52,54,49,43,53,51,51,30,33,22,20,28,31,30,14,14,25,22,18,7,15,21,15,5,10,13,9,13,10,7,8,4,9,2,6,3,4,2,2,1,,4 E87755,16,11,11,13,10,9,14,17,23,4,17,11,20,25,14,24,25,21,20,26,23,24,24,20,28,20,28,36,26,35,44,33,37,33,33,41,31,25,31,27,28,31,14,22,29,22,26,28,18,17,25,31,28,18,30,22,18,19,24,16,18,16,25,33,18,12,13,7,8,10,7,9,8,7,4,9,8,5,3,5,3,7,4,3,3,1,1,3,2,,2,,3,1,4, E87756,12,14,20,15,16,16,22,22,14,18,15,15,17,29,24,29,33,27,30,16,20,27,19,27,33,21,24,28,38,23,28,31,39,21,27,38,33,26,17,38,35,43,39,34,53,41,42,50,42,39,66,29,39,42,68,38,44,44,38,37,26,36,36,25,36,22,20,11,23,19,22,12,11,13,17,14,8,10,9,10,5,2,3,,4,3,8,2,3,3,1,,2,,1,2 E87762,38,23,34,25,18,16,28,30,34,21,26,35,29,38,41,34,35,36,36,28,36,32,38,44,71,56,71,89,84,95,90,94,98,101,76,79,81,82,80,60,68,76,70,66,67,80,75,62,68,64,70,76,57,53,63,64,71,48,56,64,50,62,54,48,45,50,32,29,32,29,30,21,31,23,26,28,23,24,25,28,13,13,15,9,9,10,8,5,2,6,2,3,3,4,,7 E87768,,,,,,,,,,,,,,,,1,1,11,245,474,578,672,834,862,863,682,665,667,560,484,410,372,278,253,208,187,153,112,92,84,73,71,47,49,40,28,14,11,13,7,7,6,7,10,6,3,7,6,4,5,3,4,2,6,2,2,1,1,4,1,,,,2,1,1,,1,,,,,,,,1,,,,,,,,,, E87772,,,,,,,,,,,,,,,,,,,,,1,1,3,4,4,5,5,1,7,8,9,8,4,8,9,6,9,17,21,11,11,8,14,14,11,13,12,12,11,10,8,9,12,6,9,8,7,8,7,5,3,5,3,6,3,5,,2,,,3,,,1,,,,,2,2,,,,1,,,,,,,,,,,, Y00200,19,12,13,22,19,12,21,12,21,26,21,24,15,12,13,19,10,18,12,17,9,15,14,12,17,32,41,38,44,36,45,50,55,52,58,46,63,55,50,56,41,55,51,48,41,47,18,35,34,33,35,21,23,39,25,25,31,28,24,29,17,20,20,22,15,21,22,17,8,9,7,14,9,10,7,8,5,3,12,10,4,4,5,1,7,,2,1,2,1,1,2,,,, Y00206,58,58,42,64,60,76,55,73,65,74,62,40,72,61,71,63,53,62,53,54,40,65,55,57,82,86,75,106,115,102,109,121,94,117,99,134,121,122,124,119,109,96,99,105,91,90,80,65,76,78,75,70,65,60,49,79,66,62,54,55,50,38,34,33,36,42,39,21,21,15,20,16,17,16,18,10,12,6,12,7,4,11,5,4,6,2,6,4,3,8,3,1,2,2,1,1 Y00352,160,144,144,145,146,153,174,174,185,172,172,175,195,149,175,160,171,158,162,201,222,231,263,284,328,280,268,343,250,285,249,236,259,229,226,237,226,248,241,233,215,199,198,189,178,205,158,167,177,178,139,163,104,136,109,116,118,94,94,101,94,83,72,67,81,66,74,46,48,48,38,43,38,20,24,23,14,29,15,7,19,7,13,4,9,3,9,1,3,4,5,2,3,1,,3 Y00507,22,12,14,14,16,13,19,18,19,13,18,18,17,14,15,17,12,15,17,11,15,20,31,41,39,37,34,39,38,42,42,39,46,35,31,37,38,32,40,21,23,29,26,27,23,24,25,18,19,18,20,20,20,19,16,13,14,13,13,18,17,22,14,11,12,12,12,10,8,11,7,7,10,12,5,7,10,4,5,2,6,5,3,2,1,4,2,,,1,2,1,,,, Y00902,10,11,14,14,11,12,20,12,18,21,14,19,29,16,30,29,25,16,30,26,22,19,25,31,23,20,35,24,27,30,31,32,30,36,43,38,27,48,33,33,43,31,33,38,32,34,40,34,37,29,36,43,34,39,35,27,23,27,24,33,34,15,22,18,11,10,13,15,13,5,4,6,6,5,5,3,4,4,2,5,2,2,3,1,3,6,,2,,,,,2,1,, Y01011,51,50,56,58,70,59,69,58,71,51,55,81,74,62,67,53,60,53,57,55,49,39,60,49,65,71,82,71,84,92,115,125,107,119,136,128,140,121,134,107,131,129,114,111,107,107,121,79,76,84,85,74,88,76,60,70,51,60,57,64,43,75,41,50,42,32,33,24,27,31,17,18,19,32,25,12,21,16,18,12,19,9,9,6,11,7,6,12,4,5,,2,3,1,2,2 Y01090,68,55,62,53,63,69,45,38,37,50,48,39,42,42,51,34,45,36,35,41,44,52,60,94,94,92,118,149,137,139,144,126,153,103,105,126,91,113,76,85,98,82,92,66,72,57,55,45,68,55,41,44,44,52,45,43,38,29,32,27,26,22,27,32,22,19,21,27,23,18,12,21,16,16,20,12,13,9,6,4,4,5,6,6,5,3,2,8,,4,1,5,2,2,1,1 Y01221,20,10,7,10,15,15,10,13,16,16,15,17,23,13,17,23,24,18,23,25,27,30,25,34,52,27,42,34,35,43,31,27,40,23,35,51,41,34,42,30,33,26,31,22,42,24,35,25,32,26,24,26,15,30,22,22,25,13,13,14,16,20,14,20,13,15,12,22,14,21,16,18,10,14,14,4,6,10,5,12,4,3,3,2,2,8,4,4,6,2,,2,,,,1 Y02342,66,48,50,47,52,50,56,68,55,81,71,71,70,70,82,80,76,60,69,77,75,117,108,131,138,144,120,127,109,108,105,78,93,108,109,85,129,104,110,102,106,107,97,93,103,88,95,97,99,121,69,77,79,74,81,76,52,56,50,54,52,48,34,42,42,33,32,19,20,20,17,16,13,11,11,17,5,7,2,6,4,3,1,7,4,4,7,3,,,1,3,,,,1 Y02589,38,43,32,34,37,44,44,35,49,37,48,50,43,30,52,37,38,44,32,37,36,49,69,81,115,107,111,117,128,124,140,144,177,166,175,183,170,202,185,157,143,154,129,117,94,75,85,65,72,73,71,58,47,52,56,54,46,36,32,29,33,28,32,31,20,20,20,16,14,14,13,13,11,3,6,9,5,6,3,5,4,1,3,,4,2,,2,1,,1,1,2,,,1 Y02671,75,108,98,102,104,138,130,145,134,158,153,152,153,144,145,117,129,110,124,102,93,113,81,114,132,110,137,148,155,142,142,148,128,179,181,210,227,236,267,259,232,254,252,238,193,218,191,175,180,176,169,139,148,160,115,98,108,119,99,88,81,67,56,65,71,59,59,35,41,34,26,35,40,26,25,21,10,21,15,14,9,8,11,7,8,7,6,2,1,2,,1,1,,2,1 Y02672,85,77,64,89,75,99,106,114,110,108,115,126,101,104,119,88,84,65,72,67,66,62,87,85,93,80,90,112,107,100,121,137,139,154,157,139,136,151,167,151,174,132,163,155,191,144,131,114,127,103,93,97,78,75,70,70,65,58,46,43,65,47,41,46,47,38,44,29,23,11,29,14,19,20,15,21,13,8,11,6,6,11,2,9,4,1,4,4,3,6,1,1,1,1,,1 Y02692,91,96,104,93,108,98,85,100,94,102,77,85,93,103,70,79,77,60,72,72,93,106,134,148,226,213,230,263,262,264,225,243,227,211,245,266,239,235,252,220,220,198,189,202,170,162,151,118,127,118,104,96,95,87,85,81,81,83,66,65,46,55,47,44,46,35,32,20,18,24,15,17,15,12,12,9,7,7,10,5,3,1,4,4,2,2,2,2,,,2,2,,,, Y02842,44,32,28,40,36,44,29,39,46,44,47,29,37,49,32,46,43,50,38,32,39,46,57,88,89,90,83,99,86,117,92,97,104,91,90,109,95,103,88,85,91,81,79,74,90,78,57,61,73,52,73,58,46,49,44,45,46,34,49,43,48,45,31,26,33,20,15,24,21,20,16,19,15,16,10,11,14,5,4,7,6,2,2,3,1,2,1,2,2,2,,2,1,,1,1 Y02906,44,40,33,43,44,56,41,37,49,56,37,34,55,49,44,51,41,43,61,50,40,40,52,80,96,100,116,121,135,132,144,169,133,134,151,138,125,115,114,109,119,94,106,80,81,82,64,72,63,52,47,47,61,46,47,43,30,36,36,31,28,31,27,22,23,16,20,21,13,25,14,10,11,12,10,17,6,9,7,8,9,6,7,6,1,2,6,3,2,2,1,1,2,,1,2 Y03441,38,35,42,35,30,30,31,29,34,30,28,26,30,17,31,19,24,23,27,29,32,40,72,82,106,128,128,140,163,173,163,152,163,153,154,160,132,153,135,151,134,106,97,71,80,87,74,60,58,53,56,60,41,45,34,37,47,48,32,27,33,42,36,24,19,20,25,16,15,10,18,10,9,6,7,9,9,10,3,4,4,4,4,1,3,3,3,1,2,2,,,1,,,1 Y03528,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,1,,,,,1,1,,,,2,1,,1,,,1,1,,,,,,,1,,1,,1,1,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, Y04225,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,1,,,1,,,,1,,1,1,1,,2,1,2,1,2,1,,4,3,6,2,3,3,9,8,5,10,8,5,9,7,9,11,8,7,9,8,13,13,11,8,6,10,13,9,24,23,15,14,16,14,16,22,19,14,16,20,13,12,16,9,5,7,7,13 Y05080,12,12,28,14,14,16,15,17,18,22,13,22,19,20,14,14,14,16,12,11,20,21,27,29,34,36,29,50,44,36,49,35,37,34,39,45,33,35,36,29,33,35,29,34,36,19,26,25,20,22,20,24,15,15,17,15,12,22,19,11,13,10,14,10,16,17,13,8,15,8,9,12,8,12,4,9,3,4,6,3,6,,1,1,2,,2,,,1,3,3,,2,, Y06826,,,,,,,,,,,,,,,,,,,,,,,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 L85001,76.0,60.0,74.0,79.0,80.0,75.0,82.0,68.0,91.0,99.0,114.0,86.0,109.0,122.0,121.0,137.0,157.0,176.0,165.0,110.0,71.0,67.0,86.0,87.0,69.0,83.0,114.0,91.0,95.0,103.0,94.0,112.0,120.0,119.0,117.0,117.0,133.0,148.0,122.0,126.0,129.0,112.0,139.0,106.0,128.0,108.0,107.0,94.0,103.0,105.0,123.0,128.0,113.0,128.0,121.0,116.0,114.0,100.0,113.0,129.0,123.0,109.0,97.0,99.0,90.0,83.0,102.0,92.0,109.0,69.0,97.0,60.0,80.0,90.0,94.0,69.0,90.0,70.0,86.0,59.0,55.0,58.0,55.0,45.0,24.0,42.0,38.0,30.0,24.0,16.0,13.0,16.0,12.0,9.0,12.0,20.0 L85002,36.0,41.0,47.0,48.0,43.0,45.0,42.0,35.0,52.0,58.0,66.0,72.0,67.0,67.0,74.0,67.0,83.0,100.0,64.0,62.0,61.0,63.0,45.0,59.0,43.0,53.0,44.0,43.0,47.0,54.0,61.0,65.0,64.0,71.0,63.0,63.0,51.0,65.0,65.0,68.0,63.0,66.0,58.0,61.0,61.0,62.0,57.0,49.0,56.0,57.0,71.0,72.0,62.0,69.0,75.0,95.0,82.0,94.0,84.0,80.0,86.0,83.0,87.0,84.0,95.0,74.0,82.0,89.0,80.0,75.0,69.0,59.0,92.0,72.0,65.0,67.0,74.0,79.0,87.0,53.0,59.0,55.0,53.0,46.0,33.0,38.0,38.0,32.0,31.0,22.0,22.0,8.0,18.0,4.0,4.0,17.0 L85003,5.0,9.0,11.0,14.0,11.0,15.0,13.0,15.0,14.0,10.0,10.0,15.0,19.0,13.0,17.0,9.0,10.0,25.0,13.0,14.0,12.0,13.0,16.0,13.0,11.0,13.0,17.0,19.0,18.0,16.0,14.0,14.0,18.0,19.0,13.0,26.0,21.0,14.0,14.0,17.0,13.0,16.0,17.0,16.0,16.0,21.0,17.0,15.0,19.0,15.0,10.0,17.0,20.0,23.0,18.0,24.0,35.0,40.0,25.0,39.0,36.0,46.0,30.0,36.0,47.0,35.0,41.0,52.0,26.0,44.0,30.0,31.0,36.0,35.0,34.0,24.0,36.0,51.0,31.0,23.0,37.0,27.0,17.0,19.0,14.0,8.0,6.0,5.0,12.0,10.0,5.0,5.0,3.0,,6.0,10.0 L85004,34.0,35.0,40.0,38.0,40.0,45.0,57.0,51.0,57.0,60.0,66.0,56.0,59.0,68.0,56.0,72.0,65.0,60.0,61.0,58.0,60.0,38.0,51.0,43.0,50.0,59.0,52.0,54.0,57.0,66.0,51.0,65.0,54.0,64.0,70.0,60.0,53.0,60.0,61.0,70.0,63.0,58.0,63.0,58.0,69.0,71.0,62.0,66.0,47.0,82.0,82.0,71.0,72.0,91.0,88.0,109.0,106.0,110.0,92.0,91.0,109.0,92.0,98.0,106.0,85.0,86.0,83.0,93.0,92.0,90.0,94.0,98.0,86.0,77.0,95.0,79.0,86.0,91.0,101.0,63.0,59.0,64.0,59.0,48.0,49.0,45.0,34.0,29.0,31.0,24.0,17.0,9.0,11.0,9.0,4.0,11.0 L85006,42.0,40.0,52.0,48.0,59.0,63.0,41.0,63.0,70.0,70.0,61.0,53.0,61.0,62.0,68.0,57.0,67.0,71.0,62.0,52.0,53.0,61.0,43.0,47.0,56.0,57.0,46.0,45.0,71.0,55.0,68.0,71.0,63.0,60.0,73.0,66.0,78.0,74.0,69.0,60.0,72.0,83.0,54.0,84.0,61.0,67.0,66.0,64.0,67.0,60.0,70.0,72.0,58.0,82.0,73.0,88.0,88.0,83.0,74.0,70.0,78.0,79.0,70.0,57.0,71.0,62.0,53.0,47.0,38.0,41.0,56.0,49.0,46.0,55.0,47.0,55.0,45.0,56.0,45.0,36.0,27.0,28.0,32.0,18.0,13.0,16.0,17.0,17.0,12.0,11.0,4.0,6.0,6.0,3.0,3.0,7.0 L85007,29.0,38.0,34.0,39.0,46.0,44.0,37.0,35.0,42.0,51.0,49.0,44.0,59.0,49.0,52.0,50.0,48.0,52.0,47.0,43.0,56.0,47.0,34.0,44.0,39.0,44.0,58.0,48.0,47.0,59.0,56.0,55.0,49.0,46.0,60.0,43.0,49.0,52.0,49.0,50.0,45.0,46.0,71.0,52.0,53.0,45.0,49.0,55.0,57.0,42.0,55.0,50.0,62.0,54.0,82.0,67.0,70.0,84.0,72.0,84.0,58.0,75.0,92.0,72.0,101.0,72.0,84.0,88.0,79.0,68.0,62.0,77.0,53.0,90.0,73.0,85.0,78.0,80.0,84.0,68.0,65.0,49.0,52.0,44.0,33.0,40.0,25.0,31.0,24.0,19.0,23.0,7.0,4.0,7.0,7.0,9.0 L85008,113.0,135.0,138.0,157.0,119.0,148.0,171.0,164.0,172.0,184.0,146.0,174.0,155.0,166.0,188.0,164.0,186.0,170.0,156.0,145.0,152.0,134.0,131.0,140.0,131.0,192.0,165.0,153.0,188.0,174.0,166.0,194.0,176.0,189.0,185.0,209.0,213.0,211.0,203.0,206.0,201.0,198.0,224.0,184.0,211.0,196.0,184.0,192.0,167.0,189.0,173.0,190.0,168.0,204.0,229.0,206.0,185.0,198.0,210.0,227.0,219.0,219.0,192.0,215.0,170.0,152.0,169.0,172.0,143.0,140.0,150.0,152.0,134.0,142.0,163.0,128.0,150.0,126.0,144.0,106.0,104.0,93.0,95.0,61.0,63.0,52.0,39.0,43.0,35.0,39.0,20.0,19.0,17.0,10.0,14.0,15.0 L85009,24.0,35.0,32.0,38.0,41.0,39.0,43.0,38.0,35.0,47.0,46.0,58.0,52.0,56.0,53.0,50.0,50.0,48.0,47.0,51.0,32.0,35.0,39.0,40.0,36.0,32.0,65.0,48.0,47.0,47.0,43.0,48.0,53.0,49.0,48.0,57.0,45.0,67.0,49.0,47.0,57.0,40.0,45.0,45.0,48.0,40.0,46.0,45.0,43.0,40.0,43.0,61.0,72.0,66.0,70.0,67.0,66.0,81.0,75.0,74.0,77.0,90.0,80.0,94.0,89.0,84.0,96.0,86.0,92.0,84.0,91.0,96.0,95.0,73.0,86.0,87.0,92.0,83.0,88.0,67.0,77.0,63.0,62.0,51.0,34.0,29.0,38.0,28.0,24.0,22.0,11.0,14.0,7.0,5.0,5.0,17.0 L85010,46.0,60.0,58.0,68.0,56.0,65.0,56.0,66.0,71.0,75.0,84.0,71.0,67.0,82.0,62.0,72.0,69.0,73.0,69.0,57.0,65.0,70.0,59.0,56.0,77.0,74.0,79.0,82.0,79.0,74.0,84.0,95.0,82.0,84.0,94.0,73.0,73.0,89.0,85.0,80.0,74.0,83.0,75.0,63.0,66.0,88.0,62.0,66.0,63.0,81.0,90.0,88.0,83.0,84.0,98.0,98.0,84.0,103.0,110.0,107.0,101.0,116.0,119.0,83.0,101.0,107.0,76.0,85.0,101.0,78.0,92.0,90.0,73.0,72.0,66.0,77.0,63.0,99.0,93.0,75.0,63.0,55.0,55.0,55.0,39.0,41.0,34.0,33.0,27.0,13.0,11.0,11.0,10.0,7.0,7.0,9.0 L85011,21.0,26.0,32.0,31.0,33.0,29.0,38.0,43.0,55.0,36.0,59.0,42.0,61.0,44.0,68.0,51.0,38.0,59.0,47.0,44.0,35.0,36.0,44.0,26.0,34.0,39.0,31.0,34.0,40.0,32.0,40.0,36.0,45.0,30.0,48.0,48.0,41.0,43.0,39.0,37.0,43.0,51.0,45.0,43.0,51.0,51.0,46.0,47.0,39.0,43.0,54.0,52.0,66.0,54.0,65.0,45.0,74.0,76.0,58.0,65.0,85.0,61.0,50.0,62.0,66.0,47.0,65.0,53.0,64.0,49.0,46.0,46.0,41.0,43.0,44.0,64.0,55.0,58.0,45.0,46.0,43.0,27.0,41.0,28.0,29.0,19.0,18.0,15.0,15.0,18.0,12.0,7.0,7.0,11.0,4.0,4.0 L85012,78.0,63.0,73.0,77.0,72.0,75.0,78.0,90.0,89.0,91.0,96.0,102.0,99.0,101.0,95.0,100.0,77.0,101.0,87.0,79.0,72.0,73.0,70.0,62.0,76.0,65.0,75.0,73.0,83.0,82.0,101.0,107.0,120.0,92.0,101.0,102.0,69.0,112.0,83.0,100.0,96.0,82.0,101.0,98.0,109.0,89.0,71.0,88.0,98.0,89.0,96.0,96.0,111.0,105.0,120.0,110.0,117.0,132.0,108.0,137.0,90.0,110.0,115.0,100.0,96.0,106.0,101.0,107.0,105.0,74.0,83.0,93.0,92.0,85.0,92.0,89.0,95.0,111.0,106.0,76.0,73.0,69.0,64.0,38.0,36.0,30.0,33.0,38.0,28.0,22.0,9.0,11.0,8.0,8.0,2.0,15.0 L85013,12.0,9.0,4.0,14.0,13.0,17.0,12.0,15.0,16.0,30.0,26.0,23.0,27.0,24.0,25.0,21.0,17.0,17.0,14.0,16.0,12.0,9.0,17.0,9.0,13.0,25.0,21.0,18.0,20.0,21.0,18.0,25.0,16.0,19.0,23.0,21.0,17.0,22.0,27.0,16.0,16.0,18.0,19.0,20.0,30.0,32.0,17.0,28.0,37.0,21.0,18.0,14.0,18.0,26.0,35.0,33.0,28.0,20.0,32.0,54.0,45.0,42.0,50.0,45.0,33.0,38.0,31.0,34.0,37.0,29.0,34.0,40.0,19.0,30.0,39.0,31.0,26.0,30.0,33.0,29.0,22.0,20.0,18.0,11.0,8.0,12.0,10.0,8.0,7.0,8.0,3.0,6.0,3.0,1.0,1.0,5.0 L85014,60.0,57.0,68.0,68.0,63.0,76.0,66.0,79.0,76.0,79.0,100.0,83.0,97.0,88.0,82.0,88.0,95.0,57.0,77.0,68.0,69.0,65.0,62.0,75.0,72.0,87.0,88.0,86.0,94.0,107.0,101.0,123.0,105.0,104.0,116.0,127.0,125.0,105.0,116.0,112.0,121.0,122.0,109.0,125.0,110.0,102.0,99.0,87.0,83.0,90.0,82.0,95.0,99.0,97.0,87.0,93.0,89.0,108.0,96.0,99.0,95.0,76.0,88.0,85.0,70.0,80.0,85.0,71.0,57.0,65.0,66.0,38.0,61.0,59.0,52.0,45.0,51.0,44.0,39.0,22.0,21.0,30.0,33.0,19.0,21.0,17.0,12.0,9.0,12.0,12.0,12.0,6.0,6.0,5.0,1.0,10.0 L85015,62.0,85.0,78.0,79.0,81.0,77.0,85.0,83.0,95.0,88.0,86.0,77.0,85.0,94.0,81.0,85.0,97.0,76.0,81.0,79.0,83.0,72.0,67.0,76.0,87.0,80.0,96.0,102.0,112.0,99.0,122.0,120.0,123.0,118.0,103.0,94.0,107.0,103.0,95.0,106.0,102.0,89.0,89.0,86.0,104.0,90.0,92.0,82.0,79.0,103.0,84.0,83.0,98.0,83.0,107.0,108.0,85.0,97.0,98.0,102.0,102.0,107.0,114.0,88.0,82.0,92.0,78.0,92.0,67.0,64.0,68.0,74.0,78.0,62.0,82.0,74.0,91.0,60.0,61.0,60.0,48.0,44.0,44.0,40.0,36.0,30.0,21.0,26.0,16.0,15.0,13.0,11.0,9.0,6.0,4.0,11.0 L85016,34.0,40.0,43.0,54.0,44.0,52.0,47.0,63.0,73.0,67.0,63.0,70.0,74.0,60.0,83.0,65.0,60.0,70.0,70.0,59.0,58.0,72.0,54.0,52.0,71.0,55.0,76.0,76.0,66.0,65.0,75.0,63.0,55.0,66.0,54.0,67.0,76.0,72.0,87.0,73.0,69.0,71.0,63.0,87.0,86.0,77.0,72.0,72.0,71.0,75.0,90.0,79.0,97.0,130.0,96.0,112.0,112.0,119.0,120.0,104.0,132.0,119.0,138.0,128.0,115.0,100.0,134.0,120.0,107.0,121.0,100.0,117.0,109.0,111.0,117.0,104.0,121.0,124.0,117.0,101.0,85.0,77.0,78.0,69.0,48.0,52.0,49.0,22.0,28.0,26.0,24.0,16.0,12.0,15.0,9.0,14.0 L85017,54.0,42.0,48.0,42.0,49.0,61.0,51.0,54.0,58.0,59.0,69.0,63.0,57.0,60.0,64.0,60.0,71.0,57.0,58.0,54.0,52.0,37.0,52.0,50.0,55.0,54.0,64.0,84.0,85.0,70.0,47.0,65.0,77.0,89.0,80.0,83.0,69.0,86.0,67.0,63.0,76.0,70.0,56.0,78.0,59.0,63.0,65.0,72.0,60.0,51.0,64.0,62.0,78.0,75.0,59.0,75.0,57.0,76.0,62.0,58.0,65.0,57.0,82.0,59.0,47.0,63.0,55.0,53.0,58.0,45.0,58.0,52.0,39.0,63.0,49.0,38.0,48.0,55.0,55.0,49.0,43.0,38.0,34.0,38.0,25.0,29.0,33.0,26.0,23.0,9.0,6.0,5.0,6.0,9.0,4.0,8.0 L85018,14.0,12.0,18.0,29.0,22.0,21.0,19.0,27.0,22.0,28.0,26.0,38.0,37.0,43.0,36.0,47.0,36.0,32.0,29.0,30.0,27.0,32.0,35.0,27.0,23.0,25.0,25.0,17.0,28.0,23.0,30.0,30.0,39.0,20.0,24.0,24.0,33.0,29.0,23.0,18.0,33.0,18.0,32.0,29.0,28.0,24.0,25.0,22.0,18.0,23.0,33.0,42.0,35.0,38.0,33.0,42.0,45.0,33.0,45.0,62.0,48.0,39.0,43.0,42.0,39.0,42.0,40.0,27.0,36.0,37.0,30.0,32.0,36.0,22.0,32.0,30.0,38.0,32.0,35.0,16.0,28.0,20.0,18.0,20.0,16.0,10.0,7.0,8.0,17.0,8.0,7.0,10.0,5.0,6.0,5.0,4.0 L85019,40.0,37.0,33.0,43.0,48.0,40.0,42.0,39.0,50.0,51.0,52.0,75.0,49.0,65.0,54.0,50.0,43.0,39.0,43.0,50.0,70.0,56.0,58.0,63.0,55.0,63.0,58.0,70.0,84.0,76.0,63.0,74.0,75.0,73.0,93.0,69.0,88.0,75.0,78.0,87.0,80.0,73.0,81.0,84.0,62.0,76.0,77.0,49.0,55.0,63.0,49.0,61.0,54.0,63.0,80.0,80.0,78.0,77.0,63.0,79.0,89.0,91.0,79.0,74.0,84.0,96.0,69.0,91.0,73.0,59.0,79.0,76.0,81.0,87.0,68.0,90.0,70.0,92.0,75.0,64.0,52.0,63.0,64.0,53.0,46.0,43.0,36.0,33.0,27.0,29.0,22.0,19.0,10.0,11.0,8.0,13.0 L85020,44.0,44.0,64.0,59.0,67.0,55.0,56.0,71.0,70.0,72.0,102.0,69.0,63.0,70.0,71.0,63.0,69.0,77.0,61.0,63.0,35.0,43.0,48.0,38.0,32.0,53.0,43.0,29.0,37.0,40.0,43.0,47.0,52.0,53.0,54.0,64.0,66.0,76.0,64.0,81.0,69.0,76.0,61.0,62.0,45.0,63.0,69.0,64.0,68.0,70.0,78.0,69.0,71.0,96.0,77.0,69.0,83.0,80.0,80.0,71.0,78.0,82.0,68.0,80.0,73.0,73.0,71.0,66.0,53.0,65.0,61.0,69.0,50.0,66.0,63.0,69.0,76.0,70.0,62.0,63.0,54.0,52.0,54.0,33.0,26.0,27.0,24.0,23.0,15.0,22.0,14.0,9.0,7.0,7.0,4.0,7.0 L85021,46.0,48.0,66.0,76.0,55.0,65.0,79.0,93.0,90.0,99.0,100.0,103.0,90.0,96.0,82.0,113.0,96.0,119.0,82.0,81.0,68.0,67.0,50.0,74.0,55.0,55.0,73.0,58.0,62.0,63.0,63.0,89.0,84.0,57.0,68.0,85.0,95.0,85.0,104.0,93.0,85.0,84.0,86.0,80.0,85.0,83.0,79.0,80.0,76.0,90.0,76.0,88.0,85.0,85.0,79.0,77.0,81.0,101.0,74.0,84.0,85.0,106.0,87.0,101.0,101.0,61.0,83.0,66.0,85.0,78.0,73.0,93.0,98.0,63.0,69.0,62.0,99.0,97.0,99.0,65.0,79.0,68.0,63.0,50.0,35.0,45.0,41.0,34.0,39.0,29.0,20.0,19.0,10.0,8.0,7.0,24.0 L85022,42.0,42.0,64.0,65.0,62.0,65.0,70.0,67.0,85.0,79.0,81.0,84.0,89.0,77.0,90.0,85.0,87.0,71.0,81.0,61.0,66.0,67.0,65.0,67.0,63.0,67.0,69.0,58.0,76.0,74.0,71.0,81.0,91.0,91.0,96.0,94.0,106.0,81.0,80.0,98.0,112.0,97.0,101.0,99.0,102.0,98.0,90.0,77.0,56.0,105.0,92.0,91.0,81.0,103.0,109.0,111.0,91.0,95.0,97.0,104.0,90.0,108.0,100.0,90.0,87.0,73.0,72.0,88.0,79.0,80.0,75.0,69.0,67.0,69.0,65.0,63.0,72.0,91.0,73.0,54.0,39.0,50.0,45.0,43.0,20.0,28.0,28.0,29.0,17.0,24.0,9.0,10.0,9.0,5.0,10.0,8.0 L85023,108.0,125.0,125.0,103.0,96.0,138.0,119.0,113.0,114.0,129.0,110.0,90.0,105.0,117.0,91.0,87.0,87.0,84.0,90.0,96.0,68.0,70.0,86.0,79.0,85.0,95.0,105.0,130.0,123.0,140.0,143.0,179.0,172.0,176.0,160.0,212.0,166.0,178.0,148.0,156.0,173.0,164.0,147.0,123.0,130.0,107.0,117.0,106.0,104.0,100.0,101.0,113.0,100.0,95.0,127.0,97.0,118.0,80.0,86.0,77.0,105.0,76.0,86.0,98.0,77.0,76.0,72.0,89.0,67.0,63.0,60.0,60.0,64.0,53.0,53.0,65.0,63.0,54.0,45.0,38.0,47.0,39.0,34.0,27.0,35.0,29.0,39.0,30.0,23.0,15.0,14.0,8.0,5.0,7.0,4.0,18.0 L85024,38.0,36.0,60.0,54.0,43.0,52.0,47.0,44.0,51.0,58.0,42.0,54.0,43.0,48.0,55.0,60.0,65.0,60.0,41.0,69.0,37.0,53.0,61.0,35.0,51.0,44.0,58.0,48.0,49.0,50.0,48.0,59.0,56.0,50.0,66.0,54.0,63.0,69.0,49.0,60.0,48.0,40.0,39.0,67.0,49.0,49.0,54.0,45.0,46.0,48.0,48.0,64.0,80.0,81.0,78.0,78.0,87.0,86.0,107.0,88.0,108.0,90.0,94.0,83.0,88.0,80.0,83.0,77.0,96.0,63.0,85.0,89.0,68.0,66.0,82.0,77.0,90.0,79.0,64.0,47.0,72.0,50.0,43.0,38.0,27.0,40.0,25.0,18.0,14.0,19.0,11.0,10.0,6.0,2.0,2.0,5.0 L85025,66.0,86.0,84.0,82.0,96.0,89.0,96.0,99.0,88.0,126.0,95.0,87.0,86.0,82.0,86.0,81.0,81.0,77.0,65.0,77.0,62.0,60.0,62.0,67.0,83.0,74.0,86.0,99.0,113.0,99.0,113.0,132.0,128.0,127.0,119.0,128.0,126.0,133.0,136.0,136.0,120.0,104.0,126.0,100.0,102.0,101.0,107.0,90.0,79.0,80.0,71.0,93.0,93.0,98.0,84.0,87.0,99.0,95.0,88.0,81.0,80.0,81.0,76.0,70.0,76.0,70.0,65.0,53.0,60.0,78.0,47.0,46.0,52.0,43.0,51.0,51.0,72.0,44.0,51.0,38.0,32.0,31.0,32.0,33.0,20.0,23.0,12.0,17.0,16.0,7.0,12.0,8.0,6.0,3.0,4.0,6.0 L85026,23.0,24.0,19.0,22.0,21.0,31.0,21.0,30.0,30.0,33.0,20.0,27.0,34.0,30.0,40.0,34.0,29.0,40.0,36.0,25.0,25.0,29.0,32.0,25.0,21.0,31.0,27.0,23.0,41.0,22.0,29.0,36.0,21.0,32.0,33.0,29.0,33.0,34.0,22.0,22.0,36.0,24.0,43.0,25.0,40.0,33.0,26.0,34.0,38.0,30.0,29.0,32.0,38.0,32.0,52.0,59.0,52.0,58.0,53.0,46.0,70.0,39.0,52.0,50.0,61.0,49.0,52.0,46.0,34.0,31.0,42.0,43.0,31.0,40.0,25.0,34.0,32.0,33.0,46.0,41.0,36.0,26.0,17.0,19.0,14.0,21.0,13.0,5.0,9.0,7.0,4.0,3.0,5.0,2.0,, L85027,33.0,37.0,39.0,40.0,55.0,55.0,51.0,44.0,51.0,40.0,42.0,50.0,60.0,56.0,52.0,55.0,42.0,52.0,38.0,41.0,29.0,40.0,38.0,40.0,51.0,49.0,34.0,38.0,49.0,53.0,44.0,43.0,46.0,62.0,52.0,62.0,57.0,75.0,51.0,51.0,65.0,40.0,58.0,45.0,59.0,52.0,63.0,58.0,45.0,38.0,59.0,53.0,64.0,64.0,58.0,61.0,56.0,73.0,55.0,69.0,59.0,62.0,58.0,55.0,57.0,66.0,67.0,46.0,61.0,44.0,57.0,54.0,56.0,52.0,63.0,52.0,42.0,53.0,42.0,33.0,48.0,36.0,37.0,26.0,24.0,21.0,17.0,12.0,17.0,6.0,6.0,7.0,5.0,4.0,5.0,5.0 L85029,46.0,48.0,50.0,54.0,53.0,64.0,54.0,52.0,60.0,63.0,67.0,79.0,81.0,81.0,86.0,85.0,91.0,94.0,76.0,82.0,66.0,70.0,73.0,69.0,73.0,65.0,78.0,67.0,50.0,61.0,66.0,87.0,81.0,70.0,69.0,79.0,79.0,68.0,74.0,67.0,76.0,69.0,68.0,72.0,95.0,98.0,82.0,77.0,65.0,83.0,94.0,80.0,96.0,95.0,104.0,90.0,114.0,106.0,105.0,99.0,78.0,119.0,86.0,88.0,83.0,75.0,78.0,73.0,78.0,72.0,54.0,72.0,67.0,70.0,77.0,86.0,78.0,81.0,82.0,49.0,62.0,53.0,45.0,51.0,32.0,38.0,23.0,27.0,19.0,22.0,16.0,11.0,9.0,7.0,4.0,11.0 L85030,63.0,72.0,64.0,82.0,92.0,105.0,109.0,88.0,105.0,92.0,88.0,104.0,112.0,103.0,108.0,121.0,105.0,137.0,91.0,101.0,88.0,101.0,94.0,95.0,99.0,86.0,99.0,108.0,96.0,115.0,102.0,106.0,115.0,121.0,120.0,117.0,120.0,112.0,97.0,102.0,108.0,120.0,125.0,111.0,103.0,107.0,95.0,90.0,108.0,96.0,122.0,123.0,114.0,118.0,132.0,138.0,152.0,141.0,140.0,157.0,151.0,128.0,145.0,145.0,144.0,137.0,136.0,123.0,119.0,115.0,112.0,111.0,121.0,108.0,112.0,118.0,116.0,121.0,133.0,82.0,100.0,77.0,82.0,72.0,48.0,42.0,60.0,41.0,29.0,35.0,22.0,28.0,15.0,9.0,10.0,12.0 L85031,31.0,26.0,28.0,34.0,42.0,31.0,35.0,31.0,31.0,41.0,39.0,34.0,43.0,43.0,48.0,35.0,45.0,43.0,32.0,34.0,28.0,34.0,41.0,28.0,26.0,38.0,35.0,29.0,36.0,28.0,43.0,33.0,37.0,43.0,51.0,45.0,25.0,36.0,38.0,32.0,41.0,51.0,44.0,38.0,29.0,40.0,34.0,38.0,28.0,40.0,40.0,33.0,33.0,39.0,53.0,46.0,42.0,55.0,50.0,56.0,65.0,59.0,42.0,57.0,64.0,49.0,46.0,52.0,59.0,45.0,54.0,56.0,54.0,70.0,53.0,55.0,50.0,52.0,57.0,45.0,39.0,43.0,42.0,25.0,28.0,18.0,20.0,12.0,11.0,11.0,9.0,6.0,3.0,5.0,5.0,2.0 L85032,14.0,10.0,5.0,11.0,23.0,15.0,30.0,28.0,29.0,20.0,17.0,28.0,34.0,38.0,57.0,52.0,71.0,59.0,76.0,53.0,25.0,22.0,22.0,23.0,27.0,15.0,20.0,28.0,25.0,21.0,19.0,26.0,25.0,29.0,29.0,20.0,21.0,29.0,29.0,22.0,22.0,31.0,26.0,24.0,27.0,25.0,22.0,30.0,18.0,26.0,32.0,34.0,19.0,40.0,34.0,39.0,37.0,32.0,46.0,55.0,45.0,49.0,42.0,39.0,36.0,35.0,36.0,34.0,27.0,30.0,39.0,31.0,25.0,30.0,27.0,26.0,25.0,24.0,21.0,21.0,28.0,16.0,9.0,13.0,14.0,4.0,12.0,9.0,10.0,7.0,7.0,2.0,1.0,1.0,2.0,4.0 L85033,39.0,39.0,40.0,45.0,55.0,47.0,65.0,61.0,54.0,74.0,61.0,63.0,74.0,65.0,71.0,79.0,64.0,82.0,67.0,70.0,54.0,36.0,62.0,55.0,54.0,60.0,66.0,58.0,58.0,58.0,58.0,74.0,74.0,57.0,72.0,76.0,74.0,68.0,67.0,58.0,42.0,65.0,70.0,77.0,69.0,61.0,76.0,74.0,52.0,69.0,71.0,77.0,85.0,90.0,102.0,122.0,88.0,95.0,129.0,129.0,125.0,106.0,126.0,128.0,84.0,119.0,95.0,97.0,100.0,97.0,101.0,83.0,90.0,131.0,99.0,96.0,103.0,121.0,99.0,88.0,82.0,70.0,66.0,61.0,40.0,54.0,28.0,37.0,30.0,27.0,20.0,20.0,11.0,11.0,6.0,14.0 L85034,28.0,34.0,35.0,32.0,37.0,43.0,27.0,49.0,47.0,39.0,44.0,43.0,51.0,50.0,37.0,49.0,53.0,43.0,42.0,23.0,37.0,29.0,30.0,41.0,38.0,38.0,30.0,39.0,44.0,37.0,39.0,41.0,41.0,35.0,39.0,46.0,49.0,50.0,43.0,41.0,52.0,45.0,45.0,47.0,57.0,49.0,50.0,42.0,37.0,54.0,66.0,61.0,48.0,62.0,60.0,62.0,71.0,72.0,52.0,66.0,51.0,57.0,62.0,63.0,67.0,54.0,45.0,68.0,40.0,62.0,60.0,49.0,65.0,54.0,34.0,46.0,52.0,55.0,66.0,53.0,37.0,37.0,33.0,33.0,19.0,14.0,23.0,27.0,9.0,11.0,12.0,6.0,4.0,8.0,5.0,11.0 L85035,73.0,93.0,98.0,113.0,115.0,89.0,120.0,85.0,101.0,114.0,110.0,103.0,102.0,122.0,129.0,116.0,102.0,116.0,106.0,74.0,93.0,92.0,88.0,87.0,91.0,105.0,83.0,122.0,127.0,123.0,124.0,131.0,145.0,156.0,123.0,148.0,159.0,138.0,136.0,135.0,138.0,145.0,134.0,116.0,100.0,123.0,109.0,119.0,109.0,100.0,115.0,123.0,104.0,116.0,125.0,121.0,129.0,127.0,122.0,101.0,108.0,104.0,110.0,105.0,108.0,81.0,101.0,84.0,100.0,79.0,77.0,66.0,77.0,78.0,68.0,71.0,82.0,88.0,77.0,53.0,56.0,35.0,41.0,23.0,41.0,36.0,23.0,25.0,14.0,12.0,13.0,11.0,6.0,8.0,4.0,5.0 L85036,18.0,24.0,30.0,19.0,25.0,22.0,26.0,34.0,17.0,35.0,29.0,39.0,29.0,45.0,43.0,33.0,32.0,48.0,24.0,31.0,25.0,34.0,29.0,21.0,34.0,23.0,26.0,33.0,13.0,17.0,30.0,31.0,29.0,36.0,44.0,29.0,31.0,25.0,28.0,35.0,44.0,35.0,40.0,25.0,35.0,37.0,26.0,29.0,24.0,30.0,38.0,39.0,40.0,34.0,43.0,39.0,50.0,58.0,48.0,56.0,43.0,53.0,39.0,45.0,47.0,47.0,34.0,40.0,39.0,47.0,35.0,53.0,25.0,39.0,49.0,38.0,32.0,37.0,33.0,31.0,21.0,30.0,21.0,19.0,7.0,15.0,9.0,8.0,9.0,11.0,7.0,5.0,4.0,7.0,1.0,11.0 L85037,15.0,9.0,15.0,10.0,10.0,14.0,22.0,20.0,23.0,22.0,20.0,28.0,27.0,10.0,33.0,20.0,29.0,23.0,18.0,22.0,12.0,17.0,19.0,13.0,19.0,16.0,16.0,17.0,13.0,13.0,16.0,20.0,18.0,16.0,19.0,11.0,20.0,23.0,16.0,25.0,20.0,20.0,15.0,23.0,20.0,21.0,23.0,25.0,21.0,25.0,32.0,18.0,36.0,26.0,32.0,30.0,27.0,37.0,45.0,30.0,39.0,31.0,37.0,29.0,33.0,40.0,22.0,24.0,35.0,25.0,31.0,20.0,22.0,37.0,34.0,39.0,30.0,38.0,34.0,31.0,24.0,11.0,18.0,9.0,19.0,11.0,9.0,5.0,6.0,6.0,2.0,4.0,3.0,2.0,1.0,3.0 L85038,22.0,21.0,20.0,14.0,29.0,20.0,30.0,34.0,30.0,27.0,39.0,37.0,39.0,52.0,40.0,54.0,36.0,52.0,42.0,35.0,32.0,30.0,30.0,22.0,28.0,47.0,31.0,30.0,22.0,26.0,29.0,25.0,32.0,26.0,35.0,27.0,39.0,36.0,37.0,23.0,24.0,35.0,26.0,39.0,27.0,31.0,38.0,38.0,33.0,34.0,35.0,49.0,54.0,40.0,46.0,58.0,54.0,56.0,60.0,67.0,70.0,53.0,74.0,66.0,54.0,55.0,55.0,52.0,46.0,45.0,39.0,46.0,45.0,46.0,54.0,36.0,49.0,39.0,44.0,38.0,46.0,40.0,29.0,15.0,20.0,23.0,11.0,16.0,15.0,11.0,13.0,9.0,12.0,1.0,2.0,5.0 L85039,33.0,40.0,51.0,50.0,56.0,68.0,64.0,59.0,51.0,49.0,63.0,80.0,97.0,127.0,164.0,197.0,213.0,205.0,139.0,63.0,47.0,58.0,52.0,54.0,73.0,56.0,68.0,57.0,63.0,54.0,61.0,67.0,82.0,64.0,83.0,71.0,62.0,83.0,75.0,79.0,66.0,65.0,87.0,72.0,71.0,69.0,60.0,83.0,70.0,72.0,78.0,95.0,92.0,97.0,104.0,101.0,119.0,99.0,111.0,92.0,94.0,94.0,92.0,99.0,85.0,96.0,98.0,89.0,78.0,83.0,70.0,86.0,87.0,71.0,85.0,88.0,84.0,71.0,90.0,57.0,49.0,61.0,49.0,35.0,34.0,20.0,23.0,25.0,17.0,21.0,15.0,6.0,7.0,8.0,6.0,9.0 L85040,21.0,37.0,35.0,28.0,39.0,31.0,36.0,24.0,44.0,40.0,38.0,35.0,40.0,41.0,39.0,36.0,47.0,27.0,36.0,42.0,32.0,24.0,29.0,32.0,29.0,35.0,30.0,27.0,37.0,30.0,36.0,30.0,32.0,38.0,43.0,56.0,35.0,34.0,36.0,39.0,32.0,37.0,39.0,38.0,35.0,29.0,34.0,34.0,27.0,39.0,39.0,35.0,41.0,52.0,44.0,45.0,50.0,60.0,49.0,56.0,39.0,43.0,70.0,56.0,54.0,45.0,49.0,37.0,36.0,47.0,46.0,44.0,45.0,53.0,33.0,39.0,38.0,53.0,29.0,34.0,29.0,23.0,28.0,23.0,15.0,25.0,14.0,13.0,14.0,9.0,8.0,3.0,3.0,2.0,3.0,10.0 L85042,77.0,71.0,74.0,102.0,70.0,97.0,86.0,95.0,90.0,107.0,95.0,96.0,86.0,85.0,97.0,88.0,98.0,103.0,103.0,90.0,81.0,86.0,84.0,102.0,95.0,96.0,111.0,116.0,114.0,119.0,93.0,124.0,128.0,125.0,144.0,136.0,160.0,125.0,115.0,141.0,135.0,146.0,141.0,125.0,113.0,99.0,100.0,83.0,86.0,81.0,101.0,108.0,105.0,114.0,102.0,98.0,120.0,104.0,98.0,112.0,120.0,132.0,103.0,111.0,97.0,95.0,87.0,94.0,72.0,59.0,55.0,59.0,55.0,57.0,69.0,59.0,51.0,65.0,69.0,39.0,50.0,52.0,39.0,34.0,20.0,31.0,30.0,21.0,22.0,16.0,20.0,5.0,7.0,6.0,4.0,10.0 L85043,36.0,39.0,47.0,64.0,55.0,52.0,57.0,69.0,71.0,72.0,69.0,66.0,60.0,59.0,68.0,66.0,55.0,56.0,62.0,59.0,47.0,46.0,50.0,35.0,50.0,51.0,48.0,62.0,46.0,52.0,80.0,81.0,73.0,82.0,82.0,83.0,84.0,71.0,100.0,78.0,75.0,71.0,88.0,73.0,80.0,61.0,73.0,58.0,67.0,59.0,68.0,63.0,76.0,80.0,86.0,86.0,86.0,77.0,91.0,88.0,107.0,83.0,88.0,101.0,64.0,76.0,68.0,62.0,55.0,57.0,60.0,47.0,43.0,55.0,66.0,58.0,52.0,63.0,55.0,39.0,42.0,44.0,33.0,27.0,20.0,25.0,27.0,21.0,14.0,17.0,13.0,10.0,11.0,3.0,7.0,6.0 L85044,14.0,18.0,13.0,21.0,21.0,25.0,16.0,29.0,33.0,28.0,45.0,37.0,31.0,38.0,35.0,28.0,29.0,46.0,39.0,29.0,33.0,24.0,24.0,32.0,30.0,21.0,20.0,26.0,27.0,23.0,25.0,20.0,27.0,20.0,26.0,27.0,25.0,24.0,31.0,25.0,19.0,24.0,19.0,24.0,29.0,23.0,29.0,30.0,27.0,26.0,33.0,39.0,33.0,35.0,35.0,51.0,44.0,59.0,42.0,49.0,58.0,62.0,60.0,50.0,50.0,66.0,56.0,42.0,65.0,47.0,45.0,38.0,52.0,37.0,57.0,50.0,52.0,51.0,47.0,31.0,45.0,43.0,34.0,21.0,27.0,16.0,14.0,12.0,13.0,5.0,7.0,6.0,2.0,8.0,2.0,4.0 L85046,26.0,26.0,20.0,42.0,22.0,24.0,31.0,24.0,32.0,45.0,32.0,32.0,30.0,33.0,32.0,34.0,33.0,40.0,39.0,37.0,27.0,27.0,24.0,29.0,26.0,28.0,22.0,29.0,24.0,22.0,28.0,37.0,38.0,31.0,33.0,31.0,34.0,36.0,38.0,22.0,37.0,31.0,21.0,40.0,33.0,29.0,26.0,31.0,32.0,35.0,25.0,42.0,50.0,46.0,54.0,52.0,58.0,39.0,37.0,49.0,42.0,44.0,54.0,53.0,55.0,45.0,34.0,39.0,38.0,22.0,29.0,38.0,30.0,34.0,25.0,42.0,28.0,36.0,48.0,32.0,15.0,19.0,30.0,12.0,16.0,17.0,10.0,10.0,10.0,6.0,4.0,4.0,11.0,3.0,1.0,5.0 L85047,21.0,22.0,19.0,25.0,29.0,25.0,19.0,30.0,21.0,27.0,31.0,23.0,28.0,26.0,28.0,49.0,32.0,29.0,34.0,28.0,30.0,31.0,25.0,32.0,30.0,27.0,24.0,40.0,28.0,29.0,36.0,32.0,43.0,32.0,29.0,33.0,37.0,46.0,29.0,26.0,38.0,40.0,37.0,33.0,35.0,37.0,35.0,23.0,37.0,36.0,44.0,44.0,51.0,60.0,61.0,49.0,59.0,47.0,53.0,56.0,44.0,41.0,57.0,47.0,49.0,42.0,56.0,33.0,34.0,41.0,42.0,36.0,24.0,19.0,32.0,35.0,27.0,36.0,28.0,15.0,14.0,13.0,10.0,11.0,11.0,9.0,10.0,10.0,3.0,5.0,5.0,2.0,2.0,1.0,3.0,1.0 L85048,33.0,22.0,28.0,27.0,45.0,25.0,39.0,27.0,39.0,51.0,40.0,39.0,40.0,37.0,38.0,42.0,34.0,48.0,28.0,37.0,29.0,40.0,28.0,29.0,32.0,28.0,41.0,48.0,34.0,30.0,38.0,41.0,41.0,52.0,46.0,40.0,49.0,32.0,47.0,49.0,39.0,35.0,44.0,35.0,49.0,39.0,50.0,42.0,29.0,40.0,32.0,34.0,36.0,32.0,54.0,40.0,35.0,35.0,27.0,50.0,52.0,35.0,36.0,31.0,40.0,34.0,32.0,28.0,26.0,35.0,22.0,22.0,30.0,30.0,35.0,22.0,33.0,31.0,38.0,17.0,28.0,17.0,20.0,15.0,8.0,12.0,6.0,6.0,5.0,5.0,6.0,3.0,2.0,1.0,2.0,1.0 L85050,22.0,24.0,28.0,31.0,36.0,32.0,30.0,41.0,31.0,48.0,34.0,34.0,29.0,33.0,48.0,46.0,71.0,70.0,58.0,47.0,30.0,31.0,36.0,32.0,34.0,32.0,40.0,38.0,35.0,30.0,32.0,33.0,38.0,34.0,29.0,37.0,44.0,41.0,35.0,52.0,25.0,38.0,42.0,36.0,34.0,36.0,41.0,16.0,33.0,35.0,27.0,42.0,35.0,50.0,46.0,46.0,50.0,50.0,38.0,47.0,53.0,48.0,42.0,46.0,38.0,50.0,33.0,47.0,36.0,34.0,33.0,37.0,45.0,38.0,46.0,48.0,37.0,47.0,40.0,29.0,29.0,19.0,22.0,20.0,15.0,13.0,13.0,10.0,9.0,13.0,4.0,6.0,4.0,3.0,3.0,6.0 L85051,39.0,29.0,23.0,38.0,43.0,45.0,38.0,42.0,48.0,44.0,55.0,55.0,48.0,52.0,52.0,52.0,44.0,62.0,51.0,45.0,25.0,45.0,30.0,50.0,44.0,40.0,49.0,51.0,59.0,45.0,68.0,58.0,51.0,70.0,82.0,58.0,72.0,38.0,62.0,59.0,63.0,67.0,56.0,56.0,56.0,46.0,53.0,50.0,41.0,43.0,47.0,47.0,57.0,46.0,52.0,57.0,59.0,52.0,47.0,50.0,57.0,51.0,43.0,42.0,47.0,41.0,46.0,33.0,40.0,26.0,34.0,32.0,35.0,37.0,26.0,34.0,20.0,27.0,18.0,19.0,21.0,11.0,11.0,7.0,11.0,10.0,10.0,13.0,7.0,10.0,5.0,6.0,1.0,1.0,3.0,2.0 L85052,28.0,26.0,36.0,19.0,22.0,37.0,30.0,32.0,27.0,39.0,32.0,44.0,40.0,41.0,54.0,56.0,60.0,73.0,55.0,45.0,57.0,57.0,44.0,31.0,45.0,44.0,50.0,44.0,37.0,45.0,54.0,54.0,45.0,49.0,48.0,39.0,37.0,45.0,48.0,44.0,44.0,45.0,43.0,42.0,35.0,51.0,38.0,46.0,46.0,32.0,44.0,45.0,33.0,57.0,46.0,30.0,54.0,48.0,54.0,50.0,47.0,66.0,60.0,51.0,50.0,43.0,41.0,53.0,48.0,33.0,47.0,40.0,39.0,46.0,45.0,40.0,37.0,43.0,43.0,36.0,36.0,32.0,26.0,33.0,13.0,17.0,15.0,10.0,15.0,8.0,12.0,3.0,11.0,5.0,3.0,6.0 L85053,16.0,23.0,28.0,19.0,27.0,35.0,31.0,37.0,29.0,32.0,41.0,32.0,37.0,41.0,26.0,42.0,38.0,28.0,45.0,30.0,33.0,39.0,40.0,32.0,29.0,40.0,44.0,47.0,43.0,38.0,47.0,52.0,49.0,37.0,49.0,47.0,42.0,47.0,56.0,40.0,36.0,32.0,49.0,40.0,31.0,53.0,46.0,36.0,37.0,31.0,32.0,47.0,35.0,46.0,43.0,41.0,42.0,57.0,54.0,55.0,63.0,64.0,61.0,49.0,48.0,44.0,43.0,44.0,33.0,33.0,35.0,27.0,45.0,38.0,35.0,28.0,33.0,38.0,38.0,26.0,27.0,18.0,24.0,13.0,16.0,10.0,6.0,13.0,3.0,9.0,6.0,2.0,7.0,2.0,4.0,4.0 L85054,26.0,25.0,36.0,35.0,34.0,44.0,44.0,44.0,48.0,40.0,35.0,46.0,44.0,39.0,45.0,44.0,40.0,45.0,39.0,37.0,26.0,46.0,33.0,35.0,37.0,40.0,42.0,35.0,26.0,33.0,33.0,38.0,36.0,48.0,35.0,33.0,52.0,59.0,40.0,54.0,47.0,39.0,29.0,31.0,41.0,36.0,40.0,44.0,41.0,38.0,40.0,51.0,47.0,51.0,45.0,58.0,55.0,56.0,70.0,72.0,55.0,62.0,67.0,83.0,67.0,47.0,56.0,56.0,61.0,62.0,62.0,60.0,57.0,47.0,57.0,60.0,54.0,67.0,78.0,50.0,37.0,37.0,43.0,36.0,19.0,30.0,25.0,16.0,20.0,15.0,14.0,10.0,7.0,4.0,9.0,5.0 L85055,24.0,35.0,23.0,36.0,32.0,34.0,45.0,40.0,47.0,46.0,42.0,52.0,52.0,55.0,55.0,53.0,63.0,54.0,45.0,60.0,47.0,44.0,36.0,52.0,43.0,48.0,40.0,38.0,42.0,38.0,30.0,41.0,31.0,47.0,46.0,28.0,40.0,58.0,36.0,41.0,35.0,48.0,44.0,48.0,50.0,38.0,46.0,40.0,51.0,36.0,52.0,48.0,64.0,70.0,86.0,62.0,62.0,68.0,89.0,88.0,87.0,77.0,99.0,80.0,71.0,68.0,66.0,65.0,63.0,66.0,62.0,52.0,44.0,54.0,71.0,68.0,57.0,64.0,51.0,40.0,43.0,52.0,38.0,31.0,30.0,23.0,20.0,15.0,13.0,11.0,6.0,9.0,7.0,6.0,4.0,6.0 L85056,29.0,41.0,47.0,40.0,50.0,44.0,46.0,54.0,40.0,40.0,57.0,36.0,41.0,37.0,50.0,55.0,41.0,37.0,32.0,32.0,32.0,26.0,39.0,43.0,36.0,43.0,33.0,49.0,54.0,59.0,43.0,63.0,49.0,60.0,50.0,64.0,58.0,55.0,51.0,32.0,52.0,42.0,54.0,47.0,57.0,49.0,43.0,38.0,35.0,34.0,38.0,49.0,45.0,47.0,44.0,52.0,59.0,55.0,66.0,44.0,50.0,54.0,48.0,53.0,44.0,43.0,39.0,42.0,38.0,28.0,40.0,40.0,25.0,26.0,43.0,31.0,25.0,38.0,46.0,25.0,26.0,25.0,22.0,18.0,10.0,14.0,15.0,7.0,7.0,8.0,6.0,3.0,8.0,1.0,3.0,3.0 L85061,16.0,19.0,27.0,23.0,23.0,27.0,20.0,28.0,23.0,19.0,36.0,18.0,35.0,24.0,21.0,18.0,20.0,19.0,16.0,17.0,13.0,17.0,18.0,15.0,14.0,14.0,28.0,17.0,17.0,20.0,20.0,28.0,29.0,27.0,26.0,30.0,29.0,19.0,35.0,29.0,33.0,23.0,20.0,18.0,19.0,30.0,20.0,20.0,16.0,30.0,26.0,31.0,29.0,36.0,19.0,25.0,23.0,36.0,43.0,38.0,33.0,28.0,34.0,28.0,40.0,36.0,26.0,37.0,42.0,21.0,28.0,30.0,26.0,16.0,24.0,18.0,31.0,26.0,20.0,17.0,10.0,19.0,9.0,11.0,15.0,16.0,17.0,5.0,4.0,3.0,6.0,5.0,,2.0,1.0,1.0 L85062,18.0,27.0,28.0,31.0,44.0,34.0,34.0,39.0,35.0,37.0,42.0,45.0,40.0,47.0,37.0,43.0,42.0,43.0,45.0,45.0,47.0,35.0,38.0,33.0,28.0,22.0,29.0,30.0,47.0,32.0,39.0,41.0,40.0,46.0,66.0,47.0,56.0,54.0,62.0,52.0,43.0,43.0,52.0,43.0,48.0,44.0,39.0,39.0,37.0,35.0,39.0,31.0,48.0,26.0,37.0,42.0,32.0,50.0,48.0,54.0,39.0,47.0,37.0,36.0,39.0,39.0,36.0,32.0,41.0,27.0,35.0,46.0,39.0,25.0,22.0,23.0,31.0,19.0,16.0,19.0,16.0,6.0,13.0,10.0,8.0,9.0,8.0,12.0,5.0,3.0,2.0,1.0,3.0,8.0,1.0,2.0 L85064,61.0,72.0,59.0,75.0,85.0,89.0,100.0,73.0,86.0,88.0,90.0,103.0,69.0,82.0,74.0,70.0,66.0,66.0,54.0,58.0,63.0,49.0,55.0,52.0,59.0,63.0,70.0,82.0,82.0,88.0,112.0,91.0,120.0,124.0,119.0,129.0,140.0,140.0,119.0,108.0,106.0,119.0,121.0,91.0,74.0,90.0,79.0,83.0,69.0,70.0,65.0,74.0,63.0,59.0,71.0,62.0,64.0,67.0,53.0,63.0,60.0,48.0,46.0,52.0,41.0,38.0,36.0,36.0,25.0,34.0,20.0,24.0,24.0,29.0,26.0,18.0,12.0,23.0,20.0,11.0,16.0,8.0,13.0,5.0,6.0,7.0,9.0,8.0,3.0,5.0,2.0,8.0,1.0,6.0,1.0, L85065,21.0,20.0,19.0,25.0,28.0,32.0,22.0,24.0,29.0,24.0,28.0,38.0,19.0,14.0,43.0,23.0,40.0,30.0,35.0,20.0,37.0,24.0,27.0,21.0,18.0,17.0,32.0,27.0,27.0,30.0,24.0,22.0,27.0,22.0,32.0,20.0,33.0,35.0,30.0,38.0,28.0,40.0,36.0,36.0,30.0,31.0,22.0,28.0,36.0,23.0,31.0,37.0,37.0,51.0,49.0,52.0,49.0,58.0,75.0,63.0,65.0,75.0,70.0,71.0,94.0,88.0,94.0,71.0,70.0,81.0,65.0,69.0,78.0,65.0,61.0,79.0,53.0,90.0,77.0,52.0,54.0,57.0,53.0,38.0,31.0,29.0,37.0,28.0,22.0,12.0,15.0,12.0,4.0,11.0,5.0,7.0 L85066,40.0,41.0,51.0,35.0,55.0,53.0,51.0,44.0,50.0,50.0,41.0,57.0,40.0,55.0,39.0,53.0,37.0,51.0,31.0,22.0,39.0,37.0,27.0,31.0,38.0,28.0,20.0,48.0,35.0,42.0,35.0,43.0,40.0,40.0,44.0,50.0,40.0,44.0,37.0,40.0,30.0,37.0,31.0,43.0,42.0,35.0,34.0,36.0,44.0,48.0,38.0,40.0,45.0,39.0,54.0,55.0,57.0,55.0,49.0,71.0,46.0,58.0,69.0,56.0,67.0,66.0,64.0,49.0,52.0,46.0,47.0,47.0,46.0,36.0,44.0,41.0,39.0,52.0,53.0,28.0,33.0,36.0,28.0,21.0,22.0,26.0,15.0,13.0,18.0,13.0,10.0,7.0,4.0,6.0,7.0,7.0 L85601,11.0,14.0,16.0,9.0,7.0,11.0,11.0,13.0,9.0,15.0,18.0,13.0,21.0,13.0,26.0,16.0,24.0,19.0,9.0,20.0,13.0,8.0,9.0,13.0,19.0,16.0,26.0,10.0,18.0,7.0,20.0,19.0,11.0,13.0,24.0,8.0,15.0,13.0,14.0,15.0,11.0,21.0,16.0,14.0,15.0,16.0,10.0,13.0,15.0,20.0,18.0,21.0,20.0,31.0,37.0,34.0,29.0,24.0,39.0,42.0,24.0,31.0,24.0,28.0,30.0,36.0,31.0,21.0,30.0,28.0,37.0,22.0,22.0,25.0,30.0,20.0,23.0,20.0,28.0,24.0,16.0,24.0,13.0,13.0,7.0,13.0,8.0,10.0,3.0,6.0,5.0,2.0,4.0,2.0,1.0,2.0 L85607,28.0,27.0,34.0,38.0,28.0,35.0,38.0,48.0,38.0,33.0,44.0,48.0,57.0,54.0,39.0,44.0,34.0,38.0,37.0,21.0,26.0,30.0,31.0,33.0,17.0,27.0,34.0,30.0,42.0,36.0,42.0,50.0,35.0,43.0,55.0,54.0,43.0,47.0,49.0,55.0,55.0,50.0,46.0,43.0,36.0,49.0,41.0,42.0,33.0,43.0,39.0,40.0,24.0,40.0,43.0,35.0,34.0,36.0,40.0,44.0,46.0,41.0,22.0,27.0,33.0,26.0,21.0,17.0,24.0,14.0,14.0,21.0,10.0,22.0,8.0,18.0,13.0,14.0,21.0,9.0,12.0,7.0,6.0,4.0,9.0,2.0,4.0,4.0,1.0,1.0,4.0,,1.0,1.0,,2.0 L85609,24.0,23.0,31.0,30.0,34.0,31.0,37.0,36.0,32.0,35.0,29.0,45.0,26.0,35.0,42.0,27.0,32.0,30.0,38.0,23.0,23.0,26.0,23.0,20.0,18.0,16.0,22.0,24.0,29.0,22.0,22.0,30.0,36.0,36.0,40.0,31.0,44.0,35.0,37.0,29.0,32.0,31.0,32.0,35.0,33.0,34.0,33.0,16.0,22.0,26.0,34.0,39.0,26.0,28.0,34.0,35.0,33.0,24.0,37.0,36.0,40.0,34.0,31.0,38.0,19.0,28.0,27.0,28.0,30.0,26.0,36.0,28.0,25.0,25.0,26.0,23.0,35.0,39.0,20.0,23.0,21.0,21.0,16.0,14.0,15.0,7.0,12.0,11.0,9.0,4.0,5.0,8.0,1.0,3.0,3.0,3.0 L85611,10.0,16.0,14.0,23.0,17.0,11.0,13.0,9.0,10.0,14.0,12.0,21.0,20.0,32.0,36.0,44.0,38.0,43.0,35.0,20.0,12.0,14.0,10.0,15.0,11.0,15.0,21.0,18.0,11.0,15.0,14.0,20.0,20.0,19.0,17.0,23.0,16.0,18.0,13.0,18.0,19.0,12.0,13.0,19.0,22.0,11.0,19.0,11.0,22.0,18.0,25.0,29.0,26.0,20.0,19.0,24.0,25.0,26.0,24.0,29.0,29.0,27.0,26.0,15.0,24.0,12.0,20.0,19.0,15.0,31.0,16.0,13.0,15.0,19.0,16.0,13.0,18.0,11.0,14.0,15.0,15.0,11.0,7.0,5.0,4.0,5.0,8.0,7.0,4.0,2.0,1.0,2.0,,,2.0, L85624,16.0,20.0,9.0,19.0,24.0,21.0,14.0,26.0,18.0,18.0,24.0,23.0,32.0,23.0,21.0,26.0,29.0,18.0,24.0,13.0,13.0,20.0,11.0,21.0,12.0,16.0,21.0,15.0,11.0,12.0,11.0,11.0,23.0,14.0,18.0,16.0,23.0,21.0,21.0,21.0,21.0,33.0,16.0,24.0,26.0,20.0,22.0,18.0,23.0,22.0,21.0,24.0,18.0,30.0,32.0,37.0,36.0,26.0,36.0,29.0,41.0,36.0,50.0,48.0,34.0,48.0,31.0,32.0,36.0,43.0,45.0,40.0,40.0,36.0,39.0,33.0,34.0,39.0,40.0,22.0,38.0,34.0,13.0,15.0,18.0,13.0,10.0,10.0,12.0,7.0,5.0,8.0,7.0,6.0,1.0,2.0 Y01163,12.0,10.0,12.0,19.0,19.0,20.0,22.0,17.0,18.0,26.0,22.0,20.0,23.0,31.0,17.0,22.0,24.0,24.0,21.0,18.0,20.0,21.0,16.0,18.0,10.0,15.0,21.0,17.0,14.0,19.0,15.0,16.0,20.0,18.0,22.0,21.0,24.0,31.0,18.0,16.0,16.0,16.0,20.0,21.0,15.0,24.0,24.0,22.0,17.0,25.0,20.0,26.0,29.0,24.0,30.0,37.0,29.0,33.0,45.0,33.0,37.0,44.0,37.0,41.0,38.0,27.0,29.0,28.0,37.0,27.0,22.0,26.0,14.0,24.0,26.0,19.0,32.0,33.0,29.0,18.0,20.0,19.0,14.0,7.0,10.0,7.0,9.0,13.0,2.0,7.0,6.0,5.0,5.0,3.0,1.0,2.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 C82040,39.0,23.0,28.0,44.0,41.0,39.0,33.0,44.0,51.0,40.0,43.0,39.0,49.0,23.0,31.0,47.0,35.0,43.0,56.0,65.0,72.0,74.0,67.0,87.0,84.0,55.0,75.0,74.0,62.0,75.0,65.0,63.0,62.0,71.0,61.0,68.0,72.0,80.0,58.0,63.0,55.0,58.0,48.0,55.0,55.0,59.0,42.0,62.0,51.0,42.0,40.0,43.0,61.0,64.0,53.0,67.0,66.0,69.0,66.0,54.0,63.0,65.0,52.0,59.0,68.0,61.0,44.0,64.0,37.0,44.0,52.0,38.0,48.0,41.0,45.0,46.0,33.0,31.0,52.0,26.0,34.0,29.0,25.0,26.0,17.0,21.0,18.0,11.0,9.0,9.0,6.0,8.0,4.0,4.0,6.0,3.0 C84001,155.0,176.0,162.0,186.0,185.0,194.0,191.0,214.0,217.0,211.0,201.0,225.0,190.0,188.0,215.0,184.0,175.0,180.0,149.0,194.0,169.0,145.0,158.0,113.0,143.0,146.0,171.0,149.0,197.0,190.0,205.0,194.0,194.0,251.0,203.0,240.0,226.0,216.0,215.0,233.0,187.0,186.0,206.0,172.0,195.0,189.0,179.0,157.0,195.0,183.0,184.0,182.0,190.0,200.0,245.0,196.0,211.0,236.0,206.0,218.0,219.0,217.0,206.0,213.0,209.0,177.0,145.0,152.0,172.0,144.0,168.0,141.0,118.0,124.0,106.0,132.0,109.0,141.0,146.0,104.0,110.0,87.0,79.0,57.0,65.0,55.0,46.0,32.0,27.0,26.0,20.0,19.0,12.0,8.0,7.0,16.0 C84004,48.0,47.0,43.0,66.0,57.0,61.0,59.0,61.0,75.0,88.0,73.0,77.0,67.0,73.0,83.0,79.0,72.0,76.0,76.0,70.0,58.0,54.0,60.0,55.0,39.0,71.0,58.0,50.0,90.0,60.0,76.0,78.0,72.0,72.0,83.0,64.0,91.0,82.0,70.0,81.0,66.0,62.0,74.0,62.0,76.0,57.0,51.0,68.0,67.0,61.0,56.0,56.0,84.0,64.0,55.0,68.0,54.0,71.0,67.0,53.0,74.0,51.0,69.0,68.0,48.0,53.0,46.0,49.0,43.0,50.0,32.0,31.0,25.0,29.0,44.0,37.0,27.0,21.0,36.0,16.0,23.0,17.0,17.0,20.0,6.0,13.0,14.0,12.0,12.0,,8.0,3.0,2.0,2.0,,6.0 C84005,93.0,120.0,123.0,150.0,123.0,144.0,156.0,169.0,152.0,193.0,167.0,141.0,168.0,190.0,155.0,150.0,166.0,147.0,125.0,126.0,142.0,112.0,124.0,132.0,135.0,137.0,129.0,148.0,129.0,141.0,133.0,154.0,159.0,169.0,151.0,164.0,156.0,168.0,177.0,180.0,158.0,186.0,150.0,168.0,185.0,165.0,161.0,156.0,157.0,136.0,172.0,161.0,184.0,189.0,171.0,189.0,203.0,198.0,184.0,186.0,189.0,184.0,191.0,200.0,207.0,178.0,176.0,159.0,151.0,147.0,158.0,136.0,144.0,158.0,137.0,146.0,150.0,169.0,181.0,131.0,149.0,117.0,110.0,90.0,88.0,86.0,73.0,48.0,58.0,34.0,39.0,31.0,22.0,22.0,11.0,26.0 C84008,28.0,33.0,34.0,29.0,38.0,26.0,35.0,33.0,27.0,37.0,37.0,48.0,36.0,50.0,38.0,39.0,44.0,39.0,40.0,29.0,31.0,25.0,21.0,32.0,26.0,27.0,22.0,22.0,35.0,21.0,32.0,26.0,21.0,35.0,25.0,36.0,22.0,28.0,26.0,45.0,28.0,41.0,37.0,41.0,35.0,37.0,28.0,26.0,37.0,28.0,36.0,45.0,33.0,46.0,40.0,54.0,49.0,48.0,53.0,48.0,53.0,48.0,49.0,53.0,43.0,38.0,37.0,42.0,51.0,34.0,35.0,44.0,33.0,39.0,27.0,40.0,39.0,40.0,39.0,24.0,29.0,26.0,27.0,22.0,9.0,12.0,11.0,9.0,12.0,10.0,3.0,2.0,3.0,2.0,3.0,3.0 C84009,63.0,75.0,58.0,64.0,92.0,63.0,72.0,79.0,96.0,79.0,77.0,76.0,104.0,84.0,89.0,101.0,70.0,85.0,69.0,87.0,59.0,67.0,61.0,75.0,80.0,76.0,93.0,74.0,65.0,78.0,88.0,86.0,94.0,109.0,89.0,124.0,103.0,102.0,104.0,93.0,102.0,108.0,114.0,96.0,97.0,111.0,98.0,103.0,70.0,96.0,87.0,81.0,99.0,90.0,90.0,84.0,102.0,105.0,105.0,95.0,83.0,80.0,79.0,78.0,101.0,83.0,78.0,68.0,67.0,57.0,58.0,75.0,49.0,78.0,59.0,68.0,47.0,64.0,58.0,36.0,41.0,42.0,46.0,35.0,30.0,23.0,19.0,11.0,18.0,11.0,10.0,10.0,11.0,5.0,3.0,4.0 C84010,81.0,93.0,107.0,88.0,90.0,82.0,105.0,86.0,109.0,129.0,116.0,110.0,105.0,104.0,121.0,133.0,102.0,106.0,102.0,89.0,92.0,99.0,95.0,91.0,93.0,95.0,104.0,101.0,126.0,128.0,128.0,131.0,145.0,139.0,158.0,184.0,142.0,164.0,147.0,151.0,145.0,160.0,148.0,138.0,142.0,140.0,121.0,119.0,126.0,108.0,130.0,130.0,114.0,134.0,138.0,129.0,130.0,138.0,136.0,147.0,125.0,126.0,128.0,107.0,122.0,92.0,101.0,103.0,96.0,86.0,80.0,68.0,81.0,80.0,62.0,61.0,67.0,80.0,63.0,41.0,52.0,41.0,36.0,34.0,29.0,17.0,23.0,20.0,17.0,16.0,12.0,15.0,10.0,10.0,3.0,8.0 C84011,31.0,39.0,42.0,25.0,34.0,56.0,41.0,50.0,46.0,56.0,43.0,35.0,51.0,46.0,52.0,51.0,62.0,53.0,47.0,49.0,33.0,38.0,44.0,39.0,36.0,60.0,47.0,54.0,62.0,54.0,59.0,61.0,77.0,61.0,66.0,63.0,67.0,68.0,59.0,57.0,57.0,56.0,74.0,78.0,70.0,65.0,83.0,67.0,66.0,57.0,50.0,56.0,60.0,78.0,62.0,63.0,52.0,58.0,78.0,61.0,67.0,52.0,66.0,66.0,59.0,59.0,58.0,48.0,55.0,36.0,43.0,39.0,47.0,37.0,43.0,47.0,38.0,40.0,30.0,30.0,32.0,28.0,19.0,17.0,18.0,16.0,17.0,11.0,11.0,11.0,11.0,10.0,5.0,5.0,4.0,10.0 C84012,37.0,40.0,45.0,55.0,49.0,58.0,55.0,72.0,69.0,58.0,67.0,64.0,61.0,64.0,88.0,67.0,64.0,64.0,70.0,68.0,65.0,66.0,78.0,65.0,68.0,75.0,83.0,67.0,85.0,100.0,70.0,76.0,76.0,84.0,79.0,75.0,91.0,84.0,88.0,84.0,75.0,76.0,87.0,78.0,68.0,86.0,67.0,77.0,65.0,69.0,62.0,86.0,76.0,77.0,79.0,96.0,95.0,101.0,86.0,108.0,103.0,94.0,83.0,94.0,78.0,71.0,53.0,62.0,60.0,56.0,59.0,62.0,61.0,61.0,56.0,53.0,63.0,67.0,60.0,48.0,50.0,46.0,45.0,34.0,43.0,28.0,31.0,15.0,21.0,8.0,9.0,9.0,4.0,4.0,6.0,7.0 C84013,61.0,78.0,60.0,75.0,54.0,79.0,79.0,78.0,73.0,77.0,89.0,64.0,96.0,80.0,77.0,81.0,65.0,105.0,79.0,83.0,71.0,61.0,56.0,72.0,73.0,75.0,86.0,80.0,91.0,94.0,89.0,85.0,94.0,98.0,87.0,105.0,91.0,83.0,94.0,87.0,85.0,96.0,87.0,105.0,90.0,86.0,100.0,79.0,80.0,87.0,80.0,87.0,107.0,91.0,111.0,114.0,116.0,120.0,118.0,113.0,120.0,118.0,114.0,115.0,119.0,97.0,116.0,92.0,87.0,96.0,87.0,102.0,70.0,75.0,91.0,88.0,91.0,90.0,101.0,66.0,73.0,59.0,58.0,37.0,27.0,28.0,24.0,24.0,21.0,16.0,16.0,9.0,14.0,6.0,4.0,9.0 C84014,59.0,54.0,52.0,51.0,48.0,62.0,53.0,68.0,67.0,63.0,67.0,66.0,66.0,76.0,58.0,79.0,68.0,65.0,60.0,67.0,53.0,80.0,57.0,52.0,68.0,52.0,70.0,66.0,73.0,67.0,66.0,66.0,76.0,71.0,91.0,81.0,73.0,83.0,79.0,83.0,68.0,76.0,60.0,68.0,77.0,76.0,61.0,68.0,61.0,72.0,64.0,72.0,96.0,101.0,99.0,85.0,104.0,107.0,77.0,101.0,85.0,87.0,81.0,73.0,56.0,71.0,58.0,51.0,68.0,53.0,51.0,48.0,54.0,46.0,52.0,48.0,53.0,39.0,50.0,28.0,37.0,33.0,25.0,28.0,20.0,26.0,18.0,6.0,9.0,5.0,5.0,8.0,4.0,1.0,3.0,1.0 C84016,59.0,75.0,61.0,77.0,70.0,82.0,85.0,106.0,71.0,84.0,96.0,100.0,101.0,96.0,96.0,103.0,111.0,109.0,101.0,82.0,88.0,65.0,75.0,74.0,79.0,71.0,83.0,91.0,77.0,94.0,98.0,117.0,108.0,86.0,112.0,125.0,112.0,125.0,99.0,119.0,117.0,108.0,109.0,102.0,100.0,112.0,92.0,75.0,101.0,98.0,87.0,89.0,100.0,109.0,102.0,101.0,106.0,103.0,126.0,106.0,134.0,93.0,107.0,128.0,94.0,104.0,105.0,91.0,109.0,102.0,95.0,69.0,92.0,73.0,99.0,86.0,72.0,80.0,91.0,69.0,59.0,53.0,39.0,43.0,32.0,23.0,36.0,27.0,21.0,26.0,13.0,8.0,5.0,9.0,5.0,8.0 C84017,115.0,92.0,118.0,121.0,151.0,145.0,157.0,175.0,151.0,165.0,165.0,179.0,163.0,176.0,193.0,182.0,192.0,147.0,149.0,126.0,103.0,110.0,103.0,95.0,107.0,120.0,119.0,142.0,123.0,135.0,135.0,160.0,161.0,157.0,181.0,162.0,183.0,187.0,184.0,174.0,148.0,156.0,170.0,184.0,189.0,168.0,190.0,148.0,157.0,177.0,197.0,174.0,169.0,198.0,183.0,152.0,177.0,154.0,185.0,183.0,167.0,216.0,186.0,149.0,173.0,147.0,161.0,141.0,151.0,132.0,142.0,142.0,130.0,144.0,137.0,123.0,135.0,143.0,167.0,110.0,105.0,81.0,76.0,67.0,65.0,56.0,50.0,58.0,34.0,33.0,21.0,29.0,20.0,20.0,8.0,14.0 C84018,58.0,62.0,56.0,88.0,75.0,96.0,98.0,106.0,89.0,85.0,86.0,86.0,85.0,99.0,91.0,93.0,84.0,86.0,74.0,71.0,71.0,71.0,76.0,72.0,83.0,91.0,91.0,95.0,113.0,122.0,88.0,111.0,91.0,140.0,132.0,141.0,114.0,128.0,122.0,118.0,131.0,121.0,121.0,110.0,111.0,97.0,86.0,89.0,82.0,86.0,92.0,64.0,70.0,78.0,70.0,75.0,76.0,68.0,60.0,64.0,61.0,68.0,71.0,54.0,49.0,50.0,48.0,34.0,43.0,48.0,32.0,25.0,30.0,23.0,42.0,41.0,30.0,22.0,26.0,17.0,19.0,15.0,18.0,13.0,6.0,10.0,14.0,4.0,4.0,5.0,6.0,4.0,3.0,1.0,2.0,4.0 C84019,56.0,50.0,43.0,61.0,47.0,64.0,48.0,71.0,70.0,57.0,85.0,68.0,96.0,91.0,80.0,70.0,73.0,79.0,70.0,55.0,58.0,65.0,52.0,48.0,55.0,59.0,64.0,67.0,61.0,74.0,82.0,71.0,93.0,94.0,80.0,72.0,97.0,113.0,99.0,81.0,88.0,79.0,79.0,79.0,93.0,85.0,72.0,60.0,82.0,69.0,88.0,71.0,95.0,87.0,97.0,98.0,117.0,120.0,100.0,92.0,88.0,72.0,84.0,93.0,76.0,75.0,74.0,76.0,65.0,73.0,77.0,66.0,60.0,57.0,67.0,56.0,58.0,65.0,64.0,35.0,48.0,43.0,37.0,38.0,30.0,35.0,27.0,27.0,17.0,20.0,10.0,13.0,10.0,9.0,3.0,10.0 C84020,37.0,41.0,44.0,46.0,41.0,45.0,46.0,47.0,41.0,37.0,46.0,39.0,38.0,52.0,34.0,31.0,34.0,36.0,27.0,23.0,21.0,31.0,22.0,32.0,41.0,40.0,52.0,45.0,48.0,59.0,68.0,71.0,63.0,78.0,72.0,83.0,62.0,63.0,65.0,68.0,69.0,55.0,73.0,62.0,59.0,53.0,53.0,38.0,53.0,33.0,52.0,45.0,60.0,55.0,51.0,47.0,52.0,47.0,60.0,45.0,41.0,44.0,42.0,35.0,45.0,35.0,54.0,26.0,30.0,20.0,40.0,25.0,25.0,30.0,23.0,16.0,25.0,21.0,19.0,22.0,18.0,18.0,13.0,12.0,5.0,11.0,3.0,6.0,4.0,5.0,2.0,1.0,1.0,2.0,1.0,2.0 C84021,56.0,61.0,66.0,85.0,73.0,91.0,76.0,85.0,73.0,78.0,84.0,84.0,103.0,87.0,76.0,90.0,66.0,59.0,72.0,69.0,63.0,70.0,51.0,57.0,79.0,66.0,90.0,87.0,82.0,97.0,99.0,91.0,83.0,81.0,95.0,87.0,85.0,90.0,104.0,80.0,69.0,94.0,60.0,78.0,65.0,89.0,65.0,79.0,61.0,62.0,66.0,73.0,93.0,99.0,122.0,78.0,105.0,100.0,96.0,98.0,103.0,91.0,95.0,89.0,82.0,100.0,84.0,65.0,86.0,74.0,65.0,82.0,64.0,68.0,70.0,72.0,59.0,69.0,78.0,43.0,44.0,40.0,29.0,30.0,34.0,17.0,21.0,12.0,20.0,6.0,6.0,6.0,4.0,4.0,6.0,6.0 C84023,34.0,28.0,33.0,37.0,36.0,32.0,39.0,38.0,36.0,41.0,41.0,37.0,34.0,35.0,30.0,27.0,33.0,36.0,587.0,1536.0,1888.0,1907.0,1642.0,1593.0,1461.0,1196.0,979.0,825.0,793.0,795.0,666.0,593.0,536.0,507.0,494.0,480.0,452.0,277.0,181.0,105.0,173.0,161.0,159.0,123.0,109.0,95.0,88.0,60.0,56.0,44.0,37.0,28.0,36.0,27.0,23.0,25.0,31.0,37.0,26.0,26.0,31.0,35.0,21.0,17.0,16.0,18.0,20.0,16.0,13.0,13.0,23.0,16.0,6.0,11.0,11.0,14.0,11.0,11.0,10.0,5.0,7.0,8.0,4.0,7.0,6.0,7.0,4.0,4.0,5.0,2.0,1.0,1.0,3.0,,, C84024,102.0,118.0,117.0,153.0,125.0,147.0,109.0,141.0,170.0,190.0,148.0,165.0,197.0,159.0,172.0,152.0,165.0,161.0,172.0,163.0,154.0,139.0,144.0,152.0,142.0,187.0,168.0,192.0,178.0,208.0,226.0,256.0,212.0,265.0,264.0,237.0,266.0,283.0,247.0,232.0,205.0,223.0,202.0,199.0,229.0,198.0,213.0,179.0,188.0,218.0,177.0,212.0,182.0,234.0,223.0,218.0,249.0,209.0,235.0,231.0,240.0,234.0,217.0,197.0,205.0,166.0,172.0,195.0,161.0,152.0,145.0,135.0,157.0,135.0,140.0,125.0,147.0,149.0,149.0,92.0,128.0,97.0,92.0,69.0,61.0,57.0,48.0,53.0,39.0,31.0,27.0,22.0,19.0,13.0,5.0,26.0 C84025,19.0,30.0,27.0,27.0,28.0,32.0,28.0,25.0,30.0,36.0,36.0,43.0,47.0,61.0,58.0,52.0,38.0,47.0,34.0,34.0,37.0,35.0,46.0,35.0,42.0,26.0,31.0,33.0,32.0,24.0,27.0,44.0,31.0,38.0,32.0,25.0,36.0,32.0,43.0,39.0,36.0,33.0,52.0,37.0,52.0,35.0,48.0,44.0,44.0,45.0,63.0,48.0,60.0,71.0,59.0,57.0,63.0,54.0,56.0,55.0,75.0,70.0,68.0,69.0,65.0,63.0,60.0,57.0,50.0,55.0,43.0,48.0,52.0,55.0,60.0,51.0,61.0,53.0,45.0,29.0,40.0,42.0,25.0,23.0,27.0,20.0,22.0,11.0,6.0,14.0,10.0,8.0,4.0,4.0,5.0,3.0 C84026,40.0,47.0,54.0,44.0,59.0,53.0,62.0,47.0,70.0,84.0,72.0,72.0,67.0,92.0,66.0,84.0,81.0,79.0,74.0,65.0,65.0,65.0,56.0,50.0,69.0,55.0,58.0,63.0,68.0,71.0,75.0,83.0,61.0,79.0,92.0,67.0,77.0,79.0,91.0,80.0,68.0,82.0,90.0,72.0,83.0,77.0,88.0,67.0,65.0,55.0,72.0,65.0,80.0,96.0,90.0,81.0,90.0,88.0,101.0,93.0,82.0,71.0,83.0,70.0,79.0,69.0,71.0,69.0,70.0,73.0,61.0,69.0,59.0,72.0,90.0,79.0,65.0,81.0,77.0,53.0,49.0,47.0,30.0,40.0,33.0,20.0,25.0,26.0,20.0,16.0,10.0,9.0,9.0,4.0,4.0,9.0 C84028,39.0,45.0,45.0,43.0,45.0,44.0,46.0,38.0,39.0,40.0,40.0,44.0,45.0,63.0,33.0,46.0,35.0,56.0,33.0,32.0,27.0,30.0,24.0,30.0,23.0,42.0,36.0,41.0,53.0,47.0,31.0,57.0,47.0,55.0,63.0,53.0,58.0,62.0,47.0,57.0,54.0,48.0,57.0,54.0,61.0,41.0,45.0,45.0,42.0,49.0,46.0,54.0,46.0,40.0,67.0,53.0,50.0,49.0,49.0,45.0,49.0,42.0,42.0,53.0,54.0,49.0,39.0,43.0,29.0,40.0,41.0,29.0,32.0,28.0,17.0,34.0,38.0,25.0,33.0,26.0,32.0,26.0,21.0,16.0,19.0,16.0,13.0,19.0,3.0,9.0,9.0,7.0,7.0,2.0,2.0,4.0 C84029,110.0,135.0,115.0,125.0,124.0,122.0,135.0,114.0,154.0,121.0,124.0,119.0,140.0,140.0,118.0,112.0,125.0,118.0,103.0,98.0,94.0,120.0,97.0,112.0,109.0,141.0,130.0,154.0,167.0,141.0,164.0,188.0,226.0,203.0,217.0,169.0,211.0,211.0,183.0,175.0,188.0,179.0,188.0,165.0,170.0,148.0,143.0,116.0,130.0,129.0,148.0,125.0,134.0,138.0,147.0,141.0,156.0,164.0,125.0,150.0,132.0,140.0,155.0,137.0,151.0,106.0,140.0,106.0,107.0,99.0,91.0,93.0,103.0,88.0,89.0,81.0,80.0,96.0,96.0,73.0,74.0,55.0,49.0,36.0,32.0,41.0,30.0,27.0,25.0,16.0,16.0,16.0,5.0,9.0,6.0,15.0 C84030,49.0,54.0,55.0,56.0,47.0,48.0,60.0,57.0,46.0,67.0,74.0,67.0,81.0,69.0,73.0,62.0,84.0,83.0,72.0,56.0,58.0,73.0,76.0,84.0,85.0,96.0,93.0,99.0,112.0,94.0,95.0,118.0,108.0,120.0,100.0,132.0,146.0,109.0,124.0,116.0,116.0,122.0,120.0,97.0,83.0,108.0,80.0,79.0,77.0,69.0,81.0,95.0,79.0,83.0,81.0,76.0,82.0,64.0,75.0,72.0,58.0,52.0,60.0,47.0,61.0,57.0,48.0,34.0,45.0,43.0,29.0,43.0,36.0,33.0,44.0,37.0,33.0,42.0,39.0,29.0,29.0,44.0,35.0,14.0,17.0,19.0,16.0,16.0,15.0,6.0,6.0,7.0,5.0,4.0,2.0,3.0 C84032,67.0,59.0,66.0,56.0,82.0,68.0,82.0,76.0,94.0,78.0,88.0,104.0,95.0,112.0,105.0,114.0,94.0,105.0,87.0,111.0,71.0,70.0,77.0,87.0,85.0,83.0,83.0,110.0,86.0,106.0,109.0,116.0,116.0,119.0,125.0,97.0,104.0,95.0,95.0,95.0,90.0,103.0,88.0,103.0,106.0,105.0,89.0,107.0,111.0,117.0,108.0,113.0,103.0,129.0,149.0,120.0,133.0,137.0,140.0,140.0,147.0,120.0,136.0,130.0,133.0,114.0,126.0,124.0,112.0,107.0,118.0,121.0,114.0,114.0,117.0,119.0,120.0,150.0,122.0,103.0,82.0,83.0,79.0,52.0,59.0,46.0,38.0,41.0,34.0,20.0,18.0,13.0,14.0,8.0,2.0,13.0 C84033,33.0,32.0,40.0,34.0,48.0,45.0,38.0,50.0,42.0,49.0,57.0,45.0,58.0,45.0,60.0,54.0,49.0,54.0,34.0,49.0,49.0,37.0,36.0,40.0,31.0,39.0,32.0,49.0,59.0,48.0,47.0,62.0,49.0,60.0,66.0,74.0,66.0,74.0,68.0,56.0,62.0,53.0,58.0,68.0,54.0,64.0,66.0,52.0,66.0,61.0,57.0,59.0,61.0,64.0,66.0,53.0,71.0,62.0,64.0,51.0,74.0,54.0,58.0,61.0,60.0,66.0,56.0,42.0,50.0,39.0,42.0,31.0,40.0,59.0,42.0,54.0,53.0,49.0,42.0,35.0,37.0,32.0,34.0,18.0,15.0,21.0,24.0,12.0,13.0,8.0,9.0,3.0,2.0,3.0,3.0,5.0 C84034,22.0,30.0,39.0,38.0,47.0,44.0,43.0,49.0,38.0,52.0,50.0,39.0,47.0,73.0,66.0,53.0,67.0,47.0,61.0,47.0,49.0,50.0,43.0,44.0,61.0,59.0,54.0,54.0,69.0,47.0,62.0,69.0,79.0,71.0,67.0,62.0,58.0,67.0,67.0,70.0,82.0,63.0,55.0,52.0,64.0,57.0,62.0,49.0,58.0,45.0,61.0,61.0,53.0,60.0,66.0,79.0,67.0,52.0,73.0,76.0,79.0,73.0,57.0,63.0,65.0,61.0,51.0,52.0,43.0,36.0,36.0,39.0,29.0,31.0,36.0,36.0,23.0,31.0,29.0,24.0,24.0,22.0,20.0,12.0,12.0,9.0,8.0,9.0,9.0,9.0,7.0,3.0,6.0,4.0,2.0,4.0 C84035,50.0,44.0,41.0,42.0,45.0,53.0,60.0,69.0,73.0,56.0,59.0,59.0,73.0,57.0,70.0,66.0,69.0,71.0,68.0,59.0,55.0,51.0,48.0,41.0,52.0,51.0,55.0,60.0,81.0,62.0,69.0,59.0,64.0,82.0,83.0,64.0,55.0,71.0,74.0,63.0,64.0,70.0,61.0,67.0,65.0,62.0,59.0,67.0,41.0,64.0,63.0,63.0,79.0,74.0,69.0,81.0,90.0,86.0,70.0,89.0,112.0,92.0,101.0,87.0,80.0,88.0,88.0,84.0,71.0,65.0,73.0,82.0,61.0,72.0,70.0,65.0,77.0,74.0,69.0,53.0,55.0,42.0,34.0,42.0,26.0,33.0,31.0,25.0,29.0,16.0,15.0,8.0,5.0,9.0,3.0,8.0 C84036,75.0,96.0,110.0,106.0,106.0,128.0,122.0,115.0,112.0,114.0,122.0,118.0,131.0,116.0,114.0,100.0,105.0,140.0,106.0,97.0,94.0,82.0,88.0,76.0,94.0,94.0,109.0,108.0,121.0,144.0,133.0,132.0,161.0,179.0,166.0,170.0,157.0,158.0,166.0,131.0,156.0,159.0,157.0,135.0,144.0,134.0,100.0,106.0,103.0,108.0,92.0,132.0,107.0,122.0,121.0,114.0,126.0,109.0,142.0,126.0,124.0,113.0,115.0,120.0,112.0,89.0,113.0,97.0,91.0,86.0,67.0,90.0,74.0,76.0,75.0,73.0,81.0,70.0,57.0,40.0,53.0,47.0,36.0,28.0,33.0,23.0,19.0,18.0,11.0,12.0,6.0,12.0,4.0,4.0,3.0,15.0 C84037,41.0,53.0,47.0,55.0,56.0,60.0,65.0,65.0,64.0,79.0,71.0,62.0,62.0,87.0,68.0,84.0,72.0,71.0,81.0,45.0,54.0,52.0,65.0,57.0,54.0,68.0,59.0,70.0,45.0,47.0,57.0,69.0,70.0,66.0,69.0,67.0,83.0,85.0,75.0,71.0,70.0,66.0,76.0,74.0,73.0,70.0,74.0,84.0,82.0,75.0,76.0,70.0,106.0,82.0,92.0,95.0,114.0,97.0,89.0,115.0,92.0,95.0,90.0,89.0,105.0,75.0,67.0,72.0,69.0,71.0,76.0,91.0,65.0,71.0,63.0,72.0,79.0,73.0,72.0,63.0,68.0,49.0,54.0,42.0,27.0,29.0,29.0,19.0,24.0,13.0,10.0,11.0,5.0,5.0,5.0,8.0 C84039,48.0,55.0,56.0,58.0,44.0,57.0,50.0,66.0,59.0,53.0,68.0,52.0,56.0,53.0,63.0,64.0,57.0,67.0,63.0,100.0,143.0,137.0,163.0,179.0,123.0,129.0,121.0,146.0,122.0,131.0,145.0,122.0,134.0,149.0,147.0,142.0,149.0,124.0,127.0,128.0,119.0,128.0,118.0,113.0,109.0,127.0,87.0,87.0,84.0,109.0,71.0,84.0,85.0,82.0,68.0,91.0,55.0,71.0,55.0,91.0,75.0,62.0,69.0,61.0,45.0,56.0,49.0,56.0,45.0,40.0,40.0,43.0,46.0,37.0,27.0,29.0,40.0,28.0,30.0,19.0,18.0,23.0,22.0,5.0,12.0,13.0,16.0,10.0,8.0,8.0,8.0,7.0,6.0,6.0,2.0,7.0 C84042,17.0,33.0,36.0,43.0,30.0,34.0,44.0,33.0,65.0,52.0,54.0,53.0,48.0,62.0,47.0,51.0,40.0,53.0,40.0,36.0,35.0,35.0,34.0,37.0,38.0,36.0,27.0,41.0,45.0,44.0,43.0,43.0,35.0,55.0,46.0,41.0,47.0,50.0,52.0,56.0,51.0,56.0,41.0,60.0,47.0,51.0,41.0,36.0,44.0,45.0,45.0,50.0,38.0,41.0,63.0,53.0,41.0,61.0,51.0,53.0,48.0,62.0,45.0,51.0,62.0,39.0,24.0,41.0,26.0,24.0,25.0,38.0,26.0,26.0,35.0,22.0,25.0,36.0,32.0,25.0,26.0,17.0,26.0,13.0,15.0,16.0,17.0,7.0,10.0,10.0,5.0,2.0,5.0,3.0,2.0,3.0 C84043,62.0,84.0,80.0,78.0,85.0,68.0,95.0,98.0,92.0,101.0,93.0,84.0,94.0,92.0,105.0,98.0,110.0,95.0,106.0,87.0,92.0,75.0,74.0,71.0,73.0,69.0,80.0,67.0,74.0,85.0,90.0,85.0,101.0,90.0,93.0,87.0,99.0,98.0,98.0,90.0,92.0,89.0,74.0,88.0,73.0,79.0,64.0,57.0,70.0,82.0,72.0,77.0,103.0,107.0,85.0,71.0,62.0,93.0,80.0,69.0,78.0,91.0,74.0,66.0,68.0,61.0,51.0,56.0,54.0,42.0,40.0,53.0,40.0,48.0,27.0,37.0,34.0,45.0,47.0,37.0,38.0,25.0,23.0,23.0,10.0,18.0,11.0,12.0,8.0,11.0,9.0,6.0,7.0,2.0,3.0,4.0 C84044,35.0,35.0,47.0,51.0,49.0,47.0,51.0,73.0,76.0,86.0,88.0,87.0,86.0,81.0,76.0,78.0,70.0,84.0,71.0,52.0,46.0,57.0,37.0,56.0,39.0,49.0,45.0,48.0,47.0,51.0,52.0,50.0,53.0,50.0,59.0,58.0,67.0,65.0,59.0,72.0,76.0,70.0,66.0,77.0,79.0,65.0,68.0,74.0,70.0,72.0,62.0,71.0,67.0,62.0,73.0,43.0,63.0,68.0,61.0,81.0,67.0,59.0,60.0,66.0,73.0,59.0,54.0,54.0,51.0,56.0,41.0,64.0,62.0,51.0,50.0,62.0,62.0,54.0,55.0,45.0,32.0,35.0,31.0,23.0,35.0,23.0,27.0,22.0,18.0,18.0,15.0,4.0,10.0,3.0,3.0,5.0 C84045,21.0,30.0,34.0,37.0,32.0,28.0,32.0,39.0,45.0,42.0,38.0,46.0,44.0,34.0,42.0,42.0,39.0,41.0,36.0,34.0,30.0,29.0,38.0,30.0,37.0,35.0,33.0,49.0,34.0,26.0,29.0,37.0,37.0,44.0,31.0,42.0,44.0,52.0,41.0,31.0,36.0,32.0,34.0,36.0,42.0,34.0,41.0,43.0,41.0,51.0,39.0,41.0,47.0,59.0,59.0,59.0,66.0,74.0,72.0,48.0,52.0,89.0,75.0,75.0,58.0,59.0,60.0,66.0,69.0,47.0,49.0,53.0,52.0,54.0,57.0,49.0,53.0,76.0,62.0,45.0,57.0,45.0,34.0,25.0,28.0,24.0,18.0,15.0,14.0,11.0,10.0,4.0,3.0,4.0,4.0,6.0 C84046,42.0,45.0,40.0,47.0,44.0,61.0,60.0,63.0,71.0,62.0,64.0,72.0,67.0,80.0,85.0,52.0,64.0,60.0,69.0,50.0,39.0,65.0,46.0,57.0,42.0,38.0,47.0,54.0,68.0,73.0,56.0,66.0,52.0,78.0,77.0,80.0,61.0,75.0,74.0,70.0,53.0,76.0,60.0,70.0,59.0,58.0,42.0,53.0,52.0,41.0,35.0,53.0,60.0,58.0,45.0,54.0,61.0,51.0,60.0,62.0,46.0,43.0,50.0,56.0,64.0,46.0,52.0,39.0,46.0,41.0,44.0,31.0,40.0,34.0,30.0,27.0,20.0,29.0,27.0,18.0,20.0,12.0,15.0,11.0,11.0,4.0,12.0,7.0,11.0,6.0,9.0,7.0,4.0,6.0,8.0,5.0 C84047,38.0,47.0,49.0,46.0,49.0,45.0,53.0,64.0,57.0,52.0,65.0,63.0,66.0,65.0,55.0,60.0,48.0,67.0,70.0,43.0,39.0,38.0,35.0,50.0,40.0,43.0,54.0,46.0,43.0,50.0,53.0,54.0,57.0,56.0,75.0,61.0,61.0,57.0,74.0,66.0,65.0,57.0,57.0,69.0,55.0,62.0,59.0,60.0,62.0,68.0,59.0,62.0,60.0,64.0,82.0,77.0,81.0,61.0,70.0,63.0,97.0,65.0,76.0,71.0,71.0,66.0,68.0,81.0,71.0,63.0,61.0,53.0,76.0,48.0,61.0,67.0,72.0,59.0,80.0,49.0,46.0,45.0,30.0,31.0,24.0,28.0,20.0,24.0,17.0,14.0,14.0,13.0,4.0,7.0,2.0,7.0 C84049,25.0,20.0,41.0,30.0,47.0,41.0,36.0,51.0,52.0,56.0,50.0,58.0,71.0,92.0,64.0,68.0,68.0,71.0,81.0,68.0,74.0,80.0,75.0,71.0,70.0,50.0,45.0,45.0,53.0,43.0,55.0,57.0,37.0,41.0,36.0,40.0,46.0,50.0,52.0,47.0,52.0,59.0,56.0,56.0,57.0,66.0,73.0,51.0,61.0,80.0,72.0,72.0,78.0,84.0,83.0,93.0,111.0,100.0,83.0,87.0,93.0,102.0,118.0,88.0,83.0,99.0,93.0,105.0,75.0,95.0,76.0,78.0,55.0,69.0,81.0,83.0,81.0,97.0,108.0,68.0,85.0,78.0,55.0,36.0,34.0,42.0,36.0,21.0,24.0,24.0,20.0,13.0,17.0,8.0,6.0,10.0 C84051,61.0,92.0,104.0,111.0,93.0,111.0,124.0,97.0,130.0,102.0,128.0,132.0,115.0,146.0,115.0,142.0,124.0,124.0,112.0,93.0,118.0,98.0,84.0,94.0,102.0,85.0,80.0,104.0,94.0,118.0,112.0,124.0,154.0,164.0,147.0,139.0,133.0,139.0,129.0,152.0,151.0,163.0,143.0,139.0,142.0,126.0,107.0,109.0,108.0,128.0,124.0,130.0,115.0,138.0,134.0,134.0,125.0,124.0,123.0,123.0,132.0,122.0,122.0,125.0,104.0,119.0,107.0,112.0,90.0,89.0,82.0,73.0,66.0,70.0,80.0,73.0,72.0,70.0,66.0,53.0,56.0,51.0,45.0,29.0,33.0,32.0,15.0,22.0,15.0,15.0,11.0,13.0,9.0,3.0,4.0,6.0 C84053,88.0,87.0,86.0,91.0,93.0,103.0,82.0,112.0,100.0,110.0,100.0,107.0,125.0,114.0,106.0,119.0,113.0,121.0,113.0,100.0,85.0,64.0,70.0,76.0,82.0,81.0,97.0,98.0,118.0,92.0,107.0,124.0,118.0,129.0,119.0,146.0,122.0,149.0,116.0,138.0,108.0,109.0,108.0,106.0,100.0,119.0,92.0,106.0,92.0,93.0,107.0,100.0,104.0,112.0,121.0,99.0,117.0,118.0,97.0,99.0,119.0,105.0,105.0,106.0,84.0,93.0,84.0,86.0,77.0,61.0,73.0,56.0,60.0,79.0,68.0,67.0,71.0,67.0,66.0,44.0,53.0,48.0,44.0,35.0,33.0,30.0,32.0,24.0,13.0,12.0,11.0,6.0,8.0,10.0,5.0,4.0 C84055,44.0,46.0,45.0,55.0,59.0,65.0,56.0,70.0,83.0,55.0,67.0,70.0,82.0,90.0,90.0,75.0,72.0,79.0,60.0,62.0,66.0,66.0,59.0,52.0,64.0,71.0,47.0,58.0,57.0,58.0,67.0,99.0,65.0,84.0,71.0,79.0,70.0,86.0,76.0,95.0,72.0,63.0,67.0,66.0,75.0,67.0,86.0,77.0,65.0,71.0,68.0,78.0,78.0,61.0,92.0,69.0,76.0,59.0,74.0,72.0,72.0,95.0,83.0,71.0,62.0,64.0,58.0,61.0,57.0,46.0,36.0,39.0,52.0,38.0,48.0,42.0,49.0,51.0,42.0,31.0,24.0,27.0,38.0,28.0,24.0,18.0,25.0,24.0,11.0,20.0,12.0,9.0,8.0,6.0,2.0,11.0 C84057,16.0,24.0,25.0,28.0,32.0,22.0,25.0,21.0,20.0,29.0,26.0,17.0,20.0,26.0,26.0,28.0,18.0,31.0,25.0,14.0,16.0,20.0,19.0,21.0,17.0,31.0,24.0,20.0,24.0,24.0,28.0,32.0,33.0,36.0,28.0,33.0,33.0,26.0,30.0,37.0,26.0,25.0,26.0,29.0,23.0,32.0,29.0,28.0,19.0,34.0,23.0,23.0,24.0,34.0,28.0,34.0,36.0,31.0,31.0,28.0,39.0,35.0,34.0,17.0,27.0,24.0,24.0,23.0,30.0,26.0,24.0,17.0,21.0,32.0,20.0,18.0,23.0,19.0,20.0,18.0,14.0,9.0,22.0,8.0,6.0,9.0,8.0,6.0,5.0,3.0,3.0,1.0,,2.0,3.0,1.0 C84059,59.0,58.0,82.0,68.0,74.0,80.0,91.0,83.0,93.0,80.0,92.0,85.0,79.0,87.0,76.0,89.0,78.0,62.0,69.0,80.0,65.0,64.0,70.0,63.0,67.0,59.0,59.0,70.0,88.0,82.0,96.0,77.0,81.0,100.0,107.0,86.0,88.0,94.0,109.0,92.0,95.0,87.0,81.0,76.0,78.0,81.0,71.0,72.0,69.0,70.0,81.0,77.0,87.0,101.0,88.0,89.0,87.0,88.0,90.0,102.0,92.0,79.0,87.0,83.0,81.0,68.0,58.0,62.0,55.0,46.0,58.0,51.0,55.0,52.0,42.0,44.0,33.0,44.0,35.0,34.0,27.0,29.0,20.0,17.0,16.0,14.0,19.0,13.0,12.0,8.0,9.0,4.0,3.0,5.0,3.0,8.0 C84060,33.0,40.0,32.0,46.0,40.0,54.0,54.0,46.0,60.0,57.0,59.0,61.0,68.0,48.0,66.0,61.0,48.0,50.0,47.0,57.0,49.0,46.0,52.0,51.0,52.0,46.0,50.0,45.0,41.0,58.0,52.0,61.0,45.0,60.0,75.0,69.0,63.0,75.0,61.0,60.0,69.0,58.0,55.0,48.0,64.0,47.0,64.0,51.0,47.0,56.0,51.0,46.0,60.0,51.0,69.0,47.0,55.0,52.0,50.0,66.0,49.0,64.0,51.0,47.0,59.0,43.0,53.0,53.0,65.0,50.0,45.0,50.0,42.0,28.0,29.0,31.0,28.0,32.0,31.0,26.0,27.0,24.0,21.0,11.0,15.0,13.0,9.0,13.0,11.0,6.0,5.0,4.0,3.0,4.0,2.0,8.0 C84061,47.0,49.0,50.0,56.0,56.0,57.0,66.0,82.0,70.0,79.0,64.0,75.0,70.0,89.0,71.0,72.0,72.0,55.0,52.0,49.0,45.0,64.0,48.0,44.0,57.0,57.0,65.0,60.0,85.0,77.0,68.0,72.0,74.0,83.0,80.0,84.0,92.0,92.0,74.0,82.0,100.0,85.0,74.0,86.0,74.0,69.0,70.0,63.0,57.0,57.0,64.0,60.0,51.0,56.0,66.0,71.0,60.0,69.0,70.0,52.0,46.0,46.0,62.0,56.0,52.0,49.0,47.0,40.0,40.0,31.0,42.0,33.0,32.0,29.0,25.0,34.0,26.0,32.0,24.0,21.0,28.0,16.0,21.0,21.0,13.0,11.0,11.0,7.0,10.0,9.0,4.0,2.0,4.0,1.0,,2.0 C84063,43.0,40.0,35.0,49.0,41.0,67.0,47.0,49.0,66.0,50.0,70.0,66.0,68.0,73.0,77.0,72.0,69.0,71.0,67.0,62.0,56.0,64.0,62.0,62.0,62.0,52.0,65.0,70.0,75.0,55.0,62.0,64.0,69.0,81.0,78.0,75.0,64.0,74.0,73.0,51.0,76.0,65.0,89.0,72.0,81.0,75.0,75.0,60.0,62.0,70.0,63.0,50.0,57.0,70.0,55.0,60.0,61.0,59.0,47.0,61.0,36.0,48.0,49.0,54.0,40.0,39.0,28.0,31.0,28.0,32.0,23.0,30.0,31.0,31.0,26.0,31.0,22.0,18.0,15.0,23.0,14.0,16.0,11.0,12.0,6.0,3.0,3.0,14.0,10.0,5.0,5.0,2.0,3.0,4.0,,1.0 C84064,67.0,68.0,72.0,64.0,65.0,68.0,72.0,98.0,73.0,61.0,83.0,78.0,72.0,75.0,81.0,76.0,67.0,80.0,55.0,60.0,59.0,54.0,43.0,60.0,68.0,69.0,81.0,70.0,62.0,71.0,63.0,94.0,92.0,93.0,95.0,94.0,81.0,83.0,90.0,93.0,67.0,81.0,76.0,73.0,53.0,77.0,65.0,54.0,53.0,58.0,66.0,48.0,63.0,53.0,68.0,57.0,57.0,57.0,52.0,59.0,49.0,55.0,47.0,58.0,36.0,29.0,32.0,37.0,33.0,31.0,30.0,27.0,30.0,31.0,33.0,28.0,28.0,32.0,31.0,25.0,17.0,14.0,14.0,7.0,12.0,8.0,15.0,7.0,5.0,6.0,6.0,3.0,2.0,3.0,,3.0 C84065,17.0,24.0,24.0,33.0,27.0,27.0,31.0,34.0,27.0,35.0,43.0,28.0,30.0,46.0,34.0,35.0,33.0,32.0,36.0,36.0,29.0,27.0,28.0,34.0,40.0,38.0,32.0,41.0,34.0,33.0,37.0,47.0,38.0,59.0,46.0,52.0,32.0,44.0,42.0,45.0,50.0,39.0,48.0,24.0,29.0,33.0,37.0,27.0,33.0,29.0,41.0,34.0,26.0,35.0,28.0,38.0,25.0,29.0,36.0,24.0,28.0,33.0,24.0,28.0,24.0,23.0,16.0,30.0,19.0,16.0,22.0,16.0,16.0,21.0,11.0,20.0,23.0,19.0,33.0,18.0,15.0,13.0,13.0,8.0,12.0,17.0,9.0,6.0,9.0,8.0,2.0,5.0,4.0,5.0,5.0,4.0 C84066,39.0,32.0,45.0,40.0,48.0,57.0,50.0,69.0,58.0,65.0,63.0,64.0,74.0,76.0,78.0,71.0,74.0,55.0,58.0,61.0,44.0,58.0,44.0,52.0,50.0,53.0,54.0,56.0,48.0,46.0,63.0,61.0,79.0,71.0,74.0,58.0,76.0,74.0,83.0,76.0,79.0,75.0,67.0,65.0,77.0,69.0,65.0,59.0,62.0,56.0,54.0,66.0,56.0,64.0,77.0,76.0,83.0,84.0,75.0,78.0,66.0,80.0,67.0,84.0,67.0,65.0,51.0,57.0,71.0,56.0,59.0,55.0,53.0,40.0,51.0,54.0,47.0,54.0,65.0,33.0,33.0,29.0,33.0,26.0,23.0,23.0,20.0,21.0,18.0,12.0,11.0,11.0,5.0,6.0,1.0,3.0 C84067,21.0,23.0,22.0,22.0,29.0,22.0,36.0,37.0,36.0,30.0,30.0,36.0,34.0,32.0,28.0,35.0,27.0,22.0,31.0,34.0,29.0,22.0,34.0,18.0,21.0,27.0,28.0,21.0,32.0,27.0,23.0,31.0,39.0,41.0,39.0,31.0,34.0,37.0,27.0,35.0,52.0,31.0,43.0,41.0,31.0,39.0,37.0,32.0,40.0,38.0,43.0,35.0,41.0,38.0,46.0,50.0,32.0,44.0,42.0,35.0,49.0,44.0,45.0,28.0,57.0,34.0,38.0,30.0,38.0,27.0,29.0,25.0,28.0,38.0,33.0,31.0,38.0,28.0,34.0,28.0,22.0,27.0,19.0,17.0,16.0,7.0,7.0,9.0,12.0,5.0,4.0,4.0,3.0,3.0,,4.0 C84069,40.0,47.0,45.0,72.0,63.0,84.0,55.0,67.0,91.0,93.0,89.0,103.0,87.0,88.0,107.0,79.0,112.0,83.0,67.0,49.0,70.0,75.0,66.0,71.0,49.0,76.0,77.0,78.0,74.0,81.0,93.0,96.0,112.0,94.0,87.0,92.0,105.0,105.0,129.0,113.0,126.0,128.0,113.0,94.0,106.0,110.0,102.0,99.0,94.0,75.0,80.0,93.0,98.0,79.0,102.0,75.0,74.0,99.0,97.0,112.0,107.0,84.0,92.0,82.0,91.0,73.0,75.0,67.0,67.0,46.0,60.0,65.0,77.0,58.0,58.0,65.0,60.0,59.0,50.0,36.0,41.0,42.0,33.0,25.0,28.0,15.0,19.0,21.0,16.0,19.0,4.0,9.0,8.0,7.0,2.0,9.0 C84072,72.0,55.0,78.0,60.0,82.0,96.0,78.0,75.0,91.0,79.0,74.0,88.0,77.0,96.0,69.0,77.0,81.0,67.0,66.0,83.0,51.0,82.0,78.0,67.0,68.0,78.0,81.0,89.0,87.0,84.0,102.0,93.0,103.0,90.0,106.0,103.0,122.0,110.0,108.0,106.0,105.0,98.0,86.0,85.0,78.0,91.0,78.0,71.0,86.0,87.0,79.0,77.0,72.0,62.0,59.0,58.0,72.0,67.0,50.0,61.0,58.0,62.0,61.0,53.0,49.0,42.0,32.0,42.0,27.0,26.0,25.0,28.0,20.0,22.0,27.0,27.0,12.0,21.0,11.0,16.0,7.0,18.0,12.0,6.0,11.0,9.0,4.0,9.0,6.0,5.0,5.0,2.0,2.0,3.0,,1.0 C84074,23.0,26.0,35.0,33.0,18.0,38.0,36.0,38.0,33.0,24.0,39.0,42.0,23.0,31.0,37.0,29.0,28.0,28.0,21.0,25.0,18.0,23.0,22.0,25.0,23.0,30.0,34.0,24.0,49.0,26.0,39.0,27.0,28.0,36.0,34.0,38.0,30.0,39.0,41.0,30.0,32.0,34.0,37.0,33.0,20.0,25.0,31.0,26.0,19.0,23.0,26.0,40.0,37.0,42.0,33.0,36.0,39.0,27.0,42.0,20.0,37.0,31.0,40.0,29.0,38.0,26.0,31.0,28.0,27.0,23.0,24.0,24.0,23.0,24.0,18.0,25.0,20.0,24.0,20.0,16.0,12.0,21.0,13.0,7.0,12.0,10.0,7.0,3.0,4.0,3.0,4.0,1.0,3.0,2.0,, C84076,16.0,14.0,21.0,11.0,17.0,22.0,22.0,18.0,16.0,31.0,29.0,26.0,28.0,17.0,32.0,22.0,22.0,26.0,18.0,20.0,28.0,17.0,17.0,20.0,22.0,25.0,26.0,24.0,22.0,23.0,22.0,27.0,34.0,30.0,31.0,29.0,40.0,32.0,29.0,22.0,25.0,29.0,23.0,21.0,28.0,26.0,26.0,19.0,15.0,31.0,23.0,19.0,28.0,29.0,27.0,36.0,40.0,40.0,25.0,38.0,25.0,37.0,24.0,23.0,22.0,26.0,20.0,24.0,22.0,11.0,19.0,26.0,19.0,26.0,16.0,18.0,19.0,13.0,13.0,19.0,14.0,12.0,10.0,9.0,5.0,10.0,6.0,4.0,1.0,7.0,2.0,3.0,2.0,1.0,,4.0 C84077,68.0,90.0,94.0,93.0,108.0,103.0,106.0,104.0,130.0,129.0,105.0,112.0,125.0,118.0,104.0,103.0,81.0,114.0,114.0,107.0,92.0,87.0,90.0,65.0,71.0,93.0,93.0,114.0,119.0,108.0,131.0,126.0,133.0,139.0,115.0,118.0,120.0,133.0,115.0,127.0,132.0,106.0,142.0,128.0,149.0,134.0,102.0,96.0,129.0,97.0,96.0,104.0,116.0,129.0,128.0,117.0,133.0,131.0,147.0,130.0,131.0,130.0,136.0,132.0,108.0,126.0,115.0,106.0,103.0,102.0,76.0,90.0,85.0,97.0,82.0,84.0,88.0,80.0,85.0,59.0,67.0,70.0,70.0,48.0,30.0,29.0,28.0,31.0,21.0,17.0,11.0,4.0,6.0,8.0,2.0,5.0 C84078,52.0,52.0,65.0,59.0,78.0,82.0,91.0,88.0,78.0,92.0,89.0,82.0,82.0,84.0,104.0,95.0,92.0,115.0,91.0,85.0,57.0,66.0,55.0,61.0,74.0,56.0,70.0,83.0,77.0,82.0,98.0,99.0,83.0,112.0,102.0,119.0,111.0,110.0,109.0,109.0,128.0,98.0,92.0,100.0,108.0,96.0,80.0,85.0,58.0,68.0,85.0,88.0,90.0,73.0,73.0,92.0,83.0,83.0,79.0,78.0,79.0,77.0,75.0,69.0,67.0,67.0,72.0,50.0,57.0,53.0,49.0,41.0,66.0,48.0,42.0,42.0,47.0,48.0,44.0,37.0,24.0,26.0,17.0,21.0,20.0,10.0,12.0,12.0,9.0,5.0,12.0,6.0,5.0,6.0,,5.0 C84080,51.0,47.0,60.0,70.0,60.0,83.0,70.0,89.0,57.0,81.0,62.0,59.0,85.0,77.0,66.0,79.0,64.0,59.0,71.0,51.0,49.0,55.0,49.0,80.0,62.0,83.0,100.0,105.0,104.0,115.0,107.0,139.0,114.0,130.0,128.0,126.0,115.0,119.0,101.0,123.0,123.0,101.0,111.0,101.0,107.0,91.0,92.0,70.0,74.0,81.0,89.0,79.0,72.0,86.0,97.0,86.0,99.0,100.0,96.0,75.0,86.0,95.0,94.0,82.0,79.0,76.0,82.0,88.0,83.0,75.0,57.0,70.0,67.0,65.0,71.0,65.0,65.0,71.0,65.0,48.0,43.0,41.0,32.0,27.0,28.0,29.0,29.0,24.0,18.0,14.0,11.0,9.0,8.0,7.0,6.0,12.0 C84081,26.0,23.0,42.0,37.0,30.0,35.0,50.0,47.0,49.0,51.0,42.0,51.0,60.0,58.0,55.0,52.0,45.0,32.0,46.0,47.0,48.0,42.0,29.0,44.0,33.0,34.0,41.0,28.0,39.0,31.0,51.0,57.0,48.0,48.0,49.0,53.0,56.0,54.0,59.0,46.0,63.0,39.0,43.0,52.0,48.0,43.0,47.0,27.0,41.0,31.0,50.0,35.0,47.0,47.0,46.0,32.0,34.0,41.0,37.0,48.0,40.0,41.0,40.0,39.0,48.0,37.0,43.0,36.0,45.0,30.0,41.0,39.0,33.0,35.0,33.0,25.0,17.0,27.0,13.0,13.0,17.0,10.0,13.0,12.0,10.0,9.0,3.0,8.0,6.0,1.0,6.0,7.0,4.0,1.0,2.0,8.0 C84084,26.0,33.0,33.0,35.0,36.0,37.0,35.0,52.0,44.0,46.0,46.0,57.0,50.0,58.0,61.0,53.0,41.0,51.0,49.0,34.0,36.0,39.0,36.0,28.0,29.0,32.0,33.0,34.0,36.0,28.0,34.0,37.0,44.0,24.0,38.0,43.0,36.0,34.0,40.0,41.0,55.0,49.0,60.0,53.0,57.0,57.0,40.0,36.0,52.0,40.0,60.0,52.0,47.0,49.0,52.0,59.0,62.0,66.0,65.0,44.0,66.0,52.0,54.0,51.0,42.0,50.0,53.0,46.0,51.0,44.0,41.0,55.0,45.0,52.0,46.0,64.0,41.0,60.0,61.0,40.0,39.0,38.0,37.0,26.0,23.0,25.0,21.0,22.0,23.0,15.0,14.0,14.0,8.0,8.0,5.0,11.0 C84085,42.0,22.0,40.0,46.0,39.0,48.0,40.0,55.0,44.0,52.0,50.0,50.0,46.0,54.0,36.0,31.0,48.0,40.0,68.0,61.0,67.0,71.0,76.0,82.0,79.0,88.0,87.0,88.0,94.0,107.0,95.0,94.0,115.0,105.0,96.0,100.0,111.0,93.0,80.0,86.0,79.0,110.0,68.0,78.0,76.0,91.0,87.0,76.0,77.0,59.0,66.0,68.0,72.0,91.0,79.0,67.0,64.0,74.0,80.0,83.0,69.0,75.0,77.0,71.0,72.0,51.0,62.0,48.0,49.0,45.0,48.0,38.0,34.0,41.0,41.0,40.0,31.0,38.0,31.0,25.0,22.0,16.0,17.0,9.0,7.0,8.0,13.0,10.0,12.0,5.0,5.0,4.0,2.0,,1.0,9.0 C84086,64.0,73.0,85.0,96.0,102.0,112.0,92.0,94.0,111.0,101.0,120.0,117.0,106.0,111.0,93.0,108.0,107.0,94.0,95.0,61.0,61.0,51.0,60.0,49.0,82.0,71.0,90.0,92.0,83.0,84.0,93.0,105.0,110.0,102.0,124.0,111.0,112.0,123.0,135.0,129.0,105.0,142.0,126.0,151.0,134.0,130.0,142.0,119.0,117.0,103.0,104.0,103.0,101.0,99.0,92.0,86.0,81.0,94.0,89.0,79.0,68.0,65.0,63.0,63.0,59.0,53.0,54.0,62.0,54.0,38.0,51.0,39.0,49.0,66.0,49.0,56.0,50.0,58.0,74.0,38.0,42.0,34.0,29.0,23.0,22.0,16.0,15.0,16.0,15.0,13.0,8.0,6.0,8.0,10.0,6.0,3.0 C84087,19.0,23.0,20.0,21.0,24.0,31.0,33.0,25.0,39.0,26.0,31.0,23.0,47.0,36.0,35.0,35.0,34.0,29.0,27.0,33.0,20.0,25.0,37.0,37.0,31.0,30.0,38.0,33.0,32.0,30.0,39.0,52.0,42.0,29.0,43.0,39.0,29.0,39.0,23.0,35.0,50.0,38.0,46.0,34.0,26.0,37.0,41.0,29.0,29.0,27.0,41.0,32.0,47.0,47.0,38.0,43.0,36.0,52.0,45.0,52.0,44.0,43.0,50.0,46.0,31.0,32.0,24.0,37.0,29.0,22.0,31.0,33.0,29.0,24.0,23.0,21.0,30.0,21.0,23.0,17.0,20.0,24.0,11.0,13.0,15.0,13.0,8.0,3.0,5.0,8.0,3.0,2.0,1.0,2.0,1.0,3.0 C84090,36.0,33.0,31.0,47.0,31.0,40.0,44.0,55.0,43.0,60.0,59.0,73.0,58.0,65.0,55.0,57.0,53.0,67.0,57.0,58.0,49.0,46.0,57.0,44.0,47.0,57.0,53.0,48.0,56.0,69.0,76.0,75.0,68.0,67.0,60.0,51.0,56.0,57.0,54.0,54.0,68.0,59.0,85.0,74.0,55.0,66.0,69.0,64.0,61.0,62.0,64.0,77.0,62.0,60.0,81.0,63.0,91.0,54.0,75.0,90.0,82.0,80.0,80.0,74.0,74.0,61.0,74.0,62.0,46.0,46.0,43.0,46.0,51.0,43.0,40.0,44.0,42.0,37.0,49.0,25.0,31.0,30.0,20.0,11.0,14.0,12.0,10.0,16.0,15.0,7.0,9.0,5.0,2.0,5.0,3.0,4.0 C84091,39.0,40.0,59.0,54.0,56.0,64.0,67.0,61.0,72.0,74.0,62.0,61.0,75.0,66.0,78.0,66.0,80.0,89.0,64.0,56.0,62.0,53.0,71.0,52.0,57.0,60.0,43.0,61.0,46.0,61.0,66.0,54.0,58.0,63.0,66.0,57.0,68.0,80.0,55.0,71.0,67.0,70.0,66.0,61.0,57.0,44.0,55.0,50.0,53.0,49.0,51.0,42.0,49.0,60.0,55.0,50.0,54.0,47.0,49.0,59.0,56.0,48.0,48.0,42.0,37.0,40.0,29.0,37.0,35.0,27.0,27.0,24.0,25.0,28.0,25.0,31.0,29.0,27.0,29.0,14.0,13.0,12.0,10.0,10.0,12.0,11.0,9.0,8.0,3.0,7.0,6.0,2.0,4.0,4.0,1.0,4.0 C84092,23.0,24.0,31.0,36.0,27.0,33.0,31.0,37.0,38.0,32.0,33.0,31.0,34.0,46.0,25.0,34.0,39.0,33.0,26.0,41.0,34.0,29.0,34.0,26.0,38.0,55.0,52.0,75.0,57.0,55.0,55.0,66.0,62.0,60.0,52.0,63.0,55.0,52.0,56.0,52.0,72.0,56.0,60.0,54.0,42.0,48.0,57.0,32.0,30.0,38.0,35.0,39.0,28.0,42.0,33.0,25.0,38.0,21.0,36.0,32.0,30.0,37.0,26.0,17.0,21.0,22.0,28.0,11.0,21.0,27.0,10.0,21.0,11.0,10.0,13.0,13.0,10.0,14.0,11.0,7.0,9.0,4.0,9.0,8.0,8.0,7.0,5.0,3.0,,4.0,,1.0,1.0,2.0,2.0,2.0 C84094,109.0,128.0,130.0,124.0,125.0,132.0,129.0,127.0,161.0,156.0,142.0,133.0,145.0,142.0,171.0,136.0,153.0,145.0,121.0,151.0,119.0,115.0,101.0,109.0,137.0,141.0,140.0,149.0,120.0,149.0,149.0,143.0,158.0,152.0,152.0,143.0,159.0,145.0,150.0,154.0,144.0,133.0,143.0,127.0,135.0,138.0,120.0,136.0,121.0,154.0,138.0,157.0,162.0,167.0,158.0,172.0,167.0,185.0,179.0,175.0,173.0,175.0,161.0,172.0,169.0,132.0,153.0,137.0,116.0,124.0,96.0,112.0,113.0,94.0,117.0,101.0,112.0,111.0,98.0,90.0,83.0,71.0,65.0,50.0,41.0,42.0,46.0,33.0,32.0,21.0,14.0,14.0,9.0,14.0,9.0,10.0 C84095,25.0,32.0,19.0,46.0,31.0,35.0,28.0,44.0,40.0,50.0,47.0,54.0,45.0,46.0,47.0,43.0,47.0,42.0,40.0,39.0,37.0,34.0,42.0,33.0,28.0,34.0,44.0,40.0,40.0,39.0,43.0,46.0,50.0,48.0,42.0,48.0,44.0,48.0,47.0,53.0,46.0,55.0,48.0,44.0,50.0,42.0,36.0,36.0,35.0,50.0,28.0,39.0,44.0,58.0,60.0,51.0,47.0,50.0,44.0,54.0,71.0,57.0,72.0,50.0,43.0,43.0,40.0,32.0,33.0,37.0,31.0,30.0,23.0,35.0,31.0,31.0,34.0,38.0,31.0,26.0,33.0,26.0,15.0,19.0,19.0,11.0,13.0,11.0,8.0,8.0,8.0,2.0,3.0,3.0,3.0,4.0 C84101,16.0,12.0,15.0,24.0,10.0,19.0,14.0,21.0,20.0,18.0,10.0,15.0,9.0,18.0,10.0,23.0,13.0,12.0,14.0,14.0,16.0,15.0,13.0,15.0,13.0,17.0,23.0,21.0,20.0,17.0,18.0,23.0,13.0,22.0,18.0,19.0,25.0,15.0,19.0,28.0,21.0,26.0,21.0,22.0,20.0,15.0,22.0,29.0,25.0,18.0,27.0,24.0,27.0,25.0,23.0,22.0,24.0,29.0,27.0,25.0,38.0,27.0,32.0,33.0,31.0,32.0,22.0,28.0,31.0,27.0,24.0,31.0,17.0,17.0,24.0,36.0,31.0,25.0,25.0,23.0,18.0,24.0,15.0,6.0,7.0,12.0,10.0,8.0,5.0,2.0,2.0,3.0,,1.0,2.0, C84105,55.0,58.0,42.0,54.0,45.0,58.0,43.0,59.0,64.0,57.0,51.0,61.0,73.0,71.0,64.0,78.0,64.0,69.0,68.0,48.0,58.0,53.0,54.0,53.0,47.0,66.0,61.0,67.0,64.0,66.0,70.0,75.0,57.0,75.0,75.0,77.0,85.0,56.0,73.0,75.0,68.0,72.0,78.0,59.0,65.0,54.0,63.0,39.0,61.0,55.0,51.0,49.0,54.0,40.0,50.0,57.0,41.0,51.0,29.0,38.0,19.0,25.0,29.0,28.0,30.0,27.0,23.0,21.0,17.0,21.0,25.0,8.0,14.0,11.0,5.0,13.0,10.0,10.0,6.0,9.0,6.0,8.0,6.0,6.0,4.0,5.0,4.0,5.0,3.0,3.0,3.0,,,,, C84106,41.0,36.0,50.0,42.0,46.0,42.0,44.0,35.0,36.0,46.0,50.0,38.0,57.0,46.0,45.0,47.0,46.0,51.0,46.0,42.0,31.0,39.0,39.0,41.0,46.0,49.0,60.0,57.0,70.0,73.0,74.0,64.0,81.0,92.0,86.0,84.0,69.0,82.0,68.0,81.0,68.0,73.0,68.0,52.0,62.0,70.0,52.0,55.0,41.0,49.0,53.0,39.0,46.0,56.0,49.0,58.0,47.0,58.0,50.0,60.0,51.0,57.0,43.0,52.0,43.0,50.0,49.0,29.0,39.0,41.0,41.0,43.0,36.0,50.0,25.0,35.0,35.0,54.0,29.0,30.0,21.0,29.0,24.0,20.0,17.0,23.0,11.0,8.0,13.0,13.0,5.0,4.0,5.0,3.0,5.0,9.0 C84107,23.0,20.0,17.0,30.0,27.0,24.0,32.0,25.0,34.0,35.0,34.0,52.0,34.0,41.0,44.0,42.0,43.0,37.0,50.0,37.0,42.0,31.0,46.0,45.0,39.0,46.0,38.0,25.0,37.0,32.0,45.0,39.0,38.0,37.0,45.0,38.0,53.0,57.0,36.0,42.0,46.0,49.0,39.0,49.0,37.0,45.0,38.0,39.0,36.0,50.0,34.0,40.0,41.0,51.0,64.0,60.0,69.0,68.0,48.0,53.0,63.0,60.0,55.0,48.0,49.0,50.0,48.0,43.0,42.0,35.0,35.0,43.0,40.0,42.0,41.0,36.0,42.0,48.0,39.0,39.0,36.0,28.0,23.0,26.0,25.0,20.0,21.0,14.0,11.0,4.0,6.0,8.0,5.0,4.0,1.0,4.0 C84112,15.0,24.0,17.0,22.0,21.0,20.0,22.0,17.0,19.0,23.0,23.0,25.0,20.0,25.0,24.0,30.0,22.0,21.0,28.0,11.0,9.0,13.0,6.0,17.0,15.0,14.0,14.0,24.0,21.0,15.0,24.0,24.0,30.0,43.0,35.0,26.0,35.0,26.0,26.0,22.0,29.0,31.0,29.0,20.0,25.0,27.0,28.0,20.0,19.0,22.0,20.0,19.0,29.0,29.0,24.0,29.0,24.0,25.0,36.0,24.0,24.0,25.0,31.0,37.0,27.0,16.0,24.0,14.0,20.0,23.0,23.0,21.0,19.0,21.0,22.0,14.0,17.0,24.0,26.0,14.0,21.0,11.0,14.0,12.0,4.0,11.0,2.0,5.0,5.0,2.0,2.0,6.0,4.0,2.0,,4.0 C84113,33.0,23.0,38.0,29.0,40.0,43.0,31.0,32.0,45.0,37.0,34.0,22.0,41.0,30.0,29.0,32.0,24.0,33.0,32.0,29.0,28.0,34.0,29.0,22.0,31.0,27.0,47.0,35.0,40.0,53.0,45.0,39.0,46.0,52.0,55.0,48.0,46.0,48.0,41.0,53.0,40.0,43.0,65.0,45.0,50.0,36.0,37.0,28.0,40.0,46.0,31.0,45.0,52.0,49.0,48.0,55.0,61.0,67.0,45.0,56.0,53.0,61.0,59.0,52.0,47.0,42.0,43.0,52.0,43.0,43.0,44.0,42.0,55.0,39.0,41.0,53.0,36.0,39.0,45.0,41.0,26.0,34.0,24.0,19.0,21.0,9.0,9.0,16.0,16.0,14.0,4.0,6.0,3.0,2.0,1.0,6.0 C84115,52.0,45.0,38.0,44.0,47.0,54.0,40.0,56.0,50.0,57.0,45.0,56.0,38.0,45.0,49.0,56.0,50.0,54.0,38.0,37.0,27.0,43.0,37.0,42.0,36.0,48.0,41.0,55.0,56.0,49.0,59.0,77.0,59.0,75.0,70.0,74.0,81.0,91.0,64.0,72.0,59.0,63.0,67.0,60.0,63.0,67.0,47.0,56.0,61.0,43.0,50.0,70.0,71.0,68.0,58.0,59.0,57.0,76.0,61.0,61.0,73.0,60.0,74.0,64.0,65.0,48.0,69.0,50.0,47.0,47.0,52.0,54.0,52.0,44.0,27.0,36.0,38.0,45.0,46.0,24.0,31.0,22.0,22.0,12.0,18.0,14.0,14.0,8.0,12.0,6.0,6.0,10.0,4.0,2.0,4.0,7.0 C84116,38.0,35.0,31.0,32.0,43.0,54.0,42.0,51.0,72.0,52.0,73.0,67.0,84.0,67.0,60.0,71.0,69.0,58.0,77.0,52.0,52.0,58.0,48.0,42.0,46.0,53.0,65.0,59.0,60.0,53.0,52.0,64.0,58.0,47.0,60.0,61.0,60.0,62.0,62.0,67.0,41.0,48.0,46.0,65.0,49.0,53.0,57.0,65.0,45.0,46.0,42.0,54.0,46.0,61.0,52.0,43.0,49.0,46.0,57.0,46.0,56.0,60.0,57.0,39.0,47.0,42.0,45.0,34.0,38.0,32.0,31.0,31.0,35.0,31.0,36.0,28.0,36.0,29.0,26.0,18.0,18.0,18.0,17.0,15.0,7.0,12.0,10.0,7.0,10.0,4.0,6.0,7.0,3.0,,1.0,1.0 C84117,43.0,31.0,44.0,31.0,46.0,37.0,33.0,32.0,39.0,39.0,30.0,32.0,32.0,37.0,24.0,30.0,25.0,32.0,192.0,486.0,730.0,769.0,793.0,718.0,687.0,632.0,567.0,506.0,483.0,432.0,392.0,338.0,303.0,314.0,244.0,267.0,242.0,257.0,220.0,193.0,181.0,140.0,95.0,52.0,53.0,49.0,45.0,32.0,38.0,25.0,28.0,22.0,35.0,38.0,25.0,21.0,26.0,24.0,30.0,31.0,17.0,31.0,21.0,25.0,23.0,11.0,19.0,21.0,21.0,9.0,14.0,12.0,13.0,11.0,6.0,11.0,7.0,8.0,6.0,3.0,3.0,6.0,4.0,5.0,2.0,3.0,4.0,2.0,3.0,,1.0,,,,1.0,4.0 C84120,59.0,70.0,58.0,90.0,62.0,97.0,74.0,105.0,102.0,107.0,111.0,105.0,119.0,92.0,104.0,110.0,93.0,105.0,93.0,70.0,84.0,58.0,64.0,66.0,73.0,67.0,89.0,88.0,92.0,84.0,101.0,88.0,83.0,90.0,93.0,90.0,97.0,95.0,117.0,112.0,120.0,111.0,110.0,106.0,121.0,118.0,139.0,99.0,105.0,107.0,98.0,100.0,103.0,93.0,115.0,109.0,115.0,123.0,121.0,114.0,103.0,97.0,96.0,84.0,84.0,92.0,80.0,80.0,61.0,76.0,58.0,72.0,62.0,58.0,57.0,69.0,80.0,60.0,82.0,48.0,50.0,52.0,51.0,36.0,26.0,25.0,26.0,16.0,25.0,15.0,15.0,15.0,8.0,4.0,3.0,14.0 C84122,59.0,66.0,57.0,66.0,67.0,74.0,65.0,69.0,85.0,74.0,76.0,65.0,87.0,72.0,78.0,80.0,69.0,79.0,76.0,61.0,56.0,46.0,58.0,56.0,82.0,56.0,62.0,54.0,52.0,84.0,59.0,73.0,74.0,92.0,82.0,71.0,82.0,72.0,71.0,96.0,76.0,81.0,85.0,70.0,79.0,79.0,68.0,83.0,58.0,65.0,73.0,82.0,77.0,57.0,71.0,71.0,67.0,51.0,50.0,66.0,46.0,56.0,64.0,45.0,60.0,40.0,45.0,38.0,48.0,33.0,38.0,51.0,35.0,25.0,33.0,36.0,32.0,36.0,29.0,25.0,34.0,30.0,22.0,25.0,15.0,21.0,17.0,8.0,10.0,11.0,6.0,1.0,2.0,2.0,3.0,7.0 C84123,24.0,20.0,27.0,20.0,21.0,19.0,26.0,22.0,18.0,21.0,21.0,19.0,21.0,22.0,23.0,24.0,19.0,23.0,29.0,17.0,16.0,17.0,22.0,13.0,28.0,26.0,18.0,25.0,21.0,30.0,25.0,23.0,30.0,26.0,25.0,28.0,30.0,25.0,21.0,27.0,26.0,32.0,19.0,22.0,29.0,20.0,32.0,21.0,22.0,18.0,29.0,25.0,29.0,35.0,37.0,32.0,30.0,36.0,28.0,30.0,35.0,32.0,39.0,29.0,29.0,26.0,21.0,22.0,26.0,23.0,24.0,22.0,27.0,12.0,37.0,21.0,28.0,23.0,20.0,16.0,13.0,13.0,13.0,5.0,6.0,6.0,7.0,7.0,6.0,7.0,2.0,3.0,3.0,1.0,2.0, C84129,33.0,54.0,50.0,57.0,53.0,47.0,51.0,48.0,64.0,51.0,53.0,63.0,52.0,52.0,74.0,65.0,64.0,52.0,32.0,61.0,53.0,39.0,41.0,45.0,54.0,57.0,49.0,66.0,67.0,45.0,61.0,60.0,68.0,64.0,61.0,69.0,61.0,69.0,68.0,62.0,58.0,60.0,55.0,55.0,70.0,59.0,54.0,54.0,68.0,51.0,66.0,60.0,63.0,54.0,54.0,58.0,62.0,70.0,52.0,65.0,50.0,55.0,56.0,57.0,72.0,56.0,37.0,40.0,47.0,51.0,47.0,39.0,35.0,55.0,42.0,51.0,34.0,45.0,45.0,38.0,37.0,32.0,16.0,14.0,18.0,17.0,22.0,19.0,13.0,13.0,12.0,11.0,4.0,2.0,9.0,1.0 C84131,31.0,47.0,34.0,38.0,48.0,51.0,54.0,49.0,43.0,47.0,53.0,40.0,59.0,47.0,57.0,53.0,35.0,57.0,32.0,49.0,39.0,32.0,46.0,34.0,41.0,40.0,29.0,38.0,46.0,43.0,45.0,43.0,51.0,58.0,68.0,52.0,47.0,54.0,61.0,68.0,50.0,47.0,38.0,48.0,29.0,51.0,43.0,39.0,39.0,44.0,42.0,35.0,62.0,49.0,61.0,74.0,51.0,51.0,62.0,76.0,66.0,62.0,60.0,58.0,52.0,55.0,62.0,50.0,50.0,43.0,47.0,29.0,30.0,40.0,37.0,47.0,47.0,50.0,43.0,27.0,31.0,27.0,19.0,14.0,18.0,11.0,16.0,21.0,4.0,6.0,6.0,10.0,4.0,3.0,3.0,1.0 C84136,29.0,24.0,28.0,24.0,22.0,27.0,26.0,27.0,30.0,35.0,37.0,32.0,37.0,29.0,29.0,24.0,29.0,38.0,34.0,36.0,43.0,44.0,54.0,49.0,47.0,49.0,42.0,48.0,48.0,55.0,51.0,52.0,60.0,53.0,41.0,46.0,44.0,67.0,43.0,54.0,50.0,50.0,45.0,45.0,62.0,49.0,41.0,45.0,41.0,48.0,34.0,41.0,44.0,37.0,44.0,40.0,34.0,24.0,26.0,31.0,23.0,22.0,32.0,22.0,23.0,21.0,32.0,23.0,12.0,18.0,17.0,14.0,12.0,11.0,13.0,9.0,11.0,7.0,10.0,5.0,6.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,6.0,1.0,3.0,,2.0,1.0,4.0 C84140,20.0,16.0,17.0,15.0,18.0,24.0,15.0,25.0,31.0,33.0,26.0,32.0,20.0,25.0,36.0,33.0,40.0,21.0,36.0,30.0,21.0,17.0,23.0,26.0,32.0,26.0,33.0,33.0,30.0,33.0,26.0,27.0,32.0,23.0,33.0,31.0,31.0,31.0,38.0,33.0,31.0,31.0,36.0,31.0,27.0,30.0,34.0,13.0,27.0,28.0,24.0,23.0,30.0,33.0,38.0,39.0,46.0,39.0,42.0,49.0,32.0,44.0,45.0,37.0,33.0,39.0,33.0,30.0,30.0,36.0,28.0,28.0,33.0,31.0,33.0,27.0,23.0,14.0,27.0,13.0,19.0,20.0,25.0,14.0,11.0,16.0,8.0,9.0,2.0,,3.0,2.0,2.0,2.0,,3.0 C84142,22.0,18.0,24.0,26.0,24.0,27.0,23.0,28.0,25.0,36.0,25.0,31.0,39.0,32.0,42.0,27.0,28.0,24.0,27.0,34.0,24.0,25.0,31.0,27.0,22.0,30.0,27.0,32.0,31.0,35.0,32.0,28.0,23.0,36.0,21.0,31.0,32.0,40.0,35.0,36.0,33.0,31.0,21.0,28.0,27.0,25.0,29.0,27.0,26.0,38.0,45.0,37.0,35.0,47.0,33.0,42.0,36.0,35.0,42.0,48.0,30.0,50.0,47.0,43.0,42.0,44.0,46.0,31.0,27.0,36.0,33.0,29.0,24.0,27.0,22.0,33.0,28.0,34.0,30.0,20.0,23.0,26.0,23.0,11.0,6.0,15.0,11.0,6.0,4.0,5.0,1.0,5.0,2.0,2.0,2.0,4.0 C84144,30.0,25.0,34.0,36.0,28.0,34.0,33.0,30.0,26.0,32.0,39.0,41.0,36.0,32.0,37.0,41.0,30.0,37.0,43.0,29.0,31.0,38.0,41.0,55.0,54.0,54.0,87.0,70.0,66.0,57.0,66.0,67.0,55.0,53.0,66.0,60.0,54.0,52.0,43.0,55.0,56.0,52.0,47.0,45.0,39.0,32.0,26.0,28.0,27.0,25.0,28.0,20.0,26.0,19.0,22.0,28.0,22.0,13.0,22.0,26.0,25.0,20.0,21.0,14.0,18.0,17.0,16.0,16.0,16.0,18.0,11.0,8.0,8.0,11.0,6.0,15.0,6.0,4.0,8.0,2.0,6.0,4.0,6.0,5.0,2.0,4.0,2.0,1.0,2.0,3.0,2.0,1.0,,1.0,,1.0 C84150,25.0,21.0,28.0,34.0,23.0,22.0,21.0,23.0,23.0,27.0,34.0,25.0,34.0,33.0,26.0,38.0,33.0,28.0,29.0,25.0,27.0,22.0,21.0,18.0,31.0,27.0,31.0,35.0,38.0,32.0,36.0,54.0,38.0,55.0,32.0,39.0,40.0,39.0,41.0,19.0,23.0,33.0,33.0,28.0,33.0,30.0,32.0,33.0,30.0,38.0,21.0,39.0,35.0,27.0,29.0,33.0,31.0,45.0,35.0,36.0,28.0,37.0,42.0,29.0,35.0,19.0,25.0,18.0,25.0,18.0,19.0,16.0,29.0,19.0,14.0,10.0,21.0,22.0,19.0,14.0,15.0,11.0,11.0,9.0,5.0,4.0,10.0,6.0,4.0,8.0,4.0,3.0,2.0,3.0,1.0,3.0 C84151,25.0,19.0,24.0,25.0,21.0,29.0,28.0,23.0,26.0,29.0,34.0,20.0,23.0,21.0,17.0,25.0,37.0,19.0,38.0,21.0,15.0,26.0,28.0,22.0,27.0,21.0,34.0,33.0,34.0,39.0,32.0,31.0,40.0,43.0,49.0,44.0,38.0,42.0,38.0,42.0,40.0,39.0,40.0,35.0,34.0,36.0,25.0,26.0,32.0,24.0,27.0,29.0,34.0,27.0,16.0,20.0,19.0,22.0,26.0,14.0,17.0,19.0,12.0,15.0,13.0,13.0,15.0,9.0,8.0,5.0,9.0,7.0,7.0,8.0,1.0,6.0,10.0,5.0,3.0,2.0,7.0,10.0,2.0,,2.0,1.0,3.0,,,2.0,2.0,1.0,,,,1.0 C84605,54.0,48.0,81.0,69.0,76.0,83.0,85.0,88.0,104.0,96.0,110.0,93.0,109.0,115.0,122.0,109.0,126.0,119.0,120.0,86.0,103.0,97.0,76.0,82.0,87.0,105.0,88.0,108.0,116.0,87.0,107.0,100.0,111.0,107.0,110.0,99.0,107.0,114.0,101.0,121.0,94.0,112.0,115.0,107.0,111.0,116.0,104.0,138.0,110.0,129.0,123.0,160.0,145.0,155.0,148.0,135.0,153.0,131.0,121.0,113.0,137.0,133.0,130.0,126.0,108.0,100.0,109.0,86.0,88.0,98.0,87.0,74.0,73.0,77.0,79.0,74.0,66.0,90.0,69.0,46.0,39.0,43.0,54.0,40.0,33.0,25.0,24.0,16.0,24.0,16.0,15.0,15.0,18.0,7.0,8.0,17.0 C84613,50.0,63.0,56.0,72.0,51.0,64.0,63.0,79.0,75.0,73.0,65.0,69.0,81.0,78.0,71.0,83.0,61.0,81.0,76.0,70.0,63.0,55.0,73.0,56.0,61.0,60.0,64.0,71.0,69.0,72.0,80.0,79.0,96.0,65.0,72.0,73.0,80.0,70.0,82.0,83.0,68.0,72.0,66.0,69.0,77.0,62.0,78.0,71.0,65.0,69.0,68.0,82.0,81.0,87.0,73.0,74.0,97.0,106.0,96.0,86.0,91.0,104.0,77.0,78.0,79.0,80.0,64.0,69.0,60.0,56.0,61.0,54.0,48.0,61.0,58.0,60.0,56.0,57.0,46.0,45.0,33.0,29.0,26.0,21.0,28.0,18.0,26.0,15.0,13.0,10.0,9.0,6.0,9.0,4.0,5.0,6.0 C84619,37.0,49.0,42.0,46.0,38.0,41.0,40.0,41.0,61.0,45.0,44.0,47.0,38.0,55.0,42.0,55.0,44.0,47.0,44.0,40.0,56.0,34.0,24.0,30.0,31.0,48.0,36.0,40.0,43.0,43.0,47.0,54.0,60.0,60.0,54.0,63.0,53.0,69.0,58.0,54.0,57.0,59.0,60.0,42.0,49.0,44.0,36.0,49.0,37.0,42.0,47.0,55.0,52.0,57.0,40.0,43.0,48.0,44.0,43.0,42.0,38.0,36.0,35.0,31.0,29.0,38.0,30.0,22.0,19.0,20.0,22.0,18.0,13.0,28.0,19.0,21.0,14.0,20.0,17.0,17.0,12.0,12.0,7.0,10.0,7.0,5.0,9.0,5.0,7.0,3.0,4.0,4.0,2.0,5.0,1.0,3.0 C84621,22.0,30.0,25.0,29.0,26.0,29.0,38.0,37.0,35.0,34.0,46.0,40.0,49.0,42.0,50.0,48.0,34.0,30.0,33.0,33.0,30.0,15.0,26.0,33.0,42.0,41.0,32.0,33.0,33.0,36.0,43.0,44.0,50.0,40.0,37.0,46.0,49.0,51.0,46.0,33.0,40.0,49.0,42.0,62.0,59.0,54.0,45.0,50.0,38.0,36.0,42.0,25.0,47.0,28.0,39.0,33.0,29.0,38.0,23.0,32.0,22.0,27.0,18.0,15.0,21.0,14.0,12.0,13.0,9.0,16.0,12.0,15.0,13.0,13.0,16.0,13.0,9.0,10.0,8.0,12.0,3.0,8.0,8.0,3.0,7.0,4.0,6.0,2.0,3.0,3.0,3.0,2.0,,3.0,2.0, C84624,19.0,23.0,24.0,28.0,28.0,36.0,41.0,40.0,26.0,27.0,37.0,27.0,30.0,33.0,28.0,37.0,24.0,38.0,33.0,22.0,36.0,21.0,35.0,16.0,25.0,17.0,28.0,25.0,36.0,20.0,35.0,30.0,37.0,32.0,42.0,38.0,51.0,44.0,38.0,41.0,38.0,47.0,30.0,31.0,35.0,32.0,32.0,37.0,33.0,33.0,35.0,38.0,45.0,36.0,51.0,30.0,51.0,35.0,51.0,59.0,44.0,62.0,43.0,36.0,32.0,36.0,27.0,31.0,22.0,39.0,34.0,29.0,36.0,21.0,31.0,28.0,26.0,24.0,26.0,14.0,21.0,17.0,13.0,10.0,12.0,5.0,7.0,8.0,5.0,2.0,1.0,3.0,1.0,2.0,2.0,1.0 C84628,53.0,57.0,45.0,52.0,53.0,69.0,53.0,71.0,61.0,59.0,65.0,48.0,56.0,62.0,58.0,58.0,64.0,67.0,52.0,49.0,49.0,55.0,61.0,50.0,56.0,81.0,72.0,77.0,79.0,74.0,78.0,86.0,99.0,99.0,89.0,108.0,101.0,91.0,77.0,83.0,92.0,76.0,94.0,71.0,66.0,69.0,79.0,61.0,66.0,48.0,47.0,52.0,52.0,59.0,49.0,40.0,40.0,43.0,46.0,38.0,37.0,30.0,34.0,30.0,36.0,20.0,18.0,16.0,22.0,24.0,15.0,18.0,15.0,13.0,17.0,13.0,9.0,8.0,7.0,2.0,4.0,2.0,4.0,7.0,2.0,4.0,6.0,3.0,2.0,,2.0,2.0,1.0,2.0,,3.0 C84629,16.0,35.0,35.0,20.0,24.0,35.0,29.0,30.0,28.0,32.0,31.0,36.0,35.0,31.0,28.0,22.0,27.0,27.0,22.0,28.0,26.0,21.0,21.0,30.0,26.0,25.0,31.0,25.0,24.0,27.0,31.0,26.0,30.0,42.0,43.0,40.0,20.0,42.0,21.0,29.0,32.0,26.0,25.0,38.0,35.0,33.0,27.0,21.0,25.0,35.0,22.0,31.0,31.0,29.0,35.0,30.0,34.0,28.0,19.0,38.0,37.0,28.0,35.0,26.0,27.0,27.0,19.0,33.0,22.0,23.0,20.0,15.0,17.0,20.0,15.0,25.0,17.0,18.0,21.0,15.0,12.0,8.0,11.0,8.0,6.0,8.0,9.0,7.0,1.0,5.0,2.0,3.0,,,2.0,1.0 C84637,44.0,59.0,42.0,61.0,50.0,48.0,63.0,69.0,65.0,49.0,67.0,66.0,50.0,57.0,59.0,39.0,70.0,70.0,61.0,45.0,59.0,54.0,45.0,48.0,60.0,48.0,53.0,56.0,56.0,70.0,58.0,79.0,78.0,84.0,81.0,87.0,76.0,96.0,77.0,82.0,88.0,69.0,66.0,67.0,65.0,71.0,66.0,60.0,72.0,66.0,52.0,54.0,56.0,77.0,82.0,79.0,66.0,80.0,71.0,84.0,56.0,72.0,66.0,54.0,61.0,53.0,50.0,52.0,46.0,52.0,35.0,49.0,37.0,39.0,45.0,39.0,42.0,33.0,39.0,28.0,32.0,24.0,19.0,20.0,12.0,11.0,9.0,9.0,8.0,7.0,8.0,5.0,4.0,2.0,1.0,4.0 C84646,23.0,21.0,21.0,18.0,24.0,20.0,45.0,24.0,20.0,26.0,25.0,32.0,33.0,32.0,36.0,27.0,40.0,34.0,30.0,31.0,31.0,26.0,35.0,23.0,24.0,30.0,35.0,34.0,29.0,34.0,21.0,48.0,32.0,27.0,34.0,32.0,38.0,29.0,27.0,25.0,31.0,38.0,25.0,31.0,39.0,43.0,39.0,32.0,31.0,37.0,29.0,34.0,46.0,51.0,49.0,62.0,57.0,34.0,56.0,64.0,60.0,55.0,55.0,54.0,49.0,39.0,47.0,46.0,39.0,27.0,35.0,36.0,55.0,51.0,44.0,49.0,39.0,44.0,51.0,42.0,40.0,48.0,29.0,24.0,25.0,20.0,24.0,21.0,17.0,9.0,8.0,10.0,3.0,3.0,3.0,4.0 C84654,22.0,21.0,25.0,29.0,18.0,19.0,20.0,28.0,33.0,26.0,25.0,20.0,27.0,25.0,27.0,25.0,27.0,14.0,39.0,26.0,19.0,19.0,19.0,18.0,20.0,24.0,25.0,29.0,23.0,26.0,23.0,23.0,35.0,31.0,38.0,28.0,24.0,25.0,31.0,30.0,19.0,26.0,25.0,25.0,28.0,19.0,24.0,24.0,26.0,23.0,28.0,23.0,24.0,26.0,27.0,21.0,47.0,32.0,35.0,36.0,33.0,32.0,35.0,30.0,36.0,33.0,26.0,28.0,20.0,30.0,21.0,24.0,22.0,19.0,22.0,20.0,20.0,25.0,27.0,19.0,17.0,14.0,15.0,10.0,7.0,8.0,9.0,10.0,4.0,4.0,3.0,,3.0,,, C84656,39.0,29.0,38.0,45.0,36.0,46.0,41.0,45.0,42.0,44.0,50.0,53.0,50.0,54.0,46.0,53.0,49.0,40.0,40.0,35.0,32.0,41.0,42.0,34.0,37.0,48.0,42.0,44.0,41.0,48.0,37.0,47.0,53.0,53.0,56.0,53.0,56.0,64.0,62.0,47.0,65.0,38.0,52.0,52.0,58.0,49.0,48.0,43.0,59.0,44.0,45.0,49.0,46.0,65.0,51.0,52.0,50.0,63.0,67.0,79.0,76.0,66.0,70.0,78.0,61.0,61.0,61.0,58.0,49.0,46.0,44.0,46.0,40.0,43.0,44.0,42.0,36.0,41.0,37.0,36.0,33.0,18.0,25.0,19.0,18.0,15.0,13.0,15.0,14.0,8.0,4.0,5.0,2.0,3.0,5.0,6.0 C84658,36.0,50.0,50.0,53.0,60.0,54.0,58.0,82.0,52.0,60.0,56.0,57.0,69.0,70.0,66.0,64.0,82.0,75.0,59.0,55.0,50.0,62.0,45.0,45.0,41.0,44.0,60.0,59.0,51.0,56.0,72.0,67.0,65.0,81.0,72.0,74.0,79.0,81.0,69.0,63.0,74.0,62.0,65.0,55.0,63.0,61.0,50.0,41.0,48.0,58.0,55.0,54.0,51.0,61.0,62.0,82.0,82.0,69.0,76.0,71.0,64.0,82.0,70.0,59.0,75.0,69.0,68.0,67.0,59.0,46.0,51.0,56.0,46.0,37.0,51.0,59.0,44.0,41.0,46.0,35.0,34.0,41.0,19.0,24.0,6.0,18.0,20.0,16.0,13.0,9.0,7.0,6.0,7.0,3.0,3.0,6.0 C84660,19.0,15.0,16.0,21.0,20.0,16.0,34.0,18.0,20.0,15.0,24.0,18.0,32.0,12.0,23.0,23.0,19.0,30.0,34.0,22.0,20.0,18.0,26.0,13.0,26.0,18.0,15.0,19.0,9.0,15.0,23.0,24.0,20.0,24.0,14.0,23.0,23.0,24.0,25.0,19.0,30.0,18.0,24.0,23.0,25.0,31.0,25.0,18.0,18.0,27.0,25.0,39.0,26.0,44.0,35.0,35.0,32.0,38.0,39.0,35.0,39.0,45.0,39.0,38.0,35.0,34.0,33.0,36.0,29.0,26.0,28.0,29.0,23.0,34.0,25.0,34.0,33.0,31.0,27.0,25.0,19.0,21.0,15.0,17.0,8.0,10.0,11.0,8.0,7.0,7.0,1.0,8.0,2.0,3.0,2.0,3.0 C84664,28.0,26.0,31.0,21.0,31.0,34.0,25.0,40.0,42.0,28.0,30.0,32.0,27.0,31.0,35.0,21.0,20.0,31.0,32.0,19.0,24.0,21.0,19.0,26.0,25.0,33.0,27.0,45.0,42.0,48.0,47.0,46.0,56.0,59.0,57.0,60.0,62.0,58.0,45.0,74.0,49.0,63.0,48.0,52.0,49.0,45.0,44.0,43.0,38.0,46.0,37.0,45.0,33.0,42.0,26.0,25.0,26.0,35.0,25.0,31.0,36.0,31.0,28.0,22.0,26.0,15.0,26.0,29.0,16.0,18.0,22.0,21.0,10.0,16.0,19.0,18.0,19.0,9.0,10.0,9.0,11.0,5.0,6.0,7.0,4.0,6.0,7.0,3.0,5.0,1.0,2.0,,1.0,3.0,, C84667,26.0,26.0,27.0,33.0,23.0,31.0,32.0,38.0,37.0,28.0,50.0,37.0,28.0,42.0,26.0,30.0,23.0,37.0,30.0,22.0,19.0,21.0,32.0,24.0,18.0,22.0,26.0,33.0,18.0,54.0,41.0,33.0,41.0,51.0,48.0,40.0,35.0,50.0,50.0,52.0,52.0,44.0,34.0,44.0,35.0,49.0,36.0,38.0,25.0,26.0,37.0,38.0,32.0,47.0,47.0,41.0,47.0,55.0,39.0,45.0,38.0,41.0,30.0,34.0,35.0,32.0,32.0,29.0,30.0,29.0,28.0,36.0,18.0,21.0,28.0,25.0,24.0,26.0,23.0,29.0,21.0,8.0,19.0,12.0,14.0,10.0,9.0,14.0,4.0,8.0,6.0,3.0,1.0,5.0,6.0,4.0 C84676,50.0,47.0,60.0,56.0,61.0,45.0,72.0,55.0,75.0,59.0,55.0,58.0,66.0,52.0,53.0,58.0,50.0,54.0,59.0,57.0,48.0,54.0,61.0,68.0,78.0,73.0,100.0,101.0,83.0,101.0,77.0,114.0,118.0,90.0,96.0,114.0,120.0,82.0,107.0,89.0,89.0,98.0,85.0,92.0,94.0,94.0,90.0,88.0,77.0,84.0,69.0,51.0,58.0,52.0,56.0,60.0,46.0,40.0,48.0,41.0,31.0,37.0,42.0,25.0,23.0,28.0,20.0,29.0,33.0,21.0,9.0,18.0,14.0,14.0,9.0,13.0,10.0,12.0,11.0,9.0,3.0,4.0,4.0,5.0,11.0,6.0,3.0,4.0,5.0,2.0,,2.0,1.0,1.0,1.0,2.0 C84679,32.0,17.0,22.0,22.0,25.0,16.0,23.0,33.0,20.0,26.0,31.0,32.0,26.0,32.0,26.0,20.0,22.0,24.0,22.0,20.0,20.0,24.0,20.0,25.0,29.0,51.0,31.0,41.0,43.0,39.0,37.0,49.0,58.0,63.0,47.0,55.0,46.0,57.0,42.0,59.0,51.0,49.0,40.0,41.0,33.0,41.0,33.0,25.0,33.0,31.0,40.0,43.0,31.0,29.0,37.0,26.0,37.0,38.0,28.0,26.0,20.0,26.0,25.0,16.0,23.0,19.0,14.0,20.0,21.0,16.0,11.0,10.0,10.0,8.0,8.0,12.0,7.0,15.0,14.0,2.0,8.0,8.0,4.0,3.0,6.0,4.0,2.0,1.0,2.0,2.0,,2.0,1.0,,, C84682,25.0,24.0,29.0,21.0,30.0,27.0,26.0,26.0,26.0,34.0,29.0,22.0,33.0,34.0,36.0,29.0,26.0,25.0,31.0,24.0,22.0,14.0,19.0,20.0,31.0,32.0,20.0,25.0,33.0,38.0,45.0,52.0,47.0,46.0,56.0,46.0,64.0,41.0,45.0,50.0,47.0,49.0,48.0,43.0,45.0,41.0,35.0,40.0,28.0,36.0,41.0,42.0,39.0,29.0,32.0,39.0,48.0,44.0,24.0,30.0,38.0,26.0,27.0,31.0,32.0,33.0,29.0,18.0,18.0,23.0,21.0,15.0,19.0,9.0,13.0,17.0,10.0,18.0,7.0,7.0,11.0,6.0,6.0,5.0,2.0,5.0,3.0,6.0,2.0,6.0,2.0,2.0,1.0,1.0,1.0,2.0 C84683,60.0,61.0,63.0,58.0,66.0,64.0,71.0,57.0,59.0,82.0,63.0,66.0,61.0,71.0,83.0,59.0,66.0,51.0,79.0,91.0,74.0,69.0,96.0,96.0,113.0,118.0,114.0,122.0,152.0,142.0,148.0,131.0,152.0,119.0,136.0,135.0,116.0,119.0,112.0,114.0,97.0,87.0,93.0,84.0,82.0,109.0,65.0,81.0,92.0,82.0,79.0,86.0,65.0,79.0,86.0,66.0,72.0,66.0,62.0,61.0,56.0,52.0,53.0,42.0,41.0,38.0,49.0,31.0,36.0,31.0,39.0,17.0,20.0,25.0,12.0,15.0,22.0,19.0,15.0,12.0,18.0,13.0,8.0,7.0,7.0,4.0,4.0,4.0,3.0,5.0,2.0,1.0,1.0,3.0,1.0, C84691,56.0,40.0,58.0,50.0,67.0,61.0,60.0,75.0,58.0,66.0,72.0,66.0,75.0,60.0,72.0,86.0,75.0,80.0,76.0,86.0,74.0,94.0,85.0,85.0,94.0,100.0,97.0,94.0,85.0,101.0,121.0,99.0,117.0,115.0,119.0,106.0,107.0,121.0,109.0,120.0,131.0,107.0,113.0,106.0,102.0,101.0,103.0,93.0,82.0,68.0,74.0,67.0,64.0,49.0,53.0,50.0,52.0,45.0,43.0,35.0,42.0,32.0,40.0,45.0,25.0,19.0,42.0,21.0,15.0,24.0,11.0,11.0,18.0,9.0,11.0,11.0,7.0,9.0,8.0,9.0,7.0,6.0,11.0,3.0,5.0,4.0,2.0,3.0,2.0,,2.0,,,,1.0,1.0 C84692,5.0,8.0,7.0,11.0,8.0,14.0,18.0,7.0,7.0,19.0,14.0,15.0,10.0,6.0,16.0,20.0,12.0,17.0,10.0,6.0,15.0,13.0,14.0,12.0,10.0,15.0,10.0,12.0,15.0,13.0,15.0,7.0,15.0,17.0,9.0,11.0,16.0,16.0,8.0,14.0,10.0,12.0,11.0,6.0,12.0,6.0,11.0,10.0,17.0,15.0,10.0,11.0,10.0,17.0,30.0,18.0,23.0,24.0,31.0,19.0,25.0,38.0,36.0,27.0,18.0,25.0,17.0,23.0,31.0,23.0,20.0,19.0,23.0,15.0,21.0,15.0,25.0,20.0,24.0,14.0,16.0,18.0,8.0,4.0,13.0,13.0,3.0,8.0,3.0,2.0,4.0,1.0,,,, C84693,13.0,24.0,23.0,19.0,21.0,16.0,31.0,35.0,37.0,40.0,42.0,42.0,35.0,37.0,40.0,42.0,47.0,28.0,40.0,36.0,33.0,33.0,33.0,27.0,32.0,37.0,43.0,31.0,50.0,41.0,37.0,27.0,27.0,34.0,30.0,24.0,42.0,44.0,57.0,51.0,29.0,29.0,40.0,43.0,34.0,49.0,35.0,34.0,33.0,35.0,31.0,27.0,37.0,50.0,34.0,32.0,39.0,42.0,44.0,45.0,40.0,36.0,35.0,28.0,37.0,37.0,32.0,25.0,22.0,21.0,28.0,19.0,25.0,31.0,28.0,19.0,21.0,20.0,20.0,18.0,11.0,12.0,8.0,12.0,8.0,7.0,7.0,7.0,4.0,3.0,2.0,2.0,2.0,1.0,2.0,5.0 C84694,17.0,13.0,30.0,20.0,29.0,25.0,30.0,32.0,32.0,33.0,35.0,42.0,44.0,33.0,47.0,28.0,38.0,51.0,33.0,32.0,35.0,27.0,24.0,26.0,29.0,31.0,27.0,28.0,29.0,37.0,27.0,37.0,26.0,39.0,36.0,22.0,39.0,22.0,32.0,27.0,33.0,25.0,36.0,31.0,25.0,30.0,30.0,27.0,25.0,22.0,32.0,22.0,31.0,30.0,38.0,27.0,36.0,30.0,26.0,28.0,28.0,19.0,32.0,21.0,22.0,12.0,16.0,12.0,9.0,19.0,16.0,13.0,11.0,15.0,13.0,12.0,12.0,15.0,19.0,8.0,13.0,13.0,6.0,10.0,6.0,3.0,10.0,6.0,6.0,7.0,1.0,4.0,1.0,4.0,1.0, C84695,24.0,21.0,30.0,36.0,24.0,37.0,30.0,31.0,29.0,27.0,31.0,31.0,24.0,37.0,36.0,33.0,29.0,37.0,34.0,27.0,21.0,36.0,28.0,27.0,22.0,29.0,23.0,32.0,27.0,31.0,35.0,35.0,42.0,46.0,46.0,44.0,52.0,45.0,33.0,45.0,45.0,30.0,42.0,36.0,45.0,28.0,30.0,29.0,27.0,23.0,29.0,33.0,27.0,33.0,39.0,25.0,23.0,16.0,28.0,30.0,19.0,26.0,22.0,17.0,24.0,17.0,14.0,12.0,9.0,12.0,12.0,8.0,9.0,9.0,11.0,5.0,6.0,15.0,14.0,5.0,4.0,6.0,5.0,1.0,3.0,3.0,1.0,5.0,1.0,4.0,3.0,,1.0,,, C84696,26.0,24.0,17.0,17.0,24.0,21.0,30.0,36.0,29.0,30.0,29.0,24.0,27.0,34.0,36.0,25.0,27.0,24.0,32.0,26.0,23.0,23.0,17.0,22.0,24.0,14.0,28.0,27.0,24.0,30.0,16.0,40.0,33.0,26.0,30.0,35.0,47.0,29.0,29.0,36.0,37.0,41.0,40.0,44.0,35.0,36.0,39.0,23.0,42.0,37.0,26.0,19.0,39.0,38.0,34.0,44.0,33.0,41.0,33.0,35.0,28.0,30.0,37.0,31.0,27.0,32.0,37.0,28.0,22.0,20.0,13.0,18.0,31.0,19.0,25.0,16.0,28.0,19.0,25.0,15.0,12.0,19.0,21.0,5.0,11.0,11.0,6.0,7.0,6.0,5.0,4.0,2.0,3.0,1.0,,2.0 C84703,27.0,15.0,30.0,27.0,31.0,51.0,43.0,44.0,48.0,65.0,67.0,67.0,49.0,60.0,57.0,42.0,52.0,49.0,44.0,42.0,29.0,37.0,37.0,44.0,40.0,34.0,31.0,32.0,38.0,44.0,29.0,37.0,32.0,46.0,39.0,44.0,30.0,44.0,52.0,48.0,52.0,43.0,50.0,48.0,61.0,56.0,58.0,48.0,61.0,49.0,69.0,50.0,50.0,59.0,45.0,58.0,52.0,44.0,46.0,47.0,44.0,54.0,35.0,39.0,33.0,35.0,33.0,39.0,28.0,16.0,20.0,18.0,14.0,23.0,21.0,17.0,23.0,14.0,22.0,13.0,15.0,10.0,11.0,13.0,10.0,7.0,3.0,7.0,9.0,7.0,9.0,5.0,4.0,5.0,3.0,6.0 C84704,39.0,31.0,49.0,39.0,51.0,46.0,56.0,59.0,80.0,50.0,60.0,62.0,72.0,58.0,48.0,58.0,69.0,57.0,47.0,57.0,53.0,56.0,46.0,48.0,47.0,58.0,52.0,56.0,46.0,52.0,63.0,59.0,60.0,53.0,60.0,73.0,51.0,56.0,60.0,74.0,67.0,66.0,70.0,56.0,53.0,65.0,64.0,51.0,68.0,41.0,67.0,65.0,66.0,49.0,62.0,40.0,61.0,52.0,46.0,46.0,42.0,43.0,46.0,30.0,35.0,39.0,36.0,36.0,28.0,26.0,33.0,20.0,23.0,23.0,22.0,25.0,24.0,24.0,21.0,12.0,20.0,18.0,17.0,10.0,4.0,14.0,9.0,5.0,5.0,5.0,5.0,1.0,2.0,2.0,,2.0 C84705,43.0,46.0,50.0,63.0,45.0,58.0,47.0,46.0,45.0,44.0,56.0,63.0,51.0,65.0,48.0,51.0,53.0,46.0,49.0,36.0,33.0,36.0,45.0,32.0,33.0,45.0,38.0,36.0,54.0,57.0,60.0,59.0,70.0,60.0,64.0,49.0,75.0,70.0,59.0,60.0,50.0,64.0,63.0,50.0,61.0,50.0,51.0,35.0,38.0,39.0,53.0,50.0,48.0,56.0,53.0,54.0,57.0,60.0,54.0,52.0,41.0,45.0,46.0,42.0,32.0,43.0,34.0,35.0,30.0,42.0,25.0,20.0,23.0,28.0,15.0,29.0,21.0,30.0,37.0,10.0,29.0,16.0,13.0,14.0,10.0,7.0,12.0,10.0,6.0,6.0,12.0,4.0,1.0,,3.0,5.0 C84714,,,,,,,,,,,,,,,,,,1.0,157.0,391.0,444.0,440.0,397.0,339.0,266.0,227.0,158.0,166.0,128.0,88.0,74.0,73.0,59.0,49.0,51.0,62.0,54.0,46.0,63.0,42.0,36.0,23.0,23.0,14.0,14.0,9.0,1.0,,,,2.0,2.0,3.0,1.0,2.0,1.0,,1.0,1.0,6.0,1.0,1.0,1.0,,2.0,,,1.0,,1.0,,,,,,,,,1.0,,,,1.0,,,,,,,,,,,,, C84720,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,1.0,1.0,1.0,,2.0,1.0,,2.0,1.0,,1.0,1.0,1.0,2.0,1.0,,1.0,2.0,3.0,,1.0,3.0,,2.0,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,,,,,,,,,,,,,, Y00026,13.0,10.0,14.0,17.0,16.0,26.0,12.0,23.0,17.0,15.0,18.0,11.0,21.0,18.0,17.0,13.0,15.0,16.0,10.0,19.0,9.0,12.0,13.0,12.0,17.0,19.0,19.0,17.0,20.0,17.0,25.0,19.0,27.0,15.0,18.0,16.0,24.0,23.0,24.0,26.0,22.0,26.0,21.0,24.0,13.0,15.0,18.0,23.0,18.0,14.0,17.0,19.0,15.0,16.0,26.0,16.0,22.0,24.0,14.0,13.0,21.0,12.0,17.0,13.0,19.0,17.0,11.0,14.0,16.0,8.0,11.0,11.0,9.0,9.0,16.0,8.0,8.0,11.0,5.0,7.0,3.0,5.0,4.0,4.0,3.0,3.0,4.0,1.0,4.0,,,,2.0,3.0,1.0,1.0 Y02847,35.0,35.0,22.0,23.0,33.0,26.0,18.0,39.0,30.0,23.0,27.0,36.0,18.0,27.0,22.0,21.0,27.0,39.0,89.0,127.0,119.0,115.0,145.0,159.0,153.0,201.0,185.0,181.0,199.0,167.0,168.0,155.0,162.0,179.0,181.0,191.0,153.0,152.0,127.0,125.0,125.0,115.0,102.0,112.0,87.0,82.0,88.0,56.0,60.0,58.0,55.0,53.0,52.0,50.0,31.0,43.0,44.0,39.0,47.0,34.0,41.0,22.0,28.0,26.0,26.0,22.0,14.0,18.0,19.0,14.0,11.0,8.0,7.0,6.0,8.0,6.0,6.0,7.0,8.0,4.0,2.0,4.0,4.0,1.0,,2.0,2.0,4.0,,1.0,,,,,, Y03124,16.0,23.0,29.0,34.0,30.0,40.0,39.0,53.0,51.0,51.0,40.0,55.0,48.0,46.0,34.0,57.0,43.0,49.0,41.0,49.0,34.0,38.0,35.0,33.0,31.0,34.0,34.0,36.0,26.0,43.0,30.0,35.0,34.0,29.0,36.0,31.0,47.0,39.0,37.0,38.0,40.0,29.0,46.0,27.0,44.0,22.0,23.0,43.0,37.0,32.0,32.0,30.0,33.0,24.0,31.0,34.0,34.0,28.0,39.0,26.0,37.0,41.0,42.0,21.0,20.0,30.0,25.0,20.0,24.0,15.0,17.0,27.0,20.0,10.0,14.0,17.0,23.0,21.0,26.0,12.0,16.0,8.0,8.0,11.0,6.0,10.0,4.0,9.0,,4.0,4.0,3.0,1.0,,2.0,3.0 Y05346,16.0,21.0,12.0,21.0,14.0,23.0,13.0,13.0,18.0,38.0,35.0,23.0,30.0,36.0,23.0,24.0,31.0,19.0,28.0,18.0,22.0,18.0,15.0,22.0,18.0,28.0,20.0,25.0,20.0,22.0,30.0,22.0,34.0,22.0,25.0,30.0,35.0,32.0,29.0,26.0,31.0,39.0,25.0,26.0,22.0,40.0,17.0,28.0,21.0,23.0,24.0,29.0,19.0,26.0,20.0,16.0,28.0,26.0,26.0,29.0,16.0,26.0,30.0,20.0,11.0,23.0,17.0,12.0,17.0,15.0,10.0,14.0,10.0,13.0,10.0,4.0,7.0,5.0,7.0,5.0,4.0,4.0,5.0,2.0,2.0,3.0,4.0,4.0,1.0,,1.0,,,,, Y05369,28.0,17.0,29.0,40.0,39.0,34.0,45.0,35.0,36.0,47.0,47.0,48.0,44.0,50.0,55.0,49.0,56.0,46.0,42.0,32.0,27.0,18.0,25.0,34.0,41.0,38.0,35.0,35.0,28.0,44.0,47.0,46.0,49.0,46.0,50.0,43.0,56.0,45.0,47.0,49.0,48.0,44.0,40.0,50.0,60.0,48.0,43.0,46.0,36.0,34.0,54.0,42.0,50.0,42.0,48.0,52.0,46.0,46.0,44.0,35.0,40.0,46.0,38.0,29.0,26.0,30.0,38.0,27.0,26.0,30.0,27.0,27.0,25.0,24.0,22.0,30.0,26.0,32.0,21.0,17.0,21.0,20.0,20.0,17.0,14.0,5.0,8.0,2.0,9.0,6.0,4.0,5.0,6.0,2.0,1.0,5.0 Y05622,40.0,46.0,49.0,44.0,60.0,57.0,62.0,53.0,64.0,56.0,48.0,45.0,59.0,44.0,61.0,61.0,39.0,50.0,36.0,30.0,27.0,24.0,23.0,18.0,23.0,31.0,23.0,21.0,27.0,27.0,36.0,34.0,48.0,47.0,53.0,39.0,49.0,50.0,39.0,38.0,44.0,44.0,39.0,38.0,47.0,35.0,34.0,30.0,37.0,37.0,32.0,28.0,28.0,18.0,22.0,27.0,28.0,19.0,26.0,14.0,16.0,14.0,19.0,16.0,12.0,15.0,14.0,14.0,9.0,5.0,8.0,8.0,8.0,2.0,6.0,9.0,6.0,3.0,9.0,6.0,1.0,5.0,6.0,5.0,,7.0,2.0,1.0,2.0,,,3.0,,,, Y05690,31.0,48.0,42.0,36.0,50.0,50.0,46.0,55.0,51.0,52.0,65.0,68.0,75.0,69.0,69.0,54.0,68.0,59.0,46.0,40.0,41.0,41.0,42.0,32.0,34.0,28.0,39.0,39.0,35.0,32.0,46.0,43.0,55.0,48.0,46.0,46.0,60.0,64.0,59.0,63.0,40.0,54.0,54.0,54.0,65.0,43.0,43.0,37.0,52.0,42.0,38.0,51.0,43.0,48.0,56.0,44.0,34.0,49.0,39.0,45.0,30.0,29.0,27.0,25.0,31.0,25.0,22.0,29.0,23.0,26.0,22.0,22.0,21.0,22.0,21.0,13.0,13.0,24.0,16.0,13.0,15.0,12.0,12.0,4.0,8.0,6.0,6.0,5.0,4.0,6.0,7.0,4.0,4.0,,,1.0 Y06356,28.0,48.0,42.0,48.0,45.0,52.0,52.0,58.0,69.0,76.0,76.0,68.0,70.0,83.0,101.0,88.0,79.0,80.0,73.0,65.0,61.0,76.0,60.0,60.0,60.0,58.0,77.0,49.0,59.0,71.0,55.0,71.0,79.0,70.0,71.0,67.0,75.0,67.0,74.0,66.0,79.0,71.0,60.0,74.0,69.0,70.0,64.0,56.0,55.0,57.0,69.0,74.0,60.0,64.0,72.0,65.0,53.0,65.0,75.0,70.0,60.0,48.0,58.0,43.0,66.0,52.0,63.0,41.0,38.0,38.0,30.0,23.0,34.0,31.0,35.0,20.0,28.0,24.0,41.0,12.0,13.0,11.0,9.0,21.0,10.0,11.0,10.0,14.0,5.0,7.0,4.0,5.0,5.0,1.0,3.0,2.0 Y06443,71.0,71.0,71.0,72.0,77.0,67.0,80.0,81.0,74.0,71.0,88.0,89.0,76.0,86.0,66.0,70.0,59.0,75.0,65.0,66.0,81.0,69.0,58.0,60.0,84.0,58.0,61.0,65.0,87.0,73.0,84.0,79.0,102.0,92.0,104.0,101.0,110.0,114.0,81.0,92.0,82.0,93.0,89.0,93.0,85.0,78.0,82.0,73.0,80.0,51.0,46.0,84.0,87.0,87.0,99.0,74.0,103.0,81.0,79.0,89.0,83.0,78.0,76.0,68.0,76.0,74.0,58.0,57.0,60.0,57.0,52.0,58.0,55.0,50.0,51.0,44.0,52.0,57.0,52.0,30.0,48.0,35.0,31.0,34.0,21.0,19.0,23.0,22.0,18.0,10.0,12.0,4.0,6.0,4.0,2.0,5.0 Y06792,63.0,52.0,44.0,53.0,57.0,56.0,65.0,65.0,76.0,82.0,75.0,64.0,80.0,89.0,84.0,66.0,71.0,45.0,71.0,54.0,61.0,56.0,44.0,39.0,48.0,36.0,44.0,45.0,48.0,43.0,68.0,56.0,58.0,64.0,56.0,75.0,72.0,55.0,65.0,65.0,78.0,47.0,54.0,48.0,56.0,46.0,46.0,51.0,40.0,48.0,37.0,38.0,41.0,38.0,32.0,36.0,35.0,47.0,35.0,29.0,29.0,33.0,31.0,29.0,30.0,23.0,30.0,26.0,16.0,6.0,18.0,10.0,14.0,6.0,15.0,13.0,9.0,15.0,9.0,10.0,9.0,7.0,5.0,4.0,3.0,7.0,1.0,3.0,3.0,,3.0,1.0,,,,5.0 Y08082,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,1.0,,,,,,,,,,,,1.0,,,1.0,,,,,,,,,,,1.0,,,,,1.0,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 L82001,62.0,88.0,88.0,87.0,91.0,91.0,82.0,94.0,108.0,113.0,109.0,116.0,120.0,125.0,112.0,128.0,115.0,124.0,111.0,72.0,83.0,84.0,87.0,94.0,99.0,102.0,112.0,123.0,138.0,127.0,127.0,131.0,135.0,143.0,157.0,186.0,139.0,164.0,149.0,143.0,154.0,142.0,139.0,148.0,174.0,161.0,130.0,127.0,119.0,104.0,136.0,126.0,144.0,134.0,116.0,121.0,126.0,143.0,106.0,140.0,115.0,137.0,100.0,117.0,109.0,104.0,98.0,88.0,80.0,79.0,89.0,71.0,75.0,77.0,73.0,68.0,69.0,90.0,99.0,61.0,52.0,60.0,55.0,33.0,49.0,30.0,19.0,28.0,30.0,17.0,9.0,11.0,8.0,4.0,7.0,15.0 L82003,27.0,27.0,30.0,44.0,25.0,39.0,32.0,24.0,33.0,52.0,45.0,44.0,52.0,59.0,42.0,54.0,50.0,39.0,51.0,47.0,43.0,48.0,38.0,27.0,44.0,23.0,44.0,33.0,44.0,33.0,40.0,53.0,36.0,42.0,34.0,43.0,45.0,36.0,40.0,43.0,40.0,52.0,50.0,44.0,51.0,47.0,40.0,53.0,41.0,45.0,34.0,44.0,68.0,62.0,50.0,54.0,57.0,49.0,74.0,70.0,67.0,70.0,68.0,57.0,70.0,54.0,70.0,65.0,49.0,61.0,68.0,53.0,43.0,53.0,53.0,66.0,60.0,74.0,62.0,55.0,44.0,32.0,48.0,43.0,24.0,28.0,25.0,16.0,17.0,11.0,12.0,6.0,5.0,5.0,5.0,13.0 L82004,25.0,31.0,32.0,27.0,35.0,35.0,32.0,29.0,28.0,36.0,31.0,30.0,41.0,35.0,37.0,50.0,46.0,50.0,38.0,47.0,35.0,35.0,34.0,30.0,29.0,39.0,38.0,43.0,33.0,39.0,34.0,40.0,41.0,43.0,42.0,50.0,39.0,35.0,36.0,45.0,49.0,34.0,49.0,47.0,62.0,46.0,46.0,44.0,57.0,54.0,47.0,53.0,47.0,49.0,55.0,55.0,57.0,48.0,56.0,57.0,54.0,78.0,63.0,57.0,59.0,42.0,57.0,51.0,54.0,54.0,53.0,36.0,52.0,34.0,47.0,45.0,55.0,57.0,55.0,29.0,42.0,35.0,30.0,29.0,15.0,24.0,28.0,19.0,14.0,14.0,10.0,14.0,10.0,3.0,5.0,7.0 L82006,64.0,63.0,71.0,71.0,82.0,72.0,74.0,72.0,88.0,76.0,88.0,82.0,81.0,92.0,80.0,72.0,74.0,71.0,191.0,389.0,485.0,424.0,332.0,271.0,280.0,228.0,209.0,225.0,205.0,213.0,172.0,178.0,155.0,140.0,141.0,135.0,125.0,119.0,110.0,93.0,116.0,100.0,98.0,107.0,95.0,102.0,92.0,104.0,97.0,96.0,85.0,100.0,103.0,90.0,99.0,107.0,99.0,98.0,109.0,107.0,101.0,112.0,107.0,108.0,116.0,90.0,81.0,89.0,92.0,105.0,96.0,91.0,94.0,78.0,66.0,63.0,77.0,83.0,86.0,72.0,67.0,79.0,50.0,40.0,35.0,37.0,23.0,27.0,23.0,18.0,20.0,12.0,10.0,5.0,6.0,13.0 L82007,18.0,25.0,22.0,27.0,23.0,24.0,42.0,40.0,31.0,28.0,50.0,34.0,31.0,47.0,54.0,40.0,36.0,45.0,51.0,36.0,34.0,19.0,19.0,23.0,29.0,25.0,25.0,33.0,23.0,25.0,33.0,30.0,27.0,26.0,33.0,32.0,41.0,35.0,30.0,26.0,28.0,38.0,38.0,35.0,39.0,50.0,30.0,26.0,29.0,41.0,33.0,45.0,49.0,38.0,51.0,48.0,51.0,52.0,39.0,56.0,54.0,58.0,57.0,62.0,51.0,60.0,51.0,52.0,49.0,55.0,37.0,34.0,48.0,50.0,44.0,49.0,35.0,33.0,47.0,31.0,34.0,29.0,23.0,20.0,21.0,14.0,13.0,15.0,12.0,4.0,7.0,2.0,7.0,3.0,2.0,5.0 L82008,39.0,31.0,34.0,50.0,36.0,39.0,44.0,56.0,54.0,54.0,75.0,65.0,61.0,67.0,76.0,47.0,68.0,57.0,70.0,63.0,40.0,47.0,60.0,39.0,51.0,50.0,50.0,62.0,51.0,37.0,62.0,53.0,61.0,52.0,56.0,68.0,60.0,58.0,66.0,55.0,59.0,60.0,41.0,69.0,66.0,70.0,67.0,60.0,55.0,73.0,55.0,58.0,57.0,83.0,77.0,78.0,69.0,77.0,78.0,87.0,73.0,71.0,91.0,83.0,76.0,89.0,75.0,81.0,85.0,73.0,72.0,82.0,66.0,66.0,86.0,71.0,71.0,75.0,62.0,47.0,51.0,44.0,49.0,23.0,33.0,34.0,34.0,30.0,17.0,14.0,13.0,7.0,5.0,10.0,6.0,13.0 L82010,109.0,90.0,106.0,110.0,130.0,110.0,118.0,137.0,148.0,134.0,134.0,145.0,171.0,181.0,152.0,143.0,155.0,141.0,126.0,114.0,112.0,121.0,113.0,112.0,107.0,126.0,108.0,158.0,143.0,115.0,152.0,136.0,171.0,181.0,178.0,163.0,170.0,177.0,171.0,171.0,156.0,162.0,157.0,140.0,155.0,142.0,151.0,120.0,144.0,123.0,134.0,128.0,145.0,150.0,165.0,170.0,169.0,168.0,185.0,188.0,137.0,181.0,176.0,166.0,168.0,159.0,188.0,141.0,132.0,117.0,137.0,103.0,114.0,100.0,126.0,125.0,111.0,117.0,137.0,101.0,77.0,76.0,67.0,51.0,57.0,51.0,45.0,46.0,26.0,25.0,23.0,13.0,15.0,9.0,8.0,16.0 L82011,28.0,34.0,33.0,37.0,29.0,37.0,31.0,34.0,47.0,34.0,50.0,39.0,37.0,49.0,40.0,53.0,34.0,38.0,38.0,34.0,30.0,37.0,32.0,30.0,31.0,32.0,34.0,38.0,39.0,28.0,34.0,38.0,35.0,49.0,38.0,32.0,41.0,39.0,33.0,38.0,44.0,40.0,29.0,28.0,33.0,38.0,27.0,35.0,40.0,30.0,39.0,41.0,29.0,37.0,48.0,43.0,43.0,39.0,49.0,51.0,52.0,42.0,55.0,41.0,49.0,47.0,30.0,46.0,33.0,36.0,40.0,43.0,30.0,34.0,32.0,23.0,30.0,35.0,31.0,21.0,24.0,18.0,21.0,10.0,9.0,9.0,14.0,8.0,14.0,4.0,5.0,2.0,4.0,2.0,1.0,2.0 L82012,45.0,52.0,55.0,70.0,60.0,70.0,73.0,57.0,74.0,73.0,85.0,88.0,77.0,77.0,82.0,97.0,90.0,92.0,90.0,67.0,96.0,55.0,90.0,58.0,77.0,70.0,79.0,70.0,82.0,67.0,92.0,68.0,101.0,98.0,76.0,89.0,80.0,85.0,85.0,87.0,70.0,84.0,92.0,74.0,80.0,76.0,75.0,72.0,77.0,72.0,90.0,87.0,103.0,101.0,107.0,128.0,135.0,138.0,125.0,173.0,134.0,157.0,155.0,158.0,155.0,141.0,150.0,154.0,153.0,149.0,135.0,125.0,123.0,116.0,108.0,136.0,125.0,132.0,119.0,92.0,104.0,101.0,80.0,60.0,57.0,44.0,38.0,36.0,26.0,22.0,17.0,21.0,8.0,11.0,6.0,15.0 L82013,14.0,26.0,23.0,28.0,33.0,31.0,36.0,35.0,49.0,42.0,43.0,43.0,58.0,49.0,52.0,44.0,51.0,45.0,48.0,42.0,41.0,42.0,42.0,28.0,37.0,26.0,35.0,30.0,29.0,30.0,31.0,38.0,41.0,43.0,47.0,40.0,54.0,55.0,47.0,44.0,39.0,44.0,46.0,63.0,60.0,65.0,53.0,50.0,56.0,42.0,45.0,47.0,61.0,69.0,69.0,54.0,56.0,55.0,68.0,54.0,68.0,53.0,51.0,46.0,65.0,48.0,53.0,51.0,44.0,49.0,57.0,41.0,48.0,36.0,52.0,48.0,52.0,59.0,54.0,37.0,37.0,28.0,31.0,14.0,15.0,16.0,15.0,15.0,16.0,15.0,11.0,9.0,4.0,5.0,1.0,4.0 L82015,22.0,23.0,33.0,23.0,25.0,37.0,26.0,22.0,33.0,27.0,36.0,31.0,43.0,41.0,50.0,45.0,34.0,39.0,32.0,35.0,35.0,27.0,20.0,17.0,29.0,22.0,29.0,28.0,25.0,35.0,39.0,38.0,43.0,30.0,42.0,36.0,39.0,47.0,35.0,39.0,49.0,36.0,41.0,57.0,39.0,41.0,40.0,28.0,34.0,36.0,44.0,38.0,58.0,38.0,55.0,55.0,54.0,37.0,65.0,38.0,50.0,51.0,51.0,54.0,50.0,35.0,37.0,45.0,54.0,40.0,50.0,50.0,46.0,48.0,45.0,38.0,44.0,53.0,50.0,41.0,33.0,41.0,16.0,21.0,24.0,18.0,15.0,14.0,12.0,8.0,8.0,5.0,5.0,1.0,2.0,4.0 L82016,61.0,68.0,58.0,76.0,57.0,82.0,101.0,108.0,92.0,94.0,100.0,85.0,107.0,89.0,107.0,86.0,99.0,83.0,90.0,69.0,84.0,73.0,75.0,69.0,72.0,68.0,60.0,69.0,95.0,74.0,87.0,79.0,101.0,84.0,91.0,98.0,100.0,97.0,97.0,91.0,95.0,104.0,107.0,74.0,78.0,71.0,88.0,78.0,82.0,70.0,87.0,101.0,120.0,131.0,111.0,109.0,139.0,126.0,135.0,129.0,155.0,135.0,136.0,121.0,139.0,127.0,133.0,130.0,117.0,121.0,100.0,116.0,87.0,107.0,116.0,114.0,141.0,120.0,100.0,90.0,89.0,69.0,65.0,47.0,31.0,43.0,27.0,29.0,27.0,14.0,17.0,9.0,13.0,4.0,9.0,9.0 L82017,9.0,6.0,12.0,12.0,9.0,9.0,10.0,13.0,9.0,9.0,17.0,14.0,15.0,9.0,8.0,8.0,12.0,9.0,7.0,7.0,14.0,10.0,17.0,19.0,16.0,17.0,12.0,20.0,15.0,25.0,22.0,26.0,17.0,29.0,14.0,15.0,16.0,16.0,19.0,16.0,17.0,19.0,23.0,15.0,15.0,16.0,17.0,21.0,8.0,10.0,14.0,16.0,13.0,11.0,14.0,22.0,15.0,20.0,13.0,19.0,17.0,25.0,28.0,8.0,9.0,9.0,9.0,18.0,12.0,8.0,10.0,13.0,12.0,13.0,11.0,10.0,11.0,16.0,9.0,13.0,18.0,12.0,8.0,4.0,7.0,13.0,2.0,6.0,4.0,3.0,3.0,,2.0,1.0,1.0,3.0 L82018,52.0,68.0,66.0,64.0,76.0,69.0,60.0,73.0,71.0,71.0,92.0,85.0,106.0,95.0,84.0,73.0,90.0,91.0,83.0,86.0,77.0,48.0,56.0,76.0,75.0,56.0,43.0,74.0,61.0,75.0,71.0,65.0,77.0,81.0,82.0,73.0,88.0,81.0,74.0,89.0,86.0,80.0,72.0,72.0,91.0,85.0,76.0,81.0,83.0,69.0,83.0,78.0,99.0,88.0,95.0,97.0,107.0,97.0,122.0,96.0,94.0,104.0,122.0,106.0,97.0,89.0,90.0,100.0,101.0,102.0,77.0,87.0,75.0,62.0,76.0,76.0,90.0,87.0,85.0,67.0,55.0,54.0,58.0,31.0,44.0,33.0,39.0,25.0,20.0,16.0,18.0,12.0,12.0,6.0,5.0,6.0 L82022,21.0,20.0,22.0,24.0,33.0,36.0,38.0,41.0,31.0,39.0,41.0,34.0,52.0,39.0,47.0,50.0,57.0,50.0,46.0,44.0,44.0,22.0,54.0,28.0,48.0,41.0,38.0,33.0,38.0,40.0,34.0,42.0,38.0,33.0,41.0,37.0,37.0,41.0,39.0,48.0,50.0,39.0,42.0,34.0,30.0,46.0,50.0,32.0,40.0,32.0,60.0,57.0,50.0,70.0,75.0,76.0,87.0,93.0,100.0,85.0,96.0,88.0,100.0,84.0,101.0,101.0,79.0,84.0,79.0,94.0,89.0,85.0,88.0,75.0,57.0,89.0,87.0,92.0,95.0,69.0,51.0,51.0,40.0,30.0,39.0,30.0,18.0,21.0,21.0,15.0,18.0,16.0,11.0,10.0,4.0,12.0 L82023,52.0,62.0,69.0,64.0,68.0,85.0,99.0,95.0,107.0,107.0,87.0,107.0,103.0,108.0,92.0,99.0,112.0,101.0,93.0,83.0,86.0,82.0,52.0,81.0,70.0,63.0,79.0,79.0,85.0,83.0,93.0,97.0,77.0,88.0,107.0,105.0,92.0,102.0,101.0,100.0,108.0,93.0,106.0,113.0,129.0,114.0,98.0,115.0,105.0,104.0,108.0,106.0,125.0,117.0,116.0,106.0,132.0,112.0,116.0,129.0,143.0,119.0,122.0,109.0,125.0,97.0,93.0,103.0,102.0,88.0,83.0,89.0,85.0,98.0,84.0,92.0,81.0,85.0,100.0,74.0,81.0,77.0,51.0,47.0,50.0,30.0,22.0,30.0,21.0,21.0,16.0,11.0,7.0,8.0,2.0,13.0 L82025,5.0,10.0,11.0,9.0,15.0,22.0,18.0,20.0,20.0,24.0,20.0,18.0,24.0,21.0,21.0,29.0,24.0,30.0,23.0,22.0,19.0,15.0,22.0,19.0,29.0,22.0,17.0,22.0,22.0,16.0,27.0,19.0,19.0,20.0,24.0,25.0,22.0,19.0,21.0,16.0,27.0,24.0,26.0,27.0,26.0,25.0,18.0,22.0,19.0,24.0,22.0,23.0,30.0,25.0,42.0,44.0,32.0,36.0,34.0,50.0,46.0,46.0,36.0,47.0,45.0,44.0,35.0,43.0,38.0,42.0,40.0,28.0,35.0,24.0,32.0,32.0,43.0,51.0,38.0,29.0,33.0,22.0,25.0,18.0,12.0,19.0,17.0,22.0,9.0,10.0,5.0,5.0,4.0,3.0,3.0,4.0 L82026,19.0,35.0,25.0,28.0,29.0,21.0,35.0,37.0,27.0,33.0,28.0,36.0,35.0,48.0,39.0,38.0,42.0,31.0,36.0,28.0,36.0,30.0,27.0,32.0,22.0,32.0,36.0,31.0,46.0,27.0,23.0,34.0,40.0,45.0,40.0,29.0,39.0,44.0,30.0,34.0,45.0,36.0,26.0,39.0,42.0,40.0,26.0,27.0,31.0,41.0,36.0,45.0,47.0,46.0,44.0,57.0,47.0,54.0,54.0,69.0,60.0,44.0,47.0,41.0,47.0,36.0,52.0,43.0,41.0,32.0,45.0,49.0,47.0,47.0,31.0,34.0,45.0,42.0,57.0,43.0,30.0,27.0,30.0,23.0,13.0,20.0,11.0,12.0,7.0,7.0,9.0,7.0,4.0,1.0,2.0,4.0 L82028,86.0,68.0,87.0,89.0,71.0,85.0,98.0,89.0,94.0,102.0,93.0,87.0,99.0,103.0,113.0,102.0,111.0,118.0,112.0,86.0,77.0,94.0,124.0,96.0,98.0,117.0,104.0,98.0,85.0,104.0,124.0,125.0,140.0,126.0,136.0,139.0,141.0,140.0,132.0,111.0,126.0,112.0,130.0,122.0,122.0,113.0,119.0,93.0,88.0,97.0,100.0,114.0,110.0,111.0,106.0,98.0,106.0,106.0,100.0,103.0,123.0,92.0,107.0,123.0,92.0,106.0,102.0,92.0,84.0,75.0,78.0,81.0,73.0,58.0,67.0,80.0,90.0,92.0,80.0,64.0,57.0,62.0,32.0,44.0,28.0,32.0,33.0,30.0,14.0,33.0,18.0,11.0,18.0,8.0,2.0,17.0 L82029,57.0,57.0,73.0,84.0,60.0,82.0,92.0,102.0,81.0,88.0,98.0,90.0,99.0,72.0,90.0,99.0,98.0,86.0,87.0,63.0,68.0,62.0,80.0,69.0,76.0,68.0,94.0,99.0,102.0,89.0,99.0,108.0,111.0,120.0,139.0,138.0,123.0,152.0,124.0,116.0,117.0,108.0,119.0,133.0,123.0,118.0,125.0,109.0,100.0,112.0,117.0,107.0,133.0,98.0,117.0,125.0,101.0,123.0,111.0,114.0,118.0,105.0,97.0,104.0,94.0,91.0,88.0,78.0,85.0,82.0,73.0,77.0,73.0,86.0,61.0,77.0,85.0,72.0,74.0,52.0,66.0,42.0,47.0,31.0,31.0,29.0,32.0,31.0,13.0,16.0,15.0,7.0,9.0,6.0,8.0,11.0 L82030,59.0,70.0,84.0,74.0,95.0,87.0,101.0,102.0,108.0,99.0,100.0,110.0,109.0,119.0,131.0,115.0,114.0,105.0,101.0,79.0,75.0,69.0,90.0,70.0,101.0,90.0,101.0,102.0,79.0,94.0,87.0,87.0,99.0,84.0,114.0,123.0,108.0,111.0,105.0,116.0,110.0,109.0,109.0,113.0,144.0,107.0,106.0,101.0,106.0,86.0,113.0,113.0,119.0,117.0,126.0,137.0,146.0,131.0,151.0,149.0,155.0,170.0,142.0,143.0,152.0,141.0,126.0,123.0,114.0,131.0,103.0,117.0,92.0,110.0,94.0,95.0,114.0,112.0,108.0,93.0,84.0,71.0,48.0,55.0,42.0,48.0,43.0,36.0,21.0,21.0,16.0,14.0,11.0,6.0,11.0,9.0 L82035,23.0,30.0,20.0,40.0,29.0,33.0,25.0,43.0,33.0,56.0,44.0,40.0,36.0,42.0,42.0,45.0,37.0,40.0,33.0,38.0,32.0,32.0,24.0,35.0,41.0,32.0,35.0,42.0,30.0,37.0,38.0,32.0,37.0,31.0,35.0,28.0,46.0,41.0,45.0,54.0,45.0,37.0,48.0,40.0,41.0,55.0,36.0,29.0,48.0,46.0,44.0,46.0,60.0,63.0,62.0,59.0,64.0,61.0,66.0,63.0,67.0,72.0,61.0,59.0,70.0,67.0,59.0,64.0,69.0,64.0,57.0,63.0,57.0,60.0,53.0,49.0,58.0,53.0,63.0,45.0,48.0,39.0,33.0,36.0,37.0,24.0,22.0,22.0,16.0,21.0,11.0,7.0,6.0,9.0,4.0,7.0 L82036,47.0,47.0,54.0,67.0,55.0,53.0,56.0,67.0,67.0,74.0,79.0,75.0,80.0,73.0,77.0,81.0,67.0,74.0,84.0,64.0,51.0,67.0,65.0,61.0,56.0,54.0,63.0,60.0,56.0,54.0,72.0,65.0,67.0,86.0,72.0,79.0,82.0,84.0,85.0,58.0,88.0,81.0,67.0,73.0,52.0,87.0,70.0,71.0,75.0,57.0,93.0,89.0,79.0,87.0,82.0,76.0,80.0,78.0,91.0,91.0,70.0,77.0,82.0,68.0,95.0,88.0,72.0,66.0,70.0,61.0,70.0,55.0,57.0,55.0,48.0,69.0,72.0,84.0,76.0,48.0,47.0,50.0,43.0,38.0,32.0,44.0,30.0,21.0,13.0,6.0,11.0,10.0,8.0,4.0,5.0,6.0 L82038,36.0,44.0,29.0,41.0,46.0,46.0,42.0,52.0,52.0,56.0,55.0,52.0,63.0,53.0,70.0,61.0,58.0,70.0,67.0,57.0,51.0,51.0,53.0,39.0,50.0,47.0,50.0,50.0,53.0,59.0,55.0,64.0,55.0,65.0,63.0,73.0,57.0,59.0,72.0,57.0,74.0,67.0,47.0,67.0,62.0,61.0,53.0,62.0,63.0,72.0,61.0,75.0,66.0,80.0,107.0,78.0,85.0,97.0,81.0,104.0,117.0,129.0,98.0,123.0,88.0,101.0,92.0,97.0,82.0,85.0,91.0,97.0,91.0,81.0,85.0,100.0,72.0,73.0,106.0,61.0,57.0,49.0,49.0,43.0,34.0,34.0,27.0,25.0,21.0,23.0,14.0,8.0,8.0,9.0,3.0,17.0 L82039,16.0,10.0,27.0,19.0,19.0,17.0,21.0,20.0,19.0,28.0,22.0,31.0,23.0,28.0,19.0,27.0,15.0,37.0,26.0,33.0,24.0,19.0,20.0,21.0,22.0,23.0,21.0,24.0,32.0,25.0,20.0,24.0,27.0,22.0,23.0,36.0,30.0,23.0,24.0,30.0,22.0,23.0,27.0,18.0,32.0,22.0,24.0,25.0,20.0,26.0,29.0,30.0,27.0,23.0,27.0,38.0,40.0,44.0,43.0,52.0,41.0,51.0,41.0,49.0,41.0,45.0,47.0,41.0,49.0,38.0,34.0,24.0,36.0,38.0,43.0,53.0,38.0,33.0,45.0,30.0,25.0,40.0,22.0,20.0,16.0,20.0,10.0,16.0,10.0,5.0,3.0,7.0,4.0,4.0,3.0,6.0 L82041,111.0,132.0,150.0,150.0,174.0,184.0,177.0,202.0,176.0,189.0,202.0,217.0,222.0,216.0,198.0,192.0,189.0,206.0,196.0,159.0,155.0,149.0,163.0,149.0,138.0,163.0,177.0,179.0,164.0,162.0,150.0,213.0,206.0,201.0,214.0,215.0,204.0,226.0,212.0,213.0,206.0,183.0,180.0,180.0,207.0,180.0,165.0,168.0,183.0,190.0,161.0,180.0,217.0,182.0,184.0,192.0,189.0,223.0,200.0,196.0,207.0,189.0,183.0,195.0,170.0,166.0,176.0,185.0,148.0,151.0,132.0,146.0,129.0,114.0,134.0,132.0,129.0,136.0,156.0,92.0,104.0,86.0,94.0,54.0,49.0,55.0,45.0,36.0,24.0,21.0,17.0,18.0,13.0,7.0,7.0,9.0 L82042,85.0,56.0,89.0,86.0,73.0,95.0,87.0,98.0,99.0,80.0,98.0,83.0,90.0,90.0,93.0,82.0,99.0,119.0,91.0,65.0,69.0,75.0,76.0,69.0,83.0,83.0,91.0,86.0,92.0,94.0,110.0,96.0,109.0,116.0,118.0,117.0,130.0,124.0,117.0,121.0,110.0,105.0,106.0,118.0,144.0,106.0,109.0,81.0,98.0,87.0,95.0,105.0,118.0,116.0,108.0,107.0,143.0,129.0,140.0,135.0,141.0,135.0,125.0,99.0,102.0,102.0,112.0,99.0,101.0,100.0,74.0,87.0,63.0,72.0,87.0,84.0,86.0,89.0,100.0,61.0,71.0,65.0,60.0,55.0,42.0,37.0,40.0,26.0,17.0,24.0,16.0,10.0,12.0,11.0,8.0,9.0 L82043,8.0,14.0,11.0,13.0,13.0,13.0,10.0,14.0,15.0,17.0,22.0,19.0,24.0,23.0,26.0,20.0,12.0,18.0,28.0,19.0,21.0,16.0,23.0,24.0,22.0,16.0,19.0,13.0,21.0,16.0,17.0,23.0,11.0,19.0,20.0,25.0,20.0,15.0,23.0,16.0,23.0,25.0,22.0,18.0,20.0,24.0,25.0,23.0,20.0,21.0,31.0,29.0,29.0,33.0,30.0,46.0,42.0,43.0,54.0,50.0,41.0,47.0,38.0,38.0,41.0,46.0,37.0,42.0,55.0,40.0,37.0,44.0,33.0,43.0,32.0,28.0,37.0,33.0,44.0,25.0,23.0,14.0,13.0,7.0,9.0,15.0,19.0,13.0,10.0,3.0,4.0,1.0,3.0,1.0,,3.0 L82044,26.0,33.0,33.0,36.0,27.0,37.0,33.0,45.0,51.0,42.0,50.0,51.0,52.0,59.0,41.0,47.0,47.0,49.0,59.0,38.0,44.0,38.0,35.0,40.0,47.0,49.0,57.0,51.0,47.0,52.0,58.0,48.0,58.0,58.0,54.0,55.0,49.0,55.0,42.0,51.0,57.0,62.0,44.0,42.0,45.0,50.0,59.0,57.0,49.0,43.0,37.0,45.0,55.0,55.0,60.0,60.0,67.0,46.0,63.0,64.0,71.0,69.0,49.0,72.0,70.0,62.0,71.0,45.0,51.0,39.0,45.0,57.0,48.0,59.0,47.0,54.0,54.0,58.0,60.0,48.0,52.0,23.0,38.0,19.0,26.0,30.0,27.0,18.0,24.0,12.0,13.0,12.0,9.0,5.0,5.0,12.0 L82045,20.0,33.0,37.0,40.0,32.0,35.0,54.0,48.0,49.0,48.0,36.0,51.0,54.0,56.0,49.0,61.0,48.0,41.0,61.0,50.0,38.0,44.0,30.0,42.0,45.0,52.0,38.0,47.0,40.0,54.0,43.0,44.0,45.0,60.0,41.0,35.0,53.0,57.0,47.0,45.0,56.0,47.0,53.0,57.0,52.0,53.0,52.0,52.0,62.0,51.0,54.0,53.0,63.0,66.0,67.0,76.0,62.0,67.0,72.0,86.0,81.0,64.0,75.0,72.0,84.0,63.0,67.0,67.0,61.0,44.0,64.0,66.0,51.0,70.0,58.0,55.0,55.0,79.0,64.0,37.0,41.0,39.0,35.0,41.0,25.0,22.0,25.0,9.0,19.0,13.0,8.0,9.0,8.0,4.0,1.0,6.0 L82046,31.0,35.0,37.0,58.0,46.0,48.0,53.0,56.0,60.0,83.0,70.0,92.0,95.0,82.0,87.0,78.0,90.0,66.0,75.0,71.0,54.0,76.0,56.0,46.0,58.0,73.0,64.0,58.0,52.0,58.0,50.0,55.0,61.0,72.0,62.0,56.0,64.0,71.0,65.0,70.0,57.0,53.0,71.0,64.0,69.0,57.0,67.0,56.0,60.0,67.0,72.0,83.0,78.0,79.0,69.0,94.0,69.0,99.0,76.0,106.0,98.0,97.0,97.0,85.0,70.0,86.0,79.0,95.0,77.0,60.0,64.0,68.0,77.0,72.0,66.0,69.0,70.0,86.0,94.0,54.0,54.0,61.0,34.0,34.0,31.0,27.0,25.0,23.0,21.0,15.0,10.0,9.0,9.0,9.0,6.0,6.0 L82047,16.0,25.0,20.0,23.0,31.0,16.0,28.0,35.0,36.0,36.0,28.0,47.0,39.0,39.0,35.0,46.0,41.0,47.0,35.0,30.0,33.0,37.0,39.0,28.0,31.0,35.0,34.0,28.0,24.0,29.0,39.0,30.0,44.0,35.0,34.0,38.0,30.0,45.0,44.0,36.0,28.0,42.0,44.0,36.0,43.0,43.0,36.0,30.0,35.0,30.0,45.0,49.0,47.0,54.0,54.0,61.0,51.0,62.0,63.0,54.0,63.0,72.0,67.0,61.0,73.0,68.0,63.0,55.0,64.0,73.0,62.0,73.0,58.0,54.0,60.0,60.0,55.0,59.0,65.0,51.0,55.0,38.0,46.0,25.0,24.0,25.0,19.0,16.0,12.0,13.0,12.0,5.0,5.0,8.0,3.0,6.0 L82048,12.0,6.0,6.0,8.0,8.0,9.0,15.0,25.0,11.0,16.0,19.0,20.0,17.0,21.0,23.0,14.0,22.0,19.0,23.0,15.0,17.0,10.0,21.0,16.0,13.0,24.0,15.0,16.0,17.0,16.0,13.0,14.0,17.0,15.0,12.0,20.0,20.0,22.0,12.0,21.0,20.0,17.0,16.0,22.0,26.0,22.0,14.0,22.0,22.0,26.0,18.0,24.0,22.0,24.0,26.0,28.0,22.0,26.0,35.0,29.0,27.0,30.0,29.0,33.0,39.0,28.0,33.0,29.0,31.0,33.0,36.0,28.0,32.0,25.0,29.0,33.0,38.0,23.0,42.0,26.0,26.0,17.0,15.0,15.0,16.0,20.0,8.0,9.0,9.0,5.0,6.0,3.0,3.0,4.0,1.0,1.0 L82049,32.0,37.0,46.0,57.0,51.0,52.0,40.0,54.0,61.0,61.0,45.0,52.0,55.0,46.0,62.0,61.0,56.0,52.0,58.0,65.0,79.0,74.0,78.0,76.0,79.0,74.0,73.0,64.0,64.0,66.0,57.0,72.0,70.0,79.0,79.0,84.0,79.0,85.0,59.0,64.0,60.0,60.0,59.0,44.0,71.0,48.0,64.0,53.0,47.0,48.0,51.0,50.0,83.0,47.0,74.0,46.0,56.0,77.0,66.0,74.0,61.0,70.0,58.0,65.0,65.0,60.0,65.0,53.0,70.0,47.0,60.0,55.0,64.0,49.0,46.0,41.0,51.0,56.0,58.0,42.0,25.0,27.0,37.0,17.0,22.0,31.0,14.0,18.0,16.0,14.0,4.0,8.0,5.0,6.0,4.0,1.0 L82050,34.0,49.0,34.0,43.0,43.0,50.0,46.0,53.0,56.0,62.0,46.0,49.0,52.0,58.0,48.0,46.0,51.0,69.0,52.0,53.0,43.0,52.0,41.0,38.0,46.0,48.0,56.0,39.0,61.0,52.0,40.0,50.0,52.0,61.0,66.0,53.0,60.0,54.0,42.0,53.0,52.0,52.0,59.0,47.0,57.0,45.0,51.0,44.0,54.0,48.0,59.0,61.0,62.0,60.0,54.0,60.0,71.0,62.0,61.0,97.0,49.0,81.0,66.0,75.0,70.0,67.0,67.0,63.0,62.0,83.0,60.0,66.0,58.0,51.0,61.0,54.0,60.0,57.0,57.0,41.0,45.0,29.0,34.0,17.0,20.0,17.0,10.0,12.0,13.0,6.0,14.0,10.0,5.0,5.0,5.0,5.0 L82051,59.0,60.0,57.0,75.0,68.0,72.0,66.0,72.0,79.0,83.0,89.0,82.0,79.0,97.0,105.0,90.0,73.0,79.0,79.0,77.0,73.0,67.0,66.0,70.0,60.0,60.0,75.0,57.0,74.0,91.0,81.0,99.0,70.0,86.0,111.0,77.0,84.0,106.0,77.0,91.0,85.0,68.0,86.0,92.0,112.0,99.0,63.0,67.0,73.0,78.0,87.0,89.0,74.0,94.0,95.0,110.0,113.0,98.0,90.0,101.0,124.0,96.0,100.0,96.0,83.0,95.0,91.0,90.0,69.0,70.0,85.0,69.0,49.0,77.0,70.0,59.0,54.0,67.0,65.0,57.0,46.0,41.0,36.0,26.0,24.0,15.0,21.0,13.0,10.0,13.0,5.0,4.0,4.0,4.0,2.0,3.0 L82052,45.0,37.0,46.0,47.0,48.0,46.0,44.0,64.0,57.0,44.0,49.0,57.0,59.0,54.0,59.0,55.0,56.0,66.0,47.0,44.0,40.0,58.0,46.0,56.0,51.0,53.0,41.0,62.0,53.0,61.0,55.0,72.0,66.0,79.0,81.0,75.0,61.0,58.0,70.0,68.0,59.0,69.0,46.0,64.0,70.0,76.0,53.0,59.0,58.0,59.0,57.0,71.0,67.0,66.0,65.0,71.0,55.0,56.0,59.0,71.0,81.0,77.0,82.0,64.0,82.0,59.0,66.0,64.0,62.0,60.0,56.0,69.0,63.0,58.0,54.0,71.0,64.0,62.0,59.0,34.0,52.0,40.0,39.0,33.0,22.0,28.0,27.0,21.0,15.0,15.0,11.0,10.0,15.0,5.0,2.0,9.0 L82054,47.0,29.0,37.0,48.0,35.0,43.0,39.0,48.0,50.0,60.0,71.0,60.0,71.0,61.0,61.0,59.0,36.0,71.0,42.0,52.0,45.0,42.0,26.0,34.0,25.0,40.0,40.0,31.0,34.0,51.0,43.0,50.0,40.0,38.0,47.0,52.0,47.0,56.0,61.0,57.0,54.0,61.0,56.0,59.0,55.0,65.0,59.0,63.0,62.0,68.0,60.0,79.0,77.0,69.0,79.0,71.0,63.0,60.0,60.0,72.0,56.0,69.0,63.0,50.0,43.0,50.0,49.0,56.0,51.0,55.0,50.0,56.0,47.0,48.0,53.0,42.0,48.0,57.0,49.0,33.0,48.0,39.0,44.0,22.0,24.0,13.0,19.0,11.0,11.0,7.0,7.0,6.0,1.0,4.0,5.0,4.0 L82056,17.0,26.0,31.0,37.0,42.0,32.0,38.0,43.0,44.0,42.0,40.0,40.0,48.0,58.0,51.0,47.0,44.0,59.0,45.0,41.0,47.0,45.0,29.0,25.0,29.0,39.0,36.0,28.0,38.0,22.0,41.0,28.0,25.0,34.0,37.0,36.0,32.0,33.0,25.0,38.0,30.0,47.0,32.0,51.0,42.0,44.0,47.0,38.0,56.0,51.0,43.0,60.0,47.0,51.0,66.0,37.0,52.0,73.0,68.0,72.0,73.0,73.0,73.0,62.0,63.0,59.0,81.0,60.0,65.0,67.0,55.0,50.0,78.0,54.0,61.0,56.0,87.0,73.0,73.0,41.0,41.0,36.0,37.0,27.0,30.0,21.0,25.0,12.0,12.0,11.0,12.0,6.0,8.0,5.0,5.0,11.0 L82057,7.0,7.0,9.0,9.0,4.0,13.0,9.0,10.0,14.0,13.0,12.0,7.0,24.0,11.0,11.0,25.0,15.0,11.0,13.0,13.0,9.0,13.0,9.0,22.0,5.0,10.0,13.0,6.0,8.0,12.0,12.0,6.0,9.0,18.0,16.0,10.0,19.0,13.0,15.0,11.0,9.0,11.0,11.0,13.0,11.0,15.0,14.0,18.0,18.0,15.0,19.0,14.0,14.0,16.0,22.0,15.0,20.0,20.0,27.0,24.0,24.0,34.0,27.0,26.0,33.0,28.0,26.0,31.0,21.0,30.0,18.0,23.0,28.0,27.0,26.0,20.0,20.0,29.0,25.0,19.0,24.0,22.0,13.0,14.0,7.0,6.0,6.0,2.0,7.0,3.0,4.0,1.0,2.0,3.0,1.0,6.0 L82058,16.0,6.0,7.0,18.0,17.0,10.0,16.0,16.0,16.0,25.0,20.0,26.0,19.0,22.0,25.0,20.0,24.0,18.0,27.0,20.0,17.0,11.0,20.0,14.0,18.0,24.0,16.0,16.0,24.0,12.0,12.0,20.0,16.0,27.0,21.0,20.0,25.0,22.0,22.0,20.0,20.0,19.0,24.0,14.0,22.0,24.0,26.0,20.0,26.0,31.0,24.0,42.0,26.0,34.0,30.0,30.0,45.0,45.0,45.0,44.0,49.0,44.0,31.0,47.0,53.0,48.0,49.0,51.0,43.0,40.0,42.0,44.0,37.0,35.0,30.0,35.0,39.0,39.0,31.0,29.0,27.0,28.0,18.0,24.0,11.0,11.0,15.0,18.0,9.0,7.0,3.0,3.0,,,,3.0 L82059,11.0,20.0,21.0,21.0,22.0,31.0,33.0,27.0,45.0,24.0,33.0,22.0,41.0,30.0,33.0,34.0,34.0,29.0,30.0,24.0,23.0,24.0,22.0,27.0,31.0,20.0,25.0,22.0,24.0,20.0,19.0,22.0,28.0,18.0,17.0,31.0,21.0,18.0,26.0,25.0,31.0,19.0,24.0,19.0,26.0,21.0,24.0,19.0,23.0,22.0,30.0,31.0,24.0,28.0,36.0,30.0,30.0,32.0,38.0,49.0,40.0,44.0,38.0,46.0,51.0,50.0,33.0,43.0,37.0,42.0,28.0,33.0,26.0,42.0,37.0,29.0,31.0,23.0,38.0,37.0,27.0,22.0,13.0,17.0,13.0,14.0,9.0,9.0,8.0,2.0,2.0,2.0,4.0,2.0,1.0,1.0 L82061,8.0,10.0,20.0,23.0,24.0,32.0,25.0,27.0,24.0,25.0,28.0,41.0,28.0,25.0,28.0,36.0,31.0,27.0,17.0,25.0,23.0,34.0,20.0,25.0,14.0,23.0,11.0,23.0,23.0,12.0,24.0,23.0,20.0,16.0,32.0,22.0,24.0,29.0,19.0,29.0,29.0,34.0,25.0,30.0,29.0,33.0,29.0,41.0,30.0,35.0,30.0,34.0,40.0,37.0,38.0,37.0,30.0,37.0,37.0,49.0,42.0,54.0,49.0,38.0,59.0,41.0,59.0,48.0,43.0,37.0,47.0,31.0,42.0,42.0,51.0,44.0,56.0,53.0,58.0,45.0,50.0,37.0,32.0,30.0,32.0,28.0,14.0,26.0,17.0,9.0,10.0,7.0,5.0,7.0,7.0,6.0 L82066,25.0,20.0,21.0,28.0,22.0,28.0,22.0,28.0,34.0,36.0,27.0,36.0,32.0,39.0,32.0,43.0,45.0,33.0,30.0,41.0,33.0,34.0,22.0,36.0,28.0,27.0,34.0,29.0,27.0,31.0,33.0,41.0,42.0,29.0,31.0,41.0,39.0,38.0,42.0,35.0,42.0,26.0,38.0,33.0,39.0,46.0,40.0,42.0,40.0,36.0,34.0,53.0,48.0,47.0,49.0,42.0,49.0,45.0,64.0,44.0,65.0,56.0,56.0,37.0,42.0,39.0,45.0,51.0,46.0,46.0,35.0,36.0,42.0,42.0,37.0,49.0,48.0,41.0,67.0,53.0,39.0,33.0,29.0,23.0,15.0,22.0,18.0,20.0,11.0,8.0,6.0,5.0,2.0,2.0,5.0,4.0 L82068,43.0,36.0,35.0,44.0,46.0,42.0,41.0,44.0,43.0,57.0,43.0,54.0,48.0,45.0,50.0,49.0,52.0,51.0,42.0,46.0,41.0,43.0,32.0,31.0,42.0,31.0,41.0,52.0,47.0,37.0,40.0,55.0,65.0,61.0,62.0,57.0,51.0,75.0,64.0,60.0,49.0,48.0,56.0,49.0,60.0,63.0,57.0,53.0,58.0,52.0,48.0,58.0,68.0,73.0,65.0,78.0,55.0,53.0,51.0,78.0,79.0,71.0,71.0,76.0,67.0,49.0,59.0,63.0,51.0,50.0,50.0,42.0,55.0,52.0,54.0,46.0,52.0,43.0,46.0,33.0,47.0,33.0,38.0,16.0,17.0,21.0,10.0,12.0,13.0,7.0,4.0,5.0,3.0,4.0,,4.0 L82070,34.0,19.0,18.0,39.0,33.0,34.0,33.0,35.0,30.0,30.0,26.0,22.0,33.0,42.0,38.0,27.0,37.0,40.0,39.0,40.0,28.0,21.0,30.0,33.0,24.0,34.0,27.0,44.0,42.0,33.0,33.0,34.0,42.0,27.0,33.0,38.0,41.0,37.0,37.0,39.0,33.0,37.0,36.0,37.0,37.0,26.0,42.0,37.0,36.0,27.0,40.0,34.0,33.0,52.0,39.0,31.0,52.0,33.0,50.0,38.0,48.0,51.0,45.0,46.0,57.0,47.0,44.0,43.0,43.0,37.0,42.0,50.0,45.0,36.0,35.0,39.0,45.0,43.0,46.0,22.0,42.0,37.0,31.0,15.0,14.0,25.0,12.0,8.0,21.0,9.0,4.0,3.0,7.0,3.0,2.0,9.0 L82620,25.0,22.0,37.0,30.0,37.0,41.0,30.0,36.0,38.0,40.0,25.0,32.0,40.0,39.0,35.0,33.0,24.0,30.0,34.0,34.0,28.0,31.0,27.0,27.0,25.0,27.0,23.0,31.0,30.0,29.0,42.0,48.0,38.0,40.0,29.0,34.0,47.0,40.0,43.0,41.0,39.0,29.0,30.0,34.0,44.0,32.0,22.0,18.0,27.0,34.0,46.0,40.0,36.0,50.0,42.0,53.0,56.0,56.0,45.0,51.0,57.0,57.0,61.0,43.0,43.0,53.0,34.0,35.0,39.0,34.0,36.0,42.0,31.0,49.0,30.0,21.0,36.0,37.0,34.0,23.0,30.0,24.0,29.0,18.0,14.0,13.0,11.0,11.0,3.0,6.0,6.0,3.0,4.0,1.0,,4.0 L82622,23.0,32.0,17.0,29.0,22.0,25.0,24.0,40.0,27.0,33.0,32.0,29.0,38.0,38.0,37.0,29.0,26.0,31.0,22.0,42.0,52.0,67.0,50.0,65.0,63.0,56.0,55.0,66.0,56.0,55.0,45.0,48.0,56.0,51.0,50.0,60.0,40.0,59.0,47.0,40.0,47.0,41.0,50.0,43.0,58.0,48.0,41.0,35.0,32.0,33.0,44.0,39.0,42.0,46.0,42.0,48.0,44.0,44.0,55.0,48.0,47.0,49.0,38.0,42.0,40.0,38.0,41.0,46.0,48.0,50.0,24.0,35.0,31.0,41.0,29.0,30.0,30.0,47.0,47.0,29.0,42.0,25.0,15.0,15.0,15.0,11.0,10.0,8.0,16.0,9.0,2.0,4.0,2.0,1.0,5.0,8.0 Y00049,,,,,,,,,,,,,,,,,,,2.0,2.0,4.0,2.0,3.0,3.0,5.0,1.0,2.0,7.0,3.0,7.0,4.0,6.0,6.0,10.0,10.0,7.0,6.0,11.0,5.0,8.0,6.0,11.0,6.0,5.0,6.0,5.0,8.0,4.0,8.0,4.0,6.0,4.0,12.0,9.0,4.0,6.0,6.0,4.0,6.0,4.0,3.0,1.0,4.0,3.0,2.0,,2.0,1.0,,,,,1.0,2.0,,,,,,1.0,,,,,,,,,,,,,,,, Y00969,27.0,35.0,30.0,52.0,45.0,47.0,65.0,54.0,58.0,62.0,60.0,73.0,61.0,71.0,85.0,68.0,69.0,68.0,57.0,53.0,68.0,52.0,46.0,50.0,60.0,53.0,54.0,50.0,36.0,44.0,65.0,57.0,69.0,64.0,45.0,52.0,63.0,67.0,50.0,69.0,56.0,72.0,67.0,71.0,71.0,60.0,59.0,58.0,47.0,71.0,69.0,64.0,78.0,75.0,81.0,75.0,88.0,86.0,91.0,80.0,93.0,131.0,91.0,102.0,98.0,97.0,87.0,99.0,95.0,107.0,59.0,74.0,59.0,75.0,70.0,73.0,65.0,82.0,85.0,64.0,63.0,58.0,36.0,43.0,28.0,28.0,22.0,18.0,14.0,13.0,12.0,12.0,4.0,3.0,2.0,10.0 Y01050,26.0,30.0,39.0,28.0,33.0,35.0,36.0,45.0,33.0,32.0,33.0,46.0,27.0,54.0,37.0,39.0,39.0,51.0,47.0,48.0,26.0,34.0,41.0,42.0,36.0,39.0,44.0,34.0,36.0,46.0,38.0,35.0,51.0,54.0,38.0,47.0,34.0,45.0,36.0,36.0,36.0,32.0,30.0,38.0,48.0,32.0,35.0,36.0,33.0,33.0,29.0,42.0,49.0,52.0,54.0,49.0,61.0,63.0,66.0,57.0,44.0,59.0,58.0,51.0,47.0,42.0,39.0,49.0,43.0,31.0,41.0,24.0,47.0,29.0,51.0,45.0,59.0,40.0,54.0,28.0,29.0,36.0,19.0,22.0,15.0,17.0,13.0,11.0,13.0,5.0,11.0,6.0,5.0,2.0,4.0,4.0 Y01051,16.0,28.0,28.0,28.0,34.0,35.0,26.0,25.0,40.0,32.0,32.0,39.0,34.0,58.0,40.0,40.0,45.0,46.0,40.0,44.0,40.0,33.0,35.0,34.0,29.0,44.0,37.0,42.0,39.0,42.0,39.0,62.0,46.0,70.0,62.0,47.0,48.0,51.0,67.0,50.0,55.0,42.0,57.0,53.0,56.0,71.0,48.0,47.0,47.0,61.0,58.0,57.0,60.0,78.0,64.0,73.0,60.0,63.0,59.0,76.0,88.0,73.0,89.0,74.0,75.0,60.0,76.0,55.0,70.0,60.0,57.0,52.0,70.0,55.0,52.0,63.0,79.0,71.0,44.0,53.0,47.0,39.0,35.0,20.0,24.0,20.0,20.0,15.0,14.0,17.0,10.0,4.0,8.0,3.0,1.0,3.0 Y01127,17.0,18.0,11.0,25.0,22.0,43.0,25.0,32.0,33.0,32.0,38.0,45.0,38.0,40.0,50.0,37.0,32.0,42.0,41.0,38.0,21.0,29.0,23.0,24.0,26.0,20.0,20.0,22.0,29.0,21.0,24.0,23.0,24.0,33.0,41.0,31.0,33.0,35.0,31.0,32.0,38.0,27.0,41.0,39.0,32.0,47.0,31.0,39.0,46.0,43.0,45.0,37.0,32.0,41.0,40.0,36.0,45.0,45.0,32.0,49.0,63.0,52.0,32.0,52.0,66.0,39.0,43.0,41.0,43.0,43.0,52.0,45.0,35.0,41.0,41.0,41.0,33.0,30.0,39.0,37.0,31.0,19.0,19.0,20.0,17.0,18.0,17.0,11.0,13.0,7.0,5.0,5.0,5.0,4.0,1.0,6.0 Y01922,37.0,31.0,38.0,39.0,59.0,42.0,48.0,55.0,42.0,49.0,60.0,52.0,62.0,64.0,61.0,48.0,64.0,48.0,59.0,41.0,44.0,52.0,46.0,53.0,61.0,54.0,55.0,46.0,70.0,51.0,56.0,53.0,67.0,66.0,69.0,86.0,73.0,79.0,66.0,60.0,67.0,63.0,64.0,78.0,73.0,73.0,80.0,50.0,61.0,76.0,52.0,72.0,94.0,97.0,83.0,93.0,80.0,102.0,93.0,88.0,96.0,79.0,81.0,98.0,80.0,77.0,88.0,89.0,90.0,73.0,82.0,68.0,70.0,79.0,83.0,90.0,76.0,89.0,105.0,59.0,69.0,46.0,56.0,42.0,34.0,33.0,25.0,28.0,14.0,14.0,16.0,11.0,6.0,3.0,7.0,13.0 Y02517,58.0,86.0,67.0,76.0,66.0,73.0,98.0,92.0,82.0,87.0,104.0,108.0,93.0,103.0,94.0,97.0,93.0,108.0,100.0,76.0,91.0,60.0,87.0,76.0,85.0,92.0,97.0,112.0,115.0,131.0,129.0,117.0,120.0,137.0,146.0,147.0,169.0,151.0,140.0,151.0,144.0,135.0,144.0,142.0,149.0,148.0,149.0,111.0,124.0,138.0,124.0,127.0,120.0,126.0,141.0,105.0,115.0,124.0,124.0,113.0,107.0,91.0,112.0,96.0,76.0,85.0,90.0,85.0,97.0,74.0,89.0,65.0,88.0,73.0,59.0,81.0,63.0,78.0,69.0,45.0,48.0,41.0,34.0,33.0,25.0,33.0,18.0,22.0,15.0,11.0,13.0,6.0,10.0,2.0,5.0,9.0 Y04957,98.0,151.0,144.0,141.0,155.0,175.0,170.0,174.0,179.0,220.0,190.0,182.0,208.0,207.0,213.0,207.0,198.0,202.0,163.0,184.0,150.0,169.0,145.0,155.0,177.0,172.0,175.0,174.0,194.0,179.0,189.0,184.0,197.0,204.0,209.0,219.0,233.0,259.0,190.0,192.0,200.0,214.0,201.0,201.0,222.0,197.0,174.0,164.0,179.0,176.0,185.0,188.0,250.0,229.0,253.0,216.0,227.0,257.0,225.0,230.0,268.0,240.0,215.0,229.0,211.0,197.0,188.0,197.0,216.0,189.0,160.0,170.0,155.0,175.0,175.0,163.0,157.0,199.0,179.0,149.0,145.0,115.0,113.0,81.0,76.0,71.0,64.0,43.0,40.0,38.0,40.0,26.0,18.0,8.0,13.0,22.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 J82054,34.0,30.0,41.0,43.0,37.0,54.0,54.0,48.0,43.0,64.0,44.0,67.0,70.0,56.0,53.0,50.0,52.0,58.0,49.0,60.0,50.0,37.0,37.0,36.0,46.0,61.0,36.0,37.0,38.0,36.0,37.0,42.0,40.0,32.0,59.0,38.0,52.0,61.0,58.0,65.0,52.0,54.0,58.0,42.0,57.0,65.0,53.0,47.0,57.0,49.0,79.0,77.0,76.0,62.0,87.0,69.0,83.0,70.0,117.0,71.0,70.0,73.0,67.0,57.0,83.0,74.0,68.0,57.0,55.0,55.0,43.0,53.0,42.0,56.0,48.0,44.0,50.0,45.0,61.0,42.0,35.0,50.0,35.0,27.0,17.0,24.0,23.0,22.0,15.0,16.0,12.0,6.0,2.0,8.0,5.0,7.0 K81002,61.0,83.0,90.0,100.0,97.0,92.0,108.0,95.0,95.0,117.0,90.0,112.0,119.0,121.0,87.0,103.0,97.0,77.0,69.0,75.0,54.0,74.0,70.0,70.0,83.0,87.0,105.0,89.0,129.0,125.0,121.0,130.0,138.0,156.0,148.0,151.0,151.0,144.0,147.0,162.0,150.0,144.0,136.0,134.0,122.0,128.0,146.0,130.0,103.0,133.0,96.0,112.0,121.0,108.0,99.0,108.0,107.0,90.0,84.0,84.0,88.0,81.0,68.0,74.0,71.0,61.0,66.0,59.0,53.0,68.0,46.0,68.0,41.0,57.0,43.0,44.0,48.0,41.0,51.0,39.0,32.0,16.0,20.0,18.0,16.0,12.0,16.0,17.0,15.0,11.0,4.0,4.0,5.0,5.0,6.0,7.0 K81003,76.0,99.0,98.0,127.0,123.0,117.0,117.0,114.0,115.0,120.0,104.0,116.0,107.0,128.0,108.0,93.0,116.0,118.0,86.0,72.0,72.0,73.0,51.0,61.0,71.0,66.0,61.0,77.0,75.0,72.0,87.0,105.0,97.0,83.0,92.0,121.0,105.0,127.0,119.0,126.0,135.0,117.0,132.0,124.0,130.0,150.0,116.0,118.0,106.0,123.0,114.0,112.0,121.0,97.0,123.0,96.0,88.0,107.0,98.0,87.0,93.0,83.0,84.0,97.0,66.0,72.0,88.0,73.0,71.0,56.0,64.0,46.0,48.0,57.0,51.0,47.0,45.0,68.0,51.0,42.0,29.0,40.0,24.0,34.0,21.0,23.0,16.0,22.0,18.0,18.0,12.0,11.0,7.0,6.0,4.0,6.0 K81004,54.0,64.0,78.0,71.0,79.0,79.0,80.0,85.0,98.0,102.0,89.0,97.0,108.0,96.0,94.0,104.0,102.0,83.0,83.0,70.0,78.0,64.0,79.0,77.0,78.0,71.0,80.0,76.0,63.0,77.0,74.0,78.0,94.0,94.0,95.0,85.0,101.0,98.0,84.0,96.0,134.0,98.0,100.0,102.0,112.0,106.0,93.0,80.0,100.0,81.0,97.0,86.0,112.0,103.0,104.0,91.0,83.0,99.0,95.0,88.0,97.0,93.0,81.0,80.0,80.0,64.0,89.0,86.0,82.0,62.0,68.0,59.0,64.0,71.0,59.0,64.0,47.0,67.0,64.0,49.0,42.0,47.0,31.0,38.0,29.0,30.0,23.0,23.0,14.0,18.0,16.0,9.0,1.0,5.0,7.0,10.0 K81007,33.0,30.0,23.0,23.0,27.0,27.0,26.0,27.0,29.0,32.0,29.0,20.0,28.0,21.0,19.0,20.0,29.0,28.0,23.0,21.0,24.0,20.0,23.0,18.0,49.0,36.0,40.0,48.0,59.0,70.0,76.0,69.0,64.0,80.0,67.0,83.0,66.0,78.0,76.0,74.0,76.0,81.0,78.0,69.0,71.0,85.0,55.0,64.0,59.0,75.0,50.0,43.0,43.0,38.0,37.0,41.0,47.0,34.0,27.0,21.0,28.0,35.0,27.0,31.0,35.0,23.0,25.0,18.0,20.0,17.0,17.0,18.0,12.0,10.0,10.0,11.0,14.0,12.0,12.0,14.0,8.0,4.0,5.0,1.0,6.0,4.0,4.0,1.0,2.0,1.0,1.0,,,,, K81012,34.0,40.0,49.0,52.0,63.0,66.0,64.0,68.0,73.0,68.0,56.0,70.0,80.0,88.0,81.0,88.0,89.0,62.0,73.0,51.0,61.0,45.0,55.0,55.0,65.0,52.0,67.0,71.0,47.0,60.0,56.0,69.0,60.0,58.0,50.0,79.0,71.0,63.0,67.0,75.0,73.0,80.0,67.0,78.0,81.0,81.0,80.0,81.0,80.0,86.0,96.0,80.0,104.0,95.0,95.0,87.0,86.0,94.0,94.0,76.0,89.0,101.0,89.0,79.0,75.0,75.0,78.0,71.0,76.0,55.0,65.0,61.0,52.0,73.0,53.0,62.0,72.0,68.0,62.0,42.0,54.0,46.0,35.0,36.0,26.0,22.0,27.0,24.0,17.0,12.0,16.0,13.0,4.0,11.0,4.0,8.0 K81014,81.0,90.0,85.0,104.0,108.0,97.0,112.0,105.0,141.0,137.0,136.0,128.0,158.0,157.0,148.0,157.0,136.0,142.0,114.0,83.0,102.0,87.0,105.0,89.0,98.0,91.0,102.0,100.0,126.0,111.0,106.0,111.0,153.0,140.0,126.0,144.0,125.0,161.0,151.0,148.0,149.0,157.0,143.0,167.0,183.0,162.0,205.0,153.0,158.0,183.0,169.0,148.0,151.0,156.0,140.0,135.0,137.0,118.0,134.0,128.0,142.0,115.0,122.0,124.0,123.0,109.0,103.0,92.0,85.0,90.0,92.0,81.0,86.0,88.0,68.0,65.0,62.0,81.0,69.0,49.0,59.0,49.0,54.0,42.0,54.0,31.0,34.0,31.0,32.0,25.0,23.0,16.0,9.0,8.0,4.0,13.0 K81017,45.0,57.0,73.0,49.0,68.0,66.0,69.0,48.0,73.0,78.0,85.0,77.0,98.0,117.0,88.0,101.0,96.0,115.0,92.0,58.0,87.0,81.0,67.0,71.0,85.0,69.0,76.0,81.0,67.0,91.0,78.0,64.0,90.0,93.0,96.0,89.0,94.0,95.0,86.0,87.0,66.0,89.0,87.0,85.0,116.0,90.0,89.0,100.0,107.0,109.0,123.0,99.0,107.0,106.0,119.0,98.0,106.0,102.0,106.0,103.0,107.0,94.0,87.0,115.0,106.0,75.0,88.0,89.0,61.0,69.0,57.0,73.0,64.0,67.0,61.0,59.0,66.0,102.0,87.0,68.0,59.0,60.0,53.0,36.0,35.0,37.0,28.0,45.0,23.0,16.0,13.0,13.0,9.0,7.0,5.0,9.0 K81022,102.0,125.0,124.0,118.0,124.0,131.0,149.0,180.0,175.0,201.0,234.0,239.0,250.0,265.0,302.0,296.0,286.0,323.0,220.0,124.0,144.0,129.0,139.0,122.0,127.0,137.0,141.0,149.0,146.0,164.0,152.0,156.0,166.0,175.0,172.0,187.0,207.0,182.0,171.0,198.0,193.0,184.0,226.0,222.0,243.0,241.0,209.0,217.0,207.0,238.0,235.0,230.0,214.0,213.0,207.0,186.0,199.0,183.0,203.0,163.0,164.0,147.0,167.0,142.0,119.0,141.0,95.0,126.0,105.0,99.0,112.0,103.0,110.0,89.0,95.0,90.0,105.0,133.0,122.0,96.0,97.0,88.0,66.0,65.0,58.0,59.0,58.0,44.0,47.0,27.0,34.0,23.0,22.0,12.0,12.0,21.0 K81025,88.0,100.0,98.0,104.0,104.0,87.0,122.0,115.0,112.0,113.0,133.0,116.0,137.0,139.0,157.0,151.0,147.0,148.0,114.0,96.0,98.0,97.0,91.0,91.0,103.0,104.0,77.0,88.0,91.0,96.0,94.0,118.0,100.0,106.0,98.0,98.0,105.0,97.0,93.0,130.0,126.0,117.0,129.0,112.0,146.0,110.0,128.0,134.0,138.0,112.0,152.0,173.0,132.0,153.0,145.0,130.0,150.0,133.0,153.0,125.0,145.0,135.0,121.0,141.0,136.0,112.0,112.0,100.0,95.0,77.0,85.0,75.0,67.0,84.0,83.0,72.0,95.0,80.0,78.0,64.0,61.0,71.0,42.0,40.0,28.0,26.0,31.0,24.0,29.0,15.0,11.0,12.0,8.0,8.0,1.0,8.0 K81026,31.0,56.0,31.0,41.0,34.0,32.0,30.0,45.0,32.0,48.0,28.0,48.0,41.0,39.0,34.0,52.0,49.0,65.0,36.0,46.0,43.0,44.0,46.0,74.0,70.0,81.0,112.0,77.0,108.0,111.0,123.0,86.0,80.0,100.0,110.0,91.0,100.0,72.0,100.0,90.0,91.0,77.0,75.0,83.0,82.0,57.0,70.0,59.0,38.0,60.0,40.0,56.0,53.0,51.0,57.0,69.0,31.0,48.0,55.0,42.0,39.0,42.0,34.0,44.0,47.0,32.0,35.0,32.0,35.0,22.0,16.0,28.0,19.0,15.0,16.0,12.0,13.0,11.0,19.0,6.0,15.0,10.0,6.0,14.0,5.0,5.0,6.0,5.0,1.0,1.0,4.0,3.0,1.0,,1.0,1.0 K81027,35.0,49.0,45.0,47.0,55.0,55.0,52.0,70.0,69.0,77.0,68.0,83.0,83.0,74.0,59.0,98.0,82.0,110.0,84.0,76.0,66.0,59.0,70.0,66.0,43.0,53.0,49.0,58.0,38.0,47.0,54.0,44.0,47.0,51.0,42.0,44.0,49.0,52.0,43.0,65.0,59.0,51.0,53.0,62.0,71.0,80.0,87.0,58.0,72.0,90.0,80.0,104.0,79.0,74.0,94.0,110.0,85.0,77.0,85.0,84.0,110.0,73.0,95.0,63.0,62.0,65.0,65.0,62.0,76.0,59.0,61.0,54.0,53.0,48.0,46.0,49.0,59.0,66.0,48.0,49.0,44.0,32.0,36.0,25.0,35.0,33.0,20.0,24.0,15.0,20.0,15.0,13.0,6.0,7.0,7.0,7.0 K81040,99.0,84.0,109.0,129.0,93.0,99.0,102.0,101.0,99.0,129.0,136.0,121.0,134.0,110.0,116.0,133.0,142.0,133.0,136.0,127.0,140.0,141.0,140.0,130.0,156.0,129.0,165.0,167.0,179.0,188.0,183.0,202.0,176.0,194.0,199.0,209.0,220.0,201.0,207.0,199.0,179.0,180.0,189.0,190.0,226.0,191.0,181.0,156.0,159.0,154.0,135.0,136.0,132.0,145.0,139.0,145.0,146.0,121.0,149.0,135.0,113.0,119.0,118.0,96.0,97.0,98.0,89.0,69.0,80.0,73.0,63.0,59.0,62.0,48.0,37.0,43.0,47.0,52.0,44.0,37.0,33.0,46.0,32.0,27.0,24.0,29.0,19.0,11.0,16.0,19.0,9.0,4.0,7.0,5.0,3.0,5.0 K81041,36.0,50.0,42.0,60.0,44.0,72.0,44.0,58.0,70.0,72.0,58.0,77.0,93.0,75.0,97.0,83.0,76.0,68.0,83.0,53.0,57.0,53.0,50.0,42.0,59.0,49.0,65.0,58.0,52.0,50.0,66.0,74.0,63.0,69.0,75.0,70.0,83.0,77.0,67.0,57.0,78.0,92.0,99.0,75.0,87.0,99.0,87.0,95.0,87.0,86.0,68.0,93.0,95.0,90.0,85.0,89.0,85.0,79.0,73.0,82.0,77.0,68.0,65.0,62.0,68.0,72.0,65.0,58.0,42.0,57.0,40.0,47.0,48.0,45.0,49.0,47.0,53.0,64.0,69.0,50.0,37.0,45.0,37.0,28.0,24.0,28.0,25.0,22.0,14.0,13.0,11.0,11.0,7.0,6.0,1.0,5.0 K81045,51.0,70.0,80.0,77.0,83.0,105.0,115.0,109.0,123.0,126.0,124.0,112.0,135.0,138.0,146.0,139.0,145.0,117.0,107.0,164.0,110.0,141.0,108.0,126.0,106.0,97.0,132.0,121.0,127.0,111.0,133.0,115.0,100.0,104.0,110.0,117.0,117.0,119.0,113.0,114.0,137.0,110.0,117.0,157.0,136.0,165.0,148.0,136.0,125.0,142.0,123.0,134.0,126.0,113.0,118.0,128.0,117.0,98.0,100.0,115.0,103.0,94.0,97.0,74.0,89.0,81.0,69.0,72.0,55.0,64.0,57.0,54.0,58.0,58.0,47.0,50.0,50.0,46.0,36.0,47.0,38.0,24.0,23.0,39.0,27.0,28.0,18.0,19.0,17.0,20.0,19.0,11.0,12.0,9.0,6.0,6.0 K81047,79.0,106.0,111.0,131.0,142.0,150.0,162.0,193.0,217.0,230.0,197.0,243.0,255.0,245.0,270.0,236.0,224.0,217.0,205.0,157.0,186.0,165.0,145.0,163.0,178.0,178.0,172.0,146.0,170.0,156.0,169.0,158.0,158.0,173.0,154.0,188.0,164.0,194.0,186.0,217.0,222.0,215.0,266.0,277.0,262.0,298.0,272.0,291.0,320.0,275.0,252.0,255.0,258.0,244.0,216.0,239.0,195.0,192.0,208.0,187.0,176.0,194.0,185.0,170.0,188.0,164.0,162.0,178.0,142.0,163.0,140.0,122.0,119.0,117.0,115.0,103.0,118.0,136.0,114.0,73.0,86.0,64.0,56.0,54.0,45.0,53.0,49.0,41.0,30.0,31.0,12.0,21.0,20.0,10.0,8.0,17.0 K81048,53.0,80.0,53.0,42.0,62.0,67.0,49.0,51.0,43.0,70.0,71.0,62.0,63.0,60.0,42.0,58.0,61.0,61.0,54.0,71.0,63.0,51.0,58.0,65.0,71.0,75.0,78.0,92.0,81.0,86.0,81.0,94.0,121.0,97.0,74.0,84.0,87.0,90.0,92.0,78.0,91.0,78.0,82.0,71.0,69.0,73.0,72.0,47.0,63.0,69.0,44.0,45.0,48.0,47.0,56.0,54.0,55.0,43.0,45.0,38.0,51.0,40.0,42.0,48.0,49.0,43.0,30.0,32.0,9.0,32.0,23.0,26.0,25.0,16.0,27.0,19.0,17.0,19.0,16.0,9.0,3.0,9.0,11.0,9.0,5.0,7.0,5.0,4.0,7.0,3.0,3.0,2.0,2.0,2.0,, K81050,35.0,27.0,51.0,39.0,45.0,42.0,44.0,66.0,76.0,61.0,75.0,69.0,95.0,106.0,103.0,97.0,98.0,88.0,76.0,75.0,65.0,59.0,65.0,61.0,61.0,66.0,52.0,42.0,42.0,40.0,51.0,44.0,33.0,33.0,41.0,41.0,58.0,58.0,60.0,53.0,49.0,49.0,62.0,67.0,71.0,70.0,64.0,75.0,72.0,72.0,80.0,74.0,106.0,92.0,108.0,88.0,100.0,82.0,91.0,102.0,63.0,97.0,87.0,87.0,70.0,74.0,60.0,55.0,57.0,58.0,55.0,53.0,49.0,40.0,56.0,33.0,55.0,63.0,52.0,43.0,41.0,31.0,23.0,18.0,18.0,32.0,16.0,16.0,7.0,11.0,11.0,7.0,7.0,4.0,5.0,6.0 K81051,56.0,69.0,68.0,81.0,85.0,76.0,104.0,109.0,110.0,113.0,93.0,112.0,103.0,107.0,84.0,94.0,96.0,98.0,81.0,67.0,64.0,66.0,40.0,74.0,81.0,84.0,79.0,84.0,77.0,76.0,90.0,98.0,73.0,97.0,86.0,90.0,101.0,114.0,104.0,102.0,125.0,121.0,122.0,126.0,122.0,125.0,121.0,85.0,105.0,110.0,99.0,101.0,90.0,92.0,80.0,90.0,84.0,77.0,90.0,75.0,77.0,94.0,86.0,79.0,67.0,59.0,48.0,57.0,54.0,43.0,41.0,38.0,42.0,48.0,32.0,44.0,55.0,40.0,34.0,26.0,29.0,30.0,20.0,29.0,29.0,17.0,14.0,13.0,13.0,7.0,9.0,5.0,5.0,9.0,7.0,4.0 K81052,16.0,23.0,16.0,32.0,19.0,28.0,27.0,23.0,32.0,29.0,18.0,24.0,28.0,33.0,20.0,35.0,32.0,32.0,33.0,40.0,30.0,42.0,30.0,25.0,35.0,40.0,32.0,29.0,41.0,44.0,41.0,40.0,38.0,37.0,43.0,39.0,48.0,40.0,40.0,57.0,41.0,41.0,33.0,44.0,44.0,48.0,30.0,53.0,40.0,41.0,41.0,46.0,46.0,47.0,64.0,53.0,63.0,56.0,51.0,53.0,55.0,57.0,47.0,60.0,43.0,37.0,43.0,45.0,39.0,34.0,37.0,28.0,40.0,35.0,31.0,34.0,33.0,27.0,34.0,38.0,28.0,18.0,23.0,19.0,15.0,18.0,15.0,11.0,7.0,12.0,7.0,3.0,2.0,,1.0,1.0 K81055,19.0,23.0,26.0,35.0,32.0,37.0,39.0,51.0,41.0,48.0,50.0,46.0,40.0,53.0,43.0,41.0,45.0,45.0,41.0,37.0,33.0,26.0,37.0,36.0,44.0,42.0,38.0,28.0,39.0,29.0,32.0,32.0,41.0,37.0,37.0,40.0,30.0,45.0,48.0,46.0,42.0,41.0,34.0,40.0,45.0,59.0,54.0,35.0,48.0,52.0,56.0,63.0,65.0,70.0,63.0,56.0,65.0,44.0,59.0,60.0,65.0,55.0,66.0,65.0,53.0,47.0,43.0,59.0,45.0,38.0,34.0,33.0,43.0,33.0,42.0,38.0,49.0,43.0,41.0,40.0,35.0,35.0,23.0,21.0,21.0,19.0,23.0,19.0,14.0,15.0,11.0,6.0,7.0,4.0,3.0,8.0 K81056,35.0,46.0,30.0,37.0,37.0,39.0,33.0,26.0,36.0,36.0,44.0,32.0,39.0,36.0,20.0,30.0,30.0,28.0,22.0,40.0,35.0,34.0,33.0,35.0,40.0,40.0,43.0,51.0,50.0,47.0,57.0,44.0,46.0,43.0,61.0,56.0,50.0,61.0,49.0,38.0,48.0,42.0,50.0,43.0,40.0,46.0,53.0,40.0,45.0,36.0,34.0,41.0,31.0,35.0,40.0,47.0,47.0,49.0,36.0,28.0,35.0,26.0,36.0,39.0,33.0,35.0,26.0,35.0,11.0,30.0,23.0,25.0,19.0,21.0,25.0,22.0,27.0,29.0,23.0,18.0,18.0,8.0,17.0,14.0,6.0,14.0,6.0,9.0,7.0,5.0,2.0,3.0,4.0,4.0,2.0,3.0 K81057,36.0,35.0,36.0,35.0,34.0,27.0,33.0,45.0,35.0,41.0,31.0,45.0,38.0,44.0,35.0,36.0,33.0,29.0,23.0,37.0,25.0,38.0,36.0,34.0,35.0,28.0,34.0,39.0,32.0,36.0,42.0,39.0,42.0,50.0,41.0,40.0,43.0,47.0,48.0,45.0,37.0,37.0,44.0,39.0,59.0,44.0,46.0,26.0,45.0,38.0,39.0,49.0,52.0,63.0,65.0,63.0,52.0,60.0,58.0,66.0,55.0,52.0,46.0,57.0,58.0,43.0,41.0,55.0,41.0,40.0,38.0,39.0,51.0,35.0,41.0,37.0,39.0,46.0,45.0,33.0,34.0,26.0,20.0,23.0,21.0,10.0,23.0,13.0,10.0,10.0,7.0,7.0,6.0,5.0,3.0,5.0 K81062,115.0,121.0,138.0,159.0,150.0,153.0,141.0,160.0,173.0,184.0,159.0,195.0,174.0,169.0,156.0,186.0,187.0,164.0,165.0,144.0,136.0,124.0,157.0,170.0,175.0,185.0,174.0,223.0,226.0,233.0,234.0,199.0,218.0,262.0,288.0,281.0,274.0,281.0,289.0,294.0,255.0,259.0,273.0,294.0,253.0,268.0,245.0,208.0,206.0,215.0,191.0,179.0,177.0,167.0,197.0,169.0,183.0,163.0,174.0,171.0,150.0,180.0,139.0,129.0,133.0,138.0,146.0,102.0,112.0,105.0,99.0,91.0,76.0,76.0,78.0,57.0,51.0,100.0,76.0,59.0,51.0,70.0,43.0,41.0,24.0,40.0,26.0,16.0,35.0,20.0,14.0,12.0,6.0,10.0,3.0,19.0 K81063,94.0,106.0,117.0,130.0,131.0,130.0,119.0,134.0,149.0,127.0,128.0,141.0,139.0,139.0,125.0,111.0,126.0,117.0,116.0,106.0,97.0,81.0,115.0,88.0,121.0,111.0,112.0,168.0,141.0,148.0,152.0,146.0,180.0,170.0,194.0,164.0,201.0,211.0,183.0,201.0,175.0,179.0,156.0,180.0,170.0,166.0,151.0,140.0,151.0,161.0,136.0,159.0,147.0,158.0,157.0,152.0,143.0,175.0,132.0,132.0,130.0,139.0,135.0,126.0,130.0,128.0,123.0,113.0,110.0,100.0,99.0,92.0,99.0,78.0,75.0,65.0,88.0,77.0,89.0,69.0,82.0,61.0,51.0,38.0,33.0,35.0,34.0,29.0,20.0,17.0,24.0,12.0,13.0,8.0,6.0,16.0 K81069,60.0,39.0,56.0,85.0,67.0,76.0,90.0,86.0,101.0,94.0,94.0,108.0,107.0,83.0,118.0,90.0,102.0,83.0,80.0,66.0,69.0,86.0,79.0,68.0,64.0,77.0,83.0,84.0,79.0,78.0,74.0,73.0,84.0,86.0,85.0,70.0,88.0,100.0,85.0,95.0,104.0,107.0,111.0,126.0,94.0,116.0,117.0,110.0,94.0,112.0,96.0,106.0,92.0,98.0,111.0,92.0,110.0,87.0,99.0,146.0,102.0,92.0,89.0,110.0,98.0,94.0,87.0,75.0,89.0,84.0,66.0,64.0,72.0,59.0,57.0,59.0,54.0,88.0,89.0,55.0,59.0,54.0,44.0,45.0,34.0,29.0,26.0,30.0,28.0,22.0,17.0,9.0,9.0,6.0,12.0,9.0 K81070,33.0,39.0,55.0,51.0,61.0,69.0,58.0,79.0,67.0,85.0,87.0,95.0,92.0,102.0,98.0,110.0,111.0,78.0,83.0,70.0,59.0,63.0,46.0,62.0,61.0,46.0,56.0,52.0,51.0,53.0,52.0,63.0,63.0,68.0,67.0,73.0,66.0,80.0,58.0,75.0,87.0,88.0,91.0,87.0,80.0,110.0,90.0,98.0,106.0,106.0,112.0,109.0,97.0,113.0,95.0,107.0,121.0,80.0,74.0,102.0,89.0,82.0,82.0,74.0,61.0,64.0,61.0,67.0,50.0,55.0,43.0,55.0,44.0,50.0,52.0,52.0,48.0,49.0,54.0,32.0,41.0,40.0,49.0,33.0,21.0,25.0,18.0,22.0,18.0,9.0,2.0,6.0,11.0,8.0,10.0,7.0 K81073,62.0,74.0,86.0,94.0,89.0,93.0,100.0,99.0,114.0,97.0,124.0,128.0,123.0,114.0,135.0,128.0,123.0,139.0,122.0,118.0,91.0,92.0,94.0,86.0,105.0,102.0,85.0,106.0,96.0,111.0,112.0,110.0,122.0,127.0,118.0,152.0,127.0,127.0,116.0,129.0,119.0,153.0,116.0,119.0,135.0,129.0,135.0,113.0,137.0,114.0,130.0,127.0,123.0,123.0,145.0,143.0,155.0,152.0,118.0,136.0,129.0,123.0,137.0,95.0,104.0,102.0,98.0,93.0,92.0,92.0,78.0,77.0,92.0,86.0,86.0,74.0,93.0,79.0,82.0,66.0,67.0,51.0,51.0,34.0,42.0,33.0,38.0,16.0,24.0,16.0,14.0,7.0,9.0,5.0,1.0,9.0 K81077,48.0,61.0,57.0,43.0,49.0,65.0,58.0,64.0,84.0,79.0,68.0,65.0,64.0,69.0,71.0,59.0,93.0,69.0,60.0,60.0,41.0,63.0,57.0,66.0,53.0,67.0,48.0,59.0,84.0,72.0,78.0,70.0,69.0,73.0,81.0,82.0,60.0,70.0,82.0,80.0,73.0,77.0,77.0,80.0,90.0,71.0,74.0,71.0,69.0,77.0,70.0,77.0,76.0,77.0,79.0,77.0,89.0,77.0,88.0,77.0,76.0,68.0,62.0,70.0,53.0,74.0,80.0,52.0,57.0,56.0,55.0,50.0,46.0,49.0,39.0,53.0,34.0,47.0,53.0,39.0,24.0,32.0,21.0,14.0,13.0,12.0,17.0,14.0,14.0,5.0,8.0,6.0,2.0,4.0,2.0,12.0 K81078,61.0,59.0,70.0,67.0,68.0,71.0,80.0,92.0,106.0,91.0,103.0,95.0,94.0,105.0,94.0,88.0,108.0,98.0,89.0,77.0,75.0,57.0,86.0,82.0,69.0,81.0,80.0,81.0,108.0,102.0,98.0,103.0,95.0,84.0,121.0,114.0,106.0,107.0,120.0,122.0,103.0,122.0,116.0,120.0,116.0,118.0,138.0,97.0,106.0,90.0,111.0,87.0,96.0,104.0,97.0,95.0,84.0,88.0,101.0,83.0,88.0,91.0,93.0,78.0,63.0,68.0,56.0,68.0,60.0,42.0,43.0,42.0,44.0,42.0,34.0,38.0,35.0,37.0,33.0,24.0,34.0,33.0,24.0,37.0,21.0,17.0,17.0,15.0,26.0,18.0,2.0,10.0,8.0,3.0,3.0,11.0 K81080,41.0,49.0,43.0,45.0,50.0,47.0,66.0,57.0,61.0,66.0,90.0,69.0,57.0,81.0,61.0,58.0,68.0,63.0,59.0,48.0,50.0,46.0,35.0,49.0,51.0,50.0,43.0,46.0,35.0,41.0,44.0,38.0,46.0,46.0,52.0,59.0,36.0,56.0,55.0,59.0,68.0,64.0,75.0,73.0,77.0,73.0,62.0,85.0,88.0,57.0,70.0,64.0,70.0,83.0,79.0,80.0,71.0,77.0,83.0,67.0,70.0,70.0,62.0,77.0,59.0,51.0,38.0,52.0,41.0,43.0,48.0,55.0,35.0,49.0,36.0,28.0,47.0,45.0,46.0,34.0,49.0,46.0,28.0,30.0,26.0,18.0,21.0,16.0,12.0,11.0,8.0,3.0,10.0,5.0,5.0,7.0 K81081,7.0,9.0,10.0,10.0,10.0,8.0,10.0,11.0,17.0,12.0,10.0,17.0,15.0,13.0,11.0,18.0,13.0,9.0,4.0,13.0,7.0,10.0,15.0,10.0,12.0,21.0,20.0,19.0,22.0,25.0,31.0,24.0,32.0,28.0,23.0,26.0,28.0,35.0,30.0,43.0,38.0,36.0,43.0,26.0,28.0,23.0,22.0,35.0,22.0,27.0,30.0,24.0,29.0,16.0,17.0,10.0,16.0,16.0,12.0,10.0,14.0,20.0,6.0,14.0,11.0,10.0,11.0,8.0,9.0,4.0,7.0,6.0,6.0,8.0,5.0,7.0,5.0,3.0,3.0,3.0,5.0,1.0,2.0,2.0,2.0,2.0,,1.0,,,1.0,,,,, K81092,66.0,79.0,74.0,69.0,92.0,73.0,96.0,104.0,97.0,113.0,116.0,96.0,119.0,122.0,124.0,127.0,110.0,117.0,91.0,78.0,58.0,64.0,70.0,51.0,80.0,58.0,61.0,66.0,65.0,82.0,61.0,66.0,82.0,80.0,84.0,83.0,94.0,82.0,94.0,97.0,110.0,99.0,115.0,132.0,135.0,157.0,154.0,127.0,143.0,117.0,114.0,126.0,140.0,106.0,121.0,115.0,86.0,88.0,84.0,82.0,95.0,81.0,75.0,78.0,84.0,59.0,79.0,76.0,76.0,67.0,58.0,61.0,55.0,63.0,49.0,60.0,51.0,53.0,67.0,29.0,27.0,32.0,33.0,36.0,17.0,12.0,18.0,15.0,13.0,8.0,11.0,9.0,6.0,2.0,1.0,7.0 K81100,42.0,34.0,28.0,40.0,31.0,35.0,29.0,37.0,31.0,39.0,35.0,31.0,58.0,30.0,34.0,26.0,39.0,29.0,36.0,29.0,34.0,42.0,44.0,43.0,50.0,68.0,91.0,69.0,91.0,81.0,92.0,67.0,75.0,78.0,93.0,80.0,84.0,66.0,86.0,69.0,73.0,76.0,67.0,71.0,52.0,60.0,48.0,65.0,58.0,57.0,52.0,56.0,42.0,40.0,44.0,54.0,28.0,41.0,25.0,39.0,35.0,34.0,35.0,33.0,24.0,27.0,28.0,27.0,23.0,18.0,22.0,13.0,18.0,17.0,11.0,7.0,9.0,8.0,6.0,5.0,6.0,10.0,4.0,6.0,1.0,2.0,,4.0,1.0,1.0,1.0,,1.0,2.0,,2.0 K81102,42.0,52.0,50.0,57.0,59.0,65.0,45.0,55.0,48.0,59.0,64.0,64.0,68.0,52.0,57.0,71.0,62.0,72.0,63.0,57.0,47.0,43.0,49.0,61.0,45.0,59.0,44.0,47.0,64.0,38.0,71.0,56.0,62.0,78.0,87.0,62.0,75.0,69.0,71.0,63.0,69.0,60.0,71.0,79.0,53.0,57.0,55.0,75.0,61.0,62.0,59.0,76.0,65.0,80.0,63.0,70.0,76.0,82.0,70.0,82.0,70.0,74.0,76.0,66.0,74.0,69.0,66.0,47.0,46.0,42.0,38.0,41.0,33.0,31.0,36.0,35.0,32.0,28.0,41.0,22.0,23.0,20.0,16.0,19.0,12.0,7.0,12.0,4.0,5.0,5.0,1.0,3.0,,2.0,2.0,4.0 K81103,14.0,25.0,38.0,29.0,39.0,51.0,41.0,56.0,49.0,51.0,53.0,46.0,62.0,91.0,100.0,127.0,118.0,140.0,112.0,61.0,39.0,47.0,44.0,36.0,50.0,42.0,38.0,46.0,27.0,29.0,30.0,38.0,45.0,44.0,42.0,42.0,22.0,44.0,47.0,40.0,30.0,54.0,56.0,41.0,52.0,58.0,61.0,53.0,52.0,51.0,55.0,57.0,53.0,52.0,61.0,67.0,76.0,68.0,70.0,55.0,58.0,66.0,68.0,66.0,49.0,52.0,54.0,60.0,47.0,52.0,50.0,50.0,43.0,54.0,38.0,35.0,48.0,48.0,61.0,25.0,32.0,26.0,27.0,17.0,26.0,13.0,19.0,16.0,12.0,8.0,6.0,8.0,6.0,,2.0,5.0 K81605,140.0,130.0,169.0,150.0,159.0,154.0,170.0,157.0,168.0,158.0,158.0,173.0,147.0,149.0,174.0,154.0,150.0,138.0,254.0,433.0,535.0,517.0,443.0,466.0,462.0,491.0,477.0,472.0,476.0,476.0,434.0,426.0,392.0,327.0,347.0,396.0,399.0,383.0,346.0,354.0,336.0,345.0,308.0,303.0,335.0,304.0,206.0,181.0,188.0,164.0,166.0,151.0,150.0,131.0,125.0,107.0,116.0,99.0,89.0,109.0,79.0,91.0,94.0,78.0,68.0,61.0,74.0,68.0,61.0,52.0,40.0,37.0,56.0,48.0,43.0,35.0,42.0,45.0,35.0,36.0,37.0,36.0,17.0,13.0,16.0,17.0,8.0,8.0,12.0,9.0,7.0,6.0,4.0,1.0,1.0,9.0 K81633,59.0,86.0,62.0,81.0,80.0,82.0,69.0,85.0,81.0,92.0,72.0,80.0,116.0,91.0,84.0,84.0,95.0,90.0,84.0,72.0,77.0,60.0,60.0,59.0,62.0,74.0,80.0,86.0,86.0,79.0,77.0,95.0,112.0,105.0,77.0,103.0,111.0,129.0,117.0,122.0,107.0,102.0,105.0,117.0,103.0,109.0,70.0,92.0,90.0,93.0,95.0,85.0,78.0,69.0,71.0,56.0,56.0,59.0,68.0,40.0,56.0,55.0,51.0,53.0,38.0,38.0,32.0,27.0,34.0,24.0,25.0,24.0,26.0,19.0,13.0,21.0,20.0,26.0,14.0,10.0,15.0,7.0,10.0,9.0,9.0,11.0,6.0,3.0,10.0,6.0,10.0,5.0,6.0,2.0,2.0,7.0 K81636,47.0,57.0,50.0,54.0,58.0,71.0,62.0,71.0,59.0,75.0,67.0,67.0,67.0,66.0,57.0,67.0,56.0,59.0,60.0,57.0,43.0,35.0,47.0,42.0,55.0,55.0,43.0,56.0,65.0,59.0,65.0,78.0,74.0,82.0,91.0,97.0,94.0,109.0,101.0,96.0,96.0,118.0,105.0,99.0,104.0,104.0,107.0,93.0,103.0,81.0,83.0,76.0,78.0,70.0,71.0,53.0,60.0,61.0,51.0,48.0,50.0,52.0,37.0,38.0,37.0,36.0,29.0,24.0,30.0,25.0,19.0,18.0,21.0,19.0,15.0,11.0,15.0,17.0,20.0,9.0,13.0,11.0,6.0,7.0,5.0,5.0,5.0,5.0,1.0,1.0,3.0,,2.0,,,2.0 K81644,50.0,68.0,71.0,77.0,57.0,65.0,84.0,81.0,68.0,100.0,100.0,85.0,108.0,108.0,99.0,118.0,102.0,102.0,145.0,205.0,253.0,218.0,172.0,145.0,151.0,171.0,140.0,133.0,112.0,111.0,100.0,98.0,104.0,96.0,107.0,113.0,101.0,114.0,95.0,92.0,125.0,102.0,99.0,100.0,99.0,113.0,90.0,111.0,89.0,112.0,111.0,89.0,89.0,102.0,99.0,90.0,97.0,97.0,103.0,98.0,114.0,77.0,86.0,83.0,78.0,70.0,81.0,80.0,74.0,56.0,42.0,44.0,51.0,27.0,46.0,41.0,42.0,39.0,36.0,28.0,39.0,27.0,19.0,23.0,14.0,18.0,23.0,9.0,9.0,11.0,9.0,9.0,4.0,2.0,4.0,3.0 K81651,86.0,91.0,99.0,82.0,82.0,96.0,93.0,77.0,81.0,91.0,91.0,84.0,96.0,102.0,91.0,92.0,86.0,103.0,96.0,94.0,101.0,87.0,75.0,107.0,98.0,123.0,120.0,151.0,112.0,146.0,143.0,207.0,186.0,202.0,217.0,227.0,206.0,217.0,212.0,203.0,209.0,171.0,178.0,171.0,177.0,172.0,154.0,126.0,139.0,122.0,116.0,119.0,126.0,116.0,82.0,88.0,99.0,91.0,84.0,68.0,95.0,71.0,58.0,66.0,64.0,58.0,46.0,46.0,49.0,46.0,46.0,33.0,28.0,25.0,35.0,28.0,31.0,21.0,25.0,24.0,24.0,17.0,25.0,11.0,14.0,10.0,12.0,7.0,12.0,7.0,5.0,3.0,4.0,,,7.0 K82001,33.0,28.0,30.0,35.0,54.0,60.0,60.0,61.0,55.0,63.0,60.0,76.0,70.0,77.0,78.0,65.0,61.0,70.0,67.0,51.0,47.0,51.0,52.0,58.0,55.0,49.0,51.0,40.0,41.0,46.0,52.0,41.0,46.0,56.0,57.0,54.0,48.0,49.0,47.0,44.0,62.0,53.0,57.0,66.0,80.0,67.0,70.0,75.0,65.0,64.0,75.0,83.0,86.0,84.0,87.0,77.0,75.0,87.0,64.0,78.0,77.0,86.0,67.0,60.0,66.0,63.0,63.0,61.0,58.0,54.0,58.0,36.0,56.0,36.0,45.0,48.0,55.0,62.0,62.0,44.0,50.0,32.0,49.0,33.0,23.0,30.0,34.0,24.0,19.0,23.0,8.0,8.0,16.0,9.0,6.0,2.0 K82004,51.0,43.0,65.0,58.0,66.0,61.0,93.0,69.0,128.0,114.0,131.0,147.0,141.0,132.0,139.0,113.0,112.0,130.0,99.0,75.0,75.0,77.0,55.0,60.0,49.0,54.0,58.0,76.0,77.0,56.0,65.0,59.0,63.0,70.0,68.0,70.0,76.0,82.0,87.0,87.0,105.0,122.0,123.0,112.0,146.0,135.0,149.0,144.0,130.0,108.0,120.0,110.0,120.0,105.0,107.0,90.0,91.0,71.0,84.0,80.0,70.0,88.0,73.0,75.0,75.0,67.0,69.0,59.0,73.0,56.0,58.0,46.0,48.0,55.0,46.0,45.0,43.0,48.0,55.0,50.0,39.0,43.0,38.0,27.0,25.0,22.0,24.0,32.0,17.0,12.0,10.0,15.0,10.0,8.0,4.0,7.0 K82006,54.0,54.0,44.0,48.0,51.0,34.0,55.0,49.0,51.0,61.0,48.0,54.0,68.0,57.0,53.0,61.0,69.0,59.0,51.0,51.0,45.0,42.0,43.0,48.0,50.0,55.0,50.0,59.0,46.0,51.0,77.0,74.0,69.0,74.0,68.0,73.0,72.0,77.0,76.0,76.0,74.0,74.0,66.0,66.0,68.0,66.0,59.0,57.0,51.0,58.0,61.0,42.0,56.0,62.0,68.0,69.0,87.0,78.0,63.0,65.0,75.0,54.0,52.0,77.0,59.0,60.0,58.0,48.0,50.0,39.0,52.0,43.0,54.0,48.0,41.0,37.0,38.0,37.0,38.0,26.0,22.0,19.0,23.0,15.0,22.0,10.0,15.0,14.0,11.0,9.0,12.0,7.0,4.0,3.0,3.0,5.0 K82007,102.0,119.0,126.0,145.0,153.0,177.0,193.0,195.0,183.0,194.0,210.0,218.0,202.0,240.0,225.0,202.0,214.0,204.0,215.0,219.0,200.0,201.0,189.0,180.0,188.0,200.0,184.0,192.0,184.0,188.0,196.0,172.0,179.0,194.0,203.0,187.0,218.0,218.0,225.0,190.0,187.0,199.0,186.0,206.0,204.0,207.0,229.0,198.0,194.0,211.0,212.0,187.0,198.0,201.0,216.0,197.0,231.0,206.0,236.0,207.0,200.0,209.0,204.0,200.0,203.0,185.0,165.0,173.0,170.0,155.0,148.0,167.0,124.0,137.0,118.0,121.0,143.0,144.0,129.0,95.0,83.0,86.0,74.0,64.0,51.0,52.0,50.0,38.0,43.0,31.0,31.0,21.0,15.0,13.0,6.0,12.0 K82008,38.0,39.0,39.0,58.0,38.0,56.0,66.0,82.0,72.0,64.0,56.0,63.0,54.0,77.0,56.0,72.0,73.0,66.0,63.0,41.0,46.0,52.0,60.0,52.0,48.0,52.0,58.0,55.0,52.0,49.0,63.0,38.0,41.0,58.0,57.0,58.0,51.0,62.0,62.0,47.0,63.0,67.0,59.0,60.0,68.0,84.0,77.0,61.0,85.0,65.0,66.0,79.0,68.0,74.0,59.0,69.0,61.0,73.0,83.0,71.0,92.0,59.0,74.0,85.0,75.0,55.0,55.0,62.0,56.0,54.0,61.0,40.0,34.0,48.0,35.0,50.0,51.0,47.0,45.0,41.0,39.0,27.0,39.0,22.0,27.0,23.0,24.0,27.0,20.0,11.0,14.0,15.0,8.0,8.0,13.0,16.0 K82010,50.0,50.0,49.0,59.0,60.0,66.0,67.0,72.0,69.0,72.0,72.0,82.0,71.0,77.0,77.0,85.0,86.0,71.0,70.0,60.0,65.0,57.0,47.0,63.0,60.0,58.0,60.0,50.0,65.0,57.0,69.0,72.0,58.0,54.0,79.0,85.0,79.0,89.0,97.0,72.0,88.0,85.0,86.0,82.0,89.0,88.0,93.0,68.0,94.0,81.0,88.0,85.0,64.0,65.0,65.0,71.0,68.0,64.0,81.0,63.0,70.0,61.0,55.0,51.0,46.0,53.0,39.0,31.0,29.0,28.0,32.0,24.0,29.0,27.0,29.0,22.0,31.0,36.0,31.0,22.0,23.0,24.0,17.0,15.0,13.0,12.0,5.0,8.0,9.0,9.0,9.0,2.0,7.0,6.0,2.0,4.0 K82011,63.0,60.0,58.0,46.0,61.0,54.0,50.0,62.0,54.0,62.0,57.0,58.0,59.0,53.0,59.0,53.0,68.0,69.0,64.0,46.0,39.0,41.0,53.0,55.0,54.0,46.0,44.0,45.0,38.0,44.0,55.0,54.0,59.0,63.0,53.0,70.0,71.0,73.0,67.0,62.0,67.0,67.0,70.0,70.0,80.0,77.0,66.0,72.0,64.0,68.0,71.0,66.0,67.0,86.0,88.0,75.0,73.0,82.0,59.0,54.0,74.0,65.0,60.0,55.0,47.0,48.0,43.0,39.0,53.0,39.0,36.0,31.0,40.0,27.0,30.0,36.0,30.0,39.0,36.0,31.0,23.0,27.0,21.0,17.0,20.0,13.0,24.0,13.0,22.0,11.0,6.0,7.0,3.0,6.0,3.0,7.0 K82012,23.0,22.0,36.0,33.0,32.0,32.0,31.0,40.0,45.0,54.0,42.0,46.0,56.0,52.0,53.0,41.0,53.0,32.0,37.0,51.0,33.0,46.0,30.0,22.0,33.0,37.0,38.0,26.0,37.0,25.0,36.0,35.0,30.0,36.0,30.0,27.0,27.0,33.0,35.0,29.0,29.0,33.0,43.0,52.0,43.0,59.0,51.0,52.0,41.0,48.0,39.0,42.0,39.0,53.0,36.0,37.0,35.0,50.0,45.0,46.0,46.0,50.0,50.0,51.0,51.0,33.0,47.0,44.0,44.0,37.0,39.0,47.0,28.0,36.0,32.0,43.0,38.0,45.0,35.0,37.0,35.0,25.0,27.0,30.0,14.0,14.0,16.0,17.0,16.0,11.0,9.0,7.0,2.0,2.0,4.0,5.0 K82014,22.0,26.0,31.0,22.0,29.0,29.0,40.0,41.0,44.0,38.0,39.0,36.0,34.0,34.0,29.0,50.0,47.0,46.0,34.0,25.0,31.0,31.0,26.0,31.0,31.0,28.0,34.0,35.0,36.0,33.0,26.0,43.0,44.0,48.0,42.0,34.0,39.0,36.0,39.0,47.0,44.0,34.0,47.0,46.0,46.0,47.0,40.0,42.0,33.0,34.0,43.0,41.0,45.0,45.0,38.0,47.0,48.0,39.0,46.0,44.0,61.0,59.0,55.0,46.0,28.0,35.0,29.0,29.0,25.0,23.0,20.0,19.0,26.0,21.0,16.0,21.0,24.0,22.0,26.0,19.0,12.0,14.0,13.0,6.0,10.0,10.0,12.0,5.0,12.0,7.0,4.0,8.0,5.0,4.0,1.0,3.0 K82017,76.0,71.0,76.0,77.0,85.0,76.0,84.0,99.0,108.0,106.0,111.0,87.0,110.0,102.0,84.0,99.0,98.0,90.0,93.0,86.0,82.0,71.0,89.0,98.0,86.0,89.0,92.0,101.0,105.0,95.0,106.0,100.0,102.0,110.0,117.0,122.0,125.0,112.0,95.0,123.0,107.0,117.0,110.0,125.0,128.0,110.0,104.0,112.0,106.0,101.0,88.0,92.0,100.0,78.0,99.0,86.0,84.0,72.0,88.0,85.0,90.0,79.0,63.0,71.0,62.0,67.0,58.0,46.0,44.0,44.0,60.0,44.0,49.0,42.0,33.0,35.0,40.0,47.0,49.0,39.0,39.0,30.0,35.0,15.0,24.0,20.0,28.0,27.0,20.0,7.0,10.0,9.0,6.0,1.0,3.0,6.0 K82019,79.0,109.0,93.0,108.0,116.0,112.0,111.0,103.0,119.0,115.0,129.0,111.0,141.0,116.0,129.0,109.0,118.0,100.0,105.0,87.0,112.0,96.0,91.0,87.0,109.0,98.0,92.0,106.0,126.0,121.0,136.0,121.0,146.0,169.0,143.0,134.0,170.0,138.0,152.0,153.0,134.0,152.0,145.0,104.0,138.0,138.0,124.0,141.0,106.0,131.0,103.0,98.0,109.0,100.0,111.0,102.0,109.0,96.0,111.0,104.0,97.0,86.0,93.0,82.0,81.0,77.0,72.0,70.0,49.0,41.0,32.0,53.0,40.0,43.0,32.0,37.0,34.0,40.0,33.0,26.0,22.0,10.0,18.0,19.0,11.0,8.0,8.0,3.0,10.0,5.0,6.0,1.0,3.0,4.0,4.0,4.0 K82020,23.0,26.0,19.0,34.0,28.0,24.0,34.0,32.0,28.0,27.0,22.0,34.0,33.0,38.0,32.0,39.0,34.0,45.0,36.0,37.0,40.0,61.0,49.0,54.0,66.0,70.0,63.0,52.0,64.0,50.0,49.0,61.0,49.0,61.0,36.0,56.0,46.0,51.0,46.0,41.0,35.0,49.0,28.0,38.0,50.0,38.0,35.0,45.0,31.0,42.0,34.0,39.0,35.0,49.0,32.0,54.0,33.0,49.0,38.0,42.0,44.0,49.0,51.0,43.0,36.0,32.0,47.0,31.0,23.0,18.0,27.0,27.0,26.0,23.0,14.0,17.0,21.0,23.0,16.0,20.0,16.0,13.0,12.0,9.0,9.0,10.0,5.0,9.0,10.0,5.0,7.0,2.0,3.0,4.0,,9.0 K82021,67.0,56.0,66.0,72.0,67.0,69.0,81.0,82.0,82.0,82.0,58.0,73.0,87.0,98.0,103.0,73.0,90.0,79.0,78.0,67.0,60.0,83.0,53.0,65.0,61.0,60.0,63.0,74.0,58.0,57.0,73.0,62.0,87.0,85.0,91.0,66.0,94.0,90.0,82.0,83.0,90.0,77.0,85.0,79.0,82.0,84.0,86.0,82.0,89.0,75.0,103.0,92.0,103.0,107.0,95.0,110.0,116.0,121.0,112.0,116.0,109.0,125.0,120.0,98.0,104.0,93.0,102.0,104.0,82.0,90.0,90.0,81.0,94.0,86.0,83.0,82.0,84.0,89.0,102.0,74.0,89.0,79.0,48.0,41.0,43.0,42.0,45.0,30.0,23.0,21.0,18.0,18.0,16.0,11.0,6.0,17.0 K82022,59.0,78.0,55.0,65.0,70.0,67.0,61.0,74.0,70.0,85.0,87.0,83.0,92.0,90.0,87.0,88.0,82.0,75.0,67.0,79.0,57.0,52.0,60.0,55.0,50.0,62.0,45.0,70.0,82.0,75.0,73.0,71.0,48.0,88.0,80.0,95.0,87.0,76.0,94.0,80.0,91.0,93.0,90.0,78.0,96.0,81.0,76.0,62.0,85.0,81.0,59.0,76.0,80.0,65.0,60.0,74.0,60.0,51.0,57.0,88.0,49.0,58.0,50.0,48.0,45.0,54.0,28.0,38.0,39.0,33.0,37.0,23.0,37.0,39.0,26.0,29.0,17.0,23.0,21.0,11.0,18.0,17.0,15.0,20.0,17.0,10.0,8.0,5.0,8.0,6.0,3.0,3.0,3.0,1.0,1.0,4.0 K82023,105.0,83.0,114.0,98.0,123.0,125.0,122.0,169.0,156.0,146.0,172.0,171.0,188.0,183.0,200.0,218.0,209.0,190.0,162.0,146.0,150.0,138.0,116.0,122.0,121.0,112.0,131.0,131.0,94.0,127.0,98.0,105.0,123.0,132.0,126.0,126.0,134.0,138.0,148.0,146.0,156.0,116.0,157.0,172.0,166.0,160.0,159.0,210.0,173.0,219.0,231.0,174.0,209.0,208.0,226.0,193.0,211.0,210.0,194.0,206.0,216.0,199.0,189.0,194.0,178.0,164.0,143.0,150.0,157.0,156.0,127.0,133.0,128.0,121.0,126.0,129.0,119.0,150.0,157.0,104.0,124.0,89.0,102.0,77.0,59.0,72.0,60.0,58.0,47.0,34.0,39.0,28.0,25.0,22.0,13.0,23.0 K82024,53.0,56.0,57.0,58.0,69.0,53.0,71.0,93.0,67.0,63.0,77.0,70.0,67.0,83.0,65.0,71.0,65.0,67.0,59.0,55.0,45.0,60.0,43.0,54.0,48.0,59.0,55.0,61.0,75.0,68.0,75.0,73.0,76.0,61.0,77.0,74.0,67.0,77.0,75.0,81.0,82.0,93.0,81.0,79.0,85.0,85.0,72.0,80.0,68.0,78.0,70.0,70.0,87.0,89.0,73.0,56.0,75.0,72.0,78.0,67.0,72.0,72.0,75.0,80.0,52.0,58.0,62.0,62.0,48.0,50.0,40.0,58.0,50.0,42.0,36.0,56.0,40.0,47.0,54.0,29.0,36.0,34.0,30.0,31.0,14.0,20.0,22.0,19.0,13.0,10.0,12.0,7.0,4.0,7.0,3.0,12.0 K82028,53.0,73.0,54.0,70.0,64.0,62.0,62.0,67.0,69.0,68.0,65.0,65.0,58.0,68.0,57.0,63.0,58.0,63.0,45.0,35.0,28.0,43.0,29.0,37.0,41.0,31.0,25.0,40.0,45.0,34.0,36.0,56.0,44.0,49.0,61.0,77.0,66.0,70.0,52.0,79.0,80.0,61.0,81.0,44.0,59.0,76.0,66.0,59.0,70.0,79.0,44.0,50.0,60.0,67.0,88.0,58.0,75.0,61.0,63.0,47.0,70.0,55.0,56.0,68.0,57.0,61.0,53.0,52.0,45.0,57.0,37.0,56.0,41.0,38.0,49.0,49.0,45.0,55.0,62.0,31.0,50.0,33.0,25.0,34.0,27.0,26.0,21.0,22.0,26.0,10.0,13.0,6.0,5.0,5.0,2.0,11.0 K82029,56.0,68.0,61.0,75.0,71.0,73.0,79.0,91.0,77.0,59.0,77.0,65.0,61.0,74.0,82.0,50.0,77.0,68.0,58.0,53.0,52.0,48.0,36.0,57.0,50.0,65.0,55.0,40.0,49.0,68.0,52.0,74.0,66.0,71.0,72.0,69.0,97.0,84.0,102.0,88.0,85.0,97.0,88.0,109.0,83.0,101.0,82.0,82.0,82.0,80.0,81.0,78.0,75.0,73.0,77.0,82.0,74.0,73.0,68.0,72.0,76.0,75.0,67.0,61.0,62.0,59.0,50.0,53.0,47.0,50.0,40.0,51.0,43.0,43.0,39.0,44.0,49.0,51.0,33.0,40.0,23.0,28.0,21.0,20.0,21.0,22.0,18.0,23.0,17.0,5.0,10.0,8.0,7.0,7.0,4.0,6.0 K82030,66.0,55.0,45.0,50.0,47.0,63.0,53.0,75.0,53.0,60.0,48.0,72.0,74.0,70.0,61.0,67.0,57.0,64.0,64.0,62.0,75.0,80.0,68.0,68.0,65.0,71.0,103.0,89.0,103.0,105.0,94.0,126.0,79.0,97.0,102.0,125.0,97.0,102.0,98.0,100.0,101.0,103.0,92.0,97.0,96.0,81.0,87.0,88.0,92.0,73.0,84.0,70.0,82.0,71.0,67.0,77.0,59.0,71.0,53.0,60.0,59.0,58.0,64.0,43.0,47.0,57.0,44.0,35.0,44.0,39.0,32.0,31.0,38.0,32.0,15.0,25.0,29.0,23.0,35.0,17.0,22.0,17.0,15.0,16.0,15.0,17.0,5.0,9.0,7.0,12.0,11.0,11.0,10.0,10.0,6.0,14.0 K82031,26.0,26.0,37.0,31.0,26.0,39.0,37.0,43.0,39.0,46.0,48.0,43.0,57.0,58.0,32.0,30.0,41.0,41.0,52.0,43.0,36.0,23.0,30.0,27.0,37.0,31.0,39.0,38.0,28.0,23.0,30.0,28.0,32.0,28.0,19.0,32.0,29.0,22.0,34.0,30.0,45.0,29.0,46.0,42.0,50.0,33.0,40.0,37.0,36.0,30.0,48.0,39.0,30.0,58.0,48.0,36.0,44.0,54.0,37.0,55.0,50.0,45.0,45.0,45.0,45.0,39.0,35.0,24.0,41.0,18.0,22.0,33.0,29.0,37.0,20.0,22.0,20.0,35.0,20.0,16.0,20.0,25.0,16.0,15.0,15.0,11.0,13.0,11.0,11.0,8.0,5.0,6.0,8.0,5.0,3.0,6.0 K82033,86.0,86.0,108.0,102.0,80.0,96.0,116.0,101.0,127.0,122.0,116.0,134.0,113.0,136.0,129.0,130.0,127.0,124.0,122.0,113.0,83.0,86.0,95.0,92.0,97.0,110.0,88.0,82.0,98.0,105.0,112.0,89.0,91.0,116.0,104.0,123.0,125.0,122.0,119.0,109.0,146.0,137.0,136.0,135.0,164.0,149.0,148.0,132.0,115.0,131.0,123.0,144.0,146.0,142.0,118.0,131.0,148.0,131.0,140.0,122.0,138.0,127.0,132.0,123.0,126.0,96.0,123.0,110.0,88.0,75.0,82.0,77.0,69.0,73.0,77.0,66.0,86.0,70.0,59.0,49.0,56.0,65.0,54.0,39.0,31.0,36.0,27.0,19.0,23.0,27.0,18.0,14.0,9.0,5.0,5.0,13.0 K82035,12.0,19.0,12.0,31.0,13.0,16.0,20.0,20.0,22.0,32.0,16.0,32.0,31.0,29.0,27.0,31.0,34.0,24.0,18.0,21.0,18.0,13.0,11.0,12.0,14.0,24.0,18.0,12.0,14.0,15.0,17.0,22.0,23.0,11.0,24.0,17.0,24.0,22.0,18.0,15.0,18.0,22.0,17.0,20.0,17.0,25.0,21.0,36.0,24.0,31.0,24.0,25.0,25.0,41.0,29.0,30.0,26.0,24.0,27.0,25.0,22.0,21.0,23.0,23.0,28.0,16.0,23.0,25.0,21.0,13.0,18.0,16.0,19.0,20.0,12.0,15.0,22.0,18.0,20.0,14.0,12.0,17.0,14.0,6.0,12.0,11.0,4.0,3.0,6.0,3.0,1.0,1.0,2.0,2.0,,2.0 K82036,78.0,79.0,66.0,56.0,58.0,45.0,64.0,77.0,70.0,75.0,74.0,77.0,76.0,65.0,89.0,74.0,79.0,63.0,64.0,68.0,65.0,68.0,65.0,74.0,68.0,83.0,93.0,81.0,73.0,91.0,82.0,93.0,115.0,99.0,95.0,88.0,102.0,104.0,85.0,78.0,95.0,85.0,84.0,94.0,96.0,83.0,81.0,70.0,82.0,46.0,65.0,57.0,62.0,77.0,76.0,62.0,65.0,67.0,60.0,56.0,68.0,47.0,48.0,50.0,59.0,58.0,61.0,48.0,46.0,33.0,42.0,40.0,43.0,31.0,42.0,31.0,29.0,34.0,27.0,22.0,20.0,15.0,23.0,19.0,20.0,16.0,19.0,11.0,10.0,11.0,7.0,4.0,1.0,10.0,,4.0 K82037,62.0,79.0,73.0,81.0,85.0,58.0,68.0,56.0,84.0,71.0,69.0,71.0,94.0,79.0,98.0,89.0,77.0,87.0,72.0,68.0,67.0,70.0,52.0,65.0,75.0,70.0,67.0,69.0,79.0,77.0,88.0,63.0,108.0,78.0,81.0,98.0,101.0,76.0,69.0,100.0,87.0,111.0,90.0,94.0,91.0,87.0,98.0,99.0,81.0,87.0,105.0,96.0,101.0,88.0,91.0,103.0,92.0,98.0,100.0,109.0,102.0,104.0,99.0,86.0,72.0,83.0,71.0,57.0,62.0,52.0,47.0,47.0,60.0,58.0,47.0,62.0,53.0,60.0,57.0,46.0,43.0,55.0,31.0,28.0,31.0,24.0,24.0,25.0,22.0,23.0,8.0,5.0,10.0,10.0,1.0,6.0 K82038,139.0,140.0,142.0,173.0,149.0,177.0,163.0,201.0,181.0,156.0,154.0,167.0,155.0,181.0,155.0,148.0,143.0,138.0,142.0,121.0,100.0,95.0,92.0,107.0,102.0,102.0,121.0,143.0,146.0,164.0,160.0,192.0,189.0,188.0,198.0,225.0,228.0,208.0,186.0,188.0,203.0,197.0,200.0,193.0,179.0,195.0,175.0,156.0,155.0,157.0,142.0,158.0,149.0,152.0,162.0,140.0,152.0,141.0,159.0,149.0,154.0,124.0,128.0,129.0,124.0,114.0,107.0,111.0,98.0,88.0,91.0,57.0,63.0,73.0,72.0,68.0,72.0,64.0,72.0,59.0,56.0,46.0,42.0,36.0,38.0,31.0,30.0,29.0,33.0,16.0,17.0,8.0,8.0,8.0,7.0,15.0 K82040,90.0,76.0,89.0,101.0,86.0,98.0,85.0,119.0,97.0,103.0,99.0,88.0,107.0,93.0,97.0,84.0,86.0,118.0,94.0,71.0,75.0,65.0,61.0,72.0,73.0,74.0,78.0,82.0,88.0,112.0,121.0,119.0,123.0,118.0,134.0,145.0,126.0,134.0,136.0,139.0,136.0,123.0,127.0,117.0,161.0,141.0,102.0,87.0,83.0,86.0,101.0,83.0,86.0,75.0,99.0,82.0,76.0,78.0,105.0,80.0,87.0,65.0,65.0,61.0,76.0,53.0,48.0,58.0,43.0,31.0,47.0,42.0,43.0,44.0,35.0,32.0,32.0,39.0,17.0,23.0,26.0,22.0,15.0,14.0,22.0,17.0,7.0,10.0,8.0,10.0,8.0,5.0,6.0,7.0,1.0,2.0 K82044,73.0,58.0,53.0,77.0,75.0,65.0,92.0,69.0,77.0,73.0,63.0,68.0,80.0,84.0,75.0,78.0,59.0,59.0,62.0,66.0,65.0,39.0,55.0,42.0,69.0,63.0,55.0,59.0,82.0,72.0,75.0,79.0,84.0,98.0,83.0,97.0,92.0,90.0,107.0,95.0,80.0,86.0,98.0,99.0,89.0,83.0,104.0,77.0,78.0,63.0,77.0,62.0,69.0,62.0,70.0,53.0,54.0,63.0,52.0,53.0,65.0,49.0,48.0,47.0,45.0,32.0,29.0,34.0,24.0,37.0,32.0,28.0,28.0,28.0,17.0,20.0,18.0,23.0,16.0,12.0,20.0,17.0,12.0,12.0,12.0,11.0,8.0,3.0,7.0,10.0,3.0,4.0,1.0,2.0,2.0,4.0 K82045,21.0,23.0,25.0,34.0,32.0,37.0,33.0,42.0,39.0,46.0,42.0,36.0,45.0,46.0,44.0,44.0,44.0,37.0,35.0,38.0,22.0,29.0,24.0,31.0,37.0,40.0,33.0,36.0,35.0,28.0,41.0,22.0,31.0,30.0,34.0,33.0,42.0,39.0,42.0,33.0,28.0,51.0,39.0,45.0,43.0,53.0,46.0,55.0,43.0,49.0,31.0,44.0,44.0,42.0,42.0,38.0,50.0,56.0,57.0,43.0,57.0,72.0,48.0,44.0,38.0,39.0,53.0,39.0,52.0,40.0,32.0,26.0,33.0,31.0,31.0,29.0,32.0,47.0,37.0,30.0,31.0,23.0,24.0,10.0,23.0,15.0,15.0,16.0,12.0,12.0,7.0,8.0,6.0,6.0,5.0,9.0 K82046,61.0,94.0,72.0,89.0,114.0,94.0,112.0,107.0,99.0,113.0,120.0,114.0,129.0,146.0,144.0,133.0,123.0,147.0,95.0,95.0,97.0,82.0,98.0,84.0,89.0,82.0,83.0,96.0,82.0,81.0,76.0,76.0,77.0,81.0,89.0,97.0,84.0,108.0,111.0,105.0,107.0,127.0,130.0,118.0,120.0,116.0,134.0,118.0,117.0,136.0,139.0,135.0,154.0,146.0,146.0,132.0,125.0,142.0,159.0,127.0,127.0,118.0,132.0,112.0,128.0,102.0,120.0,121.0,103.0,102.0,86.0,95.0,78.0,81.0,65.0,72.0,74.0,80.0,81.0,62.0,75.0,54.0,52.0,44.0,37.0,35.0,41.0,32.0,29.0,30.0,19.0,17.0,8.0,9.0,9.0,16.0 K82047,103.0,115.0,108.0,114.0,119.0,138.0,126.0,134.0,132.0,138.0,134.0,176.0,135.0,149.0,164.0,130.0,126.0,142.0,126.0,106.0,104.0,94.0,110.0,103.0,97.0,106.0,94.0,87.0,79.0,92.0,112.0,110.0,87.0,124.0,163.0,119.0,127.0,145.0,111.0,142.0,124.0,152.0,145.0,147.0,154.0,121.0,134.0,148.0,155.0,167.0,137.0,157.0,146.0,162.0,150.0,145.0,164.0,170.0,176.0,171.0,175.0,149.0,166.0,137.0,173.0,153.0,131.0,157.0,117.0,130.0,117.0,135.0,110.0,107.0,116.0,130.0,114.0,134.0,135.0,97.0,91.0,82.0,73.0,46.0,56.0,31.0,43.0,48.0,33.0,33.0,24.0,21.0,17.0,8.0,7.0,17.0 K82048,36.0,38.0,44.0,35.0,39.0,42.0,39.0,32.0,34.0,42.0,38.0,39.0,41.0,46.0,31.0,42.0,34.0,45.0,42.0,49.0,37.0,35.0,33.0,33.0,34.0,38.0,41.0,43.0,30.0,30.0,40.0,42.0,32.0,34.0,37.0,46.0,42.0,42.0,55.0,41.0,36.0,40.0,43.0,39.0,46.0,43.0,34.0,34.0,38.0,47.0,39.0,52.0,42.0,40.0,49.0,46.0,59.0,55.0,52.0,47.0,45.0,63.0,63.0,46.0,47.0,51.0,45.0,39.0,34.0,36.0,35.0,37.0,35.0,33.0,26.0,34.0,35.0,38.0,28.0,17.0,19.0,26.0,20.0,21.0,12.0,15.0,18.0,7.0,10.0,3.0,7.0,3.0,2.0,2.0,2.0,1.0 K82049,47.0,40.0,53.0,56.0,39.0,52.0,63.0,54.0,61.0,68.0,67.0,65.0,78.0,78.0,79.0,64.0,81.0,70.0,71.0,62.0,52.0,66.0,67.0,61.0,64.0,53.0,49.0,44.0,63.0,60.0,49.0,49.0,52.0,57.0,45.0,66.0,60.0,62.0,61.0,53.0,58.0,57.0,55.0,57.0,75.0,48.0,70.0,53.0,68.0,67.0,67.0,85.0,76.0,75.0,92.0,93.0,77.0,97.0,98.0,103.0,83.0,94.0,98.0,91.0,75.0,77.0,83.0,73.0,70.0,76.0,71.0,67.0,63.0,61.0,72.0,72.0,96.0,97.0,72.0,58.0,50.0,61.0,60.0,64.0,43.0,36.0,38.0,36.0,18.0,25.0,24.0,15.0,17.0,12.0,2.0,14.0 K82051,32.0,37.0,43.0,40.0,48.0,70.0,52.0,60.0,75.0,59.0,79.0,70.0,67.0,73.0,54.0,77.0,69.0,83.0,67.0,76.0,55.0,61.0,52.0,66.0,58.0,59.0,53.0,49.0,50.0,42.0,44.0,39.0,36.0,49.0,48.0,49.0,49.0,62.0,58.0,63.0,58.0,57.0,50.0,64.0,68.0,89.0,69.0,71.0,64.0,62.0,69.0,83.0,87.0,87.0,90.0,91.0,81.0,81.0,94.0,83.0,91.0,96.0,78.0,78.0,86.0,78.0,78.0,69.0,70.0,65.0,57.0,51.0,61.0,61.0,50.0,60.0,53.0,68.0,63.0,51.0,46.0,42.0,25.0,34.0,34.0,27.0,25.0,27.0,23.0,24.0,21.0,18.0,6.0,5.0,6.0,10.0 K82053,48.0,53.0,47.0,53.0,58.0,71.0,71.0,69.0,57.0,66.0,60.0,73.0,71.0,70.0,83.0,65.0,86.0,57.0,76.0,64.0,64.0,73.0,65.0,70.0,75.0,77.0,83.0,82.0,87.0,79.0,101.0,91.0,96.0,93.0,80.0,96.0,92.0,109.0,99.0,86.0,77.0,96.0,109.0,97.0,83.0,108.0,92.0,82.0,74.0,82.0,81.0,93.0,77.0,93.0,81.0,88.0,101.0,80.0,66.0,80.0,71.0,64.0,68.0,63.0,52.0,56.0,42.0,60.0,40.0,57.0,39.0,45.0,43.0,41.0,32.0,31.0,34.0,37.0,49.0,23.0,33.0,33.0,15.0,24.0,21.0,18.0,20.0,15.0,17.0,16.0,10.0,9.0,7.0,7.0,5.0,10.0 K82055,38.0,59.0,65.0,63.0,84.0,65.0,87.0,53.0,80.0,62.0,61.0,58.0,54.0,56.0,62.0,59.0,56.0,59.0,41.0,32.0,48.0,33.0,56.0,44.0,57.0,47.0,54.0,50.0,52.0,53.0,60.0,60.0,73.0,79.0,70.0,63.0,75.0,67.0,69.0,75.0,88.0,63.0,72.0,87.0,86.0,66.0,78.0,68.0,72.0,59.0,70.0,74.0,70.0,58.0,81.0,74.0,64.0,89.0,72.0,84.0,79.0,71.0,86.0,71.0,70.0,60.0,71.0,63.0,63.0,66.0,59.0,53.0,35.0,45.0,30.0,41.0,37.0,43.0,38.0,36.0,34.0,20.0,29.0,17.0,29.0,24.0,14.0,9.0,15.0,16.0,15.0,10.0,7.0,5.0,6.0,8.0 K82058,26.0,29.0,36.0,32.0,23.0,38.0,35.0,29.0,38.0,31.0,35.0,44.0,49.0,33.0,57.0,45.0,45.0,51.0,41.0,30.0,28.0,33.0,26.0,27.0,35.0,30.0,37.0,25.0,37.0,33.0,39.0,39.0,44.0,35.0,44.0,34.0,34.0,45.0,45.0,46.0,33.0,42.0,40.0,53.0,58.0,52.0,55.0,43.0,48.0,47.0,53.0,49.0,39.0,36.0,35.0,39.0,36.0,46.0,42.0,31.0,46.0,43.0,33.0,33.0,27.0,30.0,29.0,19.0,31.0,30.0,20.0,19.0,31.0,22.0,14.0,17.0,20.0,24.0,20.0,18.0,12.0,11.0,15.0,10.0,12.0,6.0,5.0,10.0,8.0,8.0,4.0,2.0,6.0,,2.0,4.0 K82061,20.0,17.0,28.0,21.0,18.0,22.0,20.0,27.0,29.0,30.0,37.0,34.0,30.0,29.0,24.0,34.0,25.0,42.0,24.0,16.0,21.0,23.0,16.0,14.0,12.0,21.0,32.0,23.0,26.0,26.0,25.0,20.0,31.0,29.0,29.0,29.0,25.0,23.0,31.0,14.0,38.0,29.0,24.0,34.0,34.0,39.0,22.0,18.0,20.0,48.0,23.0,33.0,35.0,28.0,37.0,30.0,31.0,51.0,41.0,40.0,46.0,42.0,32.0,29.0,33.0,25.0,29.0,27.0,23.0,32.0,28.0,24.0,27.0,26.0,25.0,25.0,27.0,22.0,25.0,25.0,18.0,12.0,20.0,6.0,8.0,11.0,8.0,3.0,6.0,8.0,3.0,3.0,1.0,1.0,,2.0 K82066,64.0,57.0,57.0,72.0,80.0,59.0,63.0,73.0,58.0,78.0,72.0,68.0,79.0,89.0,75.0,83.0,88.0,87.0,75.0,60.0,71.0,75.0,50.0,57.0,63.0,55.0,51.0,61.0,64.0,57.0,60.0,64.0,67.0,76.0,90.0,85.0,85.0,82.0,76.0,95.0,67.0,77.0,76.0,94.0,83.0,90.0,82.0,88.0,73.0,69.0,88.0,96.0,101.0,109.0,98.0,113.0,104.0,96.0,104.0,108.0,115.0,107.0,91.0,94.0,91.0,87.0,72.0,86.0,68.0,86.0,87.0,78.0,73.0,58.0,72.0,63.0,54.0,69.0,77.0,39.0,80.0,51.0,58.0,39.0,38.0,30.0,35.0,23.0,27.0,23.0,10.0,10.0,9.0,10.0,3.0,6.0 K82068,16.0,23.0,18.0,26.0,14.0,31.0,20.0,27.0,31.0,34.0,46.0,40.0,41.0,42.0,51.0,50.0,50.0,34.0,39.0,22.0,27.0,33.0,41.0,28.0,31.0,25.0,21.0,32.0,25.0,34.0,37.0,34.0,20.0,34.0,24.0,40.0,37.0,27.0,28.0,23.0,41.0,29.0,23.0,34.0,28.0,39.0,33.0,28.0,32.0,50.0,47.0,40.0,35.0,43.0,38.0,42.0,43.0,50.0,52.0,57.0,58.0,56.0,45.0,32.0,38.0,46.0,36.0,26.0,38.0,29.0,26.0,34.0,21.0,18.0,21.0,23.0,22.0,20.0,24.0,7.0,21.0,12.0,16.0,11.0,9.0,12.0,10.0,8.0,4.0,3.0,3.0,3.0,1.0,,1.0, K82070,75.0,72.0,91.0,105.0,97.0,96.0,94.0,98.0,106.0,104.0,114.0,129.0,109.0,135.0,109.0,137.0,109.0,129.0,115.0,87.0,81.0,74.0,88.0,75.0,80.0,80.0,87.0,76.0,90.0,83.0,104.0,100.0,106.0,107.0,107.0,97.0,96.0,110.0,109.0,100.0,98.0,95.0,98.0,102.0,104.0,97.0,105.0,118.0,104.0,106.0,126.0,121.0,154.0,150.0,130.0,155.0,152.0,133.0,159.0,169.0,172.0,165.0,154.0,140.0,151.0,153.0,138.0,127.0,146.0,140.0,115.0,118.0,109.0,86.0,104.0,134.0,99.0,104.0,123.0,100.0,100.0,61.0,48.0,56.0,44.0,46.0,43.0,34.0,34.0,22.0,18.0,7.0,4.0,7.0,8.0,11.0 K82073,158.0,161.0,178.0,212.0,218.0,201.0,210.0,229.0,183.0,228.0,235.0,240.0,251.0,223.0,228.0,210.0,239.0,208.0,208.0,163.0,134.0,155.0,143.0,134.0,134.0,151.0,128.0,136.0,151.0,150.0,155.0,182.0,150.0,178.0,215.0,178.0,173.0,214.0,209.0,220.0,228.0,215.0,207.0,247.0,226.0,249.0,206.0,235.0,203.0,211.0,249.0,229.0,231.0,198.0,215.0,219.0,197.0,209.0,241.0,221.0,242.0,218.0,201.0,184.0,215.0,184.0,181.0,173.0,169.0,139.0,167.0,125.0,147.0,146.0,133.0,140.0,163.0,173.0,144.0,94.0,120.0,119.0,91.0,95.0,64.0,62.0,75.0,69.0,54.0,36.0,27.0,26.0,17.0,18.0,13.0,22.0 K82078,47.0,56.0,44.0,48.0,59.0,56.0,45.0,45.0,43.0,47.0,60.0,46.0,59.0,65.0,61.0,76.0,53.0,68.0,57.0,60.0,50.0,56.0,64.0,66.0,68.0,62.0,50.0,56.0,64.0,59.0,50.0,66.0,49.0,53.0,63.0,61.0,44.0,66.0,63.0,58.0,57.0,64.0,55.0,58.0,49.0,60.0,76.0,58.0,58.0,56.0,68.0,61.0,62.0,60.0,72.0,77.0,66.0,65.0,78.0,71.0,62.0,88.0,78.0,68.0,59.0,71.0,58.0,60.0,60.0,49.0,56.0,40.0,39.0,33.0,37.0,44.0,35.0,48.0,44.0,30.0,39.0,24.0,28.0,26.0,29.0,22.0,30.0,18.0,20.0,10.0,13.0,5.0,9.0,9.0,7.0,8.0 K82079,34.0,38.0,40.0,41.0,61.0,41.0,53.0,42.0,37.0,47.0,54.0,60.0,44.0,49.0,56.0,46.0,57.0,55.0,51.0,38.0,34.0,44.0,46.0,36.0,39.0,36.0,42.0,28.0,40.0,36.0,39.0,38.0,38.0,42.0,42.0,41.0,36.0,49.0,36.0,47.0,45.0,41.0,25.0,48.0,54.0,50.0,43.0,44.0,49.0,47.0,48.0,55.0,58.0,61.0,68.0,74.0,68.0,56.0,62.0,78.0,70.0,76.0,80.0,75.0,72.0,70.0,48.0,70.0,54.0,55.0,37.0,59.0,40.0,51.0,52.0,49.0,48.0,51.0,37.0,32.0,47.0,36.0,21.0,23.0,25.0,22.0,24.0,17.0,16.0,9.0,9.0,9.0,3.0,5.0,1.0,6.0 K82603,77.0,86.0,76.0,69.0,71.0,91.0,78.0,76.0,88.0,87.0,92.0,92.0,79.0,104.0,76.0,82.0,90.0,72.0,72.0,65.0,56.0,49.0,52.0,65.0,82.0,77.0,69.0,69.0,82.0,74.0,79.0,83.0,99.0,97.0,105.0,107.0,97.0,111.0,106.0,110.0,109.0,123.0,105.0,113.0,109.0,115.0,94.0,100.0,101.0,73.0,89.0,92.0,93.0,78.0,85.0,84.0,66.0,59.0,63.0,64.0,67.0,63.0,38.0,39.0,45.0,49.0,45.0,46.0,45.0,40.0,45.0,22.0,37.0,25.0,20.0,25.0,20.0,16.0,22.0,16.0,16.0,17.0,17.0,12.0,7.0,13.0,8.0,16.0,8.0,6.0,6.0,2.0,4.0,2.0,3.0,4.0 K82618,6.0,12.0,12.0,11.0,11.0,21.0,28.0,16.0,28.0,27.0,24.0,27.0,28.0,33.0,28.0,30.0,37.0,32.0,21.0,25.0,17.0,17.0,17.0,13.0,14.0,13.0,19.0,20.0,8.0,12.0,18.0,13.0,13.0,15.0,18.0,24.0,20.0,17.0,16.0,20.0,15.0,19.0,23.0,19.0,26.0,21.0,26.0,32.0,26.0,24.0,20.0,32.0,31.0,25.0,33.0,44.0,24.0,30.0,22.0,21.0,36.0,28.0,30.0,31.0,23.0,19.0,19.0,25.0,24.0,17.0,22.0,17.0,11.0,12.0,11.0,14.0,16.0,11.0,11.0,11.0,11.0,10.0,14.0,9.0,12.0,10.0,5.0,4.0,6.0,5.0,1.0,1.0,1.0,2.0,,3.0 K82621,10.0,12.0,20.0,25.0,29.0,24.0,19.0,33.0,36.0,29.0,37.0,38.0,41.0,56.0,31.0,41.0,33.0,34.0,37.0,21.0,22.0,23.0,28.0,19.0,24.0,8.0,28.0,20.0,26.0,14.0,12.0,16.0,26.0,19.0,12.0,18.0,25.0,20.0,29.0,23.0,26.0,26.0,38.0,36.0,37.0,39.0,43.0,40.0,33.0,34.0,41.0,43.0,41.0,32.0,33.0,35.0,30.0,30.0,36.0,30.0,33.0,38.0,35.0,31.0,27.0,28.0,21.0,30.0,16.0,20.0,22.0,17.0,14.0,18.0,23.0,14.0,10.0,17.0,15.0,7.0,11.0,16.0,11.0,10.0,7.0,7.0,13.0,6.0,1.0,5.0,4.0,5.0,,6.0,3.0,6.0 K84001,30.0,34.0,33.0,43.0,39.0,47.0,39.0,41.0,52.0,46.0,55.0,65.0,54.0,57.0,60.0,80.0,75.0,68.0,66.0,66.0,60.0,59.0,68.0,61.0,77.0,69.0,55.0,47.0,55.0,61.0,46.0,48.0,51.0,60.0,56.0,53.0,55.0,57.0,51.0,52.0,52.0,58.0,65.0,66.0,55.0,67.0,73.0,87.0,65.0,76.0,81.0,72.0,79.0,96.0,88.0,101.0,83.0,75.0,85.0,82.0,85.0,72.0,85.0,69.0,87.0,78.0,64.0,62.0,52.0,40.0,49.0,44.0,41.0,34.0,49.0,57.0,46.0,46.0,51.0,42.0,48.0,39.0,40.0,30.0,17.0,32.0,22.0,33.0,15.0,19.0,12.0,14.0,14.0,10.0,4.0,14.0 K84002,84.0,130.0,95.0,108.0,111.0,95.0,122.0,110.0,110.0,133.0,129.0,112.0,149.0,143.0,123.0,141.0,116.0,105.0,105.0,96.0,90.0,82.0,93.0,79.0,90.0,94.0,121.0,129.0,130.0,126.0,152.0,158.0,170.0,170.0,188.0,187.0,185.0,177.0,162.0,158.0,177.0,139.0,154.0,136.0,160.0,160.0,145.0,129.0,104.0,108.0,120.0,116.0,128.0,133.0,134.0,126.0,114.0,140.0,129.0,128.0,124.0,125.0,136.0,118.0,108.0,103.0,89.0,93.0,67.0,78.0,70.0,65.0,54.0,56.0,69.0,66.0,64.0,49.0,66.0,58.0,47.0,40.0,38.0,32.0,23.0,28.0,28.0,16.0,21.0,15.0,13.0,14.0,4.0,4.0,4.0,7.0 K84003,27.0,37.0,22.0,31.0,40.0,24.0,30.0,32.0,46.0,44.0,44.0,59.0,37.0,41.0,30.0,35.0,27.0,37.0,31.0,36.0,25.0,31.0,22.0,28.0,36.0,36.0,25.0,53.0,34.0,28.0,31.0,43.0,43.0,33.0,36.0,51.0,29.0,42.0,42.0,42.0,37.0,46.0,49.0,49.0,42.0,44.0,49.0,46.0,53.0,37.0,34.0,39.0,40.0,45.0,44.0,39.0,49.0,56.0,70.0,51.0,49.0,58.0,68.0,52.0,71.0,59.0,59.0,48.0,35.0,56.0,38.0,43.0,45.0,34.0,32.0,36.0,37.0,41.0,32.0,30.0,18.0,25.0,17.0,19.0,15.0,8.0,17.0,8.0,13.0,7.0,6.0,8.0,4.0,5.0,4.0,9.0 K84004,57.0,60.0,78.0,65.0,54.0,67.0,74.0,70.0,71.0,71.0,83.0,76.0,93.0,75.0,103.0,92.0,91.0,86.0,85.0,87.0,92.0,90.0,98.0,85.0,98.0,94.0,101.0,91.0,109.0,91.0,124.0,133.0,102.0,115.0,144.0,107.0,134.0,122.0,150.0,119.0,128.0,132.0,106.0,118.0,112.0,129.0,97.0,101.0,94.0,74.0,84.0,82.0,78.0,87.0,65.0,79.0,85.0,86.0,78.0,91.0,80.0,80.0,81.0,62.0,67.0,75.0,70.0,50.0,50.0,34.0,35.0,57.0,42.0,50.0,44.0,50.0,40.0,48.0,34.0,37.0,36.0,37.0,35.0,25.0,17.0,16.0,19.0,12.0,15.0,8.0,13.0,6.0,4.0,6.0,3.0,7.0 K84006,63.0,68.0,77.0,71.0,74.0,83.0,88.0,81.0,94.0,81.0,78.0,96.0,131.0,107.0,117.0,114.0,96.0,97.0,95.0,59.0,68.0,72.0,83.0,64.0,70.0,67.0,80.0,79.0,78.0,78.0,80.0,77.0,102.0,106.0,74.0,88.0,85.0,114.0,104.0,100.0,100.0,83.0,96.0,104.0,98.0,92.0,110.0,80.0,94.0,95.0,98.0,99.0,119.0,120.0,107.0,119.0,114.0,133.0,126.0,114.0,118.0,117.0,123.0,134.0,112.0,86.0,105.0,90.0,101.0,105.0,84.0,93.0,93.0,80.0,88.0,77.0,69.0,85.0,99.0,71.0,75.0,64.0,67.0,43.0,42.0,45.0,47.0,25.0,34.0,34.0,15.0,19.0,11.0,16.0,9.0,13.0 K84007,30.0,42.0,39.0,28.0,35.0,39.0,37.0,34.0,54.0,44.0,32.0,33.0,36.0,36.0,46.0,43.0,33.0,40.0,45.0,45.0,46.0,52.0,47.0,67.0,66.0,56.0,76.0,83.0,96.0,74.0,96.0,93.0,91.0,94.0,96.0,92.0,108.0,87.0,81.0,108.0,74.0,81.0,61.0,69.0,80.0,64.0,63.0,65.0,60.0,63.0,45.0,61.0,58.0,37.0,44.0,49.0,49.0,48.0,44.0,49.0,63.0,41.0,34.0,44.0,36.0,42.0,31.0,29.0,35.0,35.0,37.0,38.0,30.0,24.0,23.0,27.0,25.0,19.0,24.0,17.0,29.0,22.0,16.0,18.0,12.0,18.0,15.0,7.0,10.0,12.0,4.0,6.0,5.0,5.0,1.0,6.0 K84008,43.0,47.0,47.0,40.0,41.0,37.0,53.0,42.0,34.0,42.0,42.0,46.0,46.0,41.0,48.0,45.0,34.0,41.0,37.0,46.0,30.0,36.0,45.0,32.0,35.0,29.0,38.0,49.0,30.0,41.0,32.0,45.0,33.0,56.0,46.0,59.0,47.0,62.0,35.0,52.0,48.0,36.0,49.0,31.0,36.0,45.0,45.0,32.0,51.0,38.0,41.0,49.0,44.0,63.0,56.0,60.0,66.0,58.0,57.0,63.0,65.0,78.0,53.0,59.0,56.0,63.0,60.0,46.0,40.0,41.0,48.0,48.0,46.0,38.0,50.0,25.0,33.0,40.0,41.0,38.0,37.0,28.0,28.0,22.0,14.0,19.0,17.0,18.0,12.0,10.0,11.0,7.0,5.0,2.0,1.0,5.0 K84009,79.0,77.0,95.0,104.0,83.0,99.0,109.0,111.0,126.0,117.0,138.0,135.0,167.0,165.0,150.0,135.0,209.0,295.0,354.0,405.0,369.0,394.0,360.0,283.0,257.0,258.0,300.0,278.0,251.0,246.0,242.0,228.0,251.0,222.0,237.0,229.0,244.0,227.0,225.0,219.0,200.0,221.0,230.0,191.0,211.0,203.0,173.0,185.0,180.0,190.0,163.0,150.0,154.0,139.0,118.0,149.0,134.0,119.0,108.0,110.0,110.0,120.0,83.0,94.0,88.0,80.0,74.0,76.0,64.0,61.0,49.0,56.0,50.0,49.0,50.0,58.0,48.0,61.0,40.0,34.0,33.0,32.0,36.0,27.0,21.0,21.0,19.0,21.0,14.0,11.0,10.0,5.0,5.0,5.0,7.0,11.0 K84010,30.0,33.0,46.0,53.0,50.0,45.0,54.0,43.0,38.0,57.0,46.0,47.0,58.0,59.0,45.0,43.0,41.0,55.0,37.0,42.0,39.0,46.0,34.0,39.0,46.0,45.0,49.0,51.0,45.0,54.0,49.0,47.0,62.0,58.0,58.0,54.0,58.0,51.0,56.0,55.0,60.0,53.0,40.0,71.0,49.0,35.0,65.0,54.0,50.0,54.0,48.0,61.0,58.0,57.0,73.0,55.0,53.0,88.0,60.0,65.0,58.0,78.0,66.0,57.0,69.0,69.0,56.0,69.0,50.0,37.0,56.0,52.0,46.0,37.0,50.0,30.0,51.0,65.0,55.0,43.0,40.0,33.0,42.0,29.0,17.0,25.0,13.0,21.0,10.0,14.0,13.0,9.0,6.0,9.0,1.0,11.0 K84011,41.0,49.0,58.0,41.0,49.0,51.0,68.0,71.0,92.0,107.0,140.0,141.0,214.0,141.0,97.0,118.0,130.0,103.0,146.0,223.0,228.0,212.0,217.0,224.0,225.0,238.0,247.0,224.0,232.0,228.0,229.0,230.0,216.0,225.0,192.0,187.0,157.0,183.0,160.0,144.0,121.0,127.0,118.0,124.0,137.0,123.0,113.0,122.0,113.0,106.0,107.0,114.0,104.0,105.0,87.0,106.0,92.0,94.0,106.0,93.0,95.0,92.0,74.0,89.0,73.0,65.0,67.0,64.0,71.0,59.0,48.0,58.0,48.0,65.0,55.0,33.0,53.0,57.0,46.0,38.0,37.0,41.0,37.0,27.0,21.0,20.0,24.0,16.0,15.0,13.0,16.0,6.0,5.0,18.0,4.0,15.0 K84013,81.0,102.0,117.0,88.0,100.0,111.0,99.0,99.0,122.0,149.0,113.0,117.0,116.0,137.0,120.0,121.0,139.0,139.0,212.0,377.0,477.0,482.0,439.0,482.0,514.0,520.0,496.0,522.0,441.0,393.0,376.0,339.0,320.0,287.0,292.0,320.0,385.0,345.0,320.0,299.0,298.0,272.0,255.0,248.0,250.0,247.0,184.0,202.0,180.0,162.0,162.0,134.0,145.0,129.0,151.0,138.0,127.0,139.0,124.0,132.0,108.0,116.0,103.0,101.0,86.0,82.0,80.0,88.0,75.0,75.0,65.0,52.0,50.0,65.0,59.0,56.0,38.0,37.0,49.0,26.0,26.0,29.0,21.0,16.0,12.0,20.0,16.0,13.0,9.0,9.0,7.0,9.0,8.0,4.0,5.0,6.0 K84014,41.0,46.0,51.0,44.0,53.0,35.0,54.0,64.0,73.0,64.0,56.0,66.0,52.0,57.0,60.0,73.0,55.0,66.0,53.0,49.0,49.0,41.0,45.0,46.0,57.0,45.0,55.0,62.0,61.0,65.0,60.0,76.0,64.0,74.0,84.0,69.0,90.0,81.0,79.0,81.0,74.0,78.0,68.0,70.0,59.0,61.0,72.0,59.0,75.0,73.0,73.0,75.0,93.0,77.0,94.0,75.0,85.0,84.0,90.0,94.0,77.0,106.0,95.0,82.0,82.0,71.0,70.0,63.0,64.0,66.0,61.0,55.0,77.0,62.0,58.0,55.0,56.0,72.0,74.0,44.0,43.0,34.0,29.0,32.0,26.0,24.0,21.0,18.0,23.0,18.0,17.0,8.0,8.0,6.0,1.0,14.0 K84015,14.0,5.0,19.0,13.0,20.0,16.0,19.0,17.0,19.0,16.0,21.0,16.0,25.0,18.0,26.0,19.0,24.0,11.0,23.0,20.0,10.0,14.0,22.0,18.0,27.0,14.0,14.0,22.0,12.0,22.0,16.0,19.0,15.0,19.0,16.0,15.0,20.0,22.0,23.0,20.0,14.0,18.0,26.0,22.0,24.0,19.0,24.0,28.0,30.0,31.0,24.0,31.0,25.0,30.0,34.0,37.0,28.0,34.0,43.0,28.0,41.0,39.0,47.0,38.0,37.0,26.0,32.0,29.0,20.0,24.0,26.0,20.0,25.0,19.0,24.0,20.0,29.0,28.0,21.0,20.0,23.0,20.0,19.0,9.0,15.0,14.0,11.0,11.0,4.0,6.0,6.0,7.0,,3.0,3.0,5.0 K84016,44.0,45.0,43.0,45.0,46.0,61.0,58.0,64.0,65.0,81.0,86.0,77.0,86.0,77.0,77.0,92.0,91.0,89.0,183.0,338.0,377.0,383.0,411.0,398.0,420.0,426.0,422.0,472.0,397.0,419.0,408.0,370.0,357.0,337.0,286.0,240.0,212.0,229.0,195.0,161.0,160.0,140.0,137.0,130.0,119.0,131.0,126.0,115.0,107.0,105.0,112.0,92.0,113.0,106.0,95.0,90.0,100.0,94.0,112.0,124.0,100.0,108.0,106.0,107.0,87.0,81.0,71.0,91.0,88.0,78.0,92.0,54.0,62.0,61.0,61.0,66.0,61.0,56.0,57.0,48.0,56.0,48.0,39.0,43.0,19.0,20.0,23.0,17.0,18.0,23.0,13.0,11.0,9.0,6.0,7.0,18.0 K84017,85.0,106.0,118.0,113.0,105.0,116.0,125.0,119.0,117.0,131.0,125.0,139.0,138.0,130.0,109.0,106.0,116.0,120.0,94.0,90.0,101.0,106.0,93.0,99.0,125.0,136.0,128.0,140.0,168.0,144.0,149.0,175.0,166.0,183.0,178.0,180.0,186.0,170.0,165.0,156.0,146.0,150.0,170.0,155.0,150.0,157.0,140.0,125.0,110.0,110.0,120.0,114.0,139.0,138.0,136.0,139.0,150.0,126.0,129.0,97.0,123.0,149.0,107.0,137.0,110.0,99.0,103.0,104.0,109.0,99.0,93.0,83.0,75.0,82.0,76.0,94.0,96.0,100.0,74.0,67.0,67.0,65.0,66.0,48.0,37.0,42.0,45.0,40.0,38.0,30.0,18.0,19.0,16.0,13.0,5.0,25.0 K84019,75.0,82.0,82.0,81.0,78.0,97.0,87.0,85.0,94.0,97.0,100.0,102.0,98.0,101.0,100.0,91.0,89.0,91.0,85.0,82.0,73.0,70.0,74.0,80.0,83.0,88.0,86.0,80.0,90.0,99.0,90.0,94.0,99.0,113.0,106.0,109.0,109.0,121.0,95.0,107.0,120.0,114.0,116.0,103.0,100.0,102.0,104.0,80.0,95.0,109.0,101.0,109.0,97.0,82.0,93.0,116.0,109.0,112.0,94.0,132.0,133.0,94.0,102.0,99.0,99.0,99.0,94.0,88.0,79.0,67.0,86.0,81.0,79.0,75.0,87.0,74.0,85.0,80.0,82.0,59.0,65.0,58.0,40.0,34.0,29.0,31.0,42.0,20.0,35.0,31.0,19.0,11.0,12.0,6.0,6.0,13.0 K84020,29.0,34.0,37.0,33.0,30.0,50.0,50.0,57.0,55.0,65.0,47.0,62.0,62.0,63.0,68.0,68.0,64.0,75.0,65.0,58.0,54.0,53.0,46.0,38.0,50.0,54.0,47.0,37.0,47.0,43.0,41.0,48.0,40.0,44.0,51.0,51.0,47.0,51.0,41.0,58.0,46.0,43.0,54.0,46.0,62.0,65.0,57.0,58.0,65.0,76.0,64.0,73.0,94.0,81.0,70.0,79.0,62.0,87.0,73.0,87.0,90.0,85.0,67.0,52.0,74.0,72.0,72.0,67.0,52.0,60.0,37.0,48.0,61.0,51.0,43.0,42.0,47.0,49.0,55.0,36.0,34.0,57.0,31.0,28.0,33.0,23.0,23.0,28.0,15.0,18.0,15.0,11.0,5.0,8.0,5.0,11.0 K84021,15.0,17.0,15.0,17.0,23.0,29.0,20.0,28.0,27.0,29.0,40.0,31.0,42.0,50.0,38.0,45.0,80.0,141.0,129.0,171.0,158.0,160.0,172.0,172.0,199.0,206.0,146.0,169.0,135.0,144.0,153.0,118.0,107.0,100.0,94.0,92.0,80.0,69.0,77.0,71.0,62.0,66.0,56.0,53.0,53.0,61.0,58.0,55.0,49.0,55.0,27.0,51.0,38.0,44.0,53.0,46.0,33.0,29.0,28.0,41.0,31.0,30.0,41.0,32.0,29.0,25.0,30.0,22.0,18.0,23.0,19.0,18.0,19.0,21.0,21.0,27.0,21.0,18.0,31.0,17.0,17.0,13.0,13.0,15.0,9.0,10.0,19.0,10.0,14.0,7.0,7.0,2.0,,5.0,4.0,4.0 K84023,26.0,27.0,31.0,24.0,22.0,34.0,37.0,37.0,30.0,30.0,40.0,43.0,23.0,37.0,43.0,39.0,33.0,40.0,40.0,42.0,19.0,23.0,31.0,43.0,35.0,34.0,34.0,32.0,37.0,31.0,35.0,33.0,39.0,48.0,55.0,38.0,41.0,47.0,45.0,42.0,38.0,38.0,41.0,40.0,41.0,60.0,33.0,39.0,26.0,30.0,34.0,26.0,41.0,44.0,34.0,42.0,46.0,42.0,54.0,58.0,47.0,48.0,42.0,30.0,55.0,34.0,38.0,43.0,33.0,32.0,25.0,47.0,27.0,18.0,24.0,25.0,21.0,24.0,27.0,23.0,15.0,18.0,17.0,15.0,11.0,16.0,11.0,12.0,14.0,5.0,5.0,7.0,6.0,4.0,4.0,5.0 K84024,37.0,41.0,44.0,55.0,55.0,41.0,54.0,55.0,49.0,51.0,61.0,56.0,59.0,53.0,55.0,68.0,58.0,65.0,71.0,67.0,46.0,37.0,44.0,52.0,42.0,52.0,40.0,58.0,63.0,59.0,78.0,50.0,69.0,63.0,68.0,63.0,76.0,67.0,68.0,75.0,56.0,68.0,76.0,65.0,50.0,70.0,57.0,55.0,51.0,49.0,61.0,49.0,65.0,67.0,56.0,70.0,56.0,63.0,63.0,72.0,56.0,53.0,56.0,55.0,42.0,46.0,43.0,34.0,44.0,32.0,36.0,32.0,36.0,37.0,34.0,40.0,27.0,38.0,39.0,31.0,27.0,23.0,26.0,19.0,17.0,21.0,17.0,12.0,9.0,8.0,9.0,10.0,4.0,2.0,1.0,2.0 K84026,42.0,42.0,27.0,39.0,25.0,32.0,43.0,40.0,40.0,44.0,54.0,52.0,62.0,58.0,72.0,42.0,61.0,51.0,76.0,134.0,113.0,115.0,142.0,128.0,145.0,139.0,164.0,149.0,162.0,152.0,141.0,128.0,130.0,118.0,119.0,161.0,112.0,112.0,110.0,105.0,103.0,100.0,83.0,94.0,80.0,76.0,96.0,66.0,72.0,69.0,81.0,61.0,88.0,76.0,86.0,78.0,78.0,88.0,79.0,85.0,71.0,78.0,74.0,54.0,61.0,49.0,58.0,47.0,45.0,46.0,41.0,47.0,29.0,34.0,50.0,35.0,39.0,36.0,34.0,20.0,29.0,15.0,12.0,17.0,6.0,17.0,13.0,7.0,6.0,5.0,4.0,1.0,1.0,3.0,,1.0 K84027,40.0,46.0,73.0,56.0,60.0,64.0,75.0,80.0,92.0,82.0,77.0,89.0,85.0,111.0,112.0,120.0,126.0,128.0,126.0,76.0,77.0,66.0,77.0,66.0,74.0,66.0,71.0,79.0,73.0,77.0,91.0,76.0,99.0,98.0,80.0,84.0,74.0,70.0,88.0,105.0,85.0,91.0,95.0,70.0,80.0,95.0,73.0,91.0,97.0,102.0,105.0,102.0,109.0,88.0,99.0,101.0,118.0,112.0,103.0,111.0,113.0,108.0,108.0,92.0,114.0,101.0,82.0,82.0,104.0,65.0,88.0,77.0,96.0,83.0,79.0,77.0,92.0,69.0,102.0,72.0,73.0,45.0,67.0,60.0,37.0,59.0,33.0,34.0,35.0,23.0,14.0,18.0,14.0,9.0,12.0,14.0 K84028,198.0,217.0,252.0,248.0,257.0,264.0,239.0,248.0,244.0,265.0,271.0,262.0,241.0,265.0,243.0,298.0,267.0,260.0,247.0,217.0,198.0,217.0,243.0,249.0,226.0,272.0,289.0,309.0,306.0,328.0,361.0,384.0,378.0,432.0,423.0,402.0,439.0,423.0,383.0,371.0,413.0,391.0,384.0,330.0,360.0,350.0,304.0,288.0,286.0,289.0,278.0,257.0,276.0,272.0,249.0,260.0,273.0,284.0,307.0,255.0,233.0,245.0,227.0,225.0,203.0,178.0,172.0,187.0,164.0,160.0,154.0,120.0,139.0,110.0,125.0,150.0,129.0,173.0,140.0,95.0,107.0,103.0,81.0,80.0,65.0,65.0,52.0,47.0,38.0,28.0,31.0,27.0,12.0,21.0,10.0,13.0 K84030,51.0,57.0,55.0,65.0,67.0,74.0,68.0,73.0,69.0,77.0,83.0,76.0,88.0,100.0,114.0,98.0,102.0,104.0,79.0,73.0,73.0,75.0,71.0,67.0,69.0,75.0,74.0,93.0,73.0,77.0,96.0,94.0,96.0,110.0,69.0,93.0,92.0,105.0,89.0,88.0,107.0,92.0,95.0,102.0,107.0,90.0,101.0,75.0,82.0,88.0,94.0,91.0,109.0,108.0,112.0,93.0,111.0,109.0,121.0,126.0,134.0,102.0,92.0,117.0,103.0,100.0,101.0,106.0,86.0,90.0,93.0,68.0,71.0,79.0,90.0,83.0,91.0,92.0,84.0,72.0,80.0,54.0,58.0,57.0,49.0,40.0,45.0,26.0,20.0,29.0,14.0,12.0,11.0,14.0,6.0,14.0 K84031,63.0,71.0,79.0,74.0,63.0,68.0,78.0,77.0,90.0,76.0,69.0,82.0,68.0,88.0,95.0,72.0,87.0,75.0,77.0,92.0,88.0,90.0,93.0,91.0,116.0,114.0,116.0,105.0,115.0,122.0,121.0,101.0,129.0,128.0,124.0,101.0,130.0,128.0,129.0,118.0,110.0,114.0,120.0,115.0,104.0,95.0,87.0,76.0,87.0,86.0,83.0,74.0,72.0,70.0,64.0,60.0,92.0,83.0,71.0,81.0,91.0,68.0,82.0,65.0,64.0,65.0,44.0,44.0,44.0,41.0,38.0,37.0,27.0,30.0,19.0,26.0,17.0,20.0,18.0,16.0,17.0,24.0,14.0,10.0,8.0,15.0,11.0,12.0,11.0,5.0,5.0,5.0,4.0,1.0,1.0,3.0 K84032,47.0,58.0,52.0,42.0,61.0,49.0,45.0,51.0,53.0,48.0,62.0,41.0,44.0,78.0,124.0,119.0,146.0,140.0,124.0,76.0,45.0,53.0,64.0,67.0,67.0,67.0,95.0,77.0,87.0,91.0,107.0,106.0,119.0,106.0,100.0,111.0,104.0,105.0,91.0,92.0,88.0,106.0,104.0,97.0,96.0,103.0,79.0,87.0,43.0,61.0,70.0,70.0,69.0,65.0,58.0,60.0,61.0,58.0,43.0,52.0,49.0,56.0,53.0,44.0,46.0,28.0,31.0,34.0,34.0,26.0,22.0,21.0,31.0,24.0,23.0,19.0,19.0,16.0,16.0,8.0,15.0,8.0,12.0,9.0,11.0,10.0,12.0,11.0,8.0,4.0,2.0,3.0,2.0,2.0,2.0,3.0 K84033,119.0,150.0,152.0,138.0,144.0,129.0,138.0,123.0,127.0,141.0,117.0,143.0,102.0,109.0,115.0,115.0,90.0,115.0,93.0,75.0,65.0,82.0,83.0,67.0,95.0,101.0,129.0,109.0,130.0,133.0,124.0,163.0,160.0,199.0,145.0,168.0,168.0,170.0,164.0,144.0,151.0,141.0,127.0,136.0,124.0,137.0,111.0,123.0,110.0,116.0,110.0,113.0,119.0,118.0,123.0,102.0,109.0,128.0,124.0,123.0,120.0,91.0,123.0,129.0,105.0,104.0,86.0,110.0,93.0,90.0,91.0,77.0,74.0,76.0,79.0,64.0,74.0,74.0,78.0,52.0,65.0,51.0,39.0,39.0,34.0,38.0,29.0,27.0,26.0,29.0,16.0,18.0,12.0,8.0,10.0,20.0 K84034,13.0,15.0,21.0,23.0,15.0,19.0,23.0,21.0,21.0,20.0,26.0,18.0,16.0,29.0,23.0,17.0,19.0,15.0,17.0,16.0,13.0,13.0,16.0,16.0,15.0,21.0,13.0,22.0,13.0,14.0,15.0,20.0,21.0,19.0,17.0,9.0,21.0,16.0,22.0,21.0,19.0,20.0,21.0,17.0,29.0,23.0,16.0,25.0,34.0,19.0,25.0,20.0,27.0,22.0,23.0,26.0,20.0,35.0,28.0,34.0,27.0,33.0,27.0,19.0,32.0,25.0,36.0,26.0,23.0,20.0,28.0,22.0,23.0,17.0,20.0,17.0,17.0,18.0,9.0,17.0,19.0,15.0,11.0,7.0,8.0,6.0,7.0,2.0,5.0,4.0,,3.0,1.0,1.0,2.0,1.0 K84035,34.0,58.0,47.0,59.0,49.0,52.0,57.0,57.0,45.0,44.0,63.0,49.0,49.0,45.0,57.0,53.0,53.0,67.0,45.0,47.0,46.0,47.0,68.0,45.0,61.0,65.0,61.0,71.0,82.0,63.0,58.0,61.0,63.0,72.0,68.0,79.0,69.0,74.0,67.0,77.0,79.0,72.0,67.0,69.0,67.0,83.0,75.0,56.0,73.0,64.0,93.0,76.0,81.0,95.0,77.0,86.0,85.0,68.0,102.0,85.0,73.0,80.0,85.0,75.0,68.0,58.0,48.0,45.0,43.0,54.0,43.0,45.0,47.0,41.0,40.0,54.0,55.0,46.0,60.0,46.0,42.0,41.0,35.0,34.0,34.0,20.0,22.0,20.0,19.0,21.0,12.0,8.0,14.0,3.0,5.0,7.0 K84036,33.0,38.0,31.0,44.0,46.0,36.0,39.0,31.0,38.0,37.0,32.0,32.0,32.0,36.0,37.0,37.0,27.0,33.0,19.0,25.0,20.0,22.0,22.0,29.0,29.0,21.0,30.0,31.0,33.0,21.0,25.0,36.0,27.0,33.0,26.0,29.0,30.0,40.0,31.0,25.0,29.0,31.0,27.0,31.0,42.0,41.0,34.0,29.0,35.0,36.0,23.0,37.0,36.0,40.0,38.0,40.0,36.0,37.0,33.0,32.0,49.0,33.0,49.0,43.0,33.0,29.0,28.0,45.0,33.0,38.0,30.0,26.0,33.0,24.0,33.0,28.0,31.0,31.0,26.0,30.0,27.0,26.0,18.0,20.0,20.0,7.0,18.0,11.0,10.0,12.0,7.0,3.0,1.0,4.0,,3.0 K84037,90.0,97.0,72.0,96.0,109.0,109.0,103.0,125.0,115.0,131.0,118.0,112.0,108.0,130.0,119.0,133.0,119.0,131.0,91.0,96.0,86.0,95.0,76.0,99.0,66.0,109.0,97.0,81.0,96.0,89.0,112.0,97.0,102.0,111.0,139.0,118.0,122.0,109.0,136.0,134.0,126.0,119.0,134.0,112.0,128.0,145.0,129.0,106.0,130.0,137.0,136.0,131.0,166.0,136.0,166.0,138.0,143.0,136.0,136.0,141.0,123.0,124.0,102.0,124.0,107.0,111.0,97.0,88.0,74.0,79.0,83.0,82.0,81.0,88.0,87.0,88.0,79.0,85.0,87.0,65.0,71.0,53.0,45.0,54.0,42.0,39.0,39.0,32.0,20.0,21.0,21.0,11.0,17.0,7.0,13.0,20.0 K84038,80.0,107.0,89.0,108.0,113.0,113.0,122.0,111.0,102.0,109.0,81.0,98.0,89.0,107.0,118.0,96.0,72.0,86.0,79.0,64.0,64.0,71.0,61.0,71.0,69.0,75.0,95.0,96.0,101.0,102.0,121.0,120.0,138.0,164.0,133.0,151.0,141.0,148.0,175.0,147.0,142.0,147.0,142.0,138.0,129.0,123.0,99.0,100.0,88.0,99.0,91.0,101.0,93.0,107.0,111.0,118.0,103.0,92.0,120.0,111.0,105.0,93.0,118.0,89.0,98.0,93.0,68.0,85.0,82.0,87.0,81.0,68.0,60.0,68.0,62.0,65.0,52.0,59.0,69.0,42.0,42.0,31.0,33.0,32.0,29.0,29.0,32.0,20.0,23.0,13.0,9.0,9.0,10.0,7.0,2.0,9.0 K84041,69.0,75.0,82.0,85.0,66.0,72.0,79.0,74.0,96.0,95.0,92.0,88.0,77.0,69.0,85.0,98.0,81.0,68.0,88.0,74.0,57.0,58.0,58.0,71.0,70.0,87.0,77.0,64.0,79.0,71.0,76.0,89.0,93.0,110.0,107.0,116.0,101.0,96.0,87.0,107.0,99.0,98.0,78.0,97.0,106.0,104.0,102.0,100.0,97.0,94.0,83.0,110.0,107.0,102.0,106.0,99.0,93.0,107.0,104.0,103.0,91.0,108.0,96.0,86.0,99.0,90.0,77.0,72.0,63.0,76.0,65.0,79.0,67.0,79.0,70.0,57.0,77.0,75.0,84.0,44.0,59.0,54.0,38.0,34.0,33.0,41.0,31.0,26.0,19.0,18.0,17.0,11.0,8.0,8.0,1.0,13.0 K84042,41.0,37.0,32.0,38.0,49.0,48.0,39.0,42.0,35.0,58.0,52.0,42.0,43.0,65.0,37.0,51.0,59.0,58.0,43.0,50.0,38.0,41.0,36.0,41.0,46.0,57.0,40.0,48.0,38.0,44.0,46.0,41.0,51.0,57.0,64.0,55.0,49.0,68.0,53.0,48.0,59.0,57.0,58.0,71.0,54.0,56.0,52.0,45.0,64.0,64.0,62.0,82.0,69.0,80.0,84.0,77.0,60.0,75.0,69.0,73.0,66.0,76.0,84.0,60.0,55.0,64.0,57.0,58.0,66.0,48.0,46.0,59.0,56.0,36.0,51.0,44.0,39.0,67.0,49.0,47.0,48.0,34.0,38.0,31.0,31.0,30.0,14.0,17.0,13.0,17.0,11.0,3.0,7.0,4.0,5.0,5.0 K84043,143.0,138.0,148.0,148.0,130.0,151.0,148.0,140.0,134.0,114.0,117.0,106.0,108.0,90.0,104.0,81.0,99.0,87.0,87.0,81.0,72.0,67.0,70.0,87.0,87.0,118.0,93.0,125.0,134.0,149.0,135.0,158.0,175.0,171.0,187.0,185.0,197.0,180.0,185.0,190.0,187.0,161.0,159.0,151.0,151.0,136.0,123.0,108.0,106.0,103.0,86.0,113.0,104.0,96.0,86.0,89.0,119.0,98.0,96.0,83.0,106.0,89.0,99.0,86.0,84.0,77.0,75.0,79.0,65.0,75.0,67.0,65.0,61.0,62.0,65.0,60.0,46.0,58.0,69.0,40.0,41.0,41.0,27.0,40.0,29.0,24.0,26.0,15.0,25.0,11.0,13.0,11.0,6.0,4.0,6.0,7.0 K84044,105.0,126.0,129.0,125.0,124.0,118.0,135.0,145.0,152.0,159.0,140.0,148.0,132.0,168.0,142.0,135.0,155.0,146.0,136.0,118.0,111.0,81.0,103.0,123.0,100.0,156.0,124.0,166.0,172.0,183.0,189.0,197.0,225.0,242.0,252.0,255.0,249.0,234.0,240.0,270.0,204.0,216.0,224.0,226.0,196.0,193.0,166.0,188.0,163.0,158.0,172.0,172.0,154.0,192.0,163.0,151.0,143.0,146.0,143.0,149.0,139.0,125.0,143.0,145.0,113.0,121.0,106.0,109.0,107.0,101.0,90.0,102.0,103.0,76.0,86.0,94.0,92.0,92.0,89.0,66.0,74.0,58.0,59.0,42.0,46.0,47.0,31.0,35.0,43.0,26.0,26.0,19.0,19.0,6.0,10.0,37.0 K84045,35.0,38.0,30.0,40.0,41.0,32.0,33.0,38.0,38.0,36.0,37.0,31.0,51.0,41.0,42.0,49.0,35.0,31.0,51.0,40.0,29.0,33.0,38.0,35.0,48.0,45.0,50.0,47.0,56.0,66.0,47.0,67.0,47.0,57.0,71.0,66.0,50.0,75.0,58.0,62.0,65.0,60.0,67.0,68.0,48.0,45.0,50.0,49.0,36.0,44.0,34.0,56.0,47.0,33.0,47.0,31.0,49.0,45.0,51.0,48.0,56.0,49.0,69.0,42.0,50.0,38.0,29.0,35.0,26.0,39.0,32.0,36.0,38.0,25.0,27.0,28.0,36.0,36.0,43.0,21.0,22.0,23.0,16.0,20.0,18.0,19.0,7.0,17.0,17.0,16.0,9.0,8.0,5.0,5.0,4.0,9.0 K84046,16.0,28.0,26.0,27.0,27.0,27.0,41.0,31.0,35.0,25.0,38.0,37.0,43.0,34.0,35.0,43.0,33.0,41.0,38.0,24.0,27.0,29.0,30.0,31.0,23.0,15.0,31.0,20.0,22.0,32.0,20.0,21.0,22.0,33.0,28.0,28.0,27.0,37.0,24.0,34.0,30.0,35.0,40.0,29.0,41.0,47.0,34.0,35.0,35.0,36.0,44.0,43.0,38.0,49.0,48.0,46.0,53.0,44.0,44.0,57.0,48.0,44.0,45.0,42.0,60.0,36.0,37.0,42.0,43.0,33.0,48.0,36.0,36.0,29.0,36.0,25.0,46.0,46.0,38.0,40.0,31.0,35.0,20.0,20.0,13.0,16.0,12.0,10.0,17.0,8.0,6.0,4.0,9.0,1.0,4.0,5.0 K84047,31.0,31.0,28.0,32.0,41.0,43.0,45.0,40.0,37.0,51.0,33.0,49.0,44.0,58.0,41.0,41.0,58.0,40.0,47.0,33.0,33.0,36.0,24.0,27.0,30.0,29.0,30.0,35.0,50.0,38.0,37.0,44.0,38.0,44.0,39.0,34.0,48.0,54.0,55.0,42.0,43.0,32.0,45.0,34.0,47.0,49.0,42.0,31.0,49.0,27.0,42.0,50.0,53.0,41.0,52.0,65.0,47.0,64.0,57.0,59.0,47.0,51.0,73.0,57.0,65.0,56.0,52.0,64.0,53.0,49.0,54.0,38.0,56.0,40.0,44.0,44.0,46.0,55.0,37.0,28.0,37.0,23.0,35.0,18.0,14.0,11.0,19.0,13.0,18.0,7.0,14.0,5.0,1.0,3.0,3.0,7.0 K84048,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, K84050,60.0,63.0,55.0,73.0,69.0,60.0,86.0,79.0,109.0,68.0,87.0,90.0,75.0,86.0,81.0,65.0,67.0,80.0,81.0,69.0,62.0,58.0,50.0,80.0,64.0,64.0,58.0,69.0,66.0,70.0,67.0,86.0,71.0,86.0,78.0,79.0,99.0,87.0,85.0,75.0,96.0,72.0,84.0,84.0,80.0,86.0,87.0,84.0,80.0,86.0,106.0,79.0,67.0,94.0,75.0,86.0,98.0,88.0,91.0,82.0,114.0,78.0,93.0,90.0,78.0,78.0,74.0,64.0,65.0,82.0,70.0,72.0,67.0,61.0,62.0,82.0,60.0,69.0,75.0,57.0,60.0,41.0,45.0,29.0,28.0,30.0,26.0,27.0,19.0,19.0,15.0,16.0,10.0,5.0,6.0,7.0 K84051,91.0,89.0,106.0,94.0,107.0,99.0,121.0,112.0,92.0,108.0,129.0,126.0,121.0,121.0,118.0,129.0,116.0,113.0,103.0,99.0,84.0,73.0,68.0,89.0,94.0,104.0,88.0,102.0,103.0,109.0,107.0,112.0,114.0,129.0,117.0,112.0,137.0,133.0,139.0,145.0,103.0,116.0,112.0,104.0,129.0,120.0,123.0,115.0,118.0,99.0,129.0,120.0,146.0,121.0,133.0,142.0,127.0,163.0,131.0,146.0,148.0,160.0,130.0,119.0,123.0,90.0,118.0,107.0,89.0,115.0,80.0,96.0,70.0,83.0,76.0,98.0,89.0,112.0,86.0,80.0,71.0,44.0,56.0,42.0,41.0,30.0,30.0,26.0,35.0,22.0,17.0,9.0,10.0,2.0,4.0,12.0 K84052,92.0,108.0,101.0,137.0,105.0,137.0,113.0,100.0,100.0,112.0,112.0,99.0,103.0,116.0,119.0,101.0,118.0,104.0,74.0,93.0,94.0,75.0,88.0,114.0,95.0,118.0,143.0,159.0,133.0,159.0,149.0,141.0,166.0,180.0,172.0,179.0,188.0,203.0,180.0,163.0,154.0,154.0,165.0,172.0,166.0,152.0,144.0,141.0,137.0,97.0,151.0,135.0,118.0,121.0,106.0,94.0,112.0,125.0,100.0,113.0,125.0,105.0,102.0,95.0,99.0,93.0,97.0,79.0,78.0,86.0,73.0,79.0,70.0,68.0,64.0,55.0,49.0,54.0,53.0,39.0,50.0,46.0,23.0,27.0,23.0,21.0,24.0,23.0,17.0,13.0,14.0,11.0,9.0,9.0,2.0,12.0 K84054,127.0,100.0,128.0,134.0,130.0,124.0,137.0,123.0,131.0,142.0,150.0,160.0,148.0,170.0,145.0,111.0,91.0,100.0,104.0,74.0,69.0,63.0,68.0,89.0,101.0,106.0,118.0,129.0,142.0,125.0,125.0,147.0,125.0,155.0,151.0,153.0,171.0,207.0,181.0,165.0,159.0,172.0,183.0,185.0,139.0,140.0,121.0,137.0,117.0,142.0,143.0,129.0,115.0,130.0,113.0,93.0,110.0,98.0,100.0,90.0,88.0,117.0,102.0,88.0,80.0,92.0,76.0,105.0,75.0,69.0,68.0,63.0,81.0,62.0,65.0,76.0,70.0,69.0,73.0,50.0,58.0,50.0,34.0,32.0,47.0,27.0,24.0,19.0,18.0,14.0,10.0,8.0,5.0,3.0,8.0,13.0 K84055,50.0,45.0,45.0,71.0,69.0,78.0,77.0,83.0,77.0,67.0,91.0,81.0,87.0,81.0,78.0,82.0,76.0,57.0,48.0,62.0,61.0,61.0,49.0,38.0,60.0,51.0,34.0,48.0,40.0,48.0,42.0,52.0,47.0,66.0,69.0,72.0,61.0,78.0,69.0,76.0,84.0,73.0,75.0,67.0,75.0,75.0,73.0,70.0,81.0,72.0,84.0,62.0,83.0,100.0,90.0,97.0,107.0,99.0,95.0,105.0,86.0,93.0,98.0,88.0,94.0,72.0,66.0,62.0,58.0,61.0,57.0,65.0,69.0,51.0,60.0,47.0,67.0,72.0,62.0,45.0,57.0,44.0,46.0,28.0,34.0,32.0,27.0,25.0,26.0,13.0,8.0,14.0,10.0,8.0,3.0,10.0 K84056,15.0,20.0,26.0,24.0,22.0,22.0,23.0,34.0,29.0,25.0,28.0,22.0,23.0,25.0,21.0,29.0,17.0,25.0,25.0,19.0,20.0,20.0,16.0,21.0,22.0,17.0,20.0,15.0,13.0,20.0,17.0,23.0,18.0,22.0,19.0,23.0,34.0,37.0,30.0,28.0,22.0,21.0,29.0,21.0,25.0,30.0,29.0,29.0,20.0,23.0,24.0,30.0,33.0,34.0,28.0,43.0,50.0,51.0,51.0,40.0,48.0,52.0,31.0,40.0,41.0,52.0,41.0,32.0,38.0,42.0,31.0,41.0,33.0,36.0,26.0,36.0,25.0,43.0,18.0,33.0,22.0,20.0,14.0,17.0,19.0,12.0,13.0,11.0,6.0,7.0,11.0,9.0,7.0,5.0,3.0,3.0 K84058,31.0,38.0,25.0,31.0,32.0,41.0,47.0,48.0,46.0,56.0,39.0,43.0,49.0,60.0,51.0,44.0,48.0,52.0,56.0,46.0,37.0,34.0,38.0,30.0,33.0,32.0,42.0,31.0,21.0,27.0,32.0,38.0,49.0,49.0,30.0,45.0,34.0,40.0,45.0,50.0,31.0,35.0,54.0,39.0,44.0,59.0,48.0,58.0,54.0,37.0,48.0,58.0,75.0,55.0,53.0,62.0,68.0,80.0,56.0,66.0,66.0,72.0,54.0,43.0,53.0,57.0,48.0,40.0,53.0,52.0,34.0,42.0,39.0,50.0,47.0,46.0,46.0,48.0,61.0,34.0,34.0,35.0,39.0,24.0,22.0,23.0,14.0,20.0,12.0,11.0,14.0,3.0,7.0,5.0,4.0,5.0 K84059,60.0,57.0,61.0,84.0,71.0,71.0,77.0,70.0,88.0,62.0,92.0,63.0,68.0,60.0,83.0,88.0,65.0,95.0,70.0,67.0,51.0,64.0,44.0,40.0,59.0,67.0,81.0,52.0,71.0,74.0,72.0,88.0,80.0,85.0,86.0,68.0,91.0,85.0,81.0,113.0,84.0,72.0,80.0,100.0,73.0,82.0,75.0,98.0,68.0,79.0,85.0,67.0,72.0,88.0,71.0,77.0,65.0,91.0,97.0,96.0,85.0,86.0,95.0,72.0,68.0,56.0,65.0,51.0,56.0,54.0,50.0,56.0,44.0,50.0,60.0,60.0,53.0,49.0,61.0,48.0,45.0,32.0,28.0,26.0,20.0,24.0,21.0,14.0,9.0,15.0,13.0,4.0,7.0,3.0,3.0,8.0 K84060,21.0,17.0,14.0,20.0,21.0,29.0,18.0,19.0,16.0,20.0,13.0,18.0,23.0,20.0,31.0,24.0,21.0,17.0,24.0,47.0,52.0,76.0,69.0,87.0,87.0,83.0,97.0,98.0,106.0,107.0,111.0,110.0,108.0,70.0,69.0,89.0,66.0,69.0,68.0,58.0,47.0,55.0,50.0,50.0,40.0,50.0,55.0,34.0,39.0,39.0,42.0,30.0,31.0,34.0,27.0,27.0,27.0,32.0,28.0,24.0,29.0,34.0,32.0,23.0,17.0,20.0,16.0,18.0,15.0,19.0,12.0,16.0,17.0,15.0,15.0,11.0,22.0,19.0,11.0,7.0,7.0,7.0,13.0,4.0,4.0,8.0,4.0,2.0,2.0,3.0,4.0,1.0,1.0,1.0,1.0, K84062,61.0,57.0,51.0,65.0,61.0,75.0,71.0,62.0,49.0,58.0,66.0,52.0,63.0,52.0,62.0,60.0,51.0,67.0,68.0,54.0,41.0,41.0,54.0,55.0,50.0,76.0,67.0,100.0,62.0,97.0,83.0,86.0,93.0,107.0,79.0,88.0,79.0,85.0,85.0,84.0,70.0,89.0,75.0,67.0,89.0,73.0,86.0,61.0,68.0,62.0,51.0,61.0,66.0,49.0,52.0,64.0,63.0,67.0,50.0,69.0,57.0,55.0,42.0,42.0,46.0,44.0,33.0,29.0,36.0,39.0,26.0,23.0,26.0,30.0,33.0,20.0,29.0,21.0,19.0,16.0,11.0,17.0,14.0,11.0,13.0,11.0,11.0,8.0,5.0,1.0,3.0,1.0,4.0,3.0,,6.0 K84063,79.0,55.0,65.0,62.0,48.0,64.0,59.0,57.0,49.0,53.0,54.0,61.0,69.0,70.0,51.0,58.0,57.0,74.0,76.0,90.0,94.0,98.0,119.0,126.0,160.0,154.0,158.0,145.0,150.0,163.0,177.0,212.0,196.0,188.0,217.0,190.0,182.0,154.0,189.0,171.0,150.0,145.0,117.0,120.0,120.0,113.0,89.0,86.0,68.0,81.0,66.0,74.0,63.0,74.0,63.0,60.0,55.0,53.0,51.0,43.0,33.0,42.0,42.0,29.0,21.0,35.0,24.0,42.0,23.0,24.0,13.0,18.0,21.0,21.0,23.0,12.0,14.0,12.0,14.0,7.0,8.0,9.0,6.0,9.0,7.0,3.0,2.0,1.0,1.0,6.0,1.0,3.0,1.0,2.0,1.0, K84065,9.0,9.0,9.0,18.0,11.0,13.0,10.0,17.0,13.0,15.0,16.0,19.0,15.0,24.0,18.0,17.0,17.0,21.0,18.0,20.0,15.0,12.0,25.0,16.0,22.0,12.0,11.0,17.0,14.0,8.0,16.0,13.0,18.0,13.0,18.0,20.0,18.0,17.0,21.0,23.0,11.0,21.0,17.0,12.0,20.0,17.0,15.0,14.0,20.0,15.0,21.0,27.0,21.0,22.0,28.0,21.0,23.0,33.0,27.0,23.0,33.0,37.0,25.0,29.0,30.0,26.0,27.0,25.0,28.0,21.0,19.0,21.0,15.0,23.0,19.0,22.0,18.0,24.0,16.0,16.0,15.0,17.0,11.0,7.0,5.0,10.0,5.0,10.0,7.0,4.0,7.0,1.0,,,,3.0 K84066,,,,,,,,,,,,,,,,,,,1.0,1.0,3.0,2.0,2.0,2.0,5.0,8.0,4.0,4.0,7.0,6.0,9.0,7.0,17.0,4.0,10.0,10.0,15.0,7.0,4.0,13.0,13.0,13.0,15.0,15.0,9.0,14.0,16.0,14.0,11.0,9.0,8.0,15.0,19.0,12.0,7.0,9.0,7.0,10.0,9.0,11.0,11.0,7.0,8.0,9.0,2.0,4.0,4.0,6.0,1.0,3.0,,1.0,3.0,2.0,1.0,1.0,,,,,,,,,,,,,,,,,,,, K84071,27.0,43.0,35.0,36.0,40.0,40.0,38.0,50.0,42.0,61.0,66.0,60.0,77.0,90.0,85.0,100.0,98.0,90.0,78.0,68.0,56.0,49.0,52.0,50.0,52.0,43.0,54.0,42.0,54.0,52.0,49.0,32.0,51.0,45.0,53.0,62.0,53.0,67.0,50.0,49.0,55.0,53.0,64.0,63.0,63.0,58.0,54.0,67.0,68.0,58.0,84.0,83.0,78.0,89.0,87.0,90.0,82.0,90.0,76.0,70.0,81.0,72.0,94.0,78.0,72.0,58.0,51.0,63.0,55.0,43.0,52.0,52.0,51.0,57.0,52.0,62.0,58.0,74.0,63.0,45.0,43.0,50.0,38.0,32.0,33.0,29.0,32.0,30.0,18.0,23.0,12.0,16.0,13.0,7.0,3.0,12.0 K84072,38.0,39.0,53.0,44.0,55.0,54.0,56.0,45.0,51.0,60.0,51.0,66.0,51.0,80.0,74.0,75.0,80.0,78.0,72.0,55.0,57.0,66.0,45.0,48.0,69.0,58.0,64.0,62.0,67.0,58.0,72.0,66.0,86.0,78.0,76.0,78.0,79.0,89.0,78.0,85.0,97.0,97.0,78.0,81.0,80.0,70.0,81.0,75.0,82.0,67.0,74.0,84.0,81.0,66.0,95.0,81.0,70.0,58.0,70.0,83.0,89.0,89.0,80.0,83.0,79.0,80.0,72.0,61.0,81.0,49.0,63.0,62.0,49.0,60.0,53.0,78.0,56.0,79.0,46.0,41.0,55.0,35.0,34.0,44.0,27.0,25.0,30.0,22.0,22.0,26.0,13.0,8.0,7.0,13.0,5.0,13.0 K84075,63.0,89.0,88.0,89.0,91.0,108.0,103.0,84.0,87.0,106.0,94.0,102.0,102.0,92.0,95.0,95.0,66.0,81.0,82.0,60.0,69.0,69.0,49.0,54.0,68.0,66.0,71.0,62.0,72.0,91.0,83.0,75.0,87.0,83.0,79.0,85.0,87.0,80.0,77.0,62.0,70.0,75.0,60.0,97.0,92.0,69.0,66.0,77.0,68.0,69.0,58.0,79.0,70.0,86.0,84.0,84.0,66.0,56.0,72.0,73.0,68.0,90.0,89.0,88.0,57.0,65.0,43.0,50.0,37.0,46.0,42.0,28.0,37.0,24.0,36.0,35.0,30.0,25.0,19.0,20.0,30.0,14.0,23.0,10.0,14.0,18.0,14.0,8.0,10.0,5.0,7.0,6.0,2.0,1.0,5.0,6.0 K84078,18.0,19.0,21.0,29.0,29.0,15.0,22.0,29.0,22.0,15.0,27.0,25.0,24.0,13.0,19.0,19.0,18.0,19.0,81.0,188.0,200.0,220.0,243.0,290.0,267.0,268.0,263.0,267.0,258.0,275.0,248.0,250.0,212.0,206.0,174.0,168.0,168.0,141.0,126.0,95.0,104.0,68.0,82.0,45.0,77.0,48.0,42.0,39.0,37.0,29.0,32.0,28.0,29.0,40.0,28.0,31.0,28.0,30.0,22.0,25.0,24.0,27.0,32.0,25.0,26.0,18.0,18.0,21.0,15.0,23.0,18.0,21.0,17.0,19.0,11.0,7.0,22.0,15.0,18.0,15.0,11.0,11.0,8.0,7.0,6.0,5.0,5.0,6.0,4.0,4.0,4.0,1.0,2.0,1.0,1.0,2.0 K84079,28.0,34.0,38.0,38.0,43.0,49.0,50.0,49.0,63.0,59.0,48.0,54.0,59.0,114.0,200.0,193.0,219.0,213.0,161.0,43.0,42.0,29.0,45.0,38.0,37.0,25.0,28.0,44.0,47.0,46.0,51.0,38.0,54.0,54.0,59.0,48.0,66.0,42.0,58.0,52.0,53.0,58.0,69.0,52.0,49.0,53.0,49.0,50.0,49.0,63.0,60.0,61.0,60.0,66.0,55.0,58.0,68.0,57.0,69.0,56.0,62.0,62.0,54.0,70.0,74.0,53.0,56.0,57.0,39.0,35.0,42.0,34.0,42.0,30.0,28.0,31.0,33.0,43.0,34.0,14.0,29.0,21.0,25.0,16.0,13.0,11.0,10.0,4.0,9.0,7.0,12.0,3.0,7.0,1.0,1.0,1.0 K84080,25.0,26.0,20.0,32.0,26.0,17.0,29.0,19.0,26.0,40.0,29.0,20.0,42.0,39.0,29.0,37.0,62.0,72.0,130.0,246.0,257.0,293.0,253.0,254.0,252.0,232.0,248.0,256.0,228.0,209.0,201.0,200.0,172.0,167.0,166.0,149.0,135.0,133.0,112.0,100.0,113.0,88.0,103.0,86.0,75.0,82.0,83.0,71.0,62.0,72.0,56.0,63.0,44.0,61.0,66.0,57.0,41.0,51.0,48.0,58.0,38.0,42.0,57.0,44.0,42.0,44.0,41.0,38.0,40.0,30.0,34.0,35.0,23.0,28.0,36.0,30.0,25.0,34.0,25.0,19.0,23.0,16.0,27.0,15.0,12.0,21.0,15.0,8.0,12.0,4.0,5.0,6.0,4.0,1.0,4.0,3.0 K84082,34.0,46.0,47.0,52.0,60.0,51.0,72.0,66.0,79.0,76.0,90.0,79.0,92.0,91.0,92.0,79.0,79.0,77.0,72.0,63.0,65.0,53.0,49.0,53.0,52.0,71.0,60.0,74.0,65.0,77.0,78.0,82.0,87.0,97.0,78.0,122.0,92.0,104.0,95.0,88.0,116.0,114.0,116.0,109.0,126.0,102.0,105.0,99.0,94.0,89.0,91.0,75.0,90.0,79.0,70.0,71.0,89.0,102.0,90.0,93.0,88.0,88.0,83.0,86.0,87.0,77.0,58.0,71.0,68.0,74.0,63.0,60.0,65.0,63.0,54.0,71.0,70.0,54.0,50.0,35.0,38.0,41.0,26.0,32.0,29.0,16.0,20.0,22.0,24.0,24.0,13.0,16.0,9.0,4.0,5.0,7.0 K84605,13.0,20.0,16.0,13.0,7.0,12.0,7.0,18.0,9.0,20.0,15.0,9.0,9.0,10.0,9.0,6.0,15.0,36.0,83.0,180.0,203.0,178.0,153.0,156.0,139.0,152.0,137.0,134.0,137.0,145.0,143.0,150.0,145.0,119.0,101.0,102.0,99.0,73.0,75.0,73.0,24.0,37.0,45.0,39.0,39.0,29.0,32.0,22.0,28.0,15.0,12.0,20.0,14.0,17.0,26.0,9.0,13.0,14.0,7.0,13.0,22.0,6.0,14.0,6.0,12.0,13.0,12.0,8.0,11.0,10.0,10.0,5.0,8.0,11.0,10.0,5.0,10.0,12.0,6.0,7.0,6.0,7.0,4.0,3.0,3.0,4.0,7.0,4.0,2.0,,1.0,1.0,2.0,1.0,2.0,1.0 K84610,17.0,20.0,20.0,26.0,19.0,30.0,21.0,21.0,28.0,34.0,35.0,31.0,26.0,39.0,30.0,25.0,28.0,24.0,26.0,22.0,22.0,18.0,22.0,21.0,21.0,24.0,21.0,33.0,50.0,39.0,54.0,65.0,66.0,57.0,52.0,47.0,48.0,51.0,43.0,41.0,43.0,41.0,47.0,37.0,46.0,30.0,30.0,32.0,31.0,26.0,26.0,32.0,39.0,24.0,36.0,40.0,37.0,44.0,33.0,37.0,47.0,53.0,32.0,42.0,31.0,34.0,42.0,35.0,32.0,37.0,40.0,26.0,38.0,29.0,41.0,35.0,39.0,33.0,37.0,21.0,20.0,20.0,15.0,16.0,10.0,12.0,7.0,5.0,9.0,5.0,4.0,10.0,2.0,2.0,,10.0 K84613,106.0,115.0,122.0,147.0,92.0,136.0,143.0,130.0,154.0,134.0,139.0,150.0,150.0,142.0,137.0,163.0,151.0,158.0,161.0,117.0,127.0,108.0,108.0,129.0,119.0,112.0,109.0,129.0,123.0,132.0,154.0,159.0,165.0,146.0,158.0,151.0,160.0,184.0,167.0,149.0,150.0,142.0,153.0,156.0,180.0,163.0,148.0,149.0,153.0,143.0,160.0,158.0,188.0,162.0,184.0,178.0,162.0,161.0,151.0,155.0,126.0,151.0,150.0,120.0,95.0,112.0,91.0,100.0,102.0,78.0,69.0,61.0,71.0,54.0,42.0,52.0,56.0,60.0,57.0,41.0,42.0,44.0,45.0,26.0,22.0,18.0,19.0,11.0,10.0,18.0,6.0,3.0,3.0,6.0,3.0,11.0 K84618,41.0,46.0,40.0,37.0,52.0,36.0,50.0,45.0,53.0,49.0,48.0,60.0,77.0,52.0,49.0,54.0,50.0,66.0,48.0,59.0,45.0,36.0,54.0,36.0,44.0,48.0,32.0,57.0,46.0,51.0,61.0,41.0,54.0,57.0,58.0,58.0,75.0,58.0,56.0,62.0,51.0,54.0,49.0,50.0,55.0,72.0,59.0,54.0,55.0,58.0,51.0,82.0,53.0,70.0,60.0,60.0,62.0,61.0,78.0,69.0,71.0,62.0,69.0,48.0,49.0,45.0,35.0,36.0,37.0,34.0,37.0,29.0,35.0,42.0,27.0,26.0,27.0,24.0,39.0,17.0,29.0,18.0,12.0,9.0,8.0,7.0,15.0,8.0,9.0,11.0,4.0,6.0,4.0,5.0,4.0,4.0 K84624,60.0,52.0,62.0,75.0,64.0,50.0,77.0,85.0,102.0,94.0,72.0,81.0,99.0,92.0,99.0,78.0,76.0,77.0,76.0,57.0,61.0,43.0,48.0,42.0,38.0,63.0,51.0,59.0,57.0,58.0,59.0,85.0,60.0,72.0,85.0,89.0,78.0,84.0,81.0,76.0,111.0,86.0,95.0,96.0,98.0,105.0,92.0,91.0,82.0,90.0,102.0,82.0,74.0,85.0,92.0,76.0,66.0,59.0,85.0,53.0,66.0,56.0,55.0,53.0,45.0,41.0,44.0,22.0,26.0,30.0,26.0,31.0,25.0,28.0,16.0,21.0,21.0,19.0,16.0,13.0,18.0,16.0,19.0,2.0,9.0,7.0,8.0,7.0,6.0,4.0,3.0,1.0,1.0,,1.0, Y01964,172.0,184.0,233.0,240.0,211.0,256.0,248.0,277.0,257.0,250.0,265.0,245.0,248.0,252.0,201.0,194.0,202.0,201.0,178.0,154.0,131.0,146.0,111.0,137.0,146.0,133.0,157.0,136.0,140.0,163.0,178.0,179.0,218.0,210.0,251.0,242.0,273.0,263.0,271.0,277.0,255.0,262.0,294.0,273.0,284.0,253.0,239.0,212.0,209.0,153.0,189.0,199.0,153.0,147.0,166.0,151.0,146.0,148.0,131.0,133.0,125.0,138.0,127.0,106.0,95.0,106.0,74.0,77.0,75.0,75.0,74.0,63.0,79.0,50.0,54.0,44.0,59.0,52.0,50.0,44.0,28.0,29.0,21.0,29.0,14.0,23.0,13.0,18.0,19.0,10.0,6.0,8.0,5.0,6.0,3.0,3.0 Y02476,91.0,81.0,93.0,103.0,77.0,84.0,97.0,81.0,95.0,85.0,80.0,74.0,65.0,55.0,58.0,56.0,54.0,47.0,41.0,49.0,46.0,73.0,52.0,75.0,120.0,119.0,145.0,155.0,155.0,187.0,199.0,216.0,232.0,261.0,260.0,277.0,263.0,289.0,256.0,257.0,264.0,244.0,246.0,228.0,190.0,160.0,89.0,100.0,97.0,68.0,80.0,63.0,52.0,59.0,50.0,63.0,48.0,42.0,41.0,38.0,34.0,47.0,38.0,27.0,30.0,19.0,27.0,22.0,14.0,16.0,12.0,9.0,16.0,13.0,15.0,10.0,6.0,7.0,10.0,5.0,11.0,7.0,7.0,2.0,5.0,4.0,1.0,,1.0,1.0,3.0,1.0,,1.0,1.0,2.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 M87001,23.0,22.0,19.0,12.0,35.0,26.0,27.0,23.0,36.0,30.0,22.0,34.0,34.0,41.0,43.0,34.0,42.0,37.0,28.0,40.0,30.0,29.0,31.0,25.0,27.0,37.0,32.0,30.0,40.0,39.0,42.0,34.0,35.0,36.0,48.0,35.0,36.0,40.0,34.0,45.0,46.0,45.0,43.0,37.0,39.0,57.0,37.0,44.0,39.0,44.0,25.0,45.0,41.0,53.0,41.0,36.0,57.0,55.0,53.0,48.0,43.0,53.0,43.0,56.0,42.0,42.0,44.0,34.0,50.0,31.0,43.0,45.0,49.0,43.0,39.0,35.0,47.0,40.0,44.0,24.0,47.0,32.0,26.0,24.0,15.0,23.0,22.0,17.0,11.0,9.0,2.0,9.0,6.0,5.0,1.0,4.0 M87003,58.0,54.0,75.0,69.0,68.0,86.0,83.0,86.0,93.0,90.0,100.0,95.0,109.0,103.0,105.0,99.0,104.0,121.0,103.0,83.0,96.0,102.0,76.0,93.0,92.0,89.0,93.0,77.0,76.0,95.0,77.0,78.0,84.0,97.0,99.0,82.0,83.0,95.0,89.0,102.0,97.0,91.0,95.0,99.0,96.0,106.0,102.0,111.0,110.0,117.0,112.0,129.0,99.0,131.0,162.0,146.0,154.0,136.0,180.0,134.0,139.0,136.0,121.0,146.0,115.0,141.0,117.0,114.0,115.0,109.0,120.0,121.0,132.0,96.0,122.0,137.0,128.0,99.0,141.0,98.0,97.0,94.0,94.0,101.0,60.0,78.0,60.0,56.0,48.0,36.0,17.0,20.0,16.0,7.0,7.0,13.0 M87005,60.0,76.0,68.0,67.0,70.0,65.0,74.0,85.0,73.0,56.0,72.0,57.0,76.0,61.0,63.0,57.0,67.0,67.0,61.0,67.0,68.0,75.0,64.0,65.0,60.0,61.0,67.0,67.0,71.0,79.0,80.0,84.0,72.0,102.0,96.0,78.0,94.0,91.0,100.0,91.0,101.0,84.0,72.0,80.0,81.0,89.0,79.0,77.0,72.0,85.0,74.0,77.0,86.0,106.0,84.0,103.0,102.0,90.0,95.0,86.0,93.0,73.0,82.0,77.0,62.0,58.0,75.0,68.0,56.0,70.0,69.0,62.0,56.0,64.0,55.0,46.0,67.0,69.0,69.0,40.0,48.0,51.0,32.0,32.0,32.0,26.0,31.0,14.0,9.0,5.0,4.0,7.0,9.0,4.0,2.0,8.0 M87006,44.0,46.0,44.0,58.0,54.0,45.0,59.0,37.0,45.0,48.0,46.0,53.0,50.0,47.0,49.0,60.0,47.0,46.0,50.0,50.0,55.0,36.0,47.0,53.0,60.0,66.0,52.0,60.0,78.0,64.0,65.0,71.0,80.0,69.0,66.0,70.0,67.0,79.0,60.0,63.0,56.0,55.0,52.0,49.0,46.0,56.0,41.0,45.0,44.0,48.0,50.0,51.0,56.0,51.0,66.0,80.0,54.0,53.0,63.0,42.0,57.0,64.0,56.0,56.0,45.0,42.0,43.0,50.0,27.0,35.0,30.0,47.0,33.0,22.0,28.0,32.0,27.0,25.0,29.0,24.0,22.0,19.0,21.0,12.0,15.0,14.0,10.0,7.0,14.0,6.0,4.0,4.0,2.0,4.0,1.0,2.0 M87007,38.0,50.0,59.0,53.0,64.0,51.0,62.0,71.0,54.0,68.0,58.0,62.0,53.0,74.0,58.0,82.0,71.0,69.0,69.0,56.0,76.0,56.0,61.0,54.0,66.0,58.0,82.0,62.0,65.0,71.0,72.0,84.0,81.0,80.0,80.0,87.0,75.0,56.0,87.0,71.0,50.0,51.0,73.0,55.0,66.0,55.0,72.0,61.0,71.0,69.0,63.0,85.0,82.0,69.0,75.0,93.0,99.0,101.0,99.0,93.0,75.0,95.0,95.0,86.0,74.0,66.0,58.0,66.0,43.0,59.0,68.0,59.0,57.0,60.0,51.0,56.0,55.0,48.0,60.0,45.0,52.0,35.0,30.0,41.0,28.0,26.0,27.0,25.0,15.0,25.0,12.0,10.0,10.0,8.0,2.0,10.0 M87008,41.0,40.0,51.0,50.0,46.0,39.0,44.0,50.0,64.0,38.0,48.0,46.0,60.0,50.0,45.0,39.0,50.0,40.0,42.0,40.0,45.0,42.0,43.0,46.0,49.0,36.0,43.0,38.0,49.0,61.0,67.0,46.0,56.0,46.0,54.0,62.0,57.0,70.0,60.0,50.0,51.0,51.0,51.0,52.0,60.0,41.0,38.0,46.0,50.0,51.0,43.0,44.0,59.0,55.0,65.0,61.0,71.0,65.0,67.0,55.0,61.0,56.0,63.0,68.0,46.0,65.0,50.0,45.0,39.0,42.0,59.0,35.0,54.0,36.0,40.0,48.0,47.0,38.0,45.0,33.0,32.0,29.0,26.0,30.0,17.0,17.0,13.0,17.0,15.0,6.0,6.0,3.0,3.0,2.0,3.0,1.0 M87009,84.0,85.0,80.0,98.0,83.0,90.0,89.0,109.0,117.0,95.0,104.0,110.0,120.0,133.0,105.0,118.0,112.0,100.0,102.0,105.0,81.0,89.0,101.0,100.0,87.0,99.0,96.0,91.0,95.0,97.0,110.0,117.0,107.0,104.0,121.0,116.0,111.0,130.0,113.0,117.0,109.0,114.0,102.0,107.0,99.0,103.0,104.0,71.0,97.0,87.0,98.0,117.0,105.0,102.0,122.0,120.0,124.0,105.0,104.0,115.0,118.0,127.0,102.0,105.0,96.0,84.0,91.0,89.0,82.0,85.0,78.0,77.0,70.0,82.0,82.0,79.0,68.0,69.0,79.0,61.0,48.0,36.0,31.0,24.0,20.0,30.0,18.0,26.0,14.0,5.0,8.0,15.0,4.0,1.0,1.0,4.0 M87010,57.0,61.0,60.0,56.0,59.0,59.0,52.0,60.0,57.0,61.0,64.0,61.0,67.0,59.0,51.0,63.0,56.0,49.0,60.0,38.0,59.0,47.0,52.0,57.0,60.0,59.0,62.0,63.0,74.0,66.0,67.0,87.0,82.0,76.0,88.0,84.0,97.0,95.0,70.0,79.0,64.0,68.0,63.0,66.0,65.0,51.0,77.0,46.0,60.0,45.0,62.0,42.0,60.0,66.0,78.0,59.0,52.0,70.0,42.0,57.0,55.0,37.0,37.0,41.0,50.0,57.0,30.0,60.0,38.0,39.0,46.0,44.0,37.0,35.0,28.0,36.0,37.0,34.0,29.0,28.0,23.0,17.0,18.0,9.0,17.0,10.0,16.0,12.0,11.0,6.0,8.0,7.0,3.0,2.0,1.0,3.0 M87011,88.0,87.0,112.0,121.0,106.0,108.0,144.0,140.0,138.0,127.0,152.0,181.0,149.0,160.0,166.0,168.0,173.0,161.0,154.0,154.0,148.0,135.0,154.0,135.0,165.0,159.0,139.0,156.0,133.0,179.0,152.0,149.0,147.0,182.0,165.0,160.0,160.0,146.0,161.0,158.0,143.0,157.0,160.0,163.0,167.0,188.0,183.0,153.0,165.0,163.0,188.0,190.0,202.0,200.0,217.0,219.0,220.0,221.0,202.0,238.0,220.0,204.0,203.0,170.0,172.0,167.0,165.0,190.0,185.0,149.0,147.0,150.0,181.0,138.0,147.0,153.0,143.0,162.0,188.0,125.0,140.0,113.0,113.0,71.0,69.0,73.0,69.0,49.0,37.0,38.0,26.0,21.0,16.0,16.0,2.0,21.0 M87012,30.0,46.0,39.0,42.0,47.0,46.0,44.0,59.0,60.0,59.0,67.0,62.0,64.0,65.0,61.0,76.0,69.0,62.0,49.0,53.0,51.0,52.0,50.0,38.0,45.0,42.0,40.0,54.0,46.0,58.0,32.0,58.0,48.0,52.0,53.0,45.0,53.0,39.0,50.0,59.0,48.0,38.0,56.0,43.0,54.0,47.0,40.0,42.0,46.0,36.0,37.0,44.0,45.0,50.0,42.0,51.0,53.0,53.0,45.0,39.0,37.0,55.0,36.0,34.0,40.0,22.0,35.0,25.0,25.0,21.0,25.0,35.0,35.0,21.0,20.0,20.0,19.0,22.0,12.0,12.0,14.0,11.0,11.0,10.0,6.0,10.0,5.0,3.0,4.0,2.0,5.0,4.0,2.0,1.0,1.0,1.0 M87013,53.0,62.0,55.0,59.0,71.0,55.0,64.0,71.0,68.0,76.0,82.0,73.0,95.0,91.0,78.0,86.0,78.0,89.0,77.0,84.0,88.0,76.0,59.0,69.0,84.0,84.0,64.0,75.0,67.0,67.0,82.0,90.0,72.0,78.0,89.0,91.0,98.0,82.0,84.0,86.0,73.0,84.0,111.0,89.0,105.0,75.0,71.0,82.0,63.0,60.0,87.0,71.0,75.0,83.0,65.0,98.0,85.0,76.0,69.0,82.0,73.0,78.0,66.0,65.0,52.0,49.0,68.0,56.0,51.0,52.0,38.0,48.0,38.0,44.0,34.0,29.0,26.0,23.0,28.0,24.0,23.0,17.0,24.0,12.0,14.0,14.0,14.0,15.0,6.0,6.0,8.0,2.0,3.0,1.0,3.0,5.0 M87014,52.0,39.0,43.0,53.0,49.0,55.0,49.0,55.0,36.0,56.0,48.0,51.0,57.0,42.0,43.0,44.0,51.0,52.0,38.0,51.0,26.0,23.0,35.0,31.0,35.0,38.0,42.0,46.0,44.0,41.0,48.0,43.0,49.0,57.0,61.0,48.0,49.0,67.0,40.0,46.0,50.0,56.0,47.0,58.0,51.0,44.0,53.0,47.0,41.0,43.0,52.0,43.0,38.0,54.0,62.0,48.0,58.0,44.0,52.0,64.0,44.0,54.0,49.0,57.0,48.0,48.0,49.0,45.0,40.0,47.0,34.0,42.0,39.0,27.0,47.0,41.0,39.0,43.0,54.0,36.0,37.0,27.0,24.0,19.0,18.0,21.0,22.0,12.0,7.0,9.0,10.0,3.0,5.0,4.0,4.0,5.0 M87015,33.0,24.0,38.0,40.0,48.0,41.0,42.0,37.0,48.0,49.0,46.0,35.0,51.0,34.0,42.0,43.0,42.0,37.0,37.0,44.0,31.0,42.0,40.0,45.0,45.0,32.0,43.0,38.0,38.0,32.0,42.0,49.0,54.0,64.0,52.0,60.0,51.0,41.0,43.0,56.0,30.0,57.0,42.0,49.0,43.0,52.0,37.0,36.0,41.0,31.0,46.0,55.0,54.0,70.0,62.0,54.0,74.0,59.0,67.0,66.0,74.0,45.0,64.0,60.0,51.0,43.0,38.0,38.0,42.0,36.0,48.0,41.0,37.0,42.0,44.0,47.0,40.0,44.0,47.0,36.0,36.0,38.0,27.0,32.0,28.0,23.0,21.0,24.0,19.0,17.0,16.0,10.0,5.0,5.0,1.0,6.0 M87016,33.0,26.0,36.0,35.0,28.0,37.0,43.0,37.0,38.0,39.0,43.0,36.0,49.0,45.0,45.0,40.0,37.0,40.0,29.0,42.0,30.0,34.0,32.0,37.0,23.0,33.0,31.0,39.0,45.0,44.0,44.0,52.0,61.0,51.0,47.0,53.0,37.0,60.0,45.0,40.0,39.0,47.0,28.0,47.0,47.0,37.0,42.0,35.0,32.0,30.0,47.0,45.0,44.0,55.0,48.0,53.0,58.0,53.0,49.0,52.0,59.0,58.0,50.0,52.0,57.0,46.0,47.0,45.0,36.0,40.0,28.0,37.0,37.0,34.0,32.0,29.0,26.0,26.0,23.0,27.0,21.0,23.0,22.0,17.0,15.0,16.0,18.0,15.0,13.0,12.0,12.0,5.0,6.0,6.0,2.0,3.0 M87017,50.0,44.0,47.0,51.0,56.0,43.0,57.0,53.0,63.0,64.0,47.0,65.0,71.0,47.0,54.0,59.0,64.0,59.0,54.0,57.0,54.0,58.0,67.0,60.0,79.0,74.0,77.0,68.0,71.0,70.0,70.0,77.0,74.0,67.0,91.0,75.0,63.0,62.0,72.0,59.0,69.0,82.0,52.0,59.0,67.0,61.0,54.0,60.0,67.0,62.0,60.0,45.0,41.0,59.0,71.0,56.0,61.0,61.0,48.0,53.0,58.0,42.0,54.0,56.0,45.0,42.0,37.0,57.0,39.0,34.0,37.0,35.0,34.0,26.0,39.0,22.0,21.0,26.0,21.0,21.0,13.0,13.0,15.0,10.0,8.0,15.0,5.0,9.0,9.0,14.0,4.0,5.0,7.0,1.0,1.0,8.0 M87018,28.0,24.0,48.0,27.0,23.0,29.0,40.0,35.0,32.0,29.0,34.0,37.0,47.0,30.0,42.0,34.0,30.0,42.0,37.0,34.0,42.0,23.0,29.0,36.0,26.0,30.0,35.0,42.0,37.0,36.0,35.0,36.0,39.0,40.0,54.0,46.0,47.0,53.0,29.0,32.0,41.0,34.0,37.0,44.0,41.0,23.0,46.0,40.0,30.0,40.0,37.0,42.0,72.0,38.0,44.0,47.0,51.0,46.0,56.0,46.0,45.0,45.0,55.0,59.0,50.0,42.0,46.0,40.0,40.0,34.0,35.0,34.0,30.0,28.0,54.0,33.0,27.0,50.0,42.0,22.0,36.0,39.0,36.0,23.0,30.0,22.0,21.0,17.0,21.0,17.0,11.0,13.0,11.0,13.0,9.0,13.0 M87019,24.0,22.0,31.0,22.0,34.0,36.0,34.0,31.0,40.0,30.0,20.0,32.0,46.0,31.0,43.0,47.0,39.0,48.0,36.0,38.0,36.0,51.0,34.0,37.0,41.0,35.0,41.0,47.0,43.0,52.0,49.0,42.0,45.0,33.0,53.0,40.0,32.0,41.0,37.0,33.0,36.0,36.0,40.0,49.0,43.0,32.0,37.0,32.0,33.0,28.0,43.0,37.0,38.0,37.0,48.0,32.0,50.0,33.0,39.0,52.0,40.0,37.0,35.0,41.0,41.0,30.0,27.0,46.0,26.0,23.0,41.0,38.0,31.0,34.0,30.0,27.0,29.0,36.0,29.0,17.0,20.0,17.0,12.0,15.0,16.0,16.0,6.0,13.0,7.0,5.0,5.0,2.0,1.0,1.0,,4.0 M87020,31.0,48.0,44.0,53.0,48.0,56.0,43.0,65.0,60.0,51.0,65.0,46.0,70.0,60.0,60.0,58.0,61.0,66.0,47.0,51.0,45.0,37.0,36.0,45.0,61.0,42.0,43.0,43.0,46.0,53.0,66.0,55.0,61.0,72.0,49.0,57.0,56.0,61.0,54.0,53.0,61.0,60.0,63.0,51.0,69.0,49.0,74.0,54.0,53.0,59.0,48.0,52.0,56.0,57.0,71.0,62.0,64.0,76.0,44.0,71.0,52.0,75.0,58.0,50.0,59.0,59.0,45.0,50.0,45.0,45.0,55.0,43.0,44.0,40.0,30.0,38.0,38.0,46.0,63.0,40.0,22.0,40.0,31.0,19.0,21.0,22.0,17.0,15.0,12.0,14.0,3.0,8.0,4.0,1.0,2.0,6.0 M87021,62.0,63.0,54.0,49.0,56.0,56.0,55.0,49.0,49.0,49.0,47.0,56.0,47.0,53.0,49.0,52.0,45.0,53.0,38.0,39.0,44.0,50.0,39.0,45.0,45.0,47.0,58.0,50.0,56.0,50.0,65.0,53.0,72.0,62.0,68.0,72.0,71.0,60.0,62.0,53.0,45.0,39.0,51.0,51.0,50.0,51.0,43.0,40.0,36.0,43.0,33.0,36.0,53.0,55.0,52.0,43.0,47.0,50.0,31.0,42.0,53.0,46.0,51.0,45.0,42.0,47.0,35.0,39.0,47.0,30.0,27.0,37.0,37.0,23.0,25.0,29.0,29.0,23.0,19.0,24.0,19.0,21.0,17.0,13.0,12.0,11.0,13.0,8.0,8.0,13.0,6.0,5.0,5.0,4.0,2.0,4.0 M87023,39.0,37.0,37.0,38.0,49.0,49.0,57.0,51.0,58.0,59.0,63.0,61.0,57.0,55.0,59.0,60.0,52.0,36.0,52.0,50.0,50.0,47.0,43.0,48.0,63.0,51.0,61.0,47.0,62.0,59.0,68.0,51.0,67.0,68.0,65.0,68.0,62.0,64.0,57.0,68.0,58.0,59.0,58.0,67.0,58.0,66.0,50.0,52.0,48.0,68.0,60.0,61.0,63.0,69.0,73.0,74.0,83.0,77.0,71.0,53.0,64.0,61.0,71.0,57.0,58.0,59.0,55.0,43.0,73.0,33.0,51.0,54.0,39.0,39.0,43.0,46.0,46.0,51.0,49.0,48.0,53.0,48.0,49.0,35.0,23.0,23.0,28.0,16.0,15.0,13.0,7.0,4.0,6.0,5.0,,7.0 M87024,110.0,115.0,111.0,111.0,107.0,141.0,114.0,144.0,140.0,141.0,140.0,125.0,157.0,157.0,131.0,137.0,149.0,134.0,128.0,125.0,102.0,103.0,140.0,116.0,121.0,140.0,116.0,148.0,104.0,134.0,144.0,123.0,150.0,167.0,159.0,169.0,157.0,157.0,166.0,161.0,149.0,132.0,122.0,143.0,150.0,140.0,125.0,129.0,144.0,126.0,130.0,130.0,153.0,163.0,150.0,152.0,147.0,176.0,159.0,164.0,152.0,160.0,156.0,128.0,122.0,109.0,119.0,130.0,119.0,128.0,98.0,101.0,109.0,113.0,82.0,103.0,105.0,125.0,102.0,82.0,92.0,74.0,74.0,63.0,46.0,53.0,42.0,38.0,38.0,26.0,20.0,14.0,15.0,14.0,6.0,11.0 M87025,20.0,38.0,37.0,23.0,35.0,41.0,28.0,26.0,26.0,30.0,27.0,33.0,30.0,32.0,30.0,29.0,23.0,28.0,39.0,32.0,20.0,24.0,25.0,29.0,21.0,22.0,30.0,30.0,24.0,36.0,34.0,43.0,27.0,45.0,38.0,42.0,39.0,44.0,35.0,49.0,41.0,38.0,32.0,34.0,31.0,36.0,40.0,31.0,16.0,33.0,29.0,41.0,29.0,31.0,37.0,34.0,34.0,33.0,25.0,44.0,34.0,35.0,27.0,29.0,19.0,28.0,22.0,23.0,18.0,21.0,22.0,21.0,13.0,27.0,25.0,15.0,22.0,26.0,19.0,15.0,16.0,16.0,20.0,10.0,9.0,12.0,8.0,4.0,7.0,2.0,3.0,4.0,2.0,3.0,2.0,4.0 M87026,37.0,36.0,45.0,44.0,40.0,35.0,38.0,51.0,40.0,55.0,35.0,50.0,43.0,40.0,35.0,36.0,43.0,50.0,34.0,40.0,34.0,47.0,41.0,36.0,38.0,35.0,29.0,30.0,42.0,49.0,48.0,42.0,46.0,58.0,42.0,47.0,53.0,47.0,55.0,44.0,36.0,44.0,50.0,33.0,32.0,34.0,64.0,28.0,31.0,32.0,38.0,46.0,32.0,50.0,26.0,54.0,41.0,39.0,40.0,41.0,32.0,41.0,32.0,38.0,39.0,24.0,30.0,20.0,25.0,20.0,30.0,25.0,19.0,18.0,19.0,24.0,14.0,10.0,19.0,13.0,18.0,9.0,7.0,10.0,8.0,10.0,11.0,6.0,5.0,4.0,3.0,5.0,3.0,,,2.0 M87027,24.0,18.0,23.0,29.0,29.0,26.0,23.0,25.0,27.0,32.0,31.0,34.0,31.0,24.0,33.0,28.0,32.0,21.0,25.0,23.0,21.0,28.0,25.0,26.0,27.0,17.0,19.0,26.0,24.0,42.0,25.0,31.0,34.0,49.0,44.0,28.0,30.0,36.0,28.0,22.0,39.0,21.0,32.0,34.0,34.0,27.0,27.0,21.0,27.0,32.0,27.0,28.0,22.0,31.0,29.0,36.0,39.0,40.0,26.0,41.0,26.0,20.0,32.0,26.0,23.0,21.0,26.0,22.0,22.0,26.0,18.0,25.0,16.0,21.0,18.0,19.0,22.0,20.0,12.0,8.0,13.0,8.0,10.0,10.0,5.0,10.0,5.0,8.0,5.0,5.0,2.0,,,2.0,, M87028,48.0,55.0,50.0,58.0,62.0,62.0,63.0,73.0,51.0,64.0,57.0,56.0,63.0,72.0,72.0,60.0,50.0,59.0,61.0,54.0,52.0,66.0,55.0,44.0,42.0,62.0,36.0,66.0,53.0,67.0,61.0,64.0,70.0,65.0,55.0,61.0,60.0,82.0,62.0,70.0,57.0,74.0,46.0,58.0,72.0,48.0,56.0,56.0,50.0,57.0,55.0,45.0,59.0,68.0,51.0,53.0,77.0,63.0,56.0,46.0,51.0,53.0,47.0,52.0,50.0,34.0,38.0,47.0,42.0,37.0,42.0,26.0,34.0,29.0,27.0,31.0,30.0,35.0,39.0,24.0,31.0,8.0,24.0,16.0,12.0,10.0,15.0,5.0,9.0,5.0,3.0,3.0,4.0,3.0,2.0,1.0 M87030,24.0,16.0,22.0,19.0,23.0,24.0,25.0,20.0,26.0,22.0,20.0,21.0,25.0,27.0,28.0,23.0,22.0,23.0,16.0,18.0,28.0,21.0,22.0,21.0,29.0,20.0,24.0,32.0,28.0,25.0,31.0,31.0,35.0,27.0,33.0,33.0,37.0,33.0,43.0,34.0,31.0,26.0,28.0,32.0,31.0,32.0,27.0,19.0,18.0,26.0,27.0,25.0,27.0,31.0,42.0,36.0,43.0,43.0,34.0,28.0,29.0,31.0,37.0,23.0,34.0,31.0,29.0,28.0,28.0,28.0,23.0,28.0,20.0,30.0,23.0,25.0,25.0,15.0,30.0,16.0,25.0,24.0,18.0,16.0,9.0,16.0,9.0,8.0,8.0,2.0,4.0,4.0,3.0,1.0,1.0,4.0 M87034,27.0,45.0,35.0,40.0,45.0,40.0,39.0,43.0,39.0,54.0,34.0,46.0,42.0,46.0,39.0,33.0,31.0,37.0,31.0,29.0,27.0,32.0,50.0,44.0,40.0,36.0,45.0,41.0,65.0,56.0,69.0,55.0,51.0,51.0,45.0,50.0,54.0,46.0,49.0,41.0,38.0,29.0,46.0,39.0,39.0,39.0,34.0,30.0,30.0,34.0,30.0,41.0,31.0,27.0,38.0,32.0,38.0,39.0,26.0,35.0,25.0,32.0,39.0,40.0,30.0,15.0,28.0,33.0,30.0,24.0,17.0,23.0,28.0,15.0,16.0,13.0,17.0,16.0,17.0,15.0,14.0,12.0,10.0,11.0,6.0,9.0,8.0,8.0,4.0,1.0,3.0,1.0,2.0,4.0,,2.0 M87036,18.0,24.0,18.0,30.0,19.0,17.0,18.0,24.0,36.0,27.0,32.0,34.0,28.0,30.0,29.0,30.0,33.0,33.0,29.0,34.0,35.0,23.0,37.0,37.0,32.0,24.0,20.0,30.0,33.0,33.0,36.0,28.0,33.0,37.0,33.0,35.0,32.0,39.0,34.0,33.0,26.0,24.0,34.0,36.0,30.0,32.0,40.0,19.0,27.0,25.0,25.0,25.0,26.0,24.0,26.0,27.0,20.0,29.0,17.0,22.0,20.0,16.0,14.0,16.0,13.0,17.0,11.0,9.0,10.0,9.0,11.0,14.0,9.0,17.0,12.0,6.0,11.0,8.0,8.0,9.0,4.0,5.0,7.0,1.0,3.0,2.0,5.0,,2.0,3.0,,,2.0,,,2.0 M87037,35.0,41.0,41.0,43.0,45.0,35.0,36.0,35.0,48.0,36.0,44.0,46.0,39.0,46.0,48.0,49.0,39.0,44.0,49.0,43.0,39.0,26.0,34.0,37.0,47.0,44.0,60.0,38.0,54.0,42.0,46.0,57.0,47.0,45.0,54.0,48.0,48.0,55.0,54.0,45.0,36.0,45.0,41.0,43.0,48.0,31.0,50.0,48.0,46.0,40.0,42.0,64.0,60.0,64.0,70.0,72.0,57.0,54.0,49.0,52.0,52.0,55.0,53.0,47.0,46.0,40.0,37.0,35.0,46.0,30.0,36.0,42.0,36.0,29.0,33.0,44.0,31.0,48.0,48.0,44.0,47.0,37.0,36.0,25.0,25.0,19.0,17.0,16.0,12.0,12.0,10.0,9.0,5.0,4.0,2.0,4.0 M87041,41.0,43.0,30.0,29.0,32.0,26.0,39.0,50.0,26.0,37.0,33.0,35.0,44.0,41.0,39.0,34.0,31.0,40.0,36.0,35.0,29.0,32.0,31.0,34.0,30.0,35.0,40.0,38.0,40.0,42.0,42.0,44.0,37.0,41.0,55.0,42.0,43.0,29.0,43.0,33.0,33.0,34.0,25.0,37.0,39.0,38.0,28.0,29.0,28.0,31.0,34.0,42.0,36.0,40.0,47.0,59.0,48.0,56.0,53.0,47.0,42.0,50.0,44.0,44.0,33.0,28.0,23.0,25.0,31.0,21.0,22.0,17.0,37.0,24.0,15.0,21.0,21.0,24.0,22.0,18.0,19.0,25.0,22.0,15.0,19.0,10.0,17.0,12.0,19.0,9.0,2.0,2.0,1.0,,1.0, M87601,45.0,43.0,46.0,59.0,43.0,46.0,63.0,59.0,54.0,59.0,53.0,63.0,40.0,43.0,50.0,47.0,45.0,43.0,34.0,53.0,36.0,45.0,30.0,40.0,46.0,49.0,45.0,39.0,54.0,72.0,43.0,65.0,73.0,72.0,55.0,61.0,46.0,58.0,52.0,57.0,50.0,52.0,41.0,29.0,55.0,48.0,47.0,42.0,42.0,44.0,44.0,53.0,34.0,37.0,36.0,45.0,52.0,39.0,44.0,36.0,38.0,33.0,25.0,31.0,20.0,31.0,32.0,29.0,20.0,17.0,30.0,17.0,24.0,16.0,15.0,17.0,12.0,13.0,15.0,8.0,23.0,12.0,8.0,12.0,8.0,8.0,11.0,9.0,2.0,5.0,4.0,4.0,1.0,1.0,1.0,2.0 M87602,45.0,36.0,44.0,45.0,53.0,61.0,46.0,56.0,59.0,54.0,66.0,51.0,68.0,64.0,59.0,62.0,54.0,75.0,60.0,52.0,69.0,46.0,53.0,59.0,55.0,56.0,47.0,50.0,52.0,57.0,47.0,61.0,65.0,51.0,63.0,53.0,57.0,53.0,69.0,66.0,65.0,56.0,58.0,59.0,59.0,60.0,59.0,56.0,59.0,66.0,74.0,64.0,65.0,80.0,70.0,82.0,85.0,76.0,73.0,66.0,83.0,69.0,59.0,60.0,50.0,49.0,60.0,55.0,51.0,49.0,43.0,45.0,39.0,31.0,33.0,39.0,41.0,57.0,47.0,42.0,32.0,45.0,27.0,27.0,22.0,21.0,29.0,15.0,10.0,11.0,12.0,5.0,6.0,3.0,2.0,4.0 M87605,29.0,20.0,23.0,28.0,31.0,34.0,38.0,44.0,35.0,44.0,38.0,34.0,40.0,35.0,27.0,46.0,42.0,30.0,39.0,37.0,34.0,37.0,20.0,35.0,28.0,35.0,28.0,34.0,36.0,31.0,41.0,37.0,28.0,43.0,43.0,44.0,34.0,41.0,50.0,37.0,35.0,46.0,37.0,28.0,44.0,34.0,40.0,34.0,26.0,30.0,29.0,25.0,19.0,27.0,35.0,32.0,28.0,25.0,27.0,29.0,31.0,13.0,25.0,22.0,20.0,15.0,11.0,12.0,12.0,10.0,12.0,12.0,12.0,12.0,6.0,12.0,9.0,6.0,12.0,9.0,3.0,10.0,5.0,3.0,3.0,4.0,3.0,1.0,,4.0,,1.0,2.0,1.0,, M87612,16.0,14.0,9.0,12.0,18.0,7.0,20.0,12.0,10.0,10.0,18.0,13.0,21.0,11.0,12.0,12.0,8.0,11.0,15.0,12.0,13.0,22.0,19.0,15.0,17.0,13.0,14.0,13.0,25.0,17.0,17.0,23.0,20.0,19.0,16.0,19.0,19.0,21.0,18.0,22.0,20.0,21.0,18.0,13.0,28.0,13.0,13.0,13.0,17.0,18.0,13.0,13.0,20.0,13.0,18.0,16.0,15.0,15.0,15.0,17.0,25.0,22.0,12.0,19.0,22.0,7.0,12.0,14.0,8.0,14.0,10.0,9.0,12.0,14.0,10.0,8.0,11.0,12.0,9.0,8.0,6.0,7.0,11.0,7.0,6.0,,,3.0,2.0,2.0,1.0,,1.0,1.0,3.0,3.0 M87617,43.0,69.0,47.0,53.0,43.0,64.0,49.0,61.0,57.0,58.0,33.0,52.0,51.0,43.0,43.0,47.0,42.0,41.0,46.0,42.0,43.0,44.0,31.0,53.0,41.0,41.0,49.0,38.0,53.0,49.0,57.0,55.0,41.0,47.0,54.0,62.0,69.0,62.0,59.0,57.0,54.0,44.0,44.0,47.0,46.0,44.0,32.0,39.0,33.0,25.0,39.0,39.0,51.0,35.0,45.0,31.0,41.0,32.0,29.0,29.0,33.0,34.0,28.0,26.0,17.0,20.0,23.0,26.0,18.0,29.0,24.0,9.0,13.0,15.0,8.0,14.0,9.0,8.0,11.0,5.0,6.0,9.0,10.0,5.0,5.0,5.0,3.0,2.0,,5.0,,4.0,,2.0,,1.0 M87618,7.0,9.0,11.0,10.0,13.0,16.0,24.0,14.0,22.0,24.0,19.0,17.0,16.0,18.0,14.0,16.0,9.0,15.0,16.0,21.0,10.0,18.0,14.0,9.0,20.0,18.0,21.0,15.0,18.0,23.0,16.0,30.0,15.0,18.0,23.0,21.0,33.0,26.0,22.0,20.0,22.0,16.0,22.0,17.0,16.0,16.0,16.0,24.0,17.0,15.0,10.0,18.0,24.0,26.0,23.0,24.0,26.0,18.0,18.0,33.0,25.0,22.0,29.0,31.0,27.0,32.0,12.0,27.0,22.0,15.0,17.0,16.0,16.0,9.0,20.0,10.0,9.0,13.0,11.0,10.0,15.0,4.0,8.0,,5.0,2.0,,3.0,2.0,1.0,2.0,,,,,1.0 M87620,42.0,41.0,35.0,53.0,38.0,54.0,55.0,49.0,56.0,41.0,54.0,44.0,55.0,64.0,39.0,43.0,42.0,34.0,48.0,25.0,34.0,31.0,39.0,33.0,43.0,43.0,45.0,45.0,46.0,44.0,41.0,39.0,52.0,52.0,62.0,40.0,57.0,52.0,67.0,59.0,53.0,66.0,39.0,40.0,50.0,37.0,46.0,34.0,33.0,43.0,30.0,35.0,59.0,51.0,43.0,40.0,51.0,52.0,49.0,40.0,42.0,47.0,52.0,42.0,45.0,33.0,30.0,27.0,20.0,23.0,22.0,19.0,19.0,19.0,26.0,14.0,26.0,17.0,10.0,13.0,8.0,11.0,7.0,5.0,6.0,7.0,2.0,3.0,4.0,6.0,1.0,1.0,,2.0,,1.0 M87621,8.0,10.0,9.0,17.0,13.0,20.0,16.0,21.0,14.0,14.0,13.0,13.0,11.0,18.0,22.0,15.0,16.0,13.0,14.0,17.0,13.0,17.0,18.0,11.0,15.0,24.0,16.0,22.0,13.0,28.0,20.0,16.0,19.0,19.0,24.0,21.0,18.0,27.0,17.0,20.0,18.0,22.0,25.0,12.0,21.0,18.0,13.0,14.0,9.0,15.0,17.0,14.0,19.0,17.0,23.0,23.0,13.0,23.0,24.0,24.0,26.0,20.0,25.0,27.0,17.0,13.0,9.0,12.0,19.0,14.0,10.0,12.0,9.0,14.0,8.0,11.0,12.0,19.0,6.0,5.0,6.0,5.0,5.0,2.0,3.0,1.0,3.0,2.0,1.0,3.0,1.0,2.0,1.0,,, M87623,28.0,33.0,18.0,24.0,22.0,20.0,23.0,20.0,25.0,21.0,22.0,29.0,25.0,37.0,29.0,29.0,36.0,26.0,35.0,24.0,27.0,28.0,27.0,27.0,28.0,23.0,27.0,25.0,18.0,27.0,30.0,33.0,27.0,23.0,27.0,24.0,26.0,24.0,32.0,32.0,29.0,18.0,22.0,21.0,32.0,20.0,22.0,22.0,23.0,17.0,18.0,25.0,18.0,17.0,17.0,18.0,15.0,17.0,23.0,11.0,14.0,17.0,16.0,21.0,22.0,16.0,17.0,16.0,14.0,9.0,11.0,10.0,18.0,9.0,8.0,12.0,6.0,10.0,9.0,7.0,6.0,5.0,2.0,4.0,2.0,1.0,3.0,,1.0,1.0,2.0,3.0,1.0,2.0,1.0,1.0 M87628,19.0,20.0,28.0,18.0,25.0,23.0,22.0,21.0,13.0,20.0,34.0,29.0,29.0,24.0,30.0,28.0,28.0,19.0,25.0,29.0,27.0,28.0,30.0,24.0,35.0,17.0,26.0,29.0,21.0,29.0,33.0,33.0,23.0,29.0,24.0,21.0,35.0,27.0,29.0,28.0,25.0,32.0,22.0,32.0,23.0,23.0,25.0,19.0,17.0,22.0,23.0,17.0,19.0,12.0,10.0,20.0,18.0,10.0,8.0,8.0,11.0,5.0,6.0,10.0,8.0,8.0,10.0,10.0,11.0,8.0,10.0,13.0,16.0,14.0,6.0,8.0,9.0,13.0,13.0,10.0,17.0,16.0,14.0,14.0,12.0,11.0,9.0,7.0,13.0,11.0,14.0,10.0,8.0,8.0,8.0,13.0 M87638,21.0,22.0,22.0,17.0,18.0,24.0,21.0,20.0,14.0,17.0,28.0,16.0,24.0,31.0,28.0,19.0,18.0,18.0,27.0,14.0,20.0,9.0,14.0,13.0,25.0,14.0,26.0,25.0,21.0,29.0,16.0,30.0,25.0,32.0,39.0,27.0,27.0,21.0,22.0,25.0,25.0,19.0,27.0,15.0,22.0,24.0,31.0,21.0,24.0,22.0,17.0,11.0,30.0,27.0,33.0,26.0,43.0,25.0,28.0,31.0,26.0,26.0,23.0,29.0,25.0,19.0,26.0,27.0,14.0,21.0,11.0,15.0,24.0,23.0,23.0,25.0,24.0,19.0,18.0,15.0,20.0,20.0,17.0,10.0,12.0,7.0,6.0,6.0,7.0,7.0,6.0,1.0,1.0,3.0,1.0,1.0 M88001,70.0,45.0,61.0,62.0,72.0,58.0,84.0,91.0,79.0,99.0,85.0,82.0,97.0,86.0,86.0,74.0,65.0,80.0,82.0,60.0,54.0,56.0,52.0,59.0,43.0,72.0,63.0,70.0,74.0,79.0,71.0,74.0,85.0,74.0,75.0,66.0,83.0,73.0,77.0,73.0,80.0,71.0,63.0,79.0,67.0,61.0,66.0,65.0,49.0,73.0,64.0,46.0,62.0,72.0,74.0,73.0,67.0,54.0,62.0,58.0,70.0,61.0,60.0,50.0,57.0,59.0,48.0,40.0,48.0,42.0,41.0,35.0,25.0,29.0,24.0,33.0,27.0,23.0,20.0,20.0,15.0,17.0,17.0,16.0,15.0,11.0,11.0,8.0,11.0,3.0,11.0,4.0,1.0,3.0,2.0,4.0 M88002,53.0,68.0,66.0,53.0,63.0,56.0,59.0,61.0,74.0,61.0,63.0,54.0,62.0,62.0,52.0,46.0,66.0,59.0,66.0,52.0,85.0,73.0,67.0,92.0,106.0,118.0,84.0,118.0,130.0,125.0,109.0,103.0,93.0,109.0,89.0,103.0,86.0,92.0,87.0,73.0,65.0,87.0,83.0,64.0,56.0,69.0,61.0,38.0,47.0,52.0,46.0,47.0,47.0,45.0,53.0,57.0,55.0,41.0,60.0,42.0,45.0,39.0,36.0,34.0,48.0,30.0,42.0,44.0,32.0,19.0,31.0,25.0,21.0,24.0,26.0,19.0,14.0,15.0,15.0,13.0,20.0,14.0,11.0,9.0,10.0,5.0,7.0,5.0,7.0,3.0,3.0,2.0,2.0,1.0,3.0,2.0 M88003,46.0,49.0,59.0,57.0,59.0,69.0,64.0,69.0,80.0,84.0,69.0,73.0,75.0,87.0,70.0,74.0,81.0,88.0,74.0,71.0,66.0,71.0,54.0,67.0,67.0,77.0,48.0,68.0,77.0,66.0,61.0,70.0,70.0,78.0,74.0,82.0,75.0,83.0,86.0,86.0,68.0,95.0,84.0,85.0,75.0,83.0,78.0,60.0,68.0,75.0,84.0,57.0,81.0,74.0,84.0,81.0,77.0,76.0,79.0,81.0,79.0,70.0,80.0,62.0,62.0,70.0,61.0,61.0,48.0,60.0,62.0,55.0,49.0,43.0,67.0,53.0,61.0,64.0,49.0,34.0,46.0,34.0,34.0,23.0,16.0,17.0,26.0,17.0,19.0,15.0,7.0,9.0,4.0,3.0,5.0,7.0 M88004,192.0,231.0,217.0,227.0,262.0,281.0,255.0,273.0,294.0,289.0,263.0,283.0,315.0,323.0,305.0,304.0,339.0,333.0,274.0,270.0,262.0,258.0,247.0,227.0,230.0,243.0,255.0,267.0,232.0,239.0,258.0,251.0,267.0,252.0,276.0,298.0,295.0,301.0,290.0,290.0,321.0,265.0,285.0,278.0,295.0,246.0,282.0,243.0,228.0,267.0,233.0,249.0,279.0,241.0,288.0,255.0,264.0,283.0,260.0,238.0,225.0,256.0,221.0,228.0,210.0,195.0,202.0,178.0,179.0,155.0,170.0,132.0,154.0,149.0,131.0,121.0,152.0,122.0,142.0,106.0,96.0,109.0,94.0,77.0,76.0,64.0,59.0,56.0,34.0,33.0,37.0,14.0,20.0,9.0,10.0,13.0 M88006,78.0,69.0,79.0,75.0,58.0,79.0,79.0,80.0,94.0,101.0,87.0,94.0,101.0,101.0,89.0,106.0,97.0,116.0,110.0,104.0,108.0,116.0,122.0,136.0,134.0,131.0,122.0,132.0,129.0,120.0,109.0,111.0,106.0,104.0,105.0,98.0,95.0,98.0,97.0,90.0,90.0,88.0,104.0,86.0,79.0,87.0,90.0,78.0,80.0,87.0,71.0,80.0,73.0,63.0,62.0,62.0,54.0,57.0,58.0,63.0,50.0,43.0,51.0,58.0,39.0,56.0,42.0,31.0,31.0,25.0,24.0,16.0,25.0,19.0,19.0,17.0,18.0,22.0,12.0,14.0,17.0,15.0,18.0,9.0,12.0,9.0,13.0,8.0,2.0,7.0,1.0,4.0,3.0,2.0,3.0,1.0 M88007,42.0,56.0,42.0,47.0,59.0,58.0,58.0,67.0,56.0,52.0,66.0,57.0,73.0,74.0,58.0,74.0,73.0,63.0,58.0,64.0,67.0,60.0,58.0,50.0,68.0,59.0,45.0,62.0,62.0,56.0,56.0,72.0,67.0,75.0,67.0,66.0,76.0,75.0,57.0,69.0,73.0,55.0,57.0,53.0,56.0,69.0,73.0,51.0,49.0,52.0,64.0,70.0,69.0,72.0,67.0,68.0,58.0,55.0,58.0,69.0,66.0,58.0,70.0,75.0,55.0,45.0,54.0,49.0,51.0,54.0,33.0,61.0,37.0,47.0,37.0,46.0,31.0,31.0,32.0,25.0,24.0,20.0,30.0,23.0,21.0,20.0,10.0,14.0,17.0,16.0,11.0,6.0,2.0,2.0,2.0,7.0 M88008,35.0,24.0,29.0,23.0,32.0,27.0,36.0,30.0,30.0,30.0,27.0,32.0,30.0,37.0,24.0,30.0,28.0,31.0,31.0,25.0,33.0,38.0,43.0,29.0,44.0,31.0,30.0,35.0,39.0,36.0,41.0,43.0,47.0,43.0,38.0,53.0,40.0,36.0,38.0,39.0,35.0,34.0,32.0,38.0,37.0,29.0,33.0,24.0,32.0,32.0,22.0,37.0,33.0,36.0,37.0,33.0,35.0,32.0,31.0,33.0,29.0,33.0,34.0,27.0,31.0,28.0,33.0,34.0,30.0,39.0,26.0,25.0,23.0,16.0,18.0,20.0,16.0,20.0,23.0,7.0,11.0,17.0,12.0,4.0,8.0,3.0,4.0,14.0,6.0,4.0,2.0,4.0,2.0,1.0,1.0,2.0 M88009,47.0,64.0,45.0,63.0,55.0,60.0,71.0,78.0,73.0,74.0,79.0,81.0,74.0,88.0,69.0,67.0,64.0,83.0,66.0,80.0,72.0,57.0,58.0,73.0,73.0,79.0,59.0,70.0,72.0,82.0,86.0,68.0,70.0,87.0,85.0,78.0,75.0,68.0,79.0,51.0,67.0,55.0,56.0,75.0,61.0,57.0,57.0,68.0,58.0,58.0,57.0,59.0,64.0,55.0,56.0,71.0,51.0,50.0,60.0,66.0,62.0,49.0,49.0,49.0,51.0,39.0,30.0,42.0,31.0,23.0,25.0,31.0,34.0,23.0,22.0,26.0,21.0,28.0,20.0,21.0,15.0,18.0,23.0,14.0,10.0,11.0,15.0,15.0,10.0,10.0,5.0,7.0,2.0,2.0,2.0,6.0 M88010,53.0,53.0,60.0,51.0,69.0,70.0,50.0,70.0,69.0,78.0,64.0,63.0,73.0,63.0,61.0,80.0,75.0,71.0,57.0,52.0,50.0,63.0,50.0,55.0,48.0,54.0,58.0,58.0,57.0,54.0,60.0,59.0,77.0,69.0,63.0,57.0,70.0,81.0,57.0,74.0,59.0,45.0,46.0,44.0,62.0,55.0,57.0,40.0,56.0,45.0,51.0,46.0,48.0,57.0,53.0,54.0,57.0,47.0,61.0,53.0,66.0,44.0,47.0,29.0,40.0,45.0,40.0,36.0,39.0,29.0,35.0,38.0,24.0,33.0,23.0,21.0,18.0,33.0,36.0,25.0,20.0,25.0,21.0,13.0,13.0,16.0,11.0,9.0,2.0,6.0,3.0,4.0,1.0,1.0,1.0,1.0 M88013,61.0,69.0,78.0,77.0,79.0,103.0,89.0,95.0,94.0,86.0,113.0,112.0,97.0,106.0,108.0,115.0,86.0,88.0,90.0,111.0,96.0,79.0,82.0,84.0,78.0,96.0,96.0,104.0,76.0,88.0,85.0,97.0,112.0,109.0,93.0,95.0,86.0,108.0,105.0,89.0,94.0,93.0,78.0,96.0,87.0,103.0,99.0,81.0,75.0,79.0,78.0,94.0,88.0,81.0,86.0,93.0,81.0,95.0,86.0,84.0,95.0,94.0,89.0,90.0,77.0,54.0,60.0,75.0,66.0,72.0,51.0,55.0,47.0,47.0,48.0,50.0,55.0,46.0,46.0,25.0,33.0,41.0,31.0,29.0,24.0,27.0,19.0,20.0,14.0,13.0,8.0,5.0,3.0,1.0,6.0,6.0 M88014,45.0,44.0,43.0,38.0,39.0,50.0,30.0,39.0,52.0,38.0,49.0,49.0,49.0,47.0,37.0,40.0,36.0,48.0,41.0,40.0,41.0,53.0,56.0,65.0,78.0,62.0,60.0,60.0,61.0,64.0,57.0,60.0,55.0,57.0,52.0,53.0,65.0,73.0,56.0,53.0,53.0,40.0,47.0,40.0,56.0,49.0,41.0,36.0,58.0,58.0,44.0,51.0,39.0,44.0,43.0,52.0,35.0,54.0,46.0,41.0,27.0,31.0,25.0,25.0,36.0,25.0,27.0,24.0,37.0,21.0,23.0,14.0,20.0,19.0,24.0,26.0,17.0,15.0,13.0,20.0,9.0,11.0,13.0,10.0,8.0,9.0,8.0,1.0,1.0,9.0,2.0,2.0,6.0,1.0,1.0,2.0 M88015,33.0,64.0,64.0,74.0,59.0,76.0,73.0,59.0,72.0,63.0,59.0,65.0,57.0,49.0,69.0,73.0,66.0,68.0,68.0,54.0,51.0,60.0,55.0,61.0,68.0,80.0,65.0,72.0,60.0,89.0,69.0,78.0,75.0,90.0,98.0,93.0,91.0,68.0,83.0,82.0,81.0,69.0,84.0,78.0,76.0,51.0,82.0,84.0,64.0,61.0,65.0,68.0,71.0,59.0,75.0,64.0,79.0,65.0,70.0,68.0,70.0,75.0,64.0,61.0,49.0,50.0,46.0,36.0,37.0,47.0,43.0,38.0,40.0,33.0,42.0,30.0,28.0,26.0,27.0,18.0,24.0,28.0,17.0,26.0,14.0,24.0,18.0,14.0,8.0,5.0,6.0,5.0,4.0,2.0,3.0, M88016,26.0,30.0,29.0,37.0,19.0,28.0,25.0,25.0,25.0,32.0,30.0,25.0,22.0,28.0,25.0,23.0,19.0,22.0,18.0,19.0,22.0,25.0,20.0,17.0,19.0,19.0,27.0,31.0,28.0,30.0,29.0,20.0,32.0,43.0,30.0,32.0,29.0,33.0,32.0,26.0,29.0,21.0,28.0,23.0,20.0,18.0,27.0,25.0,25.0,28.0,20.0,23.0,26.0,23.0,22.0,24.0,23.0,30.0,23.0,23.0,23.0,15.0,18.0,10.0,14.0,9.0,13.0,12.0,10.0,8.0,13.0,9.0,12.0,16.0,8.0,14.0,16.0,10.0,11.0,8.0,12.0,4.0,11.0,10.0,4.0,6.0,4.0,4.0,2.0,2.0,,,1.0,4.0,, M88018,122.0,122.0,114.0,141.0,123.0,145.0,146.0,151.0,167.0,157.0,163.0,157.0,142.0,157.0,174.0,159.0,148.0,151.0,137.0,132.0,132.0,119.0,133.0,150.0,154.0,131.0,138.0,175.0,157.0,148.0,174.0,164.0,187.0,187.0,186.0,191.0,185.0,172.0,161.0,177.0,171.0,174.0,157.0,141.0,148.0,137.0,151.0,120.0,132.0,158.0,123.0,126.0,122.0,139.0,132.0,128.0,153.0,132.0,126.0,124.0,130.0,107.0,112.0,127.0,129.0,98.0,83.0,103.0,83.0,70.0,95.0,83.0,76.0,71.0,52.0,68.0,57.0,70.0,67.0,51.0,48.0,46.0,39.0,30.0,32.0,20.0,29.0,14.0,13.0,9.0,10.0,13.0,12.0,5.0,2.0,6.0 M88019,22.0,16.0,21.0,25.0,25.0,27.0,23.0,18.0,24.0,28.0,21.0,21.0,19.0,18.0,13.0,14.0,17.0,19.0,13.0,25.0,17.0,25.0,22.0,34.0,24.0,37.0,40.0,36.0,38.0,28.0,40.0,36.0,34.0,23.0,29.0,23.0,37.0,33.0,21.0,43.0,28.0,22.0,31.0,26.0,30.0,18.0,19.0,24.0,21.0,27.0,18.0,17.0,30.0,14.0,15.0,14.0,15.0,15.0,19.0,25.0,14.0,17.0,14.0,9.0,17.0,14.0,13.0,12.0,7.0,10.0,6.0,11.0,6.0,9.0,8.0,8.0,6.0,9.0,13.0,2.0,5.0,7.0,5.0,4.0,3.0,4.0,1.0,5.0,2.0,2.0,1.0,2.0,2.0,1.0,, M88021,48.0,55.0,47.0,59.0,58.0,56.0,65.0,67.0,70.0,76.0,57.0,77.0,66.0,71.0,71.0,64.0,60.0,60.0,70.0,63.0,62.0,48.0,54.0,53.0,69.0,63.0,61.0,47.0,66.0,60.0,65.0,70.0,66.0,81.0,66.0,77.0,61.0,80.0,76.0,75.0,81.0,54.0,74.0,65.0,69.0,76.0,77.0,77.0,70.0,70.0,55.0,82.0,68.0,81.0,77.0,92.0,81.0,77.0,82.0,87.0,73.0,71.0,68.0,63.0,67.0,58.0,65.0,47.0,67.0,45.0,54.0,60.0,40.0,54.0,38.0,42.0,39.0,53.0,44.0,33.0,44.0,30.0,32.0,36.0,25.0,17.0,24.0,25.0,23.0,18.0,10.0,10.0,10.0,9.0,5.0,11.0 M88022,7.0,13.0,16.0,22.0,21.0,12.0,19.0,11.0,18.0,27.0,20.0,23.0,29.0,30.0,27.0,26.0,22.0,29.0,15.0,15.0,22.0,28.0,22.0,20.0,25.0,22.0,31.0,24.0,24.0,23.0,16.0,12.0,23.0,25.0,25.0,23.0,20.0,18.0,24.0,27.0,26.0,15.0,19.0,21.0,33.0,15.0,12.0,20.0,30.0,23.0,26.0,22.0,19.0,22.0,36.0,20.0,22.0,31.0,16.0,22.0,24.0,32.0,38.0,26.0,36.0,23.0,19.0,19.0,30.0,19.0,22.0,19.0,22.0,14.0,25.0,18.0,12.0,17.0,17.0,12.0,12.0,6.0,16.0,14.0,6.0,5.0,8.0,10.0,5.0,3.0,4.0,2.0,2.0,1.0,1.0,1.0 M88023,44.0,44.0,52.0,48.0,46.0,43.0,46.0,39.0,38.0,41.0,40.0,45.0,53.0,48.0,49.0,54.0,43.0,46.0,46.0,38.0,43.0,49.0,42.0,49.0,40.0,50.0,53.0,47.0,55.0,41.0,50.0,56.0,40.0,46.0,42.0,43.0,36.0,44.0,49.0,34.0,55.0,44.0,45.0,41.0,44.0,44.0,50.0,33.0,39.0,36.0,30.0,32.0,39.0,45.0,44.0,29.0,44.0,31.0,41.0,32.0,34.0,33.0,39.0,25.0,32.0,23.0,33.0,15.0,25.0,17.0,29.0,23.0,25.0,20.0,18.0,12.0,14.0,22.0,13.0,17.0,10.0,12.0,7.0,9.0,7.0,2.0,5.0,10.0,3.0,1.0,5.0,3.0,4.0,1.0,,1.0 M88026,67.0,64.0,59.0,70.0,63.0,62.0,61.0,44.0,59.0,47.0,72.0,48.0,59.0,62.0,60.0,69.0,49.0,50.0,54.0,52.0,48.0,53.0,45.0,49.0,61.0,55.0,54.0,66.0,71.0,55.0,69.0,57.0,70.0,80.0,71.0,70.0,66.0,62.0,74.0,57.0,67.0,66.0,55.0,59.0,64.0,64.0,55.0,48.0,46.0,44.0,44.0,49.0,57.0,63.0,45.0,47.0,40.0,65.0,47.0,48.0,42.0,40.0,52.0,48.0,33.0,40.0,33.0,35.0,33.0,27.0,24.0,21.0,21.0,20.0,18.0,19.0,22.0,29.0,24.0,17.0,14.0,23.0,12.0,11.0,12.0,9.0,8.0,6.0,3.0,5.0,4.0,4.0,,1.0,,1.0 M88030,35.0,36.0,24.0,32.0,26.0,31.0,30.0,43.0,38.0,36.0,26.0,50.0,30.0,40.0,42.0,21.0,44.0,39.0,30.0,30.0,38.0,38.0,38.0,34.0,35.0,33.0,36.0,31.0,32.0,41.0,34.0,41.0,43.0,35.0,50.0,41.0,31.0,40.0,30.0,44.0,36.0,40.0,32.0,33.0,33.0,31.0,30.0,35.0,33.0,36.0,35.0,28.0,39.0,56.0,46.0,52.0,54.0,58.0,40.0,41.0,46.0,39.0,55.0,38.0,39.0,34.0,41.0,27.0,21.0,27.0,21.0,33.0,25.0,36.0,23.0,22.0,37.0,31.0,31.0,22.0,24.0,31.0,21.0,25.0,14.0,17.0,13.0,16.0,12.0,6.0,4.0,2.0,4.0,4.0,,6.0 M88035,13.0,23.0,25.0,26.0,18.0,20.0,26.0,19.0,27.0,31.0,24.0,32.0,25.0,30.0,26.0,32.0,19.0,21.0,31.0,23.0,18.0,33.0,27.0,26.0,17.0,30.0,23.0,29.0,27.0,31.0,23.0,32.0,44.0,21.0,22.0,27.0,32.0,27.0,30.0,33.0,23.0,15.0,23.0,25.0,17.0,24.0,30.0,20.0,20.0,26.0,21.0,25.0,20.0,18.0,27.0,25.0,30.0,27.0,14.0,29.0,27.0,21.0,16.0,13.0,18.0,10.0,18.0,14.0,13.0,14.0,17.0,12.0,11.0,8.0,13.0,16.0,16.0,12.0,10.0,6.0,7.0,8.0,3.0,3.0,1.0,2.0,2.0,4.0,4.0,4.0,1.0,2.0,,1.0,,1.0 M88038,77.0,63.0,77.0,87.0,67.0,72.0,81.0,81.0,84.0,85.0,87.0,72.0,96.0,99.0,92.0,93.0,91.0,94.0,85.0,97.0,105.0,100.0,76.0,97.0,89.0,110.0,88.0,110.0,121.0,102.0,79.0,90.0,99.0,93.0,84.0,92.0,103.0,96.0,89.0,90.0,102.0,119.0,125.0,98.0,79.0,88.0,89.0,108.0,81.0,75.0,97.0,88.0,101.0,99.0,100.0,75.0,88.0,97.0,83.0,91.0,94.0,78.0,91.0,75.0,81.0,58.0,55.0,67.0,64.0,73.0,52.0,51.0,51.0,56.0,45.0,46.0,47.0,47.0,42.0,29.0,24.0,30.0,31.0,25.0,18.0,16.0,18.0,18.0,7.0,8.0,4.0,14.0,2.0,4.0,5.0,3.0 M88040,32.0,29.0,28.0,46.0,34.0,37.0,35.0,34.0,35.0,37.0,39.0,39.0,56.0,41.0,35.0,45.0,51.0,57.0,45.0,44.0,61.0,50.0,46.0,64.0,66.0,66.0,76.0,78.0,68.0,77.0,68.0,66.0,47.0,87.0,69.0,80.0,65.0,78.0,79.0,71.0,68.0,63.0,74.0,54.0,55.0,66.0,70.0,64.0,67.0,63.0,54.0,59.0,50.0,48.0,53.0,66.0,52.0,45.0,40.0,45.0,36.0,35.0,37.0,41.0,40.0,26.0,31.0,35.0,26.0,24.0,36.0,18.0,23.0,18.0,18.0,21.0,10.0,14.0,8.0,7.0,12.0,7.0,8.0,7.0,5.0,5.0,8.0,1.0,4.0,3.0,2.0,2.0,3.0,4.0,1.0, M88041,27.0,24.0,16.0,24.0,24.0,20.0,23.0,24.0,35.0,32.0,15.0,27.0,29.0,30.0,30.0,31.0,30.0,27.0,23.0,34.0,25.0,39.0,37.0,29.0,40.0,35.0,35.0,41.0,40.0,27.0,30.0,29.0,24.0,30.0,29.0,27.0,30.0,31.0,33.0,23.0,27.0,36.0,24.0,19.0,32.0,38.0,29.0,34.0,22.0,24.0,33.0,34.0,27.0,30.0,22.0,25.0,23.0,13.0,17.0,12.0,17.0,13.0,20.0,20.0,11.0,11.0,10.0,9.0,11.0,4.0,6.0,7.0,7.0,3.0,5.0,5.0,3.0,2.0,5.0,2.0,,4.0,3.0,2.0,1.0,8.0,1.0,1.0,1.0,1.0,1.0,1.0,,,,3.0 M88042,40.0,42.0,40.0,36.0,37.0,29.0,35.0,36.0,36.0,45.0,40.0,41.0,34.0,43.0,35.0,42.0,41.0,43.0,36.0,32.0,37.0,34.0,40.0,43.0,41.0,53.0,53.0,46.0,49.0,43.0,49.0,46.0,54.0,68.0,60.0,60.0,60.0,67.0,63.0,58.0,57.0,56.0,54.0,55.0,48.0,56.0,35.0,50.0,50.0,45.0,45.0,36.0,34.0,35.0,32.0,34.0,40.0,42.0,34.0,30.0,36.0,23.0,22.0,22.0,24.0,24.0,16.0,12.0,26.0,11.0,19.0,14.0,17.0,13.0,8.0,8.0,9.0,15.0,12.0,8.0,5.0,3.0,3.0,3.0,8.0,3.0,3.0,3.0,4.0,,,2.0,,2.0,,1.0 M88043,54.0,52.0,62.0,60.0,58.0,34.0,64.0,58.0,73.0,52.0,49.0,63.0,61.0,71.0,56.0,67.0,76.0,55.0,55.0,47.0,38.0,45.0,44.0,45.0,40.0,43.0,61.0,34.0,56.0,64.0,53.0,62.0,50.0,65.0,63.0,64.0,62.0,70.0,64.0,73.0,57.0,41.0,66.0,52.0,49.0,69.0,52.0,59.0,44.0,42.0,45.0,53.0,55.0,61.0,58.0,58.0,52.0,59.0,54.0,53.0,47.0,48.0,49.0,34.0,41.0,45.0,38.0,49.0,31.0,27.0,28.0,30.0,31.0,21.0,24.0,24.0,22.0,25.0,19.0,15.0,19.0,18.0,14.0,12.0,6.0,8.0,8.0,7.0,4.0,10.0,4.0,2.0,2.0,2.0,,2.0 M88600,39.0,31.0,22.0,36.0,31.0,28.0,30.0,30.0,27.0,28.0,29.0,38.0,26.0,29.0,37.0,27.0,24.0,30.0,29.0,29.0,28.0,25.0,45.0,33.0,39.0,29.0,31.0,41.0,33.0,27.0,41.0,26.0,45.0,29.0,39.0,32.0,31.0,39.0,25.0,30.0,27.0,30.0,33.0,29.0,24.0,27.0,26.0,27.0,32.0,28.0,34.0,23.0,27.0,29.0,19.0,27.0,24.0,27.0,21.0,28.0,20.0,17.0,13.0,19.0,17.0,19.0,14.0,14.0,12.0,9.0,13.0,9.0,14.0,17.0,12.0,10.0,6.0,5.0,7.0,10.0,6.0,9.0,11.0,4.0,2.0,4.0,5.0,3.0,3.0,2.0,2.0,3.0,,,1.0, M88610,44.0,46.0,37.0,35.0,29.0,29.0,23.0,31.0,32.0,37.0,31.0,39.0,30.0,52.0,43.0,34.0,25.0,43.0,52.0,46.0,37.0,42.0,50.0,52.0,57.0,60.0,68.0,61.0,49.0,42.0,80.0,51.0,36.0,46.0,57.0,50.0,51.0,42.0,48.0,33.0,45.0,43.0,28.0,38.0,41.0,31.0,32.0,24.0,31.0,40.0,27.0,26.0,28.0,24.0,17.0,29.0,24.0,27.0,28.0,14.0,10.0,15.0,21.0,9.0,13.0,7.0,14.0,11.0,13.0,14.0,5.0,7.0,9.0,7.0,12.0,6.0,6.0,10.0,5.0,8.0,4.0,5.0,3.0,4.0,2.0,5.0,3.0,1.0,3.0,1.0,4.0,2.0,1.0,1.0,,1.0 M88612,11.0,25.0,16.0,16.0,11.0,22.0,25.0,23.0,21.0,35.0,25.0,30.0,29.0,26.0,33.0,32.0,26.0,26.0,30.0,32.0,29.0,30.0,18.0,24.0,12.0,19.0,27.0,21.0,21.0,30.0,26.0,29.0,32.0,26.0,28.0,38.0,25.0,22.0,17.0,41.0,20.0,25.0,29.0,28.0,22.0,22.0,29.0,17.0,25.0,23.0,22.0,19.0,30.0,28.0,31.0,38.0,41.0,29.0,34.0,31.0,19.0,17.0,21.0,29.0,25.0,16.0,17.0,13.0,22.0,8.0,13.0,14.0,11.0,12.0,7.0,16.0,10.0,12.0,24.0,9.0,12.0,12.0,10.0,9.0,6.0,1.0,2.0,4.0,5.0,,4.0,1.0,1.0,,, M88616,79.0,91.0,91.0,85.0,126.0,102.0,113.0,95.0,107.0,101.0,118.0,132.0,113.0,112.0,111.0,132.0,131.0,110.0,112.0,120.0,123.0,123.0,121.0,139.0,122.0,126.0,131.0,143.0,150.0,130.0,131.0,109.0,114.0,117.0,151.0,138.0,147.0,139.0,143.0,163.0,133.0,122.0,137.0,107.0,163.0,157.0,139.0,126.0,102.0,108.0,136.0,134.0,122.0,131.0,125.0,149.0,100.0,130.0,99.0,125.0,80.0,99.0,105.0,82.0,105.0,82.0,71.0,70.0,71.0,60.0,61.0,52.0,42.0,55.0,45.0,47.0,43.0,42.0,36.0,32.0,27.0,32.0,21.0,15.0,23.0,17.0,16.0,17.0,12.0,11.0,11.0,3.0,5.0,6.0,,8.0 M88618,7.0,7.0,8.0,14.0,13.0,15.0,10.0,12.0,14.0,16.0,16.0,21.0,25.0,11.0,22.0,22.0,21.0,14.0,14.0,21.0,13.0,10.0,18.0,19.0,14.0,18.0,8.0,15.0,13.0,18.0,6.0,16.0,12.0,11.0,18.0,19.0,17.0,16.0,21.0,20.0,19.0,14.0,12.0,15.0,16.0,24.0,14.0,15.0,16.0,9.0,4.0,12.0,13.0,15.0,20.0,13.0,14.0,12.0,14.0,15.0,12.0,6.0,7.0,5.0,12.0,5.0,10.0,15.0,7.0,9.0,11.0,7.0,11.0,13.0,5.0,9.0,8.0,5.0,4.0,2.0,2.0,2.0,3.0,1.0,,2.0,4.0,2.0,1.0,,3.0,,,,, M88619,66.0,81.0,58.0,81.0,72.0,75.0,80.0,64.0,65.0,83.0,83.0,65.0,92.0,68.0,55.0,70.0,80.0,66.0,48.0,72.0,72.0,59.0,78.0,91.0,113.0,90.0,90.0,94.0,87.0,104.0,102.0,78.0,111.0,84.0,90.0,84.0,84.0,96.0,61.0,74.0,71.0,90.0,70.0,88.0,75.0,65.0,69.0,66.0,67.0,56.0,62.0,51.0,71.0,46.0,74.0,49.0,69.0,57.0,64.0,47.0,53.0,55.0,57.0,50.0,56.0,50.0,34.0,34.0,35.0,39.0,28.0,41.0,40.0,35.0,27.0,33.0,29.0,22.0,36.0,13.0,14.0,18.0,15.0,16.0,14.0,16.0,16.0,5.0,6.0,4.0,9.0,4.0,1.0,3.0,1.0,5.0 M88620,20.0,19.0,26.0,24.0,13.0,23.0,26.0,26.0,29.0,27.0,15.0,28.0,16.0,30.0,27.0,28.0,32.0,24.0,22.0,18.0,20.0,19.0,27.0,30.0,36.0,37.0,28.0,28.0,35.0,32.0,35.0,19.0,35.0,32.0,33.0,38.0,33.0,30.0,32.0,37.0,33.0,19.0,24.0,21.0,26.0,30.0,28.0,25.0,26.0,13.0,18.0,18.0,18.0,21.0,21.0,13.0,21.0,23.0,17.0,8.0,16.0,15.0,15.0,13.0,20.0,17.0,12.0,10.0,11.0,7.0,12.0,8.0,10.0,5.0,6.0,3.0,6.0,10.0,3.0,6.0,5.0,7.0,5.0,2.0,2.0,1.0,3.0,3.0,2.0,,2.0,,3.0,1.0,1.0, M88625,22.0,15.0,20.0,27.0,27.0,25.0,23.0,28.0,30.0,29.0,20.0,27.0,36.0,27.0,24.0,38.0,29.0,25.0,13.0,19.0,21.0,25.0,22.0,18.0,28.0,22.0,29.0,29.0,20.0,28.0,30.0,31.0,25.0,26.0,24.0,24.0,33.0,21.0,22.0,29.0,28.0,22.0,28.0,26.0,21.0,35.0,21.0,25.0,29.0,18.0,20.0,22.0,28.0,17.0,21.0,19.0,9.0,18.0,20.0,22.0,6.0,21.0,14.0,14.0,9.0,11.0,10.0,11.0,13.0,10.0,8.0,16.0,11.0,8.0,10.0,9.0,10.0,8.0,11.0,7.0,8.0,2.0,8.0,3.0,5.0,1.0,1.0,5.0,2.0,1.0,2.0,1.0,3.0,2.0,1.0,1.0 M88626,33.0,31.0,26.0,24.0,14.0,21.0,20.0,23.0,16.0,19.0,15.0,28.0,16.0,20.0,22.0,21.0,13.0,28.0,18.0,26.0,41.0,34.0,34.0,57.0,63.0,48.0,56.0,60.0,48.0,51.0,53.0,45.0,49.0,42.0,44.0,32.0,31.0,42.0,23.0,25.0,29.0,31.0,35.0,22.0,20.0,29.0,22.0,17.0,19.0,14.0,27.0,29.0,15.0,25.0,16.0,19.0,15.0,10.0,20.0,19.0,16.0,12.0,14.0,16.0,16.0,13.0,12.0,12.0,16.0,9.0,10.0,11.0,10.0,7.0,11.0,4.0,5.0,10.0,7.0,5.0,4.0,3.0,7.0,4.0,3.0,4.0,2.0,3.0,3.0,3.0,4.0,2.0,1.0,,1.0,1.0 M88628,33.0,20.0,8.0,18.0,18.0,22.0,10.0,12.0,16.0,12.0,18.0,19.0,25.0,25.0,26.0,23.0,27.0,31.0,28.0,30.0,19.0,28.0,31.0,39.0,43.0,42.0,25.0,35.0,38.0,36.0,30.0,30.0,26.0,28.0,31.0,27.0,23.0,34.0,29.0,26.0,22.0,25.0,25.0,17.0,28.0,23.0,25.0,25.0,30.0,30.0,30.0,32.0,26.0,31.0,31.0,31.0,21.0,26.0,16.0,20.0,14.0,13.0,12.0,14.0,19.0,24.0,20.0,19.0,17.0,13.0,15.0,14.0,14.0,14.0,8.0,14.0,14.0,6.0,4.0,8.0,8.0,5.0,3.0,2.0,6.0,5.0,2.0,3.0,5.0,1.0,2.0,2.0,,,, M88630,26.0,29.0,24.0,26.0,33.0,35.0,23.0,35.0,36.0,34.0,45.0,38.0,36.0,38.0,36.0,46.0,53.0,27.0,37.0,38.0,25.0,34.0,34.0,46.0,48.0,40.0,49.0,48.0,38.0,42.0,27.0,43.0,39.0,39.0,55.0,33.0,32.0,45.0,32.0,38.0,37.0,29.0,49.0,38.0,44.0,39.0,39.0,35.0,36.0,39.0,44.0,30.0,41.0,40.0,33.0,35.0,28.0,26.0,32.0,31.0,29.0,36.0,26.0,22.0,38.0,29.0,22.0,21.0,15.0,8.0,12.0,7.0,18.0,21.0,12.0,18.0,16.0,14.0,12.0,8.0,10.0,9.0,7.0,6.0,8.0,3.0,2.0,9.0,2.0,4.0,4.0,6.0,1.0,1.0,1.0,1.0 M88633,67.0,49.0,49.0,42.0,30.0,44.0,45.0,35.0,37.0,51.0,39.0,35.0,44.0,36.0,36.0,45.0,37.0,39.0,40.0,33.0,57.0,69.0,86.0,89.0,104.0,110.0,115.0,116.0,93.0,106.0,84.0,98.0,95.0,70.0,71.0,76.0,63.0,55.0,55.0,69.0,46.0,38.0,43.0,52.0,45.0,44.0,45.0,42.0,38.0,51.0,40.0,34.0,42.0,36.0,43.0,40.0,40.0,39.0,29.0,37.0,39.0,38.0,31.0,37.0,23.0,25.0,17.0,18.0,33.0,29.0,23.0,20.0,14.0,15.0,20.0,14.0,10.0,14.0,12.0,9.0,11.0,8.0,12.0,6.0,7.0,6.0,6.0,6.0,4.0,6.0,3.0,3.0,2.0,1.0,3.0,1.0 M88635,12.0,8.0,6.0,7.0,13.0,9.0,17.0,9.0,14.0,13.0,12.0,19.0,17.0,25.0,23.0,20.0,23.0,14.0,12.0,13.0,11.0,17.0,14.0,19.0,12.0,17.0,17.0,15.0,16.0,18.0,18.0,20.0,15.0,16.0,14.0,15.0,15.0,23.0,13.0,12.0,14.0,7.0,15.0,17.0,15.0,19.0,15.0,15.0,11.0,19.0,12.0,12.0,18.0,17.0,20.0,18.0,16.0,13.0,11.0,11.0,11.0,9.0,12.0,7.0,7.0,10.0,12.0,6.0,9.0,8.0,9.0,9.0,8.0,8.0,6.0,5.0,10.0,2.0,12.0,4.0,9.0,3.0,3.0,1.0,4.0,8.0,5.0,4.0,2.0,2.0,,3.0,1.0,1.0,1.0, M88639,19.0,24.0,17.0,16.0,21.0,19.0,30.0,17.0,27.0,36.0,29.0,33.0,32.0,17.0,30.0,24.0,22.0,22.0,20.0,26.0,25.0,24.0,28.0,31.0,33.0,31.0,26.0,37.0,35.0,41.0,44.0,31.0,30.0,26.0,40.0,29.0,25.0,27.0,37.0,35.0,32.0,31.0,29.0,23.0,29.0,27.0,26.0,24.0,31.0,25.0,28.0,25.0,18.0,19.0,21.0,22.0,12.0,23.0,16.0,19.0,16.0,14.0,16.0,9.0,10.0,13.0,8.0,20.0,11.0,6.0,11.0,12.0,7.0,4.0,7.0,10.0,5.0,9.0,1.0,7.0,1.0,3.0,3.0,5.0,3.0,4.0,4.0,3.0,2.0,1.0,,1.0,1.0,1.0,1.0, M88640,28.0,27.0,21.0,33.0,27.0,19.0,16.0,17.0,24.0,23.0,25.0,26.0,35.0,27.0,33.0,24.0,26.0,23.0,21.0,31.0,31.0,31.0,32.0,38.0,36.0,30.0,41.0,49.0,45.0,46.0,35.0,47.0,37.0,28.0,38.0,37.0,27.0,23.0,40.0,22.0,25.0,26.0,31.0,23.0,26.0,37.0,34.0,30.0,38.0,25.0,29.0,37.0,23.0,21.0,23.0,22.0,19.0,17.0,16.0,26.0,17.0,23.0,24.0,14.0,16.0,14.0,14.0,17.0,16.0,15.0,23.0,14.0,16.0,13.0,8.0,12.0,6.0,8.0,9.0,10.0,3.0,4.0,5.0,4.0,1.0,4.0,3.0,1.0,7.0,2.0,1.0,,1.0,1.0,4.0,1.0 M88643,26.0,24.0,35.0,25.0,43.0,38.0,45.0,26.0,40.0,35.0,33.0,34.0,38.0,58.0,47.0,44.0,49.0,42.0,41.0,41.0,33.0,23.0,32.0,34.0,28.0,31.0,30.0,33.0,47.0,36.0,39.0,32.0,41.0,48.0,55.0,47.0,38.0,31.0,39.0,29.0,40.0,32.0,41.0,42.0,41.0,28.0,35.0,25.0,30.0,37.0,44.0,43.0,39.0,41.0,36.0,47.0,37.0,40.0,39.0,33.0,22.0,35.0,29.0,23.0,26.0,25.0,30.0,22.0,20.0,27.0,20.0,15.0,14.0,16.0,11.0,19.0,8.0,16.0,15.0,10.0,12.0,14.0,11.0,4.0,7.0,5.0,5.0,2.0,2.0,2.0,3.0,,,2.0,, M88645,31.0,37.0,57.0,48.0,42.0,52.0,59.0,70.0,58.0,59.0,81.0,68.0,70.0,71.0,79.0,78.0,70.0,74.0,73.0,88.0,62.0,65.0,58.0,84.0,74.0,67.0,65.0,73.0,58.0,51.0,71.0,57.0,69.0,71.0,59.0,52.0,66.0,56.0,52.0,56.0,56.0,53.0,52.0,61.0,63.0,49.0,48.0,52.0,44.0,61.0,54.0,58.0,56.0,66.0,49.0,56.0,58.0,59.0,77.0,62.0,55.0,45.0,64.0,56.0,48.0,49.0,45.0,38.0,41.0,32.0,36.0,28.0,25.0,25.0,26.0,21.0,25.0,33.0,26.0,22.0,22.0,18.0,22.0,11.0,9.0,11.0,10.0,8.0,5.0,4.0,3.0,6.0,3.0,2.0,4.0,1.0 M88646,11.0,10.0,10.0,17.0,6.0,9.0,17.0,19.0,13.0,18.0,14.0,30.0,28.0,18.0,17.0,14.0,21.0,21.0,17.0,21.0,26.0,18.0,25.0,18.0,16.0,21.0,34.0,27.0,24.0,29.0,20.0,22.0,22.0,21.0,13.0,15.0,18.0,17.0,19.0,25.0,23.0,16.0,14.0,8.0,23.0,23.0,29.0,23.0,21.0,18.0,24.0,19.0,20.0,18.0,15.0,16.0,20.0,16.0,23.0,18.0,11.0,15.0,23.0,15.0,16.0,14.0,10.0,14.0,9.0,7.0,6.0,11.0,11.0,9.0,10.0,3.0,8.0,5.0,,3.0,4.0,5.0,3.0,1.0,3.0,3.0,3.0,2.0,1.0,1.0,1.0,1.0,,,,1.0 M88647,52.0,33.0,36.0,38.0,33.0,44.0,55.0,41.0,38.0,43.0,58.0,46.0,57.0,45.0,43.0,41.0,49.0,39.0,38.0,51.0,50.0,65.0,77.0,86.0,95.0,103.0,85.0,78.0,67.0,80.0,67.0,66.0,48.0,59.0,48.0,70.0,72.0,55.0,56.0,59.0,46.0,44.0,53.0,50.0,45.0,55.0,55.0,44.0,43.0,45.0,29.0,38.0,34.0,24.0,33.0,28.0,29.0,31.0,16.0,24.0,22.0,14.0,18.0,18.0,15.0,19.0,19.0,16.0,24.0,12.0,14.0,8.0,13.0,9.0,16.0,9.0,6.0,12.0,9.0,7.0,6.0,4.0,5.0,4.0,6.0,5.0,3.0,4.0,4.0,1.0,,,1.0,1.0,,1.0 M91003,40.0,21.0,32.0,49.0,36.0,35.0,49.0,43.0,40.0,54.0,42.0,39.0,39.0,43.0,39.0,47.0,39.0,36.0,50.0,43.0,43.0,42.0,30.0,40.0,32.0,44.0,43.0,33.0,45.0,33.0,37.0,46.0,46.0,54.0,34.0,42.0,38.0,47.0,39.0,40.0,48.0,49.0,38.0,39.0,50.0,47.0,48.0,35.0,36.0,39.0,37.0,35.0,41.0,65.0,51.0,46.0,54.0,47.0,44.0,53.0,47.0,44.0,59.0,41.0,41.0,36.0,41.0,29.0,51.0,38.0,43.0,30.0,33.0,29.0,27.0,38.0,32.0,33.0,17.0,23.0,24.0,29.0,29.0,20.0,14.0,18.0,15.0,8.0,7.0,10.0,6.0,7.0,1.0,1.0,1.0,4.0 M91004,48.0,57.0,50.0,89.0,58.0,51.0,87.0,95.0,89.0,69.0,87.0,75.0,107.0,67.0,86.0,92.0,75.0,87.0,61.0,60.0,70.0,70.0,68.0,57.0,76.0,75.0,61.0,82.0,65.0,64.0,66.0,87.0,83.0,68.0,71.0,77.0,69.0,69.0,89.0,89.0,81.0,78.0,62.0,74.0,87.0,64.0,71.0,57.0,72.0,42.0,59.0,48.0,59.0,59.0,61.0,69.0,55.0,59.0,51.0,50.0,59.0,44.0,39.0,47.0,34.0,38.0,41.0,37.0,28.0,25.0,37.0,26.0,25.0,26.0,28.0,31.0,27.0,24.0,28.0,9.0,11.0,11.0,7.0,8.0,8.0,13.0,8.0,4.0,14.0,6.0,4.0,5.0,1.0,2.0,2.0,1.0 M91006,23.0,19.0,34.0,20.0,20.0,37.0,21.0,34.0,34.0,18.0,44.0,31.0,33.0,31.0,35.0,24.0,40.0,37.0,24.0,22.0,26.0,29.0,23.0,27.0,16.0,31.0,33.0,29.0,26.0,31.0,16.0,32.0,36.0,32.0,26.0,21.0,35.0,27.0,34.0,26.0,29.0,25.0,37.0,27.0,24.0,34.0,20.0,24.0,23.0,28.0,24.0,25.0,24.0,32.0,31.0,26.0,35.0,33.0,37.0,41.0,33.0,37.0,19.0,29.0,25.0,21.0,17.0,22.0,15.0,20.0,10.0,13.0,13.0,14.0,15.0,12.0,12.0,21.0,16.0,7.0,10.0,16.0,7.0,9.0,13.0,6.0,7.0,6.0,5.0,4.0,4.0,,2.0,2.0,1.0,1.0 M91007,27.0,35.0,30.0,36.0,29.0,33.0,36.0,42.0,47.0,52.0,36.0,50.0,45.0,43.0,33.0,64.0,55.0,56.0,49.0,63.0,43.0,52.0,59.0,39.0,55.0,48.0,72.0,51.0,55.0,57.0,46.0,51.0,50.0,56.0,55.0,49.0,38.0,50.0,56.0,46.0,54.0,49.0,51.0,36.0,46.0,52.0,39.0,38.0,41.0,44.0,47.0,37.0,66.0,76.0,84.0,78.0,54.0,77.0,85.0,72.0,70.0,81.0,58.0,88.0,64.0,61.0,64.0,59.0,51.0,47.0,49.0,33.0,44.0,42.0,34.0,43.0,54.0,35.0,48.0,43.0,41.0,28.0,29.0,36.0,23.0,24.0,17.0,24.0,24.0,16.0,10.0,2.0,4.0,5.0,,7.0 M91008,58.0,70.0,61.0,68.0,64.0,86.0,67.0,67.0,61.0,76.0,51.0,60.0,73.0,70.0,69.0,57.0,70.0,81.0,65.0,77.0,58.0,72.0,81.0,106.0,85.0,78.0,88.0,85.0,81.0,77.0,85.0,65.0,93.0,75.0,91.0,74.0,72.0,74.0,73.0,73.0,93.0,69.0,64.0,65.0,70.0,74.0,72.0,60.0,65.0,47.0,62.0,46.0,49.0,55.0,56.0,54.0,64.0,52.0,58.0,38.0,48.0,44.0,42.0,41.0,51.0,32.0,35.0,37.0,26.0,22.0,27.0,38.0,27.0,27.0,24.0,22.0,22.0,19.0,20.0,14.0,23.0,19.0,12.0,13.0,12.0,14.0,11.0,7.0,8.0,7.0,6.0,4.0,4.0,4.0,2.0,4.0 M91009,34.0,22.0,32.0,24.0,26.0,30.0,32.0,36.0,25.0,21.0,37.0,26.0,42.0,29.0,38.0,35.0,36.0,36.0,28.0,30.0,36.0,32.0,26.0,18.0,22.0,27.0,31.0,28.0,35.0,34.0,21.0,30.0,41.0,28.0,45.0,40.0,34.0,34.0,42.0,33.0,36.0,41.0,33.0,27.0,37.0,28.0,27.0,27.0,43.0,26.0,40.0,39.0,36.0,50.0,49.0,41.0,56.0,36.0,40.0,51.0,58.0,44.0,43.0,46.0,42.0,38.0,44.0,39.0,36.0,31.0,31.0,33.0,34.0,34.0,24.0,29.0,21.0,31.0,28.0,19.0,24.0,27.0,22.0,17.0,15.0,12.0,8.0,11.0,7.0,5.0,5.0,2.0,4.0,2.0,1.0,2.0 M91010,32.0,33.0,37.0,37.0,41.0,38.0,43.0,40.0,38.0,52.0,57.0,44.0,55.0,52.0,48.0,58.0,50.0,50.0,42.0,39.0,50.0,42.0,40.0,48.0,50.0,44.0,57.0,47.0,47.0,45.0,46.0,46.0,49.0,47.0,59.0,50.0,46.0,52.0,48.0,62.0,61.0,38.0,50.0,59.0,48.0,56.0,47.0,42.0,46.0,50.0,45.0,39.0,68.0,61.0,66.0,64.0,74.0,72.0,57.0,65.0,63.0,61.0,58.0,61.0,54.0,54.0,53.0,54.0,44.0,51.0,34.0,49.0,51.0,42.0,36.0,43.0,48.0,53.0,36.0,39.0,34.0,34.0,35.0,27.0,18.0,30.0,19.0,22.0,26.0,9.0,19.0,9.0,4.0,2.0,8.0,9.0 M91013,58.0,42.0,52.0,60.0,51.0,61.0,65.0,57.0,60.0,53.0,64.0,74.0,61.0,68.0,80.0,52.0,62.0,62.0,68.0,59.0,68.0,73.0,60.0,80.0,67.0,77.0,71.0,58.0,62.0,73.0,65.0,85.0,78.0,77.0,94.0,79.0,68.0,96.0,62.0,73.0,74.0,68.0,65.0,62.0,74.0,57.0,60.0,56.0,48.0,56.0,64.0,44.0,61.0,72.0,86.0,55.0,82.0,73.0,83.0,82.0,78.0,77.0,85.0,70.0,71.0,70.0,54.0,58.0,53.0,45.0,55.0,42.0,45.0,35.0,28.0,34.0,36.0,46.0,39.0,32.0,36.0,40.0,27.0,20.0,26.0,25.0,23.0,8.0,14.0,13.0,10.0,8.0,3.0,,3.0,4.0 M91014,25.0,27.0,20.0,17.0,15.0,17.0,26.0,17.0,14.0,16.0,24.0,23.0,25.0,17.0,15.0,22.0,28.0,28.0,20.0,23.0,21.0,28.0,31.0,25.0,27.0,24.0,33.0,33.0,25.0,24.0,32.0,28.0,28.0,18.0,26.0,28.0,32.0,28.0,30.0,18.0,37.0,25.0,28.0,25.0,27.0,21.0,26.0,19.0,24.0,16.0,22.0,17.0,26.0,30.0,27.0,22.0,11.0,20.0,17.0,9.0,22.0,22.0,28.0,13.0,19.0,16.0,15.0,8.0,18.0,13.0,10.0,8.0,6.0,9.0,4.0,11.0,10.0,10.0,10.0,9.0,9.0,2.0,12.0,8.0,5.0,5.0,5.0,3.0,,2.0,4.0,,,1.0,,2.0 M91015,112.0,120.0,110.0,114.0,95.0,108.0,136.0,142.0,125.0,132.0,141.0,153.0,149.0,129.0,129.0,144.0,149.0,152.0,163.0,126.0,131.0,132.0,112.0,135.0,111.0,124.0,133.0,142.0,143.0,150.0,134.0,153.0,144.0,196.0,141.0,170.0,158.0,160.0,160.0,157.0,139.0,190.0,152.0,172.0,135.0,171.0,158.0,131.0,147.0,142.0,140.0,124.0,132.0,144.0,146.0,149.0,146.0,142.0,141.0,147.0,135.0,114.0,117.0,115.0,105.0,125.0,112.0,106.0,106.0,100.0,76.0,88.0,100.0,92.0,89.0,82.0,77.0,73.0,88.0,70.0,52.0,67.0,71.0,61.0,52.0,43.0,52.0,32.0,23.0,29.0,21.0,13.0,19.0,10.0,4.0,19.0 M91016,39.0,36.0,40.0,45.0,45.0,54.0,53.0,42.0,40.0,44.0,36.0,43.0,44.0,49.0,46.0,39.0,34.0,52.0,41.0,41.0,44.0,42.0,36.0,37.0,54.0,38.0,42.0,41.0,62.0,45.0,45.0,47.0,56.0,53.0,54.0,49.0,56.0,50.0,50.0,53.0,53.0,48.0,35.0,35.0,48.0,35.0,56.0,26.0,48.0,45.0,38.0,43.0,53.0,40.0,54.0,41.0,41.0,42.0,50.0,58.0,41.0,40.0,34.0,42.0,45.0,35.0,35.0,26.0,38.0,30.0,29.0,30.0,25.0,33.0,18.0,30.0,25.0,22.0,26.0,24.0,22.0,13.0,20.0,20.0,19.0,13.0,13.0,9.0,7.0,5.0,7.0,5.0,4.0,4.0,3.0,3.0 M91017,44.0,49.0,40.0,55.0,45.0,49.0,41.0,53.0,48.0,55.0,57.0,67.0,48.0,53.0,42.0,68.0,55.0,54.0,48.0,48.0,49.0,34.0,33.0,51.0,49.0,42.0,34.0,51.0,51.0,40.0,57.0,64.0,51.0,63.0,52.0,63.0,55.0,69.0,53.0,63.0,57.0,58.0,63.0,53.0,54.0,53.0,60.0,60.0,52.0,48.0,58.0,49.0,73.0,67.0,64.0,81.0,68.0,101.0,83.0,62.0,74.0,67.0,58.0,73.0,72.0,61.0,69.0,73.0,60.0,63.0,55.0,62.0,41.0,48.0,50.0,53.0,64.0,68.0,56.0,40.0,65.0,51.0,38.0,52.0,37.0,31.0,34.0,21.0,22.0,14.0,18.0,9.0,5.0,7.0,1.0,13.0 M91018,34.0,30.0,42.0,31.0,17.0,25.0,21.0,25.0,35.0,34.0,25.0,25.0,32.0,29.0,25.0,23.0,41.0,43.0,43.0,29.0,29.0,27.0,36.0,42.0,31.0,30.0,31.0,46.0,48.0,64.0,40.0,41.0,40.0,41.0,38.0,42.0,37.0,47.0,60.0,33.0,35.0,32.0,35.0,34.0,27.0,36.0,34.0,39.0,37.0,30.0,26.0,22.0,26.0,32.0,26.0,32.0,37.0,30.0,26.0,33.0,30.0,24.0,25.0,21.0,18.0,16.0,21.0,17.0,14.0,17.0,14.0,17.0,16.0,7.0,11.0,6.0,13.0,16.0,14.0,10.0,17.0,10.0,4.0,9.0,7.0,4.0,5.0,7.0,3.0,6.0,2.0,1.0,1.0,,1.0, M91019,64.0,72.0,83.0,76.0,73.0,81.0,88.0,82.0,79.0,93.0,114.0,87.0,112.0,86.0,87.0,75.0,92.0,96.0,97.0,81.0,73.0,80.0,85.0,75.0,75.0,84.0,80.0,71.0,85.0,95.0,81.0,103.0,94.0,89.0,103.0,104.0,84.0,98.0,99.0,105.0,127.0,80.0,101.0,86.0,84.0,88.0,80.0,78.0,77.0,91.0,90.0,92.0,106.0,98.0,96.0,100.0,111.0,116.0,109.0,99.0,95.0,97.0,105.0,110.0,74.0,71.0,85.0,74.0,83.0,74.0,66.0,67.0,66.0,55.0,53.0,45.0,77.0,60.0,59.0,54.0,53.0,53.0,45.0,26.0,31.0,28.0,32.0,31.0,19.0,14.0,15.0,12.0,7.0,9.0,5.0,9.0 M91021,35.0,33.0,43.0,50.0,48.0,52.0,46.0,59.0,50.0,54.0,44.0,53.0,58.0,58.0,67.0,58.0,61.0,59.0,52.0,42.0,49.0,42.0,46.0,49.0,38.0,48.0,62.0,43.0,44.0,50.0,35.0,44.0,48.0,51.0,51.0,43.0,60.0,50.0,44.0,62.0,50.0,46.0,51.0,39.0,67.0,58.0,65.0,48.0,52.0,49.0,53.0,53.0,51.0,41.0,67.0,45.0,56.0,59.0,60.0,54.0,53.0,39.0,49.0,48.0,54.0,39.0,42.0,52.0,35.0,35.0,29.0,27.0,36.0,41.0,30.0,33.0,32.0,23.0,21.0,18.0,27.0,16.0,13.0,20.0,8.0,8.0,8.0,6.0,6.0,5.0,4.0,4.0,3.0,2.0,4.0,6.0 M91024,10.0,10.0,14.0,6.0,6.0,14.0,13.0,10.0,10.0,7.0,11.0,13.0,15.0,16.0,12.0,12.0,15.0,14.0,16.0,14.0,10.0,13.0,12.0,12.0,17.0,13.0,9.0,7.0,18.0,15.0,10.0,21.0,9.0,13.0,14.0,14.0,17.0,11.0,11.0,9.0,13.0,14.0,8.0,12.0,22.0,17.0,11.0,12.0,17.0,21.0,12.0,18.0,19.0,23.0,19.0,19.0,19.0,18.0,19.0,17.0,24.0,16.0,21.0,17.0,10.0,22.0,13.0,20.0,18.0,12.0,13.0,16.0,15.0,14.0,13.0,18.0,15.0,22.0,16.0,18.0,11.0,16.0,12.0,6.0,9.0,8.0,6.0,7.0,8.0,3.0,1.0,2.0,4.0,3.0,, M91026,40.0,49.0,46.0,45.0,58.0,50.0,50.0,51.0,48.0,50.0,49.0,53.0,42.0,56.0,43.0,47.0,33.0,43.0,45.0,25.0,45.0,36.0,39.0,48.0,29.0,34.0,40.0,43.0,32.0,34.0,50.0,57.0,44.0,53.0,50.0,44.0,35.0,42.0,43.0,32.0,49.0,50.0,36.0,37.0,39.0,58.0,37.0,38.0,32.0,41.0,35.0,35.0,30.0,27.0,34.0,24.0,30.0,32.0,23.0,21.0,17.0,23.0,25.0,20.0,22.0,24.0,32.0,18.0,26.0,18.0,23.0,16.0,23.0,11.0,12.0,8.0,8.0,14.0,8.0,8.0,5.0,4.0,8.0,7.0,4.0,6.0,5.0,3.0,4.0,2.0,4.0,1.0,,1.0,,2.0 M91028,32.0,39.0,37.0,46.0,48.0,49.0,56.0,50.0,54.0,63.0,56.0,55.0,66.0,54.0,51.0,64.0,64.0,51.0,52.0,57.0,57.0,52.0,41.0,47.0,54.0,59.0,45.0,52.0,58.0,49.0,53.0,46.0,60.0,47.0,56.0,49.0,54.0,51.0,56.0,49.0,53.0,66.0,52.0,51.0,66.0,58.0,71.0,42.0,45.0,55.0,40.0,38.0,42.0,70.0,72.0,51.0,41.0,46.0,44.0,51.0,63.0,43.0,55.0,48.0,37.0,30.0,47.0,38.0,48.0,36.0,43.0,54.0,42.0,46.0,34.0,32.0,27.0,36.0,35.0,31.0,18.0,19.0,21.0,18.0,8.0,10.0,8.0,7.0,10.0,7.0,5.0,5.0,1.0,5.0,4.0,1.0 M91029,30.0,44.0,38.0,34.0,42.0,52.0,47.0,56.0,56.0,43.0,53.0,58.0,53.0,45.0,63.0,38.0,49.0,38.0,37.0,44.0,30.0,30.0,42.0,41.0,36.0,28.0,35.0,40.0,41.0,40.0,43.0,34.0,44.0,41.0,47.0,45.0,29.0,50.0,42.0,56.0,47.0,45.0,40.0,38.0,41.0,35.0,36.0,32.0,29.0,27.0,25.0,35.0,21.0,37.0,37.0,27.0,29.0,35.0,33.0,31.0,28.0,33.0,26.0,25.0,28.0,24.0,20.0,24.0,16.0,12.0,26.0,16.0,17.0,12.0,21.0,11.0,15.0,9.0,14.0,9.0,6.0,8.0,7.0,7.0,8.0,5.0,1.0,3.0,5.0,2.0,4.0,2.0,3.0,1.0,1.0, M91032,14.0,29.0,21.0,11.0,28.0,27.0,26.0,39.0,27.0,30.0,36.0,28.0,35.0,38.0,41.0,31.0,34.0,29.0,22.0,27.0,26.0,24.0,30.0,29.0,36.0,28.0,29.0,33.0,32.0,28.0,31.0,33.0,39.0,42.0,32.0,17.0,30.0,38.0,31.0,13.0,29.0,24.0,29.0,28.0,29.0,28.0,25.0,20.0,15.0,21.0,23.0,36.0,36.0,27.0,33.0,24.0,44.0,45.0,32.0,43.0,49.0,42.0,34.0,47.0,26.0,31.0,21.0,33.0,18.0,26.0,13.0,17.0,15.0,17.0,18.0,19.0,11.0,24.0,16.0,15.0,11.0,15.0,19.0,19.0,18.0,9.0,8.0,5.0,5.0,11.0,4.0,4.0,7.0,4.0,1.0,2.0 M91033,33.0,56.0,34.0,46.0,41.0,34.0,40.0,42.0,46.0,50.0,47.0,37.0,39.0,45.0,44.0,30.0,38.0,41.0,47.0,35.0,36.0,36.0,44.0,38.0,39.0,48.0,38.0,47.0,50.0,60.0,37.0,57.0,47.0,58.0,55.0,56.0,58.0,57.0,46.0,64.0,47.0,51.0,47.0,56.0,55.0,39.0,31.0,40.0,33.0,28.0,40.0,43.0,43.0,42.0,52.0,41.0,29.0,49.0,41.0,36.0,24.0,36.0,34.0,32.0,32.0,26.0,28.0,30.0,22.0,21.0,22.0,19.0,21.0,19.0,15.0,18.0,24.0,17.0,23.0,15.0,21.0,11.0,12.0,6.0,12.0,8.0,3.0,11.0,5.0,4.0,3.0,5.0,2.0,1.0,1.0, M91034,13.0,24.0,31.0,25.0,24.0,21.0,25.0,23.0,25.0,33.0,26.0,35.0,29.0,29.0,25.0,23.0,30.0,32.0,28.0,26.0,24.0,21.0,23.0,32.0,27.0,23.0,34.0,36.0,31.0,40.0,36.0,35.0,29.0,32.0,29.0,32.0,28.0,41.0,33.0,34.0,28.0,35.0,28.0,28.0,27.0,23.0,23.0,31.0,14.0,25.0,20.0,27.0,36.0,22.0,44.0,34.0,43.0,38.0,38.0,26.0,39.0,48.0,44.0,39.0,40.0,30.0,33.0,33.0,31.0,24.0,29.0,22.0,29.0,20.0,18.0,24.0,27.0,25.0,27.0,23.0,20.0,13.0,12.0,10.0,14.0,8.0,11.0,8.0,5.0,2.0,4.0,3.0,3.0,3.0,2.0,2.0 M91036,38.0,29.0,36.0,20.0,33.0,36.0,40.0,40.0,28.0,31.0,29.0,27.0,29.0,45.0,32.0,34.0,31.0,38.0,26.0,20.0,25.0,27.0,20.0,21.0,24.0,22.0,23.0,25.0,29.0,22.0,26.0,23.0,31.0,36.0,34.0,50.0,26.0,36.0,37.0,38.0,27.0,23.0,34.0,24.0,28.0,33.0,26.0,20.0,20.0,11.0,17.0,25.0,20.0,30.0,27.0,16.0,22.0,24.0,25.0,18.0,22.0,24.0,23.0,17.0,13.0,18.0,12.0,8.0,11.0,17.0,13.0,10.0,16.0,12.0,12.0,7.0,8.0,2.0,5.0,2.0,6.0,7.0,6.0,5.0,6.0,4.0,5.0,1.0,1.0,,2.0,,1.0,1.0,,1.0 M91602,17.0,15.0,15.0,19.0,18.0,22.0,19.0,21.0,21.0,15.0,25.0,19.0,13.0,12.0,19.0,20.0,21.0,14.0,11.0,16.0,16.0,12.0,21.0,12.0,19.0,20.0,21.0,13.0,14.0,21.0,15.0,17.0,14.0,22.0,22.0,12.0,19.0,19.0,19.0,22.0,14.0,19.0,17.0,16.0,17.0,19.0,15.0,17.0,12.0,10.0,14.0,26.0,11.0,11.0,15.0,17.0,14.0,16.0,16.0,12.0,13.0,10.0,21.0,14.0,16.0,6.0,12.0,15.0,10.0,4.0,14.0,8.0,11.0,8.0,7.0,6.0,9.0,7.0,5.0,5.0,4.0,6.0,3.0,4.0,2.0,,2.0,1.0,2.0,2.0,,,,,,1.0 M91609,13.0,9.0,8.0,7.0,10.0,8.0,11.0,15.0,10.0,12.0,15.0,16.0,14.0,20.0,16.0,18.0,19.0,18.0,15.0,15.0,16.0,11.0,18.0,10.0,7.0,3.0,13.0,15.0,10.0,13.0,22.0,15.0,16.0,10.0,27.0,17.0,18.0,18.0,16.0,11.0,16.0,10.0,15.0,13.0,14.0,18.0,16.0,8.0,8.0,17.0,18.0,17.0,8.0,14.0,16.0,23.0,17.0,15.0,11.0,19.0,11.0,18.0,14.0,13.0,15.0,13.0,11.0,18.0,7.0,7.0,8.0,8.0,8.0,9.0,9.0,9.0,11.0,11.0,6.0,6.0,6.0,7.0,3.0,4.0,4.0,4.0,1.0,5.0,4.0,1.0,2.0,,1.0,1.0,,4.0 M91611,18.0,23.0,15.0,29.0,29.0,29.0,22.0,28.0,17.0,24.0,30.0,26.0,27.0,23.0,29.0,28.0,21.0,24.0,19.0,19.0,18.0,21.0,14.0,29.0,9.0,14.0,27.0,14.0,22.0,27.0,27.0,24.0,18.0,24.0,29.0,29.0,23.0,21.0,26.0,29.0,12.0,12.0,19.0,23.0,23.0,16.0,18.0,11.0,11.0,19.0,16.0,17.0,22.0,10.0,17.0,15.0,11.0,24.0,16.0,18.0,16.0,11.0,19.0,21.0,15.0,16.0,4.0,14.0,10.0,5.0,11.0,15.0,8.0,14.0,7.0,14.0,6.0,7.0,8.0,1.0,8.0,5.0,5.0,3.0,2.0,5.0,7.0,1.0,3.0,,1.0,,1.0,2.0,1.0, M91612,25.0,15.0,20.0,21.0,28.0,20.0,21.0,26.0,30.0,33.0,21.0,26.0,34.0,26.0,17.0,26.0,28.0,18.0,28.0,29.0,17.0,21.0,11.0,15.0,15.0,25.0,19.0,24.0,20.0,26.0,23.0,18.0,30.0,24.0,21.0,25.0,26.0,30.0,25.0,28.0,26.0,14.0,22.0,25.0,9.0,21.0,17.0,16.0,21.0,22.0,13.0,20.0,32.0,31.0,20.0,29.0,23.0,22.0,24.0,16.0,18.0,23.0,26.0,17.0,21.0,13.0,20.0,8.0,15.0,17.0,14.0,8.0,15.0,9.0,14.0,13.0,12.0,15.0,15.0,7.0,9.0,9.0,6.0,6.0,7.0,4.0,5.0,1.0,2.0,1.0,1.0,,1.0,1.0,,2.0 M91613,60.0,63.0,55.0,50.0,88.0,71.0,74.0,82.0,84.0,84.0,70.0,98.0,86.0,93.0,82.0,93.0,102.0,83.0,92.0,89.0,76.0,68.0,69.0,78.0,88.0,84.0,70.0,75.0,73.0,87.0,90.0,70.0,85.0,92.0,109.0,87.0,95.0,110.0,95.0,90.0,104.0,102.0,102.0,96.0,92.0,95.0,82.0,68.0,69.0,98.0,60.0,54.0,52.0,68.0,58.0,57.0,48.0,47.0,49.0,46.0,36.0,26.0,35.0,27.0,33.0,35.0,26.0,24.0,20.0,21.0,26.0,21.0,18.0,20.0,14.0,5.0,13.0,9.0,9.0,10.0,8.0,5.0,5.0,9.0,8.0,3.0,4.0,2.0,2.0,6.0,3.0,2.0,2.0,1.0,,2.0 M91614,66.0,72.0,78.0,58.0,78.0,50.0,55.0,59.0,76.0,53.0,60.0,65.0,65.0,66.0,72.0,51.0,51.0,51.0,49.0,44.0,33.0,58.0,61.0,43.0,62.0,46.0,72.0,56.0,65.0,75.0,66.0,54.0,69.0,73.0,87.0,67.0,70.0,80.0,70.0,64.0,55.0,63.0,69.0,65.0,59.0,69.0,56.0,59.0,55.0,46.0,40.0,41.0,49.0,53.0,47.0,62.0,46.0,51.0,51.0,44.0,42.0,42.0,36.0,44.0,40.0,40.0,38.0,33.0,37.0,30.0,29.0,17.0,43.0,44.0,33.0,30.0,30.0,47.0,27.0,23.0,19.0,34.0,16.0,13.0,7.0,12.0,7.0,7.0,5.0,6.0,4.0,1.0,3.0,3.0,, M91616,39.0,40.0,42.0,40.0,44.0,52.0,44.0,44.0,54.0,64.0,45.0,65.0,75.0,54.0,63.0,63.0,51.0,67.0,56.0,67.0,53.0,57.0,40.0,57.0,47.0,72.0,62.0,69.0,69.0,65.0,43.0,61.0,50.0,68.0,42.0,63.0,64.0,74.0,60.0,57.0,66.0,67.0,70.0,60.0,77.0,71.0,60.0,48.0,63.0,56.0,62.0,59.0,49.0,53.0,74.0,58.0,60.0,53.0,51.0,44.0,48.0,37.0,36.0,29.0,38.0,39.0,31.0,26.0,49.0,32.0,28.0,33.0,25.0,25.0,28.0,29.0,20.0,20.0,23.0,15.0,19.0,19.0,11.0,11.0,11.0,13.0,10.0,9.0,5.0,10.0,7.0,5.0,6.0,3.0,4.0,10.0 M91619,43.0,45.0,60.0,48.0,45.0,38.0,45.0,56.0,46.0,37.0,39.0,43.0,37.0,51.0,37.0,41.0,50.0,44.0,36.0,44.0,52.0,39.0,55.0,51.0,62.0,49.0,56.0,45.0,61.0,47.0,48.0,33.0,59.0,48.0,43.0,54.0,50.0,51.0,50.0,45.0,63.0,51.0,51.0,47.0,50.0,49.0,31.0,41.0,38.0,43.0,30.0,31.0,44.0,36.0,39.0,39.0,33.0,29.0,28.0,25.0,20.0,19.0,29.0,25.0,35.0,18.0,19.0,25.0,16.0,18.0,18.0,19.0,16.0,10.0,18.0,16.0,15.0,13.0,25.0,11.0,5.0,7.0,4.0,9.0,4.0,7.0,6.0,3.0,6.0,2.0,,3.0,1.0,2.0,,2.0 M91621,28.0,33.0,34.0,39.0,31.0,42.0,29.0,41.0,43.0,42.0,41.0,39.0,52.0,35.0,47.0,42.0,38.0,33.0,47.0,50.0,39.0,62.0,46.0,41.0,52.0,54.0,46.0,61.0,44.0,50.0,51.0,41.0,50.0,50.0,52.0,36.0,52.0,47.0,44.0,38.0,40.0,43.0,41.0,47.0,59.0,44.0,44.0,47.0,39.0,35.0,26.0,34.0,32.0,31.0,33.0,28.0,37.0,31.0,20.0,14.0,14.0,20.0,12.0,12.0,14.0,10.0,15.0,21.0,14.0,18.0,14.0,8.0,15.0,11.0,8.0,4.0,8.0,8.0,5.0,5.0,5.0,3.0,3.0,2.0,8.0,,3.0,,1.0,2.0,,3.0,2.0,2.0,3.0,5.0 M91623,8.0,6.0,5.0,13.0,9.0,12.0,16.0,8.0,8.0,11.0,8.0,11.0,12.0,10.0,10.0,13.0,14.0,10.0,15.0,9.0,8.0,11.0,7.0,6.0,9.0,9.0,17.0,7.0,11.0,10.0,13.0,11.0,18.0,12.0,14.0,11.0,16.0,15.0,20.0,17.0,22.0,14.0,13.0,12.0,12.0,5.0,8.0,12.0,16.0,8.0,13.0,13.0,12.0,17.0,14.0,16.0,11.0,19.0,13.0,13.0,10.0,7.0,17.0,20.0,15.0,14.0,7.0,10.0,16.0,9.0,9.0,14.0,8.0,13.0,9.0,12.0,13.0,11.0,5.0,5.0,4.0,6.0,1.0,7.0,5.0,11.0,3.0,2.0,3.0,3.0,3.0,2.0,1.0,,, M91624,25.0,29.0,24.0,32.0,23.0,22.0,22.0,25.0,17.0,22.0,24.0,27.0,35.0,19.0,27.0,26.0,30.0,23.0,33.0,29.0,27.0,24.0,30.0,28.0,35.0,28.0,30.0,27.0,39.0,37.0,31.0,29.0,29.0,29.0,42.0,23.0,23.0,30.0,27.0,21.0,21.0,22.0,23.0,26.0,23.0,26.0,14.0,19.0,14.0,11.0,20.0,21.0,21.0,30.0,19.0,39.0,13.0,26.0,28.0,13.0,17.0,27.0,20.0,34.0,23.0,19.0,19.0,13.0,21.0,11.0,13.0,11.0,13.0,8.0,8.0,10.0,14.0,7.0,9.0,9.0,4.0,6.0,7.0,5.0,4.0,3.0,2.0,4.0,3.0,3.0,2.0,2.0,1.0,1.0,1.0, M91626,22.0,19.0,31.0,25.0,24.0,39.0,31.0,32.0,29.0,35.0,31.0,33.0,36.0,34.0,33.0,38.0,38.0,24.0,33.0,22.0,22.0,29.0,30.0,23.0,26.0,22.0,20.0,28.0,26.0,23.0,28.0,31.0,26.0,26.0,24.0,43.0,35.0,31.0,28.0,30.0,37.0,26.0,37.0,24.0,31.0,30.0,30.0,27.0,31.0,26.0,32.0,24.0,20.0,30.0,33.0,35.0,33.0,29.0,31.0,31.0,30.0,24.0,25.0,21.0,23.0,26.0,21.0,24.0,19.0,18.0,19.0,16.0,20.0,18.0,17.0,21.0,17.0,14.0,22.0,11.0,12.0,16.0,13.0,7.0,11.0,9.0,9.0,4.0,1.0,3.0,2.0,3.0,1.0,,,3.0 M91628,15.0,19.0,14.0,18.0,16.0,12.0,25.0,17.0,25.0,24.0,15.0,26.0,28.0,21.0,26.0,21.0,13.0,23.0,15.0,22.0,20.0,25.0,19.0,22.0,27.0,17.0,26.0,33.0,33.0,25.0,27.0,21.0,17.0,20.0,22.0,30.0,22.0,29.0,24.0,22.0,33.0,24.0,22.0,13.0,19.0,24.0,32.0,28.0,26.0,14.0,29.0,31.0,25.0,14.0,16.0,18.0,27.0,19.0,21.0,19.0,28.0,21.0,11.0,20.0,25.0,16.0,17.0,13.0,13.0,15.0,17.0,16.0,12.0,8.0,9.0,11.0,7.0,6.0,7.0,2.0,8.0,3.0,7.0,2.0,2.0,6.0,4.0,3.0,3.0,1.0,1.0,,1.0,,, M91629,54.0,60.0,68.0,73.0,56.0,63.0,64.0,45.0,49.0,54.0,67.0,54.0,65.0,63.0,52.0,55.0,53.0,57.0,39.0,39.0,62.0,45.0,40.0,53.0,51.0,64.0,53.0,60.0,58.0,61.0,48.0,54.0,75.0,71.0,69.0,51.0,73.0,66.0,59.0,55.0,65.0,58.0,69.0,44.0,46.0,55.0,61.0,36.0,46.0,46.0,49.0,36.0,34.0,36.0,45.0,46.0,32.0,29.0,38.0,29.0,31.0,20.0,29.0,27.0,19.0,26.0,26.0,14.0,22.0,14.0,14.0,15.0,18.0,15.0,16.0,9.0,7.0,11.0,10.0,10.0,7.0,4.0,9.0,6.0,6.0,3.0,1.0,5.0,,4.0,1.0,1.0,,,1.0,2.0 M91637,12.0,24.0,19.0,22.0,21.0,26.0,19.0,24.0,20.0,27.0,35.0,18.0,28.0,23.0,28.0,25.0,20.0,28.0,38.0,12.0,19.0,15.0,12.0,19.0,20.0,22.0,25.0,13.0,19.0,17.0,20.0,20.0,21.0,24.0,25.0,24.0,23.0,33.0,30.0,29.0,29.0,26.0,26.0,21.0,28.0,22.0,30.0,26.0,25.0,18.0,29.0,23.0,30.0,25.0,25.0,28.0,27.0,16.0,23.0,24.0,28.0,20.0,27.0,25.0,27.0,21.0,25.0,20.0,20.0,17.0,16.0,18.0,10.0,15.0,16.0,20.0,20.0,16.0,15.0,20.0,24.0,16.0,15.0,14.0,18.0,12.0,15.0,10.0,10.0,9.0,6.0,2.0,6.0,6.0,1.0,4.0 M91639,5.0,5.0,7.0,10.0,6.0,14.0,6.0,4.0,10.0,9.0,10.0,8.0,2.0,15.0,9.0,6.0,14.0,11.0,12.0,4.0,12.0,9.0,12.0,12.0,9.0,9.0,12.0,8.0,11.0,7.0,11.0,10.0,13.0,13.0,9.0,9.0,9.0,18.0,9.0,12.0,12.0,13.0,6.0,9.0,9.0,11.0,17.0,9.0,9.0,7.0,14.0,15.0,23.0,13.0,14.0,16.0,18.0,19.0,20.0,13.0,12.0,15.0,12.0,13.0,7.0,16.0,10.0,11.0,11.0,11.0,7.0,5.0,9.0,6.0,6.0,4.0,8.0,6.0,9.0,9.0,2.0,10.0,6.0,1.0,5.0,2.0,2.0,,1.0,,1.0,,1.0,,1.0, M91640,24.0,24.0,20.0,25.0,25.0,25.0,25.0,31.0,34.0,26.0,31.0,33.0,29.0,47.0,37.0,30.0,34.0,35.0,29.0,27.0,24.0,27.0,24.0,23.0,15.0,34.0,27.0,36.0,25.0,39.0,24.0,37.0,34.0,25.0,29.0,28.0,27.0,26.0,36.0,30.0,37.0,33.0,20.0,22.0,25.0,29.0,24.0,21.0,20.0,28.0,18.0,25.0,14.0,31.0,16.0,29.0,22.0,25.0,18.0,28.0,16.0,17.0,26.0,22.0,23.0,19.0,18.0,21.0,14.0,11.0,11.0,13.0,17.0,12.0,9.0,8.0,12.0,9.0,5.0,10.0,13.0,6.0,10.0,4.0,6.0,4.0,5.0,5.0,3.0,4.0,,,,,, M91641,22.0,29.0,24.0,23.0,28.0,17.0,30.0,39.0,36.0,26.0,25.0,22.0,33.0,27.0,38.0,25.0,27.0,34.0,22.0,26.0,26.0,28.0,36.0,32.0,34.0,32.0,30.0,29.0,38.0,29.0,28.0,37.0,24.0,27.0,33.0,27.0,29.0,37.0,27.0,29.0,28.0,33.0,27.0,30.0,25.0,38.0,30.0,31.0,26.0,31.0,19.0,38.0,24.0,21.0,30.0,20.0,22.0,31.0,23.0,22.0,18.0,24.0,22.0,24.0,21.0,14.0,16.0,18.0,8.0,18.0,14.0,19.0,10.0,8.0,9.0,12.0,12.0,12.0,8.0,6.0,8.0,5.0,5.0,9.0,8.0,5.0,6.0,5.0,3.0,4.0,1.0,1.0,1.0,,,1.0 M91647,28.0,34.0,37.0,34.0,34.0,31.0,35.0,32.0,49.0,43.0,24.0,42.0,38.0,40.0,30.0,36.0,36.0,36.0,32.0,30.0,36.0,36.0,31.0,32.0,29.0,36.0,27.0,33.0,31.0,31.0,35.0,31.0,38.0,26.0,39.0,37.0,25.0,30.0,43.0,35.0,36.0,32.0,43.0,31.0,29.0,36.0,35.0,21.0,44.0,28.0,32.0,36.0,41.0,43.0,33.0,26.0,33.0,33.0,47.0,29.0,37.0,35.0,39.0,36.0,47.0,28.0,31.0,36.0,26.0,33.0,20.0,27.0,22.0,30.0,23.0,23.0,28.0,26.0,15.0,22.0,17.0,13.0,8.0,12.0,7.0,13.0,4.0,9.0,6.0,2.0,5.0,5.0,,1.0,1.0,3.0 M91650,53.0,45.0,40.0,41.0,51.0,49.0,60.0,40.0,63.0,54.0,65.0,58.0,67.0,68.0,58.0,58.0,58.0,51.0,52.0,63.0,43.0,40.0,56.0,48.0,65.0,52.0,51.0,55.0,63.0,47.0,50.0,54.0,58.0,62.0,61.0,46.0,54.0,74.0,62.0,65.0,51.0,62.0,62.0,48.0,58.0,63.0,35.0,44.0,67.0,45.0,40.0,49.0,51.0,59.0,64.0,58.0,65.0,62.0,54.0,62.0,54.0,68.0,60.0,59.0,60.0,64.0,50.0,47.0,42.0,63.0,43.0,46.0,44.0,36.0,36.0,36.0,33.0,35.0,51.0,24.0,24.0,26.0,25.0,12.0,23.0,25.0,12.0,23.0,15.0,9.0,8.0,7.0,6.0,3.0,2.0,2.0 M91654,24.0,26.0,19.0,25.0,23.0,19.0,26.0,15.0,25.0,23.0,25.0,25.0,23.0,35.0,22.0,34.0,17.0,20.0,19.0,13.0,12.0,14.0,16.0,17.0,14.0,16.0,23.0,24.0,27.0,29.0,22.0,27.0,35.0,23.0,21.0,35.0,25.0,32.0,29.0,21.0,25.0,25.0,20.0,20.0,22.0,27.0,28.0,15.0,23.0,13.0,17.0,12.0,17.0,16.0,19.0,21.0,17.0,24.0,28.0,25.0,29.0,17.0,27.0,29.0,18.0,17.0,23.0,16.0,23.0,16.0,14.0,10.0,17.0,13.0,13.0,11.0,10.0,12.0,9.0,14.0,2.0,10.0,6.0,3.0,2.0,3.0,5.0,1.0,1.0,3.0,,1.0,4.0,,,1.0 M91659,32.0,27.0,23.0,27.0,33.0,20.0,28.0,25.0,20.0,30.0,16.0,32.0,26.0,26.0,29.0,31.0,30.0,36.0,40.0,34.0,34.0,26.0,39.0,40.0,38.0,36.0,40.0,23.0,22.0,36.0,28.0,26.0,16.0,23.0,26.0,22.0,21.0,24.0,26.0,25.0,25.0,30.0,25.0,29.0,33.0,32.0,27.0,26.0,25.0,37.0,38.0,29.0,26.0,22.0,15.0,23.0,25.0,18.0,12.0,13.0,10.0,6.0,11.0,10.0,10.0,15.0,7.0,10.0,7.0,14.0,10.0,7.0,6.0,6.0,3.0,5.0,4.0,2.0,5.0,1.0,2.0,1.0,1.0,5.0,3.0,2.0,3.0,1.0,1.0,1.0,,,,,,3.0 M91660,24.0,31.0,33.0,34.0,31.0,37.0,29.0,41.0,41.0,51.0,47.0,38.0,51.0,39.0,43.0,44.0,37.0,50.0,45.0,36.0,34.0,36.0,28.0,27.0,25.0,36.0,33.0,27.0,17.0,34.0,27.0,30.0,33.0,34.0,39.0,44.0,35.0,37.0,40.0,42.0,40.0,50.0,48.0,32.0,40.0,35.0,39.0,36.0,30.0,34.0,37.0,25.0,33.0,39.0,42.0,29.0,27.0,30.0,19.0,26.0,17.0,19.0,35.0,26.0,26.0,22.0,18.0,17.0,19.0,18.0,17.0,14.0,12.0,21.0,12.0,18.0,11.0,12.0,12.0,10.0,10.0,9.0,11.0,6.0,5.0,4.0,2.0,4.0,2.0,1.0,3.0,2.0,1.0,2.0,1.0,3.0 M92001,12.0,18.0,17.0,11.0,19.0,21.0,22.0,23.0,22.0,27.0,21.0,30.0,27.0,29.0,29.0,38.0,24.0,23.0,24.0,33.0,32.0,28.0,30.0,21.0,26.0,20.0,23.0,23.0,33.0,19.0,28.0,26.0,19.0,34.0,20.0,27.0,20.0,30.0,33.0,18.0,19.0,23.0,22.0,27.0,26.0,29.0,21.0,25.0,17.0,31.0,35.0,23.0,34.0,22.0,34.0,27.0,21.0,30.0,31.0,29.0,31.0,23.0,24.0,20.0,24.0,18.0,17.0,14.0,11.0,13.0,16.0,8.0,15.0,10.0,10.0,8.0,11.0,8.0,7.0,6.0,8.0,8.0,6.0,3.0,5.0,3.0,1.0,2.0,,1.0,2.0,2.0,1.0,,,1.0 M92004,16.0,15.0,17.0,19.0,14.0,12.0,24.0,15.0,25.0,14.0,18.0,22.0,16.0,18.0,25.0,26.0,15.0,20.0,16.0,15.0,14.0,13.0,16.0,18.0,17.0,16.0,16.0,21.0,18.0,21.0,22.0,27.0,15.0,30.0,15.0,24.0,24.0,22.0,24.0,27.0,27.0,21.0,22.0,22.0,19.0,24.0,19.0,20.0,20.0,18.0,19.0,12.0,17.0,20.0,13.0,26.0,23.0,27.0,26.0,23.0,19.0,25.0,16.0,22.0,15.0,17.0,19.0,20.0,21.0,18.0,8.0,14.0,14.0,11.0,9.0,16.0,13.0,11.0,10.0,8.0,7.0,10.0,9.0,8.0,8.0,5.0,9.0,4.0,5.0,6.0,1.0,3.0,,1.0,3.0,2.0 M92006,19.0,25.0,20.0,17.0,24.0,25.0,24.0,19.0,28.0,19.0,27.0,28.0,25.0,27.0,31.0,30.0,22.0,41.0,31.0,34.0,26.0,27.0,14.0,23.0,29.0,27.0,24.0,37.0,26.0,27.0,37.0,34.0,30.0,28.0,33.0,27.0,36.0,31.0,20.0,33.0,29.0,43.0,22.0,38.0,36.0,20.0,27.0,35.0,46.0,29.0,19.0,29.0,34.0,37.0,33.0,31.0,33.0,33.0,40.0,47.0,27.0,35.0,37.0,32.0,23.0,33.0,19.0,33.0,21.0,26.0,23.0,21.0,24.0,19.0,23.0,27.0,20.0,21.0,22.0,18.0,12.0,12.0,7.0,13.0,9.0,5.0,8.0,9.0,4.0,3.0,10.0,3.0,2.0,,1.0,2.0 M92008,48.0,40.0,49.0,69.0,63.0,61.0,74.0,67.0,64.0,73.0,65.0,69.0,89.0,57.0,76.0,86.0,72.0,62.0,65.0,63.0,68.0,67.0,60.0,52.0,68.0,57.0,66.0,54.0,70.0,51.0,66.0,64.0,55.0,71.0,79.0,76.0,90.0,80.0,58.0,73.0,62.0,79.0,67.0,91.0,69.0,104.0,75.0,101.0,89.0,88.0,94.0,90.0,83.0,77.0,107.0,95.0,78.0,90.0,98.0,95.0,87.0,84.0,86.0,75.0,72.0,65.0,73.0,90.0,63.0,81.0,66.0,66.0,79.0,63.0,63.0,70.0,63.0,65.0,69.0,64.0,56.0,48.0,37.0,30.0,33.0,31.0,18.0,26.0,29.0,23.0,20.0,12.0,5.0,14.0,4.0,18.0 M92009,53.0,67.0,66.0,65.0,80.0,65.0,79.0,77.0,89.0,116.0,94.0,107.0,94.0,115.0,94.0,103.0,87.0,73.0,87.0,72.0,75.0,54.0,56.0,67.0,79.0,64.0,59.0,61.0,82.0,73.0,70.0,89.0,87.0,95.0,98.0,105.0,93.0,75.0,97.0,97.0,115.0,96.0,87.0,94.0,79.0,70.0,71.0,73.0,67.0,79.0,61.0,69.0,72.0,79.0,84.0,95.0,90.0,113.0,86.0,78.0,82.0,89.0,86.0,79.0,72.0,69.0,60.0,70.0,63.0,76.0,67.0,64.0,48.0,50.0,48.0,43.0,67.0,54.0,40.0,33.0,39.0,37.0,39.0,33.0,24.0,17.0,22.0,13.0,10.0,20.0,10.0,10.0,6.0,4.0,5.0,9.0 M92010,38.0,44.0,47.0,55.0,49.0,52.0,59.0,55.0,59.0,59.0,67.0,53.0,68.0,69.0,61.0,74.0,90.0,73.0,63.0,59.0,66.0,56.0,58.0,54.0,42.0,69.0,55.0,60.0,62.0,54.0,58.0,62.0,72.0,76.0,63.0,56.0,65.0,72.0,73.0,76.0,66.0,71.0,62.0,65.0,64.0,72.0,74.0,73.0,71.0,56.0,85.0,77.0,89.0,74.0,80.0,81.0,77.0,86.0,80.0,90.0,94.0,77.0,76.0,82.0,83.0,71.0,74.0,64.0,58.0,61.0,61.0,47.0,59.0,54.0,62.0,58.0,66.0,55.0,55.0,53.0,48.0,43.0,46.0,43.0,32.0,26.0,22.0,27.0,26.0,16.0,13.0,14.0,12.0,11.0,4.0,10.0 M92011,152.0,183.0,203.0,191.0,183.0,202.0,203.0,213.0,213.0,222.0,215.0,253.0,234.0,243.0,264.0,254.0,239.0,244.0,227.0,225.0,240.0,217.0,203.0,221.0,230.0,215.0,254.0,241.0,265.0,265.0,232.0,255.0,269.0,278.0,263.0,287.0,274.0,289.0,233.0,251.0,239.0,260.0,255.0,255.0,243.0,227.0,225.0,208.0,248.0,238.0,273.0,258.0,226.0,260.0,268.0,262.0,288.0,270.0,266.0,248.0,242.0,250.0,227.0,243.0,230.0,206.0,185.0,201.0,183.0,168.0,173.0,165.0,153.0,161.0,182.0,157.0,132.0,159.0,151.0,119.0,107.0,108.0,106.0,88.0,77.0,67.0,72.0,57.0,49.0,37.0,38.0,27.0,17.0,14.0,13.0,32.0 M92012,67.0,74.0,66.0,75.0,74.0,78.0,86.0,68.0,76.0,61.0,76.0,79.0,52.0,103.0,73.0,78.0,94.0,83.0,70.0,79.0,89.0,90.0,97.0,122.0,121.0,138.0,134.0,116.0,112.0,100.0,135.0,114.0,114.0,117.0,118.0,102.0,90.0,92.0,69.0,90.0,79.0,82.0,82.0,80.0,87.0,66.0,67.0,77.0,86.0,63.0,64.0,75.0,68.0,70.0,74.0,73.0,69.0,62.0,49.0,55.0,64.0,49.0,60.0,53.0,62.0,61.0,50.0,48.0,44.0,44.0,38.0,34.0,35.0,41.0,25.0,33.0,32.0,34.0,25.0,19.0,17.0,22.0,24.0,21.0,23.0,17.0,14.0,12.0,4.0,4.0,10.0,4.0,3.0,4.0,3.0,10.0 M92013,42.0,41.0,43.0,30.0,45.0,42.0,51.0,42.0,46.0,42.0,54.0,58.0,49.0,57.0,59.0,58.0,37.0,49.0,61.0,40.0,67.0,45.0,43.0,55.0,53.0,61.0,63.0,53.0,44.0,52.0,78.0,55.0,60.0,63.0,65.0,74.0,60.0,43.0,51.0,55.0,58.0,35.0,60.0,55.0,60.0,52.0,51.0,51.0,53.0,66.0,51.0,50.0,56.0,68.0,54.0,54.0,52.0,42.0,54.0,48.0,28.0,43.0,37.0,37.0,39.0,23.0,26.0,25.0,34.0,18.0,23.0,24.0,25.0,19.0,23.0,17.0,13.0,15.0,17.0,6.0,14.0,10.0,14.0,8.0,6.0,12.0,7.0,13.0,8.0,10.0,7.0,6.0,2.0,3.0,4.0,3.0 M92015,27.0,34.0,35.0,23.0,27.0,48.0,37.0,34.0,31.0,34.0,37.0,39.0,30.0,33.0,37.0,39.0,24.0,26.0,18.0,29.0,24.0,27.0,19.0,27.0,28.0,29.0,25.0,27.0,25.0,28.0,42.0,37.0,42.0,29.0,40.0,37.0,39.0,53.0,41.0,33.0,40.0,43.0,33.0,32.0,39.0,34.0,23.0,20.0,22.0,18.0,25.0,28.0,25.0,21.0,23.0,26.0,22.0,27.0,23.0,29.0,20.0,12.0,21.0,31.0,15.0,12.0,20.0,12.0,17.0,15.0,20.0,19.0,18.0,16.0,12.0,12.0,11.0,10.0,11.0,5.0,10.0,4.0,7.0,6.0,5.0,6.0,3.0,4.0,1.0,1.0,4.0,1.0,,,1.0,9.0 M92016,156.0,152.0,179.0,171.0,174.0,175.0,156.0,161.0,167.0,153.0,154.0,187.0,158.0,151.0,165.0,169.0,150.0,136.0,140.0,137.0,155.0,160.0,164.0,196.0,179.0,186.0,234.0,238.0,227.0,234.0,248.0,230.0,243.0,251.0,250.0,222.0,248.0,231.0,232.0,223.0,209.0,198.0,209.0,201.0,197.0,178.0,188.0,162.0,167.0,167.0,185.0,146.0,135.0,150.0,146.0,124.0,115.0,110.0,110.0,115.0,97.0,98.0,97.0,115.0,90.0,77.0,79.0,77.0,75.0,64.0,51.0,56.0,39.0,49.0,39.0,41.0,33.0,42.0,19.0,25.0,20.0,30.0,25.0,15.0,18.0,17.0,17.0,4.0,13.0,8.0,5.0,3.0,5.0,5.0,3.0,5.0 M92019,26.0,26.0,44.0,33.0,41.0,38.0,41.0,53.0,46.0,55.0,41.0,46.0,49.0,41.0,44.0,42.0,46.0,41.0,42.0,52.0,36.0,48.0,40.0,35.0,42.0,43.0,32.0,54.0,40.0,36.0,36.0,38.0,49.0,45.0,38.0,46.0,51.0,43.0,44.0,30.0,37.0,36.0,36.0,39.0,50.0,43.0,31.0,28.0,45.0,28.0,23.0,44.0,51.0,46.0,54.0,41.0,38.0,49.0,46.0,46.0,43.0,40.0,38.0,34.0,38.0,30.0,36.0,36.0,29.0,37.0,20.0,29.0,20.0,19.0,22.0,17.0,19.0,15.0,18.0,11.0,13.0,12.0,12.0,10.0,9.0,11.0,9.0,4.0,8.0,7.0,,10.0,3.0,2.0,2.0,6.0 M92022,18.0,22.0,25.0,16.0,31.0,27.0,41.0,29.0,38.0,31.0,42.0,47.0,42.0,33.0,37.0,35.0,24.0,24.0,28.0,30.0,23.0,18.0,20.0,25.0,23.0,24.0,27.0,24.0,25.0,31.0,30.0,29.0,34.0,34.0,33.0,35.0,39.0,43.0,29.0,35.0,28.0,23.0,22.0,27.0,31.0,24.0,14.0,19.0,11.0,29.0,17.0,23.0,19.0,19.0,22.0,25.0,34.0,24.0,21.0,28.0,26.0,23.0,29.0,18.0,21.0,21.0,18.0,23.0,15.0,14.0,20.0,11.0,4.0,14.0,9.0,12.0,11.0,6.0,6.0,8.0,7.0,3.0,8.0,4.0,4.0,9.0,5.0,4.0,8.0,3.0,3.0,1.0,4.0,1.0,,2.0 M92026,29.0,37.0,28.0,28.0,17.0,35.0,31.0,34.0,37.0,33.0,34.0,22.0,26.0,21.0,27.0,36.0,27.0,20.0,16.0,36.0,29.0,26.0,29.0,26.0,24.0,20.0,33.0,31.0,43.0,43.0,34.0,38.0,37.0,38.0,38.0,38.0,29.0,34.0,35.0,36.0,40.0,23.0,32.0,29.0,38.0,25.0,22.0,27.0,29.0,18.0,30.0,27.0,43.0,36.0,29.0,33.0,47.0,28.0,36.0,28.0,42.0,30.0,27.0,35.0,30.0,37.0,36.0,26.0,27.0,15.0,24.0,23.0,20.0,13.0,22.0,16.0,26.0,16.0,26.0,14.0,12.0,10.0,11.0,7.0,8.0,13.0,9.0,6.0,7.0,4.0,1.0,2.0,4.0,2.0,1.0,4.0 M92028,57.0,64.0,47.0,63.0,35.0,37.0,59.0,43.0,48.0,52.0,52.0,59.0,51.0,52.0,57.0,43.0,42.0,60.0,46.0,55.0,49.0,54.0,88.0,84.0,85.0,84.0,91.0,117.0,120.0,129.0,134.0,123.0,123.0,132.0,132.0,140.0,123.0,118.0,108.0,122.0,108.0,96.0,103.0,91.0,104.0,104.0,80.0,81.0,70.0,86.0,81.0,66.0,72.0,61.0,50.0,57.0,54.0,41.0,47.0,53.0,34.0,38.0,34.0,34.0,36.0,26.0,35.0,29.0,17.0,18.0,21.0,16.0,18.0,20.0,11.0,11.0,19.0,13.0,19.0,7.0,3.0,8.0,10.0,3.0,3.0,6.0,5.0,2.0,3.0,4.0,2.0,3.0,4.0,1.0,1.0,1.0 M92029,27.0,23.0,27.0,31.0,19.0,27.0,31.0,36.0,28.0,34.0,24.0,33.0,24.0,38.0,28.0,36.0,38.0,33.0,37.0,35.0,37.0,39.0,32.0,36.0,35.0,34.0,31.0,26.0,37.0,32.0,42.0,39.0,30.0,38.0,52.0,38.0,40.0,38.0,39.0,34.0,39.0,44.0,42.0,25.0,39.0,47.0,32.0,32.0,28.0,36.0,39.0,44.0,36.0,51.0,46.0,33.0,37.0,43.0,48.0,46.0,30.0,34.0,27.0,35.0,44.0,29.0,29.0,26.0,24.0,20.0,34.0,32.0,28.0,37.0,30.0,30.0,18.0,26.0,27.0,22.0,11.0,21.0,18.0,15.0,14.0,6.0,5.0,7.0,12.0,6.0,9.0,7.0,4.0,1.0,1.0,9.0 M92039,31.0,32.0,36.0,31.0,32.0,42.0,42.0,53.0,39.0,51.0,46.0,43.0,39.0,52.0,47.0,49.0,39.0,57.0,41.0,46.0,38.0,39.0,35.0,37.0,43.0,44.0,47.0,48.0,30.0,57.0,49.0,46.0,34.0,56.0,41.0,57.0,45.0,45.0,39.0,42.0,43.0,60.0,34.0,38.0,45.0,37.0,46.0,37.0,35.0,49.0,38.0,41.0,59.0,45.0,51.0,53.0,39.0,42.0,38.0,38.0,53.0,42.0,43.0,40.0,48.0,41.0,32.0,39.0,31.0,20.0,34.0,30.0,27.0,33.0,31.0,33.0,31.0,23.0,26.0,14.0,23.0,15.0,14.0,10.0,27.0,14.0,8.0,11.0,4.0,8.0,5.0,2.0,3.0,3.0,3.0,4.0 M92040,85.0,89.0,96.0,95.0,80.0,101.0,98.0,84.0,85.0,90.0,86.0,89.0,82.0,105.0,94.0,89.0,89.0,75.0,74.0,62.0,77.0,53.0,58.0,80.0,80.0,87.0,79.0,75.0,109.0,91.0,115.0,110.0,102.0,112.0,129.0,118.0,92.0,103.0,113.0,88.0,95.0,116.0,77.0,78.0,85.0,65.0,83.0,62.0,51.0,61.0,82.0,65.0,59.0,83.0,80.0,72.0,70.0,64.0,59.0,60.0,60.0,77.0,64.0,52.0,49.0,50.0,56.0,43.0,37.0,36.0,32.0,33.0,27.0,30.0,45.0,33.0,33.0,31.0,35.0,21.0,19.0,20.0,14.0,19.0,17.0,18.0,16.0,5.0,8.0,13.0,6.0,3.0,3.0,2.0,,3.0 M92041,25.0,40.0,22.0,29.0,15.0,31.0,31.0,24.0,41.0,34.0,45.0,38.0,36.0,37.0,36.0,31.0,32.0,44.0,36.0,38.0,30.0,31.0,26.0,20.0,38.0,33.0,36.0,29.0,41.0,44.0,29.0,31.0,39.0,39.0,41.0,37.0,37.0,41.0,32.0,38.0,29.0,27.0,40.0,32.0,35.0,26.0,43.0,30.0,34.0,37.0,18.0,29.0,47.0,32.0,19.0,34.0,30.0,37.0,31.0,39.0,33.0,29.0,27.0,24.0,22.0,28.0,26.0,20.0,18.0,13.0,16.0,13.0,14.0,17.0,18.0,10.0,11.0,16.0,17.0,7.0,9.0,5.0,5.0,5.0,9.0,5.0,5.0,7.0,4.0,5.0,3.0,1.0,,4.0,,3.0 M92043,24.0,51.0,46.0,46.0,37.0,37.0,25.0,37.0,32.0,43.0,41.0,36.0,38.0,32.0,37.0,43.0,46.0,40.0,34.0,39.0,28.0,34.0,42.0,41.0,38.0,36.0,35.0,41.0,34.0,26.0,35.0,41.0,41.0,55.0,63.0,40.0,54.0,39.0,48.0,49.0,55.0,48.0,45.0,42.0,40.0,42.0,37.0,50.0,44.0,46.0,49.0,44.0,33.0,35.0,49.0,53.0,50.0,59.0,43.0,42.0,41.0,57.0,68.0,47.0,45.0,48.0,36.0,32.0,32.0,37.0,38.0,36.0,39.0,36.0,32.0,36.0,28.0,27.0,37.0,32.0,24.0,20.0,17.0,14.0,14.0,14.0,18.0,6.0,10.0,9.0,3.0,2.0,4.0,4.0,3.0,7.0 M92607,108.0,134.0,112.0,140.0,121.0,114.0,163.0,148.0,142.0,150.0,139.0,135.0,138.0,144.0,125.0,127.0,129.0,142.0,115.0,93.0,105.0,127.0,108.0,110.0,109.0,138.0,178.0,168.0,172.0,151.0,174.0,167.0,180.0,182.0,186.0,192.0,166.0,202.0,178.0,171.0,157.0,183.0,150.0,161.0,161.0,145.0,151.0,117.0,128.0,123.0,96.0,121.0,112.0,105.0,100.0,93.0,108.0,106.0,89.0,65.0,79.0,81.0,83.0,75.0,74.0,74.0,62.0,71.0,56.0,54.0,61.0,65.0,40.0,46.0,40.0,40.0,38.0,33.0,27.0,25.0,27.0,15.0,28.0,21.0,13.0,20.0,12.0,15.0,5.0,4.0,7.0,11.0,4.0,3.0,2.0,12.0 M92609,30.0,37.0,44.0,31.0,31.0,34.0,43.0,42.0,37.0,45.0,45.0,37.0,42.0,36.0,40.0,35.0,50.0,32.0,41.0,38.0,45.0,30.0,36.0,41.0,37.0,34.0,31.0,45.0,37.0,33.0,37.0,42.0,42.0,47.0,53.0,40.0,46.0,33.0,50.0,49.0,46.0,40.0,46.0,39.0,50.0,52.0,41.0,51.0,39.0,27.0,39.0,40.0,30.0,45.0,37.0,36.0,33.0,30.0,48.0,38.0,33.0,28.0,37.0,36.0,29.0,24.0,36.0,34.0,35.0,33.0,30.0,28.0,22.0,17.0,22.0,11.0,20.0,21.0,20.0,11.0,14.0,11.0,5.0,10.0,10.0,6.0,6.0,4.0,8.0,7.0,4.0,4.0,2.0,1.0,,4.0 M92612,196.0,197.0,221.0,211.0,242.0,201.0,240.0,244.0,218.0,247.0,256.0,256.0,267.0,259.0,255.0,274.0,249.0,277.0,267.0,222.0,285.0,262.0,260.0,254.0,288.0,301.0,291.0,310.0,287.0,277.0,307.0,284.0,305.0,250.0,321.0,300.0,293.0,296.0,290.0,279.0,285.0,259.0,299.0,252.0,264.0,275.0,239.0,268.0,247.0,266.0,280.0,286.0,253.0,270.0,277.0,280.0,259.0,250.0,231.0,222.0,231.0,212.0,246.0,196.0,187.0,183.0,168.0,170.0,180.0,148.0,162.0,133.0,145.0,137.0,121.0,116.0,115.0,121.0,117.0,94.0,71.0,89.0,66.0,53.0,53.0,72.0,64.0,41.0,33.0,41.0,37.0,17.0,13.0,15.0,10.0,28.0 M92627,23.0,20.0,22.0,31.0,23.0,29.0,23.0,27.0,15.0,32.0,30.0,39.0,29.0,29.0,35.0,28.0,22.0,25.0,27.0,26.0,30.0,27.0,16.0,17.0,34.0,31.0,38.0,25.0,28.0,26.0,25.0,31.0,35.0,33.0,26.0,21.0,30.0,29.0,26.0,25.0,24.0,25.0,27.0,25.0,28.0,22.0,30.0,16.0,29.0,24.0,11.0,15.0,28.0,31.0,26.0,23.0,21.0,36.0,20.0,21.0,23.0,22.0,21.0,20.0,24.0,30.0,19.0,18.0,15.0,12.0,19.0,15.0,13.0,24.0,14.0,19.0,12.0,22.0,15.0,9.0,15.0,10.0,7.0,8.0,8.0,8.0,9.0,6.0,3.0,2.0,2.0,1.0,4.0,1.0,1.0,1.0 M92629,20.0,25.0,33.0,34.0,25.0,35.0,27.0,27.0,29.0,32.0,24.0,34.0,38.0,37.0,37.0,34.0,29.0,38.0,30.0,20.0,21.0,36.0,36.0,25.0,24.0,17.0,31.0,25.0,27.0,32.0,32.0,47.0,27.0,26.0,37.0,36.0,34.0,27.0,35.0,34.0,35.0,36.0,23.0,27.0,34.0,30.0,26.0,37.0,30.0,27.0,21.0,39.0,11.0,21.0,23.0,19.0,18.0,18.0,36.0,21.0,30.0,21.0,15.0,21.0,17.0,23.0,14.0,28.0,13.0,10.0,8.0,4.0,16.0,14.0,10.0,10.0,11.0,6.0,8.0,4.0,8.0,4.0,5.0,1.0,1.0,3.0,3.0,1.0,1.0,1.0,,,1.0,3.0,2.0,2.0 M92630,28.0,37.0,23.0,34.0,34.0,46.0,44.0,37.0,30.0,41.0,37.0,35.0,48.0,45.0,34.0,42.0,45.0,46.0,38.0,38.0,41.0,34.0,39.0,36.0,32.0,50.0,39.0,46.0,34.0,38.0,39.0,43.0,44.0,41.0,54.0,58.0,45.0,39.0,44.0,39.0,37.0,38.0,37.0,36.0,36.0,31.0,31.0,27.0,36.0,34.0,37.0,40.0,43.0,32.0,55.0,39.0,41.0,31.0,39.0,36.0,39.0,26.0,34.0,33.0,26.0,33.0,19.0,21.0,26.0,23.0,12.0,33.0,19.0,17.0,13.0,13.0,13.0,18.0,16.0,10.0,15.0,11.0,4.0,9.0,6.0,12.0,8.0,11.0,10.0,4.0,3.0,4.0,1.0,,2.0,4.0 M92649,23.0,18.0,31.0,28.0,21.0,37.0,30.0,25.0,29.0,32.0,37.0,31.0,32.0,29.0,28.0,25.0,39.0,21.0,28.0,29.0,30.0,29.0,25.0,22.0,25.0,26.0,26.0,33.0,28.0,34.0,27.0,33.0,34.0,29.0,32.0,34.0,38.0,36.0,29.0,34.0,34.0,31.0,28.0,29.0,31.0,31.0,31.0,25.0,17.0,29.0,31.0,18.0,28.0,35.0,23.0,27.0,24.0,23.0,19.0,26.0,26.0,27.0,20.0,27.0,23.0,15.0,16.0,23.0,18.0,16.0,13.0,30.0,14.0,19.0,22.0,15.0,12.0,12.0,16.0,7.0,9.0,10.0,13.0,4.0,8.0,4.0,4.0,6.0,6.0,6.0,3.0,2.0,2.0,2.0,1.0,1.0 M92654,43.0,42.0,36.0,51.0,49.0,56.0,67.0,45.0,47.0,60.0,47.0,58.0,59.0,52.0,54.0,68.0,69.0,55.0,49.0,51.0,63.0,49.0,42.0,41.0,33.0,50.0,51.0,48.0,47.0,46.0,62.0,64.0,54.0,54.0,57.0,52.0,63.0,40.0,53.0,45.0,50.0,57.0,43.0,45.0,48.0,51.0,51.0,49.0,34.0,49.0,36.0,43.0,42.0,54.0,51.0,38.0,37.0,42.0,42.0,52.0,42.0,40.0,37.0,47.0,29.0,33.0,31.0,27.0,22.0,27.0,24.0,30.0,21.0,28.0,20.0,12.0,16.0,25.0,24.0,17.0,10.0,14.0,13.0,10.0,9.0,7.0,10.0,8.0,7.0,1.0,1.0,2.0,4.0,,1.0,2.0 Y00228,25.0,17.0,13.0,14.0,17.0,16.0,16.0,15.0,15.0,20.0,15.0,15.0,11.0,28.0,26.0,21.0,27.0,19.0,20.0,24.0,28.0,28.0,24.0,28.0,34.0,33.0,33.0,25.0,37.0,28.0,20.0,27.0,24.0,26.0,25.0,27.0,14.0,18.0,25.0,19.0,25.0,12.0,8.0,19.0,23.0,18.0,15.0,21.0,20.0,17.0,19.0,26.0,14.0,12.0,15.0,12.0,12.0,10.0,9.0,3.0,4.0,7.0,2.0,4.0,6.0,9.0,8.0,6.0,6.0,1.0,3.0,4.0,5.0,2.0,1.0,2.0,3.0,,,,,1.0,3.0,,1.0,1.0,,1.0,,2.0,,,1.0,,,1.0 Y00278,21.0,25.0,32.0,20.0,22.0,15.0,29.0,28.0,31.0,29.0,27.0,33.0,28.0,30.0,33.0,28.0,28.0,25.0,23.0,30.0,24.0,31.0,25.0,29.0,27.0,25.0,33.0,26.0,27.0,33.0,20.0,38.0,27.0,20.0,24.0,26.0,33.0,30.0,31.0,21.0,31.0,40.0,25.0,30.0,34.0,26.0,25.0,19.0,15.0,27.0,18.0,28.0,24.0,20.0,29.0,26.0,20.0,26.0,21.0,17.0,21.0,13.0,15.0,22.0,21.0,13.0,11.0,22.0,11.0,9.0,12.0,17.0,12.0,11.0,9.0,13.0,5.0,8.0,8.0,4.0,10.0,7.0,6.0,6.0,6.0,4.0,6.0,2.0,3.0,3.0,2.0,1.0,1.0,,,1.0 Y01756,28.0,32.0,22.0,39.0,24.0,36.0,34.0,44.0,27.0,31.0,39.0,33.0,35.0,36.0,24.0,34.0,40.0,31.0,35.0,38.0,34.0,40.0,30.0,32.0,33.0,29.0,44.0,37.0,44.0,39.0,38.0,50.0,42.0,40.0,45.0,43.0,49.0,44.0,41.0,45.0,52.0,46.0,40.0,34.0,42.0,35.0,35.0,36.0,23.0,31.0,41.0,31.0,31.0,49.0,37.0,32.0,45.0,39.0,46.0,44.0,47.0,42.0,46.0,42.0,54.0,43.0,41.0,46.0,46.0,44.0,40.0,39.0,41.0,33.0,29.0,29.0,27.0,31.0,32.0,21.0,23.0,23.0,19.0,16.0,6.0,12.0,10.0,9.0,11.0,12.0,4.0,1.0,5.0,4.0,3.0,5.0 Y02212,14.0,19.0,12.0,21.0,12.0,15.0,13.0,14.0,18.0,14.0,15.0,19.0,34.0,18.0,16.0,20.0,16.0,20.0,17.0,21.0,11.0,16.0,13.0,9.0,17.0,24.0,14.0,17.0,18.0,26.0,23.0,12.0,18.0,18.0,24.0,15.0,25.0,19.0,18.0,28.0,18.0,19.0,18.0,21.0,15.0,17.0,16.0,17.0,15.0,20.0,13.0,22.0,15.0,18.0,22.0,24.0,21.0,18.0,20.0,19.0,17.0,19.0,12.0,22.0,16.0,17.0,20.0,8.0,14.0,11.0,15.0,16.0,9.0,14.0,8.0,9.0,11.0,6.0,13.0,9.0,12.0,7.0,5.0,5.0,1.0,4.0,4.0,4.0,5.0,1.0,3.0,1.0,1.0,1.0,, Y02626,26.0,21.0,22.0,30.0,40.0,35.0,31.0,31.0,41.0,45.0,37.0,45.0,40.0,40.0,54.0,38.0,30.0,31.0,40.0,29.0,26.0,26.0,19.0,30.0,27.0,33.0,30.0,27.0,30.0,31.0,39.0,37.0,34.0,29.0,47.0,44.0,43.0,39.0,45.0,31.0,53.0,43.0,24.0,32.0,42.0,46.0,33.0,34.0,29.0,30.0,28.0,19.0,21.0,34.0,27.0,22.0,19.0,33.0,20.0,16.0,23.0,23.0,19.0,20.0,21.0,24.0,11.0,21.0,29.0,12.0,16.0,17.0,15.0,16.0,16.0,16.0,16.0,16.0,13.0,5.0,12.0,9.0,6.0,7.0,8.0,5.0,5.0,4.0,1.0,1.0,2.0,2.0,,2.0,2.0, Y02627,60.0,85.0,91.0,93.0,90.0,108.0,123.0,106.0,109.0,125.0,114.0,123.0,122.0,133.0,114.0,116.0,109.0,120.0,85.0,86.0,86.0,85.0,90.0,78.0,84.0,72.0,82.0,66.0,67.0,73.0,60.0,90.0,80.0,69.0,90.0,85.0,87.0,91.0,93.0,90.0,100.0,75.0,100.0,74.0,95.0,70.0,67.0,67.0,64.0,69.0,69.0,61.0,64.0,64.0,69.0,61.0,55.0,51.0,58.0,46.0,62.0,67.0,55.0,44.0,51.0,46.0,41.0,44.0,37.0,37.0,34.0,33.0,33.0,18.0,25.0,27.0,17.0,34.0,27.0,25.0,14.0,19.0,12.0,14.0,12.0,15.0,13.0,8.0,9.0,9.0,4.0,4.0,,2.0,,4.0 Y02636,38.0,44.0,46.0,54.0,38.0,72.0,61.0,51.0,54.0,44.0,47.0,68.0,63.0,56.0,46.0,60.0,49.0,36.0,39.0,37.0,35.0,38.0,51.0,49.0,39.0,37.0,70.0,64.0,58.0,57.0,63.0,82.0,77.0,84.0,92.0,95.0,80.0,120.0,83.0,86.0,91.0,76.0,66.0,69.0,53.0,46.0,49.0,47.0,45.0,52.0,46.0,34.0,36.0,30.0,41.0,38.0,34.0,24.0,21.0,29.0,19.0,29.0,19.0,14.0,24.0,26.0,17.0,11.0,20.0,14.0,14.0,9.0,7.0,4.0,7.0,9.0,12.0,6.0,5.0,6.0,3.0,4.0,2.0,3.0,8.0,3.0,2.0,6.0,5.0,4.0,1.0,3.0,3.0,2.0,4.0,4.0 Y02653,30.0,19.0,26.0,17.0,29.0,24.0,38.0,38.0,35.0,45.0,37.0,32.0,41.0,31.0,35.0,29.0,33.0,30.0,20.0,19.0,18.0,22.0,16.0,23.0,25.0,25.0,19.0,26.0,30.0,28.0,32.0,28.0,44.0,39.0,27.0,31.0,36.0,54.0,39.0,47.0,29.0,37.0,29.0,31.0,33.0,25.0,20.0,15.0,26.0,24.0,19.0,20.0,19.0,22.0,30.0,20.0,35.0,23.0,24.0,25.0,24.0,21.0,27.0,22.0,18.0,14.0,15.0,15.0,22.0,20.0,14.0,15.0,13.0,9.0,13.0,9.0,13.0,17.0,11.0,9.0,8.0,9.0,9.0,7.0,3.0,5.0,6.0,2.0,3.0,4.0,2.0,1.0,4.0,,1.0, Y02701,40.0,39.0,62.0,68.0,67.0,72.0,79.0,76.0,66.0,80.0,71.0,77.0,73.0,93.0,85.0,78.0,85.0,52.0,73.0,81.0,56.0,44.0,62.0,59.0,47.0,70.0,51.0,42.0,52.0,49.0,62.0,60.0,62.0,75.0,77.0,62.0,72.0,62.0,70.0,73.0,72.0,84.0,70.0,78.0,78.0,66.0,77.0,64.0,55.0,55.0,53.0,68.0,48.0,63.0,60.0,57.0,56.0,56.0,42.0,31.0,51.0,50.0,47.0,38.0,38.0,31.0,24.0,35.0,22.0,25.0,21.0,14.0,11.0,12.0,11.0,5.0,11.0,10.0,15.0,5.0,7.0,12.0,2.0,3.0,2.0,2.0,3.0,2.0,3.0,2.0,2.0,1.0,1.0,,,1.0 Y02736,44.0,43.0,54.0,54.0,44.0,61.0,72.0,67.0,61.0,75.0,73.0,89.0,78.0,76.0,92.0,92.0,67.0,77.0,80.0,56.0,59.0,43.0,37.0,51.0,43.0,64.0,42.0,45.0,37.0,51.0,36.0,47.0,56.0,51.0,55.0,51.0,55.0,51.0,57.0,55.0,62.0,49.0,50.0,53.0,62.0,62.0,58.0,53.0,42.0,47.0,46.0,47.0,51.0,53.0,37.0,33.0,32.0,38.0,35.0,31.0,34.0,26.0,14.0,25.0,20.0,16.0,19.0,11.0,12.0,8.0,7.0,13.0,13.0,10.0,6.0,7.0,7.0,11.0,8.0,5.0,4.0,3.0,3.0,3.0,3.0,1.0,1.0,3.0,,,1.0,,1.0,1.0,,2.0 Y02757,88.0,90.0,84.0,97.0,100.0,115.0,128.0,112.0,106.0,119.0,120.0,148.0,115.0,135.0,130.0,114.0,111.0,99.0,98.0,68.0,83.0,95.0,77.0,72.0,90.0,97.0,78.0,91.0,109.0,79.0,91.0,116.0,122.0,103.0,146.0,132.0,110.0,131.0,147.0,116.0,146.0,111.0,123.0,115.0,110.0,115.0,95.0,90.0,90.0,78.0,81.0,83.0,76.0,79.0,81.0,76.0,66.0,58.0,62.0,40.0,66.0,45.0,40.0,44.0,44.0,41.0,38.0,28.0,37.0,32.0,25.0,28.0,24.0,22.0,12.0,18.0,25.0,19.0,14.0,19.0,14.0,9.0,12.0,14.0,10.0,6.0,5.0,8.0,9.0,6.0,3.0,2.0,1.0,1.0,1.0,5.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 D81001,32.0,41.0,30.0,39.0,33.0,37.0,44.0,19.0,46.0,25.0,46.0,42.0,49.0,49.0,38.0,44.0,41.0,45.0,90.0,153.0,127.0,159.0,186.0,197.0,244.0,239.0,232.0,246.0,246.0,271.0,253.0,242.0,227.0,227.0,238.0,217.0,225.0,184.0,200.0,170.0,166.0,161.0,138.0,143.0,138.0,105.0,80.0,90.0,99.0,73.0,69.0,68.0,66.0,61.0,45.0,65.0,55.0,48.0,56.0,54.0,56.0,51.0,60.0,50.0,46.0,38.0,44.0,46.0,44.0,31.0,31.0,29.0,33.0,37.0,33.0,46.0,43.0,23.0,38.0,32.0,21.0,26.0,14.0,8.0,13.0,12.0,11.0,9.0,13.0,1.0,8.0,7.0,3.0,2.0,,5.0 D81002,53.0,60.0,73.0,74.0,88.0,88.0,75.0,101.0,94.0,103.0,97.0,112.0,98.0,99.0,97.0,72.0,82.0,73.0,137.0,222.0,258.0,273.0,313.0,340.0,348.0,336.0,351.0,340.0,340.0,321.0,306.0,334.0,364.0,379.0,388.0,336.0,339.0,310.0,267.0,236.0,203.0,222.0,200.0,158.0,172.0,158.0,152.0,129.0,139.0,124.0,105.0,98.0,87.0,109.0,97.0,93.0,79.0,92.0,60.0,90.0,83.0,78.0,75.0,68.0,78.0,55.0,69.0,52.0,61.0,68.0,67.0,67.0,64.0,64.0,41.0,53.0,52.0,66.0,60.0,44.0,53.0,44.0,29.0,25.0,26.0,28.0,33.0,32.0,11.0,16.0,15.0,11.0,7.0,13.0,6.0,23.0 D81003,45.0,54.0,34.0,30.0,40.0,32.0,48.0,50.0,50.0,51.0,61.0,57.0,37.0,55.0,55.0,49.0,56.0,77.0,56.0,48.0,57.0,46.0,54.0,63.0,77.0,77.0,110.0,95.0,94.0,130.0,140.0,140.0,144.0,139.0,134.0,129.0,128.0,130.0,121.0,111.0,132.0,124.0,122.0,102.0,124.0,110.0,118.0,114.0,85.0,80.0,88.0,81.0,68.0,84.0,76.0,65.0,65.0,56.0,40.0,57.0,68.0,47.0,45.0,46.0,46.0,42.0,46.0,42.0,30.0,34.0,37.0,33.0,34.0,34.0,38.0,27.0,30.0,26.0,26.0,25.0,26.0,17.0,15.0,4.0,10.0,11.0,15.0,7.0,6.0,6.0,9.0,1.0,2.0,,1.0,3.0 D81004,79.0,95.0,78.0,99.0,75.0,102.0,96.0,77.0,81.0,103.0,95.0,91.0,81.0,83.0,81.0,79.0,74.0,86.0,65.0,56.0,66.0,60.0,59.0,49.0,65.0,70.0,81.0,60.0,62.0,85.0,74.0,84.0,93.0,110.0,111.0,111.0,111.0,110.0,102.0,110.0,96.0,101.0,108.0,110.0,102.0,83.0,93.0,96.0,82.0,76.0,67.0,86.0,95.0,74.0,86.0,80.0,91.0,89.0,89.0,112.0,99.0,96.0,91.0,95.0,79.0,82.0,89.0,83.0,61.0,58.0,63.0,67.0,66.0,45.0,61.0,58.0,58.0,72.0,55.0,53.0,44.0,44.0,40.0,42.0,25.0,17.0,22.0,19.0,9.0,13.0,12.0,7.0,9.0,10.0,5.0,9.0 D81005,18.0,26.0,15.0,31.0,26.0,22.0,37.0,30.0,36.0,42.0,51.0,34.0,61.0,44.0,54.0,61.0,50.0,36.0,154.0,295.0,352.0,381.0,333.0,358.0,368.0,318.0,317.0,284.0,310.0,296.0,289.0,261.0,249.0,268.0,248.0,199.0,224.0,212.0,169.0,174.0,157.0,108.0,66.0,84.0,79.0,58.0,48.0,50.0,39.0,33.0,46.0,38.0,41.0,45.0,51.0,39.0,54.0,39.0,37.0,44.0,39.0,46.0,42.0,39.0,43.0,36.0,48.0,39.0,45.0,36.0,35.0,32.0,35.0,27.0,33.0,33.0,21.0,25.0,25.0,21.0,33.0,25.0,22.0,20.0,19.0,23.0,17.0,14.0,7.0,9.0,7.0,3.0,8.0,3.0,4.0,6.0 D81008,60.0,85.0,90.0,73.0,101.0,84.0,96.0,102.0,88.0,118.0,100.0,116.0,113.0,106.0,106.0,97.0,118.0,134.0,95.0,109.0,84.0,97.0,106.0,93.0,131.0,107.0,119.0,132.0,143.0,156.0,136.0,174.0,148.0,170.0,157.0,150.0,178.0,167.0,161.0,176.0,164.0,152.0,155.0,137.0,168.0,123.0,136.0,130.0,130.0,122.0,133.0,136.0,120.0,157.0,148.0,143.0,149.0,154.0,132.0,136.0,147.0,128.0,151.0,139.0,111.0,112.0,89.0,113.0,93.0,100.0,100.0,115.0,94.0,75.0,82.0,99.0,91.0,101.0,90.0,78.0,74.0,64.0,60.0,37.0,40.0,50.0,39.0,40.0,25.0,17.0,21.0,17.0,6.0,5.0,5.0,11.0 D81010,43.0,40.0,43.0,40.0,52.0,55.0,64.0,66.0,72.0,56.0,55.0,65.0,50.0,73.0,85.0,69.0,46.0,54.0,63.0,54.0,47.0,47.0,42.0,47.0,61.0,71.0,68.0,74.0,86.0,74.0,101.0,96.0,117.0,107.0,114.0,104.0,120.0,101.0,118.0,115.0,116.0,119.0,116.0,109.0,106.0,110.0,101.0,75.0,75.0,80.0,92.0,64.0,67.0,79.0,86.0,94.0,93.0,70.0,77.0,81.0,67.0,77.0,70.0,73.0,63.0,53.0,48.0,58.0,57.0,47.0,43.0,41.0,40.0,40.0,40.0,40.0,50.0,43.0,55.0,29.0,35.0,20.0,26.0,23.0,20.0,20.0,19.0,14.0,12.0,11.0,4.0,14.0,9.0,1.0,4.0,11.0 D81011,32.0,29.0,39.0,45.0,38.0,42.0,36.0,54.0,39.0,56.0,54.0,40.0,47.0,40.0,39.0,47.0,56.0,54.0,62.0,53.0,46.0,64.0,48.0,56.0,50.0,50.0,56.0,59.0,58.0,52.0,56.0,58.0,63.0,55.0,70.0,70.0,81.0,67.0,75.0,72.0,58.0,62.0,67.0,58.0,71.0,65.0,62.0,55.0,60.0,56.0,63.0,63.0,63.0,72.0,57.0,84.0,74.0,66.0,68.0,61.0,74.0,82.0,66.0,72.0,57.0,61.0,70.0,75.0,69.0,52.0,49.0,59.0,64.0,71.0,63.0,63.0,51.0,61.0,61.0,35.0,35.0,43.0,31.0,25.0,20.0,16.0,16.0,22.0,16.0,10.0,10.0,6.0,11.0,10.0,5.0,7.0 D81012,34.0,31.0,56.0,48.0,44.0,56.0,58.0,49.0,57.0,79.0,63.0,86.0,80.0,79.0,81.0,72.0,75.0,61.0,66.0,45.0,52.0,47.0,52.0,57.0,65.0,78.0,69.0,75.0,70.0,72.0,90.0,80.0,72.0,92.0,91.0,97.0,99.0,109.0,89.0,88.0,84.0,85.0,86.0,97.0,69.0,101.0,88.0,101.0,69.0,69.0,78.0,81.0,77.0,69.0,69.0,80.0,62.0,66.0,70.0,67.0,71.0,70.0,53.0,65.0,58.0,47.0,57.0,55.0,54.0,60.0,47.0,46.0,45.0,40.0,39.0,41.0,34.0,43.0,44.0,40.0,34.0,30.0,33.0,24.0,27.0,20.0,16.0,23.0,13.0,8.0,10.0,10.0,3.0,6.0,5.0,11.0 D81013,83.0,84.0,75.0,83.0,102.0,94.0,125.0,114.0,119.0,114.0,99.0,134.0,114.0,137.0,130.0,124.0,126.0,137.0,208.0,281.0,283.0,325.0,288.0,299.0,244.0,260.0,257.0,273.0,285.0,275.0,291.0,282.0,287.0,291.0,319.0,316.0,283.0,270.0,264.0,254.0,214.0,210.0,187.0,167.0,194.0,166.0,145.0,157.0,135.0,135.0,131.0,108.0,95.0,93.0,91.0,73.0,72.0,65.0,58.0,67.0,63.0,76.0,49.0,49.0,48.0,42.0,39.0,64.0,36.0,32.0,38.0,35.0,37.0,34.0,34.0,30.0,24.0,26.0,30.0,17.0,24.0,14.0,20.0,13.0,18.0,18.0,6.0,10.0,4.0,3.0,1.0,5.0,1.0,1.0,4.0,3.0 D81014,88.0,85.0,98.0,112.0,112.0,120.0,125.0,106.0,111.0,131.0,120.0,121.0,148.0,126.0,155.0,129.0,128.0,90.0,112.0,104.0,122.0,91.0,128.0,162.0,212.0,266.0,244.0,290.0,281.0,320.0,311.0,313.0,311.0,343.0,311.0,341.0,341.0,297.0,303.0,284.0,274.0,262.0,254.0,253.0,238.0,240.0,172.0,194.0,168.0,158.0,167.0,178.0,143.0,144.0,136.0,165.0,146.0,116.0,128.0,129.0,139.0,131.0,142.0,118.0,104.0,103.0,88.0,118.0,95.0,104.0,90.0,91.0,88.0,81.0,95.0,86.0,76.0,85.0,90.0,56.0,55.0,37.0,43.0,44.0,47.0,43.0,22.0,38.0,25.0,13.0,22.0,10.0,13.0,6.0,8.0,12.0 D81015,24.0,35.0,26.0,47.0,27.0,32.0,33.0,29.0,44.0,36.0,39.0,34.0,35.0,40.0,46.0,38.0,52.0,42.0,42.0,43.0,24.0,40.0,29.0,33.0,44.0,40.0,47.0,41.0,36.0,45.0,27.0,38.0,35.0,27.0,30.0,30.0,31.0,42.0,42.0,33.0,33.0,50.0,27.0,34.0,42.0,34.0,56.0,43.0,33.0,44.0,55.0,42.0,44.0,43.0,55.0,62.0,72.0,58.0,59.0,58.0,56.0,74.0,53.0,54.0,76.0,52.0,64.0,55.0,43.0,44.0,46.0,60.0,45.0,52.0,51.0,48.0,42.0,42.0,40.0,34.0,43.0,30.0,27.0,19.0,17.0,17.0,23.0,9.0,12.0,6.0,6.0,5.0,4.0,4.0,3.0,4.0 D81016,52.0,58.0,60.0,66.0,75.0,65.0,78.0,64.0,78.0,71.0,82.0,74.0,107.0,92.0,74.0,74.0,67.0,81.0,58.0,62.0,56.0,71.0,72.0,90.0,117.0,125.0,134.0,143.0,136.0,124.0,144.0,150.0,153.0,152.0,163.0,167.0,163.0,168.0,140.0,132.0,129.0,138.0,120.0,138.0,111.0,112.0,98.0,80.0,86.0,74.0,74.0,80.0,65.0,65.0,67.0,71.0,57.0,63.0,71.0,59.0,51.0,59.0,57.0,63.0,37.0,43.0,47.0,45.0,34.0,42.0,29.0,30.0,21.0,37.0,39.0,28.0,29.0,39.0,38.0,24.0,23.0,15.0,27.0,18.0,10.0,15.0,19.0,11.0,11.0,5.0,7.0,3.0,3.0,4.0,3.0,6.0 D81017,46.0,56.0,41.0,47.0,35.0,50.0,36.0,39.0,49.0,43.0,41.0,45.0,43.0,46.0,48.0,48.0,30.0,27.0,51.0,49.0,62.0,61.0,69.0,89.0,128.0,126.0,123.0,146.0,146.0,127.0,126.0,126.0,116.0,122.0,125.0,111.0,113.0,108.0,106.0,109.0,89.0,97.0,89.0,91.0,85.0,73.0,77.0,68.0,62.0,53.0,45.0,59.0,50.0,46.0,40.0,36.0,42.0,42.0,56.0,38.0,40.0,19.0,28.0,29.0,31.0,23.0,30.0,15.0,24.0,18.0,19.0,10.0,14.0,12.0,14.0,14.0,13.0,16.0,11.0,10.0,16.0,10.0,10.0,7.0,8.0,6.0,8.0,3.0,6.0,6.0,4.0,,3.0,3.0,,5.0 D81018,48.0,44.0,37.0,42.0,60.0,48.0,53.0,53.0,47.0,47.0,51.0,65.0,54.0,51.0,59.0,55.0,57.0,58.0,56.0,35.0,41.0,30.0,30.0,28.0,46.0,25.0,36.0,31.0,34.0,41.0,30.0,40.0,45.0,64.0,53.0,45.0,47.0,62.0,48.0,54.0,59.0,53.0,48.0,60.0,59.0,73.0,67.0,56.0,49.0,50.0,67.0,60.0,64.0,53.0,67.0,45.0,46.0,54.0,61.0,61.0,69.0,60.0,57.0,53.0,44.0,33.0,51.0,48.0,39.0,41.0,37.0,33.0,29.0,30.0,46.0,36.0,33.0,45.0,61.0,26.0,42.0,38.0,32.0,26.0,20.0,15.0,12.0,12.0,16.0,14.0,8.0,13.0,6.0,8.0,2.0,11.0 D81021,66.0,77.0,86.0,67.0,58.0,78.0,73.0,102.0,82.0,77.0,86.0,75.0,90.0,76.0,82.0,80.0,99.0,67.0,71.0,63.0,55.0,60.0,55.0,59.0,46.0,61.0,82.0,84.0,88.0,89.0,99.0,105.0,86.0,93.0,92.0,119.0,112.0,111.0,99.0,104.0,100.0,105.0,105.0,93.0,94.0,92.0,91.0,72.0,68.0,71.0,84.0,76.0,89.0,94.0,82.0,85.0,91.0,90.0,78.0,81.0,73.0,62.0,87.0,77.0,77.0,69.0,67.0,69.0,67.0,63.0,59.0,54.0,51.0,55.0,39.0,54.0,35.0,46.0,50.0,40.0,51.0,40.0,25.0,26.0,20.0,23.0,16.0,17.0,14.0,8.0,6.0,10.0,5.0,5.0,3.0,15.0 D81022,86.0,80.0,102.0,94.0,82.0,104.0,89.0,91.0,95.0,107.0,109.0,105.0,108.0,106.0,108.0,104.0,91.0,112.0,104.0,82.0,84.0,80.0,85.0,74.0,85.0,85.0,86.0,88.0,95.0,92.0,113.0,118.0,114.0,124.0,112.0,107.0,111.0,111.0,123.0,122.0,114.0,89.0,99.0,105.0,106.0,106.0,96.0,93.0,96.0,84.0,106.0,91.0,98.0,120.0,102.0,104.0,130.0,133.0,127.0,143.0,148.0,120.0,128.0,131.0,110.0,103.0,102.0,115.0,100.0,103.0,97.0,100.0,78.0,92.0,86.0,84.0,95.0,113.0,101.0,68.0,75.0,63.0,66.0,38.0,43.0,39.0,27.0,32.0,23.0,25.0,22.0,11.0,9.0,7.0,11.0,18.0 D81023,63.0,51.0,62.0,85.0,84.0,76.0,84.0,85.0,96.0,108.0,102.0,115.0,131.0,106.0,108.0,121.0,110.0,100.0,93.0,96.0,87.0,73.0,69.0,86.0,73.0,73.0,70.0,85.0,73.0,69.0,91.0,88.0,84.0,101.0,98.0,96.0,110.0,102.0,113.0,108.0,93.0,121.0,124.0,118.0,113.0,113.0,80.0,96.0,101.0,78.0,85.0,86.0,110.0,93.0,87.0,88.0,102.0,89.0,92.0,99.0,82.0,64.0,81.0,87.0,78.0,68.0,70.0,55.0,71.0,47.0,70.0,44.0,39.0,46.0,43.0,60.0,42.0,51.0,42.0,38.0,31.0,30.0,17.0,12.0,11.0,17.0,18.0,14.0,11.0,10.0,7.0,5.0,6.0,1.0,2.0,10.0 D81025,35.0,40.0,44.0,49.0,40.0,53.0,54.0,59.0,43.0,55.0,64.0,63.0,54.0,63.0,66.0,68.0,52.0,60.0,51.0,49.0,51.0,38.0,41.0,41.0,61.0,78.0,72.0,77.0,79.0,91.0,92.0,81.0,94.0,90.0,102.0,101.0,94.0,100.0,89.0,99.0,96.0,92.0,83.0,81.0,97.0,71.0,75.0,65.0,76.0,64.0,82.0,59.0,57.0,71.0,87.0,48.0,60.0,51.0,67.0,52.0,65.0,42.0,57.0,48.0,41.0,54.0,52.0,54.0,36.0,35.0,45.0,36.0,31.0,32.0,24.0,30.0,36.0,25.0,34.0,19.0,32.0,24.0,19.0,22.0,14.0,12.0,9.0,5.0,11.0,7.0,9.0,4.0,2.0,2.0,6.0,4.0 D81026,181.0,204.0,157.0,188.0,187.0,193.0,171.0,170.0,188.0,211.0,183.0,190.0,216.0,211.0,201.0,197.0,211.0,207.0,224.0,185.0,189.0,206.0,184.0,193.0,197.0,238.0,250.0,232.0,260.0,291.0,292.0,281.0,267.0,315.0,298.0,294.0,310.0,266.0,305.0,321.0,274.0,252.0,281.0,278.0,252.0,246.0,250.0,222.0,235.0,223.0,245.0,219.0,228.0,232.0,186.0,184.0,191.0,205.0,174.0,184.0,192.0,188.0,170.0,164.0,177.0,159.0,151.0,146.0,123.0,132.0,114.0,114.0,111.0,113.0,119.0,120.0,100.0,105.0,137.0,94.0,87.0,70.0,68.0,69.0,55.0,59.0,47.0,56.0,31.0,31.0,31.0,21.0,21.0,15.0,12.0,20.0 D81027,36.0,46.0,47.0,39.0,45.0,47.0,53.0,45.0,49.0,46.0,55.0,41.0,67.0,53.0,45.0,53.0,46.0,49.0,40.0,43.0,34.0,32.0,40.0,35.0,37.0,46.0,48.0,41.0,55.0,39.0,51.0,51.0,39.0,60.0,49.0,62.0,47.0,45.0,48.0,51.0,60.0,45.0,45.0,43.0,54.0,48.0,37.0,44.0,41.0,47.0,53.0,54.0,51.0,64.0,63.0,52.0,43.0,68.0,69.0,68.0,72.0,63.0,60.0,56.0,46.0,49.0,49.0,34.0,44.0,35.0,42.0,28.0,33.0,44.0,39.0,39.0,32.0,39.0,32.0,27.0,29.0,24.0,24.0,28.0,16.0,10.0,14.0,7.0,9.0,6.0,6.0,6.0,8.0,3.0,3.0,5.0 D81028,43.0,56.0,74.0,60.0,60.0,48.0,77.0,83.0,69.0,76.0,81.0,98.0,75.0,94.0,83.0,93.0,89.0,85.0,89.0,65.0,56.0,53.0,45.0,71.0,56.0,53.0,65.0,38.0,54.0,57.0,74.0,59.0,67.0,49.0,70.0,100.0,64.0,64.0,89.0,85.0,88.0,81.0,80.0,93.0,99.0,74.0,95.0,86.0,84.0,83.0,91.0,107.0,98.0,84.0,87.0,68.0,80.0,100.0,84.0,73.0,86.0,93.0,72.0,77.0,79.0,71.0,66.0,69.0,69.0,66.0,57.0,64.0,49.0,68.0,64.0,74.0,61.0,70.0,60.0,38.0,39.0,36.0,32.0,34.0,22.0,28.0,20.0,35.0,19.0,19.0,12.0,14.0,6.0,6.0,8.0,12.0 D81029,49.0,62.0,60.0,82.0,80.0,81.0,86.0,72.0,83.0,86.0,103.0,87.0,96.0,89.0,91.0,95.0,94.0,83.0,82.0,62.0,74.0,59.0,52.0,55.0,56.0,61.0,69.0,75.0,65.0,71.0,95.0,109.0,104.0,120.0,120.0,108.0,108.0,104.0,110.0,125.0,111.0,115.0,103.0,98.0,114.0,84.0,82.0,108.0,85.0,92.0,90.0,76.0,97.0,104.0,77.0,76.0,105.0,71.0,97.0,94.0,76.0,84.0,76.0,78.0,69.0,69.0,76.0,61.0,56.0,59.0,60.0,52.0,42.0,46.0,41.0,49.0,50.0,61.0,43.0,40.0,30.0,53.0,30.0,29.0,23.0,18.0,21.0,12.0,16.0,12.0,8.0,7.0,2.0,7.0,2.0,8.0 D81030,44.0,60.0,56.0,62.0,65.0,69.0,86.0,63.0,74.0,62.0,92.0,85.0,101.0,90.0,73.0,96.0,77.0,81.0,93.0,85.0,72.0,58.0,75.0,55.0,75.0,72.0,83.0,84.0,90.0,85.0,84.0,91.0,72.0,101.0,99.0,109.0,98.0,130.0,104.0,103.0,107.0,103.0,117.0,100.0,113.0,95.0,87.0,95.0,110.0,94.0,104.0,102.0,100.0,114.0,114.0,107.0,106.0,118.0,103.0,110.0,123.0,97.0,105.0,99.0,103.0,106.0,107.0,93.0,103.0,85.0,92.0,78.0,62.0,79.0,76.0,79.0,93.0,112.0,98.0,58.0,65.0,54.0,70.0,48.0,35.0,30.0,30.0,32.0,24.0,17.0,17.0,12.0,8.0,7.0,9.0,14.0 D81031,107.0,109.0,110.0,137.0,128.0,134.0,122.0,139.0,130.0,154.0,160.0,138.0,135.0,137.0,148.0,127.0,123.0,114.0,131.0,114.0,113.0,73.0,97.0,102.0,100.0,102.0,104.0,119.0,118.0,153.0,147.0,145.0,157.0,135.0,148.0,154.0,167.0,153.0,172.0,143.0,159.0,150.0,151.0,155.0,156.0,172.0,161.0,124.0,126.0,151.0,138.0,124.0,127.0,145.0,135.0,139.0,137.0,134.0,126.0,131.0,122.0,113.0,119.0,99.0,114.0,97.0,98.0,89.0,70.0,83.0,84.0,77.0,73.0,74.0,97.0,94.0,84.0,74.0,83.0,68.0,57.0,47.0,38.0,42.0,37.0,31.0,22.0,16.0,26.0,11.0,16.0,14.0,5.0,4.0,4.0,4.0 D81033,21.0,31.0,13.0,26.0,31.0,25.0,20.0,26.0,31.0,22.0,24.0,36.0,32.0,27.0,33.0,29.0,40.0,42.0,25.0,24.0,29.0,19.0,29.0,26.0,22.0,28.0,17.0,23.0,25.0,26.0,29.0,28.0,27.0,31.0,32.0,35.0,35.0,22.0,29.0,31.0,27.0,41.0,32.0,32.0,25.0,23.0,42.0,23.0,21.0,39.0,26.0,35.0,35.0,31.0,36.0,40.0,32.0,35.0,42.0,28.0,28.0,30.0,36.0,27.0,32.0,40.0,27.0,34.0,22.0,32.0,33.0,24.0,21.0,19.0,30.0,30.0,20.0,30.0,26.0,22.0,24.0,15.0,12.0,14.0,9.0,6.0,3.0,12.0,8.0,9.0,2.0,4.0,2.0,2.0,1.0,3.0 D81034,68.0,80.0,74.0,87.0,71.0,76.0,93.0,89.0,102.0,97.0,95.0,81.0,95.0,104.0,118.0,103.0,139.0,113.0,127.0,82.0,94.0,87.0,81.0,91.0,87.0,95.0,124.0,96.0,118.0,118.0,120.0,124.0,114.0,119.0,139.0,124.0,110.0,126.0,113.0,103.0,113.0,112.0,138.0,120.0,118.0,110.0,124.0,111.0,121.0,109.0,119.0,133.0,111.0,128.0,137.0,114.0,132.0,106.0,120.0,113.0,123.0,114.0,106.0,106.0,126.0,96.0,105.0,102.0,78.0,107.0,86.0,85.0,95.0,92.0,93.0,86.0,98.0,111.0,119.0,94.0,69.0,61.0,57.0,42.0,42.0,52.0,37.0,39.0,30.0,31.0,21.0,9.0,13.0,11.0,8.0,19.0 D81035,45.0,34.0,44.0,47.0,48.0,49.0,45.0,51.0,54.0,59.0,58.0,79.0,69.0,75.0,83.0,65.0,64.0,67.0,67.0,60.0,56.0,36.0,48.0,42.0,42.0,41.0,48.0,38.0,47.0,54.0,41.0,50.0,48.0,43.0,55.0,55.0,60.0,52.0,62.0,43.0,61.0,64.0,61.0,51.0,72.0,66.0,74.0,89.0,81.0,82.0,68.0,82.0,83.0,83.0,80.0,70.0,69.0,67.0,69.0,67.0,74.0,83.0,55.0,63.0,68.0,58.0,67.0,58.0,63.0,42.0,53.0,49.0,46.0,43.0,45.0,46.0,49.0,61.0,63.0,46.0,34.0,27.0,28.0,23.0,24.0,16.0,19.0,16.0,16.0,11.0,14.0,5.0,5.0,2.0,5.0,6.0 D81036,22.0,18.0,22.0,29.0,25.0,28.0,20.0,26.0,26.0,31.0,23.0,22.0,33.0,33.0,33.0,31.0,29.0,29.0,27.0,27.0,17.0,27.0,23.0,38.0,27.0,17.0,21.0,24.0,22.0,29.0,23.0,38.0,32.0,42.0,30.0,26.0,37.0,34.0,28.0,37.0,26.0,34.0,27.0,30.0,41.0,33.0,36.0,28.0,45.0,30.0,47.0,36.0,36.0,38.0,47.0,35.0,23.0,39.0,40.0,34.0,36.0,40.0,37.0,30.0,41.0,38.0,25.0,27.0,33.0,29.0,30.0,26.0,21.0,21.0,29.0,15.0,27.0,36.0,24.0,23.0,26.0,16.0,19.0,11.0,20.0,10.0,8.0,5.0,7.0,7.0,10.0,4.0,4.0,2.0,4.0,5.0 D81037,16.0,28.0,31.0,27.0,22.0,35.0,16.0,22.0,21.0,19.0,25.0,27.0,19.0,33.0,30.0,23.0,25.0,26.0,104.0,207.0,227.0,192.0,193.0,197.0,217.0,218.0,218.0,210.0,260.0,269.0,252.0,231.0,241.0,229.0,192.0,172.0,135.0,155.0,147.0,133.0,116.0,87.0,83.0,82.0,78.0,73.0,73.0,45.0,70.0,63.0,55.0,66.0,64.0,56.0,55.0,48.0,42.0,40.0,38.0,45.0,39.0,39.0,35.0,31.0,28.0,22.0,22.0,23.0,21.0,21.0,27.0,21.0,19.0,18.0,17.0,18.0,13.0,20.0,14.0,13.0,10.0,11.0,10.0,6.0,10.0,5.0,8.0,6.0,5.0,3.0,5.0,2.0,1.0,,2.0,3.0 D81038,17.0,13.0,32.0,17.0,14.0,31.0,29.0,30.0,30.0,31.0,29.0,36.0,35.0,39.0,45.0,38.0,57.0,56.0,44.0,38.0,40.0,32.0,39.0,36.0,34.0,37.0,27.0,36.0,30.0,28.0,31.0,24.0,37.0,27.0,40.0,35.0,40.0,35.0,36.0,31.0,25.0,30.0,27.0,39.0,39.0,40.0,47.0,43.0,35.0,50.0,50.0,52.0,54.0,61.0,72.0,61.0,69.0,53.0,56.0,74.0,74.0,75.0,64.0,64.0,60.0,66.0,63.0,47.0,62.0,51.0,41.0,45.0,41.0,47.0,41.0,50.0,44.0,39.0,41.0,29.0,38.0,35.0,31.0,13.0,15.0,20.0,12.0,19.0,12.0,16.0,4.0,9.0,4.0,2.0,2.0,3.0 D81041,25.0,23.0,22.0,31.0,34.0,37.0,41.0,39.0,32.0,50.0,50.0,60.0,41.0,50.0,52.0,49.0,56.0,62.0,51.0,34.0,28.0,30.0,39.0,27.0,30.0,28.0,22.0,20.0,24.0,27.0,35.0,32.0,27.0,26.0,36.0,30.0,29.0,38.0,33.0,48.0,50.0,42.0,45.0,58.0,49.0,35.0,50.0,45.0,59.0,48.0,51.0,47.0,54.0,57.0,66.0,55.0,56.0,55.0,41.0,60.0,56.0,44.0,43.0,45.0,39.0,30.0,34.0,38.0,42.0,31.0,36.0,35.0,21.0,38.0,24.0,27.0,38.0,35.0,38.0,30.0,30.0,17.0,17.0,18.0,15.0,14.0,16.0,10.0,15.0,8.0,9.0,3.0,4.0,7.0,2.0,5.0 D81042,69.0,84.0,51.0,50.0,57.0,69.0,52.0,76.0,53.0,67.0,69.0,56.0,60.0,78.0,58.0,57.0,65.0,74.0,59.0,49.0,41.0,30.0,26.0,45.0,35.0,42.0,59.0,50.0,56.0,50.0,78.0,69.0,77.0,68.0,84.0,87.0,104.0,60.0,97.0,80.0,71.0,76.0,88.0,75.0,75.0,72.0,88.0,78.0,67.0,71.0,63.0,66.0,75.0,66.0,64.0,48.0,69.0,68.0,58.0,63.0,56.0,44.0,53.0,53.0,49.0,48.0,42.0,38.0,28.0,42.0,31.0,33.0,39.0,35.0,28.0,37.0,37.0,32.0,32.0,31.0,27.0,29.0,23.0,25.0,12.0,12.0,10.0,14.0,14.0,7.0,8.0,11.0,4.0,8.0,5.0,4.0 D81043,198.0,256.0,235.0,289.0,278.0,343.0,325.0,315.0,360.0,378.0,363.0,321.0,372.0,379.0,363.0,358.0,346.0,335.0,347.0,257.0,237.0,257.0,285.0,245.0,297.0,263.0,284.0,296.0,284.0,302.0,339.0,325.0,389.0,360.0,345.0,355.0,392.0,414.0,386.0,412.0,437.0,404.0,363.0,449.0,423.0,467.0,408.0,424.0,433.0,400.0,425.0,385.0,381.0,387.0,431.0,369.0,406.0,417.0,403.0,391.0,412.0,348.0,404.0,379.0,377.0,338.0,318.0,352.0,297.0,285.0,271.0,288.0,273.0,291.0,277.0,275.0,275.0,329.0,317.0,226.0,234.0,219.0,195.0,164.0,127.0,147.0,114.0,101.0,103.0,67.0,57.0,50.0,34.0,48.0,29.0,47.0 D81044,54.0,58.0,59.0,67.0,63.0,76.0,62.0,66.0,86.0,67.0,74.0,71.0,97.0,85.0,84.0,91.0,76.0,101.0,80.0,77.0,71.0,78.0,73.0,100.0,120.0,158.0,123.0,178.0,176.0,146.0,163.0,137.0,153.0,143.0,175.0,148.0,143.0,137.0,151.0,160.0,146.0,130.0,109.0,136.0,137.0,126.0,97.0,99.0,108.0,104.0,101.0,96.0,77.0,82.0,85.0,73.0,84.0,63.0,76.0,71.0,73.0,73.0,63.0,70.0,49.0,49.0,43.0,55.0,62.0,36.0,38.0,40.0,42.0,43.0,37.0,44.0,41.0,32.0,34.0,20.0,39.0,26.0,28.0,23.0,22.0,28.0,24.0,14.0,17.0,15.0,13.0,11.0,4.0,3.0,9.0,11.0 D81045,41.0,57.0,39.0,63.0,57.0,56.0,67.0,46.0,47.0,68.0,59.0,65.0,66.0,62.0,50.0,67.0,65.0,51.0,49.0,42.0,40.0,41.0,40.0,57.0,41.0,45.0,49.0,62.0,59.0,60.0,69.0,50.0,57.0,71.0,73.0,65.0,74.0,64.0,82.0,72.0,63.0,63.0,66.0,75.0,61.0,72.0,52.0,64.0,62.0,66.0,65.0,58.0,70.0,67.0,82.0,70.0,82.0,79.0,83.0,82.0,79.0,73.0,77.0,48.0,67.0,73.0,60.0,60.0,59.0,53.0,47.0,58.0,43.0,68.0,62.0,59.0,64.0,74.0,66.0,49.0,66.0,41.0,30.0,33.0,21.0,22.0,23.0,15.0,14.0,7.0,8.0,6.0,6.0,5.0,5.0,2.0 D81046,99.0,111.0,116.0,120.0,130.0,111.0,130.0,131.0,142.0,154.0,145.0,165.0,129.0,142.0,137.0,124.0,121.0,119.0,100.0,86.0,89.0,92.0,91.0,80.0,83.0,79.0,89.0,102.0,119.0,112.0,116.0,125.0,139.0,132.0,157.0,145.0,133.0,158.0,138.0,166.0,153.0,155.0,135.0,150.0,152.0,115.0,130.0,114.0,109.0,115.0,133.0,128.0,120.0,110.0,128.0,113.0,114.0,128.0,105.0,110.0,110.0,108.0,98.0,89.0,111.0,91.0,91.0,93.0,73.0,90.0,78.0,73.0,78.0,81.0,75.0,74.0,76.0,76.0,68.0,55.0,63.0,53.0,39.0,33.0,23.0,31.0,31.0,26.0,27.0,9.0,19.0,12.0,10.0,5.0,6.0,11.0 D81049,66.0,48.0,47.0,77.0,57.0,53.0,49.0,55.0,62.0,68.0,54.0,62.0,84.0,75.0,75.0,73.0,71.0,71.0,70.0,62.0,57.0,48.0,48.0,56.0,57.0,67.0,72.0,55.0,74.0,66.0,78.0,64.0,77.0,94.0,80.0,80.0,91.0,88.0,66.0,68.0,84.0,68.0,84.0,83.0,69.0,96.0,69.0,75.0,72.0,81.0,87.0,77.0,85.0,88.0,86.0,85.0,86.0,69.0,70.0,61.0,78.0,73.0,72.0,68.0,56.0,54.0,57.0,46.0,54.0,51.0,49.0,49.0,52.0,42.0,57.0,57.0,60.0,69.0,70.0,59.0,56.0,43.0,46.0,34.0,31.0,23.0,22.0,22.0,11.0,10.0,14.0,12.0,6.0,4.0,1.0,7.0 D81050,79.0,99.0,83.0,107.0,107.0,91.0,97.0,112.0,113.0,119.0,108.0,108.0,138.0,114.0,125.0,98.0,109.0,88.0,101.0,73.0,81.0,75.0,70.0,77.0,67.0,88.0,104.0,101.0,104.0,115.0,118.0,136.0,141.0,140.0,155.0,157.0,158.0,184.0,156.0,146.0,125.0,145.0,120.0,134.0,150.0,123.0,126.0,96.0,97.0,129.0,133.0,105.0,102.0,101.0,119.0,108.0,99.0,98.0,102.0,105.0,111.0,104.0,107.0,92.0,105.0,94.0,93.0,88.0,90.0,72.0,77.0,63.0,61.0,55.0,61.0,48.0,69.0,72.0,66.0,46.0,43.0,45.0,28.0,33.0,31.0,25.0,30.0,19.0,17.0,14.0,14.0,15.0,10.0,2.0,10.0,9.0 D81051,41.0,42.0,43.0,53.0,42.0,49.0,52.0,48.0,53.0,39.0,54.0,61.0,59.0,59.0,58.0,63.0,51.0,67.0,56.0,43.0,42.0,58.0,48.0,46.0,46.0,41.0,48.0,57.0,43.0,43.0,48.0,54.0,65.0,63.0,74.0,61.0,51.0,65.0,54.0,57.0,52.0,53.0,60.0,67.0,51.0,70.0,66.0,61.0,64.0,59.0,51.0,62.0,68.0,74.0,71.0,71.0,71.0,61.0,71.0,72.0,75.0,59.0,85.0,61.0,64.0,49.0,61.0,62.0,70.0,60.0,46.0,49.0,54.0,32.0,43.0,46.0,38.0,48.0,52.0,43.0,44.0,30.0,32.0,18.0,29.0,24.0,13.0,15.0,6.0,14.0,6.0,12.0,4.0,6.0,5.0,5.0 D81052,44.0,41.0,43.0,44.0,46.0,40.0,38.0,35.0,40.0,54.0,55.0,49.0,60.0,67.0,43.0,68.0,51.0,48.0,72.0,43.0,27.0,55.0,48.0,43.0,49.0,53.0,53.0,64.0,47.0,35.0,46.0,57.0,78.0,66.0,69.0,74.0,56.0,56.0,57.0,52.0,42.0,56.0,53.0,49.0,54.0,60.0,48.0,56.0,58.0,51.0,56.0,62.0,57.0,60.0,69.0,65.0,75.0,63.0,78.0,69.0,71.0,76.0,74.0,52.0,56.0,52.0,60.0,58.0,56.0,52.0,51.0,58.0,49.0,58.0,61.0,48.0,49.0,54.0,43.0,49.0,45.0,49.0,29.0,31.0,28.0,29.0,18.0,20.0,23.0,13.0,8.0,8.0,7.0,6.0,7.0,8.0 D81054,50.0,39.0,53.0,63.0,53.0,61.0,66.0,57.0,63.0,59.0,60.0,88.0,76.0,83.0,74.0,89.0,101.0,148.0,130.0,141.0,206.0,228.0,217.0,268.0,323.0,375.0,311.0,351.0,306.0,334.0,359.0,347.0,331.0,387.0,353.0,381.0,367.0,311.0,267.0,268.0,244.0,214.0,195.0,197.0,183.0,172.0,208.0,161.0,138.0,118.0,131.0,114.0,137.0,107.0,109.0,107.0,112.0,68.0,93.0,93.0,104.0,81.0,72.0,72.0,63.0,47.0,71.0,58.0,60.0,43.0,53.0,43.0,40.0,41.0,43.0,35.0,35.0,34.0,29.0,25.0,28.0,19.0,17.0,27.0,19.0,14.0,18.0,12.0,10.0,12.0,11.0,6.0,3.0,4.0,2.0,8.0 D81055,17.0,32.0,22.0,15.0,32.0,21.0,25.0,39.0,25.0,38.0,33.0,28.0,30.0,41.0,44.0,29.0,39.0,30.0,39.0,30.0,28.0,32.0,25.0,24.0,24.0,21.0,28.0,20.0,21.0,30.0,27.0,23.0,30.0,26.0,28.0,18.0,30.0,25.0,29.0,34.0,29.0,33.0,38.0,35.0,35.0,32.0,32.0,35.0,36.0,28.0,46.0,52.0,52.0,55.0,39.0,41.0,30.0,46.0,37.0,53.0,44.0,40.0,44.0,39.0,35.0,31.0,36.0,33.0,25.0,33.0,43.0,29.0,27.0,32.0,30.0,40.0,41.0,32.0,41.0,31.0,31.0,25.0,17.0,9.0,13.0,19.0,13.0,18.0,15.0,7.0,11.0,5.0,12.0,5.0,6.0,7.0 D81056,24.0,26.0,19.0,26.0,15.0,21.0,12.0,28.0,21.0,16.0,33.0,27.0,32.0,34.0,29.0,44.0,28.0,28.0,35.0,27.0,39.0,32.0,49.0,42.0,47.0,53.0,51.0,68.0,71.0,74.0,91.0,109.0,122.0,108.0,122.0,117.0,114.0,117.0,94.0,112.0,100.0,75.0,86.0,82.0,75.0,74.0,67.0,80.0,75.0,67.0,76.0,57.0,65.0,48.0,56.0,58.0,55.0,44.0,45.0,45.0,46.0,27.0,37.0,29.0,20.0,30.0,17.0,27.0,14.0,17.0,15.0,14.0,12.0,13.0,14.0,7.0,17.0,12.0,9.0,7.0,8.0,9.0,6.0,3.0,6.0,4.0,4.0,8.0,4.0,2.0,5.0,3.0,4.0,1.0,,2.0 D81057,86.0,104.0,86.0,95.0,111.0,112.0,95.0,103.0,106.0,115.0,113.0,146.0,136.0,140.0,121.0,149.0,121.0,152.0,110.0,102.0,93.0,103.0,106.0,111.0,107.0,124.0,134.0,127.0,132.0,125.0,104.0,135.0,146.0,146.0,138.0,155.0,158.0,172.0,137.0,141.0,132.0,135.0,142.0,154.0,123.0,149.0,160.0,136.0,139.0,138.0,167.0,140.0,163.0,157.0,165.0,150.0,150.0,164.0,148.0,178.0,167.0,127.0,150.0,118.0,128.0,123.0,118.0,93.0,89.0,78.0,104.0,95.0,99.0,84.0,75.0,70.0,82.0,94.0,122.0,101.0,89.0,63.0,67.0,37.0,55.0,41.0,48.0,46.0,19.0,23.0,18.0,20.0,13.0,12.0,6.0,19.0 D81058,45.0,41.0,38.0,41.0,39.0,45.0,38.0,58.0,45.0,55.0,53.0,43.0,38.0,51.0,50.0,45.0,50.0,62.0,43.0,50.0,36.0,28.0,28.0,28.0,32.0,19.0,37.0,30.0,37.0,30.0,31.0,34.0,47.0,37.0,41.0,43.0,54.0,55.0,51.0,41.0,52.0,48.0,55.0,57.0,37.0,58.0,56.0,38.0,48.0,44.0,60.0,60.0,48.0,46.0,59.0,52.0,53.0,46.0,56.0,47.0,74.0,58.0,50.0,50.0,45.0,49.0,54.0,46.0,53.0,44.0,41.0,34.0,42.0,34.0,41.0,36.0,37.0,41.0,55.0,30.0,38.0,34.0,30.0,20.0,21.0,18.0,16.0,20.0,15.0,7.0,9.0,7.0,7.0,8.0,3.0,10.0 D81059,26.0,38.0,36.0,50.0,46.0,47.0,52.0,40.0,52.0,53.0,50.0,43.0,39.0,50.0,46.0,41.0,32.0,41.0,33.0,30.0,35.0,34.0,32.0,23.0,37.0,31.0,33.0,50.0,48.0,41.0,46.0,57.0,37.0,36.0,54.0,48.0,68.0,56.0,47.0,60.0,50.0,58.0,45.0,46.0,44.0,37.0,44.0,40.0,48.0,45.0,40.0,46.0,49.0,55.0,57.0,52.0,45.0,54.0,56.0,46.0,49.0,46.0,53.0,57.0,61.0,61.0,48.0,57.0,39.0,40.0,45.0,42.0,41.0,41.0,34.0,37.0,36.0,44.0,26.0,31.0,27.0,36.0,26.0,15.0,19.0,18.0,17.0,9.0,14.0,12.0,3.0,4.0,3.0,3.0,3.0,4.0 D81060,35.0,35.0,29.0,42.0,34.0,37.0,43.0,33.0,42.0,37.0,32.0,29.0,38.0,41.0,34.0,44.0,39.0,31.0,33.0,37.0,38.0,24.0,38.0,29.0,26.0,38.0,25.0,29.0,37.0,32.0,54.0,41.0,51.0,34.0,42.0,52.0,48.0,63.0,41.0,44.0,45.0,40.0,34.0,43.0,45.0,49.0,38.0,39.0,36.0,42.0,46.0,42.0,51.0,55.0,52.0,66.0,54.0,44.0,57.0,59.0,50.0,66.0,53.0,60.0,55.0,63.0,58.0,66.0,47.0,57.0,39.0,46.0,34.0,36.0,31.0,50.0,47.0,49.0,38.0,31.0,38.0,24.0,18.0,20.0,19.0,14.0,13.0,10.0,13.0,11.0,13.0,2.0,4.0,2.0,2.0,6.0 D81061,53.0,48.0,61.0,55.0,54.0,76.0,60.0,61.0,68.0,66.0,77.0,68.0,73.0,65.0,77.0,69.0,74.0,74.0,74.0,66.0,52.0,56.0,60.0,52.0,53.0,52.0,67.0,74.0,78.0,71.0,79.0,84.0,100.0,81.0,99.0,82.0,105.0,83.0,79.0,86.0,70.0,84.0,74.0,79.0,82.0,77.0,72.0,62.0,65.0,85.0,77.0,76.0,72.0,82.0,74.0,93.0,81.0,89.0,94.0,87.0,91.0,89.0,95.0,79.0,75.0,85.0,62.0,66.0,66.0,57.0,64.0,63.0,61.0,69.0,67.0,57.0,60.0,58.0,60.0,45.0,49.0,40.0,30.0,41.0,24.0,18.0,17.0,16.0,15.0,13.0,12.0,10.0,7.0,4.0,5.0,7.0 D81062,37.0,40.0,36.0,43.0,34.0,46.0,37.0,59.0,55.0,48.0,34.0,46.0,41.0,49.0,59.0,53.0,55.0,45.0,38.0,41.0,44.0,43.0,39.0,40.0,31.0,39.0,34.0,40.0,39.0,42.0,41.0,48.0,32.0,33.0,39.0,57.0,56.0,43.0,54.0,49.0,50.0,43.0,43.0,46.0,54.0,49.0,44.0,34.0,40.0,43.0,60.0,68.0,68.0,61.0,55.0,50.0,76.0,61.0,64.0,55.0,53.0,79.0,68.0,59.0,44.0,61.0,63.0,63.0,45.0,47.0,41.0,35.0,40.0,31.0,39.0,43.0,51.0,47.0,49.0,35.0,39.0,36.0,20.0,24.0,19.0,18.0,9.0,6.0,15.0,13.0,4.0,8.0,4.0,4.0,,2.0 D81064,24.0,34.0,30.0,37.0,29.0,30.0,25.0,38.0,40.0,37.0,40.0,40.0,40.0,40.0,42.0,38.0,36.0,42.0,48.0,34.0,33.0,19.0,37.0,23.0,26.0,28.0,28.0,41.0,42.0,51.0,33.0,37.0,40.0,49.0,45.0,38.0,38.0,36.0,29.0,32.0,45.0,42.0,37.0,37.0,51.0,32.0,32.0,33.0,39.0,41.0,37.0,31.0,39.0,40.0,38.0,42.0,34.0,50.0,39.0,49.0,49.0,50.0,51.0,48.0,56.0,49.0,41.0,48.0,53.0,49.0,42.0,40.0,50.0,39.0,48.0,39.0,41.0,46.0,28.0,30.0,31.0,22.0,26.0,31.0,18.0,11.0,13.0,12.0,18.0,8.0,8.0,5.0,4.0,2.0,2.0,8.0 D81065,44.0,36.0,58.0,51.0,44.0,54.0,53.0,64.0,70.0,71.0,50.0,66.0,64.0,64.0,81.0,58.0,56.0,66.0,70.0,52.0,55.0,51.0,45.0,46.0,53.0,57.0,53.0,47.0,46.0,58.0,70.0,65.0,50.0,50.0,57.0,53.0,54.0,62.0,54.0,58.0,63.0,43.0,58.0,51.0,60.0,48.0,44.0,25.0,41.0,42.0,48.0,33.0,45.0,45.0,47.0,35.0,45.0,36.0,30.0,23.0,26.0,30.0,31.0,23.0,31.0,23.0,20.0,19.0,19.0,18.0,15.0,20.0,22.0,13.0,11.0,6.0,13.0,11.0,5.0,5.0,12.0,7.0,2.0,4.0,9.0,6.0,,6.0,2.0,,3.0,1.0,,2.0,,1.0 D81066,43.0,46.0,38.0,48.0,58.0,42.0,46.0,61.0,50.0,58.0,51.0,55.0,74.0,66.0,68.0,64.0,77.0,53.0,69.0,56.0,48.0,46.0,45.0,56.0,57.0,85.0,87.0,85.0,103.0,110.0,104.0,104.0,101.0,103.0,107.0,117.0,112.0,112.0,102.0,103.0,106.0,90.0,94.0,94.0,84.0,68.0,71.0,76.0,65.0,76.0,65.0,54.0,59.0,71.0,57.0,56.0,63.0,57.0,33.0,56.0,45.0,59.0,50.0,43.0,44.0,46.0,35.0,28.0,41.0,29.0,36.0,39.0,25.0,30.0,30.0,16.0,29.0,20.0,25.0,23.0,26.0,20.0,15.0,25.0,9.0,13.0,13.0,18.0,8.0,13.0,5.0,8.0,7.0,2.0,6.0,8.0 D81070,32.0,33.0,24.0,41.0,38.0,42.0,37.0,37.0,34.0,37.0,39.0,31.0,43.0,46.0,51.0,56.0,109.0,168.0,184.0,140.0,99.0,101.0,105.0,137.0,157.0,165.0,174.0,202.0,182.0,151.0,161.0,165.0,133.0,144.0,159.0,143.0,127.0,123.0,129.0,107.0,104.0,117.0,93.0,87.0,100.0,80.0,58.0,50.0,51.0,56.0,55.0,61.0,55.0,54.0,50.0,45.0,44.0,37.0,45.0,44.0,46.0,34.0,16.0,42.0,32.0,23.0,24.0,27.0,33.0,25.0,21.0,20.0,26.0,24.0,18.0,14.0,12.0,12.0,17.0,7.0,13.0,10.0,6.0,7.0,10.0,6.0,7.0,3.0,3.0,2.0,3.0,2.0,1.0,1.0,,1.0 D81073,26.0,24.0,23.0,26.0,31.0,40.0,38.0,42.0,42.0,56.0,47.0,51.0,57.0,55.0,56.0,50.0,54.0,55.0,43.0,35.0,45.0,27.0,29.0,28.0,34.0,30.0,42.0,26.0,40.0,40.0,49.0,58.0,38.0,52.0,66.0,74.0,58.0,40.0,53.0,60.0,60.0,52.0,52.0,46.0,46.0,56.0,48.0,54.0,53.0,42.0,42.0,32.0,29.0,33.0,37.0,34.0,35.0,36.0,40.0,32.0,27.0,30.0,32.0,31.0,27.0,21.0,19.0,16.0,16.0,9.0,14.0,11.0,13.0,11.0,17.0,9.0,13.0,12.0,16.0,7.0,8.0,9.0,10.0,6.0,8.0,5.0,6.0,6.0,2.0,2.0,2.0,3.0,2.0,1.0,1.0,3.0 D81078,25.0,20.0,18.0,21.0,19.0,16.0,20.0,31.0,26.0,33.0,21.0,36.0,29.0,23.0,38.0,19.0,30.0,26.0,19.0,13.0,15.0,16.0,17.0,23.0,22.0,22.0,26.0,32.0,31.0,21.0,29.0,40.0,34.0,28.0,22.0,44.0,54.0,37.0,31.0,43.0,36.0,31.0,34.0,29.0,40.0,36.0,34.0,31.0,26.0,28.0,28.0,28.0,27.0,20.0,30.0,32.0,22.0,29.0,25.0,24.0,22.0,27.0,32.0,24.0,19.0,16.0,24.0,28.0,17.0,26.0,16.0,22.0,14.0,17.0,15.0,16.0,14.0,16.0,13.0,10.0,8.0,8.0,11.0,9.0,5.0,5.0,3.0,1.0,3.0,3.0,1.0,3.0,1.0,1.0,1.0,2.0 D81081,12.0,18.0,23.0,33.0,16.0,27.0,31.0,26.0,24.0,18.0,27.0,31.0,36.0,26.0,24.0,20.0,25.0,24.0,30.0,22.0,16.0,28.0,20.0,24.0,21.0,15.0,23.0,29.0,26.0,22.0,17.0,24.0,23.0,33.0,26.0,22.0,26.0,32.0,43.0,28.0,39.0,32.0,24.0,37.0,31.0,27.0,39.0,30.0,28.0,24.0,26.0,35.0,31.0,42.0,35.0,32.0,52.0,34.0,41.0,41.0,49.0,41.0,57.0,38.0,39.0,32.0,38.0,34.0,43.0,46.0,43.0,26.0,29.0,36.0,26.0,35.0,41.0,40.0,29.0,34.0,30.0,28.0,20.0,13.0,13.0,9.0,17.0,14.0,13.0,4.0,6.0,1.0,3.0,2.0,1.0,3.0 D81082,42.0,50.0,33.0,39.0,43.0,39.0,34.0,47.0,41.0,48.0,34.0,34.0,40.0,40.0,37.0,55.0,31.0,36.0,38.0,32.0,38.0,42.0,30.0,46.0,44.0,42.0,48.0,66.0,71.0,53.0,56.0,67.0,66.0,65.0,58.0,46.0,65.0,60.0,60.0,43.0,56.0,58.0,47.0,37.0,45.0,28.0,38.0,43.0,44.0,40.0,35.0,49.0,44.0,53.0,64.0,58.0,55.0,69.0,52.0,51.0,53.0,66.0,63.0,55.0,60.0,48.0,39.0,35.0,33.0,36.0,31.0,29.0,31.0,27.0,26.0,32.0,24.0,29.0,37.0,18.0,32.0,27.0,23.0,16.0,14.0,13.0,12.0,8.0,10.0,8.0,6.0,3.0,1.0,2.0,1.0,3.0 D81084,70.0,85.0,82.0,90.0,91.0,96.0,101.0,106.0,105.0,102.0,91.0,85.0,98.0,114.0,91.0,78.0,91.0,69.0,60.0,51.0,51.0,50.0,47.0,43.0,37.0,44.0,51.0,44.0,48.0,61.0,85.0,71.0,92.0,71.0,101.0,107.0,106.0,107.0,114.0,96.0,111.0,120.0,103.0,132.0,105.0,97.0,95.0,99.0,94.0,75.0,90.0,86.0,78.0,92.0,66.0,62.0,84.0,55.0,52.0,59.0,67.0,77.0,56.0,50.0,41.0,53.0,53.0,51.0,38.0,53.0,44.0,34.0,29.0,28.0,42.0,25.0,28.0,36.0,37.0,20.0,19.0,24.0,23.0,18.0,20.0,7.0,14.0,9.0,12.0,6.0,6.0,2.0,1.0,4.0,,6.0 D81085,30.0,41.0,38.0,51.0,30.0,32.0,40.0,44.0,46.0,52.0,49.0,40.0,67.0,47.0,63.0,47.0,48.0,53.0,42.0,44.0,33.0,31.0,27.0,40.0,33.0,34.0,30.0,41.0,31.0,34.0,46.0,36.0,40.0,51.0,44.0,41.0,60.0,55.0,50.0,61.0,64.0,48.0,54.0,50.0,62.0,51.0,44.0,45.0,60.0,57.0,65.0,61.0,52.0,65.0,63.0,53.0,58.0,59.0,56.0,53.0,56.0,56.0,48.0,54.0,41.0,51.0,44.0,39.0,34.0,33.0,34.0,34.0,29.0,31.0,37.0,30.0,28.0,25.0,30.0,24.0,22.0,26.0,19.0,16.0,14.0,8.0,9.0,7.0,10.0,8.0,2.0,2.0,2.0,1.0,3.0,2.0 D81086,33.0,33.0,39.0,42.0,37.0,51.0,40.0,37.0,38.0,54.0,50.0,51.0,47.0,49.0,47.0,44.0,42.0,47.0,47.0,54.0,40.0,44.0,42.0,51.0,55.0,57.0,46.0,73.0,79.0,84.0,74.0,80.0,83.0,75.0,65.0,74.0,89.0,81.0,67.0,73.0,82.0,76.0,67.0,68.0,60.0,75.0,76.0,67.0,55.0,70.0,42.0,52.0,37.0,38.0,58.0,43.0,47.0,47.0,29.0,41.0,39.0,42.0,39.0,39.0,43.0,33.0,31.0,35.0,21.0,24.0,26.0,31.0,29.0,25.0,20.0,17.0,25.0,21.0,17.0,17.0,13.0,12.0,15.0,10.0,5.0,10.0,7.0,6.0,5.0,1.0,6.0,2.0,3.0,3.0,3.0,3.0 D81603,29.0,39.0,37.0,33.0,30.0,42.0,41.0,41.0,45.0,42.0,46.0,49.0,39.0,51.0,49.0,42.0,48.0,45.0,34.0,41.0,30.0,37.0,38.0,43.0,47.0,37.0,38.0,41.0,41.0,47.0,41.0,56.0,36.0,50.0,50.0,56.0,52.0,39.0,47.0,59.0,47.0,51.0,41.0,52.0,61.0,32.0,66.0,36.0,39.0,43.0,47.0,48.0,37.0,49.0,66.0,41.0,59.0,59.0,58.0,62.0,64.0,55.0,56.0,51.0,52.0,48.0,45.0,39.0,43.0,40.0,30.0,39.0,35.0,27.0,23.0,22.0,37.0,50.0,36.0,25.0,28.0,25.0,24.0,21.0,18.0,22.0,15.0,10.0,11.0,10.0,8.0,4.0,4.0,1.0,1.0,8.0 D81606,57.0,41.0,55.0,57.0,72.0,59.0,68.0,78.0,80.0,83.0,90.0,58.0,101.0,75.0,84.0,75.0,73.0,77.0,74.0,69.0,61.0,67.0,68.0,59.0,67.0,72.0,69.0,63.0,78.0,71.0,88.0,66.0,82.0,82.0,99.0,87.0,92.0,100.0,87.0,94.0,101.0,94.0,108.0,89.0,104.0,92.0,76.0,99.0,75.0,71.0,99.0,108.0,108.0,89.0,86.0,89.0,99.0,90.0,107.0,118.0,94.0,109.0,110.0,95.0,89.0,93.0,82.0,85.0,76.0,92.0,88.0,76.0,79.0,87.0,59.0,56.0,62.0,71.0,68.0,51.0,54.0,44.0,42.0,34.0,21.0,18.0,17.0,15.0,10.0,11.0,12.0,12.0,7.0,5.0,3.0,6.0 D81607,16.0,20.0,15.0,19.0,23.0,20.0,21.0,14.0,19.0,25.0,17.0,21.0,30.0,33.0,26.0,27.0,28.0,29.0,19.0,15.0,20.0,17.0,15.0,19.0,4.0,20.0,11.0,10.0,16.0,12.0,13.0,20.0,26.0,25.0,27.0,26.0,38.0,35.0,20.0,23.0,27.0,34.0,24.0,33.0,25.0,28.0,24.0,27.0,29.0,25.0,38.0,17.0,33.0,26.0,31.0,34.0,26.0,27.0,20.0,32.0,20.0,20.0,30.0,20.0,16.0,16.0,11.0,18.0,16.0,13.0,13.0,20.0,16.0,9.0,18.0,16.0,11.0,9.0,18.0,10.0,14.0,11.0,9.0,11.0,13.0,5.0,5.0,3.0,4.0,2.0,1.0,5.0,1.0,2.0,1.0,1.0 D81611,51.0,57.0,73.0,80.0,63.0,69.0,84.0,81.0,86.0,83.0,80.0,76.0,66.0,103.0,80.0,67.0,76.0,61.0,70.0,71.0,57.0,66.0,56.0,74.0,57.0,60.0,61.0,73.0,71.0,57.0,77.0,72.0,89.0,87.0,90.0,85.0,83.0,79.0,84.0,76.0,72.0,83.0,67.0,67.0,82.0,80.0,96.0,76.0,71.0,77.0,78.0,93.0,88.0,97.0,112.0,114.0,101.0,100.0,98.0,104.0,97.0,81.0,96.0,91.0,97.0,76.0,93.0,74.0,73.0,76.0,76.0,79.0,58.0,75.0,61.0,77.0,73.0,71.0,67.0,63.0,55.0,38.0,45.0,29.0,27.0,20.0,23.0,21.0,21.0,12.0,9.0,10.0,8.0,11.0,5.0,4.0 D81612,19.0,19.0,15.0,19.0,17.0,18.0,31.0,35.0,25.0,22.0,35.0,22.0,36.0,22.0,18.0,28.0,29.0,24.0,24.0,21.0,19.0,23.0,18.0,22.0,26.0,23.0,35.0,22.0,39.0,45.0,37.0,34.0,35.0,39.0,49.0,46.0,42.0,42.0,46.0,45.0,37.0,32.0,44.0,46.0,32.0,27.0,46.0,35.0,31.0,38.0,36.0,26.0,25.0,35.0,37.0,26.0,34.0,39.0,33.0,43.0,51.0,44.0,33.0,41.0,26.0,23.0,29.0,20.0,29.0,23.0,20.0,18.0,24.0,29.0,15.0,20.0,24.0,14.0,25.0,16.0,19.0,13.0,17.0,9.0,14.0,7.0,7.0,16.0,2.0,6.0,5.0,5.0,3.0,3.0,1.0,4.0 D81615,65.0,78.0,71.0,70.0,82.0,80.0,96.0,80.0,91.0,96.0,71.0,83.0,83.0,80.0,64.0,66.0,65.0,65.0,63.0,49.0,49.0,40.0,52.0,54.0,73.0,73.0,78.0,80.0,97.0,96.0,89.0,98.0,133.0,120.0,129.0,106.0,109.0,107.0,125.0,125.0,119.0,102.0,131.0,117.0,90.0,83.0,93.0,101.0,81.0,65.0,54.0,59.0,77.0,65.0,67.0,69.0,52.0,76.0,52.0,44.0,56.0,57.0,48.0,39.0,46.0,43.0,34.0,44.0,52.0,44.0,34.0,31.0,31.0,32.0,36.0,28.0,31.0,27.0,28.0,24.0,27.0,29.0,17.0,11.0,12.0,17.0,14.0,11.0,17.0,2.0,3.0,5.0,5.0,2.0,3.0,8.0 D81618,6.0,7.0,6.0,8.0,17.0,16.0,27.0,20.0,34.0,33.0,32.0,33.0,26.0,27.0,35.0,27.0,15.0,14.0,26.0,21.0,19.0,20.0,22.0,22.0,20.0,19.0,21.0,27.0,22.0,13.0,15.0,22.0,27.0,17.0,29.0,22.0,26.0,26.0,31.0,32.0,31.0,21.0,27.0,23.0,34.0,37.0,32.0,27.0,22.0,29.0,23.0,21.0,34.0,32.0,25.0,24.0,21.0,29.0,29.0,33.0,23.0,15.0,21.0,29.0,25.0,20.0,19.0,23.0,17.0,21.0,14.0,10.0,13.0,18.0,19.0,17.0,15.0,8.0,11.0,13.0,15.0,4.0,7.0,5.0,4.0,4.0,3.0,2.0,5.0,1.0,5.0,,,1.0,2.0,2.0 D81622,76.0,91.0,88.0,80.0,78.0,97.0,95.0,99.0,79.0,112.0,101.0,87.0,104.0,101.0,105.0,90.0,81.0,88.0,70.0,84.0,55.0,58.0,67.0,70.0,70.0,84.0,87.0,95.0,90.0,111.0,103.0,127.0,156.0,126.0,131.0,138.0,121.0,139.0,106.0,125.0,137.0,137.0,131.0,91.0,112.0,100.0,120.0,82.0,77.0,91.0,84.0,85.0,85.0,96.0,104.0,90.0,89.0,72.0,78.0,85.0,86.0,74.0,69.0,88.0,52.0,72.0,60.0,52.0,69.0,42.0,41.0,50.0,39.0,37.0,31.0,40.0,31.0,45.0,51.0,32.0,26.0,23.0,28.0,18.0,12.0,21.0,11.0,10.0,7.0,7.0,11.0,5.0,7.0,5.0,3.0,10.0 D81625,176.0,169.0,183.0,192.0,230.0,250.0,272.0,240.0,240.0,267.0,300.0,258.0,264.0,252.0,267.0,258.0,260.0,247.0,205.0,189.0,187.0,201.0,173.0,160.0,178.0,204.0,211.0,225.0,265.0,289.0,309.0,340.0,372.0,362.0,348.0,428.0,373.0,428.0,380.0,415.0,394.0,345.0,348.0,306.0,319.0,297.0,274.0,261.0,250.0,219.0,250.0,204.0,208.0,207.0,171.0,152.0,152.0,150.0,161.0,147.0,126.0,115.0,115.0,105.0,113.0,83.0,92.0,87.0,83.0,69.0,48.0,53.0,48.0,37.0,37.0,33.0,35.0,21.0,28.0,14.0,21.0,13.0,12.0,11.0,11.0,9.0,4.0,7.0,9.0,4.0,2.0,4.0,1.0,1.0,, D81629,32.0,24.0,27.0,35.0,20.0,39.0,37.0,44.0,46.0,45.0,44.0,44.0,47.0,51.0,49.0,41.0,56.0,46.0,48.0,42.0,36.0,37.0,60.0,54.0,62.0,60.0,63.0,62.0,59.0,52.0,41.0,47.0,51.0,45.0,66.0,74.0,61.0,55.0,63.0,53.0,51.0,46.0,61.0,55.0,45.0,47.0,55.0,34.0,35.0,32.0,27.0,35.0,31.0,40.0,40.0,38.0,32.0,42.0,29.0,31.0,24.0,34.0,25.0,22.0,28.0,30.0,29.0,30.0,29.0,22.0,15.0,28.0,21.0,18.0,30.0,17.0,21.0,23.0,16.0,16.0,14.0,10.0,9.0,10.0,9.0,4.0,9.0,3.0,4.0,1.0,5.0,4.0,5.0,3.0,1.0,1.0 D81630,60.0,70.0,74.0,101.0,93.0,97.0,94.0,96.0,135.0,117.0,116.0,132.0,92.0,131.0,123.0,113.0,119.0,92.0,82.0,90.0,79.0,67.0,65.0,69.0,68.0,73.0,68.0,83.0,69.0,70.0,88.0,77.0,80.0,81.0,105.0,99.0,109.0,90.0,119.0,137.0,102.0,136.0,114.0,112.0,132.0,109.0,111.0,111.0,92.0,89.0,74.0,104.0,99.0,67.0,70.0,72.0,65.0,60.0,52.0,37.0,45.0,39.0,51.0,36.0,20.0,35.0,31.0,26.0,16.0,18.0,18.0,24.0,11.0,8.0,17.0,14.0,18.0,11.0,11.0,8.0,7.0,4.0,9.0,8.0,9.0,2.0,11.0,8.0,,2.0,1.0,4.0,1.0,3.0,3.0,4.0 D81631,111.0,106.0,123.0,112.0,116.0,118.0,101.0,134.0,137.0,133.0,117.0,150.0,131.0,140.0,154.0,166.0,158.0,168.0,156.0,132.0,136.0,129.0,128.0,139.0,125.0,153.0,147.0,140.0,122.0,173.0,128.0,148.0,156.0,158.0,161.0,167.0,164.0,185.0,164.0,180.0,203.0,185.0,179.0,164.0,145.0,161.0,146.0,133.0,149.0,144.0,111.0,110.0,98.0,94.0,76.0,84.0,87.0,73.0,54.0,52.0,48.0,47.0,53.0,46.0,35.0,29.0,37.0,29.0,26.0,35.0,22.0,25.0,19.0,15.0,14.0,11.0,9.0,18.0,11.0,8.0,11.0,9.0,5.0,6.0,5.0,6.0,3.0,6.0,4.0,2.0,5.0,1.0,1.0,2.0,2.0,2.0 D81633,58.0,46.0,70.0,57.0,79.0,58.0,71.0,80.0,79.0,77.0,77.0,81.0,86.0,105.0,110.0,94.0,86.0,93.0,84.0,81.0,77.0,77.0,60.0,69.0,74.0,72.0,76.0,88.0,90.0,96.0,82.0,111.0,100.0,112.0,102.0,107.0,114.0,120.0,112.0,109.0,95.0,106.0,94.0,114.0,102.0,80.0,94.0,71.0,76.0,94.0,89.0,85.0,78.0,77.0,81.0,65.0,81.0,59.0,59.0,69.0,62.0,53.0,47.0,50.0,38.0,34.0,40.0,45.0,19.0,26.0,22.0,13.0,14.0,26.0,20.0,27.0,22.0,18.0,19.0,13.0,17.0,12.0,14.0,12.0,8.0,7.0,9.0,7.0,6.0,8.0,6.0,5.0,4.0,2.0,,2.0 D81637,76.0,71.0,84.0,87.0,91.0,100.0,102.0,112.0,127.0,147.0,121.0,149.0,119.0,182.0,155.0,150.0,153.0,138.0,114.0,82.0,82.0,87.0,58.0,51.0,67.0,60.0,75.0,49.0,43.0,52.0,69.0,66.0,74.0,85.0,101.0,82.0,91.0,107.0,90.0,120.0,129.0,121.0,122.0,166.0,157.0,140.0,138.0,149.0,150.0,127.0,127.0,123.0,114.0,108.0,108.0,96.0,69.0,71.0,65.0,56.0,53.0,57.0,36.0,28.0,42.0,31.0,36.0,30.0,25.0,16.0,15.0,13.0,11.0,13.0,20.0,10.0,6.0,10.0,16.0,8.0,17.0,11.0,7.0,15.0,4.0,8.0,6.0,5.0,3.0,4.0,8.0,4.0,4.0,2.0,,4.0 D81645,16.0,13.0,16.0,16.0,14.0,18.0,29.0,20.0,20.0,20.0,30.0,15.0,26.0,25.0,26.0,26.0,28.0,19.0,26.0,13.0,25.0,22.0,23.0,24.0,19.0,27.0,33.0,27.0,25.0,30.0,25.0,22.0,31.0,22.0,32.0,26.0,33.0,37.0,36.0,29.0,28.0,26.0,33.0,18.0,31.0,26.0,28.0,18.0,20.0,26.0,22.0,19.0,19.0,15.0,19.0,15.0,11.0,19.0,19.0,10.0,16.0,13.0,7.0,9.0,12.0,9.0,9.0,10.0,11.0,10.0,9.0,6.0,7.0,10.0,6.0,9.0,12.0,11.0,6.0,4.0,3.0,3.0,,6.0,3.0,,3.0,1.0,2.0,2.0,2.0,3.0,1.0,1.0,1.0,3.0 E82132,33.0,33.0,38.0,43.0,38.0,47.0,44.0,37.0,40.0,41.0,37.0,35.0,35.0,46.0,33.0,33.0,32.0,37.0,24.0,23.0,39.0,22.0,30.0,27.0,29.0,36.0,33.0,31.0,43.0,44.0,45.0,35.0,44.0,42.0,57.0,41.0,45.0,46.0,43.0,39.0,40.0,48.0,53.0,36.0,47.0,48.0,42.0,47.0,51.0,38.0,35.0,35.0,49.0,47.0,47.0,50.0,39.0,38.0,41.0,52.0,39.0,26.0,31.0,33.0,34.0,31.0,32.0,26.0,31.0,20.0,27.0,24.0,19.0,18.0,15.0,27.0,20.0,21.0,26.0,17.0,12.0,17.0,16.0,4.0,12.0,12.0,5.0,6.0,9.0,9.0,5.0,2.0,1.0,5.0,6.0,3.0 K83017,29.0,37.0,35.0,48.0,56.0,53.0,48.0,71.0,58.0,54.0,68.0,68.0,66.0,57.0,80.0,54.0,70.0,45.0,51.0,49.0,39.0,40.0,35.0,44.0,36.0,37.0,26.0,28.0,32.0,37.0,35.0,42.0,42.0,40.0,45.0,59.0,53.0,53.0,44.0,53.0,40.0,45.0,51.0,49.0,59.0,61.0,60.0,71.0,62.0,70.0,66.0,70.0,62.0,79.0,70.0,58.0,92.0,84.0,79.0,88.0,94.0,72.0,94.0,91.0,87.0,71.0,91.0,67.0,72.0,62.0,60.0,73.0,73.0,50.0,53.0,65.0,66.0,71.0,74.0,51.0,38.0,45.0,36.0,28.0,17.0,18.0,23.0,17.0,17.0,12.0,8.0,8.0,8.0,3.0,2.0,7.0 Y00056,,,,,,,,,,,,,,,,,,,,,2.0,2.0,3.0,2.0,3.0,3.0,6.0,7.0,9.0,11.0,9.0,7.0,11.0,12.0,22.0,15.0,11.0,23.0,20.0,14.0,21.0,21.0,14.0,14.0,21.0,23.0,18.0,13.0,14.0,20.0,15.0,20.0,18.0,11.0,15.0,16.0,21.0,14.0,13.0,16.0,13.0,10.0,5.0,7.0,8.0,5.0,4.0,6.0,7.0,3.0,3.0,2.0,7.0,3.0,,1.0,1.0,,1.0,,,,,1.0,,,1.0,,,,,,,,, Y00185,48.0,56.0,58.0,62.0,52.0,72.0,67.0,61.0,58.0,78.0,86.0,73.0,80.0,93.0,92.0,82.0,93.0,89.0,66.0,64.0,62.0,47.0,43.0,51.0,47.0,52.0,52.0,55.0,44.0,64.0,75.0,90.0,87.0,77.0,78.0,69.0,109.0,80.0,97.0,101.0,72.0,86.0,88.0,84.0,110.0,119.0,105.0,80.0,92.0,98.0,87.0,119.0,104.0,89.0,77.0,75.0,94.0,74.0,80.0,97.0,74.0,51.0,55.0,61.0,42.0,48.0,44.0,40.0,55.0,36.0,34.0,39.0,31.0,43.0,31.0,50.0,26.0,35.0,30.0,28.0,31.0,18.0,20.0,13.0,12.0,15.0,12.0,8.0,12.0,5.0,8.0,4.0,5.0,3.0,4.0,3.0 Y00486,27.0,41.0,38.0,44.0,42.0,55.0,51.0,58.0,55.0,73.0,65.0,48.0,69.0,59.0,56.0,80.0,65.0,74.0,58.0,46.0,46.0,27.0,34.0,37.0,30.0,36.0,32.0,51.0,44.0,40.0,40.0,49.0,63.0,59.0,68.0,73.0,70.0,61.0,68.0,57.0,72.0,67.0,85.0,77.0,81.0,72.0,76.0,58.0,73.0,78.0,61.0,64.0,61.0,51.0,49.0,43.0,41.0,59.0,40.0,45.0,55.0,36.0,38.0,31.0,29.0,30.0,19.0,22.0,31.0,16.0,20.0,16.0,13.0,16.0,18.0,17.0,20.0,9.0,21.0,13.0,9.0,9.0,4.0,7.0,3.0,6.0,9.0,2.0,3.0,2.0,3.0,3.0,2.0,4.0,1.0,2.0 Y02769,50.0,65.0,66.0,55.0,65.0,72.0,65.0,60.0,51.0,60.0,58.0,64.0,57.0,54.0,34.0,41.0,49.0,34.0,42.0,32.0,39.0,36.0,32.0,34.0,54.0,47.0,53.0,61.0,82.0,80.0,64.0,64.0,78.0,101.0,87.0,95.0,91.0,106.0,90.0,81.0,91.0,71.0,71.0,64.0,83.0,78.0,63.0,52.0,54.0,61.0,62.0,58.0,55.0,57.0,37.0,46.0,44.0,51.0,34.0,39.0,38.0,40.0,44.0,30.0,26.0,20.0,31.0,25.0,18.0,18.0,20.0,13.0,13.0,14.0,17.0,18.0,17.0,19.0,12.0,9.0,7.0,9.0,9.0,8.0,6.0,1.0,9.0,3.0,1.0,6.0,2.0,1.0,1.0,1.0,2.0,2.0 Y07025,21.0,25.0,43.0,36.0,54.0,46.0,39.0,49.0,41.0,66.0,56.0,59.0,63.0,61.0,82.0,53.0,72.0,62.0,62.0,60.0,54.0,48.0,49.0,33.0,48.0,50.0,56.0,54.0,53.0,63.0,73.0,45.0,62.0,70.0,65.0,63.0,57.0,77.0,56.0,57.0,68.0,68.0,54.0,75.0,68.0,52.0,71.0,65.0,49.0,71.0,66.0,57.0,68.0,58.0,50.0,70.0,56.0,46.0,65.0,63.0,39.0,49.0,41.0,57.0,52.0,45.0,47.0,34.0,30.0,22.0,34.0,38.0,27.0,26.0,24.0,26.0,26.0,23.0,27.0,20.0,13.0,15.0,8.0,13.0,8.0,14.0,6.0,10.0,7.0,5.0,4.0,4.0,6.0,8.0,5.0,4.0 Y07057,46.0,56.0,66.0,79.0,50.0,60.0,78.0,92.0,95.0,81.0,72.0,102.0,87.0,78.0,92.0,85.0,117.0,106.0,94.0,74.0,56.0,62.0,59.0,67.0,72.0,66.0,72.0,82.0,90.0,85.0,87.0,85.0,77.0,94.0,109.0,118.0,106.0,108.0,107.0,117.0,119.0,116.0,112.0,105.0,105.0,116.0,74.0,70.0,85.0,92.0,67.0,79.0,87.0,73.0,82.0,72.0,69.0,70.0,56.0,66.0,66.0,57.0,63.0,48.0,55.0,52.0,42.0,43.0,42.0,53.0,44.0,45.0,50.0,38.0,41.0,46.0,51.0,40.0,45.0,30.0,19.0,21.0,20.0,22.0,22.0,12.0,11.0,7.0,10.0,9.0,8.0,4.0,3.0,2.0,1.0,2.0 Y07059,72.0,90.0,90.0,102.0,108.0,118.0,125.0,149.0,123.0,138.0,153.0,149.0,161.0,151.0,143.0,164.0,120.0,153.0,121.0,125.0,91.0,111.0,111.0,105.0,99.0,98.0,97.0,93.0,122.0,110.0,113.0,133.0,125.0,153.0,142.0,140.0,151.0,174.0,152.0,144.0,161.0,171.0,185.0,147.0,155.0,140.0,126.0,147.0,126.0,115.0,129.0,116.0,113.0,108.0,106.0,106.0,115.0,131.0,105.0,121.0,115.0,124.0,107.0,109.0,109.0,99.0,92.0,82.0,96.0,78.0,79.0,66.0,77.0,65.0,70.0,70.0,67.0,64.0,64.0,42.0,49.0,23.0,35.0,27.0,26.0,31.0,14.0,20.0,22.0,18.0,7.0,12.0,10.0,7.0,5.0,8.0 Y07060,76.0,108.0,113.0,116.0,132.0,134.0,142.0,161.0,172.0,149.0,191.0,185.0,165.0,176.0,181.0,167.0,156.0,183.0,136.0,127.0,159.0,132.0,138.0,178.0,160.0,178.0,178.0,180.0,191.0,205.0,204.0,239.0,260.0,244.0,277.0,289.0,258.0,287.0,268.0,249.0,273.0,236.0,233.0,242.0,233.0,206.0,207.0,193.0,195.0,148.0,176.0,152.0,164.0,128.0,154.0,161.0,160.0,150.0,153.0,122.0,162.0,129.0,127.0,136.0,122.0,104.0,109.0,100.0,110.0,97.0,89.0,82.0,68.0,71.0,71.0,72.0,57.0,67.0,77.0,50.0,42.0,47.0,37.0,30.0,31.0,42.0,19.0,19.0,27.0,22.0,16.0,12.0,13.0,10.0,4.0,13.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 L81004,42.0,44.0,56.0,67.0,68.0,80.0,104.0,87.0,110.0,117.0,102.0,109.0,107.0,124.0,109.0,135.0,102.0,125.0,100.0,99.0,80.0,62.0,70.0,69.0,76.0,70.0,89.0,76.0,85.0,73.0,79.0,86.0,78.0,78.0,92.0,103.0,109.0,89.0,113.0,111.0,101.0,105.0,125.0,127.0,128.0,122.0,116.0,112.0,112.0,142.0,134.0,135.0,120.0,113.0,111.0,126.0,104.0,128.0,111.0,128.0,113.0,115.0,125.0,125.0,103.0,96.0,112.0,91.0,106.0,85.0,100.0,101.0,96.0,84.0,96.0,120.0,113.0,117.0,128.0,84.0,96.0,89.0,78.0,73.0,67.0,62.0,45.0,45.0,37.0,35.0,21.0,13.0,16.0,10.0,8.0,10.0 L81007,221.0,171.0,187.0,200.0,152.0,184.0,169.0,182.0,184.0,176.0,212.0,214.0,164.0,165.0,181.0,174.0,165.0,177.0,153.0,186.0,174.0,186.0,192.0,230.0,296.0,379.0,389.0,444.0,479.0,462.0,468.0,546.0,539.0,546.0,531.0,489.0,500.0,515.0,450.0,417.0,411.0,369.0,405.0,355.0,340.0,352.0,307.0,272.0,277.0,230.0,268.0,218.0,263.0,218.0,228.0,211.0,200.0,214.0,199.0,181.0,185.0,173.0,160.0,148.0,161.0,136.0,153.0,136.0,109.0,128.0,119.0,114.0,99.0,88.0,102.0,95.0,97.0,92.0,89.0,62.0,56.0,68.0,64.0,45.0,38.0,35.0,36.0,32.0,23.0,22.0,12.0,15.0,6.0,5.0,9.0,6.0 L81008,56.0,64.0,58.0,60.0,59.0,72.0,66.0,80.0,73.0,57.0,65.0,75.0,76.0,69.0,95.0,84.0,71.0,73.0,72.0,65.0,56.0,51.0,63.0,54.0,61.0,64.0,64.0,84.0,76.0,90.0,80.0,102.0,81.0,92.0,98.0,100.0,110.0,93.0,125.0,116.0,101.0,75.0,110.0,75.0,85.0,88.0,87.0,71.0,59.0,67.0,73.0,81.0,65.0,75.0,66.0,73.0,64.0,63.0,72.0,81.0,78.0,69.0,67.0,63.0,60.0,43.0,54.0,46.0,51.0,46.0,41.0,41.0,43.0,37.0,50.0,54.0,33.0,40.0,43.0,28.0,27.0,23.0,18.0,17.0,17.0,23.0,12.0,18.0,15.0,9.0,3.0,5.0,5.0,2.0,2.0,8.0 L81009,46.0,58.0,66.0,56.0,66.0,62.0,67.0,64.0,85.0,71.0,71.0,63.0,78.0,78.0,63.0,59.0,54.0,52.0,48.0,48.0,58.0,66.0,51.0,53.0,53.0,65.0,53.0,56.0,63.0,59.0,69.0,65.0,83.0,76.0,91.0,76.0,96.0,74.0,73.0,86.0,70.0,72.0,87.0,78.0,85.0,90.0,55.0,71.0,66.0,53.0,49.0,48.0,49.0,70.0,71.0,52.0,79.0,56.0,77.0,53.0,50.0,69.0,64.0,62.0,64.0,59.0,50.0,59.0,45.0,39.0,45.0,47.0,50.0,42.0,49.0,43.0,27.0,44.0,40.0,38.0,38.0,35.0,43.0,27.0,32.0,32.0,12.0,21.0,17.0,16.0,12.0,7.0,10.0,5.0,6.0,2.0 L81012,72.0,67.0,62.0,82.0,75.0,74.0,79.0,88.0,76.0,74.0,96.0,85.0,101.0,90.0,96.0,96.0,97.0,90.0,101.0,120.0,129.0,156.0,181.0,174.0,230.0,241.0,233.0,250.0,290.0,288.0,265.0,309.0,257.0,302.0,312.0,258.0,265.0,242.0,238.0,240.0,202.0,241.0,185.0,210.0,192.0,216.0,172.0,182.0,140.0,162.0,147.0,132.0,145.0,130.0,137.0,130.0,116.0,115.0,131.0,111.0,121.0,84.0,82.0,72.0,62.0,70.0,80.0,49.0,70.0,45.0,47.0,46.0,38.0,33.0,31.0,18.0,35.0,27.0,29.0,21.0,12.0,15.0,7.0,15.0,4.0,11.0,6.0,4.0,6.0,8.0,2.0,5.0,,1.0,2.0,1.0 L81013,47.0,54.0,63.0,65.0,65.0,59.0,54.0,104.0,84.0,78.0,84.0,75.0,91.0,91.0,78.0,73.0,77.0,82.0,67.0,59.0,81.0,87.0,65.0,79.0,82.0,84.0,89.0,95.0,90.0,90.0,93.0,93.0,97.0,114.0,115.0,127.0,115.0,110.0,105.0,112.0,113.0,106.0,95.0,124.0,105.0,97.0,125.0,74.0,84.0,99.0,85.0,93.0,103.0,77.0,90.0,71.0,96.0,76.0,81.0,78.0,90.0,74.0,73.0,78.0,64.0,73.0,62.0,57.0,67.0,50.0,48.0,56.0,42.0,52.0,60.0,48.0,63.0,42.0,45.0,39.0,51.0,34.0,25.0,22.0,22.0,25.0,17.0,23.0,9.0,7.0,8.0,8.0,5.0,4.0,5.0,9.0 L81014,54.0,70.0,66.0,68.0,65.0,59.0,69.0,81.0,76.0,74.0,82.0,98.0,95.0,117.0,89.0,81.0,94.0,96.0,82.0,66.0,76.0,74.0,62.0,77.0,72.0,81.0,89.0,103.0,77.0,77.0,82.0,84.0,88.0,87.0,93.0,90.0,76.0,81.0,76.0,74.0,84.0,77.0,83.0,86.0,78.0,81.0,90.0,89.0,91.0,83.0,62.0,87.0,95.0,94.0,104.0,120.0,100.0,94.0,84.0,109.0,106.0,103.0,109.0,115.0,109.0,84.0,90.0,83.0,78.0,58.0,68.0,77.0,59.0,61.0,79.0,62.0,75.0,76.0,73.0,53.0,72.0,70.0,52.0,44.0,40.0,39.0,32.0,42.0,25.0,27.0,19.0,20.0,17.0,6.0,10.0,13.0 L81015,93.0,109.0,96.0,99.0,88.0,113.0,86.0,100.0,95.0,98.0,112.0,110.0,125.0,109.0,128.0,114.0,100.0,116.0,115.0,128.0,132.0,163.0,139.0,171.0,175.0,199.0,196.0,238.0,242.0,275.0,211.0,212.0,282.0,219.0,252.0,238.0,252.0,213.0,221.0,236.0,212.0,189.0,183.0,149.0,176.0,192.0,170.0,146.0,141.0,166.0,136.0,148.0,139.0,120.0,127.0,118.0,134.0,110.0,112.0,103.0,131.0,96.0,100.0,99.0,87.0,69.0,66.0,63.0,41.0,47.0,51.0,36.0,40.0,36.0,34.0,28.0,20.0,19.0,17.0,13.0,11.0,12.0,21.0,10.0,16.0,11.0,9.0,8.0,8.0,7.0,7.0,7.0,5.0,4.0,2.0,4.0 L81016,31.0,36.0,26.0,31.0,36.0,37.0,31.0,50.0,52.0,52.0,47.0,41.0,47.0,56.0,42.0,47.0,38.0,41.0,48.0,44.0,43.0,31.0,37.0,35.0,54.0,49.0,65.0,58.0,68.0,70.0,78.0,75.0,84.0,83.0,72.0,74.0,88.0,84.0,90.0,96.0,85.0,98.0,73.0,72.0,72.0,59.0,62.0,63.0,65.0,57.0,76.0,59.0,67.0,63.0,77.0,78.0,95.0,64.0,75.0,104.0,86.0,96.0,75.0,69.0,63.0,62.0,70.0,70.0,59.0,56.0,44.0,55.0,42.0,50.0,44.0,35.0,51.0,47.0,50.0,42.0,43.0,37.0,17.0,17.0,15.0,17.0,21.0,18.0,13.0,17.0,8.0,6.0,3.0,7.0,4.0,3.0 L81017,47.0,57.0,59.0,66.0,57.0,65.0,87.0,81.0,70.0,88.0,84.0,91.0,91.0,93.0,123.0,92.0,90.0,103.0,73.0,39.0,44.0,55.0,43.0,47.0,50.0,60.0,52.0,65.0,47.0,39.0,60.0,49.0,75.0,57.0,74.0,71.0,75.0,77.0,72.0,84.0,93.0,87.0,107.0,103.0,109.0,93.0,112.0,96.0,109.0,72.0,103.0,80.0,95.0,96.0,61.0,95.0,56.0,73.0,64.0,71.0,82.0,69.0,50.0,70.0,41.0,58.0,60.0,61.0,52.0,58.0,50.0,54.0,53.0,56.0,56.0,59.0,50.0,53.0,51.0,48.0,34.0,40.0,30.0,32.0,19.0,26.0,13.0,16.0,13.0,13.0,11.0,7.0,4.0,11.0,2.0,14.0 L81018,35.0,37.0,34.0,46.0,31.0,49.0,48.0,47.0,41.0,54.0,45.0,38.0,43.0,46.0,50.0,52.0,66.0,51.0,44.0,39.0,34.0,41.0,46.0,54.0,56.0,51.0,37.0,44.0,41.0,45.0,52.0,64.0,62.0,59.0,54.0,51.0,52.0,51.0,55.0,60.0,56.0,47.0,38.0,39.0,50.0,67.0,40.0,60.0,42.0,51.0,40.0,52.0,62.0,43.0,63.0,73.0,60.0,57.0,71.0,55.0,69.0,65.0,62.0,41.0,67.0,70.0,56.0,55.0,39.0,51.0,44.0,40.0,64.0,61.0,46.0,54.0,61.0,55.0,67.0,44.0,60.0,46.0,54.0,32.0,28.0,32.0,24.0,25.0,17.0,15.0,7.0,15.0,7.0,10.0,4.0,9.0 L81019,97.0,109.0,108.0,116.0,129.0,102.0,104.0,130.0,99.0,136.0,103.0,114.0,126.0,113.0,121.0,114.0,107.0,108.0,94.0,78.0,83.0,83.0,93.0,86.0,100.0,134.0,137.0,134.0,154.0,145.0,157.0,170.0,158.0,206.0,150.0,159.0,186.0,155.0,136.0,159.0,144.0,154.0,164.0,171.0,139.0,132.0,142.0,108.0,114.0,125.0,124.0,111.0,119.0,103.0,104.0,100.0,107.0,90.0,121.0,111.0,97.0,95.0,97.0,88.0,83.0,77.0,62.0,87.0,69.0,70.0,75.0,55.0,67.0,67.0,56.0,68.0,52.0,58.0,59.0,49.0,57.0,41.0,31.0,30.0,21.0,34.0,34.0,16.0,16.0,8.0,7.0,5.0,3.0,1.0,5.0,3.0 L81021,48.0,57.0,48.0,60.0,52.0,52.0,68.0,48.0,56.0,65.0,67.0,63.0,68.0,72.0,74.0,91.0,92.0,78.0,66.0,69.0,53.0,63.0,40.0,41.0,55.0,50.0,50.0,45.0,37.0,57.0,54.0,57.0,48.0,81.0,65.0,58.0,54.0,57.0,61.0,72.0,61.0,58.0,55.0,62.0,59.0,61.0,65.0,57.0,61.0,65.0,56.0,61.0,79.0,86.0,65.0,66.0,82.0,79.0,71.0,58.0,79.0,77.0,88.0,66.0,67.0,67.0,68.0,62.0,72.0,57.0,59.0,70.0,72.0,62.0,55.0,58.0,51.0,64.0,79.0,70.0,62.0,50.0,52.0,43.0,29.0,29.0,34.0,18.0,18.0,14.0,10.0,10.0,11.0,13.0,8.0,11.0 L81022,99.0,100.0,96.0,101.0,96.0,85.0,111.0,92.0,98.0,113.0,103.0,111.0,121.0,106.0,124.0,96.0,106.0,108.0,101.0,112.0,139.0,142.0,157.0,157.0,138.0,188.0,184.0,185.0,188.0,195.0,183.0,184.0,176.0,176.0,188.0,182.0,171.0,186.0,157.0,177.0,156.0,177.0,157.0,127.0,133.0,121.0,116.0,113.0,123.0,99.0,99.0,100.0,98.0,101.0,94.0,79.0,84.0,85.0,71.0,65.0,80.0,69.0,69.0,66.0,68.0,62.0,63.0,67.0,63.0,61.0,48.0,52.0,48.0,46.0,47.0,54.0,49.0,55.0,42.0,35.0,39.0,37.0,33.0,16.0,14.0,11.0,20.0,16.0,11.0,4.0,6.0,4.0,6.0,3.0,4.0,8.0 L81023,85.0,95.0,101.0,101.0,79.0,96.0,91.0,88.0,98.0,93.0,83.0,94.0,97.0,87.0,80.0,90.0,76.0,83.0,93.0,92.0,85.0,112.0,100.0,99.0,121.0,131.0,160.0,151.0,188.0,172.0,187.0,176.0,171.0,184.0,175.0,208.0,181.0,224.0,195.0,217.0,218.0,170.0,181.0,187.0,149.0,122.0,141.0,126.0,136.0,110.0,106.0,108.0,122.0,96.0,110.0,85.0,99.0,73.0,78.0,83.0,75.0,67.0,68.0,71.0,64.0,53.0,46.0,34.0,34.0,37.0,41.0,34.0,28.0,28.0,32.0,27.0,13.0,25.0,19.0,13.0,18.0,17.0,9.0,12.0,12.0,8.0,13.0,8.0,9.0,6.0,3.0,3.0,3.0,5.0,1.0,2.0 L81024,58.0,72.0,86.0,82.0,76.0,92.0,93.0,103.0,82.0,98.0,83.0,91.0,103.0,92.0,90.0,97.0,83.0,109.0,91.0,91.0,85.0,103.0,83.0,89.0,95.0,83.0,90.0,93.0,93.0,96.0,78.0,93.0,107.0,120.0,104.0,82.0,120.0,118.0,96.0,92.0,108.0,92.0,126.0,89.0,100.0,86.0,100.0,70.0,84.0,105.0,83.0,95.0,87.0,89.0,117.0,115.0,101.0,106.0,114.0,102.0,100.0,117.0,111.0,95.0,91.0,76.0,74.0,65.0,74.0,65.0,68.0,72.0,72.0,67.0,68.0,61.0,66.0,82.0,71.0,54.0,61.0,48.0,51.0,31.0,31.0,36.0,39.0,30.0,19.0,16.0,15.0,13.0,2.0,6.0,,6.0 L81026,124.0,133.0,138.0,154.0,160.0,172.0,174.0,177.0,163.0,184.0,195.0,189.0,178.0,177.0,169.0,184.0,138.0,155.0,139.0,148.0,138.0,139.0,147.0,135.0,124.0,131.0,154.0,160.0,165.0,180.0,181.0,194.0,196.0,184.0,212.0,218.0,206.0,202.0,221.0,217.0,206.0,198.0,189.0,211.0,190.0,213.0,186.0,179.0,190.0,173.0,166.0,165.0,172.0,183.0,196.0,177.0,197.0,177.0,169.0,162.0,165.0,173.0,161.0,151.0,152.0,166.0,139.0,130.0,121.0,100.0,106.0,124.0,117.0,95.0,120.0,108.0,95.0,137.0,131.0,86.0,73.0,91.0,90.0,60.0,52.0,42.0,63.0,42.0,40.0,41.0,22.0,17.0,19.0,11.0,12.0,17.0 L81029,45.0,42.0,52.0,54.0,60.0,65.0,46.0,48.0,54.0,52.0,53.0,51.0,69.0,68.0,45.0,67.0,51.0,51.0,45.0,41.0,37.0,35.0,44.0,44.0,50.0,36.0,46.0,51.0,49.0,54.0,53.0,46.0,47.0,52.0,60.0,48.0,69.0,65.0,51.0,55.0,62.0,47.0,44.0,46.0,58.0,54.0,62.0,65.0,52.0,47.0,50.0,71.0,65.0,68.0,68.0,50.0,64.0,60.0,75.0,69.0,71.0,78.0,83.0,74.0,76.0,67.0,81.0,65.0,69.0,55.0,43.0,59.0,58.0,57.0,52.0,41.0,54.0,56.0,52.0,45.0,43.0,38.0,35.0,35.0,18.0,27.0,23.0,29.0,10.0,16.0,11.0,14.0,12.0,10.0,6.0,3.0 L81031,69.0,71.0,100.0,91.0,82.0,82.0,91.0,103.0,100.0,86.0,106.0,111.0,106.0,130.0,113.0,104.0,102.0,88.0,109.0,71.0,71.0,85.0,87.0,95.0,86.0,99.0,80.0,86.0,95.0,105.0,123.0,117.0,104.0,140.0,126.0,122.0,133.0,123.0,141.0,128.0,120.0,83.0,126.0,132.0,114.0,119.0,107.0,90.0,83.0,87.0,71.0,86.0,85.0,84.0,81.0,88.0,84.0,96.0,102.0,120.0,94.0,85.0,88.0,102.0,93.0,99.0,100.0,88.0,88.0,106.0,100.0,90.0,81.0,76.0,74.0,65.0,72.0,84.0,83.0,59.0,54.0,50.0,39.0,48.0,43.0,38.0,28.0,24.0,24.0,10.0,13.0,12.0,7.0,7.0,1.0,11.0 L81033,51.0,60.0,71.0,48.0,67.0,64.0,76.0,81.0,102.0,79.0,84.0,105.0,100.0,99.0,90.0,88.0,75.0,85.0,70.0,72.0,53.0,60.0,82.0,79.0,76.0,86.0,89.0,104.0,125.0,104.0,132.0,147.0,141.0,136.0,158.0,142.0,161.0,141.0,130.0,131.0,147.0,123.0,149.0,153.0,154.0,114.0,123.0,118.0,107.0,115.0,103.0,92.0,104.0,117.0,107.0,89.0,100.0,77.0,91.0,101.0,96.0,75.0,77.0,83.0,79.0,64.0,56.0,64.0,74.0,57.0,63.0,53.0,42.0,46.0,36.0,52.0,59.0,57.0,65.0,35.0,27.0,20.0,35.0,19.0,13.0,19.0,17.0,9.0,16.0,8.0,7.0,8.0,1.0,9.0,4.0,5.0 L81034,112.0,141.0,137.0,148.0,141.0,157.0,181.0,177.0,202.0,207.0,213.0,232.0,238.0,231.0,231.0,204.0,210.0,223.0,184.0,191.0,149.0,158.0,158.0,167.0,168.0,143.0,165.0,166.0,173.0,122.0,156.0,173.0,171.0,181.0,182.0,180.0,212.0,189.0,190.0,202.0,181.0,223.0,208.0,206.0,232.0,223.0,237.0,218.0,229.0,201.0,207.0,235.0,250.0,260.0,248.0,222.0,251.0,217.0,237.0,255.0,259.0,244.0,230.0,211.0,213.0,198.0,179.0,187.0,185.0,193.0,185.0,185.0,193.0,169.0,184.0,184.0,189.0,228.0,228.0,140.0,178.0,160.0,148.0,89.0,91.0,93.0,66.0,79.0,48.0,59.0,60.0,32.0,25.0,31.0,16.0,34.0 L81037,116.0,137.0,125.0,142.0,130.0,141.0,136.0,144.0,179.0,164.0,178.0,148.0,181.0,157.0,185.0,154.0,166.0,140.0,132.0,144.0,121.0,117.0,123.0,125.0,143.0,135.0,157.0,170.0,188.0,199.0,198.0,163.0,199.0,206.0,203.0,224.0,202.0,225.0,233.0,229.0,197.0,227.0,209.0,197.0,191.0,193.0,202.0,170.0,166.0,136.0,164.0,172.0,148.0,154.0,131.0,150.0,131.0,136.0,125.0,128.0,141.0,104.0,125.0,109.0,109.0,111.0,77.0,80.0,77.0,64.0,77.0,85.0,69.0,64.0,73.0,90.0,71.0,85.0,65.0,53.0,44.0,37.0,39.0,29.0,25.0,23.0,28.0,16.0,13.0,14.0,13.0,14.0,9.0,11.0,3.0,13.0 L81038,76.0,71.0,56.0,70.0,64.0,80.0,65.0,68.0,82.0,73.0,69.0,63.0,57.0,89.0,73.0,75.0,90.0,72.0,63.0,66.0,54.0,52.0,48.0,69.0,60.0,74.0,91.0,87.0,92.0,97.0,89.0,131.0,154.0,138.0,157.0,151.0,139.0,150.0,133.0,135.0,130.0,133.0,128.0,111.0,111.0,105.0,91.0,100.0,92.0,77.0,79.0,74.0,108.0,83.0,98.0,80.0,84.0,80.0,102.0,84.0,78.0,85.0,71.0,79.0,67.0,57.0,58.0,60.0,53.0,56.0,49.0,51.0,42.0,40.0,38.0,42.0,54.0,40.0,44.0,35.0,40.0,35.0,19.0,27.0,30.0,14.0,15.0,17.0,18.0,14.0,10.0,5.0,8.0,6.0,4.0,15.0 L81040,61.0,71.0,80.0,75.0,77.0,81.0,99.0,94.0,80.0,72.0,89.0,85.0,95.0,103.0,95.0,81.0,103.0,81.0,68.0,82.0,71.0,68.0,77.0,61.0,75.0,80.0,73.0,77.0,71.0,99.0,83.0,97.0,97.0,86.0,100.0,108.0,112.0,108.0,93.0,96.0,120.0,106.0,101.0,115.0,112.0,86.0,100.0,114.0,95.0,88.0,98.0,89.0,106.0,100.0,94.0,120.0,112.0,110.0,112.0,102.0,102.0,121.0,132.0,127.0,115.0,96.0,106.0,104.0,87.0,99.0,97.0,106.0,93.0,88.0,80.0,97.0,93.0,105.0,85.0,84.0,80.0,62.0,65.0,46.0,46.0,40.0,36.0,47.0,26.0,29.0,27.0,19.0,17.0,15.0,13.0,21.0 L81041,52.0,53.0,70.0,72.0,53.0,74.0,56.0,65.0,73.0,78.0,59.0,64.0,68.0,58.0,58.0,62.0,62.0,35.0,48.0,44.0,44.0,42.0,35.0,38.0,48.0,46.0,44.0,51.0,75.0,53.0,49.0,54.0,72.0,56.0,58.0,55.0,66.0,63.0,59.0,61.0,55.0,65.0,47.0,49.0,49.0,33.0,41.0,41.0,36.0,33.0,40.0,36.0,37.0,38.0,35.0,31.0,49.0,28.0,47.0,43.0,38.0,46.0,36.0,45.0,27.0,22.0,23.0,27.0,25.0,25.0,20.0,22.0,15.0,14.0,23.0,15.0,8.0,14.0,18.0,10.0,9.0,5.0,6.0,7.0,3.0,9.0,5.0,7.0,3.0,3.0,5.0,2.0,1.0,1.0,1.0,1.0 L81042,55.0,47.0,67.0,70.0,58.0,69.0,73.0,92.0,77.0,83.0,74.0,66.0,79.0,64.0,67.0,65.0,57.0,71.0,79.0,64.0,58.0,57.0,64.0,64.0,70.0,75.0,77.0,81.0,89.0,71.0,85.0,89.0,103.0,93.0,96.0,87.0,81.0,100.0,89.0,90.0,81.0,92.0,69.0,70.0,79.0,69.0,77.0,42.0,72.0,52.0,74.0,72.0,70.0,68.0,68.0,76.0,87.0,88.0,82.0,87.0,95.0,86.0,96.0,106.0,88.0,78.0,80.0,77.0,87.0,73.0,70.0,62.0,71.0,64.0,54.0,63.0,58.0,60.0,70.0,34.0,48.0,31.0,26.0,29.0,15.0,31.0,19.0,16.0,10.0,10.0,7.0,9.0,2.0,2.0,1.0,6.0 L81044,47.0,59.0,55.0,47.0,68.0,64.0,52.0,60.0,53.0,52.0,57.0,60.0,78.0,68.0,62.0,82.0,51.0,76.0,61.0,60.0,56.0,60.0,59.0,55.0,56.0,60.0,66.0,69.0,75.0,80.0,64.0,72.0,66.0,86.0,91.0,84.0,77.0,90.0,71.0,74.0,73.0,80.0,82.0,89.0,70.0,74.0,68.0,71.0,65.0,66.0,72.0,84.0,74.0,70.0,101.0,97.0,94.0,79.0,92.0,74.0,102.0,100.0,87.0,95.0,72.0,77.0,75.0,68.0,74.0,73.0,42.0,67.0,57.0,68.0,59.0,55.0,64.0,63.0,78.0,49.0,52.0,53.0,42.0,28.0,34.0,31.0,25.0,21.0,17.0,14.0,19.0,11.0,6.0,10.0,5.0,13.0 L81046,30.0,29.0,23.0,27.0,36.0,38.0,35.0,38.0,44.0,60.0,38.0,59.0,43.0,39.0,52.0,46.0,45.0,46.0,50.0,47.0,45.0,45.0,47.0,36.0,41.0,53.0,46.0,50.0,48.0,26.0,42.0,48.0,35.0,50.0,53.0,41.0,33.0,43.0,54.0,49.0,40.0,48.0,50.0,42.0,57.0,54.0,34.0,48.0,42.0,58.0,53.0,64.0,53.0,77.0,63.0,59.0,53.0,60.0,58.0,62.0,48.0,57.0,53.0,43.0,38.0,49.0,62.0,34.0,47.0,36.0,33.0,33.0,44.0,28.0,30.0,47.0,33.0,46.0,34.0,47.0,34.0,33.0,26.0,26.0,15.0,20.0,21.0,21.0,20.0,8.0,12.0,10.0,5.0,1.0,3.0,6.0 L81047,62.0,71.0,73.0,64.0,82.0,84.0,70.0,72.0,82.0,89.0,101.0,84.0,83.0,90.0,100.0,85.0,84.0,79.0,81.0,69.0,70.0,67.0,66.0,83.0,80.0,84.0,88.0,103.0,94.0,100.0,87.0,110.0,105.0,111.0,109.0,102.0,103.0,111.0,108.0,100.0,83.0,97.0,91.0,91.0,86.0,90.0,94.0,76.0,80.0,101.0,94.0,107.0,88.0,88.0,114.0,104.0,116.0,79.0,97.0,117.0,123.0,95.0,124.0,86.0,101.0,60.0,65.0,66.0,76.0,57.0,57.0,72.0,56.0,51.0,56.0,69.0,59.0,81.0,78.0,64.0,64.0,62.0,56.0,41.0,42.0,37.0,33.0,35.0,30.0,24.0,22.0,15.0,11.0,7.0,6.0,11.0 L81050,17.0,24.0,37.0,28.0,26.0,32.0,37.0,52.0,42.0,42.0,49.0,51.0,41.0,29.0,32.0,46.0,31.0,48.0,32.0,36.0,41.0,32.0,43.0,26.0,39.0,38.0,35.0,49.0,43.0,41.0,57.0,42.0,58.0,45.0,50.0,51.0,53.0,52.0,49.0,49.0,71.0,58.0,38.0,49.0,51.0,51.0,40.0,30.0,47.0,36.0,32.0,47.0,46.0,38.0,61.0,44.0,38.0,57.0,59.0,66.0,55.0,63.0,56.0,56.0,46.0,47.0,57.0,61.0,37.0,49.0,51.0,39.0,30.0,41.0,40.0,42.0,42.0,38.0,33.0,18.0,20.0,27.0,29.0,18.0,12.0,9.0,12.0,3.0,11.0,9.0,5.0,6.0,5.0,3.0,1.0,4.0 L81051,107.0,114.0,116.0,113.0,103.0,126.0,121.0,137.0,127.0,134.0,129.0,118.0,124.0,120.0,105.0,108.0,107.0,96.0,97.0,97.0,95.0,110.0,94.0,116.0,120.0,153.0,157.0,143.0,188.0,191.0,192.0,179.0,196.0,227.0,196.0,192.0,197.0,233.0,217.0,190.0,190.0,184.0,161.0,184.0,185.0,154.0,151.0,144.0,140.0,148.0,131.0,147.0,173.0,157.0,169.0,144.0,159.0,177.0,169.0,172.0,151.0,153.0,155.0,144.0,121.0,117.0,136.0,120.0,116.0,115.0,107.0,127.0,103.0,110.0,130.0,112.0,114.0,122.0,144.0,93.0,89.0,80.0,85.0,68.0,59.0,56.0,59.0,37.0,39.0,28.0,30.0,21.0,19.0,8.0,6.0,17.0 L81053,35.0,55.0,39.0,55.0,50.0,46.0,48.0,45.0,49.0,40.0,60.0,37.0,50.0,54.0,45.0,49.0,57.0,58.0,51.0,38.0,43.0,44.0,46.0,39.0,32.0,49.0,43.0,49.0,58.0,58.0,63.0,93.0,63.0,70.0,90.0,85.0,76.0,71.0,82.0,73.0,72.0,61.0,62.0,54.0,58.0,59.0,52.0,45.0,53.0,54.0,52.0,47.0,43.0,43.0,53.0,43.0,50.0,42.0,55.0,44.0,54.0,55.0,43.0,49.0,56.0,41.0,46.0,40.0,40.0,45.0,38.0,30.0,29.0,23.0,36.0,26.0,37.0,36.0,25.0,22.0,24.0,14.0,11.0,17.0,13.0,12.0,12.0,13.0,13.0,9.0,9.0,7.0,3.0,2.0,1.0,8.0 L81054,58.0,65.0,64.0,74.0,77.0,64.0,82.0,95.0,96.0,99.0,90.0,86.0,90.0,95.0,80.0,88.0,93.0,93.0,83.0,53.0,63.0,70.0,57.0,68.0,67.0,71.0,69.0,79.0,85.0,86.0,84.0,99.0,106.0,100.0,137.0,105.0,104.0,105.0,98.0,101.0,114.0,89.0,97.0,85.0,88.0,81.0,79.0,91.0,73.0,76.0,71.0,61.0,62.0,71.0,75.0,55.0,62.0,71.0,73.0,74.0,65.0,69.0,81.0,68.0,54.0,63.0,58.0,45.0,47.0,44.0,43.0,39.0,30.0,46.0,37.0,32.0,32.0,31.0,27.0,19.0,24.0,19.0,22.0,14.0,14.0,14.0,15.0,11.0,9.0,11.0,3.0,6.0,4.0,3.0,2.0,5.0 L81055,44.0,53.0,70.0,48.0,50.0,73.0,43.0,47.0,73.0,60.0,85.0,76.0,63.0,84.0,77.0,64.0,88.0,85.0,81.0,77.0,65.0,81.0,52.0,79.0,65.0,101.0,90.0,92.0,112.0,107.0,102.0,92.0,95.0,126.0,106.0,115.0,112.0,94.0,105.0,102.0,107.0,99.0,91.0,107.0,90.0,84.0,90.0,62.0,86.0,96.0,81.0,73.0,81.0,108.0,117.0,91.0,82.0,78.0,80.0,97.0,83.0,78.0,75.0,80.0,79.0,62.0,57.0,52.0,41.0,47.0,36.0,40.0,53.0,45.0,42.0,50.0,44.0,62.0,44.0,36.0,29.0,31.0,19.0,21.0,23.0,26.0,17.0,16.0,14.0,21.0,8.0,8.0,9.0,4.0,3.0,8.0 L81058,20.0,30.0,26.0,25.0,46.0,37.0,23.0,40.0,30.0,31.0,41.0,38.0,50.0,42.0,56.0,48.0,46.0,51.0,68.0,50.0,43.0,41.0,38.0,49.0,48.0,45.0,46.0,41.0,71.0,43.0,39.0,60.0,54.0,56.0,56.0,59.0,68.0,67.0,58.0,49.0,50.0,59.0,72.0,54.0,66.0,55.0,51.0,43.0,54.0,46.0,50.0,59.0,62.0,76.0,62.0,66.0,68.0,72.0,79.0,71.0,82.0,72.0,69.0,61.0,48.0,60.0,53.0,50.0,40.0,62.0,45.0,36.0,48.0,49.0,53.0,47.0,57.0,42.0,60.0,41.0,37.0,33.0,38.0,25.0,23.0,19.0,18.0,19.0,11.0,16.0,13.0,6.0,7.0,4.0,4.0,11.0 L81061,57.0,74.0,73.0,67.0,67.0,72.0,76.0,72.0,90.0,60.0,64.0,66.0,63.0,69.0,79.0,73.0,49.0,57.0,51.0,58.0,61.0,57.0,69.0,67.0,75.0,89.0,86.0,97.0,143.0,127.0,107.0,141.0,155.0,159.0,167.0,159.0,154.0,160.0,149.0,138.0,142.0,127.0,105.0,113.0,97.0,110.0,84.0,80.0,80.0,64.0,81.0,72.0,66.0,65.0,60.0,64.0,54.0,44.0,48.0,44.0,54.0,46.0,48.0,41.0,35.0,26.0,28.0,33.0,27.0,19.0,16.0,22.0,13.0,16.0,11.0,17.0,16.0,16.0,16.0,6.0,15.0,16.0,9.0,7.0,5.0,5.0,6.0,4.0,5.0,4.0,2.0,,,1.0,,6.0 L81062,136.0,133.0,123.0,148.0,146.0,132.0,147.0,139.0,155.0,140.0,157.0,152.0,155.0,156.0,148.0,111.0,130.0,136.0,138.0,129.0,117.0,128.0,94.0,110.0,127.0,137.0,164.0,177.0,199.0,186.0,225.0,237.0,233.0,276.0,250.0,254.0,277.0,275.0,246.0,234.0,246.0,183.0,213.0,222.0,194.0,211.0,175.0,142.0,180.0,156.0,145.0,140.0,174.0,154.0,152.0,159.0,142.0,146.0,137.0,148.0,155.0,119.0,117.0,126.0,121.0,93.0,98.0,89.0,95.0,82.0,75.0,73.0,64.0,72.0,68.0,66.0,62.0,64.0,90.0,51.0,68.0,52.0,51.0,30.0,34.0,15.0,20.0,15.0,24.0,6.0,13.0,14.0,8.0,6.0,4.0,6.0 L81063,65.0,68.0,80.0,86.0,77.0,65.0,75.0,77.0,70.0,107.0,52.0,88.0,66.0,94.0,71.0,72.0,71.0,71.0,66.0,65.0,66.0,57.0,63.0,64.0,60.0,82.0,83.0,121.0,98.0,109.0,118.0,118.0,139.0,142.0,118.0,126.0,127.0,137.0,122.0,130.0,109.0,109.0,95.0,105.0,93.0,68.0,85.0,62.0,69.0,70.0,79.0,77.0,64.0,67.0,86.0,72.0,70.0,68.0,71.0,58.0,62.0,80.0,62.0,79.0,57.0,73.0,53.0,47.0,61.0,52.0,46.0,53.0,52.0,47.0,48.0,51.0,36.0,52.0,53.0,43.0,35.0,29.0,43.0,30.0,20.0,21.0,21.0,13.0,19.0,8.0,19.0,16.0,10.0,7.0,2.0,12.0 L81066,35.0,46.0,62.0,53.0,69.0,84.0,74.0,73.0,65.0,85.0,68.0,81.0,80.0,87.0,83.0,82.0,101.0,98.0,85.0,67.0,69.0,68.0,63.0,60.0,85.0,57.0,57.0,54.0,64.0,54.0,61.0,64.0,73.0,63.0,90.0,57.0,69.0,95.0,83.0,79.0,99.0,75.0,106.0,93.0,93.0,87.0,67.0,93.0,69.0,70.0,94.0,65.0,72.0,87.0,83.0,83.0,79.0,82.0,61.0,68.0,69.0,73.0,60.0,45.0,71.0,46.0,63.0,50.0,35.0,31.0,43.0,33.0,30.0,41.0,36.0,31.0,35.0,33.0,31.0,31.0,33.0,16.0,10.0,13.0,7.0,16.0,21.0,10.0,4.0,4.0,5.0,2.0,1.0,2.0,,3.0 L81067,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,,,,,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,, L81075,102.0,71.0,85.0,97.0,78.0,63.0,79.0,84.0,92.0,96.0,75.0,87.0,84.0,77.0,66.0,59.0,71.0,85.0,331.0,712.0,911.0,966.0,1010.0,914.0,953.0,827.0,798.0,808.0,668.0,591.0,556.0,452.0,348.0,287.0,282.0,242.0,223.0,189.0,196.0,187.0,164.0,139.0,130.0,106.0,113.0,108.0,108.0,96.0,86.0,84.0,75.0,81.0,77.0,58.0,66.0,63.0,55.0,61.0,85.0,55.0,69.0,83.0,61.0,43.0,43.0,47.0,32.0,49.0,33.0,38.0,41.0,31.0,39.0,35.0,30.0,36.0,34.0,32.0,30.0,27.0,13.0,24.0,24.0,15.0,18.0,22.0,18.0,14.0,16.0,12.0,9.0,9.0,6.0,,4.0,7.0 L81078,88.0,103.0,103.0,126.0,123.0,127.0,146.0,168.0,162.0,163.0,154.0,147.0,156.0,144.0,138.0,163.0,131.0,136.0,93.0,99.0,132.0,148.0,136.0,130.0,174.0,195.0,243.0,204.0,210.0,198.0,214.0,226.0,207.0,209.0,206.0,208.0,190.0,216.0,221.0,197.0,191.0,199.0,201.0,190.0,186.0,181.0,187.0,185.0,179.0,148.0,146.0,143.0,139.0,140.0,113.0,119.0,119.0,130.0,139.0,101.0,122.0,115.0,87.0,108.0,78.0,79.0,89.0,81.0,83.0,75.0,67.0,64.0,67.0,65.0,47.0,65.0,53.0,56.0,50.0,42.0,37.0,27.0,25.0,29.0,23.0,21.0,14.0,16.0,12.0,9.0,6.0,6.0,2.0,4.0,1.0,11.0 L81079,75.0,92.0,88.0,98.0,96.0,109.0,106.0,131.0,114.0,143.0,123.0,119.0,133.0,132.0,121.0,136.0,138.0,112.0,125.0,100.0,103.0,103.0,100.0,119.0,99.0,99.0,130.0,122.0,120.0,117.0,130.0,137.0,129.0,148.0,124.0,128.0,134.0,139.0,136.0,152.0,148.0,145.0,125.0,146.0,138.0,134.0,125.0,132.0,129.0,114.0,132.0,152.0,141.0,161.0,152.0,129.0,155.0,158.0,173.0,158.0,150.0,152.0,136.0,118.0,113.0,116.0,124.0,100.0,114.0,104.0,98.0,115.0,110.0,102.0,108.0,98.0,99.0,115.0,101.0,74.0,93.0,83.0,72.0,60.0,50.0,53.0,50.0,38.0,32.0,31.0,30.0,17.0,15.0,11.0,6.0,21.0 L81081,81.0,70.0,54.0,58.0,65.0,71.0,73.0,55.0,78.0,69.0,76.0,87.0,98.0,92.0,102.0,126.0,133.0,121.0,109.0,97.0,78.0,96.0,121.0,117.0,173.0,216.0,278.0,314.0,286.0,278.0,280.0,286.0,249.0,243.0,228.0,224.0,201.0,194.0,157.0,160.0,163.0,185.0,138.0,142.0,139.0,141.0,125.0,130.0,122.0,128.0,131.0,109.0,122.0,98.0,116.0,102.0,120.0,104.0,109.0,104.0,102.0,104.0,99.0,94.0,103.0,79.0,69.0,64.0,62.0,70.0,65.0,71.0,55.0,61.0,64.0,58.0,58.0,42.0,55.0,45.0,33.0,34.0,34.0,26.0,17.0,21.0,17.0,14.0,18.0,14.0,9.0,10.0,6.0,4.0,2.0,7.0 L81082,69.0,66.0,51.0,65.0,47.0,58.0,61.0,47.0,51.0,43.0,62.0,68.0,76.0,58.0,67.0,53.0,54.0,52.0,91.0,91.0,68.0,80.0,84.0,114.0,151.0,138.0,163.0,164.0,185.0,185.0,153.0,230.0,215.0,221.0,179.0,176.0,178.0,157.0,136.0,134.0,111.0,112.0,107.0,120.0,101.0,91.0,102.0,107.0,86.0,80.0,87.0,72.0,88.0,84.0,68.0,85.0,95.0,83.0,72.0,54.0,75.0,68.0,63.0,45.0,43.0,46.0,57.0,40.0,40.0,55.0,45.0,31.0,29.0,32.0,31.0,25.0,34.0,32.0,24.0,22.0,20.0,19.0,14.0,9.0,10.0,6.0,16.0,6.0,4.0,6.0,4.0,6.0,3.0,2.0,1.0, L81083,51.0,61.0,63.0,60.0,78.0,63.0,79.0,63.0,66.0,60.0,69.0,73.0,70.0,67.0,64.0,80.0,64.0,59.0,49.0,59.0,74.0,56.0,67.0,62.0,57.0,60.0,70.0,65.0,73.0,73.0,88.0,62.0,47.0,77.0,47.0,72.0,65.0,78.0,64.0,68.0,61.0,80.0,65.0,52.0,59.0,61.0,43.0,44.0,48.0,34.0,30.0,36.0,36.0,48.0,47.0,47.0,62.0,44.0,43.0,43.0,48.0,50.0,56.0,38.0,38.0,45.0,40.0,28.0,35.0,34.0,28.0,21.0,26.0,33.0,19.0,22.0,16.0,17.0,13.0,11.0,10.0,15.0,13.0,7.0,9.0,10.0,6.0,8.0,3.0,2.0,4.0,5.0,5.0,1.0,1.0,3.0 L81084,52.0,57.0,49.0,60.0,41.0,72.0,68.0,62.0,63.0,71.0,61.0,66.0,57.0,64.0,63.0,66.0,78.0,67.0,62.0,67.0,65.0,54.0,64.0,74.0,71.0,77.0,63.0,90.0,83.0,75.0,82.0,82.0,80.0,88.0,87.0,94.0,95.0,109.0,95.0,95.0,88.0,97.0,84.0,84.0,82.0,91.0,75.0,75.0,86.0,80.0,90.0,79.0,75.0,78.0,79.0,64.0,80.0,76.0,71.0,88.0,71.0,56.0,66.0,61.0,60.0,51.0,57.0,46.0,51.0,55.0,37.0,53.0,32.0,33.0,38.0,44.0,40.0,44.0,45.0,35.0,35.0,36.0,24.0,28.0,21.0,25.0,18.0,12.0,7.0,14.0,3.0,9.0,3.0,,3.0,6.0 L81085,17.0,29.0,37.0,27.0,26.0,32.0,32.0,38.0,37.0,35.0,38.0,31.0,30.0,34.0,44.0,43.0,43.0,35.0,41.0,42.0,28.0,29.0,40.0,21.0,29.0,43.0,34.0,26.0,41.0,32.0,24.0,36.0,33.0,36.0,50.0,44.0,40.0,45.0,45.0,36.0,40.0,41.0,40.0,40.0,43.0,50.0,52.0,55.0,32.0,37.0,46.0,46.0,38.0,55.0,51.0,57.0,51.0,61.0,58.0,52.0,51.0,47.0,52.0,42.0,32.0,29.0,38.0,42.0,42.0,37.0,31.0,32.0,34.0,22.0,39.0,41.0,40.0,48.0,46.0,21.0,35.0,28.0,28.0,20.0,19.0,18.0,16.0,23.0,14.0,13.0,7.0,7.0,3.0,7.0,2.0,4.0 L81086,207.0,204.0,222.0,241.0,229.0,231.0,263.0,239.0,255.0,295.0,261.0,301.0,302.0,303.0,298.0,293.0,302.0,322.0,242.0,211.0,219.0,209.0,211.0,202.0,196.0,240.0,210.0,214.0,199.0,261.0,239.0,261.0,276.0,285.0,279.0,260.0,284.0,292.0,305.0,330.0,284.0,288.0,310.0,323.0,315.0,305.0,280.0,231.0,268.0,256.0,277.0,297.0,303.0,308.0,303.0,305.0,300.0,324.0,297.0,331.0,312.0,310.0,315.0,303.0,283.0,252.0,217.0,266.0,254.0,256.0,241.0,234.0,241.0,230.0,234.0,239.0,246.0,245.0,251.0,165.0,219.0,175.0,140.0,136.0,99.0,120.0,97.0,82.0,72.0,47.0,52.0,36.0,26.0,15.0,14.0,36.0 L81087,65.0,60.0,74.0,72.0,66.0,73.0,76.0,75.0,69.0,73.0,80.0,64.0,69.0,77.0,85.0,70.0,90.0,77.0,77.0,87.0,79.0,81.0,67.0,82.0,87.0,105.0,82.0,104.0,105.0,115.0,109.0,119.0,97.0,122.0,121.0,130.0,112.0,123.0,133.0,115.0,127.0,113.0,112.0,119.0,106.0,101.0,83.0,93.0,94.0,87.0,90.0,85.0,89.0,67.0,96.0,93.0,73.0,77.0,84.0,60.0,87.0,65.0,85.0,60.0,56.0,49.0,47.0,65.0,61.0,54.0,48.0,40.0,37.0,40.0,43.0,35.0,35.0,39.0,38.0,22.0,30.0,25.0,23.0,17.0,17.0,14.0,20.0,9.0,4.0,6.0,6.0,4.0,5.0,4.0,4.0,1.0 L81089,54.0,57.0,42.0,51.0,65.0,56.0,69.0,73.0,85.0,61.0,79.0,63.0,76.0,73.0,71.0,96.0,67.0,67.0,62.0,85.0,71.0,88.0,111.0,122.0,144.0,145.0,146.0,139.0,151.0,137.0,139.0,118.0,139.0,154.0,138.0,140.0,108.0,131.0,117.0,112.0,107.0,116.0,115.0,96.0,90.0,109.0,74.0,93.0,71.0,60.0,76.0,67.0,52.0,68.0,61.0,74.0,52.0,76.0,67.0,55.0,59.0,60.0,44.0,39.0,32.0,32.0,26.0,25.0,28.0,24.0,21.0,21.0,27.0,10.0,24.0,25.0,21.0,23.0,20.0,15.0,12.0,23.0,11.0,11.0,14.0,17.0,10.0,14.0,6.0,6.0,3.0,1.0,6.0,3.0,1.0,3.0 L81090,61.0,57.0,46.0,58.0,47.0,52.0,67.0,63.0,65.0,56.0,61.0,59.0,71.0,63.0,64.0,64.0,77.0,75.0,74.0,50.0,71.0,84.0,118.0,128.0,144.0,196.0,204.0,201.0,222.0,220.0,258.0,228.0,224.0,271.0,243.0,221.0,223.0,193.0,207.0,169.0,177.0,204.0,160.0,143.0,148.0,131.0,141.0,120.0,110.0,110.0,92.0,115.0,102.0,103.0,101.0,95.0,91.0,99.0,104.0,81.0,85.0,79.0,73.0,72.0,76.0,73.0,54.0,54.0,58.0,51.0,39.0,40.0,52.0,47.0,39.0,43.0,41.0,43.0,61.0,31.0,31.0,34.0,36.0,25.0,15.0,26.0,12.0,14.0,9.0,12.0,7.0,2.0,7.0,8.0,2.0,3.0 L81091,38.0,48.0,41.0,36.0,42.0,35.0,32.0,47.0,52.0,51.0,49.0,58.0,50.0,72.0,66.0,58.0,68.0,67.0,76.0,85.0,91.0,108.0,85.0,121.0,145.0,141.0,165.0,163.0,202.0,171.0,161.0,145.0,165.0,169.0,161.0,169.0,142.0,172.0,161.0,134.0,154.0,121.0,144.0,143.0,158.0,128.0,141.0,131.0,133.0,124.0,114.0,111.0,105.0,131.0,128.0,104.0,133.0,113.0,118.0,126.0,118.0,116.0,93.0,95.0,96.0,80.0,97.0,94.0,83.0,85.0,86.0,78.0,98.0,98.0,81.0,78.0,61.0,73.0,61.0,54.0,48.0,36.0,47.0,29.0,29.0,27.0,18.0,26.0,15.0,5.0,8.0,8.0,10.0,4.0,6.0,4.0 L81095,79.0,93.0,82.0,99.0,93.0,84.0,100.0,112.0,136.0,114.0,110.0,120.0,117.0,136.0,122.0,128.0,133.0,125.0,116.0,114.0,111.0,93.0,101.0,85.0,97.0,90.0,97.0,127.0,102.0,121.0,112.0,126.0,113.0,125.0,127.0,115.0,132.0,122.0,106.0,125.0,106.0,108.0,109.0,108.0,107.0,116.0,96.0,93.0,88.0,84.0,89.0,80.0,78.0,94.0,90.0,69.0,87.0,87.0,76.0,74.0,88.0,83.0,70.0,69.0,49.0,51.0,64.0,55.0,46.0,48.0,51.0,42.0,37.0,29.0,35.0,37.0,27.0,32.0,28.0,16.0,12.0,20.0,17.0,11.0,12.0,7.0,13.0,9.0,10.0,9.0,6.0,4.0,2.0,2.0,1.0,1.0 L81098,58.0,57.0,74.0,78.0,71.0,65.0,68.0,86.0,69.0,75.0,77.0,70.0,88.0,78.0,65.0,84.0,88.0,82.0,60.0,63.0,75.0,53.0,60.0,72.0,73.0,94.0,89.0,88.0,99.0,115.0,109.0,110.0,111.0,106.0,117.0,97.0,90.0,104.0,106.0,101.0,93.0,88.0,94.0,94.0,94.0,98.0,76.0,86.0,74.0,90.0,72.0,65.0,67.0,73.0,69.0,53.0,71.0,68.0,55.0,76.0,53.0,58.0,59.0,50.0,50.0,43.0,41.0,44.0,44.0,37.0,25.0,33.0,32.0,40.0,33.0,39.0,27.0,38.0,24.0,26.0,26.0,29.0,27.0,14.0,18.0,14.0,16.0,10.0,8.0,15.0,7.0,4.0,5.0,5.0,3.0,7.0 L81103,34.0,53.0,50.0,56.0,62.0,62.0,55.0,63.0,66.0,43.0,44.0,51.0,50.0,50.0,59.0,55.0,56.0,55.0,44.0,45.0,35.0,38.0,44.0,45.0,47.0,36.0,43.0,44.0,38.0,40.0,48.0,44.0,52.0,57.0,48.0,67.0,67.0,57.0,59.0,59.0,55.0,58.0,49.0,58.0,60.0,54.0,50.0,55.0,57.0,50.0,50.0,62.0,54.0,65.0,56.0,55.0,58.0,65.0,62.0,62.0,65.0,57.0,57.0,60.0,57.0,45.0,36.0,51.0,37.0,34.0,37.0,43.0,35.0,41.0,34.0,38.0,44.0,40.0,37.0,35.0,38.0,36.0,31.0,29.0,31.0,26.0,25.0,16.0,13.0,19.0,11.0,10.0,10.0,3.0,6.0,11.0 L81106,25.0,38.0,23.0,24.0,43.0,35.0,34.0,39.0,33.0,43.0,29.0,39.0,26.0,36.0,33.0,31.0,24.0,35.0,27.0,25.0,16.0,33.0,21.0,34.0,33.0,24.0,32.0,23.0,26.0,38.0,26.0,26.0,33.0,29.0,32.0,34.0,22.0,33.0,46.0,35.0,41.0,26.0,38.0,39.0,28.0,37.0,41.0,32.0,31.0,27.0,30.0,41.0,40.0,25.0,28.0,29.0,45.0,39.0,35.0,31.0,48.0,45.0,33.0,30.0,33.0,26.0,41.0,27.0,29.0,41.0,23.0,44.0,32.0,43.0,19.0,32.0,25.0,34.0,37.0,27.0,27.0,30.0,24.0,13.0,11.0,10.0,12.0,7.0,6.0,5.0,4.0,6.0,3.0,2.0,5.0,7.0 L81117,14.0,16.0,16.0,30.0,19.0,13.0,20.0,22.0,14.0,22.0,31.0,28.0,23.0,38.0,22.0,17.0,21.0,19.0,22.0,19.0,19.0,19.0,20.0,19.0,27.0,24.0,30.0,19.0,35.0,25.0,27.0,34.0,30.0,27.0,28.0,32.0,23.0,33.0,26.0,28.0,22.0,16.0,23.0,30.0,33.0,34.0,29.0,28.0,24.0,21.0,23.0,29.0,41.0,30.0,32.0,28.0,33.0,31.0,41.0,40.0,37.0,30.0,34.0,44.0,37.0,29.0,29.0,29.0,25.0,25.0,25.0,22.0,23.0,19.0,25.0,28.0,21.0,24.0,26.0,18.0,19.0,11.0,12.0,9.0,7.0,14.0,5.0,6.0,5.0,6.0,3.0,3.0,3.0,3.0,1.0,3.0 L81118,71.0,90.0,85.0,114.0,104.0,94.0,114.0,128.0,121.0,124.0,125.0,117.0,139.0,125.0,127.0,130.0,105.0,119.0,103.0,123.0,185.0,188.0,192.0,152.0,206.0,194.0,212.0,203.0,201.0,211.0,200.0,200.0,201.0,185.0,190.0,214.0,159.0,194.0,186.0,190.0,154.0,155.0,165.0,172.0,168.0,144.0,152.0,128.0,127.0,130.0,121.0,117.0,124.0,114.0,127.0,104.0,114.0,130.0,121.0,110.0,105.0,106.0,108.0,97.0,106.0,78.0,102.0,91.0,87.0,45.0,70.0,57.0,78.0,47.0,65.0,51.0,51.0,49.0,54.0,39.0,41.0,33.0,39.0,26.0,25.0,21.0,22.0,17.0,31.0,17.0,13.0,9.0,6.0,5.0,6.0,10.0 L81120,50.0,63.0,66.0,61.0,66.0,51.0,62.0,40.0,49.0,55.0,50.0,42.0,45.0,36.0,48.0,29.0,51.0,40.0,44.0,33.0,35.0,42.0,43.0,47.0,79.0,56.0,53.0,84.0,87.0,84.0,102.0,93.0,104.0,122.0,91.0,112.0,123.0,116.0,127.0,110.0,104.0,97.0,89.0,85.0,88.0,85.0,78.0,50.0,49.0,61.0,50.0,49.0,55.0,54.0,48.0,51.0,34.0,47.0,54.0,47.0,52.0,42.0,45.0,41.0,38.0,39.0,36.0,32.0,34.0,22.0,34.0,33.0,24.0,21.0,19.0,17.0,25.0,25.0,20.0,23.0,11.0,23.0,8.0,13.0,4.0,13.0,9.0,7.0,9.0,4.0,4.0,7.0,1.0,,1.0, L81125,61.0,53.0,49.0,58.0,55.0,44.0,45.0,52.0,51.0,46.0,53.0,48.0,44.0,42.0,32.0,42.0,37.0,47.0,48.0,39.0,48.0,40.0,45.0,66.0,51.0,62.0,81.0,87.0,74.0,90.0,123.0,115.0,137.0,106.0,109.0,123.0,109.0,133.0,97.0,106.0,130.0,112.0,96.0,87.0,89.0,89.0,71.0,88.0,73.0,79.0,77.0,66.0,56.0,67.0,69.0,49.0,66.0,51.0,51.0,49.0,50.0,40.0,39.0,41.0,44.0,38.0,36.0,34.0,28.0,31.0,30.0,29.0,26.0,23.0,19.0,31.0,15.0,20.0,14.0,21.0,14.0,16.0,16.0,9.0,7.0,9.0,7.0,6.0,9.0,5.0,2.0,5.0,2.0,1.0,, L81127,26.0,31.0,39.0,39.0,27.0,36.0,41.0,32.0,28.0,25.0,43.0,35.0,30.0,35.0,45.0,35.0,36.0,39.0,40.0,36.0,21.0,32.0,24.0,37.0,28.0,24.0,28.0,35.0,31.0,24.0,30.0,31.0,34.0,32.0,35.0,35.0,45.0,32.0,37.0,33.0,39.0,54.0,33.0,43.0,36.0,43.0,44.0,43.0,35.0,40.0,38.0,35.0,46.0,51.0,36.0,39.0,45.0,33.0,43.0,44.0,48.0,53.0,31.0,36.0,34.0,36.0,35.0,39.0,25.0,36.0,28.0,21.0,24.0,30.0,22.0,27.0,26.0,20.0,20.0,19.0,32.0,21.0,24.0,12.0,11.0,13.0,19.0,9.0,15.0,5.0,9.0,4.0,1.0,3.0,3.0,8.0 L81130,86.0,82.0,86.0,91.0,87.0,78.0,86.0,81.0,75.0,76.0,77.0,61.0,69.0,74.0,74.0,83.0,62.0,85.0,78.0,62.0,72.0,78.0,69.0,63.0,82.0,82.0,94.0,86.0,89.0,112.0,110.0,111.0,104.0,98.0,126.0,114.0,104.0,92.0,95.0,91.0,87.0,82.0,77.0,82.0,79.0,74.0,71.0,69.0,65.0,62.0,61.0,72.0,61.0,88.0,81.0,79.0,77.0,78.0,83.0,92.0,85.0,78.0,82.0,80.0,70.0,70.0,81.0,64.0,73.0,55.0,74.0,65.0,46.0,55.0,44.0,43.0,35.0,53.0,53.0,19.0,43.0,26.0,40.0,21.0,15.0,15.0,18.0,17.0,14.0,7.0,9.0,7.0,8.0,3.0,3.0,7.0 L81131,25.0,38.0,36.0,37.0,46.0,51.0,56.0,54.0,74.0,85.0,93.0,92.0,88.0,95.0,100.0,77.0,81.0,87.0,89.0,93.0,74.0,65.0,52.0,55.0,62.0,62.0,77.0,65.0,57.0,78.0,67.0,65.0,80.0,56.0,64.0,71.0,59.0,55.0,51.0,69.0,71.0,58.0,57.0,56.0,80.0,78.0,89.0,79.0,74.0,63.0,80.0,85.0,69.0,103.0,65.0,87.0,69.0,77.0,87.0,89.0,83.0,90.0,67.0,69.0,68.0,66.0,68.0,59.0,48.0,49.0,48.0,60.0,59.0,54.0,41.0,42.0,52.0,66.0,57.0,47.0,40.0,35.0,27.0,21.0,25.0,15.0,20.0,18.0,14.0,16.0,11.0,12.0,13.0,10.0,9.0,13.0 L81133,,1.0,1.0,1.0,1.0,1.0,2.0,1.0,2.0,,3.0,1.0,2.0,2.0,1.0,,,17.0,341.0,835.0,1236.0,1263.0,1011.0,670.0,540.0,333.0,316.0,312.0,278.0,260.0,162.0,136.0,88.0,66.0,51.0,38.0,25.0,17.0,15.0,11.0,21.0,12.0,8.0,6.0,3.0,3.0,1.0,,1.0,1.0,2.0,,,,,,2.0,,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, L81600,53.0,57.0,48.0,78.0,52.0,70.0,76.0,60.0,81.0,76.0,75.0,66.0,83.0,99.0,84.0,103.0,90.0,73.0,90.0,55.0,48.0,53.0,58.0,57.0,45.0,42.0,63.0,63.0,56.0,63.0,85.0,54.0,70.0,56.0,65.0,60.0,79.0,75.0,82.0,78.0,82.0,66.0,78.0,96.0,89.0,83.0,94.0,87.0,96.0,94.0,80.0,97.0,109.0,98.0,101.0,88.0,87.0,79.0,70.0,77.0,91.0,77.0,72.0,64.0,67.0,72.0,53.0,59.0,40.0,44.0,38.0,46.0,40.0,34.0,44.0,36.0,31.0,40.0,40.0,31.0,31.0,29.0,28.0,26.0,22.0,14.0,18.0,13.0,7.0,8.0,6.0,11.0,5.0,2.0,4.0,8.0 L81632,52.0,63.0,65.0,85.0,73.0,76.0,87.0,99.0,103.0,93.0,92.0,91.0,95.0,97.0,91.0,102.0,90.0,77.0,77.0,73.0,79.0,52.0,59.0,53.0,67.0,70.0,55.0,61.0,64.0,86.0,67.0,75.0,80.0,88.0,80.0,94.0,91.0,94.0,79.0,74.0,93.0,99.0,97.0,98.0,98.0,86.0,81.0,96.0,83.0,83.0,93.0,104.0,80.0,96.0,89.0,88.0,67.0,76.0,59.0,64.0,68.0,60.0,59.0,41.0,40.0,55.0,44.0,36.0,28.0,43.0,30.0,27.0,21.0,29.0,19.0,23.0,28.0,32.0,30.0,21.0,16.0,15.0,12.0,17.0,12.0,6.0,10.0,6.0,5.0,10.0,5.0,3.0,1.0,3.0,,4.0 L81642,40.0,46.0,38.0,55.0,40.0,32.0,45.0,43.0,28.0,41.0,23.0,33.0,37.0,31.0,27.0,25.0,24.0,21.0,19.0,18.0,29.0,20.0,25.0,20.0,32.0,22.0,36.0,53.0,41.0,45.0,55.0,67.0,66.0,53.0,59.0,57.0,49.0,64.0,51.0,45.0,37.0,31.0,38.0,36.0,27.0,33.0,31.0,26.0,25.0,38.0,26.0,25.0,28.0,28.0,24.0,33.0,38.0,36.0,28.0,37.0,40.0,31.0,33.0,37.0,29.0,29.0,35.0,34.0,23.0,19.0,20.0,27.0,16.0,17.0,15.0,18.0,19.0,19.0,20.0,14.0,18.0,18.0,8.0,13.0,7.0,19.0,8.0,11.0,7.0,4.0,6.0,5.0,1.0,3.0,,4.0 L81643,74.0,61.0,77.0,83.0,88.0,81.0,83.0,72.0,105.0,94.0,98.0,105.0,109.0,117.0,86.0,97.0,101.0,114.0,97.0,100.0,93.0,85.0,78.0,81.0,86.0,99.0,78.0,105.0,96.0,102.0,106.0,96.0,96.0,93.0,131.0,114.0,114.0,97.0,102.0,125.0,85.0,106.0,100.0,109.0,106.0,107.0,107.0,86.0,95.0,83.0,97.0,121.0,105.0,136.0,97.0,119.0,149.0,110.0,120.0,125.0,121.0,127.0,103.0,89.0,85.0,93.0,103.0,109.0,95.0,83.0,83.0,82.0,83.0,83.0,97.0,90.0,90.0,109.0,100.0,74.0,70.0,57.0,56.0,42.0,45.0,29.0,30.0,32.0,35.0,21.0,15.0,13.0,10.0,9.0,2.0,14.0 L81649,77.0,64.0,90.0,90.0,100.0,117.0,126.0,136.0,146.0,133.0,132.0,135.0,161.0,134.0,132.0,151.0,140.0,150.0,146.0,95.0,98.0,109.0,90.0,99.0,100.0,107.0,136.0,139.0,153.0,152.0,154.0,147.0,163.0,169.0,176.0,168.0,179.0,182.0,191.0,213.0,197.0,214.0,208.0,177.0,194.0,174.0,165.0,203.0,144.0,153.0,150.0,143.0,133.0,135.0,147.0,139.0,127.0,119.0,136.0,117.0,122.0,95.0,91.0,88.0,83.0,59.0,60.0,42.0,57.0,45.0,33.0,47.0,36.0,33.0,27.0,28.0,23.0,30.0,24.0,23.0,26.0,20.0,25.0,12.0,20.0,10.0,4.0,7.0,9.0,3.0,2.0,6.0,5.0,1.0,1.0,4.0 L81669,120.0,173.0,189.0,169.0,200.0,212.0,216.0,221.0,240.0,231.0,211.0,222.0,263.0,265.0,217.0,252.0,216.0,239.0,256.0,208.0,206.0,195.0,208.0,225.0,247.0,256.0,292.0,290.0,285.0,306.0,304.0,313.0,310.0,341.0,367.0,376.0,374.0,341.0,326.0,363.0,347.0,328.0,366.0,294.0,296.0,303.0,232.0,256.0,269.0,251.0,257.0,212.0,250.0,245.0,224.0,248.0,212.0,239.0,203.0,210.0,231.0,187.0,210.0,204.0,171.0,180.0,144.0,162.0,149.0,127.0,128.0,124.0,111.0,106.0,131.0,102.0,135.0,127.0,100.0,88.0,86.0,75.0,70.0,80.0,65.0,53.0,57.0,39.0,32.0,31.0,25.0,25.0,27.0,19.0,15.0,34.0 L81670,25.0,36.0,42.0,42.0,43.0,50.0,54.0,47.0,50.0,49.0,56.0,44.0,49.0,46.0,49.0,57.0,52.0,45.0,43.0,37.0,38.0,36.0,34.0,31.0,39.0,38.0,36.0,34.0,33.0,34.0,45.0,48.0,31.0,45.0,42.0,45.0,53.0,34.0,49.0,35.0,41.0,50.0,40.0,37.0,43.0,34.0,25.0,26.0,29.0,33.0,37.0,34.0,35.0,27.0,40.0,28.0,40.0,38.0,32.0,34.0,31.0,20.0,31.0,24.0,30.0,17.0,21.0,21.0,14.0,16.0,14.0,11.0,17.0,19.0,12.0,9.0,17.0,10.0,16.0,5.0,7.0,4.0,9.0,5.0,7.0,2.0,3.0,3.0,2.0,2.0,2.0,,1.0,,, Y02578,25.0,28.0,19.0,24.0,20.0,26.0,24.0,25.0,18.0,20.0,13.0,26.0,18.0,15.0,18.0,14.0,13.0,12.0,53.0,103.0,148.0,176.0,209.0,231.0,274.0,284.0,254.0,332.0,266.0,251.0,254.0,254.0,266.0,281.0,221.0,232.0,203.0,190.0,173.0,184.0,154.0,132.0,107.0,108.0,80.0,72.0,69.0,54.0,47.0,32.0,37.0,28.0,35.0,30.0,20.0,29.0,30.0,26.0,22.0,26.0,23.0,27.0,20.0,19.0,18.0,16.0,16.0,11.0,12.0,12.0,13.0,3.0,5.0,6.0,6.0,6.0,3.0,5.0,2.0,1.0,4.0,1.0,2.0,1.0,,2.0,1.0,,1.0,1.0,,,,,1.0,1.0 Y02873,,,,,,,,,,,,,,,,,,,,,,,,,,,2.0,,1.0,,1.0,,2.0,2.0,,,2.0,1.0,1.0,2.0,1.0,2.0,2.0,2.0,3.0,3.0,1.0,1.0,1.0,3.0,2.0,,3.0,,4.0,1.0,,,2.0,,,,2.0,1.0,1.0,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 J81002,16.0,26.0,23.0,19.0,19.0,25.0,24.0,27.0,23.0,35.0,35.0,31.0,39.0,34.0,48.0,35.0,37.0,33.0,38.0,29.0,33.0,34.0,39.0,32.0,39.0,42.0,35.0,25.0,42.0,28.0,25.0,43.0,35.0,38.0,31.0,39.0,34.0,33.0,25.0,42.0,32.0,39.0,31.0,55.0,45.0,49.0,45.0,36.0,19.0,44.0,39.0,42.0,46.0,40.0,45.0,52.0,58.0,63.0,58.0,69.0,64.0,53.0,58.0,59.0,69.0,60.0,67.0,74.0,63.0,54.0,64.0,57.0,63.0,70.0,69.0,71.0,85.0,97.0,76.0,64.0,68.0,51.0,64.0,39.0,45.0,33.0,46.0,29.0,43.0,24.0,25.0,27.0,17.0,12.0,8.0,16.0 J81006,153.0,143.0,183.0,198.0,211.0,190.0,236.0,214.0,241.0,237.0,231.0,201.0,228.0,254.0,273.0,251.0,223.0,248.0,223.0,192.0,217.0,188.0,187.0,180.0,191.0,209.0,214.0,222.0,226.0,213.0,256.0,268.0,258.0,269.0,289.0,278.0,256.0,246.0,261.0,258.0,244.0,272.0,266.0,271.0,280.0,252.0,232.0,196.0,217.0,240.0,248.0,214.0,237.0,262.0,266.0,269.0,245.0,310.0,258.0,263.0,260.0,271.0,281.0,284.0,266.0,224.0,237.0,218.0,228.0,200.0,210.0,189.0,179.0,201.0,173.0,192.0,192.0,215.0,204.0,161.0,148.0,150.0,157.0,90.0,98.0,94.0,74.0,63.0,52.0,47.0,39.0,35.0,26.0,15.0,21.0,26.0 J81009,42.0,48.0,40.0,44.0,41.0,58.0,70.0,68.0,68.0,74.0,59.0,74.0,73.0,75.0,77.0,69.0,63.0,84.0,61.0,66.0,68.0,58.0,64.0,57.0,57.0,53.0,52.0,71.0,79.0,66.0,69.0,72.0,84.0,55.0,85.0,77.0,70.0,75.0,76.0,85.0,69.0,54.0,66.0,73.0,65.0,63.0,67.0,71.0,75.0,55.0,65.0,79.0,70.0,77.0,93.0,81.0,96.0,103.0,99.0,98.0,115.0,110.0,113.0,95.0,110.0,93.0,74.0,112.0,86.0,73.0,72.0,69.0,84.0,78.0,58.0,85.0,56.0,75.0,74.0,62.0,55.0,41.0,48.0,28.0,20.0,16.0,24.0,27.0,15.0,16.0,8.0,7.0,4.0,5.0,3.0,3.0 J81010,24.0,24.0,24.0,47.0,29.0,29.0,33.0,43.0,36.0,41.0,35.0,64.0,50.0,49.0,45.0,48.0,51.0,48.0,53.0,35.0,48.0,45.0,45.0,34.0,35.0,38.0,47.0,53.0,55.0,46.0,50.0,58.0,45.0,45.0,68.0,60.0,56.0,60.0,50.0,63.0,50.0,54.0,44.0,63.0,72.0,49.0,49.0,46.0,50.0,44.0,57.0,51.0,60.0,70.0,73.0,61.0,69.0,67.0,75.0,97.0,84.0,91.0,105.0,87.0,109.0,79.0,82.0,87.0,83.0,93.0,81.0,93.0,91.0,80.0,82.0,105.0,65.0,94.0,100.0,79.0,67.0,55.0,62.0,42.0,28.0,43.0,35.0,31.0,24.0,18.0,21.0,16.0,9.0,12.0,12.0,16.0 J81011,14.0,18.0,37.0,24.0,41.0,26.0,33.0,37.0,34.0,50.0,45.0,36.0,44.0,45.0,43.0,41.0,27.0,36.0,35.0,37.0,33.0,37.0,33.0,29.0,33.0,44.0,47.0,34.0,35.0,36.0,38.0,29.0,42.0,28.0,38.0,28.0,38.0,35.0,44.0,44.0,36.0,40.0,31.0,40.0,44.0,38.0,44.0,45.0,40.0,33.0,52.0,44.0,49.0,57.0,48.0,59.0,65.0,38.0,64.0,64.0,53.0,58.0,74.0,56.0,55.0,67.0,67.0,56.0,70.0,57.0,64.0,57.0,58.0,45.0,44.0,67.0,70.0,58.0,79.0,45.0,59.0,47.0,47.0,39.0,25.0,27.0,23.0,15.0,19.0,13.0,14.0,10.0,9.0,5.0,5.0,9.0 J81012,200.0,227.0,222.0,232.0,264.0,261.0,291.0,323.0,324.0,341.0,312.0,324.0,333.0,360.0,354.0,328.0,357.0,305.0,305.0,292.0,263.0,271.0,277.0,255.0,297.0,306.0,296.0,332.0,340.0,376.0,384.0,410.0,420.0,432.0,440.0,475.0,486.0,457.0,482.0,439.0,436.0,485.0,493.0,487.0,444.0,474.0,488.0,394.0,405.0,372.0,420.0,375.0,421.0,421.0,442.0,418.0,471.0,423.0,383.0,432.0,409.0,435.0,350.0,394.0,359.0,344.0,320.0,314.0,279.0,280.0,264.0,264.0,262.0,277.0,263.0,233.0,264.0,310.0,282.0,219.0,220.0,202.0,162.0,146.0,136.0,121.0,138.0,101.0,110.0,84.0,70.0,49.0,46.0,36.0,31.0,60.0 J81013,34.0,32.0,48.0,56.0,53.0,54.0,71.0,78.0,79.0,78.0,90.0,67.0,85.0,83.0,102.0,66.0,83.0,83.0,74.0,72.0,65.0,66.0,56.0,47.0,66.0,54.0,44.0,57.0,66.0,63.0,68.0,60.0,72.0,73.0,99.0,74.0,92.0,89.0,104.0,84.0,86.0,89.0,84.0,84.0,92.0,89.0,68.0,72.0,75.0,91.0,70.0,65.0,83.0,66.0,74.0,77.0,82.0,89.0,85.0,78.0,86.0,91.0,87.0,76.0,87.0,83.0,71.0,73.0,73.0,50.0,68.0,58.0,60.0,53.0,56.0,50.0,52.0,52.0,79.0,42.0,31.0,43.0,32.0,31.0,20.0,26.0,23.0,16.0,13.0,14.0,8.0,8.0,8.0,2.0,3.0,5.0 J81014,90.0,96.0,79.0,92.0,91.0,85.0,81.0,79.0,83.0,72.0,83.0,73.0,71.0,71.0,58.0,63.0,78.0,48.0,50.0,48.0,57.0,60.0,83.0,81.0,93.0,100.0,137.0,156.0,114.0,154.0,153.0,164.0,203.0,172.0,183.0,178.0,164.0,158.0,188.0,171.0,163.0,175.0,169.0,175.0,152.0,170.0,139.0,149.0,134.0,135.0,132.0,133.0,130.0,142.0,143.0,120.0,128.0,133.0,144.0,127.0,151.0,151.0,126.0,162.0,133.0,116.0,148.0,122.0,124.0,127.0,121.0,122.0,97.0,127.0,109.0,121.0,112.0,114.0,136.0,108.0,95.0,91.0,78.0,81.0,72.0,53.0,44.0,57.0,54.0,43.0,43.0,37.0,20.0,13.0,16.0,29.0 J81016,33.0,40.0,20.0,34.0,33.0,44.0,44.0,39.0,48.0,50.0,47.0,38.0,49.0,49.0,46.0,53.0,50.0,52.0,36.0,42.0,34.0,34.0,39.0,41.0,44.0,59.0,42.0,48.0,52.0,54.0,45.0,37.0,41.0,62.0,55.0,50.0,67.0,54.0,45.0,48.0,46.0,36.0,57.0,42.0,48.0,57.0,48.0,42.0,54.0,55.0,65.0,69.0,55.0,55.0,50.0,58.0,69.0,61.0,54.0,57.0,64.0,70.0,52.0,70.0,65.0,59.0,59.0,42.0,44.0,48.0,48.0,45.0,50.0,39.0,49.0,52.0,52.0,55.0,51.0,37.0,40.0,49.0,33.0,27.0,22.0,18.0,14.0,19.0,18.0,14.0,11.0,13.0,8.0,4.0,4.0,13.0 J81017,11.0,7.0,19.0,9.0,16.0,17.0,18.0,11.0,23.0,20.0,21.0,24.0,23.0,67.0,128.0,129.0,124.0,155.0,102.0,31.0,18.0,10.0,19.0,16.0,15.0,14.0,16.0,14.0,16.0,15.0,19.0,22.0,17.0,13.0,18.0,17.0,16.0,21.0,20.0,29.0,14.0,18.0,17.0,17.0,17.0,16.0,21.0,17.0,26.0,26.0,13.0,17.0,21.0,23.0,27.0,29.0,26.0,28.0,33.0,28.0,35.0,38.0,26.0,42.0,36.0,34.0,34.0,37.0,36.0,42.0,30.0,35.0,33.0,29.0,29.0,33.0,34.0,31.0,38.0,30.0,32.0,21.0,19.0,22.0,22.0,11.0,12.0,13.0,12.0,7.0,7.0,3.0,4.0,2.0,2.0,4.0 J81018,48.0,53.0,61.0,54.0,56.0,46.0,52.0,68.0,56.0,55.0,63.0,72.0,62.0,84.0,75.0,72.0,70.0,81.0,60.0,54.0,45.0,61.0,47.0,52.0,66.0,64.0,61.0,63.0,61.0,72.0,57.0,75.0,75.0,83.0,79.0,71.0,76.0,84.0,81.0,98.0,82.0,104.0,113.0,84.0,87.0,108.0,90.0,88.0,86.0,98.0,79.0,94.0,88.0,60.0,95.0,74.0,85.0,91.0,81.0,65.0,78.0,69.0,72.0,82.0,62.0,56.0,51.0,51.0,52.0,47.0,59.0,54.0,59.0,47.0,51.0,58.0,66.0,52.0,51.0,39.0,35.0,30.0,31.0,25.0,18.0,26.0,24.0,17.0,14.0,16.0,12.0,7.0,6.0,9.0,5.0,14.0 J81019,88.0,90.0,103.0,98.0,117.0,114.0,118.0,118.0,121.0,149.0,144.0,122.0,141.0,171.0,129.0,143.0,141.0,131.0,118.0,108.0,107.0,96.0,112.0,97.0,89.0,92.0,82.0,93.0,110.0,115.0,107.0,117.0,107.0,116.0,131.0,124.0,112.0,125.0,130.0,114.0,136.0,131.0,113.0,137.0,146.0,127.0,136.0,132.0,135.0,133.0,133.0,136.0,155.0,147.0,142.0,185.0,141.0,175.0,168.0,177.0,192.0,175.0,174.0,175.0,162.0,142.0,179.0,151.0,148.0,145.0,149.0,125.0,150.0,145.0,130.0,137.0,140.0,165.0,161.0,122.0,127.0,100.0,96.0,70.0,72.0,64.0,51.0,50.0,46.0,27.0,28.0,19.0,13.0,18.0,9.0,27.0 J81020,10.0,15.0,9.0,18.0,20.0,14.0,28.0,25.0,21.0,23.0,16.0,16.0,22.0,24.0,17.0,19.0,28.0,24.0,24.0,17.0,21.0,20.0,15.0,11.0,17.0,18.0,19.0,14.0,20.0,12.0,21.0,12.0,15.0,20.0,22.0,20.0,21.0,20.0,17.0,25.0,14.0,24.0,22.0,22.0,18.0,27.0,16.0,12.0,18.0,28.0,22.0,22.0,18.0,16.0,27.0,35.0,27.0,23.0,41.0,37.0,31.0,40.0,42.0,31.0,31.0,38.0,17.0,25.0,33.0,19.0,26.0,23.0,19.0,28.0,25.0,26.0,27.0,23.0,26.0,16.0,21.0,21.0,19.0,6.0,9.0,9.0,13.0,6.0,5.0,6.0,5.0,3.0,3.0,3.0,1.0,1.0 J81021,86.0,113.0,96.0,130.0,114.0,109.0,121.0,121.0,148.0,146.0,144.0,157.0,134.0,131.0,136.0,125.0,130.0,130.0,103.0,119.0,113.0,124.0,151.0,154.0,156.0,191.0,194.0,227.0,229.0,249.0,232.0,245.0,256.0,272.0,281.0,286.0,285.0,306.0,308.0,285.0,296.0,308.0,319.0,296.0,305.0,274.0,289.0,223.0,249.0,229.0,226.0,211.0,201.0,176.0,199.0,180.0,177.0,183.0,173.0,177.0,198.0,153.0,153.0,166.0,158.0,127.0,114.0,111.0,122.0,115.0,86.0,122.0,96.0,73.0,85.0,84.0,72.0,77.0,75.0,58.0,60.0,41.0,47.0,27.0,27.0,34.0,33.0,33.0,17.0,27.0,18.0,19.0,11.0,7.0,5.0,8.0 J81022,13.0,15.0,22.0,15.0,22.0,19.0,18.0,21.0,24.0,14.0,19.0,26.0,18.0,23.0,15.0,19.0,16.0,20.0,15.0,11.0,21.0,18.0,21.0,17.0,19.0,29.0,22.0,20.0,22.0,20.0,21.0,21.0,21.0,18.0,22.0,18.0,22.0,27.0,25.0,28.0,27.0,21.0,22.0,24.0,20.0,11.0,23.0,20.0,19.0,26.0,23.0,27.0,22.0,32.0,41.0,44.0,32.0,38.0,29.0,45.0,38.0,38.0,38.0,46.0,46.0,34.0,50.0,48.0,42.0,34.0,47.0,44.0,40.0,38.0,47.0,42.0,47.0,46.0,63.0,40.0,51.0,57.0,40.0,29.0,32.0,33.0,20.0,35.0,18.0,10.0,16.0,8.0,12.0,6.0,4.0,14.0 J81025,24.0,20.0,29.0,24.0,23.0,40.0,32.0,28.0,35.0,39.0,48.0,34.0,42.0,36.0,45.0,46.0,35.0,47.0,25.0,26.0,28.0,24.0,34.0,29.0,34.0,24.0,24.0,23.0,33.0,27.0,37.0,39.0,33.0,33.0,39.0,28.0,29.0,37.0,30.0,22.0,31.0,29.0,23.0,22.0,30.0,47.0,27.0,23.0,40.0,38.0,34.0,34.0,30.0,41.0,53.0,36.0,49.0,39.0,44.0,44.0,43.0,47.0,48.0,58.0,55.0,46.0,49.0,43.0,46.0,34.0,26.0,38.0,26.0,30.0,33.0,34.0,30.0,48.0,46.0,25.0,35.0,26.0,20.0,20.0,16.0,15.0,24.0,5.0,6.0,10.0,6.0,4.0,3.0,3.0,2.0,3.0 J81027,79.0,72.0,71.0,79.0,87.0,107.0,79.0,108.0,98.0,106.0,132.0,123.0,138.0,127.0,141.0,108.0,126.0,132.0,103.0,124.0,110.0,123.0,109.0,113.0,109.0,109.0,138.0,139.0,136.0,138.0,152.0,151.0,157.0,157.0,181.0,145.0,153.0,158.0,166.0,181.0,162.0,170.0,147.0,147.0,176.0,161.0,171.0,138.0,134.0,146.0,176.0,160.0,180.0,185.0,185.0,205.0,204.0,206.0,202.0,208.0,212.0,241.0,222.0,218.0,209.0,202.0,183.0,171.0,207.0,184.0,183.0,193.0,150.0,184.0,174.0,167.0,193.0,183.0,191.0,144.0,148.0,114.0,123.0,77.0,91.0,71.0,75.0,63.0,44.0,35.0,43.0,31.0,24.0,22.0,23.0,35.0 J81028,33.0,47.0,46.0,62.0,67.0,59.0,57.0,61.0,59.0,67.0,57.0,69.0,85.0,80.0,70.0,69.0,55.0,72.0,57.0,56.0,54.0,45.0,43.0,49.0,37.0,38.0,52.0,64.0,56.0,63.0,60.0,63.0,51.0,69.0,64.0,51.0,68.0,78.0,70.0,65.0,61.0,67.0,60.0,72.0,88.0,80.0,70.0,73.0,66.0,67.0,67.0,67.0,81.0,70.0,99.0,89.0,96.0,99.0,113.0,112.0,128.0,104.0,90.0,104.0,120.0,119.0,128.0,98.0,114.0,101.0,99.0,103.0,125.0,97.0,125.0,118.0,123.0,135.0,154.0,124.0,130.0,111.0,101.0,61.0,52.0,55.0,53.0,60.0,52.0,44.0,36.0,37.0,25.0,18.0,13.0,21.0 J81029,9.0,12.0,15.0,14.0,16.0,19.0,15.0,17.0,20.0,21.0,28.0,24.0,19.0,35.0,29.0,26.0,34.0,33.0,22.0,26.0,16.0,16.0,16.0,19.0,17.0,22.0,26.0,23.0,17.0,28.0,16.0,23.0,28.0,21.0,13.0,20.0,18.0,25.0,27.0,33.0,19.0,15.0,17.0,18.0,19.0,22.0,22.0,23.0,19.0,23.0,28.0,33.0,38.0,39.0,33.0,38.0,33.0,38.0,36.0,42.0,49.0,53.0,46.0,48.0,39.0,44.0,49.0,47.0,51.0,43.0,47.0,39.0,43.0,39.0,30.0,44.0,39.0,52.0,49.0,38.0,41.0,26.0,45.0,36.0,19.0,20.0,23.0,21.0,17.0,13.0,14.0,5.0,5.0,5.0,1.0,8.0 J81030,31.0,33.0,29.0,34.0,27.0,27.0,30.0,49.0,30.0,59.0,34.0,45.0,37.0,38.0,46.0,40.0,39.0,51.0,45.0,27.0,34.0,29.0,37.0,39.0,35.0,30.0,32.0,41.0,40.0,38.0,42.0,40.0,35.0,49.0,51.0,40.0,52.0,51.0,54.0,54.0,41.0,37.0,45.0,52.0,42.0,47.0,28.0,50.0,42.0,40.0,40.0,57.0,44.0,66.0,50.0,50.0,60.0,57.0,58.0,47.0,51.0,65.0,63.0,61.0,55.0,51.0,48.0,58.0,57.0,59.0,41.0,42.0,54.0,48.0,41.0,46.0,43.0,59.0,75.0,38.0,36.0,40.0,30.0,32.0,23.0,25.0,23.0,24.0,15.0,20.0,15.0,13.0,10.0,4.0,2.0,10.0 J81033,43.0,72.0,82.0,75.0,89.0,105.0,85.0,98.0,102.0,99.0,87.0,109.0,95.0,106.0,100.0,83.0,114.0,114.0,224.0,486.0,699.0,760.0,534.0,423.0,362.0,343.0,361.0,381.0,272.0,253.0,244.0,178.0,168.0,174.0,165.0,158.0,140.0,152.0,143.0,130.0,131.0,133.0,114.0,132.0,128.0,128.0,117.0,102.0,121.0,112.0,95.0,114.0,107.0,117.0,114.0,107.0,113.0,115.0,98.0,112.0,80.0,108.0,97.0,96.0,103.0,97.0,91.0,91.0,98.0,77.0,87.0,86.0,68.0,60.0,69.0,65.0,81.0,69.0,71.0,68.0,57.0,57.0,45.0,33.0,33.0,30.0,25.0,32.0,24.0,24.0,20.0,15.0,6.0,6.0,5.0,11.0 J81034,54.0,80.0,59.0,76.0,78.0,80.0,76.0,75.0,92.0,68.0,88.0,84.0,98.0,145.0,194.0,219.0,226.0,234.0,179.0,78.0,83.0,66.0,67.0,79.0,78.0,62.0,76.0,78.0,74.0,80.0,74.0,81.0,102.0,100.0,89.0,94.0,95.0,120.0,91.0,98.0,84.0,93.0,96.0,112.0,97.0,110.0,114.0,91.0,93.0,100.0,85.0,113.0,99.0,116.0,108.0,112.0,123.0,125.0,110.0,126.0,121.0,135.0,117.0,119.0,90.0,105.0,103.0,97.0,101.0,100.0,79.0,100.0,87.0,100.0,99.0,91.0,115.0,115.0,132.0,107.0,90.0,91.0,90.0,58.0,52.0,52.0,39.0,53.0,26.0,39.0,34.0,16.0,13.0,12.0,6.0,19.0 J81035,15.0,23.0,14.0,24.0,16.0,15.0,11.0,22.0,26.0,27.0,13.0,24.0,17.0,26.0,33.0,44.0,62.0,65.0,51.0,33.0,18.0,21.0,13.0,11.0,18.0,18.0,24.0,23.0,19.0,10.0,17.0,16.0,22.0,26.0,24.0,18.0,27.0,28.0,17.0,18.0,20.0,23.0,27.0,24.0,25.0,16.0,29.0,20.0,24.0,19.0,22.0,27.0,17.0,33.0,31.0,38.0,39.0,43.0,37.0,43.0,50.0,40.0,53.0,61.0,41.0,40.0,40.0,50.0,33.0,34.0,29.0,39.0,20.0,26.0,32.0,28.0,37.0,38.0,24.0,19.0,25.0,20.0,14.0,14.0,16.0,13.0,7.0,8.0,4.0,6.0,6.0,7.0,3.0,1.0,,4.0 J81036,54.0,45.0,57.0,60.0,55.0,57.0,59.0,45.0,44.0,63.0,51.0,62.0,54.0,48.0,63.0,62.0,51.0,50.0,54.0,39.0,38.0,54.0,32.0,44.0,48.0,71.0,38.0,65.0,67.0,60.0,76.0,71.0,60.0,66.0,77.0,89.0,88.0,67.0,72.0,77.0,79.0,61.0,75.0,69.0,62.0,67.0,54.0,64.0,59.0,66.0,59.0,52.0,51.0,66.0,66.0,62.0,68.0,63.0,68.0,74.0,59.0,63.0,63.0,56.0,41.0,49.0,59.0,49.0,48.0,45.0,42.0,43.0,29.0,33.0,45.0,29.0,40.0,39.0,35.0,27.0,32.0,25.0,20.0,16.0,14.0,20.0,13.0,17.0,12.0,7.0,3.0,4.0,6.0,3.0,2.0,5.0 J81039,40.0,35.0,46.0,63.0,54.0,49.0,65.0,61.0,61.0,75.0,70.0,57.0,72.0,76.0,79.0,65.0,79.0,62.0,65.0,53.0,63.0,48.0,47.0,55.0,41.0,50.0,58.0,44.0,56.0,65.0,50.0,42.0,76.0,53.0,79.0,62.0,74.0,81.0,71.0,79.0,68.0,73.0,89.0,78.0,79.0,71.0,87.0,64.0,82.0,78.0,85.0,78.0,68.0,75.0,64.0,71.0,62.0,64.0,50.0,60.0,59.0,57.0,61.0,54.0,50.0,54.0,55.0,54.0,43.0,42.0,40.0,48.0,34.0,35.0,41.0,39.0,37.0,38.0,35.0,34.0,22.0,26.0,21.0,14.0,18.0,19.0,9.0,17.0,14.0,8.0,7.0,6.0,7.0,5.0,5.0,3.0 J81041,64.0,76.0,82.0,90.0,72.0,111.0,81.0,84.0,116.0,115.0,101.0,98.0,114.0,129.0,120.0,136.0,132.0,120.0,119.0,110.0,116.0,105.0,87.0,100.0,91.0,98.0,81.0,90.0,115.0,83.0,82.0,109.0,103.0,96.0,119.0,110.0,105.0,111.0,107.0,96.0,104.0,100.0,109.0,127.0,144.0,112.0,128.0,103.0,118.0,123.0,110.0,135.0,131.0,152.0,139.0,125.0,145.0,133.0,159.0,144.0,149.0,140.0,167.0,156.0,132.0,144.0,142.0,136.0,121.0,127.0,108.0,118.0,126.0,124.0,114.0,130.0,126.0,123.0,141.0,101.0,111.0,98.0,91.0,48.0,50.0,54.0,61.0,57.0,42.0,44.0,29.0,20.0,20.0,12.0,11.0,22.0 J81042,18.0,24.0,22.0,36.0,34.0,34.0,26.0,32.0,48.0,28.0,44.0,36.0,50.0,53.0,47.0,39.0,44.0,42.0,56.0,67.0,96.0,108.0,102.0,82.0,77.0,78.0,65.0,69.0,61.0,66.0,57.0,63.0,58.0,67.0,53.0,40.0,52.0,57.0,47.0,51.0,48.0,62.0,60.0,52.0,68.0,48.0,53.0,54.0,46.0,49.0,44.0,60.0,51.0,49.0,56.0,54.0,58.0,49.0,59.0,58.0,50.0,51.0,60.0,49.0,48.0,52.0,37.0,52.0,50.0,40.0,35.0,31.0,43.0,31.0,37.0,43.0,31.0,45.0,45.0,29.0,27.0,30.0,21.0,14.0,16.0,13.0,17.0,16.0,12.0,14.0,6.0,3.0,6.0,6.0,3.0,4.0 J81045,34.0,48.0,50.0,49.0,54.0,57.0,47.0,59.0,61.0,72.0,64.0,66.0,79.0,67.0,70.0,73.0,63.0,60.0,61.0,55.0,50.0,49.0,47.0,48.0,59.0,52.0,52.0,72.0,69.0,64.0,59.0,50.0,57.0,68.0,86.0,75.0,69.0,71.0,67.0,64.0,83.0,67.0,69.0,75.0,70.0,67.0,69.0,61.0,49.0,45.0,54.0,62.0,53.0,66.0,77.0,71.0,72.0,74.0,73.0,80.0,70.0,66.0,76.0,60.0,76.0,58.0,73.0,73.0,48.0,63.0,49.0,48.0,67.0,40.0,51.0,55.0,43.0,63.0,50.0,47.0,42.0,35.0,37.0,23.0,18.0,16.0,13.0,22.0,12.0,11.0,8.0,6.0,6.0,4.0,3.0,7.0 J81046,49.0,44.0,47.0,66.0,50.0,59.0,51.0,55.0,64.0,67.0,68.0,76.0,59.0,76.0,70.0,83.0,60.0,70.0,64.0,55.0,63.0,58.0,63.0,58.0,64.0,68.0,70.0,46.0,65.0,57.0,76.0,69.0,68.0,56.0,68.0,69.0,71.0,75.0,69.0,64.0,83.0,72.0,94.0,82.0,79.0,87.0,75.0,74.0,83.0,69.0,72.0,76.0,85.0,92.0,86.0,98.0,76.0,74.0,83.0,98.0,70.0,101.0,98.0,100.0,93.0,83.0,88.0,77.0,91.0,79.0,84.0,85.0,85.0,77.0,72.0,79.0,67.0,106.0,96.0,63.0,71.0,68.0,52.0,36.0,28.0,37.0,35.0,32.0,21.0,34.0,24.0,12.0,13.0,4.0,6.0,13.0 J81047,32.0,55.0,53.0,57.0,63.0,71.0,71.0,83.0,80.0,78.0,95.0,111.0,93.0,109.0,89.0,88.0,85.0,84.0,76.0,75.0,59.0,67.0,54.0,56.0,52.0,62.0,68.0,52.0,75.0,63.0,60.0,71.0,76.0,69.0,69.0,90.0,84.0,86.0,92.0,82.0,92.0,86.0,84.0,111.0,91.0,92.0,77.0,86.0,61.0,71.0,81.0,83.0,75.0,114.0,85.0,78.0,82.0,89.0,87.0,79.0,100.0,73.0,82.0,75.0,82.0,72.0,71.0,67.0,62.0,71.0,58.0,56.0,55.0,48.0,49.0,49.0,45.0,52.0,68.0,44.0,40.0,45.0,28.0,23.0,27.0,22.0,16.0,26.0,20.0,8.0,10.0,6.0,11.0,3.0,3.0,10.0 J81049,23.0,35.0,38.0,47.0,32.0,54.0,31.0,54.0,43.0,42.0,53.0,57.0,64.0,68.0,52.0,45.0,46.0,56.0,42.0,49.0,39.0,32.0,50.0,46.0,50.0,48.0,39.0,42.0,50.0,51.0,45.0,49.0,63.0,56.0,51.0,62.0,63.0,58.0,68.0,54.0,58.0,52.0,65.0,76.0,74.0,82.0,75.0,66.0,74.0,72.0,66.0,82.0,66.0,94.0,56.0,56.0,74.0,66.0,84.0,75.0,70.0,59.0,56.0,75.0,61.0,51.0,60.0,73.0,63.0,58.0,61.0,50.0,58.0,48.0,54.0,58.0,47.0,66.0,54.0,34.0,41.0,44.0,43.0,35.0,26.0,20.0,23.0,23.0,21.0,14.0,17.0,14.0,5.0,7.0,4.0,10.0 J81051,35.0,41.0,39.0,39.0,55.0,51.0,54.0,61.0,64.0,64.0,75.0,77.0,75.0,87.0,78.0,86.0,87.0,82.0,79.0,67.0,81.0,66.0,79.0,70.0,65.0,57.0,77.0,73.0,66.0,69.0,58.0,79.0,71.0,82.0,72.0,76.0,70.0,67.0,65.0,74.0,86.0,73.0,74.0,68.0,76.0,76.0,79.0,66.0,70.0,74.0,70.0,88.0,94.0,91.0,85.0,98.0,116.0,93.0,102.0,85.0,117.0,115.0,101.0,122.0,94.0,95.0,92.0,94.0,77.0,75.0,65.0,72.0,69.0,69.0,56.0,68.0,88.0,67.0,69.0,58.0,66.0,40.0,47.0,35.0,36.0,45.0,23.0,26.0,17.0,17.0,9.0,4.0,8.0,8.0,5.0,12.0 J81053,7.0,6.0,13.0,9.0,19.0,13.0,18.0,14.0,28.0,17.0,15.0,17.0,10.0,20.0,13.0,20.0,25.0,18.0,19.0,16.0,7.0,12.0,15.0,20.0,11.0,15.0,21.0,11.0,18.0,21.0,17.0,24.0,26.0,12.0,10.0,14.0,15.0,9.0,11.0,17.0,24.0,17.0,17.0,11.0,26.0,12.0,16.0,16.0,17.0,16.0,21.0,23.0,30.0,26.0,22.0,31.0,27.0,27.0,38.0,33.0,43.0,40.0,44.0,40.0,41.0,40.0,34.0,47.0,23.0,31.0,36.0,28.0,29.0,32.0,32.0,36.0,39.0,35.0,34.0,43.0,25.0,22.0,25.0,16.0,16.0,17.0,21.0,10.0,11.0,11.0,6.0,3.0,3.0,4.0,1.0,1.0 J81056,38.0,44.0,46.0,49.0,66.0,64.0,76.0,72.0,74.0,77.0,62.0,98.0,82.0,84.0,92.0,91.0,89.0,103.0,87.0,77.0,105.0,81.0,77.0,83.0,93.0,86.0,84.0,76.0,91.0,86.0,87.0,101.0,93.0,105.0,98.0,106.0,94.0,86.0,105.0,82.0,83.0,88.0,81.0,108.0,101.0,104.0,94.0,95.0,77.0,92.0,84.0,99.0,96.0,88.0,114.0,100.0,126.0,106.0,146.0,139.0,154.0,126.0,104.0,150.0,128.0,110.0,111.0,102.0,115.0,101.0,114.0,102.0,107.0,87.0,96.0,106.0,94.0,101.0,116.0,84.0,89.0,75.0,71.0,46.0,49.0,38.0,42.0,53.0,33.0,34.0,23.0,11.0,16.0,14.0,9.0,25.0 J81057,19.0,23.0,21.0,27.0,19.0,19.0,28.0,28.0,27.0,22.0,27.0,36.0,40.0,37.0,28.0,33.0,30.0,34.0,24.0,28.0,19.0,31.0,22.0,24.0,18.0,28.0,24.0,30.0,40.0,33.0,28.0,32.0,31.0,32.0,27.0,32.0,38.0,41.0,33.0,41.0,37.0,30.0,27.0,38.0,50.0,33.0,30.0,33.0,31.0,41.0,29.0,27.0,30.0,46.0,28.0,41.0,52.0,39.0,47.0,38.0,51.0,38.0,41.0,36.0,49.0,45.0,44.0,35.0,35.0,33.0,26.0,29.0,44.0,42.0,44.0,35.0,38.0,46.0,41.0,30.0,41.0,33.0,27.0,31.0,11.0,13.0,17.0,17.0,19.0,12.0,8.0,5.0,7.0,4.0,4.0,16.0 J81058,50.0,58.0,57.0,79.0,54.0,61.0,78.0,64.0,64.0,76.0,60.0,50.0,82.0,89.0,79.0,75.0,76.0,70.0,68.0,59.0,59.0,63.0,60.0,59.0,64.0,61.0,64.0,73.0,89.0,69.0,82.0,74.0,64.0,56.0,73.0,73.0,93.0,79.0,65.0,77.0,97.0,71.0,75.0,59.0,73.0,76.0,68.0,65.0,61.0,71.0,87.0,101.0,80.0,84.0,92.0,95.0,98.0,97.0,104.0,97.0,113.0,99.0,85.0,99.0,108.0,76.0,106.0,84.0,86.0,80.0,66.0,81.0,74.0,67.0,72.0,70.0,47.0,95.0,74.0,43.0,53.0,38.0,53.0,41.0,34.0,27.0,35.0,21.0,24.0,13.0,21.0,9.0,7.0,12.0,5.0,11.0 J81059,30.0,25.0,34.0,52.0,42.0,42.0,50.0,48.0,51.0,55.0,54.0,59.0,67.0,54.0,47.0,53.0,61.0,59.0,53.0,47.0,44.0,51.0,32.0,47.0,52.0,47.0,52.0,47.0,31.0,31.0,35.0,40.0,36.0,49.0,51.0,58.0,52.0,63.0,52.0,50.0,53.0,71.0,71.0,76.0,68.0,67.0,80.0,60.0,69.0,74.0,73.0,70.0,71.0,58.0,74.0,84.0,79.0,68.0,75.0,69.0,62.0,51.0,50.0,66.0,48.0,46.0,50.0,62.0,40.0,40.0,35.0,47.0,33.0,37.0,38.0,35.0,45.0,30.0,45.0,24.0,34.0,25.0,22.0,26.0,21.0,16.0,21.0,17.0,24.0,3.0,12.0,4.0,2.0,3.0,5.0,7.0 J81061,16.0,11.0,14.0,23.0,16.0,23.0,16.0,18.0,16.0,28.0,27.0,34.0,22.0,30.0,27.0,27.0,35.0,24.0,30.0,29.0,27.0,33.0,25.0,25.0,16.0,21.0,35.0,39.0,28.0,31.0,20.0,26.0,35.0,39.0,50.0,38.0,37.0,27.0,32.0,27.0,26.0,30.0,27.0,43.0,37.0,35.0,33.0,27.0,30.0,23.0,32.0,37.0,37.0,49.0,51.0,32.0,37.0,55.0,56.0,41.0,48.0,62.0,54.0,56.0,61.0,55.0,60.0,64.0,52.0,57.0,46.0,72.0,66.0,65.0,59.0,62.0,84.0,103.0,92.0,52.0,78.0,62.0,60.0,40.0,37.0,39.0,32.0,35.0,36.0,21.0,26.0,30.0,15.0,18.0,8.0,20.0 J81062,31.0,47.0,34.0,55.0,47.0,50.0,49.0,52.0,50.0,71.0,70.0,79.0,59.0,77.0,78.0,78.0,76.0,84.0,68.0,52.0,66.0,63.0,50.0,72.0,65.0,65.0,55.0,59.0,54.0,51.0,60.0,54.0,52.0,75.0,68.0,71.0,77.0,70.0,93.0,76.0,94.0,86.0,79.0,86.0,88.0,99.0,76.0,108.0,82.0,82.0,81.0,61.0,90.0,84.0,97.0,77.0,89.0,83.0,85.0,74.0,66.0,81.0,84.0,70.0,59.0,55.0,50.0,48.0,47.0,45.0,37.0,53.0,49.0,46.0,46.0,45.0,49.0,67.0,61.0,43.0,46.0,38.0,32.0,21.0,23.0,24.0,17.0,22.0,17.0,14.0,10.0,9.0,7.0,5.0,1.0,8.0 J81064,15.0,22.0,25.0,18.0,17.0,22.0,22.0,24.0,22.0,25.0,23.0,16.0,22.0,28.0,27.0,24.0,22.0,23.0,20.0,24.0,28.0,24.0,23.0,32.0,35.0,28.0,37.0,35.0,32.0,25.0,46.0,31.0,42.0,47.0,32.0,47.0,41.0,46.0,42.0,32.0,44.0,40.0,41.0,36.0,43.0,33.0,32.0,27.0,32.0,28.0,35.0,29.0,29.0,30.0,37.0,24.0,46.0,30.0,33.0,32.0,31.0,28.0,39.0,26.0,32.0,24.0,42.0,28.0,24.0,27.0,24.0,32.0,20.0,23.0,28.0,25.0,19.0,20.0,40.0,18.0,26.0,20.0,12.0,22.0,15.0,20.0,10.0,9.0,5.0,3.0,6.0,8.0,7.0,3.0,5.0,4.0 J81066,33.0,27.0,35.0,35.0,23.0,58.0,28.0,42.0,55.0,61.0,56.0,68.0,78.0,76.0,78.0,67.0,86.0,53.0,75.0,51.0,59.0,56.0,52.0,52.0,56.0,53.0,48.0,38.0,40.0,53.0,51.0,59.0,41.0,46.0,59.0,51.0,38.0,49.0,57.0,63.0,63.0,47.0,60.0,71.0,49.0,88.0,67.0,67.0,73.0,75.0,78.0,63.0,83.0,90.0,84.0,88.0,72.0,75.0,84.0,72.0,92.0,71.0,71.0,61.0,56.0,59.0,74.0,57.0,62.0,62.0,49.0,51.0,51.0,57.0,50.0,47.0,53.0,75.0,67.0,50.0,62.0,36.0,51.0,50.0,33.0,29.0,27.0,17.0,24.0,19.0,12.0,15.0,6.0,7.0,3.0,10.0 J81067,17.0,20.0,32.0,31.0,43.0,26.0,29.0,41.0,37.0,42.0,36.0,42.0,49.0,44.0,46.0,49.0,41.0,42.0,32.0,22.0,27.0,21.0,28.0,35.0,27.0,28.0,30.0,40.0,36.0,42.0,37.0,37.0,49.0,44.0,35.0,30.0,47.0,43.0,37.0,44.0,53.0,52.0,50.0,49.0,47.0,42.0,50.0,46.0,49.0,47.0,41.0,33.0,46.0,43.0,47.0,29.0,46.0,38.0,35.0,50.0,35.0,42.0,38.0,40.0,31.0,35.0,39.0,23.0,39.0,29.0,18.0,20.0,21.0,23.0,31.0,25.0,27.0,27.0,30.0,18.0,22.0,13.0,22.0,13.0,11.0,9.0,13.0,9.0,3.0,5.0,9.0,3.0,2.0,,4.0,4.0 J81068,24.0,33.0,20.0,31.0,31.0,30.0,29.0,31.0,38.0,33.0,30.0,32.0,36.0,22.0,39.0,37.0,26.0,35.0,35.0,22.0,33.0,31.0,33.0,39.0,30.0,28.0,27.0,45.0,30.0,39.0,40.0,41.0,44.0,42.0,57.0,47.0,36.0,54.0,35.0,44.0,38.0,30.0,31.0,31.0,41.0,55.0,39.0,18.0,33.0,26.0,35.0,39.0,39.0,49.0,43.0,53.0,47.0,37.0,50.0,47.0,52.0,60.0,65.0,53.0,49.0,36.0,49.0,42.0,52.0,35.0,39.0,31.0,43.0,45.0,47.0,45.0,36.0,57.0,51.0,33.0,30.0,32.0,41.0,25.0,25.0,18.0,11.0,13.0,12.0,21.0,9.0,7.0,8.0,7.0,7.0,10.0 J81070,44.0,65.0,63.0,55.0,67.0,63.0,58.0,61.0,64.0,73.0,68.0,71.0,54.0,80.0,64.0,62.0,65.0,65.0,50.0,47.0,68.0,57.0,57.0,60.0,61.0,61.0,62.0,64.0,75.0,79.0,73.0,89.0,87.0,88.0,107.0,111.0,94.0,91.0,101.0,117.0,84.0,84.0,107.0,85.0,90.0,75.0,74.0,86.0,57.0,69.0,73.0,61.0,69.0,84.0,86.0,75.0,72.0,72.0,64.0,78.0,69.0,84.0,77.0,63.0,76.0,68.0,57.0,47.0,63.0,51.0,73.0,62.0,50.0,42.0,54.0,45.0,45.0,47.0,45.0,30.0,39.0,25.0,32.0,21.0,24.0,20.0,23.0,10.0,18.0,12.0,5.0,12.0,3.0,3.0,1.0,10.0 J81072,85.0,61.0,71.0,72.0,95.0,60.0,66.0,69.0,73.0,70.0,68.0,59.0,73.0,96.0,70.0,67.0,71.0,60.0,79.0,146.0,149.0,132.0,134.0,135.0,160.0,172.0,188.0,236.0,245.0,240.0,222.0,231.0,264.0,245.0,230.0,257.0,237.0,233.0,236.0,190.0,210.0,181.0,192.0,185.0,167.0,172.0,166.0,128.0,115.0,114.0,103.0,110.0,101.0,83.0,77.0,78.0,78.0,61.0,90.0,76.0,74.0,62.0,64.0,69.0,74.0,61.0,58.0,45.0,43.0,50.0,38.0,40.0,39.0,38.0,38.0,42.0,31.0,39.0,41.0,39.0,24.0,26.0,42.0,15.0,22.0,23.0,22.0,9.0,13.0,13.0,16.0,5.0,10.0,5.0,8.0,18.0 J81073,54.0,58.0,75.0,69.0,53.0,69.0,87.0,73.0,74.0,80.0,75.0,97.0,80.0,101.0,98.0,119.0,84.0,96.0,101.0,102.0,97.0,84.0,87.0,96.0,79.0,100.0,95.0,89.0,93.0,96.0,102.0,99.0,109.0,114.0,110.0,119.0,110.0,117.0,97.0,108.0,85.0,103.0,109.0,112.0,97.0,123.0,104.0,70.0,77.0,106.0,87.0,106.0,94.0,120.0,144.0,112.0,103.0,102.0,135.0,130.0,118.0,137.0,116.0,113.0,117.0,110.0,109.0,136.0,120.0,100.0,100.0,103.0,107.0,70.0,100.0,94.0,88.0,89.0,97.0,70.0,85.0,64.0,52.0,53.0,29.0,41.0,43.0,34.0,34.0,28.0,22.0,12.0,18.0,12.0,13.0,9.0 J81074,12.0,9.0,17.0,13.0,11.0,15.0,15.0,22.0,14.0,20.0,16.0,21.0,27.0,18.0,22.0,20.0,18.0,30.0,26.0,20.0,29.0,14.0,21.0,22.0,14.0,23.0,20.0,26.0,21.0,17.0,25.0,23.0,17.0,14.0,19.0,15.0,20.0,15.0,17.0,11.0,23.0,18.0,16.0,15.0,11.0,24.0,14.0,21.0,19.0,25.0,20.0,28.0,30.0,24.0,25.0,35.0,32.0,37.0,44.0,40.0,40.0,40.0,46.0,45.0,40.0,45.0,49.0,49.0,48.0,42.0,47.0,54.0,35.0,54.0,51.0,39.0,57.0,33.0,51.0,33.0,27.0,36.0,31.0,20.0,24.0,23.0,16.0,15.0,15.0,12.0,10.0,1.0,4.0,2.0,5.0,5.0 J81075,18.0,21.0,31.0,28.0,31.0,30.0,41.0,34.0,31.0,36.0,31.0,30.0,40.0,26.0,49.0,29.0,37.0,48.0,54.0,29.0,36.0,23.0,34.0,32.0,34.0,36.0,38.0,37.0,57.0,31.0,31.0,51.0,36.0,37.0,42.0,39.0,45.0,44.0,37.0,30.0,55.0,46.0,44.0,46.0,40.0,30.0,44.0,27.0,34.0,34.0,49.0,58.0,48.0,50.0,42.0,53.0,57.0,66.0,75.0,65.0,75.0,56.0,64.0,56.0,45.0,68.0,69.0,73.0,54.0,56.0,50.0,42.0,47.0,61.0,54.0,62.0,57.0,68.0,58.0,43.0,39.0,34.0,34.0,18.0,16.0,12.0,17.0,15.0,12.0,4.0,8.0,7.0,4.0,1.0,3.0,8.0 J81076,66.0,74.0,72.0,103.0,99.0,98.0,96.0,92.0,108.0,113.0,102.0,116.0,126.0,114.0,117.0,116.0,121.0,120.0,114.0,102.0,104.0,108.0,98.0,97.0,91.0,97.0,104.0,81.0,104.0,76.0,126.0,104.0,111.0,113.0,102.0,135.0,117.0,131.0,132.0,127.0,121.0,89.0,115.0,118.0,139.0,120.0,121.0,111.0,118.0,120.0,132.0,109.0,142.0,144.0,141.0,169.0,196.0,147.0,185.0,198.0,179.0,222.0,203.0,201.0,196.0,178.0,211.0,209.0,172.0,187.0,211.0,197.0,186.0,177.0,195.0,177.0,196.0,194.0,209.0,150.0,139.0,130.0,139.0,103.0,80.0,69.0,52.0,53.0,50.0,50.0,27.0,23.0,22.0,19.0,14.0,30.0 J81077,30.0,29.0,30.0,31.0,29.0,26.0,37.0,43.0,43.0,40.0,46.0,42.0,54.0,41.0,43.0,45.0,41.0,38.0,45.0,48.0,36.0,42.0,37.0,47.0,48.0,32.0,33.0,38.0,39.0,48.0,31.0,43.0,32.0,42.0,29.0,39.0,37.0,39.0,38.0,42.0,39.0,44.0,43.0,45.0,44.0,47.0,41.0,38.0,40.0,40.0,47.0,50.0,50.0,50.0,56.0,61.0,59.0,63.0,54.0,65.0,65.0,65.0,54.0,67.0,59.0,53.0,56.0,51.0,51.0,56.0,53.0,48.0,54.0,51.0,49.0,44.0,46.0,58.0,42.0,32.0,29.0,39.0,25.0,23.0,15.0,18.0,12.0,12.0,8.0,12.0,9.0,9.0,4.0,2.0,6.0,6.0 J81078,39.0,35.0,48.0,42.0,50.0,63.0,72.0,54.0,63.0,70.0,74.0,51.0,72.0,75.0,79.0,69.0,68.0,60.0,54.0,46.0,55.0,49.0,76.0,54.0,58.0,53.0,56.0,57.0,61.0,51.0,46.0,49.0,47.0,46.0,62.0,56.0,64.0,66.0,70.0,75.0,61.0,55.0,57.0,60.0,57.0,46.0,66.0,62.0,49.0,59.0,70.0,59.0,70.0,80.0,74.0,83.0,78.0,95.0,88.0,86.0,83.0,88.0,73.0,94.0,85.0,79.0,77.0,78.0,83.0,99.0,82.0,89.0,78.0,85.0,77.0,76.0,82.0,103.0,90.0,65.0,73.0,60.0,66.0,47.0,56.0,36.0,52.0,30.0,35.0,31.0,20.0,16.0,20.0,11.0,11.0,15.0 J81081,51.0,39.0,47.0,62.0,32.0,64.0,77.0,75.0,69.0,58.0,81.0,58.0,89.0,67.0,83.0,81.0,77.0,86.0,72.0,84.0,55.0,66.0,60.0,58.0,55.0,73.0,65.0,61.0,60.0,48.0,72.0,71.0,74.0,64.0,71.0,87.0,71.0,63.0,81.0,69.0,74.0,83.0,65.0,75.0,92.0,85.0,80.0,67.0,80.0,79.0,67.0,89.0,65.0,88.0,92.0,88.0,90.0,90.0,97.0,100.0,93.0,97.0,116.0,86.0,97.0,96.0,86.0,83.0,94.0,76.0,74.0,80.0,70.0,70.0,67.0,71.0,64.0,93.0,87.0,64.0,75.0,42.0,49.0,41.0,37.0,30.0,34.0,22.0,24.0,30.0,17.0,16.0,19.0,3.0,11.0,15.0 J81082,24.0,25.0,39.0,31.0,36.0,40.0,28.0,35.0,37.0,35.0,35.0,50.0,47.0,40.0,35.0,47.0,38.0,45.0,45.0,35.0,39.0,38.0,47.0,38.0,26.0,35.0,41.0,40.0,52.0,45.0,43.0,32.0,43.0,43.0,38.0,49.0,50.0,53.0,40.0,44.0,46.0,37.0,41.0,46.0,31.0,44.0,51.0,38.0,45.0,36.0,44.0,33.0,45.0,43.0,60.0,43.0,55.0,45.0,53.0,75.0,65.0,59.0,61.0,56.0,42.0,63.0,62.0,56.0,48.0,59.0,39.0,47.0,56.0,67.0,48.0,40.0,50.0,53.0,61.0,43.0,40.0,36.0,36.0,29.0,23.0,22.0,25.0,23.0,13.0,10.0,13.0,11.0,3.0,5.0,2.0,10.0 J81086,45.0,28.0,30.0,35.0,49.0,43.0,42.0,43.0,38.0,34.0,38.0,34.0,49.0,51.0,42.0,34.0,41.0,46.0,37.0,36.0,31.0,32.0,34.0,40.0,41.0,33.0,37.0,52.0,39.0,53.0,49.0,62.0,63.0,56.0,69.0,58.0,52.0,63.0,48.0,59.0,56.0,58.0,49.0,49.0,51.0,54.0,39.0,44.0,38.0,52.0,44.0,44.0,39.0,59.0,67.0,59.0,66.0,58.0,57.0,41.0,59.0,58.0,35.0,56.0,47.0,45.0,40.0,38.0,43.0,32.0,30.0,38.0,35.0,23.0,32.0,34.0,37.0,29.0,34.0,23.0,28.0,23.0,14.0,17.0,9.0,9.0,14.0,9.0,11.0,6.0,5.0,7.0,4.0,1.0,3.0,4.0 J81087,57.0,48.0,58.0,63.0,45.0,61.0,55.0,64.0,51.0,59.0,64.0,67.0,56.0,71.0,60.0,55.0,64.0,63.0,54.0,57.0,56.0,43.0,38.0,52.0,53.0,59.0,62.0,54.0,59.0,58.0,59.0,72.0,77.0,68.0,78.0,63.0,73.0,81.0,67.0,83.0,84.0,71.0,83.0,64.0,77.0,56.0,59.0,70.0,63.0,64.0,61.0,52.0,67.0,70.0,82.0,79.0,68.0,67.0,57.0,80.0,78.0,85.0,80.0,70.0,71.0,59.0,77.0,63.0,55.0,61.0,48.0,41.0,60.0,44.0,41.0,35.0,51.0,53.0,57.0,34.0,30.0,23.0,19.0,24.0,18.0,17.0,17.0,12.0,10.0,3.0,13.0,1.0,,4.0,3.0,4.0 J81609,28.0,41.0,25.0,28.0,31.0,36.0,37.0,33.0,47.0,49.0,47.0,55.0,52.0,53.0,50.0,52.0,47.0,51.0,53.0,44.0,46.0,54.0,46.0,40.0,34.0,42.0,37.0,31.0,40.0,37.0,37.0,46.0,40.0,33.0,56.0,41.0,47.0,54.0,46.0,41.0,38.0,48.0,47.0,31.0,53.0,43.0,36.0,44.0,40.0,64.0,55.0,48.0,53.0,70.0,47.0,72.0,76.0,85.0,73.0,84.0,75.0,93.0,80.0,94.0,72.0,82.0,83.0,70.0,61.0,64.0,58.0,54.0,64.0,65.0,66.0,82.0,94.0,88.0,88.0,58.0,61.0,65.0,47.0,31.0,28.0,28.0,21.0,26.0,16.0,19.0,22.0,11.0,14.0,8.0,7.0,13.0 J81612,6.0,10.0,10.0,15.0,10.0,11.0,14.0,7.0,20.0,9.0,9.0,15.0,16.0,14.0,20.0,5.0,13.0,15.0,8.0,10.0,7.0,11.0,17.0,16.0,13.0,11.0,12.0,15.0,10.0,15.0,15.0,6.0,11.0,15.0,14.0,15.0,16.0,12.0,16.0,9.0,16.0,19.0,18.0,15.0,10.0,17.0,12.0,14.0,12.0,16.0,19.0,14.0,17.0,25.0,15.0,16.0,27.0,27.0,24.0,38.0,31.0,29.0,26.0,26.0,33.0,24.0,26.0,32.0,33.0,27.0,28.0,19.0,21.0,25.0,28.0,30.0,30.0,27.0,43.0,22.0,20.0,24.0,14.0,12.0,10.0,5.0,4.0,16.0,8.0,2.0,4.0,6.0,2.0,4.0,,3.0 J81616,11.0,17.0,14.0,15.0,15.0,15.0,11.0,15.0,15.0,25.0,20.0,20.0,25.0,35.0,14.0,25.0,23.0,28.0,21.0,27.0,24.0,20.0,15.0,24.0,17.0,17.0,19.0,13.0,18.0,22.0,20.0,21.0,16.0,18.0,15.0,25.0,20.0,20.0,20.0,25.0,18.0,22.0,15.0,14.0,17.0,25.0,21.0,24.0,19.0,21.0,21.0,16.0,31.0,38.0,23.0,29.0,44.0,41.0,43.0,22.0,43.0,27.0,34.0,35.0,37.0,32.0,41.0,49.0,41.0,29.0,36.0,26.0,32.0,29.0,25.0,32.0,22.0,34.0,27.0,19.0,34.0,19.0,20.0,14.0,17.0,10.0,11.0,12.0,5.0,7.0,3.0,1.0,4.0,2.0,2.0,2.0 J81620,93.0,95.0,95.0,116.0,118.0,110.0,140.0,129.0,134.0,141.0,130.0,158.0,188.0,149.0,140.0,133.0,151.0,138.0,167.0,127.0,136.0,121.0,122.0,106.0,122.0,132.0,123.0,117.0,155.0,127.0,124.0,123.0,131.0,127.0,167.0,172.0,154.0,128.0,145.0,143.0,130.0,129.0,155.0,134.0,154.0,154.0,117.0,133.0,130.0,146.0,148.0,163.0,174.0,174.0,181.0,192.0,207.0,189.0,218.0,209.0,196.0,218.0,191.0,199.0,197.0,185.0,209.0,195.0,192.0,201.0,189.0,164.0,182.0,148.0,175.0,154.0,181.0,190.0,166.0,113.0,132.0,113.0,96.0,73.0,82.0,70.0,70.0,54.0,61.0,41.0,45.0,30.0,26.0,9.0,9.0,31.0 J81621,40.0,34.0,51.0,47.0,50.0,42.0,46.0,48.0,44.0,56.0,44.0,54.0,38.0,52.0,33.0,50.0,46.0,49.0,40.0,33.0,23.0,36.0,42.0,27.0,28.0,27.0,41.0,30.0,47.0,42.0,58.0,48.0,47.0,53.0,49.0,47.0,56.0,49.0,58.0,51.0,54.0,53.0,50.0,52.0,56.0,53.0,44.0,48.0,49.0,37.0,49.0,34.0,47.0,47.0,53.0,57.0,58.0,68.0,56.0,45.0,58.0,57.0,67.0,70.0,75.0,49.0,58.0,51.0,44.0,61.0,46.0,53.0,63.0,51.0,48.0,56.0,35.0,52.0,54.0,44.0,39.0,32.0,27.0,35.0,20.0,24.0,30.0,19.0,18.0,12.0,13.0,10.0,8.0,3.0,2.0,12.0 J81625,46.0,54.0,69.0,75.0,71.0,71.0,82.0,94.0,112.0,96.0,82.0,102.0,114.0,120.0,109.0,101.0,109.0,102.0,86.0,85.0,107.0,88.0,88.0,106.0,85.0,90.0,97.0,92.0,107.0,93.0,108.0,105.0,120.0,116.0,119.0,123.0,126.0,137.0,89.0,114.0,126.0,124.0,116.0,136.0,131.0,121.0,114.0,115.0,103.0,104.0,110.0,106.0,99.0,125.0,117.0,88.0,96.0,84.0,109.0,88.0,101.0,107.0,97.0,83.0,68.0,84.0,55.0,59.0,71.0,48.0,48.0,55.0,40.0,53.0,59.0,56.0,50.0,45.0,57.0,39.0,26.0,28.0,25.0,23.0,20.0,23.0,18.0,14.0,15.0,15.0,13.0,10.0,9.0,10.0,3.0,6.0 J81626,18.0,20.0,24.0,25.0,23.0,28.0,31.0,25.0,34.0,29.0,31.0,25.0,28.0,43.0,28.0,33.0,24.0,37.0,32.0,29.0,22.0,25.0,19.0,23.0,25.0,25.0,15.0,35.0,32.0,17.0,34.0,31.0,31.0,33.0,33.0,39.0,21.0,32.0,25.0,35.0,25.0,28.0,36.0,28.0,35.0,23.0,27.0,38.0,36.0,30.0,27.0,23.0,35.0,50.0,40.0,23.0,38.0,31.0,41.0,39.0,40.0,32.0,26.0,33.0,36.0,37.0,35.0,41.0,26.0,23.0,24.0,17.0,21.0,22.0,33.0,24.0,34.0,40.0,26.0,21.0,21.0,13.0,18.0,17.0,13.0,11.0,18.0,11.0,9.0,5.0,3.0,4.0,3.0,1.0,2.0,4.0 J81631,6.0,5.0,7.0,13.0,8.0,7.0,11.0,7.0,10.0,10.0,10.0,5.0,10.0,6.0,8.0,10.0,13.0,12.0,5.0,9.0,5.0,9.0,7.0,10.0,7.0,7.0,10.0,11.0,8.0,8.0,10.0,17.0,16.0,16.0,13.0,4.0,14.0,11.0,10.0,10.0,8.0,6.0,11.0,7.0,6.0,14.0,8.0,6.0,8.0,13.0,8.0,11.0,13.0,16.0,18.0,13.0,10.0,11.0,23.0,17.0,23.0,27.0,19.0,20.0,29.0,23.0,12.0,17.0,17.0,18.0,16.0,14.0,16.0,20.0,10.0,15.0,14.0,14.0,16.0,14.0,16.0,5.0,11.0,6.0,5.0,7.0,4.0,1.0,3.0,2.0,1.0,2.0,4.0,1.0,,1.0 J81633,30.0,27.0,27.0,29.0,35.0,30.0,45.0,36.0,37.0,40.0,44.0,37.0,39.0,47.0,37.0,41.0,43.0,57.0,31.0,39.0,34.0,42.0,33.0,40.0,36.0,36.0,42.0,38.0,31.0,39.0,40.0,39.0,38.0,34.0,27.0,37.0,48.0,42.0,51.0,50.0,33.0,65.0,49.0,49.0,64.0,45.0,53.0,48.0,34.0,57.0,49.0,40.0,66.0,48.0,54.0,39.0,54.0,39.0,32.0,46.0,35.0,53.0,39.0,46.0,38.0,47.0,38.0,41.0,33.0,24.0,30.0,39.0,36.0,27.0,22.0,21.0,17.0,27.0,27.0,19.0,22.0,19.0,19.0,13.0,12.0,9.0,18.0,7.0,8.0,6.0,3.0,4.0,1.0,2.0,3.0,3.0 J81634,53.0,47.0,56.0,64.0,69.0,57.0,72.0,87.0,83.0,71.0,58.0,82.0,73.0,91.0,72.0,71.0,62.0,64.0,96.0,92.0,105.0,106.0,138.0,136.0,198.0,193.0,219.0,206.0,223.0,196.0,212.0,198.0,186.0,164.0,208.0,209.0,212.0,208.0,212.0,186.0,195.0,203.0,168.0,185.0,177.0,166.0,147.0,137.0,137.0,135.0,117.0,89.0,112.0,112.0,96.0,101.0,100.0,105.0,95.0,112.0,101.0,72.0,71.0,55.0,63.0,48.0,42.0,52.0,64.0,42.0,31.0,39.0,32.0,31.0,28.0,27.0,26.0,31.0,20.0,15.0,17.0,9.0,15.0,7.0,7.0,7.0,9.0,10.0,6.0,1.0,2.0,3.0,3.0,1.0,4.0,3.0 J81646,24.0,14.0,28.0,21.0,24.0,25.0,29.0,32.0,39.0,40.0,41.0,42.0,36.0,53.0,44.0,42.0,40.0,30.0,45.0,46.0,37.0,24.0,33.0,38.0,24.0,35.0,44.0,36.0,30.0,29.0,27.0,32.0,27.0,28.0,39.0,39.0,28.0,33.0,35.0,31.0,37.0,34.0,45.0,41.0,39.0,44.0,34.0,57.0,31.0,41.0,40.0,43.0,39.0,42.0,43.0,42.0,64.0,52.0,38.0,50.0,40.0,43.0,44.0,37.0,40.0,51.0,32.0,29.0,42.0,27.0,35.0,45.0,26.0,26.0,26.0,24.0,39.0,37.0,41.0,31.0,23.0,23.0,35.0,21.0,18.0,26.0,16.0,18.0,15.0,7.0,4.0,9.0,11.0,5.0,5.0,11.0 J81647,18.0,9.0,18.0,19.0,19.0,21.0,23.0,34.0,26.0,48.0,19.0,29.0,40.0,50.0,53.0,67.0,47.0,45.0,35.0,45.0,34.0,37.0,36.0,32.0,45.0,30.0,35.0,29.0,33.0,28.0,25.0,27.0,22.0,32.0,29.0,21.0,33.0,28.0,30.0,34.0,41.0,24.0,26.0,30.0,31.0,45.0,44.0,30.0,40.0,45.0,44.0,46.0,54.0,48.0,68.0,59.0,63.0,72.0,83.0,74.0,72.0,92.0,95.0,83.0,85.0,93.0,100.0,91.0,83.0,65.0,65.0,72.0,75.0,74.0,72.0,68.0,70.0,80.0,73.0,48.0,71.0,46.0,54.0,43.0,27.0,39.0,24.0,23.0,25.0,29.0,15.0,12.0,11.0,13.0,4.0,14.0 J81648,20.0,21.0,28.0,20.0,35.0,29.0,34.0,14.0,26.0,18.0,31.0,28.0,25.0,28.0,23.0,32.0,32.0,27.0,36.0,26.0,20.0,20.0,16.0,28.0,24.0,30.0,29.0,43.0,37.0,45.0,44.0,35.0,44.0,50.0,37.0,51.0,32.0,43.0,55.0,37.0,44.0,45.0,39.0,35.0,35.0,42.0,51.0,42.0,33.0,31.0,46.0,29.0,28.0,35.0,40.0,40.0,32.0,45.0,43.0,45.0,45.0,46.0,39.0,34.0,32.0,35.0,31.0,22.0,26.0,23.0,23.0,23.0,24.0,26.0,20.0,23.0,22.0,30.0,24.0,16.0,18.0,18.0,17.0,8.0,11.0,8.0,9.0,5.0,6.0,10.0,1.0,4.0,2.0,2.0,1.0,2.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 H83001,101.0,86.0,93.0,104.0,77.0,76.0,74.0,84.0,86.0,76.0,70.0,87.0,85.0,77.0,82.0,82.0,100.0,111.0,76.0,85.0,77.0,88.0,90.0,87.0,88.0,109.0,106.0,117.0,114.0,130.0,123.0,133.0,147.0,163.0,159.0,167.0,160.0,169.0,150.0,147.0,140.0,147.0,137.0,124.0,133.0,124.0,87.0,93.0,92.0,78.0,108.0,89.0,89.0,96.0,96.0,84.0,86.0,74.0,92.0,96.0,84.0,102.0,83.0,80.0,62.0,61.0,61.0,49.0,59.0,44.0,35.0,37.0,42.0,32.0,18.0,23.0,23.0,29.0,25.0,14.0,16.0,16.0,8.0,18.0,14.0,14.0,7.0,8.0,10.0,11.0,4.0,4.0,3.0,2.0,2.0,4.0 H83004,54.0,50.0,48.0,54.0,56.0,58.0,76.0,69.0,53.0,64.0,70.0,69.0,57.0,69.0,76.0,80.0,70.0,69.0,63.0,56.0,65.0,58.0,55.0,57.0,56.0,64.0,66.0,67.0,56.0,51.0,68.0,63.0,67.0,75.0,77.0,97.0,81.0,65.0,68.0,77.0,64.0,81.0,71.0,84.0,90.0,87.0,87.0,71.0,60.0,78.0,82.0,68.0,61.0,64.0,72.0,80.0,85.0,65.0,87.0,57.0,60.0,78.0,63.0,68.0,60.0,66.0,62.0,61.0,56.0,59.0,67.0,55.0,47.0,47.0,62.0,57.0,54.0,82.0,72.0,40.0,48.0,31.0,30.0,16.0,29.0,28.0,11.0,18.0,19.0,14.0,13.0,6.0,10.0,9.0,3.0,13.0 H83005,87.0,98.0,78.0,95.0,92.0,66.0,86.0,78.0,97.0,82.0,87.0,81.0,80.0,76.0,93.0,91.0,82.0,86.0,84.0,73.0,71.0,79.0,63.0,60.0,58.0,60.0,72.0,84.0,108.0,109.0,136.0,120.0,145.0,160.0,148.0,175.0,186.0,182.0,160.0,168.0,146.0,160.0,170.0,149.0,144.0,153.0,124.0,142.0,134.0,130.0,136.0,133.0,118.0,132.0,100.0,95.0,114.0,115.0,105.0,88.0,85.0,98.0,83.0,64.0,50.0,59.0,55.0,44.0,41.0,32.0,48.0,29.0,30.0,25.0,29.0,26.0,25.0,33.0,15.0,16.0,14.0,17.0,12.0,9.0,6.0,7.0,9.0,10.0,7.0,2.0,8.0,4.0,2.0,1.0,1.0,6.0 H83006,62.0,64.0,71.0,81.0,75.0,73.0,81.0,84.0,93.0,103.0,81.0,108.0,92.0,93.0,111.0,98.0,87.0,102.0,98.0,85.0,95.0,88.0,82.0,75.0,90.0,92.0,93.0,91.0,106.0,72.0,86.0,88.0,83.0,100.0,98.0,72.0,97.0,97.0,90.0,91.0,71.0,91.0,93.0,74.0,73.0,85.0,73.0,63.0,57.0,81.0,70.0,72.0,58.0,67.0,72.0,60.0,70.0,68.0,60.0,60.0,60.0,67.0,62.0,56.0,67.0,37.0,45.0,35.0,44.0,28.0,36.0,26.0,26.0,27.0,25.0,21.0,20.0,14.0,20.0,13.0,9.0,11.0,12.0,14.0,10.0,12.0,5.0,6.0,6.0,3.0,5.0,3.0,3.0,4.0,3.0,3.0 H83007,48.0,57.0,69.0,57.0,67.0,71.0,72.0,71.0,82.0,70.0,62.0,85.0,89.0,91.0,98.0,84.0,86.0,94.0,92.0,81.0,74.0,63.0,48.0,74.0,67.0,69.0,64.0,64.0,88.0,60.0,84.0,95.0,71.0,73.0,80.0,74.0,95.0,70.0,81.0,92.0,62.0,85.0,92.0,92.0,77.0,72.0,83.0,91.0,67.0,82.0,71.0,56.0,55.0,59.0,66.0,64.0,63.0,70.0,61.0,83.0,73.0,78.0,50.0,56.0,55.0,53.0,37.0,36.0,34.0,41.0,25.0,38.0,31.0,26.0,20.0,29.0,20.0,26.0,20.0,17.0,11.0,12.0,16.0,7.0,13.0,7.0,10.0,8.0,9.0,5.0,8.0,,7.0,1.0,1.0,6.0 H83008,16.0,36.0,22.0,31.0,28.0,30.0,24.0,24.0,26.0,33.0,22.0,29.0,21.0,18.0,18.0,21.0,19.0,23.0,22.0,19.0,14.0,29.0,20.0,28.0,23.0,26.0,38.0,24.0,34.0,37.0,45.0,32.0,26.0,37.0,47.0,35.0,40.0,38.0,36.0,33.0,25.0,29.0,31.0,36.0,18.0,25.0,25.0,26.0,25.0,28.0,30.0,19.0,31.0,16.0,21.0,26.0,20.0,16.0,22.0,25.0,25.0,24.0,25.0,13.0,25.0,26.0,26.0,21.0,19.0,16.0,15.0,7.0,12.0,7.0,7.0,8.0,8.0,8.0,6.0,7.0,8.0,5.0,4.0,4.0,8.0,7.0,5.0,7.0,,5.0,1.0,6.0,4.0,2.0,,3.0 H83009,45.0,51.0,66.0,56.0,58.0,71.0,50.0,61.0,59.0,56.0,55.0,57.0,45.0,53.0,64.0,69.0,47.0,78.0,71.0,65.0,63.0,71.0,68.0,79.0,79.0,90.0,75.0,74.0,87.0,114.0,93.0,109.0,106.0,103.0,120.0,117.0,104.0,116.0,99.0,111.0,94.0,93.0,99.0,97.0,96.0,120.0,94.0,83.0,85.0,77.0,75.0,74.0,56.0,57.0,54.0,59.0,71.0,60.0,63.0,52.0,59.0,62.0,57.0,50.0,51.0,49.0,46.0,44.0,40.0,43.0,35.0,32.0,40.0,30.0,35.0,29.0,28.0,28.0,28.0,23.0,11.0,15.0,24.0,24.0,12.0,9.0,10.0,9.0,6.0,9.0,2.0,3.0,4.0,2.0,1.0,3.0 H83010,42.0,34.0,28.0,37.0,24.0,36.0,26.0,33.0,37.0,37.0,35.0,26.0,35.0,45.0,37.0,33.0,48.0,40.0,38.0,30.0,39.0,40.0,37.0,37.0,44.0,43.0,57.0,51.0,56.0,69.0,43.0,55.0,65.0,70.0,67.0,67.0,47.0,55.0,60.0,50.0,61.0,55.0,38.0,47.0,51.0,50.0,56.0,50.0,52.0,49.0,46.0,45.0,50.0,50.0,40.0,54.0,41.0,45.0,42.0,46.0,44.0,47.0,37.0,47.0,25.0,29.0,34.0,38.0,28.0,21.0,22.0,22.0,22.0,17.0,22.0,18.0,32.0,10.0,18.0,7.0,9.0,8.0,15.0,11.0,7.0,9.0,7.0,6.0,5.0,8.0,8.0,3.0,6.0,2.0,1.0,5.0 H83011,41.0,30.0,47.0,51.0,47.0,40.0,47.0,59.0,55.0,47.0,56.0,35.0,54.0,49.0,50.0,50.0,59.0,45.0,34.0,54.0,48.0,24.0,59.0,58.0,76.0,70.0,69.0,89.0,82.0,92.0,75.0,78.0,97.0,94.0,78.0,80.0,87.0,82.0,104.0,106.0,90.0,66.0,86.0,75.0,86.0,88.0,67.0,77.0,80.0,69.0,70.0,62.0,70.0,71.0,70.0,60.0,57.0,57.0,45.0,42.0,69.0,49.0,39.0,43.0,31.0,39.0,37.0,33.0,26.0,37.0,30.0,19.0,14.0,19.0,16.0,12.0,16.0,13.0,9.0,7.0,7.0,4.0,6.0,7.0,5.0,7.0,3.0,7.0,9.0,7.0,1.0,2.0,2.0,1.0,2.0,2.0 H83012,44.0,37.0,48.0,48.0,38.0,58.0,57.0,76.0,63.0,73.0,78.0,79.0,77.0,82.0,86.0,70.0,68.0,71.0,64.0,66.0,56.0,53.0,64.0,54.0,69.0,64.0,66.0,59.0,72.0,58.0,76.0,81.0,96.0,75.0,83.0,90.0,76.0,79.0,70.0,94.0,93.0,90.0,84.0,89.0,78.0,87.0,74.0,65.0,69.0,72.0,73.0,67.0,66.0,63.0,47.0,71.0,56.0,54.0,61.0,58.0,48.0,57.0,56.0,62.0,41.0,40.0,36.0,40.0,31.0,23.0,36.0,28.0,20.0,24.0,21.0,16.0,19.0,20.0,18.0,19.0,16.0,17.0,13.0,7.0,8.0,8.0,8.0,14.0,7.0,2.0,4.0,4.0,3.0,1.0,,2.0 H83013,110.0,106.0,114.0,132.0,132.0,146.0,126.0,122.0,145.0,127.0,119.0,144.0,134.0,113.0,131.0,112.0,126.0,134.0,118.0,97.0,104.0,83.0,76.0,90.0,102.0,102.0,84.0,99.0,106.0,91.0,101.0,105.0,88.0,143.0,117.0,133.0,151.0,147.0,176.0,159.0,147.0,147.0,157.0,158.0,168.0,140.0,152.0,148.0,121.0,112.0,126.0,102.0,119.0,126.0,99.0,109.0,112.0,110.0,117.0,117.0,104.0,114.0,102.0,108.0,94.0,82.0,91.0,77.0,77.0,67.0,66.0,66.0,56.0,81.0,61.0,73.0,64.0,77.0,79.0,59.0,57.0,57.0,46.0,40.0,27.0,27.0,20.0,23.0,13.0,15.0,14.0,7.0,6.0,7.0,4.0,10.0 H83014,17.0,19.0,24.0,29.0,37.0,34.0,28.0,40.0,32.0,45.0,32.0,44.0,38.0,35.0,44.0,36.0,39.0,48.0,49.0,32.0,38.0,26.0,35.0,31.0,45.0,53.0,47.0,42.0,33.0,34.0,51.0,37.0,40.0,51.0,33.0,45.0,57.0,36.0,47.0,46.0,42.0,47.0,46.0,52.0,50.0,48.0,34.0,51.0,42.0,42.0,34.0,31.0,42.0,47.0,42.0,35.0,43.0,31.0,54.0,44.0,47.0,49.0,42.0,45.0,48.0,39.0,38.0,38.0,36.0,38.0,31.0,40.0,38.0,22.0,43.0,47.0,34.0,39.0,48.0,38.0,29.0,22.0,30.0,17.0,17.0,22.0,19.0,9.0,8.0,11.0,7.0,11.0,6.0,3.0,3.0,6.0 H83015,66.0,89.0,79.0,87.0,75.0,94.0,81.0,65.0,91.0,101.0,90.0,107.0,93.0,96.0,94.0,95.0,88.0,87.0,79.0,58.0,55.0,47.0,62.0,56.0,69.0,80.0,76.0,91.0,85.0,103.0,87.0,90.0,99.0,100.0,111.0,115.0,129.0,130.0,112.0,115.0,126.0,112.0,114.0,113.0,120.0,114.0,112.0,119.0,102.0,99.0,99.0,78.0,94.0,79.0,78.0,90.0,91.0,84.0,80.0,93.0,88.0,91.0,81.0,71.0,69.0,72.0,57.0,60.0,59.0,47.0,56.0,48.0,37.0,37.0,34.0,45.0,42.0,49.0,42.0,37.0,21.0,20.0,32.0,16.0,16.0,19.0,16.0,15.0,9.0,6.0,8.0,10.0,5.0,3.0,4.0,4.0 H83016,128.0,149.0,139.0,151.0,147.0,151.0,139.0,170.0,167.0,142.0,184.0,132.0,151.0,154.0,141.0,158.0,161.0,161.0,148.0,111.0,118.0,121.0,98.0,124.0,125.0,133.0,154.0,163.0,154.0,150.0,161.0,157.0,171.0,179.0,174.0,194.0,196.0,203.0,197.0,207.0,198.0,184.0,214.0,194.0,191.0,201.0,201.0,163.0,180.0,151.0,159.0,149.0,160.0,142.0,145.0,153.0,151.0,129.0,142.0,134.0,136.0,142.0,130.0,125.0,82.0,122.0,86.0,94.0,97.0,81.0,96.0,85.0,81.0,81.0,61.0,80.0,73.0,73.0,86.0,71.0,54.0,61.0,46.0,38.0,44.0,31.0,49.0,41.0,29.0,24.0,22.0,18.0,13.0,11.0,9.0,16.0 H83017,37.0,70.0,47.0,49.0,68.0,76.0,70.0,73.0,79.0,84.0,79.0,77.0,97.0,99.0,76.0,118.0,106.0,104.0,91.0,87.0,84.0,85.0,101.0,96.0,90.0,112.0,112.0,140.0,89.0,96.0,120.0,116.0,93.0,122.0,135.0,89.0,110.0,113.0,97.0,101.0,119.0,96.0,95.0,113.0,116.0,111.0,105.0,99.0,81.0,115.0,94.0,114.0,93.0,102.0,112.0,100.0,96.0,110.0,117.0,103.0,89.0,118.0,95.0,83.0,95.0,87.0,83.0,70.0,60.0,55.0,54.0,39.0,32.0,38.0,28.0,30.0,29.0,36.0,27.0,24.0,20.0,19.0,11.0,12.0,19.0,14.0,16.0,9.0,12.0,5.0,5.0,3.0,4.0,3.0,1.0,4.0 H83018,53.0,77.0,87.0,87.0,108.0,101.0,103.0,129.0,112.0,110.0,100.0,121.0,125.0,117.0,132.0,133.0,140.0,138.0,121.0,97.0,117.0,100.0,89.0,84.0,85.0,85.0,96.0,101.0,103.0,101.0,101.0,94.0,111.0,107.0,114.0,112.0,127.0,107.0,129.0,124.0,125.0,125.0,116.0,125.0,126.0,134.0,128.0,120.0,118.0,108.0,122.0,113.0,121.0,125.0,104.0,115.0,136.0,119.0,115.0,127.0,112.0,125.0,115.0,103.0,103.0,109.0,101.0,90.0,96.0,80.0,65.0,59.0,80.0,62.0,69.0,67.0,69.0,90.0,73.0,54.0,57.0,42.0,32.0,31.0,26.0,31.0,22.0,22.0,23.0,24.0,20.0,15.0,14.0,7.0,8.0,12.0 H83019,35.0,33.0,33.0,34.0,35.0,29.0,37.0,29.0,32.0,32.0,35.0,44.0,42.0,35.0,37.0,39.0,40.0,42.0,33.0,23.0,38.0,42.0,37.0,36.0,54.0,38.0,59.0,64.0,54.0,62.0,65.0,67.0,71.0,83.0,68.0,70.0,85.0,78.0,85.0,61.0,57.0,79.0,68.0,83.0,75.0,59.0,88.0,65.0,59.0,56.0,46.0,60.0,59.0,41.0,50.0,40.0,66.0,45.0,46.0,39.0,48.0,39.0,56.0,43.0,38.0,38.0,33.0,43.0,31.0,26.0,24.0,25.0,16.0,20.0,26.0,17.0,22.0,26.0,17.0,15.0,9.0,11.0,12.0,13.0,6.0,9.0,13.0,12.0,12.0,2.0,3.0,10.0,4.0,2.0,4.0,7.0 H83020,39.0,42.0,52.0,49.0,55.0,76.0,48.0,56.0,78.0,74.0,78.0,67.0,59.0,74.0,77.0,73.0,82.0,83.0,82.0,50.0,67.0,75.0,57.0,56.0,71.0,84.0,89.0,73.0,76.0,89.0,67.0,62.0,61.0,83.0,71.0,83.0,87.0,84.0,87.0,77.0,99.0,75.0,80.0,74.0,83.0,84.0,68.0,68.0,73.0,92.0,64.0,89.0,64.0,64.0,86.0,66.0,82.0,85.0,60.0,68.0,70.0,65.0,72.0,52.0,65.0,50.0,44.0,51.0,35.0,37.0,35.0,19.0,31.0,26.0,22.0,23.0,20.0,16.0,22.0,13.0,16.0,14.0,9.0,7.0,6.0,12.0,8.0,5.0,4.0,6.0,1.0,4.0,1.0,3.0,1.0,2.0 H83021,32.0,41.0,35.0,36.0,42.0,40.0,39.0,42.0,44.0,41.0,29.0,37.0,31.0,40.0,37.0,42.0,49.0,47.0,45.0,46.0,47.0,47.0,39.0,59.0,50.0,47.0,58.0,57.0,47.0,56.0,47.0,42.0,62.0,54.0,61.0,38.0,44.0,53.0,45.0,49.0,37.0,54.0,52.0,47.0,47.0,48.0,35.0,36.0,34.0,45.0,49.0,47.0,40.0,34.0,49.0,31.0,41.0,37.0,27.0,34.0,30.0,36.0,27.0,28.0,29.0,34.0,31.0,37.0,32.0,31.0,18.0,26.0,24.0,27.0,17.0,12.0,15.0,12.0,18.0,11.0,8.0,11.0,10.0,6.0,10.0,4.0,1.0,6.0,7.0,6.0,6.0,2.0,4.0,2.0,2.0,5.0 H83022,29.0,26.0,31.0,27.0,34.0,34.0,34.0,31.0,34.0,46.0,41.0,29.0,33.0,28.0,34.0,32.0,37.0,46.0,40.0,48.0,31.0,25.0,36.0,35.0,37.0,41.0,49.0,45.0,33.0,40.0,38.0,64.0,48.0,42.0,48.0,45.0,59.0,43.0,46.0,67.0,46.0,40.0,45.0,42.0,48.0,43.0,42.0,41.0,39.0,41.0,53.0,35.0,35.0,41.0,39.0,38.0,52.0,50.0,42.0,40.0,46.0,50.0,36.0,34.0,36.0,41.0,35.0,42.0,33.0,31.0,25.0,19.0,14.0,14.0,23.0,17.0,16.0,17.0,14.0,15.0,7.0,15.0,11.0,3.0,7.0,11.0,9.0,5.0,7.0,4.0,7.0,2.0,,5.0,2.0,7.0 H83023,29.0,18.0,25.0,22.0,22.0,27.0,32.0,37.0,32.0,43.0,35.0,42.0,40.0,40.0,57.0,32.0,48.0,41.0,49.0,64.0,33.0,43.0,30.0,34.0,32.0,36.0,36.0,50.0,42.0,40.0,39.0,60.0,46.0,39.0,55.0,39.0,44.0,55.0,63.0,62.0,61.0,62.0,63.0,62.0,61.0,55.0,53.0,62.0,56.0,57.0,48.0,65.0,42.0,57.0,34.0,54.0,65.0,51.0,56.0,52.0,48.0,47.0,47.0,50.0,49.0,35.0,35.0,24.0,30.0,16.0,34.0,16.0,19.0,11.0,16.0,21.0,21.0,15.0,16.0,14.0,13.0,9.0,14.0,10.0,8.0,10.0,8.0,5.0,3.0,4.0,2.0,3.0,2.0,3.0,,1.0 H83024,83.0,75.0,104.0,111.0,116.0,101.0,108.0,116.0,106.0,102.0,119.0,85.0,117.0,135.0,115.0,104.0,139.0,121.0,100.0,93.0,107.0,79.0,88.0,93.0,106.0,89.0,110.0,97.0,114.0,113.0,87.0,113.0,105.0,125.0,131.0,122.0,121.0,135.0,138.0,144.0,122.0,134.0,121.0,132.0,125.0,164.0,123.0,146.0,132.0,118.0,98.0,106.0,96.0,104.0,103.0,114.0,99.0,101.0,119.0,98.0,116.0,113.0,114.0,97.0,96.0,78.0,91.0,110.0,85.0,88.0,79.0,82.0,67.0,66.0,61.0,66.0,75.0,77.0,59.0,62.0,44.0,38.0,44.0,41.0,24.0,35.0,23.0,16.0,13.0,11.0,18.0,7.0,17.0,5.0,4.0,10.0 H83028,45.0,44.0,49.0,42.0,41.0,54.0,51.0,62.0,62.0,72.0,58.0,58.0,64.0,67.0,66.0,84.0,63.0,92.0,75.0,82.0,70.0,69.0,74.0,66.0,73.0,80.0,66.0,81.0,81.0,71.0,81.0,66.0,70.0,53.0,63.0,63.0,69.0,51.0,59.0,58.0,77.0,70.0,58.0,49.0,75.0,50.0,52.0,43.0,46.0,54.0,65.0,51.0,49.0,63.0,70.0,76.0,73.0,88.0,78.0,63.0,80.0,91.0,62.0,64.0,52.0,58.0,46.0,41.0,32.0,23.0,26.0,31.0,36.0,23.0,27.0,18.0,41.0,26.0,28.0,17.0,20.0,17.0,16.0,13.0,12.0,8.0,13.0,8.0,14.0,17.0,4.0,2.0,1.0,5.0,2.0,5.0 H83029,17.0,20.0,28.0,23.0,30.0,20.0,17.0,25.0,27.0,15.0,24.0,27.0,28.0,24.0,31.0,34.0,32.0,33.0,34.0,18.0,22.0,21.0,20.0,23.0,28.0,25.0,36.0,30.0,26.0,26.0,26.0,27.0,25.0,30.0,41.0,27.0,36.0,31.0,27.0,34.0,35.0,31.0,28.0,29.0,26.0,34.0,25.0,26.0,26.0,19.0,26.0,28.0,28.0,29.0,26.0,33.0,16.0,22.0,34.0,45.0,30.0,27.0,32.0,27.0,36.0,32.0,40.0,25.0,28.0,28.0,36.0,31.0,15.0,37.0,23.0,33.0,31.0,12.0,27.0,19.0,20.0,21.0,15.0,10.0,11.0,12.0,12.0,6.0,9.0,7.0,7.0,7.0,1.0,2.0,,3.0 H83030,27.0,20.0,15.0,16.0,22.0,30.0,23.0,25.0,20.0,20.0,31.0,29.0,29.0,27.0,28.0,34.0,26.0,37.0,28.0,30.0,31.0,20.0,28.0,17.0,22.0,19.0,20.0,17.0,24.0,22.0,28.0,31.0,22.0,16.0,18.0,20.0,29.0,12.0,27.0,12.0,19.0,15.0,11.0,22.0,19.0,19.0,19.0,22.0,14.0,15.0,18.0,22.0,15.0,21.0,12.0,13.0,19.0,26.0,32.0,15.0,31.0,22.0,16.0,13.0,13.0,12.0,14.0,13.0,13.0,12.0,12.0,11.0,7.0,5.0,5.0,15.0,7.0,6.0,7.0,5.0,5.0,1.0,4.0,4.0,1.0,1.0,1.0,2.0,3.0,3.0,5.0,2.0,2.0,2.0,4.0,2.0 H83031,22.0,15.0,17.0,24.0,20.0,23.0,21.0,20.0,22.0,20.0,16.0,19.0,13.0,31.0,19.0,25.0,18.0,21.0,24.0,22.0,27.0,15.0,14.0,25.0,29.0,36.0,28.0,34.0,31.0,37.0,28.0,35.0,40.0,35.0,28.0,34.0,27.0,40.0,28.0,27.0,34.0,29.0,45.0,36.0,35.0,21.0,30.0,16.0,20.0,42.0,26.0,33.0,26.0,20.0,25.0,18.0,28.0,19.0,18.0,17.0,22.0,12.0,28.0,19.0,19.0,21.0,12.0,13.0,10.0,14.0,18.0,14.0,12.0,7.0,9.0,11.0,9.0,7.0,13.0,11.0,5.0,5.0,4.0,3.0,1.0,11.0,1.0,3.0,4.0,4.0,4.0,1.0,2.0,,1.0, H83033,26.0,27.0,31.0,29.0,31.0,24.0,37.0,28.0,24.0,39.0,39.0,17.0,23.0,33.0,40.0,23.0,47.0,30.0,36.0,28.0,29.0,23.0,33.0,31.0,28.0,31.0,37.0,28.0,31.0,32.0,30.0,35.0,31.0,40.0,33.0,48.0,53.0,36.0,33.0,40.0,42.0,33.0,39.0,35.0,34.0,29.0,30.0,35.0,38.0,32.0,30.0,25.0,31.0,22.0,30.0,28.0,26.0,30.0,22.0,21.0,23.0,18.0,15.0,16.0,20.0,19.0,22.0,23.0,13.0,17.0,7.0,15.0,7.0,11.0,14.0,6.0,10.0,5.0,4.0,11.0,5.0,11.0,3.0,4.0,5.0,4.0,5.0,5.0,4.0,,2.0,,,,, H83034,26.0,35.0,28.0,39.0,36.0,39.0,37.0,38.0,46.0,50.0,45.0,57.0,47.0,47.0,57.0,38.0,59.0,54.0,51.0,47.0,43.0,43.0,53.0,46.0,37.0,44.0,53.0,59.0,57.0,68.0,68.0,55.0,46.0,51.0,60.0,61.0,52.0,78.0,65.0,69.0,62.0,65.0,62.0,46.0,67.0,69.0,69.0,55.0,60.0,61.0,57.0,47.0,46.0,52.0,44.0,41.0,56.0,53.0,51.0,42.0,33.0,50.0,48.0,35.0,36.0,35.0,31.0,35.0,24.0,20.0,23.0,21.0,18.0,14.0,10.0,13.0,8.0,13.0,9.0,11.0,10.0,7.0,5.0,9.0,2.0,5.0,3.0,6.0,5.0,4.0,2.0,1.0,1.0,2.0,3.0,2.0 H83037,49.0,37.0,47.0,46.0,49.0,49.0,36.0,46.0,29.0,44.0,42.0,26.0,23.0,34.0,37.0,36.0,26.0,24.0,22.0,27.0,27.0,19.0,14.0,25.0,41.0,35.0,29.0,44.0,50.0,61.0,66.0,59.0,79.0,76.0,78.0,79.0,81.0,91.0,96.0,73.0,85.0,69.0,85.0,65.0,79.0,78.0,69.0,59.0,61.0,66.0,54.0,62.0,62.0,45.0,53.0,39.0,44.0,42.0,42.0,41.0,41.0,35.0,32.0,32.0,35.0,40.0,39.0,27.0,34.0,22.0,29.0,22.0,22.0,21.0,23.0,22.0,17.0,19.0,21.0,17.0,9.0,13.0,12.0,11.0,11.0,5.0,8.0,7.0,5.0,7.0,1.0,5.0,3.0,4.0,1.0,2.0 H83039,40.0,40.0,50.0,42.0,44.0,38.0,52.0,62.0,46.0,43.0,43.0,33.0,44.0,49.0,42.0,52.0,41.0,34.0,30.0,40.0,40.0,41.0,30.0,40.0,50.0,43.0,56.0,57.0,50.0,60.0,60.0,70.0,72.0,65.0,70.0,78.0,77.0,62.0,75.0,87.0,84.0,62.0,71.0,64.0,64.0,70.0,70.0,59.0,47.0,47.0,63.0,55.0,46.0,50.0,61.0,54.0,61.0,45.0,58.0,63.0,46.0,49.0,54.0,55.0,45.0,37.0,40.0,43.0,42.0,26.0,38.0,37.0,36.0,35.0,29.0,23.0,25.0,36.0,27.0,20.0,12.0,14.0,10.0,21.0,7.0,12.0,9.0,8.0,6.0,5.0,7.0,6.0,5.0,6.0,3.0,8.0 H83042,66.0,49.0,62.0,61.0,64.0,58.0,56.0,60.0,52.0,68.0,67.0,60.0,57.0,45.0,70.0,55.0,69.0,64.0,56.0,47.0,50.0,57.0,59.0,66.0,78.0,85.0,93.0,87.0,90.0,103.0,91.0,98.0,77.0,84.0,92.0,87.0,78.0,84.0,77.0,75.0,69.0,59.0,60.0,62.0,73.0,65.0,63.0,64.0,66.0,49.0,56.0,48.0,52.0,41.0,63.0,45.0,48.0,41.0,42.0,52.0,51.0,45.0,38.0,55.0,45.0,40.0,32.0,45.0,27.0,32.0,30.0,22.0,20.0,18.0,19.0,17.0,14.0,16.0,19.0,14.0,20.0,11.0,4.0,10.0,9.0,11.0,13.0,11.0,2.0,9.0,3.0,6.0,3.0,3.0,3.0,1.0 H83043,22.0,30.0,33.0,23.0,29.0,36.0,38.0,41.0,36.0,29.0,35.0,36.0,38.0,33.0,47.0,43.0,35.0,55.0,57.0,33.0,45.0,51.0,40.0,32.0,34.0,45.0,40.0,40.0,43.0,39.0,47.0,35.0,42.0,42.0,38.0,43.0,40.0,40.0,56.0,38.0,42.0,38.0,28.0,44.0,43.0,41.0,36.0,36.0,53.0,42.0,42.0,45.0,38.0,47.0,39.0,62.0,60.0,59.0,68.0,63.0,56.0,62.0,55.0,56.0,71.0,57.0,49.0,34.0,53.0,30.0,42.0,33.0,37.0,43.0,42.0,34.0,46.0,49.0,45.0,40.0,29.0,35.0,21.0,22.0,9.0,19.0,21.0,23.0,15.0,12.0,11.0,10.0,4.0,4.0,5.0,4.0 H83044,139.0,161.0,156.0,117.0,153.0,152.0,150.0,127.0,158.0,132.0,162.0,155.0,138.0,157.0,139.0,126.0,129.0,123.0,125.0,111.0,98.0,94.0,121.0,128.0,149.0,156.0,190.0,202.0,217.0,245.0,254.0,252.0,303.0,298.0,287.0,281.0,279.0,327.0,301.0,333.0,324.0,305.0,282.0,287.0,273.0,265.0,256.0,227.0,217.0,196.0,198.0,191.0,190.0,150.0,144.0,138.0,129.0,142.0,124.0,122.0,127.0,113.0,104.0,102.0,96.0,77.0,80.0,72.0,73.0,70.0,86.0,54.0,50.0,54.0,38.0,48.0,50.0,62.0,47.0,26.0,27.0,36.0,17.0,29.0,22.0,23.0,21.0,16.0,17.0,10.0,2.0,9.0,1.0,4.0,5.0,10.0 H83049,7.0,12.0,4.0,3.0,8.0,16.0,17.0,11.0,15.0,22.0,18.0,26.0,23.0,33.0,28.0,20.0,28.0,24.0,25.0,35.0,22.0,19.0,22.0,14.0,21.0,15.0,24.0,17.0,17.0,20.0,21.0,20.0,21.0,24.0,17.0,15.0,23.0,21.0,13.0,14.0,21.0,14.0,12.0,17.0,13.0,20.0,15.0,18.0,18.0,12.0,14.0,22.0,16.0,15.0,17.0,11.0,14.0,19.0,13.0,22.0,20.0,22.0,16.0,21.0,15.0,21.0,10.0,13.0,8.0,7.0,10.0,14.0,7.0,6.0,4.0,2.0,3.0,7.0,4.0,3.0,4.0,2.0,6.0,3.0,2.0,,4.0,,2.0,,1.0,,,,1.0,1.0 H83051,142.0,154.0,164.0,121.0,118.0,147.0,120.0,119.0,119.0,120.0,116.0,115.0,123.0,96.0,111.0,117.0,99.0,112.0,94.0,90.0,112.0,109.0,120.0,169.0,192.0,225.0,224.0,259.0,260.0,240.0,298.0,260.0,268.0,227.0,245.0,244.0,246.0,234.0,233.0,218.0,204.0,205.0,179.0,187.0,174.0,161.0,147.0,149.0,168.0,152.0,157.0,121.0,130.0,113.0,128.0,111.0,123.0,106.0,93.0,95.0,85.0,71.0,72.0,67.0,55.0,55.0,51.0,51.0,39.0,39.0,30.0,23.0,21.0,15.0,25.0,10.0,13.0,10.0,14.0,10.0,10.0,10.0,18.0,9.0,9.0,7.0,3.0,5.0,7.0,1.0,2.0,2.0,1.0,1.0,2.0,2.0 H83052,13.0,11.0,12.0,11.0,21.0,18.0,16.0,19.0,17.0,15.0,25.0,22.0,20.0,20.0,21.0,17.0,15.0,11.0,17.0,15.0,19.0,16.0,16.0,13.0,14.0,13.0,13.0,11.0,23.0,17.0,12.0,11.0,15.0,16.0,16.0,23.0,17.0,27.0,18.0,17.0,22.0,18.0,24.0,26.0,25.0,24.0,17.0,16.0,29.0,21.0,28.0,23.0,21.0,18.0,9.0,22.0,15.0,27.0,20.0,27.0,18.0,16.0,16.0,15.0,12.0,11.0,17.0,14.0,24.0,13.0,14.0,12.0,16.0,16.0,20.0,19.0,9.0,8.0,19.0,11.0,13.0,13.0,9.0,7.0,6.0,7.0,7.0,3.0,2.0,1.0,2.0,2.0,1.0,2.0,, H83053,56.0,55.0,56.0,55.0,68.0,67.0,88.0,85.0,71.0,99.0,87.0,88.0,85.0,90.0,97.0,102.0,110.0,105.0,91.0,89.0,102.0,111.0,99.0,108.0,117.0,127.0,116.0,125.0,128.0,114.0,134.0,124.0,116.0,138.0,150.0,150.0,124.0,127.0,129.0,108.0,125.0,124.0,99.0,116.0,115.0,115.0,88.0,108.0,119.0,83.0,89.0,103.0,96.0,101.0,111.0,89.0,121.0,114.0,110.0,110.0,103.0,110.0,84.0,108.0,97.0,93.0,71.0,78.0,59.0,58.0,53.0,42.0,47.0,39.0,33.0,33.0,31.0,42.0,26.0,22.0,13.0,18.0,18.0,20.0,13.0,21.0,20.0,10.0,4.0,8.0,9.0,6.0,5.0,4.0,2.0,8.0 H83608,76.0,85.0,76.0,70.0,62.0,68.0,75.0,73.0,66.0,54.0,57.0,63.0,71.0,65.0,58.0,69.0,85.0,79.0,85.0,65.0,82.0,62.0,68.0,86.0,76.0,93.0,112.0,120.0,123.0,107.0,120.0,114.0,111.0,120.0,119.0,131.0,113.0,124.0,116.0,90.0,116.0,90.0,90.0,103.0,90.0,89.0,92.0,90.0,77.0,87.0,93.0,60.0,93.0,77.0,81.0,73.0,74.0,76.0,79.0,62.0,58.0,66.0,56.0,49.0,51.0,51.0,46.0,44.0,53.0,33.0,32.0,26.0,30.0,22.0,18.0,24.0,14.0,12.0,18.0,10.0,9.0,6.0,14.0,6.0,10.0,5.0,4.0,9.0,1.0,4.0,1.0,2.0,1.0,2.0,2.0,2.0 H83609,34.0,30.0,42.0,39.0,32.0,33.0,33.0,33.0,39.0,35.0,17.0,21.0,36.0,20.0,24.0,28.0,26.0,25.0,31.0,32.0,34.0,31.0,19.0,28.0,35.0,39.0,38.0,34.0,40.0,38.0,36.0,48.0,50.0,54.0,49.0,53.0,46.0,45.0,46.0,55.0,37.0,53.0,50.0,37.0,37.0,20.0,40.0,34.0,34.0,35.0,27.0,31.0,39.0,20.0,28.0,29.0,30.0,38.0,30.0,30.0,40.0,32.0,25.0,25.0,39.0,13.0,19.0,26.0,12.0,17.0,11.0,14.0,14.0,10.0,18.0,16.0,10.0,10.0,16.0,13.0,7.0,7.0,5.0,7.0,4.0,6.0,8.0,4.0,9.0,3.0,2.0,1.0,,3.0,, H83611,54.0,42.0,39.0,30.0,42.0,49.0,32.0,37.0,36.0,44.0,30.0,34.0,38.0,39.0,39.0,33.0,29.0,36.0,34.0,29.0,36.0,30.0,37.0,33.0,23.0,33.0,37.0,51.0,42.0,56.0,53.0,53.0,63.0,68.0,70.0,59.0,63.0,74.0,65.0,52.0,61.0,58.0,46.0,49.0,59.0,51.0,38.0,31.0,49.0,31.0,42.0,33.0,34.0,36.0,32.0,20.0,32.0,32.0,29.0,26.0,27.0,22.0,12.0,22.0,15.0,18.0,12.0,14.0,17.0,11.0,13.0,13.0,7.0,9.0,11.0,6.0,5.0,4.0,3.0,4.0,3.0,1.0,6.0,4.0,3.0,2.0,4.0,3.0,2.0,,3.0,2.0,3.0,,,1.0 H83624,40.0,50.0,37.0,42.0,27.0,28.0,38.0,44.0,49.0,52.0,49.0,44.0,46.0,45.0,50.0,52.0,61.0,74.0,58.0,36.0,54.0,43.0,42.0,48.0,64.0,66.0,81.0,79.0,85.0,84.0,66.0,64.0,77.0,96.0,90.0,93.0,99.0,84.0,84.0,84.0,93.0,90.0,83.0,82.0,90.0,82.0,92.0,80.0,70.0,68.0,72.0,67.0,68.0,60.0,83.0,44.0,50.0,46.0,62.0,46.0,71.0,59.0,45.0,33.0,45.0,45.0,33.0,31.0,34.0,30.0,32.0,23.0,20.0,24.0,19.0,22.0,22.0,17.0,18.0,13.0,12.0,12.0,7.0,6.0,9.0,7.0,9.0,4.0,7.0,2.0,7.0,3.0,1.0,1.0,2.0,6.0 H83627,64.0,59.0,52.0,55.0,57.0,46.0,45.0,39.0,46.0,47.0,44.0,38.0,31.0,59.0,49.0,47.0,47.0,48.0,44.0,27.0,41.0,36.0,40.0,43.0,47.0,40.0,52.0,58.0,70.0,76.0,72.0,83.0,65.0,82.0,81.0,83.0,78.0,96.0,59.0,80.0,81.0,86.0,70.0,75.0,60.0,88.0,64.0,68.0,56.0,75.0,68.0,35.0,49.0,45.0,48.0,42.0,46.0,44.0,41.0,40.0,45.0,38.0,41.0,32.0,31.0,27.0,33.0,31.0,26.0,28.0,18.0,16.0,22.0,10.0,18.0,13.0,18.0,13.0,14.0,22.0,11.0,10.0,15.0,13.0,9.0,7.0,7.0,4.0,7.0,6.0,1.0,5.0,2.0,6.0,1.0,3.0 H83631,93.0,63.0,60.0,65.0,70.0,68.0,78.0,71.0,80.0,60.0,74.0,80.0,73.0,66.0,94.0,67.0,76.0,82.0,74.0,58.0,62.0,73.0,79.0,101.0,97.0,131.0,109.0,144.0,135.0,111.0,125.0,124.0,109.0,130.0,131.0,92.0,128.0,120.0,118.0,113.0,115.0,111.0,95.0,78.0,112.0,105.0,80.0,92.0,87.0,82.0,99.0,84.0,84.0,69.0,71.0,79.0,71.0,64.0,54.0,46.0,61.0,58.0,50.0,49.0,54.0,45.0,27.0,33.0,25.0,29.0,15.0,11.0,14.0,18.0,19.0,9.0,14.0,9.0,9.0,6.0,7.0,4.0,13.0,6.0,2.0,3.0,3.0,3.0,3.0,1.0,3.0,1.0,2.0,1.0,1.0,5.0 H84002,58.0,47.0,57.0,68.0,65.0,62.0,57.0,54.0,71.0,63.0,64.0,77.0,77.0,81.0,76.0,89.0,86.0,93.0,74.0,55.0,44.0,48.0,49.0,53.0,48.0,62.0,55.0,52.0,56.0,61.0,52.0,59.0,65.0,70.0,75.0,76.0,93.0,79.0,74.0,70.0,93.0,87.0,99.0,99.0,99.0,113.0,106.0,113.0,107.0,108.0,115.0,112.0,114.0,124.0,97.0,96.0,96.0,101.0,100.0,95.0,100.0,88.0,95.0,81.0,92.0,76.0,61.0,63.0,67.0,56.0,47.0,52.0,41.0,54.0,57.0,50.0,46.0,56.0,67.0,37.0,28.0,32.0,28.0,11.0,16.0,20.0,15.0,13.0,12.0,13.0,7.0,2.0,5.0,4.0,1.0,5.0 H84005,58.0,51.0,51.0,67.0,55.0,70.0,69.0,72.0,67.0,77.0,64.0,73.0,65.0,67.0,83.0,90.0,76.0,84.0,84.0,61.0,59.0,60.0,67.0,56.0,73.0,69.0,92.0,83.0,81.0,90.0,93.0,88.0,88.0,83.0,111.0,137.0,117.0,100.0,125.0,117.0,120.0,150.0,114.0,115.0,152.0,148.0,121.0,143.0,142.0,124.0,150.0,129.0,139.0,136.0,131.0,133.0,112.0,117.0,127.0,109.0,106.0,113.0,110.0,107.0,78.0,68.0,74.0,65.0,69.0,63.0,55.0,49.0,41.0,47.0,46.0,31.0,44.0,52.0,42.0,29.0,25.0,25.0,32.0,20.0,10.0,24.0,19.0,14.0,15.0,8.0,5.0,8.0,10.0,6.0,3.0,5.0 H84006,59.0,58.0,75.0,81.0,92.0,94.0,96.0,121.0,110.0,114.0,132.0,110.0,136.0,128.0,116.0,126.0,114.0,119.0,92.0,79.0,61.0,68.0,58.0,92.0,75.0,94.0,88.0,85.0,88.0,97.0,93.0,100.0,112.0,97.0,91.0,101.0,118.0,121.0,119.0,132.0,144.0,140.0,166.0,157.0,159.0,164.0,140.0,148.0,158.0,150.0,160.0,132.0,134.0,143.0,146.0,109.0,137.0,121.0,104.0,116.0,112.0,136.0,135.0,104.0,95.0,84.0,81.0,61.0,67.0,66.0,44.0,46.0,50.0,45.0,63.0,57.0,60.0,67.0,57.0,40.0,45.0,40.0,46.0,34.0,43.0,27.0,35.0,12.0,20.0,20.0,12.0,17.0,15.0,9.0,9.0,11.0 H84007,26.0,28.0,27.0,33.0,34.0,36.0,41.0,57.0,42.0,47.0,53.0,41.0,48.0,39.0,46.0,44.0,39.0,45.0,40.0,46.0,35.0,33.0,34.0,38.0,42.0,54.0,45.0,36.0,35.0,48.0,49.0,53.0,50.0,56.0,51.0,49.0,34.0,53.0,51.0,48.0,59.0,63.0,70.0,61.0,56.0,76.0,77.0,51.0,72.0,58.0,61.0,59.0,75.0,64.0,67.0,64.0,49.0,67.0,63.0,69.0,68.0,57.0,44.0,49.0,45.0,39.0,46.0,33.0,38.0,26.0,33.0,43.0,35.0,31.0,31.0,32.0,33.0,32.0,36.0,21.0,21.0,23.0,13.0,17.0,17.0,7.0,7.0,8.0,5.0,9.0,3.0,6.0,,4.0,,1.0 H84010,44.0,29.0,25.0,64.0,31.0,57.0,52.0,50.0,54.0,67.0,57.0,66.0,61.0,73.0,67.0,66.0,74.0,52.0,64.0,45.0,51.0,42.0,40.0,54.0,46.0,37.0,49.0,52.0,49.0,55.0,82.0,61.0,53.0,64.0,57.0,77.0,74.0,59.0,63.0,63.0,75.0,71.0,67.0,67.0,68.0,62.0,82.0,65.0,72.0,75.0,67.0,63.0,77.0,73.0,70.0,74.0,56.0,61.0,53.0,68.0,52.0,55.0,36.0,46.0,55.0,56.0,62.0,47.0,41.0,41.0,38.0,50.0,38.0,39.0,33.0,28.0,21.0,23.0,31.0,23.0,24.0,14.0,23.0,14.0,18.0,11.0,5.0,9.0,10.0,6.0,7.0,4.0,1.0,2.0,3.0,5.0 H84012,65.0,62.0,73.0,91.0,88.0,100.0,89.0,76.0,81.0,76.0,92.0,83.0,115.0,111.0,107.0,110.0,90.0,76.0,70.0,55.0,57.0,65.0,68.0,79.0,88.0,89.0,102.0,85.0,92.0,106.0,118.0,104.0,105.0,106.0,138.0,130.0,141.0,151.0,137.0,131.0,119.0,127.0,138.0,132.0,150.0,147.0,166.0,153.0,141.0,123.0,124.0,104.0,123.0,98.0,110.0,87.0,71.0,78.0,78.0,73.0,79.0,63.0,53.0,59.0,41.0,52.0,50.0,61.0,47.0,43.0,42.0,52.0,45.0,51.0,43.0,38.0,46.0,56.0,42.0,33.0,35.0,31.0,24.0,17.0,11.0,17.0,13.0,15.0,6.0,10.0,10.0,7.0,2.0,2.0,2.0,4.0 H84014,3.0,6.0,3.0,10.0,6.0,12.0,14.0,14.0,6.0,16.0,10.0,16.0,18.0,14.0,16.0,10.0,12.0,14.0,9.0,6.0,14.0,8.0,4.0,9.0,4.0,7.0,19.0,15.0,9.0,10.0,20.0,14.0,15.0,15.0,16.0,24.0,18.0,18.0,19.0,22.0,18.0,23.0,19.0,24.0,30.0,19.0,29.0,26.0,44.0,33.0,36.0,30.0,28.0,42.0,33.0,28.0,25.0,20.0,23.0,21.0,12.0,19.0,24.0,16.0,16.0,14.0,13.0,18.0,6.0,6.0,14.0,10.0,9.0,7.0,6.0,12.0,5.0,11.0,17.0,8.0,8.0,4.0,3.0,7.0,6.0,2.0,4.0,5.0,3.0,2.0,,,,2.0,2.0,2.0 H84015,48.0,44.0,49.0,58.0,42.0,46.0,63.0,61.0,60.0,53.0,69.0,56.0,48.0,52.0,46.0,53.0,64.0,52.0,59.0,32.0,43.0,31.0,31.0,38.0,32.0,58.0,44.0,48.0,65.0,63.0,60.0,65.0,73.0,86.0,77.0,89.0,79.0,80.0,84.0,86.0,85.0,82.0,89.0,76.0,88.0,80.0,81.0,75.0,72.0,72.0,70.0,66.0,56.0,59.0,61.0,67.0,63.0,61.0,54.0,63.0,54.0,40.0,46.0,40.0,33.0,42.0,30.0,21.0,38.0,36.0,30.0,23.0,21.0,21.0,40.0,14.0,19.0,15.0,18.0,28.0,17.0,9.0,13.0,15.0,6.0,19.0,8.0,5.0,11.0,7.0,1.0,2.0,2.0,2.0,1.0,8.0 H84016,48.0,60.0,47.0,56.0,69.0,77.0,79.0,85.0,91.0,103.0,105.0,88.0,94.0,105.0,123.0,128.0,126.0,143.0,102.0,107.0,96.0,105.0,104.0,111.0,106.0,93.0,107.0,87.0,93.0,112.0,95.0,92.0,84.0,87.0,100.0,87.0,100.0,97.0,98.0,116.0,100.0,110.0,127.0,117.0,117.0,126.0,115.0,153.0,140.0,127.0,115.0,142.0,130.0,117.0,128.0,113.0,134.0,115.0,117.0,116.0,104.0,109.0,96.0,104.0,101.0,100.0,80.0,75.0,73.0,67.0,61.0,70.0,74.0,60.0,61.0,74.0,58.0,60.0,56.0,35.0,44.0,58.0,34.0,30.0,34.0,19.0,18.0,29.0,20.0,12.0,11.0,11.0,12.0,8.0,11.0,25.0 H84017,27.0,33.0,31.0,49.0,43.0,40.0,76.0,73.0,76.0,76.0,94.0,96.0,116.0,90.0,116.0,102.0,113.0,92.0,84.0,71.0,71.0,59.0,65.0,63.0,86.0,105.0,90.0,86.0,78.0,75.0,73.0,65.0,85.0,84.0,79.0,71.0,93.0,68.0,61.0,81.0,98.0,92.0,88.0,94.0,122.0,97.0,114.0,122.0,127.0,101.0,95.0,109.0,116.0,115.0,94.0,98.0,104.0,83.0,96.0,85.0,70.0,93.0,83.0,85.0,68.0,65.0,53.0,59.0,65.0,52.0,41.0,52.0,37.0,54.0,45.0,62.0,48.0,50.0,51.0,43.0,57.0,26.0,23.0,19.0,24.0,18.0,20.0,20.0,14.0,14.0,7.0,11.0,9.0,3.0,3.0,11.0 H84018,28.0,43.0,32.0,42.0,49.0,52.0,50.0,46.0,41.0,45.0,45.0,48.0,44.0,53.0,41.0,53.0,39.0,37.0,39.0,26.0,16.0,26.0,28.0,34.0,33.0,38.0,35.0,31.0,30.0,31.0,27.0,42.0,29.0,50.0,48.0,42.0,66.0,60.0,60.0,54.0,53.0,58.0,58.0,41.0,55.0,41.0,60.0,64.0,57.0,52.0,61.0,54.0,48.0,41.0,53.0,27.0,42.0,49.0,45.0,38.0,38.0,53.0,44.0,43.0,20.0,26.0,28.0,35.0,31.0,23.0,23.0,24.0,28.0,32.0,27.0,29.0,28.0,31.0,27.0,24.0,19.0,16.0,9.0,7.0,9.0,9.0,8.0,9.0,2.0,5.0,1.0,7.0,3.0,1.0,4.0,2.0 H84020,54.0,60.0,59.0,68.0,72.0,78.0,70.0,84.0,104.0,92.0,103.0,95.0,94.0,76.0,113.0,101.0,87.0,90.0,123.0,158.0,234.0,250.0,236.0,273.0,306.0,307.0,334.0,339.0,363.0,367.0,367.0,350.0,325.0,324.0,301.0,225.0,227.0,187.0,166.0,154.0,154.0,131.0,150.0,157.0,148.0,151.0,134.0,161.0,136.0,131.0,152.0,123.0,131.0,126.0,103.0,122.0,115.0,81.0,90.0,101.0,96.0,84.0,62.0,53.0,57.0,62.0,64.0,53.0,35.0,59.0,51.0,40.0,37.0,44.0,35.0,22.0,41.0,39.0,45.0,28.0,24.0,29.0,24.0,24.0,12.0,14.0,11.0,5.0,11.0,9.0,8.0,8.0,7.0,1.0,4.0,7.0 H84023,88.0,81.0,77.0,86.0,85.0,75.0,73.0,66.0,78.0,68.0,87.0,90.0,86.0,76.0,101.0,77.0,74.0,74.0,60.0,55.0,60.0,52.0,47.0,64.0,77.0,77.0,69.0,77.0,73.0,88.0,78.0,111.0,101.0,115.0,113.0,104.0,97.0,99.0,106.0,93.0,90.0,101.0,113.0,94.0,108.0,113.0,122.0,102.0,96.0,119.0,103.0,106.0,106.0,121.0,117.0,90.0,101.0,81.0,102.0,91.0,91.0,79.0,70.0,69.0,56.0,53.0,58.0,58.0,51.0,34.0,36.0,44.0,28.0,33.0,38.0,32.0,35.0,29.0,39.0,25.0,29.0,23.0,20.0,17.0,18.0,6.0,15.0,7.0,6.0,5.0,5.0,3.0,4.0,2.0,4.0,3.0 H84025,44.0,33.0,34.0,40.0,46.0,46.0,43.0,51.0,56.0,75.0,61.0,45.0,50.0,60.0,48.0,48.0,63.0,47.0,53.0,39.0,39.0,38.0,39.0,40.0,39.0,41.0,33.0,29.0,39.0,43.0,38.0,43.0,57.0,42.0,49.0,48.0,57.0,53.0,62.0,77.0,58.0,62.0,53.0,51.0,80.0,57.0,62.0,57.0,66.0,58.0,70.0,56.0,54.0,57.0,47.0,61.0,44.0,51.0,47.0,51.0,38.0,39.0,41.0,38.0,26.0,28.0,32.0,29.0,41.0,25.0,21.0,24.0,19.0,21.0,25.0,16.0,19.0,26.0,18.0,20.0,16.0,17.0,12.0,8.0,13.0,12.0,10.0,8.0,9.0,6.0,1.0,3.0,3.0,4.0,2.0,1.0 H84027,67.0,65.0,75.0,81.0,95.0,96.0,95.0,108.0,109.0,135.0,140.0,123.0,149.0,135.0,137.0,132.0,158.0,130.0,99.0,103.0,85.0,73.0,88.0,95.0,90.0,82.0,90.0,85.0,106.0,122.0,113.0,114.0,132.0,152.0,166.0,165.0,141.0,157.0,173.0,159.0,190.0,177.0,184.0,161.0,192.0,157.0,176.0,196.0,167.0,156.0,199.0,170.0,164.0,165.0,138.0,131.0,144.0,120.0,100.0,120.0,104.0,92.0,83.0,80.0,81.0,82.0,72.0,78.0,64.0,61.0,48.0,61.0,51.0,64.0,52.0,41.0,47.0,48.0,45.0,39.0,28.0,40.0,24.0,25.0,17.0,11.0,14.0,13.0,9.0,10.0,11.0,5.0,5.0,4.0,4.0,5.0 H84030,48.0,43.0,49.0,44.0,53.0,60.0,61.0,67.0,55.0,67.0,71.0,82.0,70.0,81.0,84.0,72.0,85.0,82.0,71.0,56.0,63.0,67.0,55.0,59.0,69.0,72.0,76.0,66.0,70.0,69.0,65.0,75.0,77.0,77.0,90.0,77.0,89.0,78.0,63.0,75.0,97.0,85.0,81.0,98.0,95.0,85.0,95.0,76.0,90.0,88.0,97.0,105.0,103.0,101.0,102.0,102.0,91.0,95.0,93.0,106.0,84.0,77.0,78.0,75.0,76.0,78.0,63.0,68.0,74.0,68.0,57.0,51.0,56.0,53.0,57.0,63.0,57.0,53.0,53.0,60.0,37.0,41.0,45.0,31.0,26.0,28.0,30.0,24.0,17.0,17.0,10.0,13.0,9.0,4.0,2.0,12.0 H84031,20.0,30.0,18.0,34.0,25.0,28.0,31.0,32.0,42.0,43.0,40.0,39.0,58.0,41.0,48.0,46.0,53.0,36.0,46.0,29.0,28.0,30.0,38.0,32.0,35.0,37.0,31.0,34.0,25.0,26.0,30.0,20.0,26.0,34.0,31.0,26.0,30.0,42.0,34.0,39.0,32.0,43.0,34.0,42.0,51.0,38.0,41.0,40.0,51.0,53.0,38.0,43.0,35.0,42.0,36.0,55.0,40.0,34.0,31.0,31.0,32.0,33.0,34.0,33.0,29.0,31.0,22.0,20.0,20.0,27.0,28.0,16.0,32.0,17.0,19.0,19.0,18.0,25.0,29.0,14.0,27.0,19.0,12.0,12.0,7.0,6.0,11.0,6.0,4.0,3.0,6.0,4.0,3.0,4.0,2.0,1.0 H84032,26.0,20.0,25.0,37.0,26.0,36.0,38.0,47.0,45.0,51.0,54.0,49.0,43.0,48.0,58.0,65.0,61.0,61.0,53.0,50.0,51.0,42.0,45.0,43.0,47.0,40.0,39.0,45.0,49.0,54.0,44.0,43.0,51.0,40.0,43.0,46.0,59.0,44.0,56.0,50.0,66.0,55.0,72.0,68.0,59.0,76.0,92.0,83.0,80.0,81.0,106.0,90.0,91.0,98.0,88.0,85.0,74.0,83.0,75.0,70.0,74.0,79.0,61.0,59.0,61.0,56.0,54.0,50.0,57.0,50.0,34.0,34.0,52.0,38.0,41.0,39.0,29.0,34.0,36.0,33.0,32.0,28.0,24.0,9.0,22.0,21.0,21.0,15.0,10.0,5.0,8.0,5.0,4.0,5.0,3.0,11.0 H84033,19.0,15.0,19.0,15.0,15.0,24.0,28.0,25.0,37.0,36.0,34.0,54.0,72.0,52.0,56.0,47.0,50.0,50.0,56.0,43.0,39.0,28.0,35.0,40.0,45.0,28.0,35.0,28.0,38.0,23.0,33.0,22.0,22.0,19.0,34.0,29.0,36.0,22.0,26.0,33.0,31.0,30.0,33.0,32.0,43.0,48.0,60.0,49.0,46.0,54.0,55.0,47.0,50.0,55.0,60.0,70.0,48.0,42.0,50.0,48.0,63.0,56.0,52.0,49.0,56.0,33.0,44.0,42.0,35.0,37.0,28.0,30.0,27.0,24.0,32.0,37.0,24.0,33.0,26.0,27.0,22.0,20.0,19.0,13.0,13.0,11.0,11.0,7.0,10.0,8.0,7.0,8.0,6.0,2.0,1.0,2.0 H84034,33.0,36.0,42.0,46.0,49.0,48.0,37.0,54.0,40.0,52.0,57.0,48.0,53.0,50.0,60.0,55.0,45.0,46.0,55.0,48.0,45.0,48.0,48.0,36.0,44.0,49.0,54.0,56.0,55.0,59.0,58.0,55.0,54.0,67.0,62.0,79.0,67.0,61.0,65.0,70.0,70.0,75.0,81.0,84.0,68.0,78.0,65.0,68.0,49.0,57.0,55.0,62.0,51.0,51.0,65.0,58.0,53.0,51.0,78.0,61.0,55.0,59.0,56.0,51.0,51.0,39.0,32.0,54.0,41.0,42.0,32.0,33.0,31.0,34.0,32.0,29.0,32.0,37.0,36.0,27.0,24.0,24.0,26.0,11.0,11.0,12.0,16.0,7.0,13.0,10.0,2.0,1.0,,1.0,3.0,3.0 H84039,36.0,37.0,53.0,50.0,53.0,56.0,54.0,69.0,76.0,81.0,78.0,60.0,77.0,70.0,74.0,88.0,80.0,85.0,78.0,58.0,52.0,59.0,61.0,58.0,60.0,55.0,55.0,49.0,48.0,52.0,58.0,57.0,61.0,58.0,56.0,66.0,62.0,67.0,91.0,80.0,84.0,73.0,94.0,96.0,124.0,102.0,114.0,102.0,98.0,99.0,130.0,102.0,103.0,121.0,110.0,80.0,87.0,90.0,79.0,106.0,87.0,66.0,76.0,69.0,60.0,54.0,44.0,59.0,43.0,35.0,50.0,47.0,51.0,52.0,42.0,54.0,32.0,45.0,37.0,31.0,28.0,29.0,22.0,15.0,17.0,13.0,12.0,15.0,8.0,6.0,10.0,9.0,4.0,5.0,2.0,2.0 H84040,32.0,46.0,50.0,53.0,54.0,54.0,60.0,71.0,61.0,71.0,76.0,80.0,82.0,89.0,87.0,68.0,82.0,76.0,60.0,48.0,44.0,65.0,61.0,49.0,63.0,54.0,64.0,58.0,52.0,58.0,59.0,61.0,55.0,51.0,57.0,54.0,64.0,64.0,68.0,84.0,73.0,78.0,84.0,96.0,91.0,71.0,94.0,92.0,104.0,90.0,76.0,71.0,68.0,91.0,84.0,74.0,89.0,70.0,73.0,88.0,92.0,91.0,89.0,71.0,65.0,68.0,78.0,57.0,68.0,52.0,52.0,62.0,49.0,54.0,60.0,56.0,40.0,62.0,51.0,52.0,39.0,49.0,34.0,26.0,23.0,17.0,20.0,17.0,13.0,14.0,8.0,11.0,9.0,2.0,6.0,9.0 H84041,31.0,33.0,46.0,38.0,50.0,41.0,50.0,49.0,72.0,45.0,68.0,50.0,47.0,49.0,63.0,44.0,36.0,46.0,26.0,24.0,18.0,15.0,37.0,19.0,25.0,37.0,39.0,52.0,53.0,56.0,38.0,67.0,65.0,57.0,64.0,80.0,51.0,86.0,75.0,76.0,82.0,78.0,81.0,83.0,101.0,73.0,77.0,83.0,67.0,61.0,62.0,62.0,53.0,45.0,46.0,37.0,36.0,50.0,38.0,37.0,38.0,36.0,29.0,34.0,23.0,36.0,17.0,26.0,21.0,14.0,10.0,15.0,9.0,22.0,9.0,18.0,20.0,10.0,15.0,11.0,8.0,10.0,4.0,7.0,5.0,7.0,9.0,6.0,,2.0,2.0,2.0,1.0,2.0,1.0, H84042,47.0,64.0,51.0,62.0,82.0,82.0,69.0,75.0,91.0,86.0,91.0,85.0,114.0,78.0,101.0,84.0,79.0,108.0,55.0,59.0,59.0,65.0,56.0,71.0,74.0,70.0,91.0,79.0,89.0,76.0,103.0,82.0,73.0,83.0,72.0,91.0,100.0,96.0,132.0,115.0,102.0,134.0,121.0,107.0,133.0,126.0,141.0,125.0,114.0,118.0,110.0,107.0,119.0,113.0,99.0,90.0,97.0,111.0,73.0,105.0,88.0,82.0,69.0,80.0,57.0,61.0,55.0,62.0,45.0,38.0,38.0,51.0,47.0,53.0,40.0,42.0,49.0,44.0,45.0,23.0,32.0,27.0,23.0,16.0,25.0,26.0,13.0,10.0,8.0,10.0,10.0,7.0,9.0,5.0,3.0,5.0 H84044,27.0,26.0,29.0,43.0,39.0,40.0,31.0,51.0,63.0,51.0,57.0,77.0,65.0,76.0,67.0,84.0,65.0,70.0,66.0,51.0,39.0,38.0,37.0,32.0,32.0,39.0,39.0,42.0,37.0,40.0,35.0,47.0,55.0,51.0,54.0,55.0,57.0,56.0,57.0,58.0,58.0,58.0,53.0,65.0,68.0,65.0,74.0,62.0,60.0,82.0,73.0,73.0,66.0,65.0,85.0,74.0,56.0,61.0,49.0,60.0,59.0,59.0,37.0,42.0,36.0,49.0,30.0,29.0,20.0,24.0,28.0,23.0,24.0,16.0,17.0,25.0,23.0,23.0,23.0,15.0,16.0,19.0,7.0,21.0,7.0,7.0,5.0,8.0,7.0,2.0,4.0,2.0,1.0,3.0,,4.0 H84048,24.0,28.0,31.0,40.0,43.0,49.0,61.0,45.0,50.0,74.0,63.0,66.0,50.0,77.0,72.0,69.0,68.0,63.0,51.0,42.0,39.0,27.0,38.0,39.0,31.0,46.0,39.0,36.0,32.0,36.0,33.0,37.0,35.0,52.0,50.0,52.0,66.0,55.0,74.0,65.0,58.0,67.0,78.0,84.0,77.0,62.0,72.0,109.0,87.0,87.0,83.0,86.0,59.0,79.0,67.0,66.0,68.0,71.0,74.0,59.0,50.0,50.0,58.0,39.0,39.0,45.0,37.0,33.0,28.0,29.0,22.0,21.0,16.0,16.0,17.0,27.0,17.0,20.0,30.0,10.0,19.0,19.0,17.0,16.0,7.0,7.0,8.0,15.0,6.0,8.0,7.0,9.0,3.0,,2.0,5.0 H84050,31.0,44.0,55.0,48.0,39.0,39.0,51.0,52.0,44.0,63.0,48.0,46.0,47.0,41.0,53.0,53.0,48.0,53.0,40.0,37.0,37.0,42.0,39.0,40.0,39.0,47.0,48.0,54.0,40.0,55.0,56.0,38.0,45.0,56.0,58.0,70.0,59.0,69.0,64.0,55.0,58.0,55.0,54.0,46.0,55.0,57.0,57.0,48.0,45.0,42.0,41.0,56.0,40.0,56.0,42.0,51.0,31.0,52.0,41.0,53.0,43.0,51.0,42.0,49.0,45.0,44.0,37.0,24.0,28.0,38.0,32.0,37.0,25.0,34.0,18.0,31.0,21.0,32.0,35.0,13.0,26.0,14.0,25.0,8.0,13.0,12.0,3.0,6.0,8.0,8.0,6.0,1.0,,4.0,1.0,2.0 H84051,28.0,30.0,42.0,39.0,44.0,29.0,45.0,45.0,39.0,44.0,43.0,46.0,62.0,42.0,48.0,48.0,36.0,42.0,40.0,46.0,32.0,57.0,41.0,43.0,53.0,41.0,45.0,58.0,54.0,53.0,58.0,55.0,60.0,75.0,73.0,63.0,76.0,65.0,75.0,51.0,55.0,61.0,58.0,55.0,66.0,61.0,59.0,63.0,65.0,53.0,60.0,64.0,57.0,57.0,57.0,54.0,54.0,51.0,42.0,58.0,52.0,35.0,52.0,41.0,34.0,37.0,28.0,25.0,23.0,26.0,26.0,18.0,17.0,19.0,26.0,20.0,22.0,17.0,25.0,9.0,11.0,15.0,17.0,7.0,10.0,3.0,6.0,5.0,4.0,6.0,1.0,3.0,4.0,3.0,3.0,3.0 H84053,41.0,26.0,31.0,25.0,29.0,27.0,19.0,23.0,32.0,32.0,30.0,22.0,34.0,27.0,29.0,23.0,27.0,28.0,24.0,23.0,25.0,21.0,27.0,28.0,17.0,32.0,40.0,41.0,41.0,53.0,61.0,45.0,61.0,49.0,45.0,66.0,52.0,54.0,37.0,44.0,52.0,47.0,44.0,45.0,42.0,49.0,39.0,47.0,38.0,32.0,35.0,34.0,35.0,26.0,34.0,39.0,36.0,29.0,31.0,20.0,29.0,30.0,19.0,23.0,27.0,24.0,22.0,17.0,12.0,16.0,21.0,9.0,16.0,22.0,30.0,19.0,15.0,18.0,19.0,16.0,6.0,14.0,11.0,10.0,13.0,5.0,9.0,2.0,6.0,3.0,2.0,1.0,1.0,1.0,,5.0 H84054,10.0,11.0,22.0,14.0,13.0,18.0,19.0,25.0,18.0,18.0,17.0,18.0,28.0,26.0,18.0,21.0,30.0,15.0,15.0,20.0,13.0,23.0,30.0,29.0,33.0,30.0,32.0,41.0,30.0,30.0,42.0,34.0,49.0,38.0,33.0,33.0,44.0,36.0,40.0,39.0,30.0,31.0,37.0,40.0,36.0,33.0,37.0,27.0,31.0,31.0,35.0,38.0,35.0,39.0,34.0,24.0,28.0,25.0,20.0,25.0,21.0,25.0,10.0,20.0,17.0,18.0,14.0,20.0,18.0,12.0,8.0,10.0,8.0,14.0,9.0,11.0,11.0,11.0,13.0,6.0,6.0,11.0,2.0,1.0,5.0,4.0,3.0,2.0,5.0,7.0,4.0,2.0,2.0,,1.0,1.0 H84055,44.0,54.0,59.0,59.0,60.0,51.0,74.0,75.0,73.0,82.0,96.0,76.0,83.0,85.0,83.0,86.0,63.0,84.0,64.0,44.0,57.0,52.0,55.0,53.0,47.0,71.0,53.0,80.0,71.0,55.0,72.0,69.0,63.0,67.0,80.0,87.0,80.0,97.0,67.0,81.0,90.0,95.0,89.0,104.0,98.0,106.0,111.0,121.0,97.0,121.0,109.0,96.0,95.0,84.0,79.0,87.0,83.0,79.0,80.0,74.0,72.0,63.0,57.0,46.0,64.0,38.0,54.0,51.0,46.0,55.0,47.0,37.0,41.0,41.0,46.0,37.0,42.0,41.0,41.0,29.0,46.0,23.0,29.0,18.0,24.0,15.0,17.0,10.0,11.0,7.0,5.0,5.0,2.0,3.0,5.0,4.0 H84057,7.0,20.0,16.0,29.0,27.0,20.0,30.0,26.0,37.0,22.0,33.0,22.0,29.0,25.0,23.0,24.0,34.0,15.0,28.0,16.0,24.0,13.0,10.0,9.0,17.0,16.0,20.0,27.0,19.0,24.0,12.0,16.0,15.0,29.0,21.0,26.0,32.0,29.0,25.0,35.0,40.0,24.0,37.0,33.0,47.0,40.0,41.0,37.0,31.0,35.0,43.0,30.0,33.0,34.0,33.0,27.0,23.0,25.0,22.0,30.0,21.0,24.0,22.0,23.0,14.0,11.0,19.0,16.0,16.0,16.0,9.0,7.0,10.0,9.0,8.0,13.0,6.0,13.0,9.0,6.0,8.0,10.0,5.0,5.0,2.0,5.0,1.0,,3.0,1.0,,,,1.0,,2.0 H84059,30.0,22.0,20.0,29.0,16.0,17.0,27.0,16.0,33.0,33.0,30.0,46.0,32.0,40.0,29.0,24.0,34.0,33.0,29.0,22.0,32.0,23.0,27.0,22.0,32.0,30.0,34.0,31.0,28.0,34.0,27.0,28.0,37.0,33.0,36.0,35.0,40.0,34.0,44.0,38.0,40.0,38.0,38.0,37.0,44.0,47.0,24.0,38.0,44.0,43.0,40.0,38.0,37.0,47.0,41.0,38.0,47.0,42.0,31.0,46.0,32.0,37.0,32.0,42.0,21.0,21.0,24.0,22.0,16.0,9.0,13.0,12.0,10.0,13.0,6.0,11.0,14.0,13.0,8.0,7.0,19.0,12.0,7.0,9.0,5.0,8.0,6.0,4.0,6.0,1.0,1.0,5.0,1.0,2.0,2.0,2.0 H84060,18.0,35.0,38.0,29.0,38.0,46.0,58.0,47.0,60.0,63.0,65.0,67.0,77.0,68.0,53.0,86.0,60.0,46.0,52.0,36.0,37.0,38.0,36.0,32.0,35.0,27.0,31.0,26.0,18.0,40.0,27.0,48.0,30.0,33.0,38.0,35.0,40.0,48.0,44.0,44.0,53.0,55.0,61.0,61.0,79.0,60.0,84.0,66.0,81.0,68.0,74.0,72.0,64.0,76.0,68.0,48.0,63.0,52.0,44.0,50.0,56.0,38.0,52.0,46.0,31.0,40.0,35.0,19.0,31.0,43.0,30.0,21.0,15.0,23.0,25.0,27.0,18.0,28.0,21.0,30.0,20.0,14.0,6.0,10.0,8.0,7.0,3.0,5.0,8.0,4.0,3.0,1.0,2.0,,3.0,2.0 H84061,138.0,137.0,161.0,172.0,165.0,164.0,168.0,200.0,159.0,189.0,191.0,186.0,184.0,202.0,194.0,166.0,152.0,122.0,109.0,122.0,121.0,153.0,129.0,176.0,192.0,174.0,179.0,238.0,188.0,237.0,259.0,241.0,246.0,292.0,238.0,295.0,280.0,287.0,260.0,271.0,254.0,253.0,263.0,280.0,280.0,264.0,250.0,255.0,239.0,211.0,212.0,199.0,187.0,197.0,175.0,153.0,151.0,125.0,102.0,112.0,120.0,126.0,86.0,65.0,77.0,62.0,64.0,54.0,61.0,51.0,36.0,57.0,31.0,53.0,39.0,34.0,47.0,40.0,37.0,33.0,18.0,13.0,14.0,9.0,9.0,13.0,5.0,12.0,5.0,6.0,6.0,1.0,5.0,1.0,4.0,3.0 H84062,41.0,40.0,47.0,51.0,40.0,44.0,50.0,46.0,47.0,55.0,60.0,63.0,51.0,55.0,43.0,48.0,48.0,39.0,35.0,38.0,38.0,39.0,25.0,47.0,46.0,47.0,48.0,42.0,54.0,63.0,70.0,78.0,67.0,94.0,71.0,83.0,74.0,80.0,74.0,60.0,74.0,78.0,81.0,72.0,77.0,63.0,69.0,57.0,68.0,71.0,71.0,55.0,70.0,62.0,53.0,60.0,67.0,62.0,50.0,42.0,44.0,46.0,61.0,44.0,36.0,47.0,37.0,31.0,30.0,34.0,24.0,29.0,30.0,27.0,36.0,22.0,19.0,21.0,29.0,18.0,22.0,21.0,12.0,13.0,12.0,11.0,8.0,10.0,8.0,9.0,11.0,6.0,5.0,5.0,2.0,5.0 H84618,15.0,23.0,17.0,25.0,26.0,32.0,32.0,39.0,33.0,32.0,32.0,35.0,38.0,37.0,47.0,46.0,43.0,34.0,38.0,27.0,25.0,33.0,40.0,32.0,35.0,40.0,41.0,38.0,29.0,36.0,32.0,39.0,36.0,36.0,43.0,53.0,38.0,53.0,49.0,38.0,53.0,49.0,52.0,56.0,47.0,38.0,53.0,40.0,37.0,42.0,51.0,33.0,40.0,46.0,32.0,32.0,47.0,32.0,38.0,33.0,43.0,30.0,41.0,36.0,25.0,23.0,34.0,23.0,20.0,10.0,19.0,33.0,13.0,16.0,15.0,11.0,17.0,11.0,9.0,8.0,8.0,5.0,13.0,4.0,2.0,5.0,5.0,2.0,,2.0,3.0,2.0,1.0,1.0,,1.0 H84619,49.0,54.0,54.0,56.0,51.0,54.0,76.0,61.0,74.0,73.0,71.0,70.0,71.0,66.0,60.0,49.0,46.0,63.0,43.0,34.0,38.0,35.0,33.0,50.0,37.0,61.0,61.0,54.0,64.0,71.0,74.0,85.0,89.0,96.0,94.0,90.0,103.0,94.0,115.0,124.0,121.0,108.0,123.0,123.0,129.0,141.0,138.0,146.0,121.0,109.0,102.0,99.0,119.0,95.0,101.0,73.0,85.0,77.0,64.0,62.0,58.0,65.0,47.0,43.0,43.0,35.0,44.0,38.0,28.0,28.0,37.0,17.0,23.0,31.0,19.0,15.0,24.0,20.0,22.0,15.0,15.0,13.0,13.0,12.0,7.0,8.0,4.0,5.0,7.0,6.0,6.0,2.0,,2.0,1.0,1.0 H84623,31.0,35.0,36.0,36.0,41.0,34.0,37.0,49.0,45.0,45.0,41.0,51.0,67.0,69.0,66.0,87.0,64.0,70.0,55.0,36.0,37.0,40.0,38.0,39.0,50.0,38.0,47.0,52.0,45.0,45.0,51.0,43.0,54.0,53.0,54.0,53.0,56.0,65.0,64.0,60.0,57.0,63.0,55.0,56.0,71.0,69.0,66.0,63.0,82.0,71.0,84.0,66.0,74.0,73.0,76.0,54.0,58.0,58.0,52.0,58.0,64.0,47.0,49.0,43.0,53.0,41.0,39.0,42.0,35.0,33.0,28.0,33.0,33.0,29.0,24.0,31.0,27.0,31.0,36.0,22.0,16.0,19.0,7.0,11.0,9.0,8.0,9.0,7.0,7.0,6.0,5.0,6.0,6.0,,3.0,5.0 H84625,14.0,25.0,23.0,18.0,32.0,22.0,26.0,36.0,25.0,32.0,31.0,36.0,36.0,33.0,44.0,39.0,37.0,37.0,47.0,41.0,43.0,34.0,28.0,38.0,25.0,29.0,31.0,28.0,35.0,22.0,26.0,32.0,41.0,32.0,34.0,34.0,41.0,39.0,32.0,47.0,31.0,43.0,32.0,42.0,42.0,47.0,47.0,45.0,51.0,41.0,49.0,44.0,46.0,47.0,32.0,38.0,38.0,28.0,30.0,32.0,38.0,30.0,47.0,20.0,21.0,30.0,22.0,14.0,29.0,18.0,19.0,18.0,16.0,21.0,15.0,16.0,15.0,13.0,12.0,12.0,8.0,11.0,6.0,9.0,12.0,4.0,5.0,8.0,2.0,7.0,1.0,,2.0,1.0,2.0,4.0 H84630,19.0,17.0,22.0,24.0,23.0,38.0,30.0,24.0,32.0,32.0,33.0,30.0,28.0,21.0,22.0,24.0,35.0,24.0,21.0,26.0,20.0,11.0,17.0,19.0,15.0,29.0,29.0,15.0,21.0,26.0,14.0,24.0,30.0,28.0,12.0,30.0,29.0,40.0,30.0,33.0,34.0,43.0,33.0,40.0,30.0,34.0,46.0,25.0,32.0,32.0,42.0,36.0,32.0,28.0,21.0,17.0,27.0,19.0,23.0,24.0,22.0,25.0,18.0,26.0,20.0,16.0,13.0,12.0,9.0,12.0,9.0,8.0,4.0,12.0,12.0,10.0,7.0,5.0,4.0,9.0,3.0,3.0,7.0,3.0,2.0,2.0,3.0,3.0,,2.0,1.0,,1.0,1.0,,1.0 H84635,99.0,91.0,105.0,123.0,99.0,126.0,108.0,121.0,118.0,100.0,111.0,118.0,116.0,124.0,117.0,89.0,96.0,85.0,76.0,79.0,73.0,65.0,55.0,69.0,63.0,81.0,71.0,88.0,73.0,87.0,78.0,79.0,84.0,102.0,76.0,107.0,124.0,127.0,133.0,149.0,134.0,136.0,143.0,149.0,158.0,148.0,145.0,156.0,123.0,152.0,122.0,127.0,104.0,110.0,107.0,103.0,84.0,80.0,87.0,81.0,73.0,111.0,102.0,61.0,59.0,63.0,67.0,70.0,47.0,58.0,51.0,63.0,62.0,40.0,56.0,57.0,49.0,66.0,69.0,40.0,45.0,37.0,37.0,28.0,28.0,30.0,19.0,18.0,19.0,17.0,10.0,5.0,10.0,3.0,3.0,6.0 H84639,26.0,32.0,30.0,28.0,28.0,27.0,25.0,42.0,53.0,39.0,45.0,46.0,37.0,38.0,39.0,35.0,31.0,38.0,33.0,33.0,25.0,27.0,31.0,24.0,35.0,31.0,43.0,37.0,44.0,50.0,49.0,37.0,48.0,67.0,52.0,50.0,56.0,57.0,59.0,59.0,75.0,68.0,66.0,85.0,58.0,59.0,70.0,61.0,63.0,61.0,59.0,52.0,48.0,45.0,49.0,32.0,44.0,27.0,26.0,39.0,51.0,37.0,23.0,24.0,19.0,24.0,22.0,21.0,16.0,21.0,18.0,5.0,13.0,8.0,12.0,8.0,20.0,13.0,7.0,7.0,5.0,10.0,4.0,4.0,5.0,3.0,1.0,2.0,1.0,2.0,,1.0,,,, H85001,92.0,76.0,76.0,56.0,63.0,56.0,72.0,68.0,81.0,77.0,74.0,77.0,80.0,68.0,72.0,67.0,61.0,82.0,78.0,62.0,69.0,76.0,61.0,83.0,116.0,164.0,217.0,248.0,264.0,294.0,288.0,286.0,272.0,292.0,280.0,289.0,297.0,290.0,282.0,259.0,259.0,258.0,280.0,269.0,225.0,226.0,193.0,176.0,134.0,139.0,143.0,98.0,88.0,112.0,81.0,84.0,79.0,52.0,59.0,63.0,54.0,59.0,62.0,31.0,40.0,39.0,32.0,32.0,31.0,22.0,34.0,26.0,23.0,24.0,22.0,25.0,17.0,25.0,15.0,18.0,13.0,13.0,9.0,12.0,5.0,7.0,3.0,10.0,2.0,2.0,3.0,2.0,4.0,2.0,3.0,4.0 H85002,39.0,54.0,40.0,41.0,41.0,41.0,43.0,46.0,47.0,40.0,54.0,47.0,53.0,37.0,47.0,53.0,56.0,50.0,51.0,54.0,54.0,56.0,80.0,97.0,132.0,142.0,176.0,181.0,176.0,172.0,144.0,139.0,129.0,135.0,145.0,133.0,100.0,117.0,115.0,113.0,88.0,112.0,105.0,100.0,102.0,118.0,87.0,81.0,65.0,68.0,70.0,68.0,65.0,58.0,64.0,65.0,74.0,63.0,55.0,54.0,56.0,45.0,47.0,50.0,40.0,37.0,32.0,26.0,35.0,21.0,30.0,20.0,19.0,15.0,20.0,12.0,6.0,13.0,18.0,7.0,8.0,10.0,11.0,12.0,8.0,9.0,9.0,3.0,5.0,2.0,1.0,3.0,1.0,1.0,3.0,4.0 H85003,18.0,27.0,18.0,28.0,20.0,21.0,31.0,27.0,26.0,30.0,28.0,30.0,40.0,24.0,22.0,31.0,27.0,21.0,30.0,24.0,23.0,31.0,31.0,39.0,46.0,79.0,96.0,90.0,109.0,89.0,86.0,76.0,71.0,81.0,94.0,77.0,71.0,71.0,74.0,70.0,84.0,78.0,65.0,73.0,72.0,78.0,57.0,54.0,53.0,53.0,59.0,50.0,54.0,61.0,39.0,44.0,32.0,41.0,41.0,37.0,46.0,38.0,43.0,51.0,31.0,30.0,30.0,32.0,18.0,28.0,26.0,16.0,16.0,15.0,24.0,12.0,21.0,19.0,15.0,12.0,12.0,4.0,8.0,7.0,4.0,7.0,4.0,7.0,4.0,2.0,1.0,2.0,,,1.0,2.0 H85006,27.0,30.0,26.0,28.0,26.0,34.0,34.0,35.0,39.0,45.0,44.0,41.0,59.0,48.0,43.0,45.0,37.0,54.0,31.0,43.0,36.0,40.0,53.0,50.0,53.0,49.0,65.0,44.0,51.0,49.0,53.0,54.0,65.0,57.0,54.0,63.0,63.0,63.0,64.0,55.0,66.0,62.0,68.0,61.0,74.0,65.0,60.0,63.0,53.0,48.0,53.0,55.0,51.0,50.0,43.0,45.0,40.0,35.0,40.0,33.0,32.0,33.0,30.0,38.0,37.0,29.0,12.0,27.0,23.0,13.0,20.0,14.0,9.0,14.0,23.0,16.0,16.0,14.0,9.0,13.0,12.0,11.0,13.0,3.0,14.0,9.0,6.0,4.0,10.0,2.0,4.0,3.0,4.0,2.0,1.0,7.0 H85007,55.0,53.0,62.0,73.0,47.0,64.0,66.0,60.0,67.0,65.0,74.0,61.0,59.0,59.0,53.0,66.0,59.0,66.0,66.0,46.0,35.0,54.0,51.0,57.0,51.0,57.0,79.0,99.0,75.0,76.0,72.0,73.0,68.0,91.0,96.0,98.0,91.0,74.0,81.0,107.0,93.0,88.0,91.0,95.0,95.0,91.0,82.0,87.0,67.0,79.0,69.0,80.0,84.0,67.0,72.0,78.0,58.0,64.0,73.0,64.0,54.0,49.0,58.0,50.0,64.0,51.0,54.0,54.0,34.0,31.0,35.0,42.0,46.0,36.0,42.0,35.0,36.0,30.0,36.0,31.0,21.0,28.0,26.0,11.0,16.0,18.0,19.0,8.0,8.0,1.0,7.0,6.0,5.0,1.0,,3.0 H85008,24.0,29.0,26.0,27.0,18.0,27.0,33.0,35.0,34.0,30.0,33.0,29.0,43.0,39.0,42.0,40.0,40.0,38.0,43.0,39.0,27.0,44.0,51.0,45.0,45.0,66.0,62.0,41.0,57.0,63.0,49.0,66.0,65.0,53.0,58.0,54.0,49.0,59.0,51.0,52.0,62.0,50.0,37.0,51.0,54.0,46.0,42.0,44.0,48.0,48.0,39.0,51.0,52.0,33.0,30.0,54.0,45.0,29.0,38.0,44.0,36.0,42.0,36.0,27.0,32.0,31.0,28.0,25.0,34.0,26.0,27.0,16.0,16.0,26.0,23.0,22.0,17.0,10.0,23.0,10.0,16.0,14.0,18.0,8.0,9.0,14.0,6.0,11.0,9.0,2.0,10.0,1.0,5.0,3.0,5.0,5.0 H85009,50.0,56.0,59.0,57.0,60.0,62.0,61.0,60.0,87.0,65.0,60.0,56.0,65.0,65.0,69.0,69.0,52.0,46.0,48.0,50.0,42.0,54.0,59.0,67.0,85.0,124.0,149.0,187.0,191.0,183.0,176.0,190.0,155.0,176.0,153.0,157.0,162.0,112.0,135.0,120.0,146.0,132.0,131.0,123.0,138.0,142.0,143.0,112.0,121.0,101.0,84.0,96.0,82.0,76.0,84.0,79.0,86.0,73.0,70.0,64.0,83.0,67.0,68.0,47.0,68.0,50.0,40.0,49.0,44.0,54.0,41.0,30.0,39.0,36.0,17.0,32.0,35.0,27.0,30.0,17.0,20.0,21.0,13.0,16.0,17.0,16.0,11.0,7.0,2.0,6.0,4.0,3.0,3.0,3.0,1.0,1.0 H85011,62.0,52.0,51.0,61.0,60.0,76.0,77.0,64.0,63.0,66.0,61.0,69.0,70.0,59.0,69.0,66.0,56.0,67.0,57.0,65.0,57.0,51.0,55.0,49.0,70.0,73.0,69.0,92.0,82.0,76.0,88.0,92.0,94.0,94.0,104.0,100.0,88.0,102.0,95.0,119.0,107.0,81.0,87.0,92.0,97.0,69.0,80.0,82.0,62.0,75.0,68.0,72.0,55.0,58.0,64.0,56.0,70.0,48.0,62.0,76.0,51.0,62.0,49.0,41.0,50.0,37.0,41.0,41.0,39.0,32.0,32.0,30.0,21.0,18.0,30.0,34.0,22.0,24.0,18.0,20.0,19.0,11.0,15.0,11.0,9.0,15.0,9.0,10.0,4.0,7.0,5.0,4.0,3.0,,3.0,3.0 H85012,80.0,83.0,93.0,68.0,87.0,72.0,91.0,109.0,99.0,114.0,99.0,114.0,121.0,125.0,114.0,120.0,110.0,96.0,98.0,88.0,129.0,135.0,132.0,134.0,185.0,208.0,227.0,241.0,252.0,218.0,263.0,264.0,281.0,233.0,257.0,291.0,233.0,246.0,247.0,270.0,250.0,333.0,294.0,328.0,297.0,310.0,268.0,252.0,238.0,239.0,235.0,195.0,191.0,180.0,164.0,144.0,109.0,141.0,143.0,112.0,113.0,129.0,123.0,100.0,80.0,86.0,65.0,77.0,67.0,68.0,55.0,67.0,51.0,53.0,64.0,49.0,42.0,39.0,54.0,36.0,43.0,20.0,30.0,16.0,22.0,23.0,18.0,13.0,17.0,15.0,5.0,7.0,4.0,5.0,4.0,15.0 H85018,33.0,44.0,36.0,40.0,37.0,43.0,45.0,40.0,51.0,58.0,65.0,63.0,70.0,61.0,62.0,67.0,47.0,76.0,61.0,44.0,40.0,30.0,28.0,35.0,32.0,38.0,39.0,41.0,43.0,54.0,52.0,60.0,54.0,53.0,62.0,68.0,63.0,69.0,65.0,68.0,71.0,75.0,95.0,95.0,85.0,102.0,78.0,88.0,88.0,95.0,80.0,69.0,57.0,68.0,62.0,54.0,56.0,56.0,59.0,58.0,48.0,49.0,46.0,42.0,31.0,36.0,38.0,41.0,32.0,39.0,29.0,32.0,27.0,28.0,27.0,26.0,33.0,33.0,30.0,17.0,18.0,18.0,11.0,19.0,15.0,11.0,6.0,7.0,5.0,12.0,4.0,6.0,5.0,7.0,1.0,8.0 H85020,149.0,140.0,161.0,188.0,192.0,179.0,212.0,212.0,195.0,211.0,178.0,195.0,216.0,204.0,218.0,220.0,193.0,190.0,176.0,118.0,138.0,115.0,118.0,145.0,138.0,162.0,167.0,184.0,215.0,214.0,231.0,243.0,235.0,255.0,292.0,261.0,332.0,320.0,312.0,308.0,344.0,334.0,323.0,328.0,332.0,361.0,337.0,289.0,301.0,287.0,235.0,233.0,238.0,229.0,209.0,179.0,182.0,178.0,175.0,152.0,179.0,157.0,181.0,149.0,139.0,123.0,139.0,117.0,130.0,110.0,114.0,106.0,82.0,96.0,95.0,97.0,90.0,106.0,93.0,67.0,69.0,50.0,57.0,48.0,38.0,32.0,40.0,37.0,29.0,13.0,26.0,15.0,6.0,8.0,9.0,16.0 H85021,26.0,29.0,27.0,24.0,42.0,24.0,34.0,42.0,25.0,35.0,35.0,32.0,40.0,48.0,45.0,41.0,40.0,52.0,38.0,31.0,44.0,36.0,34.0,36.0,39.0,41.0,33.0,51.0,43.0,42.0,42.0,52.0,55.0,55.0,38.0,46.0,51.0,50.0,53.0,46.0,45.0,46.0,44.0,46.0,52.0,51.0,54.0,36.0,45.0,43.0,51.0,44.0,36.0,50.0,55.0,41.0,52.0,40.0,46.0,43.0,54.0,44.0,51.0,35.0,48.0,35.0,30.0,22.0,24.0,29.0,14.0,15.0,21.0,19.0,23.0,8.0,14.0,15.0,14.0,11.0,12.0,10.0,8.0,11.0,3.0,17.0,9.0,3.0,7.0,3.0,4.0,3.0,3.0,,2.0,3.0 H85022,24.0,14.0,25.0,21.0,16.0,29.0,25.0,30.0,27.0,22.0,26.0,37.0,36.0,37.0,32.0,36.0,37.0,34.0,27.0,19.0,31.0,21.0,20.0,22.0,26.0,26.0,25.0,17.0,17.0,25.0,28.0,25.0,23.0,42.0,28.0,35.0,27.0,35.0,37.0,32.0,27.0,43.0,36.0,47.0,37.0,35.0,52.0,42.0,43.0,31.0,39.0,30.0,43.0,35.0,34.0,25.0,35.0,38.0,40.0,25.0,36.0,27.0,18.0,18.0,18.0,17.0,17.0,17.0,23.0,17.0,17.0,16.0,22.0,14.0,20.0,10.0,14.0,13.0,23.0,9.0,10.0,9.0,8.0,6.0,7.0,5.0,4.0,2.0,3.0,3.0,,3.0,2.0,2.0,,2.0 H85023,28.0,33.0,17.0,18.0,21.0,28.0,28.0,32.0,26.0,33.0,29.0,29.0,33.0,32.0,35.0,35.0,36.0,33.0,27.0,43.0,28.0,23.0,35.0,26.0,43.0,34.0,40.0,39.0,43.0,28.0,37.0,40.0,40.0,44.0,42.0,42.0,43.0,42.0,42.0,41.0,43.0,36.0,41.0,49.0,33.0,39.0,41.0,41.0,28.0,37.0,34.0,31.0,26.0,26.0,37.0,32.0,25.0,23.0,25.0,28.0,27.0,29.0,21.0,29.0,23.0,27.0,24.0,23.0,24.0,18.0,17.0,10.0,10.0,14.0,13.0,14.0,14.0,11.0,9.0,10.0,5.0,4.0,5.0,4.0,3.0,10.0,5.0,5.0,2.0,2.0,4.0,,2.0,2.0,1.0,2.0 H85024,20.0,26.0,20.0,25.0,21.0,27.0,27.0,36.0,30.0,35.0,35.0,40.0,44.0,49.0,45.0,55.0,34.0,56.0,66.0,46.0,69.0,49.0,56.0,56.0,49.0,71.0,81.0,81.0,83.0,87.0,74.0,81.0,85.0,93.0,97.0,82.0,88.0,87.0,76.0,103.0,94.0,82.0,87.0,86.0,85.0,71.0,88.0,59.0,89.0,44.0,56.0,65.0,62.0,66.0,43.0,63.0,67.0,50.0,49.0,51.0,55.0,37.0,45.0,44.0,48.0,43.0,27.0,27.0,36.0,38.0,30.0,32.0,26.0,14.0,29.0,21.0,21.0,26.0,18.0,16.0,25.0,12.0,16.0,13.0,14.0,8.0,9.0,11.0,8.0,8.0,3.0,3.0,4.0,4.0,1.0,2.0 H85025,90.0,95.0,106.0,116.0,114.0,116.0,108.0,117.0,102.0,143.0,118.0,95.0,115.0,138.0,118.0,116.0,106.0,120.0,81.0,84.0,70.0,70.0,59.0,65.0,64.0,69.0,79.0,87.0,89.0,99.0,80.0,94.0,110.0,109.0,126.0,114.0,146.0,123.0,127.0,144.0,134.0,130.0,164.0,141.0,155.0,145.0,135.0,128.0,141.0,122.0,112.0,101.0,117.0,106.0,108.0,104.0,105.0,100.0,88.0,87.0,92.0,94.0,88.0,93.0,69.0,64.0,65.0,58.0,65.0,68.0,55.0,60.0,48.0,52.0,49.0,40.0,55.0,60.0,46.0,36.0,32.0,31.0,23.0,14.0,22.0,22.0,27.0,21.0,19.0,13.0,13.0,9.0,5.0,5.0,5.0,9.0 H85026,69.0,70.0,61.0,74.0,48.0,70.0,77.0,85.0,131.0,120.0,103.0,112.0,108.0,110.0,95.0,79.0,95.0,85.0,80.0,55.0,62.0,49.0,50.0,71.0,64.0,71.0,103.0,98.0,96.0,108.0,108.0,126.0,115.0,141.0,124.0,128.0,142.0,133.0,146.0,140.0,161.0,151.0,182.0,176.0,174.0,152.0,132.0,153.0,158.0,139.0,109.0,121.0,127.0,97.0,104.0,93.0,94.0,91.0,91.0,70.0,79.0,73.0,60.0,55.0,53.0,57.0,43.0,48.0,43.0,38.0,32.0,47.0,34.0,26.0,36.0,22.0,28.0,32.0,24.0,17.0,18.0,19.0,8.0,7.0,13.0,20.0,6.0,6.0,4.0,7.0,3.0,2.0,4.0,3.0,3.0,7.0 H85027,45.0,41.0,52.0,54.0,56.0,50.0,58.0,50.0,56.0,67.0,62.0,84.0,86.0,64.0,95.0,101.0,92.0,97.0,81.0,50.0,68.0,41.0,58.0,58.0,68.0,65.0,71.0,70.0,71.0,84.0,78.0,78.0,99.0,80.0,70.0,81.0,83.0,81.0,76.0,82.0,83.0,93.0,87.0,102.0,105.0,114.0,111.0,99.0,109.0,116.0,126.0,109.0,108.0,114.0,103.0,104.0,91.0,105.0,87.0,90.0,87.0,78.0,111.0,81.0,90.0,72.0,68.0,71.0,64.0,66.0,71.0,48.0,63.0,62.0,54.0,48.0,58.0,57.0,63.0,50.0,49.0,38.0,36.0,18.0,28.0,36.0,20.0,31.0,17.0,10.0,18.0,7.0,8.0,9.0,9.0,17.0 H85028,49.0,59.0,51.0,61.0,55.0,48.0,58.0,65.0,56.0,70.0,57.0,54.0,58.0,59.0,70.0,63.0,65.0,66.0,49.0,45.0,30.0,44.0,37.0,34.0,63.0,67.0,91.0,87.0,92.0,110.0,112.0,112.0,108.0,104.0,104.0,100.0,99.0,101.0,118.0,108.0,108.0,128.0,113.0,121.0,116.0,121.0,100.0,113.0,120.0,116.0,116.0,91.0,88.0,102.0,68.0,50.0,65.0,51.0,48.0,54.0,50.0,42.0,43.0,43.0,49.0,35.0,37.0,27.0,39.0,15.0,27.0,21.0,22.0,35.0,29.0,23.0,23.0,27.0,29.0,13.0,18.0,12.0,13.0,8.0,10.0,11.0,9.0,6.0,4.0,3.0,7.0,3.0,4.0,3.0,3.0,6.0 H85029,76.0,87.0,74.0,92.0,69.0,89.0,107.0,97.0,97.0,87.0,102.0,88.0,98.0,106.0,105.0,105.0,113.0,114.0,129.0,107.0,93.0,109.0,111.0,95.0,96.0,125.0,111.0,113.0,131.0,130.0,107.0,119.0,117.0,127.0,130.0,133.0,148.0,111.0,113.0,123.0,122.0,128.0,130.0,119.0,137.0,129.0,123.0,113.0,116.0,87.0,110.0,99.0,127.0,105.0,104.0,95.0,99.0,80.0,104.0,91.0,99.0,105.0,99.0,77.0,69.0,73.0,66.0,67.0,63.0,56.0,54.0,56.0,31.0,33.0,28.0,33.0,28.0,35.0,30.0,20.0,23.0,21.0,25.0,17.0,12.0,18.0,20.0,13.0,10.0,8.0,7.0,9.0,6.0,5.0,1.0,13.0 H85030,44.0,54.0,54.0,70.0,54.0,72.0,62.0,71.0,95.0,71.0,99.0,76.0,88.0,91.0,100.0,81.0,84.0,73.0,60.0,55.0,49.0,56.0,50.0,56.0,56.0,73.0,82.0,78.0,69.0,89.0,76.0,93.0,89.0,114.0,109.0,98.0,101.0,126.0,103.0,109.0,92.0,112.0,153.0,120.0,119.0,99.0,118.0,96.0,102.0,91.0,95.0,68.0,97.0,116.0,79.0,83.0,73.0,82.0,85.0,105.0,68.0,97.0,73.0,73.0,63.0,66.0,63.0,63.0,51.0,55.0,44.0,40.0,48.0,48.0,43.0,54.0,51.0,54.0,53.0,36.0,43.0,32.0,31.0,21.0,18.0,21.0,21.0,14.0,14.0,14.0,9.0,7.0,7.0,12.0,1.0,6.0 H85031,41.0,51.0,54.0,62.0,65.0,71.0,80.0,73.0,92.0,79.0,104.0,108.0,93.0,100.0,93.0,99.0,95.0,84.0,73.0,62.0,57.0,54.0,53.0,54.0,56.0,82.0,59.0,78.0,82.0,76.0,92.0,94.0,103.0,85.0,90.0,85.0,94.0,75.0,93.0,88.0,94.0,89.0,123.0,113.0,116.0,122.0,97.0,89.0,127.0,85.0,85.0,95.0,86.0,98.0,80.0,89.0,80.0,77.0,72.0,58.0,74.0,68.0,68.0,76.0,53.0,54.0,55.0,46.0,50.0,26.0,37.0,38.0,39.0,41.0,31.0,27.0,28.0,32.0,33.0,33.0,32.0,20.0,24.0,18.0,15.0,22.0,18.0,11.0,14.0,11.0,6.0,4.0,5.0,4.0,1.0,5.0 H85033,42.0,40.0,41.0,39.0,46.0,30.0,43.0,49.0,45.0,55.0,56.0,46.0,52.0,55.0,65.0,79.0,77.0,53.0,67.0,65.0,76.0,52.0,72.0,75.0,82.0,67.0,82.0,73.0,67.0,61.0,84.0,80.0,87.0,86.0,81.0,90.0,83.0,102.0,81.0,73.0,74.0,65.0,75.0,73.0,66.0,78.0,72.0,63.0,62.0,53.0,57.0,64.0,65.0,64.0,70.0,60.0,67.0,71.0,55.0,51.0,66.0,55.0,62.0,69.0,59.0,51.0,44.0,46.0,47.0,53.0,32.0,37.0,31.0,26.0,36.0,22.0,34.0,25.0,19.0,15.0,21.0,17.0,9.0,10.0,11.0,12.0,15.0,10.0,6.0,4.0,3.0,5.0,6.0,1.0,2.0,4.0 H85037,47.0,60.0,67.0,70.0,71.0,50.0,79.0,63.0,79.0,71.0,78.0,70.0,70.0,85.0,81.0,89.0,85.0,92.0,90.0,73.0,84.0,79.0,67.0,91.0,102.0,91.0,105.0,112.0,122.0,129.0,119.0,111.0,130.0,142.0,141.0,140.0,121.0,124.0,141.0,161.0,142.0,151.0,155.0,150.0,130.0,143.0,134.0,129.0,111.0,123.0,131.0,118.0,131.0,99.0,94.0,91.0,104.0,104.0,107.0,91.0,82.0,80.0,73.0,81.0,75.0,75.0,48.0,66.0,57.0,45.0,45.0,46.0,41.0,48.0,43.0,39.0,47.0,34.0,54.0,23.0,27.0,19.0,21.0,19.0,18.0,27.0,21.0,15.0,12.0,11.0,10.0,9.0,12.0,6.0,5.0,3.0 H85038,61.0,67.0,60.0,72.0,70.0,72.0,67.0,77.0,88.0,85.0,81.0,77.0,70.0,82.0,74.0,74.0,84.0,74.0,68.0,54.0,73.0,54.0,68.0,48.0,70.0,80.0,76.0,86.0,72.0,82.0,88.0,86.0,101.0,99.0,92.0,88.0,105.0,89.0,96.0,97.0,91.0,96.0,93.0,99.0,84.0,98.0,91.0,71.0,92.0,78.0,77.0,84.0,62.0,54.0,68.0,55.0,57.0,73.0,61.0,57.0,54.0,74.0,59.0,49.0,49.0,50.0,59.0,45.0,29.0,46.0,32.0,35.0,28.0,23.0,31.0,22.0,25.0,28.0,25.0,14.0,23.0,14.0,15.0,16.0,14.0,15.0,11.0,6.0,6.0,8.0,7.0,4.0,2.0,1.0,2.0,7.0 H85041,132.0,120.0,127.0,115.0,80.0,110.0,83.0,57.0,70.0,71.0,52.0,62.0,56.0,62.0,47.0,64.0,54.0,58.0,59.0,46.0,63.0,40.0,54.0,65.0,81.0,127.0,131.0,140.0,156.0,182.0,199.0,212.0,234.0,201.0,188.0,218.0,210.0,200.0,154.0,178.0,154.0,137.0,140.0,132.0,139.0,139.0,121.0,131.0,100.0,95.0,96.0,83.0,87.0,86.0,76.0,63.0,70.0,50.0,56.0,74.0,59.0,46.0,42.0,56.0,46.0,38.0,45.0,29.0,38.0,33.0,19.0,27.0,19.0,17.0,28.0,21.0,25.0,21.0,17.0,15.0,19.0,13.0,11.0,10.0,13.0,11.0,6.0,10.0,7.0,5.0,1.0,3.0,6.0,3.0,2.0,4.0 H85045,63.0,48.0,73.0,68.0,55.0,55.0,65.0,72.0,88.0,76.0,64.0,77.0,71.0,65.0,79.0,64.0,68.0,54.0,73.0,68.0,52.0,57.0,52.0,75.0,78.0,96.0,115.0,107.0,120.0,118.0,128.0,130.0,123.0,135.0,136.0,142.0,136.0,137.0,122.0,133.0,128.0,137.0,114.0,161.0,151.0,147.0,160.0,150.0,135.0,155.0,149.0,148.0,119.0,136.0,93.0,89.0,110.0,92.0,89.0,76.0,94.0,100.0,78.0,76.0,67.0,59.0,60.0,40.0,49.0,50.0,46.0,37.0,36.0,37.0,38.0,38.0,32.0,48.0,33.0,28.0,27.0,23.0,18.0,23.0,21.0,15.0,15.0,12.0,19.0,10.0,3.0,10.0,2.0,,2.0,5.0 H85047,49.0,49.0,53.0,37.0,49.0,45.0,53.0,44.0,37.0,55.0,51.0,52.0,55.0,47.0,47.0,34.0,63.0,51.0,48.0,60.0,49.0,47.0,48.0,70.0,86.0,101.0,123.0,132.0,143.0,152.0,150.0,152.0,141.0,159.0,164.0,131.0,120.0,124.0,133.0,117.0,113.0,118.0,119.0,119.0,123.0,139.0,111.0,112.0,106.0,80.0,86.0,89.0,83.0,83.0,83.0,87.0,65.0,79.0,62.0,67.0,64.0,65.0,74.0,39.0,59.0,59.0,50.0,31.0,44.0,43.0,30.0,25.0,39.0,22.0,23.0,24.0,28.0,33.0,18.0,13.0,17.0,10.0,14.0,18.0,16.0,13.0,6.0,11.0,5.0,9.0,5.0,,1.0,2.0,1.0,3.0 H85048,72.0,95.0,59.0,80.0,91.0,72.0,90.0,74.0,82.0,83.0,73.0,68.0,102.0,91.0,104.0,95.0,91.0,92.0,88.0,85.0,66.0,88.0,80.0,84.0,102.0,129.0,125.0,153.0,140.0,155.0,156.0,179.0,177.0,180.0,169.0,172.0,154.0,171.0,168.0,140.0,144.0,156.0,150.0,168.0,141.0,143.0,146.0,138.0,116.0,138.0,139.0,120.0,130.0,108.0,103.0,93.0,103.0,94.0,115.0,75.0,71.0,56.0,74.0,57.0,56.0,58.0,51.0,58.0,42.0,38.0,44.0,46.0,30.0,41.0,37.0,38.0,25.0,28.0,29.0,21.0,21.0,27.0,21.0,12.0,12.0,6.0,11.0,10.0,9.0,10.0,6.0,8.0,3.0,3.0,2.0,1.0 H85049,18.0,17.0,25.0,23.0,37.0,28.0,25.0,37.0,40.0,35.0,33.0,48.0,48.0,40.0,49.0,49.0,34.0,42.0,44.0,31.0,27.0,31.0,24.0,32.0,50.0,47.0,75.0,87.0,95.0,89.0,80.0,79.0,58.0,72.0,70.0,66.0,66.0,65.0,61.0,64.0,63.0,47.0,64.0,74.0,65.0,85.0,64.0,60.0,64.0,59.0,74.0,60.0,51.0,54.0,58.0,38.0,63.0,49.0,43.0,32.0,42.0,25.0,28.0,31.0,27.0,26.0,13.0,13.0,22.0,13.0,18.0,14.0,6.0,3.0,8.0,7.0,19.0,17.0,9.0,8.0,10.0,8.0,13.0,2.0,3.0,3.0,7.0,3.0,3.0,1.0,2.0,3.0,1.0,,, H85051,84.0,85.0,99.0,89.0,105.0,101.0,89.0,114.0,119.0,115.0,118.0,120.0,107.0,126.0,121.0,138.0,103.0,132.0,104.0,102.0,71.0,71.0,94.0,81.0,97.0,95.0,126.0,117.0,118.0,120.0,118.0,97.0,136.0,145.0,140.0,143.0,156.0,156.0,154.0,187.0,168.0,192.0,191.0,183.0,201.0,204.0,204.0,164.0,183.0,154.0,170.0,161.0,153.0,152.0,135.0,97.0,114.0,103.0,95.0,106.0,83.0,79.0,75.0,80.0,68.0,67.0,74.0,57.0,43.0,53.0,58.0,51.0,50.0,50.0,46.0,50.0,59.0,37.0,40.0,36.0,32.0,33.0,22.0,20.0,25.0,15.0,17.0,15.0,10.0,13.0,7.0,6.0,7.0,5.0,2.0,10.0 H85052,20.0,26.0,16.0,24.0,19.0,18.0,14.0,18.0,17.0,30.0,19.0,25.0,20.0,30.0,25.0,22.0,26.0,30.0,31.0,30.0,29.0,22.0,27.0,23.0,30.0,26.0,34.0,33.0,29.0,49.0,59.0,41.0,54.0,58.0,48.0,46.0,39.0,44.0,43.0,53.0,53.0,35.0,40.0,36.0,46.0,35.0,40.0,32.0,32.0,33.0,26.0,35.0,25.0,30.0,29.0,24.0,29.0,31.0,27.0,41.0,24.0,28.0,23.0,18.0,31.0,35.0,13.0,14.0,10.0,14.0,8.0,12.0,14.0,14.0,10.0,16.0,13.0,9.0,13.0,6.0,5.0,3.0,9.0,7.0,5.0,16.0,9.0,3.0,2.0,5.0,3.0,2.0,3.0,2.0,2.0,3.0 H85053,30.0,44.0,30.0,29.0,34.0,41.0,30.0,34.0,35.0,26.0,42.0,32.0,46.0,36.0,56.0,47.0,32.0,40.0,36.0,22.0,31.0,24.0,27.0,33.0,27.0,35.0,33.0,50.0,34.0,39.0,35.0,54.0,40.0,54.0,59.0,46.0,61.0,51.0,48.0,64.0,56.0,50.0,53.0,49.0,47.0,55.0,54.0,49.0,44.0,49.0,57.0,32.0,47.0,31.0,43.0,43.0,37.0,27.0,34.0,37.0,34.0,28.0,31.0,33.0,24.0,19.0,23.0,25.0,17.0,13.0,14.0,18.0,28.0,12.0,9.0,16.0,16.0,13.0,15.0,11.0,10.0,8.0,6.0,12.0,3.0,8.0,5.0,4.0,4.0,4.0,2.0,7.0,4.0,3.0,1.0,6.0 H85055,28.0,16.0,25.0,27.0,23.0,22.0,24.0,26.0,34.0,36.0,39.0,39.0,35.0,35.0,37.0,39.0,40.0,59.0,42.0,36.0,39.0,36.0,44.0,35.0,50.0,47.0,42.0,60.0,47.0,51.0,48.0,44.0,47.0,46.0,46.0,51.0,58.0,61.0,57.0,51.0,61.0,63.0,67.0,58.0,53.0,71.0,69.0,75.0,53.0,55.0,67.0,62.0,51.0,65.0,56.0,53.0,64.0,65.0,59.0,55.0,65.0,53.0,37.0,48.0,58.0,49.0,42.0,47.0,39.0,25.0,26.0,39.0,39.0,35.0,24.0,22.0,32.0,30.0,28.0,24.0,25.0,20.0,17.0,21.0,13.0,14.0,11.0,9.0,7.0,4.0,6.0,4.0,2.0,3.0,2.0,3.0 H85057,58.0,76.0,56.0,74.0,56.0,47.0,60.0,42.0,33.0,50.0,49.0,53.0,51.0,38.0,40.0,54.0,41.0,28.0,32.0,33.0,22.0,28.0,28.0,29.0,40.0,60.0,64.0,60.0,75.0,70.0,84.0,94.0,88.0,95.0,118.0,116.0,83.0,85.0,92.0,100.0,73.0,83.0,78.0,76.0,92.0,68.0,52.0,68.0,54.0,56.0,63.0,50.0,49.0,43.0,35.0,47.0,32.0,42.0,36.0,23.0,32.0,33.0,28.0,29.0,32.0,22.0,23.0,23.0,16.0,18.0,13.0,12.0,14.0,20.0,16.0,13.0,8.0,8.0,10.0,5.0,8.0,7.0,8.0,4.0,4.0,2.0,5.0,2.0,5.0,2.0,1.0,,,,2.0,1.0 H85061,103.0,100.0,102.0,104.0,88.0,79.0,71.0,93.0,82.0,78.0,66.0,79.0,90.0,80.0,70.0,87.0,84.0,66.0,71.0,53.0,63.0,73.0,78.0,83.0,119.0,206.0,224.0,276.0,287.0,332.0,307.0,343.0,337.0,289.0,304.0,314.0,258.0,251.0,253.0,258.0,232.0,251.0,267.0,274.0,290.0,230.0,268.0,228.0,263.0,237.0,233.0,205.0,186.0,181.0,156.0,133.0,134.0,126.0,112.0,90.0,106.0,81.0,86.0,71.0,72.0,63.0,52.0,52.0,57.0,32.0,46.0,43.0,44.0,44.0,46.0,33.0,41.0,32.0,45.0,30.0,32.0,31.0,26.0,13.0,24.0,20.0,17.0,7.0,14.0,7.0,7.0,4.0,3.0,2.0,1.0,7.0 H85063,25.0,29.0,28.0,40.0,38.0,42.0,48.0,55.0,61.0,61.0,74.0,72.0,75.0,80.0,80.0,78.0,83.0,93.0,72.0,67.0,66.0,63.0,73.0,84.0,79.0,81.0,67.0,68.0,69.0,66.0,71.0,59.0,51.0,61.0,56.0,56.0,59.0,54.0,50.0,68.0,62.0,80.0,68.0,86.0,74.0,97.0,93.0,88.0,77.0,91.0,81.0,99.0,100.0,95.0,87.0,98.0,90.0,85.0,94.0,100.0,112.0,82.0,82.0,90.0,74.0,88.0,78.0,67.0,71.0,70.0,53.0,65.0,59.0,49.0,58.0,54.0,44.0,75.0,72.0,61.0,53.0,34.0,40.0,29.0,28.0,20.0,25.0,16.0,26.0,13.0,15.0,10.0,11.0,7.0,1.0,6.0 H85065,21.0,26.0,28.0,22.0,21.0,28.0,33.0,22.0,24.0,31.0,33.0,32.0,34.0,30.0,29.0,29.0,37.0,41.0,43.0,29.0,27.0,35.0,38.0,38.0,40.0,46.0,44.0,43.0,60.0,45.0,54.0,51.0,41.0,41.0,53.0,53.0,41.0,57.0,44.0,52.0,50.0,43.0,50.0,38.0,44.0,51.0,53.0,40.0,43.0,29.0,26.0,32.0,36.0,31.0,25.0,26.0,23.0,31.0,23.0,18.0,33.0,25.0,17.0,22.0,18.0,9.0,11.0,12.0,19.0,11.0,12.0,15.0,11.0,8.0,7.0,15.0,9.0,8.0,7.0,2.0,4.0,4.0,2.0,3.0,2.0,1.0,1.0,4.0,,1.0,1.0,,,,,2.0 H85066,114.0,102.0,113.0,75.0,92.0,92.0,75.0,72.0,97.0,100.0,90.0,90.0,97.0,86.0,87.0,87.0,79.0,75.0,63.0,68.0,48.0,73.0,75.0,84.0,132.0,170.0,234.0,266.0,279.0,299.0,329.0,303.0,280.0,281.0,246.0,255.0,254.0,245.0,197.0,194.0,183.0,172.0,153.0,161.0,164.0,125.0,126.0,95.0,117.0,122.0,112.0,102.0,121.0,111.0,102.0,102.0,108.0,115.0,107.0,101.0,79.0,99.0,88.0,51.0,55.0,63.0,66.0,71.0,54.0,48.0,51.0,39.0,43.0,39.0,39.0,37.0,28.0,42.0,34.0,22.0,20.0,34.0,15.0,13.0,23.0,17.0,10.0,12.0,9.0,7.0,9.0,4.0,5.0,1.0,2.0,5.0 H85067,14.0,14.0,17.0,9.0,12.0,17.0,15.0,24.0,13.0,19.0,23.0,19.0,17.0,20.0,18.0,21.0,36.0,30.0,18.0,20.0,22.0,23.0,28.0,24.0,28.0,23.0,23.0,28.0,23.0,29.0,19.0,30.0,24.0,26.0,25.0,26.0,28.0,21.0,25.0,32.0,26.0,17.0,25.0,17.0,28.0,31.0,28.0,29.0,32.0,26.0,24.0,27.0,28.0,11.0,14.0,22.0,22.0,18.0,13.0,20.0,21.0,20.0,20.0,20.0,10.0,18.0,14.0,14.0,16.0,7.0,6.0,6.0,3.0,5.0,4.0,7.0,10.0,7.0,5.0,5.0,4.0,,2.0,4.0,3.0,2.0,5.0,1.0,1.0,4.0,2.0,3.0,,,1.0,1.0 H85069,65.0,69.0,68.0,65.0,69.0,63.0,66.0,63.0,61.0,67.0,59.0,59.0,72.0,66.0,59.0,53.0,72.0,66.0,56.0,52.0,51.0,41.0,57.0,87.0,117.0,151.0,185.0,212.0,256.0,218.0,221.0,220.0,206.0,196.0,196.0,168.0,187.0,166.0,156.0,151.0,135.0,150.0,143.0,144.0,155.0,141.0,114.0,116.0,106.0,103.0,87.0,103.0,84.0,79.0,84.0,72.0,77.0,66.0,69.0,70.0,60.0,61.0,61.0,52.0,51.0,35.0,36.0,33.0,38.0,43.0,26.0,25.0,30.0,21.0,25.0,30.0,30.0,26.0,18.0,19.0,23.0,10.0,10.0,19.0,9.0,12.0,8.0,5.0,4.0,5.0,5.0,2.0,2.0,3.0,2.0,5.0 H85070,33.0,34.0,38.0,47.0,36.0,44.0,52.0,55.0,45.0,65.0,57.0,57.0,70.0,57.0,81.0,75.0,71.0,79.0,76.0,67.0,67.0,73.0,60.0,74.0,77.0,82.0,55.0,73.0,73.0,71.0,65.0,69.0,79.0,63.0,83.0,82.0,77.0,69.0,69.0,84.0,68.0,62.0,87.0,74.0,68.0,83.0,92.0,90.0,104.0,90.0,96.0,88.0,99.0,84.0,82.0,63.0,96.0,72.0,78.0,68.0,67.0,62.0,62.0,66.0,44.0,48.0,39.0,33.0,40.0,34.0,28.0,39.0,27.0,34.0,17.0,17.0,16.0,17.0,21.0,11.0,7.0,12.0,9.0,13.0,11.0,12.0,10.0,8.0,4.0,7.0,6.0,,2.0,3.0,1.0,3.0 H85075,20.0,34.0,27.0,39.0,17.0,34.0,32.0,23.0,37.0,29.0,32.0,28.0,24.0,23.0,20.0,12.0,28.0,11.0,14.0,19.0,14.0,11.0,10.0,16.0,38.0,42.0,52.0,45.0,57.0,66.0,58.0,66.0,77.0,91.0,72.0,73.0,60.0,76.0,86.0,62.0,75.0,68.0,74.0,73.0,59.0,66.0,61.0,78.0,60.0,48.0,47.0,35.0,41.0,27.0,35.0,36.0,18.0,17.0,28.0,25.0,25.0,18.0,22.0,13.0,20.0,22.0,19.0,14.0,8.0,14.0,15.0,5.0,10.0,9.0,6.0,10.0,7.0,8.0,4.0,6.0,6.0,3.0,4.0,1.0,1.0,7.0,2.0,4.0,2.0,2.0,2.0,2.0,1.0,,1.0,1.0 H85076,36.0,34.0,49.0,63.0,47.0,55.0,54.0,45.0,65.0,79.0,53.0,52.0,53.0,54.0,62.0,52.0,47.0,57.0,55.0,52.0,66.0,55.0,65.0,58.0,76.0,72.0,83.0,68.0,63.0,75.0,77.0,72.0,75.0,78.0,64.0,75.0,70.0,79.0,81.0,63.0,79.0,68.0,71.0,59.0,85.0,63.0,86.0,71.0,74.0,63.0,64.0,65.0,52.0,59.0,56.0,77.0,58.0,88.0,73.0,88.0,66.0,73.0,65.0,50.0,66.0,53.0,52.0,43.0,38.0,50.0,46.0,40.0,41.0,34.0,39.0,42.0,36.0,43.0,35.0,23.0,26.0,15.0,16.0,17.0,16.0,14.0,18.0,14.0,11.0,3.0,6.0,8.0,3.0,3.0,1.0,7.0 H85077,32.0,32.0,29.0,30.0,35.0,30.0,33.0,36.0,38.0,42.0,39.0,27.0,42.0,29.0,31.0,33.0,36.0,24.0,22.0,20.0,17.0,20.0,19.0,50.0,36.0,46.0,50.0,67.0,65.0,65.0,65.0,65.0,69.0,64.0,64.0,61.0,57.0,83.0,53.0,59.0,66.0,73.0,61.0,78.0,51.0,57.0,53.0,33.0,38.0,52.0,50.0,54.0,50.0,41.0,51.0,40.0,47.0,30.0,31.0,28.0,31.0,27.0,31.0,23.0,29.0,20.0,17.0,20.0,21.0,14.0,12.0,13.0,16.0,9.0,10.0,12.0,10.0,13.0,13.0,14.0,10.0,5.0,11.0,9.0,8.0,6.0,4.0,4.0,4.0,6.0,2.0,2.0,1.0,1.0,,3.0 H85078,25.0,11.0,27.0,20.0,24.0,18.0,18.0,29.0,28.0,25.0,34.0,19.0,35.0,23.0,31.0,21.0,30.0,26.0,33.0,27.0,21.0,29.0,29.0,39.0,37.0,46.0,37.0,46.0,47.0,45.0,45.0,45.0,51.0,49.0,53.0,55.0,58.0,55.0,56.0,52.0,51.0,47.0,41.0,40.0,43.0,39.0,29.0,45.0,32.0,37.0,29.0,41.0,32.0,32.0,27.0,33.0,27.0,30.0,31.0,23.0,27.0,19.0,30.0,24.0,23.0,22.0,18.0,19.0,20.0,19.0,8.0,7.0,9.0,15.0,15.0,9.0,8.0,13.0,7.0,9.0,5.0,6.0,9.0,3.0,6.0,2.0,8.0,5.0,6.0,1.0,1.0,2.0,1.0,2.0,,2.0 H85082,9.0,15.0,17.0,15.0,18.0,19.0,16.0,16.0,17.0,23.0,20.0,11.0,24.0,22.0,30.0,26.0,36.0,35.0,22.0,21.0,26.0,16.0,24.0,23.0,27.0,46.0,43.0,48.0,48.0,68.0,62.0,63.0,53.0,64.0,55.0,58.0,65.0,54.0,29.0,35.0,57.0,50.0,48.0,50.0,48.0,34.0,41.0,50.0,37.0,30.0,28.0,28.0,42.0,42.0,36.0,29.0,34.0,26.0,21.0,29.0,32.0,33.0,23.0,21.0,14.0,19.0,19.0,16.0,14.0,9.0,13.0,19.0,14.0,13.0,5.0,7.0,7.0,5.0,10.0,11.0,4.0,2.0,8.0,6.0,5.0,3.0,4.0,4.0,2.0,2.0,1.0,3.0,1.0,,,2.0 H85087,31.0,50.0,36.0,32.0,22.0,37.0,46.0,37.0,40.0,38.0,44.0,42.0,39.0,32.0,36.0,47.0,33.0,40.0,45.0,60.0,46.0,54.0,48.0,53.0,88.0,88.0,88.0,105.0,141.0,113.0,110.0,126.0,101.0,109.0,116.0,125.0,122.0,138.0,136.0,114.0,115.0,109.0,116.0,125.0,111.0,117.0,122.0,91.0,120.0,94.0,116.0,89.0,102.0,92.0,95.0,86.0,77.0,69.0,77.0,75.0,78.0,78.0,68.0,66.0,57.0,70.0,59.0,55.0,44.0,54.0,40.0,42.0,34.0,39.0,36.0,30.0,29.0,28.0,20.0,10.0,21.0,11.0,16.0,23.0,20.0,13.0,10.0,14.0,14.0,6.0,7.0,5.0,5.0,,3.0,7.0 H85088,3.0,6.0,9.0,8.0,7.0,3.0,12.0,10.0,12.0,9.0,7.0,10.0,7.0,11.0,8.0,9.0,6.0,11.0,13.0,11.0,10.0,14.0,9.0,21.0,16.0,17.0,14.0,16.0,21.0,17.0,23.0,26.0,14.0,19.0,29.0,22.0,36.0,24.0,28.0,41.0,30.0,30.0,37.0,24.0,33.0,21.0,21.0,21.0,21.0,27.0,16.0,20.0,20.0,19.0,23.0,18.0,18.0,20.0,22.0,15.0,19.0,17.0,21.0,13.0,10.0,13.0,13.0,12.0,10.0,11.0,9.0,8.0,5.0,8.0,3.0,5.0,6.0,11.0,5.0,9.0,5.0,8.0,2.0,3.0,7.0,1.0,3.0,4.0,1.0,,1.0,1.0,,,,3.0 H85090,52.0,68.0,70.0,63.0,60.0,55.0,58.0,69.0,56.0,60.0,50.0,58.0,57.0,76.0,72.0,68.0,82.0,58.0,77.0,58.0,64.0,65.0,66.0,75.0,99.0,98.0,128.0,84.0,105.0,112.0,115.0,106.0,119.0,116.0,129.0,145.0,103.0,139.0,133.0,106.0,117.0,114.0,138.0,110.0,116.0,99.0,103.0,100.0,93.0,75.0,93.0,73.0,94.0,51.0,70.0,79.0,89.0,66.0,71.0,54.0,57.0,57.0,52.0,53.0,42.0,41.0,44.0,36.0,40.0,43.0,28.0,21.0,24.0,23.0,11.0,11.0,17.0,21.0,16.0,6.0,17.0,20.0,15.0,15.0,12.0,10.0,9.0,6.0,6.0,3.0,1.0,1.0,4.0,3.0,2.0,1.0 H85092,27.0,25.0,27.0,26.0,42.0,30.0,37.0,42.0,31.0,32.0,51.0,52.0,34.0,50.0,36.0,41.0,31.0,30.0,37.0,19.0,21.0,23.0,27.0,31.0,20.0,30.0,31.0,37.0,41.0,43.0,52.0,54.0,61.0,53.0,52.0,60.0,59.0,65.0,73.0,67.0,74.0,75.0,84.0,60.0,69.0,69.0,67.0,47.0,57.0,59.0,63.0,49.0,58.0,47.0,45.0,45.0,43.0,32.0,39.0,34.0,33.0,14.0,29.0,21.0,28.0,32.0,19.0,22.0,21.0,18.0,15.0,10.0,9.0,16.0,13.0,18.0,18.0,15.0,13.0,16.0,7.0,6.0,6.0,4.0,11.0,5.0,5.0,5.0,7.0,5.0,4.0,,,2.0,1.0,1.0 H85095,92.0,83.0,80.0,107.0,108.0,116.0,103.0,126.0,108.0,121.0,132.0,120.0,138.0,132.0,111.0,122.0,107.0,83.0,86.0,72.0,61.0,65.0,64.0,59.0,70.0,86.0,81.0,84.0,90.0,100.0,103.0,102.0,110.0,113.0,138.0,149.0,119.0,144.0,126.0,153.0,130.0,156.0,181.0,158.0,187.0,162.0,144.0,134.0,133.0,119.0,120.0,129.0,109.0,96.0,86.0,93.0,67.0,77.0,78.0,99.0,60.0,71.0,64.0,53.0,62.0,51.0,56.0,64.0,49.0,31.0,35.0,37.0,36.0,29.0,35.0,28.0,28.0,34.0,40.0,22.0,25.0,25.0,19.0,11.0,8.0,11.0,9.0,10.0,8.0,13.0,4.0,3.0,2.0,2.0,1.0,2.0 H85100,37.0,34.0,31.0,46.0,39.0,41.0,36.0,46.0,48.0,42.0,56.0,39.0,49.0,35.0,46.0,41.0,33.0,45.0,43.0,31.0,27.0,36.0,38.0,29.0,51.0,52.0,51.0,63.0,81.0,62.0,67.0,72.0,89.0,82.0,92.0,74.0,89.0,97.0,94.0,103.0,104.0,104.0,112.0,116.0,113.0,112.0,84.0,81.0,64.0,77.0,67.0,56.0,46.0,56.0,48.0,48.0,37.0,28.0,41.0,34.0,42.0,27.0,36.0,25.0,19.0,26.0,22.0,29.0,26.0,22.0,18.0,12.0,16.0,16.0,10.0,16.0,13.0,9.0,12.0,15.0,6.0,15.0,10.0,6.0,6.0,6.0,4.0,1.0,2.0,4.0,1.0,5.0,2.0,1.0,,4.0 H85101,35.0,37.0,45.0,44.0,52.0,57.0,48.0,55.0,76.0,52.0,69.0,62.0,66.0,68.0,84.0,67.0,67.0,65.0,58.0,40.0,30.0,39.0,37.0,45.0,60.0,43.0,46.0,40.0,61.0,69.0,54.0,59.0,64.0,69.0,64.0,61.0,58.0,64.0,93.0,72.0,73.0,90.0,103.0,95.0,102.0,102.0,106.0,91.0,95.0,87.0,85.0,60.0,73.0,69.0,64.0,66.0,54.0,67.0,65.0,52.0,48.0,56.0,33.0,36.0,40.0,33.0,29.0,39.0,30.0,33.0,24.0,30.0,30.0,25.0,35.0,23.0,29.0,31.0,32.0,19.0,16.0,15.0,14.0,14.0,17.0,8.0,13.0,13.0,9.0,8.0,5.0,5.0,3.0,4.0,1.0,3.0 H85103,54.0,62.0,65.0,66.0,54.0,58.0,49.0,42.0,61.0,50.0,58.0,42.0,39.0,62.0,46.0,40.0,50.0,38.0,39.0,30.0,34.0,28.0,26.0,16.0,27.0,36.0,34.0,39.0,46.0,61.0,52.0,66.0,62.0,80.0,79.0,69.0,66.0,86.0,100.0,84.0,69.0,80.0,83.0,77.0,82.0,64.0,75.0,47.0,42.0,43.0,49.0,40.0,36.0,49.0,43.0,38.0,47.0,24.0,39.0,37.0,31.0,39.0,33.0,20.0,23.0,30.0,21.0,22.0,19.0,21.0,16.0,12.0,10.0,10.0,15.0,13.0,13.0,14.0,8.0,11.0,11.0,7.0,5.0,7.0,6.0,7.0,2.0,6.0,,,2.0,4.0,,1.0,,1.0 H85105,61.0,64.0,53.0,73.0,77.0,77.0,88.0,82.0,94.0,97.0,77.0,113.0,103.0,97.0,101.0,98.0,96.0,91.0,88.0,77.0,53.0,72.0,75.0,66.0,85.0,83.0,69.0,69.0,78.0,65.0,68.0,72.0,78.0,71.0,70.0,82.0,81.0,78.0,112.0,92.0,89.0,85.0,95.0,128.0,110.0,101.0,103.0,124.0,111.0,109.0,115.0,94.0,95.0,103.0,107.0,83.0,97.0,92.0,97.0,98.0,93.0,75.0,97.0,73.0,75.0,71.0,76.0,57.0,54.0,51.0,57.0,56.0,40.0,41.0,40.0,39.0,32.0,31.0,52.0,29.0,27.0,18.0,25.0,17.0,21.0,22.0,21.0,10.0,12.0,17.0,7.0,6.0,4.0,7.0,3.0,16.0 H85110,19.0,32.0,19.0,24.0,35.0,31.0,28.0,26.0,33.0,24.0,37.0,30.0,31.0,31.0,50.0,46.0,44.0,34.0,37.0,32.0,41.0,32.0,35.0,27.0,32.0,33.0,28.0,37.0,48.0,55.0,40.0,36.0,37.0,49.0,44.0,51.0,47.0,47.0,48.0,49.0,63.0,42.0,48.0,52.0,45.0,40.0,47.0,34.0,53.0,47.0,52.0,46.0,43.0,34.0,44.0,36.0,46.0,33.0,32.0,35.0,41.0,33.0,38.0,28.0,28.0,25.0,28.0,17.0,30.0,21.0,20.0,21.0,21.0,21.0,13.0,7.0,15.0,8.0,10.0,13.0,12.0,13.0,14.0,8.0,4.0,2.0,5.0,8.0,4.0,3.0,1.0,4.0,3.0,1.0,1.0,1.0 H85111,67.0,65.0,69.0,74.0,50.0,71.0,60.0,69.0,73.0,67.0,61.0,74.0,62.0,62.0,69.0,71.0,80.0,61.0,67.0,77.0,78.0,86.0,80.0,93.0,127.0,144.0,142.0,201.0,203.0,226.0,208.0,178.0,169.0,179.0,190.0,203.0,171.0,192.0,165.0,148.0,141.0,143.0,99.0,110.0,118.0,117.0,109.0,112.0,100.0,85.0,93.0,95.0,79.0,71.0,75.0,82.0,91.0,45.0,59.0,77.0,55.0,42.0,65.0,41.0,40.0,44.0,39.0,25.0,22.0,25.0,25.0,22.0,24.0,35.0,13.0,17.0,16.0,18.0,9.0,16.0,10.0,12.0,8.0,9.0,9.0,7.0,7.0,6.0,6.0,7.0,5.0,4.0,5.0,3.0,4.0,7.0 H85112,28.0,57.0,44.0,40.0,40.0,36.0,33.0,27.0,26.0,24.0,28.0,34.0,35.0,25.0,32.0,31.0,24.0,12.0,25.0,10.0,17.0,14.0,28.0,45.0,35.0,52.0,59.0,67.0,56.0,77.0,74.0,68.0,74.0,79.0,70.0,56.0,57.0,59.0,65.0,59.0,55.0,66.0,67.0,56.0,48.0,61.0,48.0,45.0,37.0,37.0,30.0,28.0,33.0,31.0,33.0,27.0,28.0,37.0,33.0,31.0,29.0,18.0,20.0,18.0,27.0,32.0,18.0,17.0,25.0,16.0,15.0,11.0,15.0,12.0,17.0,16.0,13.0,9.0,7.0,12.0,9.0,9.0,9.0,7.0,4.0,5.0,,2.0,2.0,2.0,2.0,,3.0,,,2.0 H85113,27.0,27.0,23.0,29.0,31.0,34.0,28.0,31.0,30.0,38.0,31.0,38.0,33.0,37.0,33.0,34.0,37.0,32.0,41.0,29.0,26.0,25.0,26.0,33.0,22.0,25.0,28.0,35.0,25.0,31.0,36.0,34.0,14.0,27.0,26.0,33.0,27.0,32.0,38.0,39.0,35.0,24.0,37.0,36.0,38.0,26.0,32.0,29.0,44.0,27.0,39.0,36.0,28.0,30.0,30.0,26.0,33.0,24.0,30.0,20.0,32.0,29.0,25.0,23.0,32.0,21.0,19.0,21.0,29.0,27.0,19.0,16.0,15.0,18.0,13.0,17.0,9.0,14.0,15.0,11.0,10.0,10.0,9.0,7.0,6.0,5.0,3.0,4.0,3.0,2.0,2.0,2.0,4.0,2.0,1.0,1.0 H85114,54.0,61.0,69.0,70.0,70.0,72.0,110.0,107.0,89.0,98.0,109.0,105.0,108.0,91.0,89.0,91.0,86.0,65.0,79.0,63.0,59.0,51.0,74.0,68.0,90.0,95.0,121.0,115.0,124.0,119.0,124.0,101.0,110.0,105.0,116.0,82.0,96.0,101.0,90.0,87.0,92.0,125.0,109.0,117.0,121.0,112.0,108.0,108.0,105.0,96.0,110.0,89.0,83.0,91.0,102.0,96.0,91.0,74.0,92.0,67.0,67.0,80.0,69.0,63.0,58.0,67.0,47.0,46.0,32.0,38.0,33.0,31.0,33.0,32.0,26.0,26.0,24.0,34.0,22.0,23.0,15.0,14.0,18.0,9.0,10.0,14.0,9.0,6.0,6.0,3.0,4.0,1.0,4.0,2.0,1.0,4.0 H85115,25.0,37.0,38.0,44.0,40.0,54.0,53.0,52.0,70.0,88.0,74.0,76.0,89.0,89.0,78.0,94.0,88.0,80.0,88.0,72.0,63.0,61.0,68.0,61.0,79.0,85.0,62.0,62.0,61.0,66.0,85.0,62.0,70.0,79.0,61.0,52.0,58.0,63.0,61.0,57.0,62.0,74.0,63.0,88.0,90.0,80.0,98.0,89.0,94.0,71.0,75.0,80.0,104.0,92.0,104.0,93.0,96.0,82.0,87.0,86.0,112.0,118.0,101.0,78.0,78.0,76.0,92.0,72.0,64.0,62.0,60.0,52.0,50.0,48.0,51.0,49.0,51.0,47.0,43.0,41.0,34.0,32.0,30.0,19.0,19.0,22.0,20.0,20.0,12.0,16.0,13.0,6.0,7.0,5.0,5.0,12.0 H85116,53.0,58.0,70.0,81.0,57.0,80.0,92.0,82.0,88.0,68.0,83.0,94.0,114.0,105.0,92.0,89.0,99.0,92.0,94.0,80.0,83.0,60.0,74.0,72.0,75.0,74.0,76.0,96.0,88.0,87.0,86.0,66.0,114.0,82.0,83.0,85.0,91.0,96.0,111.0,91.0,88.0,97.0,79.0,103.0,95.0,112.0,85.0,98.0,81.0,90.0,80.0,80.0,92.0,98.0,79.0,73.0,80.0,79.0,77.0,83.0,73.0,63.0,68.0,58.0,53.0,60.0,46.0,43.0,36.0,36.0,22.0,27.0,32.0,34.0,24.0,29.0,23.0,32.0,22.0,19.0,19.0,17.0,13.0,10.0,11.0,13.0,7.0,7.0,8.0,7.0,3.0,5.0,1.0,2.0,1.0,6.0 H85618,37.0,38.0,44.0,64.0,55.0,64.0,63.0,69.0,71.0,69.0,86.0,69.0,79.0,58.0,57.0,83.0,65.0,84.0,54.0,49.0,71.0,55.0,44.0,40.0,46.0,58.0,56.0,59.0,52.0,52.0,46.0,52.0,59.0,50.0,54.0,68.0,50.0,53.0,71.0,75.0,97.0,81.0,82.0,101.0,85.0,99.0,77.0,68.0,76.0,70.0,70.0,71.0,59.0,61.0,67.0,59.0,40.0,44.0,48.0,51.0,57.0,50.0,57.0,54.0,57.0,47.0,34.0,38.0,43.0,40.0,27.0,43.0,30.0,19.0,34.0,37.0,24.0,36.0,35.0,20.0,21.0,16.0,22.0,11.0,14.0,18.0,12.0,5.0,9.0,5.0,5.0,5.0,3.0,2.0,,7.0 H85634,34.0,37.0,28.0,34.0,39.0,37.0,49.0,49.0,37.0,57.0,36.0,32.0,56.0,51.0,29.0,40.0,31.0,36.0,26.0,18.0,28.0,27.0,32.0,31.0,49.0,47.0,73.0,54.0,75.0,68.0,103.0,89.0,75.0,86.0,70.0,111.0,122.0,114.0,98.0,106.0,112.0,112.0,112.0,111.0,96.0,109.0,102.0,90.0,83.0,58.0,59.0,59.0,43.0,53.0,58.0,46.0,46.0,49.0,34.0,36.0,28.0,12.0,25.0,24.0,26.0,26.0,13.0,24.0,20.0,18.0,15.0,17.0,14.0,15.0,9.0,9.0,8.0,6.0,12.0,7.0,5.0,1.0,3.0,2.0,6.0,5.0,6.0,1.0,1.0,,1.0,3.0,,,,1.0 H85637,3.0,3.0,2.0,2.0,6.0,2.0,4.0,3.0,9.0,3.0,5.0,6.0,8.0,9.0,3.0,3.0,8.0,12.0,11.0,9.0,7.0,7.0,14.0,6.0,10.0,8.0,8.0,4.0,8.0,8.0,8.0,10.0,8.0,10.0,12.0,5.0,7.0,7.0,12.0,10.0,5.0,8.0,4.0,3.0,11.0,11.0,5.0,12.0,14.0,8.0,12.0,10.0,10.0,13.0,10.0,9.0,13.0,8.0,10.0,4.0,7.0,9.0,9.0,9.0,2.0,11.0,11.0,6.0,3.0,2.0,7.0,6.0,6.0,4.0,3.0,4.0,2.0,7.0,6.0,5.0,2.0,,,2.0,4.0,,,1.0,2.0,2.0,,2.0,,2.0,,1.0 H85649,35.0,57.0,41.0,46.0,36.0,39.0,37.0,38.0,47.0,49.0,57.0,58.0,64.0,66.0,65.0,65.0,72.0,55.0,62.0,58.0,58.0,64.0,55.0,75.0,83.0,95.0,101.0,115.0,105.0,127.0,122.0,138.0,148.0,119.0,137.0,118.0,114.0,137.0,105.0,119.0,107.0,104.0,127.0,115.0,98.0,122.0,99.0,90.0,93.0,92.0,89.0,81.0,93.0,83.0,81.0,74.0,79.0,82.0,62.0,70.0,62.0,60.0,46.0,46.0,62.0,51.0,40.0,37.0,49.0,37.0,25.0,31.0,29.0,22.0,21.0,23.0,25.0,20.0,13.0,14.0,14.0,8.0,15.0,10.0,9.0,5.0,12.0,11.0,4.0,4.0,1.0,2.0,4.0,1.0,1.0,2.0 H85653,57.0,87.0,111.0,95.0,103.0,121.0,129.0,138.0,158.0,163.0,156.0,158.0,172.0,156.0,161.0,169.0,147.0,148.0,137.0,95.0,91.0,82.0,91.0,84.0,94.0,113.0,90.0,111.0,113.0,108.0,99.0,96.0,96.0,118.0,117.0,134.0,123.0,135.0,131.0,145.0,141.0,140.0,163.0,178.0,157.0,188.0,167.0,163.0,143.0,153.0,165.0,129.0,116.0,137.0,140.0,109.0,138.0,126.0,120.0,114.0,109.0,118.0,95.0,84.0,99.0,96.0,86.0,70.0,75.0,81.0,89.0,87.0,74.0,65.0,74.0,67.0,65.0,73.0,81.0,45.0,52.0,54.0,48.0,39.0,33.0,39.0,24.0,33.0,23.0,16.0,17.0,14.0,12.0,11.0,7.0,4.0 H85656,20.0,37.0,21.0,29.0,29.0,22.0,28.0,27.0,26.0,26.0,33.0,28.0,33.0,29.0,26.0,26.0,19.0,31.0,31.0,26.0,17.0,14.0,32.0,36.0,24.0,31.0,53.0,53.0,65.0,56.0,50.0,63.0,61.0,57.0,58.0,74.0,64.0,74.0,60.0,64.0,58.0,70.0,47.0,65.0,68.0,66.0,52.0,36.0,56.0,49.0,62.0,40.0,43.0,36.0,34.0,42.0,37.0,41.0,28.0,33.0,29.0,28.0,31.0,25.0,20.0,24.0,21.0,21.0,23.0,18.0,21.0,15.0,22.0,15.0,13.0,14.0,12.0,20.0,11.0,9.0,6.0,3.0,10.0,3.0,11.0,5.0,5.0,4.0,5.0,2.0,1.0,4.0,,,2.0,2.0 H85659,70.0,74.0,62.0,74.0,72.0,57.0,46.0,48.0,38.0,40.0,42.0,38.0,28.0,33.0,24.0,24.0,19.0,26.0,16.0,17.0,12.0,24.0,28.0,36.0,41.0,83.0,112.0,139.0,169.0,185.0,221.0,214.0,207.0,220.0,206.0,185.0,180.0,180.0,159.0,145.0,148.0,129.0,112.0,114.0,103.0,93.0,73.0,81.0,77.0,59.0,62.0,49.0,52.0,53.0,39.0,34.0,32.0,35.0,21.0,28.0,26.0,25.0,29.0,27.0,22.0,20.0,17.0,15.0,16.0,15.0,12.0,8.0,9.0,13.0,15.0,10.0,13.0,12.0,5.0,9.0,8.0,5.0,3.0,2.0,5.0,2.0,4.0,4.0,1.0,4.0,3.0,2.0,2.0,1.0,1.0,3.0 H85662,10.0,15.0,14.0,28.0,22.0,22.0,30.0,30.0,35.0,38.0,41.0,41.0,37.0,42.0,46.0,38.0,28.0,47.0,41.0,28.0,25.0,34.0,28.0,25.0,33.0,31.0,33.0,31.0,17.0,16.0,32.0,28.0,28.0,28.0,25.0,29.0,24.0,33.0,29.0,36.0,39.0,48.0,37.0,31.0,48.0,48.0,46.0,45.0,47.0,45.0,50.0,45.0,46.0,47.0,35.0,43.0,45.0,36.0,56.0,44.0,43.0,37.0,37.0,36.0,25.0,27.0,33.0,35.0,33.0,35.0,23.0,35.0,21.0,25.0,22.0,33.0,17.0,28.0,33.0,23.0,20.0,17.0,18.0,7.0,11.0,10.0,13.0,4.0,2.0,4.0,4.0,2.0,,2.0,1.0,4.0 H85664,3.0,3.0,1.0,1.0,3.0,3.0,,4.0,3.0,2.0,3.0,2.0,1.0,4.0,2.0,1.0,3.0,3.0,3.0,3.0,5.0,,5.0,14.0,24.0,32.0,41.0,53.0,50.0,50.0,47.0,43.0,46.0,45.0,52.0,36.0,37.0,36.0,24.0,31.0,26.0,17.0,28.0,27.0,10.0,18.0,13.0,15.0,18.0,12.0,7.0,9.0,4.0,9.0,8.0,3.0,6.0,4.0,3.0,5.0,2.0,6.0,2.0,1.0,3.0,1.0,1.0,2.0,1.0,3.0,,1.0,3.0,,4.0,1.0,2.0,1.0,1.0,1.0,,1.0,,1.0,,1.0,,1.0,3.0,,,,,1.0,, H85680,43.0,51.0,47.0,51.0,51.0,35.0,59.0,50.0,46.0,65.0,67.0,59.0,60.0,61.0,66.0,78.0,55.0,55.0,48.0,63.0,49.0,59.0,53.0,56.0,70.0,101.0,120.0,101.0,133.0,93.0,90.0,133.0,126.0,139.0,125.0,118.0,122.0,141.0,131.0,123.0,109.0,130.0,127.0,129.0,129.0,129.0,114.0,112.0,87.0,79.0,79.0,81.0,59.0,67.0,55.0,68.0,47.0,42.0,42.0,54.0,36.0,45.0,48.0,31.0,29.0,38.0,38.0,25.0,20.0,18.0,12.0,13.0,23.0,18.0,12.0,15.0,19.0,14.0,9.0,9.0,7.0,7.0,4.0,4.0,7.0,5.0,5.0,6.0,3.0,,4.0,2.0,3.0,,,3.0 H85682,28.0,54.0,53.0,51.0,49.0,45.0,54.0,59.0,60.0,56.0,67.0,69.0,73.0,69.0,73.0,69.0,83.0,58.0,64.0,74.0,53.0,63.0,67.0,81.0,79.0,99.0,84.0,118.0,81.0,111.0,108.0,106.0,105.0,124.0,118.0,120.0,123.0,126.0,119.0,105.0,106.0,111.0,112.0,109.0,122.0,127.0,112.0,108.0,90.0,90.0,82.0,76.0,86.0,74.0,68.0,77.0,87.0,54.0,54.0,67.0,60.0,54.0,56.0,34.0,46.0,29.0,31.0,31.0,22.0,23.0,23.0,23.0,31.0,11.0,15.0,25.0,19.0,13.0,10.0,7.0,9.0,10.0,7.0,7.0,2.0,5.0,6.0,,3.0,5.0,1.0,1.0,,,1.0,1.0 H85683,8.0,8.0,19.0,22.0,20.0,18.0,17.0,30.0,31.0,39.0,30.0,37.0,23.0,36.0,54.0,41.0,43.0,44.0,38.0,39.0,31.0,49.0,30.0,29.0,34.0,38.0,37.0,33.0,28.0,42.0,45.0,36.0,28.0,28.0,42.0,32.0,32.0,38.0,39.0,32.0,46.0,42.0,39.0,36.0,41.0,46.0,31.0,33.0,39.0,42.0,34.0,35.0,35.0,31.0,45.0,35.0,35.0,32.0,37.0,31.0,27.0,26.0,23.0,20.0,29.0,20.0,15.0,16.0,12.0,15.0,14.0,17.0,7.0,10.0,11.0,13.0,10.0,9.0,7.0,8.0,10.0,2.0,7.0,6.0,7.0,7.0,8.0,5.0,2.0,3.0,3.0,2.0,1.0,2.0,1.0,6.0 H85686,42.0,58.0,67.0,50.0,64.0,72.0,69.0,75.0,66.0,77.0,70.0,82.0,77.0,87.0,72.0,79.0,74.0,53.0,70.0,44.0,44.0,35.0,33.0,36.0,53.0,57.0,42.0,62.0,28.0,50.0,54.0,60.0,72.0,82.0,77.0,79.0,91.0,82.0,93.0,100.0,103.0,94.0,110.0,102.0,131.0,120.0,102.0,110.0,117.0,107.0,106.0,87.0,73.0,93.0,56.0,58.0,68.0,73.0,63.0,62.0,55.0,64.0,51.0,49.0,57.0,58.0,39.0,56.0,37.0,36.0,32.0,43.0,37.0,39.0,29.0,29.0,38.0,35.0,42.0,25.0,30.0,21.0,21.0,17.0,18.0,20.0,11.0,10.0,8.0,6.0,6.0,4.0,4.0,,3.0,5.0 H85691,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,1.0,,,,,1.0,,1.0,,,,1.0,1.0,2.0,,3.0,,2.0,1.0,1.0,1.0,3.0,1.0,,2.0,2.0,2.0 H85693,38.0,51.0,47.0,44.0,56.0,61.0,71.0,77.0,66.0,81.0,115.0,97.0,95.0,91.0,124.0,101.0,96.0,89.0,89.0,87.0,69.0,76.0,71.0,57.0,64.0,67.0,71.0,82.0,73.0,58.0,50.0,75.0,77.0,75.0,65.0,62.0,88.0,68.0,70.0,75.0,85.0,64.0,65.0,77.0,60.0,79.0,72.0,65.0,76.0,71.0,86.0,70.0,82.0,68.0,69.0,58.0,61.0,63.0,64.0,60.0,74.0,58.0,54.0,44.0,52.0,42.0,42.0,40.0,40.0,33.0,24.0,22.0,33.0,17.0,14.0,14.0,18.0,13.0,21.0,19.0,5.0,11.0,11.0,8.0,10.0,8.0,9.0,8.0,3.0,2.0,3.0,2.0,3.0,2.0,,2.0 Y00182,16.0,4.0,8.0,5.0,5.0,4.0,7.0,7.0,8.0,4.0,6.0,5.0,2.0,12.0,6.0,10.0,11.0,15.0,4.0,14.0,18.0,14.0,14.0,25.0,24.0,22.0,35.0,27.0,21.0,21.0,26.0,28.0,24.0,19.0,20.0,18.0,14.0,9.0,14.0,13.0,13.0,13.0,6.0,10.0,9.0,11.0,4.0,8.0,4.0,4.0,6.0,5.0,2.0,6.0,2.0,4.0,6.0,4.0,1.0,1.0,3.0,1.0,1.0,1.0,,,1.0,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,, Y01132,28.0,61.0,53.0,46.0,46.0,45.0,49.0,54.0,54.0,70.0,61.0,68.0,74.0,53.0,69.0,77.0,68.0,62.0,83.0,65.0,52.0,56.0,75.0,57.0,65.0,71.0,88.0,83.0,105.0,107.0,115.0,113.0,120.0,114.0,129.0,118.0,141.0,139.0,143.0,144.0,144.0,165.0,176.0,161.0,150.0,171.0,140.0,146.0,158.0,135.0,157.0,139.0,130.0,118.0,108.0,85.0,102.0,80.0,90.0,88.0,67.0,77.0,74.0,67.0,74.0,51.0,66.0,56.0,53.0,50.0,40.0,38.0,29.0,31.0,38.0,42.0,28.0,31.0,33.0,26.0,28.0,14.0,24.0,8.0,18.0,8.0,12.0,8.0,6.0,10.0,3.0,3.0,5.0,4.0,5.0,3.0 Y01206,25.0,34.0,37.0,43.0,50.0,45.0,56.0,58.0,49.0,52.0,61.0,58.0,61.0,68.0,56.0,74.0,61.0,60.0,63.0,46.0,48.0,53.0,60.0,54.0,63.0,47.0,67.0,54.0,45.0,37.0,55.0,39.0,45.0,59.0,54.0,64.0,48.0,49.0,44.0,63.0,61.0,50.0,64.0,73.0,85.0,90.0,83.0,79.0,94.0,73.0,92.0,81.0,71.0,100.0,82.0,75.0,66.0,94.0,78.0,88.0,62.0,79.0,63.0,74.0,78.0,63.0,60.0,54.0,50.0,48.0,41.0,37.0,39.0,43.0,38.0,45.0,42.0,51.0,40.0,58.0,40.0,33.0,29.0,27.0,20.0,25.0,13.0,19.0,23.0,7.0,14.0,11.0,9.0,5.0,6.0,11.0 Y02423,219.0,227.0,214.0,202.0,182.0,194.0,206.0,170.0,209.0,200.0,220.0,185.0,180.0,223.0,212.0,198.0,176.0,188.0,181.0,140.0,173.0,179.0,211.0,252.0,363.0,469.0,501.0,554.0,561.0,569.0,558.0,594.0,517.0,603.0,573.0,530.0,560.0,499.0,492.0,454.0,515.0,449.0,435.0,462.0,406.0,419.0,410.0,353.0,379.0,362.0,350.0,352.0,315.0,284.0,273.0,234.0,259.0,220.0,221.0,219.0,211.0,217.0,174.0,140.0,165.0,138.0,133.0,112.0,107.0,74.0,93.0,71.0,80.0,53.0,58.0,57.0,62.0,61.0,50.0,38.0,40.0,49.0,25.0,30.0,35.0,30.0,33.0,20.0,23.0,13.0,15.0,12.0,9.0,6.0,4.0,9.0 Y02946,30.0,27.0,31.0,30.0,21.0,21.0,28.0,26.0,18.0,19.0,24.0,19.0,22.0,24.0,22.0,27.0,13.0,21.0,20.0,13.0,19.0,17.0,34.0,62.0,86.0,109.0,154.0,178.0,208.0,202.0,219.0,191.0,224.0,187.0,220.0,194.0,193.0,188.0,156.0,170.0,138.0,119.0,104.0,104.0,76.0,67.0,54.0,47.0,45.0,33.0,36.0,37.0,28.0,27.0,16.0,22.0,20.0,22.0,22.0,18.0,15.0,12.0,11.0,15.0,10.0,9.0,4.0,11.0,6.0,6.0,5.0,5.0,4.0,5.0,5.0,7.0,2.0,6.0,2.0,,,1.0,,1.0,,1.0,,1.0,1.0,1.0,,,,,, Y05317,44.0,38.0,34.0,28.0,40.0,38.0,44.0,52.0,48.0,41.0,45.0,39.0,32.0,47.0,44.0,40.0,36.0,43.0,45.0,39.0,36.0,50.0,45.0,43.0,36.0,55.0,42.0,47.0,48.0,59.0,56.0,64.0,63.0,52.0,62.0,55.0,69.0,60.0,58.0,48.0,57.0,64.0,53.0,41.0,57.0,48.0,45.0,50.0,31.0,42.0,36.0,37.0,36.0,34.0,45.0,37.0,50.0,57.0,59.0,67.0,52.0,51.0,51.0,43.0,39.0,43.0,27.0,39.0,26.0,22.0,23.0,25.0,20.0,31.0,19.0,25.0,10.0,22.0,8.0,11.0,16.0,10.0,12.0,10.0,8.0,6.0,7.0,9.0,11.0,7.0,6.0,4.0,1.0,2.0,1.0,3.0 Y05318,26.0,26.0,23.0,28.0,22.0,32.0,34.0,35.0,42.0,36.0,40.0,35.0,31.0,43.0,50.0,51.0,44.0,45.0,30.0,30.0,38.0,30.0,41.0,27.0,38.0,50.0,49.0,42.0,46.0,45.0,50.0,34.0,40.0,56.0,33.0,50.0,57.0,34.0,51.0,49.0,41.0,35.0,36.0,35.0,35.0,26.0,31.0,41.0,33.0,42.0,41.0,36.0,44.0,39.0,39.0,40.0,36.0,41.0,32.0,41.0,45.0,42.0,31.0,42.0,34.0,39.0,22.0,32.0,23.0,22.0,18.0,29.0,17.0,13.0,14.0,16.0,22.0,13.0,9.0,5.0,14.0,2.0,14.0,9.0,4.0,10.0,5.0,5.0,3.0,1.0,3.0,2.0,1.0,1.0,2.0, Y05857,,,,,,,,,,,,,,,,,,,,,1.0,,,2.0,1.0,1.0,1.0,2.0,,,1.0,,2.0,2.0,3.0,1.0,2.0,,1.0,2.0,2.0,1.0,1.0,,1.0,1.0,3.0,3.0,2.0,2.0,3.0,2.0,2.0,4.0,,2.0,1.0,2.0,3.0,1.0,1.0,,3.0,2.0,2.0,1.0,2.0,1.0,2.0,,1.0,,2.0,2.0,,,,2.0,1.0,,,,,,,,1.0,,,,2.0,1.0,,,, Y08402,,,,,1.0,,,,,,,,,,,,,,,,,,,,,,,,1.0,1.0,,,1.0,1.0,,1.0,,1.0,,1.0,3.0,1.0,1.0,,,,1.0,,2.0,,,1.0,,2.0,,,,1.0,3.0,,,2.0,,,,,1.0,1.0,,,,,,,1.0,,,,,,,,,,,,,,,,,,,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 B82007,31.0,34.0,31.0,31.0,34.0,26.0,31.0,43.0,24.0,36.0,42.0,49.0,41.0,43.0,45.0,57.0,57.0,77.0,58.0,58.0,42.0,39.0,42.0,41.0,45.0,57.0,52.0,43.0,33.0,33.0,45.0,43.0,42.0,39.0,33.0,47.0,37.0,41.0,47.0,40.0,45.0,34.0,43.0,38.0,39.0,58.0,35.0,27.0,42.0,48.0,41.0,47.0,48.0,68.0,70.0,66.0,72.0,92.0,93.0,63.0,86.0,102.0,78.0,93.0,94.0,88.0,77.0,86.0,85.0,83.0,91.0,78.0,87.0,57.0,63.0,57.0,68.0,91.0,87.0,47.0,59.0,72.0,58.0,43.0,37.0,34.0,20.0,27.0,11.0,19.0,14.0,5.0,10.0,3.0,4.0,6.0 B82053,66.0,58.0,72.0,66.0,73.0,70.0,78.0,79.0,66.0,77.0,88.0,67.0,74.0,89.0,51.0,75.0,73.0,81.0,67.0,57.0,60.0,49.0,74.0,52.0,65.0,61.0,84.0,77.0,75.0,80.0,86.0,85.0,109.0,98.0,99.0,113.0,105.0,103.0,118.0,111.0,111.0,121.0,105.0,96.0,114.0,90.0,89.0,88.0,80.0,96.0,73.0,91.0,108.0,95.0,110.0,88.0,92.0,107.0,110.0,101.0,109.0,109.0,123.0,118.0,107.0,100.0,102.0,99.0,89.0,96.0,89.0,105.0,90.0,88.0,94.0,70.0,91.0,90.0,89.0,58.0,55.0,63.0,57.0,41.0,32.0,27.0,33.0,25.0,18.0,19.0,17.0,15.0,5.0,10.0,5.0,9.0 B83002,9.0,18.0,17.0,19.0,20.0,25.0,34.0,30.0,29.0,22.0,34.0,22.0,28.0,38.0,27.0,38.0,27.0,40.0,29.0,18.0,20.0,33.0,27.0,21.0,26.0,19.0,29.0,26.0,21.0,25.0,28.0,22.0,34.0,24.0,38.0,26.0,23.0,34.0,32.0,36.0,34.0,34.0,28.0,45.0,40.0,35.0,36.0,32.0,32.0,37.0,28.0,35.0,35.0,38.0,29.0,43.0,37.0,32.0,52.0,45.0,37.0,40.0,36.0,46.0,41.0,29.0,26.0,31.0,24.0,36.0,26.0,37.0,27.0,21.0,33.0,28.0,38.0,39.0,35.0,24.0,25.0,21.0,28.0,11.0,13.0,16.0,23.0,10.0,8.0,11.0,6.0,4.0,3.0,5.0,4.0,6.0 B83005,53.0,50.0,54.0,35.0,38.0,60.0,64.0,40.0,59.0,59.0,54.0,52.0,65.0,68.0,74.0,65.0,62.0,72.0,58.0,56.0,69.0,57.0,67.0,43.0,39.0,61.0,63.0,69.0,60.0,67.0,73.0,75.0,56.0,44.0,65.0,51.0,67.0,53.0,54.0,48.0,56.0,54.0,56.0,45.0,50.0,55.0,54.0,45.0,41.0,37.0,38.0,47.0,31.0,33.0,34.0,37.0,26.0,39.0,37.0,31.0,39.0,33.0,29.0,24.0,25.0,23.0,22.0,23.0,25.0,27.0,8.0,14.0,19.0,21.0,18.0,12.0,11.0,8.0,8.0,6.0,8.0,6.0,8.0,1.0,6.0,7.0,4.0,10.0,3.0,4.0,2.0,2.0,3.0,,,2.0 B83008,118.0,133.0,143.0,126.0,126.0,132.0,142.0,140.0,148.0,144.0,142.0,157.0,143.0,173.0,172.0,183.0,173.0,194.0,167.0,163.0,171.0,158.0,167.0,171.0,153.0,161.0,155.0,151.0,154.0,133.0,158.0,159.0,154.0,150.0,174.0,158.0,170.0,144.0,168.0,172.0,173.0,166.0,165.0,160.0,152.0,174.0,176.0,141.0,122.0,125.0,120.0,134.0,112.0,117.0,118.0,118.0,99.0,84.0,88.0,86.0,76.0,80.0,81.0,80.0,95.0,72.0,71.0,74.0,78.0,67.0,57.0,69.0,72.0,79.0,55.0,39.0,46.0,38.0,37.0,23.0,31.0,37.0,23.0,15.0,17.0,21.0,17.0,17.0,6.0,10.0,6.0,7.0,6.0,,2.0,9.0 B83009,62.0,77.0,90.0,88.0,83.0,74.0,92.0,107.0,69.0,120.0,87.0,89.0,90.0,118.0,105.0,103.0,103.0,91.0,81.0,83.0,82.0,80.0,79.0,93.0,89.0,87.0,91.0,94.0,82.0,85.0,88.0,120.0,96.0,90.0,108.0,115.0,119.0,120.0,102.0,96.0,107.0,108.0,101.0,101.0,94.0,104.0,93.0,84.0,71.0,83.0,85.0,88.0,90.0,106.0,103.0,115.0,84.0,117.0,111.0,134.0,113.0,86.0,104.0,94.0,100.0,105.0,81.0,85.0,96.0,79.0,71.0,57.0,71.0,64.0,72.0,69.0,68.0,61.0,75.0,38.0,53.0,41.0,37.0,40.0,24.0,21.0,14.0,21.0,18.0,14.0,9.0,11.0,9.0,5.0,4.0,6.0 B83010,55.0,66.0,59.0,47.0,54.0,69.0,62.0,64.0,67.0,66.0,72.0,65.0,68.0,65.0,82.0,77.0,88.0,69.0,78.0,65.0,81.0,74.0,69.0,70.0,71.0,67.0,78.0,62.0,61.0,73.0,68.0,60.0,68.0,68.0,72.0,62.0,82.0,72.0,72.0,78.0,88.0,86.0,74.0,76.0,80.0,68.0,81.0,56.0,59.0,65.0,78.0,51.0,63.0,68.0,69.0,68.0,80.0,70.0,63.0,71.0,64.0,58.0,49.0,60.0,54.0,53.0,53.0,59.0,47.0,49.0,43.0,42.0,44.0,30.0,38.0,47.0,33.0,33.0,31.0,15.0,15.0,15.0,26.0,12.0,12.0,13.0,13.0,9.0,9.0,7.0,4.0,4.0,6.0,7.0,1.0,5.0 B83012,51.0,70.0,63.0,64.0,71.0,100.0,75.0,83.0,101.0,85.0,85.0,101.0,78.0,85.0,88.0,109.0,89.0,98.0,95.0,74.0,85.0,76.0,73.0,93.0,73.0,82.0,90.0,67.0,62.0,66.0,65.0,76.0,91.0,79.0,76.0,84.0,74.0,88.0,81.0,78.0,92.0,76.0,99.0,72.0,95.0,84.0,78.0,65.0,67.0,81.0,71.0,80.0,68.0,73.0,70.0,80.0,62.0,57.0,56.0,53.0,76.0,51.0,49.0,56.0,42.0,51.0,41.0,50.0,39.0,35.0,42.0,23.0,30.0,27.0,21.0,30.0,30.0,21.0,32.0,15.0,18.0,14.0,12.0,14.0,12.0,14.0,13.0,8.0,13.0,5.0,8.0,3.0,3.0,4.0,3.0,7.0 B83014,57.0,54.0,57.0,47.0,78.0,60.0,73.0,77.0,67.0,61.0,81.0,70.0,79.0,62.0,106.0,66.0,80.0,76.0,76.0,66.0,56.0,71.0,56.0,50.0,58.0,74.0,63.0,66.0,79.0,78.0,78.0,79.0,85.0,91.0,102.0,97.0,83.0,97.0,77.0,92.0,78.0,80.0,90.0,89.0,97.0,110.0,109.0,74.0,91.0,100.0,80.0,91.0,89.0,106.0,87.0,83.0,98.0,89.0,91.0,90.0,97.0,107.0,97.0,87.0,75.0,87.0,77.0,92.0,83.0,77.0,77.0,87.0,75.0,67.0,78.0,62.0,86.0,89.0,75.0,53.0,57.0,46.0,33.0,31.0,45.0,39.0,30.0,28.0,13.0,18.0,17.0,12.0,7.0,9.0,2.0,12.0 B83015,42.0,51.0,65.0,62.0,60.0,63.0,56.0,73.0,74.0,61.0,70.0,64.0,79.0,78.0,74.0,95.0,85.0,61.0,70.0,47.0,79.0,51.0,65.0,38.0,46.0,64.0,41.0,64.0,57.0,58.0,65.0,57.0,65.0,63.0,63.0,65.0,63.0,66.0,72.0,71.0,71.0,62.0,59.0,61.0,61.0,60.0,53.0,44.0,52.0,45.0,50.0,47.0,37.0,51.0,54.0,51.0,42.0,50.0,44.0,72.0,51.0,56.0,55.0,47.0,39.0,43.0,43.0,33.0,33.0,47.0,28.0,27.0,28.0,18.0,24.0,19.0,26.0,23.0,30.0,17.0,13.0,12.0,13.0,7.0,4.0,9.0,11.0,8.0,5.0,4.0,2.0,1.0,1.0,1.0,,3.0 B83016,70.0,75.0,54.0,75.0,69.0,74.0,61.0,69.0,82.0,77.0,84.0,70.0,84.0,61.0,73.0,65.0,70.0,66.0,74.0,63.0,77.0,68.0,74.0,75.0,67.0,61.0,70.0,72.0,55.0,72.0,66.0,70.0,70.0,55.0,62.0,64.0,32.0,73.0,59.0,69.0,59.0,55.0,61.0,63.0,47.0,62.0,54.0,44.0,44.0,51.0,50.0,50.0,47.0,49.0,61.0,44.0,46.0,41.0,49.0,37.0,38.0,37.0,29.0,44.0,24.0,26.0,34.0,24.0,24.0,27.0,21.0,19.0,19.0,20.0,16.0,14.0,9.0,11.0,12.0,12.0,10.0,4.0,6.0,8.0,6.0,5.0,3.0,4.0,5.0,3.0,1.0,,1.0,,1.0,4.0 B83018,58.0,56.0,74.0,66.0,53.0,87.0,83.0,79.0,82.0,81.0,80.0,82.0,72.0,81.0,86.0,90.0,83.0,79.0,78.0,56.0,56.0,66.0,64.0,51.0,63.0,69.0,71.0,69.0,58.0,69.0,73.0,78.0,91.0,77.0,91.0,92.0,114.0,84.0,85.0,101.0,92.0,89.0,73.0,81.0,90.0,76.0,77.0,60.0,79.0,97.0,77.0,92.0,76.0,87.0,103.0,83.0,87.0,89.0,76.0,82.0,94.0,86.0,85.0,81.0,97.0,73.0,77.0,69.0,59.0,51.0,40.0,46.0,54.0,44.0,59.0,52.0,55.0,50.0,54.0,34.0,26.0,32.0,31.0,8.0,22.0,18.0,20.0,15.0,9.0,10.0,6.0,6.0,1.0,5.0,3.0,5.0 B83019,33.0,36.0,31.0,28.0,35.0,35.0,47.0,44.0,46.0,35.0,45.0,54.0,41.0,47.0,50.0,55.0,48.0,48.0,45.0,40.0,26.0,27.0,23.0,29.0,21.0,32.0,37.0,18.0,26.0,28.0,20.0,25.0,31.0,30.0,45.0,43.0,45.0,40.0,42.0,45.0,43.0,51.0,40.0,41.0,49.0,48.0,44.0,35.0,55.0,50.0,54.0,44.0,51.0,71.0,50.0,63.0,37.0,58.0,49.0,38.0,49.0,54.0,48.0,46.0,43.0,36.0,34.0,40.0,40.0,40.0,28.0,48.0,37.0,41.0,31.0,46.0,35.0,38.0,46.0,34.0,30.0,35.0,21.0,20.0,11.0,21.0,13.0,12.0,9.0,6.0,5.0,10.0,4.0,3.0,2.0,6.0 B83020,107.0,112.0,114.0,113.0,100.0,108.0,101.0,109.0,100.0,91.0,103.0,117.0,123.0,103.0,111.0,104.0,151.0,126.0,102.0,105.0,95.0,95.0,80.0,92.0,80.0,105.0,108.0,120.0,82.0,100.0,102.0,122.0,114.0,106.0,143.0,136.0,129.0,137.0,109.0,132.0,122.0,102.0,133.0,139.0,114.0,118.0,100.0,117.0,89.0,103.0,108.0,114.0,125.0,152.0,127.0,135.0,123.0,141.0,153.0,135.0,141.0,139.0,129.0,117.0,115.0,110.0,87.0,114.0,101.0,102.0,92.0,81.0,72.0,87.0,82.0,63.0,77.0,88.0,78.0,43.0,46.0,41.0,38.0,30.0,30.0,30.0,28.0,16.0,18.0,17.0,13.0,8.0,10.0,4.0,3.0,8.0 B83022,43.0,47.0,33.0,39.0,36.0,48.0,58.0,48.0,64.0,51.0,40.0,63.0,45.0,51.0,45.0,45.0,49.0,54.0,43.0,46.0,51.0,43.0,33.0,38.0,29.0,43.0,34.0,41.0,51.0,44.0,43.0,41.0,51.0,50.0,47.0,55.0,56.0,62.0,55.0,49.0,56.0,62.0,53.0,70.0,59.0,64.0,58.0,50.0,69.0,65.0,60.0,66.0,52.0,76.0,79.0,81.0,80.0,66.0,77.0,66.0,66.0,81.0,74.0,69.0,76.0,72.0,70.0,68.0,64.0,62.0,60.0,76.0,63.0,55.0,58.0,57.0,59.0,76.0,83.0,58.0,35.0,45.0,54.0,28.0,25.0,28.0,25.0,21.0,27.0,14.0,10.0,8.0,9.0,3.0,8.0,2.0 B83025,22.0,26.0,28.0,26.0,36.0,35.0,32.0,26.0,40.0,35.0,35.0,27.0,41.0,32.0,40.0,47.0,37.0,34.0,33.0,41.0,37.0,29.0,38.0,36.0,28.0,31.0,30.0,30.0,25.0,34.0,29.0,38.0,43.0,33.0,40.0,41.0,31.0,40.0,42.0,44.0,41.0,40.0,35.0,49.0,33.0,52.0,35.0,35.0,37.0,37.0,30.0,35.0,38.0,24.0,33.0,31.0,28.0,17.0,24.0,18.0,14.0,25.0,10.0,19.0,16.0,20.0,14.0,18.0,8.0,14.0,13.0,20.0,13.0,8.0,11.0,9.0,10.0,4.0,8.0,4.0,4.0,6.0,6.0,4.0,2.0,2.0,4.0,2.0,,3.0,2.0,,1.0,1.0,,4.0 B83026,45.0,46.0,54.0,47.0,40.0,37.0,37.0,51.0,57.0,52.0,65.0,55.0,60.0,52.0,53.0,54.0,65.0,47.0,60.0,52.0,53.0,51.0,40.0,57.0,56.0,57.0,59.0,45.0,47.0,57.0,45.0,44.0,53.0,47.0,42.0,54.0,51.0,49.0,47.0,61.0,54.0,62.0,63.0,42.0,63.0,52.0,51.0,45.0,45.0,29.0,45.0,29.0,40.0,39.0,31.0,35.0,29.0,21.0,21.0,19.0,16.0,20.0,18.0,15.0,7.0,18.0,9.0,15.0,6.0,12.0,10.0,8.0,12.0,7.0,6.0,6.0,4.0,3.0,7.0,1.0,5.0,1.0,2.0,5.0,,1.0,2.0,3.0,1.0,3.0,2.0,2.0,,,1.0,1.0 B83028,54.0,51.0,56.0,62.0,55.0,62.0,59.0,72.0,71.0,67.0,54.0,60.0,67.0,71.0,87.0,59.0,74.0,64.0,67.0,69.0,57.0,57.0,56.0,77.0,50.0,62.0,56.0,62.0,57.0,66.0,56.0,80.0,73.0,90.0,83.0,72.0,69.0,91.0,67.0,74.0,55.0,77.0,67.0,66.0,80.0,76.0,82.0,62.0,57.0,61.0,65.0,58.0,68.0,70.0,72.0,69.0,70.0,69.0,81.0,73.0,100.0,85.0,63.0,74.0,65.0,69.0,53.0,61.0,58.0,45.0,50.0,69.0,52.0,43.0,39.0,44.0,37.0,49.0,42.0,32.0,26.0,26.0,34.0,22.0,24.0,11.0,13.0,10.0,11.0,7.0,7.0,3.0,5.0,2.0,1.0,7.0 B83029,48.0,51.0,51.0,70.0,42.0,61.0,71.0,80.0,51.0,78.0,71.0,68.0,69.0,73.0,63.0,71.0,71.0,61.0,50.0,64.0,34.0,41.0,49.0,50.0,34.0,34.0,50.0,45.0,54.0,49.0,67.0,57.0,80.0,60.0,72.0,64.0,74.0,70.0,70.0,64.0,63.0,50.0,72.0,76.0,67.0,68.0,67.0,50.0,55.0,49.0,56.0,63.0,67.0,73.0,76.0,74.0,67.0,95.0,75.0,65.0,83.0,62.0,89.0,58.0,57.0,70.0,61.0,58.0,59.0,60.0,47.0,55.0,40.0,37.0,43.0,54.0,44.0,53.0,33.0,31.0,29.0,32.0,27.0,25.0,13.0,16.0,15.0,18.0,10.0,8.0,7.0,2.0,2.0,2.0,2.0,6.0 B83031,8.0,17.0,19.0,12.0,25.0,10.0,22.0,22.0,24.0,17.0,25.0,28.0,21.0,22.0,31.0,32.0,17.0,19.0,19.0,18.0,11.0,14.0,17.0,16.0,9.0,17.0,23.0,12.0,13.0,17.0,17.0,20.0,16.0,20.0,25.0,30.0,27.0,40.0,28.0,29.0,35.0,30.0,22.0,38.0,36.0,39.0,33.0,27.0,28.0,31.0,31.0,32.0,23.0,30.0,26.0,27.0,23.0,22.0,33.0,26.0,29.0,31.0,33.0,25.0,18.0,25.0,28.0,26.0,27.0,27.0,31.0,31.0,21.0,19.0,18.0,23.0,19.0,21.0,22.0,12.0,11.0,15.0,7.0,9.0,6.0,6.0,7.0,1.0,5.0,2.0,3.0,2.0,1.0,1.0,2.0,1.0 B83032,26.0,32.0,32.0,30.0,32.0,32.0,45.0,32.0,35.0,32.0,21.0,51.0,35.0,48.0,33.0,37.0,42.0,41.0,37.0,27.0,47.0,30.0,44.0,42.0,38.0,36.0,35.0,37.0,44.0,42.0,34.0,41.0,44.0,40.0,31.0,35.0,36.0,32.0,34.0,18.0,46.0,36.0,33.0,24.0,39.0,35.0,29.0,47.0,38.0,38.0,30.0,31.0,28.0,20.0,30.0,29.0,26.0,17.0,19.0,17.0,29.0,17.0,22.0,20.0,19.0,19.0,21.0,12.0,17.0,17.0,16.0,10.0,10.0,14.0,12.0,6.0,5.0,7.0,5.0,2.0,4.0,3.0,2.0,6.0,3.0,8.0,2.0,5.0,3.0,1.0,1.0,1.0,,2.0,,1.0 B83033,358.0,376.0,387.0,400.0,413.0,437.0,457.0,439.0,523.0,558.0,472.0,542.0,566.0,569.0,562.0,591.0,528.0,526.0,497.0,425.0,466.0,443.0,443.0,429.0,418.0,433.0,469.0,483.0,480.0,462.0,503.0,531.0,544.0,538.0,534.0,517.0,544.0,529.0,555.0,582.0,492.0,553.0,552.0,506.0,549.0,557.0,538.0,484.0,478.0,489.0,499.0,543.0,595.0,617.0,619.0,605.0,629.0,624.0,689.0,633.0,643.0,612.0,644.0,604.0,594.0,563.0,529.0,516.0,502.0,495.0,443.0,446.0,481.0,413.0,423.0,429.0,436.0,458.0,444.0,271.0,322.0,253.0,233.0,196.0,142.0,146.0,144.0,139.0,129.0,91.0,90.0,42.0,45.0,45.0,24.0,50.0 B83034,43.0,34.0,52.0,50.0,53.0,46.0,45.0,52.0,66.0,59.0,62.0,53.0,60.0,49.0,69.0,59.0,66.0,79.0,65.0,53.0,51.0,74.0,57.0,55.0,62.0,58.0,60.0,50.0,60.0,57.0,68.0,56.0,58.0,56.0,55.0,58.0,53.0,64.0,73.0,59.0,76.0,66.0,66.0,66.0,71.0,64.0,65.0,58.0,51.0,55.0,46.0,50.0,43.0,48.0,34.0,43.0,37.0,40.0,21.0,23.0,26.0,15.0,17.0,22.0,16.0,21.0,21.0,21.0,21.0,26.0,16.0,22.0,19.0,19.0,11.0,8.0,4.0,4.0,4.0,6.0,3.0,7.0,4.0,3.0,6.0,5.0,3.0,2.0,7.0,3.0,1.0,4.0,2.0,1.0,3.0,4.0 B83035,122.0,94.0,117.0,98.0,106.0,126.0,132.0,129.0,119.0,131.0,146.0,125.0,124.0,138.0,146.0,156.0,135.0,150.0,126.0,152.0,139.0,126.0,128.0,131.0,147.0,129.0,126.0,136.0,127.0,133.0,133.0,127.0,138.0,128.0,129.0,160.0,162.0,142.0,146.0,149.0,142.0,121.0,144.0,126.0,144.0,156.0,108.0,105.0,111.0,97.0,93.0,104.0,77.0,84.0,70.0,73.0,68.0,77.0,57.0,51.0,55.0,54.0,59.0,61.0,59.0,56.0,41.0,43.0,44.0,38.0,42.0,38.0,34.0,36.0,30.0,31.0,26.0,29.0,18.0,11.0,15.0,8.0,5.0,14.0,13.0,5.0,15.0,10.0,11.0,5.0,3.0,4.0,4.0,2.0,1.0,4.0 B83037,40.0,34.0,44.0,58.0,35.0,35.0,55.0,41.0,46.0,49.0,56.0,56.0,51.0,56.0,37.0,59.0,60.0,43.0,46.0,43.0,48.0,47.0,47.0,49.0,30.0,37.0,39.0,42.0,49.0,59.0,46.0,54.0,45.0,55.0,56.0,62.0,59.0,56.0,62.0,56.0,63.0,51.0,45.0,53.0,60.0,55.0,47.0,54.0,59.0,44.0,61.0,68.0,76.0,69.0,69.0,65.0,85.0,82.0,79.0,78.0,73.0,72.0,92.0,74.0,65.0,67.0,63.0,64.0,59.0,69.0,65.0,60.0,66.0,58.0,56.0,56.0,64.0,73.0,64.0,42.0,44.0,36.0,36.0,31.0,23.0,19.0,17.0,16.0,16.0,10.0,10.0,7.0,6.0,4.0,4.0,5.0 B83038,121.0,123.0,104.0,122.0,124.0,143.0,131.0,150.0,145.0,136.0,138.0,139.0,160.0,161.0,147.0,173.0,168.0,149.0,129.0,148.0,142.0,157.0,145.0,152.0,138.0,150.0,151.0,139.0,135.0,140.0,132.0,123.0,131.0,133.0,130.0,144.0,118.0,133.0,128.0,122.0,123.0,125.0,115.0,131.0,155.0,108.0,110.0,120.0,137.0,118.0,110.0,123.0,102.0,117.0,98.0,105.0,97.0,83.0,103.0,79.0,75.0,82.0,77.0,81.0,81.0,78.0,76.0,83.0,50.0,75.0,61.0,58.0,53.0,61.0,35.0,40.0,47.0,38.0,33.0,25.0,46.0,26.0,38.0,17.0,20.0,27.0,17.0,20.0,10.0,4.0,13.0,6.0,1.0,3.0,3.0,9.0 B83039,107.0,101.0,112.0,143.0,108.0,130.0,129.0,147.0,159.0,152.0,129.0,154.0,162.0,155.0,129.0,136.0,160.0,144.0,127.0,116.0,127.0,108.0,118.0,89.0,96.0,112.0,98.0,124.0,139.0,136.0,163.0,111.0,156.0,165.0,143.0,202.0,194.0,191.0,162.0,173.0,163.0,166.0,163.0,149.0,163.0,190.0,173.0,157.0,142.0,159.0,158.0,182.0,151.0,158.0,194.0,162.0,181.0,164.0,158.0,166.0,186.0,142.0,180.0,153.0,154.0,141.0,134.0,128.0,134.0,130.0,104.0,111.0,95.0,98.0,114.0,114.0,115.0,126.0,97.0,72.0,73.0,61.0,51.0,47.0,42.0,37.0,42.0,29.0,29.0,30.0,21.0,19.0,13.0,12.0,7.0,9.0 B83041,64.0,69.0,72.0,96.0,99.0,103.0,98.0,105.0,115.0,120.0,136.0,140.0,133.0,134.0,143.0,146.0,124.0,121.0,125.0,116.0,98.0,92.0,86.0,90.0,93.0,103.0,94.0,83.0,105.0,85.0,104.0,100.0,104.0,102.0,123.0,104.0,132.0,94.0,90.0,104.0,146.0,135.0,134.0,93.0,118.0,127.0,111.0,95.0,79.0,81.0,100.0,74.0,77.0,94.0,84.0,96.0,98.0,90.0,96.0,80.0,86.0,83.0,95.0,68.0,74.0,76.0,74.0,59.0,62.0,56.0,48.0,45.0,40.0,36.0,30.0,41.0,36.0,34.0,44.0,25.0,25.0,11.0,18.0,16.0,17.0,13.0,9.0,8.0,8.0,11.0,7.0,3.0,1.0,1.0,2.0,4.0 B83042,57.0,64.0,64.0,53.0,65.0,52.0,67.0,65.0,72.0,76.0,73.0,68.0,79.0,77.0,71.0,71.0,67.0,54.0,62.0,69.0,61.0,42.0,55.0,48.0,41.0,49.0,61.0,55.0,54.0,67.0,54.0,54.0,42.0,64.0,64.0,82.0,65.0,74.0,71.0,70.0,52.0,57.0,70.0,63.0,74.0,55.0,64.0,53.0,52.0,51.0,53.0,39.0,48.0,53.0,51.0,54.0,49.0,52.0,41.0,51.0,39.0,62.0,43.0,43.0,39.0,38.0,34.0,35.0,37.0,33.0,32.0,34.0,34.0,27.0,20.0,32.0,27.0,16.0,25.0,13.0,17.0,12.0,15.0,9.0,6.0,13.0,8.0,7.0,4.0,7.0,1.0,3.0,1.0,1.0,1.0,3.0 B83045,46.0,62.0,48.0,70.0,66.0,53.0,67.0,76.0,82.0,97.0,73.0,90.0,89.0,87.0,95.0,115.0,84.0,90.0,96.0,82.0,70.0,81.0,81.0,73.0,63.0,82.0,83.0,79.0,80.0,80.0,55.0,58.0,74.0,89.0,79.0,91.0,70.0,86.0,77.0,82.0,79.0,68.0,73.0,78.0,92.0,69.0,74.0,69.0,76.0,66.0,85.0,73.0,71.0,87.0,87.0,84.0,80.0,77.0,80.0,71.0,79.0,75.0,89.0,65.0,83.0,67.0,71.0,63.0,84.0,52.0,56.0,56.0,56.0,43.0,54.0,53.0,41.0,44.0,53.0,27.0,32.0,32.0,22.0,20.0,18.0,19.0,16.0,13.0,9.0,11.0,7.0,7.0,3.0,5.0,1.0,5.0 B83051,58.0,61.0,48.0,38.0,48.0,57.0,43.0,41.0,24.0,30.0,39.0,35.0,33.0,26.0,29.0,32.0,26.0,25.0,37.0,53.0,70.0,107.0,123.0,154.0,194.0,221.0,249.0,316.0,326.0,342.0,307.0,333.0,311.0,305.0,276.0,265.0,217.0,211.0,215.0,210.0,223.0,186.0,190.0,172.0,134.0,58.0,50.0,59.0,48.0,28.0,28.0,27.0,23.0,11.0,14.0,11.0,7.0,18.0,9.0,9.0,6.0,6.0,5.0,2.0,2.0,5.0,5.0,,3.0,3.0,1.0,1.0,3.0,,1.0,1.0,2.0,1.0,,,,,,,,,,,,,,,,,, B83052,109.0,184.0,162.0,182.0,176.0,191.0,194.0,215.0,187.0,222.0,212.0,205.0,201.0,196.0,217.0,207.0,227.0,211.0,212.0,219.0,208.0,214.0,195.0,213.0,204.0,183.0,206.0,216.0,190.0,170.0,174.0,189.0,183.0,187.0,178.0,178.0,181.0,172.0,173.0,193.0,158.0,214.0,210.0,194.0,183.0,184.0,178.0,189.0,183.0,144.0,135.0,120.0,139.0,151.0,144.0,125.0,130.0,127.0,94.0,88.0,95.0,86.0,74.0,77.0,82.0,85.0,82.0,64.0,71.0,62.0,55.0,57.0,56.0,51.0,64.0,40.0,35.0,37.0,30.0,22.0,20.0,12.0,23.0,16.0,9.0,12.0,16.0,11.0,13.0,12.0,11.0,14.0,4.0,4.0,3.0,9.0 B83054,50.0,40.0,40.0,40.0,36.0,38.0,30.0,28.0,32.0,32.0,33.0,26.0,39.0,41.0,40.0,41.0,43.0,40.0,39.0,34.0,34.0,22.0,34.0,26.0,39.0,28.0,39.0,31.0,45.0,37.0,42.0,41.0,43.0,58.0,51.0,53.0,65.0,55.0,54.0,46.0,52.0,41.0,44.0,26.0,42.0,42.0,30.0,38.0,35.0,42.0,26.0,48.0,41.0,37.0,43.0,42.0,35.0,38.0,39.0,45.0,41.0,33.0,34.0,40.0,41.0,30.0,41.0,21.0,30.0,21.0,25.0,18.0,22.0,23.0,33.0,26.0,21.0,21.0,14.0,19.0,7.0,10.0,10.0,6.0,10.0,8.0,4.0,10.0,6.0,3.0,4.0,2.0,3.0,2.0,,4.0 B83055,193.0,223.0,190.0,209.0,201.0,214.0,223.0,214.0,236.0,255.0,247.0,269.0,267.0,265.0,253.0,273.0,255.0,265.0,250.0,253.0,200.0,202.0,225.0,222.0,240.0,231.0,232.0,232.0,246.0,201.0,247.0,238.0,225.0,252.0,250.0,200.0,224.0,220.0,241.0,243.0,249.0,240.0,241.0,206.0,241.0,246.0,199.0,194.0,197.0,163.0,175.0,158.0,187.0,181.0,191.0,208.0,178.0,183.0,192.0,158.0,191.0,177.0,146.0,154.0,134.0,153.0,137.0,118.0,127.0,133.0,96.0,95.0,115.0,90.0,87.0,71.0,86.0,71.0,58.0,49.0,42.0,30.0,47.0,25.0,45.0,30.0,32.0,25.0,21.0,11.0,10.0,7.0,6.0,11.0,3.0,10.0 B83056,34.0,57.0,55.0,66.0,47.0,56.0,59.0,55.0,52.0,55.0,67.0,59.0,51.0,47.0,63.0,58.0,50.0,51.0,43.0,54.0,44.0,38.0,49.0,57.0,51.0,43.0,47.0,51.0,57.0,68.0,45.0,50.0,59.0,66.0,69.0,65.0,59.0,67.0,64.0,51.0,62.0,56.0,58.0,57.0,68.0,51.0,42.0,49.0,42.0,31.0,39.0,41.0,44.0,61.0,43.0,50.0,51.0,56.0,57.0,48.0,58.0,57.0,63.0,50.0,41.0,46.0,51.0,32.0,39.0,29.0,37.0,33.0,26.0,26.0,26.0,33.0,30.0,29.0,28.0,12.0,20.0,21.0,15.0,15.0,11.0,12.0,13.0,14.0,9.0,10.0,8.0,5.0,4.0,6.0,3.0,5.0 B83058,74.0,72.0,65.0,71.0,88.0,63.0,64.0,71.0,79.0,85.0,72.0,93.0,76.0,84.0,78.0,78.0,93.0,96.0,76.0,80.0,78.0,86.0,89.0,111.0,96.0,108.0,89.0,119.0,97.0,88.0,87.0,103.0,80.0,95.0,74.0,80.0,78.0,64.0,88.0,58.0,72.0,72.0,72.0,52.0,67.0,57.0,70.0,47.0,60.0,69.0,63.0,45.0,44.0,31.0,38.0,42.0,42.0,22.0,29.0,27.0,24.0,19.0,27.0,22.0,16.0,17.0,8.0,12.0,19.0,15.0,10.0,12.0,18.0,9.0,8.0,6.0,6.0,6.0,1.0,3.0,2.0,3.0,1.0,3.0,5.0,3.0,3.0,3.0,2.0,4.0,2.0,3.0,,,,2.0 B83062,54.0,46.0,57.0,57.0,58.0,66.0,58.0,62.0,79.0,88.0,80.0,70.0,65.0,56.0,75.0,76.0,74.0,67.0,54.0,63.0,66.0,60.0,55.0,54.0,48.0,57.0,57.0,47.0,52.0,49.0,59.0,74.0,51.0,76.0,71.0,80.0,78.0,70.0,56.0,54.0,73.0,61.0,68.0,68.0,66.0,54.0,62.0,52.0,52.0,63.0,56.0,54.0,56.0,61.0,45.0,52.0,51.0,50.0,50.0,54.0,42.0,50.0,51.0,66.0,52.0,51.0,46.0,49.0,37.0,22.0,32.0,41.0,25.0,29.0,24.0,21.0,29.0,22.0,18.0,17.0,12.0,10.0,11.0,8.0,7.0,8.0,4.0,3.0,6.0,2.0,2.0,2.0,2.0,4.0,1.0,3.0 B83063,100.0,89.0,113.0,84.0,111.0,105.0,119.0,107.0,116.0,146.0,139.0,132.0,139.0,138.0,114.0,117.0,132.0,135.0,117.0,113.0,115.0,133.0,111.0,115.0,124.0,114.0,113.0,126.0,128.0,143.0,146.0,135.0,145.0,166.0,157.0,156.0,139.0,161.0,165.0,150.0,157.0,165.0,159.0,185.0,150.0,161.0,148.0,130.0,123.0,143.0,155.0,118.0,134.0,138.0,122.0,124.0,103.0,133.0,137.0,130.0,117.0,121.0,118.0,119.0,97.0,108.0,93.0,96.0,93.0,84.0,90.0,91.0,81.0,61.0,72.0,66.0,71.0,60.0,57.0,32.0,26.0,39.0,31.0,23.0,24.0,22.0,20.0,19.0,11.0,10.0,13.0,7.0,4.0,8.0,5.0,11.0 B83064,63.0,69.0,69.0,81.0,81.0,91.0,71.0,93.0,83.0,103.0,84.0,87.0,83.0,102.0,95.0,95.0,90.0,70.0,77.0,97.0,77.0,67.0,62.0,69.0,64.0,56.0,59.0,60.0,75.0,71.0,64.0,80.0,62.0,93.0,97.0,80.0,92.0,88.0,81.0,79.0,79.0,92.0,70.0,77.0,71.0,60.0,66.0,47.0,56.0,60.0,62.0,42.0,58.0,64.0,71.0,59.0,68.0,63.0,85.0,65.0,74.0,72.0,63.0,65.0,76.0,57.0,42.0,68.0,62.0,50.0,54.0,44.0,36.0,36.0,38.0,33.0,30.0,42.0,31.0,22.0,28.0,25.0,25.0,11.0,12.0,10.0,11.0,17.0,16.0,3.0,5.0,4.0,2.0,1.0,5.0,6.0 B83067,30.0,20.0,18.0,32.0,34.0,28.0,15.0,41.0,35.0,44.0,32.0,39.0,47.0,48.0,50.0,50.0,48.0,43.0,47.0,36.0,49.0,45.0,34.0,41.0,34.0,47.0,51.0,40.0,32.0,34.0,44.0,35.0,36.0,39.0,46.0,42.0,46.0,40.0,46.0,49.0,47.0,48.0,55.0,40.0,47.0,50.0,38.0,63.0,54.0,41.0,59.0,60.0,64.0,65.0,58.0,60.0,70.0,54.0,61.0,53.0,72.0,50.0,61.0,67.0,69.0,63.0,46.0,45.0,53.0,41.0,50.0,45.0,49.0,33.0,41.0,45.0,43.0,40.0,33.0,31.0,28.0,24.0,18.0,17.0,17.0,12.0,15.0,7.0,14.0,9.0,5.0,5.0,9.0,8.0,2.0,6.0 B83604,37.0,40.0,41.0,37.0,33.0,39.0,33.0,39.0,25.0,44.0,36.0,41.0,28.0,29.0,35.0,41.0,48.0,33.0,38.0,38.0,30.0,47.0,26.0,45.0,33.0,36.0,49.0,50.0,27.0,39.0,44.0,48.0,32.0,45.0,43.0,35.0,32.0,42.0,43.0,40.0,36.0,42.0,46.0,29.0,41.0,30.0,35.0,35.0,44.0,28.0,45.0,36.0,17.0,23.0,32.0,31.0,17.0,24.0,31.0,14.0,13.0,10.0,13.0,8.0,16.0,10.0,14.0,16.0,15.0,6.0,15.0,18.0,11.0,15.0,12.0,8.0,1.0,7.0,6.0,3.0,1.0,4.0,3.0,1.0,2.0,6.0,3.0,1.0,5.0,1.0,1.0,,1.0,,,3.0 B83611,84.0,84.0,95.0,101.0,97.0,89.0,105.0,90.0,110.0,96.0,88.0,107.0,96.0,113.0,102.0,100.0,96.0,92.0,93.0,97.0,77.0,84.0,97.0,107.0,102.0,88.0,100.0,85.0,81.0,88.0,96.0,107.0,106.0,104.0,107.0,122.0,136.0,123.0,97.0,143.0,119.0,137.0,122.0,114.0,128.0,109.0,111.0,95.0,78.0,76.0,65.0,75.0,69.0,79.0,73.0,56.0,55.0,62.0,49.0,45.0,31.0,30.0,29.0,30.0,30.0,31.0,37.0,26.0,35.0,30.0,33.0,21.0,36.0,27.0,25.0,16.0,10.0,12.0,10.0,6.0,12.0,9.0,7.0,2.0,6.0,3.0,13.0,4.0,3.0,3.0,7.0,1.0,1.0,2.0,1.0,1.0 B83614,79.0,73.0,74.0,63.0,92.0,66.0,86.0,78.0,86.0,83.0,71.0,88.0,98.0,87.0,84.0,99.0,80.0,85.0,105.0,74.0,80.0,71.0,91.0,91.0,83.0,96.0,98.0,91.0,78.0,86.0,86.0,75.0,86.0,78.0,67.0,76.0,71.0,99.0,74.0,80.0,88.0,82.0,84.0,87.0,87.0,73.0,76.0,74.0,60.0,55.0,54.0,58.0,57.0,56.0,55.0,39.0,39.0,41.0,44.0,33.0,30.0,21.0,24.0,16.0,23.0,15.0,14.0,30.0,16.0,34.0,15.0,20.0,12.0,18.0,10.0,15.0,9.0,10.0,7.0,5.0,4.0,6.0,6.0,4.0,7.0,7.0,4.0,2.0,3.0,3.0,4.0,4.0,2.0,1.0,2.0,4.0 B83620,8.0,7.0,11.0,8.0,13.0,8.0,13.0,10.0,18.0,10.0,12.0,23.0,25.0,16.0,15.0,13.0,11.0,19.0,9.0,5.0,5.0,8.0,14.0,7.0,6.0,12.0,7.0,6.0,8.0,12.0,8.0,13.0,14.0,9.0,17.0,13.0,15.0,13.0,17.0,9.0,13.0,13.0,10.0,14.0,20.0,12.0,16.0,9.0,9.0,10.0,16.0,17.0,20.0,19.0,18.0,30.0,21.0,26.0,15.0,31.0,28.0,33.0,29.0,30.0,30.0,20.0,34.0,22.0,36.0,35.0,37.0,30.0,28.0,31.0,28.0,35.0,40.0,41.0,32.0,28.0,20.0,24.0,18.0,15.0,13.0,13.0,15.0,11.0,12.0,8.0,4.0,4.0,9.0,4.0,2.0,1.0 B83622,36.0,27.0,22.0,30.0,22.0,26.0,17.0,35.0,27.0,28.0,42.0,26.0,49.0,37.0,35.0,44.0,40.0,40.0,46.0,41.0,30.0,31.0,40.0,39.0,39.0,48.0,40.0,34.0,32.0,34.0,34.0,40.0,21.0,27.0,36.0,25.0,40.0,36.0,27.0,41.0,39.0,38.0,29.0,32.0,40.0,51.0,37.0,29.0,22.0,30.0,29.0,29.0,30.0,19.0,33.0,20.0,14.0,20.0,19.0,22.0,14.0,14.0,17.0,14.0,17.0,15.0,18.0,20.0,9.0,9.0,20.0,9.0,11.0,9.0,3.0,6.0,5.0,6.0,4.0,4.0,6.0,,5.0,4.0,3.0,1.0,2.0,1.0,2.0,1.0,,2.0,1.0,,, B83624,32.0,54.0,48.0,54.0,54.0,72.0,68.0,66.0,70.0,80.0,84.0,80.0,82.0,92.0,93.0,109.0,115.0,114.0,97.0,92.0,81.0,77.0,72.0,97.0,70.0,73.0,83.0,71.0,64.0,82.0,61.0,68.0,77.0,88.0,74.0,83.0,71.0,74.0,74.0,71.0,76.0,79.0,81.0,97.0,93.0,87.0,104.0,85.0,103.0,97.0,123.0,113.0,114.0,139.0,131.0,134.0,133.0,172.0,142.0,143.0,168.0,153.0,138.0,139.0,151.0,142.0,119.0,115.0,114.0,119.0,92.0,113.0,104.0,91.0,87.0,79.0,86.0,117.0,124.0,60.0,83.0,74.0,75.0,61.0,44.0,70.0,44.0,51.0,54.0,31.0,31.0,22.0,18.0,14.0,12.0,20.0 B83626,45.0,49.0,54.0,52.0,55.0,40.0,43.0,56.0,49.0,58.0,63.0,52.0,55.0,70.0,70.0,54.0,66.0,66.0,56.0,59.0,52.0,57.0,78.0,58.0,49.0,45.0,57.0,56.0,69.0,48.0,55.0,54.0,51.0,51.0,48.0,59.0,43.0,48.0,48.0,57.0,53.0,43.0,44.0,56.0,51.0,39.0,45.0,35.0,37.0,35.0,42.0,39.0,38.0,43.0,42.0,31.0,34.0,26.0,25.0,18.0,17.0,16.0,16.0,15.0,23.0,15.0,22.0,15.0,21.0,12.0,9.0,14.0,9.0,13.0,10.0,7.0,6.0,5.0,7.0,4.0,5.0,4.0,6.0,6.0,4.0,5.0,2.0,4.0,1.0,1.0,1.0,3.0,2.0,,,2.0 B83627,17.0,23.0,19.0,27.0,24.0,22.0,18.0,31.0,30.0,26.0,19.0,27.0,25.0,30.0,33.0,33.0,32.0,24.0,38.0,26.0,33.0,28.0,25.0,30.0,32.0,26.0,29.0,25.0,21.0,19.0,30.0,26.0,29.0,26.0,35.0,32.0,42.0,37.0,35.0,37.0,35.0,34.0,37.0,37.0,29.0,43.0,34.0,24.0,34.0,21.0,29.0,28.0,33.0,28.0,36.0,32.0,16.0,15.0,20.0,21.0,14.0,24.0,12.0,8.0,13.0,23.0,9.0,8.0,6.0,16.0,8.0,11.0,13.0,10.0,12.0,8.0,10.0,13.0,6.0,8.0,4.0,5.0,5.0,2.0,5.0,4.0,2.0,4.0,3.0,3.0,2.0,,,,,1.0 B83628,90.0,69.0,83.0,79.0,73.0,65.0,86.0,60.0,65.0,90.0,77.0,69.0,75.0,74.0,91.0,87.0,72.0,78.0,63.0,65.0,82.0,90.0,95.0,94.0,82.0,97.0,99.0,93.0,98.0,103.0,99.0,117.0,90.0,118.0,115.0,121.0,125.0,133.0,106.0,110.0,115.0,100.0,96.0,104.0,105.0,93.0,77.0,71.0,55.0,72.0,65.0,57.0,65.0,66.0,57.0,52.0,50.0,44.0,37.0,30.0,28.0,24.0,26.0,34.0,26.0,22.0,30.0,26.0,16.0,18.0,24.0,19.0,18.0,18.0,11.0,9.0,4.0,6.0,3.0,3.0,6.0,3.0,7.0,5.0,5.0,7.0,3.0,3.0,2.0,7.0,1.0,2.0,3.0,,2.0,3.0 B83629,16.0,20.0,23.0,25.0,23.0,25.0,24.0,23.0,28.0,28.0,31.0,29.0,27.0,35.0,27.0,18.0,35.0,31.0,29.0,21.0,31.0,18.0,25.0,20.0,23.0,22.0,19.0,25.0,23.0,20.0,19.0,22.0,22.0,26.0,18.0,25.0,16.0,30.0,25.0,26.0,20.0,23.0,24.0,25.0,23.0,36.0,20.0,22.0,22.0,16.0,15.0,22.0,23.0,14.0,18.0,21.0,17.0,25.0,8.0,23.0,14.0,17.0,14.0,17.0,19.0,11.0,8.0,14.0,9.0,7.0,8.0,10.0,7.0,14.0,6.0,12.0,7.0,12.0,5.0,1.0,1.0,7.0,,2.0,1.0,3.0,1.0,2.0,4.0,1.0,,,1.0,,,1.0 B83641,83.0,84.0,64.0,81.0,73.0,73.0,80.0,66.0,86.0,87.0,88.0,82.0,98.0,74.0,99.0,108.0,96.0,94.0,80.0,73.0,83.0,88.0,98.0,84.0,80.0,88.0,100.0,106.0,97.0,75.0,92.0,85.0,85.0,81.0,65.0,91.0,74.0,77.0,72.0,81.0,78.0,80.0,63.0,93.0,71.0,55.0,89.0,80.0,82.0,73.0,68.0,63.0,63.0,59.0,56.0,56.0,52.0,45.0,46.0,25.0,29.0,27.0,21.0,25.0,24.0,25.0,32.0,26.0,22.0,17.0,24.0,21.0,24.0,25.0,13.0,9.0,8.0,10.0,6.0,3.0,5.0,7.0,5.0,8.0,4.0,8.0,3.0,4.0,4.0,7.0,2.0,3.0,1.0,3.0,,1.0 B83642,39.0,40.0,29.0,43.0,44.0,37.0,32.0,37.0,39.0,37.0,29.0,44.0,28.0,40.0,33.0,30.0,38.0,30.0,30.0,31.0,38.0,39.0,33.0,46.0,32.0,42.0,33.0,37.0,39.0,43.0,38.0,37.0,45.0,32.0,37.0,44.0,34.0,43.0,43.0,41.0,41.0,37.0,34.0,33.0,27.0,43.0,38.0,34.0,36.0,33.0,33.0,33.0,32.0,26.0,18.0,27.0,28.0,29.0,19.0,14.0,18.0,11.0,12.0,9.0,13.0,13.0,18.0,19.0,13.0,14.0,15.0,11.0,12.0,13.0,4.0,7.0,3.0,3.0,2.0,3.0,3.0,4.0,2.0,,3.0,3.0,8.0,3.0,2.0,2.0,2.0,1.0,,3.0,,4.0 B83653,43.0,44.0,63.0,57.0,57.0,50.0,43.0,75.0,73.0,76.0,79.0,81.0,74.0,76.0,63.0,86.0,89.0,75.0,90.0,73.0,77.0,79.0,77.0,69.0,64.0,58.0,63.0,62.0,62.0,70.0,46.0,59.0,67.0,62.0,65.0,60.0,61.0,65.0,57.0,56.0,58.0,59.0,58.0,51.0,65.0,82.0,71.0,66.0,56.0,58.0,47.0,61.0,46.0,46.0,29.0,36.0,32.0,24.0,31.0,35.0,28.0,18.0,18.0,22.0,27.0,17.0,21.0,19.0,14.0,15.0,17.0,24.0,21.0,22.0,12.0,2.0,6.0,5.0,10.0,6.0,2.0,4.0,5.0,2.0,5.0,7.0,7.0,3.0,2.0,1.0,2.0,1.0,,1.0,2.0,1.0 B83657,28.0,36.0,32.0,29.0,23.0,20.0,30.0,19.0,24.0,28.0,37.0,31.0,20.0,23.0,29.0,23.0,30.0,72.0,79.0,81.0,86.0,79.0,68.0,119.0,132.0,145.0,142.0,142.0,121.0,149.0,153.0,142.0,152.0,120.0,131.0,132.0,136.0,96.0,117.0,103.0,81.0,88.0,83.0,74.0,79.0,81.0,77.0,54.0,67.0,48.0,58.0,60.0,42.0,38.0,46.0,29.0,31.0,27.0,15.0,26.0,22.0,16.0,5.0,11.0,9.0,9.0,11.0,3.0,6.0,6.0,6.0,4.0,2.0,2.0,1.0,2.0,2.0,,,1.0,,1.0,,,,1.0,1.0,,,,,,,,, B83659,33.0,23.0,34.0,36.0,34.0,26.0,26.0,25.0,34.0,28.0,25.0,26.0,27.0,39.0,28.0,47.0,34.0,30.0,28.0,47.0,41.0,50.0,40.0,43.0,39.0,28.0,25.0,42.0,33.0,37.0,33.0,37.0,42.0,31.0,16.0,34.0,44.0,32.0,36.0,27.0,30.0,24.0,35.0,36.0,31.0,30.0,33.0,37.0,31.0,23.0,26.0,26.0,35.0,23.0,30.0,17.0,14.0,24.0,20.0,18.0,17.0,12.0,14.0,10.0,16.0,11.0,7.0,11.0,6.0,2.0,7.0,5.0,10.0,2.0,8.0,9.0,1.0,6.0,,,1.0,1.0,4.0,1.0,1.0,3.0,1.0,2.0,2.0,2.0,3.0,1.0,,,,1.0 B83660,45.0,43.0,37.0,54.0,42.0,44.0,46.0,55.0,46.0,54.0,45.0,43.0,40.0,47.0,46.0,60.0,50.0,46.0,48.0,50.0,58.0,47.0,49.0,45.0,58.0,58.0,52.0,55.0,54.0,70.0,57.0,58.0,59.0,67.0,59.0,57.0,70.0,59.0,59.0,69.0,63.0,73.0,66.0,63.0,55.0,53.0,65.0,54.0,47.0,59.0,43.0,47.0,38.0,38.0,31.0,33.0,30.0,27.0,22.0,26.0,24.0,29.0,20.0,19.0,22.0,21.0,15.0,17.0,24.0,9.0,17.0,16.0,9.0,16.0,14.0,7.0,7.0,5.0,3.0,3.0,4.0,2.0,2.0,1.0,8.0,2.0,,1.0,3.0,3.0,1.0,1.0,2.0,,1.0,1.0 B83661,17.0,13.0,19.0,23.0,22.0,21.0,31.0,26.0,20.0,24.0,24.0,25.0,19.0,39.0,27.0,24.0,25.0,24.0,32.0,35.0,22.0,32.0,32.0,28.0,32.0,27.0,21.0,25.0,26.0,29.0,22.0,28.0,25.0,27.0,24.0,14.0,13.0,19.0,15.0,17.0,19.0,22.0,20.0,18.0,29.0,24.0,22.0,19.0,13.0,14.0,16.0,23.0,25.0,13.0,21.0,16.0,12.0,19.0,12.0,12.0,14.0,7.0,8.0,10.0,12.0,7.0,7.0,11.0,5.0,9.0,6.0,11.0,5.0,13.0,3.0,4.0,3.0,,,2.0,1.0,1.0,2.0,4.0,3.0,5.0,1.0,2.0,1.0,1.0,,1.0,,,1.0,1.0 B84001,43.0,52.0,50.0,50.0,59.0,56.0,61.0,56.0,42.0,49.0,75.0,59.0,68.0,79.0,59.0,63.0,59.0,68.0,55.0,61.0,56.0,51.0,54.0,51.0,46.0,57.0,58.0,77.0,54.0,78.0,63.0,71.0,85.0,89.0,73.0,87.0,72.0,87.0,78.0,75.0,80.0,84.0,83.0,65.0,75.0,87.0,72.0,67.0,79.0,67.0,68.0,75.0,75.0,74.0,78.0,86.0,81.0,70.0,65.0,76.0,64.0,73.0,66.0,67.0,70.0,65.0,57.0,67.0,66.0,47.0,47.0,55.0,39.0,41.0,41.0,44.0,53.0,43.0,31.0,28.0,17.0,28.0,19.0,18.0,9.0,5.0,10.0,11.0,6.0,8.0,1.0,1.0,5.0,3.0,,2.0 B84003,16.0,23.0,27.0,32.0,30.0,37.0,30.0,24.0,36.0,40.0,45.0,45.0,34.0,27.0,53.0,47.0,39.0,51.0,29.0,27.0,31.0,34.0,43.0,45.0,42.0,50.0,56.0,44.0,47.0,46.0,45.0,47.0,46.0,43.0,52.0,54.0,43.0,57.0,60.0,43.0,35.0,40.0,49.0,41.0,44.0,48.0,49.0,39.0,51.0,50.0,37.0,47.0,51.0,56.0,58.0,72.0,83.0,72.0,71.0,82.0,76.0,66.0,73.0,59.0,63.0,47.0,62.0,51.0,44.0,33.0,51.0,37.0,49.0,44.0,46.0,40.0,43.0,36.0,28.0,30.0,34.0,30.0,28.0,16.0,17.0,16.0,14.0,11.0,15.0,6.0,10.0,8.0,6.0,2.0,1.0,3.0 B84004,33.0,67.0,60.0,69.0,60.0,75.0,90.0,88.0,75.0,101.0,96.0,88.0,105.0,101.0,131.0,113.0,107.0,103.0,97.0,97.0,83.0,74.0,72.0,84.0,74.0,85.0,94.0,80.0,94.0,91.0,85.0,95.0,100.0,97.0,117.0,96.0,107.0,90.0,106.0,100.0,115.0,115.0,113.0,91.0,127.0,103.0,142.0,122.0,121.0,113.0,107.0,140.0,167.0,151.0,170.0,138.0,160.0,169.0,145.0,171.0,173.0,164.0,161.0,133.0,158.0,119.0,122.0,154.0,130.0,105.0,102.0,105.0,105.0,114.0,91.0,104.0,93.0,90.0,100.0,75.0,72.0,53.0,65.0,26.0,39.0,34.0,21.0,21.0,22.0,12.0,15.0,11.0,9.0,6.0,2.0,9.0 B84006,57.0,68.0,61.0,72.0,72.0,68.0,86.0,84.0,93.0,87.0,100.0,100.0,103.0,98.0,114.0,117.0,99.0,117.0,96.0,88.0,84.0,78.0,68.0,65.0,72.0,74.0,75.0,84.0,85.0,73.0,76.0,95.0,115.0,122.0,114.0,82.0,107.0,117.0,97.0,122.0,121.0,116.0,99.0,109.0,117.0,93.0,101.0,110.0,116.0,97.0,106.0,107.0,103.0,133.0,119.0,129.0,124.0,137.0,120.0,137.0,133.0,124.0,117.0,107.0,93.0,95.0,84.0,96.0,87.0,79.0,76.0,92.0,74.0,70.0,70.0,81.0,77.0,94.0,82.0,51.0,41.0,45.0,46.0,29.0,22.0,22.0,21.0,18.0,14.0,14.0,8.0,6.0,3.0,6.0,3.0,8.0 B84007,29.0,30.0,47.0,29.0,29.0,50.0,35.0,53.0,57.0,64.0,77.0,67.0,76.0,68.0,70.0,77.0,67.0,60.0,62.0,68.0,59.0,57.0,49.0,42.0,49.0,48.0,50.0,50.0,55.0,40.0,53.0,46.0,40.0,70.0,64.0,54.0,47.0,61.0,52.0,53.0,63.0,49.0,66.0,72.0,71.0,67.0,76.0,72.0,60.0,64.0,73.0,62.0,81.0,103.0,103.0,103.0,98.0,84.0,98.0,84.0,94.0,103.0,84.0,89.0,80.0,71.0,63.0,67.0,75.0,66.0,52.0,55.0,54.0,57.0,50.0,59.0,47.0,50.0,62.0,47.0,60.0,41.0,29.0,21.0,23.0,25.0,18.0,11.0,9.0,7.0,6.0,6.0,3.0,2.0,1.0,3.0 B84008,53.0,68.0,65.0,82.0,72.0,90.0,82.0,92.0,84.0,83.0,89.0,92.0,90.0,80.0,95.0,89.0,108.0,90.0,84.0,68.0,71.0,78.0,65.0,79.0,76.0,82.0,83.0,82.0,75.0,77.0,92.0,87.0,88.0,79.0,106.0,86.0,66.0,114.0,79.0,104.0,101.0,114.0,90.0,104.0,76.0,94.0,95.0,89.0,105.0,102.0,92.0,102.0,131.0,121.0,122.0,137.0,123.0,98.0,114.0,142.0,145.0,111.0,107.0,109.0,116.0,108.0,99.0,92.0,104.0,101.0,84.0,102.0,97.0,84.0,76.0,75.0,84.0,83.0,93.0,61.0,73.0,54.0,52.0,41.0,31.0,34.0,32.0,32.0,22.0,18.0,11.0,11.0,3.0,5.0,5.0,11.0 B84009,49.0,46.0,47.0,55.0,52.0,47.0,67.0,68.0,61.0,72.0,69.0,55.0,82.0,65.0,70.0,79.0,73.0,71.0,85.0,53.0,66.0,57.0,45.0,54.0,54.0,65.0,62.0,47.0,47.0,50.0,62.0,65.0,67.0,46.0,73.0,71.0,67.0,63.0,65.0,62.0,54.0,70.0,57.0,73.0,89.0,68.0,67.0,63.0,76.0,68.0,71.0,85.0,100.0,89.0,114.0,96.0,95.0,92.0,99.0,85.0,78.0,88.0,67.0,65.0,70.0,68.0,68.0,88.0,60.0,59.0,62.0,66.0,67.0,46.0,65.0,61.0,59.0,65.0,57.0,38.0,42.0,38.0,34.0,36.0,28.0,19.0,21.0,18.0,9.0,6.0,1.0,7.0,8.0,4.0,3.0,5.0 B84010,37.0,51.0,53.0,60.0,64.0,66.0,62.0,65.0,72.0,60.0,59.0,63.0,80.0,76.0,71.0,81.0,69.0,64.0,62.0,51.0,65.0,53.0,61.0,58.0,45.0,54.0,68.0,67.0,72.0,92.0,52.0,77.0,81.0,78.0,87.0,69.0,67.0,94.0,52.0,63.0,56.0,49.0,75.0,66.0,59.0,66.0,56.0,41.0,50.0,71.0,55.0,55.0,79.0,58.0,89.0,62.0,91.0,64.0,69.0,67.0,77.0,73.0,80.0,64.0,45.0,65.0,68.0,64.0,41.0,54.0,48.0,40.0,33.0,36.0,55.0,28.0,58.0,42.0,49.0,34.0,30.0,31.0,24.0,19.0,17.0,9.0,12.0,12.0,7.0,9.0,5.0,4.0,5.0,1.0,3.0,2.0 B84011,32.0,41.0,33.0,37.0,50.0,51.0,45.0,51.0,45.0,51.0,59.0,73.0,49.0,59.0,67.0,63.0,72.0,54.0,73.0,55.0,59.0,57.0,67.0,53.0,53.0,67.0,58.0,60.0,55.0,50.0,61.0,57.0,67.0,58.0,54.0,80.0,62.0,62.0,54.0,70.0,63.0,49.0,73.0,57.0,80.0,73.0,60.0,50.0,63.0,76.0,63.0,68.0,86.0,100.0,82.0,76.0,101.0,80.0,89.0,88.0,96.0,85.0,88.0,83.0,70.0,71.0,70.0,62.0,64.0,61.0,63.0,62.0,45.0,51.0,71.0,62.0,58.0,72.0,75.0,48.0,45.0,45.0,46.0,40.0,33.0,21.0,24.0,15.0,13.0,16.0,9.0,5.0,9.0,3.0,2.0,7.0 B84012,132.0,152.0,169.0,183.0,196.0,170.0,178.0,199.0,205.0,218.0,183.0,224.0,221.0,187.0,217.0,228.0,204.0,210.0,198.0,224.0,197.0,218.0,171.0,210.0,195.0,211.0,187.0,197.0,185.0,187.0,235.0,204.0,216.0,214.0,193.0,211.0,209.0,208.0,206.0,253.0,217.0,219.0,208.0,204.0,204.0,222.0,179.0,174.0,194.0,187.0,172.0,167.0,197.0,186.0,187.0,193.0,185.0,183.0,156.0,174.0,136.0,150.0,164.0,165.0,137.0,121.0,138.0,133.0,138.0,113.0,110.0,115.0,105.0,111.0,97.0,86.0,93.0,98.0,92.0,78.0,67.0,64.0,64.0,44.0,39.0,44.0,29.0,43.0,31.0,18.0,19.0,17.0,9.0,14.0,8.0,19.0 B84013,39.0,35.0,38.0,61.0,42.0,58.0,42.0,59.0,56.0,60.0,74.0,65.0,73.0,60.0,60.0,49.0,62.0,53.0,40.0,43.0,49.0,59.0,31.0,40.0,42.0,42.0,53.0,60.0,42.0,63.0,51.0,57.0,53.0,66.0,60.0,50.0,52.0,45.0,66.0,66.0,84.0,62.0,69.0,41.0,65.0,71.0,50.0,58.0,49.0,49.0,54.0,54.0,56.0,69.0,61.0,56.0,54.0,67.0,56.0,60.0,54.0,59.0,67.0,63.0,63.0,67.0,63.0,67.0,48.0,49.0,49.0,44.0,41.0,48.0,37.0,63.0,36.0,28.0,28.0,20.0,24.0,26.0,23.0,25.0,15.0,26.0,14.0,12.0,10.0,6.0,3.0,7.0,3.0,3.0,4.0,6.0 B84014,27.0,20.0,18.0,26.0,17.0,18.0,22.0,24.0,23.0,34.0,25.0,27.0,27.0,21.0,33.0,27.0,27.0,25.0,31.0,19.0,27.0,27.0,20.0,21.0,19.0,27.0,26.0,25.0,23.0,31.0,34.0,34.0,26.0,26.0,36.0,34.0,29.0,20.0,47.0,40.0,30.0,27.0,29.0,42.0,37.0,29.0,36.0,37.0,36.0,25.0,29.0,29.0,19.0,52.0,39.0,40.0,45.0,28.0,43.0,45.0,46.0,40.0,31.0,42.0,34.0,36.0,42.0,31.0,40.0,39.0,34.0,31.0,37.0,29.0,30.0,30.0,28.0,41.0,40.0,23.0,29.0,30.0,16.0,11.0,21.0,17.0,9.0,11.0,10.0,7.0,9.0,7.0,2.0,1.0,1.0,5.0 B84016,58.0,39.0,56.0,60.0,68.0,69.0,61.0,54.0,70.0,84.0,62.0,54.0,78.0,76.0,89.0,60.0,71.0,75.0,79.0,67.0,67.0,65.0,65.0,79.0,62.0,65.0,63.0,73.0,86.0,57.0,71.0,78.0,70.0,80.0,77.0,89.0,84.0,72.0,70.0,77.0,66.0,72.0,77.0,69.0,76.0,69.0,61.0,69.0,57.0,62.0,58.0,65.0,71.0,79.0,89.0,75.0,92.0,86.0,63.0,84.0,93.0,80.0,78.0,68.0,72.0,67.0,61.0,49.0,63.0,63.0,46.0,52.0,36.0,36.0,45.0,37.0,44.0,56.0,51.0,36.0,33.0,29.0,23.0,18.0,22.0,18.0,18.0,19.0,15.0,11.0,7.0,5.0,4.0,3.0,1.0,7.0 B84019,115.0,102.0,98.0,93.0,92.0,115.0,113.0,117.0,115.0,136.0,125.0,115.0,140.0,118.0,136.0,112.0,125.0,126.0,134.0,102.0,109.0,101.0,109.0,100.0,109.0,116.0,108.0,109.0,108.0,87.0,147.0,139.0,114.0,117.0,151.0,137.0,149.0,145.0,153.0,156.0,134.0,160.0,138.0,144.0,147.0,130.0,151.0,127.0,119.0,113.0,106.0,111.0,102.0,107.0,94.0,115.0,111.0,80.0,96.0,90.0,78.0,80.0,67.0,72.0,66.0,81.0,81.0,67.0,79.0,55.0,58.0,60.0,49.0,48.0,45.0,54.0,42.0,41.0,52.0,36.0,36.0,30.0,29.0,17.0,33.0,25.0,13.0,18.0,12.0,12.0,7.0,2.0,1.0,1.0,1.0,7.0 B84021,36.0,51.0,48.0,48.0,52.0,50.0,40.0,59.0,56.0,49.0,63.0,54.0,47.0,55.0,58.0,48.0,53.0,57.0,63.0,44.0,44.0,31.0,44.0,44.0,41.0,47.0,60.0,54.0,57.0,56.0,60.0,57.0,81.0,62.0,54.0,70.0,63.0,71.0,64.0,53.0,56.0,50.0,50.0,52.0,61.0,64.0,51.0,42.0,43.0,56.0,40.0,48.0,59.0,58.0,52.0,38.0,52.0,55.0,65.0,55.0,54.0,54.0,55.0,49.0,52.0,48.0,48.0,53.0,45.0,41.0,40.0,38.0,28.0,39.0,40.0,32.0,51.0,47.0,39.0,25.0,34.0,25.0,23.0,19.0,9.0,20.0,12.0,8.0,11.0,9.0,6.0,4.0,6.0,1.0,2.0,2.0 B84612,40.0,42.0,39.0,50.0,42.0,49.0,51.0,53.0,65.0,45.0,53.0,76.0,77.0,82.0,64.0,78.0,50.0,64.0,64.0,57.0,51.0,74.0,52.0,47.0,50.0,69.0,69.0,57.0,55.0,68.0,74.0,77.0,72.0,57.0,92.0,101.0,92.0,80.0,95.0,94.0,100.0,86.0,72.0,75.0,81.0,96.0,78.0,69.0,66.0,63.0,57.0,54.0,75.0,70.0,66.0,70.0,61.0,69.0,56.0,44.0,42.0,63.0,48.0,37.0,46.0,38.0,44.0,37.0,38.0,31.0,29.0,26.0,25.0,30.0,35.0,21.0,16.0,32.0,13.0,12.0,16.0,20.0,9.0,9.0,12.0,7.0,3.0,7.0,7.0,4.0,4.0,4.0,3.0,2.0,3.0,1.0 B84613,58.0,64.0,67.0,71.0,67.0,84.0,67.0,68.0,90.0,75.0,75.0,73.0,84.0,68.0,86.0,63.0,75.0,76.0,61.0,57.0,73.0,63.0,41.0,53.0,65.0,62.0,67.0,72.0,60.0,72.0,79.0,80.0,73.0,70.0,77.0,86.0,74.0,83.0,83.0,73.0,87.0,63.0,66.0,72.0,75.0,72.0,70.0,47.0,48.0,56.0,51.0,61.0,62.0,62.0,53.0,56.0,75.0,65.0,64.0,76.0,69.0,56.0,40.0,60.0,56.0,47.0,40.0,40.0,49.0,44.0,26.0,29.0,28.0,21.0,25.0,28.0,34.0,30.0,29.0,19.0,14.0,19.0,20.0,8.0,7.0,11.0,8.0,8.0,6.0,6.0,4.0,3.0,3.0,3.0,1.0,1.0 B84618,33.0,35.0,37.0,30.0,43.0,51.0,63.0,63.0,49.0,45.0,56.0,70.0,63.0,70.0,59.0,61.0,58.0,50.0,49.0,56.0,56.0,47.0,51.0,44.0,37.0,37.0,41.0,50.0,55.0,53.0,56.0,49.0,54.0,69.0,63.0,59.0,78.0,68.0,67.0,56.0,74.0,66.0,63.0,57.0,57.0,54.0,50.0,58.0,42.0,52.0,56.0,59.0,61.0,75.0,64.0,50.0,53.0,76.0,69.0,58.0,79.0,62.0,64.0,46.0,59.0,40.0,42.0,50.0,35.0,29.0,28.0,31.0,29.0,30.0,29.0,30.0,38.0,19.0,33.0,14.0,23.0,19.0,11.0,16.0,10.0,13.0,7.0,6.0,5.0,5.0,3.0,3.0,1.0,2.0,,2.0 B84623,25.0,38.0,21.0,25.0,26.0,31.0,25.0,36.0,30.0,32.0,29.0,26.0,23.0,28.0,25.0,31.0,37.0,21.0,28.0,33.0,19.0,25.0,27.0,30.0,20.0,32.0,28.0,35.0,31.0,50.0,29.0,37.0,43.0,35.0,35.0,33.0,34.0,37.0,36.0,30.0,26.0,25.0,44.0,26.0,41.0,34.0,28.0,24.0,31.0,22.0,29.0,33.0,39.0,33.0,33.0,36.0,48.0,33.0,39.0,31.0,29.0,27.0,33.0,35.0,23.0,26.0,23.0,24.0,23.0,19.0,24.0,14.0,24.0,10.0,19.0,24.0,17.0,25.0,15.0,16.0,14.0,12.0,11.0,5.0,7.0,3.0,8.0,6.0,4.0,3.0,1.0,2.0,2.0,,1.0,2.0 B85001,24.0,31.0,31.0,35.0,48.0,43.0,44.0,35.0,43.0,42.0,35.0,49.0,44.0,39.0,56.0,60.0,46.0,49.0,44.0,44.0,35.0,36.0,35.0,31.0,37.0,34.0,35.0,35.0,42.0,42.0,31.0,32.0,46.0,45.0,39.0,41.0,32.0,51.0,45.0,40.0,42.0,53.0,41.0,59.0,49.0,42.0,39.0,41.0,33.0,44.0,34.0,42.0,43.0,43.0,55.0,55.0,62.0,57.0,56.0,45.0,64.0,48.0,63.0,53.0,41.0,43.0,41.0,40.0,28.0,17.0,32.0,36.0,44.0,33.0,32.0,31.0,31.0,33.0,28.0,24.0,23.0,23.0,16.0,15.0,13.0,16.0,15.0,7.0,6.0,14.0,5.0,6.0,2.0,2.0,2.0,7.0 B85002,15.0,24.0,25.0,25.0,28.0,24.0,27.0,20.0,24.0,28.0,19.0,24.0,29.0,32.0,27.0,35.0,30.0,40.0,33.0,23.0,19.0,25.0,19.0,25.0,26.0,15.0,21.0,18.0,29.0,17.0,23.0,24.0,16.0,25.0,34.0,25.0,31.0,28.0,16.0,25.0,30.0,25.0,34.0,23.0,25.0,30.0,24.0,21.0,30.0,27.0,35.0,36.0,28.0,39.0,42.0,36.0,33.0,28.0,42.0,36.0,34.0,32.0,33.0,34.0,32.0,23.0,23.0,17.0,24.0,16.0,23.0,23.0,27.0,17.0,19.0,21.0,23.0,22.0,15.0,13.0,20.0,12.0,16.0,12.0,8.0,8.0,9.0,5.0,3.0,2.0,3.0,3.0,2.0,1.0,,3.0 B85004,47.0,36.0,51.0,53.0,35.0,41.0,39.0,32.0,38.0,37.0,50.0,42.0,47.0,48.0,54.0,40.0,45.0,43.0,36.0,29.0,40.0,45.0,41.0,35.0,39.0,44.0,31.0,39.0,34.0,56.0,46.0,48.0,34.0,52.0,43.0,54.0,46.0,50.0,45.0,65.0,47.0,45.0,50.0,38.0,30.0,42.0,44.0,37.0,27.0,37.0,34.0,47.0,39.0,39.0,42.0,38.0,36.0,46.0,33.0,38.0,35.0,30.0,31.0,34.0,33.0,22.0,33.0,27.0,30.0,21.0,21.0,23.0,24.0,18.0,25.0,17.0,14.0,19.0,12.0,13.0,9.0,10.0,15.0,9.0,9.0,4.0,8.0,6.0,6.0,8.0,1.0,1.0,2.0,3.0,1.0,2.0 B85005,23.0,19.0,27.0,23.0,24.0,35.0,35.0,33.0,40.0,28.0,36.0,35.0,43.0,35.0,31.0,44.0,36.0,58.0,39.0,32.0,46.0,32.0,25.0,36.0,27.0,25.0,28.0,27.0,24.0,27.0,25.0,19.0,35.0,36.0,36.0,32.0,42.0,36.0,52.0,29.0,36.0,36.0,35.0,53.0,57.0,47.0,37.0,40.0,35.0,33.0,49.0,58.0,56.0,54.0,44.0,39.0,52.0,62.0,54.0,49.0,42.0,49.0,49.0,42.0,58.0,52.0,39.0,44.0,44.0,41.0,36.0,41.0,45.0,51.0,41.0,47.0,43.0,45.0,44.0,41.0,36.0,36.0,22.0,21.0,23.0,21.0,10.0,8.0,7.0,6.0,3.0,3.0,3.0,,1.0,5.0 B85006,44.0,50.0,59.0,58.0,60.0,72.0,50.0,79.0,66.0,73.0,74.0,82.0,75.0,78.0,88.0,82.0,99.0,92.0,90.0,85.0,70.0,72.0,90.0,90.0,73.0,74.0,74.0,67.0,78.0,73.0,89.0,79.0,82.0,75.0,93.0,83.0,87.0,88.0,76.0,69.0,63.0,90.0,77.0,78.0,78.0,88.0,89.0,89.0,76.0,93.0,108.0,96.0,118.0,134.0,129.0,135.0,151.0,139.0,128.0,147.0,129.0,136.0,147.0,118.0,109.0,109.0,107.0,102.0,100.0,92.0,84.0,84.0,85.0,95.0,96.0,90.0,72.0,100.0,110.0,72.0,71.0,56.0,48.0,40.0,25.0,34.0,32.0,28.0,22.0,15.0,16.0,11.0,10.0,7.0,6.0,6.0 B85008,34.0,39.0,48.0,58.0,44.0,37.0,41.0,56.0,45.0,59.0,54.0,42.0,48.0,49.0,35.0,50.0,44.0,54.0,41.0,36.0,39.0,29.0,50.0,41.0,37.0,43.0,34.0,52.0,47.0,61.0,38.0,47.0,54.0,64.0,39.0,33.0,49.0,41.0,53.0,49.0,43.0,44.0,40.0,40.0,46.0,44.0,47.0,36.0,41.0,36.0,28.0,33.0,37.0,33.0,28.0,46.0,45.0,40.0,39.0,39.0,30.0,36.0,32.0,35.0,24.0,21.0,30.0,30.0,18.0,18.0,28.0,11.0,13.0,22.0,15.0,18.0,17.0,17.0,17.0,16.0,13.0,8.0,17.0,7.0,10.0,9.0,6.0,6.0,9.0,,2.0,5.0,1.0,1.0,,5.0 B85009,49.0,41.0,62.0,43.0,42.0,54.0,41.0,52.0,64.0,55.0,56.0,61.0,55.0,59.0,61.0,48.0,73.0,63.0,57.0,55.0,70.0,53.0,56.0,55.0,49.0,66.0,55.0,77.0,59.0,63.0,54.0,54.0,62.0,71.0,65.0,74.0,66.0,85.0,55.0,61.0,60.0,57.0,57.0,64.0,70.0,55.0,64.0,54.0,51.0,48.0,60.0,44.0,47.0,53.0,43.0,54.0,56.0,49.0,54.0,46.0,42.0,64.0,40.0,42.0,32.0,38.0,39.0,42.0,33.0,33.0,35.0,39.0,26.0,37.0,42.0,40.0,33.0,31.0,32.0,24.0,20.0,27.0,17.0,18.0,9.0,13.0,10.0,10.0,9.0,7.0,7.0,7.0,1.0,4.0,4.0,7.0 B85010,27.0,25.0,41.0,33.0,33.0,36.0,45.0,41.0,58.0,36.0,51.0,47.0,34.0,56.0,41.0,59.0,40.0,34.0,34.0,39.0,36.0,37.0,30.0,36.0,41.0,44.0,42.0,39.0,39.0,38.0,55.0,40.0,48.0,42.0,56.0,55.0,36.0,47.0,50.0,37.0,51.0,34.0,41.0,36.0,36.0,47.0,36.0,32.0,26.0,39.0,27.0,36.0,41.0,47.0,50.0,61.0,60.0,53.0,57.0,55.0,47.0,44.0,48.0,37.0,34.0,40.0,39.0,33.0,31.0,30.0,39.0,26.0,27.0,36.0,31.0,25.0,31.0,31.0,26.0,22.0,19.0,19.0,16.0,14.0,12.0,12.0,11.0,9.0,5.0,11.0,3.0,5.0,5.0,2.0,2.0,2.0 B85012,53.0,45.0,81.0,56.0,60.0,75.0,90.0,75.0,87.0,77.0,101.0,78.0,103.0,77.0,77.0,67.0,75.0,65.0,76.0,62.0,57.0,62.0,49.0,61.0,54.0,53.0,46.0,60.0,51.0,54.0,62.0,58.0,74.0,71.0,64.0,71.0,81.0,66.0,76.0,80.0,82.0,85.0,89.0,64.0,67.0,76.0,61.0,78.0,61.0,56.0,54.0,80.0,67.0,88.0,84.0,80.0,57.0,79.0,67.0,85.0,58.0,62.0,66.0,59.0,64.0,67.0,56.0,55.0,59.0,44.0,34.0,41.0,44.0,29.0,47.0,43.0,41.0,51.0,41.0,27.0,19.0,30.0,20.0,17.0,21.0,14.0,15.0,12.0,4.0,6.0,4.0,5.0,3.0,3.0,1.0,1.0 B85014,35.0,36.0,36.0,50.0,42.0,40.0,47.0,45.0,58.0,52.0,37.0,46.0,55.0,67.0,51.0,61.0,60.0,47.0,51.0,47.0,59.0,55.0,48.0,50.0,44.0,46.0,56.0,67.0,58.0,61.0,56.0,53.0,63.0,58.0,64.0,45.0,56.0,45.0,54.0,60.0,67.0,56.0,48.0,57.0,58.0,55.0,56.0,55.0,50.0,63.0,68.0,50.0,65.0,68.0,59.0,78.0,75.0,77.0,74.0,69.0,69.0,69.0,63.0,64.0,56.0,60.0,57.0,41.0,52.0,51.0,40.0,57.0,52.0,45.0,49.0,59.0,47.0,55.0,54.0,32.0,32.0,25.0,23.0,24.0,12.0,20.0,25.0,8.0,9.0,17.0,7.0,6.0,6.0,3.0,1.0,3.0 B85015,25.0,35.0,47.0,32.0,40.0,35.0,34.0,44.0,42.0,63.0,44.0,50.0,64.0,56.0,59.0,52.0,54.0,54.0,53.0,47.0,51.0,45.0,42.0,37.0,48.0,49.0,53.0,52.0,46.0,65.0,41.0,58.0,52.0,61.0,59.0,55.0,55.0,65.0,69.0,62.0,59.0,45.0,56.0,54.0,54.0,57.0,66.0,50.0,56.0,42.0,49.0,72.0,61.0,56.0,63.0,61.0,72.0,64.0,69.0,49.0,59.0,58.0,65.0,57.0,48.0,50.0,34.0,45.0,44.0,42.0,39.0,41.0,39.0,41.0,34.0,31.0,40.0,41.0,39.0,33.0,24.0,25.0,25.0,23.0,16.0,10.0,17.0,15.0,14.0,11.0,3.0,5.0,6.0,1.0,2.0,2.0 B85016,47.0,52.0,54.0,61.0,81.0,73.0,58.0,83.0,60.0,78.0,76.0,92.0,90.0,82.0,79.0,82.0,87.0,86.0,77.0,73.0,56.0,71.0,74.0,57.0,62.0,60.0,58.0,65.0,72.0,74.0,57.0,70.0,72.0,73.0,78.0,73.0,86.0,78.0,90.0,87.0,68.0,72.0,86.0,79.0,76.0,81.0,58.0,79.0,78.0,65.0,79.0,57.0,48.0,70.0,66.0,75.0,74.0,61.0,62.0,59.0,67.0,65.0,55.0,54.0,55.0,57.0,56.0,44.0,40.0,35.0,41.0,49.0,42.0,32.0,28.0,26.0,27.0,27.0,34.0,24.0,27.0,13.0,14.0,29.0,17.0,13.0,10.0,17.0,10.0,6.0,5.0,4.0,5.0,1.0,1.0,2.0 B85018,44.0,54.0,59.0,56.0,55.0,69.0,60.0,56.0,83.0,70.0,66.0,61.0,59.0,60.0,70.0,65.0,63.0,76.0,58.0,57.0,47.0,68.0,59.0,58.0,60.0,54.0,64.0,59.0,74.0,78.0,65.0,60.0,73.0,46.0,72.0,75.0,62.0,64.0,73.0,81.0,53.0,68.0,66.0,63.0,68.0,64.0,61.0,53.0,59.0,48.0,51.0,46.0,59.0,67.0,60.0,57.0,66.0,72.0,59.0,52.0,52.0,49.0,48.0,53.0,51.0,49.0,34.0,45.0,38.0,37.0,43.0,25.0,32.0,31.0,34.0,35.0,32.0,28.0,20.0,30.0,19.0,24.0,21.0,15.0,10.0,11.0,11.0,9.0,7.0,8.0,3.0,4.0,4.0,7.0,3.0,4.0 B85019,65.0,53.0,62.0,82.0,79.0,86.0,90.0,88.0,89.0,81.0,92.0,105.0,102.0,109.0,105.0,101.0,114.0,91.0,109.0,101.0,92.0,86.0,85.0,67.0,71.0,87.0,96.0,77.0,92.0,103.0,117.0,98.0,109.0,115.0,97.0,120.0,110.0,102.0,104.0,104.0,89.0,99.0,111.0,78.0,105.0,113.0,93.0,117.0,102.0,95.0,98.0,102.0,123.0,134.0,129.0,140.0,132.0,122.0,117.0,125.0,136.0,125.0,126.0,105.0,113.0,94.0,102.0,102.0,98.0,82.0,92.0,83.0,81.0,82.0,85.0,83.0,99.0,91.0,102.0,90.0,85.0,73.0,60.0,49.0,42.0,46.0,41.0,35.0,29.0,25.0,27.0,15.0,9.0,3.0,4.0,10.0 B85020,27.0,22.0,43.0,35.0,38.0,56.0,53.0,51.0,52.0,50.0,45.0,51.0,46.0,33.0,47.0,50.0,48.0,43.0,38.0,42.0,49.0,50.0,32.0,33.0,44.0,45.0,48.0,47.0,49.0,44.0,38.0,45.0,62.0,58.0,56.0,55.0,50.0,61.0,49.0,61.0,42.0,65.0,51.0,34.0,39.0,54.0,45.0,42.0,45.0,41.0,34.0,49.0,44.0,36.0,45.0,51.0,46.0,43.0,37.0,24.0,52.0,29.0,38.0,28.0,45.0,47.0,43.0,30.0,32.0,24.0,25.0,26.0,26.0,28.0,18.0,26.0,30.0,25.0,24.0,11.0,17.0,7.0,18.0,9.0,8.0,6.0,8.0,3.0,8.0,4.0,1.0,2.0,2.0,,1.0,1.0 B85021,26.0,25.0,43.0,41.0,39.0,40.0,50.0,46.0,50.0,45.0,47.0,58.0,54.0,45.0,54.0,65.0,58.0,54.0,39.0,48.0,39.0,42.0,42.0,37.0,55.0,52.0,58.0,47.0,52.0,50.0,50.0,67.0,70.0,65.0,70.0,72.0,63.0,70.0,58.0,62.0,59.0,65.0,48.0,50.0,50.0,63.0,48.0,33.0,41.0,63.0,65.0,64.0,53.0,48.0,77.0,63.0,73.0,61.0,70.0,65.0,68.0,68.0,73.0,74.0,67.0,60.0,63.0,42.0,61.0,43.0,52.0,55.0,48.0,48.0,48.0,36.0,43.0,65.0,37.0,34.0,39.0,33.0,23.0,19.0,21.0,26.0,17.0,16.0,8.0,11.0,9.0,5.0,5.0,4.0,2.0,7.0 B85022,25.0,26.0,24.0,37.0,26.0,35.0,31.0,35.0,39.0,30.0,46.0,34.0,46.0,40.0,43.0,33.0,48.0,44.0,48.0,44.0,50.0,42.0,38.0,31.0,37.0,57.0,43.0,37.0,38.0,47.0,36.0,41.0,32.0,57.0,50.0,41.0,53.0,41.0,38.0,34.0,38.0,43.0,37.0,50.0,52.0,44.0,36.0,38.0,45.0,37.0,35.0,49.0,55.0,58.0,74.0,64.0,63.0,56.0,48.0,55.0,68.0,71.0,62.0,68.0,56.0,51.0,64.0,53.0,64.0,46.0,45.0,48.0,42.0,35.0,54.0,52.0,62.0,55.0,68.0,34.0,38.0,26.0,23.0,28.0,19.0,16.0,20.0,9.0,14.0,13.0,10.0,5.0,6.0,2.0,3.0,4.0 B85023,28.0,14.0,28.0,33.0,35.0,29.0,35.0,31.0,28.0,34.0,41.0,38.0,48.0,24.0,51.0,40.0,43.0,47.0,40.0,38.0,35.0,34.0,37.0,33.0,24.0,39.0,42.0,30.0,26.0,34.0,26.0,37.0,25.0,46.0,33.0,35.0,43.0,38.0,36.0,34.0,43.0,43.0,38.0,33.0,31.0,51.0,44.0,25.0,36.0,30.0,22.0,29.0,56.0,46.0,62.0,35.0,56.0,57.0,40.0,44.0,48.0,50.0,42.0,39.0,35.0,31.0,36.0,37.0,32.0,31.0,30.0,29.0,24.0,39.0,27.0,24.0,28.0,22.0,29.0,21.0,24.0,24.0,21.0,16.0,8.0,9.0,10.0,15.0,9.0,5.0,2.0,3.0,,5.0,1.0,6.0 B85024,34.0,37.0,27.0,42.0,51.0,54.0,53.0,65.0,55.0,53.0,51.0,62.0,58.0,58.0,67.0,60.0,57.0,61.0,60.0,62.0,54.0,40.0,42.0,42.0,43.0,37.0,53.0,46.0,69.0,44.0,54.0,54.0,65.0,58.0,59.0,54.0,57.0,63.0,60.0,70.0,70.0,54.0,58.0,70.0,58.0,58.0,57.0,57.0,57.0,46.0,77.0,60.0,62.0,57.0,70.0,59.0,67.0,71.0,67.0,74.0,61.0,58.0,56.0,58.0,65.0,61.0,42.0,56.0,45.0,48.0,42.0,40.0,41.0,45.0,44.0,56.0,43.0,61.0,41.0,31.0,40.0,21.0,29.0,15.0,21.0,16.0,15.0,17.0,7.0,12.0,2.0,2.0,7.0,3.0,2.0,9.0 B85025,50.0,45.0,71.0,77.0,80.0,81.0,69.0,76.0,88.0,60.0,80.0,83.0,84.0,82.0,83.0,80.0,72.0,80.0,63.0,67.0,55.0,69.0,50.0,58.0,37.0,47.0,61.0,58.0,69.0,59.0,70.0,79.0,77.0,92.0,85.0,66.0,91.0,80.0,88.0,85.0,80.0,105.0,63.0,65.0,93.0,79.0,86.0,81.0,69.0,63.0,73.0,70.0,71.0,101.0,76.0,80.0,89.0,90.0,66.0,89.0,79.0,96.0,85.0,78.0,70.0,60.0,63.0,69.0,73.0,55.0,58.0,41.0,53.0,36.0,50.0,63.0,48.0,51.0,51.0,44.0,42.0,30.0,28.0,24.0,29.0,20.0,24.0,22.0,15.0,13.0,11.0,6.0,4.0,6.0,8.0,2.0 B85026,24.0,17.0,24.0,36.0,28.0,33.0,40.0,42.0,45.0,41.0,39.0,51.0,53.0,55.0,53.0,31.0,60.0,61.0,43.0,50.0,42.0,46.0,46.0,44.0,36.0,46.0,43.0,38.0,43.0,36.0,23.0,31.0,34.0,43.0,39.0,32.0,38.0,33.0,39.0,36.0,42.0,37.0,36.0,49.0,32.0,45.0,60.0,44.0,45.0,43.0,52.0,75.0,57.0,65.0,64.0,64.0,57.0,63.0,57.0,62.0,57.0,65.0,58.0,63.0,58.0,65.0,58.0,52.0,39.0,43.0,44.0,47.0,40.0,49.0,42.0,45.0,48.0,57.0,50.0,35.0,34.0,27.0,34.0,18.0,17.0,15.0,15.0,13.0,10.0,12.0,4.0,6.0,,1.0,2.0,5.0 B85027,45.0,65.0,49.0,51.0,55.0,61.0,69.0,55.0,68.0,79.0,85.0,44.0,66.0,69.0,62.0,77.0,59.0,55.0,65.0,41.0,50.0,50.0,42.0,54.0,40.0,42.0,45.0,52.0,50.0,46.0,56.0,48.0,51.0,81.0,66.0,85.0,70.0,77.0,53.0,71.0,73.0,76.0,59.0,59.0,70.0,65.0,65.0,66.0,64.0,69.0,75.0,76.0,70.0,61.0,72.0,73.0,74.0,74.0,88.0,64.0,59.0,76.0,54.0,49.0,61.0,62.0,44.0,59.0,61.0,51.0,61.0,40.0,44.0,44.0,34.0,56.0,49.0,42.0,43.0,31.0,26.0,24.0,18.0,16.0,18.0,18.0,12.0,13.0,7.0,10.0,12.0,5.0,6.0,2.0,2.0,11.0 B85028,89.0,91.0,93.0,94.0,98.0,123.0,115.0,125.0,123.0,133.0,140.0,126.0,126.0,148.0,156.0,144.0,155.0,117.0,124.0,133.0,99.0,116.0,104.0,98.0,100.0,132.0,116.0,105.0,99.0,113.0,105.0,95.0,117.0,129.0,113.0,126.0,107.0,129.0,119.0,113.0,133.0,134.0,123.0,121.0,136.0,109.0,100.0,110.0,109.0,116.0,110.0,94.0,98.0,124.0,121.0,116.0,102.0,97.0,108.0,109.0,91.0,78.0,94.0,83.0,87.0,73.0,67.0,82.0,72.0,76.0,53.0,61.0,63.0,55.0,46.0,48.0,50.0,53.0,54.0,36.0,44.0,29.0,31.0,26.0,19.0,21.0,18.0,15.0,23.0,15.0,10.0,10.0,6.0,8.0,3.0,4.0 B85030,50.0,51.0,40.0,52.0,53.0,39.0,43.0,55.0,49.0,60.0,62.0,71.0,60.0,69.0,58.0,68.0,61.0,60.0,65.0,39.0,50.0,55.0,58.0,52.0,51.0,49.0,60.0,48.0,59.0,55.0,60.0,56.0,66.0,60.0,66.0,64.0,68.0,64.0,74.0,75.0,59.0,59.0,60.0,52.0,81.0,70.0,61.0,51.0,51.0,53.0,66.0,71.0,68.0,70.0,68.0,55.0,71.0,71.0,87.0,61.0,63.0,56.0,42.0,61.0,56.0,40.0,35.0,56.0,42.0,51.0,48.0,23.0,29.0,30.0,29.0,29.0,39.0,42.0,33.0,27.0,30.0,26.0,14.0,30.0,19.0,15.0,11.0,9.0,14.0,8.0,5.0,,2.0,2.0,1.0,4.0 B85031,28.0,33.0,21.0,29.0,23.0,18.0,35.0,30.0,30.0,35.0,37.0,31.0,42.0,43.0,33.0,40.0,35.0,40.0,46.0,38.0,34.0,39.0,37.0,33.0,39.0,38.0,41.0,37.0,45.0,39.0,37.0,47.0,43.0,39.0,41.0,25.0,34.0,36.0,47.0,34.0,39.0,45.0,27.0,31.0,33.0,37.0,37.0,34.0,26.0,49.0,44.0,45.0,45.0,45.0,57.0,52.0,68.0,52.0,64.0,57.0,44.0,62.0,55.0,60.0,56.0,49.0,44.0,50.0,45.0,28.0,34.0,24.0,38.0,38.0,37.0,34.0,47.0,47.0,54.0,32.0,35.0,25.0,24.0,23.0,17.0,19.0,17.0,20.0,12.0,6.0,8.0,4.0,5.0,2.0,2.0,1.0 B85032,20.0,15.0,19.0,22.0,14.0,28.0,30.0,34.0,31.0,34.0,35.0,45.0,38.0,38.0,33.0,37.0,34.0,35.0,30.0,33.0,35.0,26.0,26.0,30.0,33.0,28.0,24.0,27.0,26.0,32.0,38.0,37.0,36.0,38.0,42.0,36.0,23.0,45.0,39.0,37.0,44.0,37.0,32.0,39.0,23.0,42.0,31.0,27.0,25.0,33.0,35.0,43.0,47.0,42.0,51.0,38.0,40.0,42.0,34.0,40.0,46.0,46.0,47.0,40.0,39.0,39.0,33.0,30.0,26.0,33.0,30.0,22.0,28.0,40.0,36.0,28.0,35.0,36.0,49.0,23.0,25.0,21.0,14.0,20.0,18.0,12.0,12.0,17.0,6.0,5.0,4.0,2.0,3.0,2.0,3.0,2.0 B85033,28.0,22.0,30.0,35.0,36.0,31.0,45.0,27.0,43.0,42.0,40.0,43.0,31.0,42.0,51.0,29.0,34.0,35.0,33.0,27.0,22.0,25.0,21.0,30.0,24.0,25.0,31.0,30.0,27.0,26.0,22.0,35.0,34.0,26.0,47.0,51.0,46.0,39.0,36.0,39.0,49.0,34.0,28.0,36.0,33.0,42.0,44.0,28.0,31.0,37.0,33.0,32.0,28.0,51.0,41.0,41.0,37.0,27.0,48.0,29.0,45.0,25.0,28.0,37.0,35.0,28.0,30.0,24.0,27.0,28.0,26.0,20.0,24.0,21.0,21.0,17.0,25.0,23.0,26.0,20.0,26.0,13.0,13.0,11.0,10.0,7.0,8.0,8.0,6.0,4.0,6.0,5.0,7.0,2.0,1.0,4.0 B85036,44.0,38.0,44.0,43.0,57.0,45.0,51.0,49.0,59.0,67.0,51.0,48.0,45.0,48.0,54.0,59.0,54.0,47.0,46.0,41.0,47.0,45.0,49.0,31.0,45.0,31.0,50.0,39.0,48.0,41.0,43.0,45.0,62.0,59.0,65.0,47.0,51.0,65.0,53.0,48.0,52.0,50.0,54.0,61.0,50.0,54.0,57.0,53.0,42.0,63.0,36.0,50.0,65.0,64.0,69.0,63.0,71.0,49.0,58.0,65.0,61.0,56.0,56.0,57.0,43.0,40.0,60.0,50.0,38.0,43.0,41.0,57.0,42.0,36.0,27.0,31.0,36.0,29.0,36.0,26.0,26.0,25.0,19.0,13.0,20.0,13.0,16.0,13.0,5.0,8.0,4.0,6.0,2.0,11.0,5.0,5.0 B85037,30.0,25.0,26.0,30.0,43.0,29.0,39.0,39.0,36.0,40.0,41.0,41.0,38.0,41.0,28.0,49.0,29.0,35.0,48.0,33.0,39.0,28.0,42.0,31.0,48.0,42.0,49.0,36.0,43.0,31.0,46.0,45.0,34.0,38.0,44.0,46.0,37.0,46.0,41.0,38.0,41.0,51.0,53.0,38.0,43.0,38.0,34.0,33.0,39.0,31.0,34.0,40.0,35.0,35.0,36.0,38.0,43.0,39.0,43.0,34.0,38.0,44.0,44.0,29.0,32.0,31.0,35.0,35.0,33.0,29.0,29.0,17.0,19.0,26.0,30.0,26.0,16.0,34.0,24.0,18.0,22.0,16.0,11.0,9.0,10.0,13.0,5.0,7.0,4.0,3.0,1.0,3.0,,3.0,,1.0 B85038,21.0,33.0,29.0,36.0,32.0,24.0,31.0,41.0,32.0,30.0,34.0,37.0,30.0,43.0,28.0,27.0,45.0,28.0,33.0,28.0,34.0,27.0,34.0,28.0,34.0,31.0,40.0,29.0,38.0,41.0,34.0,37.0,42.0,33.0,53.0,41.0,37.0,38.0,38.0,32.0,29.0,34.0,30.0,41.0,25.0,32.0,32.0,21.0,38.0,25.0,31.0,32.0,50.0,50.0,32.0,44.0,41.0,47.0,43.0,48.0,48.0,39.0,48.0,48.0,34.0,34.0,27.0,45.0,32.0,37.0,37.0,32.0,25.0,30.0,23.0,31.0,28.0,21.0,28.0,19.0,13.0,17.0,15.0,13.0,8.0,8.0,16.0,9.0,10.0,5.0,2.0,2.0,4.0,3.0,1.0,2.0 B85041,96.0,93.0,95.0,102.0,104.0,108.0,105.0,104.0,132.0,114.0,129.0,146.0,147.0,123.0,128.0,125.0,142.0,128.0,116.0,136.0,145.0,145.0,134.0,120.0,144.0,116.0,122.0,127.0,126.0,104.0,127.0,110.0,107.0,115.0,101.0,106.0,114.0,107.0,115.0,132.0,131.0,106.0,122.0,124.0,131.0,115.0,117.0,99.0,107.0,105.0,97.0,102.0,120.0,109.0,126.0,103.0,115.0,84.0,71.0,67.0,60.0,60.0,65.0,78.0,48.0,66.0,58.0,55.0,53.0,64.0,41.0,51.0,50.0,38.0,33.0,41.0,30.0,36.0,21.0,21.0,16.0,14.0,17.0,14.0,12.0,9.0,6.0,16.0,8.0,5.0,6.0,1.0,3.0,3.0,3.0,7.0 B85042,45.0,63.0,46.0,62.0,51.0,53.0,45.0,63.0,64.0,73.0,67.0,65.0,63.0,74.0,75.0,82.0,71.0,76.0,47.0,51.0,71.0,63.0,58.0,59.0,48.0,45.0,56.0,57.0,60.0,52.0,67.0,54.0,66.0,59.0,67.0,69.0,86.0,63.0,59.0,73.0,69.0,63.0,60.0,75.0,74.0,58.0,58.0,62.0,56.0,65.0,61.0,50.0,69.0,72.0,81.0,59.0,64.0,63.0,69.0,76.0,70.0,52.0,61.0,48.0,48.0,62.0,41.0,37.0,28.0,36.0,32.0,33.0,30.0,38.0,22.0,29.0,19.0,24.0,24.0,20.0,20.0,13.0,14.0,12.0,10.0,9.0,9.0,10.0,7.0,4.0,7.0,5.0,3.0,2.0,1.0,4.0 B85044,18.0,25.0,29.0,26.0,21.0,23.0,24.0,25.0,25.0,13.0,32.0,26.0,28.0,32.0,18.0,31.0,15.0,29.0,20.0,32.0,23.0,24.0,28.0,32.0,33.0,24.0,27.0,27.0,25.0,17.0,27.0,26.0,22.0,16.0,24.0,34.0,25.0,26.0,20.0,30.0,24.0,29.0,36.0,23.0,21.0,24.0,25.0,28.0,20.0,19.0,18.0,10.0,22.0,20.0,19.0,28.0,19.0,12.0,8.0,13.0,12.0,7.0,4.0,8.0,7.0,11.0,9.0,12.0,11.0,9.0,9.0,6.0,3.0,2.0,4.0,4.0,2.0,3.0,2.0,3.0,2.0,1.0,4.0,,5.0,2.0,2.0,3.0,4.0,1.0,2.0,,2.0,,1.0, B85048,33.0,35.0,45.0,34.0,41.0,38.0,43.0,43.0,38.0,41.0,50.0,43.0,47.0,27.0,32.0,34.0,37.0,27.0,25.0,26.0,24.0,24.0,31.0,22.0,31.0,32.0,32.0,28.0,30.0,42.0,36.0,38.0,35.0,27.0,46.0,46.0,39.0,37.0,39.0,45.0,38.0,33.0,44.0,37.0,33.0,38.0,44.0,27.0,20.0,20.0,24.0,29.0,24.0,22.0,28.0,25.0,18.0,28.0,29.0,31.0,18.0,28.0,20.0,26.0,22.0,15.0,14.0,20.0,12.0,12.0,17.0,16.0,9.0,8.0,10.0,10.0,8.0,10.0,5.0,8.0,3.0,5.0,5.0,8.0,1.0,3.0,3.0,3.0,3.0,2.0,1.0,1.0,,,, B85051,20.0,36.0,40.0,47.0,38.0,38.0,46.0,36.0,52.0,38.0,45.0,48.0,32.0,52.0,38.0,32.0,55.0,52.0,42.0,44.0,47.0,39.0,27.0,40.0,33.0,29.0,45.0,48.0,29.0,52.0,42.0,49.0,67.0,62.0,55.0,51.0,43.0,60.0,52.0,42.0,53.0,43.0,45.0,42.0,48.0,42.0,48.0,45.0,35.0,36.0,43.0,48.0,52.0,62.0,50.0,55.0,45.0,58.0,38.0,56.0,42.0,52.0,43.0,56.0,52.0,41.0,36.0,43.0,47.0,48.0,24.0,23.0,33.0,41.0,20.0,33.0,34.0,46.0,29.0,21.0,21.0,24.0,16.0,7.0,7.0,8.0,17.0,6.0,8.0,3.0,7.0,4.0,1.0,2.0,,2.0 B85054,31.0,27.0,49.0,43.0,41.0,44.0,39.0,47.0,45.0,48.0,55.0,67.0,58.0,68.0,60.0,61.0,56.0,69.0,55.0,46.0,53.0,54.0,34.0,51.0,53.0,42.0,56.0,47.0,45.0,46.0,51.0,76.0,46.0,61.0,65.0,54.0,44.0,49.0,60.0,61.0,60.0,74.0,54.0,60.0,68.0,62.0,61.0,56.0,59.0,78.0,46.0,95.0,87.0,101.0,81.0,92.0,79.0,90.0,76.0,71.0,100.0,76.0,77.0,74.0,90.0,63.0,72.0,83.0,77.0,57.0,50.0,69.0,53.0,55.0,61.0,54.0,56.0,60.0,59.0,42.0,34.0,33.0,25.0,24.0,10.0,23.0,15.0,13.0,9.0,14.0,5.0,8.0,6.0,2.0,4.0,4.0 B85055,105.0,117.0,96.0,111.0,98.0,105.0,94.0,101.0,99.0,96.0,112.0,113.0,102.0,86.0,108.0,99.0,101.0,113.0,101.0,102.0,103.0,102.0,106.0,100.0,101.0,103.0,107.0,115.0,106.0,99.0,102.0,105.0,125.0,89.0,129.0,112.0,92.0,119.0,116.0,125.0,110.0,137.0,104.0,115.0,97.0,114.0,121.0,91.0,100.0,93.0,69.0,72.0,71.0,81.0,56.0,61.0,54.0,47.0,43.0,45.0,39.0,30.0,31.0,29.0,38.0,32.0,28.0,30.0,37.0,34.0,28.0,35.0,30.0,30.0,21.0,13.0,15.0,8.0,10.0,15.0,3.0,9.0,8.0,7.0,7.0,8.0,6.0,9.0,3.0,5.0,6.0,5.0,1.0,,1.0,8.0 B85058,20.0,25.0,11.0,19.0,24.0,16.0,22.0,20.0,9.0,20.0,14.0,15.0,19.0,7.0,15.0,19.0,16.0,13.0,14.0,15.0,13.0,16.0,16.0,17.0,26.0,21.0,36.0,17.0,37.0,31.0,43.0,31.0,42.0,29.0,26.0,34.0,43.0,33.0,39.0,28.0,24.0,44.0,30.0,28.0,27.0,14.0,17.0,27.0,15.0,27.0,21.0,19.0,18.0,15.0,18.0,17.0,21.0,22.0,21.0,17.0,25.0,19.0,17.0,20.0,15.0,10.0,8.0,8.0,14.0,6.0,13.0,6.0,11.0,8.0,7.0,6.0,8.0,3.0,3.0,2.0,6.0,3.0,7.0,5.0,1.0,1.0,7.0,8.0,2.0,2.0,2.0,2.0,2.0,2.0,1.0,1.0 B85059,33.0,45.0,46.0,44.0,44.0,45.0,50.0,46.0,41.0,50.0,40.0,50.0,47.0,40.0,46.0,48.0,42.0,34.0,48.0,36.0,36.0,32.0,26.0,40.0,33.0,35.0,46.0,33.0,42.0,57.0,65.0,61.0,44.0,56.0,74.0,57.0,62.0,53.0,72.0,51.0,52.0,57.0,57.0,61.0,52.0,67.0,58.0,42.0,51.0,38.0,39.0,47.0,47.0,57.0,52.0,74.0,50.0,50.0,74.0,64.0,61.0,54.0,59.0,56.0,53.0,49.0,44.0,42.0,42.0,25.0,44.0,40.0,37.0,50.0,39.0,27.0,33.0,34.0,42.0,19.0,14.0,21.0,17.0,13.0,9.0,7.0,12.0,9.0,5.0,2.0,5.0,3.0,3.0,,,2.0 B85060,8.0,7.0,9.0,11.0,13.0,10.0,16.0,8.0,14.0,13.0,14.0,12.0,15.0,8.0,21.0,16.0,12.0,6.0,9.0,9.0,15.0,12.0,7.0,10.0,13.0,18.0,13.0,21.0,16.0,16.0,15.0,17.0,17.0,21.0,17.0,21.0,15.0,20.0,16.0,10.0,26.0,21.0,16.0,12.0,17.0,13.0,15.0,17.0,18.0,21.0,17.0,19.0,19.0,20.0,20.0,13.0,19.0,14.0,14.0,23.0,19.0,16.0,18.0,22.0,14.0,12.0,9.0,11.0,11.0,15.0,14.0,17.0,14.0,8.0,18.0,17.0,19.0,8.0,16.0,13.0,12.0,13.0,14.0,7.0,7.0,5.0,3.0,3.0,4.0,,3.0,2.0,3.0,3.0,,2.0 B85061,54.0,35.0,41.0,31.0,36.0,41.0,32.0,41.0,57.0,48.0,62.0,47.0,55.0,61.0,60.0,62.0,58.0,55.0,60.0,49.0,45.0,42.0,48.0,46.0,49.0,46.0,46.0,61.0,58.0,48.0,57.0,44.0,59.0,51.0,44.0,51.0,47.0,59.0,46.0,46.0,43.0,58.0,38.0,45.0,50.0,72.0,61.0,42.0,50.0,58.0,54.0,65.0,85.0,86.0,80.0,79.0,77.0,89.0,86.0,96.0,78.0,60.0,80.0,73.0,61.0,62.0,61.0,51.0,57.0,51.0,53.0,48.0,52.0,53.0,48.0,62.0,50.0,62.0,42.0,46.0,47.0,38.0,28.0,27.0,20.0,17.0,14.0,12.0,9.0,12.0,6.0,13.0,6.0,2.0,,7.0 B85062,27.0,23.0,29.0,27.0,21.0,37.0,24.0,36.0,40.0,33.0,34.0,38.0,37.0,32.0,30.0,25.0,25.0,31.0,74.0,154.0,242.0,332.0,355.0,372.0,402.0,451.0,473.0,553.0,488.0,600.0,561.0,454.0,398.0,281.0,251.0,230.0,220.0,203.0,179.0,183.0,148.0,118.0,133.0,119.0,72.0,64.0,55.0,54.0,50.0,37.0,36.0,35.0,33.0,21.0,20.0,13.0,20.0,11.0,18.0,4.0,7.0,14.0,8.0,7.0,5.0,12.0,4.0,4.0,7.0,2.0,2.0,2.0,4.0,3.0,,2.0,2.0,1.0,1.0,,1.0,1.0,1.0,,,1.0,,,1.0,,,,,,, B85606,20.0,19.0,28.0,26.0,30.0,28.0,24.0,23.0,32.0,41.0,26.0,26.0,38.0,33.0,28.0,41.0,46.0,42.0,41.0,38.0,39.0,33.0,31.0,32.0,40.0,48.0,41.0,36.0,29.0,43.0,40.0,26.0,37.0,35.0,25.0,38.0,36.0,31.0,38.0,36.0,33.0,31.0,31.0,33.0,36.0,31.0,45.0,33.0,31.0,48.0,27.0,38.0,27.0,35.0,29.0,33.0,45.0,36.0,34.0,27.0,27.0,23.0,33.0,23.0,20.0,26.0,29.0,24.0,17.0,23.0,27.0,20.0,17.0,26.0,14.0,11.0,21.0,12.0,6.0,9.0,11.0,9.0,8.0,9.0,8.0,5.0,4.0,5.0,7.0,3.0,5.0,1.0,,2.0,1.0,2.0 B85610,33.0,30.0,43.0,53.0,57.0,52.0,56.0,51.0,55.0,63.0,65.0,67.0,77.0,70.0,70.0,89.0,68.0,74.0,57.0,63.0,51.0,55.0,50.0,48.0,37.0,44.0,43.0,55.0,55.0,46.0,51.0,56.0,65.0,66.0,74.0,63.0,61.0,69.0,60.0,65.0,82.0,59.0,70.0,80.0,67.0,78.0,86.0,61.0,66.0,66.0,69.0,88.0,79.0,85.0,94.0,100.0,86.0,88.0,64.0,85.0,78.0,85.0,76.0,67.0,74.0,71.0,58.0,61.0,58.0,44.0,53.0,53.0,48.0,58.0,67.0,62.0,44.0,67.0,45.0,40.0,35.0,39.0,15.0,21.0,23.0,14.0,13.0,13.0,13.0,10.0,5.0,3.0,1.0,2.0,2.0,3.0 B85611,12.0,25.0,22.0,22.0,16.0,24.0,24.0,19.0,21.0,30.0,28.0,23.0,28.0,33.0,38.0,26.0,25.0,15.0,24.0,26.0,27.0,16.0,27.0,18.0,21.0,25.0,29.0,27.0,27.0,35.0,31.0,19.0,27.0,32.0,37.0,29.0,30.0,33.0,32.0,34.0,27.0,28.0,40.0,40.0,30.0,37.0,35.0,34.0,32.0,29.0,25.0,33.0,28.0,20.0,28.0,26.0,28.0,23.0,22.0,23.0,28.0,24.0,15.0,23.0,19.0,15.0,27.0,19.0,19.0,16.0,16.0,17.0,9.0,15.0,10.0,10.0,7.0,3.0,7.0,3.0,5.0,4.0,6.0,7.0,1.0,6.0,6.0,5.0,3.0,2.0,3.0,4.0,1.0,1.0,1.0,12.0 B85612,32.0,25.0,23.0,22.0,26.0,26.0,31.0,17.0,30.0,24.0,31.0,30.0,44.0,22.0,29.0,30.0,32.0,31.0,26.0,26.0,19.0,19.0,18.0,30.0,24.0,30.0,27.0,34.0,30.0,34.0,34.0,38.0,38.0,40.0,21.0,34.0,26.0,34.0,37.0,36.0,36.0,32.0,39.0,30.0,29.0,32.0,26.0,19.0,26.0,35.0,38.0,25.0,27.0,41.0,31.0,36.0,34.0,39.0,32.0,44.0,20.0,22.0,24.0,17.0,33.0,22.0,20.0,31.0,13.0,25.0,17.0,17.0,12.0,21.0,16.0,14.0,20.0,18.0,11.0,10.0,11.0,7.0,9.0,11.0,6.0,8.0,9.0,8.0,3.0,1.0,3.0,1.0,,2.0,,2.0 B85614,45.0,57.0,55.0,51.0,53.0,51.0,58.0,60.0,54.0,55.0,59.0,51.0,65.0,48.0,60.0,56.0,50.0,50.0,41.0,63.0,45.0,51.0,58.0,64.0,48.0,55.0,60.0,56.0,63.0,62.0,69.0,65.0,73.0,61.0,59.0,60.0,57.0,61.0,61.0,64.0,52.0,68.0,68.0,58.0,68.0,50.0,77.0,55.0,52.0,58.0,61.0,47.0,41.0,63.0,28.0,31.0,53.0,38.0,33.0,27.0,26.0,21.0,18.0,23.0,20.0,25.0,24.0,22.0,18.0,25.0,13.0,17.0,16.0,17.0,10.0,7.0,8.0,4.0,5.0,6.0,3.0,7.0,10.0,5.0,8.0,8.0,4.0,9.0,8.0,2.0,4.0,6.0,2.0,1.0,1.0,3.0 B85619,23.0,20.0,19.0,19.0,25.0,19.0,23.0,22.0,23.0,18.0,20.0,23.0,28.0,13.0,29.0,31.0,20.0,25.0,22.0,25.0,23.0,25.0,20.0,27.0,20.0,20.0,22.0,34.0,21.0,30.0,34.0,28.0,30.0,28.0,17.0,19.0,24.0,41.0,18.0,21.0,32.0,22.0,26.0,24.0,22.0,23.0,19.0,19.0,21.0,37.0,21.0,15.0,19.0,21.0,25.0,14.0,17.0,20.0,9.0,18.0,9.0,16.0,15.0,8.0,13.0,16.0,15.0,7.0,14.0,8.0,8.0,15.0,14.0,14.0,11.0,9.0,12.0,9.0,6.0,4.0,5.0,5.0,5.0,4.0,4.0,3.0,3.0,3.0,1.0,2.0,2.0,,,,1.0, B85620,19.0,16.0,29.0,20.0,15.0,16.0,27.0,15.0,24.0,15.0,15.0,13.0,21.0,10.0,19.0,11.0,16.0,18.0,11.0,9.0,20.0,19.0,9.0,13.0,9.0,29.0,18.0,17.0,21.0,26.0,18.0,20.0,18.0,20.0,30.0,25.0,25.0,18.0,15.0,31.0,18.0,18.0,19.0,19.0,21.0,16.0,15.0,17.0,14.0,11.0,21.0,18.0,14.0,20.0,18.0,17.0,15.0,13.0,22.0,19.0,24.0,16.0,10.0,13.0,14.0,12.0,9.0,16.0,20.0,18.0,13.0,12.0,9.0,9.0,8.0,16.0,12.0,6.0,16.0,13.0,2.0,10.0,5.0,2.0,5.0,3.0,3.0,1.0,2.0,6.0,,,,1.0,,1.0 B85623,22.0,23.0,16.0,27.0,12.0,22.0,21.0,22.0,25.0,19.0,20.0,22.0,16.0,18.0,18.0,18.0,16.0,22.0,16.0,19.0,18.0,17.0,19.0,20.0,18.0,22.0,23.0,22.0,20.0,24.0,15.0,22.0,31.0,25.0,25.0,27.0,17.0,36.0,26.0,29.0,39.0,42.0,23.0,30.0,21.0,38.0,36.0,16.0,17.0,25.0,21.0,21.0,23.0,23.0,35.0,30.0,19.0,38.0,16.0,27.0,17.0,16.0,23.0,23.0,9.0,20.0,19.0,19.0,18.0,20.0,15.0,15.0,19.0,9.0,10.0,12.0,9.0,13.0,8.0,5.0,7.0,8.0,5.0,4.0,3.0,6.0,3.0,3.0,7.0,2.0,,,1.0,2.0,1.0,3.0 B85634,24.0,18.0,23.0,42.0,27.0,35.0,29.0,37.0,37.0,28.0,40.0,35.0,24.0,21.0,31.0,36.0,26.0,24.0,20.0,29.0,23.0,24.0,29.0,25.0,24.0,25.0,25.0,21.0,22.0,29.0,24.0,31.0,32.0,38.0,31.0,35.0,22.0,31.0,39.0,26.0,36.0,37.0,32.0,37.0,44.0,37.0,33.0,24.0,38.0,30.0,27.0,18.0,28.0,21.0,18.0,16.0,25.0,17.0,18.0,19.0,23.0,19.0,15.0,8.0,14.0,9.0,12.0,13.0,11.0,9.0,6.0,13.0,8.0,5.0,14.0,4.0,4.0,3.0,4.0,4.0,8.0,,2.0,4.0,1.0,5.0,3.0,3.0,3.0,2.0,2.0,,,,2.0, B85636,18.0,16.0,20.0,25.0,16.0,34.0,37.0,22.0,26.0,25.0,21.0,24.0,24.0,21.0,22.0,24.0,19.0,26.0,22.0,14.0,14.0,21.0,23.0,26.0,21.0,19.0,20.0,30.0,21.0,32.0,18.0,17.0,24.0,30.0,14.0,27.0,25.0,27.0,21.0,32.0,23.0,28.0,23.0,27.0,33.0,27.0,27.0,30.0,26.0,27.0,23.0,29.0,35.0,22.0,28.0,23.0,33.0,33.0,34.0,40.0,35.0,27.0,22.0,33.0,27.0,16.0,25.0,20.0,22.0,21.0,13.0,17.0,19.0,15.0,21.0,24.0,19.0,19.0,26.0,9.0,17.0,17.0,9.0,10.0,11.0,6.0,6.0,6.0,7.0,9.0,8.0,2.0,4.0,,,3.0 B85640,17.0,18.0,19.0,12.0,20.0,14.0,15.0,15.0,17.0,15.0,14.0,17.0,23.0,15.0,21.0,21.0,19.0,21.0,17.0,23.0,21.0,19.0,13.0,18.0,21.0,13.0,20.0,23.0,17.0,22.0,27.0,22.0,25.0,34.0,26.0,17.0,23.0,32.0,20.0,21.0,31.0,21.0,26.0,23.0,31.0,28.0,22.0,19.0,13.0,21.0,19.0,35.0,22.0,22.0,32.0,25.0,31.0,30.0,23.0,26.0,26.0,27.0,28.0,27.0,19.0,15.0,23.0,28.0,21.0,19.0,16.0,17.0,25.0,7.0,18.0,16.0,14.0,19.0,16.0,11.0,12.0,9.0,11.0,5.0,8.0,3.0,7.0,4.0,2.0,1.0,1.0,,1.0,1.0,,1.0 B85641,15.0,23.0,18.0,25.0,18.0,35.0,19.0,24.0,24.0,25.0,26.0,24.0,27.0,29.0,28.0,26.0,24.0,26.0,26.0,17.0,14.0,25.0,15.0,27.0,22.0,24.0,21.0,23.0,35.0,38.0,40.0,34.0,25.0,28.0,30.0,30.0,45.0,36.0,42.0,46.0,26.0,33.0,34.0,35.0,41.0,25.0,23.0,18.0,28.0,25.0,27.0,37.0,24.0,31.0,30.0,31.0,37.0,34.0,29.0,30.0,36.0,21.0,32.0,23.0,29.0,29.0,19.0,20.0,16.0,21.0,17.0,15.0,18.0,15.0,12.0,14.0,20.0,12.0,20.0,18.0,10.0,13.0,8.0,9.0,8.0,11.0,8.0,3.0,6.0,7.0,4.0,3.0,1.0,,1.0,1.0 B85645,20.0,22.0,13.0,16.0,13.0,16.0,19.0,21.0,18.0,24.0,27.0,17.0,17.0,31.0,30.0,28.0,31.0,23.0,25.0,24.0,32.0,18.0,22.0,31.0,16.0,22.0,24.0,21.0,17.0,20.0,20.0,15.0,30.0,17.0,25.0,21.0,7.0,19.0,20.0,14.0,16.0,13.0,24.0,21.0,17.0,22.0,20.0,26.0,19.0,11.0,34.0,8.0,15.0,16.0,5.0,13.0,11.0,7.0,16.0,9.0,8.0,4.0,7.0,7.0,5.0,4.0,3.0,4.0,2.0,6.0,6.0,6.0,5.0,9.0,2.0,2.0,3.0,1.0,,1.0,2.0,3.0,,,1.0,1.0,1.0,,,2.0,,,1.0,1.0,, B85646,29.0,33.0,31.0,40.0,51.0,32.0,40.0,44.0,38.0,49.0,38.0,47.0,49.0,53.0,43.0,35.0,39.0,40.0,32.0,53.0,31.0,35.0,50.0,39.0,42.0,55.0,52.0,60.0,39.0,40.0,35.0,47.0,66.0,44.0,48.0,38.0,42.0,46.0,47.0,71.0,39.0,50.0,51.0,57.0,56.0,45.0,50.0,40.0,49.0,44.0,43.0,40.0,36.0,51.0,43.0,31.0,45.0,45.0,41.0,41.0,43.0,35.0,37.0,32.0,36.0,31.0,30.0,36.0,27.0,24.0,22.0,27.0,26.0,22.0,31.0,18.0,25.0,25.0,14.0,16.0,19.0,13.0,9.0,9.0,7.0,13.0,8.0,7.0,5.0,4.0,6.0,4.0,5.0,2.0,2.0, B85650,37.0,53.0,36.0,41.0,40.0,35.0,44.0,43.0,53.0,41.0,56.0,58.0,37.0,39.0,60.0,43.0,56.0,43.0,42.0,32.0,44.0,50.0,42.0,44.0,47.0,57.0,44.0,48.0,50.0,30.0,40.0,44.0,39.0,41.0,44.0,57.0,41.0,44.0,43.0,46.0,34.0,50.0,46.0,46.0,45.0,39.0,51.0,45.0,28.0,24.0,43.0,32.0,31.0,25.0,26.0,25.0,30.0,27.0,30.0,16.0,13.0,16.0,19.0,14.0,9.0,8.0,9.0,9.0,11.0,7.0,6.0,6.0,11.0,9.0,4.0,2.0,5.0,3.0,1.0,1.0,9.0,2.0,3.0,2.0,1.0,1.0,,1.0,2.0,,2.0,,1.0,1.0,,2.0 B85652,37.0,34.0,47.0,54.0,34.0,48.0,51.0,66.0,62.0,60.0,54.0,78.0,69.0,75.0,70.0,87.0,79.0,58.0,62.0,63.0,45.0,76.0,83.0,59.0,73.0,50.0,70.0,66.0,43.0,73.0,51.0,58.0,67.0,40.0,60.0,66.0,60.0,56.0,57.0,59.0,58.0,62.0,55.0,59.0,63.0,69.0,67.0,49.0,52.0,55.0,51.0,62.0,53.0,48.0,46.0,46.0,32.0,31.0,27.0,34.0,29.0,30.0,31.0,30.0,35.0,17.0,37.0,31.0,18.0,23.0,14.0,18.0,19.0,21.0,18.0,14.0,12.0,12.0,14.0,3.0,4.0,5.0,5.0,8.0,5.0,5.0,3.0,,6.0,4.0,2.0,1.0,4.0,1.0,,1.0 B85655,16.0,17.0,20.0,14.0,26.0,18.0,17.0,16.0,16.0,23.0,14.0,19.0,24.0,23.0,36.0,26.0,22.0,20.0,21.0,20.0,13.0,21.0,10.0,14.0,15.0,15.0,30.0,18.0,20.0,26.0,13.0,22.0,23.0,14.0,22.0,26.0,20.0,21.0,23.0,13.0,18.0,27.0,13.0,19.0,16.0,10.0,16.0,9.0,16.0,10.0,7.0,20.0,13.0,16.0,17.0,18.0,15.0,15.0,18.0,18.0,22.0,13.0,11.0,12.0,15.0,12.0,9.0,10.0,9.0,6.0,17.0,14.0,10.0,12.0,6.0,9.0,8.0,11.0,6.0,8.0,7.0,4.0,3.0,4.0,7.0,4.0,3.0,4.0,2.0,4.0,3.0,,1.0,1.0,, B85659,9.0,6.0,4.0,7.0,12.0,10.0,11.0,6.0,13.0,8.0,6.0,10.0,10.0,7.0,6.0,6.0,13.0,17.0,22.0,27.0,32.0,21.0,33.0,43.0,53.0,55.0,48.0,47.0,51.0,56.0,45.0,52.0,50.0,40.0,45.0,34.0,28.0,44.0,24.0,20.0,24.0,16.0,17.0,22.0,22.0,20.0,16.0,10.0,14.0,12.0,7.0,13.0,5.0,9.0,6.0,5.0,14.0,9.0,2.0,1.0,3.0,1.0,4.0,3.0,,3.0,1.0,,2.0,,1.0,,,2.0,1.0,,,,,,1.0,,,,,,,,,,,,,,, B85660,35.0,26.0,28.0,38.0,37.0,34.0,40.0,39.0,41.0,39.0,50.0,43.0,50.0,54.0,49.0,44.0,38.0,40.0,47.0,37.0,34.0,32.0,29.0,28.0,29.0,41.0,41.0,49.0,53.0,59.0,57.0,57.0,52.0,44.0,61.0,48.0,54.0,61.0,48.0,57.0,42.0,43.0,52.0,46.0,44.0,43.0,40.0,45.0,37.0,29.0,40.0,48.0,27.0,40.0,40.0,45.0,33.0,40.0,47.0,42.0,37.0,47.0,50.0,52.0,42.0,37.0,48.0,29.0,32.0,27.0,22.0,37.0,25.0,29.0,25.0,16.0,18.0,23.0,23.0,12.0,16.0,7.0,9.0,10.0,10.0,10.0,4.0,6.0,5.0,6.0,2.0,4.0,,5.0,,2.0 B86002,71.0,72.0,96.0,85.0,90.0,78.0,103.0,108.0,111.0,129.0,126.0,124.0,118.0,121.0,134.0,110.0,103.0,128.0,118.0,88.0,94.0,107.0,92.0,113.0,124.0,137.0,140.0,147.0,138.0,133.0,147.0,130.0,159.0,137.0,159.0,134.0,153.0,145.0,165.0,190.0,168.0,160.0,163.0,160.0,162.0,175.0,173.0,153.0,116.0,147.0,115.0,115.0,121.0,106.0,142.0,101.0,104.0,73.0,79.0,77.0,89.0,77.0,78.0,59.0,71.0,41.0,51.0,46.0,36.0,30.0,51.0,33.0,40.0,25.0,18.0,24.0,32.0,14.0,29.0,29.0,13.0,18.0,8.0,9.0,15.0,16.0,9.0,6.0,4.0,5.0,8.0,2.0,4.0,3.0,1.0,4.0 B86003,94.0,109.0,100.0,110.0,119.0,110.0,125.0,113.0,109.0,133.0,115.0,126.0,118.0,136.0,111.0,118.0,119.0,129.0,103.0,127.0,91.0,82.0,89.0,85.0,122.0,129.0,110.0,141.0,159.0,146.0,159.0,175.0,199.0,193.0,182.0,185.0,182.0,195.0,186.0,176.0,177.0,160.0,159.0,168.0,177.0,158.0,133.0,125.0,116.0,119.0,107.0,119.0,134.0,95.0,123.0,86.0,109.0,94.0,81.0,100.0,80.0,96.0,95.0,78.0,73.0,65.0,69.0,71.0,59.0,59.0,48.0,50.0,37.0,41.0,37.0,35.0,30.0,34.0,37.0,18.0,15.0,12.0,17.0,17.0,14.0,6.0,8.0,11.0,6.0,10.0,7.0,5.0,4.0,5.0,1.0,6.0 B86004,42.0,45.0,39.0,41.0,30.0,38.0,40.0,61.0,57.0,42.0,51.0,39.0,53.0,46.0,57.0,55.0,40.0,46.0,49.0,50.0,41.0,44.0,40.0,42.0,41.0,54.0,31.0,56.0,48.0,50.0,51.0,44.0,53.0,55.0,69.0,62.0,59.0,67.0,49.0,77.0,57.0,65.0,67.0,64.0,59.0,63.0,53.0,32.0,60.0,52.0,39.0,57.0,49.0,42.0,45.0,62.0,61.0,49.0,58.0,51.0,53.0,41.0,55.0,53.0,46.0,43.0,46.0,42.0,45.0,47.0,38.0,53.0,32.0,39.0,40.0,39.0,42.0,47.0,32.0,31.0,25.0,27.0,16.0,21.0,14.0,14.0,14.0,17.0,4.0,10.0,6.0,7.0,2.0,4.0,3.0,3.0 B86005,30.0,35.0,23.0,30.0,30.0,41.0,38.0,41.0,39.0,41.0,30.0,35.0,37.0,37.0,40.0,51.0,38.0,41.0,31.0,44.0,33.0,50.0,33.0,30.0,32.0,34.0,47.0,46.0,46.0,36.0,42.0,56.0,49.0,59.0,47.0,38.0,50.0,64.0,59.0,67.0,59.0,52.0,60.0,49.0,43.0,40.0,38.0,56.0,34.0,49.0,46.0,39.0,44.0,34.0,42.0,40.0,39.0,27.0,45.0,30.0,42.0,31.0,39.0,24.0,23.0,30.0,19.0,22.0,17.0,18.0,17.0,15.0,16.0,11.0,12.0,10.0,15.0,10.0,14.0,6.0,4.0,3.0,7.0,10.0,3.0,2.0,2.0,4.0,3.0,3.0,2.0,2.0,1.0,,,1.0 B86006,68.0,65.0,86.0,64.0,77.0,72.0,85.0,107.0,84.0,80.0,92.0,81.0,85.0,85.0,97.0,92.0,93.0,87.0,70.0,77.0,75.0,73.0,62.0,71.0,97.0,79.0,83.0,72.0,94.0,102.0,87.0,88.0,113.0,97.0,106.0,113.0,112.0,87.0,110.0,105.0,105.0,95.0,88.0,95.0,81.0,102.0,85.0,81.0,83.0,93.0,85.0,83.0,100.0,103.0,122.0,96.0,110.0,110.0,142.0,111.0,101.0,105.0,119.0,96.0,84.0,98.0,90.0,69.0,75.0,72.0,62.0,66.0,69.0,60.0,56.0,50.0,62.0,63.0,55.0,50.0,58.0,55.0,39.0,42.0,37.0,27.0,30.0,23.0,19.0,22.0,14.0,12.0,11.0,5.0,5.0,10.0 B86007,35.0,46.0,49.0,54.0,62.0,73.0,56.0,73.0,65.0,67.0,61.0,51.0,64.0,55.0,79.0,68.0,74.0,68.0,53.0,54.0,53.0,61.0,41.0,48.0,52.0,38.0,49.0,47.0,50.0,56.0,64.0,62.0,88.0,55.0,64.0,80.0,76.0,66.0,72.0,77.0,70.0,82.0,60.0,55.0,49.0,62.0,60.0,46.0,53.0,40.0,35.0,48.0,54.0,56.0,64.0,52.0,72.0,46.0,67.0,63.0,62.0,64.0,52.0,34.0,52.0,51.0,29.0,40.0,30.0,33.0,32.0,36.0,31.0,46.0,39.0,26.0,29.0,34.0,41.0,15.0,16.0,20.0,13.0,13.0,8.0,5.0,11.0,7.0,7.0,6.0,10.0,,1.0,2.0,3.0,6.0 B86008,71.0,92.0,100.0,99.0,106.0,103.0,110.0,139.0,129.0,168.0,163.0,154.0,176.0,159.0,149.0,143.0,124.0,137.0,113.0,83.0,86.0,75.0,99.0,89.0,81.0,75.0,80.0,85.0,62.0,94.0,89.0,105.0,81.0,101.0,102.0,113.0,116.0,99.0,113.0,120.0,130.0,141.0,124.0,157.0,131.0,145.0,127.0,132.0,141.0,130.0,122.0,135.0,138.0,125.0,114.0,123.0,127.0,126.0,113.0,118.0,111.0,86.0,101.0,109.0,103.0,110.0,96.0,95.0,105.0,93.0,85.0,76.0,93.0,102.0,89.0,90.0,94.0,81.0,92.0,64.0,58.0,51.0,55.0,30.0,34.0,35.0,38.0,27.0,24.0,26.0,12.0,13.0,10.0,5.0,7.0,14.0 B86009,41.0,39.0,40.0,46.0,39.0,49.0,59.0,44.0,52.0,45.0,41.0,43.0,49.0,35.0,46.0,50.0,45.0,33.0,47.0,32.0,46.0,33.0,35.0,33.0,35.0,44.0,32.0,34.0,42.0,42.0,42.0,50.0,56.0,66.0,65.0,62.0,58.0,59.0,64.0,57.0,75.0,65.0,57.0,65.0,57.0,52.0,45.0,42.0,47.0,52.0,44.0,61.0,67.0,58.0,64.0,43.0,43.0,54.0,49.0,62.0,44.0,49.0,48.0,54.0,46.0,42.0,45.0,49.0,49.0,32.0,25.0,26.0,55.0,33.0,38.0,40.0,38.0,40.0,38.0,26.0,44.0,31.0,27.0,6.0,18.0,17.0,19.0,22.0,9.0,9.0,9.0,13.0,5.0,3.0,2.0,7.0 B86010,40.0,29.0,41.0,38.0,52.0,51.0,66.0,59.0,61.0,64.0,59.0,57.0,63.0,61.0,70.0,60.0,47.0,61.0,46.0,48.0,39.0,43.0,38.0,31.0,37.0,44.0,39.0,36.0,38.0,40.0,34.0,40.0,36.0,42.0,42.0,31.0,49.0,46.0,53.0,57.0,53.0,69.0,57.0,53.0,77.0,82.0,66.0,47.0,64.0,53.0,67.0,61.0,50.0,82.0,63.0,66.0,77.0,66.0,71.0,65.0,84.0,73.0,77.0,63.0,72.0,63.0,73.0,54.0,65.0,52.0,46.0,62.0,65.0,51.0,64.0,58.0,56.0,67.0,85.0,52.0,58.0,45.0,40.0,45.0,30.0,23.0,24.0,22.0,17.0,24.0,14.0,15.0,8.0,10.0,5.0,6.0 B86011,31.0,38.0,56.0,64.0,37.0,69.0,59.0,61.0,76.0,53.0,55.0,63.0,84.0,69.0,72.0,70.0,67.0,67.0,66.0,69.0,51.0,53.0,59.0,46.0,64.0,50.0,75.0,72.0,66.0,77.0,67.0,76.0,58.0,61.0,71.0,67.0,74.0,84.0,77.0,76.0,63.0,74.0,70.0,59.0,78.0,64.0,69.0,51.0,76.0,64.0,56.0,47.0,61.0,63.0,82.0,69.0,58.0,75.0,66.0,59.0,71.0,56.0,71.0,47.0,55.0,44.0,49.0,46.0,43.0,49.0,40.0,39.0,43.0,34.0,33.0,33.0,36.0,39.0,41.0,17.0,21.0,26.0,16.0,17.0,12.0,19.0,11.0,11.0,9.0,8.0,5.0,6.0,6.0,2.0,2.0,3.0 B86012,111.0,116.0,121.0,119.0,108.0,119.0,112.0,135.0,136.0,141.0,138.0,143.0,142.0,120.0,142.0,141.0,140.0,134.0,123.0,135.0,126.0,163.0,144.0,165.0,147.0,182.0,204.0,158.0,159.0,196.0,195.0,186.0,185.0,194.0,241.0,186.0,179.0,176.0,188.0,183.0,179.0,200.0,198.0,158.0,188.0,173.0,166.0,142.0,142.0,170.0,157.0,110.0,145.0,131.0,112.0,111.0,107.0,94.0,88.0,81.0,98.0,107.0,77.0,82.0,72.0,68.0,58.0,59.0,65.0,59.0,39.0,47.0,40.0,38.0,28.0,28.0,30.0,28.0,30.0,19.0,23.0,16.0,13.0,15.0,11.0,13.0,13.0,11.0,4.0,9.0,6.0,8.0,3.0,1.0,2.0,4.0 B86013,72.0,115.0,129.0,132.0,158.0,164.0,166.0,177.0,189.0,195.0,188.0,183.0,185.0,186.0,186.0,169.0,154.0,170.0,148.0,150.0,127.0,118.0,122.0,132.0,126.0,126.0,127.0,130.0,133.0,154.0,150.0,153.0,171.0,142.0,152.0,170.0,193.0,171.0,190.0,187.0,194.0,216.0,201.0,202.0,213.0,218.0,172.0,165.0,169.0,169.0,153.0,147.0,135.0,135.0,127.0,125.0,117.0,110.0,84.0,105.0,76.0,87.0,79.0,74.0,60.0,44.0,64.0,61.0,42.0,45.0,44.0,39.0,42.0,39.0,38.0,32.0,37.0,31.0,36.0,31.0,21.0,27.0,20.0,23.0,22.0,13.0,15.0,12.0,11.0,15.0,9.0,8.0,6.0,6.0,4.0,8.0 B86014,61.0,62.0,42.0,68.0,81.0,72.0,85.0,84.0,81.0,88.0,106.0,114.0,105.0,103.0,98.0,88.0,80.0,85.0,74.0,73.0,63.0,65.0,66.0,52.0,62.0,70.0,70.0,82.0,60.0,107.0,65.0,71.0,66.0,96.0,94.0,93.0,100.0,116.0,104.0,96.0,99.0,110.0,106.0,106.0,112.0,81.0,101.0,88.0,85.0,87.0,82.0,88.0,96.0,90.0,89.0,87.0,100.0,75.0,86.0,82.0,77.0,75.0,75.0,84.0,77.0,58.0,64.0,65.0,62.0,68.0,63.0,67.0,54.0,49.0,38.0,50.0,47.0,51.0,42.0,39.0,47.0,30.0,30.0,23.0,12.0,16.0,20.0,13.0,11.0,9.0,13.0,6.0,3.0,9.0,5.0,10.0 B86015,54.0,64.0,74.0,84.0,66.0,85.0,68.0,90.0,90.0,89.0,88.0,75.0,88.0,95.0,96.0,104.0,98.0,85.0,102.0,70.0,68.0,76.0,80.0,65.0,60.0,97.0,76.0,95.0,115.0,107.0,101.0,119.0,128.0,97.0,135.0,112.0,126.0,89.0,104.0,100.0,108.0,92.0,94.0,106.0,91.0,98.0,104.0,79.0,82.0,89.0,89.0,78.0,94.0,93.0,107.0,85.0,97.0,95.0,104.0,84.0,98.0,90.0,92.0,99.0,76.0,61.0,62.0,61.0,60.0,61.0,39.0,57.0,47.0,43.0,53.0,50.0,40.0,46.0,39.0,32.0,29.0,25.0,28.0,15.0,14.0,21.0,10.0,9.0,11.0,9.0,3.0,8.0,7.0,4.0,1.0,5.0 B86016,93.0,113.0,103.0,118.0,112.0,109.0,127.0,143.0,154.0,142.0,125.0,140.0,140.0,142.0,127.0,123.0,120.0,110.0,116.0,102.0,101.0,125.0,94.0,91.0,86.0,109.0,115.0,132.0,111.0,135.0,133.0,129.0,137.0,149.0,155.0,137.0,152.0,142.0,145.0,150.0,133.0,130.0,113.0,105.0,130.0,127.0,102.0,95.0,106.0,94.0,107.0,88.0,120.0,99.0,118.0,106.0,91.0,106.0,143.0,118.0,124.0,100.0,83.0,114.0,90.0,80.0,90.0,89.0,75.0,58.0,66.0,78.0,69.0,68.0,64.0,67.0,57.0,61.0,70.0,38.0,30.0,36.0,28.0,22.0,16.0,26.0,20.0,19.0,16.0,12.0,7.0,9.0,8.0,5.0,3.0,6.0 B86017,69.0,71.0,63.0,81.0,87.0,65.0,82.0,67.0,74.0,69.0,69.0,97.0,95.0,69.0,84.0,84.0,82.0,78.0,109.0,129.0,141.0,161.0,175.0,203.0,246.0,254.0,226.0,226.0,201.0,167.0,213.0,220.0,223.0,205.0,174.0,193.0,180.0,196.0,173.0,177.0,176.0,137.0,161.0,155.0,126.0,110.0,119.0,104.0,101.0,107.0,111.0,106.0,114.0,63.0,78.0,79.0,90.0,106.0,78.0,74.0,83.0,70.0,65.0,55.0,62.0,59.0,50.0,63.0,42.0,56.0,50.0,66.0,45.0,40.0,54.0,47.0,47.0,36.0,43.0,37.0,31.0,33.0,23.0,15.0,14.0,14.0,15.0,7.0,17.0,9.0,12.0,4.0,6.0,2.0,2.0,7.0 B86018,31.0,22.0,33.0,39.0,21.0,31.0,38.0,41.0,25.0,34.0,46.0,36.0,42.0,37.0,40.0,48.0,39.0,46.0,32.0,38.0,20.0,41.0,29.0,39.0,24.0,32.0,52.0,39.0,54.0,66.0,67.0,60.0,70.0,60.0,58.0,53.0,56.0,52.0,49.0,60.0,51.0,56.0,39.0,37.0,55.0,55.0,34.0,34.0,43.0,48.0,59.0,45.0,77.0,49.0,55.0,47.0,59.0,52.0,53.0,45.0,54.0,54.0,46.0,46.0,50.0,47.0,60.0,46.0,46.0,38.0,34.0,49.0,46.0,35.0,30.0,30.0,34.0,38.0,37.0,24.0,22.0,17.0,22.0,11.0,18.0,17.0,14.0,6.0,6.0,6.0,2.0,6.0,4.0,3.0,3.0,4.0 B86019,93.0,99.0,97.0,110.0,119.0,123.0,125.0,133.0,141.0,144.0,150.0,158.0,150.0,144.0,141.0,156.0,129.0,119.0,124.0,111.0,106.0,87.0,81.0,104.0,94.0,100.0,104.0,114.0,122.0,127.0,137.0,146.0,148.0,138.0,162.0,155.0,153.0,153.0,179.0,169.0,153.0,169.0,168.0,198.0,194.0,168.0,179.0,177.0,166.0,164.0,128.0,148.0,159.0,147.0,137.0,95.0,118.0,100.0,114.0,119.0,130.0,107.0,81.0,87.0,108.0,91.0,99.0,85.0,86.0,82.0,91.0,58.0,70.0,48.0,61.0,64.0,69.0,63.0,49.0,31.0,47.0,32.0,36.0,32.0,22.0,23.0,28.0,26.0,25.0,20.0,11.0,19.0,16.0,6.0,2.0,10.0 B86020,59.0,38.0,62.0,46.0,56.0,60.0,85.0,60.0,75.0,72.0,71.0,70.0,59.0,69.0,77.0,68.0,53.0,62.0,62.0,39.0,36.0,40.0,48.0,47.0,47.0,46.0,38.0,63.0,56.0,65.0,59.0,64.0,53.0,91.0,86.0,95.0,69.0,87.0,58.0,87.0,88.0,87.0,83.0,68.0,74.0,81.0,71.0,71.0,68.0,72.0,75.0,70.0,85.0,100.0,74.0,82.0,85.0,95.0,74.0,84.0,74.0,75.0,77.0,78.0,69.0,52.0,67.0,66.0,50.0,57.0,41.0,55.0,41.0,56.0,55.0,42.0,53.0,58.0,43.0,40.0,39.0,39.0,21.0,29.0,28.0,18.0,19.0,13.0,11.0,12.0,7.0,13.0,7.0,2.0,2.0,5.0 B86022,74.0,87.0,80.0,93.0,105.0,77.0,96.0,90.0,95.0,131.0,91.0,101.0,112.0,104.0,106.0,105.0,104.0,98.0,94.0,83.0,96.0,71.0,95.0,93.0,100.0,106.0,94.0,97.0,120.0,133.0,84.0,108.0,88.0,95.0,117.0,120.0,123.0,110.0,123.0,107.0,92.0,117.0,87.0,124.0,112.0,102.0,102.0,93.0,99.0,86.0,84.0,87.0,91.0,73.0,97.0,91.0,92.0,78.0,81.0,83.0,65.0,70.0,70.0,66.0,68.0,66.0,41.0,48.0,66.0,52.0,47.0,35.0,29.0,33.0,42.0,35.0,33.0,38.0,31.0,28.0,23.0,28.0,30.0,25.0,14.0,16.0,14.0,14.0,8.0,13.0,3.0,8.0,4.0,2.0,3.0,4.0 B86024,42.0,40.0,41.0,51.0,37.0,41.0,64.0,36.0,53.0,52.0,49.0,58.0,46.0,50.0,57.0,66.0,62.0,47.0,46.0,58.0,49.0,47.0,50.0,67.0,83.0,86.0,79.0,69.0,78.0,78.0,84.0,81.0,77.0,72.0,77.0,70.0,77.0,80.0,84.0,78.0,62.0,72.0,80.0,56.0,66.0,67.0,57.0,51.0,54.0,56.0,43.0,56.0,54.0,76.0,81.0,67.0,70.0,59.0,62.0,76.0,64.0,70.0,64.0,57.0,55.0,72.0,53.0,40.0,50.0,36.0,41.0,35.0,29.0,46.0,37.0,29.0,25.0,33.0,36.0,20.0,28.0,16.0,12.0,10.0,21.0,13.0,9.0,6.0,9.0,8.0,6.0,4.0,3.0,2.0,1.0,3.0 B86025,38.0,37.0,37.0,34.0,36.0,41.0,41.0,39.0,39.0,40.0,51.0,40.0,39.0,51.0,49.0,53.0,38.0,40.0,45.0,99.0,138.0,171.0,226.0,243.0,245.0,254.0,228.0,195.0,199.0,172.0,152.0,165.0,174.0,157.0,153.0,163.0,169.0,128.0,179.0,134.0,109.0,90.0,60.0,63.0,63.0,53.0,59.0,41.0,42.0,37.0,48.0,51.0,37.0,35.0,41.0,38.0,39.0,33.0,29.0,27.0,24.0,29.0,24.0,26.0,25.0,23.0,19.0,24.0,15.0,23.0,18.0,20.0,18.0,13.0,15.0,11.0,10.0,7.0,13.0,9.0,2.0,6.0,7.0,5.0,3.0,4.0,3.0,2.0,2.0,2.0,2.0,1.0,1.0,1.0,2.0, B86028,23.0,29.0,31.0,26.0,23.0,30.0,35.0,43.0,43.0,30.0,29.0,24.0,23.0,25.0,19.0,26.0,26.0,18.0,24.0,29.0,21.0,16.0,19.0,14.0,22.0,37.0,35.0,30.0,46.0,36.0,48.0,52.0,52.0,47.0,70.0,61.0,57.0,42.0,37.0,44.0,46.0,52.0,41.0,39.0,36.0,40.0,33.0,45.0,33.0,33.0,32.0,37.0,32.0,37.0,33.0,31.0,36.0,45.0,35.0,32.0,25.0,33.0,32.0,28.0,31.0,27.0,23.0,29.0,23.0,18.0,12.0,21.0,12.0,21.0,19.0,20.0,17.0,23.0,20.0,16.0,11.0,17.0,12.0,9.0,16.0,11.0,8.0,4.0,4.0,3.0,5.0,2.0,1.0,2.0,1.0,1.0 B86029,21.0,22.0,28.0,37.0,28.0,25.0,29.0,28.0,29.0,44.0,28.0,30.0,35.0,25.0,29.0,41.0,39.0,39.0,33.0,34.0,31.0,31.0,29.0,29.0,28.0,26.0,27.0,25.0,27.0,33.0,31.0,28.0,30.0,34.0,26.0,29.0,38.0,43.0,37.0,37.0,33.0,47.0,30.0,39.0,39.0,41.0,40.0,29.0,42.0,40.0,33.0,30.0,46.0,53.0,46.0,31.0,40.0,46.0,36.0,41.0,56.0,30.0,40.0,31.0,40.0,34.0,34.0,35.0,35.0,26.0,29.0,30.0,29.0,30.0,33.0,32.0,26.0,35.0,36.0,30.0,22.0,13.0,21.0,8.0,12.0,14.0,8.0,10.0,11.0,5.0,3.0,4.0,1.0,3.0,3.0,3.0 B86030,34.0,34.0,38.0,48.0,25.0,31.0,38.0,36.0,49.0,39.0,38.0,34.0,42.0,45.0,41.0,38.0,30.0,42.0,35.0,53.0,98.0,163.0,204.0,151.0,167.0,165.0,151.0,140.0,148.0,143.0,136.0,129.0,113.0,121.0,98.0,86.0,104.0,83.0,95.0,63.0,71.0,80.0,78.0,72.0,86.0,80.0,75.0,75.0,69.0,75.0,69.0,66.0,54.0,61.0,46.0,56.0,53.0,46.0,42.0,45.0,48.0,60.0,45.0,53.0,53.0,50.0,32.0,42.0,44.0,40.0,26.0,33.0,39.0,45.0,46.0,34.0,40.0,62.0,38.0,31.0,29.0,34.0,34.0,19.0,15.0,15.0,21.0,12.0,13.0,11.0,9.0,6.0,6.0,9.0,5.0,13.0 B86032,53.0,70.0,103.0,84.0,72.0,108.0,102.0,109.0,104.0,105.0,87.0,113.0,101.0,107.0,94.0,102.0,110.0,129.0,95.0,96.0,93.0,81.0,82.0,92.0,90.0,73.0,90.0,89.0,76.0,64.0,67.0,80.0,78.0,95.0,109.0,119.0,111.0,86.0,98.0,109.0,110.0,106.0,114.0,128.0,119.0,114.0,127.0,116.0,96.0,95.0,129.0,123.0,130.0,115.0,129.0,129.0,139.0,144.0,128.0,171.0,148.0,149.0,151.0,128.0,138.0,127.0,141.0,138.0,119.0,91.0,113.0,124.0,101.0,113.0,134.0,87.0,119.0,129.0,109.0,79.0,87.0,89.0,67.0,60.0,55.0,51.0,37.0,41.0,34.0,30.0,22.0,20.0,19.0,9.0,12.0,17.0 B86033,37.0,41.0,40.0,46.0,46.0,54.0,65.0,52.0,63.0,50.0,67.0,63.0,55.0,49.0,66.0,64.0,55.0,75.0,70.0,55.0,56.0,37.0,47.0,58.0,64.0,52.0,58.0,48.0,53.0,45.0,51.0,55.0,53.0,55.0,68.0,75.0,59.0,75.0,62.0,74.0,65.0,45.0,67.0,72.0,82.0,67.0,66.0,65.0,57.0,70.0,62.0,79.0,67.0,82.0,78.0,82.0,77.0,79.0,80.0,98.0,80.0,89.0,92.0,70.0,71.0,96.0,75.0,71.0,68.0,59.0,68.0,87.0,69.0,68.0,69.0,72.0,83.0,85.0,71.0,58.0,62.0,83.0,59.0,42.0,36.0,28.0,31.0,32.0,35.0,29.0,20.0,17.0,11.0,8.0,7.0,17.0 B86034,23.0,30.0,22.0,34.0,26.0,43.0,46.0,49.0,47.0,50.0,39.0,46.0,43.0,45.0,38.0,39.0,55.0,51.0,47.0,29.0,30.0,21.0,28.0,22.0,26.0,27.0,28.0,19.0,22.0,17.0,31.0,22.0,36.0,29.0,22.0,33.0,30.0,31.0,44.0,25.0,35.0,40.0,55.0,45.0,49.0,33.0,59.0,44.0,54.0,46.0,49.0,50.0,49.0,48.0,55.0,57.0,54.0,39.0,43.0,45.0,58.0,38.0,38.0,50.0,37.0,36.0,38.0,39.0,37.0,36.0,42.0,42.0,29.0,23.0,31.0,42.0,39.0,25.0,49.0,30.0,46.0,31.0,28.0,25.0,21.0,19.0,17.0,17.0,7.0,12.0,7.0,8.0,9.0,4.0,1.0,8.0 B86035,38.0,48.0,46.0,54.0,37.0,59.0,58.0,49.0,62.0,67.0,68.0,64.0,63.0,73.0,68.0,49.0,52.0,61.0,58.0,51.0,40.0,48.0,52.0,48.0,52.0,41.0,60.0,67.0,57.0,73.0,54.0,64.0,65.0,77.0,74.0,80.0,87.0,80.0,95.0,72.0,93.0,91.0,63.0,84.0,80.0,77.0,77.0,63.0,62.0,61.0,59.0,47.0,55.0,68.0,75.0,66.0,50.0,67.0,58.0,46.0,58.0,65.0,55.0,66.0,60.0,43.0,56.0,37.0,50.0,45.0,36.0,34.0,38.0,29.0,37.0,26.0,33.0,31.0,29.0,19.0,24.0,12.0,22.0,18.0,12.0,23.0,9.0,12.0,10.0,10.0,8.0,2.0,2.0,4.0,3.0,3.0 B86036,47.0,52.0,46.0,51.0,57.0,42.0,61.0,45.0,63.0,48.0,52.0,68.0,49.0,84.0,71.0,82.0,73.0,70.0,58.0,62.0,52.0,34.0,48.0,48.0,51.0,43.0,40.0,49.0,49.0,51.0,51.0,52.0,65.0,59.0,62.0,57.0,65.0,69.0,73.0,63.0,78.0,66.0,63.0,61.0,82.0,74.0,68.0,65.0,62.0,67.0,67.0,71.0,79.0,83.0,89.0,79.0,63.0,69.0,66.0,65.0,78.0,70.0,66.0,79.0,67.0,53.0,58.0,88.0,70.0,73.0,61.0,59.0,59.0,56.0,60.0,57.0,81.0,89.0,79.0,37.0,60.0,62.0,43.0,44.0,29.0,26.0,28.0,22.0,28.0,8.0,14.0,11.0,6.0,6.0,4.0,9.0 B86038,40.0,42.0,38.0,46.0,56.0,65.0,57.0,73.0,61.0,55.0,67.0,52.0,60.0,73.0,74.0,75.0,64.0,75.0,73.0,58.0,63.0,54.0,58.0,47.0,46.0,41.0,66.0,59.0,57.0,63.0,66.0,66.0,80.0,72.0,62.0,92.0,69.0,75.0,93.0,96.0,75.0,78.0,76.0,80.0,74.0,73.0,62.0,67.0,62.0,70.0,83.0,72.0,83.0,71.0,60.0,77.0,56.0,72.0,69.0,72.0,78.0,71.0,75.0,71.0,70.0,61.0,50.0,55.0,57.0,49.0,46.0,47.0,55.0,55.0,43.0,49.0,69.0,61.0,58.0,48.0,43.0,34.0,27.0,28.0,15.0,23.0,19.0,16.0,18.0,9.0,12.0,6.0,10.0,3.0,3.0,10.0 B86039,43.0,35.0,36.0,44.0,53.0,53.0,56.0,56.0,52.0,66.0,62.0,58.0,56.0,57.0,52.0,57.0,62.0,62.0,54.0,59.0,59.0,59.0,45.0,49.0,58.0,63.0,61.0,79.0,63.0,84.0,87.0,80.0,96.0,89.0,84.0,88.0,76.0,89.0,106.0,95.0,96.0,64.0,90.0,71.0,95.0,78.0,78.0,72.0,62.0,67.0,53.0,45.0,68.0,65.0,65.0,60.0,46.0,53.0,66.0,54.0,60.0,60.0,63.0,61.0,52.0,49.0,59.0,46.0,43.0,46.0,29.0,36.0,32.0,30.0,33.0,32.0,25.0,28.0,21.0,16.0,15.0,17.0,17.0,7.0,9.0,8.0,3.0,12.0,7.0,6.0,7.0,4.0,5.0,2.0,,6.0 B86041,35.0,50.0,30.0,44.0,42.0,39.0,52.0,48.0,48.0,56.0,50.0,56.0,45.0,50.0,45.0,47.0,61.0,54.0,38.0,37.0,37.0,37.0,49.0,48.0,59.0,70.0,75.0,92.0,81.0,95.0,105.0,89.0,95.0,90.0,96.0,83.0,75.0,93.0,84.0,100.0,72.0,56.0,67.0,67.0,57.0,66.0,55.0,56.0,51.0,42.0,47.0,41.0,41.0,53.0,52.0,38.0,23.0,45.0,35.0,48.0,49.0,39.0,45.0,34.0,23.0,31.0,31.0,29.0,31.0,18.0,11.0,15.0,24.0,23.0,18.0,25.0,25.0,17.0,17.0,11.0,12.0,12.0,10.0,11.0,5.0,8.0,5.0,2.0,4.0,2.0,4.0,5.0,1.0,1.0,1.0,1.0 B86042,85.0,85.0,97.0,86.0,104.0,97.0,128.0,112.0,112.0,112.0,124.0,124.0,128.0,140.0,131.0,146.0,120.0,113.0,112.0,106.0,79.0,99.0,82.0,69.0,85.0,94.0,85.0,91.0,102.0,97.0,116.0,119.0,106.0,136.0,117.0,157.0,130.0,110.0,124.0,132.0,125.0,112.0,118.0,134.0,135.0,112.0,103.0,91.0,95.0,93.0,76.0,82.0,105.0,112.0,113.0,91.0,90.0,100.0,103.0,93.0,90.0,82.0,78.0,78.0,66.0,59.0,54.0,62.0,55.0,57.0,48.0,50.0,44.0,51.0,44.0,41.0,33.0,34.0,39.0,28.0,28.0,15.0,27.0,19.0,25.0,16.0,19.0,13.0,10.0,7.0,6.0,6.0,6.0,1.0,1.0,4.0 B86043,58.0,54.0,66.0,67.0,72.0,77.0,70.0,92.0,73.0,77.0,84.0,83.0,87.0,85.0,69.0,82.0,73.0,70.0,77.0,70.0,52.0,62.0,50.0,54.0,77.0,75.0,70.0,74.0,67.0,94.0,84.0,71.0,86.0,82.0,85.0,101.0,83.0,101.0,79.0,87.0,90.0,80.0,67.0,88.0,69.0,66.0,65.0,62.0,54.0,48.0,51.0,58.0,59.0,61.0,80.0,68.0,62.0,53.0,56.0,49.0,56.0,43.0,42.0,55.0,49.0,43.0,42.0,32.0,32.0,29.0,33.0,37.0,24.0,30.0,33.0,25.0,26.0,36.0,24.0,17.0,18.0,18.0,17.0,8.0,17.0,18.0,15.0,11.0,7.0,6.0,5.0,3.0,3.0,,1.0,2.0 B86044,127.0,161.0,154.0,163.0,166.0,176.0,179.0,214.0,193.0,201.0,163.0,189.0,184.0,196.0,176.0,150.0,183.0,188.0,162.0,164.0,135.0,151.0,139.0,150.0,133.0,150.0,137.0,150.0,193.0,164.0,202.0,209.0,221.0,216.0,223.0,233.0,197.0,216.0,228.0,217.0,201.0,194.0,239.0,225.0,222.0,230.0,202.0,184.0,155.0,175.0,159.0,176.0,166.0,181.0,156.0,158.0,141.0,140.0,168.0,168.0,172.0,138.0,146.0,157.0,119.0,111.0,131.0,121.0,110.0,101.0,100.0,116.0,110.0,115.0,108.0,112.0,113.0,112.0,112.0,81.0,81.0,71.0,61.0,48.0,54.0,70.0,36.0,44.0,35.0,39.0,31.0,17.0,15.0,9.0,12.0,18.0 B86048,65.0,58.0,63.0,82.0,64.0,71.0,65.0,71.0,81.0,59.0,103.0,83.0,85.0,93.0,78.0,77.0,79.0,65.0,70.0,79.0,61.0,69.0,62.0,76.0,58.0,71.0,100.0,87.0,88.0,86.0,76.0,81.0,90.0,91.0,108.0,97.0,123.0,98.0,103.0,89.0,92.0,85.0,99.0,95.0,98.0,112.0,102.0,82.0,92.0,96.0,104.0,89.0,101.0,97.0,99.0,100.0,106.0,95.0,75.0,100.0,118.0,76.0,85.0,103.0,92.0,78.0,79.0,76.0,78.0,52.0,63.0,65.0,71.0,65.0,74.0,78.0,83.0,70.0,77.0,55.0,61.0,40.0,30.0,45.0,29.0,35.0,30.0,28.0,33.0,25.0,19.0,11.0,8.0,5.0,5.0,12.0 B86049,47.0,37.0,49.0,59.0,54.0,60.0,57.0,63.0,67.0,64.0,65.0,87.0,70.0,71.0,61.0,60.0,63.0,59.0,76.0,79.0,83.0,96.0,85.0,105.0,119.0,129.0,125.0,101.0,107.0,101.0,85.0,84.0,103.0,75.0,98.0,98.0,88.0,93.0,94.0,108.0,99.0,67.0,85.0,95.0,95.0,74.0,69.0,76.0,80.0,62.0,69.0,64.0,65.0,54.0,54.0,55.0,41.0,51.0,52.0,44.0,61.0,58.0,31.0,43.0,38.0,40.0,26.0,39.0,26.0,22.0,32.0,32.0,19.0,22.0,19.0,21.0,14.0,24.0,14.0,11.0,15.0,7.0,9.0,6.0,6.0,3.0,8.0,9.0,6.0,5.0,3.0,8.0,4.0,1.0,1.0,4.0 B86050,79.0,120.0,103.0,100.0,115.0,126.0,153.0,124.0,138.0,139.0,129.0,114.0,159.0,141.0,127.0,125.0,121.0,98.0,100.0,98.0,80.0,79.0,80.0,89.0,89.0,79.0,99.0,98.0,111.0,127.0,141.0,137.0,154.0,161.0,176.0,184.0,148.0,191.0,158.0,170.0,174.0,145.0,175.0,157.0,167.0,149.0,137.0,134.0,123.0,149.0,150.0,135.0,124.0,123.0,117.0,139.0,145.0,138.0,150.0,120.0,129.0,115.0,103.0,125.0,123.0,99.0,77.0,102.0,82.0,81.0,76.0,75.0,89.0,73.0,73.0,77.0,80.0,92.0,71.0,57.0,54.0,51.0,46.0,30.0,24.0,35.0,22.0,19.0,16.0,15.0,14.0,7.0,5.0,7.0,1.0,10.0 B86051,49.0,75.0,74.0,70.0,61.0,69.0,65.0,81.0,90.0,85.0,89.0,81.0,89.0,93.0,101.0,93.0,108.0,100.0,80.0,96.0,61.0,83.0,73.0,83.0,81.0,81.0,70.0,66.0,84.0,91.0,86.0,87.0,90.0,72.0,89.0,87.0,89.0,84.0,99.0,70.0,93.0,106.0,79.0,109.0,103.0,134.0,110.0,92.0,97.0,104.0,87.0,116.0,103.0,110.0,120.0,117.0,128.0,114.0,101.0,115.0,105.0,121.0,95.0,91.0,87.0,82.0,82.0,84.0,80.0,71.0,71.0,71.0,62.0,61.0,70.0,53.0,67.0,56.0,69.0,47.0,46.0,48.0,40.0,26.0,35.0,35.0,21.0,14.0,21.0,17.0,11.0,13.0,12.0,2.0,4.0,5.0 B86052,36.0,54.0,44.0,53.0,52.0,72.0,66.0,64.0,69.0,84.0,74.0,69.0,77.0,79.0,91.0,85.0,68.0,85.0,67.0,44.0,45.0,43.0,37.0,49.0,50.0,43.0,44.0,41.0,51.0,51.0,54.0,57.0,53.0,61.0,79.0,58.0,60.0,76.0,62.0,71.0,66.0,73.0,65.0,77.0,79.0,74.0,90.0,69.0,73.0,78.0,78.0,101.0,81.0,100.0,69.0,84.0,92.0,79.0,98.0,72.0,80.0,85.0,82.0,83.0,53.0,81.0,71.0,80.0,68.0,65.0,72.0,68.0,63.0,55.0,63.0,47.0,53.0,80.0,84.0,30.0,45.0,48.0,45.0,32.0,21.0,29.0,21.0,28.0,28.0,20.0,17.0,17.0,5.0,3.0,4.0,14.0 B86054,38.0,38.0,46.0,29.0,46.0,45.0,37.0,49.0,45.0,37.0,48.0,31.0,39.0,46.0,51.0,41.0,36.0,47.0,42.0,32.0,42.0,41.0,40.0,54.0,48.0,50.0,42.0,38.0,44.0,50.0,53.0,54.0,36.0,49.0,47.0,63.0,39.0,49.0,53.0,47.0,46.0,40.0,42.0,44.0,38.0,38.0,35.0,30.0,33.0,26.0,28.0,42.0,45.0,39.0,39.0,50.0,29.0,33.0,47.0,29.0,49.0,51.0,36.0,38.0,37.0,33.0,33.0,32.0,28.0,31.0,24.0,25.0,24.0,23.0,18.0,7.0,33.0,18.0,24.0,7.0,15.0,6.0,10.0,6.0,6.0,12.0,8.0,4.0,2.0,7.0,8.0,2.0,2.0,2.0,1.0,4.0 B86055,23.0,22.0,22.0,34.0,30.0,33.0,33.0,38.0,30.0,35.0,34.0,40.0,48.0,50.0,31.0,52.0,39.0,38.0,43.0,30.0,34.0,32.0,37.0,26.0,26.0,30.0,30.0,33.0,37.0,32.0,35.0,40.0,34.0,55.0,48.0,44.0,55.0,41.0,40.0,44.0,48.0,37.0,60.0,50.0,47.0,48.0,44.0,31.0,48.0,46.0,40.0,46.0,45.0,35.0,42.0,42.0,39.0,42.0,50.0,49.0,28.0,45.0,48.0,37.0,39.0,27.0,39.0,37.0,37.0,35.0,31.0,30.0,25.0,33.0,28.0,31.0,31.0,34.0,28.0,17.0,18.0,16.0,15.0,19.0,13.0,14.0,14.0,15.0,7.0,6.0,7.0,2.0,2.0,6.0,,3.0 B86057,83.0,89.0,108.0,107.0,98.0,110.0,115.0,100.0,117.0,124.0,113.0,110.0,123.0,140.0,130.0,106.0,115.0,106.0,92.0,99.0,67.0,82.0,85.0,94.0,93.0,95.0,128.0,131.0,160.0,138.0,141.0,151.0,141.0,161.0,144.0,155.0,147.0,178.0,146.0,142.0,149.0,177.0,137.0,151.0,147.0,151.0,135.0,141.0,115.0,125.0,120.0,135.0,115.0,135.0,156.0,120.0,137.0,130.0,125.0,128.0,131.0,115.0,100.0,111.0,106.0,112.0,104.0,110.0,93.0,84.0,81.0,73.0,65.0,61.0,74.0,66.0,89.0,81.0,65.0,40.0,41.0,59.0,44.0,41.0,36.0,23.0,28.0,25.0,19.0,15.0,11.0,7.0,11.0,5.0,5.0,5.0 B86059,85.0,81.0,76.0,73.0,98.0,89.0,83.0,92.0,87.0,89.0,108.0,86.0,103.0,89.0,89.0,91.0,85.0,91.0,92.0,77.0,77.0,67.0,79.0,75.0,100.0,119.0,124.0,149.0,133.0,145.0,163.0,155.0,143.0,140.0,159.0,152.0,154.0,156.0,140.0,133.0,132.0,171.0,142.0,146.0,150.0,136.0,123.0,126.0,98.0,103.0,92.0,99.0,100.0,96.0,104.0,118.0,87.0,92.0,78.0,87.0,90.0,82.0,87.0,72.0,83.0,77.0,84.0,66.0,64.0,63.0,45.0,59.0,58.0,38.0,46.0,51.0,37.0,51.0,39.0,33.0,24.0,18.0,36.0,17.0,20.0,17.0,19.0,11.0,12.0,5.0,8.0,6.0,5.0,7.0,5.0,7.0 B86060,70.0,54.0,55.0,54.0,49.0,74.0,63.0,53.0,77.0,72.0,60.0,60.0,72.0,78.0,71.0,63.0,57.0,80.0,65.0,53.0,54.0,53.0,65.0,55.0,70.0,80.0,87.0,108.0,97.0,104.0,109.0,111.0,113.0,105.0,119.0,105.0,97.0,104.0,81.0,97.0,108.0,107.0,103.0,98.0,79.0,87.0,69.0,74.0,77.0,52.0,57.0,69.0,49.0,65.0,69.0,58.0,70.0,58.0,61.0,57.0,60.0,51.0,63.0,47.0,44.0,52.0,62.0,57.0,40.0,49.0,36.0,34.0,29.0,34.0,29.0,28.0,27.0,30.0,35.0,21.0,21.0,15.0,13.0,14.0,5.0,7.0,8.0,10.0,13.0,4.0,1.0,6.0,2.0,3.0,3.0,3.0 B86061,41.0,35.0,34.0,31.0,47.0,24.0,33.0,40.0,41.0,61.0,38.0,44.0,47.0,34.0,43.0,49.0,37.0,45.0,42.0,34.0,44.0,54.0,69.0,59.0,53.0,63.0,52.0,71.0,60.0,61.0,65.0,59.0,56.0,58.0,65.0,75.0,66.0,84.0,56.0,60.0,60.0,62.0,64.0,58.0,49.0,34.0,26.0,43.0,52.0,42.0,37.0,38.0,41.0,24.0,31.0,19.0,14.0,16.0,21.0,22.0,17.0,15.0,13.0,16.0,18.0,11.0,8.0,7.0,7.0,14.0,7.0,5.0,7.0,11.0,9.0,5.0,4.0,4.0,1.0,4.0,4.0,5.0,1.0,4.0,2.0,1.0,2.0,,1.0,5.0,2.0,1.0,3.0,,,2.0 B86062,30.0,33.0,38.0,20.0,34.0,20.0,35.0,40.0,56.0,45.0,49.0,57.0,50.0,66.0,55.0,55.0,52.0,53.0,54.0,39.0,52.0,41.0,42.0,48.0,38.0,49.0,58.0,47.0,43.0,48.0,40.0,51.0,48.0,43.0,36.0,43.0,59.0,55.0,65.0,65.0,44.0,73.0,50.0,58.0,56.0,60.0,55.0,45.0,58.0,61.0,45.0,64.0,60.0,62.0,82.0,63.0,63.0,72.0,63.0,60.0,61.0,66.0,71.0,70.0,59.0,54.0,64.0,49.0,36.0,35.0,41.0,41.0,46.0,41.0,53.0,40.0,47.0,56.0,46.0,33.0,20.0,21.0,16.0,17.0,25.0,11.0,16.0,22.0,10.0,6.0,1.0,6.0,6.0,2.0,,3.0 B86064,63.0,78.0,78.0,72.0,97.0,89.0,100.0,88.0,100.0,114.0,105.0,119.0,113.0,139.0,110.0,115.0,123.0,103.0,99.0,91.0,104.0,74.0,77.0,94.0,79.0,85.0,107.0,96.0,95.0,91.0,112.0,116.0,98.0,125.0,107.0,112.0,112.0,117.0,97.0,98.0,113.0,116.0,117.0,102.0,126.0,111.0,114.0,97.0,92.0,100.0,89.0,108.0,123.0,138.0,128.0,127.0,140.0,112.0,134.0,129.0,122.0,104.0,127.0,100.0,104.0,89.0,102.0,102.0,81.0,86.0,80.0,86.0,65.0,71.0,55.0,65.0,67.0,68.0,54.0,43.0,50.0,36.0,42.0,31.0,27.0,33.0,25.0,21.0,21.0,11.0,11.0,6.0,8.0,4.0,6.0,7.0 B86066,74.0,71.0,79.0,71.0,93.0,85.0,86.0,99.0,100.0,103.0,92.0,109.0,122.0,100.0,94.0,86.0,101.0,80.0,76.0,68.0,58.0,65.0,53.0,53.0,75.0,71.0,61.0,60.0,59.0,77.0,93.0,72.0,78.0,104.0,100.0,99.0,90.0,104.0,100.0,113.0,117.0,123.0,130.0,123.0,129.0,130.0,131.0,113.0,117.0,97.0,106.0,97.0,110.0,96.0,99.0,76.0,93.0,75.0,84.0,75.0,80.0,69.0,71.0,64.0,67.0,83.0,64.0,67.0,62.0,68.0,68.0,75.0,69.0,65.0,52.0,59.0,66.0,61.0,41.0,45.0,40.0,33.0,35.0,28.0,17.0,26.0,20.0,19.0,18.0,9.0,9.0,11.0,5.0,3.0,3.0,11.0 B86067,45.0,62.0,70.0,71.0,74.0,98.0,89.0,103.0,108.0,98.0,120.0,109.0,116.0,105.0,118.0,117.0,118.0,97.0,113.0,98.0,88.0,78.0,66.0,76.0,89.0,78.0,112.0,95.0,95.0,97.0,92.0,114.0,101.0,105.0,144.0,107.0,114.0,140.0,121.0,136.0,136.0,143.0,138.0,136.0,149.0,136.0,122.0,111.0,122.0,125.0,133.0,124.0,127.0,135.0,127.0,124.0,137.0,117.0,132.0,123.0,134.0,112.0,118.0,98.0,98.0,91.0,106.0,80.0,76.0,69.0,66.0,73.0,59.0,65.0,63.0,65.0,78.0,70.0,85.0,47.0,63.0,56.0,43.0,28.0,20.0,21.0,22.0,12.0,17.0,10.0,8.0,6.0,3.0,4.0,4.0,4.0 B86068,34.0,29.0,27.0,45.0,39.0,37.0,44.0,50.0,26.0,46.0,35.0,48.0,34.0,41.0,63.0,41.0,54.0,42.0,47.0,39.0,46.0,41.0,44.0,51.0,52.0,64.0,55.0,60.0,66.0,59.0,67.0,57.0,76.0,66.0,67.0,70.0,53.0,66.0,60.0,41.0,48.0,57.0,70.0,48.0,43.0,60.0,73.0,66.0,51.0,58.0,49.0,48.0,46.0,55.0,55.0,65.0,50.0,46.0,52.0,41.0,49.0,44.0,48.0,55.0,51.0,46.0,44.0,31.0,36.0,25.0,35.0,46.0,39.0,37.0,38.0,28.0,19.0,29.0,30.0,23.0,20.0,11.0,21.0,12.0,14.0,14.0,4.0,11.0,11.0,12.0,4.0,12.0,5.0,4.0,,1.0 B86069,30.0,25.0,33.0,46.0,39.0,54.0,57.0,37.0,43.0,48.0,53.0,35.0,46.0,47.0,54.0,43.0,45.0,39.0,43.0,73.0,105.0,167.0,202.0,267.0,326.0,344.0,296.0,285.0,254.0,215.0,212.0,207.0,236.0,203.0,183.0,185.0,191.0,210.0,197.0,184.0,197.0,181.0,143.0,146.0,137.0,123.0,109.0,82.0,66.0,76.0,83.0,60.0,64.0,65.0,71.0,53.0,58.0,52.0,42.0,41.0,58.0,39.0,40.0,39.0,30.0,37.0,33.0,29.0,21.0,27.0,25.0,32.0,26.0,18.0,21.0,21.0,18.0,20.0,18.0,23.0,9.0,11.0,14.0,12.0,11.0,4.0,6.0,5.0,4.0,5.0,2.0,3.0,1.0,2.0,2.0,4.0 B86070,19.0,14.0,23.0,21.0,22.0,18.0,25.0,15.0,25.0,26.0,24.0,17.0,24.0,32.0,28.0,27.0,21.0,23.0,14.0,29.0,21.0,22.0,20.0,17.0,21.0,27.0,19.0,30.0,29.0,22.0,25.0,33.0,34.0,33.0,31.0,35.0,37.0,38.0,35.0,31.0,21.0,32.0,20.0,26.0,22.0,31.0,32.0,26.0,29.0,24.0,32.0,27.0,28.0,34.0,27.0,41.0,32.0,51.0,35.0,42.0,33.0,26.0,36.0,27.0,25.0,28.0,25.0,23.0,32.0,23.0,26.0,30.0,33.0,26.0,18.0,24.0,22.0,29.0,30.0,12.0,20.0,13.0,15.0,9.0,9.0,10.0,18.0,9.0,11.0,7.0,11.0,6.0,,2.0,,6.0 B86071,34.0,38.0,52.0,36.0,47.0,47.0,46.0,44.0,55.0,53.0,61.0,56.0,51.0,53.0,59.0,64.0,71.0,41.0,61.0,59.0,50.0,55.0,44.0,41.0,49.0,48.0,44.0,55.0,42.0,49.0,50.0,63.0,81.0,74.0,60.0,74.0,60.0,88.0,84.0,63.0,63.0,65.0,81.0,70.0,57.0,68.0,59.0,64.0,45.0,54.0,46.0,58.0,52.0,60.0,55.0,46.0,54.0,48.0,66.0,52.0,69.0,46.0,57.0,43.0,43.0,53.0,43.0,39.0,36.0,28.0,27.0,37.0,25.0,14.0,21.0,32.0,24.0,34.0,18.0,19.0,13.0,15.0,22.0,11.0,14.0,11.0,10.0,7.0,5.0,7.0,3.0,2.0,1.0,1.0,2.0,2.0 B86075,57.0,67.0,72.0,69.0,63.0,53.0,78.0,80.0,78.0,81.0,68.0,84.0,85.0,87.0,98.0,93.0,95.0,58.0,77.0,70.0,58.0,76.0,56.0,63.0,84.0,84.0,77.0,83.0,72.0,80.0,72.0,84.0,94.0,91.0,94.0,87.0,108.0,91.0,115.0,80.0,90.0,101.0,92.0,70.0,84.0,95.0,80.0,86.0,73.0,103.0,86.0,78.0,102.0,102.0,106.0,76.0,75.0,91.0,84.0,94.0,88.0,104.0,92.0,98.0,95.0,54.0,62.0,83.0,63.0,62.0,54.0,63.0,59.0,38.0,47.0,46.0,38.0,60.0,53.0,32.0,44.0,26.0,35.0,28.0,22.0,22.0,24.0,19.0,19.0,12.0,15.0,9.0,4.0,7.0,1.0,8.0 B86081,93.0,119.0,107.0,114.0,125.0,113.0,131.0,142.0,149.0,136.0,128.0,149.0,138.0,148.0,132.0,145.0,157.0,153.0,142.0,116.0,136.0,109.0,116.0,106.0,106.0,116.0,102.0,102.0,112.0,95.0,131.0,127.0,135.0,136.0,128.0,131.0,116.0,130.0,123.0,129.0,108.0,127.0,106.0,114.0,118.0,130.0,100.0,103.0,105.0,120.0,95.0,108.0,106.0,85.0,87.0,89.0,81.0,82.0,65.0,78.0,54.0,73.0,40.0,47.0,49.0,33.0,49.0,43.0,42.0,36.0,35.0,30.0,18.0,23.0,16.0,26.0,19.0,18.0,22.0,11.0,12.0,11.0,10.0,12.0,4.0,4.0,5.0,10.0,5.0,9.0,6.0,2.0,3.0,4.0,1.0,4.0 B86086,22.0,26.0,21.0,25.0,24.0,24.0,27.0,22.0,24.0,32.0,22.0,17.0,20.0,24.0,15.0,16.0,15.0,16.0,57.0,146.0,153.0,130.0,101.0,128.0,132.0,147.0,136.0,128.0,130.0,122.0,119.0,117.0,88.0,113.0,80.0,73.0,79.0,71.0,68.0,63.0,66.0,70.0,59.0,60.0,59.0,49.0,42.0,32.0,41.0,46.0,27.0,31.0,23.0,25.0,19.0,15.0,15.0,26.0,26.0,32.0,21.0,22.0,17.0,21.0,19.0,16.0,22.0,14.0,21.0,18.0,12.0,24.0,13.0,12.0,17.0,22.0,21.0,26.0,13.0,10.0,9.0,5.0,7.0,8.0,4.0,5.0,6.0,4.0,3.0,3.0,2.0,2.0,,1.0,1.0,1.0 B86089,23.0,28.0,27.0,26.0,32.0,37.0,20.0,20.0,32.0,34.0,36.0,37.0,36.0,43.0,39.0,47.0,44.0,26.0,37.0,40.0,36.0,28.0,36.0,26.0,23.0,35.0,31.0,38.0,27.0,41.0,42.0,50.0,40.0,44.0,47.0,48.0,36.0,47.0,48.0,51.0,34.0,38.0,48.0,43.0,40.0,35.0,44.0,35.0,31.0,44.0,34.0,41.0,46.0,48.0,52.0,35.0,56.0,43.0,43.0,57.0,43.0,48.0,46.0,61.0,35.0,31.0,29.0,28.0,30.0,23.0,29.0,21.0,23.0,26.0,21.0,21.0,31.0,21.0,24.0,22.0,17.0,15.0,25.0,11.0,9.0,10.0,15.0,8.0,5.0,4.0,4.0,4.0,4.0,,,2.0 B86092,27.0,36.0,32.0,48.0,32.0,34.0,39.0,34.0,45.0,30.0,48.0,37.0,44.0,34.0,33.0,44.0,47.0,32.0,40.0,41.0,25.0,34.0,40.0,36.0,38.0,33.0,29.0,42.0,43.0,54.0,48.0,46.0,46.0,44.0,36.0,40.0,53.0,36.0,39.0,36.0,44.0,41.0,30.0,49.0,45.0,39.0,38.0,34.0,27.0,39.0,41.0,36.0,44.0,46.0,46.0,61.0,47.0,44.0,52.0,53.0,56.0,51.0,57.0,36.0,50.0,40.0,42.0,35.0,44.0,35.0,33.0,33.0,32.0,26.0,26.0,38.0,24.0,29.0,26.0,21.0,27.0,23.0,14.0,18.0,8.0,13.0,9.0,7.0,7.0,9.0,3.0,2.0,3.0,3.0,,3.0 B86093,27.0,25.0,30.0,41.0,31.0,40.0,35.0,38.0,55.0,45.0,49.0,51.0,39.0,48.0,45.0,39.0,50.0,42.0,43.0,24.0,42.0,33.0,33.0,22.0,28.0,25.0,44.0,26.0,22.0,40.0,42.0,45.0,47.0,40.0,36.0,56.0,33.0,44.0,40.0,48.0,39.0,40.0,33.0,32.0,41.0,43.0,32.0,32.0,32.0,32.0,43.0,26.0,30.0,38.0,33.0,29.0,27.0,32.0,26.0,33.0,39.0,38.0,32.0,39.0,24.0,32.0,25.0,30.0,21.0,19.0,22.0,32.0,17.0,31.0,28.0,19.0,20.0,21.0,23.0,10.0,16.0,21.0,16.0,9.0,8.0,9.0,4.0,5.0,6.0,6.0,1.0,3.0,3.0,1.0,3.0,1.0 B86094,30.0,25.0,19.0,26.0,20.0,29.0,32.0,44.0,39.0,39.0,24.0,30.0,38.0,33.0,35.0,39.0,40.0,31.0,31.0,27.0,30.0,25.0,28.0,29.0,25.0,28.0,27.0,24.0,25.0,38.0,30.0,38.0,36.0,41.0,57.0,47.0,40.0,49.0,30.0,36.0,24.0,32.0,29.0,38.0,42.0,47.0,34.0,34.0,21.0,28.0,29.0,25.0,32.0,39.0,41.0,29.0,32.0,33.0,43.0,47.0,30.0,30.0,39.0,21.0,21.0,28.0,21.0,24.0,27.0,19.0,18.0,20.0,18.0,22.0,12.0,21.0,20.0,14.0,21.0,19.0,14.0,11.0,5.0,9.0,7.0,6.0,9.0,6.0,5.0,3.0,4.0,5.0,,2.0,3.0, B86096,33.0,25.0,36.0,22.0,44.0,30.0,44.0,41.0,44.0,35.0,37.0,30.0,45.0,39.0,28.0,41.0,51.0,41.0,32.0,29.0,37.0,25.0,37.0,36.0,30.0,53.0,47.0,36.0,41.0,56.0,40.0,44.0,35.0,51.0,43.0,32.0,53.0,60.0,55.0,51.0,47.0,37.0,48.0,43.0,41.0,47.0,44.0,38.0,46.0,30.0,38.0,40.0,36.0,33.0,44.0,48.0,38.0,39.0,36.0,42.0,32.0,38.0,33.0,31.0,36.0,26.0,31.0,22.0,25.0,16.0,18.0,21.0,19.0,33.0,13.0,22.0,16.0,22.0,14.0,17.0,10.0,9.0,9.0,6.0,9.0,6.0,7.0,5.0,3.0,5.0,1.0,2.0,2.0,,1.0,4.0 B86100,39.0,38.0,39.0,35.0,33.0,41.0,32.0,40.0,40.0,30.0,31.0,31.0,40.0,42.0,37.0,31.0,33.0,36.0,31.0,38.0,34.0,24.0,30.0,34.0,35.0,44.0,44.0,57.0,70.0,72.0,77.0,64.0,88.0,80.0,122.0,84.0,75.0,91.0,68.0,75.0,77.0,88.0,66.0,68.0,65.0,61.0,63.0,52.0,63.0,57.0,46.0,63.0,42.0,62.0,53.0,53.0,48.0,43.0,39.0,54.0,66.0,43.0,49.0,32.0,42.0,34.0,53.0,30.0,31.0,27.0,28.0,30.0,28.0,11.0,15.0,21.0,15.0,17.0,17.0,16.0,8.0,5.0,9.0,11.0,9.0,4.0,10.0,6.0,12.0,7.0,,5.0,2.0,3.0,2.0,4.0 B86101,14.0,15.0,9.0,20.0,28.0,26.0,24.0,15.0,14.0,17.0,28.0,13.0,21.0,20.0,13.0,26.0,24.0,16.0,10.0,14.0,14.0,3.0,14.0,9.0,20.0,9.0,17.0,15.0,21.0,20.0,28.0,25.0,26.0,27.0,28.0,30.0,25.0,28.0,19.0,41.0,23.0,30.0,20.0,23.0,26.0,17.0,21.0,26.0,17.0,23.0,28.0,27.0,11.0,36.0,29.0,18.0,21.0,19.0,25.0,22.0,32.0,23.0,24.0,29.0,21.0,14.0,30.0,22.0,26.0,21.0,18.0,11.0,12.0,20.0,19.0,14.0,14.0,29.0,25.0,3.0,10.0,20.0,16.0,16.0,9.0,7.0,9.0,4.0,3.0,7.0,,5.0,,2.0,,2.0 B86103,38.0,34.0,39.0,34.0,33.0,40.0,41.0,37.0,46.0,32.0,41.0,32.0,43.0,42.0,36.0,30.0,45.0,41.0,47.0,41.0,40.0,45.0,41.0,51.0,49.0,58.0,71.0,52.0,69.0,52.0,45.0,41.0,46.0,39.0,54.0,46.0,50.0,35.0,41.0,47.0,44.0,36.0,46.0,35.0,35.0,33.0,30.0,32.0,35.0,23.0,27.0,25.0,21.0,19.0,17.0,26.0,19.0,25.0,16.0,23.0,13.0,6.0,9.0,15.0,10.0,12.0,3.0,7.0,8.0,5.0,6.0,7.0,8.0,8.0,5.0,2.0,5.0,4.0,3.0,4.0,,,2.0,3.0,2.0,,2.0,1.0,2.0,1.0,,1.0,3.0,,,1.0 B86104,123.0,99.0,96.0,136.0,125.0,125.0,138.0,150.0,127.0,146.0,140.0,141.0,144.0,132.0,129.0,114.0,116.0,117.0,126.0,104.0,105.0,121.0,102.0,90.0,94.0,91.0,100.0,121.0,155.0,167.0,145.0,167.0,141.0,165.0,194.0,174.0,170.0,184.0,153.0,146.0,156.0,160.0,135.0,130.0,141.0,135.0,111.0,124.0,87.0,131.0,98.0,101.0,108.0,102.0,111.0,101.0,103.0,72.0,74.0,77.0,94.0,95.0,68.0,72.0,52.0,40.0,57.0,47.0,47.0,44.0,53.0,48.0,27.0,45.0,31.0,29.0,27.0,38.0,33.0,19.0,21.0,17.0,5.0,9.0,12.0,7.0,6.0,10.0,9.0,5.0,2.0,4.0,,1.0,1.0,3.0 B86106,37.0,51.0,53.0,51.0,65.0,62.0,61.0,71.0,58.0,78.0,71.0,69.0,65.0,52.0,66.0,70.0,64.0,62.0,68.0,60.0,55.0,61.0,52.0,48.0,39.0,57.0,55.0,51.0,54.0,52.0,44.0,68.0,58.0,57.0,56.0,68.0,61.0,79.0,54.0,66.0,60.0,50.0,56.0,56.0,41.0,53.0,40.0,48.0,37.0,48.0,33.0,48.0,42.0,44.0,42.0,42.0,49.0,33.0,47.0,36.0,37.0,33.0,39.0,32.0,29.0,26.0,40.0,26.0,21.0,17.0,21.0,14.0,18.0,13.0,20.0,19.0,14.0,9.0,15.0,5.0,9.0,7.0,8.0,5.0,2.0,3.0,4.0,1.0,5.0,6.0,1.0,2.0,2.0,,1.0,1.0 B86108,39.0,51.0,43.0,43.0,44.0,42.0,47.0,40.0,48.0,44.0,48.0,47.0,47.0,54.0,60.0,59.0,36.0,48.0,56.0,51.0,48.0,50.0,44.0,52.0,46.0,47.0,63.0,56.0,55.0,51.0,70.0,39.0,63.0,47.0,71.0,74.0,73.0,72.0,87.0,62.0,65.0,55.0,47.0,46.0,70.0,67.0,56.0,50.0,47.0,45.0,52.0,38.0,34.0,28.0,39.0,41.0,34.0,36.0,35.0,30.0,31.0,26.0,32.0,22.0,21.0,22.0,17.0,18.0,15.0,14.0,13.0,11.0,7.0,7.0,7.0,8.0,5.0,7.0,3.0,1.0,3.0,5.0,6.0,3.0,1.0,,5.0,2.0,2.0,9.0,5.0,1.0,2.0,,, B86109,27.0,23.0,30.0,31.0,25.0,24.0,35.0,37.0,29.0,45.0,39.0,33.0,42.0,31.0,30.0,32.0,23.0,26.0,34.0,51.0,58.0,97.0,98.0,134.0,137.0,122.0,137.0,134.0,119.0,111.0,127.0,122.0,90.0,121.0,109.0,107.0,97.0,98.0,108.0,108.0,86.0,96.0,98.0,90.0,66.0,66.0,64.0,54.0,37.0,37.0,42.0,36.0,35.0,32.0,33.0,32.0,39.0,37.0,20.0,31.0,31.0,32.0,34.0,25.0,26.0,18.0,21.0,26.0,21.0,17.0,13.0,15.0,23.0,15.0,20.0,15.0,12.0,12.0,12.0,7.0,7.0,10.0,10.0,6.0,2.0,8.0,5.0,4.0,5.0,3.0,3.0,2.0,3.0,1.0,1.0,3.0 B86110,11.0,7.0,7.0,10.0,12.0,8.0,8.0,10.0,12.0,17.0,14.0,11.0,19.0,14.0,3.0,3.0,2.0,36.0,438.0,1200.0,1418.0,1380.0,1405.0,1511.0,1589.0,1592.0,1572.0,1384.0,1326.0,1040.0,845.0,624.0,465.0,332.0,273.0,222.0,249.0,196.0,160.0,130.0,105.0,18.0,20.0,15.0,14.0,11.0,8.0,9.0,6.0,2.0,4.0,3.0,2.0,2.0,,1.0,4.0,3.0,,,2.0,1.0,1.0,1.0,1.0,1.0,,,,,,,,,,,,,1.0,,,,,,,,,,,,,,,,, B86623,26.0,52.0,50.0,53.0,54.0,48.0,50.0,61.0,70.0,45.0,55.0,43.0,55.0,43.0,56.0,51.0,55.0,41.0,49.0,39.0,56.0,39.0,38.0,52.0,56.0,46.0,68.0,54.0,58.0,73.0,77.0,50.0,76.0,52.0,70.0,80.0,65.0,55.0,68.0,67.0,72.0,47.0,68.0,52.0,50.0,58.0,56.0,37.0,68.0,43.0,49.0,44.0,38.0,33.0,32.0,30.0,23.0,21.0,28.0,12.0,10.0,13.0,8.0,11.0,12.0,15.0,7.0,13.0,6.0,3.0,7.0,2.0,5.0,5.0,2.0,3.0,,3.0,3.0,3.0,6.0,3.0,,1.0,1.0,1.0,,,1.0,,,,1.0,,, B86642,19.0,28.0,15.0,17.0,20.0,20.0,24.0,22.0,21.0,16.0,19.0,14.0,23.0,12.0,18.0,14.0,12.0,16.0,14.0,19.0,14.0,14.0,17.0,10.0,14.0,25.0,21.0,38.0,46.0,38.0,32.0,29.0,52.0,39.0,55.0,28.0,38.0,32.0,39.0,27.0,27.0,32.0,31.0,21.0,23.0,28.0,20.0,14.0,18.0,16.0,12.0,21.0,14.0,15.0,22.0,16.0,16.0,15.0,16.0,16.0,20.0,23.0,12.0,19.0,12.0,15.0,5.0,9.0,10.0,7.0,10.0,6.0,10.0,11.0,6.0,12.0,8.0,5.0,4.0,6.0,1.0,7.0,5.0,1.0,2.0,1.0,2.0,,1.0,,,2.0,2.0,,1.0, B86643,19.0,23.0,22.0,28.0,29.0,28.0,34.0,35.0,36.0,33.0,35.0,33.0,33.0,34.0,31.0,26.0,42.0,33.0,36.0,27.0,31.0,38.0,38.0,36.0,35.0,39.0,31.0,30.0,49.0,47.0,30.0,25.0,37.0,34.0,32.0,30.0,40.0,52.0,46.0,39.0,43.0,43.0,33.0,47.0,48.0,48.0,37.0,28.0,39.0,34.0,25.0,39.0,22.0,20.0,28.0,25.0,23.0,16.0,9.0,13.0,9.0,8.0,6.0,9.0,12.0,9.0,10.0,7.0,7.0,12.0,4.0,5.0,18.0,10.0,4.0,6.0,4.0,3.0,1.0,1.0,1.0,2.0,3.0,2.0,4.0,2.0,1.0,1.0,1.0,1.0,2.0,1.0,2.0,2.0,1.0,1.0 B86648,17.0,6.0,9.0,11.0,10.0,12.0,9.0,4.0,6.0,7.0,10.0,9.0,6.0,10.0,12.0,8.0,9.0,6.0,9.0,7.0,8.0,14.0,4.0,9.0,15.0,14.0,13.0,12.0,16.0,14.0,15.0,15.0,20.0,19.0,11.0,14.0,19.0,15.0,22.0,11.0,13.0,17.0,11.0,14.0,11.0,13.0,11.0,12.0,12.0,10.0,14.0,15.0,12.0,24.0,22.0,18.0,21.0,13.0,23.0,22.0,24.0,22.0,28.0,18.0,23.0,20.0,23.0,24.0,12.0,12.0,15.0,22.0,16.0,9.0,16.0,12.0,14.0,20.0,15.0,14.0,13.0,10.0,11.0,7.0,5.0,7.0,5.0,9.0,9.0,5.0,4.0,4.0,,1.0,2.0,4.0 B86655,11.0,12.0,6.0,8.0,7.0,14.0,10.0,10.0,6.0,10.0,12.0,8.0,18.0,19.0,11.0,13.0,16.0,10.0,10.0,11.0,12.0,17.0,8.0,14.0,8.0,10.0,14.0,15.0,11.0,21.0,13.0,25.0,27.0,18.0,20.0,32.0,24.0,25.0,14.0,25.0,14.0,11.0,10.0,20.0,27.0,30.0,17.0,15.0,18.0,11.0,15.0,13.0,14.0,17.0,25.0,18.0,16.0,12.0,11.0,25.0,20.0,14.0,15.0,15.0,19.0,15.0,11.0,14.0,5.0,5.0,10.0,7.0,10.0,7.0,10.0,5.0,9.0,6.0,5.0,7.0,5.0,9.0,5.0,2.0,4.0,3.0,2.0,2.0,1.0,5.0,1.0,1.0,,,, B86658,53.0,51.0,56.0,33.0,66.0,53.0,49.0,71.0,68.0,79.0,70.0,75.0,60.0,53.0,76.0,73.0,87.0,55.0,68.0,53.0,47.0,51.0,52.0,44.0,52.0,54.0,55.0,60.0,59.0,64.0,57.0,60.0,76.0,81.0,89.0,78.0,74.0,74.0,81.0,83.0,69.0,77.0,79.0,62.0,75.0,74.0,57.0,64.0,73.0,73.0,86.0,63.0,71.0,81.0,90.0,92.0,85.0,67.0,88.0,79.0,75.0,66.0,69.0,62.0,54.0,58.0,63.0,55.0,57.0,45.0,48.0,46.0,47.0,55.0,38.0,54.0,52.0,53.0,60.0,51.0,44.0,43.0,39.0,21.0,29.0,18.0,18.0,20.0,17.0,9.0,7.0,5.0,7.0,2.0,3.0,5.0 B86666,23.0,37.0,38.0,33.0,38.0,34.0,48.0,43.0,36.0,40.0,28.0,41.0,33.0,43.0,32.0,29.0,40.0,31.0,39.0,32.0,37.0,33.0,51.0,48.0,44.0,53.0,66.0,56.0,61.0,53.0,58.0,56.0,69.0,50.0,62.0,62.0,61.0,68.0,59.0,71.0,48.0,60.0,56.0,49.0,38.0,64.0,51.0,38.0,36.0,50.0,36.0,52.0,51.0,41.0,35.0,33.0,45.0,32.0,30.0,21.0,14.0,29.0,25.0,29.0,29.0,23.0,26.0,28.0,24.0,17.0,14.0,10.0,12.0,12.0,18.0,14.0,2.0,10.0,7.0,8.0,3.0,9.0,6.0,6.0,4.0,3.0,8.0,4.0,1.0,4.0,2.0,1.0,1.0,1.0,1.0,5.0 B86667,56.0,48.0,55.0,52.0,66.0,49.0,67.0,59.0,69.0,66.0,78.0,56.0,52.0,47.0,77.0,79.0,67.0,46.0,44.0,51.0,55.0,41.0,40.0,53.0,34.0,52.0,53.0,57.0,55.0,64.0,85.0,78.0,87.0,76.0,90.0,93.0,78.0,84.0,72.0,81.0,71.0,89.0,70.0,76.0,65.0,64.0,54.0,61.0,48.0,41.0,42.0,61.0,45.0,54.0,38.0,46.0,44.0,32.0,32.0,57.0,42.0,41.0,35.0,33.0,21.0,31.0,17.0,30.0,31.0,22.0,21.0,23.0,20.0,15.0,10.0,10.0,18.0,13.0,14.0,16.0,10.0,11.0,3.0,6.0,5.0,7.0,10.0,3.0,5.0,3.0,5.0,2.0,1.0,,, B86669,12.0,8.0,2.0,2.0,7.0,3.0,3.0,10.0,4.0,5.0,5.0,5.0,4.0,1.0,3.0,5.0,12.0,35.0,51.0,56.0,84.0,84.0,91.0,96.0,112.0,112.0,92.0,100.0,86.0,74.0,63.0,61.0,58.0,80.0,75.0,57.0,64.0,47.0,58.0,64.0,57.0,43.0,47.0,38.0,45.0,42.0,38.0,26.0,34.0,42.0,24.0,24.0,29.0,24.0,13.0,15.0,21.0,12.0,10.0,12.0,15.0,8.0,6.0,6.0,8.0,5.0,3.0,2.0,6.0,2.0,1.0,1.0,1.0,,,1.0,,,,,,,,,,,,,,,,,,,, B86672,34.0,35.0,40.0,44.0,39.0,35.0,37.0,47.0,43.0,35.0,46.0,48.0,57.0,53.0,43.0,55.0,44.0,46.0,37.0,32.0,40.0,24.0,32.0,33.0,33.0,39.0,34.0,46.0,33.0,70.0,47.0,59.0,72.0,61.0,67.0,69.0,85.0,74.0,60.0,58.0,60.0,69.0,50.0,62.0,49.0,48.0,42.0,36.0,39.0,41.0,46.0,31.0,32.0,44.0,50.0,43.0,36.0,45.0,37.0,54.0,41.0,38.0,40.0,32.0,38.0,33.0,31.0,29.0,18.0,31.0,23.0,15.0,27.0,20.0,18.0,17.0,22.0,16.0,14.0,11.0,16.0,6.0,10.0,15.0,6.0,7.0,13.0,9.0,2.0,8.0,2.0,3.0,4.0,3.0,,6.0 B86673,27.0,26.0,29.0,33.0,31.0,41.0,29.0,38.0,41.0,45.0,38.0,29.0,41.0,32.0,40.0,36.0,41.0,39.0,35.0,38.0,26.0,31.0,33.0,32.0,37.0,38.0,36.0,40.0,36.0,38.0,39.0,29.0,38.0,45.0,52.0,55.0,61.0,49.0,52.0,47.0,37.0,46.0,54.0,43.0,53.0,45.0,45.0,42.0,34.0,50.0,45.0,55.0,46.0,46.0,44.0,51.0,50.0,53.0,69.0,59.0,59.0,60.0,65.0,45.0,61.0,48.0,51.0,54.0,50.0,56.0,27.0,47.0,38.0,40.0,34.0,43.0,47.0,51.0,49.0,29.0,36.0,35.0,23.0,26.0,25.0,22.0,19.0,15.0,9.0,14.0,8.0,7.0,8.0,5.0,2.0,6.0 B86675,29.0,24.0,29.0,22.0,29.0,24.0,26.0,36.0,37.0,29.0,32.0,32.0,28.0,22.0,26.0,31.0,38.0,34.0,26.0,25.0,31.0,33.0,24.0,37.0,43.0,43.0,47.0,67.0,57.0,56.0,51.0,55.0,49.0,48.0,46.0,51.0,43.0,44.0,40.0,38.0,44.0,50.0,52.0,50.0,48.0,62.0,41.0,42.0,51.0,46.0,50.0,40.0,43.0,36.0,26.0,31.0,29.0,35.0,34.0,27.0,32.0,18.0,28.0,22.0,25.0,17.0,23.0,25.0,14.0,17.0,18.0,13.0,14.0,10.0,7.0,5.0,11.0,6.0,7.0,6.0,4.0,4.0,6.0,,5.0,1.0,4.0,3.0,2.0,1.0,,1.0,,,, B86678,15.0,10.0,7.0,15.0,16.0,11.0,15.0,16.0,16.0,18.0,15.0,18.0,16.0,23.0,14.0,20.0,19.0,15.0,21.0,18.0,9.0,19.0,12.0,20.0,12.0,21.0,24.0,22.0,19.0,17.0,18.0,13.0,12.0,9.0,16.0,13.0,22.0,15.0,15.0,14.0,14.0,18.0,15.0,20.0,13.0,17.0,21.0,13.0,15.0,16.0,21.0,24.0,22.0,26.0,19.0,20.0,23.0,15.0,25.0,19.0,18.0,17.0,23.0,26.0,19.0,8.0,17.0,17.0,27.0,18.0,16.0,16.0,12.0,15.0,14.0,18.0,9.0,12.0,10.0,6.0,12.0,5.0,6.0,6.0,3.0,5.0,8.0,5.0,2.0,4.0,3.0,4.0,2.0,3.0,1.0,2.0 B87001,35.0,40.0,47.0,58.0,42.0,40.0,55.0,67.0,42.0,56.0,42.0,47.0,53.0,51.0,52.0,61.0,44.0,63.0,39.0,54.0,49.0,47.0,48.0,49.0,43.0,46.0,49.0,52.0,53.0,47.0,62.0,50.0,59.0,62.0,52.0,49.0,60.0,59.0,61.0,61.0,51.0,50.0,70.0,43.0,65.0,58.0,66.0,54.0,49.0,62.0,57.0,61.0,60.0,87.0,82.0,91.0,77.0,86.0,76.0,81.0,71.0,56.0,75.0,59.0,62.0,67.0,51.0,65.0,73.0,62.0,54.0,65.0,45.0,53.0,43.0,54.0,54.0,66.0,65.0,34.0,37.0,34.0,30.0,22.0,14.0,22.0,15.0,16.0,14.0,10.0,13.0,7.0,5.0,,1.0,5.0 B87002,34.0,33.0,45.0,42.0,43.0,56.0,46.0,58.0,58.0,49.0,61.0,54.0,76.0,67.0,64.0,74.0,81.0,57.0,53.0,62.0,53.0,61.0,51.0,50.0,47.0,59.0,57.0,48.0,60.0,53.0,37.0,64.0,65.0,55.0,68.0,62.0,55.0,74.0,62.0,68.0,66.0,68.0,57.0,62.0,67.0,54.0,71.0,62.0,52.0,58.0,79.0,87.0,77.0,80.0,94.0,76.0,95.0,91.0,78.0,91.0,82.0,91.0,79.0,82.0,72.0,57.0,80.0,60.0,64.0,58.0,64.0,54.0,54.0,57.0,51.0,67.0,53.0,58.0,53.0,42.0,48.0,28.0,33.0,31.0,15.0,17.0,17.0,15.0,9.0,10.0,6.0,9.0,6.0,2.0,3.0,6.0 B87003,38.0,41.0,49.0,57.0,44.0,55.0,67.0,64.0,58.0,60.0,70.0,60.0,59.0,65.0,70.0,76.0,71.0,88.0,47.0,51.0,41.0,46.0,43.0,46.0,54.0,48.0,46.0,43.0,53.0,71.0,54.0,62.0,51.0,63.0,54.0,69.0,62.0,80.0,73.0,78.0,63.0,62.0,89.0,74.0,63.0,70.0,64.0,55.0,50.0,88.0,71.0,78.0,64.0,98.0,78.0,78.0,74.0,75.0,75.0,73.0,76.0,65.0,92.0,90.0,45.0,52.0,80.0,77.0,76.0,62.0,56.0,48.0,63.0,52.0,67.0,54.0,46.0,62.0,58.0,41.0,40.0,42.0,56.0,27.0,18.0,19.0,17.0,28.0,14.0,5.0,11.0,10.0,5.0,4.0,1.0,6.0 B87004,85.0,66.0,80.0,67.0,75.0,78.0,71.0,78.0,73.0,72.0,63.0,69.0,78.0,71.0,75.0,54.0,91.0,64.0,78.0,67.0,69.0,65.0,64.0,78.0,62.0,94.0,71.0,81.0,86.0,95.0,96.0,104.0,132.0,130.0,119.0,127.0,110.0,112.0,121.0,119.0,130.0,93.0,117.0,88.0,104.0,100.0,92.0,89.0,69.0,74.0,79.0,81.0,51.0,67.0,77.0,89.0,80.0,87.0,69.0,74.0,60.0,63.0,63.0,64.0,41.0,50.0,50.0,33.0,40.0,38.0,33.0,41.0,29.0,38.0,31.0,26.0,35.0,23.0,41.0,28.0,24.0,24.0,16.0,15.0,12.0,10.0,15.0,9.0,6.0,9.0,5.0,6.0,5.0,3.0,1.0,3.0 B87005,45.0,56.0,52.0,62.0,61.0,42.0,68.0,71.0,59.0,64.0,63.0,68.0,66.0,63.0,68.0,53.0,67.0,67.0,73.0,75.0,63.0,58.0,59.0,39.0,70.0,56.0,51.0,76.0,70.0,55.0,71.0,74.0,70.0,88.0,88.0,80.0,84.0,91.0,79.0,92.0,94.0,84.0,69.0,87.0,91.0,89.0,80.0,58.0,70.0,69.0,75.0,62.0,97.0,105.0,106.0,90.0,86.0,110.0,105.0,82.0,74.0,91.0,75.0,76.0,70.0,77.0,71.0,61.0,48.0,42.0,52.0,49.0,46.0,33.0,71.0,57.0,57.0,48.0,41.0,28.0,26.0,37.0,28.0,23.0,17.0,16.0,10.0,9.0,12.0,6.0,9.0,3.0,4.0,4.0,1.0,7.0 B87006,47.0,51.0,58.0,52.0,67.0,62.0,79.0,71.0,70.0,75.0,73.0,83.0,85.0,85.0,78.0,70.0,62.0,66.0,53.0,54.0,54.0,46.0,49.0,44.0,45.0,52.0,52.0,59.0,76.0,67.0,80.0,88.0,84.0,83.0,81.0,101.0,80.0,79.0,86.0,76.0,74.0,74.0,89.0,77.0,85.0,63.0,70.0,61.0,74.0,67.0,52.0,59.0,62.0,58.0,62.0,78.0,74.0,76.0,80.0,74.0,72.0,67.0,64.0,72.0,76.0,72.0,74.0,68.0,62.0,51.0,59.0,61.0,44.0,36.0,30.0,45.0,40.0,39.0,43.0,27.0,35.0,28.0,24.0,20.0,24.0,19.0,14.0,20.0,5.0,8.0,7.0,6.0,2.0,3.0,,4.0 B87007,82.0,84.0,86.0,104.0,86.0,85.0,81.0,69.0,94.0,108.0,103.0,105.0,83.0,108.0,115.0,89.0,94.0,83.0,89.0,95.0,80.0,81.0,70.0,72.0,81.0,73.0,98.0,99.0,118.0,113.0,137.0,121.0,137.0,120.0,134.0,123.0,122.0,102.0,123.0,105.0,104.0,124.0,92.0,86.0,108.0,106.0,76.0,97.0,96.0,90.0,96.0,92.0,91.0,128.0,102.0,96.0,91.0,126.0,90.0,119.0,113.0,90.0,97.0,76.0,68.0,87.0,92.0,59.0,63.0,70.0,56.0,76.0,54.0,44.0,58.0,35.0,65.0,53.0,55.0,37.0,56.0,41.0,32.0,18.0,20.0,25.0,19.0,19.0,17.0,8.0,8.0,6.0,6.0,3.0,3.0,7.0 B87008,54.0,48.0,59.0,64.0,57.0,71.0,86.0,73.0,78.0,88.0,100.0,98.0,102.0,114.0,90.0,115.0,93.0,94.0,100.0,88.0,85.0,87.0,65.0,72.0,74.0,83.0,57.0,81.0,81.0,84.0,90.0,79.0,75.0,90.0,91.0,88.0,110.0,105.0,95.0,105.0,82.0,95.0,107.0,90.0,76.0,86.0,90.0,82.0,75.0,59.0,85.0,80.0,93.0,82.0,98.0,79.0,111.0,86.0,86.0,98.0,80.0,79.0,84.0,79.0,89.0,74.0,74.0,68.0,65.0,52.0,44.0,49.0,63.0,60.0,54.0,56.0,48.0,59.0,50.0,45.0,36.0,35.0,36.0,27.0,20.0,13.0,24.0,14.0,20.0,11.0,10.0,9.0,5.0,4.0,5.0,9.0 B87009,27.0,29.0,31.0,29.0,40.0,36.0,34.0,31.0,41.0,41.0,36.0,29.0,47.0,36.0,37.0,32.0,31.0,34.0,42.0,31.0,30.0,34.0,31.0,21.0,28.0,34.0,28.0,33.0,36.0,50.0,42.0,38.0,51.0,45.0,50.0,42.0,29.0,53.0,47.0,42.0,51.0,45.0,46.0,34.0,41.0,31.0,28.0,36.0,43.0,40.0,25.0,33.0,31.0,50.0,60.0,39.0,55.0,37.0,55.0,35.0,44.0,55.0,49.0,57.0,45.0,46.0,27.0,45.0,26.0,44.0,32.0,33.0,26.0,32.0,41.0,27.0,33.0,31.0,29.0,21.0,34.0,19.0,21.0,19.0,9.0,9.0,8.0,14.0,16.0,5.0,2.0,4.0,4.0,,1.0,4.0 B87011,59.0,61.0,74.0,58.0,69.0,86.0,75.0,73.0,69.0,70.0,89.0,66.0,74.0,88.0,85.0,74.0,71.0,95.0,72.0,71.0,53.0,69.0,54.0,54.0,62.0,54.0,70.0,68.0,78.0,84.0,85.0,75.0,92.0,98.0,86.0,86.0,91.0,91.0,89.0,89.0,85.0,73.0,86.0,61.0,84.0,81.0,61.0,81.0,72.0,74.0,62.0,69.0,80.0,107.0,95.0,100.0,83.0,70.0,118.0,104.0,105.0,96.0,106.0,81.0,86.0,93.0,83.0,77.0,65.0,75.0,84.0,64.0,48.0,75.0,55.0,63.0,72.0,62.0,75.0,52.0,50.0,50.0,31.0,26.0,23.0,25.0,30.0,19.0,19.0,22.0,16.0,11.0,7.0,6.0,4.0,10.0 B87012,46.0,51.0,56.0,67.0,59.0,64.0,61.0,56.0,65.0,49.0,80.0,63.0,71.0,69.0,60.0,71.0,54.0,62.0,62.0,81.0,61.0,58.0,62.0,68.0,59.0,60.0,60.0,87.0,75.0,98.0,86.0,90.0,81.0,92.0,94.0,74.0,85.0,75.0,73.0,95.0,68.0,70.0,82.0,68.0,88.0,74.0,63.0,70.0,70.0,76.0,58.0,61.0,65.0,54.0,67.0,73.0,54.0,44.0,53.0,53.0,66.0,62.0,51.0,47.0,51.0,49.0,55.0,46.0,44.0,40.0,34.0,39.0,33.0,29.0,30.0,38.0,30.0,32.0,38.0,31.0,16.0,18.0,19.0,8.0,9.0,10.0,12.0,11.0,9.0,6.0,7.0,2.0,4.0,5.0,,5.0 B87013,54.0,64.0,54.0,53.0,66.0,69.0,72.0,77.0,83.0,82.0,73.0,86.0,82.0,77.0,87.0,89.0,76.0,79.0,90.0,77.0,70.0,74.0,60.0,69.0,75.0,74.0,81.0,72.0,93.0,64.0,88.0,89.0,80.0,90.0,88.0,90.0,86.0,105.0,94.0,101.0,85.0,94.0,86.0,95.0,89.0,94.0,75.0,90.0,64.0,85.0,109.0,82.0,101.0,104.0,103.0,88.0,99.0,107.0,97.0,102.0,110.0,93.0,81.0,107.0,101.0,117.0,68.0,73.0,83.0,79.0,68.0,96.0,74.0,65.0,77.0,74.0,84.0,88.0,92.0,50.0,50.0,48.0,44.0,27.0,33.0,23.0,29.0,22.0,15.0,11.0,11.0,9.0,9.0,3.0,3.0,5.0 B87015,27.0,32.0,33.0,33.0,30.0,38.0,30.0,43.0,46.0,35.0,38.0,43.0,47.0,37.0,52.0,31.0,43.0,33.0,50.0,40.0,49.0,44.0,40.0,43.0,34.0,46.0,40.0,39.0,43.0,57.0,49.0,49.0,62.0,52.0,49.0,66.0,70.0,60.0,54.0,62.0,48.0,52.0,54.0,62.0,49.0,44.0,45.0,30.0,48.0,59.0,56.0,39.0,51.0,53.0,67.0,61.0,50.0,74.0,56.0,59.0,57.0,56.0,56.0,45.0,55.0,49.0,47.0,42.0,30.0,33.0,31.0,42.0,35.0,35.0,42.0,32.0,42.0,28.0,37.0,37.0,23.0,22.0,23.0,23.0,9.0,15.0,13.0,10.0,13.0,7.0,3.0,5.0,5.0,1.0,,2.0 B87016,92.0,115.0,123.0,135.0,147.0,139.0,135.0,160.0,122.0,158.0,144.0,172.0,151.0,160.0,142.0,161.0,148.0,152.0,142.0,156.0,134.0,151.0,114.0,116.0,138.0,155.0,151.0,129.0,181.0,156.0,171.0,169.0,171.0,194.0,187.0,173.0,182.0,181.0,192.0,201.0,191.0,200.0,175.0,176.0,187.0,164.0,121.0,135.0,127.0,134.0,115.0,144.0,170.0,201.0,184.0,187.0,197.0,175.0,176.0,155.0,172.0,168.0,164.0,150.0,163.0,130.0,138.0,135.0,119.0,120.0,104.0,94.0,94.0,94.0,90.0,89.0,90.0,101.0,82.0,63.0,56.0,58.0,38.0,54.0,38.0,38.0,42.0,37.0,25.0,13.0,16.0,8.0,6.0,3.0,3.0,9.0 B87017,141.0,135.0,133.0,148.0,149.0,157.0,138.0,127.0,158.0,147.0,149.0,146.0,135.0,139.0,126.0,140.0,134.0,150.0,147.0,155.0,157.0,184.0,143.0,215.0,189.0,210.0,238.0,220.0,237.0,257.0,243.0,287.0,285.0,288.0,332.0,278.0,295.0,292.0,264.0,310.0,240.0,280.0,278.0,265.0,245.0,262.0,194.0,211.0,220.0,205.0,188.0,191.0,193.0,166.0,197.0,197.0,193.0,173.0,193.0,192.0,149.0,169.0,154.0,152.0,135.0,118.0,112.0,127.0,104.0,125.0,95.0,97.0,99.0,91.0,93.0,80.0,81.0,87.0,92.0,65.0,51.0,62.0,51.0,41.0,47.0,47.0,34.0,26.0,23.0,19.0,19.0,11.0,15.0,6.0,10.0,9.0 B87018,51.0,62.0,67.0,66.0,60.0,63.0,61.0,70.0,80.0,76.0,79.0,70.0,79.0,70.0,92.0,78.0,71.0,70.0,61.0,56.0,54.0,82.0,41.0,52.0,51.0,65.0,81.0,72.0,71.0,80.0,80.0,110.0,83.0,108.0,114.0,94.0,85.0,102.0,95.0,77.0,83.0,81.0,85.0,90.0,79.0,87.0,48.0,63.0,52.0,83.0,84.0,79.0,75.0,83.0,84.0,63.0,90.0,81.0,96.0,84.0,73.0,86.0,80.0,74.0,76.0,64.0,63.0,57.0,53.0,58.0,44.0,48.0,50.0,40.0,46.0,39.0,45.0,32.0,43.0,28.0,23.0,34.0,19.0,22.0,19.0,14.0,11.0,12.0,10.0,7.0,11.0,6.0,3.0,,3.0,4.0 B87019,46.0,35.0,28.0,31.0,28.0,36.0,34.0,28.0,44.0,38.0,37.0,49.0,58.0,51.0,49.0,48.0,37.0,45.0,41.0,33.0,35.0,27.0,14.0,21.0,35.0,35.0,32.0,36.0,51.0,47.0,46.0,39.0,59.0,64.0,61.0,62.0,39.0,64.0,58.0,41.0,53.0,46.0,46.0,48.0,39.0,43.0,34.0,41.0,50.0,34.0,49.0,36.0,57.0,42.0,59.0,53.0,69.0,50.0,70.0,58.0,49.0,48.0,52.0,56.0,55.0,44.0,39.0,57.0,45.0,38.0,50.0,36.0,36.0,33.0,26.0,31.0,30.0,27.0,23.0,23.0,23.0,30.0,15.0,14.0,9.0,13.0,11.0,4.0,6.0,3.0,4.0,3.0,2.0,3.0,1.0,3.0 B87020,54.0,60.0,59.0,58.0,76.0,65.0,74.0,81.0,73.0,74.0,86.0,68.0,87.0,73.0,79.0,90.0,60.0,70.0,75.0,58.0,81.0,68.0,57.0,42.0,62.0,75.0,72.0,59.0,71.0,69.0,66.0,70.0,78.0,98.0,94.0,90.0,66.0,97.0,95.0,71.0,97.0,101.0,98.0,87.0,100.0,92.0,88.0,69.0,76.0,77.0,63.0,83.0,81.0,92.0,72.0,82.0,105.0,87.0,84.0,89.0,108.0,99.0,96.0,73.0,84.0,96.0,90.0,88.0,78.0,83.0,85.0,88.0,69.0,82.0,71.0,75.0,83.0,88.0,94.0,46.0,62.0,60.0,45.0,31.0,27.0,27.0,21.0,16.0,14.0,13.0,7.0,16.0,8.0,8.0,5.0,13.0 B87021,68.0,60.0,78.0,75.0,79.0,86.0,87.0,77.0,82.0,87.0,80.0,75.0,81.0,81.0,105.0,81.0,82.0,96.0,58.0,67.0,60.0,75.0,62.0,77.0,60.0,71.0,67.0,73.0,82.0,88.0,93.0,94.0,93.0,90.0,109.0,97.0,104.0,81.0,92.0,90.0,104.0,78.0,71.0,91.0,78.0,83.0,66.0,70.0,61.0,66.0,85.0,79.0,100.0,93.0,108.0,88.0,79.0,93.0,85.0,94.0,96.0,94.0,73.0,69.0,89.0,68.0,78.0,70.0,66.0,67.0,64.0,56.0,46.0,47.0,64.0,40.0,61.0,53.0,50.0,39.0,31.0,32.0,27.0,28.0,18.0,24.0,19.0,25.0,19.0,9.0,5.0,7.0,3.0,5.0,1.0,3.0 B87022,52.0,55.0,62.0,53.0,66.0,69.0,58.0,67.0,71.0,72.0,72.0,68.0,58.0,85.0,61.0,64.0,67.0,56.0,64.0,56.0,60.0,50.0,46.0,36.0,48.0,51.0,58.0,63.0,79.0,56.0,66.0,70.0,80.0,86.0,83.0,86.0,79.0,95.0,104.0,83.0,92.0,79.0,74.0,73.0,69.0,72.0,55.0,63.0,55.0,67.0,60.0,64.0,49.0,58.0,49.0,63.0,50.0,56.0,40.0,47.0,41.0,51.0,31.0,43.0,32.0,42.0,35.0,37.0,19.0,31.0,33.0,18.0,15.0,25.0,18.0,22.0,14.0,16.0,17.0,14.0,10.0,12.0,11.0,6.0,10.0,6.0,10.0,3.0,3.0,3.0,4.0,3.0,1.0,1.0,1.0, B87025,50.0,53.0,64.0,54.0,53.0,61.0,65.0,43.0,49.0,44.0,33.0,35.0,45.0,38.0,39.0,39.0,40.0,41.0,29.0,39.0,36.0,33.0,30.0,35.0,53.0,58.0,51.0,54.0,70.0,70.0,72.0,103.0,87.0,90.0,101.0,93.0,85.0,78.0,70.0,83.0,57.0,55.0,78.0,49.0,44.0,52.0,46.0,44.0,48.0,52.0,53.0,49.0,51.0,56.0,60.0,57.0,62.0,45.0,60.0,38.0,50.0,43.0,50.0,53.0,39.0,41.0,44.0,50.0,33.0,37.0,22.0,35.0,26.0,25.0,29.0,33.0,31.0,29.0,29.0,27.0,26.0,18.0,10.0,5.0,13.0,13.0,12.0,10.0,6.0,7.0,3.0,2.0,1.0,2.0,2.0,4.0 B87026,67.0,63.0,76.0,100.0,87.0,91.0,93.0,108.0,98.0,77.0,119.0,88.0,101.0,95.0,94.0,100.0,90.0,91.0,96.0,74.0,66.0,77.0,87.0,71.0,81.0,85.0,78.0,80.0,100.0,92.0,105.0,107.0,117.0,109.0,123.0,138.0,118.0,113.0,105.0,98.0,99.0,88.0,75.0,82.0,90.0,87.0,74.0,86.0,74.0,79.0,85.0,83.0,84.0,98.0,109.0,129.0,101.0,109.0,106.0,89.0,91.0,100.0,90.0,118.0,90.0,94.0,92.0,81.0,80.0,65.0,55.0,75.0,76.0,68.0,65.0,62.0,58.0,64.0,63.0,50.0,46.0,39.0,36.0,27.0,19.0,22.0,17.0,20.0,21.0,13.0,9.0,8.0,3.0,1.0,4.0,3.0 B87027,56.0,56.0,71.0,92.0,73.0,81.0,74.0,78.0,70.0,94.0,79.0,71.0,72.0,105.0,79.0,82.0,97.0,85.0,77.0,58.0,57.0,67.0,59.0,68.0,58.0,74.0,66.0,66.0,73.0,74.0,62.0,94.0,93.0,111.0,90.0,99.0,115.0,101.0,102.0,94.0,102.0,112.0,96.0,94.0,103.0,101.0,110.0,86.0,101.0,97.0,95.0,96.0,110.0,104.0,112.0,92.0,108.0,114.0,96.0,103.0,107.0,97.0,104.0,80.0,80.0,79.0,70.0,83.0,83.0,58.0,72.0,48.0,65.0,60.0,62.0,62.0,65.0,57.0,54.0,45.0,36.0,37.0,42.0,19.0,23.0,25.0,20.0,18.0,9.0,16.0,9.0,10.0,7.0,7.0,4.0,7.0 B87028,48.0,43.0,37.0,50.0,55.0,45.0,61.0,46.0,61.0,73.0,64.0,73.0,69.0,75.0,76.0,57.0,63.0,68.0,69.0,52.0,59.0,52.0,46.0,58.0,58.0,67.0,58.0,62.0,69.0,56.0,66.0,71.0,80.0,71.0,70.0,59.0,74.0,62.0,83.0,65.0,67.0,74.0,68.0,57.0,62.0,65.0,65.0,46.0,55.0,68.0,68.0,62.0,67.0,65.0,77.0,89.0,87.0,91.0,76.0,76.0,95.0,91.0,87.0,56.0,80.0,66.0,60.0,73.0,53.0,59.0,57.0,60.0,53.0,69.0,48.0,54.0,62.0,61.0,37.0,47.0,52.0,47.0,41.0,22.0,23.0,14.0,20.0,20.0,20.0,5.0,2.0,5.0,4.0,4.0,2.0,2.0 B87030,125.0,153.0,164.0,170.0,178.0,169.0,173.0,191.0,205.0,186.0,184.0,216.0,221.0,184.0,184.0,211.0,211.0,197.0,182.0,173.0,161.0,167.0,151.0,135.0,145.0,142.0,169.0,168.0,178.0,209.0,189.0,208.0,225.0,215.0,240.0,232.0,243.0,210.0,228.0,254.0,228.0,218.0,181.0,204.0,192.0,169.0,167.0,163.0,175.0,178.0,210.0,200.0,201.0,233.0,220.0,241.0,208.0,228.0,231.0,236.0,233.0,212.0,226.0,171.0,178.0,172.0,139.0,155.0,141.0,131.0,137.0,132.0,147.0,123.0,109.0,136.0,134.0,130.0,112.0,102.0,90.0,87.0,77.0,61.0,60.0,43.0,40.0,27.0,31.0,23.0,16.0,11.0,12.0,9.0,7.0,9.0 B87031,89.0,100.0,84.0,99.0,104.0,133.0,115.0,123.0,161.0,117.0,136.0,131.0,147.0,141.0,141.0,153.0,129.0,117.0,115.0,102.0,118.0,131.0,98.0,86.0,106.0,115.0,118.0,132.0,101.0,115.0,131.0,120.0,162.0,148.0,132.0,140.0,161.0,145.0,126.0,138.0,141.0,139.0,140.0,160.0,136.0,134.0,153.0,137.0,143.0,141.0,150.0,143.0,161.0,164.0,172.0,182.0,178.0,149.0,166.0,167.0,155.0,136.0,120.0,132.0,120.0,114.0,123.0,113.0,129.0,118.0,96.0,122.0,107.0,95.0,104.0,102.0,115.0,113.0,105.0,88.0,103.0,63.0,60.0,44.0,49.0,40.0,32.0,35.0,26.0,26.0,18.0,15.0,11.0,4.0,4.0,10.0 B87032,36.0,57.0,48.0,58.0,47.0,60.0,54.0,49.0,59.0,46.0,67.0,56.0,63.0,54.0,58.0,45.0,60.0,48.0,40.0,36.0,24.0,31.0,29.0,51.0,31.0,42.0,48.0,57.0,55.0,79.0,55.0,66.0,59.0,56.0,70.0,70.0,70.0,57.0,75.0,53.0,64.0,52.0,65.0,53.0,54.0,57.0,49.0,36.0,46.0,29.0,55.0,53.0,56.0,59.0,55.0,38.0,58.0,59.0,58.0,56.0,38.0,55.0,46.0,42.0,57.0,37.0,40.0,51.0,32.0,35.0,27.0,39.0,25.0,27.0,25.0,19.0,24.0,28.0,22.0,27.0,21.0,20.0,21.0,11.0,15.0,18.0,4.0,6.0,11.0,5.0,2.0,5.0,4.0,2.0,2.0,4.0 B87033,25.0,37.0,29.0,31.0,31.0,37.0,36.0,24.0,42.0,43.0,43.0,26.0,24.0,28.0,36.0,29.0,19.0,35.0,19.0,28.0,20.0,24.0,33.0,28.0,23.0,31.0,36.0,36.0,39.0,39.0,34.0,48.0,37.0,39.0,39.0,37.0,35.0,41.0,33.0,45.0,44.0,38.0,38.0,34.0,29.0,44.0,34.0,32.0,28.0,28.0,28.0,32.0,31.0,36.0,36.0,38.0,38.0,39.0,44.0,53.0,54.0,45.0,35.0,38.0,42.0,41.0,38.0,36.0,33.0,41.0,21.0,22.0,20.0,33.0,27.0,33.0,17.0,23.0,24.0,18.0,17.0,19.0,12.0,9.0,5.0,9.0,6.0,6.0,4.0,5.0,1.0,,2.0,1.0,1.0,3.0 B87036,11.0,18.0,21.0,21.0,17.0,24.0,24.0,25.0,22.0,25.0,16.0,22.0,23.0,24.0,18.0,26.0,33.0,28.0,24.0,13.0,15.0,22.0,16.0,25.0,17.0,26.0,21.0,27.0,29.0,23.0,25.0,31.0,24.0,44.0,31.0,29.0,21.0,26.0,35.0,36.0,52.0,21.0,34.0,25.0,31.0,24.0,17.0,19.0,22.0,22.0,22.0,20.0,26.0,30.0,29.0,34.0,26.0,28.0,24.0,27.0,30.0,35.0,29.0,25.0,31.0,28.0,33.0,29.0,29.0,30.0,28.0,24.0,22.0,22.0,17.0,20.0,16.0,18.0,16.0,12.0,15.0,10.0,15.0,11.0,7.0,5.0,5.0,2.0,9.0,2.0,3.0,1.0,1.0,1.0,1.0, B87039,80.0,71.0,65.0,84.0,71.0,87.0,86.0,85.0,104.0,93.0,85.0,102.0,110.0,94.0,101.0,90.0,110.0,94.0,82.0,88.0,102.0,60.0,72.0,71.0,82.0,85.0,85.0,83.0,91.0,106.0,112.0,129.0,135.0,127.0,123.0,151.0,129.0,129.0,120.0,129.0,153.0,105.0,115.0,114.0,116.0,112.0,113.0,89.0,89.0,93.0,103.0,93.0,99.0,114.0,109.0,97.0,99.0,91.0,94.0,96.0,94.0,91.0,88.0,103.0,76.0,79.0,70.0,59.0,66.0,53.0,67.0,40.0,65.0,41.0,47.0,38.0,47.0,40.0,56.0,30.0,40.0,31.0,28.0,27.0,26.0,25.0,27.0,8.0,13.0,11.0,9.0,4.0,5.0,8.0,2.0,3.0 B87042,24.0,37.0,35.0,33.0,38.0,38.0,40.0,47.0,38.0,41.0,46.0,44.0,47.0,39.0,40.0,37.0,47.0,39.0,41.0,33.0,41.0,34.0,23.0,34.0,33.0,31.0,37.0,49.0,31.0,43.0,44.0,30.0,40.0,41.0,46.0,38.0,55.0,62.0,42.0,45.0,40.0,34.0,44.0,33.0,41.0,23.0,26.0,33.0,32.0,34.0,37.0,33.0,32.0,34.0,39.0,37.0,36.0,34.0,44.0,39.0,52.0,30.0,27.0,29.0,36.0,26.0,24.0,27.0,24.0,15.0,25.0,19.0,20.0,23.0,20.0,20.0,11.0,14.0,23.0,10.0,12.0,7.0,8.0,5.0,4.0,4.0,7.0,5.0,2.0,6.0,1.0,1.0,1.0,1.0,1.0, B87044,14.0,10.0,11.0,20.0,9.0,14.0,20.0,9.0,13.0,15.0,14.0,5.0,10.0,11.0,9.0,16.0,10.0,16.0,14.0,8.0,15.0,20.0,8.0,12.0,15.0,13.0,18.0,12.0,17.0,19.0,18.0,13.0,15.0,28.0,18.0,20.0,21.0,17.0,13.0,20.0,13.0,18.0,22.0,17.0,17.0,21.0,22.0,13.0,21.0,11.0,14.0,21.0,10.0,21.0,15.0,23.0,31.0,12.0,22.0,17.0,14.0,11.0,20.0,17.0,24.0,22.0,12.0,18.0,13.0,12.0,19.0,16.0,15.0,14.0,17.0,12.0,13.0,11.0,10.0,12.0,11.0,4.0,7.0,6.0,2.0,1.0,5.0,3.0,2.0,4.0,,1.0,,,, B87602,27.0,17.0,20.0,22.0,22.0,20.0,14.0,15.0,16.0,17.0,21.0,21.0,16.0,17.0,21.0,21.0,18.0,19.0,7.0,14.0,12.0,13.0,14.0,19.0,14.0,16.0,15.0,30.0,18.0,21.0,28.0,30.0,34.0,33.0,26.0,24.0,35.0,22.0,26.0,25.0,31.0,23.0,24.0,19.0,21.0,21.0,12.0,13.0,22.0,18.0,19.0,26.0,26.0,26.0,22.0,27.0,25.0,28.0,15.0,27.0,28.0,24.0,29.0,17.0,21.0,21.0,22.0,27.0,18.0,12.0,13.0,17.0,14.0,13.0,13.0,10.0,19.0,20.0,13.0,8.0,14.0,9.0,16.0,4.0,6.0,4.0,5.0,8.0,2.0,1.0,2.0,2.0,,,,3.0 B87604,20.0,12.0,20.0,21.0,24.0,26.0,22.0,19.0,24.0,15.0,14.0,27.0,12.0,21.0,19.0,9.0,16.0,12.0,18.0,24.0,13.0,12.0,19.0,11.0,20.0,20.0,22.0,30.0,21.0,21.0,28.0,21.0,29.0,33.0,30.0,25.0,26.0,29.0,20.0,18.0,33.0,28.0,19.0,15.0,29.0,23.0,24.0,19.0,14.0,17.0,18.0,15.0,17.0,12.0,23.0,20.0,19.0,16.0,14.0,21.0,8.0,13.0,9.0,14.0,17.0,12.0,9.0,14.0,6.0,12.0,9.0,10.0,8.0,13.0,4.0,10.0,3.0,4.0,11.0,9.0,6.0,2.0,4.0,7.0,4.0,2.0,2.0,3.0,2.0,2.0,,,,1.0,, Y00081,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,3.0,,1.0,2.0,,1.0,,1.0,1.0,2.0,2.0,1.0,1.0,,,,,,,,1.0,,,1.0,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, Y01118,13.0,22.0,12.0,22.0,23.0,24.0,20.0,19.0,21.0,25.0,17.0,17.0,20.0,19.0,17.0,29.0,14.0,26.0,19.0,13.0,12.0,10.0,27.0,20.0,15.0,26.0,23.0,24.0,29.0,22.0,25.0,23.0,23.0,27.0,24.0,19.0,28.0,24.0,29.0,36.0,38.0,42.0,28.0,37.0,28.0,30.0,32.0,15.0,31.0,25.0,11.0,32.0,29.0,32.0,21.0,25.0,19.0,17.0,29.0,21.0,29.0,24.0,20.0,18.0,24.0,24.0,21.0,17.0,14.0,19.0,11.0,20.0,15.0,20.0,13.0,8.0,10.0,13.0,9.0,7.0,12.0,9.0,6.0,5.0,4.0,3.0,4.0,6.0,4.0,4.0,3.0,2.0,,,,1.0 Y02002,55.0,63.0,51.0,67.0,50.0,53.0,40.0,49.0,49.0,43.0,51.0,36.0,49.0,40.0,35.0,38.0,34.0,21.0,73.0,131.0,190.0,203.0,219.0,285.0,352.0,393.0,420.0,419.0,394.0,418.0,391.0,419.0,423.0,404.0,451.0,435.0,398.0,371.0,370.0,357.0,301.0,283.0,281.0,242.0,215.0,188.0,158.0,113.0,89.0,87.0,58.0,72.0,74.0,66.0,41.0,43.0,39.0,31.0,33.0,21.0,33.0,24.0,30.0,20.0,27.0,22.0,24.0,21.0,15.0,20.0,12.0,10.0,5.0,9.0,3.0,6.0,6.0,2.0,4.0,2.0,3.0,4.0,1.0,3.0,1.0,,2.0,1.0,,1.0,,,,,, Y02494,65.0,59.0,70.0,55.0,56.0,64.0,61.0,61.0,57.0,50.0,52.0,56.0,50.0,56.0,40.0,47.0,33.0,38.0,44.0,54.0,62.0,49.0,60.0,56.0,92.0,95.0,96.0,97.0,91.0,100.0,118.0,116.0,131.0,113.0,136.0,142.0,150.0,145.0,101.0,140.0,122.0,101.0,115.0,98.0,101.0,89.0,65.0,67.0,54.0,79.0,50.0,46.0,43.0,28.0,37.0,31.0,27.0,30.0,27.0,30.0,30.0,25.0,15.0,17.0,12.0,16.0,10.0,12.0,5.0,4.0,11.0,11.0,5.0,4.0,5.0,4.0,1.0,3.0,5.0,1.0,,,,1.0,,,,,,,1.0,,,,, Y02645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,1.0,,1.0,,,,,,,,,,2.0,,,,1.0,1.0,2.0,,,,,1.0,,,,,,,,,,,,,,,,,1.0,,,,,,,,,,,,,,,,,,,,,,, Y04266,12.0,26.0,27.0,25.0,24.0,29.0,25.0,19.0,20.0,23.0,27.0,29.0,28.0,29.0,31.0,26.0,23.0,13.0,17.0,25.0,22.0,17.0,18.0,23.0,24.0,21.0,20.0,24.0,27.0,19.0,23.0,27.0,30.0,27.0,30.0,36.0,35.0,37.0,30.0,34.0,38.0,27.0,41.0,29.0,29.0,27.0,15.0,18.0,17.0,31.0,28.0,27.0,20.0,31.0,33.0,23.0,27.0,26.0,35.0,38.0,35.0,19.0,27.0,25.0,25.0,32.0,28.0,27.0,21.0,18.0,18.0,17.0,9.0,16.0,11.0,9.0,16.0,10.0,10.0,12.0,9.0,11.0,13.0,4.0,10.0,15.0,8.0,3.0,5.0,1.0,8.0,6.0,2.0,,3.0,6.0 Y06659,17.0,22.0,19.0,16.0,16.0,19.0,16.0,21.0,18.0,28.0,15.0,22.0,20.0,28.0,13.0,20.0,27.0,24.0,23.0,10.0,22.0,12.0,16.0,10.0,14.0,23.0,21.0,16.0,16.0,29.0,22.0,20.0,14.0,25.0,25.0,43.0,31.0,27.0,22.0,28.0,24.0,24.0,26.0,25.0,27.0,20.0,23.0,30.0,27.0,14.0,19.0,20.0,23.0,27.0,22.0,18.0,23.0,35.0,26.0,29.0,25.0,23.0,26.0,31.0,26.0,21.0,21.0,20.0,20.0,18.0,11.0,14.0,11.0,17.0,15.0,12.0,5.0,12.0,10.0,9.0,8.0,8.0,5.0,4.0,8.0,8.0,7.0,4.0,,4.0,2.0,2.0,,,2.0,5.0 Y07275,14.0,15.0,12.0,14.0,17.0,14.0,22.0,12.0,13.0,22.0,17.0,19.0,17.0,20.0,21.0,23.0,15.0,24.0,22.0,18.0,22.0,30.0,14.0,22.0,20.0,23.0,30.0,20.0,18.0,15.0,24.0,18.0,17.0,10.0,16.0,13.0,18.0,19.0,29.0,13.0,22.0,16.0,15.0,18.0,19.0,19.0,21.0,16.0,20.0,19.0,28.0,19.0,19.0,17.0,17.0,24.0,25.0,13.0,26.0,14.0,28.0,19.0,13.0,19.0,15.0,16.0,15.0,13.0,12.0,11.0,12.0,15.0,8.0,7.0,14.0,9.0,16.0,18.0,12.0,5.0,8.0,5.0,7.0,7.0,2.0,1.0,6.0,4.0,3.0,4.0,4.0,1.0,1.0,,, Y08186,,,,,1.0,,,,,,,,,,,,,,,,,1.0,1.0,,1.0,,1.0,,,,,,,1.0,1.0,,1.0,3.0,2.0,,1.0,,,2.0,,2.0,,2.0,1.0,,3.0,,,,1.0,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 M84001,57.0,60.0,70.0,60.0,55.0,64.0,69.0,59.0,59.0,93.0,80.0,83.0,70.0,83.0,102.0,90.0,91.0,90.0,93.0,75.0,62.0,74.0,80.0,81.0,71.0,72.0,94.0,69.0,86.0,96.0,98.0,73.0,83.0,84.0,106.0,83.0,108.0,113.0,92.0,107.0,89.0,97.0,73.0,88.0,75.0,99.0,88.0,72.0,68.0,85.0,79.0,88.0,94.0,103.0,84.0,107.0,83.0,111.0,92.0,98.0,100.0,85.0,79.0,90.0,83.0,88.0,84.0,51.0,75.0,59.0,64.0,71.0,59.0,53.0,60.0,71.0,66.0,63.0,64.0,64.0,47.0,43.0,33.0,26.0,31.0,25.0,29.0,21.0,26.0,8.0,12.0,10.0,6.0,2.0,6.0,9.0 M84002,25.0,26.0,36.0,42.0,38.0,40.0,38.0,54.0,39.0,59.0,54.0,42.0,52.0,62.0,60.0,46.0,53.0,40.0,52.0,37.0,41.0,28.0,37.0,34.0,36.0,41.0,41.0,47.0,48.0,59.0,40.0,55.0,39.0,56.0,54.0,50.0,57.0,52.0,47.0,50.0,49.0,31.0,53.0,68.0,47.0,46.0,42.0,46.0,47.0,49.0,48.0,40.0,60.0,61.0,61.0,55.0,51.0,59.0,59.0,62.0,67.0,60.0,48.0,61.0,46.0,51.0,44.0,55.0,42.0,38.0,37.0,45.0,44.0,38.0,47.0,48.0,33.0,43.0,36.0,28.0,32.0,31.0,20.0,38.0,16.0,18.0,19.0,25.0,11.0,13.0,10.0,8.0,9.0,5.0,3.0,1.0 M84003,41.0,59.0,63.0,68.0,77.0,54.0,54.0,69.0,63.0,70.0,52.0,67.0,59.0,68.0,58.0,68.0,64.0,52.0,48.0,56.0,42.0,49.0,42.0,41.0,45.0,49.0,51.0,57.0,67.0,79.0,78.0,70.0,72.0,81.0,83.0,88.0,72.0,73.0,72.0,60.0,76.0,67.0,69.0,57.0,65.0,62.0,73.0,57.0,46.0,61.0,58.0,56.0,56.0,55.0,39.0,69.0,67.0,54.0,62.0,79.0,70.0,66.0,67.0,61.0,60.0,56.0,60.0,53.0,59.0,56.0,51.0,44.0,41.0,38.0,38.0,44.0,38.0,51.0,39.0,29.0,37.0,33.0,30.0,19.0,12.0,13.0,19.0,13.0,18.0,3.0,8.0,5.0,7.0,3.0,2.0,4.0 M84004,95.0,113.0,107.0,96.0,132.0,132.0,136.0,121.0,129.0,121.0,149.0,149.0,129.0,142.0,127.0,114.0,121.0,108.0,107.0,91.0,87.0,82.0,87.0,83.0,93.0,121.0,117.0,144.0,163.0,131.0,142.0,132.0,177.0,166.0,186.0,185.0,161.0,161.0,164.0,172.0,178.0,156.0,170.0,161.0,171.0,146.0,136.0,103.0,95.0,121.0,122.0,110.0,144.0,138.0,135.0,123.0,121.0,133.0,112.0,123.0,95.0,118.0,104.0,79.0,83.0,101.0,91.0,92.0,74.0,70.0,72.0,59.0,64.0,79.0,71.0,80.0,72.0,78.0,70.0,56.0,58.0,56.0,51.0,46.0,42.0,31.0,22.0,28.0,24.0,18.0,16.0,6.0,10.0,11.0,10.0,13.0 M84005,24.0,31.0,33.0,35.0,23.0,31.0,25.0,30.0,26.0,35.0,43.0,25.0,34.0,32.0,31.0,36.0,23.0,30.0,29.0,18.0,33.0,22.0,19.0,28.0,25.0,32.0,29.0,26.0,39.0,27.0,30.0,45.0,36.0,42.0,40.0,40.0,34.0,35.0,39.0,33.0,42.0,24.0,28.0,36.0,35.0,30.0,30.0,35.0,22.0,42.0,36.0,30.0,35.0,26.0,45.0,37.0,26.0,31.0,37.0,40.0,38.0,35.0,41.0,35.0,35.0,29.0,24.0,28.0,18.0,27.0,26.0,25.0,23.0,14.0,18.0,21.0,27.0,30.0,16.0,9.0,22.0,13.0,11.0,9.0,10.0,10.0,2.0,5.0,5.0,,,,2.0,,1.0,3.0 M84006,43.0,42.0,31.0,55.0,41.0,41.0,54.0,45.0,57.0,58.0,43.0,61.0,56.0,62.0,58.0,58.0,56.0,46.0,64.0,58.0,52.0,50.0,41.0,50.0,58.0,53.0,37.0,59.0,58.0,46.0,63.0,63.0,62.0,78.0,80.0,73.0,65.0,80.0,60.0,84.0,64.0,72.0,73.0,61.0,54.0,66.0,48.0,40.0,60.0,52.0,55.0,69.0,61.0,86.0,67.0,65.0,87.0,73.0,88.0,98.0,66.0,78.0,73.0,63.0,74.0,87.0,77.0,72.0,77.0,64.0,66.0,63.0,62.0,52.0,57.0,52.0,51.0,69.0,59.0,49.0,45.0,50.0,32.0,36.0,21.0,25.0,21.0,13.0,16.0,7.0,6.0,5.0,7.0,4.0,3.0,5.0 M84007,50.0,66.0,63.0,72.0,54.0,63.0,63.0,72.0,74.0,89.0,72.0,74.0,90.0,73.0,96.0,84.0,81.0,82.0,71.0,65.0,73.0,64.0,64.0,64.0,84.0,85.0,74.0,79.0,81.0,68.0,82.0,85.0,89.0,99.0,105.0,75.0,79.0,111.0,103.0,97.0,89.0,99.0,92.0,84.0,73.0,77.0,84.0,73.0,70.0,80.0,79.0,106.0,84.0,96.0,91.0,101.0,89.0,88.0,93.0,90.0,81.0,103.0,105.0,81.0,65.0,63.0,62.0,62.0,61.0,65.0,57.0,69.0,55.0,59.0,60.0,60.0,58.0,75.0,66.0,66.0,45.0,49.0,44.0,32.0,24.0,28.0,18.0,37.0,15.0,18.0,10.0,6.0,4.0,8.0,6.0,10.0 M84008,43.0,38.0,39.0,54.0,50.0,49.0,51.0,46.0,56.0,64.0,52.0,57.0,63.0,70.0,53.0,62.0,70.0,55.0,52.0,36.0,50.0,35.0,40.0,43.0,42.0,40.0,47.0,48.0,48.0,57.0,51.0,44.0,53.0,50.0,59.0,60.0,57.0,50.0,58.0,70.0,62.0,56.0,44.0,50.0,47.0,54.0,56.0,30.0,59.0,51.0,64.0,54.0,53.0,66.0,63.0,65.0,75.0,64.0,54.0,60.0,49.0,52.0,60.0,49.0,62.0,51.0,45.0,40.0,47.0,44.0,38.0,43.0,40.0,43.0,49.0,31.0,31.0,25.0,31.0,18.0,37.0,20.0,13.0,17.0,11.0,14.0,10.0,11.0,5.0,1.0,2.0,1.0,,1.0,, M84009,16.0,26.0,22.0,24.0,26.0,23.0,24.0,23.0,22.0,28.0,30.0,27.0,33.0,31.0,38.0,22.0,28.0,28.0,29.0,27.0,21.0,24.0,23.0,18.0,21.0,21.0,25.0,33.0,27.0,23.0,30.0,23.0,20.0,26.0,29.0,33.0,27.0,33.0,25.0,27.0,19.0,27.0,25.0,27.0,27.0,38.0,34.0,29.0,28.0,32.0,36.0,42.0,32.0,47.0,43.0,42.0,54.0,49.0,50.0,46.0,44.0,66.0,51.0,58.0,44.0,48.0,50.0,35.0,30.0,44.0,37.0,22.0,37.0,28.0,26.0,23.0,42.0,34.0,36.0,29.0,28.0,25.0,18.0,13.0,17.0,11.0,6.0,14.0,7.0,3.0,4.0,4.0,6.0,1.0,3.0,5.0 M84010,48.0,45.0,61.0,52.0,53.0,50.0,54.0,58.0,49.0,55.0,68.0,48.0,59.0,49.0,61.0,57.0,67.0,39.0,50.0,47.0,44.0,44.0,46.0,51.0,68.0,56.0,76.0,79.0,83.0,83.0,87.0,101.0,76.0,99.0,94.0,111.0,121.0,94.0,117.0,103.0,115.0,85.0,85.0,90.0,78.0,75.0,79.0,67.0,64.0,80.0,73.0,70.0,72.0,68.0,67.0,59.0,68.0,43.0,66.0,79.0,59.0,56.0,52.0,63.0,62.0,48.0,51.0,46.0,40.0,33.0,29.0,48.0,31.0,50.0,54.0,42.0,37.0,39.0,43.0,37.0,32.0,29.0,28.0,15.0,16.0,23.0,17.0,12.0,12.0,7.0,9.0,3.0,1.0,6.0,1.0,4.0 M84011,96.0,102.0,120.0,122.0,121.0,122.0,116.0,120.0,130.0,120.0,113.0,110.0,128.0,126.0,141.0,129.0,109.0,140.0,106.0,131.0,126.0,108.0,92.0,128.0,128.0,109.0,121.0,108.0,129.0,155.0,126.0,141.0,149.0,157.0,181.0,142.0,157.0,152.0,137.0,141.0,143.0,153.0,127.0,137.0,145.0,123.0,120.0,106.0,106.0,139.0,133.0,137.0,150.0,137.0,153.0,139.0,152.0,138.0,171.0,138.0,151.0,116.0,145.0,132.0,113.0,116.0,118.0,113.0,101.0,118.0,111.0,95.0,106.0,80.0,110.0,118.0,83.0,106.0,102.0,83.0,84.0,70.0,61.0,72.0,41.0,45.0,32.0,27.0,27.0,22.0,13.0,15.0,9.0,8.0,4.0,9.0 M84012,81.0,80.0,90.0,123.0,96.0,96.0,117.0,111.0,104.0,123.0,93.0,103.0,111.0,121.0,103.0,124.0,100.0,130.0,116.0,86.0,84.0,85.0,83.0,91.0,85.0,80.0,88.0,109.0,106.0,102.0,107.0,123.0,89.0,119.0,116.0,98.0,134.0,121.0,121.0,97.0,143.0,134.0,135.0,115.0,113.0,107.0,100.0,108.0,93.0,82.0,107.0,92.0,96.0,118.0,120.0,113.0,125.0,104.0,107.0,109.0,115.0,94.0,114.0,125.0,105.0,91.0,88.0,79.0,78.0,67.0,64.0,65.0,43.0,60.0,43.0,58.0,63.0,50.0,42.0,47.0,51.0,49.0,31.0,22.0,27.0,37.0,28.0,27.0,12.0,11.0,7.0,8.0,5.0,6.0,4.0,11.0 M84013,33.0,55.0,41.0,54.0,56.0,65.0,51.0,62.0,64.0,54.0,65.0,56.0,81.0,73.0,72.0,71.0,78.0,78.0,78.0,57.0,62.0,59.0,70.0,66.0,62.0,77.0,60.0,73.0,64.0,63.0,63.0,66.0,56.0,65.0,67.0,74.0,61.0,81.0,94.0,70.0,66.0,66.0,78.0,92.0,69.0,70.0,89.0,89.0,79.0,89.0,84.0,71.0,77.0,81.0,88.0,96.0,80.0,71.0,102.0,112.0,99.0,95.0,104.0,79.0,79.0,84.0,75.0,78.0,73.0,58.0,65.0,65.0,57.0,75.0,54.0,82.0,74.0,85.0,89.0,58.0,61.0,58.0,57.0,38.0,34.0,36.0,32.0,37.0,21.0,29.0,12.0,10.0,13.0,10.0,4.0,9.0 M84014,20.0,26.0,29.0,27.0,29.0,35.0,30.0,34.0,44.0,42.0,27.0,32.0,43.0,35.0,42.0,45.0,37.0,57.0,45.0,43.0,43.0,50.0,43.0,40.0,40.0,47.0,47.0,64.0,50.0,67.0,61.0,50.0,70.0,62.0,68.0,59.0,64.0,52.0,53.0,67.0,78.0,59.0,78.0,59.0,52.0,87.0,63.0,66.0,68.0,68.0,71.0,67.0,62.0,73.0,78.0,86.0,74.0,54.0,81.0,68.0,91.0,84.0,66.0,66.0,64.0,64.0,65.0,68.0,53.0,46.0,46.0,53.0,40.0,58.0,60.0,68.0,62.0,70.0,67.0,46.0,51.0,38.0,39.0,22.0,33.0,25.0,23.0,21.0,20.0,15.0,11.0,11.0,4.0,6.0,8.0,11.0 M84015,43.0,68.0,65.0,75.0,79.0,78.0,84.0,99.0,95.0,93.0,98.0,98.0,105.0,105.0,95.0,95.0,99.0,77.0,80.0,66.0,80.0,82.0,69.0,80.0,66.0,80.0,81.0,82.0,93.0,103.0,100.0,127.0,116.0,133.0,142.0,150.0,160.0,156.0,179.0,163.0,172.0,164.0,155.0,173.0,189.0,147.0,138.0,144.0,118.0,113.0,108.0,89.0,101.0,96.0,94.0,93.0,97.0,102.0,85.0,82.0,82.0,80.0,85.0,83.0,62.0,72.0,74.0,73.0,46.0,72.0,62.0,55.0,57.0,49.0,47.0,52.0,47.0,46.0,43.0,37.0,34.0,36.0,34.0,17.0,18.0,24.0,18.0,13.0,13.0,10.0,10.0,8.0,6.0,6.0,2.0,12.0 M84016,17.0,20.0,18.0,21.0,21.0,22.0,23.0,23.0,20.0,23.0,23.0,15.0,25.0,25.0,29.0,21.0,21.0,27.0,25.0,27.0,18.0,15.0,21.0,25.0,32.0,21.0,22.0,23.0,26.0,37.0,26.0,22.0,28.0,36.0,36.0,25.0,37.0,33.0,19.0,30.0,24.0,31.0,27.0,35.0,26.0,29.0,23.0,26.0,24.0,27.0,29.0,33.0,23.0,39.0,31.0,34.0,32.0,30.0,35.0,43.0,31.0,31.0,40.0,30.0,19.0,26.0,23.0,28.0,30.0,26.0,26.0,19.0,40.0,23.0,30.0,19.0,20.0,33.0,28.0,33.0,27.0,18.0,24.0,19.0,13.0,9.0,15.0,11.0,4.0,8.0,3.0,2.0,1.0,2.0,,2.0 M84017,59.0,47.0,50.0,59.0,52.0,89.0,73.0,65.0,79.0,58.0,88.0,71.0,80.0,68.0,69.0,80.0,82.0,81.0,81.0,64.0,64.0,73.0,71.0,75.0,74.0,87.0,92.0,90.0,94.0,113.0,111.0,103.0,110.0,132.0,132.0,133.0,131.0,133.0,133.0,106.0,137.0,115.0,118.0,136.0,126.0,99.0,124.0,123.0,120.0,119.0,108.0,114.0,121.0,98.0,92.0,99.0,94.0,109.0,91.0,102.0,90.0,91.0,76.0,84.0,65.0,62.0,44.0,67.0,66.0,60.0,65.0,58.0,57.0,46.0,67.0,58.0,51.0,58.0,57.0,43.0,60.0,43.0,48.0,33.0,35.0,30.0,31.0,24.0,26.0,12.0,8.0,10.0,4.0,5.0,9.0,10.0 M84018,64.0,62.0,54.0,71.0,67.0,86.0,47.0,73.0,65.0,72.0,72.0,70.0,68.0,73.0,73.0,81.0,69.0,71.0,67.0,46.0,71.0,55.0,62.0,66.0,74.0,68.0,68.0,63.0,54.0,75.0,60.0,79.0,71.0,82.0,78.0,78.0,98.0,82.0,80.0,74.0,68.0,90.0,71.0,73.0,81.0,83.0,70.0,67.0,72.0,91.0,76.0,83.0,95.0,121.0,79.0,106.0,99.0,111.0,119.0,127.0,141.0,118.0,118.0,116.0,115.0,114.0,115.0,114.0,81.0,77.0,86.0,81.0,93.0,90.0,76.0,86.0,102.0,86.0,90.0,63.0,57.0,67.0,58.0,45.0,27.0,26.0,38.0,29.0,23.0,20.0,16.0,9.0,5.0,4.0,6.0,11.0 M84019,68.0,63.0,84.0,83.0,91.0,101.0,91.0,97.0,96.0,97.0,83.0,125.0,120.0,93.0,117.0,94.0,108.0,110.0,95.0,87.0,89.0,80.0,83.0,75.0,82.0,71.0,93.0,98.0,102.0,90.0,114.0,95.0,112.0,115.0,112.0,114.0,133.0,113.0,89.0,121.0,103.0,89.0,112.0,105.0,104.0,77.0,109.0,82.0,92.0,96.0,107.0,115.0,116.0,131.0,123.0,110.0,140.0,121.0,122.0,119.0,130.0,119.0,127.0,116.0,82.0,114.0,99.0,104.0,93.0,84.0,84.0,109.0,88.0,86.0,87.0,90.0,81.0,75.0,76.0,61.0,70.0,61.0,59.0,49.0,28.0,25.0,32.0,26.0,17.0,20.0,16.0,11.0,8.0,8.0,1.0,9.0 M84020,69.0,60.0,72.0,96.0,87.0,82.0,73.0,91.0,92.0,95.0,100.0,94.0,95.0,114.0,100.0,83.0,99.0,84.0,69.0,77.0,80.0,65.0,55.0,54.0,61.0,62.0,78.0,89.0,91.0,107.0,121.0,114.0,119.0,128.0,129.0,127.0,146.0,118.0,137.0,114.0,161.0,89.0,113.0,125.0,135.0,124.0,122.0,87.0,109.0,92.0,102.0,87.0,103.0,111.0,96.0,112.0,104.0,94.0,86.0,99.0,100.0,94.0,92.0,80.0,89.0,75.0,93.0,82.0,61.0,57.0,64.0,45.0,49.0,56.0,61.0,51.0,60.0,41.0,54.0,51.0,42.0,48.0,40.0,43.0,32.0,25.0,31.0,19.0,20.0,17.0,10.0,10.0,4.0,5.0,9.0,5.0 M84021,39.0,69.0,54.0,66.0,82.0,60.0,89.0,92.0,85.0,85.0,107.0,88.0,95.0,111.0,101.0,94.0,110.0,87.0,89.0,63.0,72.0,67.0,70.0,79.0,86.0,88.0,88.0,85.0,93.0,96.0,98.0,97.0,106.0,134.0,137.0,132.0,105.0,117.0,131.0,129.0,138.0,129.0,131.0,116.0,130.0,126.0,137.0,117.0,98.0,105.0,106.0,95.0,104.0,119.0,119.0,126.0,109.0,131.0,93.0,102.0,126.0,120.0,89.0,105.0,110.0,111.0,104.0,87.0,101.0,98.0,70.0,107.0,84.0,79.0,74.0,80.0,94.0,113.0,87.0,75.0,65.0,75.0,59.0,35.0,44.0,47.0,31.0,29.0,38.0,18.0,21.0,14.0,8.0,13.0,6.0,19.0 M84022,25.0,24.0,39.0,50.0,32.0,35.0,53.0,45.0,49.0,66.0,45.0,61.0,65.0,42.0,59.0,67.0,56.0,54.0,53.0,49.0,46.0,54.0,41.0,45.0,46.0,48.0,42.0,45.0,42.0,60.0,52.0,45.0,53.0,58.0,64.0,59.0,70.0,56.0,59.0,65.0,55.0,73.0,71.0,61.0,79.0,71.0,52.0,51.0,46.0,66.0,58.0,60.0,49.0,45.0,68.0,60.0,53.0,48.0,57.0,58.0,64.0,55.0,53.0,42.0,43.0,56.0,50.0,60.0,34.0,35.0,36.0,57.0,36.0,39.0,29.0,41.0,33.0,34.0,31.0,15.0,32.0,28.0,16.0,21.0,8.0,11.0,11.0,7.0,12.0,6.0,4.0,7.0,2.0,3.0,2.0,5.0 M84023,70.0,81.0,91.0,88.0,85.0,104.0,105.0,97.0,139.0,140.0,131.0,161.0,174.0,157.0,153.0,148.0,152.0,134.0,126.0,113.0,120.0,110.0,116.0,99.0,109.0,116.0,90.0,115.0,134.0,132.0,108.0,122.0,123.0,139.0,179.0,156.0,153.0,163.0,169.0,177.0,195.0,200.0,219.0,183.0,209.0,175.0,155.0,186.0,175.0,176.0,172.0,162.0,149.0,178.0,146.0,153.0,153.0,135.0,147.0,130.0,133.0,146.0,137.0,131.0,84.0,117.0,101.0,108.0,72.0,69.0,59.0,64.0,69.0,62.0,61.0,52.0,51.0,62.0,52.0,49.0,47.0,45.0,38.0,35.0,34.0,23.0,28.0,28.0,13.0,8.0,11.0,11.0,7.0,4.0,6.0,7.0 M84024,17.0,24.0,19.0,30.0,24.0,25.0,22.0,26.0,24.0,22.0,29.0,23.0,30.0,34.0,35.0,33.0,40.0,34.0,31.0,33.0,29.0,29.0,31.0,34.0,36.0,29.0,35.0,32.0,26.0,28.0,16.0,37.0,25.0,25.0,24.0,31.0,38.0,32.0,34.0,28.0,28.0,28.0,25.0,35.0,34.0,31.0,28.0,22.0,26.0,31.0,41.0,41.0,46.0,34.0,50.0,43.0,48.0,61.0,57.0,50.0,55.0,49.0,61.0,54.0,66.0,59.0,46.0,46.0,51.0,41.0,43.0,35.0,43.0,49.0,51.0,26.0,45.0,44.0,40.0,47.0,49.0,46.0,32.0,19.0,33.0,18.0,26.0,15.0,16.0,12.0,10.0,5.0,8.0,2.0,3.0,10.0 M84025,59.0,54.0,53.0,55.0,37.0,58.0,47.0,48.0,58.0,72.0,52.0,53.0,56.0,73.0,74.0,79.0,73.0,66.0,51.0,42.0,58.0,52.0,53.0,47.0,56.0,49.0,44.0,46.0,41.0,55.0,56.0,43.0,65.0,74.0,79.0,63.0,54.0,67.0,75.0,67.0,72.0,64.0,60.0,70.0,53.0,59.0,67.0,70.0,53.0,60.0,68.0,81.0,71.0,104.0,72.0,81.0,104.0,86.0,94.0,85.0,104.0,101.0,106.0,100.0,102.0,94.0,76.0,88.0,85.0,72.0,75.0,83.0,59.0,74.0,69.0,75.0,88.0,72.0,83.0,50.0,56.0,70.0,47.0,39.0,33.0,42.0,24.0,34.0,27.0,25.0,18.0,15.0,17.0,3.0,7.0,15.0 M84026,23.0,27.0,29.0,27.0,35.0,23.0,38.0,27.0,42.0,44.0,38.0,45.0,42.0,36.0,36.0,36.0,56.0,40.0,44.0,35.0,30.0,32.0,40.0,31.0,31.0,52.0,50.0,31.0,48.0,38.0,56.0,38.0,40.0,51.0,47.0,52.0,49.0,42.0,45.0,48.0,38.0,36.0,33.0,41.0,49.0,40.0,41.0,44.0,51.0,52.0,60.0,35.0,40.0,46.0,42.0,60.0,49.0,54.0,54.0,60.0,56.0,38.0,55.0,56.0,62.0,49.0,48.0,41.0,40.0,44.0,35.0,38.0,39.0,38.0,38.0,32.0,36.0,50.0,34.0,30.0,43.0,34.0,20.0,22.0,17.0,25.0,16.0,10.0,16.0,10.0,9.0,3.0,6.0,1.0,4.0,7.0 M84028,75.0,90.0,83.0,94.0,83.0,111.0,98.0,84.0,84.0,97.0,107.0,90.0,96.0,116.0,123.0,113.0,98.0,121.0,89.0,99.0,90.0,84.0,90.0,83.0,101.0,116.0,112.0,136.0,132.0,115.0,132.0,138.0,159.0,167.0,151.0,155.0,174.0,156.0,162.0,141.0,139.0,152.0,150.0,145.0,158.0,137.0,134.0,121.0,134.0,117.0,148.0,124.0,114.0,147.0,111.0,111.0,144.0,120.0,122.0,131.0,119.0,148.0,121.0,116.0,100.0,134.0,101.0,97.0,98.0,88.0,94.0,107.0,79.0,86.0,82.0,94.0,92.0,85.0,86.0,60.0,65.0,55.0,71.0,44.0,36.0,21.0,35.0,25.0,23.0,22.0,11.0,20.0,10.0,6.0,3.0,12.0 M84029,32.0,47.0,36.0,45.0,26.0,44.0,56.0,34.0,47.0,40.0,50.0,52.0,41.0,43.0,43.0,51.0,58.0,49.0,39.0,34.0,38.0,33.0,34.0,40.0,50.0,37.0,44.0,54.0,48.0,48.0,46.0,54.0,55.0,52.0,62.0,62.0,46.0,50.0,56.0,48.0,64.0,51.0,41.0,50.0,51.0,51.0,51.0,50.0,35.0,52.0,56.0,53.0,52.0,53.0,51.0,35.0,59.0,61.0,58.0,46.0,61.0,55.0,57.0,52.0,42.0,30.0,43.0,43.0,39.0,42.0,21.0,32.0,39.0,19.0,33.0,35.0,37.0,29.0,45.0,31.0,28.0,28.0,30.0,17.0,14.0,17.0,23.0,23.0,7.0,12.0,10.0,6.0,7.0,5.0,3.0,8.0 M84030,47.0,65.0,60.0,83.0,79.0,67.0,77.0,65.0,63.0,68.0,61.0,68.0,69.0,68.0,75.0,72.0,72.0,64.0,45.0,70.0,57.0,50.0,55.0,66.0,45.0,52.0,55.0,59.0,66.0,65.0,75.0,73.0,82.0,90.0,92.0,94.0,84.0,91.0,78.0,81.0,104.0,85.0,85.0,82.0,93.0,83.0,58.0,59.0,81.0,83.0,90.0,70.0,85.0,92.0,95.0,101.0,83.0,70.0,127.0,102.0,88.0,108.0,104.0,87.0,97.0,71.0,77.0,86.0,94.0,70.0,77.0,70.0,77.0,72.0,72.0,68.0,71.0,81.0,85.0,60.0,59.0,62.0,51.0,34.0,34.0,39.0,33.0,27.0,29.0,21.0,12.0,10.0,9.0,9.0,10.0,13.0 M84031,19.0,31.0,35.0,36.0,38.0,40.0,41.0,39.0,39.0,47.0,48.0,37.0,57.0,61.0,102.0,89.0,131.0,132.0,91.0,32.0,44.0,32.0,39.0,26.0,22.0,26.0,41.0,29.0,29.0,31.0,24.0,34.0,38.0,55.0,53.0,45.0,43.0,35.0,38.0,39.0,39.0,44.0,46.0,55.0,31.0,48.0,46.0,46.0,38.0,39.0,52.0,47.0,55.0,39.0,63.0,57.0,55.0,50.0,61.0,63.0,70.0,59.0,61.0,75.0,55.0,54.0,45.0,40.0,40.0,44.0,42.0,33.0,37.0,35.0,43.0,32.0,32.0,45.0,40.0,31.0,35.0,23.0,15.0,17.0,25.0,12.0,10.0,7.0,9.0,8.0,8.0,2.0,6.0,2.0,1.0,6.0 M84032,79.0,66.0,92.0,92.0,93.0,85.0,81.0,105.0,89.0,89.0,86.0,78.0,94.0,67.0,63.0,70.0,68.0,71.0,72.0,57.0,70.0,77.0,111.0,91.0,100.0,108.0,125.0,132.0,132.0,157.0,169.0,162.0,205.0,190.0,220.0,215.0,213.0,202.0,218.0,172.0,172.0,201.0,141.0,156.0,152.0,117.0,110.0,103.0,102.0,99.0,110.0,97.0,72.0,82.0,79.0,73.0,76.0,75.0,83.0,74.0,64.0,64.0,59.0,62.0,30.0,45.0,52.0,45.0,51.0,41.0,35.0,35.0,33.0,27.0,40.0,36.0,39.0,39.0,30.0,22.0,29.0,22.0,31.0,17.0,17.0,23.0,14.0,10.0,7.0,12.0,11.0,8.0,3.0,3.0,,7.0 M84034,9.0,15.0,19.0,16.0,9.0,15.0,16.0,13.0,15.0,13.0,15.0,16.0,16.0,18.0,19.0,9.0,13.0,21.0,18.0,9.0,13.0,8.0,7.0,15.0,15.0,14.0,16.0,21.0,12.0,13.0,16.0,12.0,10.0,17.0,19.0,18.0,17.0,17.0,18.0,27.0,30.0,23.0,15.0,13.0,17.0,23.0,11.0,22.0,11.0,19.0,14.0,9.0,16.0,17.0,21.0,22.0,18.0,18.0,19.0,20.0,10.0,22.0,9.0,19.0,17.0,11.0,9.0,9.0,13.0,9.0,7.0,12.0,5.0,12.0,13.0,8.0,6.0,15.0,15.0,8.0,4.0,5.0,4.0,3.0,5.0,6.0,1.0,3.0,5.0,1.0,,4.0,,2.0,2.0, M84035,50.0,58.0,45.0,63.0,58.0,60.0,72.0,75.0,76.0,90.0,72.0,73.0,100.0,88.0,97.0,85.0,72.0,65.0,61.0,94.0,68.0,60.0,62.0,60.0,64.0,56.0,66.0,73.0,83.0,71.0,65.0,74.0,89.0,88.0,90.0,112.0,111.0,101.0,110.0,113.0,126.0,98.0,88.0,119.0,108.0,101.0,95.0,86.0,87.0,92.0,82.0,86.0,83.0,104.0,84.0,80.0,88.0,82.0,71.0,66.0,65.0,51.0,76.0,72.0,68.0,46.0,45.0,48.0,44.0,57.0,39.0,44.0,29.0,42.0,38.0,32.0,44.0,36.0,34.0,37.0,23.0,39.0,22.0,17.0,21.0,23.0,12.0,19.0,11.0,11.0,8.0,6.0,2.0,4.0,6.0,7.0 M84036,65.0,72.0,57.0,59.0,70.0,87.0,62.0,95.0,91.0,93.0,114.0,102.0,112.0,92.0,91.0,116.0,93.0,97.0,91.0,54.0,96.0,70.0,65.0,80.0,78.0,99.0,91.0,82.0,95.0,97.0,99.0,87.0,92.0,118.0,96.0,93.0,109.0,113.0,104.0,101.0,104.0,99.0,96.0,105.0,105.0,105.0,98.0,113.0,107.0,104.0,99.0,101.0,101.0,95.0,107.0,114.0,108.0,82.0,99.0,106.0,96.0,117.0,119.0,111.0,99.0,100.0,108.0,79.0,75.0,65.0,77.0,67.0,89.0,68.0,78.0,76.0,76.0,80.0,76.0,74.0,77.0,70.0,49.0,38.0,43.0,32.0,30.0,41.0,30.0,30.0,7.0,19.0,11.0,14.0,3.0,17.0 M84037,63.0,51.0,63.0,67.0,57.0,80.0,81.0,73.0,89.0,77.0,86.0,81.0,88.0,77.0,77.0,69.0,65.0,72.0,69.0,58.0,63.0,59.0,54.0,63.0,40.0,47.0,69.0,63.0,64.0,52.0,57.0,77.0,74.0,71.0,75.0,89.0,98.0,85.0,82.0,82.0,70.0,70.0,73.0,100.0,87.0,85.0,66.0,76.0,67.0,81.0,73.0,73.0,82.0,70.0,80.0,93.0,81.0,64.0,73.0,98.0,92.0,74.0,87.0,68.0,74.0,60.0,68.0,68.0,59.0,62.0,70.0,46.0,74.0,71.0,61.0,77.0,66.0,54.0,56.0,42.0,41.0,53.0,37.0,31.0,22.0,25.0,31.0,27.0,14.0,12.0,10.0,9.0,6.0,9.0,5.0,5.0 M84040,39.0,32.0,46.0,45.0,39.0,43.0,37.0,46.0,37.0,46.0,33.0,46.0,41.0,50.0,54.0,36.0,41.0,45.0,40.0,41.0,51.0,52.0,70.0,71.0,101.0,102.0,87.0,112.0,104.0,113.0,98.0,115.0,119.0,100.0,122.0,121.0,129.0,93.0,116.0,86.0,106.0,104.0,97.0,93.0,81.0,75.0,83.0,73.0,81.0,68.0,80.0,64.0,61.0,67.0,74.0,76.0,81.0,71.0,71.0,80.0,70.0,82.0,50.0,63.0,66.0,66.0,47.0,48.0,49.0,48.0,64.0,35.0,45.0,39.0,43.0,43.0,32.0,45.0,47.0,37.0,39.0,17.0,23.0,18.0,19.0,17.0,17.0,11.0,12.0,13.0,4.0,9.0,6.0,5.0,7.0,11.0 M84041,46.0,42.0,50.0,55.0,44.0,37.0,51.0,49.0,43.0,42.0,35.0,33.0,41.0,40.0,41.0,36.0,46.0,33.0,26.0,31.0,20.0,39.0,35.0,37.0,34.0,42.0,54.0,48.0,36.0,57.0,57.0,64.0,61.0,73.0,70.0,80.0,67.0,76.0,66.0,60.0,71.0,67.0,65.0,58.0,39.0,65.0,49.0,47.0,48.0,44.0,45.0,45.0,49.0,50.0,36.0,42.0,36.0,38.0,46.0,33.0,34.0,37.0,30.0,41.0,38.0,33.0,30.0,28.0,36.0,39.0,25.0,29.0,31.0,39.0,28.0,25.0,24.0,21.0,33.0,21.0,20.0,24.0,8.0,9.0,14.0,6.0,9.0,11.0,2.0,7.0,2.0,3.0,2.0,1.0,1.0,3.0 M84042,39.0,60.0,58.0,36.0,55.0,59.0,50.0,43.0,57.0,47.0,67.0,68.0,49.0,70.0,44.0,53.0,46.0,42.0,41.0,38.0,42.0,50.0,49.0,45.0,36.0,47.0,42.0,49.0,62.0,65.0,56.0,59.0,66.0,50.0,63.0,77.0,67.0,83.0,65.0,67.0,56.0,81.0,58.0,53.0,58.0,71.0,44.0,57.0,55.0,61.0,53.0,48.0,79.0,77.0,89.0,69.0,87.0,76.0,83.0,91.0,99.0,80.0,82.0,75.0,90.0,66.0,74.0,71.0,54.0,57.0,54.0,57.0,54.0,58.0,52.0,64.0,62.0,65.0,53.0,39.0,45.0,46.0,38.0,20.0,20.0,25.0,26.0,19.0,16.0,14.0,13.0,5.0,11.0,8.0,6.0,9.0 M84043,79.0,79.0,100.0,92.0,83.0,91.0,102.0,107.0,103.0,102.0,116.0,116.0,118.0,100.0,104.0,112.0,116.0,127.0,113.0,103.0,91.0,97.0,95.0,105.0,100.0,117.0,130.0,127.0,127.0,126.0,116.0,114.0,131.0,155.0,162.0,165.0,154.0,176.0,191.0,146.0,158.0,149.0,188.0,174.0,159.0,154.0,151.0,136.0,136.0,121.0,162.0,158.0,126.0,160.0,150.0,139.0,149.0,144.0,141.0,150.0,149.0,153.0,162.0,137.0,146.0,128.0,122.0,135.0,103.0,106.0,106.0,120.0,102.0,110.0,93.0,105.0,91.0,106.0,98.0,107.0,90.0,72.0,68.0,50.0,40.0,46.0,37.0,32.0,41.0,30.0,23.0,13.0,10.0,10.0,8.0,21.0 M84044,21.0,23.0,25.0,29.0,29.0,36.0,25.0,34.0,29.0,30.0,35.0,31.0,35.0,27.0,35.0,27.0,34.0,29.0,32.0,11.0,22.0,26.0,18.0,28.0,26.0,21.0,29.0,28.0,40.0,31.0,29.0,41.0,34.0,31.0,46.0,40.0,45.0,39.0,37.0,29.0,37.0,30.0,31.0,33.0,34.0,33.0,31.0,41.0,26.0,37.0,50.0,34.0,47.0,44.0,39.0,45.0,40.0,41.0,44.0,44.0,42.0,46.0,35.0,49.0,37.0,40.0,39.0,33.0,36.0,43.0,27.0,41.0,34.0,35.0,27.0,39.0,28.0,39.0,32.0,35.0,39.0,20.0,30.0,25.0,14.0,16.0,18.0,15.0,15.0,4.0,6.0,3.0,5.0,2.0,4.0,2.0 M84046,23.0,32.0,28.0,34.0,26.0,35.0,50.0,49.0,45.0,54.0,50.0,52.0,40.0,39.0,47.0,52.0,43.0,33.0,36.0,47.0,31.0,41.0,43.0,43.0,29.0,37.0,31.0,25.0,29.0,35.0,34.0,42.0,43.0,47.0,32.0,51.0,53.0,50.0,63.0,45.0,51.0,37.0,55.0,47.0,48.0,60.0,43.0,54.0,55.0,47.0,51.0,64.0,61.0,59.0,66.0,55.0,53.0,52.0,53.0,67.0,57.0,58.0,54.0,67.0,56.0,34.0,46.0,40.0,55.0,33.0,26.0,37.0,33.0,44.0,41.0,47.0,51.0,46.0,48.0,60.0,51.0,46.0,30.0,29.0,27.0,25.0,22.0,23.0,21.0,26.0,13.0,13.0,5.0,9.0,6.0,5.0 M84047,15.0,20.0,11.0,19.0,32.0,25.0,22.0,23.0,26.0,27.0,27.0,18.0,25.0,22.0,25.0,34.0,24.0,29.0,24.0,21.0,24.0,21.0,27.0,26.0,23.0,20.0,25.0,27.0,32.0,29.0,29.0,17.0,28.0,21.0,28.0,26.0,32.0,27.0,34.0,19.0,19.0,35.0,33.0,20.0,21.0,33.0,25.0,27.0,40.0,31.0,21.0,40.0,36.0,35.0,29.0,38.0,37.0,53.0,49.0,47.0,45.0,41.0,38.0,39.0,48.0,46.0,57.0,37.0,32.0,29.0,41.0,34.0,41.0,35.0,41.0,31.0,30.0,41.0,37.0,34.0,36.0,28.0,22.0,15.0,16.0,20.0,14.0,9.0,13.0,7.0,7.0,5.0,3.0,8.0,5.0,6.0 M84049,10.0,24.0,26.0,22.0,25.0,28.0,24.0,20.0,36.0,31.0,24.0,27.0,34.0,25.0,32.0,24.0,28.0,34.0,29.0,24.0,30.0,26.0,22.0,30.0,24.0,35.0,24.0,25.0,38.0,32.0,37.0,22.0,41.0,36.0,34.0,25.0,28.0,35.0,29.0,28.0,28.0,36.0,26.0,37.0,29.0,34.0,24.0,31.0,28.0,42.0,22.0,32.0,33.0,38.0,43.0,51.0,44.0,36.0,43.0,59.0,54.0,49.0,42.0,44.0,48.0,49.0,42.0,41.0,38.0,40.0,42.0,38.0,26.0,33.0,44.0,35.0,42.0,44.0,42.0,34.0,28.0,32.0,30.0,20.0,14.0,27.0,16.0,10.0,7.0,14.0,6.0,11.0,5.0,7.0,3.0,4.0 M84050,41.0,33.0,47.0,49.0,46.0,53.0,58.0,60.0,64.0,57.0,67.0,57.0,53.0,62.0,61.0,55.0,48.0,50.0,56.0,41.0,35.0,33.0,29.0,31.0,44.0,40.0,45.0,58.0,57.0,58.0,61.0,65.0,71.0,89.0,77.0,72.0,96.0,79.0,73.0,77.0,78.0,73.0,82.0,65.0,59.0,56.0,62.0,53.0,41.0,49.0,59.0,49.0,42.0,55.0,58.0,57.0,43.0,51.0,54.0,47.0,40.0,49.0,56.0,50.0,35.0,47.0,40.0,42.0,33.0,27.0,25.0,25.0,15.0,17.0,19.0,23.0,19.0,22.0,15.0,17.0,16.0,17.0,13.0,17.0,11.0,6.0,10.0,13.0,5.0,1.0,5.0,6.0,2.0,3.0,2.0,4.0 M84051,84.0,78.0,91.0,90.0,86.0,80.0,82.0,81.0,100.0,81.0,74.0,86.0,85.0,92.0,81.0,80.0,66.0,69.0,85.0,66.0,63.0,65.0,62.0,77.0,77.0,81.0,96.0,97.0,88.0,114.0,110.0,97.0,125.0,120.0,150.0,118.0,130.0,112.0,98.0,120.0,108.0,112.0,111.0,104.0,84.0,85.0,89.0,77.0,72.0,70.0,81.0,68.0,95.0,80.0,81.0,83.0,102.0,87.0,71.0,100.0,94.0,77.0,68.0,92.0,85.0,74.0,63.0,68.0,62.0,54.0,43.0,41.0,52.0,40.0,33.0,60.0,42.0,44.0,40.0,33.0,40.0,34.0,26.0,23.0,13.0,13.0,11.0,13.0,7.0,8.0,8.0,5.0,1.0,,1.0, M84055,5.0,4.0,7.0,8.0,9.0,7.0,8.0,14.0,7.0,6.0,9.0,8.0,9.0,7.0,13.0,11.0,12.0,13.0,6.0,8.0,8.0,10.0,8.0,11.0,15.0,9.0,17.0,15.0,9.0,13.0,20.0,17.0,3.0,18.0,21.0,22.0,14.0,16.0,10.0,17.0,7.0,22.0,13.0,11.0,15.0,11.0,13.0,10.0,16.0,14.0,10.0,15.0,10.0,18.0,18.0,20.0,20.0,15.0,30.0,15.0,20.0,21.0,27.0,13.0,24.0,18.0,12.0,15.0,11.0,13.0,24.0,18.0,12.0,11.0,10.0,19.0,19.0,14.0,15.0,11.0,10.0,9.0,10.0,6.0,5.0,6.0,1.0,1.0,2.0,1.0,1.0,2.0,1.0,1.0,,1.0 M84059,16.0,10.0,13.0,9.0,15.0,12.0,16.0,17.0,14.0,24.0,16.0,26.0,17.0,24.0,23.0,16.0,21.0,18.0,11.0,20.0,19.0,19.0,17.0,30.0,32.0,25.0,38.0,33.0,32.0,35.0,34.0,25.0,31.0,41.0,42.0,45.0,36.0,50.0,39.0,38.0,47.0,53.0,42.0,43.0,39.0,45.0,39.0,30.0,33.0,23.0,34.0,48.0,32.0,25.0,20.0,19.0,18.0,23.0,24.0,28.0,17.0,25.0,22.0,24.0,22.0,19.0,17.0,14.0,17.0,19.0,26.0,15.0,21.0,15.0,12.0,17.0,12.0,9.0,13.0,8.0,13.0,6.0,9.0,9.0,6.0,9.0,7.0,6.0,4.0,1.0,2.0,3.0,3.0,2.0,1.0,2.0 M84060,30.0,28.0,23.0,24.0,32.0,29.0,32.0,41.0,38.0,34.0,36.0,32.0,44.0,35.0,28.0,40.0,32.0,49.0,39.0,26.0,25.0,34.0,25.0,19.0,31.0,22.0,31.0,41.0,24.0,31.0,33.0,32.0,34.0,33.0,40.0,43.0,37.0,41.0,39.0,40.0,32.0,41.0,37.0,44.0,40.0,43.0,46.0,45.0,40.0,46.0,35.0,42.0,59.0,56.0,45.0,56.0,48.0,49.0,44.0,49.0,50.0,53.0,47.0,53.0,43.0,38.0,41.0,38.0,38.0,41.0,48.0,40.0,50.0,43.0,31.0,28.0,35.0,41.0,56.0,31.0,42.0,28.0,27.0,18.0,16.0,22.0,19.0,8.0,10.0,5.0,10.0,7.0,3.0,6.0,1.0,6.0 M84061,27.0,25.0,29.0,29.0,31.0,31.0,27.0,42.0,23.0,31.0,36.0,24.0,33.0,31.0,34.0,33.0,30.0,28.0,23.0,28.0,19.0,35.0,22.0,25.0,20.0,20.0,34.0,28.0,34.0,27.0,23.0,26.0,37.0,39.0,38.0,26.0,29.0,25.0,34.0,27.0,42.0,33.0,31.0,31.0,40.0,27.0,31.0,27.0,29.0,29.0,33.0,37.0,35.0,38.0,46.0,31.0,41.0,34.0,49.0,41.0,34.0,55.0,30.0,49.0,48.0,40.0,37.0,44.0,45.0,30.0,42.0,33.0,40.0,39.0,24.0,35.0,32.0,30.0,42.0,30.0,43.0,34.0,26.0,28.0,24.0,20.0,20.0,12.0,12.0,13.0,5.0,6.0,2.0,7.0,1.0,6.0 M84062,47.0,47.0,40.0,47.0,47.0,30.0,40.0,46.0,37.0,44.0,38.0,36.0,50.0,40.0,32.0,32.0,35.0,39.0,38.0,26.0,29.0,24.0,36.0,38.0,51.0,34.0,37.0,44.0,48.0,43.0,52.0,57.0,48.0,56.0,70.0,60.0,58.0,58.0,65.0,48.0,58.0,55.0,52.0,53.0,67.0,51.0,37.0,41.0,33.0,36.0,37.0,45.0,59.0,52.0,49.0,59.0,57.0,59.0,48.0,56.0,51.0,46.0,65.0,47.0,61.0,56.0,50.0,38.0,44.0,35.0,39.0,33.0,27.0,37.0,26.0,26.0,31.0,18.0,30.0,27.0,21.0,21.0,12.0,13.0,8.0,9.0,11.0,8.0,4.0,4.0,2.0,1.0,2.0,2.0,,3.0 M84063,21.0,33.0,33.0,29.0,42.0,49.0,48.0,61.0,45.0,56.0,53.0,54.0,68.0,71.0,74.0,46.0,52.0,54.0,50.0,38.0,47.0,31.0,29.0,40.0,27.0,47.0,35.0,44.0,43.0,45.0,45.0,34.0,44.0,56.0,38.0,60.0,52.0,56.0,29.0,52.0,60.0,48.0,58.0,72.0,56.0,47.0,53.0,53.0,49.0,47.0,51.0,60.0,57.0,50.0,42.0,54.0,58.0,44.0,45.0,38.0,40.0,25.0,48.0,53.0,30.0,31.0,33.0,21.0,31.0,23.0,25.0,18.0,26.0,27.0,15.0,28.0,14.0,33.0,22.0,32.0,20.0,24.0,16.0,15.0,13.0,7.0,9.0,8.0,12.0,8.0,7.0,3.0,3.0,1.0,,12.0 M84064,37.0,32.0,30.0,51.0,51.0,48.0,51.0,51.0,32.0,48.0,53.0,51.0,43.0,51.0,38.0,40.0,38.0,38.0,45.0,24.0,39.0,29.0,27.0,30.0,38.0,41.0,35.0,50.0,45.0,41.0,40.0,43.0,54.0,63.0,76.0,70.0,82.0,73.0,71.0,65.0,56.0,56.0,55.0,63.0,60.0,59.0,42.0,51.0,52.0,43.0,48.0,51.0,53.0,49.0,40.0,43.0,39.0,48.0,45.0,37.0,54.0,40.0,28.0,36.0,40.0,32.0,39.0,32.0,27.0,31.0,31.0,21.0,25.0,19.0,25.0,28.0,23.0,23.0,22.0,18.0,10.0,14.0,12.0,11.0,11.0,11.0,5.0,10.0,5.0,7.0,5.0,5.0,3.0,3.0,1.0,4.0 M84065,43.0,42.0,59.0,49.0,45.0,59.0,62.0,51.0,42.0,57.0,45.0,53.0,48.0,41.0,53.0,33.0,50.0,38.0,35.0,32.0,33.0,33.0,41.0,35.0,34.0,55.0,50.0,60.0,62.0,58.0,76.0,80.0,93.0,101.0,100.0,109.0,110.0,101.0,95.0,102.0,80.0,77.0,88.0,96.0,87.0,68.0,70.0,79.0,52.0,59.0,65.0,71.0,65.0,34.0,66.0,36.0,44.0,46.0,40.0,34.0,42.0,48.0,39.0,36.0,36.0,29.0,21.0,28.0,28.0,22.0,37.0,33.0,19.0,25.0,20.0,20.0,11.0,19.0,27.0,17.0,7.0,17.0,14.0,13.0,7.0,9.0,10.0,3.0,1.0,3.0,5.0,3.0,2.0,2.0,1.0,3.0 M84066,32.0,40.0,33.0,60.0,57.0,45.0,43.0,51.0,48.0,52.0,36.0,40.0,45.0,39.0,54.0,36.0,44.0,32.0,35.0,23.0,20.0,33.0,14.0,20.0,31.0,32.0,27.0,33.0,28.0,23.0,29.0,45.0,31.0,51.0,36.0,56.0,48.0,45.0,46.0,51.0,44.0,40.0,48.0,50.0,51.0,63.0,41.0,47.0,40.0,28.0,43.0,44.0,44.0,44.0,38.0,47.0,50.0,46.0,45.0,45.0,45.0,47.0,41.0,43.0,37.0,36.0,31.0,28.0,30.0,29.0,35.0,42.0,28.0,40.0,20.0,33.0,29.0,32.0,37.0,37.0,25.0,19.0,14.0,16.0,7.0,12.0,16.0,3.0,9.0,5.0,5.0,2.0,4.0,2.0,3.0,2.0 M84067,25.0,33.0,43.0,35.0,39.0,43.0,45.0,48.0,34.0,49.0,44.0,38.0,42.0,50.0,52.0,46.0,50.0,45.0,51.0,48.0,37.0,45.0,33.0,45.0,35.0,44.0,41.0,38.0,35.0,41.0,47.0,56.0,47.0,52.0,58.0,61.0,56.0,64.0,67.0,60.0,72.0,46.0,56.0,70.0,52.0,58.0,60.0,50.0,51.0,57.0,52.0,51.0,59.0,60.0,51.0,55.0,45.0,38.0,54.0,41.0,61.0,50.0,43.0,49.0,52.0,47.0,44.0,28.0,26.0,26.0,27.0,30.0,32.0,26.0,27.0,27.0,39.0,30.0,37.0,27.0,24.0,23.0,23.0,18.0,23.0,21.0,19.0,10.0,12.0,7.0,7.0,3.0,4.0,4.0,2.0,5.0 M84069,32.0,28.0,31.0,34.0,33.0,32.0,38.0,40.0,36.0,34.0,28.0,35.0,49.0,43.0,19.0,20.0,50.0,48.0,35.0,28.0,31.0,32.0,30.0,40.0,19.0,26.0,45.0,41.0,36.0,32.0,39.0,41.0,48.0,50.0,41.0,39.0,33.0,36.0,36.0,36.0,44.0,41.0,52.0,43.0,42.0,38.0,39.0,45.0,44.0,35.0,50.0,53.0,44.0,42.0,47.0,54.0,49.0,53.0,44.0,53.0,39.0,45.0,55.0,48.0,38.0,46.0,44.0,34.0,38.0,39.0,38.0,42.0,25.0,24.0,29.0,34.0,32.0,27.0,30.0,14.0,19.0,24.0,17.0,15.0,8.0,14.0,9.0,4.0,8.0,4.0,,2.0,5.0,3.0,2.0, M84070,64.0,90.0,89.0,100.0,118.0,91.0,96.0,105.0,94.0,98.0,103.0,78.0,81.0,86.0,82.0,77.0,77.0,75.0,70.0,64.0,75.0,50.0,53.0,57.0,55.0,67.0,55.0,62.0,57.0,72.0,90.0,87.0,88.0,105.0,107.0,112.0,120.0,127.0,123.0,130.0,137.0,98.0,108.0,88.0,97.0,81.0,93.0,78.0,69.0,82.0,80.0,82.0,85.0,98.0,84.0,56.0,80.0,77.0,55.0,47.0,60.0,61.0,52.0,56.0,40.0,50.0,34.0,26.0,38.0,31.0,46.0,29.0,28.0,23.0,29.0,27.0,33.0,20.0,18.0,23.0,24.0,13.0,25.0,11.0,7.0,14.0,9.0,12.0,7.0,3.0,6.0,2.0,8.0,7.0,2.0,5.0 M84609,28.0,38.0,33.0,26.0,27.0,41.0,39.0,26.0,44.0,37.0,34.0,41.0,28.0,44.0,35.0,32.0,28.0,25.0,22.0,22.0,21.0,17.0,29.0,26.0,20.0,23.0,29.0,25.0,31.0,30.0,36.0,33.0,31.0,28.0,40.0,35.0,44.0,52.0,37.0,52.0,36.0,34.0,43.0,30.0,48.0,39.0,34.0,21.0,22.0,26.0,34.0,22.0,31.0,27.0,30.0,24.0,27.0,31.0,33.0,20.0,35.0,35.0,32.0,22.0,29.0,26.0,21.0,21.0,21.0,18.0,18.0,24.0,18.0,16.0,21.0,13.0,18.0,12.0,16.0,9.0,10.0,9.0,13.0,14.0,10.0,12.0,7.0,4.0,6.0,3.0,3.0,1.0,4.0,3.0,1.0,2.0 M84612,63.0,60.0,60.0,60.0,61.0,66.0,55.0,53.0,55.0,59.0,45.0,49.0,61.0,56.0,50.0,39.0,46.0,40.0,27.0,22.0,33.0,24.0,35.0,31.0,45.0,49.0,42.0,59.0,62.0,55.0,50.0,67.0,75.0,83.0,69.0,95.0,82.0,74.0,53.0,85.0,58.0,62.0,65.0,53.0,59.0,61.0,50.0,52.0,46.0,44.0,58.0,54.0,53.0,62.0,52.0,48.0,66.0,67.0,48.0,60.0,46.0,43.0,56.0,56.0,29.0,35.0,37.0,40.0,42.0,34.0,33.0,29.0,25.0,23.0,21.0,40.0,28.0,22.0,23.0,17.0,14.0,16.0,12.0,15.0,12.0,11.0,11.0,9.0,9.0,4.0,5.0,4.0,2.0,,1.0,2.0 M84615,44.0,61.0,51.0,44.0,51.0,53.0,58.0,53.0,52.0,55.0,55.0,53.0,59.0,54.0,43.0,51.0,44.0,50.0,52.0,36.0,42.0,41.0,35.0,32.0,42.0,43.0,47.0,47.0,41.0,66.0,53.0,67.0,63.0,62.0,72.0,56.0,66.0,72.0,61.0,73.0,58.0,55.0,49.0,64.0,66.0,48.0,43.0,48.0,47.0,51.0,45.0,55.0,47.0,57.0,46.0,45.0,61.0,59.0,54.0,56.0,50.0,45.0,49.0,45.0,56.0,40.0,37.0,46.0,33.0,31.0,31.0,39.0,27.0,30.0,34.0,32.0,25.0,21.0,34.0,23.0,17.0,20.0,13.0,14.0,12.0,16.0,6.0,3.0,5.0,6.0,2.0,3.0,,1.0,1.0,2.0 M84616,20.0,11.0,21.0,21.0,21.0,29.0,27.0,22.0,26.0,24.0,27.0,28.0,33.0,31.0,27.0,28.0,22.0,22.0,17.0,30.0,24.0,28.0,28.0,30.0,23.0,21.0,18.0,22.0,21.0,27.0,20.0,21.0,30.0,25.0,26.0,23.0,20.0,24.0,22.0,29.0,24.0,28.0,16.0,23.0,19.0,32.0,26.0,24.0,20.0,23.0,33.0,33.0,31.0,42.0,37.0,45.0,35.0,33.0,38.0,36.0,32.0,27.0,35.0,42.0,37.0,31.0,32.0,20.0,23.0,31.0,29.0,30.0,8.0,19.0,20.0,19.0,29.0,25.0,24.0,11.0,19.0,21.0,15.0,6.0,13.0,5.0,7.0,9.0,8.0,1.0,1.0,4.0,1.0,2.0,3.0,2.0 M84618,22.0,17.0,29.0,21.0,16.0,23.0,20.0,13.0,26.0,25.0,19.0,19.0,25.0,27.0,22.0,22.0,29.0,12.0,22.0,10.0,26.0,19.0,16.0,18.0,19.0,28.0,17.0,18.0,24.0,20.0,29.0,26.0,22.0,20.0,20.0,25.0,23.0,19.0,16.0,30.0,24.0,18.0,25.0,22.0,31.0,24.0,23.0,21.0,22.0,19.0,36.0,35.0,26.0,37.0,33.0,33.0,35.0,30.0,34.0,29.0,32.0,30.0,26.0,20.0,28.0,13.0,19.0,28.0,22.0,13.0,16.0,19.0,24.0,15.0,11.0,14.0,18.0,14.0,24.0,15.0,19.0,19.0,10.0,11.0,6.0,8.0,11.0,4.0,4.0,2.0,6.0,4.0,5.0,3.0,2.0,3.0 M84620,4.0,11.0,8.0,16.0,20.0,18.0,18.0,15.0,10.0,20.0,14.0,10.0,14.0,16.0,14.0,18.0,12.0,23.0,15.0,15.0,14.0,13.0,24.0,14.0,13.0,11.0,16.0,14.0,11.0,15.0,7.0,13.0,11.0,14.0,22.0,17.0,12.0,17.0,17.0,18.0,19.0,19.0,17.0,13.0,16.0,20.0,16.0,4.0,22.0,17.0,19.0,18.0,17.0,19.0,19.0,31.0,25.0,29.0,25.0,32.0,23.0,21.0,25.0,26.0,27.0,28.0,21.0,20.0,18.0,30.0,21.0,20.0,21.0,12.0,18.0,20.0,12.0,20.0,24.0,15.0,23.0,13.0,9.0,13.0,6.0,13.0,10.0,6.0,5.0,3.0,4.0,1.0,,2.0,2.0, M84621,13.0,17.0,13.0,16.0,11.0,11.0,12.0,17.0,16.0,18.0,14.0,20.0,22.0,13.0,16.0,19.0,13.0,24.0,14.0,16.0,19.0,24.0,22.0,29.0,17.0,16.0,19.0,24.0,19.0,30.0,20.0,18.0,17.0,20.0,34.0,31.0,35.0,23.0,24.0,25.0,24.0,23.0,28.0,25.0,35.0,26.0,27.0,18.0,26.0,18.0,19.0,21.0,17.0,18.0,20.0,20.0,22.0,17.0,13.0,9.0,12.0,16.0,16.0,13.0,11.0,9.0,13.0,12.0,10.0,12.0,9.0,4.0,7.0,3.0,7.0,9.0,6.0,6.0,5.0,5.0,11.0,2.0,5.0,6.0,4.0,8.0,2.0,4.0,1.0,,,1.0,1.0,,1.0, M84627,10.0,20.0,14.0,10.0,10.0,22.0,18.0,20.0,25.0,18.0,30.0,24.0,23.0,15.0,23.0,27.0,21.0,18.0,26.0,17.0,15.0,21.0,25.0,21.0,22.0,19.0,25.0,24.0,14.0,18.0,22.0,20.0,20.0,19.0,22.0,23.0,18.0,29.0,20.0,19.0,17.0,19.0,18.0,25.0,17.0,19.0,25.0,16.0,24.0,21.0,24.0,25.0,18.0,25.0,29.0,31.0,30.0,40.0,25.0,29.0,35.0,29.0,25.0,29.0,35.0,34.0,21.0,26.0,25.0,24.0,30.0,18.0,17.0,29.0,21.0,23.0,22.0,23.0,24.0,25.0,19.0,16.0,12.0,12.0,13.0,9.0,9.0,7.0,6.0,1.0,4.0,2.0,3.0,1.0,, M84629,58.0,58.0,80.0,82.0,75.0,66.0,64.0,72.0,71.0,71.0,72.0,69.0,82.0,76.0,59.0,66.0,63.0,55.0,48.0,32.0,44.0,36.0,46.0,51.0,59.0,60.0,72.0,56.0,56.0,86.0,96.0,81.0,93.0,103.0,108.0,96.0,90.0,77.0,77.0,89.0,69.0,81.0,72.0,72.0,71.0,86.0,80.0,69.0,67.0,81.0,49.0,75.0,77.0,68.0,84.0,79.0,68.0,77.0,71.0,86.0,87.0,80.0,77.0,84.0,54.0,57.0,63.0,59.0,51.0,63.0,57.0,44.0,44.0,38.0,41.0,36.0,37.0,34.0,28.0,27.0,36.0,27.0,25.0,15.0,15.0,9.0,16.0,17.0,12.0,6.0,11.0,3.0,8.0,7.0,4.0,7.0 M86001,24.0,57.0,59.0,56.0,50.0,52.0,64.0,60.0,56.0,59.0,59.0,46.0,53.0,69.0,54.0,49.0,50.0,54.0,37.0,45.0,50.0,50.0,37.0,52.0,43.0,44.0,38.0,35.0,56.0,39.0,59.0,51.0,45.0,58.0,64.0,62.0,56.0,54.0,54.0,52.0,59.0,56.0,62.0,61.0,71.0,51.0,42.0,46.0,50.0,56.0,52.0,58.0,48.0,38.0,43.0,57.0,48.0,46.0,33.0,48.0,46.0,44.0,38.0,32.0,38.0,30.0,28.0,25.0,34.0,32.0,20.0,23.0,33.0,17.0,17.0,17.0,24.0,22.0,16.0,7.0,11.0,7.0,10.0,6.0,6.0,9.0,5.0,6.0,5.0,4.0,10.0,4.0,3.0,2.0,1.0,3.0 M86002,46.0,52.0,62.0,59.0,60.0,58.0,57.0,61.0,55.0,47.0,50.0,49.0,59.0,59.0,58.0,62.0,52.0,43.0,48.0,40.0,51.0,41.0,53.0,50.0,63.0,49.0,65.0,53.0,66.0,66.0,56.0,75.0,71.0,80.0,67.0,77.0,68.0,67.0,82.0,68.0,74.0,66.0,60.0,68.0,62.0,70.0,67.0,72.0,56.0,71.0,45.0,56.0,54.0,58.0,52.0,58.0,68.0,72.0,53.0,57.0,45.0,41.0,43.0,47.0,56.0,45.0,42.0,46.0,34.0,42.0,34.0,26.0,27.0,25.0,30.0,27.0,18.0,24.0,25.0,14.0,14.0,18.0,16.0,11.0,9.0,17.0,9.0,4.0,6.0,4.0,10.0,3.0,4.0,3.0,1.0,7.0 M86003,52.0,70.0,93.0,77.0,83.0,97.0,101.0,113.0,117.0,138.0,123.0,141.0,144.0,147.0,143.0,147.0,137.0,144.0,123.0,130.0,122.0,144.0,116.0,118.0,138.0,137.0,125.0,130.0,125.0,114.0,114.0,106.0,129.0,121.0,110.0,113.0,108.0,105.0,130.0,127.0,142.0,112.0,136.0,122.0,117.0,125.0,136.0,131.0,111.0,117.0,119.0,112.0,117.0,122.0,143.0,121.0,112.0,100.0,105.0,96.0,92.0,101.0,87.0,78.0,83.0,84.0,67.0,72.0,72.0,54.0,81.0,53.0,54.0,48.0,60.0,54.0,41.0,52.0,65.0,62.0,40.0,52.0,34.0,21.0,23.0,24.0,25.0,19.0,19.0,14.0,6.0,6.0,3.0,3.0,7.0,5.0 M86004,52.0,54.0,55.0,52.0,48.0,65.0,60.0,68.0,72.0,76.0,58.0,54.0,67.0,56.0,67.0,51.0,54.0,71.0,345.0,823.0,847.0,834.0,673.0,543.0,509.0,392.0,269.0,203.0,184.0,123.0,132.0,106.0,106.0,108.0,105.0,101.0,102.0,87.0,83.0,89.0,61.0,71.0,67.0,75.0,76.0,60.0,63.0,63.0,56.0,57.0,61.0,58.0,68.0,55.0,64.0,73.0,68.0,62.0,58.0,59.0,66.0,66.0,64.0,77.0,62.0,58.0,52.0,55.0,44.0,45.0,35.0,45.0,42.0,43.0,39.0,34.0,32.0,42.0,38.0,31.0,37.0,34.0,19.0,23.0,20.0,15.0,22.0,15.0,15.0,15.0,8.0,3.0,5.0,2.0,2.0,13.0 M86005,38.0,47.0,33.0,39.0,37.0,40.0,40.0,35.0,43.0,38.0,32.0,43.0,31.0,48.0,32.0,37.0,31.0,29.0,26.0,34.0,43.0,54.0,73.0,96.0,111.0,123.0,95.0,89.0,80.0,72.0,76.0,72.0,88.0,60.0,74.0,63.0,57.0,59.0,65.0,51.0,62.0,56.0,42.0,32.0,50.0,27.0,37.0,31.0,28.0,34.0,30.0,37.0,35.0,26.0,20.0,28.0,33.0,26.0,28.0,26.0,27.0,26.0,28.0,31.0,17.0,27.0,25.0,22.0,20.0,18.0,16.0,19.0,12.0,8.0,12.0,12.0,15.0,15.0,12.0,15.0,8.0,7.0,5.0,6.0,6.0,4.0,8.0,2.0,2.0,6.0,5.0,2.0,3.0,,3.0,2.0 M86006,34.0,50.0,48.0,45.0,53.0,52.0,63.0,49.0,55.0,59.0,59.0,51.0,59.0,72.0,51.0,56.0,58.0,40.0,46.0,39.0,55.0,62.0,63.0,63.0,83.0,85.0,92.0,103.0,97.0,89.0,90.0,100.0,95.0,92.0,106.0,103.0,98.0,109.0,101.0,84.0,76.0,71.0,88.0,79.0,70.0,72.0,72.0,69.0,64.0,64.0,65.0,50.0,70.0,80.0,75.0,69.0,77.0,77.0,78.0,71.0,60.0,68.0,78.0,66.0,42.0,58.0,51.0,53.0,48.0,36.0,37.0,41.0,29.0,31.0,30.0,35.0,28.0,38.0,39.0,21.0,25.0,28.0,17.0,11.0,15.0,17.0,14.0,15.0,13.0,12.0,11.0,7.0,4.0,6.0,,12.0 M86007,13.0,22.0,27.0,30.0,27.0,27.0,20.0,37.0,17.0,24.0,17.0,35.0,27.0,28.0,24.0,28.0,22.0,31.0,29.0,25.0,30.0,43.0,42.0,35.0,39.0,35.0,37.0,44.0,24.0,39.0,41.0,48.0,34.0,32.0,52.0,45.0,47.0,40.0,47.0,53.0,47.0,53.0,42.0,43.0,44.0,41.0,42.0,34.0,32.0,23.0,44.0,36.0,32.0,36.0,40.0,50.0,32.0,45.0,39.0,45.0,48.0,31.0,47.0,44.0,44.0,50.0,40.0,34.0,28.0,44.0,32.0,28.0,30.0,30.0,35.0,27.0,25.0,24.0,41.0,29.0,24.0,20.0,28.0,22.0,15.0,19.0,12.0,8.0,16.0,8.0,14.0,5.0,6.0,2.0,3.0,9.0 M86008,50.0,58.0,40.0,59.0,58.0,63.0,77.0,61.0,79.0,60.0,70.0,70.0,67.0,70.0,83.0,68.0,82.0,60.0,75.0,64.0,68.0,58.0,61.0,70.0,66.0,73.0,57.0,87.0,75.0,63.0,68.0,84.0,66.0,85.0,82.0,75.0,72.0,61.0,82.0,91.0,72.0,68.0,85.0,78.0,81.0,67.0,61.0,70.0,59.0,61.0,59.0,60.0,61.0,67.0,82.0,79.0,71.0,85.0,65.0,75.0,76.0,63.0,62.0,62.0,57.0,60.0,64.0,43.0,32.0,33.0,48.0,38.0,47.0,33.0,34.0,24.0,26.0,36.0,35.0,22.0,26.0,25.0,15.0,16.0,13.0,16.0,16.0,7.0,7.0,12.0,6.0,6.0,5.0,2.0,1.0,4.0 M86009,58.0,62.0,63.0,58.0,74.0,52.0,69.0,76.0,76.0,95.0,72.0,82.0,72.0,84.0,78.0,87.0,88.0,92.0,152.0,214.0,288.0,391.0,553.0,782.0,1008.0,1051.0,1064.0,951.0,864.0,722.0,557.0,453.0,321.0,275.0,238.0,216.0,254.0,233.0,187.0,182.0,156.0,151.0,134.0,141.0,96.0,120.0,94.0,76.0,87.0,76.0,80.0,90.0,81.0,72.0,71.0,68.0,53.0,65.0,49.0,71.0,58.0,52.0,66.0,67.0,55.0,44.0,58.0,44.0,49.0,45.0,35.0,40.0,41.0,34.0,30.0,28.0,27.0,25.0,25.0,22.0,20.0,23.0,21.0,10.0,6.0,11.0,16.0,8.0,9.0,11.0,3.0,5.0,2.0,5.0,1.0,6.0 M86010,53.0,59.0,59.0,70.0,76.0,65.0,83.0,71.0,107.0,85.0,95.0,76.0,77.0,92.0,91.0,107.0,80.0,107.0,93.0,77.0,63.0,81.0,119.0,90.0,98.0,102.0,124.0,124.0,98.0,115.0,141.0,115.0,119.0,103.0,103.0,128.0,128.0,109.0,121.0,113.0,120.0,112.0,89.0,117.0,98.0,83.0,82.0,58.0,71.0,73.0,84.0,73.0,71.0,63.0,64.0,59.0,50.0,68.0,54.0,62.0,60.0,56.0,71.0,66.0,60.0,70.0,49.0,49.0,41.0,43.0,53.0,41.0,34.0,35.0,34.0,44.0,37.0,49.0,40.0,33.0,22.0,30.0,16.0,21.0,21.0,19.0,13.0,10.0,6.0,6.0,4.0,13.0,4.0,5.0,2.0,8.0 M86012,58.0,75.0,67.0,67.0,83.0,65.0,85.0,70.0,67.0,72.0,72.0,55.0,63.0,59.0,76.0,75.0,64.0,52.0,66.0,51.0,73.0,63.0,98.0,127.0,142.0,166.0,127.0,133.0,108.0,148.0,148.0,144.0,110.0,117.0,126.0,116.0,120.0,113.0,110.0,105.0,103.0,97.0,75.0,78.0,76.0,91.0,66.0,67.0,60.0,62.0,52.0,53.0,58.0,51.0,53.0,59.0,54.0,53.0,50.0,52.0,51.0,44.0,52.0,39.0,33.0,33.0,37.0,24.0,36.0,24.0,18.0,31.0,22.0,21.0,24.0,20.0,14.0,21.0,12.0,15.0,13.0,13.0,2.0,8.0,11.0,8.0,9.0,5.0,6.0,5.0,5.0,,1.0,3.0,3.0,1.0 M86014,100.0,105.0,113.0,125.0,130.0,146.0,157.0,143.0,145.0,138.0,150.0,146.0,150.0,160.0,147.0,129.0,157.0,131.0,126.0,120.0,113.0,119.0,121.0,114.0,120.0,133.0,111.0,140.0,170.0,142.0,126.0,183.0,177.0,171.0,183.0,198.0,200.0,197.0,206.0,165.0,159.0,152.0,133.0,130.0,135.0,152.0,141.0,125.0,112.0,121.0,121.0,147.0,116.0,130.0,121.0,99.0,143.0,140.0,114.0,124.0,100.0,123.0,110.0,87.0,116.0,101.0,92.0,88.0,86.0,69.0,89.0,82.0,49.0,63.0,68.0,80.0,65.0,66.0,75.0,56.0,39.0,37.0,41.0,41.0,31.0,19.0,30.0,29.0,20.0,17.0,13.0,9.0,4.0,8.0,4.0,8.0 M86015,53.0,60.0,65.0,87.0,71.0,78.0,88.0,88.0,79.0,89.0,95.0,79.0,100.0,90.0,109.0,101.0,87.0,91.0,98.0,87.0,65.0,78.0,68.0,81.0,75.0,83.0,81.0,66.0,80.0,94.0,98.0,94.0,103.0,104.0,121.0,117.0,148.0,129.0,115.0,120.0,146.0,139.0,141.0,118.0,94.0,91.0,93.0,93.0,86.0,80.0,106.0,81.0,93.0,104.0,97.0,95.0,88.0,79.0,95.0,87.0,80.0,77.0,77.0,81.0,78.0,71.0,51.0,61.0,44.0,63.0,56.0,65.0,46.0,49.0,45.0,42.0,53.0,44.0,47.0,38.0,31.0,29.0,28.0,33.0,20.0,25.0,16.0,10.0,14.0,9.0,5.0,3.0,7.0,6.0,5.0,10.0 M86016,127.0,110.0,110.0,116.0,120.0,141.0,139.0,129.0,155.0,154.0,144.0,131.0,152.0,151.0,148.0,139.0,136.0,133.0,133.0,124.0,115.0,119.0,150.0,140.0,148.0,170.0,180.0,183.0,194.0,220.0,210.0,218.0,213.0,201.0,220.0,199.0,228.0,218.0,230.0,171.0,230.0,201.0,195.0,177.0,194.0,201.0,172.0,159.0,132.0,149.0,141.0,135.0,150.0,128.0,140.0,141.0,130.0,131.0,117.0,130.0,138.0,119.0,120.0,101.0,102.0,113.0,84.0,83.0,84.0,71.0,52.0,62.0,65.0,51.0,60.0,49.0,50.0,57.0,51.0,38.0,55.0,39.0,37.0,27.0,18.0,23.0,23.0,21.0,11.0,13.0,13.0,4.0,7.0,2.0,1.0,9.0 M86017,43.0,36.0,49.0,56.0,55.0,62.0,61.0,58.0,51.0,53.0,59.0,67.0,60.0,63.0,60.0,58.0,68.0,61.0,62.0,50.0,47.0,49.0,61.0,55.0,79.0,107.0,104.0,93.0,96.0,101.0,71.0,85.0,85.0,92.0,108.0,106.0,106.0,98.0,96.0,90.0,90.0,85.0,71.0,70.0,87.0,99.0,69.0,69.0,60.0,63.0,77.0,65.0,61.0,62.0,74.0,74.0,65.0,68.0,78.0,66.0,60.0,70.0,67.0,55.0,74.0,43.0,36.0,53.0,26.0,30.0,36.0,39.0,42.0,26.0,24.0,28.0,34.0,20.0,23.0,22.0,24.0,30.0,24.0,10.0,8.0,17.0,11.0,14.0,5.0,9.0,4.0,7.0,8.0,3.0,2.0,3.0 M86018,57.0,54.0,53.0,59.0,55.0,60.0,67.0,77.0,78.0,66.0,79.0,64.0,94.0,87.0,92.0,88.0,88.0,86.0,71.0,75.0,77.0,64.0,75.0,58.0,70.0,75.0,79.0,64.0,82.0,71.0,71.0,66.0,72.0,88.0,88.0,91.0,82.0,104.0,98.0,77.0,113.0,81.0,91.0,73.0,79.0,101.0,90.0,70.0,79.0,66.0,86.0,79.0,84.0,90.0,94.0,72.0,79.0,91.0,89.0,76.0,77.0,72.0,76.0,60.0,66.0,58.0,60.0,56.0,36.0,53.0,39.0,49.0,44.0,36.0,48.0,37.0,38.0,48.0,33.0,30.0,31.0,20.0,23.0,20.0,16.0,21.0,23.0,19.0,14.0,11.0,10.0,4.0,9.0,2.0,2.0,5.0 M86019,14.0,19.0,13.0,21.0,32.0,17.0,22.0,23.0,17.0,14.0,27.0,23.0,26.0,32.0,29.0,22.0,22.0,27.0,22.0,20.0,18.0,25.0,22.0,27.0,22.0,26.0,24.0,33.0,20.0,39.0,43.0,33.0,32.0,42.0,35.0,39.0,42.0,46.0,38.0,45.0,38.0,30.0,25.0,42.0,33.0,32.0,30.0,32.0,24.0,21.0,34.0,25.0,24.0,32.0,34.0,29.0,20.0,25.0,31.0,41.0,36.0,30.0,46.0,27.0,27.0,39.0,23.0,22.0,28.0,16.0,20.0,23.0,18.0,26.0,17.0,16.0,30.0,20.0,19.0,15.0,13.0,20.0,8.0,6.0,14.0,9.0,9.0,8.0,4.0,5.0,4.0,1.0,1.0,,2.0,2.0 M86020,46.0,48.0,54.0,50.0,51.0,58.0,68.0,67.0,75.0,80.0,70.0,76.0,61.0,79.0,81.0,64.0,84.0,73.0,64.0,72.0,40.0,58.0,55.0,41.0,42.0,53.0,34.0,47.0,46.0,48.0,65.0,66.0,53.0,69.0,50.0,63.0,58.0,55.0,66.0,77.0,60.0,68.0,57.0,53.0,74.0,44.0,40.0,45.0,56.0,35.0,60.0,67.0,56.0,46.0,52.0,54.0,44.0,56.0,44.0,40.0,29.0,34.0,36.0,32.0,36.0,29.0,31.0,37.0,15.0,22.0,15.0,18.0,24.0,18.0,10.0,16.0,12.0,10.0,10.0,7.0,12.0,7.0,7.0,3.0,2.0,5.0,5.0,2.0,5.0,2.0,2.0,3.0,1.0,,, M86021,28.0,27.0,41.0,48.0,37.0,35.0,27.0,35.0,39.0,34.0,43.0,55.0,47.0,58.0,56.0,49.0,49.0,55.0,46.0,55.0,35.0,37.0,23.0,52.0,49.0,42.0,49.0,49.0,45.0,53.0,55.0,47.0,36.0,51.0,41.0,38.0,34.0,44.0,46.0,56.0,43.0,35.0,47.0,48.0,51.0,51.0,49.0,50.0,35.0,42.0,42.0,47.0,54.0,44.0,70.0,50.0,53.0,64.0,51.0,50.0,54.0,53.0,46.0,41.0,31.0,35.0,42.0,46.0,27.0,38.0,31.0,32.0,50.0,18.0,17.0,26.0,26.0,24.0,25.0,20.0,36.0,21.0,13.0,14.0,15.0,9.0,15.0,6.0,9.0,6.0,2.0,9.0,3.0,,, M86027,37.0,58.0,50.0,67.0,49.0,77.0,69.0,86.0,78.0,71.0,65.0,61.0,69.0,66.0,68.0,72.0,65.0,56.0,80.0,103.0,100.0,113.0,192.0,221.0,230.0,257.0,240.0,253.0,260.0,205.0,164.0,145.0,131.0,144.0,136.0,111.0,106.0,90.0,108.0,95.0,109.0,106.0,98.0,93.0,96.0,88.0,83.0,80.0,74.0,70.0,70.0,53.0,55.0,59.0,45.0,59.0,55.0,56.0,57.0,49.0,37.0,38.0,44.0,51.0,49.0,55.0,40.0,42.0,46.0,27.0,27.0,31.0,34.0,30.0,38.0,40.0,28.0,18.0,30.0,26.0,21.0,30.0,15.0,17.0,20.0,11.0,12.0,12.0,16.0,7.0,7.0,9.0,4.0,4.0,,8.0 M86028,11.0,10.0,12.0,10.0,15.0,15.0,22.0,25.0,20.0,32.0,27.0,23.0,31.0,32.0,31.0,37.0,31.0,20.0,26.0,20.0,22.0,21.0,24.0,23.0,22.0,31.0,23.0,22.0,27.0,22.0,20.0,30.0,26.0,31.0,29.0,32.0,30.0,20.0,28.0,31.0,20.0,31.0,43.0,32.0,40.0,34.0,37.0,29.0,36.0,29.0,22.0,24.0,25.0,26.0,31.0,32.0,31.0,36.0,26.0,18.0,17.0,18.0,22.0,25.0,21.0,19.0,16.0,15.0,18.0,21.0,11.0,18.0,10.0,9.0,13.0,8.0,10.0,8.0,9.0,9.0,5.0,7.0,4.0,5.0,6.0,5.0,4.0,2.0,1.0,2.0,4.0,5.0,,2.0,,3.0 M86029,35.0,45.0,41.0,45.0,53.0,57.0,57.0,61.0,49.0,52.0,55.0,47.0,48.0,46.0,47.0,46.0,51.0,51.0,390.0,784.0,895.0,761.0,562.0,465.0,356.0,253.0,205.0,188.0,166.0,122.0,129.0,110.0,91.0,100.0,103.0,92.0,89.0,79.0,81.0,82.0,81.0,78.0,67.0,68.0,73.0,66.0,52.0,55.0,57.0,67.0,63.0,51.0,54.0,45.0,62.0,63.0,63.0,68.0,40.0,59.0,65.0,49.0,48.0,44.0,43.0,40.0,50.0,36.0,43.0,35.0,58.0,28.0,36.0,43.0,41.0,44.0,34.0,38.0,45.0,34.0,21.0,38.0,31.0,20.0,17.0,23.0,20.0,15.0,14.0,19.0,7.0,7.0,5.0,8.0,2.0,5.0 M86030,7.0,22.0,28.0,17.0,28.0,23.0,24.0,28.0,22.0,30.0,41.0,31.0,34.0,26.0,33.0,26.0,36.0,27.0,28.0,30.0,32.0,27.0,39.0,36.0,39.0,42.0,41.0,58.0,49.0,49.0,52.0,47.0,65.0,62.0,60.0,34.0,50.0,64.0,44.0,52.0,41.0,47.0,64.0,50.0,52.0,48.0,43.0,33.0,34.0,39.0,36.0,49.0,36.0,51.0,37.0,38.0,51.0,32.0,37.0,41.0,40.0,36.0,40.0,25.0,26.0,28.0,28.0,24.0,27.0,20.0,22.0,31.0,29.0,23.0,25.0,19.0,22.0,23.0,22.0,14.0,19.0,18.0,15.0,13.0,7.0,14.0,3.0,9.0,5.0,6.0,3.0,6.0,6.0,2.0,3.0,4.0 M86032,56.0,65.0,70.0,70.0,73.0,89.0,87.0,111.0,89.0,100.0,106.0,103.0,110.0,104.0,105.0,87.0,101.0,89.0,107.0,95.0,72.0,79.0,86.0,76.0,80.0,96.0,84.0,89.0,87.0,101.0,93.0,74.0,106.0,81.0,114.0,98.0,113.0,116.0,124.0,127.0,111.0,92.0,110.0,106.0,93.0,103.0,86.0,81.0,93.0,92.0,98.0,73.0,64.0,78.0,84.0,92.0,70.0,68.0,58.0,86.0,66.0,68.0,74.0,68.0,68.0,38.0,55.0,49.0,36.0,41.0,37.0,42.0,27.0,23.0,33.0,25.0,32.0,31.0,24.0,16.0,23.0,26.0,23.0,17.0,14.0,11.0,14.0,14.0,3.0,14.0,9.0,5.0,4.0,2.0,4.0,6.0 M86033,18.0,24.0,28.0,22.0,27.0,23.0,32.0,23.0,35.0,37.0,24.0,42.0,25.0,35.0,32.0,29.0,28.0,27.0,25.0,16.0,23.0,31.0,26.0,30.0,27.0,28.0,22.0,23.0,22.0,32.0,28.0,30.0,38.0,33.0,35.0,42.0,36.0,35.0,35.0,38.0,24.0,32.0,24.0,35.0,31.0,28.0,24.0,32.0,32.0,20.0,30.0,21.0,32.0,28.0,29.0,29.0,30.0,25.0,27.0,25.0,21.0,30.0,28.0,26.0,27.0,19.0,17.0,20.0,16.0,24.0,8.0,15.0,21.0,14.0,8.0,10.0,9.0,8.0,11.0,7.0,8.0,4.0,9.0,7.0,7.0,4.0,4.0,2.0,4.0,4.0,1.0,,,1.0,,2.0 M86034,28.0,44.0,54.0,59.0,54.0,55.0,71.0,60.0,67.0,60.0,64.0,68.0,68.0,56.0,60.0,71.0,69.0,57.0,61.0,49.0,51.0,51.0,52.0,50.0,50.0,48.0,46.0,52.0,48.0,70.0,53.0,58.0,59.0,82.0,76.0,69.0,93.0,69.0,94.0,72.0,86.0,67.0,64.0,78.0,56.0,61.0,72.0,63.0,54.0,62.0,54.0,60.0,65.0,58.0,53.0,54.0,77.0,61.0,78.0,60.0,67.0,79.0,53.0,65.0,66.0,36.0,56.0,57.0,41.0,33.0,47.0,36.0,35.0,36.0,31.0,49.0,42.0,39.0,38.0,48.0,37.0,37.0,46.0,23.0,30.0,27.0,24.0,21.0,22.0,18.0,9.0,6.0,13.0,6.0,5.0,12.0 M86035,52.0,44.0,63.0,51.0,60.0,47.0,63.0,49.0,76.0,57.0,70.0,73.0,70.0,69.0,52.0,58.0,48.0,76.0,68.0,49.0,50.0,40.0,51.0,48.0,50.0,34.0,49.0,52.0,54.0,53.0,47.0,59.0,61.0,55.0,74.0,85.0,57.0,76.0,77.0,63.0,55.0,66.0,54.0,66.0,49.0,60.0,49.0,52.0,33.0,46.0,41.0,55.0,60.0,45.0,62.0,42.0,41.0,37.0,54.0,43.0,41.0,49.0,46.0,36.0,37.0,46.0,30.0,30.0,37.0,36.0,35.0,31.0,36.0,24.0,21.0,18.0,16.0,16.0,17.0,22.0,19.0,13.0,13.0,8.0,17.0,7.0,13.0,10.0,4.0,6.0,4.0,4.0,3.0,2.0,3.0,4.0 M86037,17.0,11.0,22.0,16.0,12.0,25.0,27.0,22.0,26.0,28.0,29.0,24.0,29.0,22.0,30.0,23.0,18.0,17.0,23.0,15.0,20.0,19.0,17.0,20.0,17.0,19.0,26.0,20.0,25.0,30.0,30.0,34.0,23.0,20.0,43.0,35.0,35.0,37.0,37.0,37.0,38.0,39.0,49.0,35.0,39.0,31.0,30.0,33.0,26.0,29.0,29.0,21.0,24.0,21.0,23.0,21.0,29.0,30.0,27.0,21.0,20.0,23.0,26.0,14.0,10.0,26.0,20.0,17.0,23.0,16.0,21.0,11.0,11.0,8.0,12.0,19.0,14.0,13.0,13.0,13.0,11.0,7.0,9.0,7.0,2.0,6.0,8.0,10.0,2.0,2.0,,2.0,1.0,1.0,,7.0 M86038,8.0,9.0,4.0,8.0,11.0,9.0,9.0,14.0,8.0,15.0,11.0,11.0,12.0,17.0,10.0,26.0,14.0,20.0,13.0,15.0,19.0,16.0,11.0,8.0,12.0,8.0,19.0,17.0,15.0,18.0,12.0,24.0,13.0,18.0,15.0,18.0,16.0,20.0,20.0,20.0,17.0,28.0,14.0,22.0,32.0,25.0,26.0,22.0,19.0,22.0,16.0,21.0,13.0,17.0,15.0,22.0,21.0,19.0,30.0,24.0,16.0,14.0,19.0,21.0,16.0,19.0,14.0,12.0,20.0,8.0,14.0,14.0,12.0,14.0,13.0,15.0,7.0,17.0,21.0,11.0,13.0,14.0,12.0,6.0,17.0,9.0,9.0,6.0,7.0,9.0,2.0,2.0,5.0,3.0,2.0, M86039,18.0,21.0,21.0,30.0,27.0,23.0,24.0,24.0,24.0,17.0,25.0,24.0,41.0,21.0,27.0,20.0,30.0,32.0,30.0,15.0,24.0,8.0,21.0,17.0,28.0,22.0,29.0,23.0,30.0,28.0,31.0,30.0,24.0,28.0,27.0,36.0,37.0,25.0,40.0,33.0,29.0,35.0,30.0,21.0,32.0,29.0,37.0,33.0,38.0,26.0,23.0,28.0,33.0,29.0,33.0,41.0,33.0,36.0,23.0,24.0,36.0,37.0,41.0,31.0,24.0,27.0,18.0,33.0,24.0,19.0,24.0,26.0,22.0,33.0,24.0,16.0,27.0,35.0,30.0,21.0,27.0,25.0,21.0,6.0,16.0,11.0,14.0,6.0,15.0,6.0,8.0,6.0,5.0,3.0,,2.0 M86040,18.0,24.0,19.0,17.0,14.0,26.0,15.0,28.0,22.0,17.0,29.0,29.0,24.0,28.0,23.0,25.0,35.0,32.0,26.0,17.0,19.0,14.0,12.0,16.0,18.0,19.0,19.0,14.0,21.0,21.0,24.0,23.0,33.0,23.0,23.0,39.0,40.0,30.0,49.0,42.0,32.0,27.0,28.0,36.0,34.0,34.0,28.0,27.0,33.0,33.0,23.0,47.0,18.0,31.0,38.0,31.0,35.0,20.0,29.0,14.0,21.0,20.0,19.0,17.0,24.0,23.0,19.0,14.0,15.0,24.0,16.0,17.0,13.0,11.0,11.0,13.0,10.0,14.0,16.0,14.0,16.0,12.0,5.0,6.0,3.0,6.0,6.0,6.0,4.0,6.0,7.0,3.0,2.0,2.0,1.0,2.0 M86041,60.0,72.0,66.0,55.0,71.0,69.0,86.0,73.0,77.0,83.0,76.0,71.0,79.0,66.0,62.0,77.0,59.0,54.0,58.0,59.0,53.0,57.0,62.0,61.0,85.0,98.0,105.0,86.0,107.0,120.0,104.0,113.0,111.0,96.0,123.0,122.0,106.0,105.0,121.0,108.0,110.0,110.0,116.0,111.0,99.0,99.0,83.0,76.0,65.0,81.0,65.0,69.0,55.0,50.0,60.0,64.0,63.0,44.0,46.0,45.0,46.0,52.0,41.0,52.0,42.0,43.0,43.0,25.0,35.0,41.0,33.0,34.0,24.0,25.0,25.0,18.0,17.0,19.0,25.0,14.0,17.0,20.0,13.0,9.0,7.0,8.0,6.0,9.0,13.0,6.0,8.0,5.0,2.0,1.0,1.0,6.0 M86044,16.0,13.0,21.0,17.0,17.0,19.0,20.0,18.0,30.0,32.0,29.0,26.0,29.0,26.0,26.0,33.0,25.0,29.0,31.0,24.0,32.0,30.0,35.0,42.0,44.0,59.0,50.0,45.0,50.0,55.0,46.0,49.0,50.0,50.0,52.0,60.0,57.0,43.0,40.0,40.0,40.0,48.0,48.0,30.0,31.0,45.0,36.0,29.0,29.0,20.0,28.0,32.0,31.0,27.0,36.0,32.0,38.0,37.0,38.0,27.0,38.0,18.0,33.0,23.0,24.0,24.0,28.0,22.0,26.0,18.0,16.0,15.0,19.0,11.0,12.0,10.0,14.0,13.0,8.0,12.0,5.0,2.0,8.0,5.0,6.0,6.0,6.0,8.0,4.0,1.0,2.0,1.0,,,,1.0 M86045,42.0,40.0,39.0,32.0,44.0,44.0,46.0,39.0,58.0,48.0,61.0,59.0,41.0,58.0,54.0,78.0,48.0,50.0,53.0,58.0,57.0,51.0,55.0,56.0,58.0,69.0,63.0,68.0,51.0,56.0,51.0,60.0,56.0,52.0,54.0,49.0,56.0,47.0,53.0,56.0,66.0,51.0,56.0,70.0,63.0,72.0,61.0,57.0,66.0,62.0,60.0,55.0,46.0,48.0,72.0,57.0,76.0,53.0,47.0,50.0,51.0,40.0,41.0,30.0,37.0,28.0,46.0,25.0,38.0,26.0,30.0,27.0,34.0,25.0,26.0,11.0,12.0,12.0,7.0,10.0,10.0,16.0,6.0,9.0,13.0,14.0,11.0,6.0,7.0,5.0,2.0,3.0,5.0,3.0,4.0,13.0 M86046,24.0,21.0,34.0,29.0,37.0,35.0,37.0,27.0,28.0,38.0,29.0,34.0,40.0,39.0,35.0,35.0,37.0,38.0,27.0,41.0,34.0,22.0,28.0,29.0,26.0,28.0,20.0,28.0,34.0,44.0,38.0,25.0,34.0,33.0,52.0,57.0,40.0,43.0,41.0,46.0,52.0,54.0,44.0,39.0,50.0,40.0,31.0,30.0,38.0,31.0,39.0,30.0,39.0,41.0,41.0,45.0,39.0,34.0,41.0,38.0,40.0,47.0,37.0,37.0,28.0,28.0,32.0,23.0,15.0,27.0,24.0,17.0,17.0,17.0,14.0,19.0,22.0,23.0,21.0,16.0,17.0,9.0,11.0,11.0,3.0,10.0,9.0,9.0,2.0,5.0,4.0,3.0,6.0,1.0,,1.0 M86048,50.0,55.0,42.0,61.0,52.0,50.0,47.0,56.0,56.0,59.0,57.0,51.0,63.0,81.0,55.0,63.0,59.0,68.0,63.0,58.0,50.0,60.0,67.0,63.0,67.0,59.0,55.0,61.0,71.0,76.0,81.0,73.0,66.0,78.0,58.0,80.0,51.0,77.0,74.0,77.0,76.0,69.0,58.0,81.0,58.0,74.0,60.0,52.0,48.0,39.0,52.0,42.0,62.0,46.0,53.0,67.0,51.0,53.0,42.0,54.0,49.0,39.0,43.0,25.0,27.0,38.0,32.0,19.0,22.0,19.0,16.0,14.0,18.0,17.0,14.0,15.0,5.0,12.0,10.0,11.0,8.0,14.0,8.0,7.0,5.0,8.0,9.0,2.0,1.0,,2.0,2.0,1.0,4.0,,1.0 M86605,18.0,11.0,21.0,13.0,24.0,16.0,10.0,17.0,12.0,19.0,21.0,15.0,16.0,15.0,17.0,14.0,22.0,14.0,18.0,22.0,15.0,12.0,14.0,17.0,14.0,18.0,16.0,19.0,23.0,18.0,13.0,20.0,23.0,25.0,26.0,24.0,17.0,17.0,25.0,27.0,21.0,21.0,22.0,17.0,16.0,18.0,18.0,17.0,16.0,23.0,18.0,20.0,14.0,18.0,18.0,22.0,23.0,20.0,18.0,20.0,28.0,20.0,18.0,18.0,23.0,14.0,22.0,15.0,10.0,19.0,10.0,10.0,11.0,15.0,15.0,11.0,16.0,20.0,6.0,12.0,11.0,11.0,13.0,8.0,2.0,6.0,7.0,6.0,2.0,3.0,3.0,2.0,1.0,1.0,,1.0 M86610,33.0,28.0,27.0,39.0,40.0,43.0,46.0,25.0,32.0,28.0,23.0,21.0,33.0,30.0,21.0,22.0,20.0,19.0,41.0,61.0,78.0,105.0,154.0,193.0,198.0,225.0,203.0,206.0,160.0,156.0,128.0,127.0,121.0,113.0,108.0,103.0,94.0,84.0,79.0,73.0,62.0,54.0,63.0,37.0,49.0,52.0,37.0,35.0,32.0,24.0,25.0,23.0,26.0,21.0,20.0,16.0,26.0,14.0,17.0,16.0,15.0,10.0,17.0,4.0,7.0,10.0,10.0,6.0,8.0,8.0,11.0,8.0,8.0,6.0,5.0,7.0,1.0,4.0,4.0,2.0,3.0,3.0,3.0,4.0,1.0,,2.0,3.0,1.0,,1.0,,1.0,,,1.0 M86612,29.0,29.0,24.0,31.0,24.0,37.0,27.0,23.0,29.0,25.0,22.0,21.0,28.0,21.0,14.0,25.0,25.0,17.0,26.0,24.0,31.0,33.0,28.0,37.0,25.0,39.0,49.0,56.0,52.0,63.0,62.0,50.0,48.0,49.0,38.0,44.0,44.0,53.0,64.0,45.0,54.0,50.0,44.0,37.0,30.0,49.0,38.0,36.0,39.0,34.0,26.0,35.0,22.0,22.0,24.0,30.0,23.0,15.0,22.0,15.0,26.0,15.0,17.0,12.0,9.0,15.0,18.0,14.0,14.0,15.0,10.0,13.0,9.0,13.0,10.0,4.0,5.0,2.0,5.0,2.0,4.0,4.0,4.0,1.0,2.0,2.0,2.0,3.0,,1.0,1.0,2.0,1.0,,,2.0 M86617,24.0,32.0,19.0,23.0,39.0,28.0,35.0,26.0,24.0,24.0,26.0,22.0,29.0,26.0,32.0,29.0,29.0,26.0,23.0,36.0,33.0,30.0,31.0,55.0,47.0,71.0,63.0,57.0,52.0,58.0,64.0,55.0,55.0,63.0,52.0,45.0,47.0,40.0,44.0,45.0,33.0,46.0,38.0,33.0,32.0,33.0,38.0,30.0,26.0,23.0,27.0,23.0,31.0,27.0,20.0,28.0,18.0,19.0,15.0,17.0,15.0,19.0,17.0,23.0,10.0,17.0,21.0,8.0,15.0,24.0,12.0,10.0,21.0,8.0,16.0,8.0,11.0,11.0,6.0,3.0,11.0,3.0,5.0,4.0,7.0,6.0,4.0,4.0,2.0,1.0,2.0,4.0,3.0,1.0,5.0,1.0 M86622,14.0,18.0,11.0,22.0,13.0,16.0,9.0,20.0,11.0,15.0,15.0,12.0,15.0,18.0,14.0,15.0,12.0,16.0,23.0,14.0,15.0,13.0,23.0,20.0,24.0,23.0,27.0,34.0,43.0,49.0,30.0,29.0,34.0,32.0,31.0,38.0,33.0,21.0,28.0,21.0,32.0,23.0,30.0,23.0,24.0,22.0,31.0,18.0,21.0,18.0,17.0,19.0,21.0,16.0,25.0,21.0,18.0,29.0,21.0,16.0,35.0,21.0,29.0,24.0,14.0,20.0,20.0,17.0,18.0,15.0,22.0,14.0,15.0,16.0,15.0,13.0,20.0,19.0,16.0,17.0,11.0,9.0,10.0,5.0,5.0,7.0,6.0,3.0,1.0,1.0,1.0,4.0,2.0,2.0,1.0,2.0 M86624,79.0,76.0,100.0,101.0,88.0,92.0,86.0,82.0,80.0,97.0,89.0,105.0,100.0,95.0,90.0,78.0,81.0,89.0,93.0,68.0,70.0,95.0,102.0,95.0,124.0,129.0,116.0,139.0,136.0,155.0,130.0,139.0,132.0,121.0,112.0,126.0,117.0,131.0,110.0,91.0,99.0,122.0,106.0,98.0,89.0,100.0,88.0,93.0,89.0,71.0,82.0,83.0,82.0,75.0,84.0,85.0,79.0,74.0,55.0,54.0,67.0,42.0,58.0,45.0,52.0,40.0,36.0,44.0,38.0,31.0,28.0,31.0,26.0,30.0,27.0,17.0,18.0,18.0,18.0,10.0,9.0,10.0,16.0,15.0,4.0,6.0,6.0,4.0,1.0,4.0,5.0,7.0,1.0,,1.0,3.0 M86627,30.0,42.0,29.0,57.0,53.0,51.0,59.0,54.0,66.0,61.0,67.0,52.0,58.0,64.0,74.0,49.0,68.0,70.0,49.0,56.0,44.0,51.0,35.0,44.0,39.0,53.0,47.0,45.0,49.0,50.0,39.0,51.0,73.0,65.0,65.0,81.0,56.0,66.0,60.0,66.0,76.0,77.0,65.0,63.0,75.0,64.0,57.0,65.0,64.0,61.0,61.0,62.0,51.0,48.0,49.0,38.0,52.0,35.0,27.0,34.0,29.0,33.0,33.0,30.0,28.0,21.0,17.0,22.0,24.0,10.0,10.0,15.0,7.0,6.0,12.0,6.0,5.0,3.0,8.0,7.0,4.0,5.0,1.0,1.0,1.0,,2.0,1.0,2.0,,3.0,3.0,,,,1.0 M86633,47.0,32.0,34.0,40.0,27.0,51.0,55.0,44.0,43.0,50.0,52.0,46.0,46.0,55.0,52.0,36.0,64.0,51.0,39.0,41.0,39.0,58.0,59.0,51.0,57.0,59.0,60.0,55.0,55.0,51.0,50.0,53.0,42.0,53.0,42.0,65.0,50.0,48.0,37.0,54.0,39.0,47.0,60.0,58.0,45.0,54.0,43.0,46.0,50.0,41.0,39.0,44.0,35.0,36.0,35.0,39.0,36.0,38.0,21.0,13.0,17.0,19.0,17.0,8.0,16.0,19.0,15.0,14.0,13.0,9.0,14.0,7.0,7.0,8.0,2.0,4.0,8.0,6.0,7.0,4.0,1.0,2.0,4.0,4.0,,1.0,3.0,2.0,2.0,1.0,2.0,,,,,2.0 M86638,32.0,46.0,33.0,44.0,49.0,48.0,48.0,56.0,44.0,47.0,40.0,32.0,59.0,38.0,40.0,48.0,52.0,47.0,48.0,37.0,21.0,29.0,34.0,27.0,38.0,25.0,33.0,37.0,48.0,38.0,58.0,62.0,51.0,48.0,53.0,56.0,57.0,60.0,54.0,49.0,54.0,51.0,70.0,53.0,44.0,50.0,49.0,37.0,42.0,43.0,40.0,45.0,43.0,35.0,39.0,39.0,45.0,40.0,40.0,48.0,40.0,55.0,47.0,40.0,45.0,39.0,38.0,35.0,41.0,24.0,36.0,31.0,30.0,23.0,25.0,23.0,19.0,17.0,20.0,19.0,15.0,13.0,16.0,5.0,11.0,9.0,4.0,10.0,7.0,1.0,5.0,5.0,1.0,3.0,3.0,2.0 Y00060,,,,,,,,,,,,,,,,,,,,,1.0,,2.0,2.0,4.0,3.0,3.0,4.0,9.0,5.0,10.0,9.0,11.0,8.0,13.0,10.0,5.0,16.0,11.0,12.0,14.0,15.0,12.0,18.0,10.0,7.0,19.0,11.0,14.0,13.0,9.0,8.0,11.0,17.0,7.0,6.0,11.0,22.0,13.0,10.0,6.0,6.0,6.0,5.0,6.0,2.0,4.0,2.0,2.0,,3.0,1.0,,1.0,2.0,,,,,,,,,,,,,,,,,,,,, Y00140,9.0,6.0,9.0,8.0,5.0,11.0,11.0,16.0,16.0,10.0,15.0,15.0,12.0,16.0,13.0,15.0,10.0,11.0,13.0,13.0,6.0,13.0,9.0,18.0,10.0,10.0,6.0,6.0,8.0,8.0,15.0,13.0,21.0,17.0,23.0,19.0,14.0,18.0,17.0,15.0,15.0,16.0,13.0,17.0,16.0,13.0,14.0,22.0,6.0,10.0,17.0,8.0,10.0,20.0,10.0,14.0,12.0,19.0,14.0,14.0,19.0,21.0,12.0,16.0,18.0,19.0,15.0,15.0,16.0,17.0,12.0,14.0,12.0,11.0,12.0,11.0,11.0,8.0,7.0,10.0,9.0,10.0,1.0,7.0,9.0,4.0,2.0,3.0,,4.0,3.0,1.0,,1.0,1.0,1.0 Y00996,15.0,19.0,17.0,16.0,16.0,18.0,11.0,16.0,10.0,21.0,16.0,17.0,17.0,16.0,20.0,19.0,32.0,53.0,91.0,100.0,78.0,103.0,101.0,154.0,176.0,212.0,199.0,181.0,178.0,174.0,127.0,138.0,119.0,93.0,110.0,101.0,63.0,80.0,59.0,63.0,53.0,51.0,39.0,36.0,56.0,34.0,32.0,25.0,27.0,18.0,30.0,18.0,14.0,9.0,8.0,13.0,4.0,5.0,9.0,6.0,10.0,1.0,4.0,2.0,2.0,2.0,3.0,3.0,1.0,,,1.0,,,2.0,,,,,,,,,,,,,,,,,,,,1.0, Y04882,19.0,12.0,21.0,17.0,17.0,17.0,22.0,24.0,30.0,26.0,23.0,19.0,26.0,26.0,15.0,26.0,16.0,19.0,15.0,12.0,12.0,13.0,8.0,10.0,19.0,23.0,26.0,20.0,16.0,22.0,21.0,18.0,25.0,30.0,21.0,23.0,23.0,28.0,21.0,25.0,21.0,20.0,20.0,26.0,23.0,29.0,24.0,20.0,22.0,27.0,24.0,19.0,29.0,28.0,27.0,28.0,31.0,23.0,26.0,27.0,25.0,29.0,16.0,16.0,10.0,29.0,13.0,18.0,11.0,16.0,11.0,15.0,16.0,13.0,14.0,18.0,12.0,12.0,15.0,10.0,11.0,13.0,2.0,6.0,6.0,2.0,3.0,2.0,3.0,3.0,,6.0,1.0,1.0,,1.0 Y04884,12.0,13.0,15.0,13.0,14.0,17.0,9.0,16.0,13.0,24.0,11.0,7.0,21.0,11.0,17.0,21.0,8.0,15.0,15.0,21.0,22.0,21.0,19.0,22.0,10.0,23.0,18.0,19.0,18.0,24.0,23.0,28.0,12.0,26.0,20.0,23.0,23.0,15.0,23.0,21.0,19.0,23.0,11.0,16.0,12.0,10.0,16.0,19.0,21.0,21.0,20.0,24.0,24.0,23.0,42.0,29.0,29.0,23.0,30.0,25.0,23.0,25.0,23.0,26.0,21.0,21.0,24.0,28.0,22.0,16.0,19.0,18.0,15.0,19.0,13.0,20.0,17.0,19.0,16.0,21.0,13.0,13.0,14.0,7.0,6.0,6.0,4.0,3.0,3.0,6.0,3.0,3.0,1.0,7.0,2.0, Y04965,138.0,130.0,152.0,188.0,207.0,146.0,173.0,178.0,187.0,185.0,176.0,165.0,186.0,153.0,172.0,162.0,130.0,123.0,134.0,130.0,141.0,136.0,154.0,133.0,170.0,207.0,230.0,202.0,232.0,234.0,241.0,259.0,254.0,243.0,265.0,282.0,301.0,253.0,262.0,270.0,240.0,225.0,204.0,220.0,187.0,206.0,188.0,166.0,148.0,146.0,144.0,125.0,125.0,115.0,135.0,129.0,99.0,119.0,94.0,83.0,82.0,56.0,71.0,62.0,65.0,54.0,50.0,41.0,43.0,38.0,35.0,37.0,32.0,24.0,20.0,26.0,17.0,22.0,19.0,20.0,17.0,13.0,19.0,15.0,12.0,11.0,10.0,9.0,8.0,5.0,2.0,2.0,1.0,3.0,3.0,4.0 Y04969,22.0,40.0,41.0,34.0,44.0,45.0,32.0,45.0,42.0,42.0,41.0,55.0,54.0,49.0,41.0,44.0,42.0,33.0,36.0,37.0,28.0,21.0,19.0,26.0,22.0,29.0,22.0,34.0,27.0,35.0,44.0,51.0,42.0,48.0,44.0,45.0,58.0,54.0,51.0,46.0,61.0,42.0,58.0,45.0,31.0,50.0,30.0,30.0,36.0,22.0,26.0,24.0,31.0,27.0,15.0,35.0,20.0,19.0,20.0,26.0,24.0,20.0,9.0,15.0,18.0,8.0,7.0,11.0,15.0,7.0,10.0,6.0,7.0,8.0,6.0,14.0,8.0,11.0,6.0,7.0,4.0,3.0,7.0,4.0,3.0,3.0,7.0,3.0,4.0,,1.0,2.0,,,,2.0 Y06218,52.0,63.0,66.0,71.0,80.0,81.0,74.0,76.0,79.0,67.0,69.0,68.0,70.0,60.0,58.0,55.0,54.0,57.0,49.0,37.0,51.0,45.0,46.0,46.0,74.0,51.0,60.0,71.0,74.0,73.0,83.0,78.0,85.0,104.0,103.0,108.0,97.0,87.0,115.0,83.0,96.0,80.0,111.0,72.0,91.0,77.0,91.0,57.0,61.0,61.0,71.0,39.0,56.0,67.0,57.0,58.0,61.0,58.0,67.0,57.0,60.0,49.0,45.0,37.0,36.0,36.0,30.0,28.0,38.0,31.0,24.0,26.0,24.0,19.0,33.0,26.0,20.0,16.0,17.0,9.0,19.0,6.0,8.0,7.0,8.0,3.0,6.0,4.0,6.0,5.0,2.0,6.0,,3.0,1.0,3.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 H81002,49.0,46.0,45.0,55.0,56.0,47.0,46.0,45.0,58.0,52.0,58.0,58.0,53.0,59.0,48.0,49.0,36.0,45.0,37.0,43.0,35.0,34.0,33.0,38.0,44.0,37.0,41.0,48.0,46.0,42.0,61.0,50.0,57.0,60.0,83.0,74.0,75.0,91.0,91.0,90.0,100.0,95.0,83.0,105.0,68.0,81.0,65.0,79.0,69.0,64.0,63.0,60.0,60.0,71.0,64.0,67.0,54.0,40.0,56.0,64.0,50.0,66.0,55.0,46.0,42.0,45.0,36.0,34.0,34.0,40.0,30.0,25.0,36.0,27.0,31.0,28.0,25.0,31.0,33.0,11.0,24.0,20.0,22.0,11.0,15.0,11.0,17.0,9.0,7.0,3.0,5.0,2.0,3.0,5.0,1.0,1.0 H81003,99.0,77.0,83.0,115.0,98.0,111.0,110.0,97.0,131.0,109.0,142.0,130.0,124.0,138.0,139.0,119.0,145.0,126.0,110.0,97.0,89.0,91.0,91.0,95.0,114.0,100.0,112.0,119.0,107.0,110.0,116.0,127.0,101.0,107.0,135.0,124.0,143.0,128.0,124.0,139.0,140.0,118.0,120.0,134.0,126.0,149.0,142.0,153.0,126.0,142.0,124.0,113.0,112.0,139.0,145.0,124.0,137.0,128.0,124.0,137.0,138.0,130.0,124.0,133.0,112.0,103.0,89.0,95.0,70.0,87.0,82.0,83.0,82.0,63.0,78.0,70.0,83.0,79.0,70.0,63.0,54.0,63.0,51.0,40.0,45.0,41.0,20.0,35.0,22.0,23.0,16.0,13.0,12.0,14.0,3.0,14.0 H81004,42.0,59.0,44.0,58.0,71.0,51.0,60.0,59.0,54.0,70.0,71.0,74.0,87.0,77.0,76.0,77.0,75.0,82.0,69.0,52.0,59.0,69.0,50.0,57.0,50.0,57.0,50.0,66.0,48.0,66.0,60.0,57.0,72.0,73.0,61.0,67.0,53.0,85.0,66.0,70.0,74.0,80.0,72.0,85.0,72.0,76.0,70.0,77.0,75.0,73.0,72.0,79.0,96.0,92.0,70.0,75.0,88.0,79.0,97.0,98.0,101.0,80.0,94.0,97.0,91.0,73.0,86.0,87.0,76.0,75.0,74.0,55.0,79.0,64.0,60.0,56.0,49.0,69.0,81.0,57.0,56.0,53.0,58.0,34.0,33.0,41.0,30.0,30.0,38.0,28.0,30.0,16.0,13.0,7.0,8.0,18.0 H81005,26.0,32.0,29.0,49.0,23.0,47.0,38.0,48.0,42.0,37.0,41.0,36.0,42.0,52.0,46.0,42.0,52.0,46.0,30.0,36.0,33.0,33.0,22.0,30.0,36.0,37.0,44.0,29.0,37.0,31.0,25.0,39.0,31.0,30.0,39.0,38.0,39.0,45.0,43.0,30.0,47.0,52.0,53.0,47.0,36.0,41.0,35.0,37.0,44.0,39.0,42.0,37.0,47.0,40.0,47.0,45.0,47.0,52.0,52.0,51.0,40.0,43.0,45.0,47.0,49.0,46.0,38.0,41.0,46.0,29.0,29.0,41.0,34.0,35.0,23.0,34.0,32.0,24.0,29.0,24.0,20.0,20.0,22.0,9.0,7.0,12.0,22.0,8.0,3.0,4.0,7.0,5.0,5.0,3.0,3.0,10.0 H81006,35.0,29.0,21.0,24.0,33.0,37.0,43.0,37.0,44.0,57.0,52.0,58.0,50.0,47.0,56.0,47.0,58.0,59.0,39.0,40.0,43.0,40.0,34.0,43.0,48.0,61.0,72.0,65.0,44.0,71.0,72.0,62.0,56.0,62.0,68.0,58.0,58.0,77.0,66.0,61.0,61.0,65.0,63.0,70.0,63.0,58.0,66.0,55.0,77.0,53.0,56.0,73.0,63.0,80.0,63.0,47.0,57.0,54.0,57.0,59.0,49.0,56.0,68.0,49.0,47.0,43.0,44.0,40.0,41.0,35.0,41.0,37.0,46.0,40.0,28.0,34.0,24.0,28.0,35.0,28.0,14.0,19.0,18.0,22.0,10.0,16.0,5.0,14.0,9.0,7.0,12.0,6.0,9.0,4.0,3.0,5.0 H81009,64.0,87.0,78.0,66.0,90.0,84.0,86.0,92.0,83.0,95.0,107.0,102.0,94.0,102.0,96.0,86.0,110.0,98.0,104.0,93.0,101.0,89.0,80.0,84.0,87.0,81.0,76.0,88.0,97.0,75.0,97.0,80.0,84.0,99.0,109.0,109.0,117.0,119.0,110.0,104.0,115.0,105.0,116.0,131.0,111.0,114.0,112.0,118.0,113.0,100.0,119.0,94.0,135.0,97.0,118.0,110.0,131.0,79.0,104.0,117.0,102.0,122.0,100.0,129.0,124.0,87.0,72.0,78.0,78.0,81.0,75.0,53.0,68.0,56.0,59.0,64.0,48.0,67.0,73.0,48.0,52.0,36.0,44.0,36.0,35.0,26.0,36.0,31.0,19.0,18.0,11.0,17.0,7.0,8.0,4.0,16.0 H81010,104.0,90.0,98.0,114.0,94.0,85.0,97.0,103.0,103.0,118.0,112.0,132.0,110.0,132.0,109.0,108.0,118.0,122.0,243.0,437.0,395.0,415.0,402.0,377.0,375.0,443.0,479.0,365.0,323.0,308.0,261.0,250.0,212.0,248.0,240.0,222.0,230.0,199.0,187.0,189.0,204.0,161.0,175.0,166.0,175.0,162.0,145.0,132.0,118.0,129.0,114.0,120.0,122.0,111.0,120.0,103.0,109.0,115.0,107.0,91.0,93.0,89.0,85.0,98.0,77.0,90.0,69.0,72.0,72.0,71.0,81.0,42.0,48.0,49.0,52.0,55.0,43.0,51.0,55.0,29.0,34.0,40.0,19.0,21.0,34.0,24.0,13.0,20.0,18.0,10.0,9.0,5.0,10.0,8.0,3.0,10.0 H81011,38.0,39.0,42.0,50.0,51.0,51.0,52.0,55.0,57.0,50.0,54.0,69.0,56.0,73.0,65.0,60.0,56.0,53.0,55.0,42.0,30.0,49.0,44.0,42.0,36.0,55.0,32.0,29.0,39.0,35.0,48.0,28.0,35.0,35.0,41.0,43.0,48.0,51.0,58.0,53.0,42.0,66.0,61.0,58.0,69.0,69.0,68.0,72.0,64.0,68.0,48.0,64.0,47.0,67.0,64.0,53.0,53.0,60.0,59.0,55.0,58.0,50.0,56.0,43.0,47.0,53.0,36.0,40.0,39.0,40.0,25.0,31.0,36.0,34.0,31.0,37.0,41.0,48.0,44.0,29.0,35.0,31.0,18.0,25.0,19.0,15.0,13.0,8.0,12.0,9.0,3.0,9.0,4.0,2.0,4.0,4.0 H81015,36.0,47.0,46.0,55.0,57.0,55.0,66.0,64.0,68.0,89.0,60.0,81.0,90.0,98.0,93.0,101.0,95.0,84.0,84.0,55.0,53.0,61.0,53.0,58.0,46.0,48.0,43.0,48.0,55.0,49.0,53.0,48.0,47.0,58.0,57.0,63.0,59.0,87.0,62.0,79.0,78.0,66.0,73.0,63.0,64.0,64.0,73.0,70.0,70.0,58.0,79.0,84.0,90.0,72.0,97.0,63.0,76.0,85.0,72.0,76.0,77.0,81.0,88.0,68.0,58.0,48.0,69.0,63.0,48.0,51.0,37.0,48.0,40.0,31.0,44.0,40.0,49.0,50.0,44.0,18.0,28.0,28.0,28.0,22.0,25.0,28.0,23.0,18.0,26.0,16.0,11.0,9.0,6.0,2.0,4.0,12.0 H81016,20.0,32.0,41.0,30.0,41.0,39.0,43.0,36.0,48.0,49.0,50.0,47.0,58.0,60.0,70.0,71.0,61.0,73.0,55.0,56.0,44.0,51.0,49.0,52.0,53.0,65.0,65.0,49.0,59.0,39.0,55.0,37.0,37.0,50.0,40.0,41.0,36.0,48.0,58.0,46.0,40.0,43.0,61.0,53.0,55.0,49.0,52.0,65.0,61.0,55.0,58.0,66.0,69.0,73.0,72.0,68.0,84.0,98.0,95.0,78.0,80.0,84.0,76.0,71.0,77.0,82.0,60.0,62.0,63.0,68.0,57.0,54.0,68.0,58.0,49.0,63.0,56.0,63.0,66.0,49.0,54.0,56.0,52.0,30.0,27.0,34.0,22.0,39.0,27.0,31.0,15.0,21.0,12.0,8.0,11.0,15.0 H81017,65.0,77.0,82.0,94.0,87.0,93.0,102.0,109.0,113.0,112.0,136.0,99.0,117.0,128.0,150.0,131.0,130.0,135.0,126.0,99.0,105.0,95.0,85.0,83.0,110.0,109.0,98.0,123.0,102.0,110.0,115.0,102.0,93.0,96.0,106.0,119.0,112.0,118.0,133.0,128.0,118.0,130.0,116.0,125.0,138.0,141.0,127.0,149.0,140.0,150.0,157.0,168.0,133.0,168.0,154.0,158.0,131.0,154.0,148.0,125.0,132.0,146.0,116.0,132.0,130.0,126.0,116.0,98.0,101.0,98.0,102.0,90.0,88.0,93.0,74.0,93.0,90.0,82.0,97.0,66.0,59.0,65.0,67.0,45.0,42.0,32.0,45.0,44.0,27.0,37.0,29.0,20.0,16.0,10.0,4.0,23.0 H81019,81.0,60.0,71.0,70.0,66.0,54.0,77.0,66.0,74.0,87.0,70.0,82.0,94.0,95.0,98.0,75.0,101.0,82.0,78.0,65.0,68.0,59.0,84.0,79.0,77.0,88.0,94.0,88.0,99.0,110.0,79.0,107.0,109.0,111.0,123.0,125.0,115.0,124.0,106.0,101.0,113.0,123.0,98.0,98.0,106.0,102.0,92.0,98.0,104.0,102.0,93.0,112.0,93.0,121.0,87.0,88.0,102.0,92.0,72.0,76.0,79.0,104.0,79.0,75.0,64.0,58.0,67.0,63.0,67.0,50.0,57.0,48.0,33.0,46.0,47.0,37.0,45.0,52.0,43.0,28.0,35.0,25.0,25.0,26.0,20.0,23.0,22.0,12.0,15.0,14.0,8.0,9.0,10.0,7.0,8.0,9.0 H81020,62.0,77.0,70.0,63.0,89.0,89.0,82.0,114.0,105.0,126.0,106.0,128.0,130.0,117.0,102.0,92.0,88.0,104.0,76.0,48.0,44.0,52.0,53.0,60.0,51.0,41.0,58.0,24.0,50.0,42.0,46.0,52.0,54.0,56.0,62.0,61.0,73.0,76.0,69.0,79.0,89.0,89.0,101.0,104.0,125.0,112.0,128.0,136.0,106.0,119.0,108.0,91.0,96.0,92.0,104.0,97.0,88.0,77.0,74.0,80.0,90.0,69.0,69.0,79.0,59.0,55.0,54.0,60.0,57.0,56.0,58.0,49.0,43.0,39.0,32.0,38.0,53.0,49.0,48.0,39.0,29.0,30.0,37.0,15.0,24.0,17.0,18.0,16.0,16.0,11.0,8.0,8.0,11.0,2.0,4.0,10.0 H81021,82.0,91.0,73.0,97.0,85.0,95.0,109.0,92.0,110.0,111.0,109.0,96.0,111.0,132.0,183.0,177.0,201.0,222.0,176.0,70.0,88.0,51.0,58.0,56.0,51.0,53.0,56.0,58.0,72.0,79.0,74.0,82.0,102.0,122.0,112.0,114.0,122.0,120.0,118.0,146.0,125.0,125.0,115.0,151.0,137.0,136.0,122.0,112.0,118.0,119.0,137.0,113.0,118.0,115.0,116.0,90.0,99.0,107.0,92.0,90.0,102.0,85.0,99.0,81.0,85.0,79.0,83.0,69.0,72.0,67.0,47.0,72.0,65.0,68.0,52.0,72.0,53.0,55.0,54.0,49.0,52.0,55.0,45.0,34.0,43.0,32.0,15.0,28.0,16.0,15.0,11.0,16.0,12.0,9.0,6.0,18.0 H81022,17.0,20.0,23.0,33.0,30.0,17.0,22.0,35.0,23.0,28.0,27.0,36.0,41.0,31.0,37.0,36.0,41.0,27.0,25.0,19.0,17.0,23.0,27.0,24.0,19.0,21.0,27.0,18.0,21.0,16.0,18.0,13.0,15.0,32.0,26.0,25.0,34.0,25.0,30.0,26.0,25.0,25.0,31.0,48.0,21.0,51.0,32.0,36.0,39.0,37.0,32.0,41.0,44.0,39.0,32.0,44.0,30.0,46.0,42.0,39.0,48.0,34.0,46.0,22.0,41.0,31.0,31.0,36.0,32.0,28.0,28.0,31.0,25.0,32.0,28.0,27.0,23.0,29.0,38.0,30.0,28.0,21.0,27.0,12.0,18.0,9.0,10.0,10.0,6.0,7.0,7.0,3.0,2.0,4.0,,5.0 H81023,44.0,56.0,47.0,68.0,67.0,58.0,69.0,59.0,68.0,76.0,64.0,63.0,71.0,57.0,68.0,67.0,59.0,70.0,63.0,51.0,52.0,63.0,59.0,54.0,62.0,67.0,71.0,60.0,60.0,37.0,50.0,44.0,56.0,51.0,65.0,67.0,68.0,74.0,39.0,71.0,66.0,61.0,69.0,65.0,56.0,61.0,69.0,81.0,58.0,57.0,82.0,79.0,75.0,77.0,74.0,68.0,85.0,106.0,92.0,79.0,73.0,97.0,92.0,73.0,86.0,71.0,64.0,67.0,53.0,67.0,64.0,54.0,62.0,49.0,51.0,53.0,54.0,64.0,49.0,52.0,41.0,36.0,33.0,31.0,37.0,18.0,33.0,23.0,12.0,18.0,7.0,11.0,10.0,8.0,7.0,13.0 H81024,41.0,63.0,62.0,76.0,59.0,67.0,59.0,72.0,81.0,83.0,94.0,74.0,87.0,90.0,86.0,85.0,104.0,90.0,87.0,65.0,75.0,60.0,58.0,79.0,70.0,80.0,85.0,94.0,95.0,99.0,96.0,95.0,103.0,100.0,100.0,104.0,102.0,85.0,88.0,92.0,92.0,102.0,103.0,99.0,102.0,113.0,96.0,80.0,105.0,100.0,84.0,97.0,83.0,83.0,82.0,61.0,79.0,83.0,76.0,76.0,72.0,85.0,70.0,60.0,68.0,81.0,69.0,66.0,62.0,60.0,59.0,58.0,45.0,58.0,58.0,56.0,39.0,39.0,44.0,43.0,30.0,27.0,27.0,28.0,25.0,10.0,14.0,22.0,12.0,13.0,10.0,9.0,6.0,6.0,3.0,7.0 H81025,30.0,31.0,44.0,35.0,37.0,53.0,52.0,63.0,56.0,72.0,68.0,58.0,53.0,71.0,67.0,62.0,61.0,82.0,69.0,68.0,52.0,57.0,70.0,53.0,64.0,60.0,72.0,54.0,61.0,57.0,73.0,64.0,57.0,74.0,67.0,63.0,79.0,63.0,80.0,70.0,65.0,81.0,74.0,84.0,101.0,92.0,82.0,75.0,70.0,80.0,88.0,75.0,77.0,85.0,88.0,80.0,81.0,87.0,79.0,93.0,93.0,70.0,76.0,88.0,73.0,63.0,64.0,60.0,53.0,46.0,57.0,47.0,53.0,75.0,72.0,65.0,61.0,53.0,72.0,39.0,42.0,42.0,40.0,22.0,26.0,31.0,23.0,17.0,25.0,25.0,14.0,8.0,7.0,5.0,3.0,13.0 H81026,43.0,49.0,55.0,72.0,61.0,70.0,76.0,65.0,52.0,75.0,68.0,67.0,56.0,61.0,75.0,62.0,66.0,77.0,55.0,51.0,38.0,41.0,54.0,46.0,66.0,59.0,69.0,45.0,52.0,60.0,65.0,61.0,64.0,76.0,85.0,93.0,98.0,94.0,95.0,83.0,83.0,82.0,81.0,85.0,87.0,79.0,66.0,98.0,80.0,88.0,78.0,82.0,77.0,82.0,93.0,87.0,81.0,84.0,79.0,86.0,65.0,85.0,80.0,66.0,73.0,59.0,58.0,68.0,55.0,44.0,46.0,41.0,53.0,43.0,50.0,38.0,46.0,44.0,47.0,40.0,30.0,38.0,26.0,35.0,24.0,27.0,18.0,17.0,20.0,11.0,11.0,4.0,8.0,10.0,5.0,12.0 H81028,47.0,39.0,41.0,33.0,44.0,46.0,27.0,39.0,38.0,37.0,51.0,48.0,48.0,62.0,66.0,55.0,69.0,61.0,56.0,38.0,48.0,47.0,38.0,44.0,53.0,61.0,67.0,70.0,58.0,71.0,76.0,72.0,66.0,76.0,77.0,63.0,64.0,78.0,56.0,53.0,68.0,57.0,54.0,60.0,77.0,73.0,66.0,54.0,61.0,58.0,85.0,78.0,89.0,92.0,83.0,88.0,76.0,88.0,96.0,118.0,102.0,89.0,91.0,84.0,79.0,83.0,82.0,72.0,84.0,72.0,63.0,61.0,64.0,57.0,64.0,67.0,41.0,66.0,76.0,46.0,48.0,45.0,35.0,33.0,23.0,28.0,23.0,30.0,20.0,15.0,17.0,12.0,9.0,11.0,5.0,9.0 H81029,54.0,49.0,62.0,49.0,45.0,52.0,49.0,56.0,57.0,66.0,52.0,52.0,57.0,73.0,64.0,54.0,62.0,74.0,82.0,80.0,88.0,97.0,95.0,94.0,117.0,116.0,140.0,158.0,123.0,152.0,113.0,110.0,138.0,141.0,139.0,127.0,152.0,120.0,100.0,131.0,124.0,123.0,115.0,109.0,115.0,104.0,94.0,90.0,101.0,88.0,90.0,92.0,94.0,78.0,95.0,70.0,82.0,52.0,76.0,82.0,99.0,82.0,57.0,53.0,60.0,41.0,52.0,54.0,50.0,43.0,34.0,33.0,45.0,38.0,29.0,48.0,38.0,36.0,37.0,31.0,30.0,22.0,20.0,18.0,12.0,15.0,9.0,16.0,11.0,3.0,4.0,6.0,7.0,3.0,4.0,6.0 H81030,156.0,181.0,141.0,184.0,175.0,165.0,184.0,169.0,192.0,193.0,175.0,203.0,171.0,200.0,176.0,207.0,181.0,182.0,181.0,149.0,138.0,140.0,123.0,151.0,141.0,141.0,177.0,159.0,160.0,201.0,212.0,237.0,241.0,233.0,261.0,295.0,287.0,289.0,246.0,241.0,272.0,266.0,228.0,238.0,235.0,212.0,217.0,205.0,184.0,198.0,207.0,185.0,173.0,207.0,185.0,178.0,199.0,167.0,169.0,176.0,160.0,167.0,155.0,168.0,122.0,127.0,138.0,110.0,93.0,121.0,98.0,103.0,83.0,95.0,78.0,89.0,110.0,89.0,97.0,64.0,60.0,52.0,48.0,31.0,32.0,36.0,46.0,33.0,22.0,24.0,22.0,7.0,8.0,11.0,5.0,12.0 H81031,34.0,42.0,60.0,56.0,52.0,51.0,68.0,73.0,61.0,65.0,75.0,70.0,75.0,83.0,77.0,87.0,88.0,73.0,82.0,53.0,45.0,50.0,60.0,70.0,55.0,57.0,60.0,55.0,53.0,62.0,55.0,74.0,64.0,59.0,62.0,60.0,70.0,84.0,71.0,84.0,87.0,73.0,74.0,79.0,87.0,83.0,103.0,75.0,82.0,88.0,98.0,95.0,93.0,84.0,87.0,94.0,87.0,92.0,103.0,77.0,79.0,89.0,79.0,75.0,78.0,77.0,50.0,61.0,57.0,59.0,38.0,52.0,59.0,45.0,28.0,54.0,44.0,49.0,38.0,30.0,37.0,39.0,34.0,24.0,15.0,26.0,15.0,22.0,13.0,11.0,12.0,4.0,8.0,8.0,3.0,8.0 H81032,70.0,77.0,82.0,80.0,111.0,119.0,135.0,123.0,117.0,131.0,148.0,123.0,126.0,149.0,117.0,150.0,132.0,149.0,113.0,104.0,73.0,74.0,91.0,74.0,93.0,83.0,100.0,87.0,102.0,105.0,106.0,91.0,116.0,109.0,99.0,114.0,157.0,152.0,139.0,141.0,163.0,158.0,148.0,155.0,167.0,198.0,157.0,155.0,145.0,181.0,163.0,151.0,143.0,120.0,147.0,149.0,104.0,137.0,104.0,123.0,121.0,95.0,111.0,93.0,87.0,89.0,74.0,78.0,62.0,58.0,73.0,60.0,53.0,58.0,47.0,69.0,49.0,59.0,62.0,30.0,45.0,35.0,34.0,33.0,23.0,27.0,19.0,10.0,13.0,22.0,11.0,10.0,4.0,7.0,3.0,11.0 H81033,114.0,122.0,137.0,134.0,124.0,129.0,135.0,129.0,161.0,132.0,135.0,151.0,129.0,150.0,133.0,138.0,143.0,129.0,120.0,110.0,88.0,101.0,111.0,122.0,103.0,100.0,93.0,145.0,132.0,137.0,142.0,150.0,179.0,162.0,165.0,180.0,175.0,189.0,175.0,159.0,165.0,160.0,159.0,176.0,182.0,185.0,180.0,144.0,160.0,150.0,148.0,136.0,154.0,181.0,148.0,160.0,136.0,152.0,136.0,143.0,142.0,144.0,155.0,127.0,132.0,126.0,126.0,107.0,94.0,118.0,85.0,85.0,74.0,74.0,82.0,61.0,80.0,76.0,98.0,62.0,60.0,63.0,60.0,40.0,34.0,40.0,20.0,27.0,18.0,21.0,15.0,14.0,11.0,8.0,5.0,10.0 H81034,36.0,32.0,38.0,45.0,43.0,43.0,49.0,51.0,44.0,51.0,45.0,46.0,55.0,57.0,50.0,44.0,50.0,51.0,45.0,48.0,34.0,52.0,37.0,47.0,56.0,42.0,35.0,47.0,42.0,45.0,47.0,50.0,60.0,61.0,61.0,61.0,57.0,65.0,61.0,49.0,62.0,65.0,54.0,67.0,65.0,72.0,71.0,80.0,73.0,69.0,47.0,74.0,64.0,61.0,85.0,60.0,54.0,68.0,66.0,63.0,49.0,69.0,71.0,64.0,48.0,45.0,44.0,48.0,41.0,42.0,33.0,34.0,43.0,44.0,34.0,33.0,49.0,44.0,45.0,25.0,33.0,25.0,26.0,18.0,18.0,20.0,19.0,12.0,21.0,19.0,11.0,10.0,3.0,8.0,4.0,11.0 H81035,32.0,31.0,42.0,44.0,55.0,63.0,74.0,58.0,79.0,67.0,90.0,98.0,105.0,91.0,89.0,91.0,93.0,101.0,87.0,66.0,67.0,61.0,56.0,54.0,58.0,79.0,70.0,62.0,65.0,62.0,59.0,61.0,67.0,70.0,81.0,77.0,82.0,71.0,69.0,65.0,87.0,73.0,85.0,82.0,88.0,96.0,105.0,113.0,104.0,86.0,100.0,98.0,101.0,102.0,91.0,75.0,82.0,85.0,68.0,93.0,81.0,71.0,77.0,61.0,77.0,51.0,61.0,63.0,55.0,50.0,56.0,46.0,53.0,39.0,56.0,40.0,39.0,46.0,44.0,33.0,35.0,31.0,25.0,13.0,23.0,17.0,13.0,12.0,8.0,4.0,6.0,14.0,8.0,5.0,2.0,9.0 H81036,40.0,39.0,55.0,36.0,47.0,42.0,48.0,47.0,53.0,39.0,55.0,50.0,47.0,64.0,64.0,61.0,60.0,66.0,67.0,54.0,53.0,56.0,62.0,48.0,48.0,48.0,58.0,48.0,70.0,62.0,66.0,52.0,61.0,61.0,66.0,65.0,75.0,68.0,62.0,65.0,67.0,63.0,87.0,63.0,71.0,72.0,69.0,71.0,81.0,75.0,79.0,92.0,72.0,80.0,73.0,73.0,87.0,67.0,63.0,65.0,82.0,64.0,74.0,60.0,70.0,64.0,63.0,42.0,52.0,37.0,45.0,41.0,47.0,37.0,33.0,36.0,48.0,48.0,45.0,40.0,42.0,35.0,28.0,22.0,15.0,18.0,20.0,18.0,20.0,15.0,8.0,6.0,5.0,4.0,6.0,16.0 H81038,2.0,7.0,10.0,8.0,1.0,11.0,12.0,22.0,18.0,18.0,24.0,19.0,30.0,25.0,30.0,33.0,31.0,28.0,27.0,20.0,29.0,26.0,20.0,28.0,23.0,26.0,20.0,15.0,16.0,20.0,19.0,15.0,20.0,22.0,19.0,19.0,25.0,13.0,13.0,27.0,18.0,23.0,23.0,25.0,24.0,24.0,24.0,34.0,27.0,28.0,41.0,33.0,27.0,35.0,35.0,25.0,28.0,30.0,30.0,35.0,38.0,23.0,30.0,33.0,22.0,24.0,20.0,29.0,21.0,22.0,20.0,17.0,19.0,17.0,15.0,15.0,19.0,19.0,26.0,14.0,16.0,14.0,8.0,10.0,7.0,6.0,3.0,5.0,4.0,3.0,4.0,3.0,2.0,1.0,5.0,7.0 H81041,47.0,40.0,54.0,53.0,57.0,66.0,82.0,66.0,70.0,67.0,65.0,89.0,73.0,68.0,80.0,69.0,73.0,75.0,57.0,56.0,56.0,45.0,50.0,48.0,48.0,55.0,66.0,57.0,66.0,65.0,65.0,78.0,69.0,67.0,83.0,73.0,86.0,80.0,92.0,92.0,97.0,96.0,114.0,96.0,107.0,113.0,115.0,115.0,93.0,89.0,81.0,85.0,97.0,85.0,69.0,84.0,73.0,72.0,79.0,80.0,64.0,64.0,51.0,48.0,60.0,38.0,39.0,44.0,47.0,45.0,51.0,29.0,32.0,32.0,32.0,23.0,30.0,31.0,42.0,37.0,29.0,25.0,24.0,11.0,15.0,13.0,13.0,7.0,9.0,8.0,6.0,7.0,3.0,3.0,2.0,9.0 H81042,92.0,91.0,118.0,96.0,117.0,96.0,112.0,98.0,100.0,93.0,103.0,103.0,105.0,111.0,96.0,125.0,99.0,116.0,100.0,85.0,74.0,83.0,90.0,76.0,74.0,102.0,91.0,79.0,91.0,102.0,115.0,128.0,116.0,120.0,130.0,130.0,152.0,134.0,137.0,125.0,139.0,124.0,161.0,134.0,126.0,125.0,113.0,117.0,129.0,125.0,111.0,134.0,115.0,114.0,118.0,99.0,117.0,95.0,113.0,100.0,114.0,132.0,119.0,98.0,92.0,85.0,91.0,75.0,75.0,51.0,67.0,61.0,59.0,49.0,53.0,64.0,57.0,53.0,62.0,44.0,45.0,50.0,43.0,22.0,21.0,33.0,24.0,21.0,20.0,14.0,16.0,14.0,8.0,5.0,3.0,14.0 H81043,47.0,45.0,39.0,51.0,43.0,36.0,48.0,45.0,58.0,63.0,38.0,58.0,75.0,68.0,68.0,50.0,60.0,58.0,54.0,48.0,40.0,42.0,47.0,33.0,43.0,51.0,33.0,41.0,36.0,36.0,41.0,53.0,46.0,51.0,48.0,50.0,55.0,55.0,45.0,58.0,59.0,55.0,67.0,44.0,67.0,61.0,64.0,70.0,73.0,68.0,87.0,65.0,78.0,70.0,81.0,87.0,89.0,91.0,77.0,81.0,88.0,81.0,75.0,63.0,63.0,73.0,78.0,58.0,52.0,47.0,45.0,51.0,44.0,43.0,57.0,43.0,42.0,52.0,63.0,54.0,39.0,35.0,40.0,30.0,22.0,31.0,27.0,24.0,19.0,20.0,12.0,15.0,6.0,8.0,3.0,5.0 H81044,9.0,13.0,17.0,26.0,20.0,26.0,19.0,27.0,27.0,26.0,30.0,34.0,34.0,31.0,29.0,18.0,24.0,27.0,18.0,17.0,24.0,22.0,24.0,19.0,19.0,20.0,17.0,16.0,23.0,11.0,21.0,18.0,23.0,25.0,21.0,22.0,19.0,22.0,24.0,27.0,28.0,24.0,40.0,23.0,26.0,21.0,26.0,35.0,30.0,35.0,31.0,41.0,32.0,37.0,38.0,29.0,26.0,53.0,36.0,43.0,51.0,46.0,35.0,36.0,42.0,42.0,22.0,27.0,28.0,29.0,31.0,28.0,27.0,23.0,16.0,19.0,31.0,22.0,27.0,25.0,27.0,21.0,23.0,13.0,6.0,19.0,19.0,7.0,17.0,12.0,4.0,7.0,6.0,5.0,1.0,9.0 H81045,42.0,63.0,58.0,57.0,61.0,73.0,48.0,61.0,63.0,68.0,64.0,51.0,73.0,76.0,80.0,68.0,69.0,88.0,76.0,77.0,65.0,47.0,50.0,46.0,56.0,48.0,46.0,49.0,55.0,60.0,54.0,67.0,51.0,83.0,68.0,86.0,84.0,60.0,81.0,71.0,101.0,84.0,59.0,86.0,77.0,78.0,79.0,65.0,68.0,61.0,74.0,75.0,66.0,76.0,70.0,70.0,71.0,78.0,68.0,73.0,72.0,61.0,54.0,67.0,68.0,56.0,36.0,46.0,44.0,46.0,63.0,38.0,41.0,26.0,36.0,40.0,42.0,44.0,38.0,40.0,27.0,31.0,22.0,20.0,17.0,10.0,13.0,19.0,9.0,9.0,6.0,13.0,10.0,6.0,6.0,7.0 H81046,50.0,51.0,34.0,56.0,49.0,53.0,38.0,62.0,40.0,41.0,37.0,41.0,35.0,33.0,39.0,35.0,37.0,46.0,46.0,27.0,26.0,32.0,33.0,30.0,46.0,43.0,39.0,45.0,47.0,42.0,53.0,43.0,65.0,69.0,74.0,76.0,70.0,69.0,61.0,81.0,52.0,45.0,58.0,53.0,47.0,44.0,39.0,47.0,40.0,35.0,44.0,43.0,54.0,41.0,47.0,38.0,38.0,37.0,34.0,33.0,35.0,42.0,33.0,32.0,23.0,28.0,42.0,24.0,32.0,27.0,27.0,30.0,28.0,20.0,22.0,24.0,22.0,22.0,28.0,17.0,18.0,7.0,11.0,7.0,11.0,10.0,15.0,9.0,4.0,2.0,7.0,5.0,5.0,3.0,4.0,6.0 H81048,64.0,59.0,87.0,50.0,57.0,66.0,53.0,70.0,75.0,76.0,82.0,80.0,88.0,85.0,94.0,86.0,101.0,82.0,73.0,64.0,51.0,44.0,58.0,53.0,47.0,75.0,49.0,47.0,68.0,66.0,62.0,75.0,71.0,123.0,89.0,76.0,95.0,85.0,85.0,88.0,92.0,88.0,87.0,88.0,89.0,108.0,89.0,87.0,78.0,83.0,87.0,68.0,78.0,73.0,75.0,66.0,53.0,66.0,60.0,54.0,58.0,56.0,45.0,48.0,49.0,50.0,35.0,31.0,35.0,18.0,24.0,21.0,23.0,21.0,24.0,22.0,32.0,29.0,18.0,21.0,17.0,24.0,21.0,15.0,13.0,10.0,5.0,7.0,7.0,11.0,1.0,3.0,1.0,3.0,,4.0 H81050,59.0,63.0,55.0,66.0,81.0,96.0,78.0,67.0,94.0,70.0,85.0,72.0,92.0,78.0,90.0,62.0,74.0,76.0,71.0,52.0,42.0,64.0,41.0,39.0,62.0,53.0,48.0,47.0,52.0,43.0,53.0,53.0,70.0,59.0,81.0,57.0,80.0,81.0,92.0,88.0,96.0,95.0,99.0,107.0,84.0,114.0,98.0,85.0,108.0,87.0,93.0,93.0,92.0,85.0,84.0,76.0,65.0,87.0,83.0,73.0,71.0,65.0,80.0,75.0,59.0,57.0,61.0,54.0,51.0,48.0,42.0,48.0,47.0,51.0,47.0,42.0,51.0,67.0,55.0,41.0,46.0,50.0,33.0,32.0,28.0,17.0,12.0,19.0,19.0,17.0,15.0,7.0,9.0,10.0,6.0,22.0 H81051,42.0,53.0,69.0,71.0,81.0,80.0,89.0,99.0,106.0,105.0,104.0,98.0,82.0,103.0,81.0,95.0,92.0,91.0,96.0,90.0,63.0,75.0,67.0,84.0,82.0,116.0,87.0,101.0,87.0,85.0,95.0,86.0,90.0,74.0,91.0,105.0,97.0,90.0,93.0,107.0,96.0,96.0,128.0,113.0,109.0,123.0,138.0,127.0,116.0,120.0,103.0,97.0,118.0,119.0,85.0,96.0,92.0,85.0,83.0,81.0,78.0,86.0,84.0,72.0,61.0,47.0,56.0,50.0,53.0,74.0,42.0,26.0,40.0,43.0,41.0,68.0,52.0,48.0,46.0,42.0,45.0,28.0,35.0,16.0,25.0,16.0,19.0,17.0,17.0,12.0,11.0,4.0,5.0,11.0,6.0,10.0 H81052,81.0,71.0,84.0,98.0,82.0,113.0,88.0,81.0,101.0,104.0,92.0,99.0,107.0,98.0,118.0,98.0,104.0,124.0,124.0,92.0,78.0,94.0,80.0,84.0,84.0,88.0,100.0,99.0,90.0,84.0,94.0,98.0,121.0,94.0,120.0,108.0,103.0,101.0,106.0,125.0,100.0,98.0,90.0,106.0,100.0,100.0,117.0,109.0,103.0,96.0,127.0,92.0,104.0,124.0,122.0,106.0,115.0,121.0,101.0,135.0,103.0,100.0,110.0,106.0,100.0,105.0,99.0,89.0,84.0,101.0,98.0,100.0,85.0,98.0,94.0,83.0,79.0,134.0,124.0,71.0,90.0,85.0,57.0,50.0,51.0,60.0,43.0,35.0,39.0,43.0,15.0,14.0,14.0,16.0,9.0,21.0 H81053,38.0,39.0,44.0,41.0,40.0,32.0,46.0,53.0,53.0,49.0,44.0,46.0,50.0,61.0,66.0,39.0,61.0,57.0,61.0,46.0,53.0,46.0,50.0,49.0,48.0,42.0,37.0,39.0,25.0,46.0,31.0,49.0,46.0,47.0,50.0,62.0,47.0,42.0,48.0,51.0,53.0,41.0,44.0,57.0,45.0,62.0,60.0,61.0,53.0,66.0,59.0,57.0,67.0,86.0,74.0,61.0,61.0,71.0,68.0,68.0,75.0,68.0,56.0,65.0,59.0,52.0,51.0,54.0,47.0,41.0,44.0,57.0,50.0,43.0,35.0,39.0,38.0,42.0,52.0,36.0,31.0,35.0,20.0,25.0,21.0,21.0,12.0,10.0,17.0,10.0,12.0,8.0,3.0,5.0,4.0,9.0 H81055,38.0,52.0,49.0,37.0,43.0,49.0,56.0,55.0,49.0,52.0,52.0,50.0,52.0,50.0,43.0,60.0,70.0,65.0,42.0,48.0,38.0,49.0,43.0,37.0,47.0,41.0,47.0,46.0,46.0,48.0,50.0,61.0,65.0,63.0,66.0,72.0,89.0,64.0,67.0,72.0,67.0,63.0,71.0,71.0,60.0,60.0,52.0,54.0,50.0,53.0,50.0,63.0,54.0,51.0,46.0,52.0,58.0,64.0,57.0,69.0,60.0,54.0,49.0,64.0,53.0,52.0,38.0,49.0,44.0,58.0,36.0,38.0,44.0,27.0,43.0,39.0,35.0,37.0,45.0,33.0,24.0,23.0,20.0,23.0,18.0,13.0,17.0,13.0,20.0,15.0,18.0,12.0,6.0,8.0,8.0,7.0 H81056,68.0,77.0,71.0,90.0,99.0,70.0,109.0,97.0,86.0,95.0,101.0,119.0,105.0,121.0,92.0,101.0,111.0,108.0,97.0,83.0,78.0,87.0,92.0,94.0,107.0,68.0,87.0,73.0,82.0,88.0,77.0,71.0,88.0,71.0,99.0,87.0,85.0,110.0,105.0,106.0,92.0,103.0,104.0,101.0,101.0,134.0,127.0,113.0,118.0,104.0,114.0,121.0,119.0,108.0,130.0,125.0,130.0,110.0,116.0,108.0,117.0,115.0,122.0,111.0,120.0,98.0,77.0,92.0,79.0,70.0,77.0,81.0,84.0,77.0,60.0,87.0,76.0,88.0,92.0,77.0,61.0,66.0,58.0,38.0,30.0,36.0,34.0,42.0,35.0,25.0,16.0,13.0,14.0,15.0,11.0,29.0 H81057,43.0,47.0,61.0,48.0,47.0,41.0,43.0,46.0,51.0,44.0,44.0,36.0,47.0,42.0,51.0,45.0,40.0,50.0,31.0,60.0,34.0,43.0,41.0,41.0,33.0,62.0,48.0,43.0,66.0,43.0,61.0,72.0,69.0,71.0,75.0,64.0,61.0,60.0,46.0,67.0,57.0,78.0,63.0,57.0,47.0,52.0,39.0,48.0,57.0,37.0,51.0,43.0,49.0,55.0,40.0,61.0,57.0,58.0,55.0,77.0,54.0,61.0,49.0,49.0,40.0,44.0,48.0,31.0,39.0,34.0,35.0,29.0,29.0,32.0,25.0,26.0,30.0,27.0,29.0,22.0,19.0,19.0,15.0,14.0,16.0,24.0,12.0,17.0,6.0,6.0,3.0,1.0,4.0,6.0,1.0,6.0 H81058,35.0,40.0,42.0,59.0,48.0,51.0,56.0,72.0,54.0,57.0,72.0,71.0,65.0,66.0,62.0,64.0,85.0,61.0,61.0,50.0,47.0,50.0,37.0,56.0,57.0,58.0,60.0,54.0,54.0,63.0,50.0,53.0,65.0,70.0,68.0,66.0,82.0,70.0,74.0,69.0,83.0,88.0,79.0,103.0,92.0,73.0,81.0,85.0,81.0,71.0,89.0,96.0,83.0,89.0,82.0,70.0,74.0,72.0,83.0,69.0,72.0,56.0,68.0,54.0,52.0,63.0,48.0,44.0,45.0,35.0,44.0,49.0,41.0,30.0,32.0,35.0,40.0,39.0,30.0,28.0,21.0,18.0,21.0,25.0,15.0,10.0,17.0,16.0,12.0,5.0,2.0,5.0,3.0,1.0,3.0,3.0 H81061,84.0,82.0,76.0,105.0,90.0,96.0,75.0,116.0,95.0,102.0,87.0,100.0,80.0,103.0,72.0,83.0,84.0,94.0,79.0,79.0,57.0,46.0,63.0,62.0,90.0,91.0,124.0,133.0,121.0,126.0,144.0,142.0,172.0,160.0,159.0,175.0,193.0,173.0,169.0,157.0,177.0,142.0,152.0,155.0,170.0,149.0,140.0,109.0,125.0,118.0,121.0,105.0,94.0,85.0,114.0,79.0,110.0,89.0,76.0,83.0,66.0,100.0,68.0,69.0,60.0,72.0,62.0,56.0,57.0,50.0,48.0,43.0,43.0,48.0,48.0,40.0,37.0,50.0,30.0,24.0,35.0,24.0,17.0,13.0,14.0,26.0,16.0,18.0,21.0,12.0,10.0,13.0,7.0,5.0,5.0,5.0 H81062,73.0,81.0,71.0,92.0,79.0,106.0,101.0,128.0,123.0,133.0,110.0,129.0,118.0,146.0,123.0,115.0,129.0,137.0,127.0,98.0,96.0,90.0,80.0,97.0,93.0,84.0,87.0,86.0,74.0,79.0,78.0,72.0,98.0,95.0,92.0,111.0,94.0,88.0,101.0,112.0,100.0,107.0,137.0,139.0,151.0,141.0,136.0,132.0,139.0,142.0,164.0,166.0,154.0,164.0,135.0,144.0,158.0,147.0,142.0,135.0,130.0,116.0,114.0,124.0,97.0,110.0,114.0,115.0,97.0,81.0,92.0,93.0,86.0,90.0,69.0,80.0,89.0,108.0,92.0,59.0,73.0,78.0,51.0,37.0,36.0,40.0,35.0,34.0,33.0,27.0,30.0,19.0,12.0,11.0,9.0,27.0 H81064,59.0,68.0,64.0,70.0,78.0,68.0,96.0,96.0,77.0,85.0,77.0,85.0,85.0,75.0,92.0,86.0,85.0,73.0,75.0,55.0,77.0,76.0,62.0,50.0,69.0,70.0,65.0,55.0,70.0,61.0,51.0,91.0,86.0,87.0,91.0,91.0,94.0,76.0,107.0,108.0,106.0,100.0,76.0,79.0,102.0,87.0,100.0,75.0,86.0,85.0,109.0,100.0,98.0,110.0,97.0,103.0,114.0,90.0,93.0,99.0,87.0,103.0,100.0,91.0,81.0,85.0,69.0,79.0,87.0,84.0,64.0,49.0,69.0,68.0,73.0,51.0,54.0,72.0,72.0,51.0,47.0,59.0,48.0,29.0,32.0,24.0,29.0,21.0,23.0,23.0,17.0,9.0,8.0,4.0,8.0,11.0 H81065,54.0,52.0,60.0,81.0,72.0,75.0,70.0,89.0,62.0,47.0,61.0,59.0,71.0,84.0,70.0,74.0,59.0,68.0,54.0,42.0,31.0,50.0,38.0,35.0,37.0,53.0,39.0,40.0,45.0,45.0,50.0,44.0,64.0,64.0,69.0,79.0,78.0,73.0,67.0,73.0,95.0,69.0,86.0,91.0,85.0,87.0,93.0,85.0,79.0,55.0,69.0,81.0,68.0,68.0,51.0,48.0,58.0,54.0,52.0,51.0,60.0,50.0,49.0,39.0,35.0,41.0,39.0,35.0,42.0,34.0,39.0,44.0,32.0,32.0,26.0,36.0,30.0,40.0,36.0,31.0,30.0,26.0,28.0,28.0,18.0,21.0,20.0,8.0,27.0,9.0,8.0,8.0,4.0,7.0,7.0,8.0 H81066,60.0,79.0,73.0,75.0,71.0,84.0,75.0,69.0,75.0,80.0,104.0,78.0,83.0,86.0,97.0,101.0,119.0,124.0,103.0,87.0,103.0,116.0,100.0,90.0,107.0,89.0,102.0,86.0,84.0,99.0,91.0,102.0,102.0,114.0,107.0,113.0,127.0,124.0,121.0,102.0,125.0,103.0,109.0,109.0,125.0,123.0,115.0,119.0,115.0,100.0,127.0,92.0,97.0,102.0,108.0,97.0,135.0,103.0,119.0,81.0,119.0,95.0,96.0,87.0,76.0,87.0,74.0,64.0,62.0,62.0,44.0,74.0,67.0,46.0,38.0,45.0,50.0,49.0,55.0,37.0,26.0,33.0,21.0,32.0,28.0,23.0,18.0,18.0,17.0,21.0,12.0,12.0,10.0,8.0,6.0,14.0 H81067,49.0,49.0,42.0,57.0,56.0,67.0,54.0,54.0,75.0,69.0,76.0,80.0,92.0,106.0,114.0,118.0,131.0,148.0,131.0,97.0,97.0,93.0,67.0,100.0,83.0,79.0,71.0,77.0,60.0,72.0,67.0,56.0,53.0,65.0,60.0,76.0,79.0,55.0,83.0,64.0,80.0,78.0,76.0,87.0,85.0,96.0,115.0,108.0,105.0,105.0,106.0,107.0,90.0,110.0,117.0,107.0,116.0,90.0,85.0,108.0,104.0,99.0,90.0,87.0,79.0,70.0,74.0,46.0,67.0,58.0,54.0,55.0,57.0,56.0,67.0,51.0,48.0,65.0,69.0,39.0,53.0,56.0,36.0,26.0,46.0,23.0,27.0,33.0,21.0,16.0,14.0,14.0,18.0,5.0,10.0,16.0 H81068,47.0,40.0,41.0,42.0,35.0,51.0,48.0,77.0,49.0,59.0,59.0,53.0,64.0,64.0,79.0,72.0,70.0,75.0,71.0,63.0,66.0,62.0,62.0,79.0,64.0,70.0,60.0,63.0,60.0,54.0,72.0,56.0,55.0,58.0,59.0,72.0,74.0,65.0,57.0,64.0,59.0,71.0,58.0,80.0,80.0,60.0,70.0,83.0,80.0,64.0,76.0,81.0,86.0,110.0,82.0,75.0,91.0,105.0,92.0,112.0,119.0,120.0,108.0,101.0,94.0,88.0,88.0,74.0,83.0,61.0,69.0,76.0,69.0,65.0,62.0,67.0,68.0,67.0,77.0,63.0,46.0,54.0,43.0,36.0,37.0,29.0,33.0,27.0,22.0,27.0,11.0,10.0,10.0,10.0,6.0,13.0 H81070,37.0,34.0,34.0,54.0,48.0,64.0,55.0,58.0,57.0,57.0,59.0,70.0,79.0,74.0,78.0,75.0,72.0,83.0,72.0,49.0,50.0,75.0,63.0,56.0,79.0,62.0,71.0,60.0,69.0,50.0,61.0,52.0,48.0,63.0,64.0,59.0,68.0,69.0,56.0,69.0,69.0,57.0,54.0,74.0,59.0,73.0,57.0,75.0,67.0,78.0,84.0,81.0,84.0,88.0,83.0,90.0,84.0,97.0,81.0,95.0,110.0,97.0,114.0,82.0,93.0,90.0,83.0,87.0,76.0,74.0,58.0,51.0,54.0,60.0,54.0,60.0,68.0,67.0,74.0,57.0,48.0,41.0,39.0,39.0,23.0,26.0,26.0,20.0,17.0,16.0,15.0,14.0,10.0,9.0,9.0,14.0 H81071,46.0,56.0,51.0,51.0,54.0,44.0,45.0,71.0,72.0,60.0,61.0,68.0,52.0,68.0,46.0,70.0,50.0,61.0,66.0,54.0,61.0,71.0,58.0,60.0,54.0,58.0,48.0,67.0,66.0,57.0,59.0,83.0,62.0,86.0,77.0,74.0,80.0,62.0,87.0,85.0,70.0,71.0,86.0,100.0,100.0,103.0,97.0,76.0,96.0,95.0,65.0,74.0,85.0,77.0,83.0,69.0,66.0,79.0,66.0,71.0,72.0,71.0,58.0,56.0,59.0,48.0,44.0,46.0,42.0,29.0,36.0,44.0,36.0,27.0,26.0,34.0,39.0,44.0,30.0,27.0,21.0,17.0,17.0,16.0,14.0,17.0,8.0,16.0,8.0,9.0,1.0,7.0,4.0,7.0,3.0,7.0 H81072,56.0,59.0,66.0,94.0,66.0,64.0,84.0,61.0,82.0,99.0,85.0,106.0,102.0,85.0,100.0,92.0,85.0,102.0,75.0,60.0,67.0,47.0,64.0,60.0,68.0,76.0,75.0,65.0,74.0,49.0,65.0,83.0,80.0,108.0,75.0,106.0,99.0,90.0,91.0,114.0,98.0,110.0,94.0,118.0,118.0,103.0,97.0,89.0,100.0,105.0,110.0,116.0,99.0,133.0,114.0,91.0,93.0,109.0,113.0,99.0,95.0,98.0,86.0,78.0,91.0,79.0,66.0,73.0,73.0,58.0,59.0,54.0,58.0,49.0,59.0,62.0,53.0,53.0,58.0,43.0,40.0,31.0,40.0,29.0,23.0,19.0,15.0,18.0,19.0,12.0,12.0,8.0,3.0,6.0,8.0,11.0 H81073,95.0,100.0,122.0,104.0,111.0,131.0,130.0,122.0,142.0,158.0,155.0,173.0,191.0,202.0,185.0,184.0,162.0,156.0,173.0,135.0,112.0,121.0,138.0,131.0,125.0,121.0,121.0,109.0,96.0,115.0,118.0,113.0,120.0,110.0,123.0,153.0,126.0,159.0,162.0,151.0,159.0,159.0,176.0,209.0,180.0,232.0,199.0,205.0,206.0,201.0,208.0,236.0,212.0,220.0,174.0,199.0,168.0,187.0,187.0,186.0,208.0,163.0,206.0,155.0,126.0,136.0,140.0,118.0,109.0,100.0,92.0,91.0,76.0,97.0,64.0,92.0,82.0,106.0,115.0,85.0,80.0,76.0,54.0,53.0,44.0,34.0,43.0,47.0,30.0,35.0,22.0,16.0,18.0,20.0,10.0,20.0 H81074,30.0,23.0,43.0,33.0,38.0,36.0,43.0,51.0,39.0,47.0,49.0,45.0,47.0,44.0,51.0,48.0,52.0,44.0,30.0,25.0,26.0,23.0,26.0,21.0,28.0,32.0,20.0,23.0,23.0,23.0,22.0,13.0,40.0,30.0,28.0,32.0,46.0,53.0,45.0,26.0,47.0,56.0,46.0,50.0,62.0,44.0,54.0,49.0,46.0,56.0,49.0,48.0,51.0,49.0,48.0,43.0,43.0,45.0,43.0,44.0,54.0,36.0,35.0,37.0,37.0,35.0,34.0,29.0,42.0,32.0,36.0,38.0,34.0,31.0,19.0,35.0,30.0,26.0,39.0,30.0,24.0,27.0,25.0,11.0,19.0,23.0,13.0,11.0,7.0,9.0,5.0,10.0,4.0,1.0,1.0,7.0 H81076,36.0,35.0,46.0,40.0,38.0,60.0,46.0,69.0,63.0,53.0,67.0,76.0,73.0,82.0,72.0,72.0,84.0,85.0,66.0,62.0,47.0,68.0,60.0,60.0,60.0,69.0,51.0,43.0,41.0,45.0,42.0,39.0,52.0,45.0,43.0,56.0,62.0,52.0,61.0,58.0,71.0,52.0,56.0,61.0,102.0,93.0,68.0,92.0,68.0,68.0,99.0,81.0,91.0,85.0,94.0,91.0,87.0,86.0,89.0,110.0,109.0,117.0,87.0,91.0,87.0,85.0,95.0,99.0,70.0,71.0,74.0,74.0,57.0,97.0,58.0,64.0,63.0,71.0,81.0,47.0,87.0,56.0,46.0,36.0,28.0,34.0,35.0,31.0,29.0,25.0,29.0,15.0,21.0,6.0,8.0,17.0 H81077,25.0,21.0,20.0,22.0,26.0,31.0,27.0,35.0,26.0,31.0,47.0,36.0,40.0,55.0,103.0,97.0,118.0,105.0,79.0,56.0,45.0,39.0,41.0,35.0,39.0,44.0,52.0,40.0,42.0,28.0,38.0,30.0,32.0,29.0,32.0,35.0,43.0,28.0,31.0,30.0,31.0,40.0,41.0,37.0,35.0,29.0,49.0,45.0,54.0,49.0,50.0,47.0,56.0,58.0,62.0,61.0,69.0,64.0,57.0,75.0,81.0,95.0,83.0,72.0,51.0,51.0,49.0,62.0,49.0,47.0,47.0,41.0,46.0,44.0,32.0,43.0,37.0,60.0,51.0,30.0,35.0,29.0,33.0,26.0,22.0,12.0,15.0,11.0,8.0,9.0,9.0,3.0,7.0,7.0,2.0,5.0 H81078,43.0,61.0,64.0,81.0,76.0,84.0,73.0,80.0,118.0,126.0,106.0,107.0,111.0,133.0,151.0,116.0,144.0,108.0,124.0,117.0,96.0,78.0,93.0,99.0,85.0,93.0,88.0,105.0,81.0,85.0,80.0,85.0,77.0,103.0,92.0,108.0,114.0,104.0,109.0,97.0,113.0,126.0,126.0,135.0,119.0,154.0,156.0,150.0,165.0,129.0,143.0,154.0,156.0,156.0,145.0,140.0,141.0,129.0,153.0,137.0,151.0,105.0,108.0,114.0,109.0,84.0,79.0,56.0,72.0,74.0,71.0,66.0,58.0,61.0,64.0,50.0,70.0,68.0,65.0,53.0,43.0,52.0,29.0,30.0,30.0,33.0,12.0,22.0,11.0,21.0,7.0,13.0,8.0,10.0,4.0,21.0 H81080,36.0,43.0,33.0,50.0,42.0,52.0,43.0,43.0,41.0,53.0,54.0,44.0,41.0,55.0,69.0,65.0,61.0,62.0,56.0,51.0,43.0,57.0,51.0,42.0,51.0,53.0,41.0,37.0,37.0,44.0,54.0,42.0,44.0,39.0,55.0,46.0,46.0,46.0,39.0,42.0,46.0,58.0,61.0,54.0,61.0,52.0,58.0,52.0,56.0,53.0,51.0,68.0,60.0,72.0,67.0,73.0,73.0,78.0,79.0,100.0,87.0,91.0,71.0,91.0,91.0,74.0,80.0,55.0,59.0,67.0,67.0,49.0,46.0,64.0,58.0,58.0,58.0,66.0,78.0,48.0,48.0,53.0,47.0,35.0,29.0,37.0,28.0,35.0,21.0,25.0,15.0,11.0,7.0,12.0,17.0,15.0 H81081,50.0,40.0,55.0,69.0,58.0,63.0,65.0,72.0,64.0,78.0,79.0,68.0,64.0,73.0,60.0,61.0,55.0,61.0,50.0,60.0,50.0,50.0,57.0,44.0,43.0,37.0,50.0,47.0,58.0,58.0,59.0,49.0,68.0,60.0,62.0,67.0,67.0,73.0,65.0,74.0,68.0,68.0,56.0,62.0,71.0,66.0,67.0,52.0,41.0,62.0,55.0,58.0,57.0,84.0,55.0,61.0,64.0,58.0,59.0,77.0,64.0,66.0,44.0,50.0,52.0,57.0,49.0,50.0,50.0,40.0,45.0,37.0,35.0,46.0,43.0,37.0,38.0,51.0,48.0,50.0,42.0,29.0,36.0,20.0,22.0,27.0,31.0,16.0,5.0,9.0,7.0,14.0,7.0,3.0,6.0,16.0 H81084,36.0,23.0,34.0,46.0,40.0,47.0,47.0,47.0,63.0,44.0,61.0,63.0,82.0,73.0,76.0,74.0,92.0,82.0,79.0,46.0,57.0,59.0,64.0,61.0,50.0,72.0,51.0,47.0,54.0,46.0,45.0,39.0,34.0,40.0,45.0,52.0,44.0,37.0,47.0,45.0,46.0,48.0,66.0,70.0,62.0,70.0,63.0,72.0,72.0,68.0,77.0,79.0,82.0,68.0,72.0,73.0,86.0,80.0,68.0,92.0,101.0,75.0,80.0,84.0,79.0,77.0,60.0,79.0,55.0,67.0,62.0,51.0,47.0,48.0,45.0,62.0,64.0,66.0,56.0,43.0,58.0,33.0,37.0,26.0,31.0,26.0,28.0,17.0,20.0,16.0,14.0,17.0,14.0,12.0,8.0,13.0 H81085,36.0,47.0,38.0,50.0,49.0,46.0,48.0,66.0,67.0,75.0,76.0,68.0,79.0,86.0,95.0,65.0,90.0,88.0,72.0,39.0,43.0,47.0,49.0,57.0,71.0,67.0,61.0,66.0,61.0,73.0,68.0,70.0,79.0,80.0,71.0,65.0,64.0,62.0,72.0,90.0,76.0,69.0,98.0,90.0,99.0,86.0,110.0,71.0,96.0,91.0,106.0,91.0,90.0,96.0,89.0,84.0,85.0,89.0,79.0,69.0,70.0,95.0,66.0,65.0,49.0,57.0,50.0,55.0,33.0,40.0,52.0,52.0,45.0,33.0,41.0,38.0,43.0,37.0,43.0,27.0,33.0,36.0,30.0,15.0,16.0,26.0,19.0,7.0,10.0,17.0,15.0,10.0,11.0,8.0,9.0,12.0 H81086,19.0,15.0,25.0,16.0,24.0,25.0,20.0,30.0,30.0,30.0,20.0,33.0,24.0,34.0,33.0,46.0,36.0,39.0,35.0,26.0,22.0,19.0,30.0,15.0,28.0,25.0,20.0,16.0,21.0,28.0,21.0,30.0,29.0,45.0,40.0,19.0,31.0,33.0,29.0,38.0,37.0,28.0,39.0,38.0,41.0,39.0,49.0,37.0,42.0,37.0,48.0,40.0,48.0,36.0,33.0,26.0,36.0,36.0,32.0,39.0,29.0,32.0,38.0,30.0,37.0,34.0,23.0,27.0,23.0,26.0,30.0,18.0,25.0,28.0,16.0,27.0,22.0,22.0,26.0,12.0,13.0,12.0,5.0,9.0,7.0,8.0,14.0,4.0,8.0,8.0,3.0,5.0,4.0,1.0,,2.0 H81087,76.0,88.0,85.0,95.0,95.0,103.0,89.0,118.0,122.0,103.0,93.0,110.0,113.0,102.0,92.0,106.0,109.0,114.0,109.0,96.0,101.0,97.0,88.0,94.0,93.0,90.0,113.0,100.0,122.0,80.0,127.0,112.0,119.0,135.0,133.0,146.0,155.0,154.0,153.0,132.0,157.0,147.0,147.0,161.0,141.0,143.0,153.0,113.0,104.0,113.0,89.0,104.0,104.0,95.0,97.0,96.0,98.0,84.0,91.0,93.0,104.0,96.0,84.0,84.0,77.0,53.0,70.0,49.0,59.0,47.0,58.0,48.0,36.0,32.0,35.0,31.0,40.0,27.0,38.0,25.0,16.0,17.0,11.0,18.0,15.0,17.0,14.0,13.0,13.0,9.0,3.0,6.0,3.0,3.0,3.0,6.0 H81089,109.0,117.0,114.0,146.0,141.0,140.0,151.0,149.0,135.0,166.0,175.0,178.0,206.0,183.0,189.0,158.0,172.0,161.0,132.0,121.0,97.0,106.0,94.0,79.0,107.0,106.0,119.0,122.0,111.0,110.0,112.0,129.0,136.0,124.0,148.0,157.0,145.0,162.0,151.0,150.0,165.0,161.0,173.0,177.0,179.0,200.0,181.0,207.0,183.0,189.0,190.0,142.0,169.0,158.0,162.0,165.0,148.0,151.0,151.0,160.0,138.0,124.0,129.0,103.0,109.0,100.0,87.0,85.0,73.0,77.0,69.0,70.0,76.0,63.0,67.0,51.0,71.0,83.0,70.0,62.0,53.0,48.0,55.0,38.0,27.0,32.0,23.0,23.0,17.0,16.0,15.0,13.0,11.0,7.0,8.0,13.0 H81090,65.0,60.0,60.0,73.0,71.0,57.0,71.0,62.0,75.0,79.0,80.0,94.0,83.0,78.0,95.0,77.0,71.0,88.0,128.0,210.0,187.0,150.0,176.0,262.0,278.0,225.0,213.0,205.0,245.0,216.0,190.0,190.0,168.0,160.0,189.0,167.0,154.0,152.0,123.0,136.0,128.0,118.0,128.0,126.0,121.0,123.0,92.0,117.0,102.0,109.0,89.0,86.0,88.0,85.0,86.0,79.0,74.0,76.0,74.0,74.0,73.0,68.0,86.0,69.0,59.0,57.0,52.0,38.0,46.0,52.0,39.0,41.0,35.0,41.0,24.0,31.0,29.0,39.0,35.0,29.0,33.0,27.0,20.0,19.0,12.0,12.0,13.0,5.0,7.0,6.0,8.0,4.0,5.0,1.0,2.0,7.0 H81091,84.0,86.0,106.0,102.0,106.0,103.0,113.0,104.0,112.0,124.0,130.0,106.0,110.0,105.0,97.0,95.0,96.0,85.0,81.0,74.0,61.0,60.0,48.0,66.0,72.0,58.0,59.0,77.0,61.0,66.0,77.0,62.0,83.0,84.0,97.0,110.0,96.0,119.0,108.0,115.0,141.0,109.0,130.0,138.0,132.0,138.0,118.0,130.0,115.0,108.0,125.0,104.0,91.0,95.0,77.0,102.0,83.0,102.0,65.0,82.0,92.0,71.0,88.0,62.0,65.0,55.0,60.0,60.0,54.0,52.0,47.0,43.0,43.0,44.0,52.0,54.0,52.0,52.0,53.0,29.0,41.0,34.0,33.0,25.0,16.0,22.0,15.0,22.0,16.0,14.0,10.0,3.0,6.0,8.0,5.0,8.0 H81094,54.0,54.0,54.0,80.0,79.0,65.0,59.0,63.0,72.0,47.0,71.0,54.0,50.0,85.0,80.0,53.0,52.0,57.0,57.0,47.0,61.0,57.0,33.0,49.0,52.0,61.0,73.0,59.0,42.0,73.0,69.0,62.0,70.0,73.0,76.0,89.0,88.0,84.0,80.0,72.0,85.0,91.0,91.0,89.0,62.0,83.0,66.0,97.0,76.0,74.0,77.0,73.0,74.0,66.0,83.0,69.0,68.0,66.0,71.0,65.0,76.0,69.0,50.0,58.0,59.0,49.0,41.0,39.0,48.0,44.0,27.0,41.0,31.0,37.0,32.0,39.0,36.0,32.0,41.0,28.0,25.0,14.0,26.0,19.0,9.0,12.0,20.0,13.0,17.0,7.0,12.0,8.0,9.0,5.0,2.0,6.0 H81095,11.0,9.0,14.0,13.0,18.0,24.0,20.0,14.0,23.0,19.0,24.0,30.0,18.0,23.0,21.0,17.0,25.0,24.0,21.0,26.0,21.0,19.0,19.0,23.0,24.0,30.0,19.0,25.0,18.0,21.0,21.0,20.0,24.0,23.0,32.0,24.0,27.0,32.0,31.0,22.0,29.0,28.0,28.0,29.0,32.0,28.0,31.0,28.0,24.0,26.0,34.0,24.0,31.0,31.0,29.0,31.0,36.0,24.0,24.0,34.0,28.0,31.0,27.0,21.0,31.0,18.0,21.0,27.0,22.0,17.0,18.0,18.0,18.0,23.0,16.0,7.0,17.0,10.0,10.0,7.0,8.0,5.0,7.0,7.0,5.0,9.0,5.0,6.0,4.0,5.0,4.0,2.0,1.0,2.0,3.0,2.0 H81099,61.0,71.0,68.0,84.0,80.0,97.0,101.0,116.0,105.0,93.0,87.0,109.0,97.0,94.0,99.0,109.0,93.0,110.0,94.0,86.0,73.0,62.0,66.0,70.0,77.0,67.0,77.0,72.0,79.0,55.0,53.0,61.0,73.0,64.0,76.0,72.0,85.0,99.0,86.0,89.0,94.0,96.0,92.0,117.0,98.0,101.0,100.0,118.0,109.0,105.0,116.0,103.0,111.0,97.0,104.0,109.0,98.0,94.0,99.0,83.0,99.0,81.0,83.0,97.0,80.0,72.0,69.0,61.0,56.0,48.0,39.0,53.0,39.0,45.0,49.0,43.0,55.0,49.0,37.0,29.0,27.0,35.0,20.0,19.0,19.0,14.0,18.0,15.0,9.0,11.0,18.0,11.0,3.0,8.0,3.0,7.0 H81103,24.0,32.0,26.0,48.0,33.0,41.0,40.0,41.0,60.0,43.0,51.0,58.0,66.0,66.0,58.0,50.0,68.0,43.0,63.0,37.0,34.0,44.0,41.0,53.0,46.0,51.0,42.0,39.0,38.0,38.0,41.0,23.0,35.0,37.0,33.0,37.0,35.0,40.0,45.0,47.0,53.0,52.0,46.0,43.0,65.0,59.0,53.0,56.0,63.0,62.0,53.0,50.0,49.0,53.0,72.0,64.0,65.0,65.0,63.0,61.0,73.0,51.0,59.0,46.0,56.0,55.0,44.0,49.0,47.0,34.0,32.0,52.0,52.0,28.0,43.0,35.0,41.0,47.0,46.0,39.0,53.0,32.0,33.0,18.0,21.0,16.0,27.0,24.0,17.0,12.0,8.0,8.0,6.0,8.0,3.0,5.0 H81104,41.0,56.0,49.0,57.0,54.0,44.0,54.0,54.0,66.0,48.0,61.0,43.0,63.0,52.0,62.0,53.0,53.0,66.0,47.0,43.0,44.0,43.0,63.0,53.0,60.0,55.0,57.0,59.0,58.0,55.0,73.0,69.0,67.0,78.0,70.0,68.0,70.0,85.0,79.0,64.0,76.0,87.0,71.0,81.0,68.0,52.0,56.0,73.0,64.0,56.0,59.0,48.0,57.0,71.0,65.0,58.0,63.0,62.0,69.0,56.0,46.0,64.0,61.0,41.0,51.0,59.0,47.0,37.0,35.0,30.0,22.0,28.0,23.0,28.0,36.0,26.0,10.0,30.0,29.0,23.0,21.0,18.0,19.0,15.0,10.0,9.0,13.0,7.0,12.0,3.0,7.0,5.0,2.0,4.0,1.0,1.0 H81107,34.0,32.0,43.0,39.0,42.0,57.0,49.0,40.0,60.0,57.0,54.0,61.0,58.0,64.0,68.0,88.0,69.0,80.0,68.0,49.0,51.0,40.0,50.0,35.0,47.0,44.0,39.0,38.0,27.0,25.0,26.0,26.0,36.0,31.0,31.0,35.0,43.0,33.0,35.0,36.0,32.0,47.0,51.0,55.0,60.0,59.0,68.0,54.0,53.0,63.0,73.0,60.0,63.0,69.0,82.0,70.0,56.0,54.0,57.0,49.0,49.0,48.0,64.0,49.0,44.0,54.0,41.0,48.0,34.0,40.0,26.0,32.0,38.0,27.0,35.0,26.0,28.0,26.0,41.0,28.0,22.0,25.0,18.0,19.0,13.0,14.0,11.0,9.0,4.0,4.0,3.0,7.0,3.0,3.0,3.0,12.0 H81109,23.0,27.0,38.0,30.0,31.0,49.0,38.0,42.0,50.0,46.0,52.0,68.0,61.0,60.0,67.0,47.0,60.0,63.0,61.0,45.0,31.0,34.0,39.0,35.0,39.0,47.0,42.0,33.0,25.0,27.0,37.0,34.0,37.0,37.0,40.0,44.0,43.0,32.0,51.0,30.0,37.0,42.0,43.0,73.0,67.0,48.0,55.0,44.0,77.0,43.0,63.0,74.0,50.0,61.0,61.0,44.0,57.0,54.0,54.0,46.0,60.0,53.0,55.0,52.0,40.0,51.0,43.0,42.0,40.0,31.0,35.0,40.0,34.0,36.0,36.0,45.0,33.0,24.0,34.0,26.0,19.0,17.0,32.0,15.0,12.0,12.0,17.0,12.0,8.0,16.0,7.0,5.0,6.0,6.0,3.0,6.0 H81111,32.0,33.0,15.0,47.0,31.0,31.0,30.0,23.0,34.0,35.0,53.0,26.0,31.0,31.0,46.0,38.0,33.0,45.0,36.0,27.0,34.0,33.0,34.0,36.0,31.0,23.0,32.0,26.0,31.0,22.0,24.0,24.0,25.0,27.0,28.0,27.0,26.0,21.0,42.0,29.0,36.0,31.0,37.0,54.0,31.0,38.0,37.0,40.0,42.0,37.0,43.0,33.0,39.0,44.0,39.0,49.0,40.0,34.0,40.0,59.0,41.0,43.0,41.0,34.0,38.0,37.0,24.0,33.0,25.0,26.0,22.0,21.0,19.0,25.0,29.0,21.0,27.0,29.0,23.0,20.0,17.0,19.0,16.0,16.0,6.0,15.0,12.0,9.0,9.0,6.0,8.0,6.0,5.0,6.0,1.0,4.0 H81113,28.0,30.0,28.0,27.0,35.0,29.0,38.0,37.0,36.0,31.0,44.0,33.0,37.0,39.0,40.0,43.0,41.0,43.0,53.0,52.0,30.0,41.0,47.0,31.0,48.0,44.0,45.0,35.0,32.0,41.0,40.0,37.0,47.0,43.0,54.0,39.0,49.0,40.0,50.0,39.0,38.0,40.0,42.0,43.0,48.0,46.0,43.0,50.0,45.0,59.0,53.0,58.0,55.0,59.0,57.0,61.0,63.0,68.0,79.0,80.0,78.0,71.0,58.0,70.0,53.0,63.0,70.0,60.0,55.0,65.0,40.0,58.0,47.0,52.0,45.0,51.0,46.0,49.0,48.0,38.0,37.0,30.0,32.0,25.0,19.0,19.0,23.0,13.0,12.0,8.0,10.0,4.0,6.0,4.0,4.0,7.0 H81116,20.0,26.0,27.0,26.0,30.0,35.0,38.0,36.0,33.0,27.0,32.0,35.0,39.0,24.0,39.0,38.0,33.0,34.0,33.0,24.0,32.0,27.0,30.0,19.0,18.0,22.0,34.0,29.0,28.0,26.0,28.0,23.0,26.0,19.0,27.0,40.0,27.0,45.0,29.0,47.0,34.0,40.0,37.0,42.0,44.0,33.0,33.0,41.0,35.0,31.0,45.0,40.0,40.0,44.0,51.0,37.0,37.0,41.0,44.0,39.0,43.0,49.0,27.0,43.0,42.0,37.0,28.0,29.0,39.0,25.0,29.0,36.0,30.0,27.0,27.0,19.0,36.0,32.0,38.0,18.0,28.0,21.0,18.0,13.0,14.0,21.0,9.0,7.0,10.0,9.0,10.0,3.0,3.0,2.0,3.0,5.0 H81119,121.0,111.0,145.0,121.0,123.0,132.0,149.0,139.0,135.0,163.0,125.0,107.0,135.0,124.0,131.0,141.0,127.0,133.0,135.0,128.0,106.0,101.0,108.0,120.0,117.0,114.0,124.0,99.0,118.0,133.0,113.0,134.0,127.0,138.0,169.0,159.0,177.0,156.0,164.0,157.0,144.0,160.0,138.0,175.0,164.0,145.0,160.0,160.0,129.0,139.0,155.0,143.0,132.0,171.0,167.0,165.0,141.0,122.0,153.0,168.0,151.0,148.0,125.0,129.0,138.0,105.0,102.0,108.0,92.0,76.0,70.0,64.0,75.0,81.0,75.0,72.0,80.0,81.0,81.0,64.0,59.0,40.0,53.0,29.0,24.0,30.0,22.0,31.0,21.0,21.0,9.0,13.0,7.0,6.0,2.0,17.0 H81122,42.0,43.0,53.0,49.0,60.0,40.0,49.0,56.0,54.0,47.0,56.0,50.0,39.0,49.0,45.0,45.0,50.0,41.0,38.0,37.0,41.0,33.0,38.0,41.0,51.0,43.0,55.0,50.0,50.0,52.0,59.0,65.0,64.0,81.0,77.0,82.0,82.0,81.0,83.0,80.0,89.0,63.0,90.0,54.0,79.0,63.0,57.0,53.0,74.0,50.0,58.0,55.0,70.0,61.0,49.0,73.0,40.0,65.0,57.0,59.0,60.0,47.0,46.0,46.0,61.0,38.0,41.0,44.0,45.0,29.0,30.0,35.0,41.0,40.0,23.0,30.0,31.0,34.0,26.0,23.0,24.0,12.0,20.0,6.0,11.0,10.0,14.0,8.0,8.0,7.0,3.0,1.0,1.0,1.0,4.0,3.0 H81123,29.0,30.0,22.0,31.0,26.0,24.0,31.0,28.0,33.0,20.0,23.0,30.0,23.0,26.0,19.0,23.0,31.0,29.0,19.0,23.0,14.0,16.0,15.0,16.0,20.0,24.0,25.0,28.0,24.0,28.0,25.0,29.0,31.0,38.0,36.0,30.0,26.0,41.0,32.0,28.0,19.0,26.0,24.0,14.0,35.0,27.0,30.0,25.0,14.0,19.0,20.0,19.0,20.0,18.0,17.0,12.0,15.0,20.0,22.0,19.0,19.0,18.0,16.0,10.0,16.0,16.0,9.0,17.0,11.0,13.0,8.0,8.0,12.0,12.0,2.0,9.0,5.0,5.0,7.0,3.0,1.0,2.0,4.0,5.0,3.0,2.0,2.0,2.0,,2.0,,3.0,,1.0,, H81126,28.0,34.0,38.0,34.0,34.0,47.0,42.0,34.0,51.0,53.0,53.0,42.0,44.0,57.0,59.0,63.0,51.0,53.0,38.0,50.0,27.0,48.0,38.0,34.0,41.0,42.0,28.0,38.0,29.0,45.0,45.0,30.0,39.0,56.0,42.0,38.0,48.0,48.0,45.0,38.0,50.0,39.0,45.0,44.0,60.0,41.0,35.0,47.0,52.0,59.0,56.0,48.0,48.0,48.0,43.0,45.0,54.0,51.0,53.0,61.0,65.0,75.0,55.0,49.0,49.0,45.0,52.0,49.0,34.0,37.0,49.0,29.0,34.0,30.0,37.0,39.0,28.0,37.0,30.0,21.0,28.0,23.0,23.0,17.0,21.0,17.0,8.0,17.0,10.0,10.0,12.0,5.0,13.0,5.0,5.0,10.0 H81128,42.0,54.0,49.0,51.0,62.0,51.0,57.0,50.0,53.0,53.0,50.0,56.0,55.0,55.0,49.0,47.0,46.0,59.0,42.0,34.0,34.0,27.0,24.0,36.0,36.0,49.0,43.0,32.0,47.0,39.0,36.0,52.0,42.0,39.0,50.0,55.0,48.0,55.0,49.0,48.0,58.0,49.0,48.0,53.0,65.0,59.0,69.0,62.0,46.0,75.0,53.0,70.0,55.0,57.0,58.0,51.0,40.0,51.0,44.0,55.0,54.0,49.0,58.0,61.0,70.0,45.0,49.0,52.0,31.0,33.0,49.0,38.0,34.0,36.0,30.0,23.0,31.0,43.0,35.0,24.0,26.0,22.0,31.0,16.0,10.0,11.0,15.0,10.0,11.0,6.0,5.0,3.0,6.0,,2.0,7.0 H81129,37.0,33.0,47.0,27.0,29.0,31.0,27.0,26.0,35.0,35.0,34.0,34.0,27.0,35.0,26.0,20.0,27.0,39.0,24.0,20.0,23.0,27.0,20.0,33.0,24.0,29.0,19.0,15.0,23.0,27.0,34.0,25.0,30.0,31.0,31.0,37.0,24.0,39.0,37.0,29.0,35.0,35.0,34.0,29.0,27.0,28.0,29.0,24.0,33.0,28.0,43.0,38.0,30.0,21.0,27.0,31.0,26.0,38.0,32.0,29.0,44.0,33.0,29.0,26.0,18.0,23.0,18.0,20.0,17.0,25.0,15.0,25.0,9.0,14.0,15.0,8.0,14.0,14.0,18.0,14.0,9.0,11.0,8.0,3.0,10.0,7.0,4.0,9.0,7.0,,2.0,4.0,3.0,2.0,,4.0 H81131,24.0,26.0,24.0,23.0,28.0,33.0,26.0,29.0,28.0,23.0,19.0,25.0,14.0,24.0,23.0,23.0,22.0,21.0,26.0,22.0,12.0,25.0,22.0,20.0,19.0,31.0,40.0,31.0,30.0,21.0,32.0,39.0,46.0,32.0,33.0,29.0,39.0,42.0,46.0,40.0,39.0,23.0,32.0,28.0,32.0,34.0,38.0,37.0,28.0,31.0,27.0,25.0,27.0,29.0,25.0,30.0,28.0,21.0,28.0,37.0,31.0,23.0,29.0,17.0,32.0,25.0,22.0,21.0,16.0,17.0,19.0,10.0,17.0,15.0,8.0,10.0,16.0,13.0,15.0,11.0,10.0,6.0,8.0,7.0,4.0,5.0,7.0,5.0,5.0,2.0,5.0,2.0,2.0,1.0,,5.0 H81132,,1.0,1.0,,2.0,,,2.0,1.0,2.0,,1.0,2.0,1.0,1.0,2.0,4.0,1.0,4.0,,1.0,2.0,,1.0,1.0,1.0,2.0,2.0,,2.0,1.0,3.0,4.0,1.0,4.0,4.0,2.0,5.0,5.0,11.0,6.0,9.0,3.0,4.0,3.0,3.0,6.0,4.0,1.0,2.0,2.0,2.0,5.0,3.0,3.0,2.0,1.0,,,3.0,3.0,1.0,3.0,1.0,,3.0,3.0,1.0,1.0,,1.0,1.0,,2.0,2.0,,,,1.0,,,1.0,,1.0,,,1.0,,,,,,1.0,,, H81133,92.0,110.0,126.0,152.0,160.0,151.0,171.0,202.0,185.0,190.0,207.0,214.0,231.0,240.0,268.0,260.0,231.0,265.0,205.0,160.0,165.0,173.0,149.0,135.0,159.0,175.0,181.0,138.0,176.0,143.0,162.0,159.0,155.0,164.0,172.0,183.0,170.0,204.0,179.0,168.0,218.0,229.0,255.0,226.0,244.0,263.0,215.0,235.0,224.0,269.0,227.0,242.0,225.0,275.0,205.0,217.0,217.0,229.0,211.0,212.0,203.0,212.0,220.0,201.0,197.0,196.0,170.0,140.0,173.0,163.0,131.0,137.0,126.0,147.0,126.0,141.0,127.0,144.0,170.0,107.0,85.0,62.0,75.0,80.0,72.0,64.0,44.0,43.0,30.0,44.0,28.0,23.0,21.0,13.0,11.0,12.0 H81134,52.0,64.0,62.0,54.0,58.0,71.0,75.0,77.0,72.0,71.0,78.0,56.0,74.0,73.0,74.0,62.0,71.0,76.0,73.0,65.0,53.0,75.0,75.0,57.0,73.0,68.0,75.0,83.0,105.0,90.0,90.0,81.0,91.0,108.0,96.0,98.0,92.0,124.0,105.0,106.0,107.0,103.0,106.0,123.0,117.0,84.0,102.0,104.0,88.0,90.0,91.0,72.0,102.0,104.0,93.0,82.0,101.0,89.0,79.0,106.0,83.0,106.0,88.0,86.0,71.0,72.0,78.0,52.0,63.0,44.0,58.0,52.0,51.0,51.0,45.0,56.0,51.0,34.0,46.0,49.0,34.0,34.0,32.0,19.0,21.0,38.0,22.0,16.0,26.0,14.0,11.0,7.0,8.0,11.0,5.0,9.0 H81618,29.0,32.0,33.0,28.0,30.0,29.0,32.0,36.0,24.0,31.0,33.0,31.0,35.0,34.0,31.0,33.0,28.0,36.0,42.0,29.0,30.0,36.0,25.0,38.0,37.0,52.0,49.0,54.0,43.0,41.0,51.0,35.0,49.0,62.0,55.0,53.0,51.0,36.0,44.0,44.0,44.0,46.0,53.0,45.0,56.0,38.0,49.0,47.0,36.0,37.0,34.0,45.0,31.0,35.0,40.0,28.0,53.0,48.0,45.0,45.0,38.0,34.0,35.0,23.0,31.0,26.0,32.0,27.0,28.0,30.0,28.0,26.0,15.0,25.0,21.0,32.0,24.0,34.0,21.0,15.0,20.0,23.0,18.0,15.0,11.0,7.0,12.0,6.0,5.0,6.0,2.0,10.0,4.0,3.0,4.0,5.0 H81632,14.0,19.0,13.0,14.0,7.0,31.0,14.0,20.0,19.0,15.0,23.0,19.0,16.0,18.0,18.0,18.0,9.0,18.0,20.0,11.0,8.0,16.0,12.0,10.0,22.0,13.0,15.0,19.0,19.0,22.0,22.0,20.0,16.0,19.0,16.0,29.0,22.0,21.0,22.0,24.0,24.0,23.0,24.0,23.0,23.0,24.0,19.0,21.0,19.0,22.0,15.0,21.0,17.0,25.0,25.0,20.0,20.0,26.0,21.0,33.0,13.0,27.0,17.0,21.0,19.0,13.0,15.0,8.0,15.0,10.0,10.0,13.0,13.0,13.0,10.0,5.0,14.0,13.0,15.0,11.0,10.0,15.0,3.0,11.0,2.0,4.0,4.0,5.0,5.0,2.0,2.0,4.0,1.0,,,2.0 H81638,155.0,177.0,187.0,236.0,229.0,252.0,238.0,249.0,263.0,279.0,243.0,230.0,265.0,261.0,234.0,244.0,245.0,248.0,222.0,195.0,186.0,194.0,188.0,175.0,169.0,212.0,210.0,206.0,216.0,192.0,236.0,215.0,235.0,232.0,280.0,288.0,292.0,295.0,263.0,281.0,291.0,285.0,298.0,298.0,300.0,316.0,286.0,269.0,237.0,241.0,270.0,267.0,270.0,244.0,272.0,246.0,247.0,282.0,256.0,273.0,262.0,254.0,242.0,248.0,212.0,227.0,197.0,200.0,177.0,185.0,159.0,160.0,150.0,151.0,137.0,140.0,151.0,177.0,165.0,120.0,129.0,94.0,97.0,84.0,70.0,58.0,58.0,56.0,45.0,42.0,29.0,16.0,13.0,11.0,10.0,26.0 H81641,18.0,18.0,15.0,12.0,26.0,23.0,21.0,25.0,25.0,30.0,27.0,24.0,30.0,36.0,26.0,36.0,30.0,22.0,22.0,22.0,33.0,37.0,32.0,35.0,40.0,30.0,33.0,41.0,42.0,46.0,44.0,33.0,45.0,27.0,45.0,55.0,43.0,45.0,38.0,38.0,38.0,42.0,52.0,46.0,35.0,43.0,41.0,35.0,51.0,36.0,33.0,23.0,28.0,31.0,26.0,16.0,17.0,15.0,17.0,14.0,16.0,16.0,10.0,17.0,14.0,12.0,13.0,10.0,11.0,7.0,12.0,16.0,16.0,13.0,10.0,2.0,2.0,6.0,3.0,5.0,2.0,3.0,2.0,3.0,5.0,3.0,4.0,,,2.0,,1.0,1.0,1.0,1.0,4.0 H81642,16.0,31.0,26.0,33.0,25.0,32.0,22.0,30.0,33.0,19.0,19.0,26.0,30.0,34.0,28.0,31.0,21.0,17.0,33.0,18.0,23.0,17.0,16.0,24.0,16.0,19.0,25.0,26.0,33.0,25.0,19.0,29.0,39.0,37.0,41.0,21.0,45.0,42.0,40.0,44.0,44.0,31.0,36.0,45.0,33.0,27.0,39.0,24.0,28.0,32.0,29.0,25.0,36.0,27.0,31.0,32.0,26.0,26.0,33.0,28.0,30.0,22.0,25.0,35.0,33.0,24.0,31.0,22.0,19.0,17.0,16.0,16.0,15.0,17.0,5.0,14.0,18.0,11.0,23.0,12.0,9.0,5.0,10.0,7.0,10.0,8.0,4.0,5.0,5.0,4.0,5.0,1.0,6.0,2.0,2.0,1.0 H81643,24.0,32.0,22.0,27.0,23.0,24.0,33.0,27.0,25.0,21.0,25.0,26.0,27.0,21.0,26.0,29.0,29.0,23.0,32.0,27.0,25.0,16.0,22.0,28.0,32.0,32.0,42.0,36.0,32.0,40.0,47.0,44.0,54.0,43.0,47.0,60.0,47.0,46.0,49.0,40.0,42.0,46.0,47.0,48.0,35.0,48.0,44.0,34.0,33.0,38.0,32.0,20.0,21.0,28.0,26.0,29.0,23.0,19.0,21.0,12.0,15.0,11.0,12.0,6.0,10.0,17.0,12.0,12.0,10.0,10.0,8.0,5.0,11.0,5.0,5.0,6.0,3.0,2.0,3.0,,2.0,1.0,1.0,2.0,1.0,2.0,4.0,2.0,1.0,1.0,,1.0,1.0,,, H81644,25.0,29.0,26.0,37.0,23.0,50.0,33.0,46.0,48.0,49.0,41.0,59.0,55.0,57.0,69.0,75.0,78.0,75.0,49.0,47.0,56.0,49.0,47.0,54.0,50.0,64.0,61.0,44.0,38.0,44.0,39.0,42.0,55.0,48.0,49.0,45.0,43.0,45.0,39.0,44.0,53.0,45.0,71.0,60.0,73.0,75.0,49.0,59.0,49.0,71.0,59.0,73.0,74.0,59.0,71.0,51.0,66.0,69.0,67.0,64.0,48.0,67.0,51.0,47.0,59.0,40.0,39.0,44.0,35.0,34.0,32.0,31.0,30.0,31.0,39.0,35.0,45.0,32.0,49.0,31.0,30.0,28.0,27.0,24.0,19.0,20.0,15.0,16.0,13.0,11.0,6.0,10.0,10.0,4.0,4.0,6.0 H81656,18.0,20.0,23.0,28.0,29.0,39.0,34.0,36.0,49.0,48.0,45.0,49.0,54.0,59.0,48.0,41.0,47.0,40.0,41.0,22.0,46.0,33.0,37.0,26.0,36.0,32.0,55.0,39.0,34.0,27.0,30.0,29.0,34.0,41.0,39.0,40.0,34.0,46.0,35.0,32.0,38.0,29.0,39.0,52.0,63.0,53.0,62.0,53.0,44.0,61.0,57.0,55.0,39.0,43.0,60.0,41.0,54.0,48.0,57.0,60.0,54.0,50.0,48.0,47.0,50.0,52.0,41.0,54.0,44.0,34.0,35.0,40.0,40.0,22.0,36.0,33.0,36.0,44.0,40.0,32.0,21.0,32.0,27.0,13.0,14.0,26.0,16.0,13.0,15.0,7.0,12.0,4.0,6.0,6.0,3.0,6.0 H81658,21.0,29.0,30.0,28.0,36.0,28.0,33.0,37.0,42.0,41.0,27.0,31.0,29.0,35.0,28.0,31.0,39.0,36.0,25.0,25.0,26.0,21.0,27.0,22.0,17.0,34.0,39.0,33.0,24.0,28.0,32.0,32.0,41.0,37.0,34.0,39.0,30.0,32.0,43.0,46.0,37.0,33.0,42.0,28.0,44.0,53.0,39.0,35.0,33.0,40.0,31.0,37.0,57.0,50.0,35.0,52.0,36.0,47.0,38.0,52.0,40.0,41.0,50.0,40.0,36.0,35.0,31.0,33.0,24.0,25.0,34.0,30.0,26.0,29.0,25.0,20.0,30.0,36.0,31.0,19.0,23.0,29.0,26.0,16.0,15.0,12.0,14.0,6.0,5.0,13.0,6.0,7.0,1.0,3.0,2.0,4.0 H81663,12.0,13.0,28.0,26.0,25.0,31.0,32.0,34.0,25.0,33.0,22.0,28.0,21.0,24.0,31.0,34.0,26.0,23.0,26.0,19.0,15.0,19.0,16.0,22.0,18.0,13.0,12.0,15.0,19.0,31.0,21.0,30.0,33.0,39.0,39.0,43.0,29.0,33.0,36.0,37.0,26.0,29.0,46.0,36.0,23.0,34.0,49.0,29.0,25.0,38.0,34.0,29.0,36.0,32.0,27.0,32.0,19.0,25.0,25.0,18.0,17.0,21.0,21.0,18.0,9.0,10.0,16.0,13.0,14.0,9.0,8.0,6.0,7.0,12.0,7.0,3.0,4.0,11.0,11.0,4.0,8.0,6.0,9.0,5.0,5.0,5.0,1.0,2.0,3.0,7.0,3.0,,3.0,2.0,1.0,4.0 H81672,12.0,13.0,25.0,24.0,32.0,31.0,32.0,46.0,46.0,65.0,44.0,60.0,59.0,57.0,53.0,60.0,64.0,49.0,47.0,30.0,39.0,30.0,34.0,30.0,29.0,31.0,36.0,22.0,29.0,26.0,16.0,20.0,29.0,22.0,25.0,41.0,20.0,23.0,32.0,32.0,36.0,49.0,53.0,43.0,50.0,64.0,57.0,66.0,64.0,55.0,54.0,58.0,37.0,58.0,50.0,53.0,49.0,52.0,38.0,42.0,44.0,32.0,33.0,32.0,31.0,25.0,26.0,22.0,25.0,20.0,24.0,24.0,24.0,22.0,26.0,24.0,11.0,29.0,19.0,23.0,17.0,15.0,19.0,6.0,8.0,10.0,4.0,7.0,9.0,7.0,6.0,5.0,2.0,4.0,4.0,10.0 GP code,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 N81001,9.0,12.0,12.0,16.0,19.0,16.0,20.0,21.0,24.0,22.0,19.0,22.0,32.0,26.0,28.0,29.0,34.0,26.0,20.0,25.0,26.0,13.0,23.0,20.0,15.0,18.0,29.0,15.0,13.0,20.0,18.0,18.0,24.0,16.0,19.0,21.0,22.0,19.0,24.0,20.0,28.0,16.0,24.0,21.0,14.0,32.0,21.0,21.0,20.0,35.0,32.0,28.0,29.0,43.0,42.0,31.0,23.0,49.0,41.0,31.0,49.0,54.0,39.0,52.0,48.0,48.0,49.0,33.0,37.0,42.0,45.0,46.0,53.0,34.0,34.0,41.0,47.0,49.0,38.0,28.0,37.0,35.0,23.0,25.0,17.0,20.0,13.0,18.0,7.0,11.0,12.0,6.0,3.0,5.0,,8.0 N81002,30.0,37.0,37.0,49.0,61.0,52.0,45.0,61.0,62.0,87.0,80.0,75.0,64.0,80.0,79.0,68.0,78.0,72.0,68.0,63.0,56.0,58.0,60.0,61.0,46.0,53.0,59.0,63.0,60.0,61.0,44.0,67.0,56.0,67.0,70.0,52.0,65.0,62.0,75.0,87.0,55.0,58.0,83.0,96.0,69.0,83.0,81.0,86.0,83.0,59.0,81.0,92.0,98.0,67.0,81.0,84.0,70.0,77.0,97.0,77.0,86.0,92.0,94.0,74.0,79.0,90.0,74.0,75.0,66.0,74.0,69.0,73.0,70.0,68.0,86.0,72.0,72.0,92.0,83.0,59.0,49.0,49.0,43.0,24.0,36.0,30.0,27.0,29.0,27.0,19.0,18.0,16.0,11.0,9.0,9.0,16.0 N81005,41.0,50.0,49.0,45.0,49.0,51.0,54.0,55.0,51.0,41.0,57.0,64.0,46.0,63.0,51.0,48.0,56.0,58.0,49.0,34.0,61.0,39.0,55.0,58.0,52.0,42.0,56.0,48.0,47.0,55.0,67.0,54.0,66.0,67.0,57.0,61.0,65.0,57.0,58.0,48.0,66.0,58.0,40.0,55.0,60.0,77.0,48.0,61.0,43.0,52.0,62.0,46.0,73.0,80.0,78.0,80.0,76.0,83.0,79.0,57.0,73.0,73.0,70.0,71.0,78.0,74.0,57.0,65.0,46.0,48.0,47.0,45.0,59.0,33.0,57.0,50.0,53.0,67.0,54.0,39.0,40.0,37.0,36.0,40.0,22.0,20.0,20.0,11.0,12.0,16.0,10.0,2.0,4.0,11.0,2.0,7.0 N81006,15.0,27.0,17.0,22.0,27.0,24.0,24.0,32.0,17.0,17.0,38.0,35.0,36.0,40.0,31.0,27.0,36.0,21.0,29.0,31.0,26.0,26.0,23.0,19.0,20.0,28.0,19.0,13.0,21.0,21.0,22.0,22.0,19.0,23.0,28.0,24.0,28.0,23.0,28.0,19.0,22.0,34.0,30.0,26.0,41.0,24.0,28.0,30.0,27.0,34.0,28.0,29.0,30.0,60.0,65.0,38.0,40.0,62.0,45.0,52.0,42.0,54.0,39.0,44.0,40.0,39.0,47.0,60.0,43.0,39.0,41.0,40.0,32.0,47.0,39.0,20.0,29.0,37.0,32.0,22.0,25.0,27.0,23.0,17.0,12.0,9.0,10.0,13.0,8.0,8.0,10.0,3.0,3.0,4.0,2.0,4.0 N81007,31.0,33.0,33.0,43.0,32.0,53.0,47.0,51.0,47.0,58.0,64.0,55.0,76.0,54.0,66.0,60.0,56.0,58.0,49.0,58.0,54.0,40.0,51.0,60.0,66.0,55.0,62.0,60.0,66.0,46.0,63.0,55.0,68.0,62.0,60.0,66.0,60.0,76.0,56.0,76.0,66.0,64.0,70.0,70.0,76.0,77.0,76.0,76.0,72.0,64.0,98.0,69.0,88.0,82.0,75.0,78.0,72.0,74.0,71.0,90.0,72.0,62.0,60.0,79.0,74.0,61.0,61.0,62.0,60.0,64.0,71.0,62.0,53.0,53.0,58.0,58.0,56.0,54.0,46.0,56.0,39.0,32.0,34.0,23.0,25.0,17.0,16.0,15.0,9.0,9.0,8.0,6.0,7.0,7.0,1.0,4.0 N81008,41.0,51.0,61.0,50.0,68.0,72.0,45.0,66.0,45.0,60.0,58.0,70.0,77.0,72.0,73.0,58.0,71.0,58.0,64.0,63.0,63.0,60.0,49.0,40.0,55.0,57.0,59.0,63.0,42.0,53.0,59.0,70.0,60.0,75.0,83.0,60.0,75.0,78.0,67.0,57.0,82.0,79.0,80.0,64.0,71.0,82.0,50.0,77.0,67.0,76.0,66.0,80.0,77.0,94.0,80.0,87.0,77.0,78.0,70.0,75.0,85.0,83.0,84.0,68.0,73.0,71.0,62.0,52.0,51.0,50.0,55.0,62.0,57.0,51.0,53.0,69.0,67.0,77.0,78.0,50.0,51.0,60.0,58.0,36.0,24.0,32.0,39.0,27.0,28.0,10.0,14.0,13.0,9.0,5.0,6.0,13.0 N81009,25.0,21.0,31.0,32.0,30.0,44.0,41.0,33.0,52.0,39.0,42.0,45.0,50.0,51.0,62.0,53.0,50.0,58.0,51.0,44.0,33.0,41.0,30.0,38.0,38.0,30.0,46.0,54.0,49.0,33.0,45.0,40.0,44.0,47.0,42.0,55.0,46.0,49.0,37.0,46.0,55.0,49.0,67.0,46.0,42.0,51.0,58.0,38.0,49.0,60.0,54.0,46.0,53.0,71.0,55.0,49.0,53.0,56.0,42.0,71.0,50.0,51.0,53.0,32.0,45.0,39.0,44.0,56.0,39.0,44.0,32.0,41.0,45.0,38.0,42.0,32.0,28.0,43.0,29.0,35.0,41.0,22.0,13.0,20.0,13.0,13.0,15.0,12.0,20.0,10.0,9.0,5.0,5.0,4.0,3.0,6.0 N81010,45.0,48.0,56.0,37.0,51.0,40.0,44.0,58.0,42.0,53.0,37.0,53.0,50.0,55.0,39.0,44.0,42.0,45.0,49.0,41.0,33.0,32.0,32.0,34.0,35.0,40.0,31.0,45.0,41.0,55.0,42.0,55.0,63.0,56.0,70.0,60.0,35.0,72.0,43.0,55.0,49.0,56.0,44.0,50.0,45.0,42.0,57.0,50.0,65.0,41.0,45.0,58.0,56.0,58.0,69.0,68.0,62.0,55.0,46.0,49.0,57.0,57.0,57.0,62.0,55.0,58.0,54.0,37.0,38.0,50.0,43.0,41.0,36.0,26.0,45.0,43.0,41.0,36.0,55.0,31.0,25.0,27.0,26.0,12.0,12.0,18.0,16.0,7.0,8.0,6.0,6.0,8.0,4.0,3.0,4.0,6.0 N81011,58.0,58.0,62.0,73.0,68.0,90.0,81.0,84.0,95.0,86.0,102.0,77.0,86.0,76.0,91.0,77.0,83.0,88.0,80.0,82.0,83.0,66.0,77.0,68.0,65.0,74.0,77.0,89.0,90.0,77.0,89.0,83.0,87.0,111.0,96.0,86.0,90.0,89.0,91.0,109.0,98.0,111.0,104.0,100.0,108.0,105.0,91.0,83.0,95.0,98.0,79.0,98.0,82.0,96.0,113.0,112.0,88.0,113.0,112.0,127.0,120.0,106.0,115.0,92.0,94.0,88.0,93.0,91.0,81.0,75.0,69.0,71.0,84.0,69.0,78.0,61.0,62.0,66.0,68.0,47.0,43.0,43.0,38.0,34.0,38.0,21.0,19.0,29.0,16.0,12.0,7.0,8.0,8.0,3.0,5.0,1.0 N81012,50.0,50.0,51.0,57.0,78.0,60.0,61.0,72.0,80.0,73.0,82.0,84.0,95.0,95.0,81.0,91.0,69.0,65.0,61.0,56.0,65.0,55.0,62.0,46.0,50.0,69.0,72.0,68.0,88.0,84.0,85.0,82.0,81.0,104.0,80.0,84.0,95.0,109.0,89.0,92.0,107.0,98.0,89.0,100.0,100.0,95.0,84.0,79.0,79.0,80.0,90.0,75.0,95.0,96.0,95.0,77.0,100.0,78.0,81.0,79.0,87.0,71.0,69.0,62.0,78.0,68.0,72.0,57.0,52.0,45.0,43.0,43.0,44.0,46.0,38.0,51.0,42.0,29.0,35.0,38.0,37.0,24.0,22.0,19.0,16.0,12.0,10.0,16.0,5.0,6.0,8.0,3.0,4.0,1.0,1.0,6.0 N81013,25.0,23.0,29.0,27.0,27.0,34.0,44.0,39.0,40.0,50.0,43.0,32.0,56.0,40.0,40.0,41.0,45.0,52.0,31.0,31.0,33.0,24.0,29.0,27.0,29.0,26.0,44.0,32.0,37.0,35.0,44.0,36.0,33.0,46.0,30.0,45.0,39.0,45.0,48.0,48.0,48.0,58.0,59.0,50.0,57.0,58.0,45.0,32.0,48.0,42.0,44.0,41.0,58.0,59.0,64.0,51.0,57.0,55.0,54.0,50.0,60.0,45.0,52.0,44.0,41.0,37.0,51.0,38.0,39.0,50.0,52.0,53.0,39.0,34.0,33.0,19.0,37.0,31.0,41.0,25.0,25.0,25.0,25.0,12.0,23.0,12.0,11.0,12.0,6.0,5.0,4.0,5.0,5.0,4.0,2.0,2.0 N81014,25.0,28.0,34.0,31.0,49.0,41.0,45.0,40.0,63.0,58.0,58.0,59.0,55.0,57.0,61.0,74.0,64.0,58.0,53.0,57.0,48.0,53.0,38.0,43.0,41.0,42.0,42.0,41.0,37.0,47.0,40.0,44.0,42.0,38.0,53.0,33.0,39.0,35.0,42.0,54.0,48.0,49.0,56.0,64.0,78.0,67.0,59.0,57.0,69.0,56.0,73.0,75.0,75.0,72.0,64.0,73.0,85.0,76.0,76.0,84.0,82.0,70.0,67.0,86.0,51.0,57.0,57.0,53.0,46.0,49.0,54.0,47.0,44.0,45.0,40.0,49.0,42.0,46.0,45.0,33.0,39.0,33.0,31.0,27.0,25.0,24.0,23.0,15.0,17.0,13.0,10.0,10.0,9.0,4.0,8.0,9.0 N81016,159.0,173.0,179.0,199.0,209.0,213.0,187.0,243.0,244.0,233.0,221.0,229.0,223.0,212.0,229.0,229.0,199.0,208.0,208.0,165.0,201.0,144.0,175.0,180.0,190.0,188.0,224.0,236.0,257.0,264.0,291.0,298.0,309.0,332.0,362.0,339.0,335.0,376.0,307.0,319.0,335.0,332.0,309.0,307.0,288.0,281.0,263.0,210.0,226.0,243.0,243.0,202.0,200.0,190.0,208.0,167.0,189.0,186.0,186.0,211.0,164.0,182.0,184.0,168.0,160.0,136.0,127.0,127.0,114.0,109.0,79.0,73.0,84.0,85.0,77.0,79.0,67.0,78.0,79.0,62.0,52.0,55.0,39.0,40.0,35.0,37.0,31.0,18.0,16.0,20.0,13.0,15.0,12.0,8.0,6.0,6.0 N81018,16.0,32.0,27.0,36.0,39.0,35.0,40.0,36.0,30.0,29.0,35.0,38.0,44.0,31.0,42.0,52.0,51.0,53.0,49.0,52.0,48.0,39.0,41.0,36.0,46.0,43.0,34.0,35.0,37.0,25.0,23.0,30.0,32.0,33.0,30.0,38.0,45.0,36.0,23.0,53.0,42.0,47.0,42.0,44.0,35.0,43.0,43.0,29.0,38.0,51.0,53.0,58.0,66.0,48.0,67.0,58.0,70.0,66.0,70.0,73.0,62.0,68.0,74.0,51.0,60.0,48.0,60.0,64.0,61.0,50.0,57.0,60.0,45.0,50.0,59.0,50.0,47.0,54.0,55.0,37.0,42.0,50.0,43.0,24.0,30.0,22.0,33.0,22.0,17.0,15.0,13.0,2.0,10.0,6.0,5.0,1.0 N81019,70.0,85.0,86.0,116.0,77.0,89.0,101.0,89.0,102.0,93.0,99.0,97.0,110.0,91.0,117.0,96.0,87.0,94.0,93.0,105.0,101.0,76.0,95.0,75.0,77.0,126.0,103.0,97.0,109.0,115.0,104.0,125.0,101.0,121.0,112.0,101.0,118.0,108.0,110.0,110.0,123.0,96.0,98.0,124.0,104.0,93.0,111.0,79.0,76.0,110.0,97.0,89.0,89.0,114.0,131.0,117.0,102.0,90.0,97.0,106.0,114.0,86.0,73.0,96.0,70.0,75.0,54.0,64.0,61.0,62.0,53.0,62.0,65.0,48.0,55.0,58.0,60.0,52.0,55.0,54.0,19.0,30.0,25.0,24.0,14.0,23.0,7.0,9.0,6.0,11.0,6.0,3.0,4.0,,4.0, N81020,26.0,35.0,39.0,34.0,37.0,49.0,44.0,49.0,41.0,61.0,59.0,68.0,60.0,77.0,67.0,76.0,61.0,77.0,75.0,73.0,60.0,70.0,66.0,73.0,58.0,63.0,53.0,75.0,67.0,51.0,60.0,58.0,48.0,46.0,53.0,50.0,56.0,55.0,66.0,57.0,64.0,60.0,63.0,77.0,84.0,68.0,65.0,66.0,79.0,66.0,84.0,91.0,102.0,106.0,100.0,109.0,110.0,95.0,97.0,98.0,116.0,102.0,93.0,97.0,92.0,79.0,63.0,60.0,59.0,54.0,52.0,66.0,66.0,65.0,64.0,80.0,89.0,83.0,84.0,61.0,85.0,61.0,73.0,62.0,51.0,52.0,56.0,45.0,40.0,19.0,21.0,19.0,14.0,6.0,3.0,11.0 N81022,104.0,121.0,135.0,131.0,163.0,153.0,149.0,179.0,168.0,180.0,157.0,179.0,188.0,193.0,171.0,184.0,200.0,184.0,193.0,135.0,168.0,151.0,140.0,164.0,154.0,159.0,141.0,139.0,146.0,141.0,176.0,157.0,170.0,171.0,185.0,196.0,191.0,204.0,220.0,204.0,202.0,177.0,220.0,191.0,208.0,217.0,205.0,198.0,212.0,209.0,218.0,199.0,211.0,244.0,254.0,242.0,248.0,247.0,252.0,252.0,255.0,261.0,287.0,262.0,238.0,209.0,247.0,228.0,187.0,189.0,220.0,211.0,204.0,193.0,198.0,200.0,231.0,228.0,226.0,166.0,173.0,154.0,146.0,117.0,98.0,82.0,80.0,76.0,57.0,44.0,42.0,36.0,31.0,24.0,18.0,39.0 N81024,35.0,52.0,62.0,59.0,65.0,68.0,66.0,61.0,46.0,82.0,61.0,62.0,70.0,76.0,74.0,66.0,50.0,68.0,62.0,60.0,59.0,54.0,52.0,54.0,53.0,45.0,59.0,71.0,70.0,65.0,81.0,95.0,70.0,78.0,83.0,83.0,83.0,79.0,78.0,74.0,91.0,90.0,74.0,72.0,70.0,66.0,65.0,57.0,64.0,68.0,58.0,69.0,68.0,68.0,64.0,79.0,80.0,69.0,71.0,74.0,72.0,66.0,88.0,90.0,62.0,53.0,74.0,59.0,60.0,51.0,41.0,47.0,53.0,39.0,31.0,40.0,51.0,48.0,43.0,30.0,29.0,21.0,31.0,32.0,25.0,24.0,19.0,10.0,10.0,10.0,7.0,4.0,6.0,3.0,3.0,3.0 N81025,69.0,50.0,58.0,49.0,65.0,74.0,68.0,73.0,77.0,73.0,71.0,87.0,60.0,77.0,60.0,87.0,76.0,77.0,59.0,62.0,60.0,48.0,45.0,52.0,44.0,52.0,47.0,47.0,67.0,78.0,71.0,76.0,72.0,74.0,92.0,67.0,99.0,78.0,73.0,72.0,91.0,82.0,75.0,88.0,80.0,90.0,62.0,76.0,71.0,73.0,77.0,71.0,85.0,66.0,72.0,85.0,84.0,87.0,74.0,69.0,81.0,68.0,81.0,69.0,49.0,48.0,55.0,61.0,56.0,51.0,46.0,44.0,40.0,40.0,37.0,49.0,42.0,43.0,44.0,40.0,31.0,22.0,18.0,21.0,19.0,20.0,20.0,14.0,12.0,7.0,5.0,5.0,5.0,3.0,1.0,6.0 N81027,61.0,60.0,58.0,90.0,87.0,77.0,64.0,64.0,74.0,72.0,70.0,91.0,71.0,95.0,85.0,71.0,74.0,80.0,88.0,77.0,53.0,65.0,61.0,63.0,74.0,63.0,78.0,68.0,83.0,81.0,80.0,88.0,100.0,85.0,105.0,104.0,102.0,95.0,81.0,97.0,99.0,74.0,79.0,79.0,107.0,97.0,91.0,66.0,82.0,82.0,99.0,87.0,83.0,112.0,103.0,128.0,113.0,113.0,114.0,101.0,105.0,122.0,116.0,101.0,95.0,89.0,78.0,99.0,80.0,80.0,86.0,106.0,66.0,82.0,82.0,77.0,96.0,86.0,81.0,52.0,61.0,62.0,54.0,42.0,44.0,34.0,27.0,28.0,19.0,19.0,9.0,8.0,13.0,5.0,3.0,15.0 N81028,34.0,40.0,41.0,36.0,49.0,53.0,57.0,60.0,57.0,62.0,74.0,60.0,76.0,86.0,73.0,70.0,67.0,56.0,66.0,42.0,43.0,35.0,36.0,29.0,38.0,31.0,47.0,39.0,47.0,61.0,56.0,73.0,55.0,78.0,68.0,74.0,79.0,77.0,79.0,88.0,91.0,84.0,79.0,73.0,86.0,95.0,78.0,71.0,77.0,87.0,77.0,63.0,67.0,63.0,74.0,57.0,59.0,68.0,60.0,53.0,56.0,57.0,64.0,35.0,50.0,36.0,41.0,40.0,29.0,41.0,32.0,34.0,44.0,49.0,28.0,36.0,32.0,35.0,29.0,23.0,25.0,18.0,30.0,13.0,12.0,20.0,8.0,10.0,5.0,7.0,4.0,3.0,5.0,2.0,1.0,5.0 N81029,49.0,52.0,48.0,47.0,34.0,66.0,52.0,55.0,58.0,85.0,72.0,75.0,49.0,75.0,68.0,66.0,77.0,67.0,63.0,62.0,57.0,58.0,47.0,57.0,69.0,50.0,64.0,86.0,72.0,75.0,66.0,99.0,89.0,88.0,104.0,86.0,106.0,95.0,100.0,94.0,86.0,94.0,88.0,80.0,87.0,97.0,76.0,71.0,69.0,87.0,73.0,80.0,85.0,85.0,94.0,82.0,98.0,100.0,93.0,102.0,86.0,96.0,96.0,103.0,97.0,76.0,82.0,71.0,77.0,73.0,68.0,65.0,57.0,45.0,50.0,58.0,72.0,61.0,68.0,52.0,45.0,51.0,36.0,38.0,32.0,37.0,37.0,26.0,15.0,16.0,13.0,13.0,9.0,10.0,4.0,10.0 N81030,49.0,59.0,57.0,62.0,67.0,63.0,72.0,71.0,76.0,87.0,89.0,86.0,101.0,90.0,101.0,91.0,91.0,97.0,94.0,75.0,64.0,75.0,67.0,65.0,66.0,76.0,73.0,60.0,63.0,70.0,72.0,85.0,70.0,70.0,85.0,83.0,81.0,80.0,78.0,95.0,99.0,88.0,91.0,101.0,99.0,94.0,116.0,100.0,78.0,97.0,106.0,111.0,115.0,134.0,148.0,135.0,129.0,125.0,137.0,157.0,144.0,126.0,152.0,137.0,129.0,119.0,108.0,118.0,99.0,109.0,92.0,123.0,117.0,103.0,112.0,98.0,109.0,127.0,115.0,91.0,100.0,91.0,60.0,62.0,47.0,46.0,39.0,27.0,22.0,27.0,24.0,11.0,8.0,9.0,5.0,15.0 N81031,18.0,14.0,22.0,17.0,25.0,24.0,37.0,29.0,36.0,27.0,35.0,34.0,39.0,42.0,27.0,45.0,35.0,43.0,27.0,29.0,26.0,24.0,30.0,19.0,21.0,29.0,24.0,30.0,22.0,26.0,32.0,30.0,26.0,26.0,21.0,28.0,23.0,33.0,34.0,34.0,28.0,37.0,22.0,25.0,40.0,29.0,34.0,34.0,32.0,42.0,35.0,51.0,43.0,36.0,44.0,50.0,46.0,51.0,45.0,50.0,40.0,43.0,51.0,38.0,57.0,48.0,42.0,46.0,44.0,41.0,40.0,37.0,51.0,35.0,52.0,37.0,54.0,45.0,47.0,30.0,40.0,34.0,41.0,24.0,24.0,21.0,14.0,15.0,15.0,13.0,4.0,4.0,6.0,3.0,3.0,4.0 N81032,161.0,169.0,143.0,163.0,156.0,153.0,166.0,174.0,169.0,177.0,148.0,132.0,182.0,163.0,148.0,149.0,196.0,159.0,152.0,126.0,127.0,117.0,115.0,138.0,109.0,144.0,131.0,161.0,158.0,177.0,203.0,185.0,201.0,194.0,206.0,218.0,216.0,177.0,209.0,212.0,177.0,181.0,197.0,173.0,166.0,169.0,169.0,156.0,159.0,180.0,175.0,170.0,188.0,229.0,198.0,192.0,229.0,202.0,216.0,214.0,224.0,185.0,199.0,208.0,210.0,155.0,159.0,162.0,128.0,164.0,137.0,120.0,136.0,124.0,120.0,120.0,114.0,141.0,144.0,90.0,121.0,105.0,64.0,59.0,62.0,62.0,43.0,52.0,43.0,32.0,24.0,13.0,14.0,11.0,6.0,18.0 N81033,28.0,30.0,32.0,30.0,35.0,45.0,43.0,39.0,43.0,55.0,44.0,45.0,56.0,52.0,37.0,45.0,51.0,58.0,41.0,35.0,43.0,33.0,43.0,38.0,34.0,38.0,43.0,44.0,43.0,36.0,30.0,41.0,37.0,41.0,30.0,53.0,51.0,44.0,45.0,54.0,59.0,49.0,47.0,45.0,56.0,57.0,36.0,52.0,48.0,52.0,57.0,62.0,56.0,55.0,74.0,61.0,55.0,52.0,72.0,83.0,68.0,76.0,70.0,70.0,63.0,61.0,53.0,59.0,62.0,49.0,50.0,44.0,53.0,49.0,31.0,48.0,57.0,62.0,43.0,45.0,36.0,38.0,37.0,33.0,18.0,12.0,24.0,18.0,16.0,17.0,12.0,10.0,7.0,7.0,6.0,21.0 N81034,57.0,54.0,63.0,73.0,73.0,54.0,68.0,74.0,69.0,78.0,66.0,70.0,69.0,81.0,61.0,69.0,83.0,63.0,76.0,48.0,77.0,45.0,57.0,52.0,66.0,62.0,65.0,78.0,97.0,82.0,88.0,105.0,112.0,119.0,114.0,122.0,126.0,104.0,119.0,121.0,125.0,114.0,128.0,98.0,88.0,93.0,106.0,91.0,84.0,79.0,92.0,87.0,89.0,100.0,82.0,73.0,99.0,79.0,101.0,99.0,75.0,101.0,83.0,89.0,68.0,72.0,50.0,98.0,59.0,65.0,60.0,71.0,52.0,72.0,67.0,62.0,50.0,55.0,42.0,46.0,37.0,43.0,42.0,24.0,20.0,17.0,27.0,21.0,14.0,9.0,10.0,11.0,4.0,5.0,3.0,6.0 N81035,48.0,49.0,61.0,65.0,58.0,50.0,38.0,72.0,56.0,59.0,65.0,69.0,65.0,73.0,59.0,81.0,72.0,82.0,84.0,70.0,67.0,53.0,55.0,63.0,59.0,77.0,75.0,70.0,79.0,63.0,72.0,71.0,109.0,76.0,80.0,74.0,89.0,87.0,71.0,80.0,69.0,86.0,83.0,83.0,75.0,83.0,71.0,66.0,78.0,92.0,88.0,68.0,62.0,82.0,69.0,92.0,77.0,91.0,78.0,78.0,97.0,91.0,82.0,73.0,84.0,83.0,90.0,99.0,56.0,56.0,78.0,73.0,61.0,68.0,62.0,56.0,71.0,54.0,61.0,38.0,36.0,51.0,34.0,38.0,29.0,24.0,16.0,24.0,12.0,11.0,12.0,9.0,4.0,5.0,2.0,7.0 N81036,35.0,42.0,37.0,49.0,45.0,46.0,58.0,42.0,54.0,47.0,48.0,54.0,50.0,46.0,43.0,32.0,37.0,41.0,42.0,32.0,32.0,38.0,38.0,41.0,42.0,58.0,54.0,62.0,55.0,65.0,51.0,63.0,87.0,75.0,69.0,62.0,74.0,66.0,63.0,73.0,63.0,62.0,85.0,63.0,81.0,71.0,50.0,48.0,52.0,51.0,50.0,53.0,48.0,57.0,69.0,60.0,61.0,64.0,52.0,69.0,60.0,55.0,46.0,50.0,56.0,57.0,36.0,29.0,43.0,31.0,32.0,30.0,45.0,30.0,35.0,36.0,34.0,41.0,27.0,32.0,22.0,26.0,26.0,17.0,18.0,20.0,17.0,8.0,11.0,8.0,5.0,7.0,3.0,3.0,3.0,1.0 N81037,31.0,36.0,27.0,43.0,61.0,46.0,52.0,53.0,51.0,69.0,56.0,50.0,52.0,64.0,55.0,48.0,59.0,57.0,50.0,36.0,52.0,45.0,34.0,36.0,47.0,37.0,52.0,45.0,48.0,43.0,54.0,66.0,64.0,48.0,73.0,47.0,65.0,59.0,52.0,57.0,60.0,70.0,56.0,56.0,53.0,54.0,37.0,47.0,36.0,48.0,47.0,41.0,57.0,53.0,46.0,43.0,48.0,48.0,57.0,58.0,58.0,68.0,55.0,68.0,47.0,59.0,52.0,60.0,46.0,38.0,36.0,43.0,28.0,26.0,30.0,42.0,33.0,34.0,27.0,26.0,21.0,26.0,14.0,14.0,12.0,14.0,10.0,10.0,12.0,6.0,3.0,3.0,3.0,,4.0,3.0 N81038,29.0,27.0,30.0,43.0,28.0,28.0,37.0,39.0,28.0,61.0,34.0,32.0,43.0,48.0,45.0,38.0,40.0,62.0,44.0,43.0,39.0,46.0,38.0,27.0,36.0,26.0,29.0,40.0,22.0,38.0,43.0,40.0,26.0,34.0,50.0,38.0,40.0,36.0,40.0,42.0,35.0,46.0,34.0,43.0,45.0,46.0,45.0,32.0,46.0,47.0,59.0,40.0,45.0,64.0,60.0,61.0,47.0,79.0,61.0,61.0,56.0,50.0,61.0,59.0,53.0,64.0,42.0,47.0,39.0,51.0,41.0,64.0,46.0,43.0,62.0,56.0,30.0,54.0,45.0,37.0,43.0,34.0,27.0,16.0,20.0,30.0,16.0,13.0,21.0,10.0,5.0,6.0,6.0,9.0,3.0,5.0 N81039,62.0,46.0,60.0,50.0,45.0,60.0,52.0,61.0,49.0,73.0,60.0,68.0,72.0,74.0,65.0,78.0,62.0,62.0,66.0,50.0,51.0,54.0,49.0,47.0,56.0,61.0,70.0,60.0,70.0,67.0,68.0,55.0,77.0,74.0,90.0,82.0,68.0,75.0,86.0,64.0,80.0,59.0,82.0,70.0,66.0,57.0,69.0,55.0,52.0,68.0,74.0,61.0,73.0,86.0,84.0,98.0,76.0,102.0,91.0,90.0,101.0,99.0,99.0,82.0,87.0,68.0,65.0,70.0,73.0,65.0,62.0,58.0,82.0,66.0,65.0,60.0,44.0,68.0,56.0,42.0,45.0,21.0,37.0,33.0,23.0,17.0,19.0,17.0,16.0,13.0,12.0,5.0,3.0,3.0,5.0,9.0 N81040,26.0,45.0,35.0,38.0,36.0,38.0,40.0,40.0,40.0,42.0,49.0,42.0,59.0,46.0,48.0,49.0,44.0,40.0,34.0,34.0,29.0,35.0,24.0,37.0,36.0,37.0,32.0,36.0,40.0,57.0,57.0,52.0,52.0,71.0,67.0,53.0,61.0,56.0,67.0,80.0,68.0,46.0,50.0,47.0,43.0,37.0,43.0,49.0,50.0,37.0,53.0,51.0,65.0,55.0,49.0,46.0,44.0,50.0,41.0,55.0,66.0,37.0,44.0,49.0,39.0,41.0,42.0,32.0,28.0,33.0,34.0,25.0,16.0,22.0,28.0,29.0,19.0,26.0,25.0,14.0,10.0,21.0,4.0,9.0,10.0,6.0,7.0,4.0,1.0,3.0,2.0,2.0,3.0,,1.0,1.0 N81041,34.0,34.0,51.0,35.0,37.0,38.0,42.0,42.0,41.0,40.0,46.0,62.0,56.0,51.0,53.0,44.0,51.0,45.0,50.0,45.0,37.0,46.0,47.0,46.0,44.0,42.0,41.0,44.0,56.0,68.0,67.0,48.0,58.0,67.0,65.0,60.0,72.0,72.0,54.0,59.0,64.0,55.0,63.0,61.0,44.0,63.0,54.0,54.0,51.0,41.0,60.0,58.0,65.0,68.0,58.0,73.0,56.0,65.0,79.0,79.0,72.0,56.0,64.0,51.0,53.0,63.0,74.0,48.0,62.0,57.0,48.0,30.0,33.0,30.0,29.0,33.0,46.0,25.0,31.0,17.0,28.0,24.0,22.0,15.0,17.0,17.0,22.0,10.0,10.0,9.0,8.0,9.0,2.0,3.0,4.0,5.0 N81043,18.0,28.0,34.0,34.0,37.0,30.0,36.0,26.0,23.0,32.0,20.0,26.0,31.0,20.0,23.0,24.0,24.0,25.0,31.0,18.0,23.0,30.0,26.0,27.0,29.0,25.0,35.0,26.0,36.0,34.0,26.0,30.0,29.0,33.0,27.0,40.0,37.0,28.0,29.0,29.0,35.0,36.0,37.0,39.0,38.0,29.0,21.0,28.0,34.0,39.0,31.0,33.0,53.0,47.0,36.0,43.0,48.0,53.0,48.0,58.0,39.0,42.0,56.0,46.0,64.0,54.0,42.0,44.0,45.0,35.0,29.0,39.0,26.0,43.0,38.0,35.0,34.0,49.0,37.0,30.0,25.0,35.0,27.0,26.0,16.0,16.0,11.0,12.0,9.0,6.0,5.0,7.0,3.0,4.0,3.0,4.0 N81044,41.0,55.0,54.0,57.0,46.0,46.0,53.0,73.0,66.0,65.0,62.0,62.0,64.0,70.0,66.0,61.0,69.0,85.0,47.0,67.0,54.0,72.0,70.0,58.0,61.0,65.0,69.0,83.0,78.0,98.0,96.0,78.0,80.0,98.0,100.0,87.0,102.0,88.0,93.0,70.0,81.0,71.0,60.0,80.0,76.0,93.0,70.0,46.0,52.0,56.0,64.0,65.0,68.0,68.0,75.0,74.0,58.0,73.0,78.0,72.0,71.0,83.0,79.0,58.0,55.0,56.0,71.0,49.0,44.0,57.0,57.0,54.0,36.0,57.0,54.0,52.0,40.0,41.0,47.0,21.0,39.0,31.0,26.0,20.0,27.0,14.0,16.0,16.0,16.0,14.0,6.0,5.0,3.0,5.0,6.0,8.0 N81045,34.0,62.0,41.0,72.0,60.0,66.0,80.0,81.0,74.0,80.0,79.0,90.0,85.0,100.0,89.0,81.0,88.0,76.0,78.0,88.0,89.0,75.0,71.0,61.0,66.0,70.0,87.0,74.0,74.0,69.0,83.0,81.0,94.0,95.0,91.0,89.0,98.0,105.0,90.0,100.0,101.0,83.0,83.0,112.0,90.0,99.0,96.0,77.0,73.0,89.0,86.0,86.0,102.0,95.0,121.0,95.0,110.0,90.0,94.0,103.0,95.0,90.0,111.0,112.0,86.0,93.0,89.0,91.0,79.0,65.0,75.0,73.0,59.0,61.0,74.0,54.0,69.0,72.0,51.0,52.0,41.0,44.0,38.0,30.0,24.0,29.0,29.0,16.0,15.0,17.0,14.0,8.0,4.0,3.0,4.0,4.0 N81046,42.0,41.0,41.0,47.0,60.0,61.0,67.0,59.0,70.0,80.0,68.0,82.0,55.0,67.0,77.0,56.0,56.0,58.0,46.0,45.0,38.0,40.0,48.0,41.0,52.0,35.0,48.0,57.0,52.0,62.0,63.0,62.0,75.0,81.0,72.0,86.0,69.0,78.0,81.0,75.0,83.0,95.0,82.0,78.0,84.0,78.0,89.0,71.0,66.0,63.0,74.0,65.0,79.0,81.0,69.0,68.0,66.0,73.0,67.0,71.0,78.0,68.0,71.0,60.0,56.0,62.0,58.0,57.0,36.0,53.0,49.0,42.0,40.0,45.0,43.0,42.0,47.0,46.0,49.0,35.0,27.0,29.0,28.0,28.0,22.0,18.0,17.0,20.0,9.0,7.0,12.0,8.0,5.0,,4.0,4.0 N81047,38.0,39.0,48.0,53.0,55.0,48.0,42.0,60.0,61.0,57.0,64.0,70.0,62.0,65.0,77.0,70.0,77.0,81.0,69.0,65.0,66.0,62.0,56.0,61.0,69.0,61.0,55.0,74.0,70.0,64.0,73.0,85.0,69.0,74.0,65.0,65.0,83.0,72.0,69.0,77.0,57.0,70.0,56.0,71.0,61.0,58.0,89.0,69.0,60.0,68.0,87.0,88.0,80.0,95.0,118.0,98.0,97.0,120.0,107.0,114.0,88.0,95.0,89.0,93.0,76.0,84.0,83.0,61.0,65.0,63.0,59.0,61.0,60.0,63.0,65.0,63.0,69.0,74.0,77.0,60.0,55.0,56.0,36.0,32.0,37.0,37.0,24.0,26.0,21.0,21.0,15.0,11.0,10.0,5.0,5.0,9.0 N81048,35.0,43.0,64.0,59.0,60.0,66.0,69.0,73.0,75.0,68.0,99.0,79.0,99.0,94.0,71.0,82.0,90.0,93.0,86.0,73.0,71.0,69.0,75.0,78.0,87.0,64.0,89.0,98.0,83.0,76.0,98.0,68.0,94.0,104.0,99.0,89.0,99.0,109.0,95.0,90.0,119.0,93.0,106.0,104.0,74.0,92.0,101.0,80.0,79.0,77.0,85.0,80.0,81.0,94.0,90.0,88.0,112.0,72.0,91.0,94.0,93.0,94.0,85.0,75.0,66.0,79.0,75.0,80.0,65.0,61.0,70.0,61.0,69.0,53.0,62.0,57.0,52.0,54.0,62.0,39.0,41.0,33.0,30.0,17.0,21.0,18.0,19.0,15.0,6.0,12.0,8.0,7.0,7.0,3.0,2.0,5.0 N81049,109.0,104.0,109.0,126.0,108.0,120.0,140.0,137.0,145.0,136.0,108.0,151.0,151.0,143.0,140.0,163.0,141.0,142.0,125.0,102.0,94.0,112.0,93.0,105.0,109.0,94.0,84.0,103.0,97.0,99.0,112.0,113.0,134.0,135.0,150.0,127.0,118.0,127.0,134.0,159.0,159.0,116.0,137.0,132.0,141.0,151.0,132.0,161.0,134.0,166.0,160.0,179.0,179.0,152.0,159.0,163.0,148.0,173.0,158.0,169.0,156.0,174.0,175.0,164.0,157.0,155.0,130.0,148.0,127.0,122.0,135.0,124.0,112.0,122.0,114.0,134.0,129.0,125.0,134.0,97.0,111.0,103.0,93.0,70.0,64.0,67.0,54.0,43.0,48.0,34.0,29.0,24.0,17.0,7.0,10.0,28.0 N81050,61.0,97.0,100.0,89.0,109.0,111.0,98.0,114.0,124.0,114.0,123.0,105.0,121.0,108.0,125.0,117.0,97.0,113.0,108.0,112.0,98.0,97.0,87.0,91.0,97.0,133.0,103.0,125.0,133.0,116.0,114.0,144.0,146.0,141.0,155.0,164.0,135.0,155.0,144.0,145.0,126.0,120.0,133.0,117.0,136.0,132.0,141.0,121.0,92.0,111.0,89.0,112.0,126.0,127.0,143.0,115.0,144.0,144.0,144.0,142.0,146.0,153.0,149.0,127.0,150.0,110.0,126.0,101.0,105.0,104.0,92.0,110.0,88.0,90.0,85.0,77.0,89.0,99.0,96.0,66.0,65.0,57.0,47.0,39.0,47.0,29.0,31.0,25.0,24.0,29.0,18.0,14.0,11.0,5.0,3.0,10.0 N81051,27.0,22.0,36.0,22.0,26.0,40.0,43.0,33.0,38.0,40.0,31.0,48.0,40.0,42.0,38.0,55.0,49.0,41.0,38.0,40.0,35.0,37.0,34.0,26.0,33.0,27.0,34.0,34.0,36.0,32.0,31.0,38.0,32.0,32.0,44.0,44.0,36.0,45.0,42.0,49.0,32.0,41.0,42.0,47.0,41.0,32.0,42.0,44.0,31.0,38.0,31.0,54.0,50.0,46.0,43.0,44.0,60.0,51.0,65.0,56.0,55.0,64.0,48.0,56.0,61.0,48.0,43.0,46.0,44.0,44.0,43.0,44.0,48.0,35.0,52.0,30.0,39.0,49.0,41.0,33.0,37.0,23.0,22.0,30.0,23.0,17.0,11.0,18.0,8.0,8.0,5.0,5.0,1.0,7.0,1.0,3.0 N81052,55.0,75.0,72.0,72.0,74.0,72.0,70.0,94.0,73.0,60.0,74.0,77.0,84.0,55.0,80.0,71.0,74.0,74.0,60.0,64.0,66.0,49.0,51.0,54.0,53.0,71.0,67.0,63.0,73.0,71.0,71.0,84.0,83.0,82.0,86.0,78.0,95.0,92.0,93.0,82.0,61.0,86.0,70.0,82.0,79.0,84.0,64.0,59.0,73.0,75.0,73.0,77.0,104.0,99.0,103.0,81.0,97.0,97.0,97.0,83.0,95.0,77.0,83.0,111.0,83.0,73.0,78.0,63.0,67.0,74.0,58.0,49.0,72.0,62.0,65.0,60.0,55.0,93.0,58.0,59.0,77.0,48.0,38.0,32.0,28.0,25.0,27.0,18.0,22.0,13.0,11.0,9.0,9.0,2.0,2.0,6.0 N81053,81.0,71.0,83.0,100.0,99.0,90.0,89.0,105.0,99.0,104.0,98.0,106.0,116.0,119.0,127.0,109.0,111.0,118.0,118.0,114.0,98.0,102.0,87.0,105.0,78.0,100.0,122.0,115.0,130.0,157.0,141.0,137.0,151.0,165.0,143.0,131.0,117.0,171.0,150.0,127.0,136.0,131.0,145.0,155.0,146.0,136.0,112.0,100.0,98.0,100.0,109.0,107.0,99.0,125.0,91.0,88.0,119.0,111.0,96.0,103.0,100.0,100.0,83.0,104.0,95.0,89.0,84.0,98.0,73.0,67.0,91.0,63.0,51.0,63.0,55.0,56.0,50.0,64.0,65.0,49.0,54.0,39.0,40.0,31.0,24.0,24.0,19.0,23.0,18.0,17.0,2.0,6.0,5.0,4.0,2.0,7.0 N81054,29.0,31.0,36.0,52.0,44.0,36.0,40.0,52.0,45.0,63.0,60.0,59.0,54.0,66.0,59.0,69.0,46.0,62.0,68.0,65.0,57.0,66.0,56.0,55.0,66.0,58.0,77.0,68.0,66.0,56.0,57.0,72.0,60.0,49.0,73.0,52.0,67.0,59.0,58.0,67.0,59.0,60.0,72.0,44.0,53.0,58.0,54.0,43.0,70.0,59.0,68.0,53.0,66.0,81.0,57.0,68.0,51.0,52.0,52.0,51.0,57.0,53.0,59.0,50.0,47.0,50.0,41.0,36.0,39.0,40.0,36.0,41.0,50.0,51.0,48.0,55.0,36.0,37.0,44.0,19.0,14.0,14.0,16.0,17.0,14.0,12.0,11.0,9.0,4.0,4.0,1.0,1.0,3.0,2.0,1.0,2.0 N81055,16.0,25.0,26.0,25.0,31.0,33.0,27.0,30.0,38.0,33.0,32.0,38.0,35.0,33.0,40.0,30.0,38.0,36.0,37.0,47.0,38.0,31.0,29.0,35.0,30.0,33.0,36.0,48.0,46.0,50.0,52.0,37.0,45.0,50.0,49.0,52.0,46.0,53.0,42.0,55.0,45.0,40.0,60.0,48.0,43.0,40.0,24.0,42.0,51.0,35.0,39.0,37.0,46.0,55.0,52.0,55.0,51.0,55.0,56.0,61.0,69.0,59.0,61.0,55.0,46.0,46.0,59.0,60.0,50.0,55.0,42.0,47.0,40.0,47.0,45.0,46.0,32.0,29.0,37.0,35.0,29.0,28.0,21.0,21.0,16.0,18.0,12.0,10.0,16.0,6.0,3.0,3.0,2.0,3.0,1.0,5.0 N81056,45.0,38.0,50.0,39.0,47.0,54.0,58.0,60.0,64.0,61.0,63.0,81.0,66.0,69.0,58.0,60.0,62.0,78.0,60.0,72.0,47.0,60.0,44.0,53.0,56.0,61.0,41.0,63.0,75.0,67.0,54.0,63.0,87.0,81.0,83.0,77.0,77.0,80.0,84.0,83.0,84.0,84.0,70.0,72.0,75.0,64.0,70.0,56.0,64.0,65.0,56.0,62.0,64.0,61.0,62.0,51.0,69.0,76.0,75.0,78.0,83.0,84.0,79.0,64.0,58.0,57.0,62.0,34.0,55.0,49.0,34.0,36.0,35.0,32.0,31.0,40.0,41.0,40.0,33.0,26.0,20.0,18.0,19.0,8.0,14.0,13.0,13.0,13.0,4.0,5.0,9.0,4.0,3.0,,4.0,2.0 N81057,44.0,69.0,57.0,47.0,53.0,58.0,57.0,52.0,82.0,66.0,70.0,79.0,76.0,84.0,77.0,79.0,65.0,66.0,67.0,84.0,62.0,58.0,58.0,64.0,72.0,91.0,75.0,72.0,86.0,82.0,93.0,82.0,79.0,90.0,97.0,90.0,90.0,95.0,103.0,82.0,87.0,100.0,94.0,99.0,80.0,96.0,66.0,81.0,95.0,81.0,72.0,73.0,84.0,94.0,105.0,97.0,95.0,94.0,84.0,82.0,106.0,89.0,73.0,91.0,78.0,79.0,76.0,64.0,74.0,66.0,73.0,66.0,60.0,59.0,57.0,57.0,67.0,68.0,55.0,46.0,43.0,37.0,38.0,39.0,24.0,17.0,20.0,11.0,18.0,18.0,13.0,5.0,3.0,5.0,2.0,6.0 N81059,41.0,34.0,43.0,47.0,55.0,60.0,60.0,74.0,70.0,67.0,74.0,55.0,86.0,72.0,72.0,82.0,100.0,82.0,65.0,75.0,60.0,63.0,76.0,64.0,63.0,61.0,50.0,67.0,62.0,51.0,51.0,71.0,58.0,59.0,59.0,67.0,63.0,68.0,75.0,56.0,64.0,66.0,65.0,61.0,62.0,62.0,85.0,71.0,70.0,85.0,74.0,88.0,79.0,88.0,98.0,100.0,95.0,101.0,116.0,110.0,100.0,124.0,90.0,91.0,91.0,83.0,71.0,89.0,70.0,78.0,60.0,58.0,67.0,51.0,44.0,62.0,68.0,58.0,64.0,57.0,65.0,48.0,47.0,30.0,33.0,29.0,29.0,24.0,13.0,26.0,18.0,13.0,10.0,10.0,8.0,11.0 N81060,27.0,25.0,28.0,33.0,28.0,40.0,39.0,43.0,46.0,56.0,45.0,56.0,50.0,43.0,50.0,52.0,44.0,49.0,48.0,37.0,41.0,50.0,37.0,35.0,42.0,37.0,34.0,31.0,35.0,36.0,38.0,33.0,39.0,49.0,46.0,42.0,42.0,52.0,49.0,46.0,53.0,47.0,50.0,54.0,45.0,44.0,56.0,41.0,46.0,57.0,53.0,48.0,69.0,53.0,65.0,64.0,69.0,82.0,54.0,63.0,59.0,73.0,67.0,71.0,62.0,63.0,65.0,62.0,73.0,60.0,60.0,56.0,60.0,63.0,62.0,56.0,47.0,62.0,85.0,52.0,41.0,38.0,40.0,37.0,34.0,27.0,28.0,20.0,14.0,18.0,17.0,13.0,4.0,3.0,7.0,10.0 N81061,51.0,64.0,50.0,64.0,43.0,43.0,58.0,55.0,50.0,60.0,55.0,51.0,65.0,51.0,61.0,57.0,64.0,56.0,54.0,42.0,44.0,51.0,34.0,40.0,49.0,57.0,53.0,50.0,66.0,68.0,59.0,66.0,65.0,82.0,77.0,67.0,78.0,66.0,57.0,85.0,77.0,76.0,67.0,65.0,71.0,59.0,64.0,67.0,50.0,64.0,55.0,61.0,75.0,72.0,74.0,69.0,65.0,65.0,74.0,68.0,69.0,83.0,70.0,71.0,68.0,52.0,59.0,55.0,49.0,68.0,61.0,56.0,52.0,51.0,50.0,42.0,46.0,41.0,45.0,42.0,43.0,29.0,17.0,25.0,16.0,16.0,17.0,5.0,10.0,4.0,8.0,7.0,4.0,3.0,2.0,7.0 N81062,46.0,73.0,66.0,78.0,57.0,78.0,62.0,84.0,83.0,82.0,66.0,76.0,97.0,96.0,95.0,86.0,82.0,87.0,83.0,79.0,66.0,73.0,69.0,80.0,54.0,68.0,86.0,91.0,82.0,83.0,79.0,83.0,109.0,94.0,106.0,104.0,95.0,99.0,123.0,90.0,99.0,114.0,116.0,95.0,108.0,93.0,92.0,103.0,102.0,92.0,100.0,90.0,87.0,86.0,103.0,90.0,103.0,119.0,120.0,101.0,124.0,112.0,105.0,114.0,115.0,99.0,93.0,95.0,89.0,95.0,74.0,81.0,65.0,85.0,76.0,94.0,67.0,76.0,77.0,51.0,56.0,52.0,57.0,31.0,34.0,24.0,27.0,28.0,17.0,23.0,17.0,5.0,11.0,5.0,4.0,6.0 N81063,57.0,67.0,56.0,67.0,65.0,72.0,82.0,75.0,91.0,74.0,79.0,95.0,82.0,94.0,82.0,73.0,85.0,75.0,79.0,74.0,72.0,78.0,75.0,77.0,78.0,91.0,99.0,114.0,96.0,100.0,96.0,99.0,118.0,123.0,104.0,118.0,108.0,121.0,101.0,92.0,116.0,82.0,91.0,83.0,83.0,95.0,68.0,69.0,56.0,76.0,71.0,69.0,82.0,82.0,91.0,96.0,79.0,75.0,93.0,82.0,72.0,80.0,75.0,72.0,59.0,51.0,64.0,65.0,55.0,54.0,39.0,48.0,47.0,34.0,35.0,26.0,33.0,27.0,18.0,16.0,24.0,18.0,20.0,17.0,18.0,13.0,16.0,11.0,8.0,8.0,8.0,8.0,2.0,2.0,2.0,2.0 N81064,36.0,26.0,26.0,30.0,31.0,41.0,35.0,34.0,61.0,30.0,45.0,39.0,48.0,55.0,26.0,47.0,44.0,34.0,40.0,37.0,36.0,29.0,49.0,36.0,46.0,42.0,54.0,53.0,43.0,49.0,44.0,47.0,39.0,49.0,52.0,53.0,60.0,56.0,60.0,56.0,53.0,33.0,57.0,54.0,53.0,47.0,47.0,44.0,45.0,37.0,47.0,48.0,55.0,48.0,51.0,41.0,45.0,49.0,48.0,47.0,47.0,52.0,48.0,42.0,45.0,32.0,28.0,39.0,36.0,39.0,48.0,39.0,38.0,38.0,35.0,30.0,29.0,27.0,27.0,18.0,11.0,9.0,14.0,12.0,8.0,16.0,5.0,12.0,14.0,7.0,2.0,6.0,3.0,1.0,3.0,5.0 N81065,42.0,45.0,38.0,47.0,39.0,60.0,52.0,67.0,36.0,60.0,64.0,71.0,57.0,54.0,54.0,55.0,52.0,53.0,33.0,35.0,48.0,44.0,34.0,37.0,39.0,40.0,50.0,63.0,64.0,59.0,72.0,61.0,82.0,81.0,83.0,82.0,87.0,69.0,63.0,68.0,77.0,72.0,79.0,62.0,64.0,79.0,63.0,55.0,49.0,51.0,57.0,47.0,51.0,37.0,46.0,44.0,54.0,45.0,40.0,51.0,46.0,45.0,45.0,40.0,32.0,43.0,34.0,28.0,31.0,26.0,28.0,27.0,20.0,27.0,26.0,27.0,17.0,22.0,19.0,11.0,15.0,10.0,13.0,7.0,6.0,9.0,4.0,6.0,8.0,3.0,4.0,1.0,1.0,3.0,1.0,3.0 N81066,64.0,61.0,75.0,66.0,80.0,81.0,73.0,86.0,71.0,95.0,91.0,89.0,93.0,83.0,68.0,82.0,95.0,98.0,74.0,81.0,74.0,66.0,86.0,74.0,102.0,95.0,88.0,90.0,104.0,122.0,111.0,114.0,119.0,125.0,112.0,120.0,96.0,124.0,98.0,118.0,108.0,127.0,96.0,104.0,86.0,98.0,97.0,78.0,97.0,96.0,85.0,76.0,120.0,113.0,114.0,113.0,111.0,123.0,94.0,115.0,101.0,110.0,110.0,124.0,101.0,86.0,95.0,83.0,78.0,98.0,77.0,69.0,80.0,67.0,69.0,70.0,67.0,74.0,50.0,38.0,41.0,37.0,27.0,25.0,16.0,25.0,12.0,15.0,13.0,11.0,7.0,3.0,6.0,,1.0,9.0 N81067,32.0,47.0,36.0,48.0,46.0,50.0,59.0,45.0,50.0,45.0,66.0,57.0,73.0,60.0,58.0,62.0,54.0,64.0,65.0,58.0,57.0,38.0,34.0,45.0,39.0,36.0,40.0,29.0,41.0,46.0,55.0,53.0,53.0,56.0,71.0,72.0,49.0,61.0,67.0,73.0,55.0,57.0,75.0,60.0,70.0,65.0,59.0,59.0,50.0,60.0,61.0,49.0,67.0,74.0,67.0,58.0,65.0,64.0,78.0,64.0,87.0,73.0,63.0,52.0,50.0,50.0,38.0,50.0,49.0,41.0,48.0,51.0,44.0,40.0,54.0,42.0,36.0,43.0,61.0,43.0,45.0,33.0,33.0,16.0,18.0,16.0,15.0,13.0,6.0,8.0,3.0,4.0,3.0,1.0,2.0,4.0 N81068,72.0,95.0,84.0,100.0,76.0,93.0,80.0,90.0,95.0,96.0,92.0,91.0,105.0,92.0,94.0,111.0,89.0,98.0,89.0,80.0,75.0,65.0,96.0,91.0,80.0,100.0,123.0,135.0,108.0,106.0,125.0,160.0,143.0,160.0,153.0,146.0,141.0,156.0,127.0,143.0,131.0,124.0,112.0,112.0,99.0,103.0,94.0,86.0,73.0,78.0,79.0,92.0,106.0,98.0,88.0,84.0,100.0,92.0,97.0,108.0,95.0,102.0,93.0,76.0,94.0,76.0,87.0,99.0,49.0,74.0,63.0,66.0,69.0,59.0,48.0,49.0,47.0,50.0,54.0,35.0,38.0,20.0,39.0,26.0,24.0,26.0,20.0,11.0,14.0,8.0,9.0,6.0,3.0,6.0,3.0,9.0 N81069,24.0,20.0,22.0,32.0,25.0,31.0,21.0,21.0,20.0,28.0,21.0,16.0,20.0,20.0,19.0,20.0,23.0,21.0,19.0,16.0,18.0,9.0,20.0,19.0,18.0,29.0,20.0,25.0,19.0,18.0,19.0,9.0,25.0,25.0,29.0,19.0,23.0,36.0,25.0,20.0,33.0,27.0,23.0,19.0,24.0,24.0,25.0,23.0,24.0,15.0,25.0,31.0,38.0,27.0,36.0,39.0,32.0,44.0,47.0,39.0,40.0,38.0,34.0,43.0,42.0,41.0,36.0,29.0,35.0,25.0,33.0,21.0,28.0,29.0,23.0,29.0,31.0,29.0,23.0,25.0,39.0,20.0,19.0,11.0,20.0,20.0,8.0,12.0,12.0,9.0,8.0,2.0,8.0,2.0,5.0,3.0 N81070,33.0,49.0,51.0,52.0,50.0,67.0,50.0,72.0,71.0,73.0,47.0,77.0,83.0,65.0,77.0,56.0,72.0,58.0,52.0,39.0,52.0,42.0,49.0,45.0,52.0,48.0,56.0,54.0,61.0,48.0,56.0,59.0,75.0,72.0,73.0,83.0,62.0,79.0,68.0,90.0,66.0,69.0,71.0,98.0,67.0,82.0,75.0,66.0,72.0,58.0,66.0,71.0,61.0,64.0,73.0,71.0,55.0,65.0,73.0,79.0,76.0,68.0,77.0,66.0,68.0,64.0,58.0,49.0,55.0,41.0,60.0,42.0,40.0,37.0,40.0,50.0,43.0,61.0,43.0,34.0,36.0,36.0,20.0,28.0,21.0,33.0,19.0,19.0,19.0,22.0,11.0,10.0,5.0,7.0,10.0,7.0 N81071,15.0,12.0,16.0,20.0,17.0,24.0,23.0,15.0,24.0,26.0,22.0,17.0,19.0,26.0,20.0,27.0,17.0,16.0,26.0,20.0,12.0,22.0,25.0,20.0,25.0,12.0,21.0,15.0,15.0,15.0,20.0,15.0,27.0,28.0,13.0,19.0,24.0,27.0,21.0,15.0,27.0,22.0,17.0,23.0,27.0,25.0,22.0,24.0,23.0,32.0,23.0,24.0,18.0,36.0,39.0,34.0,39.0,29.0,45.0,38.0,29.0,40.0,40.0,44.0,42.0,46.0,28.0,34.0,36.0,26.0,28.0,32.0,29.0,38.0,32.0,33.0,37.0,33.0,46.0,24.0,26.0,22.0,18.0,14.0,16.0,10.0,6.0,11.0,15.0,7.0,5.0,2.0,3.0,3.0,2.0,2.0 N81072,33.0,31.0,32.0,35.0,26.0,45.0,49.0,34.0,44.0,55.0,52.0,57.0,49.0,59.0,46.0,50.0,63.0,72.0,44.0,64.0,44.0,58.0,49.0,49.0,43.0,53.0,54.0,56.0,53.0,55.0,57.0,51.0,58.0,59.0,55.0,72.0,44.0,71.0,66.0,55.0,49.0,63.0,61.0,70.0,52.0,47.0,71.0,60.0,62.0,67.0,46.0,55.0,57.0,47.0,67.0,53.0,70.0,40.0,55.0,49.0,52.0,50.0,41.0,50.0,39.0,39.0,40.0,39.0,42.0,34.0,45.0,40.0,32.0,37.0,39.0,41.0,29.0,42.0,30.0,14.0,18.0,15.0,10.0,11.0,6.0,4.0,11.0,5.0,1.0,2.0,2.0,4.0,2.0,,2.0, N81074,21.0,23.0,42.0,31.0,26.0,35.0,37.0,37.0,41.0,42.0,29.0,27.0,35.0,42.0,45.0,44.0,39.0,40.0,38.0,37.0,29.0,36.0,17.0,21.0,27.0,33.0,35.0,43.0,30.0,33.0,26.0,43.0,38.0,42.0,41.0,36.0,36.0,32.0,39.0,29.0,34.0,33.0,26.0,40.0,26.0,38.0,30.0,36.0,27.0,31.0,31.0,43.0,52.0,38.0,43.0,35.0,47.0,51.0,33.0,46.0,42.0,39.0,39.0,33.0,30.0,30.0,21.0,19.0,19.0,23.0,19.0,25.0,26.0,23.0,8.0,13.0,18.0,20.0,21.0,16.0,19.0,15.0,10.0,6.0,6.0,4.0,6.0,4.0,3.0,3.0,6.0,2.0,2.0,,, N81075,51.0,65.0,63.0,73.0,63.0,69.0,72.0,77.0,76.0,89.0,73.0,96.0,97.0,90.0,87.0,103.0,106.0,95.0,86.0,70.0,73.0,69.0,75.0,88.0,71.0,79.0,90.0,80.0,104.0,70.0,107.0,90.0,79.0,89.0,113.0,106.0,96.0,82.0,97.0,95.0,89.0,101.0,94.0,103.0,108.0,113.0,105.0,99.0,92.0,105.0,111.0,94.0,118.0,130.0,99.0,138.0,128.0,127.0,126.0,129.0,120.0,132.0,132.0,123.0,109.0,127.0,103.0,89.0,113.0,96.0,96.0,92.0,82.0,78.0,68.0,79.0,82.0,87.0,80.0,89.0,72.0,61.0,53.0,50.0,42.0,34.0,33.0,39.0,28.0,28.0,14.0,18.0,13.0,10.0,7.0,13.0 N81077,44.0,45.0,46.0,62.0,58.0,68.0,63.0,74.0,58.0,72.0,74.0,72.0,66.0,68.0,89.0,85.0,90.0,75.0,67.0,70.0,62.0,57.0,57.0,54.0,53.0,45.0,48.0,44.0,40.0,48.0,60.0,52.0,48.0,57.0,65.0,58.0,61.0,59.0,51.0,61.0,84.0,82.0,83.0,61.0,69.0,84.0,75.0,84.0,85.0,91.0,69.0,82.0,92.0,111.0,95.0,96.0,90.0,85.0,107.0,100.0,98.0,101.0,95.0,100.0,90.0,88.0,97.0,78.0,72.0,74.0,68.0,81.0,82.0,83.0,68.0,72.0,80.0,96.0,86.0,68.0,63.0,66.0,47.0,58.0,49.0,46.0,35.0,32.0,19.0,15.0,25.0,12.0,16.0,7.0,10.0,13.0 N81079,30.0,27.0,37.0,24.0,38.0,47.0,51.0,58.0,56.0,45.0,73.0,49.0,78.0,59.0,56.0,66.0,58.0,66.0,49.0,67.0,74.0,63.0,48.0,67.0,76.0,69.0,60.0,84.0,75.0,77.0,78.0,74.0,85.0,71.0,80.0,58.0,79.0,80.0,80.0,80.0,72.0,79.0,83.0,74.0,57.0,75.0,89.0,73.0,52.0,54.0,65.0,63.0,65.0,73.0,72.0,65.0,63.0,82.0,64.0,66.0,75.0,72.0,93.0,75.0,73.0,53.0,67.0,59.0,51.0,53.0,43.0,41.0,46.0,30.0,37.0,40.0,37.0,34.0,32.0,16.0,18.0,20.0,21.0,17.0,13.0,15.0,14.0,4.0,10.0,7.0,7.0,5.0,3.0,3.0,1.0,5.0 N81080,34.0,40.0,32.0,34.0,32.0,44.0,32.0,41.0,37.0,33.0,26.0,27.0,30.0,39.0,38.0,42.0,42.0,43.0,56.0,44.0,64.0,61.0,59.0,66.0,80.0,87.0,92.0,81.0,97.0,104.0,100.0,99.0,83.0,93.0,90.0,84.0,79.0,86.0,75.0,58.0,73.0,62.0,59.0,52.0,55.0,53.0,32.0,39.0,50.0,54.0,50.0,36.0,41.0,58.0,44.0,42.0,45.0,53.0,57.0,52.0,40.0,51.0,51.0,42.0,45.0,43.0,46.0,41.0,38.0,34.0,32.0,39.0,36.0,40.0,43.0,32.0,39.0,42.0,28.0,19.0,31.0,28.0,23.0,11.0,17.0,13.0,14.0,7.0,9.0,1.0,7.0,2.0,1.0,2.0,,2.0 N81081,21.0,39.0,23.0,37.0,31.0,33.0,25.0,39.0,30.0,35.0,39.0,36.0,25.0,48.0,34.0,32.0,43.0,31.0,69.0,86.0,110.0,101.0,95.0,89.0,99.0,113.0,118.0,125.0,125.0,135.0,113.0,123.0,86.0,77.0,86.0,84.0,103.0,88.0,66.0,96.0,82.0,71.0,77.0,63.0,71.0,64.0,62.0,57.0,64.0,57.0,51.0,53.0,51.0,58.0,52.0,54.0,61.0,50.0,51.0,40.0,48.0,50.0,57.0,46.0,57.0,47.0,36.0,52.0,54.0,42.0,45.0,26.0,25.0,25.0,33.0,45.0,32.0,36.0,32.0,28.0,27.0,20.0,21.0,19.0,13.0,13.0,15.0,16.0,9.0,9.0,4.0,4.0,4.0,4.0,3.0,5.0 N81082,52.0,61.0,53.0,67.0,57.0,44.0,81.0,72.0,67.0,74.0,90.0,79.0,72.0,91.0,78.0,84.0,101.0,87.0,89.0,66.0,79.0,94.0,71.0,83.0,79.0,80.0,85.0,87.0,90.0,84.0,93.0,105.0,91.0,96.0,100.0,112.0,111.0,119.0,106.0,97.0,108.0,97.0,101.0,115.0,117.0,106.0,76.0,93.0,94.0,116.0,98.0,114.0,118.0,135.0,99.0,101.0,131.0,127.0,116.0,142.0,123.0,120.0,132.0,93.0,102.0,119.0,98.0,91.0,93.0,103.0,73.0,85.0,86.0,89.0,65.0,78.0,81.0,90.0,75.0,55.0,70.0,53.0,60.0,42.0,37.0,41.0,31.0,29.0,26.0,18.0,8.0,10.0,4.0,10.0,6.0,9.0 N81083,26.0,31.0,24.0,27.0,22.0,26.0,31.0,26.0,31.0,41.0,36.0,36.0,40.0,24.0,33.0,45.0,40.0,39.0,40.0,36.0,27.0,29.0,26.0,26.0,26.0,29.0,25.0,37.0,24.0,44.0,42.0,32.0,44.0,36.0,27.0,56.0,48.0,41.0,39.0,46.0,37.0,34.0,37.0,39.0,41.0,40.0,30.0,40.0,42.0,35.0,38.0,39.0,25.0,38.0,42.0,35.0,44.0,43.0,46.0,33.0,31.0,39.0,24.0,41.0,37.0,37.0,11.0,21.0,21.0,15.0,16.0,19.0,13.0,22.0,12.0,20.0,14.0,16.0,16.0,7.0,11.0,4.0,8.0,10.0,4.0,4.0,7.0,3.0,1.0,2.0,1.0,3.0,5.0,3.0,1.0,3.0 N81084,87.0,94.0,93.0,107.0,107.0,93.0,91.0,120.0,123.0,123.0,106.0,112.0,111.0,119.0,139.0,112.0,107.0,127.0,107.0,118.0,92.0,99.0,118.0,85.0,77.0,93.0,96.0,103.0,88.0,115.0,121.0,138.0,128.0,122.0,140.0,121.0,128.0,126.0,129.0,128.0,127.0,126.0,111.0,115.0,129.0,130.0,104.0,106.0,111.0,124.0,138.0,145.0,150.0,165.0,167.0,139.0,172.0,169.0,139.0,166.0,176.0,154.0,148.0,168.0,161.0,129.0,119.0,125.0,125.0,109.0,108.0,128.0,90.0,109.0,118.0,125.0,115.0,112.0,128.0,89.0,89.0,86.0,72.0,60.0,56.0,41.0,65.0,31.0,21.0,34.0,20.0,23.0,10.0,11.0,10.0,10.0 N81085,48.0,43.0,41.0,35.0,41.0,55.0,45.0,59.0,41.0,55.0,49.0,48.0,60.0,54.0,58.0,55.0,50.0,56.0,54.0,55.0,51.0,39.0,35.0,43.0,42.0,49.0,62.0,58.0,68.0,71.0,68.0,69.0,64.0,53.0,74.0,78.0,73.0,75.0,53.0,68.0,76.0,76.0,63.0,74.0,60.0,65.0,58.0,70.0,56.0,57.0,58.0,58.0,72.0,78.0,65.0,84.0,70.0,84.0,70.0,60.0,72.0,78.0,64.0,77.0,65.0,45.0,55.0,36.0,52.0,40.0,49.0,50.0,39.0,47.0,51.0,38.0,66.0,51.0,46.0,34.0,42.0,32.0,36.0,21.0,19.0,24.0,26.0,11.0,9.0,19.0,9.0,6.0,6.0,1.0,3.0,3.0 N81086,91.0,68.0,83.0,120.0,90.0,94.0,94.0,104.0,111.0,120.0,109.0,117.0,130.0,122.0,137.0,113.0,111.0,104.0,110.0,78.0,75.0,76.0,91.0,75.0,89.0,93.0,87.0,79.0,99.0,104.0,108.0,109.0,105.0,105.0,106.0,129.0,124.0,131.0,121.0,114.0,126.0,135.0,133.0,124.0,142.0,167.0,148.0,124.0,127.0,141.0,133.0,117.0,133.0,141.0,131.0,134.0,128.0,126.0,122.0,100.0,112.0,93.0,93.0,92.0,85.0,74.0,58.0,59.0,60.0,51.0,49.0,44.0,35.0,40.0,61.0,52.0,51.0,51.0,60.0,49.0,34.0,40.0,28.0,26.0,16.0,22.0,16.0,24.0,18.0,12.0,14.0,8.0,4.0,6.0,4.0,6.0 N81087,91.0,76.0,93.0,106.0,92.0,105.0,146.0,127.0,134.0,142.0,130.0,141.0,151.0,159.0,177.0,170.0,154.0,177.0,147.0,105.0,122.0,97.0,109.0,142.0,121.0,110.0,99.0,124.0,103.0,110.0,117.0,149.0,109.0,138.0,138.0,125.0,144.0,159.0,144.0,145.0,144.0,155.0,180.0,181.0,176.0,161.0,164.0,146.0,170.0,168.0,179.0,173.0,188.0,197.0,181.0,180.0,194.0,200.0,201.0,186.0,202.0,215.0,174.0,180.0,163.0,158.0,138.0,148.0,132.0,121.0,133.0,162.0,129.0,112.0,125.0,117.0,123.0,141.0,134.0,99.0,111.0,79.0,82.0,49.0,58.0,42.0,57.0,43.0,37.0,31.0,28.0,15.0,16.0,14.0,10.0,25.0 N81088,70.0,68.0,50.0,56.0,60.0,69.0,62.0,68.0,63.0,63.0,70.0,50.0,76.0,60.0,56.0,80.0,73.0,74.0,62.0,65.0,57.0,66.0,52.0,58.0,58.0,71.0,71.0,90.0,87.0,71.0,105.0,91.0,103.0,124.0,99.0,106.0,104.0,94.0,89.0,80.0,97.0,79.0,101.0,90.0,88.0,79.0,81.0,78.0,78.0,67.0,85.0,99.0,67.0,84.0,98.0,76.0,90.0,80.0,84.0,85.0,82.0,86.0,80.0,88.0,86.0,82.0,76.0,61.0,72.0,42.0,57.0,68.0,78.0,47.0,57.0,48.0,64.0,44.0,66.0,36.0,52.0,34.0,34.0,19.0,19.0,22.0,16.0,15.0,16.0,15.0,8.0,4.0,9.0,8.0,5.0,7.0 N81089,28.0,29.0,37.0,28.0,35.0,43.0,40.0,39.0,43.0,46.0,52.0,53.0,60.0,46.0,49.0,57.0,57.0,42.0,50.0,42.0,40.0,41.0,39.0,43.0,48.0,46.0,47.0,36.0,38.0,55.0,45.0,40.0,56.0,39.0,51.0,70.0,46.0,66.0,53.0,63.0,58.0,76.0,72.0,67.0,59.0,53.0,60.0,49.0,57.0,56.0,51.0,47.0,50.0,53.0,67.0,58.0,52.0,65.0,56.0,61.0,52.0,55.0,59.0,49.0,48.0,48.0,42.0,54.0,32.0,43.0,39.0,41.0,40.0,32.0,43.0,35.0,39.0,44.0,44.0,30.0,33.0,38.0,20.0,17.0,26.0,17.0,18.0,14.0,15.0,7.0,13.0,6.0,3.0,1.0,1.0,7.0 N81090,24.0,27.0,20.0,21.0,27.0,30.0,26.0,20.0,29.0,23.0,24.0,24.0,28.0,29.0,22.0,34.0,24.0,31.0,26.0,23.0,25.0,21.0,18.0,13.0,24.0,19.0,27.0,30.0,32.0,23.0,26.0,34.0,26.0,28.0,41.0,35.0,37.0,37.0,47.0,31.0,27.0,30.0,31.0,35.0,37.0,35.0,41.0,32.0,39.0,34.0,40.0,39.0,36.0,49.0,40.0,39.0,29.0,48.0,33.0,36.0,51.0,27.0,37.0,30.0,33.0,24.0,27.0,23.0,28.0,33.0,19.0,31.0,29.0,27.0,24.0,28.0,29.0,26.0,24.0,22.0,17.0,23.0,20.0,16.0,8.0,14.0,11.0,9.0,7.0,4.0,8.0,5.0,2.0,1.0,5.0,4.0 N81092,69.0,77.0,84.0,82.0,83.0,79.0,69.0,75.0,91.0,88.0,80.0,87.0,82.0,74.0,86.0,76.0,92.0,74.0,80.0,76.0,69.0,62.0,65.0,67.0,70.0,84.0,77.0,69.0,92.0,104.0,106.0,129.0,104.0,113.0,118.0,96.0,107.0,117.0,112.0,94.0,99.0,100.0,86.0,81.0,90.0,102.0,78.0,61.0,79.0,72.0,88.0,88.0,81.0,98.0,98.0,82.0,95.0,97.0,92.0,93.0,96.0,119.0,109.0,128.0,119.0,93.0,90.0,97.0,80.0,59.0,54.0,55.0,76.0,57.0,53.0,58.0,58.0,61.0,52.0,24.0,39.0,34.0,25.0,27.0,29.0,30.0,22.0,31.0,18.0,12.0,8.0,10.0,7.0,3.0,1.0,5.0 N81093,63.0,79.0,69.0,70.0,84.0,86.0,90.0,100.0,89.0,86.0,73.0,104.0,84.0,88.0,99.0,95.0,94.0,98.0,91.0,86.0,70.0,91.0,80.0,81.0,78.0,81.0,91.0,97.0,90.0,90.0,98.0,92.0,105.0,102.0,125.0,118.0,122.0,124.0,122.0,105.0,96.0,111.0,92.0,93.0,105.0,108.0,104.0,80.0,91.0,105.0,91.0,112.0,105.0,130.0,104.0,119.0,125.0,140.0,114.0,103.0,131.0,114.0,113.0,121.0,126.0,93.0,97.0,83.0,91.0,93.0,69.0,70.0,83.0,80.0,78.0,53.0,76.0,72.0,72.0,59.0,42.0,45.0,35.0,37.0,26.0,18.0,33.0,22.0,27.0,11.0,6.0,9.0,6.0,4.0,7.0,6.0 N81096,41.0,50.0,32.0,55.0,46.0,53.0,53.0,51.0,59.0,57.0,40.0,50.0,58.0,57.0,67.0,56.0,65.0,61.0,49.0,62.0,52.0,61.0,71.0,48.0,52.0,69.0,70.0,58.0,53.0,57.0,60.0,61.0,57.0,63.0,79.0,68.0,56.0,60.0,65.0,57.0,48.0,75.0,58.0,69.0,62.0,73.0,69.0,52.0,60.0,59.0,68.0,62.0,53.0,58.0,54.0,44.0,51.0,33.0,43.0,50.0,43.0,35.0,45.0,45.0,42.0,35.0,45.0,49.0,43.0,43.0,32.0,45.0,44.0,44.0,37.0,46.0,50.0,37.0,28.0,28.0,22.0,12.0,18.0,9.0,12.0,8.0,3.0,6.0,3.0,3.0,2.0,,,,,1.0 N81097,32.0,25.0,24.0,22.0,17.0,22.0,19.0,24.0,16.0,22.0,20.0,27.0,24.0,24.0,16.0,20.0,18.0,15.0,21.0,23.0,25.0,24.0,26.0,26.0,36.0,42.0,33.0,39.0,28.0,49.0,48.0,60.0,40.0,55.0,40.0,45.0,42.0,42.0,31.0,37.0,39.0,31.0,29.0,28.0,33.0,40.0,29.0,32.0,30.0,28.0,27.0,28.0,27.0,19.0,31.0,27.0,25.0,31.0,34.0,26.0,30.0,24.0,33.0,20.0,19.0,13.0,16.0,15.0,20.0,20.0,15.0,19.0,15.0,17.0,12.0,13.0,16.0,13.0,14.0,15.0,12.0,10.0,10.0,7.0,5.0,10.0,5.0,5.0,6.0,4.0,1.0,,,1.0,1.0,2.0 N81100,41.0,41.0,33.0,47.0,35.0,41.0,33.0,46.0,47.0,40.0,71.0,47.0,64.0,52.0,49.0,45.0,40.0,50.0,51.0,38.0,35.0,30.0,34.0,25.0,34.0,37.0,41.0,43.0,29.0,32.0,38.0,51.0,41.0,47.0,57.0,42.0,44.0,57.0,48.0,54.0,48.0,51.0,60.0,46.0,52.0,58.0,48.0,41.0,64.0,51.0,38.0,34.0,45.0,40.0,62.0,45.0,53.0,55.0,41.0,48.0,49.0,66.0,49.0,53.0,53.0,44.0,46.0,53.0,34.0,45.0,43.0,36.0,33.0,42.0,33.0,37.0,40.0,46.0,42.0,23.0,30.0,36.0,26.0,21.0,21.0,20.0,15.0,13.0,18.0,8.0,12.0,9.0,4.0,3.0,3.0,6.0 N81101,33.0,29.0,35.0,42.0,45.0,32.0,29.0,49.0,35.0,40.0,49.0,38.0,46.0,48.0,40.0,35.0,47.0,46.0,48.0,32.0,32.0,39.0,27.0,31.0,38.0,48.0,42.0,37.0,48.0,39.0,43.0,46.0,58.0,66.0,61.0,54.0,49.0,49.0,54.0,49.0,58.0,58.0,62.0,73.0,71.0,52.0,60.0,70.0,61.0,48.0,57.0,56.0,57.0,56.0,47.0,62.0,47.0,44.0,48.0,62.0,67.0,68.0,60.0,59.0,54.0,51.0,44.0,45.0,37.0,28.0,33.0,36.0,38.0,31.0,23.0,36.0,50.0,27.0,35.0,28.0,27.0,23.0,16.0,18.0,19.0,17.0,9.0,7.0,12.0,11.0,8.0,1.0,6.0,6.0,1.0,7.0 N81102,15.0,11.0,11.0,16.0,15.0,10.0,10.0,11.0,15.0,5.0,16.0,10.0,12.0,11.0,9.0,9.0,16.0,6.0,15.0,21.0,27.0,45.0,36.0,36.0,47.0,43.0,39.0,42.0,45.0,45.0,45.0,31.0,33.0,31.0,32.0,39.0,25.0,31.0,19.0,31.0,21.0,29.0,21.0,16.0,14.0,11.0,20.0,14.0,13.0,20.0,17.0,20.0,14.0,20.0,20.0,18.0,11.0,14.0,10.0,21.0,14.0,19.0,13.0,21.0,24.0,19.0,25.0,27.0,16.0,21.0,19.0,9.0,18.0,19.0,14.0,13.0,22.0,16.0,13.0,19.0,18.0,11.0,15.0,13.0,17.0,8.0,13.0,23.0,19.0,13.0,12.0,15.0,10.0,14.0,6.0,26.0 N81107,18.0,13.0,15.0,27.0,28.0,22.0,22.0,13.0,24.0,27.0,15.0,30.0,14.0,27.0,25.0,22.0,19.0,21.0,25.0,15.0,23.0,16.0,9.0,13.0,26.0,32.0,17.0,21.0,29.0,17.0,20.0,27.0,30.0,25.0,30.0,25.0,29.0,25.0,27.0,28.0,30.0,26.0,19.0,31.0,25.0,43.0,27.0,34.0,20.0,18.0,24.0,22.0,21.0,20.0,34.0,23.0,27.0,18.0,20.0,22.0,22.0,16.0,28.0,21.0,17.0,11.0,16.0,19.0,18.0,16.0,10.0,14.0,11.0,10.0,12.0,10.0,10.0,11.0,12.0,5.0,8.0,6.0,1.0,4.0,1.0,2.0,7.0,6.0,3.0,1.0,1.0,1.0,1.0,1.0,, N81108,39.0,40.0,49.0,40.0,41.0,54.0,56.0,56.0,79.0,102.0,72.0,69.0,77.0,81.0,69.0,85.0,71.0,59.0,66.0,57.0,42.0,53.0,57.0,36.0,56.0,57.0,44.0,34.0,39.0,40.0,44.0,44.0,43.0,44.0,43.0,50.0,56.0,44.0,59.0,68.0,52.0,55.0,49.0,73.0,76.0,74.0,72.0,71.0,78.0,70.0,70.0,80.0,110.0,72.0,97.0,71.0,95.0,97.0,81.0,76.0,93.0,92.0,69.0,74.0,68.0,59.0,68.0,46.0,64.0,60.0,52.0,56.0,46.0,53.0,44.0,53.0,39.0,57.0,60.0,45.0,52.0,35.0,39.0,25.0,29.0,27.0,17.0,21.0,12.0,9.0,14.0,13.0,8.0,3.0,4.0,5.0 N81109,27.0,25.0,25.0,28.0,25.0,28.0,35.0,39.0,39.0,26.0,45.0,53.0,53.0,59.0,40.0,57.0,49.0,50.0,56.0,42.0,43.0,35.0,49.0,55.0,43.0,55.0,59.0,43.0,46.0,46.0,47.0,41.0,34.0,40.0,50.0,49.0,32.0,41.0,36.0,42.0,58.0,46.0,44.0,52.0,55.0,44.0,65.0,46.0,50.0,48.0,56.0,52.0,45.0,54.0,47.0,45.0,48.0,50.0,61.0,54.0,51.0,52.0,51.0,42.0,37.0,39.0,26.0,34.0,26.0,25.0,30.0,24.0,20.0,24.0,32.0,31.0,21.0,35.0,31.0,15.0,26.0,12.0,12.0,13.0,12.0,14.0,10.0,13.0,7.0,4.0,4.0,6.0,3.0,1.0,,1.0 N81111,35.0,29.0,45.0,43.0,37.0,41.0,43.0,54.0,33.0,41.0,50.0,37.0,55.0,42.0,54.0,49.0,52.0,39.0,37.0,41.0,24.0,24.0,27.0,24.0,27.0,39.0,27.0,30.0,39.0,40.0,52.0,52.0,45.0,46.0,59.0,46.0,51.0,55.0,49.0,56.0,62.0,45.0,50.0,54.0,45.0,39.0,35.0,30.0,45.0,46.0,23.0,39.0,42.0,40.0,42.0,53.0,36.0,52.0,50.0,56.0,49.0,65.0,54.0,57.0,39.0,41.0,38.0,47.0,46.0,55.0,40.0,31.0,33.0,38.0,34.0,37.0,30.0,44.0,37.0,36.0,44.0,27.0,19.0,14.0,22.0,22.0,16.0,8.0,5.0,7.0,3.0,2.0,5.0,2.0,3.0,7.0 N81113,31.0,38.0,28.0,46.0,42.0,31.0,35.0,32.0,42.0,34.0,53.0,43.0,50.0,47.0,56.0,46.0,41.0,27.0,43.0,37.0,40.0,34.0,43.0,49.0,40.0,42.0,40.0,49.0,44.0,48.0,58.0,61.0,66.0,63.0,61.0,84.0,64.0,57.0,54.0,58.0,47.0,54.0,39.0,51.0,43.0,51.0,55.0,47.0,35.0,51.0,46.0,33.0,53.0,55.0,55.0,59.0,58.0,50.0,53.0,62.0,63.0,49.0,60.0,55.0,52.0,53.0,41.0,40.0,43.0,36.0,52.0,34.0,30.0,24.0,14.0,31.0,32.0,27.0,28.0,25.0,22.0,11.0,16.0,4.0,9.0,6.0,12.0,6.0,7.0,7.0,2.0,1.0,1.0,2.0,2.0,3.0 N81114,43.0,34.0,35.0,47.0,33.0,63.0,52.0,38.0,55.0,58.0,76.0,52.0,62.0,91.0,64.0,82.0,62.0,50.0,56.0,57.0,62.0,51.0,56.0,63.0,54.0,74.0,61.0,61.0,41.0,68.0,63.0,76.0,77.0,72.0,90.0,94.0,76.0,80.0,86.0,77.0,88.0,79.0,84.0,98.0,81.0,73.0,60.0,67.0,76.0,58.0,61.0,57.0,69.0,93.0,80.0,78.0,72.0,70.0,82.0,96.0,80.0,64.0,100.0,84.0,96.0,82.0,92.0,89.0,83.0,77.0,58.0,64.0,68.0,64.0,42.0,52.0,57.0,52.0,48.0,36.0,29.0,34.0,22.0,18.0,14.0,16.0,10.0,5.0,15.0,7.0,7.0,3.0,2.0,4.0,,2.0 N81115,49.0,57.0,47.0,59.0,51.0,63.0,36.0,57.0,52.0,48.0,66.0,65.0,67.0,67.0,46.0,55.0,58.0,46.0,46.0,42.0,38.0,42.0,36.0,33.0,38.0,39.0,47.0,41.0,45.0,53.0,46.0,52.0,54.0,54.0,82.0,60.0,73.0,74.0,65.0,69.0,68.0,70.0,57.0,63.0,60.0,48.0,62.0,58.0,51.0,42.0,39.0,49.0,55.0,47.0,39.0,48.0,46.0,39.0,41.0,50.0,36.0,40.0,52.0,52.0,34.0,26.0,38.0,27.0,33.0,29.0,32.0,41.0,24.0,28.0,24.0,30.0,24.0,29.0,37.0,17.0,23.0,19.0,19.0,11.0,9.0,11.0,7.0,3.0,7.0,3.0,5.0,3.0,2.0,,,4.0 N81117,25.0,27.0,36.0,26.0,35.0,28.0,37.0,36.0,38.0,46.0,45.0,39.0,42.0,32.0,44.0,49.0,42.0,30.0,45.0,34.0,32.0,32.0,32.0,33.0,27.0,31.0,34.0,44.0,42.0,40.0,35.0,33.0,41.0,45.0,37.0,48.0,51.0,44.0,49.0,59.0,44.0,51.0,34.0,50.0,34.0,46.0,33.0,36.0,36.0,29.0,32.0,23.0,50.0,36.0,41.0,41.0,39.0,41.0,39.0,43.0,44.0,44.0,27.0,24.0,34.0,26.0,26.0,29.0,31.0,31.0,20.0,21.0,23.0,22.0,18.0,15.0,16.0,15.0,17.0,16.0,11.0,16.0,9.0,9.0,7.0,11.0,5.0,4.0,9.0,2.0,7.0,3.0,2.0,1.0,, N81118,34.0,33.0,49.0,47.0,42.0,45.0,53.0,53.0,48.0,52.0,48.0,59.0,65.0,64.0,59.0,56.0,49.0,43.0,45.0,41.0,41.0,31.0,36.0,33.0,28.0,39.0,47.0,41.0,42.0,35.0,39.0,49.0,46.0,59.0,57.0,66.0,60.0,51.0,57.0,51.0,54.0,47.0,45.0,68.0,64.0,57.0,53.0,45.0,59.0,56.0,61.0,36.0,57.0,67.0,69.0,58.0,57.0,65.0,64.0,65.0,63.0,61.0,90.0,70.0,45.0,64.0,52.0,61.0,57.0,53.0,47.0,57.0,69.0,33.0,49.0,47.0,42.0,54.0,40.0,38.0,33.0,28.0,31.0,29.0,20.0,11.0,18.0,8.0,6.0,8.0,9.0,10.0,3.0,6.0,8.0,2.0 N81119,31.0,37.0,21.0,25.0,22.0,41.0,40.0,37.0,30.0,42.0,33.0,37.0,31.0,53.0,40.0,34.0,42.0,34.0,29.0,27.0,29.0,22.0,30.0,42.0,31.0,29.0,35.0,28.0,27.0,37.0,36.0,41.0,42.0,49.0,38.0,36.0,35.0,43.0,38.0,37.0,36.0,40.0,34.0,41.0,38.0,42.0,33.0,34.0,34.0,36.0,34.0,38.0,34.0,37.0,37.0,41.0,26.0,28.0,35.0,37.0,43.0,26.0,32.0,19.0,28.0,33.0,26.0,24.0,22.0,24.0,15.0,12.0,16.0,14.0,17.0,19.0,14.0,10.0,13.0,14.0,12.0,7.0,14.0,14.0,11.0,10.0,4.0,2.0,3.0,2.0,4.0,1.0,4.0,2.0,,1.0 N81120,23.0,25.0,20.0,25.0,24.0,27.0,22.0,41.0,31.0,32.0,36.0,34.0,44.0,40.0,43.0,39.0,31.0,34.0,36.0,20.0,32.0,28.0,23.0,18.0,27.0,26.0,22.0,19.0,16.0,26.0,29.0,28.0,29.0,30.0,19.0,31.0,34.0,29.0,27.0,25.0,31.0,36.0,25.0,22.0,49.0,46.0,33.0,32.0,22.0,35.0,31.0,47.0,40.0,46.0,55.0,52.0,46.0,56.0,50.0,36.0,39.0,58.0,46.0,52.0,35.0,55.0,44.0,39.0,40.0,35.0,44.0,34.0,34.0,37.0,43.0,24.0,39.0,42.0,43.0,33.0,31.0,30.0,17.0,12.0,22.0,15.0,14.0,11.0,8.0,3.0,6.0,3.0,4.0,,4.0,4.0 N81121,23.0,34.0,22.0,30.0,27.0,33.0,24.0,33.0,25.0,28.0,39.0,24.0,27.0,38.0,36.0,40.0,34.0,46.0,33.0,43.0,41.0,52.0,44.0,51.0,56.0,52.0,68.0,58.0,56.0,74.0,59.0,75.0,84.0,59.0,55.0,63.0,65.0,53.0,48.0,47.0,70.0,48.0,45.0,46.0,47.0,52.0,35.0,49.0,33.0,44.0,39.0,34.0,48.0,65.0,50.0,56.0,40.0,44.0,50.0,44.0,47.0,43.0,40.0,46.0,39.0,36.0,29.0,31.0,20.0,32.0,26.0,31.0,21.0,29.0,21.0,22.0,28.0,20.0,32.0,20.0,25.0,19.0,20.0,9.0,18.0,10.0,12.0,11.0,11.0,3.0,7.0,5.0,4.0,3.0,,5.0 N81122,34.0,42.0,37.0,35.0,45.0,49.0,45.0,68.0,53.0,55.0,69.0,70.0,68.0,58.0,53.0,58.0,61.0,62.0,57.0,59.0,67.0,65.0,48.0,69.0,63.0,71.0,72.0,58.0,61.0,59.0,43.0,68.0,64.0,74.0,53.0,59.0,71.0,48.0,65.0,73.0,62.0,73.0,55.0,59.0,68.0,57.0,60.0,57.0,57.0,55.0,57.0,61.0,73.0,94.0,68.0,77.0,78.0,78.0,87.0,87.0,86.0,84.0,88.0,79.0,69.0,85.0,71.0,82.0,59.0,77.0,59.0,61.0,48.0,48.0,50.0,50.0,41.0,41.0,52.0,32.0,25.0,24.0,26.0,12.0,22.0,13.0,13.0,15.0,7.0,7.0,9.0,6.0,6.0,1.0,1.0,5.0 N81123,41.0,45.0,44.0,44.0,41.0,45.0,45.0,55.0,56.0,56.0,42.0,51.0,61.0,51.0,54.0,43.0,42.0,46.0,38.0,46.0,42.0,46.0,40.0,40.0,37.0,43.0,50.0,40.0,51.0,59.0,51.0,55.0,67.0,65.0,63.0,62.0,68.0,62.0,69.0,56.0,56.0,45.0,48.0,55.0,34.0,50.0,35.0,28.0,28.0,51.0,38.0,41.0,57.0,54.0,45.0,55.0,45.0,36.0,47.0,44.0,45.0,51.0,42.0,41.0,29.0,33.0,32.0,27.0,31.0,21.0,29.0,29.0,31.0,17.0,30.0,16.0,19.0,20.0,15.0,11.0,19.0,6.0,8.0,11.0,12.0,10.0,7.0,2.0,3.0,2.0,6.0,1.0,,1.0,1.0, N81125,21.0,30.0,25.0,24.0,31.0,37.0,25.0,28.0,27.0,36.0,35.0,25.0,29.0,40.0,44.0,39.0,41.0,40.0,50.0,43.0,26.0,30.0,34.0,51.0,44.0,27.0,42.0,34.0,47.0,36.0,34.0,41.0,42.0,39.0,60.0,44.0,44.0,43.0,28.0,43.0,36.0,43.0,45.0,45.0,34.0,28.0,29.0,36.0,30.0,39.0,37.0,38.0,53.0,53.0,57.0,50.0,67.0,57.0,39.0,53.0,45.0,67.0,64.0,77.0,54.0,45.0,58.0,44.0,49.0,58.0,72.0,53.0,50.0,41.0,31.0,65.0,60.0,63.0,62.0,39.0,38.0,41.0,30.0,30.0,24.0,30.0,20.0,16.0,16.0,15.0,9.0,3.0,5.0,4.0,1.0,10.0 N81127,41.0,46.0,33.0,37.0,34.0,35.0,54.0,51.0,42.0,51.0,47.0,51.0,58.0,48.0,40.0,53.0,43.0,57.0,50.0,41.0,52.0,36.0,50.0,39.0,44.0,36.0,38.0,73.0,55.0,52.0,65.0,54.0,71.0,77.0,54.0,69.0,53.0,61.0,47.0,54.0,59.0,37.0,48.0,38.0,42.0,45.0,35.0,42.0,39.0,37.0,49.0,58.0,56.0,62.0,60.0,84.0,69.0,63.0,62.0,66.0,67.0,61.0,67.0,51.0,49.0,52.0,47.0,37.0,55.0,42.0,41.0,38.0,40.0,27.0,34.0,35.0,39.0,26.0,35.0,25.0,33.0,34.0,27.0,27.0,20.0,13.0,14.0,12.0,13.0,5.0,4.0,4.0,6.0,3.0,3.0,1.0 N81607,22.0,18.0,35.0,30.0,23.0,31.0,30.0,18.0,41.0,36.0,30.0,30.0,26.0,27.0,22.0,19.0,23.0,24.0,29.0,16.0,16.0,21.0,36.0,30.0,27.0,42.0,26.0,28.0,34.0,32.0,37.0,42.0,27.0,33.0,37.0,44.0,33.0,30.0,42.0,30.0,15.0,34.0,33.0,32.0,39.0,33.0,23.0,24.0,21.0,30.0,18.0,22.0,16.0,23.0,17.0,17.0,33.0,24.0,28.0,21.0,18.0,16.0,19.0,18.0,18.0,20.0,15.0,11.0,14.0,9.0,6.0,3.0,8.0,9.0,7.0,12.0,7.0,8.0,12.0,6.0,7.0,9.0,11.0,4.0,5.0,8.0,2.0,3.0,5.0,2.0,1.0,,1.0,1.0,, N81614,12.0,16.0,18.0,23.0,33.0,23.0,29.0,30.0,27.0,36.0,29.0,24.0,37.0,29.0,32.0,28.0,29.0,28.0,15.0,23.0,21.0,29.0,31.0,28.0,29.0,19.0,26.0,24.0,23.0,28.0,23.0,33.0,32.0,20.0,30.0,37.0,36.0,27.0,35.0,28.0,35.0,22.0,19.0,32.0,28.0,29.0,31.0,35.0,29.0,27.0,26.0,26.0,30.0,41.0,45.0,46.0,54.0,49.0,55.0,58.0,57.0,53.0,51.0,58.0,51.0,56.0,49.0,40.0,45.0,33.0,38.0,43.0,21.0,28.0,32.0,33.0,28.0,38.0,23.0,37.0,26.0,25.0,12.0,17.0,12.0,16.0,9.0,15.0,6.0,3.0,7.0,2.0,4.0,1.0,2.0,1.0 N81619,22.0,27.0,26.0,21.0,28.0,35.0,31.0,27.0,34.0,36.0,28.0,30.0,36.0,19.0,27.0,26.0,25.0,22.0,31.0,22.0,32.0,20.0,20.0,19.0,27.0,30.0,25.0,26.0,27.0,29.0,34.0,28.0,42.0,44.0,36.0,33.0,48.0,43.0,37.0,28.0,47.0,34.0,36.0,26.0,31.0,32.0,32.0,19.0,30.0,19.0,27.0,30.0,22.0,25.0,26.0,17.0,24.0,22.0,19.0,25.0,21.0,20.0,24.0,19.0,19.0,18.0,14.0,19.0,10.0,19.0,11.0,9.0,5.0,6.0,12.0,8.0,4.0,9.0,5.0,5.0,6.0,1.0,1.0,6.0,3.0,2.0,2.0,4.0,,2.0,1.0,1.0,2.0,,, N81623,53.0,40.0,53.0,51.0,58.0,45.0,49.0,54.0,54.0,51.0,47.0,53.0,49.0,51.0,59.0,61.0,57.0,68.0,55.0,46.0,54.0,42.0,54.0,53.0,38.0,42.0,49.0,35.0,55.0,48.0,63.0,49.0,46.0,50.0,69.0,62.0,45.0,45.0,57.0,60.0,67.0,39.0,49.0,49.0,67.0,61.0,58.0,60.0,49.0,62.0,62.0,63.0,75.0,73.0,62.0,70.0,92.0,69.0,78.0,83.0,92.0,78.0,69.0,78.0,65.0,59.0,44.0,61.0,49.0,42.0,49.0,55.0,42.0,36.0,54.0,53.0,41.0,44.0,38.0,22.0,31.0,37.0,14.0,20.0,15.0,21.0,17.0,12.0,14.0,4.0,2.0,6.0,8.0,,1.0,4.0 N81624,18.0,32.0,32.0,35.0,49.0,39.0,34.0,46.0,53.0,68.0,54.0,54.0,56.0,42.0,47.0,46.0,50.0,40.0,47.0,47.0,35.0,34.0,36.0,37.0,38.0,33.0,32.0,32.0,31.0,31.0,36.0,36.0,26.0,42.0,42.0,34.0,48.0,53.0,39.0,54.0,37.0,53.0,48.0,50.0,58.0,60.0,39.0,43.0,45.0,46.0,54.0,65.0,61.0,52.0,62.0,59.0,79.0,54.0,60.0,86.0,72.0,58.0,76.0,61.0,64.0,59.0,57.0,58.0,53.0,51.0,55.0,56.0,47.0,56.0,51.0,49.0,60.0,60.0,46.0,43.0,32.0,42.0,40.0,22.0,27.0,30.0,21.0,17.0,11.0,13.0,17.0,3.0,10.0,6.0,4.0,8.0 N81626,21.0,27.0,22.0,25.0,34.0,32.0,35.0,29.0,28.0,38.0,30.0,34.0,45.0,37.0,36.0,39.0,36.0,39.0,33.0,31.0,24.0,22.0,21.0,25.0,17.0,20.0,26.0,31.0,31.0,28.0,26.0,36.0,25.0,40.0,25.0,30.0,33.0,34.0,42.0,45.0,29.0,31.0,28.0,29.0,27.0,32.0,27.0,26.0,20.0,31.0,22.0,21.0,31.0,37.0,35.0,25.0,27.0,13.0,18.0,24.0,27.0,25.0,27.0,26.0,31.0,33.0,25.0,17.0,15.0,23.0,23.0,16.0,22.0,12.0,12.0,14.0,18.0,18.0,8.0,11.0,7.0,5.0,10.0,6.0,8.0,7.0,3.0,8.0,2.0,3.0,1.0,2.0,1.0,,,4.0 N81628,61.0,64.0,71.0,86.0,86.0,75.0,94.0,82.0,100.0,94.0,101.0,88.0,82.0,84.0,83.0,83.0,92.0,77.0,67.0,67.0,57.0,62.0,63.0,70.0,66.0,87.0,69.0,84.0,108.0,103.0,122.0,145.0,130.0,139.0,159.0,156.0,156.0,164.0,178.0,170.0,142.0,138.0,116.0,135.0,133.0,126.0,111.0,95.0,94.0,98.0,89.0,84.0,85.0,92.0,90.0,68.0,68.0,98.0,70.0,65.0,65.0,79.0,81.0,58.0,70.0,45.0,60.0,48.0,38.0,40.0,48.0,32.0,42.0,23.0,39.0,26.0,25.0,17.0,21.0,13.0,9.0,16.0,8.0,10.0,7.0,1.0,5.0,7.0,7.0,4.0,4.0,2.0,1.0,,,3.0 N81632,18.0,30.0,27.0,31.0,32.0,32.0,26.0,24.0,30.0,41.0,44.0,46.0,33.0,45.0,37.0,46.0,43.0,30.0,30.0,32.0,25.0,18.0,30.0,23.0,20.0,25.0,31.0,31.0,39.0,32.0,46.0,45.0,45.0,42.0,41.0,46.0,42.0,47.0,60.0,46.0,43.0,50.0,34.0,43.0,51.0,37.0,39.0,43.0,29.0,36.0,39.0,44.0,42.0,36.0,55.0,40.0,36.0,53.0,38.0,44.0,56.0,46.0,37.0,38.0,46.0,40.0,33.0,33.0,25.0,21.0,23.0,16.0,29.0,30.0,21.0,22.0,22.0,19.0,22.0,18.0,7.0,14.0,3.0,8.0,9.0,6.0,11.0,7.0,7.0,5.0,2.0,8.0,2.0,1.0,1.0,4.0 N81637,12.0,22.0,21.0,12.0,9.0,12.0,20.0,21.0,11.0,15.0,14.0,20.0,15.0,13.0,21.0,16.0,20.0,11.0,12.0,10.0,21.0,14.0,13.0,14.0,25.0,24.0,30.0,27.0,27.0,23.0,33.0,37.0,33.0,43.0,38.0,35.0,42.0,36.0,50.0,44.0,47.0,47.0,47.0,41.0,37.0,36.0,27.0,21.0,22.0,21.0,17.0,26.0,34.0,20.0,28.0,14.0,10.0,16.0,16.0,17.0,14.0,13.0,11.0,11.0,8.0,6.0,9.0,8.0,14.0,9.0,8.0,6.0,9.0,9.0,4.0,4.0,7.0,3.0,6.0,4.0,1.0,2.0,6.0,3.0,3.0,4.0,,2.0,,1.0,1.0,,,1.0,, N81642,20.0,17.0,21.0,18.0,17.0,18.0,33.0,27.0,22.0,22.0,26.0,22.0,20.0,36.0,26.0,33.0,35.0,28.0,15.0,22.0,29.0,26.0,21.0,22.0,18.0,23.0,32.0,42.0,41.0,34.0,38.0,31.0,34.0,29.0,41.0,37.0,37.0,29.0,24.0,25.0,23.0,16.0,29.0,37.0,36.0,28.0,20.0,22.0,27.0,28.0,32.0,32.0,28.0,40.0,25.0,35.0,53.0,46.0,50.0,44.0,46.0,42.0,42.0,30.0,42.0,26.0,28.0,24.0,21.0,28.0,26.0,23.0,20.0,24.0,23.0,21.0,17.0,16.0,19.0,14.0,9.0,13.0,8.0,9.0,2.0,6.0,6.0,1.0,2.0,5.0,2.0,4.0,2.0,,1.0,1.0 N81645,12.0,6.0,14.0,12.0,19.0,14.0,20.0,17.0,16.0,16.0,21.0,20.0,14.0,24.0,16.0,23.0,20.0,24.0,19.0,15.0,16.0,18.0,18.0,9.0,12.0,19.0,12.0,16.0,23.0,19.0,18.0,23.0,17.0,23.0,21.0,24.0,31.0,16.0,19.0,19.0,23.0,26.0,17.0,21.0,16.0,10.0,21.0,16.0,17.0,18.0,11.0,19.0,15.0,13.0,17.0,11.0,22.0,13.0,18.0,13.0,14.0,17.0,17.0,15.0,13.0,9.0,9.0,8.0,10.0,6.0,10.0,7.0,7.0,9.0,7.0,11.0,2.0,8.0,4.0,4.0,3.0,4.0,3.0,1.0,1.0,2.0,3.0,2.0,2.0,2.0,1.0,1.0,,1.0,,1.0 N81651,23.0,11.0,13.0,19.0,15.0,15.0,17.0,18.0,27.0,25.0,31.0,23.0,26.0,21.0,13.0,14.0,25.0,20.0,15.0,11.0,23.0,21.0,17.0,17.0,30.0,25.0,24.0,28.0,20.0,27.0,28.0,31.0,26.0,35.0,31.0,27.0,26.0,39.0,29.0,18.0,25.0,30.0,31.0,32.0,31.0,23.0,27.0,22.0,24.0,23.0,21.0,18.0,25.0,38.0,27.0,27.0,19.0,33.0,26.0,20.0,22.0,22.0,24.0,25.0,24.0,16.0,20.0,13.0,12.0,9.0,13.0,11.0,12.0,9.0,11.0,11.0,4.0,11.0,6.0,5.0,7.0,4.0,4.0,7.0,4.0,2.0,4.0,7.0,1.0,4.0,1.0,1.0,,1.0,,1.0 N81655,,,,,,,,,,,,,,,,,,,2.0,1.0,2.0,5.0,3.0,3.0,5.0,4.0,6.0,8.0,11.0,4.0,10.0,7.0,9.0,11.0,4.0,11.0,7.0,7.0,7.0,8.0,12.0,14.0,5.0,7.0,10.0,9.0,9.0,4.0,10.0,8.0,14.0,7.0,4.0,9.0,11.0,5.0,6.0,8.0,4.0,2.0,8.0,3.0,6.0,5.0,1.0,1.0,3.0,2.0,1.0,,1.0,2.0,,,1.0,,,1.0,,,1.0,,,,,,,,,,,,,,, N82001,24.0,29.0,28.0,41.0,29.0,46.0,49.0,40.0,34.0,33.0,37.0,38.0,49.0,45.0,43.0,44.0,44.0,39.0,40.0,28.0,50.0,28.0,25.0,32.0,27.0,32.0,32.0,30.0,44.0,45.0,40.0,40.0,46.0,33.0,49.0,36.0,42.0,47.0,34.0,40.0,49.0,48.0,44.0,53.0,36.0,44.0,42.0,26.0,44.0,38.0,34.0,37.0,41.0,44.0,37.0,23.0,44.0,44.0,47.0,43.0,41.0,34.0,52.0,33.0,47.0,41.0,47.0,27.0,33.0,33.0,27.0,25.0,28.0,28.0,34.0,29.0,33.0,26.0,17.0,9.0,13.0,14.0,12.0,6.0,13.0,7.0,10.0,5.0,4.0,6.0,2.0,3.0,4.0,,2.0,2.0 N82002,38.0,21.0,43.0,44.0,38.0,34.0,41.0,56.0,48.0,46.0,42.0,42.0,42.0,43.0,42.0,28.0,39.0,33.0,33.0,33.0,29.0,29.0,24.0,19.0,21.0,33.0,36.0,20.0,28.0,31.0,29.0,36.0,37.0,36.0,40.0,36.0,33.0,48.0,34.0,32.0,46.0,34.0,35.0,34.0,34.0,36.0,32.0,28.0,22.0,32.0,25.0,37.0,26.0,33.0,33.0,32.0,24.0,32.0,35.0,29.0,32.0,25.0,31.0,25.0,22.0,19.0,23.0,24.0,21.0,16.0,23.0,21.0,25.0,15.0,14.0,13.0,21.0,21.0,14.0,10.0,8.0,12.0,10.0,8.0,4.0,14.0,6.0,7.0,5.0,2.0,3.0,,1.0,,2.0,1.0 N82003,16.0,30.0,24.0,27.0,20.0,28.0,32.0,26.0,26.0,33.0,34.0,26.0,33.0,38.0,29.0,34.0,25.0,29.0,16.0,21.0,21.0,21.0,27.0,16.0,18.0,20.0,23.0,25.0,24.0,18.0,26.0,29.0,27.0,28.0,41.0,26.0,45.0,35.0,35.0,25.0,49.0,38.0,36.0,25.0,20.0,28.0,27.0,21.0,19.0,25.0,21.0,24.0,29.0,21.0,26.0,28.0,27.0,25.0,12.0,22.0,24.0,17.0,20.0,19.0,22.0,26.0,19.0,19.0,26.0,24.0,18.0,18.0,20.0,13.0,18.0,12.0,12.0,13.0,9.0,5.0,12.0,10.0,10.0,8.0,6.0,4.0,7.0,4.0,6.0,5.0,2.0,4.0,,1.0,1.0,2.0 N82004,19.0,16.0,13.0,15.0,12.0,17.0,19.0,36.0,25.0,21.0,24.0,23.0,28.0,18.0,28.0,23.0,22.0,17.0,16.0,27.0,23.0,14.0,27.0,11.0,22.0,27.0,27.0,32.0,33.0,35.0,27.0,31.0,33.0,36.0,39.0,32.0,38.0,27.0,31.0,28.0,28.0,26.0,33.0,29.0,31.0,27.0,34.0,28.0,23.0,24.0,27.0,27.0,23.0,26.0,26.0,19.0,28.0,27.0,20.0,24.0,21.0,18.0,19.0,11.0,18.0,17.0,18.0,15.0,9.0,9.0,8.0,10.0,9.0,8.0,8.0,8.0,7.0,11.0,6.0,6.0,5.0,3.0,2.0,3.0,3.0,2.0,1.0,1.0,,2.0,1.0,,,,,2.0 N82009,39.0,42.0,47.0,48.0,54.0,48.0,48.0,59.0,59.0,70.0,57.0,42.0,55.0,42.0,41.0,27.0,36.0,61.0,32.0,38.0,35.0,31.0,31.0,27.0,40.0,45.0,30.0,38.0,46.0,42.0,45.0,48.0,62.0,52.0,75.0,55.0,56.0,84.0,56.0,64.0,81.0,87.0,68.0,68.0,72.0,62.0,57.0,53.0,55.0,58.0,54.0,39.0,50.0,56.0,50.0,57.0,48.0,40.0,48.0,57.0,62.0,44.0,48.0,55.0,41.0,67.0,44.0,46.0,53.0,51.0,46.0,44.0,43.0,42.0,42.0,29.0,48.0,33.0,36.0,29.0,31.0,35.0,19.0,27.0,14.0,16.0,13.0,16.0,13.0,9.0,8.0,6.0,4.0,3.0,2.0,6.0 N82011,46.0,46.0,43.0,46.0,53.0,57.0,65.0,62.0,71.0,61.0,66.0,61.0,70.0,68.0,82.0,62.0,59.0,80.0,64.0,57.0,57.0,40.0,68.0,64.0,63.0,63.0,90.0,91.0,101.0,105.0,90.0,104.0,102.0,88.0,100.0,96.0,83.0,86.0,75.0,86.0,81.0,91.0,94.0,73.0,98.0,70.0,64.0,70.0,56.0,55.0,38.0,60.0,59.0,50.0,71.0,72.0,68.0,71.0,70.0,72.0,74.0,53.0,66.0,77.0,84.0,63.0,59.0,49.0,67.0,42.0,46.0,42.0,31.0,35.0,35.0,36.0,32.0,30.0,34.0,31.0,27.0,22.0,16.0,13.0,13.0,17.0,13.0,6.0,13.0,6.0,4.0,7.0,5.0,2.0,3.0, N82014,29.0,35.0,18.0,22.0,29.0,28.0,32.0,27.0,30.0,27.0,35.0,43.0,31.0,32.0,42.0,45.0,37.0,36.0,31.0,37.0,37.0,41.0,31.0,30.0,40.0,33.0,44.0,51.0,51.0,41.0,38.0,42.0,53.0,52.0,51.0,61.0,39.0,40.0,40.0,45.0,61.0,59.0,47.0,45.0,45.0,38.0,47.0,41.0,42.0,39.0,33.0,35.0,39.0,41.0,56.0,43.0,41.0,52.0,47.0,47.0,51.0,49.0,50.0,43.0,39.0,51.0,32.0,54.0,31.0,45.0,24.0,29.0,32.0,28.0,33.0,34.0,27.0,29.0,37.0,14.0,21.0,16.0,15.0,14.0,12.0,15.0,10.0,10.0,10.0,7.0,7.0,6.0,2.0,3.0,3.0,4.0 N82018,50.0,78.0,81.0,88.0,73.0,97.0,92.0,107.0,134.0,96.0,111.0,117.0,115.0,114.0,105.0,98.0,85.0,104.0,89.0,78.0,73.0,71.0,77.0,71.0,76.0,66.0,74.0,76.0,68.0,75.0,85.0,72.0,84.0,103.0,83.0,102.0,104.0,120.0,113.0,120.0,111.0,94.0,92.0,91.0,91.0,86.0,76.0,89.0,66.0,71.0,64.0,65.0,70.0,64.0,62.0,63.0,77.0,90.0,77.0,60.0,80.0,82.0,75.0,79.0,71.0,86.0,64.0,59.0,53.0,59.0,40.0,48.0,45.0,39.0,42.0,42.0,33.0,33.0,33.0,22.0,17.0,23.0,10.0,19.0,8.0,12.0,15.0,6.0,11.0,8.0,6.0,4.0,3.0,1.0,,9.0 N82019,19.0,28.0,21.0,34.0,23.0,18.0,32.0,43.0,36.0,52.0,52.0,34.0,34.0,41.0,41.0,40.0,28.0,28.0,39.0,27.0,25.0,28.0,27.0,24.0,29.0,31.0,32.0,20.0,33.0,31.0,29.0,35.0,34.0,42.0,36.0,42.0,36.0,30.0,47.0,32.0,41.0,32.0,26.0,37.0,38.0,43.0,25.0,29.0,26.0,25.0,28.0,21.0,27.0,20.0,32.0,27.0,24.0,26.0,30.0,26.0,40.0,34.0,38.0,37.0,20.0,28.0,26.0,33.0,30.0,15.0,20.0,23.0,28.0,19.0,18.0,13.0,20.0,10.0,17.0,13.0,11.0,13.0,8.0,6.0,6.0,8.0,5.0,5.0,2.0,1.0,1.0,2.0,2.0,3.0,1.0,2.0 N82022,57.0,35.0,57.0,57.0,51.0,51.0,56.0,48.0,51.0,50.0,73.0,57.0,60.0,57.0,57.0,51.0,60.0,59.0,57.0,49.0,68.0,66.0,66.0,76.0,104.0,103.0,93.0,111.0,109.0,95.0,135.0,125.0,115.0,115.0,111.0,109.0,102.0,109.0,91.0,100.0,112.0,83.0,93.0,95.0,87.0,81.0,69.0,67.0,72.0,67.0,77.0,57.0,68.0,69.0,65.0,73.0,50.0,57.0,49.0,47.0,67.0,60.0,58.0,59.0,48.0,41.0,39.0,37.0,39.0,42.0,41.0,32.0,48.0,27.0,22.0,24.0,27.0,19.0,21.0,10.0,26.0,15.0,12.0,11.0,7.0,8.0,8.0,4.0,9.0,5.0,3.0,6.0,2.0,,3.0,2.0 N82024,59.0,50.0,66.0,75.0,63.0,64.0,56.0,85.0,78.0,61.0,64.0,74.0,82.0,85.0,74.0,60.0,79.0,54.0,85.0,73.0,79.0,61.0,52.0,57.0,71.0,58.0,76.0,67.0,78.0,65.0,74.0,67.0,76.0,83.0,84.0,87.0,101.0,99.0,101.0,90.0,98.0,77.0,89.0,79.0,85.0,97.0,66.0,74.0,74.0,54.0,83.0,39.0,72.0,97.0,82.0,69.0,69.0,88.0,82.0,95.0,109.0,102.0,104.0,97.0,84.0,81.0,76.0,75.0,70.0,75.0,66.0,71.0,59.0,51.0,50.0,58.0,49.0,50.0,50.0,34.0,24.0,25.0,24.0,28.0,26.0,21.0,16.0,16.0,18.0,7.0,5.0,4.0,4.0,3.0,1.0,3.0 N82026,33.0,32.0,35.0,19.0,31.0,25.0,32.0,26.0,30.0,46.0,40.0,26.0,36.0,33.0,33.0,27.0,34.0,29.0,30.0,37.0,58.0,38.0,31.0,33.0,34.0,40.0,49.0,41.0,43.0,49.0,49.0,55.0,52.0,68.0,58.0,52.0,31.0,50.0,50.0,58.0,42.0,38.0,51.0,43.0,46.0,38.0,40.0,28.0,28.0,31.0,36.0,33.0,38.0,43.0,42.0,46.0,42.0,35.0,51.0,41.0,43.0,53.0,40.0,46.0,34.0,32.0,41.0,38.0,28.0,27.0,25.0,38.0,34.0,21.0,33.0,27.0,31.0,26.0,20.0,19.0,21.0,18.0,17.0,8.0,9.0,10.0,9.0,13.0,3.0,9.0,4.0,2.0,3.0,3.0,2.0,2.0 N82033,36.0,22.0,27.0,23.0,27.0,30.0,35.0,26.0,35.0,32.0,33.0,27.0,25.0,46.0,27.0,31.0,30.0,32.0,29.0,25.0,19.0,35.0,32.0,32.0,51.0,40.0,53.0,67.0,72.0,63.0,57.0,56.0,51.0,61.0,70.0,58.0,59.0,77.0,44.0,64.0,53.0,51.0,42.0,39.0,45.0,29.0,34.0,24.0,26.0,27.0,28.0,29.0,26.0,26.0,40.0,31.0,25.0,34.0,27.0,37.0,30.0,40.0,42.0,27.0,34.0,40.0,29.0,33.0,37.0,27.0,26.0,26.0,22.0,24.0,17.0,16.0,21.0,19.0,26.0,17.0,13.0,15.0,11.0,8.0,4.0,9.0,5.0,2.0,4.0,5.0,,3.0,1.0,,, N82034,18.0,32.0,24.0,20.0,23.0,27.0,26.0,28.0,29.0,42.0,36.0,30.0,32.0,30.0,31.0,28.0,37.0,26.0,25.0,32.0,35.0,23.0,28.0,25.0,29.0,36.0,26.0,35.0,48.0,42.0,34.0,54.0,46.0,47.0,48.0,35.0,49.0,57.0,48.0,40.0,47.0,42.0,42.0,32.0,48.0,39.0,45.0,42.0,33.0,38.0,39.0,35.0,33.0,41.0,38.0,48.0,38.0,40.0,33.0,42.0,54.0,46.0,59.0,32.0,45.0,45.0,46.0,43.0,33.0,36.0,26.0,24.0,38.0,33.0,24.0,16.0,23.0,21.0,18.0,26.0,19.0,10.0,20.0,19.0,5.0,10.0,13.0,11.0,5.0,6.0,3.0,3.0,5.0,3.0,,7.0 N82035,34.0,33.0,47.0,50.0,52.0,45.0,46.0,52.0,64.0,72.0,58.0,57.0,57.0,66.0,61.0,56.0,57.0,50.0,41.0,44.0,41.0,50.0,49.0,44.0,31.0,53.0,34.0,41.0,58.0,40.0,60.0,59.0,48.0,60.0,61.0,53.0,62.0,61.0,64.0,59.0,63.0,73.0,61.0,59.0,70.0,56.0,45.0,47.0,67.0,47.0,36.0,53.0,45.0,56.0,54.0,61.0,52.0,55.0,52.0,45.0,48.0,81.0,77.0,65.0,47.0,51.0,56.0,55.0,51.0,52.0,46.0,55.0,37.0,36.0,40.0,38.0,32.0,38.0,31.0,25.0,24.0,24.0,21.0,16.0,11.0,18.0,15.0,13.0,9.0,8.0,7.0,2.0,5.0,,2.0,3.0 N82036,11.0,7.0,16.0,19.0,12.0,14.0,22.0,24.0,17.0,17.0,22.0,11.0,25.0,25.0,26.0,16.0,17.0,24.0,25.0,26.0,21.0,17.0,20.0,21.0,19.0,21.0,24.0,24.0,28.0,21.0,19.0,26.0,22.0,21.0,27.0,24.0,31.0,19.0,23.0,20.0,33.0,20.0,16.0,23.0,15.0,21.0,20.0,19.0,16.0,19.0,12.0,21.0,23.0,21.0,19.0,23.0,29.0,33.0,29.0,20.0,28.0,29.0,22.0,21.0,18.0,16.0,20.0,11.0,14.0,13.0,8.0,12.0,11.0,9.0,11.0,9.0,13.0,14.0,15.0,14.0,8.0,7.0,9.0,8.0,6.0,9.0,5.0,6.0,,9.0,2.0,2.0,2.0,1.0,1.0,1.0 N82037,40.0,65.0,54.0,63.0,57.0,54.0,62.0,56.0,76.0,63.0,64.0,51.0,61.0,77.0,62.0,69.0,50.0,69.0,71.0,72.0,59.0,59.0,61.0,63.0,72.0,70.0,71.0,73.0,66.0,89.0,80.0,82.0,80.0,88.0,104.0,110.0,83.0,91.0,101.0,99.0,83.0,84.0,66.0,77.0,80.0,75.0,72.0,75.0,65.0,67.0,56.0,58.0,81.0,64.0,83.0,85.0,69.0,79.0,88.0,81.0,97.0,79.0,93.0,74.0,67.0,69.0,85.0,66.0,73.0,59.0,65.0,57.0,58.0,53.0,45.0,33.0,34.0,38.0,47.0,37.0,34.0,30.0,22.0,26.0,24.0,18.0,23.0,17.0,10.0,10.0,13.0,8.0,8.0,4.0,6.0,7.0 N82039,19.0,21.0,26.0,21.0,15.0,22.0,36.0,20.0,30.0,33.0,26.0,29.0,33.0,29.0,19.0,34.0,24.0,13.0,33.0,26.0,16.0,11.0,16.0,18.0,27.0,27.0,23.0,21.0,23.0,15.0,15.0,24.0,26.0,31.0,23.0,26.0,24.0,32.0,31.0,25.0,35.0,26.0,38.0,40.0,27.0,54.0,24.0,27.0,22.0,26.0,26.0,23.0,24.0,28.0,22.0,30.0,27.0,27.0,22.0,23.0,25.0,26.0,26.0,26.0,27.0,22.0,28.0,21.0,30.0,12.0,21.0,26.0,20.0,12.0,20.0,13.0,19.0,22.0,20.0,15.0,4.0,9.0,10.0,8.0,7.0,12.0,4.0,5.0,7.0,1.0,3.0,3.0,1.0,,,2.0 N82041,69.0,76.0,74.0,83.0,82.0,82.0,77.0,99.0,91.0,88.0,85.0,91.0,86.0,81.0,77.0,73.0,61.0,78.0,61.0,59.0,53.0,51.0,58.0,58.0,66.0,56.0,62.0,46.0,61.0,68.0,65.0,64.0,75.0,89.0,101.0,97.0,83.0,104.0,95.0,103.0,104.0,97.0,86.0,99.0,103.0,100.0,96.0,63.0,73.0,71.0,71.0,62.0,85.0,71.0,73.0,82.0,70.0,74.0,90.0,77.0,69.0,79.0,87.0,83.0,74.0,64.0,59.0,61.0,54.0,74.0,66.0,61.0,56.0,50.0,38.0,42.0,59.0,52.0,47.0,35.0,30.0,33.0,33.0,20.0,19.0,19.0,10.0,23.0,17.0,11.0,9.0,12.0,5.0,5.0,3.0,8.0 N82046,46.0,42.0,46.0,30.0,37.0,30.0,50.0,52.0,50.0,33.0,41.0,50.0,29.0,29.0,40.0,32.0,43.0,36.0,38.0,74.0,85.0,103.0,113.0,118.0,133.0,114.0,134.0,145.0,135.0,122.0,123.0,110.0,129.0,136.0,115.0,116.0,113.0,116.0,97.0,84.0,82.0,77.0,85.0,79.0,74.0,72.0,62.0,61.0,48.0,58.0,61.0,40.0,44.0,59.0,46.0,55.0,55.0,64.0,64.0,37.0,51.0,51.0,38.0,48.0,44.0,46.0,48.0,34.0,32.0,31.0,27.0,33.0,22.0,22.0,26.0,29.0,24.0,28.0,24.0,18.0,11.0,15.0,12.0,11.0,14.0,7.0,12.0,11.0,3.0,7.0,5.0,2.0,4.0,4.0,,3.0 N82048,35.0,30.0,24.0,56.0,27.0,42.0,31.0,39.0,47.0,45.0,21.0,48.0,43.0,36.0,30.0,37.0,34.0,32.0,34.0,37.0,38.0,32.0,33.0,35.0,42.0,33.0,40.0,46.0,42.0,56.0,47.0,43.0,63.0,63.0,65.0,74.0,60.0,53.0,59.0,50.0,54.0,58.0,47.0,42.0,41.0,53.0,42.0,43.0,36.0,40.0,25.0,37.0,42.0,45.0,48.0,38.0,56.0,34.0,42.0,56.0,46.0,50.0,57.0,58.0,44.0,38.0,54.0,43.0,33.0,40.0,32.0,31.0,35.0,32.0,32.0,34.0,25.0,34.0,25.0,22.0,20.0,23.0,21.0,7.0,17.0,10.0,13.0,8.0,8.0,5.0,5.0,2.0,1.0,1.0,2.0,2.0 N82049,25.0,36.0,38.0,33.0,43.0,46.0,55.0,53.0,50.0,40.0,31.0,47.0,33.0,31.0,41.0,42.0,44.0,41.0,37.0,38.0,36.0,32.0,30.0,27.0,38.0,37.0,46.0,50.0,49.0,53.0,51.0,56.0,59.0,62.0,56.0,60.0,63.0,65.0,60.0,65.0,46.0,48.0,34.0,50.0,37.0,48.0,53.0,34.0,37.0,47.0,36.0,38.0,46.0,55.0,41.0,43.0,48.0,32.0,39.0,42.0,37.0,36.0,44.0,35.0,37.0,43.0,34.0,37.0,37.0,34.0,25.0,32.0,24.0,26.0,23.0,26.0,16.0,19.0,27.0,12.0,11.0,11.0,11.0,6.0,11.0,11.0,6.0,3.0,2.0,5.0,1.0,3.0,1.0,4.0,,2.0 N82050,9.0,11.0,14.0,15.0,13.0,13.0,20.0,13.0,23.0,17.0,15.0,18.0,8.0,13.0,17.0,15.0,5.0,13.0,19.0,11.0,6.0,9.0,10.0,10.0,17.0,11.0,9.0,12.0,18.0,14.0,15.0,13.0,19.0,21.0,28.0,21.0,23.0,25.0,18.0,25.0,22.0,16.0,23.0,26.0,25.0,18.0,14.0,15.0,17.0,14.0,16.0,12.0,17.0,22.0,12.0,15.0,25.0,19.0,18.0,21.0,21.0,20.0,21.0,19.0,19.0,15.0,15.0,22.0,13.0,18.0,12.0,20.0,9.0,13.0,16.0,12.0,6.0,9.0,12.0,10.0,10.0,8.0,6.0,4.0,2.0,3.0,4.0,2.0,1.0,4.0,1.0,2.0,2.0,,,3.0 N82052,16.0,28.0,37.0,30.0,33.0,46.0,43.0,51.0,48.0,49.0,43.0,30.0,29.0,39.0,36.0,32.0,40.0,31.0,43.0,26.0,29.0,33.0,30.0,28.0,35.0,28.0,33.0,45.0,47.0,45.0,52.0,42.0,46.0,50.0,53.0,51.0,51.0,47.0,60.0,40.0,47.0,62.0,53.0,37.0,45.0,43.0,34.0,31.0,33.0,27.0,46.0,37.0,42.0,29.0,36.0,34.0,32.0,31.0,26.0,31.0,55.0,36.0,43.0,28.0,31.0,36.0,38.0,24.0,27.0,29.0,24.0,24.0,23.0,25.0,16.0,13.0,14.0,14.0,15.0,9.0,13.0,16.0,6.0,13.0,8.0,4.0,6.0,5.0,5.0,,4.0,3.0,1.0,1.0,, N82053,58.0,67.0,70.0,83.0,89.0,96.0,86.0,71.0,100.0,98.0,104.0,105.0,88.0,94.0,91.0,83.0,89.0,90.0,91.0,81.0,94.0,83.0,83.0,88.0,75.0,69.0,79.0,87.0,86.0,96.0,95.0,83.0,122.0,99.0,116.0,103.0,127.0,107.0,114.0,109.0,111.0,118.0,102.0,122.0,108.0,114.0,75.0,89.0,82.0,80.0,87.0,93.0,113.0,117.0,106.0,87.0,108.0,100.0,89.0,114.0,114.0,118.0,108.0,109.0,127.0,90.0,97.0,112.0,81.0,76.0,77.0,85.0,66.0,61.0,49.0,55.0,48.0,53.0,64.0,40.0,35.0,30.0,29.0,36.0,26.0,28.0,25.0,20.0,15.0,15.0,15.0,8.0,7.0,9.0,3.0,4.0 N82054,25.0,22.0,40.0,26.0,38.0,35.0,35.0,41.0,58.0,41.0,38.0,47.0,47.0,41.0,48.0,39.0,44.0,38.0,54.0,56.0,57.0,54.0,65.0,77.0,69.0,67.0,73.0,77.0,77.0,78.0,89.0,89.0,86.0,67.0,81.0,99.0,94.0,82.0,100.0,78.0,68.0,76.0,72.0,62.0,86.0,72.0,68.0,46.0,58.0,47.0,48.0,43.0,62.0,57.0,52.0,45.0,53.0,65.0,54.0,52.0,39.0,41.0,43.0,41.0,28.0,29.0,38.0,32.0,16.0,20.0,25.0,19.0,11.0,20.0,20.0,21.0,14.0,10.0,18.0,10.0,9.0,12.0,6.0,6.0,1.0,11.0,9.0,2.0,3.0,1.0,5.0,2.0,3.0,1.0,3.0,5.0 N82058,28.0,38.0,26.0,38.0,31.0,41.0,38.0,22.0,48.0,32.0,29.0,33.0,30.0,34.0,40.0,35.0,32.0,33.0,35.0,29.0,24.0,37.0,32.0,36.0,34.0,38.0,39.0,35.0,41.0,42.0,53.0,42.0,41.0,49.0,48.0,47.0,40.0,49.0,36.0,39.0,43.0,39.0,34.0,44.0,43.0,43.0,36.0,38.0,29.0,31.0,28.0,31.0,32.0,26.0,44.0,23.0,36.0,32.0,33.0,29.0,43.0,51.0,43.0,32.0,26.0,28.0,31.0,30.0,25.0,15.0,24.0,14.0,16.0,18.0,25.0,13.0,27.0,23.0,21.0,16.0,13.0,3.0,3.0,5.0,5.0,6.0,4.0,2.0,4.0,2.0,2.0,1.0,2.0,1.0,1.0,1.0 N82059,31.0,29.0,14.0,26.0,16.0,17.0,27.0,23.0,26.0,25.0,29.0,27.0,23.0,28.0,30.0,27.0,22.0,25.0,32.0,18.0,37.0,59.0,55.0,56.0,60.0,56.0,50.0,53.0,51.0,64.0,60.0,69.0,63.0,65.0,75.0,71.0,68.0,69.0,50.0,47.0,53.0,46.0,52.0,54.0,45.0,42.0,47.0,53.0,36.0,44.0,36.0,53.0,40.0,42.0,47.0,45.0,40.0,31.0,54.0,42.0,63.0,43.0,36.0,38.0,41.0,28.0,38.0,23.0,36.0,28.0,27.0,23.0,25.0,24.0,24.0,28.0,20.0,19.0,18.0,13.0,11.0,10.0,11.0,9.0,7.0,9.0,6.0,6.0,5.0,2.0,2.0,,,,2.0,2.0 N82062,34.0,28.0,29.0,34.0,25.0,36.0,34.0,39.0,36.0,47.0,49.0,45.0,35.0,40.0,45.0,38.0,41.0,32.0,35.0,23.0,32.0,28.0,38.0,26.0,34.0,25.0,30.0,41.0,38.0,43.0,44.0,39.0,41.0,44.0,38.0,51.0,47.0,53.0,46.0,53.0,66.0,56.0,54.0,60.0,49.0,54.0,43.0,48.0,46.0,35.0,47.0,67.0,40.0,46.0,62.0,49.0,53.0,37.0,51.0,39.0,63.0,44.0,49.0,52.0,53.0,47.0,40.0,45.0,46.0,37.0,39.0,31.0,34.0,50.0,39.0,41.0,25.0,40.0,29.0,23.0,17.0,23.0,17.0,11.0,9.0,9.0,12.0,15.0,11.0,8.0,3.0,4.0,6.0,2.0,1.0,5.0 N82065,15.0,24.0,18.0,16.0,30.0,28.0,20.0,24.0,17.0,19.0,19.0,32.0,24.0,32.0,28.0,19.0,36.0,24.0,27.0,12.0,29.0,28.0,22.0,33.0,24.0,28.0,20.0,32.0,26.0,42.0,51.0,38.0,36.0,27.0,40.0,37.0,44.0,46.0,55.0,43.0,34.0,42.0,41.0,53.0,36.0,42.0,42.0,39.0,27.0,40.0,28.0,26.0,28.0,25.0,33.0,35.0,31.0,18.0,24.0,28.0,34.0,27.0,18.0,23.0,28.0,19.0,24.0,20.0,21.0,17.0,16.0,13.0,15.0,9.0,11.0,4.0,7.0,5.0,11.0,10.0,5.0,7.0,9.0,4.0,4.0,2.0,2.0,1.0,2.0,2.0,1.0,1.0,3.0,1.0,, N82066,31.0,51.0,47.0,50.0,43.0,56.0,50.0,45.0,51.0,53.0,53.0,48.0,48.0,40.0,44.0,35.0,33.0,46.0,40.0,34.0,24.0,39.0,48.0,44.0,39.0,38.0,52.0,46.0,46.0,43.0,45.0,53.0,61.0,55.0,67.0,70.0,58.0,50.0,65.0,61.0,61.0,70.0,55.0,53.0,60.0,62.0,49.0,50.0,42.0,36.0,52.0,48.0,54.0,43.0,60.0,59.0,67.0,58.0,60.0,61.0,63.0,56.0,75.0,65.0,78.0,58.0,55.0,73.0,53.0,74.0,64.0,55.0,50.0,55.0,65.0,52.0,51.0,58.0,44.0,29.0,29.0,29.0,26.0,17.0,24.0,28.0,23.0,28.0,14.0,17.0,10.0,7.0,8.0,6.0,2.0,6.0 N82067,31.0,40.0,36.0,29.0,20.0,33.0,37.0,22.0,42.0,28.0,38.0,33.0,39.0,27.0,28.0,38.0,28.0,38.0,19.0,23.0,41.0,28.0,21.0,41.0,61.0,57.0,86.0,75.0,77.0,91.0,81.0,97.0,77.0,77.0,86.0,95.0,94.0,72.0,85.0,67.0,60.0,67.0,59.0,53.0,59.0,47.0,36.0,46.0,40.0,46.0,49.0,33.0,43.0,44.0,44.0,39.0,33.0,39.0,39.0,46.0,33.0,31.0,30.0,20.0,28.0,18.0,36.0,17.0,14.0,26.0,18.0,15.0,13.0,15.0,12.0,15.0,13.0,17.0,15.0,12.0,11.0,10.0,8.0,3.0,12.0,4.0,2.0,4.0,2.0,,1.0,,2.0,1.0,,3.0 N82070,51.0,53.0,50.0,44.0,51.0,37.0,57.0,51.0,47.0,55.0,49.0,66.0,41.0,63.0,44.0,52.0,41.0,49.0,37.0,44.0,32.0,43.0,43.0,45.0,59.0,64.0,63.0,68.0,85.0,84.0,100.0,93.0,110.0,105.0,116.0,100.0,93.0,85.0,87.0,98.0,75.0,71.0,75.0,80.0,82.0,63.0,55.0,46.0,49.0,56.0,60.0,66.0,59.0,63.0,74.0,63.0,51.0,45.0,65.0,61.0,72.0,61.0,48.0,56.0,62.0,44.0,51.0,52.0,52.0,53.0,40.0,35.0,42.0,32.0,28.0,40.0,38.0,35.0,30.0,21.0,30.0,23.0,21.0,16.0,20.0,14.0,11.0,12.0,3.0,3.0,3.0,6.0,1.0,,1.0,5.0 N82073,20.0,27.0,34.0,30.0,33.0,21.0,32.0,45.0,27.0,33.0,38.0,28.0,38.0,29.0,45.0,33.0,38.0,40.0,23.0,28.0,32.0,24.0,29.0,28.0,32.0,30.0,38.0,45.0,51.0,46.0,51.0,51.0,50.0,56.0,55.0,51.0,54.0,53.0,44.0,53.0,50.0,32.0,53.0,52.0,48.0,50.0,53.0,48.0,40.0,43.0,45.0,43.0,42.0,46.0,50.0,51.0,50.0,48.0,40.0,49.0,44.0,50.0,41.0,41.0,45.0,38.0,39.0,42.0,28.0,30.0,33.0,32.0,33.0,25.0,28.0,36.0,19.0,25.0,27.0,14.0,14.0,11.0,20.0,13.0,15.0,12.0,11.0,10.0,11.0,6.0,6.0,6.0,1.0,4.0,2.0,4.0 N82074,26.0,41.0,32.0,34.0,41.0,41.0,47.0,50.0,52.0,48.0,48.0,46.0,67.0,52.0,73.0,54.0,61.0,52.0,53.0,68.0,37.0,49.0,51.0,52.0,56.0,61.0,63.0,58.0,68.0,71.0,77.0,58.0,81.0,63.0,68.0,89.0,78.0,69.0,77.0,71.0,67.0,70.0,52.0,62.0,51.0,68.0,56.0,42.0,61.0,72.0,65.0,61.0,62.0,60.0,69.0,70.0,64.0,81.0,63.0,75.0,68.0,84.0,70.0,56.0,52.0,61.0,61.0,53.0,37.0,53.0,49.0,47.0,43.0,24.0,36.0,37.0,25.0,36.0,33.0,21.0,20.0,22.0,18.0,21.0,9.0,21.0,10.0,3.0,7.0,7.0,4.0,2.0,2.0,2.0,3.0,1.0 N82076,67.0,63.0,60.0,57.0,51.0,71.0,63.0,59.0,59.0,64.0,75.0,59.0,72.0,58.0,57.0,50.0,51.0,44.0,77.0,89.0,70.0,92.0,97.0,88.0,78.0,87.0,113.0,115.0,150.0,107.0,125.0,152.0,126.0,136.0,138.0,134.0,125.0,123.0,122.0,101.0,112.0,95.0,107.0,64.0,95.0,94.0,99.0,62.0,69.0,80.0,71.0,85.0,77.0,56.0,53.0,65.0,62.0,64.0,58.0,49.0,59.0,41.0,50.0,41.0,44.0,49.0,28.0,40.0,35.0,29.0,27.0,13.0,24.0,27.0,20.0,15.0,19.0,15.0,15.0,14.0,6.0,15.0,4.0,8.0,9.0,13.0,3.0,5.0,1.0,2.0,3.0,2.0,3.0,2.0,1.0,4.0 N82077,12.0,14.0,9.0,19.0,26.0,23.0,19.0,22.0,14.0,16.0,19.0,18.0,23.0,16.0,15.0,13.0,14.0,16.0,15.0,19.0,14.0,15.0,15.0,14.0,13.0,22.0,26.0,23.0,28.0,23.0,17.0,18.0,18.0,21.0,28.0,19.0,27.0,22.0,27.0,16.0,23.0,20.0,23.0,24.0,23.0,24.0,20.0,10.0,14.0,13.0,17.0,11.0,15.0,16.0,10.0,17.0,21.0,15.0,12.0,14.0,9.0,18.0,22.0,17.0,11.0,18.0,20.0,22.0,20.0,13.0,13.0,9.0,15.0,11.0,8.0,8.0,11.0,5.0,5.0,5.0,7.0,6.0,4.0,4.0,2.0,3.0,6.0,6.0,2.0,5.0,3.0,,1.0,1.0,2.0,1.0 N82078,7.0,16.0,8.0,22.0,10.0,20.0,17.0,21.0,20.0,15.0,16.0,20.0,17.0,13.0,15.0,22.0,16.0,16.0,12.0,14.0,15.0,13.0,16.0,6.0,17.0,18.0,19.0,18.0,13.0,18.0,18.0,19.0,14.0,30.0,25.0,29.0,22.0,21.0,19.0,28.0,24.0,33.0,27.0,23.0,25.0,21.0,21.0,23.0,21.0,19.0,22.0,22.0,18.0,28.0,22.0,20.0,19.0,20.0,21.0,20.0,21.0,14.0,23.0,24.0,25.0,24.0,15.0,15.0,20.0,17.0,19.0,19.0,11.0,21.0,11.0,11.0,8.0,13.0,11.0,10.0,11.0,7.0,7.0,2.0,4.0,7.0,3.0,3.0,3.0,,,2.0,1.0,,, N82079,14.0,25.0,17.0,34.0,36.0,31.0,36.0,34.0,36.0,38.0,27.0,39.0,38.0,34.0,38.0,43.0,31.0,27.0,47.0,71.0,65.0,50.0,40.0,52.0,45.0,42.0,27.0,40.0,41.0,29.0,42.0,55.0,42.0,55.0,60.0,55.0,60.0,65.0,51.0,57.0,56.0,62.0,54.0,70.0,71.0,76.0,66.0,71.0,66.0,72.0,77.0,56.0,65.0,70.0,52.0,56.0,42.0,37.0,43.0,21.0,43.0,32.0,32.0,35.0,27.0,34.0,24.0,17.0,24.0,18.0,12.0,21.0,21.0,27.0,24.0,12.0,13.0,16.0,18.0,16.0,9.0,8.0,7.0,8.0,6.0,7.0,1.0,1.0,3.0,3.0,1.0,,1.0,3.0,1.0,1.0 N82081,28.0,37.0,22.0,27.0,33.0,35.0,28.0,33.0,32.0,38.0,28.0,24.0,23.0,35.0,33.0,23.0,28.0,35.0,31.0,42.0,49.0,68.0,82.0,75.0,58.0,68.0,61.0,72.0,64.0,45.0,50.0,56.0,61.0,62.0,54.0,52.0,39.0,50.0,51.0,62.0,47.0,53.0,47.0,48.0,54.0,46.0,38.0,34.0,25.0,31.0,37.0,34.0,28.0,43.0,26.0,37.0,22.0,36.0,29.0,33.0,37.0,36.0,31.0,36.0,27.0,28.0,36.0,31.0,19.0,26.0,15.0,19.0,24.0,23.0,20.0,11.0,8.0,22.0,17.0,17.0,8.0,7.0,6.0,4.0,2.0,3.0,2.0,4.0,2.0,2.0,1.0,1.0,1.0,,1.0, N82082,21.0,19.0,31.0,20.0,19.0,21.0,23.0,22.0,13.0,21.0,20.0,9.0,21.0,11.0,16.0,13.0,15.0,14.0,33.0,79.0,87.0,84.0,113.0,127.0,149.0,199.0,198.0,207.0,181.0,147.0,152.0,175.0,139.0,119.0,114.0,117.0,109.0,89.0,88.0,92.0,79.0,54.0,63.0,66.0,46.0,61.0,39.0,47.0,42.0,34.0,36.0,24.0,25.0,36.0,38.0,29.0,32.0,24.0,28.0,33.0,26.0,29.0,30.0,27.0,34.0,28.0,24.0,38.0,30.0,23.0,19.0,27.0,22.0,20.0,17.0,19.0,15.0,12.0,14.0,7.0,10.0,7.0,4.0,5.0,7.0,3.0,5.0,6.0,4.0,7.0,4.0,,1.0,,1.0,3.0 N82083,42.0,49.0,52.0,52.0,46.0,62.0,61.0,71.0,54.0,79.0,73.0,74.0,70.0,82.0,68.0,84.0,67.0,85.0,66.0,68.0,63.0,60.0,55.0,55.0,55.0,65.0,66.0,73.0,61.0,63.0,65.0,62.0,69.0,86.0,68.0,66.0,72.0,60.0,65.0,84.0,58.0,77.0,65.0,59.0,65.0,74.0,63.0,57.0,45.0,66.0,49.0,60.0,77.0,80.0,72.0,64.0,64.0,58.0,58.0,59.0,92.0,47.0,66.0,60.0,55.0,56.0,57.0,57.0,49.0,50.0,47.0,37.0,36.0,33.0,38.0,29.0,30.0,26.0,25.0,22.0,17.0,13.0,9.0,10.0,9.0,9.0,6.0,8.0,4.0,6.0,2.0,6.0,,1.0,2.0, N82084,22.0,20.0,32.0,27.0,32.0,37.0,28.0,36.0,31.0,34.0,29.0,30.0,30.0,31.0,39.0,33.0,30.0,28.0,27.0,29.0,18.0,37.0,22.0,26.0,35.0,34.0,29.0,32.0,41.0,40.0,46.0,34.0,46.0,30.0,35.0,48.0,54.0,51.0,46.0,45.0,37.0,45.0,43.0,49.0,31.0,43.0,33.0,28.0,24.0,32.0,29.0,36.0,40.0,40.0,38.0,36.0,47.0,42.0,50.0,48.0,48.0,67.0,65.0,55.0,61.0,46.0,37.0,44.0,53.0,50.0,40.0,38.0,28.0,35.0,33.0,29.0,43.0,43.0,38.0,17.0,16.0,17.0,20.0,24.0,7.0,9.0,10.0,15.0,10.0,8.0,7.0,10.0,7.0,3.0,,10.0 N82086,13.0,16.0,15.0,21.0,18.0,16.0,24.0,15.0,25.0,19.0,21.0,29.0,25.0,28.0,33.0,23.0,22.0,26.0,22.0,21.0,23.0,30.0,27.0,22.0,18.0,23.0,26.0,19.0,25.0,25.0,20.0,26.0,26.0,22.0,23.0,16.0,24.0,23.0,27.0,24.0,31.0,23.0,26.0,19.0,25.0,19.0,20.0,17.0,22.0,32.0,19.0,20.0,25.0,26.0,22.0,30.0,24.0,25.0,18.0,29.0,26.0,24.0,28.0,24.0,30.0,27.0,24.0,22.0,20.0,18.0,9.0,13.0,13.0,20.0,19.0,8.0,10.0,12.0,10.0,7.0,11.0,11.0,9.0,4.0,4.0,7.0,6.0,,4.0,2.0,1.0,1.0,1.0,,, N82087,15.0,12.0,13.0,11.0,10.0,17.0,11.0,13.0,13.0,17.0,20.0,10.0,13.0,18.0,9.0,9.0,13.0,7.0,17.0,10.0,15.0,15.0,9.0,9.0,14.0,13.0,11.0,12.0,19.0,17.0,20.0,18.0,12.0,9.0,19.0,13.0,19.0,19.0,21.0,17.0,13.0,19.0,22.0,24.0,16.0,12.0,9.0,18.0,12.0,15.0,15.0,16.0,9.0,15.0,23.0,7.0,16.0,15.0,15.0,12.0,19.0,24.0,21.0,28.0,23.0,23.0,21.0,26.0,15.0,22.0,14.0,13.0,15.0,9.0,16.0,9.0,14.0,11.0,10.0,4.0,7.0,11.0,2.0,1.0,,3.0,1.0,3.0,2.0,2.0,,,,,, N82089,23.0,24.0,27.0,34.0,27.0,29.0,39.0,33.0,36.0,30.0,30.0,41.0,42.0,36.0,20.0,36.0,45.0,31.0,29.0,29.0,35.0,30.0,20.0,21.0,37.0,24.0,28.0,47.0,32.0,24.0,38.0,32.0,36.0,42.0,29.0,31.0,45.0,41.0,44.0,42.0,32.0,38.0,29.0,31.0,43.0,28.0,25.0,23.0,28.0,22.0,31.0,25.0,23.0,17.0,13.0,18.0,22.0,27.0,14.0,17.0,16.0,14.0,16.0,18.0,18.0,13.0,9.0,12.0,11.0,4.0,12.0,9.0,11.0,10.0,9.0,6.0,8.0,6.0,2.0,7.0,2.0,,4.0,1.0,2.0,1.0,,,1.0,1.0,,3.0,2.0,1.0,, N82090,27.0,53.0,39.0,46.0,66.0,44.0,67.0,50.0,64.0,81.0,57.0,65.0,65.0,65.0,64.0,56.0,70.0,46.0,67.0,66.0,49.0,56.0,58.0,66.0,68.0,65.0,77.0,68.0,79.0,93.0,64.0,84.0,84.0,83.0,85.0,96.0,76.0,79.0,93.0,82.0,70.0,86.0,78.0,86.0,74.0,62.0,66.0,67.0,63.0,61.0,75.0,53.0,73.0,68.0,57.0,77.0,75.0,79.0,60.0,57.0,56.0,64.0,59.0,64.0,60.0,76.0,49.0,66.0,58.0,48.0,35.0,40.0,29.0,31.0,42.0,29.0,38.0,28.0,34.0,24.0,13.0,21.0,19.0,11.0,12.0,15.0,13.0,9.0,6.0,6.0,5.0,5.0,4.0,3.0,2.0,4.0 N82091,9.0,14.0,9.0,15.0,14.0,14.0,14.0,12.0,16.0,18.0,14.0,16.0,10.0,20.0,11.0,13.0,13.0,21.0,11.0,18.0,15.0,14.0,12.0,11.0,9.0,19.0,28.0,18.0,19.0,27.0,23.0,25.0,29.0,30.0,21.0,24.0,27.0,22.0,26.0,20.0,24.0,25.0,21.0,19.0,26.0,14.0,14.0,20.0,12.0,13.0,13.0,10.0,16.0,20.0,19.0,11.0,15.0,10.0,13.0,23.0,12.0,13.0,10.0,14.0,10.0,13.0,12.0,17.0,6.0,13.0,6.0,8.0,7.0,9.0,5.0,7.0,3.0,9.0,5.0,3.0,2.0,3.0,4.0,2.0,1.0,1.0,4.0,,1.0,1.0,,,1.0,1.0,,1.0 N82092,23.0,42.0,43.0,46.0,37.0,42.0,41.0,44.0,53.0,39.0,34.0,45.0,42.0,53.0,57.0,47.0,42.0,41.0,60.0,64.0,53.0,45.0,61.0,56.0,53.0,49.0,50.0,52.0,48.0,61.0,55.0,60.0,53.0,46.0,60.0,59.0,51.0,52.0,54.0,48.0,49.0,51.0,45.0,36.0,44.0,43.0,55.0,33.0,42.0,60.0,41.0,42.0,48.0,45.0,53.0,46.0,46.0,48.0,48.0,48.0,62.0,49.0,68.0,69.0,63.0,52.0,47.0,64.0,50.0,48.0,53.0,42.0,36.0,42.0,39.0,35.0,37.0,42.0,42.0,32.0,28.0,24.0,26.0,22.0,22.0,17.0,18.0,12.0,11.0,8.0,9.0,9.0,7.0,6.0,1.0,5.0 N82093,19.0,23.0,25.0,30.0,23.0,32.0,21.0,21.0,23.0,21.0,19.0,25.0,15.0,24.0,29.0,19.0,28.0,19.0,15.0,28.0,21.0,26.0,31.0,21.0,22.0,26.0,33.0,25.0,29.0,30.0,29.0,35.0,32.0,34.0,41.0,44.0,44.0,37.0,41.0,34.0,32.0,21.0,31.0,28.0,27.0,33.0,29.0,27.0,18.0,22.0,33.0,25.0,19.0,20.0,34.0,23.0,28.0,22.0,28.0,20.0,33.0,29.0,31.0,30.0,34.0,19.0,33.0,24.0,17.0,19.0,8.0,15.0,25.0,12.0,21.0,11.0,15.0,16.0,10.0,6.0,6.0,15.0,7.0,10.0,8.0,6.0,6.0,5.0,2.0,5.0,2.0,1.0,2.0,,4.0, N82094,34.0,45.0,39.0,32.0,45.0,43.0,57.0,47.0,41.0,59.0,57.0,46.0,42.0,47.0,49.0,47.0,50.0,54.0,74.0,52.0,51.0,39.0,32.0,44.0,45.0,52.0,40.0,47.0,38.0,59.0,44.0,56.0,61.0,47.0,66.0,65.0,76.0,72.0,66.0,60.0,54.0,46.0,62.0,43.0,44.0,47.0,45.0,43.0,45.0,50.0,43.0,37.0,46.0,62.0,56.0,54.0,48.0,72.0,47.0,45.0,53.0,70.0,41.0,62.0,68.0,54.0,46.0,38.0,50.0,42.0,33.0,37.0,38.0,30.0,42.0,36.0,35.0,44.0,33.0,26.0,22.0,24.0,16.0,16.0,20.0,17.0,8.0,10.0,7.0,3.0,5.0,4.0,6.0,1.0,2.0,1.0 N82095,20.0,15.0,18.0,22.0,25.0,24.0,30.0,24.0,28.0,27.0,25.0,23.0,21.0,22.0,26.0,21.0,37.0,32.0,32.0,40.0,32.0,34.0,31.0,30.0,35.0,34.0,40.0,34.0,43.0,33.0,47.0,58.0,41.0,46.0,40.0,34.0,43.0,38.0,36.0,30.0,41.0,32.0,34.0,35.0,34.0,28.0,30.0,39.0,14.0,28.0,29.0,45.0,21.0,34.0,34.0,25.0,30.0,28.0,30.0,25.0,29.0,27.0,29.0,27.0,18.0,21.0,18.0,21.0,18.0,23.0,21.0,12.0,12.0,18.0,13.0,18.0,18.0,17.0,29.0,9.0,6.0,8.0,7.0,2.0,8.0,10.0,2.0,3.0,3.0,1.0,2.0,2.0,2.0,,1.0,2.0 N82097,35.0,46.0,56.0,48.0,47.0,52.0,59.0,39.0,64.0,62.0,53.0,65.0,42.0,58.0,50.0,69.0,57.0,74.0,57.0,61.0,53.0,51.0,51.0,52.0,58.0,69.0,53.0,65.0,68.0,71.0,84.0,66.0,60.0,71.0,75.0,77.0,76.0,77.0,89.0,63.0,52.0,66.0,62.0,60.0,62.0,70.0,58.0,45.0,49.0,58.0,47.0,51.0,53.0,64.0,56.0,54.0,56.0,61.0,57.0,47.0,47.0,58.0,54.0,39.0,59.0,39.0,37.0,42.0,39.0,36.0,28.0,40.0,26.0,29.0,27.0,25.0,22.0,17.0,19.0,11.0,21.0,13.0,13.0,5.0,9.0,5.0,3.0,6.0,7.0,4.0,4.0,4.0,1.0,2.0,2.0,5.0 N82099,54.0,62.0,44.0,62.0,58.0,68.0,77.0,61.0,63.0,64.0,66.0,58.0,56.0,53.0,58.0,69.0,55.0,58.0,49.0,46.0,58.0,58.0,40.0,38.0,59.0,54.0,63.0,64.0,84.0,81.0,71.0,81.0,70.0,91.0,91.0,100.0,81.0,92.0,84.0,69.0,84.0,79.0,70.0,81.0,69.0,76.0,75.0,48.0,52.0,58.0,55.0,60.0,51.0,74.0,54.0,53.0,50.0,56.0,43.0,43.0,58.0,43.0,43.0,36.0,51.0,48.0,36.0,43.0,20.0,31.0,24.0,28.0,25.0,31.0,21.0,22.0,15.0,26.0,15.0,11.0,9.0,9.0,11.0,7.0,7.0,8.0,4.0,6.0,2.0,3.0,,1.0,2.0,1.0,,1.0 N82101,10.0,14.0,13.0,16.0,14.0,12.0,17.0,9.0,18.0,17.0,22.0,13.0,17.0,15.0,19.0,18.0,18.0,13.0,10.0,22.0,15.0,14.0,16.0,15.0,19.0,14.0,21.0,11.0,25.0,30.0,19.0,24.0,26.0,22.0,15.0,29.0,24.0,17.0,26.0,19.0,21.0,13.0,23.0,16.0,21.0,15.0,12.0,18.0,16.0,16.0,15.0,17.0,14.0,21.0,17.0,22.0,11.0,20.0,12.0,19.0,14.0,27.0,22.0,14.0,21.0,19.0,14.0,17.0,9.0,9.0,16.0,10.0,16.0,20.0,9.0,10.0,18.0,17.0,14.0,13.0,9.0,6.0,3.0,7.0,7.0,7.0,4.0,2.0,,1.0,,1.0,1.0,,1.0, N82103,53.0,74.0,70.0,68.0,80.0,71.0,76.0,81.0,63.0,79.0,47.0,72.0,66.0,77.0,78.0,82.0,65.0,86.0,58.0,58.0,57.0,49.0,64.0,72.0,81.0,68.0,75.0,68.0,90.0,81.0,95.0,76.0,87.0,97.0,106.0,109.0,94.0,95.0,86.0,94.0,82.0,82.0,67.0,76.0,71.0,65.0,69.0,46.0,50.0,54.0,54.0,51.0,59.0,59.0,63.0,65.0,64.0,62.0,52.0,42.0,56.0,44.0,53.0,65.0,56.0,42.0,39.0,34.0,41.0,33.0,35.0,24.0,32.0,25.0,25.0,21.0,23.0,24.0,18.0,15.0,13.0,11.0,7.0,11.0,8.0,7.0,10.0,5.0,3.0,3.0,1.0,3.0,3.0,1.0,1.0, N82104,16.0,17.0,12.0,20.0,19.0,21.0,20.0,19.0,21.0,18.0,22.0,16.0,28.0,26.0,23.0,24.0,15.0,27.0,23.0,20.0,24.0,22.0,23.0,19.0,22.0,25.0,25.0,19.0,29.0,27.0,30.0,36.0,41.0,31.0,31.0,40.0,23.0,26.0,32.0,35.0,36.0,33.0,28.0,33.0,18.0,19.0,27.0,31.0,22.0,28.0,26.0,28.0,24.0,27.0,26.0,35.0,35.0,30.0,39.0,27.0,27.0,29.0,38.0,33.0,25.0,30.0,32.0,38.0,22.0,13.0,29.0,24.0,23.0,16.0,19.0,24.0,16.0,15.0,30.0,14.0,10.0,10.0,4.0,9.0,6.0,8.0,9.0,7.0,3.0,7.0,2.0,3.0,3.0,1.0,,6.0 N82106,14.0,16.0,9.0,13.0,21.0,9.0,20.0,9.0,16.0,21.0,22.0,8.0,17.0,14.0,12.0,22.0,23.0,16.0,18.0,15.0,17.0,13.0,12.0,23.0,19.0,23.0,17.0,24.0,25.0,18.0,22.0,23.0,25.0,20.0,25.0,22.0,15.0,20.0,24.0,26.0,23.0,20.0,21.0,22.0,18.0,23.0,12.0,12.0,11.0,21.0,24.0,21.0,24.0,16.0,31.0,26.0,20.0,30.0,24.0,31.0,24.0,33.0,35.0,31.0,26.0,34.0,22.0,20.0,30.0,25.0,30.0,31.0,16.0,22.0,34.0,30.0,18.0,22.0,18.0,23.0,11.0,10.0,3.0,7.0,9.0,10.0,4.0,8.0,5.0,12.0,6.0,4.0,1.0,2.0,1.0,1.0 N82107,17.0,8.0,10.0,5.0,3.0,5.0,7.0,6.0,8.0,8.0,7.0,6.0,14.0,5.0,11.0,4.0,7.0,7.0,6.0,5.0,6.0,3.0,4.0,9.0,8.0,11.0,12.0,13.0,11.0,12.0,11.0,13.0,27.0,9.0,17.0,22.0,17.0,17.0,18.0,14.0,17.0,17.0,13.0,20.0,10.0,19.0,22.0,15.0,13.0,10.0,12.0,13.0,11.0,13.0,10.0,11.0,10.0,14.0,7.0,16.0,11.0,12.0,12.0,13.0,12.0,11.0,18.0,11.0,13.0,11.0,10.0,11.0,10.0,15.0,15.0,11.0,11.0,13.0,12.0,7.0,5.0,6.0,4.0,2.0,4.0,1.0,4.0,1.0,3.0,1.0,2.0,2.0,2.0,,,1.0 N82108,42.0,40.0,38.0,42.0,53.0,52.0,54.0,52.0,55.0,55.0,65.0,56.0,40.0,56.0,60.0,41.0,45.0,50.0,59.0,72.0,68.0,68.0,71.0,38.0,46.0,50.0,43.0,41.0,48.0,35.0,65.0,35.0,52.0,51.0,53.0,54.0,59.0,77.0,68.0,66.0,70.0,66.0,76.0,53.0,49.0,56.0,68.0,39.0,52.0,47.0,50.0,49.0,68.0,49.0,46.0,40.0,46.0,40.0,30.0,35.0,42.0,46.0,35.0,35.0,38.0,29.0,42.0,52.0,41.0,34.0,36.0,43.0,32.0,30.0,26.0,32.0,27.0,35.0,34.0,24.0,22.0,19.0,11.0,10.0,13.0,14.0,7.0,5.0,7.0,3.0,3.0,6.0,3.0,2.0,4.0,6.0 N82109,31.0,27.0,29.0,37.0,39.0,37.0,40.0,47.0,42.0,42.0,34.0,32.0,31.0,36.0,33.0,44.0,40.0,27.0,33.0,38.0,21.0,25.0,22.0,28.0,29.0,28.0,29.0,22.0,39.0,34.0,37.0,52.0,39.0,44.0,48.0,57.0,47.0,47.0,58.0,49.0,46.0,32.0,36.0,41.0,42.0,47.0,37.0,34.0,31.0,28.0,34.0,30.0,16.0,38.0,30.0,31.0,25.0,31.0,47.0,26.0,33.0,37.0,42.0,28.0,31.0,37.0,34.0,34.0,30.0,28.0,17.0,23.0,16.0,26.0,19.0,17.0,18.0,13.0,10.0,10.0,3.0,11.0,3.0,10.0,6.0,8.0,3.0,2.0,2.0,3.0,2.0,3.0,,1.0,1.0,1.0 N82110,40.0,37.0,41.0,50.0,48.0,63.0,53.0,58.0,62.0,59.0,46.0,47.0,63.0,71.0,53.0,56.0,51.0,65.0,57.0,44.0,41.0,44.0,38.0,45.0,35.0,36.0,41.0,45.0,61.0,38.0,48.0,51.0,44.0,64.0,81.0,55.0,62.0,67.0,67.0,60.0,66.0,54.0,56.0,39.0,60.0,43.0,46.0,40.0,49.0,41.0,49.0,46.0,57.0,37.0,62.0,58.0,60.0,57.0,37.0,42.0,50.0,54.0,50.0,59.0,59.0,44.0,45.0,53.0,48.0,45.0,25.0,29.0,34.0,42.0,23.0,21.0,25.0,21.0,19.0,17.0,15.0,10.0,15.0,6.0,6.0,4.0,8.0,7.0,4.0,5.0,5.0,2.0,,1.0,1.0,2.0 N82113,46.0,50.0,53.0,58.0,68.0,68.0,69.0,68.0,75.0,60.0,81.0,57.0,69.0,91.0,74.0,71.0,60.0,75.0,64.0,61.0,61.0,61.0,63.0,69.0,73.0,65.0,74.0,94.0,105.0,83.0,94.0,106.0,94.0,100.0,120.0,120.0,125.0,121.0,100.0,95.0,90.0,100.0,95.0,96.0,95.0,77.0,56.0,79.0,66.0,70.0,72.0,56.0,46.0,46.0,52.0,42.0,32.0,40.0,32.0,34.0,33.0,36.0,38.0,28.0,28.0,21.0,26.0,13.0,14.0,22.0,25.0,13.0,12.0,17.0,14.0,13.0,15.0,8.0,13.0,7.0,10.0,3.0,5.0,2.0,2.0,3.0,8.0,4.0,4.0,3.0,,1.0,,,,4.0 N82115,36.0,44.0,28.0,45.0,46.0,45.0,50.0,61.0,45.0,40.0,51.0,49.0,47.0,46.0,48.0,40.0,36.0,46.0,47.0,39.0,48.0,48.0,64.0,63.0,71.0,84.0,77.0,87.0,80.0,108.0,81.0,80.0,68.0,94.0,94.0,72.0,95.0,73.0,87.0,73.0,83.0,79.0,71.0,69.0,52.0,63.0,54.0,52.0,33.0,53.0,44.0,52.0,39.0,57.0,41.0,29.0,56.0,64.0,56.0,45.0,49.0,55.0,42.0,51.0,50.0,48.0,35.0,70.0,48.0,47.0,35.0,50.0,36.0,35.0,27.0,30.0,31.0,30.0,32.0,19.0,20.0,18.0,16.0,12.0,4.0,12.0,5.0,4.0,4.0,5.0,2.0,,3.0,2.0,,2.0 N82116,36.0,49.0,41.0,50.0,33.0,63.0,67.0,51.0,55.0,57.0,48.0,44.0,63.0,43.0,41.0,36.0,53.0,33.0,36.0,41.0,43.0,39.0,35.0,42.0,43.0,58.0,34.0,52.0,41.0,52.0,63.0,55.0,70.0,57.0,63.0,64.0,65.0,81.0,67.0,66.0,68.0,61.0,53.0,58.0,59.0,47.0,55.0,46.0,39.0,30.0,41.0,45.0,54.0,57.0,54.0,46.0,60.0,57.0,43.0,34.0,47.0,53.0,53.0,54.0,44.0,44.0,44.0,42.0,41.0,39.0,44.0,29.0,28.0,36.0,26.0,30.0,25.0,26.0,23.0,8.0,19.0,16.0,15.0,11.0,11.0,8.0,14.0,5.0,3.0,9.0,3.0,4.0,2.0,3.0,,5.0 N82117,69.0,60.0,56.0,55.0,59.0,65.0,54.0,81.0,59.0,53.0,57.0,55.0,54.0,52.0,49.0,40.0,45.0,61.0,363.0,899.0,1182.0,1273.0,1531.0,1817.0,1886.0,1892.0,1865.0,1968.0,1722.0,1574.0,1426.0,1360.0,1300.0,1048.0,760.0,745.0,678.0,533.0,519.0,470.0,406.0,391.0,363.0,302.0,272.0,280.0,245.0,221.0,167.0,155.0,196.0,151.0,137.0,140.0,126.0,114.0,110.0,92.0,103.0,93.0,80.0,88.0,106.0,73.0,77.0,58.0,56.0,59.0,33.0,44.0,42.0,29.0,22.0,39.0,32.0,23.0,31.0,34.0,30.0,18.0,14.0,13.0,12.0,7.0,8.0,9.0,6.0,6.0,4.0,4.0,2.0,,2.0,,,4.0 N82617,27.0,18.0,17.0,12.0,18.0,18.0,14.0,19.0,16.0,18.0,15.0,21.0,11.0,9.0,8.0,15.0,13.0,13.0,58.0,121.0,162.0,169.0,226.0,225.0,260.0,291.0,327.0,321.0,273.0,212.0,235.0,235.0,193.0,185.0,179.0,147.0,161.0,137.0,112.0,108.0,88.0,85.0,70.0,58.0,46.0,56.0,49.0,42.0,30.0,28.0,23.0,15.0,24.0,19.0,23.0,17.0,21.0,28.0,14.0,20.0,17.0,22.0,15.0,19.0,20.0,19.0,9.0,10.0,17.0,9.0,14.0,20.0,11.0,14.0,8.0,9.0,14.0,11.0,7.0,6.0,8.0,9.0,10.0,3.0,1.0,4.0,6.0,5.0,1.0,2.0,1.0,,,,,2.0 N82633,12.0,17.0,19.0,12.0,15.0,20.0,20.0,25.0,17.0,26.0,25.0,23.0,27.0,22.0,33.0,19.0,21.0,24.0,21.0,17.0,20.0,12.0,15.0,17.0,18.0,15.0,22.0,24.0,21.0,17.0,16.0,20.0,27.0,26.0,25.0,20.0,19.0,23.0,20.0,20.0,24.0,19.0,31.0,20.0,26.0,23.0,21.0,14.0,28.0,20.0,23.0,21.0,20.0,17.0,16.0,32.0,27.0,23.0,28.0,17.0,18.0,16.0,24.0,22.0,26.0,28.0,22.0,25.0,23.0,20.0,19.0,12.0,24.0,15.0,12.0,15.0,17.0,14.0,18.0,17.0,13.0,9.0,2.0,8.0,6.0,20.0,7.0,6.0,8.0,3.0,3.0,3.0,2.0,1.0,3.0,4.0 N82641,11.0,13.0,20.0,16.0,14.0,26.0,22.0,20.0,27.0,21.0,28.0,24.0,36.0,24.0,34.0,29.0,29.0,29.0,33.0,33.0,25.0,23.0,25.0,19.0,51.0,46.0,37.0,36.0,63.0,56.0,57.0,59.0,65.0,48.0,57.0,70.0,73.0,60.0,81.0,56.0,51.0,70.0,70.0,69.0,59.0,74.0,55.0,63.0,70.0,43.0,60.0,47.0,71.0,63.0,44.0,45.0,48.0,38.0,37.0,38.0,37.0,30.0,44.0,35.0,30.0,26.0,34.0,27.0,24.0,14.0,21.0,26.0,25.0,21.0,18.0,13.0,13.0,16.0,16.0,9.0,10.0,12.0,10.0,11.0,9.0,5.0,4.0,5.0,2.0,1.0,5.0,3.0,,1.0,,1.0 N82645,40.0,52.0,47.0,46.0,41.0,51.0,44.0,46.0,43.0,45.0,52.0,41.0,43.0,41.0,48.0,47.0,55.0,76.0,68.0,57.0,69.0,77.0,118.0,134.0,125.0,162.0,152.0,147.0,163.0,136.0,123.0,106.0,134.0,135.0,119.0,99.0,93.0,94.0,83.0,84.0,83.0,78.0,60.0,77.0,87.0,87.0,78.0,56.0,46.0,49.0,38.0,38.0,40.0,33.0,48.0,36.0,44.0,39.0,35.0,51.0,37.0,27.0,32.0,36.0,24.0,27.0,30.0,22.0,20.0,20.0,26.0,14.0,18.0,17.0,16.0,18.0,11.0,9.0,17.0,8.0,5.0,11.0,7.0,4.0,4.0,6.0,7.0,4.0,4.0,3.0,,3.0,2.0,1.0,,1.0 N82646,51.0,53.0,67.0,50.0,59.0,70.0,63.0,68.0,78.0,74.0,77.0,95.0,90.0,83.0,70.0,63.0,77.0,110.0,168.0,172.0,162.0,123.0,102.0,93.0,94.0,82.0,78.0,69.0,86.0,77.0,98.0,79.0,94.0,98.0,122.0,100.0,112.0,100.0,87.0,96.0,107.0,80.0,77.0,83.0,74.0,89.0,75.0,54.0,69.0,49.0,56.0,61.0,58.0,65.0,41.0,49.0,52.0,45.0,31.0,48.0,48.0,35.0,40.0,41.0,24.0,35.0,28.0,39.0,28.0,22.0,20.0,26.0,18.0,21.0,11.0,12.0,13.0,19.0,11.0,9.0,8.0,7.0,7.0,10.0,7.0,7.0,3.0,4.0,5.0,3.0,2.0,4.0,1.0,1.0,1.0,1.0 N82648,13.0,15.0,19.0,17.0,17.0,13.0,17.0,12.0,21.0,16.0,15.0,11.0,6.0,16.0,22.0,13.0,15.0,14.0,11.0,7.0,16.0,11.0,10.0,20.0,20.0,30.0,11.0,21.0,25.0,21.0,25.0,19.0,25.0,24.0,18.0,29.0,22.0,25.0,21.0,22.0,18.0,19.0,18.0,24.0,19.0,17.0,15.0,16.0,14.0,16.0,16.0,10.0,14.0,20.0,15.0,21.0,23.0,17.0,22.0,21.0,23.0,19.0,18.0,16.0,10.0,21.0,17.0,11.0,15.0,17.0,6.0,9.0,9.0,7.0,6.0,8.0,4.0,11.0,2.0,2.0,5.0,4.0,3.0,6.0,1.0,1.0,5.0,4.0,2.0,,,,2.0,,, N82650,30.0,25.0,41.0,46.0,35.0,40.0,36.0,46.0,34.0,45.0,42.0,36.0,47.0,44.0,36.0,39.0,43.0,37.0,33.0,37.0,28.0,36.0,31.0,28.0,30.0,28.0,26.0,26.0,33.0,37.0,40.0,38.0,43.0,50.0,52.0,55.0,53.0,46.0,42.0,44.0,54.0,31.0,49.0,33.0,43.0,35.0,34.0,25.0,30.0,30.0,19.0,23.0,23.0,16.0,28.0,28.0,21.0,23.0,24.0,27.0,32.0,30.0,29.0,22.0,34.0,27.0,22.0,26.0,21.0,22.0,16.0,23.0,16.0,7.0,7.0,9.0,11.0,13.0,5.0,7.0,3.0,11.0,7.0,2.0,3.0,5.0,2.0,1.0,3.0,1.0,1.0,,,,1.0, N82651,19.0,21.0,12.0,15.0,17.0,15.0,21.0,21.0,33.0,29.0,20.0,29.0,21.0,18.0,26.0,20.0,23.0,33.0,33.0,28.0,17.0,17.0,29.0,24.0,27.0,19.0,32.0,35.0,42.0,27.0,38.0,28.0,28.0,36.0,36.0,34.0,39.0,52.0,43.0,41.0,46.0,33.0,38.0,34.0,45.0,40.0,26.0,26.0,35.0,35.0,33.0,25.0,21.0,26.0,26.0,25.0,25.0,34.0,18.0,26.0,40.0,38.0,36.0,28.0,27.0,20.0,21.0,27.0,21.0,18.0,19.0,24.0,26.0,28.0,30.0,23.0,27.0,18.0,22.0,11.0,17.0,6.0,12.0,8.0,13.0,8.0,8.0,3.0,4.0,4.0,4.0,3.0,,1.0,,1.0 N82655,7.0,5.0,4.0,5.0,8.0,15.0,12.0,11.0,16.0,14.0,16.0,15.0,14.0,15.0,11.0,14.0,18.0,17.0,23.0,9.0,14.0,12.0,13.0,9.0,7.0,15.0,12.0,8.0,14.0,10.0,12.0,23.0,17.0,19.0,14.0,17.0,17.0,15.0,25.0,7.0,17.0,11.0,14.0,26.0,22.0,19.0,17.0,11.0,12.0,13.0,12.0,12.0,22.0,14.0,17.0,18.0,14.0,14.0,20.0,15.0,17.0,11.0,23.0,18.0,14.0,18.0,14.0,14.0,15.0,12.0,19.0,12.0,15.0,9.0,9.0,8.0,12.0,8.0,10.0,7.0,12.0,11.0,7.0,5.0,6.0,6.0,2.0,4.0,4.0,3.0,5.0,4.0,2.0,3.0,1.0,2.0 N82662,51.0,63.0,70.0,60.0,72.0,79.0,55.0,71.0,78.0,88.0,81.0,76.0,74.0,62.0,80.0,76.0,74.0,63.0,86.0,54.0,58.0,71.0,55.0,51.0,58.0,58.0,66.0,50.0,53.0,76.0,76.0,69.0,60.0,64.0,74.0,74.0,76.0,85.0,82.0,72.0,70.0,79.0,74.0,78.0,69.0,65.0,71.0,55.0,60.0,65.0,65.0,64.0,51.0,43.0,44.0,53.0,44.0,46.0,42.0,38.0,52.0,41.0,32.0,26.0,35.0,39.0,22.0,29.0,20.0,25.0,16.0,22.0,22.0,14.0,25.0,16.0,12.0,10.0,9.0,15.0,9.0,14.0,18.0,8.0,6.0,6.0,4.0,4.0,7.0,6.0,1.0,2.0,1.0,1.0,,2.0 N82663,22.0,22.0,32.0,24.0,39.0,30.0,50.0,37.0,28.0,35.0,32.0,24.0,31.0,26.0,22.0,24.0,21.0,26.0,24.0,21.0,19.0,23.0,25.0,16.0,16.0,25.0,22.0,30.0,16.0,30.0,32.0,34.0,43.0,31.0,40.0,36.0,33.0,28.0,40.0,36.0,38.0,39.0,37.0,35.0,28.0,25.0,25.0,32.0,14.0,17.0,23.0,17.0,26.0,26.0,37.0,23.0,31.0,16.0,25.0,26.0,24.0,30.0,18.0,30.0,22.0,23.0,18.0,30.0,25.0,22.0,15.0,24.0,16.0,14.0,24.0,17.0,11.0,24.0,18.0,10.0,13.0,9.0,11.0,5.0,3.0,4.0,4.0,7.0,6.0,1.0,5.0,4.0,2.0,1.0,, N82664,16.0,6.0,7.0,12.0,8.0,11.0,20.0,10.0,19.0,19.0,14.0,20.0,20.0,16.0,17.0,22.0,22.0,13.0,18.0,14.0,19.0,16.0,12.0,9.0,17.0,18.0,9.0,7.0,17.0,20.0,11.0,27.0,20.0,14.0,22.0,25.0,16.0,19.0,23.0,28.0,26.0,31.0,23.0,25.0,27.0,21.0,18.0,22.0,23.0,19.0,13.0,16.0,24.0,13.0,22.0,23.0,17.0,13.0,23.0,16.0,20.0,22.0,19.0,24.0,21.0,15.0,22.0,16.0,15.0,9.0,12.0,12.0,9.0,7.0,12.0,7.0,5.0,14.0,7.0,7.0,5.0,8.0,5.0,3.0,2.0,7.0,4.0,2.0,3.0,1.0,3.0,1.0,1.0,1.0,2.0,1.0 N82668,27.0,29.0,21.0,26.0,25.0,33.0,27.0,26.0,25.0,26.0,25.0,17.0,24.0,16.0,18.0,20.0,20.0,24.0,15.0,19.0,17.0,16.0,19.0,22.0,20.0,23.0,27.0,31.0,26.0,36.0,37.0,29.0,32.0,35.0,34.0,41.0,38.0,28.0,17.0,22.0,37.0,17.0,21.0,25.0,20.0,25.0,22.0,20.0,21.0,30.0,19.0,22.0,20.0,21.0,27.0,20.0,23.0,19.0,19.0,29.0,16.0,20.0,18.0,24.0,14.0,11.0,21.0,8.0,15.0,13.0,7.0,13.0,8.0,8.0,5.0,10.0,10.0,9.0,8.0,3.0,10.0,7.0,5.0,2.0,1.0,1.0,4.0,5.0,,1.0,,,1.0,1.0,, N82669,15.0,17.0,20.0,20.0,18.0,13.0,37.0,14.0,25.0,21.0,22.0,22.0,17.0,16.0,22.0,18.0,13.0,10.0,22.0,16.0,11.0,17.0,10.0,20.0,24.0,24.0,31.0,24.0,32.0,30.0,26.0,33.0,32.0,27.0,35.0,32.0,29.0,33.0,34.0,20.0,31.0,32.0,40.0,31.0,30.0,30.0,26.0,15.0,30.0,23.0,30.0,24.0,29.0,34.0,27.0,34.0,22.0,23.0,21.0,22.0,16.0,25.0,28.0,22.0,20.0,18.0,23.0,18.0,24.0,18.0,19.0,21.0,18.0,26.0,12.0,13.0,17.0,9.0,17.0,9.0,9.0,8.0,5.0,3.0,7.0,6.0,2.0,4.0,3.0,,2.0,1.0,2.0,1.0,, N82671,12.0,8.0,12.0,10.0,15.0,17.0,11.0,17.0,11.0,11.0,11.0,12.0,21.0,11.0,13.0,11.0,12.0,18.0,14.0,12.0,17.0,13.0,19.0,15.0,18.0,23.0,34.0,37.0,39.0,38.0,31.0,25.0,39.0,30.0,31.0,35.0,31.0,30.0,34.0,32.0,31.0,30.0,28.0,29.0,32.0,30.0,31.0,23.0,33.0,22.0,19.0,29.0,16.0,22.0,20.0,21.0,26.0,22.0,21.0,15.0,16.0,20.0,14.0,19.0,11.0,11.0,10.0,15.0,17.0,10.0,14.0,9.0,11.0,8.0,8.0,6.0,7.0,4.0,8.0,4.0,3.0,5.0,1.0,5.0,3.0,,1.0,2.0,,1.0,,1.0,,,, N82676,18.0,17.0,9.0,20.0,16.0,22.0,26.0,33.0,17.0,35.0,34.0,21.0,28.0,22.0,40.0,29.0,40.0,36.0,24.0,35.0,27.0,33.0,23.0,20.0,16.0,25.0,15.0,27.0,19.0,34.0,20.0,14.0,22.0,27.0,29.0,33.0,31.0,26.0,24.0,26.0,19.0,31.0,14.0,23.0,26.0,25.0,29.0,25.0,21.0,15.0,20.0,35.0,42.0,30.0,29.0,35.0,33.0,20.0,27.0,35.0,36.0,34.0,37.0,41.0,33.0,29.0,31.0,23.0,24.0,33.0,16.0,26.0,22.0,9.0,25.0,16.0,11.0,12.0,14.0,9.0,5.0,4.0,5.0,1.0,2.0,5.0,,7.0,4.0,1.0,4.0,3.0,4.0,,, N82678,26.0,19.0,15.0,16.0,21.0,23.0,24.0,29.0,19.0,17.0,36.0,23.0,37.0,23.0,32.0,25.0,27.0,28.0,18.0,16.0,20.0,21.0,14.0,20.0,22.0,18.0,23.0,13.0,14.0,20.0,20.0,24.0,21.0,25.0,23.0,35.0,23.0,20.0,26.0,36.0,36.0,24.0,29.0,24.0,18.0,27.0,23.0,22.0,22.0,21.0,17.0,19.0,25.0,30.0,29.0,16.0,22.0,18.0,15.0,17.0,22.0,26.0,18.0,18.0,21.0,14.0,13.0,23.0,15.0,9.0,16.0,10.0,12.0,9.0,6.0,10.0,17.0,7.0,12.0,6.0,7.0,5.0,4.0,5.0,2.0,6.0,1.0,,3.0,3.0,1.0,,1.0,,, N83001,72.0,89.0,97.0,101.0,71.0,95.0,99.0,85.0,89.0,91.0,101.0,102.0,95.0,96.0,113.0,90.0,95.0,96.0,69.0,90.0,79.0,101.0,83.0,85.0,84.0,103.0,97.0,77.0,107.0,85.0,81.0,101.0,80.0,105.0,100.0,106.0,114.0,107.0,95.0,101.0,94.0,100.0,114.0,86.0,93.0,100.0,90.0,76.0,76.0,83.0,87.0,82.0,94.0,100.0,99.0,97.0,103.0,102.0,108.0,103.0,109.0,93.0,87.0,96.0,121.0,68.0,88.0,72.0,66.0,62.0,52.0,47.0,62.0,55.0,49.0,60.0,55.0,47.0,50.0,32.0,25.0,35.0,35.0,24.0,16.0,23.0,17.0,20.0,12.0,12.0,6.0,3.0,4.0,8.0,2.0,3.0 N83002,49.0,45.0,50.0,53.0,49.0,72.0,80.0,64.0,86.0,69.0,63.0,76.0,77.0,82.0,77.0,76.0,85.0,83.0,83.0,64.0,67.0,68.0,68.0,64.0,62.0,65.0,89.0,67.0,80.0,69.0,71.0,80.0,86.0,101.0,83.0,68.0,76.0,89.0,80.0,90.0,93.0,88.0,75.0,79.0,86.0,76.0,89.0,67.0,71.0,81.0,78.0,95.0,90.0,87.0,92.0,68.0,95.0,73.0,78.0,79.0,75.0,79.0,72.0,69.0,72.0,73.0,61.0,43.0,55.0,52.0,52.0,61.0,41.0,47.0,52.0,49.0,41.0,49.0,48.0,41.0,35.0,32.0,30.0,32.0,21.0,21.0,18.0,18.0,9.0,11.0,13.0,6.0,5.0,2.0,1.0,7.0 N83003,20.0,23.0,37.0,36.0,31.0,34.0,24.0,34.0,45.0,37.0,41.0,50.0,43.0,52.0,42.0,41.0,37.0,39.0,35.0,37.0,43.0,37.0,32.0,34.0,31.0,35.0,31.0,39.0,33.0,33.0,43.0,54.0,42.0,61.0,49.0,54.0,35.0,50.0,47.0,52.0,47.0,38.0,34.0,51.0,40.0,41.0,42.0,38.0,48.0,56.0,49.0,63.0,67.0,66.0,68.0,56.0,57.0,70.0,57.0,62.0,53.0,56.0,55.0,49.0,53.0,44.0,51.0,38.0,50.0,43.0,34.0,47.0,32.0,38.0,34.0,34.0,33.0,42.0,37.0,23.0,23.0,19.0,20.0,21.0,20.0,14.0,13.0,22.0,10.0,9.0,8.0,3.0,8.0,5.0,2.0,1.0 N83005,34.0,58.0,46.0,50.0,45.0,42.0,51.0,55.0,41.0,44.0,42.0,40.0,43.0,45.0,44.0,46.0,59.0,45.0,41.0,40.0,47.0,32.0,43.0,32.0,49.0,34.0,53.0,44.0,51.0,59.0,52.0,65.0,69.0,83.0,70.0,63.0,66.0,45.0,64.0,56.0,44.0,69.0,46.0,55.0,59.0,55.0,50.0,44.0,47.0,39.0,46.0,51.0,63.0,52.0,51.0,61.0,69.0,77.0,61.0,72.0,61.0,64.0,66.0,67.0,51.0,57.0,38.0,44.0,50.0,30.0,45.0,45.0,32.0,34.0,27.0,31.0,29.0,32.0,27.0,36.0,25.0,39.0,27.0,21.0,15.0,10.0,26.0,11.0,11.0,10.0,9.0,8.0,1.0,2.0,1.0,5.0 N83006,18.0,18.0,17.0,20.0,14.0,18.0,16.0,23.0,14.0,17.0,6.0,17.0,16.0,18.0,23.0,15.0,27.0,19.0,19.0,13.0,6.0,30.0,14.0,23.0,18.0,18.0,18.0,21.0,26.0,19.0,21.0,30.0,23.0,35.0,35.0,35.0,17.0,27.0,23.0,23.0,12.0,12.0,26.0,20.0,17.0,20.0,24.0,26.0,17.0,28.0,18.0,21.0,19.0,24.0,23.0,31.0,27.0,35.0,19.0,25.0,32.0,32.0,19.0,26.0,21.0,18.0,21.0,21.0,18.0,21.0,6.0,15.0,16.0,20.0,24.0,15.0,17.0,11.0,26.0,23.0,13.0,10.0,8.0,4.0,5.0,11.0,5.0,3.0,2.0,6.0,1.0,1.0,1.0,,,1.0 N83007,10.0,10.0,25.0,13.0,17.0,14.0,14.0,14.0,12.0,9.0,18.0,16.0,16.0,20.0,20.0,22.0,17.0,19.0,12.0,15.0,17.0,14.0,15.0,11.0,14.0,22.0,23.0,14.0,28.0,23.0,15.0,19.0,20.0,28.0,24.0,20.0,27.0,37.0,19.0,21.0,17.0,26.0,18.0,35.0,28.0,23.0,19.0,16.0,22.0,13.0,27.0,16.0,18.0,30.0,25.0,29.0,21.0,21.0,26.0,26.0,17.0,29.0,20.0,24.0,13.0,18.0,23.0,28.0,15.0,16.0,16.0,12.0,19.0,17.0,16.0,16.0,12.0,21.0,16.0,14.0,12.0,6.0,8.0,7.0,7.0,5.0,8.0,3.0,4.0,,1.0,1.0,,,, N83008,37.0,46.0,60.0,55.0,44.0,48.0,53.0,66.0,56.0,48.0,49.0,43.0,39.0,51.0,47.0,57.0,58.0,44.0,48.0,43.0,33.0,40.0,38.0,59.0,47.0,60.0,45.0,47.0,58.0,57.0,55.0,66.0,63.0,71.0,83.0,84.0,63.0,70.0,63.0,75.0,72.0,48.0,56.0,53.0,60.0,51.0,70.0,50.0,40.0,43.0,55.0,45.0,50.0,50.0,57.0,53.0,56.0,48.0,55.0,48.0,57.0,50.0,65.0,49.0,38.0,44.0,45.0,47.0,50.0,45.0,44.0,45.0,35.0,46.0,33.0,26.0,34.0,36.0,28.0,22.0,20.0,11.0,18.0,16.0,6.0,9.0,6.0,5.0,5.0,2.0,3.0,2.0,1.0,2.0,1.0,4.0 N83009,56.0,55.0,50.0,70.0,45.0,66.0,75.0,77.0,84.0,89.0,60.0,77.0,75.0,92.0,70.0,74.0,84.0,68.0,70.0,83.0,58.0,51.0,67.0,66.0,89.0,65.0,50.0,70.0,74.0,78.0,83.0,94.0,81.0,87.0,76.0,104.0,95.0,115.0,101.0,103.0,95.0,109.0,83.0,75.0,88.0,88.0,66.0,56.0,65.0,64.0,67.0,61.0,56.0,65.0,92.0,80.0,81.0,68.0,79.0,84.0,80.0,81.0,75.0,80.0,91.0,87.0,87.0,91.0,83.0,83.0,59.0,72.0,62.0,58.0,49.0,58.0,46.0,22.0,44.0,31.0,22.0,25.0,16.0,10.0,8.0,14.0,13.0,3.0,10.0,7.0,4.0,10.0,1.0,3.0,2.0,7.0 N83010,18.0,27.0,20.0,30.0,25.0,32.0,26.0,29.0,38.0,37.0,24.0,31.0,37.0,34.0,34.0,39.0,31.0,35.0,29.0,35.0,32.0,45.0,33.0,34.0,34.0,48.0,46.0,34.0,40.0,24.0,44.0,45.0,34.0,54.0,42.0,27.0,46.0,47.0,36.0,43.0,31.0,30.0,35.0,35.0,32.0,46.0,34.0,36.0,42.0,43.0,34.0,44.0,59.0,51.0,53.0,48.0,57.0,67.0,59.0,56.0,62.0,63.0,60.0,63.0,42.0,46.0,56.0,42.0,33.0,36.0,29.0,30.0,26.0,18.0,24.0,31.0,28.0,37.0,44.0,25.0,42.0,30.0,34.0,30.0,27.0,16.0,14.0,24.0,14.0,15.0,9.0,10.0,9.0,4.0,1.0,2.0 N83012,45.0,45.0,44.0,37.0,45.0,47.0,39.0,53.0,45.0,51.0,67.0,48.0,60.0,47.0,58.0,56.0,54.0,48.0,53.0,54.0,50.0,43.0,42.0,55.0,56.0,59.0,49.0,63.0,59.0,60.0,65.0,63.0,56.0,70.0,70.0,71.0,55.0,73.0,95.0,73.0,58.0,72.0,70.0,61.0,75.0,81.0,70.0,56.0,71.0,63.0,80.0,74.0,64.0,72.0,80.0,78.0,82.0,78.0,69.0,95.0,99.0,72.0,66.0,74.0,67.0,73.0,57.0,66.0,44.0,54.0,47.0,62.0,45.0,53.0,53.0,54.0,56.0,57.0,49.0,40.0,22.0,42.0,20.0,28.0,22.0,26.0,20.0,28.0,9.0,7.0,14.0,9.0,7.0,5.0,7.0,6.0 N83013,16.0,16.0,13.0,24.0,21.0,27.0,22.0,22.0,21.0,24.0,28.0,29.0,42.0,27.0,31.0,24.0,29.0,22.0,28.0,25.0,30.0,21.0,23.0,32.0,18.0,19.0,30.0,33.0,31.0,28.0,20.0,23.0,23.0,33.0,31.0,36.0,26.0,39.0,37.0,33.0,41.0,26.0,36.0,44.0,37.0,25.0,31.0,29.0,25.0,32.0,25.0,27.0,19.0,29.0,26.0,15.0,23.0,17.0,27.0,35.0,37.0,33.0,39.0,34.0,29.0,35.0,34.0,34.0,33.0,37.0,28.0,32.0,28.0,27.0,25.0,30.0,22.0,21.0,12.0,14.0,12.0,11.0,11.0,7.0,5.0,11.0,6.0,8.0,5.0,4.0,1.0,4.0,5.0,2.0,1.0,1.0 N83014,58.0,67.0,70.0,55.0,66.0,70.0,66.0,67.0,69.0,70.0,57.0,67.0,62.0,65.0,66.0,65.0,48.0,60.0,54.0,61.0,47.0,51.0,36.0,62.0,71.0,53.0,48.0,60.0,59.0,63.0,70.0,76.0,71.0,85.0,81.0,92.0,84.0,82.0,69.0,78.0,85.0,64.0,53.0,65.0,57.0,64.0,50.0,51.0,44.0,57.0,46.0,53.0,62.0,56.0,76.0,86.0,66.0,63.0,75.0,75.0,85.0,83.0,98.0,69.0,79.0,76.0,65.0,58.0,48.0,46.0,50.0,25.0,39.0,31.0,37.0,44.0,36.0,36.0,24.0,19.0,20.0,25.0,12.0,20.0,20.0,16.0,19.0,9.0,13.0,10.0,6.0,6.0,3.0,4.0,3.0,8.0 N83017,32.0,33.0,28.0,27.0,39.0,32.0,32.0,17.0,31.0,26.0,18.0,20.0,26.0,24.0,25.0,36.0,18.0,33.0,25.0,25.0,25.0,28.0,32.0,24.0,42.0,37.0,52.0,49.0,64.0,49.0,55.0,51.0,63.0,54.0,58.0,56.0,59.0,59.0,51.0,38.0,63.0,51.0,61.0,55.0,45.0,40.0,41.0,31.0,38.0,34.0,46.0,48.0,43.0,44.0,50.0,37.0,36.0,45.0,35.0,32.0,37.0,45.0,37.0,26.0,26.0,28.0,34.0,24.0,39.0,19.0,30.0,29.0,24.0,32.0,30.0,23.0,31.0,37.0,31.0,23.0,18.0,18.0,17.0,18.0,9.0,13.0,5.0,8.0,4.0,1.0,6.0,4.0,4.0,2.0,4.0,5.0 N83018,37.0,42.0,39.0,56.0,46.0,49.0,63.0,51.0,58.0,67.0,55.0,62.0,72.0,60.0,54.0,56.0,67.0,45.0,56.0,54.0,40.0,43.0,47.0,54.0,55.0,44.0,53.0,65.0,65.0,52.0,79.0,55.0,59.0,77.0,68.0,59.0,72.0,63.0,62.0,48.0,62.0,53.0,51.0,42.0,66.0,41.0,30.0,42.0,37.0,46.0,40.0,44.0,59.0,55.0,65.0,60.0,85.0,59.0,74.0,64.0,82.0,67.0,75.0,58.0,57.0,56.0,39.0,53.0,37.0,29.0,24.0,26.0,29.0,23.0,18.0,23.0,22.0,24.0,26.0,18.0,24.0,14.0,13.0,14.0,14.0,19.0,13.0,9.0,11.0,7.0,4.0,4.0,4.0,2.0,,2.0 N83019,22.0,20.0,16.0,17.0,17.0,16.0,29.0,33.0,40.0,37.0,34.0,41.0,37.0,47.0,45.0,52.0,44.0,39.0,36.0,41.0,38.0,36.0,37.0,51.0,38.0,49.0,43.0,41.0,30.0,39.0,38.0,35.0,28.0,33.0,32.0,51.0,35.0,47.0,37.0,42.0,44.0,45.0,44.0,41.0,48.0,38.0,39.0,44.0,40.0,55.0,50.0,63.0,52.0,57.0,68.0,68.0,49.0,52.0,52.0,59.0,56.0,52.0,58.0,46.0,43.0,48.0,46.0,43.0,42.0,57.0,35.0,42.0,44.0,53.0,63.0,52.0,59.0,52.0,58.0,40.0,46.0,32.0,43.0,32.0,25.0,21.0,26.0,21.0,14.0,13.0,9.0,7.0,,5.0,1.0,3.0 N83020,67.0,73.0,75.0,76.0,77.0,74.0,89.0,103.0,98.0,92.0,103.0,96.0,103.0,99.0,95.0,106.0,105.0,104.0,101.0,94.0,93.0,106.0,76.0,89.0,92.0,90.0,110.0,119.0,121.0,104.0,97.0,107.0,126.0,151.0,130.0,112.0,99.0,101.0,133.0,110.0,113.0,102.0,102.0,90.0,114.0,92.0,107.0,88.0,110.0,106.0,125.0,122.0,121.0,124.0,119.0,130.0,122.0,126.0,125.0,128.0,111.0,117.0,136.0,124.0,131.0,133.0,107.0,117.0,96.0,94.0,92.0,82.0,77.0,88.0,94.0,94.0,96.0,99.0,103.0,63.0,75.0,58.0,47.0,56.0,38.0,30.0,25.0,18.0,26.0,26.0,16.0,10.0,10.0,6.0,2.0,9.0 N83021,29.0,54.0,43.0,38.0,46.0,47.0,41.0,44.0,50.0,41.0,46.0,45.0,50.0,77.0,61.0,59.0,47.0,49.0,43.0,44.0,54.0,49.0,48.0,53.0,52.0,56.0,75.0,54.0,57.0,60.0,58.0,49.0,59.0,43.0,57.0,43.0,59.0,55.0,41.0,42.0,49.0,54.0,48.0,65.0,51.0,49.0,59.0,48.0,53.0,40.0,56.0,48.0,47.0,50.0,55.0,62.0,49.0,56.0,48.0,49.0,45.0,48.0,51.0,44.0,45.0,39.0,39.0,36.0,31.0,37.0,26.0,26.0,30.0,30.0,37.0,28.0,33.0,39.0,27.0,30.0,29.0,29.0,18.0,19.0,12.0,12.0,17.0,7.0,11.0,9.0,1.0,5.0,2.0,1.0,4.0,2.0 N83023,39.0,38.0,58.0,65.0,62.0,70.0,56.0,64.0,66.0,72.0,74.0,75.0,75.0,89.0,78.0,75.0,62.0,73.0,62.0,70.0,74.0,61.0,69.0,76.0,63.0,57.0,77.0,79.0,52.0,81.0,80.0,84.0,74.0,81.0,85.0,65.0,83.0,74.0,64.0,77.0,71.0,81.0,75.0,90.0,72.0,64.0,65.0,56.0,66.0,70.0,63.0,67.0,85.0,78.0,108.0,85.0,82.0,78.0,86.0,82.0,95.0,86.0,101.0,70.0,94.0,72.0,71.0,71.0,65.0,73.0,76.0,51.0,80.0,63.0,60.0,55.0,60.0,61.0,61.0,46.0,43.0,23.0,34.0,23.0,15.0,26.0,23.0,15.0,16.0,7.0,10.0,9.0,5.0,5.0,2.0,1.0 N83024,40.0,40.0,35.0,43.0,43.0,40.0,53.0,34.0,45.0,56.0,47.0,38.0,48.0,52.0,35.0,41.0,45.0,50.0,53.0,50.0,45.0,26.0,37.0,32.0,32.0,44.0,45.0,39.0,51.0,41.0,55.0,49.0,51.0,52.0,64.0,51.0,52.0,47.0,69.0,65.0,63.0,48.0,35.0,54.0,55.0,41.0,56.0,48.0,44.0,35.0,36.0,49.0,42.0,55.0,50.0,60.0,52.0,69.0,57.0,64.0,60.0,56.0,57.0,56.0,34.0,42.0,48.0,58.0,46.0,53.0,40.0,48.0,36.0,36.0,32.0,34.0,33.0,41.0,32.0,27.0,33.0,19.0,22.0,11.0,13.0,14.0,15.0,8.0,19.0,5.0,5.0,5.0,2.0,2.0,2.0,6.0 N83025,67.0,106.0,97.0,88.0,81.0,105.0,117.0,104.0,118.0,107.0,104.0,109.0,109.0,98.0,93.0,87.0,95.0,78.0,78.0,83.0,83.0,58.0,91.0,80.0,94.0,101.0,101.0,103.0,98.0,120.0,121.0,118.0,131.0,135.0,146.0,127.0,128.0,147.0,118.0,129.0,113.0,115.0,118.0,89.0,101.0,90.0,90.0,86.0,67.0,75.0,87.0,80.0,84.0,92.0,81.0,77.0,102.0,85.0,86.0,98.0,97.0,97.0,94.0,110.0,86.0,82.0,80.0,86.0,67.0,59.0,60.0,48.0,47.0,41.0,43.0,40.0,29.0,35.0,50.0,28.0,25.0,26.0,33.0,20.0,10.0,11.0,17.0,10.0,11.0,11.0,3.0,,5.0,1.0,1.0,9.0 N83026,10.0,8.0,10.0,12.0,12.0,13.0,12.0,15.0,11.0,15.0,11.0,21.0,12.0,13.0,15.0,14.0,15.0,17.0,11.0,13.0,12.0,11.0,10.0,9.0,11.0,10.0,12.0,16.0,14.0,15.0,15.0,15.0,3.0,13.0,18.0,17.0,23.0,18.0,10.0,21.0,19.0,12.0,14.0,13.0,18.0,14.0,18.0,19.0,18.0,17.0,17.0,15.0,21.0,14.0,16.0,20.0,27.0,21.0,27.0,16.0,28.0,20.0,19.0,28.0,22.0,16.0,22.0,20.0,11.0,17.0,22.0,18.0,19.0,19.0,17.0,18.0,14.0,19.0,21.0,13.0,14.0,16.0,12.0,6.0,4.0,5.0,2.0,7.0,8.0,6.0,2.0,1.0,1.0,1.0,2.0,2.0 N83027,36.0,30.0,34.0,31.0,23.0,32.0,33.0,35.0,31.0,39.0,36.0,41.0,45.0,40.0,38.0,37.0,24.0,54.0,38.0,35.0,30.0,25.0,26.0,30.0,34.0,30.0,47.0,44.0,46.0,42.0,40.0,43.0,52.0,38.0,43.0,39.0,43.0,61.0,45.0,56.0,34.0,42.0,46.0,38.0,38.0,42.0,36.0,33.0,28.0,41.0,43.0,41.0,39.0,46.0,42.0,40.0,40.0,51.0,46.0,51.0,45.0,36.0,41.0,45.0,32.0,31.0,30.0,44.0,31.0,29.0,30.0,31.0,31.0,23.0,35.0,36.0,44.0,39.0,36.0,19.0,27.0,24.0,25.0,14.0,15.0,16.0,9.0,8.0,7.0,13.0,3.0,7.0,9.0,2.0,1.0,5.0 N83028,80.0,110.0,92.0,82.0,100.0,96.0,127.0,138.0,140.0,124.0,150.0,105.0,118.0,141.0,141.0,123.0,123.0,146.0,126.0,118.0,128.0,106.0,129.0,98.0,154.0,130.0,135.0,144.0,136.0,162.0,148.0,146.0,171.0,182.0,170.0,168.0,162.0,154.0,157.0,146.0,159.0,154.0,153.0,148.0,131.0,151.0,139.0,147.0,121.0,137.0,122.0,140.0,143.0,138.0,143.0,129.0,149.0,140.0,150.0,146.0,183.0,202.0,178.0,159.0,172.0,147.0,150.0,141.0,118.0,119.0,108.0,110.0,102.0,73.0,96.0,83.0,77.0,97.0,95.0,55.0,50.0,46.0,42.0,42.0,44.0,27.0,28.0,31.0,26.0,26.0,12.0,18.0,9.0,10.0,3.0,7.0 N83030,29.0,37.0,27.0,37.0,23.0,42.0,36.0,47.0,32.0,39.0,42.0,28.0,25.0,30.0,28.0,31.0,26.0,32.0,28.0,29.0,24.0,24.0,16.0,23.0,23.0,20.0,29.0,28.0,25.0,28.0,28.0,47.0,45.0,48.0,49.0,40.0,30.0,51.0,41.0,42.0,40.0,40.0,43.0,47.0,38.0,38.0,28.0,24.0,21.0,38.0,30.0,25.0,26.0,24.0,32.0,20.0,34.0,34.0,27.0,39.0,37.0,35.0,37.0,37.0,32.0,32.0,36.0,29.0,33.0,21.0,27.0,15.0,31.0,19.0,22.0,19.0,16.0,19.0,26.0,10.0,6.0,13.0,11.0,8.0,11.0,6.0,10.0,6.0,10.0,2.0,8.0,3.0,2.0,3.0,3.0,2.0 N83031,15.0,12.0,15.0,13.0,13.0,11.0,22.0,12.0,24.0,18.0,17.0,19.0,18.0,29.0,21.0,22.0,17.0,22.0,27.0,25.0,21.0,15.0,17.0,15.0,16.0,12.0,13.0,19.0,17.0,22.0,25.0,23.0,26.0,22.0,20.0,18.0,34.0,21.0,20.0,21.0,24.0,20.0,20.0,28.0,24.0,23.0,19.0,14.0,12.0,16.0,15.0,17.0,11.0,16.0,14.0,13.0,20.0,13.0,13.0,15.0,25.0,29.0,12.0,15.0,19.0,17.0,13.0,17.0,16.0,13.0,12.0,9.0,12.0,14.0,7.0,10.0,6.0,7.0,5.0,7.0,2.0,5.0,3.0,1.0,4.0,2.0,2.0,2.0,1.0,,,2.0,2.0,2.0,, N83032,46.0,70.0,87.0,95.0,82.0,70.0,75.0,86.0,73.0,86.0,74.0,81.0,89.0,87.0,90.0,99.0,70.0,67.0,100.0,75.0,79.0,80.0,67.0,68.0,57.0,74.0,76.0,76.0,95.0,92.0,80.0,84.0,96.0,84.0,90.0,94.0,84.0,86.0,92.0,83.0,87.0,82.0,78.0,70.0,73.0,87.0,77.0,85.0,64.0,78.0,75.0,71.0,77.0,65.0,79.0,80.0,83.0,79.0,61.0,60.0,78.0,75.0,69.0,56.0,69.0,49.0,56.0,60.0,69.0,55.0,50.0,46.0,74.0,58.0,46.0,43.0,46.0,34.0,32.0,33.0,25.0,21.0,13.0,8.0,15.0,13.0,14.0,11.0,6.0,4.0,9.0,3.0,1.0,1.0,,5.0 N83033,18.0,17.0,20.0,26.0,17.0,26.0,36.0,29.0,29.0,29.0,29.0,26.0,33.0,48.0,38.0,26.0,32.0,29.0,34.0,27.0,41.0,35.0,25.0,21.0,29.0,37.0,34.0,30.0,39.0,47.0,30.0,29.0,37.0,33.0,32.0,41.0,49.0,43.0,37.0,37.0,48.0,46.0,34.0,35.0,35.0,35.0,24.0,29.0,39.0,35.0,32.0,23.0,43.0,26.0,39.0,49.0,32.0,47.0,45.0,32.0,42.0,40.0,38.0,36.0,40.0,55.0,45.0,42.0,42.0,42.0,40.0,33.0,39.0,36.0,34.0,23.0,27.0,21.0,17.0,14.0,8.0,7.0,12.0,6.0,8.0,6.0,7.0,5.0,7.0,5.0,3.0,2.0,,1.0,1.0,1.0 N83035,25.0,39.0,21.0,25.0,22.0,30.0,31.0,46.0,39.0,47.0,36.0,27.0,44.0,39.0,44.0,49.0,53.0,45.0,55.0,35.0,30.0,43.0,36.0,47.0,50.0,32.0,41.0,39.0,36.0,49.0,48.0,43.0,51.0,56.0,56.0,40.0,44.0,50.0,49.0,40.0,44.0,33.0,49.0,46.0,47.0,53.0,29.0,41.0,29.0,52.0,46.0,36.0,47.0,61.0,74.0,55.0,58.0,60.0,74.0,52.0,47.0,54.0,59.0,52.0,50.0,46.0,45.0,48.0,23.0,33.0,40.0,25.0,29.0,24.0,34.0,31.0,34.0,26.0,30.0,13.0,17.0,21.0,19.0,10.0,15.0,10.0,6.0,11.0,9.0,4.0,4.0,1.0,1.0,4.0,4.0,1.0 N83041,11.0,19.0,17.0,18.0,16.0,20.0,22.0,18.0,20.0,25.0,28.0,39.0,27.0,23.0,24.0,22.0,23.0,41.0,21.0,26.0,24.0,19.0,14.0,11.0,21.0,19.0,23.0,17.0,27.0,22.0,20.0,21.0,20.0,18.0,21.0,22.0,17.0,30.0,30.0,19.0,29.0,32.0,32.0,19.0,24.0,22.0,24.0,22.0,26.0,23.0,32.0,26.0,31.0,33.0,27.0,34.0,42.0,30.0,35.0,28.0,37.0,48.0,39.0,36.0,34.0,36.0,41.0,40.0,24.0,33.0,26.0,45.0,28.0,33.0,26.0,39.0,42.0,35.0,39.0,43.0,35.0,33.0,25.0,14.0,13.0,10.0,11.0,16.0,6.0,6.0,8.0,6.0,3.0,4.0,,3.0 N83043,13.0,17.0,19.0,23.0,16.0,20.0,26.0,25.0,18.0,25.0,32.0,21.0,23.0,27.0,20.0,25.0,17.0,25.0,21.0,18.0,23.0,20.0,15.0,23.0,12.0,20.0,31.0,30.0,30.0,25.0,24.0,29.0,27.0,37.0,38.0,29.0,21.0,28.0,30.0,33.0,34.0,24.0,23.0,18.0,22.0,24.0,30.0,19.0,13.0,21.0,20.0,22.0,33.0,29.0,36.0,27.0,40.0,28.0,34.0,25.0,29.0,30.0,29.0,26.0,31.0,44.0,19.0,20.0,22.0,24.0,20.0,16.0,18.0,13.0,11.0,11.0,13.0,11.0,12.0,5.0,12.0,8.0,7.0,5.0,6.0,9.0,4.0,7.0,3.0,3.0,4.0,2.0,,,1.0, N83045,57.0,66.0,73.0,84.0,67.0,66.0,78.0,68.0,76.0,63.0,78.0,65.0,60.0,83.0,67.0,47.0,56.0,63.0,52.0,61.0,47.0,50.0,33.0,50.0,61.0,47.0,63.0,64.0,83.0,68.0,88.0,85.0,107.0,93.0,106.0,102.0,98.0,86.0,86.0,96.0,90.0,95.0,81.0,91.0,71.0,61.0,60.0,71.0,68.0,67.0,54.0,55.0,56.0,59.0,64.0,64.0,60.0,51.0,50.0,52.0,74.0,67.0,49.0,61.0,43.0,54.0,59.0,46.0,43.0,33.0,46.0,23.0,30.0,29.0,31.0,38.0,35.0,18.0,30.0,21.0,20.0,19.0,12.0,9.0,14.0,9.0,6.0,10.0,7.0,7.0,3.0,5.0,3.0,,,4.0 N83047,21.0,26.0,38.0,34.0,26.0,36.0,29.0,34.0,22.0,29.0,37.0,28.0,34.0,27.0,23.0,29.0,31.0,26.0,18.0,24.0,26.0,19.0,22.0,20.0,19.0,31.0,23.0,20.0,32.0,30.0,35.0,37.0,35.0,48.0,35.0,38.0,39.0,34.0,32.0,27.0,36.0,41.0,34.0,22.0,31.0,19.0,31.0,22.0,24.0,24.0,28.0,26.0,26.0,25.0,29.0,29.0,31.0,29.0,43.0,38.0,37.0,48.0,30.0,48.0,34.0,41.0,29.0,34.0,36.0,30.0,36.0,29.0,33.0,24.0,18.0,31.0,30.0,26.0,28.0,12.0,14.0,16.0,13.0,13.0,15.0,10.0,5.0,13.0,8.0,8.0,7.0,3.0,1.0,1.0,3.0, N83049,16.0,12.0,16.0,18.0,17.0,18.0,18.0,10.0,25.0,19.0,21.0,20.0,17.0,18.0,19.0,16.0,21.0,21.0,26.0,23.0,16.0,21.0,20.0,27.0,16.0,20.0,20.0,28.0,23.0,15.0,22.0,20.0,20.0,27.0,34.0,20.0,22.0,19.0,10.0,32.0,18.0,20.0,16.0,18.0,22.0,16.0,20.0,20.0,17.0,19.0,19.0,19.0,34.0,39.0,36.0,32.0,44.0,43.0,28.0,38.0,26.0,35.0,40.0,35.0,26.0,26.0,31.0,36.0,23.0,23.0,24.0,16.0,18.0,20.0,15.0,15.0,22.0,26.0,26.0,19.0,26.0,17.0,15.0,15.0,10.0,13.0,3.0,14.0,9.0,5.0,3.0,6.0,2.0,3.0,1.0,3.0 N83050,18.0,34.0,28.0,28.0,33.0,38.0,41.0,35.0,24.0,31.0,22.0,26.0,31.0,34.0,42.0,32.0,36.0,29.0,28.0,32.0,27.0,32.0,35.0,35.0,27.0,28.0,31.0,30.0,47.0,40.0,43.0,40.0,42.0,43.0,45.0,42.0,36.0,44.0,39.0,42.0,39.0,38.0,23.0,33.0,30.0,37.0,35.0,44.0,26.0,31.0,34.0,30.0,27.0,38.0,33.0,28.0,37.0,32.0,53.0,37.0,35.0,32.0,35.0,26.0,34.0,32.0,21.0,25.0,22.0,23.0,23.0,18.0,20.0,15.0,21.0,12.0,13.0,15.0,12.0,11.0,8.0,12.0,10.0,4.0,1.0,8.0,1.0,4.0,6.0,1.0,3.0,2.0,1.0,,,5.0 N83053,50.0,48.0,49.0,52.0,42.0,35.0,48.0,49.0,54.0,42.0,49.0,53.0,43.0,34.0,49.0,44.0,48.0,48.0,61.0,40.0,33.0,46.0,49.0,54.0,47.0,73.0,48.0,64.0,59.0,60.0,76.0,66.0,66.0,51.0,81.0,55.0,68.0,55.0,45.0,53.0,65.0,71.0,62.0,52.0,55.0,61.0,53.0,46.0,50.0,39.0,37.0,58.0,52.0,61.0,64.0,65.0,64.0,59.0,50.0,74.0,69.0,73.0,46.0,59.0,59.0,66.0,48.0,43.0,42.0,53.0,34.0,43.0,43.0,41.0,44.0,39.0,40.0,43.0,30.0,30.0,27.0,26.0,16.0,15.0,24.0,24.0,18.0,12.0,10.0,14.0,13.0,8.0,5.0,3.0,1.0,3.0 N83054,11.0,18.0,18.0,22.0,21.0,24.0,22.0,32.0,29.0,24.0,20.0,23.0,32.0,24.0,30.0,23.0,26.0,26.0,20.0,28.0,18.0,27.0,28.0,24.0,27.0,37.0,18.0,40.0,24.0,16.0,19.0,17.0,31.0,32.0,22.0,30.0,35.0,28.0,28.0,29.0,26.0,34.0,36.0,32.0,24.0,20.0,22.0,24.0,27.0,18.0,28.0,25.0,31.0,26.0,31.0,31.0,23.0,23.0,23.0,30.0,25.0,24.0,26.0,37.0,29.0,37.0,31.0,17.0,22.0,24.0,14.0,18.0,14.0,17.0,20.0,14.0,21.0,24.0,13.0,19.0,11.0,6.0,11.0,7.0,6.0,7.0,9.0,3.0,1.0,2.0,2.0,,2.0,,2.0, N83601,46.0,52.0,40.0,56.0,60.0,59.0,69.0,65.0,46.0,68.0,50.0,55.0,53.0,65.0,51.0,45.0,39.0,45.0,39.0,34.0,48.0,42.0,42.0,34.0,38.0,49.0,50.0,59.0,48.0,56.0,71.0,68.0,63.0,72.0,67.0,65.0,79.0,78.0,56.0,60.0,66.0,59.0,58.0,64.0,53.0,54.0,48.0,43.0,33.0,47.0,33.0,42.0,49.0,49.0,44.0,47.0,46.0,34.0,52.0,34.0,36.0,47.0,47.0,37.0,41.0,37.0,33.0,36.0,32.0,44.0,23.0,28.0,25.0,27.0,30.0,26.0,22.0,15.0,12.0,9.0,7.0,7.0,4.0,7.0,2.0,1.0,6.0,3.0,1.0,1.0,,1.0,3.0,1.0,2.0,1.0 N83603,36.0,52.0,44.0,63.0,38.0,49.0,34.0,45.0,43.0,34.0,34.0,64.0,35.0,43.0,48.0,39.0,31.0,36.0,47.0,36.0,30.0,33.0,40.0,32.0,38.0,32.0,38.0,35.0,48.0,72.0,52.0,66.0,58.0,64.0,62.0,63.0,56.0,52.0,72.0,52.0,52.0,52.0,51.0,49.0,32.0,43.0,37.0,35.0,41.0,39.0,48.0,42.0,44.0,54.0,51.0,52.0,50.0,59.0,51.0,52.0,49.0,49.0,51.0,51.0,47.0,49.0,32.0,38.0,22.0,30.0,37.0,28.0,34.0,16.0,27.0,24.0,31.0,26.0,19.0,24.0,14.0,16.0,16.0,17.0,16.0,23.0,7.0,9.0,5.0,6.0,3.0,4.0,6.0,4.0,1.0,3.0 N83605,41.0,39.0,47.0,51.0,45.0,56.0,51.0,44.0,58.0,35.0,44.0,50.0,40.0,39.0,35.0,40.0,43.0,41.0,33.0,45.0,26.0,37.0,24.0,23.0,40.0,30.0,32.0,27.0,36.0,27.0,52.0,34.0,52.0,41.0,55.0,53.0,46.0,57.0,51.0,44.0,61.0,50.0,47.0,56.0,44.0,44.0,44.0,24.0,43.0,31.0,43.0,40.0,34.0,40.0,46.0,51.0,46.0,37.0,35.0,43.0,40.0,39.0,41.0,36.0,40.0,46.0,37.0,36.0,31.0,22.0,21.0,24.0,26.0,21.0,21.0,15.0,19.0,17.0,8.0,9.0,7.0,8.0,7.0,4.0,4.0,8.0,3.0,11.0,6.0,3.0,2.0,3.0,,1.0,,2.0 N83608,85.0,75.0,90.0,98.0,85.0,126.0,96.0,115.0,106.0,118.0,97.0,111.0,116.0,104.0,120.0,102.0,118.0,116.0,95.0,90.0,83.0,94.0,107.0,69.0,99.0,100.0,105.0,113.0,105.0,128.0,113.0,128.0,116.0,106.0,122.0,116.0,140.0,119.0,119.0,115.0,124.0,139.0,116.0,117.0,109.0,114.0,114.0,99.0,66.0,86.0,101.0,120.0,100.0,128.0,111.0,111.0,100.0,103.0,117.0,98.0,108.0,109.0,97.0,100.0,90.0,80.0,91.0,80.0,77.0,65.0,75.0,78.0,48.0,60.0,55.0,48.0,39.0,47.0,46.0,31.0,19.0,16.0,18.0,18.0,19.0,6.0,12.0,11.0,10.0,6.0,2.0,3.0,5.0,1.0,1.0,1.0 N83609,28.0,30.0,34.0,31.0,25.0,28.0,24.0,33.0,37.0,28.0,37.0,37.0,41.0,23.0,24.0,29.0,28.0,36.0,31.0,28.0,18.0,35.0,22.0,21.0,25.0,19.0,25.0,20.0,40.0,32.0,24.0,36.0,33.0,34.0,26.0,33.0,31.0,43.0,23.0,30.0,24.0,32.0,28.0,30.0,26.0,29.0,27.0,24.0,20.0,28.0,29.0,26.0,33.0,32.0,37.0,28.0,29.0,33.0,34.0,34.0,25.0,27.0,38.0,29.0,31.0,32.0,30.0,21.0,24.0,21.0,15.0,15.0,25.0,13.0,17.0,8.0,16.0,23.0,18.0,9.0,8.0,12.0,9.0,10.0,4.0,7.0,8.0,4.0,6.0,5.0,3.0,3.0,1.0,1.0,3.0, N83610,11.0,15.0,9.0,18.0,15.0,13.0,11.0,14.0,13.0,15.0,18.0,3.0,15.0,12.0,15.0,15.0,16.0,16.0,13.0,7.0,14.0,16.0,11.0,12.0,12.0,14.0,16.0,6.0,21.0,18.0,14.0,12.0,13.0,24.0,21.0,22.0,19.0,25.0,15.0,15.0,17.0,24.0,18.0,12.0,7.0,16.0,10.0,17.0,15.0,7.0,11.0,6.0,12.0,8.0,11.0,12.0,13.0,17.0,11.0,18.0,12.0,16.0,17.0,15.0,13.0,19.0,8.0,20.0,15.0,13.0,14.0,12.0,13.0,7.0,4.0,9.0,7.0,7.0,4.0,8.0,4.0,3.0,3.0,3.0,5.0,3.0,4.0,6.0,,4.0,,1.0,3.0,,1.0,3.0 N83614,32.0,40.0,39.0,43.0,48.0,39.0,40.0,37.0,53.0,38.0,43.0,30.0,43.0,44.0,42.0,30.0,32.0,39.0,40.0,23.0,39.0,34.0,26.0,24.0,33.0,35.0,28.0,34.0,28.0,34.0,36.0,52.0,44.0,38.0,55.0,44.0,30.0,64.0,41.0,45.0,37.0,47.0,38.0,39.0,56.0,45.0,50.0,35.0,18.0,38.0,48.0,51.0,40.0,36.0,28.0,35.0,30.0,37.0,50.0,49.0,44.0,36.0,35.0,33.0,37.0,30.0,30.0,31.0,32.0,24.0,26.0,32.0,20.0,17.0,30.0,22.0,20.0,23.0,18.0,15.0,16.0,9.0,20.0,10.0,7.0,13.0,10.0,10.0,7.0,4.0,2.0,,3.0,2.0,,4.0 N83619,43.0,44.0,30.0,30.0,35.0,25.0,38.0,29.0,27.0,33.0,28.0,21.0,17.0,20.0,13.0,19.0,19.0,15.0,15.0,22.0,26.0,19.0,21.0,23.0,24.0,18.0,19.0,24.0,25.0,32.0,26.0,40.0,45.0,57.0,42.0,41.0,40.0,42.0,32.0,42.0,32.0,35.0,35.0,23.0,18.0,30.0,20.0,12.0,17.0,22.0,18.0,22.0,23.0,27.0,32.0,32.0,20.0,31.0,25.0,27.0,34.0,34.0,36.0,30.0,35.0,36.0,31.0,27.0,22.0,17.0,23.0,17.0,16.0,15.0,18.0,20.0,21.0,11.0,14.0,11.0,8.0,12.0,6.0,6.0,10.0,11.0,9.0,5.0,7.0,6.0,4.0,4.0,7.0,,1.0,1.0 N83620,21.0,21.0,32.0,20.0,22.0,20.0,19.0,27.0,29.0,28.0,24.0,27.0,21.0,21.0,15.0,20.0,19.0,24.0,18.0,18.0,22.0,15.0,19.0,20.0,15.0,29.0,27.0,27.0,21.0,30.0,25.0,30.0,32.0,29.0,41.0,38.0,33.0,32.0,35.0,32.0,30.0,32.0,37.0,30.0,16.0,31.0,32.0,16.0,15.0,18.0,23.0,19.0,16.0,23.0,40.0,23.0,31.0,24.0,29.0,27.0,29.0,35.0,21.0,18.0,28.0,18.0,17.0,20.0,20.0,11.0,12.0,14.0,10.0,15.0,18.0,5.0,16.0,17.0,14.0,12.0,5.0,3.0,3.0,4.0,5.0,3.0,3.0,1.0,3.0,2.0,2.0,,3.0,,,2.0 N83621,13.0,13.0,17.0,19.0,20.0,19.0,15.0,16.0,22.0,20.0,21.0,14.0,15.0,18.0,16.0,10.0,18.0,15.0,16.0,22.0,13.0,15.0,17.0,13.0,28.0,17.0,23.0,25.0,19.0,20.0,27.0,18.0,30.0,30.0,22.0,20.0,22.0,24.0,27.0,22.0,24.0,19.0,15.0,18.0,14.0,18.0,8.0,7.0,16.0,17.0,9.0,16.0,10.0,23.0,20.0,17.0,19.0,16.0,10.0,23.0,25.0,20.0,27.0,19.0,22.0,21.0,12.0,18.0,19.0,16.0,12.0,9.0,13.0,14.0,10.0,12.0,8.0,4.0,7.0,8.0,6.0,3.0,5.0,3.0,6.0,3.0,3.0,4.0,2.0,3.0,1.0,,,,,1.0 N83622,17.0,15.0,15.0,16.0,26.0,18.0,14.0,20.0,22.0,14.0,20.0,18.0,17.0,12.0,19.0,19.0,18.0,9.0,13.0,20.0,13.0,11.0,13.0,15.0,16.0,14.0,8.0,19.0,14.0,13.0,14.0,16.0,22.0,17.0,22.0,23.0,25.0,22.0,22.0,18.0,25.0,26.0,10.0,23.0,21.0,20.0,16.0,21.0,19.0,17.0,18.0,15.0,13.0,13.0,23.0,19.0,25.0,12.0,20.0,21.0,25.0,26.0,20.0,26.0,17.0,20.0,19.0,11.0,19.0,11.0,13.0,8.0,8.0,4.0,4.0,5.0,6.0,4.0,4.0,6.0,1.0,4.0,3.0,1.0,1.0,5.0,2.0,,2.0,,,,,,1.0, N83624,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,,,,,,,,,,, N83633,22.0,15.0,19.0,22.0,22.0,14.0,20.0,15.0,26.0,24.0,32.0,20.0,32.0,27.0,18.0,24.0,19.0,20.0,23.0,20.0,30.0,23.0,18.0,22.0,18.0,32.0,16.0,25.0,29.0,26.0,29.0,28.0,26.0,34.0,27.0,27.0,29.0,27.0,21.0,27.0,31.0,34.0,15.0,19.0,27.0,23.0,14.0,18.0,19.0,16.0,20.0,20.0,32.0,21.0,18.0,16.0,17.0,17.0,35.0,23.0,30.0,28.0,28.0,37.0,22.0,28.0,14.0,23.0,34.0,20.0,13.0,12.0,14.0,13.0,16.0,16.0,7.0,12.0,13.0,5.0,8.0,8.0,4.0,5.0,5.0,8.0,8.0,7.0,6.0,5.0,4.0,1.0,2.0,3.0,,2.0 N83637,3.0,14.0,12.0,15.0,13.0,15.0,14.0,16.0,25.0,22.0,31.0,22.0,16.0,23.0,10.0,20.0,20.0,28.0,15.0,15.0,18.0,17.0,18.0,10.0,20.0,16.0,20.0,18.0,18.0,24.0,22.0,19.0,21.0,19.0,15.0,19.0,19.0,27.0,19.0,28.0,20.0,19.0,30.0,20.0,26.0,34.0,25.0,15.0,19.0,23.0,25.0,24.0,28.0,25.0,21.0,21.0,20.0,22.0,22.0,25.0,22.0,28.0,17.0,20.0,30.0,28.0,12.0,31.0,17.0,18.0,21.0,17.0,14.0,17.0,16.0,10.0,14.0,22.0,16.0,7.0,10.0,10.0,11.0,5.0,7.0,12.0,3.0,4.0,8.0,5.0,2.0,1.0,1.0,1.0,1.0, N84001,29.0,37.0,45.0,41.0,34.0,50.0,61.0,41.0,50.0,55.0,45.0,50.0,44.0,43.0,56.0,50.0,38.0,48.0,46.0,47.0,34.0,51.0,42.0,34.0,40.0,46.0,36.0,56.0,49.0,41.0,53.0,49.0,47.0,53.0,60.0,48.0,57.0,67.0,59.0,54.0,55.0,48.0,52.0,55.0,55.0,52.0,49.0,38.0,47.0,55.0,45.0,59.0,57.0,52.0,50.0,46.0,65.0,64.0,67.0,73.0,80.0,62.0,72.0,60.0,73.0,75.0,61.0,66.0,73.0,66.0,51.0,58.0,54.0,57.0,43.0,45.0,50.0,64.0,40.0,27.0,33.0,28.0,21.0,23.0,15.0,18.0,23.0,9.0,14.0,9.0,3.0,10.0,5.0,3.0,5.0,3.0 N84002,2.0,13.0,16.0,14.0,9.0,6.0,9.0,15.0,20.0,14.0,14.0,18.0,16.0,17.0,12.0,17.0,16.0,16.0,21.0,16.0,8.0,13.0,13.0,13.0,14.0,18.0,15.0,12.0,16.0,14.0,23.0,26.0,23.0,27.0,26.0,22.0,23.0,18.0,20.0,27.0,20.0,22.0,27.0,17.0,22.0,17.0,14.0,16.0,15.0,18.0,20.0,10.0,12.0,17.0,19.0,18.0,16.0,11.0,18.0,20.0,24.0,19.0,20.0,20.0,16.0,10.0,15.0,5.0,11.0,13.0,18.0,10.0,16.0,7.0,7.0,13.0,7.0,11.0,13.0,3.0,7.0,6.0,2.0,2.0,2.0,2.0,3.0,3.0,4.0,1.0,2.0,1.0,4.0,1.0,,1.0 N84003,31.0,37.0,34.0,35.0,43.0,48.0,48.0,46.0,54.0,53.0,46.0,60.0,46.0,49.0,45.0,62.0,53.0,50.0,44.0,50.0,52.0,36.0,60.0,67.0,49.0,46.0,58.0,56.0,46.0,44.0,58.0,62.0,52.0,56.0,57.0,57.0,56.0,58.0,66.0,57.0,52.0,45.0,61.0,63.0,61.0,69.0,57.0,47.0,42.0,48.0,60.0,57.0,57.0,60.0,82.0,77.0,79.0,70.0,63.0,82.0,92.0,91.0,86.0,73.0,71.0,69.0,57.0,75.0,45.0,59.0,55.0,62.0,57.0,59.0,62.0,53.0,71.0,53.0,63.0,42.0,47.0,55.0,49.0,28.0,42.0,32.0,39.0,21.0,24.0,19.0,15.0,14.0,12.0,11.0,4.0,7.0 N84004,40.0,33.0,46.0,48.0,38.0,77.0,37.0,57.0,49.0,52.0,50.0,47.0,65.0,49.0,49.0,50.0,62.0,51.0,38.0,46.0,47.0,48.0,41.0,47.0,43.0,51.0,48.0,53.0,44.0,40.0,51.0,52.0,58.0,53.0,68.0,66.0,67.0,62.0,51.0,46.0,51.0,40.0,48.0,42.0,50.0,31.0,39.0,30.0,32.0,37.0,19.0,35.0,44.0,39.0,46.0,45.0,49.0,46.0,57.0,51.0,47.0,42.0,49.0,63.0,46.0,56.0,56.0,48.0,32.0,43.0,33.0,37.0,31.0,18.0,20.0,19.0,24.0,25.0,25.0,15.0,13.0,18.0,11.0,12.0,8.0,10.0,7.0,5.0,4.0,7.0,7.0,2.0,2.0,4.0,2.0,2.0 N84005,41.0,63.0,64.0,70.0,47.0,67.0,61.0,85.0,53.0,55.0,71.0,68.0,68.0,72.0,79.0,64.0,78.0,81.0,71.0,61.0,63.0,62.0,62.0,61.0,57.0,59.0,78.0,53.0,64.0,70.0,72.0,80.0,81.0,86.0,90.0,79.0,82.0,93.0,111.0,76.0,83.0,93.0,91.0,87.0,79.0,67.0,84.0,61.0,69.0,64.0,62.0,77.0,73.0,75.0,77.0,72.0,70.0,90.0,82.0,103.0,84.0,99.0,103.0,85.0,91.0,90.0,78.0,89.0,59.0,56.0,58.0,59.0,50.0,52.0,49.0,60.0,60.0,61.0,50.0,38.0,42.0,32.0,24.0,29.0,22.0,21.0,28.0,21.0,16.0,20.0,11.0,6.0,2.0,12.0,3.0,12.0 N84006,32.0,30.0,37.0,29.0,45.0,49.0,43.0,39.0,50.0,46.0,50.0,51.0,53.0,68.0,68.0,66.0,64.0,76.0,70.0,57.0,66.0,63.0,54.0,51.0,76.0,57.0,42.0,56.0,61.0,46.0,62.0,65.0,51.0,69.0,55.0,60.0,52.0,60.0,57.0,45.0,65.0,55.0,51.0,66.0,53.0,67.0,54.0,49.0,61.0,52.0,62.0,69.0,88.0,101.0,89.0,88.0,89.0,82.0,95.0,95.0,89.0,87.0,95.0,82.0,77.0,98.0,61.0,74.0,66.0,65.0,84.0,79.0,68.0,73.0,77.0,67.0,61.0,79.0,95.0,61.0,50.0,63.0,51.0,49.0,59.0,29.0,23.0,39.0,25.0,21.0,17.0,13.0,13.0,11.0,7.0,12.0 N84007,24.0,29.0,33.0,31.0,41.0,26.0,42.0,45.0,37.0,43.0,29.0,35.0,30.0,37.0,37.0,33.0,36.0,32.0,26.0,31.0,34.0,33.0,29.0,29.0,23.0,39.0,34.0,32.0,26.0,36.0,43.0,37.0,36.0,46.0,49.0,40.0,42.0,49.0,46.0,37.0,49.0,37.0,40.0,40.0,36.0,33.0,31.0,39.0,38.0,29.0,29.0,36.0,45.0,39.0,40.0,56.0,40.0,35.0,47.0,41.0,36.0,46.0,55.0,47.0,55.0,39.0,37.0,39.0,39.0,30.0,39.0,32.0,30.0,32.0,29.0,34.0,34.0,30.0,30.0,25.0,20.0,16.0,19.0,11.0,14.0,8.0,11.0,8.0,9.0,4.0,6.0,2.0,5.0,2.0,,3.0 N84008,27.0,36.0,35.0,34.0,33.0,39.0,34.0,50.0,50.0,54.0,54.0,46.0,52.0,43.0,55.0,54.0,45.0,68.0,39.0,48.0,53.0,48.0,59.0,59.0,51.0,43.0,53.0,45.0,57.0,38.0,52.0,55.0,49.0,55.0,66.0,63.0,65.0,60.0,48.0,50.0,57.0,45.0,52.0,59.0,56.0,46.0,49.0,48.0,51.0,45.0,49.0,53.0,45.0,60.0,64.0,84.0,72.0,68.0,78.0,77.0,81.0,83.0,96.0,69.0,72.0,64.0,65.0,77.0,69.0,56.0,69.0,54.0,62.0,58.0,54.0,45.0,59.0,47.0,58.0,48.0,46.0,39.0,28.0,28.0,21.0,25.0,23.0,24.0,24.0,17.0,14.0,9.0,5.0,7.0,4.0,8.0 N84010,21.0,19.0,24.0,26.0,26.0,36.0,33.0,30.0,32.0,37.0,25.0,23.0,25.0,39.0,38.0,29.0,35.0,45.0,25.0,29.0,22.0,18.0,21.0,23.0,18.0,30.0,29.0,25.0,36.0,21.0,29.0,37.0,31.0,41.0,44.0,40.0,34.0,33.0,33.0,40.0,35.0,40.0,37.0,31.0,49.0,37.0,30.0,35.0,33.0,29.0,39.0,30.0,35.0,40.0,47.0,23.0,35.0,42.0,39.0,42.0,49.0,56.0,41.0,48.0,49.0,40.0,37.0,38.0,45.0,39.0,30.0,29.0,31.0,31.0,35.0,35.0,29.0,28.0,37.0,15.0,25.0,19.0,25.0,16.0,15.0,9.0,11.0,13.0,10.0,4.0,3.0,4.0,2.0,5.0,4.0,1.0 N84011,27.0,27.0,19.0,30.0,20.0,34.0,24.0,34.0,48.0,37.0,35.0,24.0,33.0,38.0,39.0,29.0,42.0,33.0,36.0,32.0,35.0,27.0,19.0,34.0,33.0,30.0,43.0,35.0,37.0,36.0,37.0,43.0,44.0,47.0,40.0,37.0,46.0,30.0,54.0,47.0,42.0,42.0,43.0,61.0,51.0,44.0,56.0,32.0,37.0,45.0,42.0,47.0,41.0,56.0,43.0,41.0,52.0,57.0,60.0,40.0,50.0,54.0,34.0,41.0,43.0,51.0,39.0,45.0,43.0,33.0,49.0,41.0,32.0,32.0,30.0,34.0,38.0,28.0,38.0,19.0,26.0,16.0,16.0,23.0,17.0,15.0,8.0,8.0,7.0,6.0,2.0,11.0,3.0,5.0,1.0,7.0 N84012,21.0,20.0,25.0,43.0,42.0,37.0,37.0,45.0,49.0,46.0,62.0,63.0,48.0,64.0,56.0,62.0,53.0,75.0,60.0,54.0,56.0,66.0,62.0,44.0,60.0,51.0,51.0,58.0,44.0,57.0,54.0,59.0,48.0,56.0,66.0,59.0,65.0,54.0,60.0,60.0,55.0,57.0,71.0,56.0,49.0,55.0,44.0,58.0,57.0,40.0,64.0,67.0,66.0,70.0,87.0,83.0,89.0,82.0,98.0,76.0,103.0,95.0,89.0,91.0,87.0,77.0,86.0,71.0,78.0,91.0,81.0,79.0,73.0,78.0,68.0,85.0,76.0,90.0,101.0,54.0,62.0,63.0,58.0,44.0,42.0,35.0,27.0,42.0,22.0,20.0,21.0,13.0,7.0,12.0,4.0,6.0 N84013,43.0,38.0,39.0,48.0,47.0,51.0,56.0,73.0,60.0,61.0,63.0,54.0,84.0,51.0,61.0,75.0,68.0,60.0,67.0,44.0,59.0,46.0,46.0,42.0,63.0,63.0,48.0,56.0,46.0,61.0,50.0,60.0,58.0,71.0,69.0,70.0,59.0,61.0,73.0,73.0,74.0,73.0,57.0,58.0,83.0,68.0,68.0,51.0,76.0,61.0,54.0,60.0,89.0,87.0,82.0,83.0,84.0,94.0,84.0,76.0,109.0,92.0,73.0,88.0,70.0,82.0,65.0,75.0,66.0,69.0,60.0,65.0,65.0,65.0,55.0,67.0,58.0,70.0,62.0,38.0,32.0,42.0,27.0,27.0,29.0,20.0,17.0,19.0,12.0,19.0,8.0,9.0,7.0,7.0,2.0,5.0 N84014,13.0,9.0,21.0,16.0,24.0,12.0,16.0,24.0,17.0,22.0,19.0,13.0,22.0,24.0,17.0,22.0,19.0,16.0,15.0,25.0,21.0,24.0,16.0,16.0,19.0,23.0,29.0,17.0,27.0,19.0,21.0,25.0,16.0,22.0,25.0,25.0,22.0,23.0,20.0,21.0,24.0,22.0,17.0,20.0,27.0,18.0,21.0,24.0,14.0,16.0,26.0,25.0,26.0,25.0,31.0,34.0,31.0,36.0,30.0,32.0,38.0,27.0,31.0,32.0,23.0,30.0,22.0,22.0,27.0,25.0,25.0,24.0,24.0,20.0,13.0,29.0,14.0,19.0,13.0,13.0,17.0,12.0,9.0,7.0,10.0,9.0,8.0,3.0,7.0,6.0,1.0,5.0,3.0,1.0,1.0, N84015,20.0,24.0,25.0,22.0,28.0,31.0,23.0,29.0,28.0,41.0,41.0,33.0,33.0,35.0,36.0,38.0,42.0,42.0,39.0,29.0,27.0,31.0,28.0,29.0,27.0,38.0,37.0,37.0,46.0,33.0,41.0,41.0,33.0,48.0,43.0,43.0,40.0,37.0,43.0,49.0,45.0,43.0,50.0,45.0,41.0,37.0,39.0,35.0,27.0,40.0,33.0,31.0,32.0,36.0,38.0,32.0,39.0,43.0,50.0,37.0,44.0,46.0,37.0,43.0,37.0,33.0,27.0,32.0,30.0,23.0,34.0,39.0,23.0,24.0,22.0,18.0,27.0,26.0,23.0,15.0,13.0,13.0,12.0,6.0,7.0,4.0,5.0,11.0,4.0,5.0,6.0,3.0,,,, N84016,12.0,24.0,29.0,31.0,40.0,32.0,41.0,30.0,36.0,38.0,30.0,35.0,26.0,27.0,41.0,40.0,23.0,33.0,34.0,30.0,28.0,33.0,39.0,29.0,32.0,30.0,35.0,50.0,24.0,43.0,37.0,34.0,50.0,29.0,49.0,48.0,34.0,42.0,34.0,44.0,32.0,46.0,37.0,39.0,36.0,26.0,31.0,31.0,21.0,38.0,29.0,32.0,36.0,37.0,36.0,51.0,34.0,39.0,42.0,46.0,48.0,39.0,42.0,53.0,40.0,47.0,29.0,39.0,37.0,27.0,31.0,27.0,24.0,24.0,25.0,25.0,26.0,13.0,19.0,12.0,11.0,11.0,10.0,7.0,9.0,5.0,5.0,8.0,6.0,3.0,3.0,2.0,3.0,4.0,,2.0 N84017,28.0,33.0,36.0,40.0,35.0,38.0,36.0,45.0,53.0,39.0,49.0,40.0,43.0,40.0,48.0,48.0,51.0,54.0,44.0,37.0,52.0,49.0,35.0,46.0,38.0,36.0,39.0,44.0,55.0,37.0,40.0,35.0,46.0,53.0,55.0,55.0,64.0,52.0,57.0,49.0,69.0,48.0,58.0,58.0,49.0,61.0,43.0,30.0,53.0,35.0,45.0,58.0,59.0,62.0,60.0,71.0,70.0,57.0,78.0,70.0,85.0,66.0,92.0,62.0,80.0,80.0,74.0,76.0,69.0,51.0,68.0,54.0,69.0,63.0,60.0,54.0,61.0,62.0,66.0,45.0,47.0,50.0,30.0,36.0,23.0,37.0,18.0,18.0,25.0,10.0,11.0,8.0,8.0,6.0,10.0,8.0 N84018,57.0,53.0,59.0,68.0,59.0,70.0,82.0,65.0,56.0,58.0,79.0,82.0,89.0,84.0,93.0,102.0,84.0,84.0,77.0,77.0,75.0,70.0,58.0,69.0,63.0,70.0,59.0,55.0,64.0,59.0,71.0,69.0,54.0,81.0,59.0,78.0,83.0,87.0,74.0,75.0,84.0,84.0,68.0,93.0,106.0,86.0,87.0,71.0,75.0,79.0,97.0,99.0,102.0,96.0,99.0,85.0,96.0,107.0,107.0,107.0,111.0,117.0,100.0,97.0,104.0,91.0,106.0,99.0,82.0,85.0,72.0,72.0,80.0,85.0,92.0,89.0,84.0,105.0,110.0,75.0,66.0,73.0,68.0,61.0,70.0,35.0,42.0,29.0,35.0,38.0,24.0,20.0,17.0,10.0,9.0,12.0 N84019,31.0,35.0,38.0,44.0,36.0,31.0,45.0,42.0,35.0,38.0,42.0,41.0,40.0,46.0,40.0,28.0,36.0,38.0,20.0,38.0,40.0,34.0,38.0,47.0,30.0,45.0,45.0,67.0,45.0,60.0,59.0,49.0,54.0,57.0,65.0,59.0,72.0,49.0,48.0,49.0,53.0,51.0,53.0,59.0,48.0,40.0,33.0,42.0,44.0,38.0,34.0,40.0,46.0,39.0,68.0,40.0,54.0,40.0,48.0,33.0,54.0,34.0,47.0,50.0,48.0,51.0,36.0,34.0,29.0,27.0,34.0,35.0,28.0,29.0,20.0,21.0,18.0,24.0,30.0,13.0,18.0,13.0,16.0,6.0,8.0,9.0,10.0,6.0,5.0,7.0,4.0,2.0,3.0,3.0,3.0,1.0 N84020,26.0,32.0,39.0,47.0,37.0,47.0,49.0,58.0,62.0,52.0,67.0,68.0,79.0,61.0,61.0,57.0,65.0,60.0,55.0,50.0,49.0,44.0,46.0,46.0,40.0,41.0,36.0,44.0,47.0,46.0,40.0,55.0,51.0,51.0,72.0,52.0,60.0,66.0,63.0,68.0,65.0,70.0,56.0,62.0,72.0,76.0,62.0,71.0,61.0,52.0,63.0,56.0,68.0,72.0,82.0,72.0,70.0,57.0,76.0,84.0,84.0,83.0,75.0,70.0,69.0,65.0,68.0,62.0,81.0,65.0,57.0,66.0,49.0,48.0,43.0,50.0,54.0,48.0,58.0,45.0,50.0,33.0,32.0,32.0,33.0,20.0,32.0,15.0,25.0,6.0,5.0,8.0,7.0,4.0,3.0,8.0 N84021,47.0,62.0,76.0,53.0,45.0,57.0,48.0,70.0,77.0,89.0,90.0,95.0,86.0,89.0,88.0,102.0,76.0,90.0,82.0,72.0,69.0,81.0,68.0,95.0,80.0,92.0,89.0,100.0,100.0,110.0,127.0,145.0,121.0,139.0,152.0,138.0,173.0,124.0,169.0,155.0,159.0,146.0,169.0,149.0,133.0,115.0,131.0,106.0,118.0,107.0,111.0,107.0,117.0,130.0,127.0,114.0,119.0,122.0,122.0,121.0,114.0,118.0,115.0,104.0,107.0,93.0,101.0,103.0,109.0,81.0,70.0,97.0,69.0,71.0,62.0,85.0,68.0,77.0,59.0,49.0,49.0,50.0,42.0,29.0,21.0,30.0,47.0,33.0,20.0,22.0,25.0,12.0,5.0,3.0,8.0,13.0 N84023,39.0,38.0,34.0,51.0,43.0,48.0,43.0,42.0,43.0,54.0,50.0,53.0,42.0,59.0,51.0,40.0,49.0,42.0,35.0,43.0,40.0,48.0,34.0,42.0,39.0,39.0,48.0,41.0,52.0,70.0,60.0,56.0,63.0,80.0,61.0,80.0,75.0,51.0,67.0,47.0,56.0,66.0,58.0,37.0,38.0,56.0,44.0,52.0,46.0,43.0,50.0,56.0,54.0,64.0,49.0,72.0,46.0,49.0,49.0,56.0,59.0,56.0,60.0,46.0,39.0,59.0,38.0,36.0,42.0,31.0,28.0,30.0,35.0,41.0,34.0,30.0,30.0,39.0,26.0,21.0,10.0,8.0,14.0,16.0,14.0,14.0,12.0,8.0,2.0,5.0,4.0,3.0,2.0,1.0,1.0,1.0 N84024,26.0,29.0,15.0,20.0,25.0,26.0,22.0,29.0,32.0,31.0,33.0,36.0,31.0,42.0,48.0,37.0,42.0,45.0,38.0,37.0,39.0,34.0,42.0,52.0,38.0,41.0,30.0,41.0,49.0,39.0,43.0,33.0,43.0,44.0,45.0,55.0,41.0,42.0,37.0,48.0,38.0,49.0,39.0,39.0,59.0,35.0,49.0,37.0,40.0,48.0,52.0,56.0,51.0,56.0,65.0,69.0,66.0,74.0,86.0,80.0,81.0,98.0,71.0,77.0,85.0,72.0,69.0,71.0,69.0,72.0,74.0,76.0,52.0,65.0,71.0,65.0,68.0,89.0,86.0,51.0,66.0,63.0,40.0,37.0,44.0,32.0,32.0,29.0,32.0,19.0,17.0,12.0,14.0,11.0,6.0,12.0 N84025,44.0,60.0,55.0,59.0,52.0,40.0,53.0,53.0,44.0,48.0,51.0,38.0,65.0,56.0,57.0,51.0,32.0,48.0,37.0,45.0,45.0,45.0,29.0,45.0,43.0,56.0,65.0,54.0,53.0,57.0,51.0,60.0,61.0,71.0,63.0,63.0,70.0,74.0,59.0,67.0,71.0,54.0,54.0,62.0,47.0,52.0,51.0,56.0,39.0,41.0,43.0,43.0,54.0,57.0,72.0,46.0,54.0,43.0,62.0,50.0,67.0,77.0,58.0,73.0,65.0,70.0,73.0,68.0,81.0,45.0,59.0,54.0,71.0,62.0,42.0,57.0,50.0,54.0,76.0,41.0,37.0,28.0,35.0,32.0,25.0,27.0,25.0,18.0,23.0,20.0,14.0,8.0,7.0,5.0,2.0,7.0 N84027,37.0,35.0,42.0,30.0,30.0,31.0,38.0,47.0,47.0,46.0,38.0,38.0,39.0,40.0,37.0,37.0,34.0,43.0,33.0,35.0,35.0,20.0,48.0,34.0,37.0,35.0,38.0,46.0,48.0,54.0,61.0,61.0,45.0,44.0,56.0,54.0,50.0,57.0,51.0,59.0,45.0,56.0,45.0,40.0,37.0,42.0,36.0,38.0,33.0,40.0,38.0,36.0,30.0,44.0,39.0,38.0,37.0,34.0,25.0,31.0,35.0,35.0,37.0,32.0,17.0,20.0,25.0,29.0,23.0,20.0,15.0,14.0,16.0,17.0,17.0,11.0,14.0,16.0,11.0,8.0,3.0,7.0,6.0,1.0,,4.0,3.0,,3.0,1.0,3.0,2.0,1.0,,1.0,1.0 N84028,30.0,36.0,44.0,33.0,41.0,35.0,42.0,49.0,38.0,51.0,50.0,62.0,50.0,45.0,58.0,45.0,37.0,49.0,51.0,31.0,42.0,33.0,41.0,39.0,30.0,42.0,47.0,46.0,49.0,51.0,50.0,40.0,73.0,79.0,71.0,71.0,61.0,60.0,72.0,56.0,78.0,50.0,67.0,63.0,66.0,56.0,50.0,47.0,39.0,44.0,59.0,46.0,63.0,41.0,49.0,44.0,59.0,55.0,52.0,45.0,59.0,44.0,54.0,39.0,51.0,44.0,39.0,52.0,33.0,35.0,37.0,30.0,26.0,27.0,28.0,21.0,31.0,26.0,21.0,16.0,15.0,15.0,14.0,9.0,7.0,7.0,2.0,8.0,4.0,6.0,7.0,1.0,1.0,,1.0, N84029,29.0,29.0,22.0,29.0,25.0,40.0,40.0,28.0,44.0,33.0,29.0,44.0,48.0,42.0,36.0,41.0,38.0,23.0,34.0,31.0,28.0,33.0,23.0,33.0,40.0,29.0,40.0,35.0,44.0,42.0,31.0,43.0,38.0,50.0,47.0,48.0,39.0,39.0,37.0,46.0,35.0,36.0,39.0,37.0,40.0,34.0,26.0,19.0,32.0,32.0,29.0,42.0,32.0,32.0,42.0,43.0,44.0,36.0,42.0,37.0,43.0,46.0,39.0,47.0,54.0,25.0,34.0,35.0,28.0,22.0,22.0,23.0,22.0,14.0,10.0,28.0,17.0,12.0,11.0,13.0,14.0,16.0,11.0,3.0,9.0,4.0,3.0,4.0,11.0,3.0,5.0,2.0,,2.0,1.0,1.0 N84034,45.0,38.0,51.0,42.0,56.0,45.0,43.0,52.0,45.0,38.0,58.0,42.0,47.0,41.0,34.0,39.0,51.0,47.0,50.0,54.0,35.0,48.0,54.0,50.0,54.0,67.0,66.0,52.0,62.0,57.0,45.0,73.0,78.0,75.0,59.0,75.0,73.0,64.0,52.0,71.0,56.0,52.0,52.0,53.0,43.0,49.0,52.0,48.0,42.0,40.0,41.0,47.0,33.0,40.0,66.0,48.0,60.0,42.0,53.0,50.0,45.0,49.0,55.0,33.0,46.0,55.0,32.0,33.0,29.0,31.0,38.0,38.0,23.0,34.0,17.0,19.0,26.0,25.0,21.0,18.0,21.0,17.0,14.0,15.0,13.0,14.0,11.0,7.0,8.0,6.0,5.0,3.0,2.0,2.0,,5.0 N84035,21.0,7.0,19.0,9.0,17.0,16.0,13.0,10.0,18.0,20.0,19.0,14.0,17.0,16.0,25.0,28.0,21.0,21.0,18.0,10.0,14.0,16.0,24.0,14.0,29.0,22.0,27.0,15.0,19.0,16.0,17.0,15.0,28.0,21.0,27.0,30.0,24.0,26.0,17.0,24.0,25.0,23.0,25.0,21.0,20.0,28.0,22.0,17.0,23.0,11.0,22.0,25.0,28.0,27.0,27.0,36.0,23.0,22.0,29.0,25.0,23.0,36.0,28.0,44.0,36.0,35.0,39.0,29.0,25.0,15.0,24.0,23.0,23.0,18.0,20.0,16.0,10.0,20.0,19.0,8.0,10.0,14.0,7.0,5.0,11.0,7.0,6.0,7.0,10.0,1.0,6.0,3.0,2.0,5.0,, N84038,36.0,28.0,30.0,24.0,27.0,27.0,36.0,28.0,36.0,44.0,31.0,44.0,34.0,36.0,45.0,37.0,40.0,40.0,32.0,30.0,41.0,28.0,33.0,31.0,37.0,33.0,29.0,41.0,30.0,38.0,34.0,45.0,41.0,54.0,54.0,43.0,40.0,50.0,43.0,32.0,50.0,59.0,41.0,40.0,32.0,37.0,32.0,26.0,29.0,42.0,37.0,38.0,39.0,42.0,34.0,39.0,36.0,36.0,32.0,41.0,48.0,48.0,52.0,43.0,38.0,38.0,24.0,21.0,28.0,28.0,31.0,35.0,20.0,30.0,20.0,20.0,17.0,25.0,18.0,16.0,10.0,15.0,7.0,9.0,5.0,4.0,9.0,2.0,6.0,4.0,3.0,3.0,2.0,,1.0, N84041,31.0,35.0,40.0,34.0,43.0,37.0,30.0,42.0,38.0,38.0,27.0,22.0,30.0,34.0,33.0,36.0,28.0,29.0,21.0,38.0,23.0,26.0,20.0,31.0,21.0,29.0,28.0,46.0,36.0,27.0,27.0,50.0,55.0,59.0,49.0,59.0,43.0,30.0,53.0,24.0,45.0,51.0,45.0,51.0,40.0,40.0,35.0,29.0,27.0,29.0,32.0,32.0,35.0,31.0,38.0,39.0,30.0,31.0,45.0,37.0,46.0,34.0,41.0,48.0,49.0,39.0,39.0,36.0,37.0,42.0,31.0,32.0,18.0,28.0,15.0,27.0,22.0,22.0,25.0,14.0,18.0,12.0,13.0,5.0,10.0,5.0,6.0,8.0,7.0,2.0,,2.0,4.0,1.0,1.0,4.0 N84605,35.0,51.0,51.0,77.0,55.0,55.0,66.0,62.0,69.0,64.0,82.0,77.0,73.0,66.0,56.0,54.0,60.0,50.0,58.0,60.0,42.0,55.0,42.0,50.0,55.0,63.0,54.0,50.0,61.0,60.0,64.0,71.0,56.0,66.0,74.0,70.0,73.0,55.0,53.0,82.0,66.0,64.0,69.0,74.0,55.0,66.0,63.0,49.0,56.0,62.0,52.0,53.0,61.0,68.0,58.0,50.0,51.0,55.0,57.0,47.0,58.0,64.0,62.0,58.0,49.0,44.0,53.0,38.0,42.0,24.0,26.0,28.0,19.0,21.0,27.0,27.0,17.0,29.0,24.0,10.0,8.0,7.0,7.0,11.0,9.0,14.0,3.0,8.0,7.0,8.0,5.0,2.0,4.0,3.0,1.0, N84613,16.0,13.0,16.0,24.0,13.0,16.0,21.0,21.0,23.0,17.0,24.0,25.0,30.0,13.0,26.0,19.0,14.0,20.0,20.0,22.0,15.0,22.0,14.0,25.0,25.0,24.0,19.0,16.0,18.0,24.0,10.0,27.0,20.0,24.0,22.0,27.0,36.0,27.0,25.0,30.0,21.0,24.0,17.0,23.0,15.0,17.0,26.0,20.0,16.0,28.0,21.0,31.0,31.0,26.0,33.0,24.0,28.0,30.0,27.0,40.0,37.0,29.0,37.0,36.0,40.0,37.0,30.0,34.0,36.0,24.0,29.0,37.0,26.0,34.0,29.0,32.0,30.0,23.0,35.0,23.0,31.0,22.0,19.0,18.0,14.0,13.0,10.0,8.0,8.0,10.0,4.0,6.0,5.0,1.0,1.0,2.0 N84614,12.0,13.0,16.0,9.0,11.0,17.0,16.0,11.0,16.0,14.0,14.0,16.0,15.0,21.0,14.0,23.0,17.0,14.0,11.0,14.0,9.0,11.0,13.0,10.0,7.0,11.0,13.0,13.0,6.0,7.0,17.0,18.0,17.0,16.0,12.0,17.0,21.0,25.0,21.0,26.0,26.0,19.0,20.0,17.0,14.0,19.0,21.0,19.0,9.0,15.0,12.0,20.0,12.0,13.0,9.0,17.0,16.0,18.0,15.0,29.0,23.0,22.0,22.0,30.0,28.0,19.0,22.0,18.0,24.0,29.0,19.0,20.0,21.0,24.0,14.0,30.0,28.0,29.0,22.0,12.0,14.0,18.0,6.0,9.0,14.0,7.0,9.0,8.0,2.0,5.0,1.0,2.0,1.0,2.0,4.0,2.0 N84615,19.0,19.0,24.0,20.0,15.0,22.0,13.0,20.0,15.0,20.0,17.0,20.0,12.0,13.0,15.0,18.0,17.0,17.0,17.0,18.0,12.0,11.0,12.0,21.0,18.0,17.0,21.0,13.0,27.0,30.0,28.0,27.0,29.0,43.0,33.0,24.0,28.0,36.0,27.0,27.0,26.0,35.0,31.0,22.0,25.0,29.0,21.0,23.0,21.0,20.0,20.0,18.0,24.0,31.0,26.0,29.0,23.0,22.0,21.0,26.0,15.0,23.0,19.0,22.0,26.0,21.0,17.0,14.0,15.0,20.0,10.0,13.0,17.0,14.0,15.0,15.0,7.0,8.0,9.0,5.0,6.0,5.0,3.0,5.0,10.0,3.0,6.0,1.0,2.0,3.0,1.0,,1.0,,1.0,2.0 N84617,23.0,34.0,35.0,28.0,26.0,34.0,31.0,35.0,33.0,42.0,44.0,37.0,42.0,44.0,41.0,36.0,35.0,35.0,32.0,32.0,26.0,28.0,11.0,20.0,23.0,22.0,28.0,27.0,29.0,40.0,38.0,33.0,39.0,25.0,41.0,31.0,44.0,30.0,38.0,44.0,31.0,41.0,40.0,39.0,37.0,46.0,31.0,46.0,37.0,39.0,35.0,31.0,26.0,36.0,29.0,41.0,36.0,32.0,32.0,30.0,37.0,20.0,23.0,26.0,27.0,26.0,29.0,31.0,27.0,25.0,22.0,29.0,12.0,14.0,28.0,22.0,11.0,15.0,23.0,10.0,17.0,11.0,9.0,8.0,12.0,10.0,8.0,2.0,6.0,2.0,7.0,3.0,1.0,,2.0, N84621,32.0,26.0,52.0,45.0,38.0,49.0,43.0,41.0,55.0,45.0,44.0,49.0,59.0,45.0,53.0,56.0,55.0,52.0,30.0,40.0,34.0,38.0,42.0,38.0,40.0,38.0,23.0,46.0,48.0,49.0,49.0,58.0,45.0,43.0,67.0,49.0,55.0,49.0,62.0,51.0,73.0,70.0,57.0,50.0,63.0,59.0,54.0,49.0,39.0,58.0,50.0,55.0,43.0,55.0,58.0,58.0,54.0,55.0,55.0,51.0,58.0,57.0,79.0,70.0,61.0,70.0,44.0,65.0,49.0,49.0,48.0,38.0,52.0,45.0,37.0,31.0,40.0,32.0,34.0,23.0,25.0,24.0,33.0,20.0,17.0,16.0,13.0,15.0,12.0,8.0,2.0,6.0,2.0,,3.0,6.0 N84625,25.0,24.0,20.0,31.0,35.0,30.0,39.0,35.0,29.0,43.0,24.0,35.0,49.0,46.0,28.0,41.0,32.0,46.0,40.0,38.0,47.0,25.0,34.0,33.0,29.0,45.0,26.0,35.0,23.0,29.0,37.0,32.0,29.0,37.0,36.0,25.0,33.0,35.0,43.0,33.0,35.0,34.0,38.0,39.0,33.0,41.0,34.0,34.0,30.0,26.0,38.0,41.0,43.0,54.0,54.0,40.0,47.0,56.0,51.0,38.0,38.0,49.0,42.0,50.0,36.0,38.0,39.0,38.0,30.0,33.0,22.0,38.0,25.0,24.0,24.0,23.0,20.0,22.0,13.0,16.0,8.0,20.0,14.0,4.0,11.0,12.0,10.0,7.0,6.0,4.0,7.0,4.0,4.0,,3.0,4.0 N84626,3.0,1.0,9.0,5.0,8.0,10.0,7.0,3.0,9.0,6.0,8.0,8.0,6.0,8.0,12.0,7.0,7.0,9.0,10.0,7.0,7.0,11.0,9.0,7.0,5.0,10.0,9.0,7.0,5.0,5.0,7.0,8.0,9.0,3.0,14.0,9.0,16.0,5.0,12.0,10.0,17.0,16.0,16.0,14.0,7.0,11.0,8.0,9.0,13.0,5.0,13.0,10.0,9.0,9.0,11.0,15.0,12.0,10.0,18.0,16.0,13.0,19.0,21.0,21.0,16.0,14.0,17.0,16.0,19.0,7.0,14.0,9.0,17.0,13.0,13.0,13.0,10.0,14.0,8.0,7.0,8.0,9.0,8.0,4.0,5.0,8.0,6.0,6.0,4.0,5.0,3.0,3.0,2.0,2.0,1.0, N85002,47.0,60.0,67.0,78.0,64.0,76.0,75.0,104.0,114.0,90.0,80.0,115.0,111.0,102.0,118.0,107.0,94.0,102.0,120.0,99.0,80.0,86.0,91.0,93.0,92.0,79.0,88.0,76.0,91.0,86.0,87.0,89.0,89.0,96.0,101.0,95.0,92.0,120.0,104.0,105.0,101.0,108.0,119.0,107.0,118.0,138.0,110.0,97.0,109.0,108.0,126.0,97.0,113.0,139.0,138.0,126.0,144.0,120.0,136.0,150.0,141.0,153.0,152.0,138.0,150.0,122.0,127.0,117.0,115.0,110.0,109.0,110.0,117.0,103.0,121.0,129.0,114.0,123.0,108.0,93.0,88.0,94.0,61.0,57.0,50.0,51.0,38.0,40.0,47.0,44.0,41.0,25.0,15.0,15.0,9.0,31.0 N85005,60.0,46.0,33.0,51.0,56.0,59.0,65.0,57.0,54.0,66.0,64.0,63.0,70.0,61.0,70.0,67.0,70.0,55.0,68.0,54.0,54.0,55.0,48.0,50.0,65.0,51.0,65.0,67.0,68.0,63.0,67.0,84.0,77.0,87.0,67.0,84.0,65.0,64.0,59.0,68.0,69.0,60.0,72.0,65.0,64.0,82.0,52.0,55.0,61.0,61.0,69.0,53.0,73.0,79.0,82.0,67.0,67.0,96.0,79.0,89.0,84.0,69.0,84.0,83.0,84.0,73.0,55.0,72.0,58.0,59.0,62.0,77.0,56.0,49.0,43.0,52.0,47.0,71.0,54.0,49.0,37.0,38.0,48.0,25.0,36.0,23.0,22.0,17.0,18.0,17.0,12.0,8.0,8.0,7.0,4.0,9.0 N85006,19.0,26.0,30.0,37.0,36.0,46.0,50.0,28.0,45.0,56.0,71.0,56.0,68.0,55.0,58.0,62.0,47.0,68.0,49.0,58.0,56.0,44.0,34.0,31.0,39.0,52.0,52.0,33.0,45.0,49.0,42.0,49.0,49.0,50.0,39.0,53.0,49.0,53.0,56.0,54.0,60.0,53.0,48.0,78.0,62.0,61.0,55.0,55.0,53.0,61.0,72.0,59.0,76.0,69.0,85.0,73.0,62.0,68.0,67.0,66.0,56.0,63.0,56.0,61.0,56.0,54.0,66.0,55.0,54.0,57.0,43.0,50.0,39.0,35.0,42.0,47.0,48.0,62.0,65.0,36.0,40.0,44.0,36.0,37.0,20.0,32.0,19.0,20.0,14.0,9.0,11.0,7.0,7.0,6.0,3.0,10.0 N85007,70.0,50.0,83.0,71.0,79.0,84.0,113.0,106.0,111.0,109.0,113.0,104.0,115.0,125.0,107.0,104.0,110.0,110.0,111.0,95.0,86.0,94.0,96.0,101.0,95.0,91.0,103.0,87.0,106.0,110.0,99.0,117.0,106.0,104.0,138.0,136.0,121.0,117.0,115.0,108.0,123.0,126.0,89.0,139.0,125.0,118.0,92.0,108.0,99.0,122.0,104.0,123.0,119.0,130.0,142.0,134.0,156.0,144.0,143.0,150.0,174.0,170.0,155.0,164.0,176.0,171.0,163.0,140.0,164.0,145.0,134.0,124.0,117.0,141.0,137.0,148.0,133.0,154.0,127.0,100.0,121.0,98.0,88.0,66.0,63.0,70.0,51.0,46.0,45.0,29.0,28.0,20.0,28.0,12.0,12.0,28.0 N85008,35.0,44.0,67.0,56.0,53.0,64.0,66.0,76.0,72.0,86.0,64.0,85.0,93.0,85.0,90.0,86.0,61.0,74.0,65.0,71.0,54.0,64.0,51.0,71.0,61.0,66.0,54.0,50.0,51.0,61.0,82.0,68.0,53.0,69.0,67.0,62.0,69.0,72.0,75.0,60.0,59.0,73.0,76.0,76.0,84.0,90.0,66.0,74.0,77.0,80.0,69.0,74.0,89.0,94.0,88.0,90.0,98.0,98.0,78.0,106.0,97.0,103.0,102.0,99.0,90.0,85.0,108.0,86.0,90.0,82.0,84.0,93.0,78.0,72.0,88.0,97.0,102.0,90.0,106.0,77.0,75.0,63.0,59.0,47.0,59.0,42.0,41.0,29.0,23.0,22.0,24.0,14.0,13.0,9.0,7.0,14.0 N85012,38.0,31.0,38.0,50.0,32.0,36.0,41.0,48.0,45.0,45.0,51.0,53.0,56.0,56.0,47.0,47.0,64.0,62.0,53.0,45.0,49.0,40.0,41.0,42.0,43.0,50.0,46.0,43.0,68.0,61.0,52.0,55.0,69.0,56.0,60.0,75.0,80.0,58.0,58.0,52.0,51.0,61.0,63.0,71.0,57.0,62.0,62.0,49.0,48.0,47.0,62.0,52.0,58.0,75.0,77.0,57.0,84.0,73.0,69.0,75.0,72.0,69.0,73.0,74.0,65.0,56.0,66.0,62.0,62.0,62.0,47.0,50.0,50.0,44.0,44.0,41.0,41.0,47.0,45.0,39.0,41.0,19.0,29.0,18.0,17.0,15.0,16.0,11.0,11.0,7.0,12.0,7.0,2.0,5.0,1.0,8.0 N85013,25.0,35.0,25.0,31.0,35.0,42.0,35.0,33.0,34.0,35.0,38.0,50.0,28.0,50.0,46.0,52.0,47.0,32.0,39.0,42.0,33.0,35.0,34.0,34.0,43.0,42.0,39.0,41.0,41.0,41.0,42.0,36.0,32.0,28.0,44.0,43.0,48.0,50.0,42.0,36.0,47.0,42.0,33.0,41.0,40.0,37.0,42.0,46.0,49.0,54.0,37.0,51.0,58.0,47.0,57.0,44.0,44.0,41.0,48.0,45.0,72.0,52.0,55.0,59.0,54.0,54.0,39.0,50.0,43.0,52.0,42.0,50.0,38.0,47.0,39.0,52.0,49.0,62.0,42.0,35.0,42.0,26.0,27.0,15.0,30.0,27.0,17.0,17.0,14.0,12.0,12.0,15.0,3.0,6.0,3.0,12.0 N85015,37.0,34.0,34.0,33.0,35.0,33.0,40.0,40.0,35.0,54.0,44.0,48.0,51.0,43.0,53.0,54.0,41.0,52.0,54.0,44.0,35.0,40.0,38.0,32.0,38.0,61.0,55.0,62.0,57.0,49.0,42.0,43.0,50.0,55.0,64.0,59.0,55.0,54.0,48.0,62.0,64.0,48.0,53.0,50.0,53.0,64.0,54.0,42.0,45.0,44.0,48.0,43.0,63.0,61.0,52.0,52.0,58.0,54.0,62.0,59.0,62.0,60.0,53.0,58.0,49.0,56.0,53.0,50.0,43.0,49.0,44.0,34.0,38.0,38.0,31.0,41.0,27.0,30.0,28.0,22.0,13.0,29.0,17.0,16.0,11.0,9.0,5.0,8.0,9.0,12.0,3.0,4.0,2.0,5.0,,4.0 N85016,54.0,45.0,56.0,46.0,54.0,60.0,39.0,54.0,56.0,48.0,50.0,58.0,50.0,68.0,52.0,48.0,48.0,62.0,56.0,41.0,56.0,51.0,46.0,54.0,50.0,58.0,65.0,60.0,63.0,64.0,64.0,70.0,72.0,78.0,71.0,62.0,76.0,73.0,60.0,59.0,63.0,63.0,60.0,61.0,56.0,62.0,55.0,39.0,41.0,47.0,38.0,53.0,60.0,56.0,72.0,60.0,50.0,59.0,63.0,52.0,38.0,51.0,55.0,63.0,55.0,52.0,39.0,42.0,56.0,40.0,49.0,39.0,35.0,27.0,37.0,32.0,28.0,36.0,28.0,29.0,19.0,16.0,15.0,19.0,7.0,17.0,9.0,11.0,3.0,9.0,2.0,1.0,3.0,,1.0,2.0 N85017,25.0,24.0,24.0,25.0,23.0,37.0,37.0,36.0,31.0,41.0,45.0,40.0,38.0,37.0,38.0,39.0,35.0,34.0,30.0,37.0,30.0,37.0,35.0,35.0,36.0,34.0,34.0,42.0,44.0,34.0,42.0,51.0,52.0,63.0,46.0,57.0,53.0,40.0,33.0,34.0,43.0,25.0,32.0,50.0,43.0,29.0,29.0,37.0,29.0,29.0,24.0,28.0,27.0,44.0,24.0,43.0,37.0,44.0,42.0,38.0,42.0,38.0,39.0,39.0,36.0,37.0,30.0,19.0,36.0,30.0,15.0,29.0,26.0,11.0,23.0,25.0,25.0,21.0,11.0,17.0,9.0,6.0,13.0,10.0,2.0,11.0,7.0,6.0,4.0,4.0,1.0,2.0,,1.0,1.0, N85018,19.0,28.0,27.0,24.0,18.0,29.0,26.0,31.0,24.0,36.0,44.0,31.0,35.0,43.0,42.0,43.0,39.0,35.0,34.0,29.0,33.0,24.0,27.0,33.0,30.0,27.0,21.0,40.0,32.0,39.0,39.0,29.0,40.0,35.0,40.0,44.0,35.0,57.0,39.0,38.0,31.0,27.0,31.0,34.0,34.0,29.0,30.0,28.0,29.0,37.0,33.0,27.0,41.0,47.0,41.0,38.0,34.0,39.0,45.0,50.0,38.0,54.0,48.0,58.0,56.0,46.0,33.0,43.0,43.0,34.0,36.0,41.0,25.0,34.0,34.0,29.0,37.0,39.0,23.0,28.0,21.0,22.0,12.0,23.0,15.0,16.0,12.0,13.0,9.0,7.0,8.0,3.0,1.0,2.0,1.0,7.0 N85019,56.0,43.0,43.0,53.0,61.0,58.0,53.0,58.0,53.0,53.0,63.0,46.0,48.0,64.0,57.0,43.0,60.0,58.0,52.0,48.0,57.0,58.0,60.0,59.0,67.0,59.0,68.0,74.0,58.0,76.0,75.0,73.0,69.0,83.0,97.0,80.0,69.0,91.0,78.0,70.0,76.0,67.0,67.0,59.0,67.0,68.0,65.0,62.0,62.0,50.0,49.0,57.0,59.0,69.0,64.0,72.0,57.0,56.0,59.0,65.0,58.0,49.0,58.0,54.0,53.0,50.0,56.0,37.0,48.0,38.0,41.0,33.0,34.0,42.0,29.0,34.0,22.0,29.0,24.0,31.0,20.0,14.0,18.0,10.0,13.0,8.0,10.0,9.0,7.0,4.0,5.0,2.0,2.0,1.0,1.0, N85020,75.0,83.0,92.0,75.0,91.0,98.0,77.0,100.0,100.0,85.0,95.0,118.0,89.0,109.0,93.0,109.0,97.0,103.0,91.0,100.0,76.0,89.0,88.0,72.0,83.0,90.0,92.0,108.0,102.0,96.0,114.0,125.0,111.0,125.0,118.0,125.0,123.0,134.0,129.0,118.0,103.0,90.0,104.0,108.0,102.0,87.0,83.0,86.0,88.0,92.0,85.0,79.0,96.0,104.0,121.0,122.0,88.0,106.0,109.0,110.0,104.0,111.0,100.0,119.0,97.0,107.0,88.0,69.0,78.0,79.0,60.0,72.0,53.0,59.0,68.0,53.0,49.0,51.0,43.0,42.0,39.0,28.0,28.0,23.0,24.0,21.0,14.0,15.0,14.0,20.0,11.0,5.0,6.0,4.0,4.0,6.0 N85021,9.0,13.0,11.0,19.0,10.0,12.0,10.0,17.0,12.0,9.0,9.0,9.0,11.0,13.0,12.0,16.0,11.0,11.0,18.0,13.0,16.0,19.0,25.0,22.0,33.0,29.0,24.0,32.0,30.0,28.0,29.0,25.0,31.0,36.0,34.0,26.0,27.0,24.0,28.0,25.0,34.0,27.0,23.0,28.0,30.0,18.0,24.0,16.0,25.0,27.0,16.0,30.0,29.0,21.0,22.0,29.0,16.0,25.0,30.0,17.0,21.0,23.0,22.0,20.0,28.0,13.0,20.0,24.0,19.0,17.0,12.0,20.0,10.0,16.0,10.0,17.0,4.0,7.0,9.0,7.0,8.0,10.0,9.0,5.0,6.0,4.0,8.0,4.0,2.0,2.0,6.0,,3.0,1.0,,1.0 N85022,14.0,19.0,22.0,18.0,25.0,21.0,28.0,20.0,25.0,18.0,24.0,30.0,21.0,29.0,30.0,16.0,15.0,21.0,23.0,17.0,19.0,19.0,16.0,19.0,23.0,19.0,25.0,14.0,23.0,33.0,32.0,37.0,24.0,32.0,36.0,27.0,30.0,33.0,29.0,31.0,31.0,32.0,35.0,32.0,41.0,33.0,33.0,14.0,33.0,27.0,34.0,38.0,32.0,42.0,26.0,32.0,33.0,24.0,27.0,26.0,33.0,24.0,22.0,35.0,28.0,17.0,32.0,26.0,18.0,19.0,35.0,25.0,22.0,27.0,26.0,22.0,28.0,27.0,25.0,16.0,16.0,15.0,13.0,10.0,3.0,6.0,5.0,6.0,3.0,3.0,1.0,2.0,1.0,2.0,1.0, N85023,13.0,27.0,16.0,19.0,35.0,22.0,27.0,40.0,36.0,34.0,38.0,28.0,39.0,36.0,34.0,42.0,42.0,30.0,38.0,37.0,35.0,25.0,33.0,24.0,27.0,29.0,30.0,50.0,30.0,30.0,34.0,33.0,44.0,36.0,46.0,38.0,40.0,38.0,38.0,30.0,34.0,27.0,37.0,45.0,42.0,30.0,29.0,33.0,31.0,40.0,24.0,25.0,36.0,51.0,35.0,36.0,41.0,45.0,46.0,37.0,42.0,33.0,46.0,38.0,44.0,39.0,37.0,30.0,27.0,37.0,24.0,29.0,25.0,28.0,25.0,19.0,28.0,16.0,26.0,10.0,19.0,20.0,13.0,6.0,11.0,16.0,11.0,8.0,4.0,7.0,3.0,6.0,4.0,8.0,4.0,6.0 N85024,38.0,52.0,59.0,47.0,57.0,62.0,66.0,66.0,76.0,56.0,69.0,50.0,67.0,74.0,71.0,56.0,58.0,60.0,55.0,60.0,53.0,62.0,53.0,54.0,59.0,64.0,67.0,53.0,86.0,79.0,58.0,68.0,68.0,85.0,78.0,77.0,86.0,80.0,68.0,67.0,77.0,70.0,57.0,61.0,61.0,61.0,58.0,49.0,40.0,47.0,61.0,42.0,54.0,49.0,62.0,55.0,60.0,57.0,65.0,45.0,66.0,55.0,65.0,65.0,57.0,34.0,55.0,54.0,37.0,35.0,38.0,42.0,41.0,31.0,31.0,33.0,26.0,29.0,28.0,18.0,24.0,13.0,22.0,18.0,11.0,18.0,9.0,11.0,5.0,7.0,2.0,7.0,6.0,7.0,,4.0 N85025,17.0,22.0,30.0,32.0,25.0,28.0,33.0,30.0,26.0,21.0,37.0,35.0,31.0,34.0,51.0,34.0,39.0,41.0,38.0,27.0,28.0,33.0,22.0,23.0,35.0,21.0,32.0,40.0,19.0,31.0,27.0,42.0,43.0,40.0,42.0,31.0,32.0,36.0,41.0,34.0,39.0,40.0,41.0,33.0,44.0,36.0,33.0,35.0,24.0,31.0,34.0,30.0,41.0,40.0,33.0,41.0,45.0,48.0,29.0,41.0,33.0,51.0,52.0,45.0,39.0,48.0,53.0,55.0,44.0,43.0,30.0,31.0,35.0,40.0,35.0,28.0,25.0,28.0,29.0,21.0,25.0,15.0,15.0,15.0,20.0,13.0,4.0,4.0,10.0,4.0,4.0,6.0,6.0,2.0,1.0,1.0 N85027,32.0,43.0,47.0,40.0,48.0,45.0,49.0,49.0,55.0,61.0,73.0,51.0,73.0,75.0,56.0,61.0,67.0,63.0,48.0,62.0,50.0,59.0,49.0,46.0,56.0,57.0,57.0,58.0,56.0,59.0,62.0,66.0,61.0,65.0,64.0,67.0,76.0,66.0,65.0,74.0,68.0,68.0,69.0,50.0,61.0,62.0,62.0,45.0,50.0,65.0,47.0,53.0,64.0,58.0,60.0,68.0,58.0,65.0,64.0,60.0,65.0,60.0,52.0,66.0,63.0,49.0,52.0,61.0,53.0,45.0,34.0,32.0,39.0,41.0,43.0,51.0,40.0,37.0,32.0,27.0,32.0,21.0,18.0,16.0,12.0,10.0,7.0,20.0,3.0,5.0,1.0,4.0,,1.0,1.0,3.0 N85028,55.0,48.0,65.0,61.0,61.0,67.0,52.0,58.0,81.0,73.0,71.0,72.0,83.0,93.0,81.0,106.0,81.0,72.0,69.0,74.0,62.0,52.0,66.0,68.0,53.0,57.0,62.0,54.0,79.0,63.0,70.0,79.0,67.0,83.0,62.0,86.0,73.0,96.0,79.0,60.0,93.0,69.0,69.0,93.0,81.0,71.0,91.0,75.0,72.0,77.0,84.0,82.0,77.0,102.0,102.0,84.0,107.0,81.0,81.0,84.0,95.0,100.0,97.0,76.0,99.0,84.0,73.0,100.0,77.0,80.0,68.0,89.0,78.0,80.0,78.0,87.0,76.0,74.0,72.0,39.0,51.0,45.0,34.0,27.0,22.0,26.0,24.0,22.0,13.0,11.0,13.0,7.0,9.0,5.0,4.0,2.0 N85031,23.0,19.0,22.0,19.0,20.0,17.0,18.0,24.0,24.0,30.0,23.0,31.0,25.0,32.0,16.0,21.0,22.0,20.0,25.0,13.0,22.0,25.0,18.0,27.0,27.0,23.0,32.0,32.0,22.0,24.0,42.0,40.0,34.0,43.0,31.0,37.0,34.0,37.0,36.0,37.0,29.0,42.0,31.0,35.0,32.0,27.0,27.0,21.0,15.0,22.0,21.0,20.0,27.0,27.0,26.0,25.0,24.0,28.0,32.0,31.0,29.0,19.0,24.0,35.0,26.0,27.0,26.0,25.0,21.0,26.0,16.0,16.0,21.0,22.0,23.0,12.0,11.0,17.0,20.0,10.0,8.0,13.0,9.0,8.0,3.0,5.0,3.0,2.0,2.0,3.0,3.0,3.0,3.0,2.0,2.0,2.0 N85032,11.0,19.0,32.0,26.0,24.0,24.0,41.0,32.0,29.0,37.0,34.0,30.0,34.0,30.0,21.0,33.0,38.0,34.0,37.0,36.0,30.0,31.0,23.0,20.0,34.0,24.0,25.0,28.0,34.0,21.0,26.0,25.0,18.0,36.0,34.0,38.0,38.0,40.0,34.0,26.0,39.0,42.0,38.0,40.0,43.0,33.0,35.0,17.0,29.0,47.0,38.0,30.0,35.0,41.0,43.0,45.0,50.0,42.0,40.0,58.0,50.0,57.0,33.0,49.0,54.0,48.0,46.0,48.0,37.0,42.0,48.0,46.0,51.0,52.0,57.0,53.0,45.0,43.0,63.0,38.0,33.0,31.0,27.0,29.0,20.0,32.0,10.0,9.0,15.0,12.0,12.0,8.0,7.0,10.0,2.0,14.0 N85037,30.0,35.0,40.0,34.0,29.0,41.0,46.0,54.0,39.0,40.0,37.0,45.0,47.0,47.0,43.0,41.0,47.0,36.0,43.0,31.0,31.0,32.0,26.0,31.0,21.0,32.0,32.0,37.0,31.0,39.0,28.0,37.0,40.0,39.0,41.0,49.0,46.0,49.0,42.0,33.0,31.0,37.0,50.0,35.0,43.0,28.0,32.0,30.0,46.0,18.0,35.0,31.0,35.0,26.0,46.0,30.0,29.0,28.0,29.0,32.0,41.0,37.0,35.0,18.0,31.0,26.0,34.0,29.0,22.0,21.0,15.0,13.0,15.0,18.0,19.0,20.0,12.0,12.0,15.0,13.0,13.0,9.0,8.0,5.0,9.0,14.0,4.0,5.0,2.0,3.0,2.0,3.0,1.0,3.0,,4.0 N85038,15.0,22.0,22.0,21.0,22.0,37.0,19.0,22.0,30.0,26.0,31.0,33.0,32.0,42.0,31.0,30.0,21.0,35.0,21.0,22.0,31.0,24.0,31.0,26.0,25.0,26.0,34.0,27.0,28.0,22.0,26.0,29.0,33.0,35.0,41.0,32.0,37.0,42.0,26.0,27.0,26.0,38.0,36.0,18.0,22.0,25.0,28.0,27.0,25.0,28.0,23.0,22.0,26.0,20.0,27.0,40.0,32.0,29.0,42.0,30.0,34.0,34.0,33.0,32.0,43.0,26.0,30.0,29.0,23.0,17.0,26.0,19.0,20.0,17.0,19.0,25.0,20.0,20.0,12.0,9.0,10.0,8.0,8.0,9.0,7.0,5.0,3.0,3.0,5.0,2.0,,3.0,1.0,1.0,,3.0 N85044,74.0,82.0,73.0,100.0,96.0,100.0,120.0,128.0,132.0,139.0,116.0,125.0,125.0,138.0,118.0,128.0,148.0,151.0,149.0,125.0,130.0,106.0,111.0,114.0,119.0,108.0,130.0,88.0,125.0,103.0,140.0,130.0,93.0,131.0,145.0,128.0,128.0,133.0,136.0,141.0,140.0,135.0,127.0,145.0,139.0,155.0,124.0,114.0,124.0,132.0,110.0,123.0,153.0,146.0,166.0,142.0,159.0,147.0,130.0,155.0,132.0,132.0,131.0,137.0,129.0,138.0,97.0,106.0,93.0,102.0,91.0,98.0,88.0,112.0,69.0,75.0,85.0,78.0,100.0,49.0,64.0,58.0,65.0,31.0,34.0,48.0,38.0,30.0,26.0,9.0,12.0,10.0,10.0,5.0,3.0,15.0 N85046,15.0,21.0,25.0,30.0,29.0,35.0,29.0,22.0,26.0,26.0,22.0,35.0,35.0,27.0,22.0,25.0,28.0,35.0,31.0,26.0,24.0,33.0,31.0,23.0,14.0,19.0,17.0,21.0,28.0,31.0,24.0,30.0,32.0,28.0,34.0,32.0,17.0,31.0,37.0,30.0,33.0,31.0,40.0,40.0,32.0,27.0,32.0,31.0,27.0,31.0,31.0,30.0,35.0,33.0,30.0,29.0,31.0,21.0,31.0,36.0,35.0,29.0,32.0,42.0,36.0,44.0,31.0,27.0,36.0,26.0,27.0,31.0,21.0,27.0,37.0,26.0,27.0,28.0,25.0,21.0,21.0,17.0,16.0,8.0,9.0,10.0,8.0,5.0,3.0,5.0,1.0,1.0,1.0,2.0,2.0,6.0 N85047,37.0,27.0,37.0,35.0,39.0,35.0,33.0,32.0,39.0,59.0,41.0,46.0,43.0,34.0,42.0,50.0,43.0,38.0,44.0,38.0,31.0,35.0,35.0,20.0,27.0,35.0,40.0,29.0,39.0,39.0,38.0,45.0,48.0,59.0,59.0,46.0,53.0,57.0,56.0,48.0,52.0,50.0,36.0,42.0,55.0,62.0,55.0,46.0,46.0,41.0,37.0,32.0,41.0,47.0,52.0,42.0,46.0,37.0,43.0,42.0,39.0,24.0,31.0,44.0,31.0,33.0,38.0,35.0,34.0,35.0,27.0,44.0,25.0,31.0,31.0,33.0,32.0,34.0,32.0,22.0,22.0,30.0,18.0,17.0,18.0,13.0,22.0,12.0,13.0,9.0,5.0,1.0,5.0,1.0,5.0,4.0 N85048,18.0,21.0,23.0,17.0,19.0,25.0,20.0,36.0,30.0,25.0,25.0,28.0,28.0,40.0,23.0,31.0,32.0,33.0,36.0,29.0,28.0,19.0,24.0,27.0,20.0,23.0,30.0,28.0,32.0,41.0,31.0,34.0,37.0,27.0,44.0,39.0,30.0,35.0,32.0,33.0,29.0,30.0,33.0,20.0,30.0,26.0,32.0,33.0,24.0,26.0,27.0,32.0,30.0,36.0,32.0,45.0,38.0,31.0,40.0,39.0,43.0,39.0,42.0,49.0,33.0,36.0,25.0,46.0,34.0,42.0,28.0,36.0,26.0,29.0,42.0,22.0,26.0,27.0,35.0,14.0,18.0,16.0,13.0,10.0,14.0,11.0,13.0,11.0,7.0,7.0,6.0,,2.0,1.0,1.0,2.0 N85051,67.0,67.0,87.0,87.0,83.0,83.0,89.0,100.0,103.0,113.0,115.0,102.0,120.0,138.0,107.0,109.0,119.0,95.0,120.0,113.0,106.0,101.0,84.0,108.0,90.0,93.0,115.0,106.0,127.0,102.0,114.0,104.0,115.0,131.0,147.0,135.0,130.0,123.0,130.0,117.0,115.0,117.0,118.0,123.0,117.0,123.0,118.0,104.0,105.0,86.0,99.0,108.0,113.0,129.0,128.0,138.0,127.0,119.0,120.0,110.0,126.0,128.0,124.0,124.0,106.0,106.0,104.0,119.0,77.0,79.0,78.0,74.0,81.0,69.0,64.0,74.0,93.0,90.0,66.0,57.0,55.0,51.0,56.0,35.0,50.0,27.0,28.0,20.0,17.0,16.0,12.0,11.0,5.0,8.0,5.0,6.0 N85052,24.0,25.0,27.0,20.0,18.0,29.0,17.0,31.0,27.0,15.0,23.0,18.0,14.0,25.0,21.0,19.0,18.0,18.0,15.0,19.0,22.0,23.0,22.0,17.0,17.0,24.0,22.0,29.0,27.0,32.0,25.0,28.0,39.0,24.0,44.0,30.0,43.0,40.0,42.0,33.0,18.0,41.0,31.0,38.0,28.0,28.0,25.0,19.0,25.0,20.0,22.0,23.0,38.0,38.0,21.0,39.0,37.0,36.0,39.0,34.0,30.0,33.0,31.0,34.0,25.0,39.0,29.0,35.0,23.0,19.0,26.0,29.0,22.0,16.0,19.0,20.0,26.0,14.0,21.0,17.0,16.0,12.0,15.0,11.0,7.0,10.0,11.0,1.0,5.0,3.0,9.0,4.0,1.0,,1.0,1.0 N85054,18.0,19.0,19.0,15.0,13.0,26.0,27.0,25.0,33.0,28.0,28.0,30.0,29.0,31.0,49.0,35.0,30.0,37.0,19.0,23.0,29.0,38.0,28.0,31.0,35.0,34.0,26.0,25.0,26.0,24.0,31.0,40.0,32.0,25.0,29.0,30.0,30.0,27.0,33.0,25.0,42.0,26.0,37.0,37.0,40.0,37.0,34.0,27.0,24.0,30.0,27.0,31.0,34.0,31.0,40.0,41.0,33.0,44.0,23.0,38.0,35.0,27.0,36.0,48.0,28.0,30.0,26.0,25.0,28.0,21.0,28.0,23.0,33.0,29.0,19.0,26.0,19.0,23.0,30.0,24.0,14.0,16.0,19.0,9.0,13.0,11.0,4.0,3.0,4.0,7.0,3.0,2.0,1.0,4.0,1.0,1.0 N85057,6.0,6.0,9.0,3.0,5.0,6.0,11.0,2.0,10.0,6.0,6.0,7.0,6.0,10.0,8.0,15.0,12.0,12.0,5.0,16.0,14.0,8.0,8.0,9.0,7.0,9.0,7.0,8.0,11.0,8.0,15.0,17.0,11.0,6.0,16.0,13.0,8.0,22.0,12.0,18.0,6.0,15.0,20.0,10.0,12.0,13.0,12.0,13.0,16.0,13.0,16.0,9.0,12.0,15.0,16.0,12.0,8.0,14.0,19.0,17.0,24.0,17.0,21.0,14.0,19.0,19.0,15.0,7.0,17.0,9.0,11.0,10.0,16.0,15.0,19.0,18.0,12.0,13.0,10.0,7.0,7.0,12.0,9.0,4.0,9.0,3.0,3.0,4.0,,4.0,3.0,1.0,3.0,,1.0,3.0 N85059,28.0,35.0,29.0,35.0,43.0,40.0,52.0,33.0,51.0,56.0,35.0,37.0,44.0,57.0,46.0,45.0,40.0,42.0,49.0,34.0,40.0,31.0,29.0,29.0,23.0,28.0,39.0,36.0,33.0,48.0,42.0,33.0,39.0,38.0,34.0,37.0,54.0,50.0,44.0,38.0,37.0,48.0,46.0,44.0,41.0,42.0,41.0,50.0,43.0,49.0,52.0,49.0,50.0,61.0,59.0,55.0,54.0,64.0,61.0,64.0,61.0,64.0,70.0,61.0,68.0,61.0,58.0,54.0,57.0,51.0,47.0,55.0,63.0,43.0,54.0,47.0,43.0,36.0,52.0,31.0,40.0,26.0,23.0,23.0,22.0,19.0,15.0,10.0,16.0,11.0,4.0,10.0,3.0,4.0,1.0,2.0 N85616,22.0,26.0,35.0,23.0,20.0,24.0,23.0,33.0,29.0,26.0,36.0,40.0,29.0,26.0,25.0,33.0,28.0,22.0,23.0,24.0,16.0,21.0,24.0,23.0,24.0,29.0,28.0,26.0,33.0,37.0,29.0,42.0,36.0,36.0,36.0,31.0,36.0,38.0,35.0,30.0,39.0,36.0,36.0,36.0,37.0,25.0,25.0,35.0,29.0,25.0,18.0,21.0,28.0,35.0,40.0,31.0,32.0,38.0,33.0,33.0,25.0,34.0,32.0,26.0,29.0,17.0,21.0,27.0,20.0,27.0,18.0,23.0,20.0,15.0,16.0,28.0,15.0,21.0,22.0,8.0,10.0,11.0,5.0,6.0,10.0,7.0,1.0,5.0,2.0,2.0,5.0,3.0,4.0,1.0,4.0,4.0 N85617,15.0,15.0,25.0,20.0,29.0,23.0,29.0,21.0,27.0,28.0,27.0,13.0,27.0,31.0,25.0,22.0,21.0,22.0,20.0,13.0,21.0,24.0,19.0,19.0,23.0,23.0,24.0,24.0,23.0,16.0,26.0,29.0,34.0,27.0,32.0,12.0,33.0,26.0,35.0,38.0,37.0,33.0,23.0,26.0,37.0,36.0,27.0,20.0,23.0,24.0,30.0,24.0,30.0,27.0,25.0,23.0,32.0,23.0,38.0,32.0,37.0,32.0,25.0,38.0,38.0,41.0,30.0,31.0,28.0,28.0,30.0,36.0,26.0,21.0,31.0,25.0,29.0,29.0,28.0,28.0,23.0,18.0,16.0,17.0,16.0,17.0,10.0,9.0,6.0,7.0,5.0,2.0,3.0,5.0,1.0,6.0 N85620,25.0,21.0,21.0,24.0,19.0,29.0,29.0,20.0,33.0,39.0,35.0,38.0,23.0,37.0,32.0,49.0,31.0,37.0,37.0,35.0,30.0,28.0,28.0,33.0,28.0,27.0,23.0,37.0,36.0,34.0,36.0,38.0,32.0,40.0,46.0,31.0,46.0,50.0,53.0,44.0,35.0,47.0,36.0,31.0,41.0,46.0,27.0,42.0,41.0,50.0,29.0,32.0,38.0,42.0,47.0,38.0,47.0,52.0,56.0,44.0,50.0,44.0,61.0,52.0,46.0,43.0,61.0,55.0,55.0,43.0,57.0,41.0,40.0,38.0,42.0,28.0,24.0,40.0,48.0,25.0,26.0,30.0,18.0,14.0,11.0,10.0,11.0,12.0,11.0,12.0,5.0,6.0,3.0,2.0,2.0,5.0 N85625,75.0,79.0,89.0,100.0,100.0,97.0,118.0,114.0,113.0,100.0,105.0,102.0,115.0,119.0,107.0,99.0,99.0,95.0,96.0,90.0,85.0,74.0,91.0,100.0,101.0,99.0,102.0,123.0,92.0,106.0,101.0,113.0,117.0,128.0,132.0,124.0,136.0,134.0,115.0,137.0,113.0,125.0,96.0,125.0,119.0,111.0,102.0,87.0,79.0,114.0,94.0,91.0,97.0,108.0,113.0,106.0,112.0,104.0,103.0,107.0,104.0,105.0,117.0,107.0,92.0,103.0,99.0,85.0,90.0,66.0,90.0,68.0,68.0,81.0,63.0,51.0,61.0,52.0,60.0,42.0,46.0,36.0,31.0,22.0,19.0,10.0,23.0,14.0,14.0,10.0,8.0,6.0,5.0,3.0,3.0,3.0 N85629,16.0,20.0,23.0,30.0,22.0,20.0,34.0,31.0,25.0,30.0,40.0,34.0,40.0,38.0,37.0,30.0,55.0,32.0,23.0,20.0,19.0,36.0,29.0,28.0,28.0,30.0,37.0,29.0,42.0,38.0,41.0,38.0,41.0,42.0,41.0,41.0,35.0,36.0,37.0,27.0,31.0,37.0,28.0,33.0,28.0,31.0,33.0,30.0,30.0,28.0,24.0,38.0,35.0,34.0,32.0,34.0,33.0,39.0,31.0,38.0,32.0,37.0,31.0,39.0,37.0,28.0,29.0,23.0,15.0,16.0,19.0,16.0,13.0,18.0,20.0,18.0,21.0,15.0,12.0,5.0,15.0,14.0,10.0,10.0,7.0,2.0,7.0,9.0,3.0,3.0,3.0,2.0,1.0,3.0,1.0,4.0 N85633,28.0,30.0,34.0,31.0,27.0,35.0,39.0,24.0,45.0,29.0,30.0,40.0,29.0,29.0,18.0,20.0,18.0,33.0,28.0,30.0,21.0,29.0,14.0,19.0,34.0,29.0,30.0,28.0,28.0,33.0,33.0,28.0,45.0,53.0,24.0,56.0,36.0,43.0,39.0,42.0,38.0,38.0,42.0,23.0,29.0,38.0,31.0,21.0,31.0,25.0,24.0,25.0,30.0,21.0,28.0,30.0,26.0,33.0,41.0,32.0,28.0,40.0,29.0,29.0,24.0,18.0,21.0,25.0,16.0,24.0,19.0,16.0,18.0,19.0,13.0,13.0,12.0,17.0,16.0,7.0,11.0,8.0,7.0,16.0,6.0,3.0,4.0,2.0,5.0,1.0,,1.0,,1.0,2.0,1.0 N85634,7.0,10.0,13.0,11.0,19.0,14.0,15.0,13.0,10.0,15.0,13.0,15.0,14.0,17.0,10.0,14.0,16.0,6.0,11.0,4.0,13.0,10.0,8.0,9.0,10.0,8.0,11.0,15.0,10.0,13.0,9.0,14.0,15.0,19.0,12.0,12.0,11.0,24.0,14.0,14.0,25.0,14.0,13.0,8.0,13.0,15.0,17.0,6.0,5.0,9.0,15.0,15.0,12.0,21.0,11.0,7.0,12.0,22.0,12.0,21.0,8.0,9.0,12.0,16.0,11.0,18.0,10.0,8.0,7.0,11.0,9.0,12.0,7.0,6.0,7.0,7.0,3.0,6.0,8.0,5.0,8.0,8.0,7.0,5.0,1.0,5.0,1.0,2.0,1.0,1.0,2.0,1.0,2.0,3.0,, N85640,17.0,12.0,14.0,29.0,19.0,17.0,26.0,20.0,31.0,31.0,33.0,23.0,20.0,26.0,29.0,33.0,25.0,24.0,23.0,18.0,19.0,17.0,22.0,24.0,24.0,15.0,19.0,24.0,26.0,20.0,31.0,14.0,23.0,30.0,25.0,23.0,20.0,20.0,16.0,19.0,19.0,22.0,17.0,21.0,22.0,21.0,13.0,12.0,9.0,19.0,11.0,14.0,19.0,20.0,15.0,12.0,15.0,20.0,11.0,16.0,15.0,13.0,17.0,11.0,13.0,14.0,8.0,11.0,6.0,9.0,10.0,8.0,16.0,3.0,12.0,3.0,7.0,2.0,7.0,6.0,5.0,2.0,3.0,1.0,5.0,3.0,1.0,1.0,,,,,,,,2.0 N85643,11.0,14.0,19.0,25.0,20.0,26.0,22.0,21.0,26.0,25.0,29.0,37.0,25.0,25.0,32.0,27.0,36.0,30.0,33.0,25.0,29.0,26.0,25.0,25.0,24.0,24.0,22.0,22.0,25.0,25.0,20.0,29.0,27.0,27.0,26.0,31.0,37.0,31.0,22.0,31.0,34.0,38.0,29.0,31.0,25.0,24.0,32.0,23.0,22.0,19.0,26.0,22.0,33.0,32.0,21.0,33.0,29.0,27.0,36.0,23.0,18.0,28.0,19.0,30.0,26.0,12.0,18.0,15.0,14.0,13.0,21.0,13.0,17.0,17.0,17.0,15.0,20.0,26.0,19.0,4.0,7.0,10.0,7.0,9.0,8.0,5.0,8.0,1.0,3.0,2.0,3.0,2.0,,1.0,,1.0 N85648,28.0,11.0,23.0,22.0,24.0,20.0,21.0,20.0,22.0,29.0,34.0,19.0,21.0,27.0,26.0,20.0,38.0,28.0,24.0,21.0,28.0,18.0,21.0,14.0,16.0,13.0,23.0,22.0,16.0,35.0,24.0,30.0,28.0,25.0,37.0,26.0,26.0,29.0,34.0,36.0,26.0,37.0,24.0,29.0,28.0,24.0,21.0,24.0,21.0,13.0,25.0,19.0,31.0,31.0,25.0,26.0,37.0,31.0,33.0,27.0,42.0,36.0,35.0,23.0,26.0,26.0,29.0,35.0,14.0,32.0,23.0,22.0,23.0,14.0,12.0,24.0,14.0,20.0,11.0,11.0,7.0,5.0,4.0,5.0,3.0,6.0,4.0,2.0,3.0,5.0,3.0,1.0,2.0,,,1.0 Y00446,13.0,9.0,3.0,22.0,17.0,13.0,12.0,7.0,14.0,16.0,13.0,13.0,22.0,13.0,16.0,20.0,12.0,24.0,22.0,14.0,13.0,20.0,24.0,16.0,17.0,21.0,15.0,21.0,18.0,23.0,23.0,23.0,21.0,9.0,26.0,24.0,23.0,20.0,12.0,11.0,23.0,25.0,16.0,17.0,12.0,13.0,30.0,13.0,17.0,17.0,24.0,28.0,20.0,15.0,23.0,31.0,21.0,30.0,23.0,30.0,23.0,29.0,32.0,33.0,21.0,19.0,26.0,24.0,12.0,19.0,16.0,16.0,23.0,13.0,11.0,12.0,14.0,15.0,12.0,12.0,5.0,13.0,11.0,10.0,6.0,4.0,10.0,4.0,4.0,3.0,2.0,4.0,3.0,,2.0,2.0 Y00475,19.0,27.0,29.0,29.0,26.0,28.0,24.0,20.0,41.0,32.0,31.0,42.0,39.0,32.0,35.0,35.0,34.0,30.0,29.0,37.0,25.0,30.0,16.0,19.0,27.0,28.0,29.0,16.0,29.0,27.0,26.0,28.0,25.0,34.0,41.0,30.0,36.0,35.0,33.0,35.0,30.0,34.0,32.0,45.0,29.0,34.0,26.0,26.0,21.0,30.0,27.0,27.0,36.0,40.0,50.0,29.0,48.0,23.0,32.0,38.0,35.0,29.0,33.0,32.0,26.0,34.0,37.0,23.0,31.0,29.0,29.0,24.0,31.0,26.0,37.0,32.0,32.0,35.0,28.0,20.0,27.0,19.0,17.0,16.0,13.0,11.0,14.0,6.0,11.0,10.0,3.0,3.0,4.0,,,2.0 Y01108,16.0,15.0,25.0,19.0,25.0,31.0,32.0,22.0,27.0,32.0,14.0,14.0,18.0,27.0,16.0,32.0,26.0,22.0,20.0,21.0,23.0,15.0,18.0,15.0,18.0,33.0,25.0,27.0,24.0,24.0,23.0,39.0,32.0,31.0,27.0,29.0,29.0,25.0,26.0,42.0,35.0,34.0,35.0,29.0,29.0,35.0,21.0,23.0,29.0,29.0,25.0,25.0,28.0,23.0,16.0,29.0,25.0,23.0,24.0,31.0,34.0,29.0,22.0,33.0,12.0,17.0,18.0,15.0,16.0,12.0,15.0,23.0,14.0,13.0,8.0,10.0,10.0,7.0,15.0,9.0,9.0,4.0,4.0,5.0,5.0,5.0,3.0,4.0,3.0,3.0,3.0,1.0,1.0,2.0,,1.0 Y02045,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,1.0,,,,,,,,1.0,,1.0,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, Y02510,43.0,45.0,42.0,41.0,37.0,36.0,51.0,31.0,56.0,46.0,34.0,34.0,37.0,35.0,37.0,31.0,42.0,44.0,37.0,28.0,23.0,35.0,29.0,29.0,24.0,33.0,38.0,40.0,51.0,56.0,50.0,49.0,56.0,68.0,58.0,56.0,77.0,56.0,64.0,56.0,45.0,55.0,55.0,59.0,49.0,47.0,42.0,51.0,55.0,36.0,50.0,48.0,45.0,50.0,39.0,37.0,41.0,44.0,31.0,35.0,40.0,39.0,38.0,34.0,31.0,22.0,16.0,33.0,21.0,22.0,17.0,24.0,29.0,26.0,19.0,14.0,22.0,20.0,23.0,17.0,19.0,12.0,13.0,10.0,4.0,8.0,6.0,5.0,8.0,4.0,4.0,2.0,3.0,2.0,2.0,3.0 Y04664,18.0,12.0,17.0,26.0,13.0,19.0,16.0,19.0,19.0,21.0,19.0,23.0,23.0,27.0,23.0,28.0,22.0,21.0,20.0,21.0,15.0,19.0,17.0,16.0,16.0,14.0,11.0,14.0,25.0,18.0,26.0,17.0,23.0,28.0,24.0,13.0,17.0,22.0,26.0,26.0,27.0,27.0,19.0,17.0,24.0,26.0,27.0,28.0,19.0,23.0,27.0,23.0,28.0,29.0,39.0,37.0,35.0,30.0,30.0,43.0,42.0,40.0,40.0,43.0,36.0,38.0,44.0,36.0,25.0,22.0,30.0,26.0,26.0,19.0,33.0,35.0,27.0,25.0,31.0,31.0,30.0,28.0,17.0,14.0,13.0,12.0,13.0,13.0,6.0,10.0,4.0,3.0,3.0,3.0,1.0,2.0 Y04925,52.0,41.0,53.0,61.0,58.0,50.0,41.0,68.0,74.0,71.0,68.0,52.0,60.0,67.0,77.0,71.0,75.0,66.0,65.0,57.0,37.0,34.0,39.0,41.0,42.0,42.0,29.0,44.0,49.0,45.0,57.0,65.0,56.0,60.0,62.0,43.0,50.0,72.0,64.0,54.0,68.0,68.0,60.0,64.0,73.0,71.0,78.0,60.0,71.0,81.0,62.0,69.0,80.0,65.0,60.0,58.0,51.0,46.0,52.0,46.0,37.0,43.0,47.0,43.0,22.0,26.0,26.0,25.0,19.0,14.0,22.0,21.0,9.0,14.0,19.0,11.0,11.0,10.0,13.0,8.0,5.0,8.0,7.0,6.0,4.0,6.0,10.0,4.0,8.0,1.0,1.0,2.0,1.0,,1.0,1.0 Y05750,,,,,,,,,,,,,,,,,,,2.0,1.0,2.0,2.0,1.0,1.0,1.0,1.0,4.0,7.0,7.0,,6.0,4.0,4.0,3.0,2.0,2.0,,3.0,1.0,2.0,3.0,4.0,2.0,,,,2.0,,,1.0,1.0,3.0,3.0,,,,2.0,,1.0,,2.0,1.0,2.0,,1.0,,,,,,,,,1.0,,,,1.0,,,,1.0,,,,,,,,,,,,,, Y06620,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,,,1.0,1.0,,,,,,,,,,,,,1.0,,,,,,,,,,,,,,,,,,,,, # This defines the colors of the webpage [theme] base="light" primaryColor="#0072CE" # e.g. colour for buttons and sliders backgroundColor="#ffffff" secondaryBackgroundColor="#e8eef9" # e.g. colour of sidebar textColor="#000000" font="Arial" """ @author: peter.saiu@nhs.net Created: 2024 version: 0.1.3 Updated on 27/5/2025 with data for 2025/26 (which includes Indicators from 2023/24 and GP population for April 2025). Description: The code in this script imports the population and indicators data which are then imported and run in the strealit app ('eFIT') # """ import pandas as pd # Indicator and GP population data is for the year: year = '2025-26' # Import the indicators data indicators_qox = pd.read_csv(f'input_data_ind/QOX_{year}.csv') # Bath and North East Somerset, Swindon and Wiltshire ICB indicators_qhg = pd.read_csv(f'input_data_ind/QHG_{year}.csv') # Bedfordshire, Luton and Milton Keynes ICB indicators_qhl = pd.read_csv(f'input_data_ind/QHL_{year}.csv') # Birmingham and Solihull ICB indicators_qua = pd.read_csv(f'input_data_ind/QUA_{year}.csv') # Black Country ICB indicators_quy = pd.read_csv(f'input_data_ind/QUY_{year}.csv') # Bristol, North Somerset and South Gloucestershire ICB indicators_qu9 = pd.read_csv(f'input_data_ind/QU9_{year}.csv') # Buckinghamshire, Oxfordshire and Berkshire West ICB indicators_que = pd.read_csv(f'input_data_ind/QUE_{year}.csv') # Cambridgeshire and Peterborough ICB indicators_qyg = pd.read_csv(f'input_data_ind/QYG_{year}.csv') # Cheshire and Merseyside ICB indicators_qt6 = pd.read_csv(f'input_data_ind/QT6_{year}.csv') # Cornwall and the Isles of Scilly ICB indicators_qwu = pd.read_csv(f'input_data_ind/QWU_{year}.csv') # Coventry and Warwickshire ICB indicators_qj2 = pd.read_csv(f'input_data_ind/QJ2_{year}.csv') # Derby and Derbyshire ICB indicators_qjk = pd.read_csv(f'input_data_ind/QJK_{year}.csv') # Devon ICB indicators_qvv = pd.read_csv(f'input_data_ind/QVV_{year}.csv') # Dorset ICB indicators_qnq = pd.read_csv(f'input_data_ind/QNQ_{year}.csv') # Frimley ICB indicators_qr1 = pd.read_csv(f'input_data_ind/QR1_{year}.csv') # Gloucestershire ICB indicators_qop = pd.read_csv(f'input_data_ind/QOP_{year}.csv') # Greater Manchester ICB indicators_qrl = pd.read_csv(f'input_data_ind/QRL_{year}.csv') # Hampshire and the Isle of Wight ICB indicators_qgh = pd.read_csv(f'input_data_ind/QGH_{year}.csv') # Herefordshire and Worcestershire ICB indicators_qm7 = pd.read_csv(f'input_data_ind/QM7_{year}.csv') # Hertfordshire and West Essex ICB indicators_qoq = pd.read_csv(f'input_data_ind/QOQ_{year}.csv') # Humber and North Yorkshire ICB indicators_qks = pd.read_csv(f'input_data_ind/QKS_{year}.csv') # Kent and Medway ICB indicators_qe1 = pd.read_csv(f'input_data_ind/QE1_{year}.csv') # Lancashire and South Cumbria ICB indicators_qk1 = pd.read_csv(f'input_data_ind/QK1_{year}.csv') # Leicester, Leicestershire and Rutland ICB indicators_qjm = pd.read_csv(f'input_data_ind/QJM_{year}.csv') # Lincolnshire ICB indicators_qh8 = pd.read_csv(f'input_data_ind/QH8_{year}.csv') # Mid and South Essex ICB indicators_qmm = pd.read_csv(f'input_data_ind/QMM_{year}.csv') # Norfolk and Waveney ICB indicators_qmj = pd.read_csv(f'input_data_ind/QMJ_{year}.csv') # North Central London ICB indicators_qhm = pd.read_csv(f'input_data_ind/QHM_{year}.csv') # North East and North Cumbria ICB indicators_qmf = pd.read_csv(f'input_data_ind/QMF_{year}.csv') # North East London ICB indicators_qrv = pd.read_csv(f'input_data_ind/QRV_{year}.csv') # North West London ICB indicators_qpm = pd.read_csv(f'input_data_ind/QPM_{year}.csv') # Northamptonshire ICB indicators_qt1 = pd.read_csv(f'input_data_ind/QT1_{year}.csv') # Nottingham and Nottinghamshire ICB indicators_qoc = pd.read_csv(f'input_data_ind/QOC_{year}.csv') # Shropshire, Telford and Wrekin ICB indicators_qsl = pd.read_csv(f'input_data_ind/QSL_{year}.csv') # Somerset ICB indicators_qkk = pd.read_csv(f'input_data_ind/QKK_{year}.csv') # South East London ICB indicators_qwe = pd.read_csv(f'input_data_ind/QWE_{year}.csv') # South West London ICB indicators_qf7 = pd.read_csv(f'input_data_ind/QF7_{year}.csv') # South Yorkshire ICB indicators_qnc = pd.read_csv(f'input_data_ind/QNC_{year}.csv') # Staffordshire and Stoke-on-Trent ICB indicators_qjg = pd.read_csv(f'input_data_ind/QJG_{year}.csv') # Suffolk and North East Essex ICB indicators_qxu = pd.read_csv(f'input_data_ind/QXU_{year}.csv') # Surrey Heartlands ICB indicators_qnx = pd.read_csv(f'input_data_ind/QNX_{year}.csv') # Sussex ICB indicators_qwo = pd.read_csv(f'input_data_ind/QWO_{year}.csv') # West Yorkshire ICB # Import the population data # Males m_pop_qox = pd.read_csv(f'input_data_m/m_pop_QOX_2025-26.csv') m_pop_qhg = pd.read_csv(f'input_data_m/m_pop_QHG_{year}.csv') m_pop_qhl = pd.read_csv(f'input_data_m/m_pop_QHL_{year}.csv') m_pop_qua = pd.read_csv(f'input_data_m/m_pop_QUA_{year}.csv') m_pop_quy = pd.read_csv(f'input_data_m/m_pop_QUY_{year}.csv') m_pop_qu9 = pd.read_csv(f'input_data_m/m_pop_QU9_{year}.csv') m_pop_que = pd.read_csv(f'input_data_m/m_pop_QUE_{year}.csv') m_pop_qyg = pd.read_csv(f'input_data_m/m_pop_QYG_{year}.csv') m_pop_qt6 = pd.read_csv(f'input_data_m/m_pop_QT6_{year}.csv') m_pop_qwu = pd.read_csv(f'input_data_m/m_pop_QWU_{year}.csv') m_pop_qj2 = pd.read_csv(f'input_data_m/m_pop_QJ2_{year}.csv') m_pop_qjk = pd.read_csv(f'input_data_m/m_pop_QJK_{year}.csv') m_pop_qvv = pd.read_csv(f'input_data_m/m_pop_QVV_{year}.csv') m_pop_qnq = pd.read_csv(f'input_data_m/m_pop_QNQ_{year}.csv') m_pop_qr1 = pd.read_csv(f'input_data_m/m_pop_QR1_{year}.csv') m_pop_qop = pd.read_csv(f'input_data_m/m_pop_QOP_{year}.csv') m_pop_qrl = pd.read_csv(f'input_data_m/m_pop_QRL_{year}.csv') m_pop_qgh = pd.read_csv(f'input_data_m/m_pop_QGH_{year}.csv') m_pop_qm7 = pd.read_csv(f'input_data_m/m_pop_QM7_{year}.csv') m_pop_qoq = pd.read_csv(f'input_data_m/m_pop_QOQ_{year}.csv') m_pop_qks = pd.read_csv(f'input_data_m/m_pop_QKS_{year}.csv') m_pop_qe1 = pd.read_csv(f'input_data_m/m_pop_QE1_{year}.csv') m_pop_qk1 = pd.read_csv(f'input_data_m/m_pop_QK1_{year}.csv') m_pop_qjm = pd.read_csv(f'input_data_m/m_pop_QJM_{year}.csv') m_pop_qh8 = pd.read_csv(f'input_data_m/m_pop_QH8_{year}.csv') m_pop_qmm = pd.read_csv(f'input_data_m/m_pop_QMM_{year}.csv') m_pop_qmj = pd.read_csv(f'input_data_m/m_pop_QMJ_{year}.csv') m_pop_qhm = pd.read_csv(f'input_data_m/m_pop_QHM_{year}.csv') m_pop_qmf = pd.read_csv(f'input_data_m/m_pop_QMF_{year}.csv') m_pop_qrv = pd.read_csv(f'input_data_m/m_pop_QRV_{year}.csv') m_pop_qpm = pd.read_csv(f'input_data_m/m_pop_QPM_{year}.csv') m_pop_qt1 = pd.read_csv(f'input_data_m/m_pop_QT1_{year}.csv') m_pop_qoc = pd.read_csv(f'input_data_m/m_pop_QOC_{year}.csv') m_pop_qsl = pd.read_csv(f'input_data_m/m_pop_QSL_{year}.csv') m_pop_qkk = pd.read_csv(f'input_data_m/m_pop_QKK_{year}.csv') m_pop_qwe = pd.read_csv(f'input_data_m/m_pop_QWE_{year}.csv') m_pop_qf7 = pd.read_csv(f'input_data_m/m_pop_QF7_{year}.csv') m_pop_qnc = pd.read_csv(f'input_data_m/m_pop_QNC_{year}.csv') m_pop_qjg = pd.read_csv(f'input_data_m/m_pop_QJG_{year}.csv') m_pop_qxu = pd.read_csv(f'input_data_m/m_pop_QXU_{year}.csv') m_pop_qnx = pd.read_csv(f'input_data_m/m_pop_QNX_{year}.csv') m_pop_qwo = pd.read_csv(f'input_data_m/m_pop_QWO_{year}.csv') # Females f_pop_qox = pd.read_csv(f'input_data_f/f_pop_QOX_{year}.csv') f_pop_qhg = pd.read_csv(f'input_data_f/f_pop_QHG_{year}.csv') f_pop_qhl = pd.read_csv(f'input_data_f/f_pop_QHL_{year}.csv') f_pop_qua = pd.read_csv(f'input_data_f/f_pop_QUA_{year}.csv') f_pop_quy = pd.read_csv(f'input_data_f/f_pop_QUY_{year}.csv') f_pop_qu9 = pd.read_csv(f'input_data_f/f_pop_QU9_{year}.csv') f_pop_que = pd.read_csv(f'input_data_f/f_pop_QUE_{year}.csv') f_pop_qyg = pd.read_csv(f'input_data_f/f_pop_QYG_{year}.csv') f_pop_qt6 = pd.read_csv(f'input_data_f/f_pop_QT6_{year}.csv') f_pop_qwu = pd.read_csv(f'input_data_f/f_pop_QWU_{year}.csv') f_pop_qj2 = pd.read_csv(f'input_data_f/f_pop_QJ2_{year}.csv') f_pop_qjk = pd.read_csv(f'input_data_f/f_pop_QJK_{year}.csv') f_pop_qvv = pd.read_csv(f'input_data_f/f_pop_QVV_{year}.csv') f_pop_qnq = pd.read_csv(f'input_data_f/f_pop_QNQ_{year}.csv') f_pop_qr1 = pd.read_csv(f'input_data_f/f_pop_QR1_{year}.csv') f_pop_qop = pd.read_csv(f'input_data_f/f_pop_QOP_{year}.csv') f_pop_qrl = pd.read_csv(f'input_data_f/f_pop_QRL_{year}.csv') f_pop_qgh = pd.read_csv(f'input_data_f/f_pop_QGH_{year}.csv') f_pop_qm7 = pd.read_csv(f'input_data_f/f_pop_QM7_{year}.csv') f_pop_qoq = pd.read_csv(f'input_data_f/f_pop_QOQ_{year}.csv') f_pop_qks = pd.read_csv(f'input_data_f/f_pop_QKS_{year}.csv') f_pop_qe1 = pd.read_csv(f'input_data_f/f_pop_QE1_{year}.csv') f_pop_qk1 = pd.read_csv(f'input_data_f/f_pop_QK1_{year}.csv') f_pop_qjm = pd.read_csv(f'input_data_f/f_pop_QJM_{year}.csv') f_pop_qh8 = pd.read_csv(f'input_data_f/f_pop_QH8_{year}.csv') f_pop_qmm = pd.read_csv(f'input_data_f/f_pop_QMM_{year}.csv') f_pop_qmj = pd.read_csv(f'input_data_f/f_pop_QMJ_{year}.csv') f_pop_qhm = pd.read_csv(f'input_data_f/f_pop_QHM_{year}.csv') f_pop_qmf = pd.read_csv(f'input_data_f/f_pop_QMF_{year}.csv') f_pop_qrv = pd.read_csv(f'input_data_f/f_pop_QRV_{year}.csv') f_pop_qpm = pd.read_csv(f'input_data_f/f_pop_QPM_{year}.csv') f_pop_qt1 = pd.read_csv(f'input_data_f/f_pop_QT1_{year}.csv') f_pop_qoc = pd.read_csv(f'input_data_f/f_pop_QOC_{year}.csv') f_pop_qsl = pd.read_csv(f'input_data_f/f_pop_QSL_{year}.csv') f_pop_qkk = pd.read_csv(f'input_data_f/f_pop_QKK_{year}.csv') f_pop_qwe = pd.read_csv(f'input_data_f/f_pop_QWE_{year}.csv') f_pop_qf7 = pd.read_csv(f'input_data_f/f_pop_QF7_{year}.csv') f_pop_qnc = pd.read_csv(f'input_data_f/f_pop_QNC_{year}.csv') f_pop_qjg = pd.read_csv(f'input_data_f/f_pop_QJG_{year}.csv') f_pop_qxu = pd.read_csv(f'input_data_f/f_pop_QXU_{year}.csv') f_pop_qnx = pd.read_csv(f'input_data_f/f_pop_QNX_{year}.csv') f_pop_qwo = pd.read_csv(f'input_data_f/f_pop_QWO_{year}.csv') # do I need to close all these files above now e.g. 'indicators_qox.close() plotly